Sandbox-commits
Threads by month
- ----- 2026 -----
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
July 2013
- 1 participants
- 3 discussions
04 Jul '13
Author: kmorin
Date: 2013-07-04 18:11:34 +0200 (Thu, 04 Jul 2013)
New Revision: 684
Url: http://nuiton.org/projects/sandbox/repository/revisions/684
Log:
use a marker instead of a circle
Modified:
cartography/trunk/leaflet/src/main/webapp/WEB-INF/city.jsp
Modified: cartography/trunk/leaflet/src/main/webapp/WEB-INF/city.jsp
===================================================================
--- cartography/trunk/leaflet/src/main/webapp/WEB-INF/city.jsp 2013-07-04 14:46:39 UTC (rev 683)
+++ cartography/trunk/leaflet/src/main/webapp/WEB-INF/city.jsp 2013-07-04 16:11:34 UTC (rev 684)
@@ -69,11 +69,8 @@
map.fitBounds(bounds);
- L.circle([ <%= city.getLatitude() %>, <%= city.getLongitude() %> ], 1000, {
- color: 'red',
- fillColor: '#f03',
- fillOpacity: 0.5
-
+ L.marker([ <%= city.getLatitude() %>, <%= city.getLongitude() %> ], {
+ title: "<%= city.getName() %>"
}).addTo(map).bindPopup("<%= city.getName() %> (<%= city.getPostCode() %>)").openPopup();
</script>
1
0
r683 - in cartography/trunk/leaflet/src/main: java/org/nuiton/cartography/leaflet resources webapp webapp/WEB-INF
by kmorin@users.nuiton.org 04 Jul '13
by kmorin@users.nuiton.org 04 Jul '13
04 Jul '13
Author: kmorin
Date: 2013-07-04 16:46:39 +0200 (Thu, 04 Jul 2013)
New Revision: 683
Url: http://nuiton.org/projects/sandbox/repository/revisions/683
Log:
add a map with the regions with different backgrounds + a map with a city
Added:
cartography/trunk/leaflet/src/main/java/org/nuiton/cartography/leaflet/MainServlet.java
cartography/trunk/leaflet/src/main/resources/regions.csv
cartography/trunk/leaflet/src/main/webapp/DEPARTEMENTS.json
cartography/trunk/leaflet/src/main/webapp/WEB-INF/city.jsp
cartography/trunk/leaflet/src/main/webapp/WEB-INF/departement.jsp
cartography/trunk/leaflet/src/main/webapp/WEB-INF/national.jsp
Removed:
cartography/trunk/leaflet/src/main/java/org/nuiton/cartography/leaflet/CityServlet.java
cartography/trunk/leaflet/src/main/webapp/DEPARTEMENT.json
cartography/trunk/leaflet/src/main/webapp/WEB-INF/dpt.jsp
Modified:
cartography/trunk/leaflet/src/main/resources/cities.csv
cartography/trunk/leaflet/src/main/webapp/WEB-INF/web.xml
Deleted: cartography/trunk/leaflet/src/main/java/org/nuiton/cartography/leaflet/CityServlet.java
===================================================================
--- cartography/trunk/leaflet/src/main/java/org/nuiton/cartography/leaflet/CityServlet.java 2013-07-03 16:32:13 UTC (rev 682)
+++ cartography/trunk/leaflet/src/main/java/org/nuiton/cartography/leaflet/CityServlet.java 2013-07-04 14:46:39 UTC (rev 683)
@@ -1,146 +0,0 @@
-package org.nuiton.cartography.leaflet;
-
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-import org.h2.tools.Csv;
-import org.h2.tools.SimpleResultSet;
-import org.h2.util.StringUtils;
-
-import javax.servlet.ServletConfig;
-import javax.servlet.ServletException;
-import javax.servlet.http.HttpServlet;
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-import java.io.*;
-import java.sql.*;
-import java.util.HashMap;
-import java.util.LinkedHashMap;
-import java.util.Map;
-
-/**
- * @author kmorin <kmorin(a)codelutin.com>
- */
-public class CityServlet extends HttpServlet {
-
- private static final Log log = LogFactory.getLog(CityServlet.class);
-
- protected static final String TABLE = "cities";
- protected static final String FIELD_NAME = "name";
- protected static final String FIELD_POST_CODE = "postCode";
- protected static final String FIELD_LATITUDE = "latitude";
- protected static final String FIELD_LONGITUDE = "longitude";
-
- @Override
- public void init() throws ServletException {
- super.init();
- try {
- Connection conn = (Connection) getServletContext().getAttribute("connection");
- Statement statement = conn.createStatement();
- statement.addBatch("DROP TABLE IF EXISTS " + TABLE + ";");
- statement.addBatch("CREATE TABLE cities (" + FIELD_NAME + " VARCHAR(255) NOT NULL, " +
- FIELD_POST_CODE + " VARCHAR(6) NOT NULL, " +
- FIELD_LATITUDE + " FLOAT, " +
- FIELD_LONGITUDE + " FLOAT);");
- statement.executeBatch();
- statement.close();
-
- InputStream in = getClass().getResourceAsStream("/cities.csv");
- Reader reader = new InputStreamReader(in);
- ResultSet rs = new Csv().read(reader, null);
-
- PreparedStatement pstatement = conn.prepareStatement("INSERT INTO " + TABLE + " VALUES (?, ?, ?, ?);");
- while (rs.next()) {
- pstatement.setString(1, rs.getString(1).toUpperCase());
- pstatement.setString(2, StringUtils.pad(rs.getString(3), 5, "0", false));
- pstatement.setFloat(3, rs.getFloat(6));
- pstatement.setFloat(4, rs.getFloat(7));
- pstatement.addBatch();
- }
- pstatement.executeBatch();
-
- rs.close();
- in.close();
- reader.close();
- pstatement.close();
-
- } catch (Exception e) {
- throw new ServletException(e);
- }
- }
-
- protected void doGet(HttpServletRequest request,
- HttpServletResponse response) throws ServletException, IOException {
-
- try {
- response.setContentType("application/json");
- response.setCharacterEncoding("UTF-8");
-
- Connection conn = (Connection) getServletContext().getAttribute("connection");
-
- String dpt = request.getParameter("dpt");
- Statement statement = conn.createStatement();
- ResultSet coord = statement.executeQuery("SELECT * FROM cities WHERE " + FIELD_POST_CODE + " LIKE '" + dpt + "%' ORDER BY RAND() LIMIT 4;");
-
- // map of the cities with thir number of stuff
- Map<City, Long> map = new LinkedHashMap<>();
- while (coord.next()) {
- map.put(new City(coord.getString(1), coord.getString(2), coord.getFloat(3), coord.getFloat(4)),
- Math.round(20 * Math.random()) + 1);
- }
- request.setAttribute("cities", map);
- getServletContext().getRequestDispatcher( "/WEB-INF/dpt.jsp" ).forward(request, response);
- statement.close();
-
- } catch (Exception e) {
- e.printStackTrace();
- response.sendError(500);
- }
- }
-
- public static class City implements Serializable {
-
- protected String name;
- protected String postCode;
- protected Float latitude;
- protected Float longitude;
-
- public City(String name, String postCode, Float latitude, Float longitude) {
- this.name = name;
- this.postCode = postCode;
- this.latitude = latitude;
- this.longitude = longitude;
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
- public String getPostCode() {
- return postCode;
- }
-
- public void setPostCode(String postCode) {
- this.postCode = postCode;
- }
-
- public Float getLatitude() {
- return latitude;
- }
-
- public void setLatitude(Float latitude) {
- this.latitude = latitude;
- }
-
- public Float getLongitude() {
- return longitude;
- }
-
- public void setLongitude(Float longitude) {
- this.longitude = longitude;
- }
- }
-}
Copied: cartography/trunk/leaflet/src/main/java/org/nuiton/cartography/leaflet/MainServlet.java (from rev 682, cartography/trunk/leaflet/src/main/java/org/nuiton/cartography/leaflet/CityServlet.java)
===================================================================
--- cartography/trunk/leaflet/src/main/java/org/nuiton/cartography/leaflet/MainServlet.java (rev 0)
+++ cartography/trunk/leaflet/src/main/java/org/nuiton/cartography/leaflet/MainServlet.java 2013-07-04 14:46:39 UTC (rev 683)
@@ -0,0 +1,191 @@
+package org.nuiton.cartography.leaflet;
+
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+import org.h2.tools.Csv;
+import org.h2.util.StringUtils;
+
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.io.*;
+import java.sql.*;
+import java.util.HashMap;
+import java.util.LinkedHashMap;
+import java.util.Map;
+
+/**
+ * @author kmorin <kmorin(a)codelutin.com>
+ */
+public class MainServlet extends HttpServlet {
+
+ private static final Log log = LogFactory.getLog(MainServlet.class);
+
+ protected static final String CITIES_TABLE = "cities";
+ protected static final String FIELD_CITY_NAME = "name";
+ protected static final String FIELD_CITY_POST_CODE = "postCode";
+ protected static final String FIELD_CITY_LATITUDE = "latitude";
+ protected static final String FIELD_CITY_LONGITUDE = "longitude";
+ protected static final String REGIONS_TABLE = "regions";
+ protected static final String FIELD_REGION_NAME = "name";
+
+ @Override
+ public void init() throws ServletException {
+ super.init();
+ try {
+ Connection conn = (Connection) getServletContext().getAttribute("connection");
+
+ // create cities table
+ Statement statement = conn.createStatement();
+ statement.addBatch("DROP TABLE IF EXISTS " + CITIES_TABLE + ";");
+ statement.addBatch("CREATE TABLE " + CITIES_TABLE + " (" + FIELD_CITY_NAME + " VARCHAR(255) NOT NULL, " +
+ FIELD_CITY_POST_CODE + " VARCHAR(6) NOT NULL, " +
+ FIELD_CITY_LATITUDE + " FLOAT, " +
+ FIELD_CITY_LONGITUDE + " FLOAT);");
+ statement.executeBatch();
+ statement.close();
+
+ InputStream in = getClass().getResourceAsStream("/cities.csv");
+ Reader reader = new InputStreamReader(in);
+ ResultSet rs = new Csv().read(reader, null);
+
+ PreparedStatement pstatement = conn.prepareStatement("INSERT INTO " + CITIES_TABLE + " VALUES (?, ?, ?, ?);");
+ while (rs.next()) {
+ pstatement.setString(1, rs.getString(1).toUpperCase());
+ pstatement.setString(2, StringUtils.pad(rs.getString(3), 5, "0", false));
+ pstatement.setFloat(3, rs.getFloat(6));
+ pstatement.setFloat(4, rs.getFloat(7));
+ pstatement.addBatch();
+ }
+ pstatement.executeBatch();
+ rs.close();
+ in.close();
+ reader.close();
+ pstatement.close();
+
+ // create regions table
+ statement = conn.createStatement();
+ statement.addBatch("DROP TABLE IF EXISTS " + REGIONS_TABLE + ";");
+ statement.addBatch("CREATE TABLE " + REGIONS_TABLE + " (" + FIELD_REGION_NAME + " VARCHAR(255) PRIMARY KEY);");
+ statement.executeBatch();
+ statement.close();
+
+ in = getClass().getResourceAsStream("/regions.csv");
+ reader = new InputStreamReader(in);
+ rs = new Csv().read(reader, null);
+
+ pstatement = conn.prepareStatement("INSERT INTO " + REGIONS_TABLE + " VALUES (?);");
+ while (rs.next()) {
+ pstatement.setString(1, rs.getString(1));
+ pstatement.addBatch();
+ }
+ pstatement.executeBatch();
+ rs.close();
+ in.close();
+ reader.close();
+ pstatement.close();
+
+ } catch (Exception e) {
+ throw new ServletException(e);
+ }
+ }
+
+ protected void doGet(HttpServletRequest request,
+ HttpServletResponse response) throws ServletException, IOException {
+
+ try {
+ response.setContentType("application/json");
+ response.setCharacterEncoding("UTF-8");
+
+ Connection conn = (Connection) getServletContext().getAttribute("connection");
+
+ String dpt = request.getParameter("dpt");
+ String cityPostCode = request.getParameter("city");
+ Statement statement = conn.createStatement();
+ if (!StringUtils.isNullOrEmpty(dpt)) {
+ ResultSet coord = statement.executeQuery("SELECT * FROM " + CITIES_TABLE + " WHERE " + FIELD_CITY_POST_CODE + " LIKE '" + dpt + "%' ORDER BY RAND() LIMIT 4;");
+
+ // map of the cities with thir number of stuff
+ Map<City, Long> map = new LinkedHashMap<>();
+ while (coord.next()) {
+ map.put(new City(coord.getString(1), coord.getString(2), coord.getFloat(3), coord.getFloat(4)),
+ Math.round(20 * Math.random()) + 1);
+ }
+ request.setAttribute("cities", map);
+ getServletContext().getRequestDispatcher( "/WEB-INF/departement.jsp" ).forward(request, response);
+
+ } else if (!StringUtils.isNullOrEmpty(cityPostCode)) {
+ ResultSet coord = statement.executeQuery("SELECT * FROM " + CITIES_TABLE + " WHERE " + FIELD_CITY_POST_CODE + "='" + cityPostCode + "' LIMIT 1;");
+ City city = null;
+ if (coord.next()) {
+ city = new City(coord.getString(1), coord.getString(2), coord.getFloat(3), coord.getFloat(4));
+ }
+ request.setAttribute("city", city);
+ getServletContext().getRequestDispatcher( "/WEB-INF/city.jsp" ).forward(request, response);
+
+ } else {
+ ResultSet regions = statement.executeQuery("SELECT * FROM " + REGIONS_TABLE + ";");
+ Map<String, Integer> map = new HashMap<>();
+ while (regions.next()) {
+ String region = regions.getString(1);
+ map.put(region, region.length());
+ }
+ request.setAttribute("regions", map);
+ getServletContext().getRequestDispatcher( "/WEB-INF/national.jsp" ).forward(request, response);
+ }
+ statement.close();
+
+ } catch (Exception e) {
+ e.printStackTrace();
+ response.sendError(500);
+ }
+ }
+
+ public static class City implements Serializable {
+
+ protected String name;
+ protected String postCode;
+ protected Float latitude;
+ protected Float longitude;
+
+ public City(String name, String postCode, Float latitude, Float longitude) {
+ this.name = name;
+ this.postCode = postCode;
+ this.latitude = latitude;
+ this.longitude = longitude;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getPostCode() {
+ return postCode;
+ }
+
+ public void setPostCode(String postCode) {
+ this.postCode = postCode;
+ }
+
+ public Float getLatitude() {
+ return latitude;
+ }
+
+ public void setLatitude(Float latitude) {
+ this.latitude = latitude;
+ }
+
+ public Float getLongitude() {
+ return longitude;
+ }
+
+ public void setLongitude(Float longitude) {
+ this.longitude = longitude;
+ }
+ }
+}
Modified: cartography/trunk/leaflet/src/main/resources/cities.csv
===================================================================
--- cartography/trunk/leaflet/src/main/resources/cities.csv 2013-07-03 16:32:13 UTC (rev 682)
+++ cartography/trunk/leaflet/src/main/resources/cities.csv 2013-07-04 14:46:39 UTC (rev 683)
@@ -16251,7 +16251,7 @@
Mouais ,MOUAIS ,44590,44105,52,47.7,-1.65,2.12
Mouzeil ,MOUZEIL ,44850,44107,52,47.45,-1.35,1.27
Mouzillon ,MOUZILLON ,44330,44108,52,47.15,-1.283333,1.35
- Nantes ,NANTES ,44200,44109,52,47.216667,-1.55,0.73
+ Nantes ,NANTES ,44000,44109,52,47.216667,-1.55,0.73
Nort-sur-Erdre ,NORT SUR ERDRE ,44390,44110,52,47.433333,-1.5,0.63
Notre-Dame-des-Landes ,NOTRE DAME DES LANDES,44130,44111,52,47.383333,-1.7,1.37
Noyal-sur-Brutz ,NOYAL SUR BRUTZ ,44110,44112,52,47.783333,-1.333333,2.61
@@ -16597,7 +16597,7 @@
Oison ,OISON ,45170,45231,24,48.133333,1.966667,1.31
Olivet ,OLIVET ,45160,45232,24,47.866667,1.9,1.33
Ondreville-sur-Essonne ,ONDREVILLE SUR ESSONNE ,45390,45233,24,48.2,2.4,1.58
- Orléans ,ORLEANS ,45100,45234,24,47.916667,1.9,1.33
+ Orléans ,ORLEANS ,45000,45234,24,47.916667,1.9,1.33
Ormes ,ORMES ,45140,45235,24,47.933333,1.8,1.65
Orveau-Bellesauve ,ORVEAU BELLESAUVE ,45330,45236,24,48.283333,2.333333,2.17
Orville ,ORVILLE ,45390,45237,24,48.233333,2.433333,1.81
Added: cartography/trunk/leaflet/src/main/resources/regions.csv
===================================================================
--- cartography/trunk/leaflet/src/main/resources/regions.csv (rev 0)
+++ cartography/trunk/leaflet/src/main/resources/regions.csv 2013-07-04 14:46:39 UTC (rev 683)
@@ -0,0 +1,23 @@
+region
+ILE-DE-FRANCE
+CHAMPAGNE-ARDENNE
+PICARDIE
+HAUTE-NORMANDIE
+CENTRE
+BASSE-NORMANDIE
+BOURGOGNE
+NORD-PAS-DE-CALAIS
+LORRAINE
+ALSACE
+FRANCHE-COMTE
+PAYS-DE-LA-LOIRE
+BRETAGNE
+POITOU-CHARENTES
+AQUITAINE
+MIDI-PYRENEES
+LIMOUSIN
+RHONE-ALPES
+AUVERGNE
+LANGUEDOC-ROUSSILLON
+PROVENCE-ALPES-COTE-D'AZUR
+CORSE
\ No newline at end of file
Deleted: cartography/trunk/leaflet/src/main/webapp/DEPARTEMENT.json
===================================================================
--- cartography/trunk/leaflet/src/main/webapp/DEPARTEMENT.json 2013-07-03 16:32:13 UTC (rev 682)
+++ cartography/trunk/leaflet/src/main/webapp/DEPARTEMENT.json 2013-07-04 14:46:39 UTC (rev 683)
@@ -1,198 +0,0 @@
-var depts = {
-"type": "FeatureCollection",
-
-"features": [
-{ "type": "Feature", "properties": { "ID_GEOFLA": "1", "CODE_DEPT": "01", "NOM_DEPT": "AIN", "CODE_CHF": "053", "NOM_CHF": "BOURG-EN-BRESSE", "X_CHF_LIEU": "8717", "Y_CHF_LIEU": "65696", "X_CENTROID": "8814", "Y_CENTROID": "65582", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.829631, 45.93758 ], [ 5.826116, 45.935262 ], [ 5.821881, 45.929241 ], [ 5.828998, 45.91696 ], [ 5.826317, 45.903693 ], [ 5.824882, 45.900386 ], [ 5.815154, 45.877201 ], [ 5.813809, 45.87385 ], [ 5.807525, 45.86064 ], [ 5.805399, 45.857881 ], [ 5.801109, 45.845796 ], [ 5.79585, 45.8298 ], [ 5.79213, 45.8281 ], [ 5.786934, 45.823224 ], [ 5.785319, 45.820075 ], [ 5.784591, 45.797224 ], [ 5.781383, 45.78084 ], [ 5.780056, 45.77802 ], [ 5.783047, 45.772465 ], [ 5.782612, 45.768944 ], [ 5.779509, 45.758712 ], [ 5.783592, 45.745204 ], [ 5.780427, 45.74292 ], [ 5.776639, 45.74258 ], [ 5.769679, 45.740816 ], [ 5.771226, 45.73755 ], [ 5.776366, 45.72792 ], [ 5.753456, 45.7068 ], [ 5.744182, 45.706263 ], [ 5.731321, 45.710153 ], [ 5.727741, 45.70927 ], [ 5.723288, 45.708167 ], [ 5.700599, 45.709948 ], [ 5.699897, 45.706901 ], [ 5.703726, 45.69815 ], [ 5.706277, 45.6951 ], [ 5.709199, 45.684927 ], [ 5.68564, 45.667012 ], [ 5.684166, 45.660199 ], [ 5.687844, 45.65364 ], [ 5.68945, 45.65048 ], [ 5.687901, 45.643964 ], [ 5.684695, 45.64143 ], [ 5.676337, 45.638059 ], [ 5.652818, 45.636679 ], [ 5.648328, 45.627405 ], [ 5.646456, 45.624764 ], [ 5.638412, 45.623025 ], [ 5.636372, 45.617397 ], [ 5.635454, 45.61404 ], [ 5.627389, 45.611 ], [ 5.623748, 45.61327 ], [ 5.621712, 45.61637 ], [ 5.614911, 45.625412 ], [ 5.604439, 45.63618 ], [ 5.601936, 45.652616 ], [ 5.581829, 45.661944 ], [ 5.578845, 45.66464 ], [ 5.579384, 45.66793 ], [ 5.567337, 45.673078 ], [ 5.563144, 45.674111 ], [ 5.555279, 45.671605 ], [ 5.551755, 45.673496 ], [ 5.550315, 45.68185 ], [ 5.547252, 45.68456 ], [ 5.545775, 45.69463 ], [ 5.5523, 45.6984 ], [ 5.556579, 45.696685 ], [ 5.565766, 45.68492 ], [ 5.574246, 45.687588 ], [ 5.575188, 45.69099 ], [ 5.570146, 45.69675 ], [ 5.556418, 45.70043 ], [ 5.552641, 45.7097 ], [ 5.549373, 45.711894 ], [ 5.545542, 45.71359 ], [ 5.527275, 45.71546 ], [ 5.524538, 45.718336 ], [ 5.517509, 45.73119 ], [ 5.514251, 45.733378 ], [ 5.498152, 45.744385 ], [ 5.494597, 45.7466 ], [ 5.483998, 45.75328 ], [ 5.460403, 45.778306 ], [ 5.450481, 45.784234 ], [ 5.447078, 45.786191 ], [ 5.444401, 45.789132 ], [ 5.439151, 45.795056 ], [ 5.435753, 45.79743 ], [ 5.422513, 45.80713 ], [ 5.422726, 45.82372 ], [ 5.436129, 45.826383 ], [ 5.435634, 45.829773 ], [ 5.433658, 45.8323 ], [ 5.430269, 45.83496 ], [ 5.417908, 45.841118 ], [ 5.416317, 45.848044 ], [ 5.414546, 45.85089 ], [ 5.404377, 45.85687 ], [ 5.381008, 45.86718 ], [ 5.37802, 45.86966 ], [ 5.374821, 45.87234 ], [ 5.354928, 45.88278 ], [ 5.340914, 45.880514 ], [ 5.338765, 45.878504 ], [ 5.335545, 45.87404 ], [ 5.334517, 45.8708 ], [ 5.330497, 45.864784 ], [ 5.314118, 45.85826 ], [ 5.302491, 45.848133 ], [ 5.299254, 45.83419 ], [ 5.291011, 45.821277 ], [ 5.290627, 45.814186 ], [ 5.288808, 45.81103 ], [ 5.278328, 45.803985 ], [ 5.266895, 45.78937 ], [ 5.263118, 45.787706 ], [ 5.255627, 45.78431 ], [ 5.251647, 45.7827 ], [ 5.240203, 45.77737 ], [ 5.236253, 45.7752 ], [ 5.224334, 45.76884 ], [ 5.200198, 45.77142 ], [ 5.195541, 45.771151 ], [ 5.188117, 45.77451 ], [ 5.18732, 45.781021 ], [ 5.184895, 45.78418 ], [ 5.177082, 45.79339 ], [ 5.172728, 45.79497 ], [ 5.157854, 45.803218 ], [ 5.144202, 45.80457 ], [ 5.139582, 45.806 ], [ 5.121251, 45.811622 ], [ 5.116455, 45.8112 ], [ 5.112341, 45.80601 ], [ 5.113621, 45.79941 ], [ 5.109059, 45.798321 ], [ 5.101067, 45.81338 ], [ 5.096801, 45.81264 ], [ 5.092558, 45.811834 ], [ 5.087546, 45.8118 ], [ 5.058158, 45.809926 ], [ 5.054278, 45.811582 ], [ 5.045296, 45.81182 ], [ 5.037812, 45.80835 ], [ 5.020714, 45.80713 ], [ 5.016691, 45.80561 ], [ 5.012298, 45.80523 ], [ 5.001206, 45.81012 ], [ 4.996959, 45.809142 ], [ 4.992917, 45.8078 ], [ 4.98034, 45.80584 ], [ 4.970375, 45.80738 ], [ 4.966931, 45.80904 ], [ 4.951516, 45.808766 ], [ 4.946837, 45.809405 ], [ 4.924522, 45.804041 ], [ 4.918589, 45.809357 ], [ 4.919766, 45.82949 ], [ 4.921116, 45.83274 ], [ 4.918781, 45.83565 ], [ 4.91595, 45.845415 ], [ 4.900569, 45.8576 ], [ 4.901239, 45.86059 ], [ 4.909017, 45.87411 ], [ 4.904376, 45.874524 ], [ 4.883827, 45.87999 ], [ 4.883222, 45.88343 ], [ 4.880699, 45.89717 ], [ 4.877315, 45.89668 ], [ 4.872087, 45.893538 ], [ 4.872016, 45.896782 ], [ 4.870683, 45.903127 ], [ 4.853105, 45.90716 ], [ 4.849116, 45.912868 ], [ 4.844452, 45.911557 ], [ 4.805177, 45.89633 ], [ 4.804099, 45.89807 ], [ 4.80955, 45.90653 ], [ 4.810675, 45.909752 ], [ 4.809782, 45.918314 ], [ 4.80776, 45.920805 ], [ 4.803178, 45.921968 ], [ 4.788994, 45.92355 ], [ 4.786921, 45.926478 ], [ 4.777994, 45.93784 ], [ 4.769154, 45.93832 ], [ 4.761121, 45.934998 ], [ 4.756784, 45.93463 ], [ 4.744455, 45.937427 ], [ 4.739899, 45.937875 ], [ 4.731896, 45.9408 ], [ 4.730275, 45.95041 ], [ 4.744998, 45.959882 ], [ 4.748462, 45.96241 ], [ 4.750169, 45.96449 ], [ 4.754611, 45.97381 ], [ 4.749567, 45.99637 ], [ 4.748491, 46.00278 ], [ 4.748988, 46.003757 ], [ 4.74889, 46.00719 ], [ 4.743942, 46.020309 ], [ 4.746389, 46.026946 ], [ 4.746774, 46.03255 ], [ 4.745657, 46.03524 ], [ 4.739617, 46.047487 ], [ 4.75632, 46.05855 ], [ 4.759083, 46.061202 ], [ 4.761755, 46.067438 ], [ 4.761062, 46.07046 ], [ 4.756261, 46.078971 ], [ 4.749615, 46.08242 ], [ 4.748023, 46.091357 ], [ 4.757137, 46.09827 ], [ 4.760178, 46.100645 ], [ 4.762596, 46.102544 ], [ 4.767114, 46.106527 ], [ 4.771191, 46.1117 ], [ 4.772069, 46.117627 ], [ 4.784254, 46.1283 ], [ 4.787486, 46.13089 ], [ 4.793172, 46.136382 ], [ 4.795944, 46.139158 ], [ 4.802787, 46.153407 ], [ 4.80255, 46.156437 ], [ 4.799993, 46.15949 ], [ 4.791741, 46.16361 ], [ 4.784274, 46.16837 ], [ 4.782319, 46.171636 ], [ 4.780213, 46.176677 ], [ 4.780203, 46.18675 ], [ 4.792327, 46.200968 ], [ 4.792735, 46.20751 ], [ 4.79428, 46.217051 ], [ 4.79551, 46.22014 ], [ 4.797847, 46.224543 ], [ 4.800741, 46.229658 ], [ 4.808184, 46.238106 ], [ 4.810798, 46.251233 ], [ 4.810817, 46.25455 ], [ 4.811341, 46.260583 ], [ 4.816488, 46.2654 ], [ 4.824739, 46.272934 ], [ 4.826332, 46.27591 ], [ 4.832926, 46.29944 ], [ 4.839228, 46.308684 ], [ 4.841217, 46.311805 ], [ 4.849389, 46.32322 ], [ 4.851423, 46.32608 ], [ 4.853156, 46.329247 ], [ 4.852652, 46.34279 ], [ 4.85239, 46.34617 ], [ 4.850912, 46.352864 ], [ 4.856454, 46.365123 ], [ 4.85853, 46.36802 ], [ 4.86312, 46.37326 ], [ 4.865691, 46.37576 ], [ 4.86776, 46.37806 ], [ 4.873919, 46.38499 ], [ 4.88495, 46.399883 ], [ 4.887496, 46.402732 ], [ 4.889934, 46.417121 ], [ 4.891047, 46.424056 ], [ 4.891532, 46.42752 ], [ 4.891523, 46.430291 ], [ 4.891797, 46.438555 ], [ 4.892887, 46.44257 ], [ 4.894444, 46.445374 ], [ 4.912497, 46.459323 ], [ 4.914448, 46.46216 ], [ 4.915024, 46.47711 ], [ 4.91453, 46.480113 ], [ 4.914522, 46.481374 ], [ 4.915896, 46.48819 ], [ 4.925241, 46.49615 ], [ 4.927682, 46.499168 ], [ 4.928837, 46.501589 ], [ 4.929616, 46.50408 ], [ 4.931736, 46.509791 ], [ 4.933592, 46.51245 ], [ 4.934745, 46.51332 ], [ 4.947245, 46.51445 ], [ 4.947369, 46.50843 ], [ 4.952797, 46.50447 ], [ 4.962656, 46.50655 ], [ 4.970038, 46.51409 ], [ 4.980216, 46.515203 ], [ 5.006369, 46.509703 ], [ 5.010594, 46.51107 ], [ 5.012448, 46.50297 ], [ 5.014233, 46.50045 ], [ 5.0509, 46.48625 ], [ 5.054751, 46.48428 ], [ 5.071449, 46.48582 ], [ 5.095259, 46.49798 ], [ 5.112817, 46.49296 ], [ 5.129066, 46.50092 ], [ 5.13403, 46.50145 ], [ 5.141168, 46.508484 ], [ 5.164303, 46.50462 ], [ 5.165839, 46.517675 ], [ 5.181672, 46.50998 ], [ 5.201221, 46.50782 ], [ 5.203565, 46.504803 ], [ 5.200343, 46.50257 ], [ 5.209481, 46.492105 ], [ 5.206685, 46.486177 ], [ 5.213031, 46.481541 ], [ 5.21528, 46.47176 ], [ 5.215064, 46.46836 ], [ 5.224698, 46.46835 ], [ 5.233384, 46.46045 ], [ 5.236259, 46.45778 ], [ 5.243864, 46.46046 ], [ 5.248004, 46.45937 ], [ 5.256271, 46.45188 ], [ 5.269653, 46.450226 ], [ 5.273677, 46.44859 ], [ 5.310561, 46.44677 ], [ 5.321727, 46.42895 ], [ 5.308145, 46.42047 ], [ 5.312333, 46.41602 ], [ 5.307817, 46.41486 ], [ 5.298806, 46.41553 ], [ 5.309146, 46.41026 ], [ 5.334092, 46.39972 ], [ 5.348116, 46.39942 ], [ 5.36352, 46.390388 ], [ 5.367105, 46.388692 ], [ 5.370296, 46.38603 ], [ 5.377881, 46.382324 ], [ 5.375164, 46.37971 ], [ 5.365075, 46.37308 ], [ 5.363472, 46.37002 ], [ 5.376474, 46.361669 ], [ 5.375761, 46.35843 ], [ 5.374637, 46.355329 ], [ 5.373462, 46.35224 ], [ 5.402729, 46.33612 ], [ 5.401686, 46.332799 ], [ 5.404352, 46.31918 ], [ 5.404041, 46.31567 ], [ 5.404054, 46.31477 ], [ 5.406583, 46.30991 ], [ 5.41024, 46.309105 ], [ 5.423534, 46.34773 ], [ 5.435942, 46.318468 ], [ 5.437146, 46.315127 ], [ 5.454476, 46.317998 ], [ 5.460892, 46.32247 ], [ 5.46518, 46.323542 ], [ 5.471469, 46.31653 ], [ 5.475305, 46.315385 ], [ 5.473218, 46.30893 ], [ 5.466531, 46.29324 ], [ 5.459001, 46.290531 ], [ 5.457672, 46.27685 ], [ 5.471308, 46.26721 ], [ 5.475362, 46.265221 ], [ 5.499595, 46.268205 ], [ 5.502609, 46.270211 ], [ 5.507498, 46.265481 ], [ 5.51137, 46.26436 ], [ 5.539301, 46.268903 ], [ 5.559458, 46.283515 ], [ 5.561577, 46.286576 ], [ 5.564674, 46.29277 ], [ 5.582606, 46.29324 ], [ 5.587251, 46.292509 ], [ 5.597891, 46.2979 ], [ 5.60215, 46.30681 ], [ 5.604641, 46.30944 ], [ 5.605673, 46.31364 ], [ 5.612518, 46.32656 ], [ 5.635057, 46.33331 ], [ 5.637458, 46.336442 ], [ 5.646092, 46.34281 ], [ 5.649207, 46.3373 ], [ 5.649798, 46.334192 ], [ 5.645285, 46.324791 ], [ 5.668481, 46.3239 ], [ 5.68023, 46.318433 ], [ 5.683316, 46.315874 ], [ 5.684582, 46.310934 ], [ 5.714553, 46.30807 ], [ 5.718978, 46.294287 ], [ 5.71596, 46.28037 ], [ 5.721538, 46.263177 ], [ 5.725181, 46.26069 ], [ 5.72966, 46.261928 ], [ 5.733675, 46.26377 ], [ 5.761568, 46.26715 ], [ 5.766045, 46.26833 ], [ 5.813575, 46.2636 ], [ 5.81828, 46.26287 ], [ 5.826262, 46.261715 ], [ 5.850659, 46.2617 ], [ 5.86085, 46.268771 ], [ 5.867694, 46.26822 ], [ 5.869187, 46.26498 ], [ 5.891985, 46.2836 ], [ 5.894627, 46.286614 ], [ 5.909198, 46.283945 ], [ 5.92187, 46.31194 ], [ 5.925908, 46.31377 ], [ 5.937319, 46.30977 ], [ 5.941531, 46.30926 ], [ 5.944004, 46.31221 ], [ 5.975139, 46.35029 ], [ 5.984117, 46.362656 ], [ 6.013384, 46.375997 ], [ 6.03102, 46.388101 ], [ 6.052807, 46.411409 ], [ 6.056984, 46.41619 ], [ 6.060575, 46.417509 ], [ 6.064008, 46.41623 ], [ 6.097526, 46.408284 ], [ 6.106503, 46.399839 ], [ 6.120401, 46.39595 ], [ 6.147124, 46.37983 ], [ 6.160984, 46.37655 ], [ 6.166676, 46.37074 ], [ 6.166736, 46.36414 ], [ 6.155084, 46.348797 ], [ 6.138661, 46.336571 ], [ 6.137695, 46.333119 ], [ 6.126191, 46.32009 ], [ 6.124378, 46.317263 ], [ 6.119788, 46.31113 ], [ 6.119099, 46.30771 ], [ 6.119469, 46.295283 ], [ 6.105303, 46.287352 ], [ 6.102366, 46.284846 ], [ 6.112992, 46.268046 ], [ 6.116039, 46.265656 ], [ 6.120108, 46.263625 ], [ 6.122535, 46.25334 ], [ 6.115883, 46.244428 ], [ 6.103464, 46.238658 ], [ 6.088144, 46.24704 ], [ 6.08338, 46.2464 ], [ 6.07048, 46.241743 ], [ 6.061954, 46.24488 ], [ 6.046946, 46.231941 ], [ 6.042401, 46.2331 ], [ 6.038615, 46.235317 ], [ 6.029934, 46.23591 ], [ 6.016684, 46.231819 ], [ 6.012598, 46.23002 ], [ 6.002932, 46.22258 ], [ 5.993818, 46.22044 ], [ 5.992718, 46.217169 ], [ 5.974412, 46.214748 ], [ 5.964201, 46.198029 ], [ 5.963676, 46.19697 ], [ 5.990045, 46.187466 ], [ 5.993657, 46.18138 ], [ 5.990267, 46.17488 ], [ 5.98217, 46.17221 ], [ 5.975425, 46.159302 ], [ 5.973349, 46.156167 ], [ 5.964701, 46.14466 ], [ 5.966498, 46.13834 ], [ 5.959563, 46.13426 ], [ 5.956063, 46.132089 ], [ 5.95273, 46.130365 ], [ 5.936956, 46.12865 ], [ 5.927926, 46.128 ], [ 5.920403, 46.131039 ], [ 5.906798, 46.12254 ], [ 5.896829, 46.11977 ], [ 5.893026, 46.118917 ], [ 5.890789, 46.11581 ], [ 5.886227, 46.10962 ], [ 5.892996, 46.09377 ], [ 5.885654, 46.08541 ], [ 5.866262, 46.08554 ], [ 5.855987, 46.08667 ], [ 5.852738, 46.089201 ], [ 5.838211, 46.10255 ], [ 5.829654, 46.105665 ], [ 5.820731, 46.102932 ], [ 5.821693, 46.089897 ], [ 5.819203, 46.087562 ], [ 5.811532, 46.077597 ], [ 5.808074, 46.06086 ], [ 5.810988, 46.058878 ], [ 5.813614, 46.0543 ], [ 5.812553, 46.051513 ], [ 5.806997, 46.04383 ], [ 5.808012, 46.041156 ], [ 5.809339, 46.03295 ], [ 5.810502, 46.029894 ], [ 5.812299, 46.0238 ], [ 5.805472, 46.01574 ], [ 5.806792, 46.01297 ], [ 5.810555, 46.00815 ], [ 5.809541, 46.00525 ], [ 5.810189, 45.99339 ], [ 5.809968, 45.98983 ], [ 5.834026, 45.97203 ], [ 5.833912, 45.96857 ], [ 5.832784, 45.96171 ], [ 5.834832, 45.9523 ], [ 5.8288, 45.94049 ], [ 5.825235, 45.938483 ], [ 5.829631, 45.93758 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "2", "CODE_DEPT": "02", "NOM_DEPT": "AISNE", "CODE_CHF": "408", "NOM_CHF": "LAON", "X_CHF_LIEU": "7451", "Y_CHF_LIEU": "69406", "X_CENTROID": "7404", "Y_CENTROID": "69401", "CODE_REG": "22", "NOM_REGION": "PICARDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.485187, 48.85191 ], [ 3.480156, 48.8516 ], [ 3.470198, 48.850547 ], [ 3.461955, 48.83847 ], [ 3.459253, 48.841066 ], [ 3.445361, 48.843232 ], [ 3.44578, 48.8461 ], [ 3.452232, 48.8563 ], [ 3.448478, 48.85872 ], [ 3.433142, 48.86001 ], [ 3.423063, 48.86757 ], [ 3.408514, 48.86371 ], [ 3.398898, 48.86642 ], [ 3.401029, 48.86872 ], [ 3.405856, 48.87588 ], [ 3.400635, 48.876027 ], [ 3.387958, 48.87097 ], [ 3.38328, 48.87249 ], [ 3.382479, 48.885942 ], [ 3.369828, 48.89614 ], [ 3.37561, 48.90922 ], [ 3.367427, 48.9288 ], [ 3.361726, 48.91956 ], [ 3.330199, 48.90796 ], [ 3.317005, 48.91885 ], [ 3.313076, 48.921216 ], [ 3.312797, 48.92478 ], [ 3.31222, 48.935418 ], [ 3.30475, 48.94877 ], [ 3.300969, 48.94665 ], [ 3.283772, 48.94016 ], [ 3.26948, 48.937455 ], [ 3.265161, 48.939065 ], [ 3.259827, 48.945174 ], [ 3.261229, 48.9471 ], [ 3.262904, 48.948935 ], [ 3.259065, 48.95126 ], [ 3.255523, 48.96132 ], [ 3.254925, 48.96463 ], [ 3.245993, 48.976065 ], [ 3.231216, 48.976751 ], [ 3.229177, 48.98842 ], [ 3.224841, 48.987329 ], [ 3.223297, 48.990452 ], [ 3.209318, 48.993786 ], [ 3.208947, 48.99671 ], [ 3.198993, 49.00579 ], [ 3.171569, 49.012496 ], [ 3.163008, 49.019944 ], [ 3.163424, 49.02626 ], [ 3.176541, 49.03141 ], [ 3.181112, 49.04428 ], [ 3.190614, 49.046717 ], [ 3.190667, 49.049972 ], [ 3.180866, 49.05615 ], [ 3.181708, 49.06217 ], [ 3.180064, 49.065489 ], [ 3.167882, 49.0769 ], [ 3.158681, 49.08041 ], [ 3.155087, 49.082428 ], [ 3.16523, 49.09966 ], [ 3.160231, 49.09929 ], [ 3.145738, 49.10177 ], [ 3.138602, 49.1064 ], [ 3.124129, 49.107235 ], [ 3.121614, 49.10908 ], [ 3.115282, 49.10688 ], [ 3.079808, 49.1129 ], [ 3.071884, 49.117554 ], [ 3.077028, 49.122065 ], [ 3.087084, 49.12321 ], [ 3.093026, 49.12898 ], [ 3.093913, 49.1421 ], [ 3.105274, 49.13555 ], [ 3.113415, 49.13626 ], [ 3.116887, 49.13867 ], [ 3.113521, 49.1411 ], [ 3.107105, 49.14612 ], [ 3.127057, 49.145066 ], [ 3.126777, 49.14851 ], [ 3.142289, 49.157411 ], [ 3.137366, 49.16177 ], [ 3.126879, 49.16219 ], [ 3.113552, 49.167556 ], [ 3.114563, 49.190768 ], [ 3.10245, 49.19731 ], [ 3.086688, 49.173 ], [ 3.094297, 49.15717 ], [ 3.083737, 49.16281 ], [ 3.085004, 49.182755 ], [ 3.077849, 49.194798 ], [ 3.063237, 49.19278 ], [ 3.060085, 49.19525 ], [ 3.061165, 49.204077 ], [ 3.05214, 49.206625 ], [ 3.043415, 49.20905 ], [ 3.034837, 49.20578 ], [ 3.030821, 49.21218 ], [ 3.016537, 49.21631 ], [ 3.006148, 49.215033 ], [ 3.001523, 49.21332 ], [ 2.998614, 49.21043 ], [ 3.00048, 49.19673 ], [ 3.0062, 49.187083 ], [ 3.025431, 49.190209 ], [ 3.029789, 49.183887 ], [ 3.035069, 49.18362 ], [ 3.035753, 49.180685 ], [ 3.037898, 49.16921 ], [ 3.027107, 49.17003 ], [ 3.021733, 49.17057 ], [ 3.015991, 49.18 ], [ 2.991687, 49.191982 ], [ 2.984871, 49.186965 ], [ 2.981375, 49.18447 ], [ 2.976519, 49.1859 ], [ 2.971814, 49.187529 ], [ 2.97115, 49.19708 ], [ 2.967579, 49.20332 ], [ 2.969496, 49.20994 ], [ 2.967366, 49.21533 ], [ 2.958739, 49.226606 ], [ 2.964349, 49.23191 ], [ 2.996211, 49.235315 ], [ 3.00162, 49.235657 ], [ 3.01267, 49.22901 ], [ 3.009196, 49.222917 ], [ 3.022988, 49.219284 ], [ 3.039066, 49.2274 ], [ 3.033311, 49.24334 ], [ 3.033311, 49.24379 ], [ 3.032901, 49.24729 ], [ 3.026756, 49.260573 ], [ 3.030826, 49.26683 ], [ 3.027586, 49.271523 ], [ 3.027533, 49.274903 ], [ 3.036277, 49.282703 ], [ 3.030165, 49.287604 ], [ 3.019265, 49.28142 ], [ 3.014208, 49.28181 ], [ 3.018346, 49.288074 ], [ 3.009304, 49.291113 ], [ 2.994407, 49.2883 ], [ 2.988812, 49.29672 ], [ 2.97006, 49.30261 ], [ 2.973468, 49.30457 ], [ 2.978566, 49.30941 ], [ 2.967232, 49.31895 ], [ 2.96426, 49.32138 ], [ 2.998267, 49.337471 ], [ 3.001788, 49.34015 ], [ 3.008859, 49.337857 ], [ 3.012697, 49.337219 ], [ 3.034824, 49.328981 ], [ 3.036335, 49.32574 ], [ 3.048062, 49.3368 ], [ 3.068641, 49.347304 ], [ 3.072728, 49.34789 ], [ 3.076881, 49.35548 ], [ 3.076804, 49.36871 ], [ 3.081094, 49.374334 ], [ 3.094371, 49.37853 ], [ 3.090827, 49.398246 ], [ 3.095633, 49.39798 ], [ 3.095987, 49.41791 ], [ 3.095304, 49.42123 ], [ 3.095073, 49.423041 ], [ 3.094759, 49.42484 ], [ 3.100285, 49.439278 ], [ 3.110497, 49.43848 ], [ 3.12159, 49.431745 ], [ 3.160518, 49.43936 ], [ 3.165126, 49.44085 ], [ 3.161892, 49.4426 ], [ 3.166193, 49.44692 ], [ 3.162893, 49.4496 ], [ 3.155214, 49.454185 ], [ 3.150778, 49.455269 ], [ 3.129742, 49.46205 ], [ 3.124931, 49.46279 ], [ 3.107085, 49.46823 ], [ 3.105299, 49.47129 ], [ 3.110055, 49.47665 ], [ 3.123306, 49.4808 ], [ 3.121281, 49.49368 ], [ 3.116497, 49.495212 ], [ 3.107214, 49.50367 ], [ 3.10247, 49.505138 ], [ 3.096325, 49.5179 ], [ 3.122465, 49.521683 ], [ 3.127901, 49.531384 ], [ 3.125924, 49.5418 ], [ 3.13148, 49.54338 ], [ 3.131731, 49.56022 ], [ 3.126302, 49.56607 ], [ 3.126982, 49.57291 ], [ 3.138985, 49.57585 ], [ 3.138052, 49.57859 ], [ 3.135088, 49.58137 ], [ 3.124178, 49.59626 ], [ 3.122533, 49.60203 ], [ 3.119137, 49.60449 ], [ 3.102, 49.61579 ], [ 3.099238, 49.61807 ], [ 3.093575, 49.622549 ], [ 3.096579, 49.62347 ], [ 3.109219, 49.6289 ], [ 3.112766, 49.63133 ], [ 3.110476, 49.634234 ], [ 3.112675, 49.6402 ], [ 3.10594, 49.64891 ], [ 3.09645, 49.65064 ], [ 3.099382, 49.656556 ], [ 3.107594, 49.65862 ], [ 3.108299, 49.66467 ], [ 3.112828, 49.66571 ], [ 3.123629, 49.66118 ], [ 3.127083, 49.66953 ], [ 3.125, 49.67274 ], [ 3.116282, 49.68111 ], [ 3.125917, 49.696499 ], [ 3.118652, 49.70583 ], [ 3.120398, 49.70573 ], [ 3.113653, 49.72548 ], [ 3.100671, 49.735222 ], [ 3.09936, 49.7384 ], [ 3.096772, 49.74806 ], [ 3.094682, 49.75727 ], [ 3.100454, 49.76593 ], [ 3.095114, 49.76615 ], [ 3.073808, 49.7664 ], [ 3.065338, 49.77048 ], [ 3.067381, 49.77337 ], [ 3.061329, 49.78138 ], [ 3.081379, 49.79053 ], [ 3.085933, 49.79175 ], [ 3.084245, 49.794884 ], [ 3.086135, 49.80449 ], [ 3.080299, 49.80991 ], [ 3.082321, 49.815244 ], [ 3.085004, 49.81765 ], [ 3.082605, 49.819241 ], [ 3.079039, 49.82122 ], [ 3.060722, 49.820099 ], [ 3.060006, 49.825175 ], [ 3.059037, 49.827646 ], [ 3.057068, 49.83078 ], [ 3.069341, 49.83698 ], [ 3.073663, 49.83889 ], [ 3.077623, 49.839683 ], [ 3.081738, 49.841378 ], [ 3.084399, 49.84625 ], [ 3.083057, 49.84937 ], [ 3.079469, 49.865411 ], [ 3.070905, 49.8734 ], [ 3.073939, 49.875988 ], [ 3.077501, 49.878367 ], [ 3.082604, 49.87849 ], [ 3.084962, 49.87576 ], [ 3.083196, 49.86657 ], [ 3.087836, 49.86569 ], [ 3.119134, 49.88302 ], [ 3.117858, 49.89026 ], [ 3.122607, 49.89941 ], [ 3.120118, 49.91122 ], [ 3.11762, 49.91396 ], [ 3.123668, 49.918017 ], [ 3.124664, 49.921393 ], [ 3.137879, 49.93586 ], [ 3.160361, 49.94655 ], [ 3.164916, 49.94754 ], [ 3.166553, 49.95023 ], [ 3.161614, 49.95111 ], [ 3.16214, 49.954361 ], [ 3.163644, 49.96336 ], [ 3.170413, 49.968003 ], [ 3.192717, 49.977536 ], [ 3.202722, 49.98549 ], [ 3.198541, 49.98501 ], [ 3.192523, 49.98888 ], [ 3.187671, 49.98787 ], [ 3.177706, 49.98661 ], [ 3.165045, 49.99164 ], [ 3.155683, 49.991754 ], [ 3.159159, 49.99394 ], [ 3.171404, 50.009985 ], [ 3.172707, 50.01199 ], [ 3.203548, 50.017876 ], [ 3.229336, 50.03018 ], [ 3.233971, 50.02838 ], [ 3.244078, 50.03089 ], [ 3.244843, 50.030617 ], [ 3.246725, 50.02769 ], [ 3.255846, 50.02544 ], [ 3.258791, 50.03141 ], [ 3.263541, 50.03064 ], [ 3.267164, 50.03012 ], [ 3.270716, 50.02947 ], [ 3.277936, 50.021475 ], [ 3.273525, 50.02027 ], [ 3.280355, 50.01521 ], [ 3.290837, 50.01513 ], [ 3.300484, 50.01759 ], [ 3.304894, 50.01846 ], [ 3.309304, 50.019352 ], [ 3.327669, 50.01585 ], [ 3.337102, 50.017401 ], [ 3.343616, 50.02627 ], [ 3.351671, 50.02973 ], [ 3.350214, 50.03286 ], [ 3.353107, 50.03571 ], [ 3.374224, 50.03641 ], [ 3.387166, 50.03106 ], [ 3.392479, 50.031132 ], [ 3.398474, 50.03458 ], [ 3.41538, 50.026754 ], [ 3.424921, 50.02727 ], [ 3.42847, 50.02478 ], [ 3.427792, 50.022085 ], [ 3.484913, 50.019609 ], [ 3.490106, 50.01896 ], [ 3.505235, 50.03054 ], [ 3.507062, 50.03336 ], [ 3.508157, 50.035512 ], [ 3.52989, 50.038887 ], [ 3.541758, 50.051975 ], [ 3.551277, 50.05377 ], [ 3.55644, 50.0539 ], [ 3.567799, 50.052971 ], [ 3.575596, 50.04925 ], [ 3.57924, 50.0471 ], [ 3.594225, 50.043918 ], [ 3.607741, 50.033469 ], [ 3.608747, 50.0301 ], [ 3.614124, 50.02506 ], [ 3.621489, 50.02882 ], [ 3.625097, 50.03078 ], [ 3.63009, 50.03202 ], [ 3.643079, 50.036989 ], [ 3.657569, 50.03273 ], [ 3.662095, 50.03873 ], [ 3.657538, 50.04003 ], [ 3.658176, 50.0484 ], [ 3.665721, 50.054697 ], [ 3.669883, 50.055088 ], [ 3.705575, 50.06564 ], [ 3.710359, 50.066491 ], [ 3.715185, 50.06927 ], [ 3.72121, 50.06413 ], [ 3.742636, 50.0561 ], [ 3.745752, 50.053572 ], [ 3.770963, 50.05104 ], [ 3.77523, 50.04908 ], [ 3.77793, 50.045989 ], [ 3.793588, 50.048296 ], [ 3.811, 50.04064 ], [ 3.815827, 50.03904 ], [ 3.832229, 50.04678 ], [ 3.837059, 50.047809 ], [ 3.848124, 50.04053 ], [ 3.868771, 50.03761 ], [ 3.882319, 50.03237 ], [ 3.883321, 50.02902 ], [ 3.878323, 50.027886 ], [ 3.886697, 50.023514 ], [ 3.887395, 50.01317 ], [ 3.887292, 50.00969 ], [ 3.919783, 50.02361 ], [ 3.922871, 50.02626 ], [ 3.943012, 50.029659 ], [ 3.948308, 50.02955 ], [ 3.949834, 50.026885 ], [ 3.982309, 50.04428 ], [ 3.989547, 50.04135 ], [ 3.991313, 50.038189 ], [ 3.995236, 50.028447 ], [ 3.980144, 50.00356 ], [ 3.980801, 49.993576 ], [ 3.985562, 49.99476 ], [ 4.005734, 49.9952 ], [ 4.011405, 49.98605 ], [ 4.021563, 49.986119 ], [ 4.027393, 49.98298 ], [ 4.031122, 49.98207 ], [ 4.044796, 49.98584 ], [ 4.074968, 49.981 ], [ 4.079933, 49.97995 ], [ 4.082589, 49.97383 ], [ 4.089691, 49.970476 ], [ 4.099815, 49.97233 ], [ 4.104938, 49.97157 ], [ 4.136382, 49.97751 ], [ 4.140895, 49.97876 ], [ 4.154144, 49.97513 ], [ 4.169033, 49.97686 ], [ 4.173918, 49.97604 ], [ 4.195446, 49.96745 ], [ 4.195946, 49.96085 ], [ 4.197356, 49.954486 ], [ 4.22778, 49.95793 ], [ 4.233068, 49.957824 ], [ 4.232132, 49.95596 ], [ 4.232061, 49.952462 ], [ 4.220206, 49.93359 ], [ 4.217774, 49.91626 ], [ 4.222142, 49.910427 ], [ 4.233643, 49.90912 ], [ 4.236936, 49.90378 ], [ 4.24633, 49.90226 ], [ 4.255734, 49.903977 ], [ 4.251798, 49.8904 ], [ 4.250089, 49.86324 ], [ 4.249554, 49.86011 ], [ 4.249004, 49.85696 ], [ 4.246034, 49.85426 ], [ 4.233752, 49.84863 ], [ 4.23017, 49.836088 ], [ 4.225337, 49.83498 ], [ 4.214774, 49.806115 ], [ 4.219523, 49.805 ], [ 4.227042, 49.79319 ], [ 4.224917, 49.79022 ], [ 4.209942, 49.78205 ], [ 4.206332, 49.77962 ], [ 4.212018, 49.774218 ], [ 4.214263, 49.77118 ], [ 4.224503, 49.77294 ], [ 4.242039, 49.765469 ], [ 4.246879, 49.75574 ], [ 4.230539, 49.74703 ], [ 4.226128, 49.73424 ], [ 4.227618, 49.731073 ], [ 4.225406, 49.72728 ], [ 4.220371, 49.72599 ], [ 4.205171, 49.722706 ], [ 4.202292, 49.72051 ], [ 4.191381, 49.715644 ], [ 4.192459, 49.71254 ], [ 4.184381, 49.70123 ], [ 4.185269, 49.698872 ], [ 4.179917, 49.698062 ], [ 4.164831, 49.693894 ], [ 4.160116, 49.69305 ], [ 4.151058, 49.690646 ], [ 4.146816, 49.689266 ], [ 4.146699, 49.67785 ], [ 4.126474, 49.6782 ], [ 4.122702, 49.660923 ], [ 4.124871, 49.650613 ], [ 4.11724, 49.641526 ], [ 4.11569, 49.63326 ], [ 4.110419, 49.63265 ], [ 4.095983, 49.629173 ], [ 4.071483, 49.63594 ], [ 4.050555, 49.634931 ], [ 4.047514, 49.63781 ], [ 4.042341, 49.63791 ], [ 4.038598, 49.62526 ], [ 4.026316, 49.619905 ], [ 4.031525, 49.61411 ], [ 4.047558, 49.60065 ], [ 4.060605, 49.59637 ], [ 4.064445, 49.594161 ], [ 4.060391, 49.587978 ], [ 4.062671, 49.57459 ], [ 4.07677, 49.570721 ], [ 4.059686, 49.5545 ], [ 4.050439, 49.55159 ], [ 4.051908, 49.545073 ], [ 4.067545, 49.54314 ], [ 4.075648, 49.53896 ], [ 4.075097, 49.521852 ], [ 4.074145, 49.51859 ], [ 4.060243, 49.521254 ], [ 4.056108, 49.508824 ], [ 4.04086, 49.508381 ], [ 4.040423, 49.505176 ], [ 4.040766, 49.495519 ], [ 4.040928, 49.492651 ], [ 4.041527, 49.484044 ], [ 4.041419, 49.48075 ], [ 4.041379, 49.477403 ], [ 4.042112, 49.47073 ], [ 4.066154, 49.44545 ], [ 4.06141, 49.44673 ], [ 4.056813, 49.445737 ], [ 4.047178, 49.445173 ], [ 4.037579, 49.43808 ], [ 4.0394, 49.43544 ], [ 4.04326, 49.4246 ], [ 4.04913, 49.40901 ], [ 4.047973, 49.40564 ], [ 4.044698, 49.4031 ], [ 4.037098, 49.384126 ], [ 4.035496, 49.359904 ], [ 4.02145, 49.36018 ], [ 4.012729, 49.358308 ], [ 4.011882, 49.361462 ], [ 4.008214, 49.367416 ], [ 3.986644, 49.37892 ], [ 3.981515, 49.379241 ], [ 3.961309, 49.37734 ], [ 3.93472, 49.39841 ], [ 3.933172, 49.40113 ], [ 3.92482, 49.40772 ], [ 3.92132, 49.405361 ], [ 3.910328, 49.395268 ], [ 3.895741, 49.39278 ], [ 3.891038, 49.39155 ], [ 3.87455, 49.383999 ], [ 3.859844, 49.381525 ], [ 3.856059, 49.36835 ], [ 3.853577, 49.366413 ], [ 3.847477, 49.364596 ], [ 3.848856, 49.36139 ], [ 3.857908, 49.353672 ], [ 3.85131, 49.34494 ], [ 3.83278, 49.35026 ], [ 3.828389, 49.351891 ], [ 3.823765, 49.35699 ], [ 3.818508, 49.357011 ], [ 3.803095, 49.358822 ], [ 3.793198, 49.35689 ], [ 3.789367, 49.354714 ], [ 3.779802, 49.352853 ], [ 3.777535, 49.35582 ], [ 3.773533, 49.354187 ], [ 3.757818, 49.347608 ], [ 3.746475, 49.34815 ], [ 3.741087, 49.34759 ], [ 3.741252, 49.344699 ], [ 3.742022, 49.33895 ], [ 3.736196, 49.33555 ], [ 3.731413, 49.33493 ], [ 3.71235, 49.33407 ], [ 3.707044, 49.333353 ], [ 3.69306, 49.32861 ], [ 3.687315, 49.32683 ], [ 3.683021, 49.32557 ], [ 3.669161, 49.32475 ], [ 3.666467, 49.32172 ], [ 3.647596, 49.31596 ], [ 3.64492, 49.313115 ], [ 3.642556, 49.303248 ], [ 3.63834, 49.30135 ], [ 3.64038, 49.29846 ], [ 3.655943, 49.29108 ], [ 3.658994, 49.28677 ], [ 3.651676, 49.27863 ], [ 3.66059, 49.270796 ], [ 3.665133, 49.26943 ], [ 3.660449, 49.26837 ], [ 3.655255, 49.26285 ], [ 3.670256, 49.24074 ], [ 3.67504, 49.24009 ], [ 3.677019, 49.237082 ], [ 3.666006, 49.22311 ], [ 3.651479, 49.22156 ], [ 3.654839, 49.219233 ], [ 3.654814, 49.212922 ], [ 3.662545, 49.20898 ], [ 3.67667, 49.20726 ], [ 3.681937, 49.198746 ], [ 3.697477, 49.206641 ], [ 3.700577, 49.20145 ], [ 3.704655, 49.20067 ], [ 3.703936, 49.19729 ], [ 3.69754, 49.19191 ], [ 3.70649, 49.18032 ], [ 3.725822, 49.17501 ], [ 3.740643, 49.17866 ], [ 3.751148, 49.1777 ], [ 3.748676, 49.15853 ], [ 3.744432, 49.15697 ], [ 3.739564, 49.15689 ], [ 3.734837, 49.15513 ], [ 3.717014, 49.14704 ], [ 3.712178, 49.146191 ], [ 3.703297, 49.143204 ], [ 3.697999, 49.14871 ], [ 3.695606, 49.151143 ], [ 3.683835, 49.15449 ], [ 3.679251, 49.15302 ], [ 3.654771, 49.148791 ], [ 3.624456, 49.151353 ], [ 3.621107, 49.14977 ], [ 3.619819, 49.147538 ], [ 3.619769, 49.14105 ], [ 3.612047, 49.137004 ], [ 3.610441, 49.127518 ], [ 3.600018, 49.12069 ], [ 3.601545, 49.117645 ], [ 3.613414, 49.115904 ], [ 3.620078, 49.107328 ], [ 3.62255, 49.10449 ], [ 3.63224, 49.08609 ], [ 3.639054, 49.08131 ], [ 3.638573, 49.077865 ], [ 3.632115, 49.072405 ], [ 3.607391, 49.071858 ], [ 3.604007, 49.06915 ], [ 3.600591, 49.06256 ], [ 3.590739, 49.06013 ], [ 3.587706, 49.05935 ], [ 3.585204, 49.03887 ], [ 3.586674, 49.03583 ], [ 3.614684, 49.033552 ], [ 3.615771, 49.03642 ], [ 3.64997, 49.04142 ], [ 3.65839, 49.037753 ], [ 3.66354, 49.037311 ], [ 3.677678, 49.01602 ], [ 3.668852, 49.00798 ], [ 3.665159, 49.00563 ], [ 3.660412, 49.0043 ], [ 3.639825, 49.003998 ], [ 3.637845, 49.000843 ], [ 3.625814, 48.98575 ], [ 3.621206, 48.96603 ], [ 3.616661, 48.96516 ], [ 3.602925, 48.96545 ], [ 3.591475, 48.960246 ], [ 3.594094, 48.95762 ], [ 3.601246, 48.946682 ], [ 3.593373, 48.944644 ], [ 3.588352, 48.94372 ], [ 3.574443, 48.939025 ], [ 3.57243, 48.918612 ], [ 3.566684, 48.913496 ], [ 3.547421, 48.91502 ], [ 3.528576, 48.91214 ], [ 3.523973, 48.907485 ], [ 3.520911, 48.90559 ], [ 3.508888, 48.89112 ], [ 3.502839, 48.874895 ], [ 3.502997, 48.87149 ], [ 3.494059, 48.8691 ], [ 3.489643, 48.8678 ], [ 3.485612, 48.866746 ], [ 3.481315, 48.86647 ], [ 3.484515, 48.86024 ], [ 3.486791, 48.857307 ], [ 3.485187, 48.85191 ] ], [ [ 2.99023, 49.21067 ], [ 2.991739, 49.21094 ], [ 2.99237, 49.2121 ], [ 2.994511, 49.21236 ], [ 2.995321, 49.21132 ], [ 2.995746, 49.21258 ], [ 2.99694, 49.21401 ], [ 2.997887, 49.21396 ], [ 2.999698, 49.215384 ], [ 2.99779, 49.21679 ], [ 2.998161, 49.21895 ], [ 2.998298, 49.21909 ], [ 3.002759, 49.21884 ], [ 3.002566, 49.21969 ], [ 3.000412, 49.222666 ], [ 2.997749, 49.22358 ], [ 2.993755, 49.22253 ], [ 2.992451, 49.2232 ], [ 2.988457, 49.22211 ], [ 2.989446, 49.219492 ], [ 2.984698, 49.21817 ], [ 2.982488, 49.21688 ], [ 2.982406, 49.2163 ], [ 2.985082, 49.21624 ], [ 2.986304, 49.21511 ], [ 2.985454, 49.213082 ], [ 2.987087, 49.212264 ], [ 2.987855, 49.21253 ], [ 2.988597, 49.21239 ], [ 2.987417, 49.210915 ], [ 2.988514, 49.211356 ], [ 2.99023, 49.21067 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "3", "CODE_DEPT": "03", "NOM_DEPT": "ALLIER", "CODE_CHF": "190", "NOM_CHF": "MOULINS", "X_CHF_LIEU": "7254", "Y_CHF_LIEU": "66072", "X_CENTROID": "7144", "Y_CENTROID": "65882", "CODE_REG": "83", "NOM_REGION": "AUVERGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.693892, 45.93096 ], [ 3.691148, 45.933452 ], [ 3.682524, 45.94054 ], [ 3.680677, 45.94357 ], [ 3.678016, 45.95595 ], [ 3.666639, 45.96115 ], [ 3.66186, 45.961012 ], [ 3.63916, 45.965428 ], [ 3.631994, 45.96106 ], [ 3.630235, 45.96417 ], [ 3.625873, 45.983702 ], [ 3.613497, 45.99749 ], [ 3.613056, 46.00084 ], [ 3.598457, 46.01774 ], [ 3.588341, 46.02418 ], [ 3.584021, 46.02279 ], [ 3.577777, 46.017844 ], [ 3.554569, 46.01839 ], [ 3.553012, 46.01526 ], [ 3.548701, 46.015845 ], [ 3.544922, 46.014036 ], [ 3.538337, 46.02133 ], [ 3.520709, 46.02037 ], [ 3.520433, 46.01443 ], [ 3.486673, 46.01432 ], [ 3.473174, 46.010738 ], [ 3.468679, 46.00941 ], [ 3.464145, 46.008173 ], [ 3.467401, 46.02788 ], [ 3.463125, 46.037461 ], [ 3.467123, 46.03934 ], [ 3.471773, 46.04022 ], [ 3.460557, 46.05048 ], [ 3.460638, 46.057058 ], [ 3.457308, 46.059394 ], [ 3.45719, 46.062303 ], [ 3.453593, 46.06379 ], [ 3.444781, 46.060291 ], [ 3.434954, 46.060824 ], [ 3.422215, 46.07129 ], [ 3.419742, 46.07438 ], [ 3.402685, 46.066805 ], [ 3.382902, 46.06457 ], [ 3.369134, 46.054484 ], [ 3.336269, 46.04605 ], [ 3.332054, 46.044098 ], [ 3.331634, 46.047269 ], [ 3.332797, 46.05355 ], [ 3.317011, 46.059126 ], [ 3.314361, 46.061601 ], [ 3.305497, 46.06118 ], [ 3.302392, 46.06577 ], [ 3.297921, 46.06435 ], [ 3.284372, 46.06596 ], [ 3.275767, 46.062935 ], [ 3.256571, 46.065798 ], [ 3.253201, 46.06435 ], [ 3.241718, 46.062454 ], [ 3.237284, 46.063247 ], [ 3.230469, 46.06687 ], [ 3.232525, 46.06972 ], [ 3.228259, 46.070487 ], [ 3.221868, 46.067393 ], [ 3.214511, 46.074945 ], [ 3.179455, 46.07346 ], [ 3.179342, 46.066577 ], [ 3.174579, 46.06595 ], [ 3.127839, 46.07149 ], [ 3.121821, 46.076424 ], [ 3.118319, 46.07858 ], [ 3.116072, 46.080356 ], [ 3.113059, 46.081448 ], [ 3.108918, 46.081443 ], [ 3.100845, 46.0823 ], [ 3.098327, 46.08532 ], [ 3.099678, 46.095653 ], [ 3.090942, 46.111725 ], [ 3.050446, 46.1008 ], [ 3.039111, 46.107486 ], [ 3.035161, 46.105479 ], [ 3.026111, 46.102933 ], [ 3.021631, 46.101683 ], [ 3.014279, 46.105277 ], [ 3.00896, 46.11452 ], [ 2.994263, 46.123197 ], [ 2.980121, 46.12452 ], [ 2.971744, 46.12169 ], [ 2.968686, 46.12383 ], [ 2.964396, 46.129063 ], [ 2.96161, 46.13184 ], [ 2.95212, 46.17133 ], [ 2.948325, 46.169174 ], [ 2.915695, 46.17413 ], [ 2.913332, 46.176446 ], [ 2.910762, 46.178659 ], [ 2.915582, 46.17982 ], [ 2.919052, 46.18241 ], [ 2.919911, 46.18947 ], [ 2.912136, 46.202523 ], [ 2.915817, 46.212792 ], [ 2.923866, 46.217102 ], [ 2.932737, 46.218683 ], [ 2.936354, 46.2209 ], [ 2.939127, 46.22375 ], [ 2.932266, 46.23232 ], [ 2.945972, 46.24168 ], [ 2.941248, 46.242082 ], [ 2.925898, 46.24938 ], [ 2.905702, 46.248713 ], [ 2.886301, 46.253135 ], [ 2.866004, 46.251059 ], [ 2.85976, 46.25659 ], [ 2.855298, 46.25519 ], [ 2.819163, 46.241792 ], [ 2.817677, 46.23211 ], [ 2.823309, 46.219961 ], [ 2.817313, 46.20502 ], [ 2.810405, 46.196213 ], [ 2.805593, 46.196421 ], [ 2.786782, 46.19865 ], [ 2.783931, 46.20146 ], [ 2.769665, 46.21074 ], [ 2.759837, 46.21 ], [ 2.746418, 46.21988 ], [ 2.732598, 46.223413 ], [ 2.730277, 46.2204 ], [ 2.721645, 46.208547 ], [ 2.730098, 46.196285 ], [ 2.722605, 46.18809 ], [ 2.723105, 46.181518 ], [ 2.71947, 46.17996 ], [ 2.702702, 46.181007 ], [ 2.699216, 46.1785 ], [ 2.68505, 46.17571 ], [ 2.676724, 46.17206 ], [ 2.674938, 46.15853 ], [ 2.668672, 46.15326 ], [ 2.664111, 46.140458 ], [ 2.6619, 46.137759 ], [ 2.654375, 46.12526 ], [ 2.646827, 46.120748 ], [ 2.637202, 46.119385 ], [ 2.623711, 46.1228 ], [ 2.619412, 46.12462 ], [ 2.601883, 46.1309 ], [ 2.598423, 46.129358 ], [ 2.591384, 46.12678 ], [ 2.587726, 46.129275 ], [ 2.574549, 46.139933 ], [ 2.565379, 46.143041 ], [ 2.559155, 46.174409 ], [ 2.55459, 46.174634 ], [ 2.541834, 46.17629 ], [ 2.528499, 46.184939 ], [ 2.526102, 46.18782 ], [ 2.528303, 46.19419 ], [ 2.521757, 46.20277 ], [ 2.515203, 46.238543 ], [ 2.516311, 46.23944 ], [ 2.511509, 46.23952 ], [ 2.50198, 46.246978 ], [ 2.48892, 46.250009 ], [ 2.487941, 46.253354 ], [ 2.477773, 46.26881 ], [ 2.47958, 46.27539 ], [ 2.4803, 46.278831 ], [ 2.470215, 46.28635 ], [ 2.443032, 46.294999 ], [ 2.438446, 46.29366 ], [ 2.430241, 46.290739 ], [ 2.426006, 46.28453 ], [ 2.421374, 46.285327 ], [ 2.415615, 46.297932 ], [ 2.420657, 46.31013 ], [ 2.415901, 46.311351 ], [ 2.388164, 46.33157 ], [ 2.38608, 46.33197 ], [ 2.383785, 46.329129 ], [ 2.37061, 46.31272 ], [ 2.36621, 46.31117 ], [ 2.357932, 46.323367 ], [ 2.334254, 46.32517 ], [ 2.314586, 46.33464 ], [ 2.31162, 46.34097 ], [ 2.30211, 46.34236 ], [ 2.307829, 46.347666 ], [ 2.309602, 46.356592 ], [ 2.323262, 46.365778 ], [ 2.337142, 46.365742 ], [ 2.336464, 46.36904 ], [ 2.335475, 46.372324 ], [ 2.331406, 46.37841 ], [ 2.312479, 46.37606 ], [ 2.300942, 46.381861 ], [ 2.286936, 46.38331 ], [ 2.284789, 46.386309 ], [ 2.284576, 46.38962 ], [ 2.278416, 46.40865 ], [ 2.282033, 46.41082 ], [ 2.279481, 46.41384 ], [ 2.281048, 46.420405 ], [ 2.278432, 46.427215 ], [ 2.284666, 46.45136 ], [ 2.305465, 46.475433 ], [ 2.313097, 46.47077 ], [ 2.316996, 46.468505 ], [ 2.321409, 46.46891 ], [ 2.330814, 46.478862 ], [ 2.32963, 46.48183 ], [ 2.324969, 46.487742 ], [ 2.334315, 46.499566 ], [ 2.363697, 46.51724 ], [ 2.3683, 46.51843 ], [ 2.384099, 46.5183 ], [ 2.414634, 46.520833 ], [ 2.427808, 46.52598 ], [ 2.437939, 46.52528 ], [ 2.446148, 46.521044 ], [ 2.478655, 46.530724 ], [ 2.482929, 46.532697 ], [ 2.496526, 46.531155 ], [ 2.500235, 46.52215 ], [ 2.50976, 46.52345 ], [ 2.520282, 46.529925 ], [ 2.529408, 46.5278 ], [ 2.532682, 46.521701 ], [ 2.536652, 46.519709 ], [ 2.540403, 46.521921 ], [ 2.55179, 46.5284 ], [ 2.570133, 46.533409 ], [ 2.576552, 46.53852 ], [ 2.613262, 46.55461 ], [ 2.605668, 46.563288 ], [ 2.609356, 46.569613 ], [ 2.60834, 46.57295 ], [ 2.598461, 46.59531 ], [ 2.583888, 46.59459 ], [ 2.57738, 46.60673 ], [ 2.568383, 46.609392 ], [ 2.572922, 46.61045 ], [ 2.588657, 46.61695 ], [ 2.584599, 46.62636 ], [ 2.596325, 46.636723 ], [ 2.5931, 46.64658 ], [ 2.588997, 46.6481 ], [ 2.566995, 46.65248 ], [ 2.570439, 46.65681 ], [ 2.570551, 46.65927 ], [ 2.606155, 46.669299 ], [ 2.60704, 46.662639 ], [ 2.623914, 46.65663 ], [ 2.63156, 46.6688 ], [ 2.631838, 46.672203 ], [ 2.621638, 46.679274 ], [ 2.623478, 46.68931 ], [ 2.628221, 46.690308 ], [ 2.648081, 46.68896 ], [ 2.656179, 46.69735 ], [ 2.674262, 46.702279 ], [ 2.677795, 46.704612 ], [ 2.676175, 46.71084 ], [ 2.688603, 46.72118 ], [ 2.698463, 46.72106 ], [ 2.703898, 46.7256 ], [ 2.704833, 46.73904 ], [ 2.730642, 46.74799 ], [ 2.734528, 46.74622 ], [ 2.743797, 46.73055 ], [ 2.755115, 46.72391 ], [ 2.758521, 46.717659 ], [ 2.771375, 46.72126 ], [ 2.77475, 46.718953 ], [ 2.782748, 46.722462 ], [ 2.793416, 46.733557 ], [ 2.822561, 46.735415 ], [ 2.827485, 46.735333 ], [ 2.841168, 46.727321 ], [ 2.845727, 46.726616 ], [ 2.843818, 46.739228 ], [ 2.844634, 46.742362 ], [ 2.875346, 46.760642 ], [ 2.880422, 46.77003 ], [ 2.894344, 46.77417 ], [ 2.898967, 46.775675 ], [ 2.910924, 46.781348 ], [ 2.908913, 46.78447 ], [ 2.912941, 46.790192 ], [ 2.936099, 46.795393 ], [ 2.93989, 46.79319 ], [ 2.944387, 46.792993 ], [ 2.952503, 46.79268 ], [ 2.959915, 46.803877 ], [ 2.979899, 46.80342 ], [ 2.996604, 46.79696 ], [ 3.01614, 46.79983 ], [ 3.027584, 46.79337 ], [ 3.032068, 46.794911 ], [ 3.036264, 46.775966 ], [ 3.037546, 46.77283 ], [ 3.04955, 46.75772 ], [ 3.079605, 46.739964 ], [ 3.083478, 46.73777 ], [ 3.100537, 46.734293 ], [ 3.104673, 46.73318 ], [ 3.129056, 46.727493 ], [ 3.143329, 46.71274 ], [ 3.146988, 46.710211 ], [ 3.149247, 46.708218 ], [ 3.167414, 46.690968 ], [ 3.199366, 46.6795 ], [ 3.204426, 46.678752 ], [ 3.226936, 46.69 ], [ 3.229528, 46.69646 ], [ 3.234217, 46.69737 ], [ 3.259773, 46.70766 ], [ 3.268544, 46.715924 ], [ 3.278417, 46.716324 ], [ 3.282979, 46.714971 ], [ 3.283373, 46.71515 ], [ 3.298052, 46.715879 ], [ 3.304499, 46.702842 ], [ 3.318052, 46.68844 ], [ 3.337856, 46.685253 ], [ 3.352532, 46.686596 ], [ 3.356914, 46.688419 ], [ 3.366416, 46.69068 ], [ 3.385292, 46.713764 ], [ 3.390052, 46.714892 ], [ 3.414609, 46.711105 ], [ 3.434214, 46.71222 ], [ 3.430011, 46.69883 ], [ 3.436015, 46.69355 ], [ 3.445923, 46.69225 ], [ 3.452896, 46.687333 ], [ 3.452928, 46.677 ], [ 3.4474, 46.67139 ], [ 3.443455, 46.662338 ], [ 3.45409, 46.654841 ], [ 3.45571, 46.651466 ], [ 3.474191, 46.653535 ], [ 3.483132, 46.651678 ], [ 3.486669, 46.65381 ], [ 3.486834, 46.660559 ], [ 3.520472, 46.68524 ], [ 3.529451, 46.688203 ], [ 3.534364, 46.68752 ], [ 3.542815, 46.67946 ], [ 3.550406, 46.682395 ], [ 3.554262, 46.684601 ], [ 3.559853, 46.68998 ], [ 3.5489, 46.70555 ], [ 3.54791, 46.718956 ], [ 3.547722, 46.722415 ], [ 3.564076, 46.71611 ], [ 3.568891, 46.71591 ], [ 3.573043, 46.720994 ], [ 3.576978, 46.72291 ], [ 3.580594, 46.71698 ], [ 3.595819, 46.725291 ], [ 3.578083, 46.74927 ], [ 3.592562, 46.762801 ], [ 3.596399, 46.76499 ], [ 3.601826, 46.75213 ], [ 3.626404, 46.752267 ], [ 3.629424, 46.749459 ], [ 3.628874, 46.74613 ], [ 3.622802, 46.7409 ], [ 3.637681, 46.724192 ], [ 3.637642, 46.70748 ], [ 3.651138, 46.704235 ], [ 3.654644, 46.69107 ], [ 3.655468, 46.68775 ], [ 3.671974, 46.68191 ], [ 3.670584, 46.67209 ], [ 3.692296, 46.6636 ], [ 3.698335, 46.65826 ], [ 3.699364, 46.654886 ], [ 3.699613, 46.65191 ], [ 3.703416, 46.64763 ], [ 3.704613, 46.6452 ], [ 3.712708, 46.63333 ], [ 3.716206, 46.630973 ], [ 3.723234, 46.622771 ], [ 3.713444, 46.61072 ], [ 3.719594, 46.60544 ], [ 3.734557, 46.60378 ], [ 3.737848, 46.58728 ], [ 3.739016, 46.58386 ], [ 3.740264, 46.578593 ], [ 3.740437, 46.57593 ], [ 3.743285, 46.566462 ], [ 3.741006, 46.56022 ], [ 3.737008, 46.55607 ], [ 3.73427, 46.554364 ], [ 3.732679, 46.547747 ], [ 3.741847, 46.539547 ], [ 3.755776, 46.53615 ], [ 3.770248, 46.538954 ], [ 3.777916, 46.53126 ], [ 3.780666, 46.528366 ], [ 3.794429, 46.527344 ], [ 3.807423, 46.51938 ], [ 3.811746, 46.52059 ], [ 3.837014, 46.53161 ], [ 3.846291, 46.524009 ], [ 3.840126, 46.518454 ], [ 3.845038, 46.513086 ], [ 3.845819, 46.51294 ], [ 3.855143, 46.51532 ], [ 3.863828, 46.51268 ], [ 3.860414, 46.49556 ], [ 3.865262, 46.489648 ], [ 3.887973, 46.48236 ], [ 3.897341, 46.482053 ], [ 3.898791, 46.48541 ], [ 3.90295, 46.491725 ], [ 3.911475, 46.495494 ], [ 3.916492, 46.496102 ], [ 3.934151, 46.490952 ], [ 3.953475, 46.49179 ], [ 3.957963, 46.49048 ], [ 3.952282, 46.478727 ], [ 3.960554, 46.47766 ], [ 3.965148, 46.477997 ], [ 3.97434, 46.47957 ], [ 4.000963, 46.462011 ], [ 4.001541, 46.45875 ], [ 3.997519, 46.45258 ], [ 4.002835, 46.44053 ], [ 3.989353, 46.436951 ], [ 3.995438, 46.42849 ], [ 3.995311, 46.4251 ], [ 3.991706, 46.42308 ], [ 3.984118, 46.41966 ], [ 3.984633, 46.416478 ], [ 3.987989, 46.40765 ], [ 3.977569, 46.397871 ], [ 3.98086, 46.388351 ], [ 3.98187, 46.38516 ], [ 3.991544, 46.370419 ], [ 3.988308, 46.35402 ], [ 3.98739, 46.350751 ], [ 3.987605, 46.34751 ], [ 3.985653, 46.328685 ], [ 3.994357, 46.327655 ], [ 4.005259, 46.32741 ], [ 3.985659, 46.3175 ], [ 3.971745, 46.320726 ], [ 3.947644, 46.319029 ], [ 3.947853, 46.30561 ], [ 3.947858, 46.30367 ], [ 3.931632, 46.29622 ], [ 3.901973, 46.293158 ], [ 3.892627, 46.284857 ], [ 3.899534, 46.275914 ], [ 3.886954, 46.27379 ], [ 3.882358, 46.274707 ], [ 3.875376, 46.272546 ], [ 3.868924, 46.26366 ], [ 3.850553, 46.26209 ], [ 3.845692, 46.26181 ], [ 3.807612, 46.25739 ], [ 3.8027, 46.23851 ], [ 3.798801, 46.23991 ], [ 3.778236, 46.24306 ], [ 3.773322, 46.242469 ], [ 3.76865, 46.23699 ], [ 3.773353, 46.227186 ], [ 3.785038, 46.22044 ], [ 3.793571, 46.207686 ], [ 3.788646, 46.19804 ], [ 3.789791, 46.18749 ], [ 3.806379, 46.165757 ], [ 3.809736, 46.163104 ], [ 3.806301, 46.16134 ], [ 3.791627, 46.15658 ], [ 3.790052, 46.15339 ], [ 3.801251, 46.13142 ], [ 3.793486, 46.112203 ], [ 3.802831, 46.11014 ], [ 3.818358, 46.093007 ], [ 3.821294, 46.090239 ], [ 3.819836, 46.08704 ], [ 3.816589, 46.084564 ], [ 3.818213, 46.07803 ], [ 3.805606, 46.053061 ], [ 3.807536, 46.049778 ], [ 3.815876, 46.0191 ], [ 3.824711, 46.0066 ], [ 3.827342, 46.000213 ], [ 3.832076, 45.99966 ], [ 3.831736, 45.99944 ], [ 3.828199, 45.99707 ], [ 3.82322, 45.988158 ], [ 3.80972, 45.984662 ], [ 3.805153, 45.98329 ], [ 3.781713, 45.972792 ], [ 3.760021, 45.980675 ], [ 3.755204, 45.97982 ], [ 3.75064, 45.97003 ], [ 3.742071, 45.96669 ], [ 3.709612, 45.97414 ], [ 3.701807, 45.965724 ], [ 3.704505, 45.955549 ], [ 3.69416, 45.948166 ], [ 3.693892, 45.93096 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "4", "CODE_DEPT": "04", "NOM_DEPT": "ALPES-DE-HAUTE-PROVENCE", "CODE_CHF": "070", "NOM_CHF": "DIGNE-LES-BAINS", "X_CHF_LIEU": "9590", "Y_CHF_LIEU": "63379", "X_CENTROID": "9596", "Y_CENTROID": "63394", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.636396, 43.788951 ], [ 6.631781, 43.78971 ], [ 6.624163, 43.797637 ], [ 6.623513, 43.804451 ], [ 6.586912, 43.80532 ], [ 6.58621, 43.802451 ], [ 6.581177, 43.79815 ], [ 6.578409, 43.795654 ], [ 6.554071, 43.783435 ], [ 6.551026, 43.78125 ], [ 6.542339, 43.77589 ], [ 6.545273, 43.782523 ], [ 6.538469, 43.795518 ], [ 6.520281, 43.806925 ], [ 6.487059, 43.79225 ], [ 6.469959, 43.797523 ], [ 6.456835, 43.79313 ], [ 6.44893, 43.793615 ], [ 6.438808, 43.797745 ], [ 6.438807, 43.7942 ], [ 6.415852, 43.79005 ], [ 6.412788, 43.762256 ], [ 6.383541, 43.734437 ], [ 6.378913, 43.739372 ], [ 6.376266, 43.7423 ], [ 6.35451, 43.736515 ], [ 6.329213, 43.746226 ], [ 6.312809, 43.7588 ], [ 6.267787, 43.778547 ], [ 6.257113, 43.7976 ], [ 6.24963, 43.80158 ], [ 6.245312, 43.80241 ], [ 6.233044, 43.798984 ], [ 6.224189, 43.79984 ], [ 6.219498, 43.799781 ], [ 6.207321, 43.79529 ], [ 6.188387, 43.77614 ], [ 6.18504, 43.768282 ], [ 6.184159, 43.76561 ], [ 6.182737, 43.762171 ], [ 6.16532, 43.74945 ], [ 6.140606, 43.737611 ], [ 6.136721, 43.73675 ], [ 6.128625, 43.73679 ], [ 6.124387, 43.738339 ], [ 6.11575, 43.74556 ], [ 6.111011, 43.745665 ], [ 6.095298, 43.72961 ], [ 6.090296, 43.728974 ], [ 6.091826, 43.7258 ], [ 6.085981, 43.71666 ], [ 6.070405, 43.704944 ], [ 6.066238, 43.70479 ], [ 6.056553, 43.700084 ], [ 6.051561, 43.697712 ], [ 6.047019, 43.69703 ], [ 6.034615, 43.692711 ], [ 6.038784, 43.679592 ], [ 6.021735, 43.668288 ], [ 6.018883, 43.67112 ], [ 6.011191, 43.675352 ], [ 6.004165, 43.688288 ], [ 5.987772, 43.69542 ], [ 5.986794, 43.698564 ], [ 5.984534, 43.71449 ], [ 5.97993, 43.71548 ], [ 5.96521, 43.7225 ], [ 5.951306, 43.721828 ], [ 5.943609, 43.725944 ], [ 5.938029, 43.74907 ], [ 5.928999, 43.7498 ], [ 5.925662, 43.755964 ], [ 5.922661, 43.757539 ], [ 5.918742, 43.75548 ], [ 5.905002, 43.75278 ], [ 5.903144, 43.735513 ], [ 5.888624, 43.72636 ], [ 5.874983, 43.72299 ], [ 5.855749, 43.723189 ], [ 5.849043, 43.71818 ], [ 5.848607, 43.72164 ], [ 5.835113, 43.743484 ], [ 5.82767, 43.74767 ], [ 5.781343, 43.75566 ], [ 5.778678, 43.752709 ], [ 5.757333, 43.729409 ], [ 5.748017, 43.74148 ], [ 5.716274, 43.756931 ], [ 5.713558, 43.78112 ], [ 5.705321, 43.779587 ], [ 5.695001, 43.78421 ], [ 5.690681, 43.785127 ], [ 5.684298, 43.789453 ], [ 5.674483, 43.80736 ], [ 5.670121, 43.80872 ], [ 5.657024, 43.81851 ], [ 5.654445, 43.825111 ], [ 5.650596, 43.82525 ], [ 5.646917, 43.826104 ], [ 5.643087, 43.826927 ], [ 5.631373, 43.82857 ], [ 5.627694, 43.830792 ], [ 5.599493, 43.82714 ], [ 5.571883, 43.82934 ], [ 5.563903, 43.820867 ], [ 5.551256, 43.81722 ], [ 5.547911, 43.816398 ], [ 5.544566, 43.817233 ], [ 5.548657, 43.84789 ], [ 5.557468, 43.855458 ], [ 5.561328, 43.85746 ], [ 5.572737, 43.863508 ], [ 5.59029, 43.887233 ], [ 5.591367, 43.890674 ], [ 5.60656, 43.91608 ], [ 5.583383, 43.915913 ], [ 5.569475, 43.939544 ], [ 5.567633, 43.94264 ], [ 5.562939, 43.94245 ], [ 5.544992, 43.939055 ], [ 5.541171, 43.940828 ], [ 5.525213, 43.946861 ], [ 5.512674, 43.9454 ], [ 5.511577, 43.94852 ], [ 5.507972, 43.9578 ], [ 5.51317, 43.97336 ], [ 5.514257, 43.976792 ], [ 5.519542, 43.993959 ], [ 5.542776, 44.02435 ], [ 5.544501, 44.06967 ], [ 5.540038, 44.068458 ], [ 5.517337, 44.06347 ], [ 5.503023, 44.06371 ], [ 5.501567, 44.06694 ], [ 5.49816, 44.073267 ], [ 5.498788, 44.11572 ], [ 5.507615, 44.11776 ], [ 5.511089, 44.12396 ], [ 5.542146, 44.13326 ], [ 5.550089, 44.145894 ], [ 5.551315, 44.14924 ], [ 5.551333, 44.149647 ], [ 5.570423, 44.148616 ], [ 5.581188, 44.155153 ], [ 5.568105, 44.168725 ], [ 5.564374, 44.170902 ], [ 5.575671, 44.186316 ], [ 5.579657, 44.18837 ], [ 5.594234, 44.187481 ], [ 5.602053, 44.191502 ], [ 5.605704, 44.19114 ], [ 5.609327, 44.19071 ], [ 5.616955, 44.17862 ], [ 5.629773, 44.17409 ], [ 5.638795, 44.16628 ], [ 5.632026, 44.157375 ], [ 5.631136, 44.150579 ], [ 5.640667, 44.149234 ], [ 5.645321, 44.148185 ], [ 5.67406, 44.14732 ], [ 5.678605, 44.146098 ], [ 5.681266, 44.16007 ], [ 5.682728, 44.163486 ], [ 5.650428, 44.166766 ], [ 5.643897, 44.17053 ], [ 5.652288, 44.186237 ], [ 5.651593, 44.18958 ], [ 5.676037, 44.191433 ], [ 5.688817, 44.188257 ], [ 5.69239, 44.186269 ], [ 5.697942, 44.19195 ], [ 5.714941, 44.19851 ], [ 5.739009, 44.20176 ], [ 5.754537, 44.209827 ], [ 5.776254, 44.205578 ], [ 5.787955, 44.2103 ], [ 5.791914, 44.211863 ], [ 5.81088, 44.210757 ], [ 5.830739, 44.20043 ], [ 5.854398, 44.196367 ], [ 5.859057, 44.19517 ], [ 5.895566, 44.19058 ], [ 5.900313, 44.19088 ], [ 5.909902, 44.191603 ], [ 5.912356, 44.20479 ], [ 5.88447, 44.2102 ], [ 5.876728, 44.21433 ], [ 5.873183, 44.220745 ], [ 5.872682, 44.22421 ], [ 5.869428, 44.2307 ], [ 5.86181, 44.235147 ], [ 5.859308, 44.245408 ], [ 5.835375, 44.25742 ], [ 5.831221, 44.259313 ], [ 5.828455, 44.2609 ], [ 5.826492, 44.26301 ], [ 5.823033, 44.27636 ], [ 5.837276, 44.294185 ], [ 5.836127, 44.29754 ], [ 5.844577, 44.29998 ], [ 5.849039, 44.30066 ], [ 5.872113, 44.29291 ], [ 5.875488, 44.29097 ], [ 5.875074, 44.277116 ], [ 5.880137, 44.271146 ], [ 5.90923, 44.252293 ], [ 5.912233, 44.249511 ], [ 5.921825, 44.24841 ], [ 5.92088, 44.251461 ], [ 5.920629, 44.257539 ], [ 5.924756, 44.26368 ], [ 5.913984, 44.26847 ], [ 5.916192, 44.28167 ], [ 5.913496, 44.288254 ], [ 5.925752, 44.29295 ], [ 5.924474, 44.299312 ], [ 5.923532, 44.30244 ], [ 5.925139, 44.3134 ], [ 5.921115, 44.31517 ], [ 5.90847, 44.31176 ], [ 5.900114, 44.314928 ], [ 5.897085, 44.320962 ], [ 5.905087, 44.32922 ], [ 5.903105, 44.335855 ], [ 5.906611, 44.338131 ], [ 5.911295, 44.337692 ], [ 5.919596, 44.340471 ], [ 5.922564, 44.34715 ], [ 5.926031, 44.34962 ], [ 5.93746, 44.359903 ], [ 5.940727, 44.36937 ], [ 5.941362, 44.372662 ], [ 5.951755, 44.39182 ], [ 5.953543, 44.39502 ], [ 5.967631, 44.40204 ], [ 5.97152, 44.403371 ], [ 5.974754, 44.40512 ], [ 5.977589, 44.407188 ], [ 5.988217, 44.410693 ], [ 5.99214, 44.411676 ], [ 6.019295, 44.41915 ], [ 6.028002, 44.43528 ], [ 6.032485, 44.436823 ], [ 6.053342, 44.44654 ], [ 6.05624, 44.44945 ], [ 6.066996, 44.443706 ], [ 6.07441, 44.44476 ], [ 6.074264, 44.45157 ], [ 6.08181, 44.464012 ], [ 6.076241, 44.468474 ], [ 6.080134, 44.47436 ], [ 6.08288, 44.47695 ], [ 6.10568, 44.474207 ], [ 6.109717, 44.475535 ], [ 6.112523, 44.475537 ], [ 6.115319, 44.475584 ], [ 6.127618, 44.4682 ], [ 6.131767, 44.468145 ], [ 6.149843, 44.462449 ], [ 6.154781, 44.46211 ], [ 6.156216, 44.44546 ], [ 6.156255, 44.44211 ], [ 6.159795, 44.436822 ], [ 6.162352, 44.434424 ], [ 6.170164, 44.437632 ], [ 6.173945, 44.439586 ], [ 6.184779, 44.424075 ], [ 6.202903, 44.41224 ], [ 6.224261, 44.3845 ], [ 6.226634, 44.381396 ], [ 6.244391, 44.387414 ], [ 6.262495, 44.412259 ], [ 6.244368, 44.446183 ], [ 6.240256, 44.44775 ], [ 6.236385, 44.46074 ], [ 6.23277, 44.46288 ], [ 6.233525, 44.46375 ], [ 6.262169, 44.465668 ], [ 6.272062, 44.472691 ], [ 6.289559, 44.47886 ], [ 6.293492, 44.480927 ], [ 6.298017, 44.47479 ], [ 6.322327, 44.46406 ], [ 6.32711, 44.463456 ], [ 6.329482, 44.468908 ], [ 6.33766, 44.470814 ], [ 6.339614, 44.476837 ], [ 6.340235, 44.4799 ], [ 6.347126, 44.49658 ], [ 6.335547, 44.507288 ], [ 6.332396, 44.51 ], [ 6.334821, 44.5114 ], [ 6.347639, 44.51543 ], [ 6.357374, 44.522637 ], [ 6.362, 44.522073 ], [ 6.370458, 44.510371 ], [ 6.394655, 44.49564 ], [ 6.398809, 44.49416 ], [ 6.406375, 44.483308 ], [ 6.408369, 44.48048 ], [ 6.40932, 44.47392 ], [ 6.415902, 44.469137 ], [ 6.438481, 44.47212 ], [ 6.445132, 44.467065 ], [ 6.458982, 44.464333 ], [ 6.468074, 44.452361 ], [ 6.477395, 44.45235 ], [ 6.481649, 44.454023 ], [ 6.498926, 44.449412 ], [ 6.507972, 44.450854 ], [ 6.512446, 44.449982 ], [ 6.521775, 44.44808 ], [ 6.535108, 44.451879 ], [ 6.557482, 44.445996 ], [ 6.581009, 44.447044 ], [ 6.585622, 44.445993 ], [ 6.588864, 44.445554 ], [ 6.603092, 44.44793 ], [ 6.627377, 44.447041 ], [ 6.6323, 44.446915 ], [ 6.637981, 44.476159 ], [ 6.64167, 44.485545 ], [ 6.664676, 44.49865 ], [ 6.668497, 44.5003 ], [ 6.683021, 44.531655 ], [ 6.681811, 44.53822 ], [ 6.6806, 44.54149 ], [ 6.704737, 44.53946 ], [ 6.737826, 44.55351 ], [ 6.754065, 44.570637 ], [ 6.770999, 44.576882 ], [ 6.769022, 44.58712 ], [ 6.780572, 44.593472 ], [ 6.789951, 44.593006 ], [ 6.796104, 44.597851 ], [ 6.799825, 44.60402 ], [ 6.809262, 44.60216 ], [ 6.821323, 44.608112 ], [ 6.845347, 44.61034 ], [ 6.852496, 44.61507 ], [ 6.858864, 44.628087 ], [ 6.882366, 44.631383 ], [ 6.906985, 44.652923 ], [ 6.907604, 44.65639 ], [ 6.915267, 44.659796 ], [ 6.922402, 44.655983 ], [ 6.944011, 44.65366 ], [ 6.948335, 44.654816 ], [ 6.953784, 44.63782 ], [ 6.967177, 44.62291 ], [ 6.954004, 44.61954 ], [ 6.938622, 44.60206 ], [ 6.930577, 44.574623 ], [ 6.918222, 44.56887 ], [ 6.907839, 44.55731 ], [ 6.879202, 44.551879 ], [ 6.869948, 44.53936 ], [ 6.855214, 44.530295 ], [ 6.859817, 44.50584 ], [ 6.861337, 44.50247 ], [ 6.867761, 44.49329 ], [ 6.871026, 44.49078 ], [ 6.875477, 44.48922 ], [ 6.879458, 44.479351 ], [ 6.904245, 44.467876 ], [ 6.913404, 44.451454 ], [ 6.936453, 44.43823 ], [ 6.941299, 44.42924 ], [ 6.927684, 44.424997 ], [ 6.91292, 44.42466 ], [ 6.899048, 44.420832 ], [ 6.895392, 44.41851 ], [ 6.894163, 44.41509 ], [ 6.895943, 44.372661 ], [ 6.887045, 44.364594 ], [ 6.887431, 44.36106 ], [ 6.88343, 44.358954 ], [ 6.87154, 44.352803 ], [ 6.868985, 44.35052 ], [ 6.862963, 44.346571 ], [ 6.859328, 44.344283 ], [ 6.84091, 44.345667 ], [ 6.823444, 44.3338 ], [ 6.809948, 44.330289 ], [ 6.804542, 44.320824 ], [ 6.796834, 44.3167 ], [ 6.795043, 44.31358 ], [ 6.796041, 44.30018 ], [ 6.786444, 44.288764 ], [ 6.790339, 44.272345 ], [ 6.785844, 44.27359 ], [ 6.763087, 44.278428 ], [ 6.756922, 44.262247 ], [ 6.743444, 44.258662 ], [ 6.737559, 44.25327 ], [ 6.728285, 44.252563 ], [ 6.724371, 44.250425 ], [ 6.723518, 44.226169 ], [ 6.714075, 44.21823 ], [ 6.717369, 44.20864 ], [ 6.698476, 44.19015 ], [ 6.702002, 44.180852 ], [ 6.701235, 44.17753 ], [ 6.697893, 44.175053 ], [ 6.687238, 44.168302 ], [ 6.704946, 44.1448 ], [ 6.707956, 44.124389 ], [ 6.719091, 44.118299 ], [ 6.722172, 44.1134 ], [ 6.724109, 44.11108 ], [ 6.740733, 44.098594 ], [ 6.746524, 44.089134 ], [ 6.749821, 44.08661 ], [ 6.752843, 44.081069 ], [ 6.756483, 44.079593 ], [ 6.75423, 44.076525 ], [ 6.747684, 44.063477 ], [ 6.745687, 44.042831 ], [ 6.771137, 44.0265 ], [ 6.788985, 44.021282 ], [ 6.795562, 44.00811 ], [ 6.798087, 44.00536 ], [ 6.838085, 43.98982 ], [ 6.836197, 43.9866 ], [ 6.834713, 43.983286 ], [ 6.837536, 43.980736 ], [ 6.845487, 43.977627 ], [ 6.848069, 43.965228 ], [ 6.847274, 43.961769 ], [ 6.84775, 43.954787 ], [ 6.87181, 43.953306 ], [ 6.881883, 43.93786 ], [ 6.891724, 43.930225 ], [ 6.895139, 43.92782 ], [ 6.899665, 43.926743 ], [ 6.912989, 43.927059 ], [ 6.943245, 43.9007 ], [ 6.942272, 43.897261 ], [ 6.937585, 43.896331 ], [ 6.918679, 43.89357 ], [ 6.914201, 43.893316 ], [ 6.892593, 43.889981 ], [ 6.883435, 43.890893 ], [ 6.875061, 43.89931 ], [ 6.855097, 43.90832 ], [ 6.849883, 43.913976 ], [ 6.835947, 43.91543 ], [ 6.832406, 43.9182 ], [ 6.82787, 43.91728 ], [ 6.801479, 43.910303 ], [ 6.781622, 43.883558 ], [ 6.777189, 43.882261 ], [ 6.748081, 43.871859 ], [ 6.716515, 43.879579 ], [ 6.71217, 43.88076 ], [ 6.671631, 43.88779 ], [ 6.672533, 43.884384 ], [ 6.67836, 43.87912 ], [ 6.696172, 43.87492 ], [ 6.698749, 43.857796 ], [ 6.702826, 43.855963 ], [ 6.698235, 43.85543 ], [ 6.680239, 43.85206 ], [ 6.667906, 43.830613 ], [ 6.700319, 43.824779 ], [ 6.711365, 43.813989 ], [ 6.70983, 43.81066 ], [ 6.706107, 43.808492 ], [ 6.642116, 43.795191 ], [ 6.636039, 43.79018 ], [ 6.636396, 43.788951 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "5", "CODE_DEPT": "05", "NOM_DEPT": "HAUTES-ALPES", "CODE_CHF": "061", "NOM_CHF": "GAP", "X_CHF_LIEU": "9443", "Y_CHF_LIEU": "63891", "X_CENTROID": "9585", "Y_CENTROID": "64014", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.948335, 44.654816 ], [ 6.944011, 44.65366 ], [ 6.922402, 44.655983 ], [ 6.915267, 44.659796 ], [ 6.907604, 44.65639 ], [ 6.906985, 44.652923 ], [ 6.882366, 44.631383 ], [ 6.858864, 44.628087 ], [ 6.852496, 44.61507 ], [ 6.845347, 44.61034 ], [ 6.821323, 44.608112 ], [ 6.809262, 44.60216 ], [ 6.799825, 44.60402 ], [ 6.796104, 44.597851 ], [ 6.789951, 44.593006 ], [ 6.780572, 44.593472 ], [ 6.769022, 44.58712 ], [ 6.770999, 44.576882 ], [ 6.754065, 44.570637 ], [ 6.737826, 44.55351 ], [ 6.704737, 44.53946 ], [ 6.6806, 44.54149 ], [ 6.681811, 44.53822 ], [ 6.683021, 44.531655 ], [ 6.668497, 44.5003 ], [ 6.664676, 44.49865 ], [ 6.64167, 44.485545 ], [ 6.637981, 44.476159 ], [ 6.6323, 44.446915 ], [ 6.627377, 44.447041 ], [ 6.603092, 44.44793 ], [ 6.588864, 44.445554 ], [ 6.585622, 44.445993 ], [ 6.581009, 44.447044 ], [ 6.557482, 44.445996 ], [ 6.535108, 44.451879 ], [ 6.521775, 44.44808 ], [ 6.512446, 44.449982 ], [ 6.507972, 44.450854 ], [ 6.498926, 44.449412 ], [ 6.481649, 44.454023 ], [ 6.477395, 44.45235 ], [ 6.468074, 44.452361 ], [ 6.458982, 44.464333 ], [ 6.445132, 44.467065 ], [ 6.438481, 44.47212 ], [ 6.415902, 44.469137 ], [ 6.40932, 44.47392 ], [ 6.408369, 44.48048 ], [ 6.406375, 44.483308 ], [ 6.398809, 44.49416 ], [ 6.394655, 44.49564 ], [ 6.370458, 44.510371 ], [ 6.362, 44.522073 ], [ 6.357374, 44.522637 ], [ 6.347639, 44.51543 ], [ 6.334821, 44.5114 ], [ 6.332396, 44.51 ], [ 6.335547, 44.507288 ], [ 6.347126, 44.49658 ], [ 6.340235, 44.4799 ], [ 6.339614, 44.476837 ], [ 6.33766, 44.470814 ], [ 6.329482, 44.468908 ], [ 6.32711, 44.463456 ], [ 6.322327, 44.46406 ], [ 6.298017, 44.47479 ], [ 6.293492, 44.480927 ], [ 6.289559, 44.47886 ], [ 6.272062, 44.472691 ], [ 6.262169, 44.465668 ], [ 6.233525, 44.46375 ], [ 6.23277, 44.46288 ], [ 6.236385, 44.46074 ], [ 6.240256, 44.44775 ], [ 6.244368, 44.446183 ], [ 6.262495, 44.412259 ], [ 6.244391, 44.387414 ], [ 6.226634, 44.381396 ], [ 6.224261, 44.3845 ], [ 6.202903, 44.41224 ], [ 6.184779, 44.424075 ], [ 6.173945, 44.439586 ], [ 6.170164, 44.437632 ], [ 6.162352, 44.434424 ], [ 6.159795, 44.436822 ], [ 6.156255, 44.44211 ], [ 6.156216, 44.44546 ], [ 6.154781, 44.46211 ], [ 6.149843, 44.462449 ], [ 6.131767, 44.468145 ], [ 6.127618, 44.4682 ], [ 6.115319, 44.475584 ], [ 6.112523, 44.475537 ], [ 6.109717, 44.475535 ], [ 6.10568, 44.474207 ], [ 6.08288, 44.47695 ], [ 6.080134, 44.47436 ], [ 6.076241, 44.468474 ], [ 6.08181, 44.464012 ], [ 6.074264, 44.45157 ], [ 6.07441, 44.44476 ], [ 6.066996, 44.443706 ], [ 6.05624, 44.44945 ], [ 6.053342, 44.44654 ], [ 6.032485, 44.436823 ], [ 6.028002, 44.43528 ], [ 6.019295, 44.41915 ], [ 5.99214, 44.411676 ], [ 5.988217, 44.410693 ], [ 5.977589, 44.407188 ], [ 5.974754, 44.40512 ], [ 5.97152, 44.403371 ], [ 5.967631, 44.40204 ], [ 5.953543, 44.39502 ], [ 5.951755, 44.39182 ], [ 5.941362, 44.372662 ], [ 5.940727, 44.36937 ], [ 5.93746, 44.359903 ], [ 5.926031, 44.34962 ], [ 5.922564, 44.34715 ], [ 5.919596, 44.340471 ], [ 5.911295, 44.337692 ], [ 5.906611, 44.338131 ], [ 5.903105, 44.335855 ], [ 5.905087, 44.32922 ], [ 5.897085, 44.320962 ], [ 5.900114, 44.314928 ], [ 5.90847, 44.31176 ], [ 5.921115, 44.31517 ], [ 5.925139, 44.3134 ], [ 5.923532, 44.30244 ], [ 5.924474, 44.299312 ], [ 5.925752, 44.29295 ], [ 5.913496, 44.288254 ], [ 5.916192, 44.28167 ], [ 5.913984, 44.26847 ], [ 5.924756, 44.26368 ], [ 5.920629, 44.257539 ], [ 5.92088, 44.251461 ], [ 5.921825, 44.24841 ], [ 5.912233, 44.249511 ], [ 5.90923, 44.252293 ], [ 5.880137, 44.271146 ], [ 5.875074, 44.277116 ], [ 5.875488, 44.29097 ], [ 5.872113, 44.29291 ], [ 5.849039, 44.30066 ], [ 5.844577, 44.29998 ], [ 5.836127, 44.29754 ], [ 5.837276, 44.294185 ], [ 5.823033, 44.27636 ], [ 5.826492, 44.26301 ], [ 5.828455, 44.2609 ], [ 5.831221, 44.259313 ], [ 5.835375, 44.25742 ], [ 5.859308, 44.245408 ], [ 5.86181, 44.235147 ], [ 5.869428, 44.2307 ], [ 5.872682, 44.22421 ], [ 5.873183, 44.220745 ], [ 5.876728, 44.21433 ], [ 5.88447, 44.2102 ], [ 5.912356, 44.20479 ], [ 5.909902, 44.191603 ], [ 5.900313, 44.19088 ], [ 5.895566, 44.19058 ], [ 5.859057, 44.19517 ], [ 5.854398, 44.196367 ], [ 5.830739, 44.20043 ], [ 5.81088, 44.210757 ], [ 5.791914, 44.211863 ], [ 5.787955, 44.2103 ], [ 5.776254, 44.205578 ], [ 5.754537, 44.209827 ], [ 5.739009, 44.20176 ], [ 5.714941, 44.19851 ], [ 5.697942, 44.19195 ], [ 5.69239, 44.186269 ], [ 5.688817, 44.188257 ], [ 5.676037, 44.191433 ], [ 5.685922, 44.197181 ], [ 5.676723, 44.21341 ], [ 5.681133, 44.23069 ], [ 5.682025, 44.23367 ], [ 5.673312, 44.240169 ], [ 5.672644, 44.24567 ], [ 5.674252, 44.25586 ], [ 5.684206, 44.26309 ], [ 5.686653, 44.266069 ], [ 5.68449, 44.268833 ], [ 5.67561, 44.27589 ], [ 5.671683, 44.274225 ], [ 5.646781, 44.26709 ], [ 5.646372, 44.270398 ], [ 5.632861, 44.282845 ], [ 5.632601, 44.289389 ], [ 5.635739, 44.291638 ], [ 5.639778, 44.2965 ], [ 5.633799, 44.30088 ], [ 5.629322, 44.30115 ], [ 5.616057, 44.30938 ], [ 5.608318, 44.30612 ], [ 5.613216, 44.315772 ], [ 5.630209, 44.32785 ], [ 5.628259, 44.33394 ], [ 5.6238, 44.335217 ], [ 5.62037, 44.33295 ], [ 5.588187, 44.33218 ], [ 5.586926, 44.33204 ], [ 5.582972, 44.33229 ], [ 5.571307, 44.333476 ], [ 5.566543, 44.33302 ], [ 5.549105, 44.330588 ], [ 5.539953, 44.332439 ], [ 5.53686, 44.342102 ], [ 5.520927, 44.349259 ], [ 5.50316, 44.344279 ], [ 5.492944, 44.33713 ], [ 5.490082, 44.33996 ], [ 5.47857, 44.351041 ], [ 5.468856, 44.35135 ], [ 5.467049, 44.35451 ], [ 5.462782, 44.367237 ], [ 5.443922, 44.367748 ], [ 5.439297, 44.36795 ], [ 5.434954, 44.36912 ], [ 5.431328, 44.375331 ], [ 5.442622, 44.381268 ], [ 5.441702, 44.391681 ], [ 5.430035, 44.41453 ], [ 5.425382, 44.41561 ], [ 5.418397, 44.42477 ], [ 5.433752, 44.433168 ], [ 5.438582, 44.433556 ], [ 5.472723, 44.420943 ], [ 5.47757, 44.42085 ], [ 5.483329, 44.42609 ], [ 5.486044, 44.428965 ], [ 5.489918, 44.429022 ], [ 5.493615, 44.42822 ], [ 5.495031, 44.43096 ], [ 5.49549, 44.438803 ], [ 5.464832, 44.44865 ], [ 5.463836, 44.452052 ], [ 5.460217, 44.46859 ], [ 5.466822, 44.47352 ], [ 5.461529, 44.482824 ], [ 5.460352, 44.48614 ], [ 5.458909, 44.48852 ], [ 5.457843, 44.498155 ], [ 5.466345, 44.50034 ], [ 5.470847, 44.5 ], [ 5.474925, 44.49426 ], [ 5.483134, 44.49122 ], [ 5.506409, 44.492018 ], [ 5.51103, 44.49151 ], [ 5.546077, 44.48212 ], [ 5.549714, 44.4799 ], [ 5.56043, 44.4743 ], [ 5.564687, 44.475249 ], [ 5.5691, 44.476578 ], [ 5.598968, 44.466268 ], [ 5.603637, 44.4655 ], [ 5.614847, 44.47184 ], [ 5.623729, 44.48406 ], [ 5.626329, 44.497775 ], [ 5.633188, 44.502097 ], [ 5.651244, 44.499322 ], [ 5.659776, 44.501972 ], [ 5.664504, 44.501894 ], [ 5.66305, 44.50495 ], [ 5.646326, 44.520076 ], [ 5.642693, 44.522064 ], [ 5.627653, 44.53436 ], [ 5.614987, 44.532776 ], [ 5.612473, 44.535601 ], [ 5.597249, 44.543274 ], [ 5.60649, 44.566655 ], [ 5.607148, 44.568351 ], [ 5.613898, 44.571821 ], [ 5.621998, 44.58586 ], [ 5.626319, 44.586623 ], [ 5.627477, 44.59497 ], [ 5.63703, 44.60922 ], [ 5.646092, 44.60992 ], [ 5.648367, 44.616218 ], [ 5.649462, 44.61938 ], [ 5.642842, 44.62426 ], [ 5.640301, 44.64782 ], [ 5.641715, 44.651084 ], [ 5.649246, 44.652903 ], [ 5.651551, 44.655217 ], [ 5.659305, 44.651049 ], [ 5.683495, 44.64998 ], [ 5.725505, 44.640087 ], [ 5.749155, 44.65108 ], [ 5.753769, 44.660529 ], [ 5.77112, 44.65428 ], [ 5.785703, 44.653135 ], [ 5.79062, 44.653299 ], [ 5.801017, 44.674828 ], [ 5.809249, 44.678123 ], [ 5.813277, 44.679904 ], [ 5.817189, 44.681885 ], [ 5.829958, 44.69124 ], [ 5.825458, 44.70098 ], [ 5.812675, 44.70501 ], [ 5.808962, 44.70579 ], [ 5.80147, 44.706779 ], [ 5.811319, 44.71402 ], [ 5.81886, 44.73065 ], [ 5.829361, 44.74244 ], [ 5.826526, 44.756203 ], [ 5.827093, 44.75969 ], [ 5.841024, 44.756373 ], [ 5.847986, 44.751527 ], [ 5.867467, 44.751007 ], [ 5.880592, 44.746846 ], [ 5.885456, 44.74729 ], [ 5.893139, 44.75557 ], [ 5.902203, 44.75799 ], [ 5.919572, 44.75279 ], [ 5.937689, 44.763428 ], [ 5.946886, 44.76131 ], [ 5.951122, 44.759621 ], [ 5.952215, 44.768412 ], [ 5.953165, 44.771314 ], [ 5.976427, 44.779737 ], [ 5.980273, 44.781184 ], [ 5.979498, 44.78446 ], [ 5.977782, 44.79099 ], [ 5.951206, 44.80146 ], [ 5.949519, 44.80453 ], [ 5.975607, 44.81658 ], [ 5.979182, 44.818594 ], [ 6.003416, 44.820355 ], [ 6.016206, 44.83529 ], [ 6.030211, 44.8381 ], [ 6.052272, 44.81717 ], [ 6.056502, 44.815814 ], [ 6.093293, 44.83637 ], [ 6.097322, 44.83823 ], [ 6.113151, 44.84553 ], [ 6.130449, 44.862515 ], [ 6.157906, 44.85829 ], [ 6.165014, 44.853587 ], [ 6.169659, 44.852391 ], [ 6.192556, 44.85674 ], [ 6.196382, 44.85898 ], [ 6.229098, 44.852 ], [ 6.248866, 44.85256 ], [ 6.267095, 44.869092 ], [ 6.294563, 44.87398 ], [ 6.304353, 44.872792 ], [ 6.319428, 44.855139 ], [ 6.336319, 44.84837 ], [ 6.352053, 44.852842 ], [ 6.355364, 44.85482 ], [ 6.35047, 44.875131 ], [ 6.351997, 44.88203 ], [ 6.35855, 44.88732 ], [ 6.35466, 44.8971 ], [ 6.357945, 44.90729 ], [ 6.35491, 44.92778 ], [ 6.358172, 44.941575 ], [ 6.353422, 44.94256 ], [ 6.326279, 44.95001 ], [ 6.323254, 44.956575 ], [ 6.328214, 44.96635 ], [ 6.315992, 44.981186 ], [ 6.316204, 44.988209 ], [ 6.322681, 44.99762 ], [ 6.318199, 45.00387 ], [ 6.313282, 45.00386 ], [ 6.256173, 44.996219 ], [ 6.214373, 45.00568 ], [ 6.203138, 45.01245 ], [ 6.202925, 45.022933 ], [ 6.208686, 45.02834 ], [ 6.209563, 45.0423 ], [ 6.218717, 45.062 ], [ 6.22008, 45.065368 ], [ 6.243285, 45.06995 ], [ 6.229263, 45.106807 ], [ 6.245508, 45.119204 ], [ 6.258496, 45.12365 ], [ 6.260566, 45.12685 ], [ 6.276888, 45.114933 ], [ 6.293342, 45.108636 ], [ 6.317031, 45.111934 ], [ 6.332876, 45.11962 ], [ 6.334233, 45.122939 ], [ 6.362713, 45.105032 ], [ 6.374601, 45.082295 ], [ 6.367174, 45.07326 ], [ 6.364878, 45.070171 ], [ 6.396888, 45.061989 ], [ 6.406143, 45.06425 ], [ 6.420353, 45.06122 ], [ 6.43487, 45.063 ], [ 6.453124, 45.05237 ], [ 6.482138, 45.05625 ], [ 6.487082, 45.05641 ], [ 6.488729, 45.070181 ], [ 6.481725, 45.09045 ], [ 6.487117, 45.09613 ], [ 6.507778, 45.105994 ], [ 6.510423, 45.109 ], [ 6.530287, 45.099065 ], [ 6.540052, 45.09953 ], [ 6.561367, 45.10731 ], [ 6.563908, 45.11382 ], [ 6.57357, 45.120596 ], [ 6.576531, 45.1231 ], [ 6.589941, 45.1192 ], [ 6.61353, 45.120957 ], [ 6.626688, 45.111841 ], [ 6.629987, 45.109327 ], [ 6.627005, 45.1026 ], [ 6.644249, 45.085408 ], [ 6.647346, 45.075157 ], [ 6.660508, 45.07023 ], [ 6.662417, 45.06695 ], [ 6.661698, 45.052847 ], [ 6.668215, 45.043447 ], [ 6.665986, 45.0331 ], [ 6.672269, 45.023475 ], [ 6.675737, 45.02093 ], [ 6.725591, 45.020873 ], [ 6.739483, 45.01689 ], [ 6.750323, 44.997723 ], [ 6.737363, 44.99276 ], [ 6.737852, 44.98923 ], [ 6.746425, 44.98618 ], [ 6.764229, 44.96648 ], [ 6.762715, 44.956219 ], [ 6.748995, 44.937862 ], [ 6.757845, 44.935093 ], [ 6.750299, 44.92284 ], [ 6.750462, 44.908969 ], [ 6.751017, 44.90551 ], [ 6.77427, 44.90142 ], [ 6.784785, 44.8896 ], [ 6.799305, 44.88887 ], [ 6.807274, 44.87644 ], [ 6.839718, 44.86073 ], [ 6.853711, 44.85743 ], [ 6.864815, 44.850646 ], [ 6.87927, 44.85005 ], [ 6.883381, 44.84811 ], [ 6.911828, 44.845365 ], [ 6.927466, 44.858623 ], [ 6.935782, 44.861177 ], [ 6.970289, 44.847452 ], [ 7.003335, 44.84031 ], [ 7.010605, 44.82732 ], [ 7.020876, 44.82092 ], [ 7.019277, 44.81397 ], [ 7.002506, 44.79243 ], [ 6.999398, 44.789676 ], [ 7.011426, 44.78368 ], [ 7.02342, 44.768208 ], [ 7.022398, 44.750747 ], [ 7.030783, 44.730601 ], [ 7.042603, 44.719289 ], [ 7.06478, 44.71176 ], [ 7.076003, 44.684672 ], [ 7.074445, 44.681304 ], [ 7.064807, 44.68011 ], [ 7.028777, 44.691127 ], [ 7.000216, 44.689342 ], [ 6.995415, 44.69024 ], [ 6.986232, 44.68833 ], [ 6.96794, 44.677479 ], [ 6.963184, 44.67811 ], [ 6.958268, 44.67234 ], [ 6.957566, 44.662355 ], [ 6.950626, 44.657772 ], [ 6.948335, 44.654816 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "6", "CODE_DEPT": "06", "NOM_DEPT": "ALPES-MARITIMES", "CODE_CHF": "088", "NOM_CHF": "NICE", "X_CHF_LIEU": "10439", "Y_CHF_LIEU": "62985", "X_CENTROID": "10303", "Y_CENTROID": "63240", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.933726, 43.48007 ], [ 6.929232, 43.48092 ], [ 6.915656, 43.48302 ], [ 6.912292, 43.492654 ], [ 6.903919, 43.495072 ], [ 6.899554, 43.496022 ], [ 6.88423, 43.502536 ], [ 6.895211, 43.521932 ], [ 6.890768, 43.527623 ], [ 6.881414, 43.529345 ], [ 6.879135, 43.532454 ], [ 6.880004, 43.53578 ], [ 6.88712, 43.551823 ], [ 6.901986, 43.564253 ], [ 6.906637, 43.56415 ], [ 6.907831, 43.570943 ], [ 6.90031, 43.58315 ], [ 6.911991, 43.59833 ], [ 6.907869, 43.59934 ], [ 6.89447, 43.61102 ], [ 6.890741, 43.60961 ], [ 6.883712, 43.6065 ], [ 6.878763, 43.60666 ], [ 6.864765, 43.605159 ], [ 6.856823, 43.60836 ], [ 6.853158, 43.6064 ], [ 6.838665, 43.6138 ], [ 6.838426, 43.61688 ], [ 6.824612, 43.623192 ], [ 6.813587, 43.6297 ], [ 6.799868, 43.628348 ], [ 6.789749, 43.643367 ], [ 6.787139, 43.646097 ], [ 6.775052, 43.6596 ], [ 6.766017, 43.66051 ], [ 6.761134, 43.665891 ], [ 6.763489, 43.683024 ], [ 6.767122, 43.68957 ], [ 6.774704, 43.693851 ], [ 6.773193, 43.69711 ], [ 6.766196, 43.72003 ], [ 6.75727, 43.727858 ], [ 6.754162, 43.737857 ], [ 6.712452, 43.740342 ], [ 6.713283, 43.743764 ], [ 6.700874, 43.75383 ], [ 6.682462, 43.757585 ], [ 6.657423, 43.74872 ], [ 6.656379, 43.752203 ], [ 6.651067, 43.76575 ], [ 6.64185, 43.768184 ], [ 6.64192, 43.771434 ], [ 6.645036, 43.77722 ], [ 6.637802, 43.78096 ], [ 6.636148, 43.78622 ], [ 6.636396, 43.788951 ], [ 6.636039, 43.79018 ], [ 6.642116, 43.795191 ], [ 6.706107, 43.808492 ], [ 6.70983, 43.81066 ], [ 6.711365, 43.813989 ], [ 6.700319, 43.824779 ], [ 6.667906, 43.830613 ], [ 6.680239, 43.85206 ], [ 6.698235, 43.85543 ], [ 6.702826, 43.855963 ], [ 6.698749, 43.857796 ], [ 6.696172, 43.87492 ], [ 6.67836, 43.87912 ], [ 6.672533, 43.884384 ], [ 6.671631, 43.88779 ], [ 6.71217, 43.88076 ], [ 6.716515, 43.879579 ], [ 6.748081, 43.871859 ], [ 6.777189, 43.882261 ], [ 6.781622, 43.883558 ], [ 6.801479, 43.910303 ], [ 6.82787, 43.91728 ], [ 6.832406, 43.9182 ], [ 6.835947, 43.91543 ], [ 6.849883, 43.913976 ], [ 6.855097, 43.90832 ], [ 6.875061, 43.89931 ], [ 6.883435, 43.890893 ], [ 6.892593, 43.889981 ], [ 6.914201, 43.893316 ], [ 6.918679, 43.89357 ], [ 6.937585, 43.896331 ], [ 6.942272, 43.897261 ], [ 6.943245, 43.9007 ], [ 6.912989, 43.927059 ], [ 6.899665, 43.926743 ], [ 6.895139, 43.92782 ], [ 6.891724, 43.930225 ], [ 6.881883, 43.93786 ], [ 6.87181, 43.953306 ], [ 6.84775, 43.954787 ], [ 6.847274, 43.961769 ], [ 6.848069, 43.965228 ], [ 6.845487, 43.977627 ], [ 6.837536, 43.980736 ], [ 6.834713, 43.983286 ], [ 6.836197, 43.9866 ], [ 6.838085, 43.98982 ], [ 6.798087, 44.00536 ], [ 6.795562, 44.00811 ], [ 6.788985, 44.021282 ], [ 6.771137, 44.0265 ], [ 6.745687, 44.042831 ], [ 6.747684, 44.063477 ], [ 6.75423, 44.076525 ], [ 6.756483, 44.079593 ], [ 6.752843, 44.081069 ], [ 6.749821, 44.08661 ], [ 6.746524, 44.089134 ], [ 6.740733, 44.098594 ], [ 6.724109, 44.11108 ], [ 6.722172, 44.1134 ], [ 6.719091, 44.118299 ], [ 6.707956, 44.124389 ], [ 6.704946, 44.1448 ], [ 6.687238, 44.168302 ], [ 6.697893, 44.175053 ], [ 6.701235, 44.17753 ], [ 6.702002, 44.180852 ], [ 6.698476, 44.19015 ], [ 6.717369, 44.20864 ], [ 6.714075, 44.21823 ], [ 6.723518, 44.226169 ], [ 6.724371, 44.250425 ], [ 6.728285, 44.252563 ], [ 6.737559, 44.25327 ], [ 6.743444, 44.258662 ], [ 6.756922, 44.262247 ], [ 6.763087, 44.278428 ], [ 6.785844, 44.27359 ], [ 6.790339, 44.272345 ], [ 6.786444, 44.288764 ], [ 6.796041, 44.30018 ], [ 6.795043, 44.31358 ], [ 6.796834, 44.3167 ], [ 6.804542, 44.320824 ], [ 6.809948, 44.330289 ], [ 6.823444, 44.3338 ], [ 6.84091, 44.345667 ], [ 6.859328, 44.344283 ], [ 6.862963, 44.346571 ], [ 6.868985, 44.35052 ], [ 6.87154, 44.352803 ], [ 6.88343, 44.358954 ], [ 6.887431, 44.36106 ], [ 6.906448, 44.357571 ], [ 6.918807, 44.35191 ], [ 6.929163, 44.332446 ], [ 6.95721, 44.31279 ], [ 6.960882, 44.295842 ], [ 6.973696, 44.28602 ], [ 6.991838, 44.28138 ], [ 6.995891, 44.274989 ], [ 6.998108, 44.250394 ], [ 7.007013, 44.23783 ], [ 7.014605, 44.23333 ], [ 7.019263, 44.2322 ], [ 7.023877, 44.233446 ], [ 7.038886, 44.224882 ], [ 7.076443, 44.231758 ], [ 7.095704, 44.22126 ], [ 7.11845, 44.21467 ], [ 7.141896, 44.201771 ], [ 7.160278, 44.205726 ], [ 7.177321, 44.19911 ], [ 7.187029, 44.200264 ], [ 7.193171, 44.19063 ], [ 7.193611, 44.187096 ], [ 7.202643, 44.18473 ], [ 7.221238, 44.169144 ], [ 7.233962, 44.172845 ], [ 7.242278, 44.170847 ], [ 7.249911, 44.15804 ], [ 7.257824, 44.154037 ], [ 7.262782, 44.14803 ], [ 7.28433, 44.1421 ], [ 7.292969, 44.144941 ], [ 7.34094, 44.145115 ], [ 7.35898, 44.11706 ], [ 7.368716, 44.117075 ], [ 7.381562, 44.12205 ], [ 7.385892, 44.123672 ], [ 7.411486, 44.11903 ], [ 7.42229, 44.112653 ], [ 7.426949, 44.112879 ], [ 7.426468, 44.11988 ], [ 7.432788, 44.129347 ], [ 7.462122, 44.12739 ], [ 7.501021, 44.14222 ], [ 7.519584, 44.138565 ], [ 7.535212, 44.1463 ], [ 7.554766, 44.14704 ], [ 7.567088, 44.152823 ], [ 7.616041, 44.14977 ], [ 7.627419, 44.160624 ], [ 7.627821, 44.16417 ], [ 7.633196, 44.17356 ], [ 7.640993, 44.177442 ], [ 7.679923, 44.175967 ], [ 7.682914, 44.17 ], [ 7.671472, 44.15488 ], [ 7.678015, 44.14553 ], [ 7.676647, 44.14214 ], [ 7.668199, 44.13395 ], [ 7.67231, 44.12092 ], [ 7.674513, 44.11789 ], [ 7.689477, 44.108728 ], [ 7.698646, 44.09613 ], [ 7.713126, 44.086668 ], [ 7.716127, 44.080029 ], [ 7.712934, 44.062485 ], [ 7.701635, 44.043028 ], [ 7.663268, 44.028605 ], [ 7.661918, 44.018078 ], [ 7.662843, 44.014576 ], [ 7.668848, 43.99761 ], [ 7.652745, 43.976015 ], [ 7.616328, 43.958132 ], [ 7.59239, 43.955644 ], [ 7.576588, 43.94736 ], [ 7.571658, 43.94719 ], [ 7.570632, 43.93097 ], [ 7.558693, 43.916454 ], [ 7.561345, 43.89957 ], [ 7.510237, 43.882123 ], [ 7.509049, 43.878756 ], [ 7.506022, 43.876249 ], [ 7.4989, 43.87237 ], [ 7.499875, 43.86593 ], [ 7.496124, 43.86402 ], [ 7.496644, 43.85087 ], [ 7.507622, 43.839884 ], [ 7.517763, 43.805933 ], [ 7.518724, 43.802513 ], [ 7.530113, 43.787465 ], [ 7.529827, 43.78402 ], [ 7.512339, 43.78028 ], [ 7.507705, 43.774217 ], [ 7.488275, 43.765024 ], [ 7.482765, 43.749947 ], [ 7.458175, 43.75924 ], [ 7.439239, 43.749028 ], [ 7.437353, 43.751637 ], [ 7.433472, 43.749524 ], [ 7.424976, 43.741272 ], [ 7.413384, 43.73459 ], [ 7.412827, 43.731725 ], [ 7.409527, 43.72987 ], [ 7.412456, 43.72771 ], [ 7.415621, 43.725736 ], [ 7.404472, 43.71991 ], [ 7.390464, 43.719698 ], [ 7.383267, 43.72258 ], [ 7.370628, 43.718667 ], [ 7.357745, 43.721302 ], [ 7.348299, 43.71407 ], [ 7.342718, 43.713558 ], [ 7.329392, 43.701473 ], [ 7.341389, 43.684584 ], [ 7.327545, 43.677214 ], [ 7.322208, 43.68646 ], [ 7.323925, 43.69915 ], [ 7.320644, 43.701595 ], [ 7.319556, 43.70463 ], [ 7.312528, 43.703846 ], [ 7.308745, 43.692371 ], [ 7.307765, 43.68892 ], [ 7.300207, 43.685842 ], [ 7.285764, 43.69446 ], [ 7.261628, 43.693895 ], [ 7.247779, 43.690688 ], [ 7.233471, 43.681424 ], [ 7.225992, 43.661179 ], [ 7.209623, 43.64821 ], [ 7.205321, 43.646572 ], [ 7.201811, 43.65184 ], [ 7.199251, 43.65484 ], [ 7.196084, 43.65717 ], [ 7.178242, 43.65605 ], [ 7.173519, 43.65578 ], [ 7.164555, 43.656252 ], [ 7.156281, 43.6527 ], [ 7.145494, 43.641853 ], [ 7.142434, 43.639348 ], [ 7.130087, 43.6178 ], [ 7.126081, 43.586613 ], [ 7.12939, 43.572846 ], [ 7.138079, 43.5648 ], [ 7.1406, 43.551138 ], [ 7.138438, 43.54796 ], [ 7.129338, 43.54492 ], [ 7.120636, 43.546024 ], [ 7.120759, 43.55619 ], [ 7.114054, 43.56566 ], [ 7.101148, 43.57057 ], [ 7.091386, 43.57027 ], [ 7.086497, 43.569821 ], [ 7.074314, 43.565423 ], [ 7.057797, 43.55033 ], [ 7.039733, 43.539364 ], [ 7.035501, 43.53924 ], [ 7.030984, 43.545447 ], [ 7.02243, 43.548872 ], [ 6.993726, 43.54861 ], [ 6.970386, 43.544772 ], [ 6.954819, 43.53669 ], [ 6.951571, 43.534117 ], [ 6.938369, 43.516392 ], [ 6.938894, 43.50961 ], [ 6.951501, 43.50523 ], [ 6.954791, 43.49926 ], [ 6.946847, 43.486851 ], [ 6.933847, 43.48346 ], [ 6.933726, 43.48007 ] ] ], [ [ [ 7.067113, 43.513656 ], [ 7.063221, 43.515513 ], [ 7.044329, 43.515833 ], [ 7.034934, 43.51797 ], [ 7.032544, 43.520947 ], [ 7.045842, 43.52378 ], [ 7.063964, 43.51953 ], [ 7.069581, 43.516518 ], [ 7.067814, 43.51533 ], [ 7.067113, 43.513656 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "7", "CODE_DEPT": "07", "NOM_DEPT": "ARDECHE", "CODE_CHF": "186", "NOM_CHF": "PRIVAS", "X_CHF_LIEU": "8266", "Y_CHF_LIEU": "64052", "X_CENTROID": "8127", "Y_CENTROID": "64068", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.649224, 44.27036 ], [ 4.641729, 44.2742 ], [ 4.637028, 44.283669 ], [ 4.632679, 44.284994 ], [ 4.620478, 44.279944 ], [ 4.616625, 44.277993 ], [ 4.609125, 44.289249 ], [ 4.605465, 44.29104 ], [ 4.602332, 44.29192 ], [ 4.59898, 44.291756 ], [ 4.574274, 44.30075 ], [ 4.569998, 44.299349 ], [ 4.557168, 44.304168 ], [ 4.545631, 44.319708 ], [ 4.547749, 44.322874 ], [ 4.54911, 44.324512 ], [ 4.531152, 44.3241 ], [ 4.524167, 44.328768 ], [ 4.514731, 44.329114 ], [ 4.512014, 44.3354 ], [ 4.506097, 44.340252 ], [ 4.48291, 44.3382 ], [ 4.464761, 44.341675 ], [ 4.459866, 44.341596 ], [ 4.451068, 44.334096 ], [ 4.450793, 44.330705 ], [ 4.448757, 44.29671 ], [ 4.453212, 44.29787 ], [ 4.450048, 44.295226 ], [ 4.440422, 44.28342 ], [ 4.435608, 44.283324 ], [ 4.431983, 44.28968 ], [ 4.40357, 44.288177 ], [ 4.393313, 44.2946 ], [ 4.391594, 44.304759 ], [ 4.400063, 44.324818 ], [ 4.40145, 44.328167 ], [ 4.402347, 44.335007 ], [ 4.391868, 44.346573 ], [ 4.38705, 44.347057 ], [ 4.38381, 44.344352 ], [ 4.370171, 44.34014 ], [ 4.325771, 44.33832 ], [ 4.329257, 44.33238 ], [ 4.318098, 44.32175 ], [ 4.306334, 44.31627 ], [ 4.288375, 44.315019 ], [ 4.289584, 44.29542 ], [ 4.288996, 44.292146 ], [ 4.286338, 44.289386 ], [ 4.273773, 44.271752 ], [ 4.258901, 44.264425 ], [ 4.245138, 44.26807 ], [ 4.238182, 44.273095 ], [ 4.234052, 44.27506 ], [ 4.230778, 44.277176 ], [ 4.216384, 44.289039 ], [ 4.212951, 44.29144 ], [ 4.186579, 44.299735 ], [ 4.183913, 44.30232 ], [ 4.177991, 44.31774 ], [ 4.173247, 44.317577 ], [ 4.161701, 44.31215 ], [ 4.142868, 44.313351 ], [ 4.141665, 44.323959 ], [ 4.126752, 44.337734 ], [ 4.113525, 44.32913 ], [ 4.10942, 44.330843 ], [ 4.106628, 44.332356 ], [ 4.103861, 44.333906 ], [ 4.073842, 44.329026 ], [ 4.060144, 44.32017 ], [ 4.055621, 44.319021 ], [ 4.051452, 44.317324 ], [ 4.048059, 44.31895 ], [ 4.038705, 44.327887 ], [ 4.035706, 44.329851 ], [ 4.047919, 44.334444 ], [ 4.053047, 44.33975 ], [ 4.05116, 44.34621 ], [ 4.053677, 44.358794 ], [ 4.056718, 44.36102 ], [ 4.05298, 44.3787 ], [ 4.046711, 44.38246 ], [ 4.043749, 44.384554 ], [ 4.042393, 44.39407 ], [ 4.059453, 44.393911 ], [ 4.06844, 44.40506 ], [ 4.054795, 44.41479 ], [ 4.037813, 44.420918 ], [ 4.045419, 44.43349 ], [ 4.037103, 44.445952 ], [ 4.023876, 44.446301 ], [ 4.01666, 44.450365 ], [ 4.015082, 44.45348 ], [ 4.002603, 44.458515 ], [ 3.998163, 44.4598 ], [ 3.987125, 44.47487 ], [ 3.986789, 44.50243 ], [ 3.980284, 44.51542 ], [ 3.97579, 44.516742 ], [ 3.978998, 44.52176 ], [ 3.967657, 44.534856 ], [ 3.965692, 44.537682 ], [ 3.964955, 44.541002 ], [ 3.960906, 44.55381 ], [ 3.95849, 44.55689 ], [ 3.948774, 44.572887 ], [ 3.944441, 44.57366 ], [ 3.923567, 44.571885 ], [ 3.921627, 44.574962 ], [ 3.916821, 44.58071 ], [ 3.918466, 44.587368 ], [ 3.90654, 44.59237 ], [ 3.90533, 44.595462 ], [ 3.908084, 44.6077 ], [ 3.906662, 44.61096 ], [ 3.89414, 44.61529 ], [ 3.894403, 44.639018 ], [ 3.895766, 44.642293 ], [ 3.894778, 44.649963 ], [ 3.885373, 44.657457 ], [ 3.871647, 44.679336 ], [ 3.881767, 44.690573 ], [ 3.884563, 44.69344 ], [ 3.883529, 44.696718 ], [ 3.869648, 44.69696 ], [ 3.869246, 44.700396 ], [ 3.870008, 44.707206 ], [ 3.8631, 44.71202 ], [ 3.863763, 44.722326 ], [ 3.877097, 44.73599 ], [ 3.862527, 44.74387 ], [ 3.872496, 44.75531 ], [ 3.89572, 44.752874 ], [ 3.900111, 44.7628 ], [ 3.908988, 44.765461 ], [ 3.913657, 44.76654 ], [ 3.921789, 44.76768 ], [ 3.924918, 44.769624 ], [ 3.924334, 44.770979 ], [ 3.918029, 44.778856 ], [ 3.936818, 44.798093 ], [ 3.944475, 44.821015 ], [ 3.945543, 44.824346 ], [ 3.958782, 44.82839 ], [ 3.963183, 44.829759 ], [ 3.96732, 44.820179 ], [ 3.978357, 44.813905 ], [ 3.981885, 44.81168 ], [ 3.987154, 44.816384 ], [ 3.981451, 44.825961 ], [ 3.98493, 44.83169 ], [ 3.989593, 44.83134 ], [ 3.998603, 44.823575 ], [ 4.009087, 44.834627 ], [ 4.016413, 44.83039 ], [ 4.025664, 44.831837 ], [ 4.028587, 44.834619 ], [ 4.023795, 44.84387 ], [ 4.020047, 44.84586 ], [ 4.025204, 44.851002 ], [ 4.028196, 44.86301 ], [ 4.028735, 44.86617 ], [ 4.03891, 44.87276 ], [ 4.072916, 44.86977 ], [ 4.077563, 44.86981 ], [ 4.084478, 44.869194 ], [ 4.087906, 44.87033 ], [ 4.113166, 44.87856 ], [ 4.117944, 44.87811 ], [ 4.136896, 44.87405 ], [ 4.156637, 44.87398 ], [ 4.16616, 44.88194 ], [ 4.179479, 44.886514 ], [ 4.183014, 44.905224 ], [ 4.188048, 44.91019 ], [ 4.191688, 44.912136 ], [ 4.190046, 44.91419 ], [ 4.213073, 44.93121 ], [ 4.216572, 44.933577 ], [ 4.223854, 44.96288 ], [ 4.231819, 44.96574 ], [ 4.235239, 44.967805 ], [ 4.256587, 44.959876 ], [ 4.27942, 44.966702 ], [ 4.294225, 44.966801 ], [ 4.297662, 44.96895 ], [ 4.314365, 44.973166 ], [ 4.313234, 44.979581 ], [ 4.30998, 44.98093 ], [ 4.307317, 44.98588 ], [ 4.292148, 44.993912 ], [ 4.291981, 45.00429 ], [ 4.297425, 45.01353 ], [ 4.299684, 45.020038 ], [ 4.318086, 45.029934 ], [ 4.351543, 45.02766 ], [ 4.35376, 45.030569 ], [ 4.365133, 45.03556 ], [ 4.379068, 45.03617 ], [ 4.381644, 45.042797 ], [ 4.37873, 45.05286 ], [ 4.370244, 45.056005 ], [ 4.360713, 45.055392 ], [ 4.347737, 45.06525 ], [ 4.346372, 45.07504 ], [ 4.354941, 45.077282 ], [ 4.358616, 45.086252 ], [ 4.362829, 45.08751 ], [ 4.359232, 45.09957 ], [ 4.363868, 45.10042 ], [ 4.371468, 45.104384 ], [ 4.384585, 45.10107 ], [ 4.38784, 45.103623 ], [ 4.399854, 45.1081 ], [ 4.397573, 45.118082 ], [ 4.37257, 45.12807 ], [ 4.376559, 45.14436 ], [ 4.380955, 45.143558 ], [ 4.397828, 45.139484 ], [ 4.411159, 45.14083 ], [ 4.429495, 45.130393 ], [ 4.427843, 45.11751 ], [ 4.436425, 45.109456 ], [ 4.439755, 45.10989 ], [ 4.442014, 45.11169 ], [ 4.438931, 45.12036 ], [ 4.452662, 45.119125 ], [ 4.457286, 45.11889 ], [ 4.457564, 45.12224 ], [ 4.448414, 45.12946 ], [ 4.443565, 45.14218 ], [ 4.443347, 45.14558 ], [ 4.448111, 45.16196 ], [ 4.458157, 45.168872 ], [ 4.459058, 45.172156 ], [ 4.472579, 45.17989 ], [ 4.480555, 45.195459 ], [ 4.478555, 45.198314 ], [ 4.476933, 45.210673 ], [ 4.481328, 45.215919 ], [ 4.488918, 45.22342 ], [ 4.483135, 45.236446 ], [ 4.490899, 45.232209 ], [ 4.505973, 45.233025 ], [ 4.517747, 45.24179 ], [ 4.535936, 45.23662 ], [ 4.546242, 45.243778 ], [ 4.560654, 45.24717 ], [ 4.584802, 45.244075 ], [ 4.588302, 45.246547 ], [ 4.605227, 45.253429 ], [ 4.605305, 45.26367 ], [ 4.602945, 45.265422 ], [ 4.598493, 45.26897 ], [ 4.593657, 45.26978 ], [ 4.591348, 45.272883 ], [ 4.598597, 45.28949 ], [ 4.602724, 45.291 ], [ 4.611889, 45.292024 ], [ 4.621508, 45.29154 ], [ 4.622791, 45.294838 ], [ 4.616857, 45.3001 ], [ 4.61595, 45.3102 ], [ 4.633844, 45.314942 ], [ 4.640382, 45.31719 ], [ 4.643177, 45.318903 ], [ 4.640204, 45.32373 ], [ 4.638553, 45.32619 ], [ 4.675294, 45.34429 ], [ 4.679737, 45.345938 ], [ 4.698023, 45.344986 ], [ 4.701388, 45.34686 ], [ 4.70331, 45.349563 ], [ 4.718831, 45.354162 ], [ 4.723111, 45.354601 ], [ 4.725367, 45.361429 ], [ 4.751443, 45.365906 ], [ 4.755997, 45.365681 ], [ 4.7698, 45.356962 ], [ 4.772551, 45.354297 ], [ 4.773748, 45.34815 ], [ 4.761683, 45.341472 ], [ 4.761049, 45.338384 ], [ 4.760834, 45.33641 ], [ 4.762214, 45.32355 ], [ 4.777746, 45.311739 ], [ 4.781541, 45.309877 ], [ 4.797706, 45.29977 ], [ 4.800462, 45.29737 ], [ 4.808896, 45.29065 ], [ 4.809489, 45.28769 ], [ 4.809775, 45.272533 ], [ 4.809613, 45.2695 ], [ 4.809987, 45.266477 ], [ 4.809896, 45.261326 ], [ 4.808846, 45.258849 ], [ 4.8016, 45.24574 ], [ 4.802319, 45.228133 ], [ 4.803559, 45.224709 ], [ 4.810324, 45.20813 ], [ 4.812208, 45.204953 ], [ 4.805502, 45.196928 ], [ 4.806769, 45.1908 ], [ 4.812187, 45.18153 ], [ 4.810241, 45.17493 ], [ 4.809691, 45.168175 ], [ 4.819523, 45.161233 ], [ 4.824192, 45.160364 ], [ 4.826971, 45.15852 ], [ 4.828713, 45.156129 ], [ 4.828575, 45.15424 ], [ 4.805542, 45.134369 ], [ 4.804132, 45.13127 ], [ 4.803833, 45.12912 ], [ 4.804038, 45.122468 ], [ 4.812375, 45.11434 ], [ 4.814787, 45.111459 ], [ 4.821322, 45.106309 ], [ 4.825024, 45.10399 ], [ 4.827935, 45.101238 ], [ 4.829597, 45.098 ], [ 4.831643, 45.08748 ], [ 4.830462, 45.08402 ], [ 4.827816, 45.07855 ], [ 4.829155, 45.072848 ], [ 4.835642, 45.068347 ], [ 4.853039, 45.06404 ], [ 4.858913, 45.059161 ], [ 4.859747, 45.05594 ], [ 4.856465, 45.0501 ], [ 4.853914, 45.047509 ], [ 4.84455, 45.040541 ], [ 4.841948, 45.03791 ], [ 4.844111, 45.023373 ], [ 4.845408, 45.019956 ], [ 4.836708, 45.00751 ], [ 4.838684, 45.00426 ], [ 4.842493, 45.001983 ], [ 4.851868, 44.99372 ], [ 4.852189, 44.98308 ], [ 4.852566, 44.979535 ], [ 4.853083, 44.9779 ], [ 4.86049, 44.965551 ], [ 4.870828, 44.95867 ], [ 4.874277, 44.956367 ], [ 4.879216, 44.94744 ], [ 4.881366, 44.944603 ], [ 4.885877, 44.939591 ], [ 4.886589, 44.936652 ], [ 4.872362, 44.919916 ], [ 4.871343, 44.91673 ], [ 4.868911, 44.909923 ], [ 4.855085, 44.90001 ], [ 4.854324, 44.896523 ], [ 4.861281, 44.87822 ], [ 4.859694, 44.872001 ], [ 4.856764, 44.86955 ], [ 4.853417, 44.867152 ], [ 4.849984, 44.8648 ], [ 4.84757, 44.861873 ], [ 4.844119, 44.84547 ], [ 4.837147, 44.84131 ], [ 4.832487, 44.84087 ], [ 4.823316, 44.83949 ], [ 4.820281, 44.830192 ], [ 4.822499, 44.82055 ], [ 4.821485, 44.817384 ], [ 4.812834, 44.81553 ], [ 4.808382, 44.81478 ], [ 4.80015, 44.809 ], [ 4.80099, 44.805984 ], [ 4.797232, 44.803983 ], [ 4.795535, 44.79404 ], [ 4.783647, 44.78407 ], [ 4.770658, 44.780375 ], [ 4.766536, 44.778766 ], [ 4.761772, 44.7736 ], [ 4.76104, 44.77122 ], [ 4.762367, 44.76799 ], [ 4.769321, 44.759585 ], [ 4.759507, 44.74848 ], [ 4.76416, 44.73204 ], [ 4.764027, 44.729024 ], [ 4.76422, 44.71503 ], [ 4.771968, 44.706 ], [ 4.781209, 44.682373 ], [ 4.78159, 44.67885 ], [ 4.77792, 44.657761 ], [ 4.779073, 44.654699 ], [ 4.772902, 44.64263 ], [ 4.760718, 44.63335 ], [ 4.758089, 44.630739 ], [ 4.754218, 44.62183 ], [ 4.752426, 44.61893 ], [ 4.742368, 44.605171 ], [ 4.740405, 44.602392 ], [ 4.744202, 44.60089 ], [ 4.741139, 44.591872 ], [ 4.741169, 44.58877 ], [ 4.737462, 44.586672 ], [ 4.732864, 44.585888 ], [ 4.728619, 44.584685 ], [ 4.710872, 44.581999 ], [ 4.706404, 44.576314 ], [ 4.705961, 44.56665 ], [ 4.695739, 44.56307 ], [ 4.6925, 44.54623 ], [ 4.703415, 44.535714 ], [ 4.707933, 44.53442 ], [ 4.704551, 44.52789 ], [ 4.703129, 44.52456 ], [ 4.693101, 44.516703 ], [ 4.687882, 44.502934 ], [ 4.689415, 44.492349 ], [ 4.699537, 44.480083 ], [ 4.700103, 44.472952 ], [ 4.70041, 44.46939 ], [ 4.695289, 44.4458 ], [ 4.689287, 44.44051 ], [ 4.68026, 44.43827 ], [ 4.675978, 44.4367 ], [ 4.663053, 44.40702 ], [ 4.663338, 44.404317 ], [ 4.664373, 44.398944 ], [ 4.663492, 44.39545 ], [ 4.649064, 44.373073 ], [ 4.646837, 44.34828 ], [ 4.64959, 44.334233 ], [ 4.650615, 44.329806 ], [ 4.651542, 44.32632 ], [ 4.653181, 44.294807 ], [ 4.652364, 44.29127 ], [ 4.649224, 44.27036 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "8", "CODE_DEPT": "08", "NOM_DEPT": "ARDENNES", "CODE_CHF": "105", "NOM_CHF": "CHARLEVILLE-MEZIERES", "X_CHF_LIEU": "8239", "Y_CHF_LIEU": "69649", "X_CENTROID": "8186", "Y_CENTROID": "69475", "CODE_REG": "21", "NOM_REGION": "CHAMPAGNE-ARDENNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.950989, 49.236866 ], [ 4.95054, 49.240245 ], [ 4.923869, 49.250602 ], [ 4.933761, 49.261648 ], [ 4.924466, 49.261473 ], [ 4.913375, 49.26472 ], [ 4.908641, 49.26341 ], [ 4.889711, 49.258614 ], [ 4.876159, 49.26302 ], [ 4.882243, 49.25765 ], [ 4.861837, 49.23885 ], [ 4.867323, 49.2299 ], [ 4.866461, 49.22658 ], [ 4.827131, 49.235308 ], [ 4.827381, 49.2381 ], [ 4.82985, 49.243073 ], [ 4.820229, 49.24209 ], [ 4.812108, 49.249401 ], [ 4.806997, 49.2486 ], [ 4.789425, 49.241719 ], [ 4.76425, 49.24452 ], [ 4.744232, 49.24147 ], [ 4.74352, 49.2444 ], [ 4.729119, 49.251555 ], [ 4.72578, 49.253167 ], [ 4.718233, 49.25093 ], [ 4.713246, 49.25049 ], [ 4.703328, 49.25132 ], [ 4.703917, 49.254593 ], [ 4.690096, 49.257485 ], [ 4.685038, 49.256153 ], [ 4.670503, 49.24124 ], [ 4.636983, 49.23265 ], [ 4.619003, 49.23945 ], [ 4.618864, 49.24642 ], [ 4.611822, 49.2558 ], [ 4.611629, 49.25929 ], [ 4.606824, 49.26868 ], [ 4.597212, 49.27112 ], [ 4.591669, 49.280287 ], [ 4.596327, 49.286051 ], [ 4.599907, 49.28849 ], [ 4.577908, 49.295483 ], [ 4.557759, 49.29471 ], [ 4.552575, 49.293752 ], [ 4.53667, 49.28451 ], [ 4.515835, 49.2813 ], [ 4.492719, 49.28083 ], [ 4.48384, 49.28078 ], [ 4.479014, 49.27976 ], [ 4.454543, 49.27601 ], [ 4.45071, 49.274601 ], [ 4.446787, 49.272868 ], [ 4.444511, 49.27601 ], [ 4.408668, 49.286913 ], [ 4.408451, 49.28806 ], [ 4.406725, 49.291287 ], [ 4.396755, 49.29316 ], [ 4.390817, 49.2988 ], [ 4.375619, 49.3238 ], [ 4.371273, 49.32279 ], [ 4.36261, 49.32078 ], [ 4.359348, 49.31965 ], [ 4.353711, 49.316546 ], [ 4.348607, 49.317016 ], [ 4.333585, 49.32643 ], [ 4.308294, 49.326603 ], [ 4.307812, 49.32656 ], [ 4.305355, 49.329494 ], [ 4.290316, 49.346916 ], [ 4.291196, 49.350764 ], [ 4.294051, 49.35267 ], [ 4.27362, 49.35507 ], [ 4.258585, 49.36495 ], [ 4.247956, 49.3808 ], [ 4.242934, 49.38037 ], [ 4.240809, 49.38247 ], [ 4.235997, 49.38164 ], [ 4.213672, 49.38787 ], [ 4.20951, 49.386561 ], [ 4.201308, 49.383793 ], [ 4.198871, 49.38678 ], [ 4.188997, 49.3987 ], [ 4.191434, 49.40104 ], [ 4.167348, 49.40188 ], [ 4.162354, 49.40155 ], [ 4.14317, 49.404196 ], [ 4.13863, 49.40321 ], [ 4.115034, 49.401933 ], [ 4.110667, 49.40193 ], [ 4.106287, 49.401932 ], [ 4.085314, 49.401538 ], [ 4.07891, 49.401586 ], [ 4.074305, 49.40338 ], [ 4.047973, 49.40564 ], [ 4.04913, 49.40901 ], [ 4.04326, 49.4246 ], [ 4.0394, 49.43544 ], [ 4.037579, 49.43808 ], [ 4.047178, 49.445173 ], [ 4.056813, 49.445737 ], [ 4.06141, 49.44673 ], [ 4.066154, 49.44545 ], [ 4.042112, 49.47073 ], [ 4.041379, 49.477403 ], [ 4.041419, 49.48075 ], [ 4.041527, 49.484044 ], [ 4.040928, 49.492651 ], [ 4.040766, 49.495519 ], [ 4.040423, 49.505176 ], [ 4.04086, 49.508381 ], [ 4.056108, 49.508824 ], [ 4.060243, 49.521254 ], [ 4.074145, 49.51859 ], [ 4.075097, 49.521852 ], [ 4.075648, 49.53896 ], [ 4.067545, 49.54314 ], [ 4.051908, 49.545073 ], [ 4.050439, 49.55159 ], [ 4.059686, 49.5545 ], [ 4.07677, 49.570721 ], [ 4.062671, 49.57459 ], [ 4.060391, 49.587978 ], [ 4.064445, 49.594161 ], [ 4.060605, 49.59637 ], [ 4.047558, 49.60065 ], [ 4.031525, 49.61411 ], [ 4.026316, 49.619905 ], [ 4.038598, 49.62526 ], [ 4.042341, 49.63791 ], [ 4.047514, 49.63781 ], [ 4.050555, 49.634931 ], [ 4.071483, 49.63594 ], [ 4.095983, 49.629173 ], [ 4.110419, 49.63265 ], [ 4.11569, 49.63326 ], [ 4.11724, 49.641526 ], [ 4.124871, 49.650613 ], [ 4.122702, 49.660923 ], [ 4.126474, 49.6782 ], [ 4.146699, 49.67785 ], [ 4.146816, 49.689266 ], [ 4.151058, 49.690646 ], [ 4.160116, 49.69305 ], [ 4.164831, 49.693894 ], [ 4.179917, 49.698062 ], [ 4.185269, 49.698872 ], [ 4.184381, 49.70123 ], [ 4.192459, 49.71254 ], [ 4.191381, 49.715644 ], [ 4.202292, 49.72051 ], [ 4.205171, 49.722706 ], [ 4.220371, 49.72599 ], [ 4.225406, 49.72728 ], [ 4.227618, 49.731073 ], [ 4.226128, 49.73424 ], [ 4.230539, 49.74703 ], [ 4.246879, 49.75574 ], [ 4.242039, 49.765469 ], [ 4.224503, 49.77294 ], [ 4.214263, 49.77118 ], [ 4.212018, 49.774218 ], [ 4.206332, 49.77962 ], [ 4.209942, 49.78205 ], [ 4.224917, 49.79022 ], [ 4.227042, 49.79319 ], [ 4.219523, 49.805 ], [ 4.214774, 49.806115 ], [ 4.225337, 49.83498 ], [ 4.23017, 49.836088 ], [ 4.233752, 49.84863 ], [ 4.246034, 49.85426 ], [ 4.249004, 49.85696 ], [ 4.249554, 49.86011 ], [ 4.250089, 49.86324 ], [ 4.251798, 49.8904 ], [ 4.255734, 49.903977 ], [ 4.24633, 49.90226 ], [ 4.236936, 49.90378 ], [ 4.233643, 49.90912 ], [ 4.222142, 49.910427 ], [ 4.217774, 49.91626 ], [ 4.220206, 49.93359 ], [ 4.232061, 49.952462 ], [ 4.232132, 49.95596 ], [ 4.233068, 49.957824 ], [ 4.258202, 49.96399 ], [ 4.290489, 49.964158 ], [ 4.310615, 49.968571 ], [ 4.319254, 49.96439 ], [ 4.335185, 49.96274 ], [ 4.346405, 49.95516 ], [ 4.349362, 49.95223 ], [ 4.380829, 49.95372 ], [ 4.393818, 49.94853 ], [ 4.399174, 49.9484 ], [ 4.419211, 49.94644 ], [ 4.442353, 49.93966 ], [ 4.445804, 49.937168 ], [ 4.479779, 49.947129 ], [ 4.506043, 49.94731 ], [ 4.511319, 49.94681 ], [ 4.524166, 49.95132 ], [ 4.540829, 49.96823 ], [ 4.566154, 49.97146 ], [ 4.57019, 49.97363 ], [ 4.574077, 49.97859 ], [ 4.576036, 49.98112 ], [ 4.595972, 49.98596 ], [ 4.633238, 49.987466 ], [ 4.668017, 49.99635 ], [ 4.689349, 49.995788 ], [ 4.694599, 49.9965 ], [ 4.687522, 50.00162 ], [ 4.685948, 50.00838 ], [ 4.688542, 50.011369 ], [ 4.686633, 50.02778 ], [ 4.690633, 50.033997 ], [ 4.698735, 50.05274 ], [ 4.697028, 50.059288 ], [ 4.686844, 50.0577 ], [ 4.681884, 50.06763 ], [ 4.700055, 50.092646 ], [ 4.708046, 50.09649 ], [ 4.713412, 50.097 ], [ 4.715218, 50.10004 ], [ 4.746798, 50.11031 ], [ 4.751346, 50.11174 ], [ 4.751018, 50.12128 ], [ 4.755962, 50.121637 ], [ 4.765173, 50.1374 ], [ 4.77468, 50.14029 ], [ 4.779678, 50.14134 ], [ 4.802541, 50.151064 ], [ 4.822807, 50.167643 ], [ 4.831696, 50.15511 ], [ 4.874876, 50.15339 ], [ 4.881309, 50.143999 ], [ 4.889952, 50.14037 ], [ 4.895353, 50.13977 ], [ 4.895656, 50.136278 ], [ 4.870796, 50.123112 ], [ 4.872435, 50.09217 ], [ 4.863495, 50.091701 ], [ 4.859797, 50.09827 ], [ 4.850133, 50.10018 ], [ 4.840234, 50.09293 ], [ 4.845305, 50.08378 ], [ 4.840481, 50.08279 ], [ 4.839155, 50.06971 ], [ 4.825639, 50.06646 ], [ 4.820781, 50.065266 ], [ 4.819235, 50.06066 ], [ 4.828004, 50.05693 ], [ 4.828101, 50.04993 ], [ 4.837236, 50.046343 ], [ 4.840269, 50.03996 ], [ 4.822588, 50.02692 ], [ 4.820603, 50.02365 ], [ 4.815688, 49.992624 ], [ 4.805954, 49.9842 ], [ 4.795587, 49.982219 ], [ 4.790553, 49.961898 ], [ 4.790917, 49.958398 ], [ 4.809008, 49.95447 ], [ 4.813847, 49.95427 ], [ 4.849231, 49.94654 ], [ 4.858426, 49.93371 ], [ 4.878692, 49.92192 ], [ 4.885178, 49.912163 ], [ 4.885605, 49.90865 ], [ 4.882877, 49.89845 ], [ 4.861937, 49.86978 ], [ 4.851545, 49.86271 ], [ 4.852398, 49.85211 ], [ 4.855107, 49.84902 ], [ 4.858624, 49.842551 ], [ 4.867279, 49.839085 ], [ 4.873641, 49.818974 ], [ 4.865474, 49.81021 ], [ 4.855102, 49.79457 ], [ 4.857954, 49.7917 ], [ 4.861739, 49.78928 ], [ 4.874959, 49.793198 ], [ 4.883825, 49.790428 ], [ 4.887263, 49.788047 ], [ 4.897637, 49.78892 ], [ 4.906258, 49.7856 ], [ 4.926346, 49.78751 ], [ 4.931438, 49.78671 ], [ 4.939628, 49.79256 ], [ 4.942985, 49.790677 ], [ 4.946674, 49.797143 ], [ 4.955675, 49.80054 ], [ 4.991472, 49.800221 ], [ 5.001782, 49.793672 ], [ 5.010732, 49.78156 ], [ 5.014912, 49.779507 ], [ 5.041812, 49.77053 ], [ 5.046834, 49.770141 ], [ 5.069026, 49.76163 ], [ 5.089717, 49.76479 ], [ 5.096602, 49.75978 ], [ 5.122393, 49.729993 ], [ 5.124874, 49.726947 ], [ 5.123263, 49.720549 ], [ 5.123073, 49.71731 ], [ 5.130784, 49.713047 ], [ 5.141008, 49.71225 ], [ 5.143643, 49.70931 ], [ 5.151701, 49.71767 ], [ 5.160857, 49.71519 ], [ 5.165421, 49.709362 ], [ 5.16475, 49.696115 ], [ 5.166208, 49.69292 ], [ 5.194929, 49.69315 ], [ 5.19966, 49.69232 ], [ 5.208661, 49.69444 ], [ 5.215667, 49.689176 ], [ 5.23114, 49.69036 ], [ 5.246232, 49.68694 ], [ 5.268384, 49.69595 ], [ 5.280511, 49.689138 ], [ 5.281175, 49.68569 ], [ 5.282209, 49.68557 ], [ 5.286558, 49.68182 ], [ 5.31556, 49.666299 ], [ 5.319152, 49.66367 ], [ 5.332622, 49.6535 ], [ 5.320584, 49.64726 ], [ 5.307345, 49.63304 ], [ 5.304913, 49.63006 ], [ 5.311374, 49.614354 ], [ 5.314977, 49.61203 ], [ 5.321965, 49.614188 ], [ 5.340104, 49.618129 ], [ 5.346857, 49.63084 ], [ 5.388626, 49.61831 ], [ 5.393537, 49.617088 ], [ 5.389677, 49.615617 ], [ 5.381689, 49.6057 ], [ 5.379728, 49.59563 ], [ 5.37203, 49.592166 ], [ 5.361514, 49.59206 ], [ 5.357528, 49.58989 ], [ 5.347645, 49.5897 ], [ 5.339981, 49.59419 ], [ 5.312228, 49.565143 ], [ 5.308171, 49.562847 ], [ 5.31177, 49.55929 ], [ 5.307404, 49.557781 ], [ 5.284348, 49.55242 ], [ 5.277031, 49.54416 ], [ 5.271867, 49.54457 ], [ 5.26271, 49.54182 ], [ 5.259298, 49.54436 ], [ 5.251771, 49.55671 ], [ 5.247139, 49.55762 ], [ 5.234681, 49.562235 ], [ 5.234775, 49.56567 ], [ 5.214137, 49.57301 ], [ 5.201334, 49.56814 ], [ 5.196319, 49.56755 ], [ 5.186928, 49.56969 ], [ 5.177683, 49.56715 ], [ 5.168633, 49.56366 ], [ 5.159887, 49.56669 ], [ 5.160299, 49.56957 ], [ 5.152895, 49.576623 ], [ 5.152668, 49.58011 ], [ 5.145609, 49.58919 ], [ 5.119715, 49.59268 ], [ 5.115037, 49.59093 ], [ 5.106024, 49.578524 ], [ 5.113352, 49.5621 ], [ 5.112148, 49.5597 ], [ 5.108388, 49.555298 ], [ 5.104178, 49.55609 ], [ 5.09608, 49.55779 ], [ 5.095677, 49.554358 ], [ 5.090175, 49.54479 ], [ 5.090506, 49.538 ], [ 5.097719, 49.533646 ], [ 5.089874, 49.52109 ], [ 5.085535, 49.520335 ], [ 5.084962, 49.51711 ], [ 5.077415, 49.508733 ], [ 5.062563, 49.50745 ], [ 5.059872, 49.504708 ], [ 5.059979, 49.50119 ], [ 5.074537, 49.486683 ], [ 5.079907, 49.48637 ], [ 5.084529, 49.48056 ], [ 5.083, 49.473807 ], [ 5.082957, 49.47036 ], [ 5.095809, 49.4604 ], [ 5.100672, 49.46126 ], [ 5.102876, 49.46017 ], [ 5.10986, 49.45625 ], [ 5.100887, 49.440834 ], [ 5.106154, 49.4277 ], [ 5.107781, 49.424674 ], [ 5.115029, 49.42058 ], [ 5.109334, 49.41547 ], [ 5.099317, 49.413842 ], [ 5.084472, 49.404586 ], [ 5.088653, 49.39861 ], [ 5.10415, 49.38978 ], [ 5.100617, 49.380497 ], [ 5.088622, 49.36963 ], [ 5.08389, 49.37043 ], [ 5.060209, 49.371517 ], [ 5.054072, 49.36611 ], [ 5.055816, 49.359435 ], [ 5.027099, 49.335615 ], [ 5.028499, 49.332354 ], [ 5.029392, 49.326036 ], [ 5.032377, 49.32393 ], [ 5.038152, 49.316204 ], [ 5.030794, 49.30817 ], [ 5.041741, 49.29669 ], [ 5.051473, 49.29422 ], [ 5.056637, 49.293365 ], [ 5.059407, 49.28975 ], [ 5.05546, 49.28798 ], [ 5.049709, 49.283366 ], [ 5.051181, 49.274052 ], [ 5.036007, 49.27122 ], [ 5.025812, 49.273042 ], [ 5.011029, 49.269287 ], [ 5.006624, 49.26767 ], [ 4.998664, 49.26366 ], [ 4.9999, 49.26045 ], [ 4.996246, 49.257977 ], [ 4.968033, 49.248792 ], [ 4.960253, 49.23996 ], [ 4.950989, 49.236866 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "9", "CODE_DEPT": "09", "NOM_DEPT": "ARIEGE", "CODE_CHF": "122", "NOM_CHF": "FOIX", "X_CHF_LIEU": "5862", "Y_CHF_LIEU": "62083", "X_CENTROID": "5777", "Y_CENTROID": "62035", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.166054, 42.66392 ], [ 2.161322, 42.664241 ], [ 2.152302, 42.662075 ], [ 2.143126, 42.663854 ], [ 2.127885, 42.672039 ], [ 2.10655, 42.664841 ], [ 2.073887, 42.665624 ], [ 2.061034, 42.66184 ], [ 2.047019, 42.66359 ], [ 2.04327, 42.657496 ], [ 2.022788, 42.653364 ], [ 2.018423, 42.65366 ], [ 2.015214, 42.65539 ], [ 2.002095, 42.661076 ], [ 1.997956, 42.660903 ], [ 1.990771, 42.64664 ], [ 1.987816, 42.6443 ], [ 1.976116, 42.62744 ], [ 1.976361, 42.62107 ], [ 1.97328, 42.61838 ], [ 1.950468, 42.616947 ], [ 1.942099, 42.608521 ], [ 1.933621, 42.605578 ], [ 1.924961, 42.608539 ], [ 1.910766, 42.608063 ], [ 1.900303, 42.614906 ], [ 1.898745, 42.61167 ], [ 1.89352, 42.606051 ], [ 1.890215, 42.592989 ], [ 1.873502, 42.588202 ], [ 1.874485, 42.581415 ], [ 1.865377, 42.579925 ], [ 1.838155, 42.583957 ], [ 1.824728, 42.58124 ], [ 1.820712, 42.579504 ], [ 1.799703, 42.57232 ], [ 1.786125, 42.573623 ], [ 1.778394, 42.58208 ], [ 1.764271, 42.58082 ], [ 1.72825, 42.58957 ], [ 1.726265, 42.596348 ], [ 1.73508, 42.6085 ], [ 1.737964, 42.611314 ], [ 1.736569, 42.617834 ], [ 1.732644, 42.615819 ], [ 1.71376, 42.615386 ], [ 1.683181, 42.62449 ], [ 1.660225, 42.62046 ], [ 1.64907, 42.626907 ], [ 1.63517, 42.62927 ], [ 1.602654, 42.626418 ], [ 1.582867, 42.635437 ], [ 1.574887, 42.64803 ], [ 1.570708, 42.648089 ], [ 1.564674, 42.65223 ], [ 1.552802, 42.65395 ], [ 1.549214, 42.65569 ], [ 1.534097, 42.6498 ], [ 1.522151, 42.649183 ], [ 1.50644, 42.64529 ], [ 1.49375, 42.653211 ], [ 1.479741, 42.650854 ], [ 1.470526, 42.63481 ], [ 1.473983, 42.61115 ], [ 1.457841, 42.60379 ], [ 1.438948, 42.604335 ], [ 1.421833, 42.62506 ], [ 1.413033, 42.652646 ], [ 1.389548, 42.66977 ], [ 1.387917, 42.687306 ], [ 1.377013, 42.69411 ], [ 1.35461, 42.699991 ], [ 1.351964, 42.706444 ], [ 1.357819, 42.715886 ], [ 1.357378, 42.71942 ], [ 1.336951, 42.72107 ], [ 1.335268, 42.724037 ], [ 1.325862, 42.72411 ], [ 1.309332, 42.7179 ], [ 1.29526, 42.719063 ], [ 1.282178, 42.71517 ], [ 1.269226, 42.718025 ], [ 1.256345, 42.715226 ], [ 1.242505, 42.72406 ], [ 1.229293, 42.727724 ], [ 1.225892, 42.72522 ], [ 1.217862, 42.72136 ], [ 1.190021, 42.716877 ], [ 1.174266, 42.708992 ], [ 1.165018, 42.709527 ], [ 1.135497, 42.727328 ], [ 1.128703, 42.754623 ], [ 1.106604, 42.771773 ], [ 1.089692, 42.777454 ], [ 1.082026, 42.785907 ], [ 1.078709, 42.788366 ], [ 1.072945, 42.78284 ], [ 1.049296, 42.78164 ], [ 1.037519, 42.786522 ], [ 1.009559, 42.788876 ], [ 1.005585, 42.790799 ], [ 1.001357, 42.789452 ], [ 0.983769, 42.787072 ], [ 0.959768, 42.80564 ], [ 0.947251, 42.801013 ], [ 0.93448, 42.790873 ], [ 0.925827, 42.789672 ], [ 0.884979, 42.81307 ], [ 0.871283, 42.81608 ], [ 0.859991, 42.82244 ], [ 0.858306, 42.825719 ], [ 0.859883, 42.8383 ], [ 0.85666, 42.84052 ], [ 0.848211, 42.86533 ], [ 0.839447, 42.867521 ], [ 0.835258, 42.87359 ], [ 0.842883, 42.889585 ], [ 0.838049, 42.89883 ], [ 0.834232, 42.900791 ], [ 0.826682, 42.9155 ], [ 0.837338, 42.92054 ], [ 0.840735, 42.922675 ], [ 0.843739, 42.925182 ], [ 0.857163, 42.92399 ], [ 0.864822, 42.92743 ], [ 0.873674, 42.92673 ], [ 0.88452, 42.93244 ], [ 0.885379, 42.935725 ], [ 0.875793, 42.95445 ], [ 0.874911, 42.957776 ], [ 0.908073, 42.95831 ], [ 0.912639, 42.9594 ], [ 0.916804, 42.96074 ], [ 0.927664, 42.966687 ], [ 0.931165, 42.96643 ], [ 0.938102, 42.965646 ], [ 0.961393, 42.96831 ], [ 0.964711, 42.970804 ], [ 0.975795, 42.972974 ], [ 0.979101, 42.97443 ], [ 0.980532, 42.977687 ], [ 0.995098, 42.990834 ], [ 1.005529, 43.006087 ], [ 1.018611, 43.008147 ], [ 1.02239, 43.010195 ], [ 1.013484, 43.010022 ], [ 1.007949, 43.018763 ], [ 0.996808, 43.023981 ], [ 0.992966, 43.02338 ], [ 0.989042, 43.023396 ], [ 0.98455, 43.04218 ], [ 0.984119, 43.04539 ], [ 0.990214, 43.041564 ], [ 0.993153, 43.039558 ], [ 0.99437, 43.03985 ], [ 0.993263, 43.04842 ], [ 0.988953, 43.04786 ], [ 0.983483, 43.05626 ], [ 0.985586, 43.06247 ], [ 0.980334, 43.07022 ], [ 0.978285, 43.073009 ], [ 0.999629, 43.0765 ], [ 1.004964, 43.0816 ], [ 0.99167, 43.091173 ], [ 0.992095, 43.098018 ], [ 0.996328, 43.09811 ], [ 1.004142, 43.108616 ], [ 1.000889, 43.11428 ], [ 1.005098, 43.113303 ], [ 1.009501, 43.113484 ], [ 1.025497, 43.10214 ], [ 1.03823, 43.100308 ], [ 1.048314, 43.11731 ], [ 1.050845, 43.11982 ], [ 1.052319, 43.132935 ], [ 1.048409, 43.13815 ], [ 1.051446, 43.14061 ], [ 1.051863, 43.14391 ], [ 1.053544, 43.145454 ], [ 1.062938, 43.13867 ], [ 1.084129, 43.135403 ], [ 1.087977, 43.133825 ], [ 1.088091, 43.140035 ], [ 1.104069, 43.14396 ], [ 1.108471, 43.144228 ], [ 1.11198, 43.145531 ], [ 1.11207, 43.14841 ], [ 1.115991, 43.149875 ], [ 1.124082, 43.15691 ], [ 1.145819, 43.13863 ], [ 1.162565, 43.13204 ], [ 1.174984, 43.140974 ], [ 1.177517, 43.138201 ], [ 1.198395, 43.12542 ], [ 1.199329, 43.122617 ], [ 1.210751, 43.1151 ], [ 1.213204, 43.109236 ], [ 1.210476, 43.106905 ], [ 1.2221, 43.089078 ], [ 1.223571, 43.085926 ], [ 1.241135, 43.087537 ], [ 1.245513, 43.088076 ], [ 1.249571, 43.089042 ], [ 1.261854, 43.09165 ], [ 1.260737, 43.10799 ], [ 1.278927, 43.11026 ], [ 1.281744, 43.112995 ], [ 1.282698, 43.11601 ], [ 1.290166, 43.123439 ], [ 1.302718, 43.12259 ], [ 1.299357, 43.124961 ], [ 1.276705, 43.141992 ], [ 1.273873, 43.148388 ], [ 1.255381, 43.14795 ], [ 1.250818, 43.148097 ], [ 1.237564, 43.14998 ], [ 1.223738, 43.152072 ], [ 1.217172, 43.156579 ], [ 1.216928, 43.16329 ], [ 1.227735, 43.174001 ], [ 1.230324, 43.18739 ], [ 1.239495, 43.189065 ], [ 1.247613, 43.18654 ], [ 1.249383, 43.183306 ], [ 1.253254, 43.183792 ], [ 1.264613, 43.188734 ], [ 1.268142, 43.190779 ], [ 1.266351, 43.19148 ], [ 1.272331, 43.19585 ], [ 1.296283, 43.189284 ], [ 1.302034, 43.193576 ], [ 1.305721, 43.194912 ], [ 1.311658, 43.19165 ], [ 1.314608, 43.189995 ], [ 1.322387, 43.190989 ], [ 1.325853, 43.196126 ], [ 1.329615, 43.19702 ], [ 1.327516, 43.20196 ], [ 1.327822, 43.20456 ], [ 1.352282, 43.21198 ], [ 1.356669, 43.21301 ], [ 1.370204, 43.21067 ], [ 1.377872, 43.21925 ], [ 1.379963, 43.222341 ], [ 1.382925, 43.228152 ], [ 1.377652, 43.23627 ], [ 1.374903, 43.23864 ], [ 1.373053, 43.244883 ], [ 1.365233, 43.242021 ], [ 1.35678, 43.243701 ], [ 1.352581, 43.244617 ], [ 1.348304, 43.24313 ], [ 1.336707, 43.248387 ], [ 1.318422, 43.251154 ], [ 1.329953, 43.257217 ], [ 1.330481, 43.260644 ], [ 1.294111, 43.264926 ], [ 1.294862, 43.268267 ], [ 1.301238, 43.27292 ], [ 1.292531, 43.288366 ], [ 1.301558, 43.28756 ], [ 1.307485, 43.296727 ], [ 1.316667, 43.297392 ], [ 1.323968, 43.3094 ], [ 1.331294, 43.31383 ], [ 1.345491, 43.31549 ], [ 1.373023, 43.31015 ], [ 1.365686, 43.305999 ], [ 1.379301, 43.288857 ], [ 1.401943, 43.277623 ], [ 1.402761, 43.276547 ], [ 1.406262, 43.27419 ], [ 1.425886, 43.25582 ], [ 1.425426, 43.24559 ], [ 1.418659, 43.23654 ], [ 1.41686, 43.226325 ], [ 1.431539, 43.218136 ], [ 1.441798, 43.21587 ], [ 1.444751, 43.214018 ], [ 1.452056, 43.21222 ], [ 1.468744, 43.209566 ], [ 1.471837, 43.215385 ], [ 1.475497, 43.21699 ], [ 1.476565, 43.220347 ], [ 1.48702, 43.226503 ], [ 1.503995, 43.22095 ], [ 1.503881, 43.224867 ], [ 1.504053, 43.228189 ], [ 1.500513, 43.233745 ], [ 1.492447, 43.23684 ], [ 1.495751, 43.23897 ], [ 1.504522, 43.24953 ], [ 1.502879, 43.251637 ], [ 1.49768, 43.25466 ], [ 1.493322, 43.25422 ], [ 1.490239, 43.26011 ], [ 1.492642, 43.262804 ], [ 1.488674, 43.2686 ], [ 1.495033, 43.27689 ], [ 1.49622, 43.29277 ], [ 1.499248, 43.290445 ], [ 1.506599, 43.2872 ], [ 1.511636, 43.29246 ], [ 1.515871, 43.28441 ], [ 1.515703, 43.27804 ], [ 1.517628, 43.271643 ], [ 1.52189, 43.270621 ], [ 1.537449, 43.277077 ], [ 1.541722, 43.276082 ], [ 1.541674, 43.27509 ], [ 1.545386, 43.276797 ], [ 1.557052, 43.263323 ], [ 1.561765, 43.257484 ], [ 1.569141, 43.257366 ], [ 1.572619, 43.26357 ], [ 1.569433, 43.269912 ], [ 1.574813, 43.273429 ], [ 1.578834, 43.27512 ], [ 1.582583, 43.26887 ], [ 1.600931, 43.26622 ], [ 1.606213, 43.260604 ], [ 1.633595, 43.256239 ], [ 1.637144, 43.254008 ], [ 1.636456, 43.24718 ], [ 1.635082, 43.23709 ], [ 1.644398, 43.237564 ], [ 1.655283, 43.244105 ], [ 1.655788, 43.250976 ], [ 1.650608, 43.259827 ], [ 1.671417, 43.2783 ], [ 1.673613, 43.28134 ], [ 1.684706, 43.27552 ], [ 1.68842, 43.273554 ], [ 1.691642, 43.270993 ], [ 1.701035, 43.259015 ], [ 1.700281, 43.24551 ], [ 1.716082, 43.228373 ], [ 1.723908, 43.224435 ], [ 1.720825, 43.221997 ], [ 1.724233, 43.212474 ], [ 1.709977, 43.19984 ], [ 1.709632, 43.19001 ], [ 1.71178, 43.18684 ], [ 1.725887, 43.187682 ], [ 1.739608, 43.184299 ], [ 1.747554, 43.175566 ], [ 1.774918, 43.16154 ], [ 1.779465, 43.16036 ], [ 1.783803, 43.154472 ], [ 1.801395, 43.157017 ], [ 1.817151, 43.150228 ], [ 1.821439, 43.148998 ], [ 1.826188, 43.14568 ], [ 1.848366, 43.147346 ], [ 1.846197, 43.15323 ], [ 1.850054, 43.1576 ], [ 1.85196, 43.160608 ], [ 1.856847, 43.144629 ], [ 1.877961, 43.144833 ], [ 1.880648, 43.14754 ], [ 1.880596, 43.130549 ], [ 1.890103, 43.12347 ], [ 1.892668, 43.11713 ], [ 1.904423, 43.131163 ], [ 1.916269, 43.13343 ], [ 1.927409, 43.129496 ], [ 1.927998, 43.124185 ], [ 1.932339, 43.12386 ], [ 1.948405, 43.1203 ], [ 1.951491, 43.111311 ], [ 1.950633, 43.102388 ], [ 1.955369, 43.088924 ], [ 1.955776, 43.085447 ], [ 1.952205, 43.084054 ], [ 1.949782, 43.08169 ], [ 1.953422, 43.07991 ], [ 1.96308, 43.069587 ], [ 1.961181, 43.0667 ], [ 1.944222, 43.06695 ], [ 1.940394, 43.061586 ], [ 1.945866, 43.0494 ], [ 1.954082, 43.04678 ], [ 1.961083, 43.049564 ], [ 1.975929, 43.042304 ], [ 1.979452, 43.0379 ], [ 1.984554, 43.032941 ], [ 1.985759, 43.029957 ], [ 1.985468, 43.023479 ], [ 1.971869, 43.010586 ], [ 1.969256, 43.007944 ], [ 1.977778, 43.00701 ], [ 1.987058, 43.000576 ], [ 1.987127, 42.994506 ], [ 1.983264, 42.988434 ], [ 1.985769, 42.96848 ], [ 1.991575, 42.963482 ], [ 2.004908, 42.96156 ], [ 1.992859, 42.95372 ], [ 1.988592, 42.953381 ], [ 1.979382, 42.960507 ], [ 1.96166, 42.96201 ], [ 1.951304, 42.95909 ], [ 1.951814, 42.95593 ], [ 1.936227, 42.95189 ], [ 1.933731, 42.939144 ], [ 1.938436, 42.938228 ], [ 1.980574, 42.92958 ], [ 1.98088, 42.926111 ], [ 1.989327, 42.910488 ], [ 1.991129, 42.90749 ], [ 1.986048, 42.902786 ], [ 1.981595, 42.880467 ], [ 1.981922, 42.877197 ], [ 1.985041, 42.870859 ], [ 1.964409, 42.86292 ], [ 1.960244, 42.861377 ], [ 1.947126, 42.856689 ], [ 1.89389, 42.852925 ], [ 1.889042, 42.852704 ], [ 1.880266, 42.85268 ], [ 1.875017, 42.849168 ], [ 1.875018, 42.845939 ], [ 1.875571, 42.839497 ], [ 1.859461, 42.82414 ], [ 1.859379, 42.82081 ], [ 1.897896, 42.806041 ], [ 1.898387, 42.802701 ], [ 1.901467, 42.800637 ], [ 1.924962, 42.776245 ], [ 1.928959, 42.774603 ], [ 1.926075, 42.77218 ], [ 1.909557, 42.768445 ], [ 1.908994, 42.765247 ], [ 1.912998, 42.759308 ], [ 1.92529, 42.755179 ], [ 1.929817, 42.75521 ], [ 1.931555, 42.750934 ], [ 1.943622, 42.746207 ], [ 1.950255, 42.73766 ], [ 1.986832, 42.735222 ], [ 1.991438, 42.7348 ], [ 1.994914, 42.73558 ], [ 1.998506, 42.735944 ], [ 2.001675, 42.73537 ], [ 2.00378, 42.733529 ], [ 2.01532, 42.739274 ], [ 2.019979, 42.740018 ], [ 2.030775, 42.741483 ], [ 2.034932, 42.746826 ], [ 2.043914, 42.74741 ], [ 2.058119, 42.755485 ], [ 2.080464, 42.752244 ], [ 2.084951, 42.751662 ], [ 2.08636, 42.752069 ], [ 2.0878, 42.73957 ], [ 2.096671, 42.73315 ], [ 2.100535, 42.731715 ], [ 2.111063, 42.726839 ], [ 2.113806, 42.7245 ], [ 2.140803, 42.70908 ], [ 2.140607, 42.70582 ], [ 2.147599, 42.70124 ], [ 2.161494, 42.700523 ], [ 2.175521, 42.68275 ], [ 2.165712, 42.66739 ], [ 2.166054, 42.66392 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "10", "CODE_DEPT": "10", "NOM_DEPT": "AUBE", "CODE_CHF": "387", "NOM_CHF": "TROYES", "X_CHF_LIEU": "7799", "Y_CHF_LIEU": "68003", "X_CENTROID": "7861", "Y_CENTROID": "68010", "CODE_REG": "21", "NOM_REGION": "CHAMPAGNE-ARDENNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.293424, 47.92568 ], [ 4.288659, 47.92685 ], [ 4.274316, 47.92352 ], [ 4.259501, 47.925577 ], [ 4.246331, 47.930425 ], [ 4.2239, 47.948499 ], [ 4.227548, 47.962007 ], [ 4.225956, 47.971942 ], [ 4.221154, 47.97122 ], [ 4.201952, 47.972577 ], [ 4.195329, 47.96776 ], [ 4.195372, 47.96431 ], [ 4.204572, 47.96108 ], [ 4.206056, 47.947361 ], [ 4.200398, 47.94183 ], [ 4.185452, 47.94016 ], [ 4.184257, 47.95386 ], [ 4.167337, 47.96001 ], [ 4.162736, 47.95857 ], [ 4.141785, 47.94393 ], [ 4.141839, 47.937112 ], [ 4.137273, 47.937786 ], [ 4.122115, 47.93166 ], [ 4.113712, 47.92816 ], [ 4.094619, 47.92834 ], [ 4.092716, 47.94128 ], [ 4.089798, 47.94397 ], [ 4.060938, 47.94571 ], [ 4.054893, 47.93003 ], [ 4.045912, 47.9269 ], [ 4.033216, 47.932339 ], [ 4.025042, 47.928649 ], [ 4.019887, 47.92868 ], [ 4.005536, 47.94237 ], [ 4.001886, 47.94058 ], [ 3.985625, 47.930516 ], [ 3.981186, 47.930166 ], [ 3.976533, 47.93127 ], [ 3.963109, 47.935455 ], [ 3.949414, 47.93206 ], [ 3.92645, 47.93457 ], [ 3.923708, 47.932432 ], [ 3.918489, 47.92802 ], [ 3.914044, 47.92962 ], [ 3.905178, 47.926483 ], [ 3.895693, 47.92855 ], [ 3.894031, 47.929296 ], [ 3.896827, 47.932289 ], [ 3.902393, 47.93829 ], [ 3.905655, 47.95914 ], [ 3.913529, 47.97208 ], [ 3.903717, 47.99164 ], [ 3.90227, 47.99484 ], [ 3.895731, 47.999833 ], [ 3.885815, 48.000277 ], [ 3.882089, 47.997965 ], [ 3.880447, 47.98144 ], [ 3.8618, 47.976444 ], [ 3.863339, 47.979601 ], [ 3.859899, 47.98401 ], [ 3.850027, 47.98366 ], [ 3.849394, 47.986794 ], [ 3.839811, 48.00389 ], [ 3.844554, 48.003613 ], [ 3.862835, 48.00627 ], [ 3.870812, 48.002864 ], [ 3.870626, 48.00623 ], [ 3.870242, 48.01631 ], [ 3.847997, 48.02939 ], [ 3.843397, 48.03537 ], [ 3.83961, 48.03606 ], [ 3.832152, 48.036235 ], [ 3.829137, 48.03902 ], [ 3.82198, 48.04392 ], [ 3.828647, 48.04807 ], [ 3.826352, 48.063516 ], [ 3.822803, 48.065827 ], [ 3.806636, 48.08239 ], [ 3.798608, 48.08617 ], [ 3.798965, 48.08936 ], [ 3.80565, 48.10052 ], [ 3.803843, 48.10367 ], [ 3.80166, 48.10673 ], [ 3.798242, 48.10911 ], [ 3.791315, 48.117598 ], [ 3.782117, 48.11992 ], [ 3.776493, 48.12867 ], [ 3.768933, 48.13285 ], [ 3.763975, 48.13212 ], [ 3.752958, 48.125957 ], [ 3.74065, 48.131983 ], [ 3.739803, 48.138693 ], [ 3.742117, 48.1417 ], [ 3.754541, 48.15209 ], [ 3.74548, 48.167534 ], [ 3.741053, 48.16934 ], [ 3.716542, 48.17418 ], [ 3.721798, 48.158178 ], [ 3.705728, 48.1452 ], [ 3.698164, 48.148692 ], [ 3.694415, 48.15505 ], [ 3.693632, 48.15174 ], [ 3.691075, 48.145413 ], [ 3.66787, 48.139212 ], [ 3.666663, 48.142638 ], [ 3.65964, 48.159577 ], [ 3.650655, 48.16818 ], [ 3.648805, 48.17093 ], [ 3.64051, 48.184617 ], [ 3.636498, 48.186735 ], [ 3.623548, 48.192 ], [ 3.593967, 48.1787 ], [ 3.589992, 48.180588 ], [ 3.575186, 48.18874 ], [ 3.579608, 48.190672 ], [ 3.609202, 48.21066 ], [ 3.621602, 48.22561 ], [ 3.619329, 48.22813 ], [ 3.608006, 48.231831 ], [ 3.604684, 48.229886 ], [ 3.599994, 48.23551 ], [ 3.624443, 48.25517 ], [ 3.624347, 48.258442 ], [ 3.622873, 48.261375 ], [ 3.615187, 48.27254 ], [ 3.610952, 48.27461 ], [ 3.582509, 48.28284 ], [ 3.587536, 48.29848 ], [ 3.56318, 48.310819 ], [ 3.564072, 48.321081 ], [ 3.559032, 48.320358 ], [ 3.543904, 48.319789 ], [ 3.543961, 48.32276 ], [ 3.545109, 48.33455 ], [ 3.540825, 48.336547 ], [ 3.50441, 48.36549 ], [ 3.495725, 48.36935 ], [ 3.474875, 48.369265 ], [ 3.472982, 48.371899 ], [ 3.470803, 48.37444 ], [ 3.470481, 48.374671 ], [ 3.465281, 48.37451 ], [ 3.450115, 48.372852 ], [ 3.431584, 48.36085 ], [ 3.426582, 48.36169 ], [ 3.414008, 48.37654 ], [ 3.414792, 48.390273 ], [ 3.420872, 48.40902 ], [ 3.421938, 48.412236 ], [ 3.416642, 48.415835 ], [ 3.402286, 48.415408 ], [ 3.411362, 48.41804 ], [ 3.411833, 48.42132 ], [ 3.407194, 48.422678 ], [ 3.392493, 48.425157 ], [ 3.39673, 48.43489 ], [ 3.400909, 48.43688 ], [ 3.405714, 48.45329 ], [ 3.39689, 48.461488 ], [ 3.39732, 48.468171 ], [ 3.384094, 48.47803 ], [ 3.387681, 48.48016 ], [ 3.403747, 48.48599 ], [ 3.407523, 48.487793 ], [ 3.424335, 48.49154 ], [ 3.433434, 48.490391 ], [ 3.434924, 48.49705 ], [ 3.422267, 48.51541 ], [ 3.405398, 48.52802 ], [ 3.408474, 48.529945 ], [ 3.41464, 48.53379 ], [ 3.445941, 48.52879 ], [ 3.450707, 48.52867 ], [ 3.47562, 48.54128 ], [ 3.480919, 48.541431 ], [ 3.483775, 48.54706 ], [ 3.465516, 48.57049 ], [ 3.469023, 48.573054 ], [ 3.480668, 48.579133 ], [ 3.485304, 48.580464 ], [ 3.496646, 48.58992 ], [ 3.515219, 48.590989 ], [ 3.505274, 48.602986 ], [ 3.508636, 48.605598 ], [ 3.556545, 48.61731 ], [ 3.555754, 48.62069 ], [ 3.563076, 48.612739 ], [ 3.565324, 48.60353 ], [ 3.575032, 48.60446 ], [ 3.579892, 48.604859 ], [ 3.581882, 48.588702 ], [ 3.582592, 48.58546 ], [ 3.59248, 48.587004 ], [ 3.602682, 48.57567 ], [ 3.604245, 48.572453 ], [ 3.607694, 48.57417 ], [ 3.61177, 48.5761 ], [ 3.615255, 48.57849 ], [ 3.623843, 48.57911 ], [ 3.629017, 48.57416 ], [ 3.631399, 48.57156 ], [ 3.63263, 48.54552 ], [ 3.643639, 48.53626 ], [ 3.658505, 48.53564 ], [ 3.66131, 48.53466 ], [ 3.664193, 48.53553 ], [ 3.6882, 48.53895 ], [ 3.701306, 48.534281 ], [ 3.706308, 48.534585 ], [ 3.726541, 48.537189 ], [ 3.731761, 48.53754 ], [ 3.759259, 48.53186 ], [ 3.76655, 48.527446 ], [ 3.774481, 48.5298 ], [ 3.782383, 48.52746 ], [ 3.786289, 48.52873 ], [ 3.796397, 48.5281 ], [ 3.821633, 48.517039 ], [ 3.825896, 48.515174 ], [ 3.829732, 48.51714 ], [ 3.834507, 48.51766 ], [ 3.852471, 48.52483 ], [ 3.86544, 48.540046 ], [ 3.866229, 48.543549 ], [ 3.86001, 48.543549 ], [ 3.858832, 48.55683 ], [ 3.863732, 48.569629 ], [ 3.855122, 48.572794 ], [ 3.855214, 48.579262 ], [ 3.878854, 48.57902 ], [ 3.883263, 48.57755 ], [ 3.883945, 48.57776 ], [ 3.897616, 48.575738 ], [ 3.908424, 48.60175 ], [ 3.911396, 48.60185 ], [ 3.91901, 48.60597 ], [ 3.94924, 48.603432 ], [ 3.964055, 48.62714 ], [ 3.966616, 48.62992 ], [ 3.974072, 48.62657 ], [ 3.980532, 48.629473 ], [ 3.977256, 48.63209 ], [ 3.984211, 48.65194 ], [ 3.998629, 48.66116 ], [ 4.001696, 48.66388 ], [ 4.030184, 48.65965 ], [ 4.039499, 48.66168 ], [ 4.044291, 48.660955 ], [ 4.062858, 48.67184 ], [ 4.067612, 48.67785 ], [ 4.065982, 48.6872 ], [ 4.079788, 48.701127 ], [ 4.083978, 48.700037 ], [ 4.088126, 48.698875 ], [ 4.126466, 48.687778 ], [ 4.131091, 48.68615 ], [ 4.153641, 48.70268 ], [ 4.157769, 48.70434 ], [ 4.162185, 48.706155 ], [ 4.177346, 48.70825 ], [ 4.233041, 48.70231 ], [ 4.234701, 48.70529 ], [ 4.243113, 48.716673 ], [ 4.248388, 48.71158 ], [ 4.262377, 48.707152 ], [ 4.297443, 48.71315 ], [ 4.311773, 48.710559 ], [ 4.325579, 48.7002 ], [ 4.327016, 48.696879 ], [ 4.323296, 48.68411 ], [ 4.333205, 48.673664 ], [ 4.324067, 48.66198 ], [ 4.327909, 48.65608 ], [ 4.318484, 48.64956 ], [ 4.323216, 48.64393 ], [ 4.324339, 48.641647 ], [ 4.326398, 48.638772 ], [ 4.329072, 48.63612 ], [ 4.330956, 48.62959 ], [ 4.314918, 48.61622 ], [ 4.318252, 48.613403 ], [ 4.330833, 48.601819 ], [ 4.344703, 48.59837 ], [ 4.349656, 48.59794 ], [ 4.392438, 48.567422 ], [ 4.418399, 48.555473 ], [ 4.42331, 48.55415 ], [ 4.427877, 48.553165 ], [ 4.458127, 48.54784 ], [ 4.463404, 48.54756 ], [ 4.490796, 48.54015 ], [ 4.495281, 48.53872 ], [ 4.507606, 48.54518 ], [ 4.511043, 48.54783 ], [ 4.516867, 48.54445 ], [ 4.520811, 48.544941 ], [ 4.528813, 48.5294 ], [ 4.538806, 48.527398 ], [ 4.543945, 48.52803 ], [ 4.558081, 48.542425 ], [ 4.575926, 48.5492 ], [ 4.581057, 48.54856 ], [ 4.586045, 48.548146 ], [ 4.592975, 48.55234 ], [ 4.636332, 48.5537 ], [ 4.641338, 48.55388 ], [ 4.636207, 48.5497 ], [ 4.635014, 48.54448 ], [ 4.649977, 48.53983 ], [ 4.650985, 48.537005 ], [ 4.670183, 48.53189 ], [ 4.672146, 48.528872 ], [ 4.676345, 48.51953 ], [ 4.669606, 48.510796 ], [ 4.666284, 48.510635 ], [ 4.657667, 48.50323 ], [ 4.659165, 48.49323 ], [ 4.651486, 48.47721 ], [ 4.653469, 48.470557 ], [ 4.648724, 48.47071 ], [ 4.63622, 48.467215 ], [ 4.62683, 48.468082 ], [ 4.630106, 48.465518 ], [ 4.635782, 48.456612 ], [ 4.673885, 48.444132 ], [ 4.675907, 48.44138 ], [ 4.676942, 48.43567 ], [ 4.67796, 48.432421 ], [ 4.688066, 48.425403 ], [ 4.680322, 48.417054 ], [ 4.685262, 48.41681 ], [ 4.694223, 48.41467 ], [ 4.708356, 48.401185 ], [ 4.701249, 48.39537 ], [ 4.703582, 48.393137 ], [ 4.707664, 48.391098 ], [ 4.721621, 48.394397 ], [ 4.74663, 48.392303 ], [ 4.760188, 48.38761 ], [ 4.75458, 48.36655 ], [ 4.774639, 48.35745 ], [ 4.788073, 48.35542 ], [ 4.79289, 48.356093 ], [ 4.818946, 48.34505 ], [ 4.834492, 48.344477 ], [ 4.841471, 48.33946 ], [ 4.837279, 48.337297 ], [ 4.814218, 48.32301 ], [ 4.817381, 48.320442 ], [ 4.825283, 48.3121 ], [ 4.826276, 48.302243 ], [ 4.830865, 48.30309 ], [ 4.850845, 48.296255 ], [ 4.842941, 48.283517 ], [ 4.859395, 48.266025 ], [ 4.846501, 48.25581 ], [ 4.84458, 48.24907 ], [ 4.845763, 48.24706 ], [ 4.843279, 48.24076 ], [ 4.851517, 48.22941 ], [ 4.839374, 48.2242 ], [ 4.835568, 48.222045 ], [ 4.836553, 48.218619 ], [ 4.862435, 48.20861 ], [ 4.862336, 48.19818 ], [ 4.856297, 48.192587 ], [ 4.85609, 48.192464 ], [ 4.853853, 48.18932 ], [ 4.847077, 48.17992 ], [ 4.84882, 48.17667 ], [ 4.838845, 48.16886 ], [ 4.836583, 48.162213 ], [ 4.838385, 48.15215 ], [ 4.850094, 48.14158 ], [ 4.845262, 48.1407 ], [ 4.841084, 48.13464 ], [ 4.828601, 48.129079 ], [ 4.830916, 48.126433 ], [ 4.833349, 48.117511 ], [ 4.834386, 48.105164 ], [ 4.819903, 48.10332 ], [ 4.786885, 48.109269 ], [ 4.782071, 48.110791 ], [ 4.762028, 48.11511 ], [ 4.74089, 48.11566 ], [ 4.731874, 48.119451 ], [ 4.729771, 48.116376 ], [ 4.724477, 48.10697 ], [ 4.704076, 48.09777 ], [ 4.706929, 48.09499 ], [ 4.706273, 48.091733 ], [ 4.69088, 48.08595 ], [ 4.686338, 48.08422 ], [ 4.666381, 48.082637 ], [ 4.657543, 48.079243 ], [ 4.660742, 48.07715 ], [ 4.665953, 48.07672 ], [ 4.691158, 48.07195 ], [ 4.710106, 48.051129 ], [ 4.723155, 48.045763 ], [ 4.721823, 48.042371 ], [ 4.710489, 48.03515 ], [ 4.708903, 48.02178 ], [ 4.704239, 48.020241 ], [ 4.700888, 48.02285 ], [ 4.67296, 48.01502 ], [ 4.647584, 48.02469 ], [ 4.621946, 48.024348 ], [ 4.619447, 48.02642 ], [ 4.616807, 48.031376 ], [ 4.612164, 48.03005 ], [ 4.578157, 48.02857 ], [ 4.563343, 48.0154 ], [ 4.55472, 48.012276 ], [ 4.552644, 48.009189 ], [ 4.5456, 48.004988 ], [ 4.535774, 48.00657 ], [ 4.535514, 48.003131 ], [ 4.542963, 47.990433 ], [ 4.555441, 47.98477 ], [ 4.559969, 47.971423 ], [ 4.55658, 47.96923 ], [ 4.552383, 47.96779 ], [ 4.531442, 47.969899 ], [ 4.516449, 47.966349 ], [ 4.495482, 47.96805 ], [ 4.446962, 47.9562 ], [ 4.438111, 47.959377 ], [ 4.433946, 47.961462 ], [ 4.416466, 47.96828 ], [ 4.392313, 47.962106 ], [ 4.371696, 47.96133 ], [ 4.347354, 47.956339 ], [ 4.312802, 47.962499 ], [ 4.305655, 47.954163 ], [ 4.299289, 47.94861 ], [ 4.300411, 47.94519 ], [ 4.30209, 47.93829 ], [ 4.293424, 47.92568 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "11", "CODE_DEPT": "11", "NOM_DEPT": "AUDE", "CODE_CHF": "069", "NOM_CHF": "CARCASSONNE", "X_CHF_LIEU": "6472", "Y_CHF_LIEU": "62353", "X_CENTROID": "6522", "Y_CENTROID": "62228", "CODE_REG": "91", "NOM_REGION": "LANGUEDOC-ROUSSILLON" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.043511, 42.83815 ], [ 3.03948, 42.84012 ], [ 3.012405, 42.853193 ], [ 2.988876, 42.864578 ], [ 2.98478, 42.8665 ], [ 2.917115, 42.88486 ], [ 2.91436, 42.887448 ], [ 2.906997, 42.895679 ], [ 2.902421, 42.89638 ], [ 2.880505, 42.901363 ], [ 2.865274, 42.918341 ], [ 2.83792, 42.912314 ], [ 2.810132, 42.89842 ], [ 2.8054, 42.89788 ], [ 2.787164, 42.89441 ], [ 2.761908, 42.873325 ], [ 2.755066, 42.85486 ], [ 2.754346, 42.851708 ], [ 2.751927, 42.848735 ], [ 2.740524, 42.83789 ], [ 2.72743, 42.8344 ], [ 2.682011, 42.83072 ], [ 2.665142, 42.83666 ], [ 2.664347, 42.836753 ], [ 2.639901, 42.83826 ], [ 2.635284, 42.83795 ], [ 2.603246, 42.83613 ], [ 2.572403, 42.84337 ], [ 2.567708, 42.843691 ], [ 2.558602, 42.845506 ], [ 2.554148, 42.84627 ], [ 2.518539, 42.84314 ], [ 2.515232, 42.84545 ], [ 2.512073, 42.8477 ], [ 2.500452, 42.85043 ], [ 2.496644, 42.84839 ], [ 2.462198, 42.83856 ], [ 2.459478, 42.83808 ], [ 2.45682, 42.83748 ], [ 2.452145, 42.83694 ], [ 2.401353, 42.843872 ], [ 2.397686, 42.845128 ], [ 2.382167, 42.848466 ], [ 2.370849, 42.84635 ], [ 2.36647, 42.84556 ], [ 2.336096, 42.840709 ], [ 2.32504, 42.8352 ], [ 2.322405, 42.825453 ], [ 2.33204, 42.81834 ], [ 2.33228, 42.80487 ], [ 2.339328, 42.801531 ], [ 2.343923, 42.801227 ], [ 2.344229, 42.780565 ], [ 2.343325, 42.774112 ], [ 2.349394, 42.76951 ], [ 2.352611, 42.76015 ], [ 2.350519, 42.7573 ], [ 2.351796, 42.75222 ], [ 2.352471, 42.749692 ], [ 2.353569, 42.748566 ], [ 2.357134, 42.738418 ], [ 2.355346, 42.72805 ], [ 2.342891, 42.722902 ], [ 2.32249, 42.70811 ], [ 2.318547, 42.706457 ], [ 2.28859, 42.70067 ], [ 2.275384, 42.702928 ], [ 2.264713, 42.709032 ], [ 2.264471, 42.702116 ], [ 2.256682, 42.698268 ], [ 2.240947, 42.67753 ], [ 2.218667, 42.672426 ], [ 2.192168, 42.659057 ], [ 2.191276, 42.656631 ], [ 2.192366, 42.651766 ], [ 2.188063, 42.65205 ], [ 2.176219, 42.648901 ], [ 2.176143, 42.652596 ], [ 2.176088, 42.65301 ], [ 2.173177, 42.65562 ], [ 2.166054, 42.66392 ], [ 2.165712, 42.66739 ], [ 2.175521, 42.68275 ], [ 2.161494, 42.700523 ], [ 2.147599, 42.70124 ], [ 2.140607, 42.70582 ], [ 2.140803, 42.70908 ], [ 2.113806, 42.7245 ], [ 2.111063, 42.726839 ], [ 2.100535, 42.731715 ], [ 2.096671, 42.73315 ], [ 2.0878, 42.73957 ], [ 2.08636, 42.752069 ], [ 2.084951, 42.751662 ], [ 2.080464, 42.752244 ], [ 2.058119, 42.755485 ], [ 2.043914, 42.74741 ], [ 2.034932, 42.746826 ], [ 2.030775, 42.741483 ], [ 2.019979, 42.740018 ], [ 2.01532, 42.739274 ], [ 2.00378, 42.733529 ], [ 2.001675, 42.73537 ], [ 1.998506, 42.735944 ], [ 1.994914, 42.73558 ], [ 1.991438, 42.7348 ], [ 1.986832, 42.735222 ], [ 1.950255, 42.73766 ], [ 1.943622, 42.746207 ], [ 1.931555, 42.750934 ], [ 1.929817, 42.75521 ], [ 1.92529, 42.755179 ], [ 1.912998, 42.759308 ], [ 1.908994, 42.765247 ], [ 1.909557, 42.768445 ], [ 1.926075, 42.77218 ], [ 1.928959, 42.774603 ], [ 1.924962, 42.776245 ], [ 1.901467, 42.800637 ], [ 1.898387, 42.802701 ], [ 1.897896, 42.806041 ], [ 1.859379, 42.82081 ], [ 1.859461, 42.82414 ], [ 1.875571, 42.839497 ], [ 1.875018, 42.845939 ], [ 1.875017, 42.849168 ], [ 1.880266, 42.85268 ], [ 1.889042, 42.852704 ], [ 1.89389, 42.852925 ], [ 1.947126, 42.856689 ], [ 1.960244, 42.861377 ], [ 1.964409, 42.86292 ], [ 1.985041, 42.870859 ], [ 1.981922, 42.877197 ], [ 1.981595, 42.880467 ], [ 1.986048, 42.902786 ], [ 1.991129, 42.90749 ], [ 1.989327, 42.910488 ], [ 1.98088, 42.926111 ], [ 1.980574, 42.92958 ], [ 1.938436, 42.938228 ], [ 1.933731, 42.939144 ], [ 1.936227, 42.95189 ], [ 1.951814, 42.95593 ], [ 1.951304, 42.95909 ], [ 1.96166, 42.96201 ], [ 1.979382, 42.960507 ], [ 1.988592, 42.953381 ], [ 1.992859, 42.95372 ], [ 2.004908, 42.96156 ], [ 1.991575, 42.963482 ], [ 1.985769, 42.96848 ], [ 1.983264, 42.988434 ], [ 1.987127, 42.994506 ], [ 1.987058, 43.000576 ], [ 1.977778, 43.00701 ], [ 1.969256, 43.007944 ], [ 1.971869, 43.010586 ], [ 1.985468, 43.023479 ], [ 1.985759, 43.029957 ], [ 1.984554, 43.032941 ], [ 1.979452, 43.0379 ], [ 1.975929, 43.042304 ], [ 1.961083, 43.049564 ], [ 1.954082, 43.04678 ], [ 1.945866, 43.0494 ], [ 1.940394, 43.061586 ], [ 1.944222, 43.06695 ], [ 1.961181, 43.0667 ], [ 1.96308, 43.069587 ], [ 1.953422, 43.07991 ], [ 1.949782, 43.08169 ], [ 1.952205, 43.084054 ], [ 1.955776, 43.085447 ], [ 1.955369, 43.088924 ], [ 1.950633, 43.102388 ], [ 1.951491, 43.111311 ], [ 1.948405, 43.1203 ], [ 1.932339, 43.12386 ], [ 1.927998, 43.124185 ], [ 1.927409, 43.129496 ], [ 1.916269, 43.13343 ], [ 1.904423, 43.131163 ], [ 1.892668, 43.11713 ], [ 1.890103, 43.12347 ], [ 1.880596, 43.130549 ], [ 1.880648, 43.14754 ], [ 1.877961, 43.144833 ], [ 1.856847, 43.144629 ], [ 1.85196, 43.160608 ], [ 1.850054, 43.1576 ], [ 1.846197, 43.15323 ], [ 1.848366, 43.147346 ], [ 1.826188, 43.14568 ], [ 1.821439, 43.148998 ], [ 1.817151, 43.150228 ], [ 1.801395, 43.157017 ], [ 1.783803, 43.154472 ], [ 1.779465, 43.16036 ], [ 1.774918, 43.16154 ], [ 1.747554, 43.175566 ], [ 1.739608, 43.184299 ], [ 1.725887, 43.187682 ], [ 1.71178, 43.18684 ], [ 1.709632, 43.19001 ], [ 1.709977, 43.19984 ], [ 1.724233, 43.212474 ], [ 1.720825, 43.221997 ], [ 1.723908, 43.224435 ], [ 1.716082, 43.228373 ], [ 1.700281, 43.24551 ], [ 1.701035, 43.259015 ], [ 1.691642, 43.270993 ], [ 1.68842, 43.273554 ], [ 1.698489, 43.27911 ], [ 1.701275, 43.281698 ], [ 1.706646, 43.286036 ], [ 1.714527, 43.2971 ], [ 1.707797, 43.301155 ], [ 1.704015, 43.30282 ], [ 1.707384, 43.305316 ], [ 1.727504, 43.31357 ], [ 1.735952, 43.316018 ], [ 1.724412, 43.329666 ], [ 1.726379, 43.33269 ], [ 1.722905, 43.341533 ], [ 1.735427, 43.3377 ], [ 1.746555, 43.34348 ], [ 1.749223, 43.349462 ], [ 1.768684, 43.33939 ], [ 1.772273, 43.336977 ], [ 1.77653, 43.34256 ], [ 1.784932, 43.34515 ], [ 1.793332, 43.342567 ], [ 1.796973, 43.34056 ], [ 1.813484, 43.3415 ], [ 1.815575, 43.34831 ], [ 1.804994, 43.359764 ], [ 1.804971, 43.390588 ], [ 1.812498, 43.394126 ], [ 1.826108, 43.394661 ], [ 1.821619, 43.39879 ], [ 1.817111, 43.407384 ], [ 1.817266, 43.41065 ], [ 1.826761, 43.417746 ], [ 1.840383, 43.416741 ], [ 1.844511, 43.42261 ], [ 1.84599, 43.430729 ], [ 1.842953, 43.43255 ], [ 1.855178, 43.440517 ], [ 1.856453, 43.44345 ], [ 1.872942, 43.43696 ], [ 1.873987, 43.430259 ], [ 1.897627, 43.414271 ], [ 1.899143, 43.41113 ], [ 1.902433, 43.408813 ], [ 1.895584, 43.39658 ], [ 1.903591, 43.39402 ], [ 1.910708, 43.3974 ], [ 1.91463, 43.400749 ], [ 1.911508, 43.403408 ], [ 1.923508, 43.421558 ], [ 1.932769, 43.423377 ], [ 1.946584, 43.420597 ], [ 1.95817, 43.42561 ], [ 1.960755, 43.42396 ], [ 1.963752, 43.42275 ], [ 1.963038, 43.41991 ], [ 1.965903, 43.414971 ], [ 1.972991, 43.418962 ], [ 1.991106, 43.409343 ], [ 2.012692, 43.415021 ], [ 2.020921, 43.423193 ], [ 2.028795, 43.41962 ], [ 2.038411, 43.425482 ], [ 2.030853, 43.433737 ], [ 2.029133, 43.436898 ], [ 2.033296, 43.43604 ], [ 2.053071, 43.43031 ], [ 2.068725, 43.408896 ], [ 2.072801, 43.395696 ], [ 2.077317, 43.39563 ], [ 2.085693, 43.398082 ], [ 2.091681, 43.39389 ], [ 2.095112, 43.3962 ], [ 2.104399, 43.395602 ], [ 2.108785, 43.39446 ], [ 2.111065, 43.39619 ], [ 2.130495, 43.40122 ], [ 2.133557, 43.40356 ], [ 2.138318, 43.403714 ], [ 2.156305, 43.414894 ], [ 2.170349, 43.415876 ], [ 2.184058, 43.397779 ], [ 2.211099, 43.384565 ], [ 2.215024, 43.382615 ], [ 2.229322, 43.408286 ], [ 2.223344, 43.417789 ], [ 2.222523, 43.42831 ], [ 2.235584, 43.43756 ], [ 2.239358, 43.439747 ], [ 2.241344, 43.44268 ], [ 2.243802, 43.44544 ], [ 2.256687, 43.45364 ], [ 2.258295, 43.460113 ], [ 2.263919, 43.455923 ], [ 2.265415, 43.452919 ], [ 2.268692, 43.450611 ], [ 2.281798, 43.441449 ], [ 2.284875, 43.4433 ], [ 2.299698, 43.446812 ], [ 2.304106, 43.447929 ], [ 2.313931, 43.441064 ], [ 2.348387, 43.432774 ], [ 2.363082, 43.42457 ], [ 2.367331, 43.42318 ], [ 2.371245, 43.423076 ], [ 2.375171, 43.423 ], [ 2.398735, 43.417051 ], [ 2.406846, 43.419255 ], [ 2.404826, 43.42244 ], [ 2.40776, 43.42522 ], [ 2.42759, 43.43449 ], [ 2.451105, 43.43223 ], [ 2.469545, 43.43535 ], [ 2.473695, 43.43651 ], [ 2.477992, 43.43643 ], [ 2.494383, 43.436937 ], [ 2.497332, 43.434287 ], [ 2.518988, 43.423716 ], [ 2.548049, 43.42465 ], [ 2.561483, 43.42096 ], [ 2.565541, 43.42291 ], [ 2.565787, 43.42296 ], [ 2.569787, 43.42123 ], [ 2.583821, 43.412666 ], [ 2.593046, 43.411712 ], [ 2.593749, 43.40835 ], [ 2.586889, 43.39965 ], [ 2.573478, 43.399491 ], [ 2.569031, 43.400247 ], [ 2.566312, 43.39757 ], [ 2.557057, 43.38978 ], [ 2.552399, 43.37642 ], [ 2.555239, 43.366365 ], [ 2.54298, 43.347989 ], [ 2.540081, 43.34523 ], [ 2.551506, 43.33584 ], [ 2.555536, 43.337471 ], [ 2.583539, 43.333912 ], [ 2.590985, 43.3214 ], [ 2.592008, 43.31798 ], [ 2.596442, 43.31456 ], [ 2.599712, 43.31384 ], [ 2.600932, 43.301421 ], [ 2.601175, 43.298256 ], [ 2.617835, 43.287683 ], [ 2.616958, 43.284441 ], [ 2.624621, 43.28762 ], [ 2.631193, 43.29593 ], [ 2.639754, 43.295557 ], [ 2.643911, 43.29451 ], [ 2.659253, 43.292967 ], [ 2.659751, 43.29633 ], [ 2.674858, 43.303711 ], [ 2.677216, 43.31361 ], [ 2.685553, 43.31658 ], [ 2.687773, 43.323 ], [ 2.700735, 43.311207 ], [ 2.699148, 43.30833 ], [ 2.705513, 43.292266 ], [ 2.700303, 43.28281 ], [ 2.702969, 43.27682 ], [ 2.705185, 43.274472 ], [ 2.708919, 43.273655 ], [ 2.717737, 43.275558 ], [ 2.737904, 43.26725 ], [ 2.740772, 43.264578 ], [ 2.750072, 43.25739 ], [ 2.75252, 43.254594 ], [ 2.768509, 43.25726 ], [ 2.772493, 43.25803 ], [ 2.773293, 43.261242 ], [ 2.779998, 43.265241 ], [ 2.783181, 43.266633 ], [ 2.78708, 43.274035 ], [ 2.786968, 43.27444 ], [ 2.786537, 43.2844 ], [ 2.801825, 43.30031 ], [ 2.805735, 43.302361 ], [ 2.809682, 43.30437 ], [ 2.816603, 43.30865 ], [ 2.806109, 43.319211 ], [ 2.818156, 43.32396 ], [ 2.841926, 43.323686 ], [ 2.845974, 43.32562 ], [ 2.868538, 43.330064 ], [ 2.873742, 43.339633 ], [ 2.869575, 43.35645 ], [ 2.855626, 43.37348 ], [ 2.856778, 43.376288 ], [ 2.869181, 43.383636 ], [ 2.870568, 43.381011 ], [ 2.872288, 43.372934 ], [ 2.889793, 43.363723 ], [ 2.889904, 43.357345 ], [ 2.889495, 43.351767 ], [ 2.891178, 43.341802 ], [ 2.885119, 43.333249 ], [ 2.890884, 43.32793 ], [ 2.894929, 43.32626 ], [ 2.910982, 43.32005 ], [ 2.918369, 43.32351 ], [ 2.921249, 43.32608 ], [ 2.942061, 43.313666 ], [ 2.946079, 43.31196 ], [ 2.957536, 43.312476 ], [ 2.961798, 43.31304 ], [ 2.990723, 43.319222 ], [ 2.995281, 43.319555 ], [ 3.004423, 43.319708 ], [ 3.006281, 43.30013 ], [ 3.004816, 43.296769 ], [ 3.005738, 43.286244 ], [ 3.012103, 43.280936 ], [ 3.011118, 43.27762 ], [ 3.036064, 43.281912 ], [ 3.054347, 43.28004 ], [ 3.076978, 43.26293 ], [ 3.086199, 43.26382 ], [ 3.093639, 43.259874 ], [ 3.097452, 43.257928 ], [ 3.101424, 43.25616 ], [ 3.114664, 43.254745 ], [ 3.118897, 43.260731 ], [ 3.141627, 43.25951 ], [ 3.147017, 43.254157 ], [ 3.146508, 43.247384 ], [ 3.159183, 43.243228 ], [ 3.173126, 43.243836 ], [ 3.184023, 43.250124 ], [ 3.193229, 43.2504 ], [ 3.201526, 43.24776 ], [ 3.228989, 43.21916 ], [ 3.240561, 43.212809 ], [ 3.236801, 43.21059 ], [ 3.183535, 43.170042 ], [ 3.152601, 43.141127 ], [ 3.148739, 43.139334 ], [ 3.131174, 43.111474 ], [ 3.117663, 43.102198 ], [ 3.084479, 43.056162 ], [ 3.06484, 43.019814 ], [ 3.067308, 43.013229 ], [ 3.05581, 42.998073 ], [ 3.043813, 42.96364 ], [ 3.042843, 42.960163 ], [ 3.039848, 42.932025 ], [ 3.055225, 42.92409 ], [ 3.059819, 42.917906 ], [ 3.043511, 42.83815 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "12", "CODE_DEPT": "12", "NOM_DEPT": "AVEYRON", "CODE_CHF": "202", "NOM_CHF": "RODEZ", "X_CHF_LIEU": "6660", "Y_CHF_LIEU": "63613", "X_CENTROID": "6744", "Y_CENTROID": "63535", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.358663, 43.91452 ], [ 3.35509, 43.912512 ], [ 3.341916, 43.903707 ], [ 3.342568, 43.89419 ], [ 3.318657, 43.891142 ], [ 3.295145, 43.89498 ], [ 3.285828, 43.893312 ], [ 3.277444, 43.896771 ], [ 3.274142, 43.89853 ], [ 3.262608, 43.891 ], [ 3.261857, 43.88748 ], [ 3.255494, 43.87803 ], [ 3.242077, 43.873934 ], [ 3.235019, 43.86087 ], [ 3.236408, 43.853896 ], [ 3.251333, 43.840067 ], [ 3.249037, 43.82958 ], [ 3.24472, 43.828807 ], [ 3.236311, 43.82744 ], [ 3.231794, 43.826063 ], [ 3.222688, 43.81778 ], [ 3.205308, 43.81296 ], [ 3.18238, 43.81283 ], [ 3.155002, 43.817065 ], [ 3.151466, 43.81479 ], [ 3.150705, 43.813769 ], [ 3.126978, 43.817668 ], [ 3.112567, 43.82707 ], [ 3.085706, 43.835554 ], [ 3.071172, 43.834826 ], [ 3.066312, 43.83527 ], [ 3.058733, 43.827967 ], [ 3.058661, 43.818006 ], [ 3.063813, 43.81263 ], [ 3.050173, 43.804619 ], [ 3.048568, 43.801498 ], [ 3.05838, 43.7861 ], [ 3.057048, 43.7828 ], [ 3.058796, 43.77968 ], [ 3.07351, 43.767594 ], [ 3.065413, 43.755703 ], [ 3.056275, 43.75495 ], [ 3.053162, 43.74478 ], [ 3.057115, 43.73844 ], [ 3.053522, 43.732 ], [ 3.057648, 43.725743 ], [ 3.054971, 43.715972 ], [ 3.069165, 43.706849 ], [ 3.062363, 43.7024 ], [ 3.061872, 43.69601 ], [ 3.060678, 43.692807 ], [ 3.048231, 43.696953 ], [ 3.031387, 43.69243 ], [ 3.022657, 43.69437 ], [ 3.018665, 43.696 ], [ 3.013333, 43.70144 ], [ 2.996006, 43.706493 ], [ 2.982088, 43.70803 ], [ 2.973965, 43.704627 ], [ 2.969351, 43.704023 ], [ 2.957596, 43.699448 ], [ 2.954969, 43.69654 ], [ 2.942225, 43.691774 ], [ 2.934967, 43.694712 ], [ 2.925714, 43.705711 ], [ 2.919189, 43.732351 ], [ 2.921903, 43.73515 ], [ 2.906604, 43.740943 ], [ 2.902605, 43.742272 ], [ 2.870453, 43.739161 ], [ 2.862726, 43.747556 ], [ 2.858564, 43.74914 ], [ 2.858278, 43.74923 ], [ 2.853612, 43.74858 ], [ 2.835755, 43.751109 ], [ 2.823856, 43.761205 ], [ 2.814518, 43.76158 ], [ 2.789149, 43.752549 ], [ 2.781499, 43.736958 ], [ 2.77671, 43.73662 ], [ 2.740543, 43.72896 ], [ 2.713823, 43.74197 ], [ 2.700006, 43.74256 ], [ 2.695398, 43.743158 ], [ 2.68173, 43.74351 ], [ 2.659933, 43.756371 ], [ 2.656754, 43.76271 ], [ 2.632803, 43.778159 ], [ 2.629213, 43.78025 ], [ 2.624269, 43.789819 ], [ 2.613699, 43.796972 ], [ 2.609147, 43.80681 ], [ 2.598972, 43.813639 ], [ 2.599743, 43.817089 ], [ 2.596139, 43.81881 ], [ 2.593359, 43.818271 ], [ 2.590488, 43.818278 ], [ 2.561802, 43.84597 ], [ 2.564387, 43.85097 ], [ 2.56361, 43.863215 ], [ 2.567351, 43.86851 ], [ 2.578587, 43.87319 ], [ 2.57997, 43.876184 ], [ 2.576271, 43.88176 ], [ 2.552007, 43.89157 ], [ 2.550498, 43.89822 ], [ 2.551007, 43.901583 ], [ 2.552838, 43.907791 ], [ 2.553842, 43.921087 ], [ 2.536983, 43.930395 ], [ 2.537229, 43.933825 ], [ 2.508499, 43.94527 ], [ 2.499084, 43.94509 ], [ 2.499348, 43.95052 ], [ 2.503845, 43.95485 ], [ 2.51981, 43.96002 ], [ 2.52088, 43.963112 ], [ 2.523088, 43.97323 ], [ 2.523255, 43.98015 ], [ 2.501798, 43.986633 ], [ 2.498413, 43.99306 ], [ 2.494988, 43.995512 ], [ 2.494652, 43.99831 ], [ 2.491762, 44.003525 ], [ 2.495189, 44.00523 ], [ 2.495398, 44.01121 ], [ 2.491987, 44.01325 ], [ 2.484888, 44.02469 ], [ 2.46993, 44.03032 ], [ 2.46679, 44.03254 ], [ 2.460871, 44.050323 ], [ 2.456246, 44.05107 ], [ 2.41021, 44.055858 ], [ 2.410932, 44.069299 ], [ 2.399704, 44.084026 ], [ 2.389214, 44.09111 ], [ 2.389215, 44.09457 ], [ 2.384438, 44.09396 ], [ 2.357739, 44.10155 ], [ 2.355459, 44.104332 ], [ 2.351988, 44.106373 ], [ 2.348244, 44.108232 ], [ 2.340338, 44.11139 ], [ 2.332443, 44.123024 ], [ 2.32333, 44.124453 ], [ 2.307295, 44.11854 ], [ 2.290639, 44.123572 ], [ 2.297572, 44.135894 ], [ 2.288372, 44.14301 ], [ 2.28488, 44.145335 ], [ 2.261838, 44.144678 ], [ 2.23754, 44.134313 ], [ 2.224895, 44.138644 ], [ 2.191958, 44.139739 ], [ 2.188454, 44.13738 ], [ 2.182698, 44.14133 ], [ 2.193505, 44.14781 ], [ 2.201984, 44.14492 ], [ 2.211048, 44.146619 ], [ 2.216793, 44.151557 ], [ 2.237614, 44.158626 ], [ 2.223858, 44.167026 ], [ 2.205638, 44.1706 ], [ 2.199835, 44.16527 ], [ 2.191033, 44.16346 ], [ 2.182014, 44.17151 ], [ 2.18079, 44.17828 ], [ 2.17194, 44.18054 ], [ 2.15815, 44.17923 ], [ 2.15473, 44.181296 ], [ 2.158773, 44.186971 ], [ 2.152652, 44.19145 ], [ 2.149213, 44.20054 ], [ 2.144534, 44.20048 ], [ 2.135213, 44.20041 ], [ 2.128047, 44.19611 ], [ 2.114064, 44.1958 ], [ 2.109785, 44.19499 ], [ 2.103134, 44.19149 ], [ 2.107798, 44.18287 ], [ 2.104725, 44.180242 ], [ 2.096551, 44.179068 ], [ 2.093014, 44.185178 ], [ 2.075514, 44.18204 ], [ 2.067551, 44.190122 ], [ 2.063174, 44.18924 ], [ 2.051179, 44.18686 ], [ 2.058502, 44.17228 ], [ 2.03111, 44.16875 ], [ 2.027089, 44.16693 ], [ 2.03025, 44.15757 ], [ 2.008016, 44.15273 ], [ 2.003793, 44.15116 ], [ 1.999161, 44.15079 ], [ 1.990171, 44.149453 ], [ 1.997054, 44.15822 ], [ 1.975743, 44.16476 ], [ 1.973623, 44.171353 ], [ 1.980073, 44.176427 ], [ 1.977979, 44.179513 ], [ 1.96062, 44.184138 ], [ 1.946484, 44.18282 ], [ 1.94071, 44.16977 ], [ 1.934353, 44.17464 ], [ 1.931422, 44.187513 ], [ 1.922996, 44.18919 ], [ 1.915747, 44.18554 ], [ 1.911095, 44.185458 ], [ 1.91299, 44.18841 ], [ 1.905812, 44.19214 ], [ 1.902943, 44.204 ], [ 1.890347, 44.20757 ], [ 1.894638, 44.21281 ], [ 1.90835, 44.21245 ], [ 1.932163, 44.242647 ], [ 1.940187, 44.24479 ], [ 1.943065, 44.247586 ], [ 1.957699, 44.241767 ], [ 1.962021, 44.242339 ], [ 1.960638, 44.24882 ], [ 1.970633, 44.276348 ], [ 1.966238, 44.277594 ], [ 1.943413, 44.280015 ], [ 1.940271, 44.28255 ], [ 1.93638, 44.280883 ], [ 1.909854, 44.281415 ], [ 1.901391, 44.279116 ], [ 1.87319, 44.290822 ], [ 1.868779, 44.29204 ], [ 1.880166, 44.303109 ], [ 1.860483, 44.32194 ], [ 1.872421, 44.33263 ], [ 1.880816, 44.334993 ], [ 1.885627, 44.335267 ], [ 1.882083, 44.340074 ], [ 1.884697, 44.343009 ], [ 1.891626, 44.351766 ], [ 1.905909, 44.350856 ], [ 1.910827, 44.356738 ], [ 1.910045, 44.36019 ], [ 1.908239, 44.363419 ], [ 1.896363, 44.36943 ], [ 1.891429, 44.37913 ], [ 1.874402, 44.39144 ], [ 1.868875, 44.397213 ], [ 1.874271, 44.406866 ], [ 1.870881, 44.42065 ], [ 1.87332, 44.423691 ], [ 1.873186, 44.42414 ], [ 1.85067, 44.43731 ], [ 1.848247, 44.447676 ], [ 1.851868, 44.461246 ], [ 1.847655, 44.46751 ], [ 1.845965, 44.470817 ], [ 1.839533, 44.476098 ], [ 1.839964, 44.479604 ], [ 1.861576, 44.48732 ], [ 1.873307, 44.48432 ], [ 1.877448, 44.4841 ], [ 1.881928, 44.483945 ], [ 1.887907, 44.5048 ], [ 1.892546, 44.505578 ], [ 1.905072, 44.501274 ], [ 1.908117, 44.488196 ], [ 1.916454, 44.486324 ], [ 1.919767, 44.48867 ], [ 1.911268, 44.50287 ], [ 1.918913, 44.50437 ], [ 1.928272, 44.50508 ], [ 1.943408, 44.51711 ], [ 1.948186, 44.517304 ], [ 1.957918, 44.519044 ], [ 1.97072, 44.529176 ], [ 1.971753, 44.532553 ], [ 1.973838, 44.53561 ], [ 1.979555, 44.54102 ], [ 1.984239, 44.54726 ], [ 2.004211, 44.55696 ], [ 2.023677, 44.556333 ], [ 2.02803, 44.558001 ], [ 2.028857, 44.55823 ], [ 2.032878, 44.560204 ], [ 2.035452, 44.570211 ], [ 2.055083, 44.58027 ], [ 2.06364, 44.579268 ], [ 2.061247, 44.569389 ], [ 2.064612, 44.56775 ], [ 2.079834, 44.585022 ], [ 2.095353, 44.57801 ], [ 2.098323, 44.57582 ], [ 2.104023, 44.571473 ], [ 2.11629, 44.573102 ], [ 2.126954, 44.578256 ], [ 2.13433, 44.57037 ], [ 2.14808, 44.570651 ], [ 2.152562, 44.571586 ], [ 2.166655, 44.5887 ], [ 2.169552, 44.59132 ], [ 2.169815, 44.59141 ], [ 2.185813, 44.59071 ], [ 2.193314, 44.587763 ], [ 2.198334, 44.593561 ], [ 2.197709, 44.600318 ], [ 2.209251, 44.605731 ], [ 2.207475, 44.615532 ], [ 2.216622, 44.621251 ], [ 2.22057, 44.622035 ], [ 2.21762, 44.624796 ], [ 2.208414, 44.64384 ], [ 2.227115, 44.654033 ], [ 2.250539, 44.652042 ], [ 2.265206, 44.660847 ], [ 2.270054, 44.660582 ], [ 2.274461, 44.66121 ], [ 2.286189, 44.66646 ], [ 2.303361, 44.6632 ], [ 2.320317, 44.66728 ], [ 2.32413, 44.669154 ], [ 2.329813, 44.66653 ], [ 2.332221, 44.66459 ], [ 2.336617, 44.658768 ], [ 2.335043, 44.648837 ], [ 2.350984, 44.64123 ], [ 2.36529, 44.64185 ], [ 2.380878, 44.649671 ], [ 2.392671, 44.644937 ], [ 2.397134, 44.646186 ], [ 2.401279, 44.645416 ], [ 2.404766, 44.647182 ], [ 2.43565, 44.639745 ], [ 2.450108, 44.64808 ], [ 2.46804, 44.642895 ], [ 2.469, 44.649453 ], [ 2.471965, 44.65202 ], [ 2.476306, 44.65033 ], [ 2.484685, 44.65259 ], [ 2.489524, 44.658715 ], [ 2.489176, 44.669256 ], [ 2.500496, 44.68881 ], [ 2.516627, 44.695884 ], [ 2.518885, 44.69903 ], [ 2.520134, 44.702048 ], [ 2.5364, 44.711958 ], [ 2.55623, 44.722231 ], [ 2.549397, 44.728649 ], [ 2.552128, 44.73146 ], [ 2.554142, 44.734 ], [ 2.55424, 44.73915 ], [ 2.553678, 44.75742 ], [ 2.560675, 44.761043 ], [ 2.563364, 44.77124 ], [ 2.564486, 44.77809 ], [ 2.578243, 44.78595 ], [ 2.586564, 44.78399 ], [ 2.590137, 44.78628 ], [ 2.600123, 44.793667 ], [ 2.598425, 44.82077 ], [ 2.609777, 44.827284 ], [ 2.610224, 44.83402 ], [ 2.604162, 44.84309 ], [ 2.618041, 44.852972 ], [ 2.626616, 44.869226 ], [ 2.629077, 44.872259 ], [ 2.653049, 44.86977 ], [ 2.656223, 44.87242 ], [ 2.658611, 44.8858 ], [ 2.679376, 44.90442 ], [ 2.681868, 44.907348 ], [ 2.689464, 44.903768 ], [ 2.702556, 44.90531 ], [ 2.706372, 44.907091 ], [ 2.714067, 44.926073 ], [ 2.716766, 44.928835 ], [ 2.724568, 44.92734 ], [ 2.733919, 44.9384 ], [ 2.737688, 44.940366 ], [ 2.738254, 44.941222 ], [ 2.742087, 44.931975 ], [ 2.755915, 44.932151 ], [ 2.776095, 44.90964 ], [ 2.772244, 44.900025 ], [ 2.775894, 44.89026 ], [ 2.77859, 44.8875 ], [ 2.775611, 44.884879 ], [ 2.767711, 44.86593 ], [ 2.772282, 44.856403 ], [ 2.781647, 44.856971 ], [ 2.784749, 44.863216 ], [ 2.80279, 44.873829 ], [ 2.807588, 44.8741 ], [ 2.814631, 44.869447 ], [ 2.851531, 44.87189 ], [ 2.854931, 44.87431 ], [ 2.859679, 44.874465 ], [ 2.860544, 44.86764 ], [ 2.855424, 44.85473 ], [ 2.863543, 44.84742 ], [ 2.861554, 44.837958 ], [ 2.869874, 44.82958 ], [ 2.879446, 44.8031 ], [ 2.889642, 44.78833 ], [ 2.897866, 44.78511 ], [ 2.906917, 44.78545 ], [ 2.91673, 44.79205 ], [ 2.920191, 44.794314 ], [ 2.931811, 44.78372 ], [ 2.933774, 44.78065 ], [ 2.936373, 44.774086 ], [ 2.931708, 44.764522 ], [ 2.917767, 44.76596 ], [ 2.914118, 44.76372 ], [ 2.914287, 44.760278 ], [ 2.917021, 44.75743 ], [ 2.930116, 44.75357 ], [ 2.93351, 44.747201 ], [ 2.931312, 44.73721 ], [ 2.923264, 44.728648 ], [ 2.929367, 44.716201 ], [ 2.930886, 44.71303 ], [ 2.934201, 44.696226 ], [ 2.941418, 44.687228 ], [ 2.939346, 44.67758 ], [ 2.9475, 44.67433 ], [ 2.955269, 44.662188 ], [ 2.962677, 44.65787 ], [ 2.961872, 44.654466 ], [ 2.967626, 44.650498 ], [ 2.97025, 44.64826 ], [ 2.977213, 44.64471 ], [ 2.981677, 44.644686 ], [ 2.985448, 44.64421 ], [ 2.987819, 44.64119 ], [ 3.013273, 44.620847 ], [ 3.018388, 44.61126 ], [ 3.030708, 44.600741 ], [ 3.031891, 44.598463 ], [ 3.037131, 44.59554 ], [ 3.041086, 44.594202 ], [ 3.055354, 44.58707 ], [ 3.059631, 44.58163 ], [ 3.061845, 44.579 ], [ 3.076196, 44.57255 ], [ 3.076607, 44.5695 ], [ 3.079021, 44.566472 ], [ 3.08347, 44.56032 ], [ 3.07491, 44.533292 ], [ 3.076238, 44.519464 ], [ 3.075465, 44.51598 ], [ 3.068932, 44.502706 ], [ 3.09956, 44.48043 ], [ 3.103506, 44.479535 ], [ 3.117325, 44.47379 ], [ 3.124866, 44.4613 ], [ 3.135486, 44.455519 ], [ 3.136186, 44.44879 ], [ 3.136367, 44.44539 ], [ 3.135077, 44.442016 ], [ 3.142256, 44.433734 ], [ 3.141045, 44.426796 ], [ 3.129938, 44.420337 ], [ 3.126721, 44.41396 ], [ 3.130371, 44.412037 ], [ 3.137244, 44.408266 ], [ 3.137053, 44.391621 ], [ 3.119743, 44.386331 ], [ 3.123395, 44.38021 ], [ 3.122494, 44.370017 ], [ 3.120492, 44.366814 ], [ 3.123591, 44.360771 ], [ 3.131976, 44.357178 ], [ 3.128198, 44.3509 ], [ 3.134194, 44.334528 ], [ 3.150937, 44.329933 ], [ 3.146076, 44.31713 ], [ 3.154266, 44.309225 ], [ 3.125306, 44.28542 ], [ 3.124527, 44.26147 ], [ 3.133898, 44.262382 ], [ 3.138298, 44.26397 ], [ 3.14016, 44.26704 ], [ 3.14617, 44.276031 ], [ 3.154268, 44.27304 ], [ 3.160532, 44.24628 ], [ 3.174415, 44.24526 ], [ 3.187826, 44.24891 ], [ 3.195687, 44.24066 ], [ 3.23054, 44.23034 ], [ 3.221213, 44.207713 ], [ 3.219211, 44.204503 ], [ 3.215799, 44.2021 ], [ 3.212071, 44.19578 ], [ 3.203593, 44.193462 ], [ 3.226313, 44.190592 ], [ 3.230589, 44.189863 ], [ 3.239261, 44.19066 ], [ 3.243235, 44.19257 ], [ 3.264363, 44.200308 ], [ 3.287881, 44.19952 ], [ 3.291616, 44.205676 ], [ 3.301043, 44.206461 ], [ 3.318327, 44.20039 ], [ 3.332084, 44.203509 ], [ 3.355603, 44.20084 ], [ 3.360423, 44.201169 ], [ 3.358391, 44.19447 ], [ 3.372075, 44.180725 ], [ 3.373648, 44.170765 ], [ 3.336682, 44.15813 ], [ 3.332488, 44.14864 ], [ 3.330226, 44.142165 ], [ 3.320354, 44.13595 ], [ 3.32359, 44.127009 ], [ 3.323929, 44.11194 ], [ 3.323849, 44.10892 ], [ 3.319087, 44.108373 ], [ 3.310698, 44.104941 ], [ 3.291562, 44.10483 ], [ 3.263376, 44.092726 ], [ 3.27474, 44.087541 ], [ 3.295925, 44.06954 ], [ 3.305423, 44.06919 ], [ 3.318423, 44.07902 ], [ 3.323059, 44.07985 ], [ 3.325456, 44.077483 ], [ 3.32891, 44.07903 ], [ 3.332517, 44.074501 ], [ 3.337492, 44.05874 ], [ 3.344557, 44.054636 ], [ 3.347875, 44.052402 ], [ 3.351731, 44.05026 ], [ 3.367643, 44.058215 ], [ 3.372685, 44.05247 ], [ 3.386492, 44.055081 ], [ 3.399699, 44.044845 ], [ 3.417944, 44.040016 ], [ 3.440799, 44.02678 ], [ 3.444774, 44.024718 ], [ 3.449727, 44.023276 ], [ 3.450981, 44.022541 ], [ 3.443552, 44.00234 ], [ 3.418529, 43.992295 ], [ 3.406388, 43.97317 ], [ 3.405615, 43.969682 ], [ 3.377571, 43.96695 ], [ 3.375884, 43.956729 ], [ 3.359211, 43.95027 ], [ 3.353982, 43.940756 ], [ 3.351722, 43.937721 ], [ 3.352274, 43.93431 ], [ 3.358663, 43.91452 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "13", "CODE_DEPT": "13", "NOM_DEPT": "BOUCHES-DU-RHONE", "CODE_CHF": "055", "NOM_CHF": "MARSEILLE", "X_CHF_LIEU": "8929", "Y_CHF_LIEU": "62470", "X_CENTROID": "8686", "Y_CENTROID": "62740", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.671875, 43.17927 ], [ 5.646046, 43.18805 ], [ 5.622601, 43.185563 ], [ 5.612854, 43.178078 ], [ 5.610538, 43.167937 ], [ 5.604779, 43.16237 ], [ 5.574389, 43.172577 ], [ 5.558413, 43.185557 ], [ 5.555549, 43.188378 ], [ 5.548151, 43.196869 ], [ 5.548442, 43.206807 ], [ 5.540941, 43.210529 ], [ 5.532034, 43.211684 ], [ 5.513058, 43.20425 ], [ 5.510209, 43.198136 ], [ 5.50472, 43.200343 ], [ 5.458471, 43.210271 ], [ 5.445482, 43.20426 ], [ 5.426896, 43.20842 ], [ 5.419124, 43.20643 ], [ 5.396697, 43.21236 ], [ 5.391961, 43.2121 ], [ 5.364386, 43.20782 ], [ 5.34196, 43.21331 ], [ 5.349102, 43.229787 ], [ 5.359573, 43.236641 ], [ 5.362532, 43.24307 ], [ 5.37073, 43.246359 ], [ 5.372868, 43.259748 ], [ 5.365954, 43.2692 ], [ 5.349456, 43.28172 ], [ 5.354913, 43.291072 ], [ 5.365526, 43.2957 ], [ 5.357338, 43.32206 ], [ 5.337261, 43.341584 ], [ 5.335269, 43.34781 ], [ 5.318518, 43.35446 ], [ 5.317781, 43.357915 ], [ 5.304191, 43.360428 ], [ 5.2826, 43.353749 ], [ 5.279491, 43.351232 ], [ 5.258061, 43.33843 ], [ 5.23728, 43.33164 ], [ 5.224243, 43.328281 ], [ 5.184996, 43.33229 ], [ 5.180496, 43.33163 ], [ 5.172103, 43.332338 ], [ 5.165452, 43.327927 ], [ 5.1474, 43.32644 ], [ 5.134583, 43.329197 ], [ 5.096744, 43.32933 ], [ 5.088465, 43.332536 ], [ 5.081484, 43.32766 ], [ 5.067585, 43.33058 ], [ 5.054341, 43.32665 ], [ 5.036386, 43.330956 ], [ 5.022317, 43.34069 ], [ 5.022418, 43.35412 ], [ 5.002422, 43.37735 ], [ 4.999269, 43.380018 ], [ 4.991497, 43.388224 ], [ 4.990482, 43.394569 ], [ 4.998715, 43.39744 ], [ 4.998102, 43.40077 ], [ 4.995505, 43.403485 ], [ 4.986308, 43.404131 ], [ 4.978808, 43.39923 ], [ 4.972761, 43.42158 ], [ 4.970185, 43.4246 ], [ 4.9252, 43.4322 ], [ 4.912417, 43.42729 ], [ 4.890158, 43.409722 ], [ 4.888997, 43.416482 ], [ 4.896276, 43.42759 ], [ 4.879085, 43.424079 ], [ 4.863772, 43.43769 ], [ 4.861022, 43.448121 ], [ 4.858338, 43.45069 ], [ 4.854889, 43.44908 ], [ 4.855162, 43.44567 ], [ 4.873421, 43.41659 ], [ 4.873714, 43.413058 ], [ 4.871733, 43.409844 ], [ 4.867696, 43.407916 ], [ 4.862877, 43.40815 ], [ 4.858676, 43.409943 ], [ 4.831947, 43.425273 ], [ 4.831433, 43.419991 ], [ 4.85672, 43.40325 ], [ 4.853031, 43.398296 ], [ 4.836466, 43.40554 ], [ 4.838655, 43.402582 ], [ 4.834886, 43.39701 ], [ 4.838453, 43.39472 ], [ 4.860808, 43.38884 ], [ 4.83966, 43.375721 ], [ 4.867902, 43.36599 ], [ 4.880551, 43.358254 ], [ 4.903338, 43.37044 ], [ 4.914874, 43.381661 ], [ 4.914735, 43.37526 ], [ 4.862444, 43.338321 ], [ 4.857128, 43.32868 ], [ 4.847295, 43.326855 ], [ 4.837984, 43.327851 ], [ 4.813158, 43.33914 ], [ 4.771267, 43.34917 ], [ 4.727118, 43.350167 ], [ 4.663632, 43.3464 ], [ 4.605821, 43.353502 ], [ 4.57897, 43.362202 ], [ 4.567104, 43.36893 ], [ 4.558763, 43.37747 ], [ 4.558901, 43.384385 ], [ 4.594584, 43.402797 ], [ 4.595988, 43.40624 ], [ 4.586959, 43.426575 ], [ 4.574367, 43.437458 ], [ 4.553438, 43.446677 ], [ 4.525505, 43.45329 ], [ 4.457127, 43.455781 ], [ 4.424678, 43.448752 ], [ 4.400303, 43.447433 ], [ 4.377024, 43.45262 ], [ 4.235183, 43.46 ], [ 4.230283, 43.460185 ], [ 4.231161, 43.47754 ], [ 4.239777, 43.49373 ], [ 4.237743, 43.496884 ], [ 4.240814, 43.499405 ], [ 4.244686, 43.501268 ], [ 4.293603, 43.51404 ], [ 4.320651, 43.527823 ], [ 4.309193, 43.54657 ], [ 4.315141, 43.551871 ], [ 4.318393, 43.557168 ], [ 4.322314, 43.55171 ], [ 4.3161, 43.546749 ], [ 4.332823, 43.535935 ], [ 4.35391, 43.547408 ], [ 4.37246, 43.54968 ], [ 4.390361, 43.56087 ], [ 4.404608, 43.560523 ], [ 4.408973, 43.561934 ], [ 4.41426, 43.567552 ], [ 4.4094, 43.57628 ], [ 4.424853, 43.58448 ], [ 4.443527, 43.58321 ], [ 4.448317, 43.583184 ], [ 4.452809, 43.584573 ], [ 4.473576, 43.603651 ], [ 4.473776, 43.610442 ], [ 4.466497, 43.61496 ], [ 4.448272, 43.61034 ], [ 4.438799, 43.611406 ], [ 4.428685, 43.619063 ], [ 4.42723, 43.625822 ], [ 4.451605, 43.66423 ], [ 4.477416, 43.672921 ], [ 4.476546, 43.6868 ], [ 4.486421, 43.69885 ], [ 4.49079, 43.7004 ], [ 4.524575, 43.702501 ], [ 4.537599, 43.707052 ], [ 4.559326, 43.699444 ], [ 4.578489, 43.69707 ], [ 4.597812, 43.68675 ], [ 4.626473, 43.68803 ], [ 4.613145, 43.71419 ], [ 4.61194, 43.724724 ], [ 4.627175, 43.754252 ], [ 4.628118, 43.757712 ], [ 4.629507, 43.761121 ], [ 4.650196, 43.780935 ], [ 4.652914, 43.787725 ], [ 4.654449, 43.809007 ], [ 4.64297, 43.83211 ], [ 4.652168, 43.839752 ], [ 4.664997, 43.843842 ], [ 4.666767, 43.84698 ], [ 4.661874, 43.85234 ], [ 4.643675, 43.851852 ], [ 4.646975, 43.85803 ], [ 4.64173, 43.8673 ], [ 4.661583, 43.873589 ], [ 4.662511, 43.870388 ], [ 4.66694, 43.87636 ], [ 4.692706, 43.88459 ], [ 4.705497, 43.894488 ], [ 4.7079, 43.89741 ], [ 4.703196, 43.897035 ], [ 4.698503, 43.89664 ], [ 4.723398, 43.906052 ], [ 4.735506, 43.91651 ], [ 4.739556, 43.92111 ], [ 4.738793, 43.923866 ], [ 4.769047, 43.919914 ], [ 4.773363, 43.919349 ], [ 4.805819, 43.91469 ], [ 4.810454, 43.91401 ], [ 4.854593, 43.910762 ], [ 4.876904, 43.903135 ], [ 4.881295, 43.901502 ], [ 4.907485, 43.88644 ], [ 4.922008, 43.886759 ], [ 4.926581, 43.886165 ], [ 4.930503, 43.88437 ], [ 4.969577, 43.869707 ], [ 4.988513, 43.853538 ], [ 4.9915, 43.85072 ], [ 4.995428, 43.84671 ], [ 4.997651, 43.84485 ], [ 5.033312, 43.823213 ], [ 5.035354, 43.820141 ], [ 5.04187, 43.809388 ], [ 5.042624, 43.8065 ], [ 5.048139, 43.789727 ], [ 5.086392, 43.77385 ], [ 5.090664, 43.77211 ], [ 5.119674, 43.76046 ], [ 5.123784, 43.758753 ], [ 5.135018, 43.75427 ], [ 5.138788, 43.752797 ], [ 5.18623, 43.735651 ], [ 5.231553, 43.747623 ], [ 5.236378, 43.74747 ], [ 5.240966, 43.747322 ], [ 5.245554, 43.747137 ], [ 5.264103, 43.744232 ], [ 5.281813, 43.74057 ], [ 5.28639, 43.74014 ], [ 5.3153, 43.736566 ], [ 5.322493, 43.731786 ], [ 5.325916, 43.729237 ], [ 5.33963, 43.72034 ], [ 5.343699, 43.71877 ], [ 5.366694, 43.71054 ], [ 5.370535, 43.709189 ], [ 5.384307, 43.70314 ], [ 5.388126, 43.70219 ], [ 5.408725, 43.69483 ], [ 5.412543, 43.692971 ], [ 5.440745, 43.68049 ], [ 5.445436, 43.67997 ], [ 5.483312, 43.669205 ], [ 5.487564, 43.668037 ], [ 5.530189, 43.6593 ], [ 5.549617, 43.659802 ], [ 5.57325, 43.661955 ], [ 5.601712, 43.65927 ], [ 5.606437, 43.658725 ], [ 5.61987, 43.66532 ], [ 5.623852, 43.66615 ], [ 5.641181, 43.672138 ], [ 5.65704, 43.685392 ], [ 5.67803, 43.69278 ], [ 5.68289, 43.69271 ], [ 5.712048, 43.69057 ], [ 5.737583, 43.71653 ], [ 5.750437, 43.721561 ], [ 5.753393, 43.724431 ], [ 5.776958, 43.721365 ], [ 5.78368, 43.716628 ], [ 5.784025, 43.703032 ], [ 5.78849, 43.69687 ], [ 5.808917, 43.690561 ], [ 5.813248, 43.68905 ], [ 5.810585, 43.68611 ], [ 5.801513, 43.673879 ], [ 5.799206, 43.659929 ], [ 5.794457, 43.660708 ], [ 5.770163, 43.66047 ], [ 5.718973, 43.649838 ], [ 5.716038, 43.647021 ], [ 5.703071, 43.64365 ], [ 5.681586, 43.61212 ], [ 5.688412, 43.58486 ], [ 5.657371, 43.575665 ], [ 5.669315, 43.564641 ], [ 5.673857, 43.56434 ], [ 5.691893, 43.56324 ], [ 5.70698, 43.55605 ], [ 5.710063, 43.553963 ], [ 5.725661, 43.55112 ], [ 5.71766, 43.535326 ], [ 5.714255, 43.50126 ], [ 5.703216, 43.49531 ], [ 5.698933, 43.48206 ], [ 5.703791, 43.482307 ], [ 5.72801, 43.46589 ], [ 5.750885, 43.434851 ], [ 5.773787, 43.421763 ], [ 5.787862, 43.42041 ], [ 5.788349, 43.420263 ], [ 5.787168, 43.417053 ], [ 5.778369, 43.41001 ], [ 5.749077, 43.401409 ], [ 5.744663, 43.402827 ], [ 5.72205, 43.40867 ], [ 5.702862, 43.408127 ], [ 5.682788, 43.399166 ], [ 5.684662, 43.39593 ], [ 5.694293, 43.365413 ], [ 5.703385, 43.35724 ], [ 5.703233, 43.35373 ], [ 5.688016, 43.340887 ], [ 5.689808, 43.330924 ], [ 5.683491, 43.32184 ], [ 5.670125, 43.318864 ], [ 5.67974, 43.31885 ], [ 5.690692, 43.312629 ], [ 5.695071, 43.31374 ], [ 5.727039, 43.317488 ], [ 5.737105, 43.302067 ], [ 5.758411, 43.283964 ], [ 5.762613, 43.282444 ], [ 5.760788, 43.27032 ], [ 5.760763, 43.267225 ], [ 5.738292, 43.26193 ], [ 5.70169, 43.246946 ], [ 5.704584, 43.241447 ], [ 5.701154, 43.23892 ], [ 5.682372, 43.235304 ], [ 5.678421, 43.215161 ], [ 5.678393, 43.21163 ], [ 5.675956, 43.190643 ], [ 5.673562, 43.181963 ], [ 5.671875, 43.17927 ] ], [ [ 5.014453, 43.555546 ], [ 5.012691, 43.55223 ], [ 5.015638, 43.527614 ], [ 5.002653, 43.51278 ], [ 4.998675, 43.50258 ], [ 5.003477, 43.48536 ], [ 5.000815, 43.474933 ], [ 5.006775, 43.46972 ], [ 5.044516, 43.468394 ], [ 5.053299, 43.46035 ], [ 5.054861, 43.446338 ], [ 5.054155, 43.442832 ], [ 5.060963, 43.422544 ], [ 5.058618, 43.408774 ], [ 5.062131, 43.402417 ], [ 5.080698, 43.399793 ], [ 5.094708, 43.401539 ], [ 5.09943, 43.40206 ], [ 5.118567, 43.40424 ], [ 5.126604, 43.400251 ], [ 5.136299, 43.400421 ], [ 5.171916, 43.418639 ], [ 5.198607, 43.43959 ], [ 5.200041, 43.44639 ], [ 5.216388, 43.447159 ], [ 5.220468, 43.449163 ], [ 5.226715, 43.45385 ], [ 5.228384, 43.46026 ], [ 5.229661, 43.46675 ], [ 5.224678, 43.4756 ], [ 5.223864, 43.47884 ], [ 5.218799, 43.487224 ], [ 5.207307, 43.49185 ], [ 5.203014, 43.491128 ], [ 5.198722, 43.489451 ], [ 5.164353, 43.47001 ], [ 5.154339, 43.458 ], [ 5.14948, 43.457912 ], [ 5.125102, 43.483935 ], [ 5.113545, 43.507147 ], [ 5.117776, 43.512573 ], [ 5.117905, 43.51606 ], [ 5.114249, 43.522245 ], [ 5.105975, 43.525628 ], [ 5.062999, 43.52754 ], [ 5.04528, 43.52322 ], [ 5.02297, 43.556332 ], [ 5.018732, 43.555808 ], [ 5.014453, 43.555546 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "14", "CODE_DEPT": "14", "NOM_DEPT": "CALVADOS", "CODE_CHF": "118", "NOM_CHF": "CAEN", "X_CHF_LIEU": "4543", "Y_CHF_LIEU": "69032", "X_CENTROID": "4544", "Y_CENTROID": "68940", "CODE_REG": "25", "NOM_REGION": "BASSE-NORMANDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.412815, 48.950626 ], [ 0.400154, 48.952755 ], [ 0.404368, 48.96274 ], [ 0.377447, 48.972558 ], [ 0.374945, 48.969597 ], [ 0.356623, 48.94962 ], [ 0.333231, 48.942782 ], [ 0.329514, 48.945218 ], [ 0.319844, 48.94704 ], [ 0.308722, 48.954227 ], [ 0.304392, 48.95315 ], [ 0.282713, 48.94891 ], [ 0.278183, 48.95012 ], [ 0.276222, 48.96538 ], [ 0.271397, 48.96486 ], [ 0.257001, 48.963447 ], [ 0.244401, 48.958552 ], [ 0.242449, 48.95542 ], [ 0.2389, 48.9425 ], [ 0.224621, 48.94029 ], [ 0.222151, 48.943047 ], [ 0.214989, 48.94645 ], [ 0.187316, 48.94107 ], [ 0.184684, 48.93847 ], [ 0.179152, 48.9299 ], [ 0.170789, 48.927 ], [ 0.165756, 48.92588 ], [ 0.150868, 48.92717 ], [ 0.146026, 48.94051 ], [ 0.144625, 48.94337 ], [ 0.136288, 48.9504 ], [ 0.127608, 48.95222 ], [ 0.125316, 48.94992 ], [ 0.101453, 48.936112 ], [ 0.080723, 48.937984 ], [ 0.078168, 48.93532 ], [ 0.065764, 48.926145 ], [ 0.06374, 48.91677 ], [ 0.061767, 48.91375 ], [ 0.058007, 48.9078 ], [ 0.058093, 48.90507 ], [ 0.050136, 48.89928 ], [ 0.023808, 48.89517 ], [ -0.009861, 48.8838 ], [ -0.008969, 48.8809 ], [ -0.006177, 48.87223 ], [ -0.006654, 48.872 ], [ -0.009494, 48.87462 ], [ -0.02257, 48.876846 ], [ -0.031067, 48.873733 ], [ -0.030807, 48.869734 ], [ -0.03408, 48.86691 ], [ -0.059006, 48.853492 ], [ -0.060574, 48.85022 ], [ -0.069593, 48.842663 ], [ -0.075024, 48.84065 ], [ -0.079195, 48.84248 ], [ -0.08833, 48.84408 ], [ -0.106732, 48.83962 ], [ -0.114839, 48.840674 ], [ -0.124776, 48.847426 ], [ -0.127746, 48.83784 ], [ -0.14223, 48.83543 ], [ -0.144833, 48.83246 ], [ -0.126169, 48.81657 ], [ -0.130837, 48.817359 ], [ -0.14839, 48.822514 ], [ -0.151769, 48.82025 ], [ -0.174129, 48.82773 ], [ -0.180463, 48.83635 ], [ -0.198952, 48.84103 ], [ -0.204676, 48.846527 ], [ -0.208, 48.84447 ], [ -0.214942, 48.84073 ], [ -0.227631, 48.843263 ], [ -0.231433, 48.84476 ], [ -0.242242, 48.84928 ], [ -0.253713, 48.849514 ], [ -0.258988, 48.849901 ], [ -0.268018, 48.853183 ], [ -0.283313, 48.85239 ], [ -0.287467, 48.852722 ], [ -0.298548, 48.849159 ], [ -0.301102, 48.85222 ], [ -0.307438, 48.857707 ], [ -0.32852, 48.8576 ], [ -0.330234, 48.85474 ], [ -0.335751, 48.84632 ], [ -0.33373, 48.84351 ], [ -0.32966, 48.835523 ], [ -0.333989, 48.8335 ], [ -0.345416, 48.821833 ], [ -0.34715, 48.822514 ], [ -0.369708, 48.83553 ], [ -0.368887, 48.841806 ], [ -0.359269, 48.843661 ], [ -0.363386, 48.849126 ], [ -0.365815, 48.84871 ], [ -0.383774, 48.84698 ], [ -0.388768, 48.84807 ], [ -0.401276, 48.85894 ], [ -0.404559, 48.86157 ], [ -0.406375, 48.86827 ], [ -0.410852, 48.869961 ], [ -0.425236, 48.86646 ], [ -0.424948, 48.86976 ], [ -0.432673, 48.872694 ], [ -0.464764, 48.87099 ], [ -0.469371, 48.86803 ], [ -0.477606, 48.85936 ], [ -0.49708, 48.85578 ], [ -0.495536, 48.84904 ], [ -0.509979, 48.84597 ], [ -0.512126, 48.84849 ], [ -0.524007, 48.85031 ], [ -0.54965, 48.84627 ], [ -0.560863, 48.83431 ], [ -0.569821, 48.83052 ], [ -0.574716, 48.83111 ], [ -0.580286, 48.836553 ], [ -0.599866, 48.83492 ], [ -0.603179, 48.834514 ], [ -0.606409, 48.83389 ], [ -0.61079, 48.83198 ], [ -0.624501, 48.826973 ], [ -0.645422, 48.82722 ], [ -0.643054, 48.830407 ], [ -0.643436, 48.84095 ], [ -0.652919, 48.83846 ], [ -0.682991, 48.8423 ], [ -0.691249, 48.84623 ], [ -0.7055, 48.83679 ], [ -0.702481, 48.834216 ], [ -0.690819, 48.824385 ], [ -0.682172, 48.82183 ], [ -0.686626, 48.820049 ], [ -0.70847, 48.805706 ], [ -0.711532, 48.802766 ], [ -0.714679, 48.79987 ], [ -0.720012, 48.79936 ], [ -0.743942, 48.79192 ], [ -0.780627, 48.786651 ], [ -0.781431, 48.78347 ], [ -0.784904, 48.781185 ], [ -0.789464, 48.77964 ], [ -0.80823, 48.76011 ], [ -0.812822, 48.75846 ], [ -0.825322, 48.75249 ], [ -0.840936, 48.75223 ], [ -0.837619, 48.7549 ], [ -0.820382, 48.770574 ], [ -0.822003, 48.77224 ], [ -0.82521, 48.769537 ], [ -0.833212, 48.76516 ], [ -0.853875, 48.76388 ], [ -0.857529, 48.76153 ], [ -0.869777, 48.75643 ], [ -0.884687, 48.75712 ], [ -0.892271, 48.76549 ], [ -0.922326, 48.771356 ], [ -0.940336, 48.77857 ], [ -0.942241, 48.78178 ], [ -0.953693, 48.78832 ], [ -0.962351, 48.784613 ], [ -0.967055, 48.786087 ], [ -0.975072, 48.774519 ], [ -0.994239, 48.77715 ], [ -0.999312, 48.776852 ], [ -1.017017, 48.77285 ], [ -1.037394, 48.7828 ], [ -1.042029, 48.78283 ], [ -1.058734, 48.773351 ], [ -1.063501, 48.77507 ], [ -1.084108, 48.77931 ], [ -1.095982, 48.78666 ], [ -1.091833, 48.798734 ], [ -1.094949, 48.80162 ], [ -1.097289, 48.804671 ], [ -1.102298, 48.81427 ], [ -1.105514, 48.815457 ], [ -1.112704, 48.814984 ], [ -1.126652, 48.817358 ], [ -1.128609, 48.81711 ], [ -1.131205, 48.81992 ], [ -1.154292, 48.82314 ], [ -1.159278, 48.828538 ], [ -1.156907, 48.83489 ], [ -1.15708, 48.83637 ], [ -1.147021, 48.83563 ], [ -1.134947, 48.84645 ], [ -1.126199, 48.849 ], [ -1.121156, 48.84822 ], [ -1.120359, 48.85643 ], [ -1.101995, 48.866359 ], [ -1.09473, 48.87742 ], [ -1.09129, 48.87986 ], [ -1.0793, 48.8699 ], [ -1.069667, 48.871174 ], [ -1.064089, 48.87666 ], [ -1.059166, 48.87726 ], [ -1.057922, 48.87987 ], [ -1.05275, 48.88726 ], [ -1.050674, 48.890585 ], [ -1.049194, 48.89403 ], [ -1.021892, 48.90513 ], [ -1.013568, 48.92168 ], [ -1.02122, 48.926282 ], [ -1.052082, 48.923557 ], [ -1.066637, 48.919399 ], [ -1.071119, 48.92028 ], [ -1.075509, 48.92137 ], [ -1.07563, 48.92467 ], [ -1.065538, 48.931908 ], [ -1.064179, 48.941616 ], [ -1.071058, 48.94515 ], [ -1.055016, 48.94979 ], [ -1.058288, 48.95563 ], [ -1.056539, 48.95862 ], [ -1.052055, 48.95758 ], [ -1.044941, 48.96157 ], [ -1.031166, 48.960803 ], [ -1.027063, 48.962372 ], [ -1.020826, 48.95334 ], [ -1.010925, 48.95437 ], [ -1.001978, 48.95182 ], [ -0.997539, 48.950278 ], [ -0.994057, 48.95086 ], [ -0.990474, 48.950847 ], [ -0.986092, 48.952884 ], [ -0.954764, 48.965915 ], [ -0.944262, 48.96699 ], [ -0.941689, 48.96985 ], [ -0.915084, 48.98955 ], [ -0.909472, 48.998588 ], [ -0.908525, 49.00182 ], [ -0.905113, 49.0114 ], [ -0.901754, 49.012587 ], [ -0.8951, 49.011102 ], [ -0.885517, 49.0224 ], [ -0.867436, 49.02702 ], [ -0.862559, 49.02641 ], [ -0.862941, 49.033028 ], [ -0.870261, 49.03791 ], [ -0.885105, 49.04012 ], [ -0.891404, 49.045585 ], [ -0.880508, 49.05299 ], [ -0.876058, 49.05484 ], [ -0.875705, 49.05835 ], [ -0.870789, 49.064616 ], [ -0.869699, 49.06892 ], [ -0.869083, 49.07131 ], [ -0.870349, 49.073588 ], [ -0.870823, 49.077002 ], [ -0.880054, 49.08902 ], [ -0.878176, 49.09231 ], [ -0.877933, 49.10281 ], [ -0.877089, 49.10562 ], [ -0.877293, 49.108535 ], [ -0.878455, 49.1171 ], [ -0.88332, 49.11632 ], [ -0.893182, 49.117257 ], [ -0.924798, 49.101394 ], [ -0.922908, 49.10468 ], [ -0.914368, 49.1136 ], [ -0.904396, 49.115741 ], [ -0.888682, 49.125091 ], [ -0.89063, 49.13074 ], [ -0.895489, 49.132243 ], [ -0.900657, 49.132021 ], [ -0.905686, 49.132857 ], [ -0.903756, 49.136007 ], [ -0.907235, 49.13847 ], [ -0.937614, 49.15006 ], [ -0.931332, 49.15787 ], [ -0.936054, 49.158234 ], [ -0.958777, 49.16139 ], [ -0.956748, 49.164648 ], [ -0.947337, 49.16562 ], [ -0.937743, 49.16276 ], [ -0.92794, 49.165259 ], [ -0.912375, 49.183238 ], [ -0.910471, 49.19293 ], [ -0.887334, 49.201773 ], [ -0.901576, 49.20482 ], [ -0.920925, 49.221585 ], [ -0.924353, 49.22818 ], [ -0.920701, 49.230764 ], [ -0.925287, 49.2316 ], [ -0.931039, 49.226638 ], [ -0.932547, 49.21773 ], [ -0.937402, 49.21654 ], [ -0.959274, 49.198916 ], [ -0.97222, 49.19345 ], [ -0.987315, 49.19434 ], [ -0.988753, 49.19767 ], [ -1.008002, 49.20323 ], [ -1.023564, 49.20336 ], [ -1.024082, 49.20384 ], [ -1.036842, 49.221401 ], [ -1.047026, 49.221572 ], [ -1.053793, 49.22638 ], [ -1.058388, 49.2252 ], [ -1.062107, 49.22741 ], [ -1.074542, 49.23259 ], [ -1.087678, 49.24554 ], [ -1.092615, 49.24399 ], [ -1.095265, 49.24655 ], [ -1.095279, 49.25263 ], [ -1.104845, 49.252897 ], [ -1.112984, 49.26151 ], [ -1.133356, 49.2715 ], [ -1.128905, 49.27657 ], [ -1.12114, 49.27874 ], [ -1.127154, 49.28374 ], [ -1.131559, 49.284796 ], [ -1.136826, 49.293 ], [ -1.139452, 49.3096 ], [ -1.116762, 49.32407 ], [ -1.113308, 49.326691 ], [ -1.118898, 49.35236 ], [ -1.119623, 49.35557 ], [ -1.115399, 49.351509 ], [ -1.116896, 49.361116 ], [ -1.093408, 49.37874 ], [ -1.089835, 49.38112 ], [ -1.073854, 49.38946 ], [ -1.058433, 49.39061 ], [ -1.048768, 49.388332 ], [ -1.024409, 49.39226 ], [ -1.019456, 49.393279 ], [ -0.989825, 49.3972 ], [ -0.985018, 49.39585 ], [ -0.966293, 49.39674 ], [ -0.961539, 49.396433 ], [ -0.930502, 49.3932 ], [ -0.925348, 49.39251 ], [ -0.916462, 49.38644 ], [ -0.912785, 49.38485 ], [ -0.886364, 49.37323 ], [ -0.881651, 49.37159 ], [ -0.865136, 49.36657 ], [ -0.860979, 49.365336 ], [ -0.832263, 49.35867 ], [ -0.827289, 49.35794 ], [ -0.793764, 49.35413 ], [ -0.788978, 49.35349 ], [ -0.750794, 49.34935 ], [ -0.745725, 49.349167 ], [ -0.724522, 49.34701 ], [ -0.719149, 49.34699 ], [ -0.672752, 49.345919 ], [ -0.66755, 49.345969 ], [ -0.649337, 49.346485 ], [ -0.645149, 49.3453 ], [ -0.630396, 49.341549 ], [ -0.625153, 49.340626 ], [ -0.611433, 49.34017 ], [ -0.593496, 49.340853 ], [ -0.572645, 49.34341 ], [ -0.558218, 49.34589 ], [ -0.553247, 49.3461 ], [ -0.511079, 49.3445 ], [ -0.505871, 49.34386 ], [ -0.471589, 49.338039 ], [ -0.466605, 49.33744 ], [ -0.438399, 49.33506 ], [ -0.43362, 49.33504 ], [ -0.402614, 49.333785 ], [ -0.397515, 49.33307 ], [ -0.380078, 49.32856 ], [ -0.375835, 49.32724 ], [ -0.363549, 49.32354 ], [ -0.359523, 49.32218 ], [ -0.343029, 49.31574 ], [ -0.339703, 49.313462 ], [ -0.31365, 49.302511 ], [ -0.309229, 49.30072 ], [ -0.291954, 49.29563 ], [ -0.287498, 49.29455 ], [ -0.283353, 49.293622 ], [ -0.279146, 49.292801 ], [ -0.253851, 49.289995 ], [ -0.230361, 49.283222 ], [ -0.225694, 49.28183 ], [ -0.20626, 49.28623 ], [ -0.174875, 49.28601 ], [ -0.169663, 49.28624 ], [ -0.14424, 49.28883 ], [ -0.139239, 49.289604 ], [ -0.09254, 49.29824 ], [ -0.087169, 49.29791 ], [ -0.082723, 49.301775 ], [ -0.071092, 49.306066 ], [ -0.066155, 49.30703 ], [ -0.044973, 49.3127 ], [ -0.040899, 49.314081 ], [ -0.018065, 49.31986 ], [ -0.013498, 49.32106 ], [ 0.010636, 49.330625 ], [ 0.014308, 49.332569 ], [ 0.028093, 49.33986 ], [ 0.031425, 49.34177 ], [ 0.04982, 49.350856 ], [ 0.053299, 49.35287 ], [ 0.058294, 49.35607 ], [ 0.071983, 49.367919 ], [ 0.075406, 49.365852 ], [ 0.101641, 49.38744 ], [ 0.10539, 49.38988 ], [ 0.12787, 49.402117 ], [ 0.132337, 49.40357 ], [ 0.144745, 49.40624 ], [ 0.148789, 49.407397 ], [ 0.179885, 49.41367 ], [ 0.184686, 49.415361 ], [ 0.222823, 49.427242 ], [ 0.270271, 49.428501 ], [ 0.275543, 49.428665 ], [ 0.280583, 49.42879 ], [ 0.285603, 49.42903 ], [ 0.297224, 49.42986 ], [ 0.29781, 49.409253 ], [ 0.308366, 49.390287 ], [ 0.309068, 49.38688 ], [ 0.306587, 49.383996 ], [ 0.301714, 49.371305 ], [ 0.303456, 49.368016 ], [ 0.308051, 49.358082 ], [ 0.323662, 49.340117 ], [ 0.30706, 49.3188 ], [ 0.30424, 49.317199 ], [ 0.298154, 49.31441 ], [ 0.302649, 49.313683 ], [ 0.316021, 49.311309 ], [ 0.322439, 49.29633 ], [ 0.309988, 49.286386 ], [ 0.308998, 49.28322 ], [ 0.322277, 49.278762 ], [ 0.342181, 49.29351 ], [ 0.361083, 49.296608 ], [ 0.365656, 49.29512 ], [ 0.380112, 49.28776 ], [ 0.383554, 49.28576 ], [ 0.380626, 49.27979 ], [ 0.382787, 49.26402 ], [ 0.377722, 49.26389 ], [ 0.341482, 49.253678 ], [ 0.326531, 49.25289 ], [ 0.321521, 49.251985 ], [ 0.337503, 49.23117 ], [ 0.342009, 49.229286 ], [ 0.367048, 49.216595 ], [ 0.382813, 49.21603 ], [ 0.388402, 49.21194 ], [ 0.393648, 49.20674 ], [ 0.389366, 49.19665 ], [ 0.388119, 49.18981 ], [ 0.391913, 49.17854 ], [ 0.387636, 49.156981 ], [ 0.385822, 49.15405 ], [ 0.387361, 49.15318 ], [ 0.401342, 49.14951 ], [ 0.406567, 49.14951 ], [ 0.413143, 49.14635 ], [ 0.426698, 49.14674 ], [ 0.432367, 49.142202 ], [ 0.429977, 49.139263 ], [ 0.422719, 49.130814 ], [ 0.408273, 49.12858 ], [ 0.409704, 49.12217 ], [ 0.409399, 49.120857 ], [ 0.407959, 49.11788 ], [ 0.399783, 49.10081 ], [ 0.400959, 49.09786 ], [ 0.410106, 49.09766 ], [ 0.411408, 49.09491 ], [ 0.402183, 49.08846 ], [ 0.416455, 49.08738 ], [ 0.417885, 49.08396 ], [ 0.417277, 49.073357 ], [ 0.413397, 49.07538 ], [ 0.389902, 49.0764 ], [ 0.378878, 49.07071 ], [ 0.379166, 49.06745 ], [ 0.380383, 49.06125 ], [ 0.366966, 49.052356 ], [ 0.370827, 49.05017 ], [ 0.375069, 49.052092 ], [ 0.384959, 49.037014 ], [ 0.409538, 49.03283 ], [ 0.414601, 49.032816 ], [ 0.424546, 49.032031 ], [ 0.446052, 49.01901 ], [ 0.44418, 49.01313 ], [ 0.435081, 49.00628 ], [ 0.433737, 49.00333 ], [ 0.433439, 49.00022 ], [ 0.42676, 48.985718 ], [ 0.4256, 48.982652 ], [ 0.432448, 48.978229 ], [ 0.4322, 48.971908 ], [ 0.431508, 48.96876 ], [ 0.412815, 48.950626 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "15", "CODE_DEPT": "15", "NOM_DEPT": "CANTAL", "CODE_CHF": "014", "NOM_CHF": "AURILLAC", "X_CHF_LIEU": "6557", "Y_CHF_LIEU": "64252", "X_CENTROID": "6739", "Y_CENTROID": "64391", "CODE_REG": "83", "NOM_REGION": "AUVERGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.207475, 44.615532 ], [ 2.204864, 44.618394 ], [ 2.176555, 44.63547 ], [ 2.172326, 44.63578 ], [ 2.169419, 44.63798 ], [ 2.169541, 44.6477 ], [ 2.173735, 44.653251 ], [ 2.169023, 44.65883 ], [ 2.16601, 44.66129 ], [ 2.176251, 44.67183 ], [ 2.179152, 44.674449 ], [ 2.158546, 44.697352 ], [ 2.154666, 44.699366 ], [ 2.142949, 44.6937 ], [ 2.138291, 44.69288 ], [ 2.132873, 44.697189 ], [ 2.130064, 44.6993 ], [ 2.133279, 44.709356 ], [ 2.148087, 44.72285 ], [ 2.154692, 44.74974 ], [ 2.153492, 44.75311 ], [ 2.148908, 44.76629 ], [ 2.149147, 44.7697 ], [ 2.150975, 44.770024 ], [ 2.155249, 44.77155 ], [ 2.164663, 44.77259 ], [ 2.168506, 44.781934 ], [ 2.169882, 44.784663 ], [ 2.171633, 44.790258 ], [ 2.169115, 44.792941 ], [ 2.166053, 44.79902 ], [ 2.16629, 44.81207 ], [ 2.144397, 44.823528 ], [ 2.139801, 44.823825 ], [ 2.136778, 44.826242 ], [ 2.127673, 44.840631 ], [ 2.127146, 44.84358 ], [ 2.117213, 44.848255 ], [ 2.097414, 44.87057 ], [ 2.09351, 44.87237 ], [ 2.084512, 44.888373 ], [ 2.085432, 44.898772 ], [ 2.10811, 44.910598 ], [ 2.105115, 44.91332 ], [ 2.102335, 44.919916 ], [ 2.076351, 44.934785 ], [ 2.080703, 44.95158 ], [ 2.079176, 44.954969 ], [ 2.062914, 44.976506 ], [ 2.08473, 44.982991 ], [ 2.089121, 44.984441 ], [ 2.093554, 44.98571 ], [ 2.106208, 44.98151 ], [ 2.133293, 44.98575 ], [ 2.139895, 45.002 ], [ 2.140896, 45.005409 ], [ 2.137833, 45.008132 ], [ 2.116938, 45.02197 ], [ 2.110262, 45.03861 ], [ 2.095159, 45.056039 ], [ 2.09837, 45.059424 ], [ 2.100208, 45.062032 ], [ 2.102112, 45.06216 ], [ 2.133317, 45.08181 ], [ 2.138101, 45.08145 ], [ 2.143403, 45.08631 ], [ 2.161012, 45.085152 ], [ 2.168152, 45.081073 ], [ 2.172776, 45.08128 ], [ 2.17937, 45.09437 ], [ 2.178862, 45.10476 ], [ 2.187932, 45.11671 ], [ 2.181103, 45.133215 ], [ 2.178793, 45.1363 ], [ 2.193102, 45.13566 ], [ 2.20141, 45.13915 ], [ 2.210419, 45.147158 ], [ 2.211364, 45.160464 ], [ 2.225778, 45.16092 ], [ 2.230423, 45.161921 ], [ 2.233009, 45.16731 ], [ 2.201689, 45.18198 ], [ 2.198415, 45.19893 ], [ 2.191141, 45.203443 ], [ 2.192536, 45.21975 ], [ 2.191163, 45.223055 ], [ 2.198876, 45.22183 ], [ 2.203062, 45.22316 ], [ 2.2023, 45.226575 ], [ 2.221133, 45.23755 ], [ 2.225317, 45.24375 ], [ 2.238564, 45.24721 ], [ 2.239008, 45.26047 ], [ 2.244194, 45.266343 ], [ 2.25783, 45.26984 ], [ 2.26155, 45.279768 ], [ 2.261734, 45.28323 ], [ 2.267932, 45.287185 ], [ 2.269695, 45.28989 ], [ 2.273244, 45.28967 ], [ 2.276134, 45.288184 ], [ 2.290328, 45.288473 ], [ 2.305283, 45.30654 ], [ 2.306146, 45.310012 ], [ 2.31693, 45.321415 ], [ 2.335034, 45.326423 ], [ 2.339866, 45.32581 ], [ 2.353415, 45.32979 ], [ 2.358813, 45.335521 ], [ 2.358556, 45.338987 ], [ 2.351509, 45.347654 ], [ 2.364432, 45.35775 ], [ 2.364622, 45.37468 ], [ 2.363485, 45.3803 ], [ 2.368799, 45.386005 ], [ 2.35025, 45.409609 ], [ 2.355135, 45.415031 ], [ 2.361707, 45.414987 ], [ 2.376968, 45.41432 ], [ 2.380991, 45.41354 ], [ 2.393588, 45.40852 ], [ 2.396444, 45.402168 ], [ 2.404119, 45.39802 ], [ 2.418301, 45.397358 ], [ 2.423124, 45.396959 ], [ 2.435245, 45.39019 ], [ 2.437851, 45.387822 ], [ 2.441552, 45.384527 ], [ 2.46839, 45.38281 ], [ 2.476367, 45.371566 ], [ 2.480204, 45.36969 ], [ 2.485575, 45.37879 ], [ 2.508434, 45.38013 ], [ 2.520664, 45.38433 ], [ 2.523372, 45.381546 ], [ 2.52351, 45.38481 ], [ 2.527255, 45.390756 ], [ 2.522233, 45.402603 ], [ 2.517482, 45.40205 ], [ 2.487538, 45.41817 ], [ 2.492279, 45.42402 ], [ 2.496051, 45.44383 ], [ 2.496878, 45.44716 ], [ 2.501585, 45.451517 ], [ 2.499701, 45.460433 ], [ 2.503695, 45.461684 ], [ 2.509307, 45.472397 ], [ 2.508409, 45.478508 ], [ 2.521354, 45.482391 ], [ 2.539263, 45.47925 ], [ 2.543963, 45.478982 ], [ 2.536998, 45.463817 ], [ 2.535771, 45.457499 ], [ 2.561151, 45.464724 ], [ 2.565898, 45.46486 ], [ 2.574355, 45.45663 ], [ 2.591404, 45.45063 ], [ 2.601189, 45.45092 ], [ 2.616335, 45.464152 ], [ 2.622732, 45.464336 ], [ 2.62547, 45.44728 ], [ 2.624533, 45.4439 ], [ 2.638222, 45.44576 ], [ 2.646883, 45.443613 ], [ 2.651365, 45.442745 ], [ 2.660432, 45.434795 ], [ 2.674162, 45.438122 ], [ 2.688464, 45.437694 ], [ 2.690031, 45.43185 ], [ 2.683295, 45.42459 ], [ 2.679942, 45.422696 ], [ 2.681746, 45.409104 ], [ 2.699535, 45.39845 ], [ 2.70457, 45.389 ], [ 2.714525, 45.38147 ], [ 2.728285, 45.389776 ], [ 2.745843, 45.39262 ], [ 2.750028, 45.391286 ], [ 2.762087, 45.38649 ], [ 2.776168, 45.38685 ], [ 2.780556, 45.38563 ], [ 2.785148, 45.384578 ], [ 2.789725, 45.39052 ], [ 2.815354, 45.4004 ], [ 2.828076, 45.390757 ], [ 2.847408, 45.39209 ], [ 2.852379, 45.39234 ], [ 2.857949, 45.383046 ], [ 2.868737, 45.37611 ], [ 2.87353, 45.37537 ], [ 2.880617, 45.3831 ], [ 2.888952, 45.380965 ], [ 2.892968, 45.37924 ], [ 2.905135, 45.36955 ], [ 2.918284, 45.366943 ], [ 2.922728, 45.368108 ], [ 2.920906, 45.36484 ], [ 2.924245, 45.3511 ], [ 2.92452, 45.34642 ], [ 2.932074, 45.32993 ], [ 2.947996, 45.312565 ], [ 2.948625, 45.30913 ], [ 2.967984, 45.306882 ], [ 2.999196, 45.290733 ], [ 3.013611, 45.28828 ], [ 3.018305, 45.28707 ], [ 3.023857, 45.295538 ], [ 3.03224, 45.297796 ], [ 3.036731, 45.2982 ], [ 3.05557, 45.305297 ], [ 3.059399, 45.30683 ], [ 3.056889, 45.309826 ], [ 3.065741, 45.31774 ], [ 3.063179, 45.33137 ], [ 3.07004, 45.33624 ], [ 3.088392, 45.339727 ], [ 3.093847, 45.349087 ], [ 3.096457, 45.352038 ], [ 3.100442, 45.352503 ], [ 3.103498, 45.354373 ], [ 3.111332, 45.350341 ], [ 3.114886, 45.33385 ], [ 3.113417, 45.327089 ], [ 3.099147, 45.32809 ], [ 3.091661, 45.324264 ], [ 3.100696, 45.31613 ], [ 3.113462, 45.31141 ], [ 3.110348, 45.30483 ], [ 3.102748, 45.300608 ], [ 3.097823, 45.300874 ], [ 3.085389, 45.2967 ], [ 3.08654, 45.290033 ], [ 3.101084, 45.291119 ], [ 3.112196, 45.284752 ], [ 3.126815, 45.28538 ], [ 3.1316, 45.28612 ], [ 3.145214, 45.287838 ], [ 3.155859, 45.29477 ], [ 3.160671, 45.295417 ], [ 3.161355, 45.289176 ], [ 3.169023, 45.281502 ], [ 3.164242, 45.26911 ], [ 3.185039, 45.27633 ], [ 3.185611, 45.27957 ], [ 3.209301, 45.28122 ], [ 3.222058, 45.272143 ], [ 3.226852, 45.27194 ], [ 3.228571, 45.265161 ], [ 3.222768, 45.24561 ], [ 3.232795, 45.238535 ], [ 3.235591, 45.22139 ], [ 3.242156, 45.216482 ], [ 3.24693, 45.215598 ], [ 3.251607, 45.216083 ], [ 3.272226, 45.209461 ], [ 3.270971, 45.192257 ], [ 3.262959, 45.18379 ], [ 3.26166, 45.170039 ], [ 3.267973, 45.15406 ], [ 3.281602, 45.151613 ], [ 3.275998, 45.142686 ], [ 3.288033, 45.120424 ], [ 3.29229, 45.122169 ], [ 3.301533, 45.12399 ], [ 3.313723, 45.11814 ], [ 3.313978, 45.118139 ], [ 3.330342, 45.11118 ], [ 3.349481, 45.111425 ], [ 3.351855, 45.104835 ], [ 3.36145, 45.10419 ], [ 3.32858, 45.09484 ], [ 3.324087, 45.096032 ], [ 3.3067, 45.10134 ], [ 3.300765, 45.106552 ], [ 3.2962, 45.106438 ], [ 3.283645, 45.102752 ], [ 3.286627, 45.096765 ], [ 3.285721, 45.093607 ], [ 3.291978, 45.08925 ], [ 3.308955, 45.086117 ], [ 3.312027, 45.08086 ], [ 3.299816, 45.055123 ], [ 3.303179, 45.045129 ], [ 3.298213, 45.03565 ], [ 3.305632, 45.02683 ], [ 3.307443, 45.023625 ], [ 3.311406, 45.021768 ], [ 3.332968, 45.02692 ], [ 3.337174, 45.02535 ], [ 3.327055, 45.010081 ], [ 3.345223, 45.01283 ], [ 3.35479, 45.00222 ], [ 3.368411, 45.004793 ], [ 3.371466, 45.002189 ], [ 3.363227, 44.99016 ], [ 3.34589, 44.985264 ], [ 3.34806, 44.97511 ], [ 3.356642, 44.97219 ], [ 3.361343, 44.97141 ], [ 3.355222, 44.958259 ], [ 3.354528, 44.95482 ], [ 3.35037, 44.95503 ], [ 3.337948, 44.95591 ], [ 3.334081, 44.95385 ], [ 3.31825, 44.94601 ], [ 3.314336, 44.93979 ], [ 3.300883, 44.939367 ], [ 3.285389, 44.926254 ], [ 3.267129, 44.92959 ], [ 3.262554, 44.93524 ], [ 3.265703, 44.941663 ], [ 3.256169, 44.9416 ], [ 3.252172, 44.94078 ], [ 3.248414, 44.939506 ], [ 3.250201, 44.93658 ], [ 3.244565, 44.931717 ], [ 3.249693, 44.916238 ], [ 3.231158, 44.911119 ], [ 3.226428, 44.90998 ], [ 3.228278, 44.90695 ], [ 3.227769, 44.89707 ], [ 3.234928, 44.888584 ], [ 3.225669, 44.882094 ], [ 3.214815, 44.875003 ], [ 3.195963, 44.872084 ], [ 3.190271, 44.862524 ], [ 3.181619, 44.86469 ], [ 3.179882, 44.86781 ], [ 3.164673, 44.875178 ], [ 3.16028, 44.88447 ], [ 3.157551, 44.886641 ], [ 3.151478, 44.893933 ], [ 3.147951, 44.89634 ], [ 3.142848, 44.902282 ], [ 3.128384, 44.903578 ], [ 3.119516, 44.89154 ], [ 3.103126, 44.88463 ], [ 3.104979, 44.86626 ], [ 3.103188, 44.863215 ], [ 3.094845, 44.85548 ], [ 3.100179, 44.843924 ], [ 3.097681, 44.841558 ], [ 3.099159, 44.83291 ], [ 3.096528, 44.83334 ], [ 3.093846, 44.83312 ], [ 3.089341, 44.832787 ], [ 3.072175, 44.836266 ], [ 3.07698, 44.82428 ], [ 3.072702, 44.822751 ], [ 3.064034, 44.820236 ], [ 3.047916, 44.803903 ], [ 3.046242, 44.79729 ], [ 3.048705, 44.79461 ], [ 3.049971, 44.78188 ], [ 3.049475, 44.77862 ], [ 3.044048, 44.773528 ], [ 3.048237, 44.76432 ], [ 3.042243, 44.75938 ], [ 3.037832, 44.75809 ], [ 3.031345, 44.74964 ], [ 3.028747, 44.73319 ], [ 3.027305, 44.73022 ], [ 3.034894, 44.727048 ], [ 3.039129, 44.715001 ], [ 3.034293, 44.71554 ], [ 3.016022, 44.712531 ], [ 3.001628, 44.686838 ], [ 2.999722, 44.67654 ], [ 2.985621, 44.658235 ], [ 2.981677, 44.644686 ], [ 2.977213, 44.64471 ], [ 2.97025, 44.64826 ], [ 2.967626, 44.650498 ], [ 2.961872, 44.654466 ], [ 2.962677, 44.65787 ], [ 2.955269, 44.662188 ], [ 2.9475, 44.67433 ], [ 2.939346, 44.67758 ], [ 2.941418, 44.687228 ], [ 2.934201, 44.696226 ], [ 2.930886, 44.71303 ], [ 2.929367, 44.716201 ], [ 2.923264, 44.728648 ], [ 2.931312, 44.73721 ], [ 2.93351, 44.747201 ], [ 2.930116, 44.75357 ], [ 2.917021, 44.75743 ], [ 2.914287, 44.760278 ], [ 2.914118, 44.76372 ], [ 2.917767, 44.76596 ], [ 2.931708, 44.764522 ], [ 2.936373, 44.774086 ], [ 2.933774, 44.78065 ], [ 2.931811, 44.78372 ], [ 2.920191, 44.794314 ], [ 2.91673, 44.79205 ], [ 2.906917, 44.78545 ], [ 2.897866, 44.78511 ], [ 2.889642, 44.78833 ], [ 2.879446, 44.8031 ], [ 2.869874, 44.82958 ], [ 2.861554, 44.837958 ], [ 2.863543, 44.84742 ], [ 2.855424, 44.85473 ], [ 2.860544, 44.86764 ], [ 2.859679, 44.874465 ], [ 2.854931, 44.87431 ], [ 2.851531, 44.87189 ], [ 2.814631, 44.869447 ], [ 2.807588, 44.8741 ], [ 2.80279, 44.873829 ], [ 2.784749, 44.863216 ], [ 2.781647, 44.856971 ], [ 2.772282, 44.856403 ], [ 2.767711, 44.86593 ], [ 2.775611, 44.884879 ], [ 2.77859, 44.8875 ], [ 2.775894, 44.89026 ], [ 2.772244, 44.900025 ], [ 2.776095, 44.90964 ], [ 2.755915, 44.932151 ], [ 2.742087, 44.931975 ], [ 2.738254, 44.941222 ], [ 2.737688, 44.940366 ], [ 2.733919, 44.9384 ], [ 2.724568, 44.92734 ], [ 2.716766, 44.928835 ], [ 2.714067, 44.926073 ], [ 2.706372, 44.907091 ], [ 2.702556, 44.90531 ], [ 2.689464, 44.903768 ], [ 2.681868, 44.907348 ], [ 2.679376, 44.90442 ], [ 2.658611, 44.8858 ], [ 2.656223, 44.87242 ], [ 2.653049, 44.86977 ], [ 2.629077, 44.872259 ], [ 2.626616, 44.869226 ], [ 2.618041, 44.852972 ], [ 2.604162, 44.84309 ], [ 2.610224, 44.83402 ], [ 2.609777, 44.827284 ], [ 2.598425, 44.82077 ], [ 2.600123, 44.793667 ], [ 2.590137, 44.78628 ], [ 2.586564, 44.78399 ], [ 2.578243, 44.78595 ], [ 2.564486, 44.77809 ], [ 2.563364, 44.77124 ], [ 2.560675, 44.761043 ], [ 2.553678, 44.75742 ], [ 2.55424, 44.73915 ], [ 2.554142, 44.734 ], [ 2.552128, 44.73146 ], [ 2.549397, 44.728649 ], [ 2.55623, 44.722231 ], [ 2.5364, 44.711958 ], [ 2.520134, 44.702048 ], [ 2.518885, 44.69903 ], [ 2.516627, 44.695884 ], [ 2.500496, 44.68881 ], [ 2.489176, 44.669256 ], [ 2.489524, 44.658715 ], [ 2.484685, 44.65259 ], [ 2.476306, 44.65033 ], [ 2.471965, 44.65202 ], [ 2.469, 44.649453 ], [ 2.46804, 44.642895 ], [ 2.450108, 44.64808 ], [ 2.43565, 44.639745 ], [ 2.404766, 44.647182 ], [ 2.401279, 44.645416 ], [ 2.397134, 44.646186 ], [ 2.392671, 44.644937 ], [ 2.380878, 44.649671 ], [ 2.36529, 44.64185 ], [ 2.350984, 44.64123 ], [ 2.335043, 44.648837 ], [ 2.336617, 44.658768 ], [ 2.332221, 44.66459 ], [ 2.329813, 44.66653 ], [ 2.32413, 44.669154 ], [ 2.320317, 44.66728 ], [ 2.303361, 44.6632 ], [ 2.286189, 44.66646 ], [ 2.274461, 44.66121 ], [ 2.270054, 44.660582 ], [ 2.265206, 44.660847 ], [ 2.250539, 44.652042 ], [ 2.227115, 44.654033 ], [ 2.208414, 44.64384 ], [ 2.21762, 44.624796 ], [ 2.22057, 44.622035 ], [ 2.216622, 44.621251 ], [ 2.207475, 44.615532 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "16", "CODE_DEPT": "16", "NOM_DEPT": "CHARENTE", "CODE_CHF": "015", "NOM_CHF": "ANGOULEME", "X_CHF_LIEU": "4788", "Y_CHF_LIEU": "65095", "X_CENTROID": "4823", "Y_CENTROID": "65170", "CODE_REG": "54", "NOM_REGION": "POITOU-CHARENTES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.004331, 45.19163 ], [ 0.000904, 45.193036 ], [ -0.002088, 45.19487 ], [ -0.002278, 45.198402 ], [ 0.005866, 45.22191 ], [ 0.00552, 45.22528 ], [ -0.032667, 45.23439 ], [ -0.040024, 45.24653 ], [ -0.044303, 45.248023 ], [ -0.046963, 45.248617 ], [ -0.049742, 45.24882 ], [ -0.059209, 45.24652 ], [ -0.094084, 45.24674 ], [ -0.099096, 45.246714 ], [ -0.11678, 45.24838 ], [ -0.120405, 45.250231 ], [ -0.115897, 45.251519 ], [ -0.112659, 45.254087 ], [ -0.113189, 45.270419 ], [ -0.108813, 45.28967 ], [ -0.113065, 45.290815 ], [ -0.130151, 45.29453 ], [ -0.145277, 45.28814 ], [ -0.144128, 45.294019 ], [ -0.147598, 45.29938 ], [ -0.150957, 45.301658 ], [ -0.15495, 45.302951 ], [ -0.161743, 45.30653 ], [ -0.178206, 45.30813 ], [ -0.196091, 45.305775 ], [ -0.20153, 45.31109 ], [ -0.228747, 45.321662 ], [ -0.230372, 45.31489 ], [ -0.253443, 45.311223 ], [ -0.258721, 45.305599 ], [ -0.257518, 45.298794 ], [ -0.279476, 45.305848 ], [ -0.283259, 45.308071 ], [ -0.285976, 45.32532 ], [ -0.290604, 45.32667 ], [ -0.279205, 45.33573 ], [ -0.281552, 45.338267 ], [ -0.282663, 45.338911 ], [ -0.277954, 45.34465 ], [ -0.277971, 45.34798 ], [ -0.26401, 45.33962 ], [ -0.247589, 45.34443 ], [ -0.24624, 45.347606 ], [ -0.246806, 45.35774 ], [ -0.271086, 45.35782 ], [ -0.27956, 45.35478 ], [ -0.28184, 45.36418 ], [ -0.290502, 45.36624 ], [ -0.295243, 45.37094 ], [ -0.304287, 45.371872 ], [ -0.31064, 45.37658 ], [ -0.311177, 45.383439 ], [ -0.310175, 45.38681 ], [ -0.302391, 45.38625 ], [ -0.300815, 45.38878 ], [ -0.286344, 45.388695 ], [ -0.278488, 45.392773 ], [ -0.274911, 45.39914 ], [ -0.251398, 45.402196 ], [ -0.248783, 45.4089 ], [ -0.234062, 45.4092 ], [ -0.236733, 45.41861 ], [ -0.246383, 45.417969 ], [ -0.25311, 45.421829 ], [ -0.248543, 45.435002 ], [ -0.251133, 45.43791 ], [ -0.254367, 45.440457 ], [ -0.254553, 45.442975 ], [ -0.265884, 45.449306 ], [ -0.268345, 45.455876 ], [ -0.281544, 45.45734 ], [ -0.2862, 45.45637 ], [ -0.285496, 45.45941 ], [ -0.280903, 45.47423 ], [ -0.267112, 45.471485 ], [ -0.259003, 45.47977 ], [ -0.257562, 45.486426 ], [ -0.246605, 45.49187 ], [ -0.242494, 45.490152 ], [ -0.240519, 45.494517 ], [ -0.246426, 45.50283 ], [ -0.256087, 45.503665 ], [ -0.263732, 45.507904 ], [ -0.255279, 45.51873 ], [ -0.266152, 45.525065 ], [ -0.279222, 45.52125 ], [ -0.283505, 45.51953 ], [ -0.281752, 45.52588 ], [ -0.289545, 45.529717 ], [ -0.303622, 45.52838 ], [ -0.320025, 45.534868 ], [ -0.32169, 45.534827 ], [ -0.321515, 45.54176 ], [ -0.310036, 45.546699 ], [ -0.29671, 45.564404 ], [ -0.301074, 45.565718 ], [ -0.311483, 45.576722 ], [ -0.319819, 45.579838 ], [ -0.323535, 45.58081 ], [ -0.328844, 45.5848 ], [ -0.331766, 45.58749 ], [ -0.341299, 45.58657 ], [ -0.341491, 45.589759 ], [ -0.347009, 45.594822 ], [ -0.359929, 45.59787 ], [ -0.376402, 45.60966 ], [ -0.380534, 45.619299 ], [ -0.380963, 45.622323 ], [ -0.387305, 45.62647 ], [ -0.40152, 45.619901 ], [ -0.405745, 45.619268 ], [ -0.415129, 45.6171 ], [ -0.427868, 45.622463 ], [ -0.431924, 45.62447 ], [ -0.410956, 45.6532 ], [ -0.40893, 45.65619 ], [ -0.395831, 45.65259 ], [ -0.387149, 45.655215 ], [ -0.382382, 45.65544 ], [ -0.382107, 45.658936 ], [ -0.407527, 45.68058 ], [ -0.410541, 45.683378 ], [ -0.42292, 45.685589 ], [ -0.415391, 45.69756 ], [ -0.421203, 45.70668 ], [ -0.420351, 45.70996 ], [ -0.419215, 45.723837 ], [ -0.404318, 45.7327 ], [ -0.403448, 45.73612 ], [ -0.415839, 45.74167 ], [ -0.46001, 45.739276 ], [ -0.4614, 45.74872 ], [ -0.463078, 45.751665 ], [ -0.450041, 45.762485 ], [ -0.449334, 45.766003 ], [ -0.425751, 45.76471 ], [ -0.418248, 45.76897 ], [ -0.404889, 45.770374 ], [ -0.401995, 45.786523 ], [ -0.373964, 45.78256 ], [ -0.369865, 45.78083 ], [ -0.366069, 45.780687 ], [ -0.343578, 45.785791 ], [ -0.339171, 45.787048 ], [ -0.319825, 45.784762 ], [ -0.316008, 45.78555 ], [ -0.312175, 45.78629 ], [ -0.304142, 45.790053 ], [ -0.29716, 45.7989 ], [ -0.299231, 45.802085 ], [ -0.29179, 45.80566 ], [ -0.278449, 45.804088 ], [ -0.275034, 45.806251 ], [ -0.24803, 45.80548 ], [ -0.239973, 45.803469 ], [ -0.242466, 45.79765 ], [ -0.241098, 45.79475 ], [ -0.23656, 45.7947 ], [ -0.232843, 45.789316 ], [ -0.231112, 45.78637 ], [ -0.22408, 45.77801 ], [ -0.221465, 45.775348 ], [ -0.221083, 45.775215 ], [ -0.203343, 45.778009 ], [ -0.187634, 45.78946 ], [ -0.183333, 45.790832 ], [ -0.179858, 45.78865 ], [ -0.157669, 45.788994 ], [ -0.16236, 45.7834 ], [ -0.156058, 45.779513 ], [ -0.150287, 45.786713 ], [ -0.148323, 45.789093 ], [ -0.151193, 45.79921 ], [ -0.136099, 45.82064 ], [ -0.137086, 45.82395 ], [ -0.141039, 45.837 ], [ -0.145858, 45.837169 ], [ -0.138514, 45.84565 ], [ -0.129816, 45.84803 ], [ -0.125127, 45.848568 ], [ -0.118752, 45.864002 ], [ -0.116157, 45.866939 ], [ -0.112861, 45.869328 ], [ -0.128002, 45.87494 ], [ -0.130954, 45.89102 ], [ -0.140027, 45.890124 ], [ -0.145407, 45.894841 ], [ -0.146811, 45.897956 ], [ -0.143335, 45.901504 ], [ -0.139758, 45.90306 ], [ -0.134002, 45.911253 ], [ -0.148847, 45.918 ], [ -0.151135, 45.92662 ], [ -0.143225, 45.929 ], [ -0.140453, 45.93135 ], [ -0.127676, 45.926731 ], [ -0.108875, 45.92881 ], [ -0.104844, 45.926954 ], [ -0.095793, 45.930888 ], [ -0.096632, 45.937075 ], [ -0.088011, 45.94781 ], [ -0.086417, 45.95071 ], [ -0.09101, 45.95105 ], [ -0.094759, 45.96029 ], [ -0.10397, 45.96002 ], [ -0.102937, 45.96966 ], [ -0.066728, 45.98087 ], [ -0.062011, 45.979723 ], [ -0.054852, 45.98789 ], [ -0.05034, 45.98906 ], [ -0.04216, 45.99615 ], [ -0.051674, 46.00192 ], [ -0.045363, 46.01406 ], [ -0.04552, 46.020621 ], [ -0.031191, 46.021862 ], [ -0.022684, 46.02995 ], [ -0.036759, 46.04329 ], [ -0.038172, 46.04988 ], [ -0.039502, 46.053107 ], [ -0.030922, 46.05594 ], [ 0.00147, 46.057235 ], [ 0.004892, 46.059525 ], [ 0.015952, 46.0549 ], [ 0.019144, 46.052844 ], [ 0.037802, 46.06854 ], [ 0.052554, 46.069866 ], [ 0.061213, 46.07258 ], [ 0.052655, 46.08029 ], [ 0.068935, 46.09212 ], [ 0.072972, 46.0939 ], [ 0.092904, 46.090011 ], [ 0.096913, 46.088888 ], [ 0.099559, 46.09151 ], [ 0.094764, 46.100376 ], [ 0.093014, 46.10335 ], [ 0.096715, 46.10537 ], [ 0.10568, 46.097988 ], [ 0.11478, 46.09637 ], [ 0.119132, 46.09761 ], [ 0.131845, 46.1022 ], [ 0.135816, 46.104051 ], [ 0.164726, 46.08731 ], [ 0.167523, 46.084555 ], [ 0.173683, 46.0821 ], [ 0.177537, 46.08321 ], [ 0.192706, 46.094741 ], [ 0.197168, 46.09537 ], [ 0.223643, 46.09252 ], [ 0.22668, 46.09008 ], [ 0.232986, 46.08753 ], [ 0.234946, 46.085381 ], [ 0.242206, 46.080836 ], [ 0.256425, 46.0787 ], [ 0.273541, 46.06724 ], [ 0.276888, 46.061085 ], [ 0.291331, 46.05955 ], [ 0.31087, 46.062545 ], [ 0.314395, 46.06509 ], [ 0.322525, 46.06241 ], [ 0.340403, 46.06448 ], [ 0.345021, 46.06375 ], [ 0.349208, 46.06388 ], [ 0.35306, 46.065061 ], [ 0.381784, 46.063385 ], [ 0.389851, 46.06712 ], [ 0.398446, 46.06466 ], [ 0.402776, 46.06313 ], [ 0.41227, 46.05227 ], [ 0.413287, 46.04909 ], [ 0.446351, 46.051235 ], [ 0.466101, 46.06097 ], [ 0.471089, 46.06677 ], [ 0.480651, 46.06543 ], [ 0.478007, 46.06833 ], [ 0.474218, 46.07445 ], [ 0.475703, 46.08467 ], [ 0.466899, 46.087455 ], [ 0.447431, 46.08704 ], [ 0.445706, 46.09352 ], [ 0.448793, 46.09619 ], [ 0.443259, 46.10157 ], [ 0.446452, 46.103655 ], [ 0.451133, 46.108004 ], [ 0.455705, 46.1069 ], [ 0.46296, 46.11136 ], [ 0.47028, 46.12707 ], [ 0.472303, 46.130136 ], [ 0.486249, 46.12808 ], [ 0.495224, 46.135284 ], [ 0.504155, 46.13298 ], [ 0.508685, 46.13194 ], [ 0.504334, 46.11933 ], [ 0.521014, 46.11261 ], [ 0.536932, 46.095619 ], [ 0.538878, 46.088904 ], [ 0.539973, 46.085558 ], [ 0.553329, 46.09004 ], [ 0.563209, 46.08915 ], [ 0.574107, 46.07813 ], [ 0.590854, 46.08116 ], [ 0.594834, 46.075725 ], [ 0.59568, 46.07266 ], [ 0.607353, 46.07778 ], [ 0.607706, 46.08661 ], [ 0.608968, 46.08974 ], [ 0.613616, 46.08856 ], [ 0.620563, 46.093178 ], [ 0.640102, 46.09169 ], [ 0.648819, 46.094659 ], [ 0.682508, 46.097208 ], [ 0.687453, 46.097255 ], [ 0.676447, 46.11253 ], [ 0.685596, 46.12073 ], [ 0.707183, 46.129 ], [ 0.710923, 46.135026 ], [ 0.711895, 46.13842 ], [ 0.712339, 46.13896 ], [ 0.725123, 46.136321 ], [ 0.729218, 46.135069 ], [ 0.747883, 46.13872 ], [ 0.78519, 46.13106 ], [ 0.80827, 46.136812 ], [ 0.820243, 46.131277 ], [ 0.823433, 46.12859 ], [ 0.818813, 46.12717 ], [ 0.811893, 46.12297 ], [ 0.832307, 46.10434 ], [ 0.832253, 46.09391 ], [ 0.827141, 46.088278 ], [ 0.827127, 46.086025 ], [ 0.819171, 46.0774 ], [ 0.826105, 46.065061 ], [ 0.816632, 46.057565 ], [ 0.817909, 46.04789 ], [ 0.821993, 46.04636 ], [ 0.845226, 46.0365 ], [ 0.849302, 46.03449 ], [ 0.856265, 46.02972 ], [ 0.858456, 46.019618 ], [ 0.866517, 46.01648 ], [ 0.886192, 46.03173 ], [ 0.894327, 46.025632 ], [ 0.894052, 46.022699 ], [ 0.905615, 46.0182 ], [ 0.909946, 46.017543 ], [ 0.923782, 46.008258 ], [ 0.919886, 46.00223 ], [ 0.921525, 45.99615 ], [ 0.934675, 45.99221 ], [ 0.934634, 45.976415 ], [ 0.943377, 45.97307 ], [ 0.940886, 45.95921 ], [ 0.92468, 45.951209 ], [ 0.922516, 45.94594 ], [ 0.92049, 45.94352 ], [ 0.920972, 45.937917 ], [ 0.916094, 45.93717 ], [ 0.906305, 45.93793 ], [ 0.884652, 45.923831 ], [ 0.861148, 45.919803 ], [ 0.847972, 45.92405 ], [ 0.838047, 45.92336 ], [ 0.821962, 45.93157 ], [ 0.812111, 45.93127 ], [ 0.809969, 45.92832 ], [ 0.809017, 45.921742 ], [ 0.815983, 45.917292 ], [ 0.81354, 45.896886 ], [ 0.827373, 45.882748 ], [ 0.823749, 45.88079 ], [ 0.8075, 45.870023 ], [ 0.810678, 45.868238 ], [ 0.818405, 45.869162 ], [ 0.82098, 45.86696 ], [ 0.818349, 45.864053 ], [ 0.795978, 45.82984 ], [ 0.782118, 45.820404 ], [ 0.780808, 45.81709 ], [ 0.783826, 45.810583 ], [ 0.776974, 45.80224 ], [ 0.783779, 45.793475 ], [ 0.770227, 45.788478 ], [ 0.768055, 45.791552 ], [ 0.762003, 45.79694 ], [ 0.752389, 45.797106 ], [ 0.7426, 45.804378 ], [ 0.718721, 45.80558 ], [ 0.710515, 45.8022 ], [ 0.70749, 45.77825 ], [ 0.714765, 45.76922 ], [ 0.711682, 45.76286 ], [ 0.707649, 45.761712 ], [ 0.695379, 45.76212 ], [ 0.691144, 45.76091 ], [ 0.666235, 45.748196 ], [ 0.666527, 45.745238 ], [ 0.665281, 45.739401 ], [ 0.660713, 45.73941 ], [ 0.652867, 45.73938 ], [ 0.647616, 45.730638 ], [ 0.650416, 45.72802 ], [ 0.64553, 45.71892 ], [ 0.633501, 45.7205 ], [ 0.629742, 45.71457 ], [ 0.627671, 45.708 ], [ 0.613217, 45.69402 ], [ 0.605006, 45.694218 ], [ 0.602126, 45.68177 ], [ 0.596594, 45.67687 ], [ 0.600389, 45.671733 ], [ 0.58746, 45.66794 ], [ 0.587634, 45.66129 ], [ 0.567032, 45.65326 ], [ 0.573663, 45.644124 ], [ 0.575447, 45.640928 ], [ 0.564535, 45.6344 ], [ 0.550448, 45.6341 ], [ 0.538448, 45.628737 ], [ 0.537079, 45.631509 ], [ 0.535418, 45.64286 ], [ 0.525833, 45.641785 ], [ 0.512657, 45.63146 ], [ 0.508422, 45.6214 ], [ 0.500403, 45.619564 ], [ 0.501441, 45.615353 ], [ 0.503838, 45.61257 ], [ 0.513312, 45.60543 ], [ 0.516143, 45.599246 ], [ 0.512189, 45.59385 ], [ 0.516324, 45.58806 ], [ 0.498576, 45.56478 ], [ 0.50227, 45.562802 ], [ 0.506549, 45.55434 ], [ 0.499202, 45.545788 ], [ 0.48327, 45.538891 ], [ 0.473715, 45.538407 ], [ 0.46967, 45.53884 ], [ 0.465737, 45.539623 ], [ 0.464307, 45.53359 ], [ 0.457779, 45.52556 ], [ 0.449305, 45.52392 ], [ 0.450893, 45.51865 ], [ 0.446105, 45.514637 ], [ 0.443656, 45.51188 ], [ 0.432763, 45.50165 ], [ 0.431738, 45.485596 ], [ 0.426875, 45.485782 ], [ 0.422921, 45.483781 ], [ 0.419259, 45.48595 ], [ 0.408356, 45.49178 ], [ 0.378384, 45.484128 ], [ 0.378867, 45.480671 ], [ 0.372947, 45.475865 ], [ 0.363133, 45.47515 ], [ 0.356707, 45.46622 ], [ 0.334668, 45.46014 ], [ 0.334363, 45.459819 ], [ 0.333389, 45.45318 ], [ 0.329155, 45.44378 ], [ 0.310781, 45.45876 ], [ 0.302619, 45.45889 ], [ 0.303213, 45.44559 ], [ 0.316234, 45.43598 ], [ 0.303543, 45.43194 ], [ 0.298855, 45.43229 ], [ 0.289959, 45.432617 ], [ 0.278402, 45.42716 ], [ 0.27086, 45.41893 ], [ 0.27155, 45.41608 ], [ 0.267624, 45.40798 ], [ 0.265268, 45.40543 ], [ 0.262875, 45.39686 ], [ 0.253457, 45.380939 ], [ 0.249431, 45.36359 ], [ 0.250217, 45.360614 ], [ 0.256966, 45.353067 ], [ 0.258533, 45.350051 ], [ 0.264588, 45.334748 ], [ 0.264905, 45.33453 ], [ 0.270634, 45.314605 ], [ 0.266609, 45.297749 ], [ 0.262719, 45.29587 ], [ 0.252621, 45.2894 ], [ 0.249597, 45.28859 ], [ 0.246868, 45.28984 ], [ 0.243136, 45.29175 ], [ 0.220912, 45.29022 ], [ 0.220092, 45.287223 ], [ 0.210596, 45.2742 ], [ 0.210296, 45.271274 ], [ 0.204416, 45.263604 ], [ 0.200767, 45.261828 ], [ 0.174862, 45.261437 ], [ 0.176696, 45.25596 ], [ 0.172293, 45.25171 ], [ 0.171342, 45.248329 ], [ 0.174738, 45.23921 ], [ 0.157828, 45.22645 ], [ 0.148209, 45.22456 ], [ 0.145486, 45.214487 ], [ 0.140998, 45.214751 ], [ 0.132319, 45.209 ], [ 0.115844, 45.213572 ], [ 0.114272, 45.214622 ], [ 0.111422, 45.21698 ], [ 0.100037, 45.22607 ], [ 0.092006, 45.227515 ], [ 0.0884, 45.22526 ], [ 0.076064, 45.22027 ], [ 0.066433, 45.22062 ], [ 0.055582, 45.227164 ], [ 0.051213, 45.22538 ], [ 0.036594, 45.211353 ], [ 0.033859, 45.20837 ], [ 0.010324, 45.202732 ], [ 0.004331, 45.19163 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "17", "CODE_DEPT": "17", "NOM_DEPT": "CHARENTE-MARITIME", "CODE_CHF": "300", "NOM_CHF": "LA ROCHELLE", "X_CHF_LIEU": "3797", "Y_CHF_LIEU": "65705", "X_CENTROID": "4165", "Y_CENTROID": "65256", "CODE_REG": "54", "NOM_REGION": "POITOU-CHARENTES" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.0402, 45.10238 ], [ -0.046095, 45.09778 ], [ -0.05373, 45.10109 ], [ -0.057088, 45.098976 ], [ -0.061772, 45.098766 ], [ -0.087832, 45.12143 ], [ -0.092825, 45.121022 ], [ -0.110974, 45.115524 ], [ -0.143512, 45.090354 ], [ -0.15327, 45.08924 ], [ -0.161926, 45.09249 ], [ -0.166877, 45.092747 ], [ -0.191442, 45.09475 ], [ -0.209721, 45.100235 ], [ -0.212445, 45.102238 ], [ -0.221237, 45.10776 ], [ -0.245672, 45.108214 ], [ -0.256783, 45.114793 ], [ -0.273944, 45.134855 ], [ -0.275713, 45.141571 ], [ -0.279962, 45.143248 ], [ -0.307551, 45.149589 ], [ -0.309374, 45.146624 ], [ -0.31363, 45.13765 ], [ -0.316676, 45.140486 ], [ -0.323322, 45.157159 ], [ -0.338768, 45.16624 ], [ -0.362959, 45.170237 ], [ -0.366174, 45.167563 ], [ -0.378517, 45.15678 ], [ -0.383396, 45.143339 ], [ -0.385058, 45.146596 ], [ -0.399471, 45.179378 ], [ -0.40061, 45.182813 ], [ -0.402585, 45.189701 ], [ -0.417435, 45.20388 ], [ -0.419461, 45.206985 ], [ -0.413187, 45.22321 ], [ -0.413635, 45.226568 ], [ -0.406009, 45.238707 ], [ -0.409905, 45.24797 ], [ -0.424028, 45.24856 ], [ -0.41912, 45.261324 ], [ -0.4177, 45.264387 ], [ -0.418508, 45.27361 ], [ -0.433463, 45.28057 ], [ -0.437376, 45.282116 ], [ -0.457654, 45.288358 ], [ -0.462073, 45.28858 ], [ -0.472986, 45.293633 ], [ -0.48602, 45.293579 ], [ -0.490146, 45.291558 ], [ -0.513854, 45.286227 ], [ -0.516876, 45.288782 ], [ -0.548704, 45.293121 ], [ -0.55176, 45.295188 ], [ -0.567662, 45.29742 ], [ -0.570631, 45.30029 ], [ -0.573867, 45.310717 ], [ -0.573978, 45.31424 ], [ -0.568974, 45.331235 ], [ -0.572742, 45.33321 ], [ -0.585303, 45.342899 ], [ -0.594006, 45.331596 ], [ -0.594481, 45.321143 ], [ -0.599195, 45.32134 ], [ -0.607635, 45.324009 ], [ -0.633594, 45.31845 ], [ -0.642088, 45.3151 ], [ -0.650712, 45.3225 ], [ -0.708651, 45.32736 ], [ -0.714861, 45.32774 ], [ -0.716938, 45.33071 ], [ -0.724076, 45.35964 ], [ -0.729237, 45.36548 ], [ -0.741211, 45.39997 ], [ -0.743523, 45.40314 ], [ -0.752889, 45.41903 ], [ -0.753174, 45.422492 ], [ -0.763293, 45.434864 ], [ -0.76517, 45.43819 ], [ -0.771376, 45.446429 ], [ -0.778117, 45.449123 ], [ -0.781005, 45.451477 ], [ -0.787938, 45.45886 ], [ -0.790209, 45.461344 ], [ -0.799701, 45.475384 ], [ -0.808194, 45.472905 ], [ -0.813776, 45.47787 ], [ -0.816628, 45.480588 ], [ -0.823902, 45.48498 ], [ -0.823396, 45.493826 ], [ -0.85598, 45.513555 ], [ -0.876996, 45.51959 ], [ -0.887568, 45.52972 ], [ -0.891777, 45.53121 ], [ -0.899999, 45.530281 ], [ -0.903157, 45.534508 ], [ -0.908587, 45.534563 ], [ -0.91008, 45.535719 ], [ -0.906524, 45.53733 ], [ -0.908429, 45.54124 ], [ -0.91943, 45.55148 ], [ -0.926173, 45.554099 ], [ -0.929503, 45.556183 ], [ -0.938914, 45.556782 ], [ -0.946689, 45.55278 ], [ -0.956022, 45.55463 ], [ -0.967805, 45.56075 ], [ -0.981794, 45.573771 ], [ -0.983941, 45.57686 ], [ -0.990987, 45.579666 ], [ -0.99338, 45.596306 ], [ -1.013377, 45.60232 ], [ -1.009004, 45.60845 ], [ -1.009853, 45.611841 ], [ -1.022532, 45.622081 ], [ -1.040153, 45.618438 ], [ -1.048942, 45.621431 ], [ -1.053223, 45.6276 ], [ -1.057392, 45.626104 ], [ -1.075481, 45.636333 ], [ -1.078309, 45.63894 ], [ -1.082681, 45.6374 ], [ -1.113411, 45.646863 ], [ -1.143769, 45.66409 ], [ -1.14751, 45.666306 ], [ -1.209737, 45.695592 ], [ -1.219659, 45.695428 ], [ -1.227427, 45.6915 ], [ -1.22407, 45.681592 ], [ -1.213619, 45.67409 ], [ -1.219205, 45.672288 ], [ -1.227098, 45.67643 ], [ -1.234387, 45.68947 ], [ -1.235614, 45.69289 ], [ -1.242501, 45.764188 ], [ -1.241024, 45.78555 ], [ -1.232756, 45.789516 ], [ -1.207768, 45.792976 ], [ -1.188226, 45.790096 ], [ -1.157027, 45.801837 ], [ -1.143483, 45.797105 ], [ -1.139181, 45.79904 ], [ -1.132893, 45.803905 ], [ -1.137218, 45.819978 ], [ -1.139535, 45.822841 ], [ -1.149585, 45.830416 ], [ -1.156657, 45.8433 ], [ -1.16516, 45.846723 ], [ -1.16754, 45.853462 ], [ -1.153927, 45.85553 ], [ -1.14988, 45.86125 ], [ -1.120516, 45.85778 ], [ -1.110124, 45.864999 ], [ -1.106044, 45.86706 ], [ -1.099657, 45.87577 ], [ -1.098081, 45.87887 ], [ -1.098398, 45.882269 ], [ -1.084309, 45.89616 ], [ -1.081211, 45.898788 ], [ -1.073835, 45.9157 ], [ -1.074485, 45.92641 ], [ -1.077072, 45.936565 ], [ -1.098732, 45.94437 ], [ -1.092267, 45.949046 ], [ -1.067544, 45.94981 ], [ -1.064622, 45.952603 ], [ -1.078918, 45.961827 ], [ -1.08567, 45.97892 ], [ -1.116244, 46.001557 ], [ -1.113389, 46.00265 ], [ -1.092284, 45.99343 ], [ -1.062098, 45.99547 ], [ -1.055018, 46.000512 ], [ -1.053077, 46.00384 ], [ -1.052828, 46.010815 ], [ -1.06046, 46.023562 ], [ -1.056336, 46.033277 ], [ -1.060713, 46.043273 ], [ -1.065616, 46.049337 ], [ -1.079505, 46.05326 ], [ -1.08452, 46.05314 ], [ -1.089027, 46.0547 ], [ -1.100078, 46.092224 ], [ -1.103187, 46.09498 ], [ -1.114447, 46.101505 ], [ -1.128938, 46.102358 ], [ -1.140676, 46.10794 ], [ -1.12698, 46.1108 ], [ -1.123776, 46.11336 ], [ -1.129537, 46.12634 ], [ -1.148273, 46.12937 ], [ -1.149106, 46.13284 ], [ -1.156641, 46.137281 ], [ -1.17131, 46.139141 ], [ -1.163215, 46.15348 ], [ -1.183144, 46.152791 ], [ -1.201251, 46.147289 ], [ -1.206485, 46.14685 ], [ -1.216389, 46.14809 ], [ -1.226292, 46.150327 ], [ -1.234616, 46.15411 ], [ -1.238466, 46.156573 ], [ -1.239589, 46.16304 ], [ -1.221787, 46.168999 ], [ -1.215858, 46.18219 ], [ -1.203549, 46.187756 ], [ -1.201245, 46.190889 ], [ -1.202341, 46.201796 ], [ -1.20638, 46.203657 ], [ -1.199724, 46.212551 ], [ -1.184514, 46.22071 ], [ -1.175152, 46.22215 ], [ -1.171154, 46.224064 ], [ -1.149222, 46.238104 ], [ -1.146553, 46.241123 ], [ -1.138927, 46.25388 ], [ -1.111345, 46.261157 ], [ -1.126917, 46.30732 ], [ -1.129404, 46.310277 ], [ -1.123946, 46.31469 ], [ -1.121791, 46.3232 ], [ -1.117434, 46.32324 ], [ -1.1141, 46.316999 ], [ -1.095328, 46.31378 ], [ -1.078144, 46.319257 ], [ -1.080064, 46.322326 ], [ -1.073337, 46.326877 ], [ -1.055237, 46.346413 ], [ -1.053688, 46.349578 ], [ -1.05072, 46.34326 ], [ -1.017639, 46.35301 ], [ -0.978339, 46.3512 ], [ -0.966979, 46.362233 ], [ -0.964513, 46.3654 ], [ -0.951491, 46.361103 ], [ -0.927338, 46.370935 ], [ -0.932977, 46.362969 ], [ -0.93423, 46.360113 ], [ -0.93546, 46.356762 ], [ -0.943732, 46.336965 ], [ -0.958784, 46.32337 ], [ -0.933937, 46.31264 ], [ -0.915043, 46.31553 ], [ -0.912086, 46.312749 ], [ -0.895424, 46.31685 ], [ -0.88904, 46.32386 ], [ -0.886848, 46.326704 ], [ -0.870267, 46.322455 ], [ -0.86853, 46.325489 ], [ -0.860811, 46.32547 ], [ -0.863019, 46.31914 ], [ -0.848986, 46.31833 ], [ -0.8449, 46.324612 ], [ -0.846813, 46.33422 ], [ -0.836394, 46.34136 ], [ -0.828389, 46.339133 ], [ -0.82541, 46.336366 ], [ -0.81117, 46.338043 ], [ -0.803746, 46.34246 ], [ -0.797727, 46.33845 ], [ -0.807126, 46.331371 ], [ -0.802811, 46.32529 ], [ -0.792868, 46.32433 ], [ -0.780848, 46.31836 ], [ -0.775833, 46.318467 ], [ -0.753457, 46.306946 ], [ -0.750476, 46.304259 ], [ -0.754669, 46.302444 ], [ -0.745248, 46.27959 ], [ -0.742668, 46.27666 ], [ -0.736065, 46.267727 ], [ -0.754364, 46.251582 ], [ -0.751462, 46.24507 ], [ -0.74701, 46.24324 ], [ -0.702818, 46.22456 ], [ -0.69905, 46.22262 ], [ -0.686332, 46.213702 ], [ -0.686375, 46.20719 ], [ -0.682412, 46.19769 ], [ -0.695072, 46.195992 ], [ -0.696475, 46.192738 ], [ -0.688524, 46.18223 ], [ -0.664928, 46.18181 ], [ -0.65539, 46.169953 ], [ -0.651379, 46.16837 ], [ -0.643554, 46.16502 ], [ -0.634622, 46.16572 ], [ -0.622797, 46.16092 ], [ -0.613016, 46.16152 ], [ -0.604641, 46.158432 ], [ -0.603764, 46.15516 ], [ -0.626849, 46.15216 ], [ -0.628183, 46.143701 ], [ -0.615966, 46.13838 ], [ -0.602388, 46.14251 ], [ -0.583081, 46.13956 ], [ -0.582225, 46.142537 ], [ -0.57933, 46.14826 ], [ -0.566285, 46.143301 ], [ -0.546856, 46.143864 ], [ -0.538043, 46.14072 ], [ -0.533284, 46.139718 ], [ -0.531324, 46.13667 ], [ -0.526793, 46.135557 ], [ -0.526724, 46.132269 ], [ -0.520492, 46.1283 ], [ -0.511059, 46.12817 ], [ -0.514345, 46.12583 ], [ -0.518414, 46.124198 ], [ -0.509761, 46.116795 ], [ -0.516389, 46.112417 ], [ -0.511963, 46.11131 ], [ -0.505467, 46.10719 ], [ -0.491715, 46.10798 ], [ -0.473602, 46.104757 ], [ -0.450867, 46.101981 ], [ -0.443727, 46.097637 ], [ -0.441444, 46.094705 ], [ -0.439449, 46.1036 ], [ -0.425235, 46.1117 ], [ -0.421226, 46.1133 ], [ -0.421421, 46.09334 ], [ -0.405371, 46.086257 ], [ -0.401451, 46.084248 ], [ -0.38644, 46.096874 ], [ -0.37348, 46.09406 ], [ -0.361875, 46.084166 ], [ -0.364418, 46.07853 ], [ -0.362733, 46.075551 ], [ -0.331541, 46.08246 ], [ -0.327183, 46.0813 ], [ -0.308001, 46.078279 ], [ -0.296411, 46.0839 ], [ -0.293282, 46.086593 ], [ -0.288816, 46.085118 ], [ -0.274533, 46.067579 ], [ -0.273131, 46.05731 ], [ -0.2686, 46.056439 ], [ -0.233049, 46.048464 ], [ -0.229108, 46.04792 ], [ -0.210661, 46.045432 ], [ -0.193898, 46.05117 ], [ -0.190974, 46.04361 ], [ -0.189839, 46.02964 ], [ -0.189132, 46.02614 ], [ -0.164509, 46.03576 ], [ -0.168185, 46.026801 ], [ -0.16345, 46.02232 ], [ -0.162963, 46.01902 ], [ -0.164194, 46.012763 ], [ -0.158305, 46.0082 ], [ -0.158512, 46.00504 ], [ -0.144795, 46.00467 ], [ -0.136825, 45.98918 ], [ -0.132598, 45.987606 ], [ -0.135611, 45.978538 ], [ -0.117338, 45.97749 ], [ -0.107459, 45.97055 ], [ -0.102937, 45.96966 ], [ -0.10397, 45.96002 ], [ -0.094759, 45.96029 ], [ -0.09101, 45.95105 ], [ -0.086417, 45.95071 ], [ -0.088011, 45.94781 ], [ -0.096632, 45.937075 ], [ -0.095793, 45.930888 ], [ -0.104844, 45.926954 ], [ -0.108875, 45.92881 ], [ -0.127676, 45.926731 ], [ -0.140453, 45.93135 ], [ -0.143225, 45.929 ], [ -0.151135, 45.92662 ], [ -0.148847, 45.918 ], [ -0.134002, 45.911253 ], [ -0.139758, 45.90306 ], [ -0.143335, 45.901504 ], [ -0.146811, 45.897956 ], [ -0.145407, 45.894841 ], [ -0.140027, 45.890124 ], [ -0.130954, 45.89102 ], [ -0.128002, 45.87494 ], [ -0.112861, 45.869328 ], [ -0.116157, 45.866939 ], [ -0.118752, 45.864002 ], [ -0.125127, 45.848568 ], [ -0.129816, 45.84803 ], [ -0.138514, 45.84565 ], [ -0.145858, 45.837169 ], [ -0.141039, 45.837 ], [ -0.137086, 45.82395 ], [ -0.136099, 45.82064 ], [ -0.151193, 45.79921 ], [ -0.148323, 45.789093 ], [ -0.150287, 45.786713 ], [ -0.156058, 45.779513 ], [ -0.16236, 45.7834 ], [ -0.157669, 45.788994 ], [ -0.179858, 45.78865 ], [ -0.183333, 45.790832 ], [ -0.187634, 45.78946 ], [ -0.203343, 45.778009 ], [ -0.221083, 45.775215 ], [ -0.221465, 45.775348 ], [ -0.22408, 45.77801 ], [ -0.231112, 45.78637 ], [ -0.232843, 45.789316 ], [ -0.23656, 45.7947 ], [ -0.241098, 45.79475 ], [ -0.242466, 45.79765 ], [ -0.239973, 45.803469 ], [ -0.24803, 45.80548 ], [ -0.275034, 45.806251 ], [ -0.278449, 45.804088 ], [ -0.29179, 45.80566 ], [ -0.299231, 45.802085 ], [ -0.29716, 45.7989 ], [ -0.304142, 45.790053 ], [ -0.312175, 45.78629 ], [ -0.316008, 45.78555 ], [ -0.319825, 45.784762 ], [ -0.339171, 45.787048 ], [ -0.343578, 45.785791 ], [ -0.366069, 45.780687 ], [ -0.369865, 45.78083 ], [ -0.373964, 45.78256 ], [ -0.401995, 45.786523 ], [ -0.404889, 45.770374 ], [ -0.418248, 45.76897 ], [ -0.425751, 45.76471 ], [ -0.449334, 45.766003 ], [ -0.450041, 45.762485 ], [ -0.463078, 45.751665 ], [ -0.4614, 45.74872 ], [ -0.46001, 45.739276 ], [ -0.415839, 45.74167 ], [ -0.403448, 45.73612 ], [ -0.404318, 45.7327 ], [ -0.419215, 45.723837 ], [ -0.420351, 45.70996 ], [ -0.421203, 45.70668 ], [ -0.415391, 45.69756 ], [ -0.42292, 45.685589 ], [ -0.410541, 45.683378 ], [ -0.407527, 45.68058 ], [ -0.382107, 45.658936 ], [ -0.382382, 45.65544 ], [ -0.387149, 45.655215 ], [ -0.395831, 45.65259 ], [ -0.40893, 45.65619 ], [ -0.410956, 45.6532 ], [ -0.431924, 45.62447 ], [ -0.427868, 45.622463 ], [ -0.415129, 45.6171 ], [ -0.405745, 45.619268 ], [ -0.40152, 45.619901 ], [ -0.387305, 45.62647 ], [ -0.380963, 45.622323 ], [ -0.380534, 45.619299 ], [ -0.376402, 45.60966 ], [ -0.359929, 45.59787 ], [ -0.347009, 45.594822 ], [ -0.341491, 45.589759 ], [ -0.341299, 45.58657 ], [ -0.331766, 45.58749 ], [ -0.328844, 45.5848 ], [ -0.323535, 45.58081 ], [ -0.319819, 45.579838 ], [ -0.311483, 45.576722 ], [ -0.301074, 45.565718 ], [ -0.29671, 45.564404 ], [ -0.310036, 45.546699 ], [ -0.321515, 45.54176 ], [ -0.32169, 45.534827 ], [ -0.320025, 45.534868 ], [ -0.303622, 45.52838 ], [ -0.289545, 45.529717 ], [ -0.281752, 45.52588 ], [ -0.283505, 45.51953 ], [ -0.279222, 45.52125 ], [ -0.266152, 45.525065 ], [ -0.255279, 45.51873 ], [ -0.263732, 45.507904 ], [ -0.256087, 45.503665 ], [ -0.246426, 45.50283 ], [ -0.240519, 45.494517 ], [ -0.242494, 45.490152 ], [ -0.246605, 45.49187 ], [ -0.257562, 45.486426 ], [ -0.259003, 45.47977 ], [ -0.267112, 45.471485 ], [ -0.280903, 45.47423 ], [ -0.285496, 45.45941 ], [ -0.2862, 45.45637 ], [ -0.281544, 45.45734 ], [ -0.268345, 45.455876 ], [ -0.265884, 45.449306 ], [ -0.254553, 45.442975 ], [ -0.254367, 45.440457 ], [ -0.251133, 45.43791 ], [ -0.248543, 45.435002 ], [ -0.25311, 45.421829 ], [ -0.246383, 45.417969 ], [ -0.236733, 45.41861 ], [ -0.234062, 45.4092 ], [ -0.248783, 45.4089 ], [ -0.251398, 45.402196 ], [ -0.274911, 45.39914 ], [ -0.278488, 45.392773 ], [ -0.286344, 45.388695 ], [ -0.300815, 45.38878 ], [ -0.302391, 45.38625 ], [ -0.310175, 45.38681 ], [ -0.311177, 45.383439 ], [ -0.31064, 45.37658 ], [ -0.304287, 45.371872 ], [ -0.295243, 45.37094 ], [ -0.290502, 45.36624 ], [ -0.28184, 45.36418 ], [ -0.27956, 45.35478 ], [ -0.271086, 45.35782 ], [ -0.246806, 45.35774 ], [ -0.24624, 45.347606 ], [ -0.247589, 45.34443 ], [ -0.26401, 45.33962 ], [ -0.277971, 45.34798 ], [ -0.277954, 45.34465 ], [ -0.282663, 45.338911 ], [ -0.281552, 45.338267 ], [ -0.279205, 45.33573 ], [ -0.290604, 45.32667 ], [ -0.285976, 45.32532 ], [ -0.283259, 45.308071 ], [ -0.279476, 45.305848 ], [ -0.257518, 45.298794 ], [ -0.258721, 45.305599 ], [ -0.253443, 45.311223 ], [ -0.230372, 45.31489 ], [ -0.228747, 45.321662 ], [ -0.20153, 45.31109 ], [ -0.196091, 45.305775 ], [ -0.178206, 45.30813 ], [ -0.161743, 45.30653 ], [ -0.15495, 45.302951 ], [ -0.150957, 45.301658 ], [ -0.147598, 45.29938 ], [ -0.144128, 45.294019 ], [ -0.145277, 45.28814 ], [ -0.130151, 45.29453 ], [ -0.113065, 45.290815 ], [ -0.108813, 45.28967 ], [ -0.113189, 45.270419 ], [ -0.112659, 45.254087 ], [ -0.115897, 45.251519 ], [ -0.120405, 45.250231 ], [ -0.11678, 45.24838 ], [ -0.099096, 45.246714 ], [ -0.094084, 45.24674 ], [ -0.059209, 45.24652 ], [ -0.049742, 45.24882 ], [ -0.046963, 45.248617 ], [ -0.044303, 45.248023 ], [ -0.040024, 45.24653 ], [ -0.032667, 45.23439 ], [ 0.00552, 45.22528 ], [ 0.005866, 45.22191 ], [ -0.002278, 45.198402 ], [ -0.002088, 45.19487 ], [ 0.000904, 45.193036 ], [ 0.004331, 45.19163 ], [ 0.001677, 45.18339 ], [ -0.002052, 45.181171 ], [ -0.019062, 45.165177 ], [ -0.014091, 45.15992 ], [ 0.000368, 45.15843 ], [ 0.003268, 45.15566 ], [ -0.001528, 45.15082 ], [ -0.036728, 45.140567 ], [ -0.035312, 45.137245 ], [ -0.02963, 45.12778 ], [ -0.041524, 45.112683 ], [ -0.0402, 45.10238 ] ] ], [ [ [ -1.301162, 45.89993 ], [ -1.353356, 45.92685 ], [ -1.376032, 45.945653 ], [ -1.386452, 45.95327 ], [ -1.386784, 45.96376 ], [ -1.394565, 45.976816 ], [ -1.387094, 45.99716 ], [ -1.400161, 46.015885 ], [ -1.411422, 46.04312 ], [ -1.406058, 46.047294 ], [ -1.372711, 46.03939 ], [ -1.3693, 46.02955 ], [ -1.361072, 46.02555 ], [ -1.35683, 46.023648 ], [ -1.326431, 46.00457 ], [ -1.323068, 46.002279 ], [ -1.315133, 45.994005 ], [ -1.296489, 45.98922 ], [ -1.246985, 45.98966 ], [ -1.237043, 45.982184 ], [ -1.234437, 45.9722 ], [ -1.235456, 45.968798 ], [ -1.23302, 45.96589 ], [ -1.239668, 45.961038 ], [ -1.239995, 45.954371 ], [ -1.229399, 45.94317 ], [ -1.229072, 45.9332 ], [ -1.23342, 45.92723 ], [ -1.218661, 45.909 ], [ -1.215088, 45.906534 ], [ -1.203275, 45.900012 ], [ -1.18902, 45.88581 ], [ -1.20483, 45.853215 ], [ -1.207707, 45.85034 ], [ -1.197561, 45.830464 ], [ -1.232551, 45.800796 ], [ -1.241321, 45.80385 ], [ -1.245668, 45.81024 ], [ -1.252422, 45.84181 ], [ -1.252876, 45.84535 ], [ -1.258919, 45.86445 ], [ -1.260258, 45.867586 ], [ -1.269096, 45.88018 ], [ -1.296207, 45.9005 ], [ -1.301162, 45.89993 ] ] ], [ [ [ -1.411792, 46.18415 ], [ -1.469685, 46.20316 ], [ -1.474627, 46.20276 ], [ -1.507011, 46.19471 ], [ -1.534358, 46.203576 ], [ -1.54204, 46.216474 ], [ -1.543808, 46.219777 ], [ -1.558825, 46.233761 ], [ -1.561443, 46.243812 ], [ -1.541635, 46.2437 ], [ -1.524338, 46.250851 ], [ -1.512976, 46.2578 ], [ -1.497754, 46.256911 ], [ -1.483687, 46.246941 ], [ -1.47755, 46.23358 ], [ -1.485159, 46.229692 ], [ -1.48982, 46.230744 ], [ -1.491397, 46.23713 ], [ -1.496368, 46.237674 ], [ -1.502456, 46.22509 ], [ -1.507355, 46.22572 ], [ -1.512849, 46.231681 ], [ -1.514974, 46.23491 ], [ -1.515061, 46.23076 ], [ -1.508679, 46.217343 ], [ -1.496107, 46.20792 ], [ -1.485438, 46.2074 ], [ -1.483874, 46.21083 ], [ -1.467656, 46.218738 ], [ -1.457596, 46.22859 ], [ -1.416731, 46.228827 ], [ -1.421022, 46.219524 ], [ -1.444398, 46.214094 ], [ -1.42478, 46.20524 ], [ -1.405421, 46.203256 ], [ -1.400518, 46.203347 ], [ -1.365155, 46.207164 ], [ -1.346362, 46.202131 ], [ -1.342125, 46.20013 ], [ -1.319331, 46.187118 ], [ -1.305229, 46.19024 ], [ -1.295734, 46.18822 ], [ -1.286629, 46.17657 ], [ -1.283824, 46.173727 ], [ -1.276545, 46.161638 ], [ -1.25765, 46.162817 ], [ -1.278824, 46.14411 ], [ -1.283543, 46.14523 ], [ -1.307983, 46.14303 ], [ -1.322358, 46.14533 ], [ -1.353497, 46.15464 ], [ -1.360217, 46.15966 ], [ -1.363484, 46.162234 ], [ -1.38605, 46.17482 ], [ -1.407556, 46.1825 ], [ -1.411792, 46.18415 ] ] ], [ [ [ -1.175595, 46.008004 ], [ -1.177712, 46.008963 ], [ -1.178415, 46.012427 ], [ -1.173734, 46.02407 ], [ -1.166338, 46.025028 ], [ -1.164008, 46.024347 ], [ -1.157395, 46.0218 ], [ -1.155764, 46.018716 ], [ -1.170408, 46.018791 ], [ -1.170214, 46.013847 ], [ -1.173909, 46.00932 ], [ -1.175595, 46.008004 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "18", "CODE_DEPT": "18", "NOM_DEPT": "CHER", "CODE_CHF": "033", "NOM_CHF": "BOURGES", "X_CHF_LIEU": "6541", "Y_CHF_LIEU": "66649", "X_CENTROID": "6613", "Y_CENTROID": "66628", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.281048, 46.420405 ], [ 2.276283, 46.421276 ], [ 2.256961, 46.423133 ], [ 2.253658, 46.425651 ], [ 2.248883, 46.426259 ], [ 2.220649, 46.423584 ], [ 2.197831, 46.428298 ], [ 2.194075, 46.42597 ], [ 2.184897, 46.42315 ], [ 2.180482, 46.4232 ], [ 2.167786, 46.42408 ], [ 2.155265, 46.43459 ], [ 2.151402, 46.4577 ], [ 2.193194, 46.47064 ], [ 2.198198, 46.47687 ], [ 2.20017, 46.480165 ], [ 2.200164, 46.48061 ], [ 2.203705, 46.48628 ], [ 2.194701, 46.50625 ], [ 2.189967, 46.505406 ], [ 2.183065, 46.50993 ], [ 2.182754, 46.513297 ], [ 2.181453, 46.526985 ], [ 2.160161, 46.55405 ], [ 2.1587, 46.557346 ], [ 2.173675, 46.565857 ], [ 2.16798, 46.585653 ], [ 2.167145, 46.588988 ], [ 2.176001, 46.6002 ], [ 2.180742, 46.600297 ], [ 2.184614, 46.60257 ], [ 2.185257, 46.612855 ], [ 2.187352, 46.61605 ], [ 2.181273, 46.62579 ], [ 2.189447, 46.642141 ], [ 2.179982, 46.6429 ], [ 2.175944, 46.64884 ], [ 2.166749, 46.64733 ], [ 2.151695, 46.65931 ], [ 2.13972, 46.6656 ], [ 2.137272, 46.67231 ], [ 2.154034, 46.68882 ], [ 2.155448, 46.69216 ], [ 2.141157, 46.69554 ], [ 2.128758, 46.706431 ], [ 2.119793, 46.70959 ], [ 2.11008, 46.71115 ], [ 2.100843, 46.70849 ], [ 2.092068, 46.71187 ], [ 2.087097, 46.712456 ], [ 2.088115, 46.715751 ], [ 2.092145, 46.72526 ], [ 2.074233, 46.73444 ], [ 2.065751, 46.74249 ], [ 2.070117, 46.752192 ], [ 2.094304, 46.75597 ], [ 2.116105, 46.778533 ], [ 2.105793, 46.79025 ], [ 2.104205, 46.793551 ], [ 2.100792, 46.79614 ], [ 2.071568, 46.809851 ], [ 2.047999, 46.832332 ], [ 2.050804, 46.8362 ], [ 2.069292, 46.83547 ], [ 2.072823, 46.837658 ], [ 2.077817, 46.838005 ], [ 2.092409, 46.852834 ], [ 2.090268, 46.86857 ], [ 2.120998, 46.88019 ], [ 2.126204, 46.879865 ], [ 2.14007, 46.88985 ], [ 2.153136, 46.908457 ], [ 2.154965, 46.91167 ], [ 2.151967, 46.91433 ], [ 2.143641, 46.91732 ], [ 2.110319, 46.91317 ], [ 2.106058, 46.91498 ], [ 2.070685, 46.934023 ], [ 2.070203, 46.954423 ], [ 2.081369, 46.95665 ], [ 2.08457, 46.958635 ], [ 2.089985, 46.96355 ], [ 2.087045, 46.97252 ], [ 2.091833, 46.977997 ], [ 2.094592, 46.98057 ], [ 2.094825, 46.989474 ], [ 2.105175, 46.99534 ], [ 2.108856, 46.997191 ], [ 2.106187, 47.0002 ], [ 2.096889, 47.01241 ], [ 2.094267, 47.014905 ], [ 2.08304, 47.018634 ], [ 2.081354, 47.021754 ], [ 2.064618, 47.027941 ], [ 2.053482, 47.03822 ], [ 2.031413, 47.04235 ], [ 2.02938, 47.045532 ], [ 2.0385, 47.057844 ], [ 2.040447, 47.060958 ], [ 2.044557, 47.066944 ], [ 2.053304, 47.07014 ], [ 2.055653, 47.076723 ], [ 2.048458, 47.09607 ], [ 2.053597, 47.101511 ], [ 2.050699, 47.10435 ], [ 2.031199, 47.1049 ], [ 2.026221, 47.096476 ], [ 2.006573, 47.09521 ], [ 2.004464, 47.10161 ], [ 2.009587, 47.11127 ], [ 2.00024, 47.11392 ], [ 1.999913, 47.11732 ], [ 1.99666, 47.127 ], [ 1.992226, 47.12565 ], [ 1.974874, 47.12104 ], [ 1.96314, 47.12418 ], [ 1.947311, 47.116674 ], [ 1.943597, 47.11505 ], [ 1.937202, 47.11093 ], [ 1.920261, 47.10403 ], [ 1.906385, 47.10811 ], [ 1.892733, 47.103766 ], [ 1.887899, 47.104764 ], [ 1.883068, 47.100512 ], [ 1.878812, 47.10229 ], [ 1.846675, 47.11098 ], [ 1.843601, 47.11348 ], [ 1.828448, 47.121302 ], [ 1.809476, 47.12202 ], [ 1.805415, 47.12016 ], [ 1.795823, 47.12081 ], [ 1.780997, 47.128943 ], [ 1.777883, 47.130107 ], [ 1.774451, 47.130755 ], [ 1.809816, 47.15621 ], [ 1.811046, 47.16327 ], [ 1.813917, 47.16657 ], [ 1.823578, 47.17397 ], [ 1.837527, 47.17678 ], [ 1.842237, 47.17758 ], [ 1.837444, 47.19837 ], [ 1.838892, 47.215759 ], [ 1.839079, 47.219308 ], [ 1.853088, 47.220528 ], [ 1.875333, 47.20708 ], [ 1.905858, 47.217887 ], [ 1.908321, 47.22089 ], [ 1.915639, 47.23418 ], [ 1.912241, 47.240753 ], [ 1.909522, 47.243789 ], [ 1.892391, 47.24875 ], [ 1.895493, 47.2548 ], [ 1.922685, 47.26385 ], [ 1.923006, 47.27359 ], [ 1.941373, 47.290064 ], [ 1.971437, 47.27765 ], [ 1.975822, 47.2759 ], [ 1.975957, 47.27577 ], [ 1.996609, 47.265751 ], [ 2.010461, 47.26841 ], [ 2.020248, 47.267006 ], [ 2.024529, 47.26512 ], [ 2.058927, 47.28037 ], [ 2.088978, 47.28549 ], [ 2.094206, 47.285388 ], [ 2.103938, 47.28571 ], [ 2.111136, 47.281729 ], [ 2.11426, 47.279178 ], [ 2.128373, 47.280176 ], [ 2.132895, 47.28119 ], [ 2.139909, 47.293434 ], [ 2.153429, 47.29787 ], [ 2.157151, 47.30021 ], [ 2.147988, 47.316361 ], [ 2.13502, 47.32174 ], [ 2.128526, 47.33112 ], [ 2.119391, 47.333433 ], [ 2.126704, 47.345417 ], [ 2.114665, 47.36701 ], [ 2.111377, 47.36953 ], [ 2.101881, 47.367644 ], [ 2.097085, 47.36681 ], [ 2.102739, 47.391616 ], [ 2.116926, 47.410801 ], [ 2.115628, 47.41792 ], [ 2.114999, 47.42148 ], [ 2.136692, 47.40632 ], [ 2.188242, 47.4357 ], [ 2.204829, 47.406079 ], [ 2.225176, 47.40753 ], [ 2.230388, 47.40753 ], [ 2.240389, 47.41299 ], [ 2.243692, 47.414827 ], [ 2.246699, 47.4424 ], [ 2.238642, 47.45097 ], [ 2.244993, 47.45995 ], [ 2.238643, 47.47238 ], [ 2.245237, 47.48872 ], [ 2.247745, 47.491732 ], [ 2.243082, 47.492764 ], [ 2.234995, 47.496357 ], [ 2.219441, 47.49544 ], [ 2.201325, 47.488183 ], [ 2.19607, 47.4879 ], [ 2.214491, 47.52043 ], [ 2.197561, 47.54612 ], [ 2.193775, 47.54857 ], [ 2.131382, 47.550696 ], [ 2.125186, 47.55636 ], [ 2.127704, 47.569933 ], [ 2.121466, 47.57964 ], [ 2.119575, 47.58295 ], [ 2.138094, 47.588815 ], [ 2.15629, 47.601046 ], [ 2.197252, 47.607447 ], [ 2.233959, 47.62067 ], [ 2.239214, 47.62098 ], [ 2.284817, 47.628675 ], [ 2.289632, 47.62905 ], [ 2.293606, 47.62262 ], [ 2.303059, 47.61954 ], [ 2.307202, 47.617324 ], [ 2.323488, 47.60856 ], [ 2.343358, 47.60448 ], [ 2.360156, 47.59105 ], [ 2.372689, 47.585442 ], [ 2.379655, 47.590592 ], [ 2.394291, 47.59292 ], [ 2.400349, 47.598576 ], [ 2.43345, 47.60822 ], [ 2.438079, 47.60977 ], [ 2.44743, 47.606577 ], [ 2.456411, 47.593837 ], [ 2.490301, 47.57177 ], [ 2.491358, 47.56829 ], [ 2.506549, 47.56809 ], [ 2.520343, 47.57237 ], [ 2.544971, 47.57467 ], [ 2.564341, 47.571147 ], [ 2.567581, 47.56849 ], [ 2.573916, 47.559625 ], [ 2.592984, 47.55814 ], [ 2.603024, 47.550996 ], [ 2.607079, 47.54915 ], [ 2.616728, 47.538566 ], [ 2.613325, 47.52941 ], [ 2.612018, 47.526389 ], [ 2.655871, 47.510396 ], [ 2.656286, 47.49335 ], [ 2.664608, 47.485757 ], [ 2.669382, 47.48468 ], [ 2.682059, 47.48336 ], [ 2.686362, 47.483189 ], [ 2.714574, 47.48925 ], [ 2.725405, 47.49575 ], [ 2.727407, 47.49889 ], [ 2.72176, 47.504415 ], [ 2.72549, 47.510266 ], [ 2.723602, 47.52338 ], [ 2.728377, 47.532938 ], [ 2.727151, 47.536221 ], [ 2.73182, 47.538095 ], [ 2.742696, 47.526517 ], [ 2.762558, 47.524957 ], [ 2.783529, 47.51519 ], [ 2.794601, 47.500227 ], [ 2.797521, 47.49734 ], [ 2.802623, 47.49678 ], [ 2.806484, 47.494459 ], [ 2.826262, 47.49807 ], [ 2.841217, 47.51181 ], [ 2.870551, 47.51828 ], [ 2.874625, 47.52042 ], [ 2.887256, 47.510615 ], [ 2.889574, 47.507764 ], [ 2.891632, 47.50194 ], [ 2.892395, 47.49898 ], [ 2.89713, 47.488733 ], [ 2.897163, 47.48515 ], [ 2.91778, 47.463787 ], [ 2.919191, 47.46062 ], [ 2.919831, 47.45873 ], [ 2.931885, 47.43681 ], [ 2.931557, 47.43343 ], [ 2.920906, 47.423155 ], [ 2.91962, 47.413657 ], [ 2.919771, 47.41047 ], [ 2.893026, 47.369085 ], [ 2.890555, 47.365995 ], [ 2.88208, 47.357587 ], [ 2.879782, 47.35453 ], [ 2.877113, 47.35156 ], [ 2.870247, 47.342343 ], [ 2.873695, 47.3291 ], [ 2.879024, 47.32028 ], [ 2.89495, 47.31377 ], [ 2.899453, 47.31274 ], [ 2.909119, 47.310584 ], [ 2.912962, 47.30832 ], [ 2.916129, 47.305647 ], [ 2.923336, 47.300844 ], [ 2.92678, 47.29845 ], [ 2.941563, 47.285155 ], [ 2.973547, 47.26994 ], [ 2.981658, 47.262509 ], [ 2.982757, 47.256558 ], [ 2.981806, 47.25352 ], [ 2.979026, 47.229064 ], [ 2.991122, 47.209691 ], [ 2.993844, 47.20668 ], [ 2.995918, 47.203804 ], [ 2.997741, 47.200851 ], [ 3.015206, 47.16243 ], [ 3.015945, 47.159095 ], [ 3.019283, 47.15628 ], [ 3.020588, 47.152981 ], [ 3.017179, 47.13978 ], [ 3.02496, 47.13111 ], [ 3.028283, 47.12844 ], [ 3.029382, 47.11166 ], [ 3.03, 47.108315 ], [ 3.03025, 47.107055 ], [ 3.030102, 47.103508 ], [ 3.031362, 47.092884 ], [ 3.022524, 47.08016 ], [ 3.020041, 47.06679 ], [ 3.022241, 47.063652 ], [ 3.050517, 47.050679 ], [ 3.053966, 47.04825 ], [ 3.060101, 47.04586 ], [ 3.063618, 47.04617 ], [ 3.072676, 47.033282 ], [ 3.074778, 47.02999 ], [ 3.074759, 47.015859 ], [ 3.073675, 47.01237 ], [ 3.065841, 47.00046 ], [ 3.065324, 46.997174 ], [ 3.062751, 46.98026 ], [ 3.075119, 46.96206 ], [ 3.079337, 46.96024 ], [ 3.078275, 46.953427 ], [ 3.068254, 46.941521 ], [ 3.066029, 46.93843 ], [ 3.064553, 46.93573 ], [ 3.050227, 46.909154 ], [ 3.058074, 46.90028 ], [ 3.061145, 46.89738 ], [ 3.062334, 46.892347 ], [ 3.063605, 46.889951 ], [ 3.069402, 46.852258 ], [ 3.056647, 46.84197 ], [ 3.054584, 46.83877 ], [ 3.05694, 46.83391 ], [ 3.058486, 46.831592 ], [ 3.057639, 46.825136 ], [ 3.041154, 46.812673 ], [ 3.039067, 46.80962 ], [ 3.032122, 46.798063 ], [ 3.032068, 46.794911 ], [ 3.027584, 46.79337 ], [ 3.01614, 46.79983 ], [ 2.996604, 46.79696 ], [ 2.979899, 46.80342 ], [ 2.959915, 46.803877 ], [ 2.952503, 46.79268 ], [ 2.944387, 46.792993 ], [ 2.93989, 46.79319 ], [ 2.936099, 46.795393 ], [ 2.912941, 46.790192 ], [ 2.908913, 46.78447 ], [ 2.910924, 46.781348 ], [ 2.898967, 46.775675 ], [ 2.894344, 46.77417 ], [ 2.880422, 46.77003 ], [ 2.875346, 46.760642 ], [ 2.844634, 46.742362 ], [ 2.843818, 46.739228 ], [ 2.845727, 46.726616 ], [ 2.841168, 46.727321 ], [ 2.827485, 46.735333 ], [ 2.822561, 46.735415 ], [ 2.793416, 46.733557 ], [ 2.782748, 46.722462 ], [ 2.77475, 46.718953 ], [ 2.771375, 46.72126 ], [ 2.758521, 46.717659 ], [ 2.755115, 46.72391 ], [ 2.743797, 46.73055 ], [ 2.734528, 46.74622 ], [ 2.730642, 46.74799 ], [ 2.704833, 46.73904 ], [ 2.703898, 46.7256 ], [ 2.698463, 46.72106 ], [ 2.688603, 46.72118 ], [ 2.676175, 46.71084 ], [ 2.677795, 46.704612 ], [ 2.674262, 46.702279 ], [ 2.656179, 46.69735 ], [ 2.648081, 46.68896 ], [ 2.628221, 46.690308 ], [ 2.623478, 46.68931 ], [ 2.621638, 46.679274 ], [ 2.631838, 46.672203 ], [ 2.63156, 46.6688 ], [ 2.623914, 46.65663 ], [ 2.60704, 46.662639 ], [ 2.606155, 46.669299 ], [ 2.570551, 46.65927 ], [ 2.570439, 46.65681 ], [ 2.566995, 46.65248 ], [ 2.588997, 46.6481 ], [ 2.5931, 46.64658 ], [ 2.596325, 46.636723 ], [ 2.584599, 46.62636 ], [ 2.588657, 46.61695 ], [ 2.572922, 46.61045 ], [ 2.568383, 46.609392 ], [ 2.57738, 46.60673 ], [ 2.583888, 46.59459 ], [ 2.598461, 46.59531 ], [ 2.60834, 46.57295 ], [ 2.609356, 46.569613 ], [ 2.605668, 46.563288 ], [ 2.613262, 46.55461 ], [ 2.576552, 46.53852 ], [ 2.570133, 46.533409 ], [ 2.55179, 46.5284 ], [ 2.540403, 46.521921 ], [ 2.536652, 46.519709 ], [ 2.532682, 46.521701 ], [ 2.529408, 46.5278 ], [ 2.520282, 46.529925 ], [ 2.50976, 46.52345 ], [ 2.500235, 46.52215 ], [ 2.496526, 46.531155 ], [ 2.482929, 46.532697 ], [ 2.478655, 46.530724 ], [ 2.446148, 46.521044 ], [ 2.437939, 46.52528 ], [ 2.427808, 46.52598 ], [ 2.414634, 46.520833 ], [ 2.384099, 46.5183 ], [ 2.3683, 46.51843 ], [ 2.363697, 46.51724 ], [ 2.334315, 46.499566 ], [ 2.324969, 46.487742 ], [ 2.32963, 46.48183 ], [ 2.330814, 46.478862 ], [ 2.321409, 46.46891 ], [ 2.316996, 46.468505 ], [ 2.313097, 46.47077 ], [ 2.305465, 46.475433 ], [ 2.284666, 46.45136 ], [ 2.278432, 46.427215 ], [ 2.281048, 46.420405 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "19", "CODE_DEPT": "19", "NOM_DEPT": "CORREZE", "CODE_CHF": "272", "NOM_CHF": "TULLE", "X_CHF_LIEU": "6037", "Y_CHF_LIEU": "64636", "X_CENTROID": "6120", "Y_CENTROID": "64736", "CODE_REG": "74", "NOM_REGION": "LIMOUSIN" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.062914, 44.976506 ], [ 2.058581, 44.97541 ], [ 2.045121, 44.98367 ], [ 2.040848, 44.98198 ], [ 2.008268, 44.976231 ], [ 1.984336, 44.973719 ], [ 1.9566, 44.95901 ], [ 1.95099, 44.953158 ], [ 1.946191, 44.95348 ], [ 1.941333, 44.958208 ], [ 1.94015, 44.97184 ], [ 1.936522, 44.973164 ], [ 1.927179, 44.978801 ], [ 1.907779, 44.978243 ], [ 1.888368, 44.96292 ], [ 1.887091, 44.95634 ], [ 1.851053, 44.94625 ], [ 1.848412, 44.943958 ], [ 1.842772, 44.937083 ], [ 1.838527, 44.93818 ], [ 1.83589, 44.944323 ], [ 1.831572, 44.94342 ], [ 1.829361, 44.933962 ], [ 1.827628, 44.93073 ], [ 1.819741, 44.92722 ], [ 1.810042, 44.92795 ], [ 1.800798, 44.92038 ], [ 1.800167, 44.92029 ], [ 1.801468, 44.92641 ], [ 1.788603, 44.934606 ], [ 1.785701, 44.936906 ], [ 1.784546, 44.93052 ], [ 1.777453, 44.926209 ], [ 1.774608, 44.92354 ], [ 1.774029, 44.92453 ], [ 1.771447, 44.92727 ], [ 1.76701, 44.933045 ], [ 1.750554, 44.93879 ], [ 1.753982, 44.940851 ], [ 1.755329, 44.944135 ], [ 1.748795, 44.95683 ], [ 1.740734, 44.96058 ], [ 1.736182, 44.96053 ], [ 1.726256, 44.967011 ], [ 1.712968, 44.967326 ], [ 1.71088, 44.96709 ], [ 1.708767, 44.96964 ], [ 1.707508, 44.972512 ], [ 1.703377, 44.98657 ], [ 1.700373, 44.98916 ], [ 1.692273, 44.992577 ], [ 1.689269, 44.994604 ], [ 1.684371, 45.00266 ], [ 1.680078, 45.003329 ], [ 1.671411, 45.004307 ], [ 1.653199, 45.018955 ], [ 1.651891, 45.025288 ], [ 1.64737, 45.025837 ], [ 1.63238, 45.03233 ], [ 1.627746, 45.03332 ], [ 1.60956, 45.032305 ], [ 1.608959, 45.02889 ], [ 1.608069, 45.03353 ], [ 1.603883, 45.03535 ], [ 1.57097, 45.03956 ], [ 1.55204, 45.02847 ], [ 1.543942, 45.03125 ], [ 1.540315, 45.04467 ], [ 1.526759, 45.04428 ], [ 1.522661, 45.042659 ], [ 1.5058, 45.039498 ], [ 1.47993, 45.026756 ], [ 1.477131, 45.02692 ], [ 1.477292, 45.020092 ], [ 1.460357, 45.01397 ], [ 1.448262, 45.019313 ], [ 1.444114, 45.02006 ], [ 1.434641, 45.0301 ], [ 1.431329, 45.032701 ], [ 1.411599, 45.05263 ], [ 1.409056, 45.0594 ], [ 1.399564, 45.06118 ], [ 1.401752, 45.06421 ], [ 1.406003, 45.07022 ], [ 1.401222, 45.07609 ], [ 1.398488, 45.0788 ], [ 1.391702, 45.087593 ], [ 1.393265, 45.09735 ], [ 1.389354, 45.09892 ], [ 1.383285, 45.103007 ], [ 1.380056, 45.100798 ], [ 1.378249, 45.10609 ], [ 1.382956, 45.105605 ], [ 1.392448, 45.105877 ], [ 1.408918, 45.11252 ], [ 1.413525, 45.11825 ], [ 1.413094, 45.12491 ], [ 1.409614, 45.1265 ], [ 1.401786, 45.128427 ], [ 1.398389, 45.129747 ], [ 1.393954, 45.13137 ], [ 1.380532, 45.135712 ], [ 1.366379, 45.13236 ], [ 1.351991, 45.134033 ], [ 1.351916, 45.13657 ], [ 1.351983, 45.141643 ], [ 1.347115, 45.141445 ], [ 1.333737, 45.13773 ], [ 1.320997, 45.14245 ], [ 1.308754, 45.137016 ], [ 1.290473, 45.14188 ], [ 1.280205, 45.14927 ], [ 1.254436, 45.158506 ], [ 1.255055, 45.16477 ], [ 1.268222, 45.16508 ], [ 1.277911, 45.17209 ], [ 1.281525, 45.174228 ], [ 1.285709, 45.176048 ], [ 1.2914, 45.18565 ], [ 1.289594, 45.188879 ], [ 1.286019, 45.191265 ], [ 1.272148, 45.201147 ], [ 1.233456, 45.19842 ], [ 1.228376, 45.20436 ], [ 1.231275, 45.214566 ], [ 1.233398, 45.21958 ], [ 1.233608, 45.222195 ], [ 1.238262, 45.223314 ], [ 1.260952, 45.229695 ], [ 1.277687, 45.242085 ], [ 1.276285, 45.2557 ], [ 1.271874, 45.25731 ], [ 1.257397, 45.254983 ], [ 1.239385, 45.260447 ], [ 1.240207, 45.263468 ], [ 1.238364, 45.268114 ], [ 1.22706, 45.271844 ], [ 1.232076, 45.287838 ], [ 1.238945, 45.29172 ], [ 1.241603, 45.301309 ], [ 1.2384, 45.3025 ], [ 1.240886, 45.305423 ], [ 1.235803, 45.32204 ], [ 1.240647, 45.322279 ], [ 1.2599, 45.32065 ], [ 1.274091, 45.32988 ], [ 1.281923, 45.34213 ], [ 1.285155, 45.35205 ], [ 1.302753, 45.358067 ], [ 1.307725, 45.357971 ], [ 1.311868, 45.35955 ], [ 1.319877, 45.367205 ], [ 1.323231, 45.38312 ], [ 1.318722, 45.38428 ], [ 1.29964, 45.39431 ], [ 1.281683, 45.38509 ], [ 1.274016, 45.39287 ], [ 1.277897, 45.39923 ], [ 1.26411, 45.39816 ], [ 1.260222, 45.40025 ], [ 1.258724, 45.41379 ], [ 1.265645, 45.417798 ], [ 1.279872, 45.41513 ], [ 1.289192, 45.4173 ], [ 1.289382, 45.42068 ], [ 1.288271, 45.433529 ], [ 1.272393, 45.437303 ], [ 1.269663, 45.439936 ], [ 1.253152, 45.44422 ], [ 1.25548, 45.45036 ], [ 1.263341, 45.453897 ], [ 1.263869, 45.467308 ], [ 1.269155, 45.47636 ], [ 1.275609, 45.47795 ], [ 1.27885, 45.47709 ], [ 1.286405, 45.48075 ], [ 1.287191, 45.48724 ], [ 1.285317, 45.490281 ], [ 1.345901, 45.46874 ], [ 1.350078, 45.466897 ], [ 1.368894, 45.48956 ], [ 1.375566, 45.49433 ], [ 1.384904, 45.495567 ], [ 1.3896, 45.49616 ], [ 1.391455, 45.50729 ], [ 1.395821, 45.50867 ], [ 1.408944, 45.526335 ], [ 1.417346, 45.529588 ], [ 1.426618, 45.52979 ], [ 1.435222, 45.521876 ], [ 1.439542, 45.52041 ], [ 1.452689, 45.53505 ], [ 1.453415, 45.55222 ], [ 1.473136, 45.55342 ], [ 1.478789, 45.559077 ], [ 1.480434, 45.56594 ], [ 1.488061, 45.56226 ], [ 1.492228, 45.560861 ], [ 1.491524, 45.5523 ], [ 1.492475, 45.54939 ], [ 1.511347, 45.55214 ], [ 1.516971, 45.55755 ], [ 1.517394, 45.564276 ], [ 1.541999, 45.555015 ], [ 1.54682, 45.55446 ], [ 1.558783, 45.550945 ], [ 1.571207, 45.55529 ], [ 1.584891, 45.55608 ], [ 1.590755, 45.572037 ], [ 1.592897, 45.575027 ], [ 1.600404, 45.57942 ], [ 1.625187, 45.578705 ], [ 1.64933, 45.59055 ], [ 1.651973, 45.59315 ], [ 1.658937, 45.59694 ], [ 1.659864, 45.606349 ], [ 1.664765, 45.61169 ], [ 1.668273, 45.614149 ], [ 1.696303, 45.633651 ], [ 1.710733, 45.64134 ], [ 1.724169, 45.63886 ], [ 1.750205, 45.64571 ], [ 1.752899, 45.65208 ], [ 1.753465, 45.65546 ], [ 1.763797, 45.654577 ], [ 1.765424, 45.657648 ], [ 1.77472, 45.65831 ], [ 1.783086, 45.673285 ], [ 1.785834, 45.68266 ], [ 1.794815, 45.680913 ], [ 1.801385, 45.672986 ], [ 1.802214, 45.676219 ], [ 1.815294, 45.679771 ], [ 1.819797, 45.67404 ], [ 1.823414, 45.67191 ], [ 1.826437, 45.665046 ], [ 1.84507, 45.663374 ], [ 1.854027, 45.67058 ], [ 1.874816, 45.664666 ], [ 1.87902, 45.666383 ], [ 1.882191, 45.679824 ], [ 1.901422, 45.67858 ], [ 1.909555, 45.6818 ], [ 1.907303, 45.69176 ], [ 1.898709, 45.694864 ], [ 1.898731, 45.698278 ], [ 1.910664, 45.703788 ], [ 1.918664, 45.712069 ], [ 1.928036, 45.71138 ], [ 1.934638, 45.706305 ], [ 1.944024, 45.70684 ], [ 1.943714, 45.71365 ], [ 1.9562, 45.723716 ], [ 1.980317, 45.722496 ], [ 1.982496, 45.7194 ], [ 1.991336, 45.72249 ], [ 1.99766, 45.73183 ], [ 2.00152, 45.748793 ], [ 2.014127, 45.754487 ], [ 2.038881, 45.755863 ], [ 2.044947, 45.761444 ], [ 2.048767, 45.76373 ], [ 2.053694, 45.763057 ], [ 2.060696, 45.7538 ], [ 2.082889, 45.745972 ], [ 2.083935, 45.73946 ], [ 2.084469, 45.73596 ], [ 2.08469, 45.728048 ], [ 2.097347, 45.733337 ], [ 2.11409, 45.726878 ], [ 2.129914, 45.734502 ], [ 2.143627, 45.72508 ], [ 2.152469, 45.72287 ], [ 2.156851, 45.72131 ], [ 2.160591, 45.729854 ], [ 2.160912, 45.735836 ], [ 2.174253, 45.732035 ], [ 2.184581, 45.720556 ], [ 2.203401, 45.717134 ], [ 2.195961, 45.704519 ], [ 2.19386, 45.701397 ], [ 2.197924, 45.699454 ], [ 2.210924, 45.702562 ], [ 2.211855, 45.70939 ], [ 2.21268, 45.712786 ], [ 2.222647, 45.69783 ], [ 2.232023, 45.69821 ], [ 2.237879, 45.69293 ], [ 2.24665, 45.694288 ], [ 2.257715, 45.688436 ], [ 2.266579, 45.69055 ], [ 2.271074, 45.691648 ], [ 2.271641, 45.66424 ], [ 2.286451, 45.6651 ], [ 2.29798, 45.671512 ], [ 2.306856, 45.674584 ], [ 2.320098, 45.67054 ], [ 2.341309, 45.68422 ], [ 2.348835, 45.69316 ], [ 2.347585, 45.70004 ], [ 2.345206, 45.70667 ], [ 2.348543, 45.70921 ], [ 2.362824, 45.712529 ], [ 2.367805, 45.71312 ], [ 2.37093, 45.71294 ], [ 2.374044, 45.712718 ], [ 2.381776, 45.708627 ], [ 2.410602, 45.70901 ], [ 2.431662, 45.70099 ], [ 2.435856, 45.699275 ], [ 2.444511, 45.707567 ], [ 2.453993, 45.709243 ], [ 2.466775, 45.71935 ], [ 2.471361, 45.719727 ], [ 2.474037, 45.728996 ], [ 2.487671, 45.73686 ], [ 2.492126, 45.73767 ], [ 2.521626, 45.70949 ], [ 2.521281, 45.69582 ], [ 2.52583, 45.69435 ], [ 2.526321, 45.685 ], [ 2.528684, 45.6822 ], [ 2.524542, 45.681215 ], [ 2.514537, 45.67214 ], [ 2.51449, 45.66581 ], [ 2.526007, 45.65567 ], [ 2.518942, 45.64708 ], [ 2.51907, 45.64427 ], [ 2.517926, 45.63991 ], [ 2.513977, 45.639441 ], [ 2.486287, 45.64082 ], [ 2.482026, 45.63521 ], [ 2.478432, 45.607917 ], [ 2.474686, 45.60655 ], [ 2.465476, 45.60105 ], [ 2.463472, 45.59468 ], [ 2.47428, 45.579019 ], [ 2.488221, 45.569016 ], [ 2.496294, 45.556832 ], [ 2.507604, 45.553353 ], [ 2.51588, 45.55388 ], [ 2.516673, 45.55115 ], [ 2.518148, 45.543574 ], [ 2.51498, 45.54099 ], [ 2.517911, 45.53107 ], [ 2.514877, 45.524893 ], [ 2.518362, 45.518911 ], [ 2.509567, 45.50681 ], [ 2.508997, 45.50023 ], [ 2.510569, 45.497743 ], [ 2.51389, 45.49284 ], [ 2.508409, 45.478508 ], [ 2.509307, 45.472397 ], [ 2.503695, 45.461684 ], [ 2.499701, 45.460433 ], [ 2.501585, 45.451517 ], [ 2.496878, 45.44716 ], [ 2.496051, 45.44383 ], [ 2.492279, 45.42402 ], [ 2.487538, 45.41817 ], [ 2.517482, 45.40205 ], [ 2.522233, 45.402603 ], [ 2.527255, 45.390756 ], [ 2.52351, 45.38481 ], [ 2.523372, 45.381546 ], [ 2.520664, 45.38433 ], [ 2.508434, 45.38013 ], [ 2.485575, 45.37879 ], [ 2.480204, 45.36969 ], [ 2.476367, 45.371566 ], [ 2.46839, 45.38281 ], [ 2.441552, 45.384527 ], [ 2.437851, 45.387822 ], [ 2.435245, 45.39019 ], [ 2.423124, 45.396959 ], [ 2.418301, 45.397358 ], [ 2.404119, 45.39802 ], [ 2.396444, 45.402168 ], [ 2.393588, 45.40852 ], [ 2.380991, 45.41354 ], [ 2.376968, 45.41432 ], [ 2.361707, 45.414987 ], [ 2.355135, 45.415031 ], [ 2.35025, 45.409609 ], [ 2.368799, 45.386005 ], [ 2.363485, 45.3803 ], [ 2.364622, 45.37468 ], [ 2.364432, 45.35775 ], [ 2.351509, 45.347654 ], [ 2.358556, 45.338987 ], [ 2.358813, 45.335521 ], [ 2.353415, 45.32979 ], [ 2.339866, 45.32581 ], [ 2.335034, 45.326423 ], [ 2.31693, 45.321415 ], [ 2.306146, 45.310012 ], [ 2.305283, 45.30654 ], [ 2.290328, 45.288473 ], [ 2.276134, 45.288184 ], [ 2.273244, 45.28967 ], [ 2.269695, 45.28989 ], [ 2.267932, 45.287185 ], [ 2.261734, 45.28323 ], [ 2.26155, 45.279768 ], [ 2.25783, 45.26984 ], [ 2.244194, 45.266343 ], [ 2.239008, 45.26047 ], [ 2.238564, 45.24721 ], [ 2.225317, 45.24375 ], [ 2.221133, 45.23755 ], [ 2.2023, 45.226575 ], [ 2.203062, 45.22316 ], [ 2.198876, 45.22183 ], [ 2.191163, 45.223055 ], [ 2.192536, 45.21975 ], [ 2.191141, 45.203443 ], [ 2.198415, 45.19893 ], [ 2.201689, 45.18198 ], [ 2.233009, 45.16731 ], [ 2.230423, 45.161921 ], [ 2.225778, 45.16092 ], [ 2.211364, 45.160464 ], [ 2.210419, 45.147158 ], [ 2.20141, 45.13915 ], [ 2.193102, 45.13566 ], [ 2.178793, 45.1363 ], [ 2.181103, 45.133215 ], [ 2.187932, 45.11671 ], [ 2.178862, 45.10476 ], [ 2.17937, 45.09437 ], [ 2.172776, 45.08128 ], [ 2.168152, 45.081073 ], [ 2.161012, 45.085152 ], [ 2.143403, 45.08631 ], [ 2.138101, 45.08145 ], [ 2.133317, 45.08181 ], [ 2.102112, 45.06216 ], [ 2.100208, 45.062032 ], [ 2.09837, 45.059424 ], [ 2.095159, 45.056039 ], [ 2.110262, 45.03861 ], [ 2.116938, 45.02197 ], [ 2.137833, 45.008132 ], [ 2.140896, 45.005409 ], [ 2.139895, 45.002 ], [ 2.133293, 44.98575 ], [ 2.106208, 44.98151 ], [ 2.093554, 44.98571 ], [ 2.089121, 44.984441 ], [ 2.08473, 44.982991 ], [ 2.062914, 44.976506 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "20", "CODE_DEPT": "21", "NOM_DEPT": "COTE-D'OR", "CODE_CHF": "231", "NOM_CHF": "DIJON", "X_CHF_LIEU": "8542", "Y_CHF_LIEU": "66934", "X_CENTROID": "8336", "Y_CENTROID": "67042", "CODE_REG": "26", "NOM_REGION": "BOURGOGNE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.255236, 46.979888 ], [ 5.242026, 46.981542 ], [ 5.222072, 46.988854 ], [ 5.220619, 46.98618 ], [ 5.212199, 46.98014 ], [ 5.208954, 46.982234 ], [ 5.201518, 46.9832 ], [ 5.198601, 46.9804 ], [ 5.192864, 46.97135 ], [ 5.189358, 46.97283 ], [ 5.181662, 46.974827 ], [ 5.164631, 46.96423 ], [ 5.150454, 46.96637 ], [ 5.145926, 46.96533 ], [ 5.138312, 46.96242 ], [ 5.120174, 46.96319 ], [ 5.118261, 46.96037 ], [ 5.106005, 46.95712 ], [ 5.103195, 46.948796 ], [ 5.100742, 46.94658 ], [ 5.097533, 46.94488 ], [ 5.101101, 46.954464 ], [ 5.074772, 46.96111 ], [ 5.070824, 46.967242 ], [ 5.065934, 46.96701 ], [ 5.06575, 46.96978 ], [ 5.057018, 46.97541 ], [ 5.054491, 46.9775 ], [ 5.049304, 46.981587 ], [ 5.044374, 46.98069 ], [ 5.029188, 46.979646 ], [ 5.018517, 46.97229 ], [ 5.003646, 46.97185 ], [ 4.996557, 46.96409 ], [ 5.00125, 46.959744 ], [ 5.00565, 46.95921 ], [ 5.004412, 46.958113 ], [ 4.999744, 46.95886 ], [ 4.967366, 46.961966 ], [ 4.964474, 46.96457 ], [ 4.955229, 46.9632 ], [ 4.952096, 46.96498 ], [ 4.943033, 46.96501 ], [ 4.914754, 46.96776 ], [ 4.910146, 46.9673 ], [ 4.896423, 46.96613 ], [ 4.89099, 46.957489 ], [ 4.893082, 46.9515 ], [ 4.870766, 46.94817 ], [ 4.866477, 46.94661 ], [ 4.816575, 46.93581 ], [ 4.816165, 46.932989 ], [ 4.80871, 46.930629 ], [ 4.788806, 46.93223 ], [ 4.790831, 46.925487 ], [ 4.779335, 46.91888 ], [ 4.775264, 46.917775 ], [ 4.770888, 46.9178 ], [ 4.76581, 46.918461 ], [ 4.755666, 46.91735 ], [ 4.744315, 46.924435 ], [ 4.740913, 46.92205 ], [ 4.72813, 46.919375 ], [ 4.725702, 46.92156 ], [ 4.718761, 46.919884 ], [ 4.719844, 46.916734 ], [ 4.712712, 46.90651 ], [ 4.708482, 46.90489 ], [ 4.68522, 46.900954 ], [ 4.682495, 46.90333 ], [ 4.666216, 46.91233 ], [ 4.665587, 46.915352 ], [ 4.679344, 46.927129 ], [ 4.678435, 46.93043 ], [ 4.652319, 46.93879 ], [ 4.64986, 46.94136 ], [ 4.644807, 46.940812 ], [ 4.614328, 46.94167 ], [ 4.617528, 46.944025 ], [ 4.613027, 46.94919 ], [ 4.599187, 46.950342 ], [ 4.595184, 46.952387 ], [ 4.589702, 46.957839 ], [ 4.591862, 46.967769 ], [ 4.573661, 46.97339 ], [ 4.570956, 46.97538 ], [ 4.567488, 46.98282 ], [ 4.568085, 46.99113 ], [ 4.56426, 46.9922 ], [ 4.554726, 46.990645 ], [ 4.547687, 46.995323 ], [ 4.556762, 47.006971 ], [ 4.554809, 47.020055 ], [ 4.531749, 47.01249 ], [ 4.506723, 47.013524 ], [ 4.504946, 47.01682 ], [ 4.502063, 47.018763 ], [ 4.498842, 47.02558 ], [ 4.495195, 47.027515 ], [ 4.489643, 47.03201 ], [ 4.471598, 47.030492 ], [ 4.457438, 47.040154 ], [ 4.42728, 47.040413 ], [ 4.406283, 47.05 ], [ 4.403261, 47.05638 ], [ 4.407028, 47.06947 ], [ 4.416154, 47.07723 ], [ 4.411758, 47.07899 ], [ 4.397777, 47.08272 ], [ 4.377814, 47.08149 ], [ 4.370266, 47.07702 ], [ 4.36218, 47.06428 ], [ 4.357443, 47.062992 ], [ 4.34425, 47.07243 ], [ 4.349385, 47.096953 ], [ 4.346937, 47.09981 ], [ 4.338435, 47.10257 ], [ 4.309766, 47.10367 ], [ 4.302058, 47.10722 ], [ 4.300654, 47.109703 ], [ 4.298812, 47.112047 ], [ 4.281407, 47.107838 ], [ 4.263651, 47.11213 ], [ 4.259725, 47.11401 ], [ 4.252329, 47.128362 ], [ 4.25165, 47.13151 ], [ 4.247581, 47.13299 ], [ 4.239994, 47.14216 ], [ 4.241903, 47.14823 ], [ 4.237719, 47.146527 ], [ 4.219316, 47.14567 ], [ 4.21432, 47.15414 ], [ 4.209834, 47.155412 ], [ 4.210078, 47.158615 ], [ 4.209485, 47.168057 ], [ 4.212327, 47.18113 ], [ 4.230876, 47.19704 ], [ 4.22889, 47.20378 ], [ 4.219177, 47.21942 ], [ 4.192241, 47.23541 ], [ 4.186745, 47.24514 ], [ 4.177723, 47.25274 ], [ 4.135149, 47.23736 ], [ 4.133287, 47.2406 ], [ 4.125356, 47.249506 ], [ 4.114587, 47.29261 ], [ 4.131322, 47.304314 ], [ 4.132541, 47.30749 ], [ 4.123776, 47.30424 ], [ 4.11539, 47.30772 ], [ 4.128764, 47.31737 ], [ 4.130407, 47.32057 ], [ 4.123777, 47.32957 ], [ 4.125043, 47.335671 ], [ 4.139693, 47.35199 ], [ 4.143319, 47.35429 ], [ 4.13986, 47.3567 ], [ 4.130918, 47.35428 ], [ 4.119339, 47.33966 ], [ 4.107051, 47.33596 ], [ 4.106086, 47.33926 ], [ 4.107089, 47.34934 ], [ 4.098155, 47.35749 ], [ 4.10567, 47.36602 ], [ 4.106783, 47.37627 ], [ 4.097171, 47.373534 ], [ 4.082395, 47.37555 ], [ 4.078053, 47.38175 ], [ 4.085936, 47.394031 ], [ 4.067769, 47.40051 ], [ 4.065198, 47.40727 ], [ 4.070106, 47.407286 ], [ 4.072978, 47.413652 ], [ 4.084039, 47.42021 ], [ 4.082661, 47.42355 ], [ 4.083221, 47.43353 ], [ 4.080503, 47.43624 ], [ 4.085393, 47.4399 ], [ 4.095401, 47.432898 ], [ 4.098629, 47.430473 ], [ 4.106987, 47.43815 ], [ 4.103834, 47.44419 ], [ 4.108109, 47.44561 ], [ 4.115591, 47.44164 ], [ 4.119427, 47.443553 ], [ 4.128832, 47.470462 ], [ 4.125598, 47.47707 ], [ 4.120568, 47.477816 ], [ 4.118079, 47.4788 ], [ 4.115979, 47.48448 ], [ 4.120923, 47.489696 ], [ 4.118944, 47.49539 ], [ 4.116126, 47.49786 ], [ 4.112404, 47.5035 ], [ 4.116087, 47.50557 ], [ 4.114631, 47.51476 ], [ 4.119533, 47.5147 ], [ 4.13752, 47.51944 ], [ 4.140114, 47.525789 ], [ 4.143225, 47.52832 ], [ 4.150705, 47.5325 ], [ 4.149408, 47.53524 ], [ 4.145917, 47.54045 ], [ 4.153444, 47.54425 ], [ 4.159492, 47.55276 ], [ 4.164177, 47.55357 ], [ 4.168098, 47.55163 ], [ 4.17495, 47.553 ], [ 4.187159, 47.57048 ], [ 4.188284, 47.573174 ], [ 4.186136, 47.581289 ], [ 4.197352, 47.599692 ], [ 4.201036, 47.60197 ], [ 4.210871, 47.60133 ], [ 4.215812, 47.60083 ], [ 4.213621, 47.604 ], [ 4.215349, 47.630798 ], [ 4.224024, 47.633363 ], [ 4.231944, 47.645882 ], [ 4.236943, 47.646604 ], [ 4.246661, 47.661732 ], [ 4.22599, 47.67142 ], [ 4.226613, 47.67821 ], [ 4.250789, 47.67809 ], [ 4.255222, 47.6835 ], [ 4.279384, 47.68157 ], [ 4.284063, 47.682662 ], [ 4.280804, 47.6852 ], [ 4.261835, 47.69424 ], [ 4.265892, 47.70395 ], [ 4.257436, 47.70786 ], [ 4.253546, 47.71426 ], [ 4.239355, 47.71776 ], [ 4.241388, 47.72428 ], [ 4.256314, 47.727 ], [ 4.260371, 47.740621 ], [ 4.275392, 47.73983 ], [ 4.288087, 47.733901 ], [ 4.293038, 47.73285 ], [ 4.308158, 47.749242 ], [ 4.309503, 47.75236 ], [ 4.318003, 47.750635 ], [ 4.331033, 47.756087 ], [ 4.32954, 47.769534 ], [ 4.330507, 47.77296 ], [ 4.335459, 47.77396 ], [ 4.33446, 47.77725 ], [ 4.327231, 47.78566 ], [ 4.338072, 47.79662 ], [ 4.340297, 47.79957 ], [ 4.323647, 47.809639 ], [ 4.319977, 47.811427 ], [ 4.324899, 47.82074 ], [ 4.32163, 47.83384 ], [ 4.328751, 47.84169 ], [ 4.324863, 47.847197 ], [ 4.294777, 47.84667 ], [ 4.271426, 47.84034 ], [ 4.262689, 47.84401 ], [ 4.26444, 47.871501 ], [ 4.247359, 47.87616 ], [ 4.266941, 47.88717 ], [ 4.27068, 47.89359 ], [ 4.273877, 47.89631 ], [ 4.28612, 47.90056 ], [ 4.300067, 47.901094 ], [ 4.308703, 47.90336 ], [ 4.312718, 47.90498 ], [ 4.306787, 47.91038 ], [ 4.305628, 47.9204 ], [ 4.29652, 47.92304 ], [ 4.293424, 47.92568 ], [ 4.30209, 47.93829 ], [ 4.300411, 47.94519 ], [ 4.299289, 47.94861 ], [ 4.305655, 47.954163 ], [ 4.312802, 47.962499 ], [ 4.347354, 47.956339 ], [ 4.371696, 47.96133 ], [ 4.392313, 47.962106 ], [ 4.416466, 47.96828 ], [ 4.433946, 47.961462 ], [ 4.438111, 47.959377 ], [ 4.446962, 47.9562 ], [ 4.495482, 47.96805 ], [ 4.516449, 47.966349 ], [ 4.531442, 47.969899 ], [ 4.552383, 47.96779 ], [ 4.55658, 47.96923 ], [ 4.559969, 47.971423 ], [ 4.555441, 47.98477 ], [ 4.542963, 47.990433 ], [ 4.535514, 48.003131 ], [ 4.535774, 48.00657 ], [ 4.5456, 48.004988 ], [ 4.552644, 48.009189 ], [ 4.55472, 48.012276 ], [ 4.563343, 48.0154 ], [ 4.578157, 48.02857 ], [ 4.612164, 48.03005 ], [ 4.616807, 48.031376 ], [ 4.619447, 48.02642 ], [ 4.621946, 48.024348 ], [ 4.647584, 48.02469 ], [ 4.67296, 48.01502 ], [ 4.700888, 48.02285 ], [ 4.704239, 48.020241 ], [ 4.717126, 48.011368 ], [ 4.719943, 48.008896 ], [ 4.749531, 48.00431 ], [ 4.784607, 48.006727 ], [ 4.78942, 48.00787 ], [ 4.796214, 47.9954 ], [ 4.807631, 47.98884 ], [ 4.795259, 47.98344 ], [ 4.785712, 47.971461 ], [ 4.787781, 47.965254 ], [ 4.796724, 47.96257 ], [ 4.801642, 47.96254 ], [ 4.810959, 47.95987 ], [ 4.819692, 47.96247 ], [ 4.845033, 47.96043 ], [ 4.856121, 47.95328 ], [ 4.863158, 47.94457 ], [ 4.86521, 47.941564 ], [ 4.845857, 47.922903 ], [ 4.829963, 47.91559 ], [ 4.829474, 47.912285 ], [ 4.834024, 47.90679 ], [ 4.853034, 47.897539 ], [ 4.856783, 47.895634 ], [ 4.874586, 47.919522 ], [ 4.894663, 47.9226 ], [ 4.903607, 47.91955 ], [ 4.905961, 47.91647 ], [ 4.916131, 47.896976 ], [ 4.919542, 47.89431 ], [ 4.923381, 47.892401 ], [ 4.928136, 47.88697 ], [ 4.927456, 47.871548 ], [ 4.944541, 47.866387 ], [ 4.954094, 47.86677 ], [ 4.962141, 47.854264 ], [ 4.961536, 47.84076 ], [ 4.973256, 47.8312 ], [ 4.984619, 47.82756 ], [ 4.984281, 47.82461 ], [ 4.984921, 47.82527 ], [ 4.99022, 47.82112 ], [ 4.994125, 47.819748 ], [ 4.992111, 47.81344 ], [ 4.986103, 47.8036 ], [ 4.955366, 47.789719 ], [ 4.947261, 47.78693 ], [ 4.943089, 47.785719 ], [ 4.939148, 47.78389 ], [ 4.917958, 47.77709 ], [ 4.921897, 47.77594 ], [ 4.920816, 47.767837 ], [ 4.9168, 47.76682 ], [ 4.921427, 47.765883 ], [ 4.924775, 47.76062 ], [ 4.939114, 47.76205 ], [ 4.946347, 47.76596 ], [ 4.954454, 47.762716 ], [ 4.958989, 47.76187 ], [ 4.965074, 47.74222 ], [ 4.960496, 47.73281 ], [ 4.964441, 47.734828 ], [ 4.971535, 47.73108 ], [ 4.970801, 47.72782 ], [ 4.964464, 47.72281 ], [ 4.964212, 47.713422 ], [ 4.956914, 47.709051 ], [ 4.953759, 47.706313 ], [ 4.956706, 47.69974 ], [ 4.971371, 47.69023 ], [ 4.96857, 47.68733 ], [ 4.993925, 47.689285 ], [ 5.002099, 47.693539 ], [ 5.00401, 47.700376 ], [ 5.008993, 47.70096 ], [ 5.029154, 47.70993 ], [ 5.033099, 47.70772 ], [ 5.031234, 47.694135 ], [ 5.056238, 47.69481 ], [ 5.046804, 47.67557 ], [ 5.052569, 47.669839 ], [ 5.062024, 47.66718 ], [ 5.067123, 47.667368 ], [ 5.076587, 47.664976 ], [ 5.082662, 47.659447 ], [ 5.102371, 47.65734 ], [ 5.107398, 47.65133 ], [ 5.116859, 47.65202 ], [ 5.117441, 47.650566 ], [ 5.127205, 47.64846 ], [ 5.136233, 47.65195 ], [ 5.155673, 47.66839 ], [ 5.160201, 47.678155 ], [ 5.173442, 47.68082 ], [ 5.178341, 47.68095 ], [ 5.17341, 47.653536 ], [ 5.176227, 47.651385 ], [ 5.188388, 47.649609 ], [ 5.211365, 47.64166 ], [ 5.237409, 47.6203 ], [ 5.236942, 47.61678 ], [ 5.240285, 47.61678 ], [ 5.242875, 47.6182 ], [ 5.246326, 47.620136 ], [ 5.258601, 47.622222 ], [ 5.25601, 47.61922 ], [ 5.239656, 47.597653 ], [ 5.25623, 47.576551 ], [ 5.273261, 47.580551 ], [ 5.277901, 47.581361 ], [ 5.278142, 47.588255 ], [ 5.306357, 47.607277 ], [ 5.316021, 47.607221 ], [ 5.3233, 47.611993 ], [ 5.333294, 47.61063 ], [ 5.337818, 47.60903 ], [ 5.343756, 47.603543 ], [ 5.342324, 47.59669 ], [ 5.355723, 47.59169 ], [ 5.358712, 47.59427 ], [ 5.365786, 47.60279 ], [ 5.374079, 47.604542 ], [ 5.378175, 47.603549 ], [ 5.389121, 47.595238 ], [ 5.396263, 47.595966 ], [ 5.399805, 47.59716 ], [ 5.422559, 47.629463 ], [ 5.425595, 47.63207 ], [ 5.440171, 47.629771 ], [ 5.468523, 47.611129 ], [ 5.471052, 47.60822 ], [ 5.478564, 47.60539 ], [ 5.486492, 47.57861 ], [ 5.48238, 47.56545 ], [ 5.491292, 47.563383 ], [ 5.496668, 47.55059 ], [ 5.49664, 47.54713 ], [ 5.487817, 47.52991 ], [ 5.486404, 47.52697 ], [ 5.471747, 47.52746 ], [ 5.469344, 47.52437 ], [ 5.453722, 47.5067 ], [ 5.451419, 47.504303 ], [ 5.44746, 47.4962 ], [ 5.44311, 47.494932 ], [ 5.436433, 47.49042 ], [ 5.43203, 47.491777 ], [ 5.427781, 47.49652 ], [ 5.399216, 47.499014 ], [ 5.397351, 47.49625 ], [ 5.391142, 47.48816 ], [ 5.388163, 47.48362 ], [ 5.387298, 47.481194 ], [ 5.403346, 47.477351 ], [ 5.407642, 47.47719 ], [ 5.404108, 47.475102 ], [ 5.379534, 47.46614 ], [ 5.370722, 47.464475 ], [ 5.381551, 47.459229 ], [ 5.380928, 47.45358 ], [ 5.379572, 47.45056 ], [ 5.409538, 47.46146 ], [ 5.413959, 47.459966 ], [ 5.418162, 47.450702 ], [ 5.431819, 47.44826 ], [ 5.435629, 47.45029 ], [ 5.441022, 47.44656 ], [ 5.43846, 47.44423 ], [ 5.430425, 47.42136 ], [ 5.442459, 47.40705 ], [ 5.433672, 47.39584 ], [ 5.433256, 47.392522 ], [ 5.449094, 47.38675 ], [ 5.451393, 47.38397 ], [ 5.477992, 47.39423 ], [ 5.496919, 47.38855 ], [ 5.491894, 47.372889 ], [ 5.489222, 47.36987 ], [ 5.488824, 47.35586 ], [ 5.490065, 47.354347 ], [ 5.494704, 47.338099 ], [ 5.48901, 47.32903 ], [ 5.477101, 47.326749 ], [ 5.47373, 47.324317 ], [ 5.47167, 47.318119 ], [ 5.47918, 47.31496 ], [ 5.498495, 47.314221 ], [ 5.509108, 47.30809 ], [ 5.513097, 47.30816 ], [ 5.518539, 47.304187 ], [ 5.516953, 47.30115 ], [ 5.508605, 47.29337 ], [ 5.505365, 47.284071 ], [ 5.501046, 47.28513 ], [ 5.493047, 47.28818 ], [ 5.488559, 47.28502 ], [ 5.488275, 47.282601 ], [ 5.488004, 47.280175 ], [ 5.487558, 47.26656 ], [ 5.483133, 47.26041 ], [ 5.480799, 47.25744 ], [ 5.484335, 47.23806 ], [ 5.48011, 47.23705 ], [ 5.475309, 47.231305 ], [ 5.479136, 47.21851 ], [ 5.474206, 47.21308 ], [ 5.470255, 47.2111 ], [ 5.449262, 47.20322 ], [ 5.446891, 47.200762 ], [ 5.452548, 47.19381 ], [ 5.456227, 47.191629 ], [ 5.458916, 47.18193 ], [ 5.45227, 47.166268 ], [ 5.450873, 47.162857 ], [ 5.448641, 47.159662 ], [ 5.445085, 47.15842 ], [ 5.438298, 47.152017 ], [ 5.439112, 47.148991 ], [ 5.438985, 47.14299 ], [ 5.428918, 47.13696 ], [ 5.424893, 47.13698 ], [ 5.414566, 47.13276 ], [ 5.414128, 47.129753 ], [ 5.409191, 47.12502 ], [ 5.412114, 47.11986 ], [ 5.411215, 47.116853 ], [ 5.400588, 47.10756 ], [ 5.398163, 47.10465 ], [ 5.39781, 47.09465 ], [ 5.391341, 47.08976 ], [ 5.390537, 47.086784 ], [ 5.377627, 47.079322 ], [ 5.363344, 47.07834 ], [ 5.35988, 47.08114 ], [ 5.357909, 47.0786 ], [ 5.345786, 47.076649 ], [ 5.341181, 47.07717 ], [ 5.332533, 47.076593 ], [ 5.323975, 47.07379 ], [ 5.310446, 47.06051 ], [ 5.301895, 47.060904 ], [ 5.29907, 47.05864 ], [ 5.295851, 47.05608 ], [ 5.283484, 47.046318 ], [ 5.275218, 47.027161 ], [ 5.275327, 47.02693 ], [ 5.279764, 47.025333 ], [ 5.317198, 47.015806 ], [ 5.31824, 47.01246 ], [ 5.313647, 47.011302 ], [ 5.303971, 47.01045 ], [ 5.298243, 47.00179 ], [ 5.279146, 46.99915 ], [ 5.27507, 46.99803 ], [ 5.271966, 46.989342 ], [ 5.267767, 46.988388 ], [ 5.255236, 46.979888 ] ] ], [ [ [ 4.181902, 47.150514 ], [ 4.188262, 47.14506 ], [ 4.187801, 47.137938 ], [ 4.172031, 47.11539 ], [ 4.167639, 47.11726 ], [ 4.160185, 47.12145 ], [ 4.150014, 47.11404 ], [ 4.137526, 47.119751 ], [ 4.130814, 47.12866 ], [ 4.126361, 47.13025 ], [ 4.118037, 47.126469 ], [ 4.115967, 47.123338 ], [ 4.108619, 47.131 ], [ 4.116374, 47.134688 ], [ 4.112572, 47.14356 ], [ 4.115724, 47.14602 ], [ 4.120584, 47.145524 ], [ 4.139461, 47.14329 ], [ 4.181902, 47.150514 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "21", "CODE_DEPT": "22", "NOM_DEPT": "COTES-D'ARMOR", "CODE_CHF": "278", "NOM_CHF": "SAINT-BRIEUC", "X_CHF_LIEU": "2749", "Y_CHF_LIEU": "68392", "X_CENTROID": "2666", "Y_CENTROID": "68317", "CODE_REG": "53", "NOM_REGION": "BRETAGNE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.287278, 48.133746 ], [ -2.292218, 48.132757 ], [ -2.306935, 48.13576 ], [ -2.316929, 48.13411 ], [ -2.322439, 48.12462 ], [ -2.330118, 48.120361 ], [ -2.346988, 48.1264 ], [ -2.357527, 48.111315 ], [ -2.36211, 48.113614 ], [ -2.365799, 48.115854 ], [ -2.374551, 48.1309 ], [ -2.374972, 48.13874 ], [ -2.375705, 48.14144 ], [ -2.380299, 48.143152 ], [ -2.399673, 48.15508 ], [ -2.407188, 48.16804 ], [ -2.420924, 48.173254 ], [ -2.447034, 48.172519 ], [ -2.451564, 48.17081 ], [ -2.460856, 48.16327 ], [ -2.485405, 48.164552 ], [ -2.488328, 48.15791 ], [ -2.534346, 48.15694 ], [ -2.533234, 48.15367 ], [ -2.515424, 48.13792 ], [ -2.514928, 48.131234 ], [ -2.520902, 48.122141 ], [ -2.534741, 48.10764 ], [ -2.546657, 48.10107 ], [ -2.551781, 48.09575 ], [ -2.548679, 48.07648 ], [ -2.553719, 48.07602 ], [ -2.564496, 48.069192 ], [ -2.579225, 48.06975 ], [ -2.580891, 48.06653 ], [ -2.582922, 48.06334 ], [ -2.623324, 48.0369 ], [ -2.643247, 48.03728 ], [ -2.64629, 48.040087 ], [ -2.655761, 48.03254 ], [ -2.660751, 48.037055 ], [ -2.657516, 48.0424 ], [ -2.659756, 48.044852 ], [ -2.668668, 48.04678 ], [ -2.667, 48.0567 ], [ -2.671327, 48.062907 ], [ -2.655691, 48.087965 ], [ -2.652594, 48.10721 ], [ -2.651812, 48.11061 ], [ -2.652644, 48.113471 ], [ -2.651993, 48.119971 ], [ -2.656567, 48.12128 ], [ -2.662597, 48.1304 ], [ -2.676227, 48.13182 ], [ -2.679521, 48.129499 ], [ -2.702304, 48.118727 ], [ -2.703982, 48.112429 ], [ -2.709032, 48.112915 ], [ -2.728458, 48.1165 ], [ -2.748166, 48.113871 ], [ -2.751404, 48.116509 ], [ -2.761983, 48.097144 ], [ -2.775249, 48.08704 ], [ -2.778113, 48.10608 ], [ -2.783476, 48.11137 ], [ -2.78195, 48.120327 ], [ -2.784964, 48.122615 ], [ -2.810401, 48.14655 ], [ -2.815509, 48.14654 ], [ -2.849797, 48.141211 ], [ -2.854805, 48.14236 ], [ -2.877949, 48.150917 ], [ -2.888056, 48.1621 ], [ -2.891453, 48.164734 ], [ -2.896018, 48.163341 ], [ -2.943871, 48.171702 ], [ -2.963583, 48.16933 ], [ -2.968085, 48.16788 ], [ -2.979469, 48.16132 ], [ -2.999753, 48.16071 ], [ -2.998049, 48.16731 ], [ -3.011584, 48.175161 ], [ -3.018569, 48.19131 ], [ -3.016147, 48.197994 ], [ -3.020859, 48.196706 ], [ -3.030742, 48.1965 ], [ -3.035975, 48.20235 ], [ -3.054889, 48.20647 ], [ -3.070056, 48.205229 ], [ -3.076967, 48.2099 ], [ -3.081694, 48.21003 ], [ -3.086394, 48.204666 ], [ -3.094792, 48.20304 ], [ -3.09757, 48.205578 ], [ -3.11534, 48.20677 ], [ -3.120273, 48.201 ], [ -3.129925, 48.19867 ], [ -3.136108, 48.189165 ], [ -3.136624, 48.18224 ], [ -3.130223, 48.17687 ], [ -3.132714, 48.17393 ], [ -3.147869, 48.161097 ], [ -3.161117, 48.16468 ], [ -3.173944, 48.159354 ], [ -3.178229, 48.16115 ], [ -3.183202, 48.161224 ], [ -3.192268, 48.16387 ], [ -3.201521, 48.161443 ], [ -3.214832, 48.151905 ], [ -3.211561, 48.142456 ], [ -3.238346, 48.15033 ], [ -3.252814, 48.14914 ], [ -3.2569, 48.147321 ], [ -3.269592, 48.14368 ], [ -3.271025, 48.14053 ], [ -3.275336, 48.142197 ], [ -3.284694, 48.143765 ], [ -3.291728, 48.15252 ], [ -3.300754, 48.155021 ], [ -3.315455, 48.15521 ], [ -3.318249, 48.1488 ], [ -3.322894, 48.14963 ], [ -3.324402, 48.158492 ], [ -3.336929, 48.171567 ], [ -3.341953, 48.17081 ], [ -3.34934, 48.166033 ], [ -3.374356, 48.162777 ], [ -3.389662, 48.15357 ], [ -3.403883, 48.155018 ], [ -3.408702, 48.14893 ], [ -3.417596, 48.14564 ], [ -3.42051, 48.148524 ], [ -3.433656, 48.1541 ], [ -3.437932, 48.16028 ], [ -3.422077, 48.173347 ], [ -3.445105, 48.18693 ], [ -3.446269, 48.18034 ], [ -3.450452, 48.178451 ], [ -3.470217, 48.179019 ], [ -3.480454, 48.18586 ], [ -3.484418, 48.184829 ], [ -3.496707, 48.182888 ], [ -3.501416, 48.181328 ], [ -3.532568, 48.178331 ], [ -3.553306, 48.17965 ], [ -3.55792, 48.180931 ], [ -3.564839, 48.185747 ], [ -3.566669, 48.190033 ], [ -3.543101, 48.193575 ], [ -3.519676, 48.19067 ], [ -3.521292, 48.197176 ], [ -3.522589, 48.203939 ], [ -3.54126, 48.2092 ], [ -3.556032, 48.22727 ], [ -3.556488, 48.230716 ], [ -3.553725, 48.24087 ], [ -3.544423, 48.24357 ], [ -3.539952, 48.24979 ], [ -3.540715, 48.253206 ], [ -3.522177, 48.25525 ], [ -3.526512, 48.2611 ], [ -3.52585, 48.2708 ], [ -3.517898, 48.28226 ], [ -3.522957, 48.28172 ], [ -3.530105, 48.286558 ], [ -3.553028, 48.293016 ], [ -3.552316, 48.299682 ], [ -3.547487, 48.29871 ], [ -3.539615, 48.30157 ], [ -3.528434, 48.31657 ], [ -3.518631, 48.31807 ], [ -3.52279, 48.32006 ], [ -3.529744, 48.320253 ], [ -3.541027, 48.31334 ], [ -3.549958, 48.31572 ], [ -3.556146, 48.34243 ], [ -3.562814, 48.34702 ], [ -3.553282, 48.37016 ], [ -3.554415, 48.37717 ], [ -3.603288, 48.38637 ], [ -3.607682, 48.388327 ], [ -3.603261, 48.39714 ], [ -3.603722, 48.40048 ], [ -3.600208, 48.4023 ], [ -3.598768, 48.422644 ], [ -3.585041, 48.433 ], [ -3.554192, 48.445378 ], [ -3.550496, 48.44783 ], [ -3.552517, 48.450752 ], [ -3.56894, 48.45294 ], [ -3.578885, 48.45952 ], [ -3.578692, 48.46273 ], [ -3.592163, 48.4645 ], [ -3.594945, 48.47043 ], [ -3.599593, 48.4708 ], [ -3.59807, 48.473897 ], [ -3.604904, 48.47825 ], [ -3.601798, 48.484415 ], [ -3.604168, 48.49405 ], [ -3.597677, 48.498591 ], [ -3.592834, 48.50004 ], [ -3.555746, 48.52961 ], [ -3.53928, 48.53825 ], [ -3.553824, 48.54128 ], [ -3.572694, 48.556768 ], [ -3.581724, 48.55397 ], [ -3.599429, 48.55861 ], [ -3.585718, 48.573269 ], [ -3.594583, 48.585749 ], [ -3.599568, 48.5846 ], [ -3.613731, 48.589224 ], [ -3.629298, 48.58836 ], [ -3.636745, 48.593329 ], [ -3.640603, 48.59606 ], [ -3.63988, 48.609114 ], [ -3.64898, 48.61163 ], [ -3.654181, 48.617296 ], [ -3.654996, 48.624011 ], [ -3.663536, 48.6538 ], [ -3.660776, 48.6563 ], [ -3.659144, 48.65921 ], [ -3.655794, 48.6619 ], [ -3.636285, 48.672962 ], [ -3.636223, 48.679763 ], [ -3.622656, 48.68478 ], [ -3.610471, 48.67048 ], [ -3.579907, 48.67072 ], [ -3.576666, 48.672799 ], [ -3.57323, 48.674731 ], [ -3.570849, 48.67715 ], [ -3.567527, 48.68248 ], [ -3.571512, 48.687173 ], [ -3.576781, 48.687658 ], [ -3.582421, 48.69303 ], [ -3.58223, 48.7209 ], [ -3.565525, 48.72884 ], [ -3.555638, 48.727463 ], [ -3.553658, 48.72919 ], [ -3.55202, 48.73244 ], [ -3.549401, 48.74568 ], [ -3.565277, 48.75937 ], [ -3.580931, 48.75826 ], [ -3.585326, 48.77143 ], [ -3.584574, 48.77487 ], [ -3.578672, 48.78814 ], [ -3.568224, 48.795613 ], [ -3.558964, 48.79357 ], [ -3.554765, 48.791462 ], [ -3.537043, 48.80326 ], [ -3.543996, 48.81456 ], [ -3.539439, 48.82407 ], [ -3.534326, 48.82417 ], [ -3.522374, 48.822044 ], [ -3.522641, 48.82864 ], [ -3.511402, 48.83527 ], [ -3.507134, 48.834698 ], [ -3.506506, 48.82826 ], [ -3.49751, 48.82955 ], [ -3.489828, 48.82561 ], [ -3.487924, 48.83225 ], [ -3.479774, 48.83584 ], [ -3.455885, 48.81716 ], [ -3.440325, 48.81907 ], [ -3.431644, 48.816935 ], [ -3.441985, 48.801687 ], [ -3.440556, 48.798308 ], [ -3.389007, 48.80353 ], [ -3.38832, 48.81317 ], [ -3.37089, 48.81799 ], [ -3.366095, 48.81878 ], [ -3.363714, 48.82154 ], [ -3.354268, 48.820396 ], [ -3.340193, 48.82868 ], [ -3.335394, 48.82844 ], [ -3.320151, 48.837158 ], [ -3.295382, 48.83294 ], [ -3.279846, 48.84134 ], [ -3.26956, 48.833907 ], [ -3.264317, 48.83429 ], [ -3.244291, 48.85781 ], [ -3.229731, 48.867396 ], [ -3.220365, 48.86592 ], [ -3.21025, 48.850034 ], [ -3.218747, 48.833877 ], [ -3.214518, 48.835992 ], [ -3.204927, 48.83498 ], [ -3.204076, 48.82819 ], [ -3.209784, 48.8111 ], [ -3.236463, 48.789811 ], [ -3.231366, 48.79023 ], [ -3.220742, 48.78405 ], [ -3.22235, 48.79728 ], [ -3.200366, 48.815979 ], [ -3.196733, 48.818396 ], [ -3.199135, 48.82457 ], [ -3.18979, 48.83697 ], [ -3.178404, 48.84328 ], [ -3.173605, 48.84188 ], [ -3.168111, 48.85179 ], [ -3.152552, 48.85269 ], [ -3.12614, 48.864491 ], [ -3.099976, 48.86802 ], [ -3.078562, 48.87864 ], [ -3.075429, 48.87933 ], [ -3.091327, 48.87052 ], [ -3.094591, 48.86618 ], [ -3.082446, 48.86462 ], [ -3.076111, 48.85838 ], [ -3.078761, 48.85777 ], [ -3.085134, 48.862 ], [ -3.094174, 48.85877 ], [ -3.089684, 48.8572 ], [ -3.083934, 48.84789 ], [ -3.099514, 48.83087 ], [ -3.078831, 48.83089 ], [ -3.097467, 48.80256 ], [ -3.100741, 48.785176 ], [ -3.112482, 48.77809 ], [ -3.116333, 48.77566 ], [ -3.125345, 48.772214 ], [ -3.122322, 48.765766 ], [ -3.120943, 48.759261 ], [ -3.118393, 48.761827 ], [ -3.111677, 48.765762 ], [ -3.102455, 48.76613 ], [ -3.099673, 48.769065 ], [ -3.102467, 48.779278 ], [ -3.094622, 48.78363 ], [ -3.085475, 48.81036 ], [ -3.08275, 48.81334 ], [ -3.065899, 48.82134 ], [ -3.047483, 48.81709 ], [ -3.02184, 48.821044 ], [ -3.012409, 48.818741 ], [ -3.013162, 48.808475 ], [ -3.006439, 48.803113 ], [ -3.008707, 48.80005 ], [ -3.045663, 48.78754 ], [ -3.044231, 48.784256 ], [ -3.014259, 48.78074 ], [ -3.023743, 48.778247 ], [ -3.022475, 48.77211 ], [ -3.01452, 48.76775 ], [ -2.990491, 48.763 ], [ -2.985223, 48.762986 ], [ -2.964352, 48.76314 ], [ -2.955368, 48.76666 ], [ -2.950639, 48.76587 ], [ -2.935677, 48.75646 ], [ -2.940076, 48.74383 ], [ -2.936787, 48.73411 ], [ -2.947904, 48.72721 ], [ -2.94733, 48.723735 ], [ -2.930429, 48.71669 ], [ -2.923258, 48.707445 ], [ -2.890432, 48.69722 ], [ -2.88077, 48.67424 ], [ -2.866802, 48.67235 ], [ -2.858037, 48.67506 ], [ -2.854192, 48.669191 ], [ -2.850298, 48.667254 ], [ -2.846013, 48.66559 ], [ -2.838061, 48.65755 ], [ -2.829383, 48.65579 ], [ -2.825845, 48.64336 ], [ -2.818239, 48.61784 ], [ -2.815727, 48.61165 ], [ -2.82409, 48.59918 ], [ -2.818894, 48.593427 ], [ -2.808791, 48.592082 ], [ -2.791891, 48.584717 ], [ -2.781723, 48.58522 ], [ -2.774171, 48.576533 ], [ -2.772318, 48.57034 ], [ -2.715854, 48.55445 ], [ -2.72332, 48.5457 ], [ -2.718108, 48.53604 ], [ -2.720945, 48.533165 ], [ -2.712566, 48.530808 ], [ -2.713246, 48.5226 ], [ -2.710096, 48.52036 ], [ -2.688137, 48.49607 ], [ -2.679743, 48.491734 ], [ -2.675613, 48.49107 ], [ -2.682992, 48.49617 ], [ -2.676733, 48.509421 ], [ -2.679776, 48.526962 ], [ -2.676851, 48.53342 ], [ -2.66661, 48.533408 ], [ -2.650645, 48.52465 ], [ -2.634931, 48.52472 ], [ -2.630161, 48.52632 ], [ -2.631562, 48.537962 ], [ -2.628061, 48.53989 ], [ -2.624696, 48.54244 ], [ -2.604088, 48.55228 ], [ -2.575347, 48.57589 ], [ -2.54872, 48.59711 ], [ -2.532836, 48.597585 ], [ -2.503488, 48.60575 ], [ -2.498812, 48.60743 ], [ -2.473552, 48.624612 ], [ -2.471383, 48.63481 ], [ -2.48048, 48.6384 ], [ -2.481466, 48.6443 ], [ -2.440638, 48.650998 ], [ -2.421298, 48.64625 ], [ -2.41904, 48.63247 ], [ -2.42093, 48.62919 ], [ -2.413467, 48.63409 ], [ -2.40899, 48.635915 ], [ -2.409649, 48.64149 ], [ -2.399274, 48.64313 ], [ -2.383443, 48.65215 ], [ -2.348606, 48.66103 ], [ -2.330177, 48.673271 ], [ -2.323202, 48.6827 ], [ -2.314163, 48.68257 ], [ -2.309416, 48.67177 ], [ -2.288826, 48.66402 ], [ -2.313598, 48.633542 ], [ -2.325024, 48.62754 ], [ -2.334237, 48.6216 ], [ -2.337472, 48.619726 ], [ -2.332971, 48.619323 ], [ -2.324054, 48.61856 ], [ -2.320317, 48.61363 ], [ -2.311882, 48.61185 ], [ -2.300098, 48.623146 ], [ -2.291082, 48.62516 ], [ -2.286485, 48.626772 ], [ -2.287136, 48.63025 ], [ -2.266618, 48.641771 ], [ -2.251023, 48.64469 ], [ -2.24935, 48.639947 ], [ -2.253578, 48.63357 ], [ -2.245189, 48.624787 ], [ -2.242342, 48.614699 ], [ -2.229431, 48.608497 ], [ -2.221975, 48.59523 ], [ -2.211413, 48.587707 ], [ -2.213362, 48.57386 ], [ -2.209127, 48.573626 ], [ -2.205559, 48.575441 ], [ -2.205425, 48.57887 ], [ -2.192343, 48.59353 ], [ -2.193838, 48.60723 ], [ -2.184907, 48.60461 ], [ -2.186743, 48.581331 ], [ -2.184179, 48.57876 ], [ -2.16711, 48.5772 ], [ -2.164792, 48.58014 ], [ -2.156707, 48.587704 ], [ -2.169694, 48.59716 ], [ -2.150263, 48.616514 ], [ -2.145314, 48.61748 ], [ -2.128852, 48.60475 ], [ -2.123708, 48.60441 ], [ -2.125942, 48.59753 ], [ -2.1249, 48.593415 ], [ -2.094333, 48.57172 ], [ -2.080555, 48.56804 ], [ -2.060069, 48.5701 ], [ -2.047377, 48.56412 ], [ -2.052745, 48.551913 ], [ -2.043228, 48.54206 ], [ -2.038784, 48.542 ], [ -2.033869, 48.551173 ], [ -2.021944, 48.55622 ], [ -2.019503, 48.55909 ], [ -2.010653, 48.564792 ], [ -2.006895, 48.56611 ], [ -2.002588, 48.56737 ], [ -1.992523, 48.5534 ], [ -1.995831, 48.55122 ], [ -1.990653, 48.55117 ], [ -1.985165, 48.54557 ], [ -1.975885, 48.54263 ], [ -1.973978, 48.53598 ], [ -1.975595, 48.532717 ], [ -1.989694, 48.523012 ], [ -1.984063, 48.51745 ], [ -1.983501, 48.50041 ], [ -1.988241, 48.499196 ], [ -1.992993, 48.500528 ], [ -1.999356, 48.494158 ], [ -2.001378, 48.491603 ], [ -1.98109, 48.49831 ], [ -1.976357, 48.49846 ], [ -1.980342, 48.50086 ], [ -1.980073, 48.508021 ], [ -1.969414, 48.51563 ], [ -1.966889, 48.52248 ], [ -1.962484, 48.524108 ], [ -1.950396, 48.52126 ], [ -1.948554, 48.535235 ], [ -1.948037, 48.53881 ], [ -1.935391, 48.54821 ], [ -1.933339, 48.55107 ], [ -1.931336, 48.55056 ], [ -1.924803, 48.54518 ], [ -1.925546, 48.53836 ], [ -1.918771, 48.53314 ], [ -1.911453, 48.516604 ], [ -1.911488, 48.50974 ], [ -1.922607, 48.499449 ], [ -1.910871, 48.48478 ], [ -1.908996, 48.481554 ], [ -1.92213, 48.47732 ], [ -1.926936, 48.476826 ], [ -1.930747, 48.47035 ], [ -1.925583, 48.4643 ], [ -1.925875, 48.45744 ], [ -1.938892, 48.44702 ], [ -1.94173, 48.44853 ], [ -1.948042, 48.44635 ], [ -1.94883, 48.43646 ], [ -1.952001, 48.429874 ], [ -1.938097, 48.419863 ], [ -1.941192, 48.410584 ], [ -1.938171, 48.40783 ], [ -1.940771, 48.401371 ], [ -1.934232, 48.39632 ], [ -1.930066, 48.39433 ], [ -1.93829, 48.38909 ], [ -1.939919, 48.38613 ], [ -1.945718, 48.37742 ], [ -1.946466, 48.36712 ], [ -1.932019, 48.35459 ], [ -1.930318, 48.34813 ], [ -1.947782, 48.34259 ], [ -1.966897, 48.34282 ], [ -1.956632, 48.321857 ], [ -1.955451, 48.3188 ], [ -1.964572, 48.30144 ], [ -1.958045, 48.29312 ], [ -1.967577, 48.29191 ], [ -1.976457, 48.30024 ], [ -1.991436, 48.29819 ], [ -1.996033, 48.296651 ], [ -2.001991, 48.291107 ], [ -2.004284, 48.28113 ], [ -2.014101, 48.279532 ], [ -2.046771, 48.28978 ], [ -2.054287, 48.298556 ], [ -2.077427, 48.291622 ], [ -2.076641, 48.284741 ], [ -2.08501, 48.276285 ], [ -2.11046, 48.27506 ], [ -2.109596, 48.268669 ], [ -2.099637, 48.26289 ], [ -2.108602, 48.254799 ], [ -2.106582, 48.25166 ], [ -2.124054, 48.259305 ], [ -2.150098, 48.25872 ], [ -2.152795, 48.26172 ], [ -2.156662, 48.259563 ], [ -2.177596, 48.25095 ], [ -2.181494, 48.24885 ], [ -2.187172, 48.244 ], [ -2.190271, 48.224213 ], [ -2.183945, 48.21518 ], [ -2.184188, 48.211902 ], [ -2.191935, 48.208224 ], [ -2.20177, 48.208098 ], [ -2.213882, 48.21366 ], [ -2.227979, 48.210916 ], [ -2.218781, 48.20332 ], [ -2.224021, 48.183921 ], [ -2.224738, 48.17061 ], [ -2.230046, 48.164725 ], [ -2.247311, 48.158051 ], [ -2.247684, 48.154626 ], [ -2.240403, 48.14997 ], [ -2.242035, 48.14497 ], [ -2.25222, 48.14536 ], [ -2.264725, 48.15102 ], [ -2.278612, 48.14678 ], [ -2.283248, 48.1453 ], [ -2.283879, 48.14231 ], [ -2.287278, 48.133746 ] ] ], [ [ [ -3.002321, 48.83632 ], [ -3.002946, 48.838068 ], [ -3.009881, 48.838251 ], [ -3.011475, 48.85015 ], [ -3.001406, 48.850773 ], [ -3.0003, 48.852199 ], [ -3.009889, 48.854874 ], [ -3.010852, 48.858126 ], [ -2.994243, 48.86369 ], [ -2.986806, 48.862725 ], [ -2.988831, 48.86013 ], [ -2.993824, 48.85898 ], [ -2.995478, 48.85199 ], [ -2.994244, 48.848517 ], [ -2.997264, 48.84555 ], [ -2.99718, 48.840198 ], [ -3.002321, 48.83632 ] ] ], [ [ [ -3.583878, 48.7941 ], [ -3.586225, 48.800775 ], [ -3.583052, 48.805282 ], [ -3.575124, 48.80525 ], [ -3.570556, 48.807055 ], [ -3.565473, 48.80651 ], [ -3.563515, 48.80334 ], [ -3.569843, 48.79794 ], [ -3.579816, 48.798385 ], [ -3.583878, 48.7941 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "22", "CODE_DEPT": "23", "NOM_DEPT": "CREUSE", "CODE_CHF": "096", "NOM_CHF": "GUERET", "X_CHF_LIEU": "6126", "Y_CHF_LIEU": "65640", "X_CENTROID": "6241", "Y_CENTROID": "65549", "CODE_REG": "74", "NOM_REGION": "LIMOUSIN" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.492126, 45.73767 ], [ 2.487671, 45.73686 ], [ 2.474037, 45.728996 ], [ 2.471361, 45.719727 ], [ 2.466775, 45.71935 ], [ 2.453993, 45.709243 ], [ 2.444511, 45.707567 ], [ 2.435856, 45.699275 ], [ 2.431662, 45.70099 ], [ 2.410602, 45.70901 ], [ 2.381776, 45.708627 ], [ 2.374044, 45.712718 ], [ 2.37093, 45.71294 ], [ 2.367805, 45.71312 ], [ 2.362824, 45.712529 ], [ 2.348543, 45.70921 ], [ 2.345206, 45.70667 ], [ 2.347585, 45.70004 ], [ 2.348835, 45.69316 ], [ 2.341309, 45.68422 ], [ 2.320098, 45.67054 ], [ 2.306856, 45.674584 ], [ 2.29798, 45.671512 ], [ 2.286451, 45.6651 ], [ 2.271641, 45.66424 ], [ 2.271074, 45.691648 ], [ 2.266579, 45.69055 ], [ 2.257715, 45.688436 ], [ 2.24665, 45.694288 ], [ 2.237879, 45.69293 ], [ 2.232023, 45.69821 ], [ 2.222647, 45.69783 ], [ 2.21268, 45.712786 ], [ 2.211855, 45.70939 ], [ 2.210924, 45.702562 ], [ 2.197924, 45.699454 ], [ 2.19386, 45.701397 ], [ 2.195961, 45.704519 ], [ 2.203401, 45.717134 ], [ 2.184581, 45.720556 ], [ 2.174253, 45.732035 ], [ 2.160912, 45.735836 ], [ 2.160591, 45.729854 ], [ 2.156851, 45.72131 ], [ 2.152469, 45.72287 ], [ 2.143627, 45.72508 ], [ 2.129914, 45.734502 ], [ 2.11409, 45.726878 ], [ 2.097347, 45.733337 ], [ 2.08469, 45.728048 ], [ 2.084469, 45.73596 ], [ 2.083935, 45.73946 ], [ 2.082889, 45.745972 ], [ 2.060696, 45.7538 ], [ 2.053694, 45.763057 ], [ 2.048767, 45.76373 ], [ 2.044947, 45.761444 ], [ 2.038881, 45.755863 ], [ 2.014127, 45.754487 ], [ 2.00152, 45.748793 ], [ 1.99766, 45.73183 ], [ 1.991336, 45.72249 ], [ 1.982496, 45.7194 ], [ 1.980317, 45.722496 ], [ 1.9562, 45.723716 ], [ 1.943714, 45.71365 ], [ 1.944024, 45.70684 ], [ 1.934638, 45.706305 ], [ 1.928036, 45.71138 ], [ 1.918664, 45.712069 ], [ 1.910664, 45.703788 ], [ 1.898731, 45.698278 ], [ 1.896599, 45.701409 ], [ 1.881175, 45.70909 ], [ 1.880786, 45.71244 ], [ 1.888536, 45.71637 ], [ 1.89247, 45.71827 ], [ 1.88352, 45.72603 ], [ 1.874752, 45.727228 ], [ 1.886413, 45.745194 ], [ 1.883401, 45.747848 ], [ 1.874175, 45.75554 ], [ 1.877298, 45.75822 ], [ 1.896354, 45.76007 ], [ 1.902149, 45.769546 ], [ 1.897805, 45.767955 ], [ 1.89149, 45.771667 ], [ 1.883805, 45.79471 ], [ 1.861212, 45.8071 ], [ 1.85631, 45.80692 ], [ 1.855481, 45.81026 ], [ 1.843092, 45.81398 ], [ 1.834272, 45.825449 ], [ 1.830678, 45.82303 ], [ 1.828963, 45.8128 ], [ 1.824792, 45.8109 ], [ 1.796208, 45.829508 ], [ 1.786571, 45.82954 ], [ 1.778194, 45.83321 ], [ 1.773224, 45.84291 ], [ 1.779369, 45.85233 ], [ 1.770776, 45.868374 ], [ 1.765811, 45.868987 ], [ 1.756992, 45.86617 ], [ 1.755837, 45.85566 ], [ 1.75168, 45.85484 ], [ 1.73972, 45.851389 ], [ 1.736078, 45.84891 ], [ 1.729643, 45.843513 ], [ 1.719883, 45.841511 ], [ 1.694896, 45.843765 ], [ 1.676873, 45.83764 ], [ 1.667341, 45.838616 ], [ 1.65992, 45.8338 ], [ 1.658734, 45.83701 ], [ 1.652828, 45.845631 ], [ 1.647909, 45.84496 ], [ 1.628475, 45.8476 ], [ 1.624643, 45.84984 ], [ 1.602398, 45.857465 ], [ 1.606992, 45.86648 ], [ 1.603689, 45.879294 ], [ 1.591033, 45.88307 ], [ 1.602085, 45.88968 ], [ 1.611897, 45.890302 ], [ 1.618304, 45.886832 ], [ 1.622337, 45.896266 ], [ 1.632501, 45.89001 ], [ 1.641483, 45.8924 ], [ 1.640017, 45.894327 ], [ 1.64157, 45.896219 ], [ 1.625928, 45.9157 ], [ 1.637132, 45.92598 ], [ 1.62801, 45.9264 ], [ 1.625778, 45.93259 ], [ 1.617812, 45.93011 ], [ 1.604934, 45.93306 ], [ 1.600532, 45.93155 ], [ 1.581065, 45.930664 ], [ 1.577143, 45.91762 ], [ 1.573076, 45.91571 ], [ 1.555829, 45.91946 ], [ 1.547265, 45.91683 ], [ 1.544139, 45.91939 ], [ 1.532402, 45.929845 ], [ 1.513591, 45.931 ], [ 1.508951, 45.94031 ], [ 1.517933, 45.94136 ], [ 1.516824, 45.947565 ], [ 1.518656, 45.9505 ], [ 1.536417, 45.9541 ], [ 1.556429, 45.96405 ], [ 1.566241, 45.963684 ], [ 1.574813, 45.975771 ], [ 1.577299, 45.97804 ], [ 1.57369, 45.986204 ], [ 1.570881, 45.9884 ], [ 1.568388, 45.996837 ], [ 1.564237, 45.997433 ], [ 1.537903, 45.99734 ], [ 1.536575, 46.000609 ], [ 1.532917, 46.01036 ], [ 1.538179, 46.026857 ], [ 1.548244, 46.03347 ], [ 1.535513, 46.050717 ], [ 1.536707, 46.05302 ], [ 1.532444, 46.058603 ], [ 1.542086, 46.074074 ], [ 1.536513, 46.078758 ], [ 1.527149, 46.079492 ], [ 1.525675, 46.089578 ], [ 1.512506, 46.09356 ], [ 1.507847, 46.089246 ], [ 1.500707, 46.09568 ], [ 1.499966, 46.10244 ], [ 1.488492, 46.10816 ], [ 1.493488, 46.11767 ], [ 1.504852, 46.123197 ], [ 1.502153, 46.12954 ], [ 1.494325, 46.13345 ], [ 1.495629, 46.140224 ], [ 1.481769, 46.138715 ], [ 1.470206, 46.14961 ], [ 1.451356, 46.152661 ], [ 1.465051, 46.16248 ], [ 1.458851, 46.17141 ], [ 1.460906, 46.177631 ], [ 1.452574, 46.18115 ], [ 1.448556, 46.17925 ], [ 1.43538, 46.17617 ], [ 1.428212, 46.179273 ], [ 1.418726, 46.17777 ], [ 1.406756, 46.183208 ], [ 1.401736, 46.183263 ], [ 1.395054, 46.195814 ], [ 1.387328, 46.19966 ], [ 1.374521, 46.21817 ], [ 1.379201, 46.2192 ], [ 1.395412, 46.23898 ], [ 1.40437, 46.2416 ], [ 1.413869, 46.24034 ], [ 1.418063, 46.24211 ], [ 1.419417, 46.248709 ], [ 1.407643, 46.25446 ], [ 1.406468, 46.26096 ], [ 1.415204, 46.269132 ], [ 1.424521, 46.26715 ], [ 1.436758, 46.27248 ], [ 1.430576, 46.27746 ], [ 1.417187, 46.279616 ], [ 1.425425, 46.29804 ], [ 1.429761, 46.29951 ], [ 1.442205, 46.303783 ], [ 1.43869, 46.323153 ], [ 1.445731, 46.330635 ], [ 1.444558, 46.333933 ], [ 1.430481, 46.333767 ], [ 1.409687, 46.341909 ], [ 1.411944, 46.344805 ], [ 1.415191, 46.34722 ], [ 1.43659, 46.35613 ], [ 1.437093, 46.36311 ], [ 1.445155, 46.37193 ], [ 1.463704, 46.37628 ], [ 1.479634, 46.393974 ], [ 1.493588, 46.39725 ], [ 1.496954, 46.394636 ], [ 1.497998, 46.39739 ], [ 1.500105, 46.405503 ], [ 1.509319, 46.412775 ], [ 1.510433, 46.41921 ], [ 1.521022, 46.42538 ], [ 1.525351, 46.426654 ], [ 1.534714, 46.4243 ], [ 1.543637, 46.416415 ], [ 1.546253, 46.395923 ], [ 1.555196, 46.395893 ], [ 1.569633, 46.40531 ], [ 1.574357, 46.406383 ], [ 1.577489, 46.409097 ], [ 1.592031, 46.4076 ], [ 1.604991, 46.421153 ], [ 1.609055, 46.42317 ], [ 1.621236, 46.419405 ], [ 1.614415, 46.403373 ], [ 1.627341, 46.389425 ], [ 1.64109, 46.38559 ], [ 1.651332, 46.392981 ], [ 1.65521, 46.395116 ], [ 1.661634, 46.4044 ], [ 1.679335, 46.416426 ], [ 1.683603, 46.41818 ], [ 1.7094, 46.39335 ], [ 1.727841, 46.38896 ], [ 1.72832, 46.39241 ], [ 1.745905, 46.40431 ], [ 1.750549, 46.405593 ], [ 1.748767, 46.412318 ], [ 1.759737, 46.42749 ], [ 1.75527, 46.437209 ], [ 1.758296, 46.43992 ], [ 1.752658, 46.445502 ], [ 1.750092, 46.447743 ], [ 1.74759, 46.45002 ], [ 1.784546, 46.455077 ], [ 1.793694, 46.45385 ], [ 1.798244, 46.45491 ], [ 1.802116, 46.44828 ], [ 1.816986, 46.4385 ], [ 1.818455, 46.431423 ], [ 1.84257, 46.42681 ], [ 1.853747, 46.43347 ], [ 1.878921, 46.432375 ], [ 1.883956, 46.43265 ], [ 1.88768, 46.440989 ], [ 1.895331, 46.43824 ], [ 1.899831, 46.438567 ], [ 1.911556, 46.44309 ], [ 1.919538, 46.43996 ], [ 1.92287, 46.434149 ], [ 1.926119, 46.43191 ], [ 1.976055, 46.4395 ], [ 1.981108, 46.440285 ], [ 1.986597, 46.435786 ], [ 1.990776, 46.435229 ], [ 1.993082, 46.43092 ], [ 2.026334, 46.427216 ], [ 2.029415, 46.42459 ], [ 2.058493, 46.420876 ], [ 2.063459, 46.42135 ], [ 2.072452, 46.420108 ], [ 2.084371, 46.41129 ], [ 2.088749, 46.41034 ], [ 2.088623, 46.41007 ], [ 2.10344, 46.41076 ], [ 2.115972, 46.421534 ], [ 2.140603, 46.421101 ], [ 2.149206, 46.4239 ], [ 2.167786, 46.42408 ], [ 2.180482, 46.4232 ], [ 2.184897, 46.42315 ], [ 2.194075, 46.42597 ], [ 2.197831, 46.428298 ], [ 2.220649, 46.423584 ], [ 2.248883, 46.426259 ], [ 2.253658, 46.425651 ], [ 2.256961, 46.423133 ], [ 2.276283, 46.421276 ], [ 2.281048, 46.420405 ], [ 2.279481, 46.41384 ], [ 2.282033, 46.41082 ], [ 2.278416, 46.40865 ], [ 2.284576, 46.38962 ], [ 2.284789, 46.386309 ], [ 2.286936, 46.38331 ], [ 2.300942, 46.381861 ], [ 2.312479, 46.37606 ], [ 2.331406, 46.37841 ], [ 2.335475, 46.372324 ], [ 2.336464, 46.36904 ], [ 2.337142, 46.365742 ], [ 2.323262, 46.365778 ], [ 2.309602, 46.356592 ], [ 2.307829, 46.347666 ], [ 2.30211, 46.34236 ], [ 2.31162, 46.34097 ], [ 2.314586, 46.33464 ], [ 2.334254, 46.32517 ], [ 2.357932, 46.323367 ], [ 2.36621, 46.31117 ], [ 2.37061, 46.31272 ], [ 2.383785, 46.329129 ], [ 2.38608, 46.33197 ], [ 2.388164, 46.33157 ], [ 2.415901, 46.311351 ], [ 2.420657, 46.31013 ], [ 2.415615, 46.297932 ], [ 2.421374, 46.285327 ], [ 2.426006, 46.28453 ], [ 2.430241, 46.290739 ], [ 2.438446, 46.29366 ], [ 2.443032, 46.294999 ], [ 2.470215, 46.28635 ], [ 2.4803, 46.278831 ], [ 2.47958, 46.27539 ], [ 2.477773, 46.26881 ], [ 2.487941, 46.253354 ], [ 2.48892, 46.250009 ], [ 2.50198, 46.246978 ], [ 2.511509, 46.23952 ], [ 2.516311, 46.23944 ], [ 2.515203, 46.238543 ], [ 2.521757, 46.20277 ], [ 2.528303, 46.19419 ], [ 2.526102, 46.18782 ], [ 2.528499, 46.184939 ], [ 2.541834, 46.17629 ], [ 2.55459, 46.174634 ], [ 2.559155, 46.174409 ], [ 2.565379, 46.143041 ], [ 2.563985, 46.14081 ], [ 2.559208, 46.13873 ], [ 2.559959, 46.13228 ], [ 2.554641, 46.1205 ], [ 2.550523, 46.118958 ], [ 2.549019, 46.112802 ], [ 2.550966, 46.09961 ], [ 2.552621, 46.093401 ], [ 2.550659, 46.08644 ], [ 2.554677, 46.07613 ], [ 2.573497, 46.047006 ], [ 2.599212, 46.03549 ], [ 2.602696, 46.032875 ], [ 2.600116, 46.0303 ], [ 2.601761, 46.02106 ], [ 2.598287, 46.01525 ], [ 2.598839, 46.008656 ], [ 2.593557, 45.99938 ], [ 2.596791, 45.98665 ], [ 2.600091, 45.98405 ], [ 2.610789, 45.972732 ], [ 2.60683, 45.966424 ], [ 2.602149, 45.96552 ], [ 2.565828, 45.95686 ], [ 2.568835, 45.947141 ], [ 2.551637, 45.94127 ], [ 2.553174, 45.93797 ], [ 2.544087, 45.93027 ], [ 2.542608, 45.92342 ], [ 2.54389, 45.91661 ], [ 2.55784, 45.91296 ], [ 2.553196, 45.911393 ], [ 2.549707, 45.9089 ], [ 2.511845, 45.887124 ], [ 2.502119, 45.886082 ], [ 2.50158, 45.875787 ], [ 2.492225, 45.86403 ], [ 2.487571, 45.864216 ], [ 2.47428, 45.87116 ], [ 2.465267, 45.871353 ], [ 2.465349, 45.86821 ], [ 2.443424, 45.86674 ], [ 2.442696, 45.863508 ], [ 2.443406, 45.857 ], [ 2.449666, 45.85222 ], [ 2.447823, 45.84582 ], [ 2.438951, 45.846497 ], [ 2.432688, 45.839001 ], [ 2.426321, 45.8343 ], [ 2.40211, 45.83712 ], [ 2.38802, 45.82738 ], [ 2.389333, 45.82402 ], [ 2.430863, 45.788617 ], [ 2.433456, 45.773024 ], [ 2.434119, 45.769857 ], [ 2.442298, 45.761406 ], [ 2.450513, 45.75943 ], [ 2.454754, 45.76116 ], [ 2.46699, 45.75578 ], [ 2.471269, 45.749497 ], [ 2.485224, 45.74686 ], [ 2.492126, 45.73767 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "23", "CODE_DEPT": "24", "NOM_DEPT": "DORDOGNE", "CODE_CHF": "322", "NOM_CHF": "PERIGUEUX", "X_CHF_LIEU": "5207", "Y_CHF_LIEU": "64564", "X_CENTROID": "5223", "Y_CENTROID": "64475", "CODE_REG": "72", "NOM_REGION": "AQUITAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.448262, 45.019313 ], [ 1.433023, 45.01077 ], [ 1.40913, 45.00673 ], [ 1.414987, 44.993566 ], [ 1.414261, 44.97391 ], [ 1.419568, 44.968397 ], [ 1.41899, 44.95828 ], [ 1.428611, 44.946309 ], [ 1.433462, 44.946044 ], [ 1.4331, 44.937214 ], [ 1.441562, 44.918782 ], [ 1.423629, 44.918268 ], [ 1.410526, 44.908788 ], [ 1.418269, 44.907448 ], [ 1.419672, 44.899003 ], [ 1.421836, 44.89641 ], [ 1.435732, 44.889676 ], [ 1.439857, 44.888951 ], [ 1.442508, 44.881063 ], [ 1.442178, 44.87835 ], [ 1.439858, 44.875245 ], [ 1.431431, 44.87177 ], [ 1.416778, 44.8709 ], [ 1.414009, 44.871655 ], [ 1.411446, 44.87271 ], [ 1.409292, 44.864725 ], [ 1.405462, 44.86314 ], [ 1.402862, 44.85081 ], [ 1.402507, 44.849049 ], [ 1.388593, 44.849992 ], [ 1.378341, 44.84335 ], [ 1.365459, 44.84497 ], [ 1.360801, 44.83889 ], [ 1.364103, 44.811568 ], [ 1.360244, 44.81116 ], [ 1.356551, 44.81025 ], [ 1.352501, 44.808578 ], [ 1.325507, 44.806012 ], [ 1.321845, 44.804111 ], [ 1.301166, 44.797744 ], [ 1.293311, 44.789852 ], [ 1.30262, 44.78896 ], [ 1.303806, 44.785691 ], [ 1.297154, 44.77697 ], [ 1.303951, 44.7725 ], [ 1.308133, 44.7709 ], [ 1.321535, 44.761097 ], [ 1.316051, 44.740375 ], [ 1.312139, 44.74149 ], [ 1.30019, 44.744284 ], [ 1.297181, 44.73806 ], [ 1.299421, 44.731674 ], [ 1.287021, 44.71446 ], [ 1.282721, 44.7151 ], [ 1.270041, 44.72209 ], [ 1.268091, 44.71896 ], [ 1.261542, 44.71018 ], [ 1.244638, 44.70475 ], [ 1.242933, 44.694636 ], [ 1.230001, 44.69115 ], [ 1.224707, 44.68571 ], [ 1.22455, 44.68427 ], [ 1.219796, 44.68332 ], [ 1.180561, 44.682687 ], [ 1.166974, 44.67859 ], [ 1.161061, 44.672964 ], [ 1.146733, 44.670797 ], [ 1.146901, 44.66758 ], [ 1.149825, 44.655027 ], [ 1.146516, 44.65285 ], [ 1.15255, 44.63618 ], [ 1.150893, 44.632856 ], [ 1.146642, 44.63136 ], [ 1.127289, 44.616772 ], [ 1.123622, 44.614828 ], [ 1.107396, 44.603961 ], [ 1.096152, 44.593124 ], [ 1.103467, 44.58097 ], [ 1.099504, 44.580043 ], [ 1.10321, 44.57174 ], [ 1.098607, 44.57189 ], [ 1.085075, 44.57195 ], [ 1.076483, 44.57417 ], [ 1.075141, 44.57732 ], [ 1.077766, 44.583845 ], [ 1.071021, 44.596119 ], [ 1.056876, 44.59771 ], [ 1.046781, 44.604959 ], [ 1.033401, 44.608369 ], [ 1.029019, 44.60966 ], [ 1.012502, 44.61583 ], [ 0.997505, 44.62949 ], [ 0.995923, 44.632821 ], [ 0.977296, 44.642992 ], [ 0.966655, 44.636195 ], [ 0.944179, 44.640355 ], [ 0.939393, 44.63981 ], [ 0.926654, 44.635 ], [ 0.914685, 44.624745 ], [ 0.911162, 44.62317 ], [ 0.907453, 44.62186 ], [ 0.895557, 44.61593 ], [ 0.876301, 44.613963 ], [ 0.869996, 44.59732 ], [ 0.865974, 44.598013 ], [ 0.857727, 44.598106 ], [ 0.853389, 44.59948 ], [ 0.835146, 44.6022 ], [ 0.837936, 44.614922 ], [ 0.82929, 44.612852 ], [ 0.826465, 44.61516 ], [ 0.825021, 44.62122 ], [ 0.817004, 44.62701 ], [ 0.835656, 44.636879 ], [ 0.835063, 44.653294 ], [ 0.843061, 44.656287 ], [ 0.84337, 44.66272 ], [ 0.84865, 44.667221 ], [ 0.852444, 44.668979 ], [ 0.848411, 44.67017 ], [ 0.83544, 44.670422 ], [ 0.825838, 44.6759 ], [ 0.829354, 44.68062 ], [ 0.831074, 44.68317 ], [ 0.82861, 44.68977 ], [ 0.817888, 44.696709 ], [ 0.79947, 44.700775 ], [ 0.788386, 44.695241 ], [ 0.787299, 44.68529 ], [ 0.783217, 44.684113 ], [ 0.763141, 44.689924 ], [ 0.760052, 44.680305 ], [ 0.746133, 44.68175 ], [ 0.729134, 44.67599 ], [ 0.724522, 44.677041 ], [ 0.696058, 44.67701 ], [ 0.692439, 44.676619 ], [ 0.685312, 44.675561 ], [ 0.680587, 44.67628 ], [ 0.657434, 44.67786 ], [ 0.657142, 44.68701 ], [ 0.655629, 44.68998 ], [ 0.65546, 44.693432 ], [ 0.644297, 44.70432 ], [ 0.63036, 44.70657 ], [ 0.627378, 44.704218 ], [ 0.621799, 44.699352 ], [ 0.623614, 44.69315 ], [ 0.620018, 44.691297 ], [ 0.616758, 44.69343 ], [ 0.591392, 44.696938 ], [ 0.58749, 44.698699 ], [ 0.576468, 44.693063 ], [ 0.567171, 44.671513 ], [ 0.562454, 44.6723 ], [ 0.546558, 44.66515 ], [ 0.538778, 44.66844 ], [ 0.534406, 44.67461 ], [ 0.530741, 44.67673 ], [ 0.521659, 44.67858 ], [ 0.516743, 44.67811 ], [ 0.495626, 44.669808 ], [ 0.488043, 44.666907 ], [ 0.47053, 44.66958 ], [ 0.467953, 44.666809 ], [ 0.451989, 44.655588 ], [ 0.447578, 44.654082 ], [ 0.429293, 44.65074 ], [ 0.416954, 44.64521 ], [ 0.39101, 44.654527 ], [ 0.37674, 44.65393 ], [ 0.36662, 44.6612 ], [ 0.355528, 44.65496 ], [ 0.351812, 44.65562 ], [ 0.349598, 44.660847 ], [ 0.350448, 44.674965 ], [ 0.359541, 44.69132 ], [ 0.356731, 44.694158 ], [ 0.341479, 44.70237 ], [ 0.343484, 44.709136 ], [ 0.347871, 44.710395 ], [ 0.347345, 44.720489 ], [ 0.34502, 44.72342 ], [ 0.341042, 44.725526 ], [ 0.336793, 44.735477 ], [ 0.307009, 44.758097 ], [ 0.303376, 44.75898 ], [ 0.297325, 44.76229 ], [ 0.293688, 44.76457 ], [ 0.280226, 44.774397 ], [ 0.274025, 44.783622 ], [ 0.271666, 44.78634 ], [ 0.27435, 44.79568 ], [ 0.274681, 44.79877 ], [ 0.265975, 44.81259 ], [ 0.263979, 44.8229 ], [ 0.263719, 44.826421 ], [ 0.268305, 44.826353 ], [ 0.285758, 44.82302 ], [ 0.29246, 44.83157 ], [ 0.300752, 44.82919 ], [ 0.299577, 44.83546 ], [ 0.315056, 44.84538 ], [ 0.311876, 44.847777 ], [ 0.288047, 44.86318 ], [ 0.284058, 44.864991 ], [ 0.239023, 44.87198 ], [ 0.243751, 44.85955 ], [ 0.241753, 44.8569 ], [ 0.238317, 44.854926 ], [ 0.22209, 44.84448 ], [ 0.217722, 44.84395 ], [ 0.209733, 44.841373 ], [ 0.206411, 44.838902 ], [ 0.192844, 44.820803 ], [ 0.189312, 44.82005 ], [ 0.184076, 44.823481 ], [ 0.182194, 44.82493 ], [ 0.17755, 44.82614 ], [ 0.157907, 44.82632 ], [ 0.148828, 44.82909 ], [ 0.124248, 44.827991 ], [ 0.114803, 44.81986 ], [ 0.114027, 44.819446 ], [ 0.109285, 44.820097 ], [ 0.108644, 44.830333 ], [ 0.095753, 44.83282 ], [ 0.091294, 44.83264 ], [ 0.082667, 44.831013 ], [ 0.075697, 44.81947 ], [ 0.070891, 44.819144 ], [ 0.064887, 44.82454 ], [ 0.050846, 44.82433 ], [ 0.047816, 44.82441 ], [ 0.043329, 44.825728 ], [ 0.037439, 44.83082 ], [ 0.039033, 44.837569 ], [ 0.022247, 44.84942 ], [ 0.008881, 44.845923 ], [ 0.003987, 44.84556 ], [ -0.03421, 44.852114 ], [ -0.032557, 44.855286 ], [ -0.010036, 44.859792 ], [ -0.004807, 44.868592 ], [ -0.001536, 44.87069 ], [ 0.001218, 44.87605 ], [ 0.001093, 44.87627 ], [ 0.012617, 44.8852 ], [ 0.014971, 44.89123 ], [ 0.015948, 44.894307 ], [ 0.01719, 44.894782 ], [ 0.02043, 44.897257 ], [ 0.033907, 44.91496 ], [ 0.022059, 44.92531 ], [ 0.018212, 44.928029 ], [ 0.016192, 44.931192 ], [ 0.005127, 44.94624 ], [ 0.00923, 44.962774 ], [ 0.014522, 44.97207 ], [ 0.013706, 44.978806 ], [ 0.017709, 44.98063 ], [ 0.029545, 44.97648 ], [ 0.036635, 44.991484 ], [ 0.040106, 44.99355 ], [ 0.035641, 45.01434 ], [ 0.039453, 45.02081 ], [ 0.03914, 45.02431 ], [ 0.040691, 45.02214 ], [ 0.042155, 45.025446 ], [ 0.044806, 45.035635 ], [ 0.055929, 45.04207 ], [ 0.073296, 45.07013 ], [ 0.072345, 45.0747 ], [ 0.070631, 45.076106 ], [ 0.067585, 45.0789 ], [ 0.061888, 45.09584 ], [ 0.045793, 45.11346 ], [ 0.031843, 45.11712 ], [ 0.006979, 45.117781 ], [ 0.00251, 45.119003 ], [ -0.025092, 45.11473 ], [ -0.0402, 45.10238 ], [ -0.041524, 45.112683 ], [ -0.02963, 45.12778 ], [ -0.035312, 45.137245 ], [ -0.036728, 45.140567 ], [ -0.001528, 45.15082 ], [ 0.003268, 45.15566 ], [ 0.000368, 45.15843 ], [ -0.014091, 45.15992 ], [ -0.019062, 45.165177 ], [ -0.002052, 45.181171 ], [ 0.001677, 45.18339 ], [ 0.004331, 45.19163 ], [ 0.010324, 45.202732 ], [ 0.033859, 45.20837 ], [ 0.036594, 45.211353 ], [ 0.051213, 45.22538 ], [ 0.055582, 45.227164 ], [ 0.066433, 45.22062 ], [ 0.076064, 45.22027 ], [ 0.0884, 45.22526 ], [ 0.092006, 45.227515 ], [ 0.100037, 45.22607 ], [ 0.111422, 45.21698 ], [ 0.114272, 45.214622 ], [ 0.115844, 45.213572 ], [ 0.132319, 45.209 ], [ 0.140998, 45.214751 ], [ 0.145486, 45.214487 ], [ 0.148209, 45.22456 ], [ 0.157828, 45.22645 ], [ 0.174738, 45.23921 ], [ 0.171342, 45.248329 ], [ 0.172293, 45.25171 ], [ 0.176696, 45.25596 ], [ 0.174862, 45.261437 ], [ 0.200767, 45.261828 ], [ 0.204416, 45.263604 ], [ 0.210296, 45.271274 ], [ 0.210596, 45.2742 ], [ 0.220092, 45.287223 ], [ 0.220912, 45.29022 ], [ 0.243136, 45.29175 ], [ 0.246868, 45.28984 ], [ 0.249597, 45.28859 ], [ 0.252621, 45.2894 ], [ 0.262719, 45.29587 ], [ 0.266609, 45.297749 ], [ 0.270634, 45.314605 ], [ 0.264905, 45.33453 ], [ 0.264588, 45.334748 ], [ 0.258533, 45.350051 ], [ 0.256966, 45.353067 ], [ 0.250217, 45.360614 ], [ 0.249431, 45.36359 ], [ 0.253457, 45.380939 ], [ 0.262875, 45.39686 ], [ 0.265268, 45.40543 ], [ 0.267624, 45.40798 ], [ 0.27155, 45.41608 ], [ 0.27086, 45.41893 ], [ 0.278402, 45.42716 ], [ 0.289959, 45.432617 ], [ 0.298855, 45.43229 ], [ 0.303543, 45.43194 ], [ 0.316234, 45.43598 ], [ 0.303213, 45.44559 ], [ 0.302619, 45.45889 ], [ 0.310781, 45.45876 ], [ 0.329155, 45.44378 ], [ 0.333389, 45.45318 ], [ 0.334363, 45.459819 ], [ 0.334668, 45.46014 ], [ 0.356707, 45.46622 ], [ 0.363133, 45.47515 ], [ 0.372947, 45.475865 ], [ 0.378867, 45.480671 ], [ 0.378384, 45.484128 ], [ 0.408356, 45.49178 ], [ 0.419259, 45.48595 ], [ 0.422921, 45.483781 ], [ 0.426875, 45.485782 ], [ 0.431738, 45.485596 ], [ 0.432763, 45.50165 ], [ 0.443656, 45.51188 ], [ 0.446105, 45.514637 ], [ 0.450893, 45.51865 ], [ 0.449305, 45.52392 ], [ 0.457779, 45.52556 ], [ 0.464307, 45.53359 ], [ 0.465737, 45.539623 ], [ 0.46967, 45.53884 ], [ 0.473715, 45.538407 ], [ 0.48327, 45.538891 ], [ 0.499202, 45.545788 ], [ 0.506549, 45.55434 ], [ 0.50227, 45.562802 ], [ 0.498576, 45.56478 ], [ 0.516324, 45.58806 ], [ 0.512189, 45.59385 ], [ 0.516143, 45.599246 ], [ 0.513312, 45.60543 ], [ 0.503838, 45.61257 ], [ 0.501441, 45.615353 ], [ 0.500403, 45.619564 ], [ 0.508422, 45.6214 ], [ 0.512657, 45.63146 ], [ 0.525833, 45.641785 ], [ 0.535418, 45.64286 ], [ 0.537079, 45.631509 ], [ 0.538448, 45.628737 ], [ 0.550448, 45.6341 ], [ 0.564535, 45.6344 ], [ 0.575447, 45.640928 ], [ 0.573663, 45.644124 ], [ 0.567032, 45.65326 ], [ 0.587634, 45.66129 ], [ 0.58746, 45.66794 ], [ 0.600389, 45.671733 ], [ 0.596594, 45.67687 ], [ 0.602126, 45.68177 ], [ 0.605006, 45.694218 ], [ 0.613217, 45.69402 ], [ 0.627671, 45.708 ], [ 0.629742, 45.71457 ], [ 0.637778, 45.70198 ], [ 0.650294, 45.697586 ], [ 0.653606, 45.69103 ], [ 0.662086, 45.68748 ], [ 0.676533, 45.68841 ], [ 0.681304, 45.687445 ], [ 0.694223, 45.690494 ], [ 0.702599, 45.687846 ], [ 0.713127, 45.694042 ], [ 0.722051, 45.69461 ], [ 0.744137, 45.68826 ], [ 0.760468, 45.670949 ], [ 0.77397, 45.66781 ], [ 0.775643, 45.667746 ], [ 0.763951, 45.6315 ], [ 0.753737, 45.619602 ], [ 0.750613, 45.616873 ], [ 0.767445, 45.60439 ], [ 0.777188, 45.59217 ], [ 0.801392, 45.59593 ], [ 0.805857, 45.594966 ], [ 0.810565, 45.57909 ], [ 0.8115, 45.57587 ], [ 0.839996, 45.581304 ], [ 0.848144, 45.589847 ], [ 0.849461, 45.593259 ], [ 0.858099, 45.6098 ], [ 0.8597, 45.613191 ], [ 0.866884, 45.62097 ], [ 0.869353, 45.62353 ], [ 0.876966, 45.61984 ], [ 0.881222, 45.61059 ], [ 0.890345, 45.60325 ], [ 0.89374, 45.60103 ], [ 0.898605, 45.600323 ], [ 0.904489, 45.60593 ], [ 0.918839, 45.605185 ], [ 0.946322, 45.61296 ], [ 0.959802, 45.608692 ], [ 0.969549, 45.60994 ], [ 0.97569, 45.604493 ], [ 0.989587, 45.607355 ], [ 0.995823, 45.612708 ], [ 1.02011, 45.60974 ], [ 1.032964, 45.59906 ], [ 1.039334, 45.58584 ], [ 1.034704, 45.579661 ], [ 1.037977, 45.569468 ], [ 1.047749, 45.557829 ], [ 1.056478, 45.5546 ], [ 1.061386, 45.5543 ], [ 1.061699, 45.554891 ], [ 1.074201, 45.545612 ], [ 1.081118, 45.533561 ], [ 1.084638, 45.531442 ], [ 1.086024, 45.53474 ], [ 1.104331, 45.53909 ], [ 1.109717, 45.544666 ], [ 1.119312, 45.545962 ], [ 1.128288, 45.54322 ], [ 1.132364, 45.541325 ], [ 1.165365, 45.526367 ], [ 1.164273, 45.522954 ], [ 1.147483, 45.515418 ], [ 1.134423, 45.50488 ], [ 1.12289, 45.48947 ], [ 1.118436, 45.487904 ], [ 1.119623, 45.47779 ], [ 1.131013, 45.472253 ], [ 1.149887, 45.473268 ], [ 1.158185, 45.476674 ], [ 1.162444, 45.47835 ], [ 1.175344, 45.468794 ], [ 1.177031, 45.45872 ], [ 1.185123, 45.4551 ], [ 1.212123, 45.46237 ], [ 1.233962, 45.45501 ], [ 1.237444, 45.438848 ], [ 1.242025, 45.437605 ], [ 1.250141, 45.44149 ], [ 1.253152, 45.44422 ], [ 1.269663, 45.439936 ], [ 1.272393, 45.437303 ], [ 1.288271, 45.433529 ], [ 1.289382, 45.42068 ], [ 1.289192, 45.4173 ], [ 1.279872, 45.41513 ], [ 1.265645, 45.417798 ], [ 1.258724, 45.41379 ], [ 1.260222, 45.40025 ], [ 1.26411, 45.39816 ], [ 1.277897, 45.39923 ], [ 1.274016, 45.39287 ], [ 1.281683, 45.38509 ], [ 1.29964, 45.39431 ], [ 1.318722, 45.38428 ], [ 1.323231, 45.38312 ], [ 1.319877, 45.367205 ], [ 1.311868, 45.35955 ], [ 1.307725, 45.357971 ], [ 1.302753, 45.358067 ], [ 1.285155, 45.35205 ], [ 1.281923, 45.34213 ], [ 1.274091, 45.32988 ], [ 1.2599, 45.32065 ], [ 1.240647, 45.322279 ], [ 1.235803, 45.32204 ], [ 1.240886, 45.305423 ], [ 1.2384, 45.3025 ], [ 1.241603, 45.301309 ], [ 1.238945, 45.29172 ], [ 1.232076, 45.287838 ], [ 1.22706, 45.271844 ], [ 1.238364, 45.268114 ], [ 1.240207, 45.263468 ], [ 1.239385, 45.260447 ], [ 1.257397, 45.254983 ], [ 1.271874, 45.25731 ], [ 1.276285, 45.2557 ], [ 1.277687, 45.242085 ], [ 1.260952, 45.229695 ], [ 1.238262, 45.223314 ], [ 1.233608, 45.222195 ], [ 1.233398, 45.21958 ], [ 1.231275, 45.214566 ], [ 1.228376, 45.20436 ], [ 1.233456, 45.19842 ], [ 1.272148, 45.201147 ], [ 1.286019, 45.191265 ], [ 1.289594, 45.188879 ], [ 1.2914, 45.18565 ], [ 1.285709, 45.176048 ], [ 1.281525, 45.174228 ], [ 1.277911, 45.17209 ], [ 1.268222, 45.16508 ], [ 1.255055, 45.16477 ], [ 1.254436, 45.158506 ], [ 1.280205, 45.14927 ], [ 1.290473, 45.14188 ], [ 1.308754, 45.137016 ], [ 1.320997, 45.14245 ], [ 1.333737, 45.13773 ], [ 1.347115, 45.141445 ], [ 1.351983, 45.141643 ], [ 1.351916, 45.13657 ], [ 1.351991, 45.134033 ], [ 1.366379, 45.13236 ], [ 1.380532, 45.135712 ], [ 1.393954, 45.13137 ], [ 1.398389, 45.129747 ], [ 1.401786, 45.128427 ], [ 1.409614, 45.1265 ], [ 1.413094, 45.12491 ], [ 1.413525, 45.11825 ], [ 1.408918, 45.11252 ], [ 1.392448, 45.105877 ], [ 1.382956, 45.105605 ], [ 1.378249, 45.10609 ], [ 1.380056, 45.100798 ], [ 1.383285, 45.103007 ], [ 1.389354, 45.09892 ], [ 1.393265, 45.09735 ], [ 1.391702, 45.087593 ], [ 1.398488, 45.0788 ], [ 1.401222, 45.07609 ], [ 1.406003, 45.07022 ], [ 1.401752, 45.06421 ], [ 1.399564, 45.06118 ], [ 1.409056, 45.0594 ], [ 1.411599, 45.05263 ], [ 1.431329, 45.032701 ], [ 1.434641, 45.0301 ], [ 1.444114, 45.02006 ], [ 1.448262, 45.019313 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "24", "CODE_DEPT": "25", "NOM_DEPT": "DOUBS", "CODE_CHF": "056", "NOM_CHF": "BESANCON", "X_CHF_LIEU": "9284", "Y_CHF_LIEU": "66868", "X_CENTROID": "9545", "Y_CENTROID": "66793", "CODE_REG": "43", "NOM_REGION": "FRANCHE-COMTE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.138109, 46.55766 ], [ 6.134607, 46.555612 ], [ 6.131093, 46.55357 ], [ 6.127186, 46.55582 ], [ 6.087083, 46.58255 ], [ 6.083865, 46.585034 ], [ 6.048567, 46.60772 ], [ 6.053761, 46.61291 ], [ 6.062491, 46.613515 ], [ 6.058497, 46.61898 ], [ 6.059153, 46.62485 ], [ 6.062602, 46.62709 ], [ 6.081737, 46.63654 ], [ 6.085902, 46.638469 ], [ 6.099197, 46.64334 ], [ 6.103265, 46.65249 ], [ 6.071211, 46.68757 ], [ 6.086126, 46.69611 ], [ 6.099766, 46.701272 ], [ 6.103598, 46.70369 ], [ 6.109355, 46.70701 ], [ 6.11296, 46.70774 ], [ 6.127108, 46.71707 ], [ 6.130623, 46.71941 ], [ 6.131107, 46.71962 ], [ 6.137485, 46.72386 ], [ 6.152262, 46.72945 ], [ 6.155252, 46.731515 ], [ 6.159724, 46.732906 ], [ 6.164171, 46.73432 ], [ 6.16818, 46.7361 ], [ 6.180198, 46.741442 ], [ 6.181715, 46.74809 ], [ 6.183659, 46.75463 ], [ 6.204198, 46.76339 ], [ 6.20333, 46.772681 ], [ 6.201136, 46.77529 ], [ 6.195654, 46.77997 ], [ 6.182748, 46.794304 ], [ 6.163781, 46.80384 ], [ 6.153656, 46.815219 ], [ 6.148831, 46.81599 ], [ 6.15224, 46.81953 ], [ 6.148065, 46.82156 ], [ 6.11332, 46.83622 ], [ 6.105555, 46.8453 ], [ 6.102703, 46.844809 ], [ 6.097614, 46.84422 ], [ 6.093277, 46.84232 ], [ 6.088554, 46.84264 ], [ 6.083771, 46.851355 ], [ 6.072026, 46.856851 ], [ 6.067857, 46.85862 ], [ 6.047095, 46.845638 ], [ 6.045962, 46.848848 ], [ 6.027407, 46.85172 ], [ 6.02468, 46.85649 ], [ 6.028808, 46.860321 ], [ 6.030521, 46.86862 ], [ 6.032267, 46.871421 ], [ 6.030152, 46.87447 ], [ 6.018207, 46.86974 ], [ 6.009696, 46.873095 ], [ 6.010313, 46.89245 ], [ 6.008435, 46.89556 ], [ 5.999368, 46.89679 ], [ 5.98195, 46.90821 ], [ 5.981702, 46.91801 ], [ 5.983877, 46.92098 ], [ 5.994455, 46.93104 ], [ 5.997222, 46.9335 ], [ 5.993638, 46.935755 ], [ 5.965485, 46.947448 ], [ 5.956543, 46.948498 ], [ 5.959531, 46.95093 ], [ 5.979789, 46.963478 ], [ 5.977195, 46.965608 ], [ 5.975184, 46.973309 ], [ 5.973172, 46.97596 ], [ 5.968797, 46.976123 ], [ 5.968915, 46.97684 ], [ 5.968591, 46.980282 ], [ 5.953536, 46.981101 ], [ 5.948985, 46.98117 ], [ 5.945111, 46.98885 ], [ 5.93888, 46.983709 ], [ 5.924782, 46.981068 ], [ 5.915004, 46.98722 ], [ 5.9137, 46.99063 ], [ 5.921548, 47.01448 ], [ 5.917343, 47.014438 ], [ 5.914876, 47.008023 ], [ 5.907692, 46.9996 ], [ 5.893725, 46.99652 ], [ 5.884481, 46.99848 ], [ 5.881568, 47.00509 ], [ 5.876931, 47.005813 ], [ 5.858321, 47.00829 ], [ 5.846944, 47.0031 ], [ 5.84693, 47.005845 ], [ 5.844003, 47.01002 ], [ 5.840657, 47.00851 ], [ 5.839449, 47.01535 ], [ 5.835588, 47.01331 ], [ 5.817347, 47.016634 ], [ 5.816025, 47.02259 ], [ 5.815687, 47.02598 ], [ 5.817225, 47.03928 ], [ 5.81492, 47.045883 ], [ 5.810145, 47.04681 ], [ 5.805278, 47.04573 ], [ 5.800341, 47.04481 ], [ 5.797116, 47.04209 ], [ 5.799216, 47.03178 ], [ 5.791866, 47.02264 ], [ 5.788092, 47.02074 ], [ 5.769926, 47.01766 ], [ 5.764418, 47.012482 ], [ 5.760567, 47.01367 ], [ 5.749513, 47.017243 ], [ 5.746332, 47.01996 ], [ 5.741657, 47.02983 ], [ 5.749742, 47.033877 ], [ 5.751268, 47.03719 ], [ 5.750931, 47.04067 ], [ 5.737384, 47.0508 ], [ 5.742758, 47.05591 ], [ 5.747797, 47.055454 ], [ 5.762794, 47.04611 ], [ 5.784717, 47.05491 ], [ 5.782717, 47.058051 ], [ 5.778609, 47.074771 ], [ 5.776818, 47.07789 ], [ 5.768989, 47.09004 ], [ 5.778052, 47.09749 ], [ 5.787552, 47.09599 ], [ 5.7902, 47.102292 ], [ 5.79159, 47.10518 ], [ 5.801869, 47.11053 ], [ 5.804744, 47.11608 ], [ 5.805567, 47.11947 ], [ 5.816597, 47.13479 ], [ 5.828074, 47.14118 ], [ 5.823646, 47.142587 ], [ 5.813663, 47.14989 ], [ 5.814705, 47.15316 ], [ 5.810483, 47.159051 ], [ 5.811467, 47.169054 ], [ 5.80754, 47.17125 ], [ 5.793167, 47.17457 ], [ 5.7851, 47.170565 ], [ 5.787059, 47.17652 ], [ 5.785197, 47.18853 ], [ 5.781091, 47.189885 ], [ 5.774928, 47.193366 ], [ 5.761384, 47.194186 ], [ 5.757191, 47.1967 ], [ 5.75913, 47.19971 ], [ 5.755693, 47.20538 ], [ 5.737666, 47.201289 ], [ 5.739038, 47.204355 ], [ 5.727009, 47.21763 ], [ 5.7234, 47.21842 ], [ 5.720717, 47.22262 ], [ 5.722763, 47.225421 ], [ 5.714028, 47.23601 ], [ 5.718389, 47.23804 ], [ 5.718946, 47.24147 ], [ 5.701682, 47.262208 ], [ 5.698726, 47.265006 ], [ 5.707877, 47.26803 ], [ 5.71138, 47.27057 ], [ 5.731034, 47.2646 ], [ 5.735196, 47.26344 ], [ 5.741824, 47.264968 ], [ 5.749752, 47.27249 ], [ 5.75426, 47.27291 ], [ 5.757453, 47.27633 ], [ 5.774967, 47.280222 ], [ 5.78254, 47.28869 ], [ 5.790403, 47.289932 ], [ 5.795302, 47.2897 ], [ 5.810675, 47.294785 ], [ 5.815037, 47.29514 ], [ 5.827125, 47.29789 ], [ 5.83122, 47.29871 ], [ 5.840561, 47.299813 ], [ 5.845068, 47.300892 ], [ 5.852381, 47.30794 ], [ 5.853064, 47.31083 ], [ 5.863882, 47.31598 ], [ 5.873147, 47.3146 ], [ 5.878955, 47.319649 ], [ 5.882704, 47.32163 ], [ 5.894814, 47.31183 ], [ 5.902059, 47.315002 ], [ 5.896168, 47.32612 ], [ 5.896712, 47.32907 ], [ 5.904306, 47.333025 ], [ 5.921675, 47.32762 ], [ 5.926441, 47.32707 ], [ 5.930662, 47.328913 ], [ 5.924679, 47.341648 ], [ 5.926704, 47.34476 ], [ 5.938583, 47.34241 ], [ 5.941769, 47.3442 ], [ 5.942949, 47.341304 ], [ 5.960306, 47.33929 ], [ 5.96356, 47.33727 ], [ 5.964007, 47.337201 ], [ 5.978633, 47.328043 ], [ 5.983149, 47.329441 ], [ 5.987159, 47.329824 ], [ 5.988164, 47.32717 ], [ 5.992056, 47.328536 ], [ 5.996651, 47.33987 ], [ 6.008152, 47.335813 ], [ 6.010495, 47.333167 ], [ 6.023555, 47.33235 ], [ 6.027015, 47.33495 ], [ 6.030475, 47.33757 ], [ 6.038896, 47.344913 ], [ 6.048023, 47.34644 ], [ 6.051001, 47.348938 ], [ 6.052159, 47.352277 ], [ 6.054942, 47.35133 ], [ 6.057539, 47.349676 ], [ 6.071943, 47.35051 ], [ 6.081865, 47.357556 ], [ 6.082373, 47.360849 ], [ 6.082016, 47.37171 ], [ 6.100892, 47.37088 ], [ 6.103184, 47.364655 ], [ 6.102487, 47.361322 ], [ 6.103077, 47.36121 ], [ 6.111452, 47.36204 ], [ 6.11706, 47.36612 ], [ 6.119702, 47.36846 ], [ 6.110691, 47.37543 ], [ 6.106643, 47.37699 ], [ 6.111808, 47.37867 ], [ 6.106828, 47.38361 ], [ 6.118479, 47.39348 ], [ 6.117785, 47.39662 ], [ 6.126305, 47.393909 ], [ 6.130007, 47.388017 ], [ 6.147528, 47.38592 ], [ 6.152249, 47.38612 ], [ 6.155959, 47.389874 ], [ 6.160353, 47.388358 ], [ 6.171557, 47.39453 ], [ 6.172705, 47.39778 ], [ 6.179743, 47.40191 ], [ 6.189034, 47.402386 ], [ 6.189249, 47.40556 ], [ 6.185315, 47.40523 ], [ 6.177865, 47.40671 ], [ 6.170974, 47.40934 ], [ 6.170568, 47.41235 ], [ 6.177539, 47.4162 ], [ 6.186566, 47.41421 ], [ 6.194119, 47.417787 ], [ 6.198717, 47.41788 ], [ 6.20225, 47.429906 ], [ 6.206369, 47.431288 ], [ 6.207986, 47.4288 ], [ 6.211616, 47.4258 ], [ 6.22465, 47.422 ], [ 6.229907, 47.41651 ], [ 6.232706, 47.413838 ], [ 6.241571, 47.41074 ], [ 6.243715, 47.413702 ], [ 6.233076, 47.4281 ], [ 6.234959, 47.43114 ], [ 6.246193, 47.426129 ], [ 6.250552, 47.424665 ], [ 6.260835, 47.42849 ], [ 6.261047, 47.43438 ], [ 6.261907, 47.43738 ], [ 6.263406, 47.446072 ], [ 6.280184, 47.44397 ], [ 6.284914, 47.445512 ], [ 6.289211, 47.44758 ], [ 6.285731, 47.449309 ], [ 6.282863, 47.451489 ], [ 6.292276, 47.46285 ], [ 6.294221, 47.465962 ], [ 6.301729, 47.469857 ], [ 6.299621, 47.479855 ], [ 6.299164, 47.48322 ], [ 6.302508, 47.49153 ], [ 6.307378, 47.49032 ], [ 6.311626, 47.48829 ], [ 6.320565, 47.48775 ], [ 6.331201, 47.500389 ], [ 6.331564, 47.50345 ], [ 6.334475, 47.506 ], [ 6.343925, 47.505511 ], [ 6.348676, 47.50556 ], [ 6.363965, 47.512097 ], [ 6.368083, 47.51349 ], [ 6.374837, 47.51115 ], [ 6.378694, 47.511364 ], [ 6.38645, 47.508274 ], [ 6.389787, 47.506159 ], [ 6.396998, 47.518373 ], [ 6.411148, 47.5219 ], [ 6.414662, 47.51943 ], [ 6.416725, 47.521112 ], [ 6.420592, 47.5196 ], [ 6.428573, 47.51692 ], [ 6.45632, 47.514087 ], [ 6.460669, 47.512445 ], [ 6.46359, 47.5097 ], [ 6.471519, 47.48702 ], [ 6.475733, 47.488659 ], [ 6.475829, 47.49525 ], [ 6.497259, 47.507838 ], [ 6.500569, 47.51025 ], [ 6.506233, 47.502125 ], [ 6.517722, 47.49667 ], [ 6.522414, 47.49726 ], [ 6.531543, 47.50341 ], [ 6.532903, 47.506293 ], [ 6.552118, 47.49326 ], [ 6.553836, 47.490311 ], [ 6.558532, 47.496358 ], [ 6.568577, 47.49626 ], [ 6.573512, 47.495494 ], [ 6.576228, 47.49833 ], [ 6.583668, 47.51035 ], [ 6.57902, 47.522753 ], [ 6.579606, 47.52594 ], [ 6.5814, 47.529294 ], [ 6.569138, 47.53135 ], [ 6.581312, 47.54088 ], [ 6.58045, 47.54411 ], [ 6.594465, 47.54235 ], [ 6.602113, 47.538351 ], [ 6.606403, 47.53685 ], [ 6.605545, 47.533794 ], [ 6.613339, 47.530804 ], [ 6.617904, 47.531023 ], [ 6.627005, 47.529848 ], [ 6.644428, 47.534053 ], [ 6.648122, 47.53612 ], [ 6.651061, 47.53902 ], [ 6.654297, 47.54178 ], [ 6.659006, 47.54661 ], [ 6.667733, 47.55488 ], [ 6.670176, 47.5579 ], [ 6.667054, 47.560701 ], [ 6.653689, 47.571221 ], [ 6.659797, 47.57991 ], [ 6.665164, 47.57255 ], [ 6.688866, 47.57081 ], [ 6.686969, 47.5684 ], [ 6.685248, 47.56315 ], [ 6.707803, 47.558 ], [ 6.714589, 47.553158 ], [ 6.71951, 47.55253 ], [ 6.720623, 47.557237 ], [ 6.722269, 47.559455 ], [ 6.725942, 47.560401 ], [ 6.740108, 47.556802 ], [ 6.744932, 47.55079 ], [ 6.748853, 47.54863 ], [ 6.753726, 47.54296 ], [ 6.758113, 47.54157 ], [ 6.765616, 47.53907 ], [ 6.7693, 47.53771 ], [ 6.777111, 47.536955 ], [ 6.781102, 47.53637 ], [ 6.799531, 47.555241 ], [ 6.801329, 47.56181 ], [ 6.807005, 47.5628 ], [ 6.814554, 47.55086 ], [ 6.81666, 47.547922 ], [ 6.830636, 47.54644 ], [ 6.850617, 47.54813 ], [ 6.855715, 47.54794 ], [ 6.85988, 47.54755 ], [ 6.88001, 47.55365 ], [ 6.884008, 47.55517 ], [ 6.887326, 47.55283 ], [ 6.889827, 47.55007 ], [ 6.899593, 47.549818 ], [ 6.906437, 47.54548 ], [ 6.906982, 47.54219 ], [ 6.91027, 47.539646 ], [ 6.915914, 47.5304 ], [ 6.907885, 47.52706 ], [ 6.921146, 47.520273 ], [ 6.925322, 47.51953 ], [ 6.934612, 47.517764 ], [ 6.93758, 47.51742 ], [ 6.940905, 47.51506 ], [ 6.945008, 47.51334 ], [ 6.947186, 47.510407 ], [ 6.944813, 47.49826 ], [ 6.949125, 47.4857 ], [ 6.945373, 47.48729 ], [ 6.942672, 47.48492 ], [ 6.938548, 47.48651 ], [ 6.931237, 47.497752 ], [ 6.922982, 47.50016 ], [ 6.920045, 47.49782 ], [ 6.907611, 47.494555 ], [ 6.913493, 47.48135 ], [ 6.915711, 47.47824 ], [ 6.909833, 47.47494 ], [ 6.907344, 47.472888 ], [ 6.919363, 47.468203 ], [ 6.92987, 47.45853 ], [ 6.932316, 47.455824 ], [ 6.932251, 47.45276 ], [ 6.934951, 47.447019 ], [ 6.936741, 47.43612 ], [ 6.939179, 47.4337 ], [ 6.940003, 47.4097 ], [ 6.937511, 47.40668 ], [ 6.922395, 47.4055 ], [ 6.917294, 47.405462 ], [ 6.909527, 47.39618 ], [ 6.912148, 47.386626 ], [ 6.899724, 47.38222 ], [ 6.894959, 47.38166 ], [ 6.885413, 47.374455 ], [ 6.879952, 47.35895 ], [ 6.879799, 47.352434 ], [ 6.89647, 47.357906 ], [ 6.901015, 47.358763 ], [ 6.920493, 47.355565 ], [ 6.930147, 47.35754 ], [ 6.935257, 47.35758 ], [ 6.984479, 47.36361 ], [ 6.98955, 47.36347 ], [ 6.999339, 47.364873 ], [ 7.011355, 47.371552 ], [ 7.031338, 47.368562 ], [ 7.044112, 47.36273 ], [ 7.048192, 47.36053 ], [ 7.050404, 47.357334 ], [ 7.051706, 47.35033 ], [ 7.060295, 47.34185 ], [ 7.052918, 47.336892 ], [ 7.054788, 47.333735 ], [ 7.043934, 47.32696 ], [ 7.01457, 47.3252 ], [ 7.009734, 47.32436 ], [ 7.015482, 47.3156 ], [ 7.00841, 47.30272 ], [ 6.995778, 47.29681 ], [ 6.980483, 47.296034 ], [ 6.972093, 47.292058 ], [ 6.951849, 47.292227 ], [ 6.94714, 47.290882 ], [ 6.944646, 47.28886 ], [ 6.940919, 47.286632 ], [ 6.950996, 47.26786 ], [ 6.947221, 47.251633 ], [ 6.952923, 47.24618 ], [ 6.955123, 47.24316 ], [ 6.942553, 47.237451 ], [ 6.939468, 47.23111 ], [ 6.929815, 47.22959 ], [ 6.921872, 47.22102 ], [ 6.897364, 47.20963 ], [ 6.893103, 47.207783 ], [ 6.882161, 47.20096 ], [ 6.87197, 47.18561 ], [ 6.865136, 47.18159 ], [ 6.861406, 47.17934 ], [ 6.844374, 47.17207 ], [ 6.843407, 47.168703 ], [ 6.852315, 47.165937 ], [ 6.852956, 47.15993 ], [ 6.826476, 47.14417 ], [ 6.820016, 47.14008 ], [ 6.817468, 47.1375 ], [ 6.802146, 47.129461 ], [ 6.764215, 47.11981 ], [ 6.748738, 47.11107 ], [ 6.744134, 47.109605 ], [ 6.74055, 47.10703 ], [ 6.743571, 47.093715 ], [ 6.710902, 47.08503 ], [ 6.696344, 47.066511 ], [ 6.715974, 47.05103 ], [ 6.697949, 47.03837 ], [ 6.682777, 47.03648 ], [ 6.677932, 47.03522 ], [ 6.65419, 47.02237 ], [ 6.633911, 46.998571 ], [ 6.620909, 46.993076 ], [ 6.606114, 46.991071 ], [ 6.596134, 46.992518 ], [ 6.588013, 46.989436 ], [ 6.584229, 46.9876 ], [ 6.562451, 46.97931 ], [ 6.505959, 46.96613 ], [ 6.499559, 46.97138 ], [ 6.496686, 46.97419 ], [ 6.491348, 46.97064 ], [ 6.475298, 46.95937 ], [ 6.472517, 46.95686 ], [ 6.448683, 46.93546 ], [ 6.44475, 46.933405 ], [ 6.433014, 46.927817 ], [ 6.444981, 46.913914 ], [ 6.447445, 46.911101 ], [ 6.464539, 46.889913 ], [ 6.461724, 46.865647 ], [ 6.461318, 46.86218 ], [ 6.459761, 46.85159 ], [ 6.44377, 46.83335 ], [ 6.435604, 46.813933 ], [ 6.430999, 46.812322 ], [ 6.437754, 46.79983 ], [ 6.441691, 46.797753 ], [ 6.457247, 46.788571 ], [ 6.450819, 46.7752 ], [ 6.428577, 46.75621 ], [ 6.395194, 46.747469 ], [ 6.387937, 46.734561 ], [ 6.374269, 46.730395 ], [ 6.365232, 46.72226 ], [ 6.360237, 46.72308 ], [ 6.357442, 46.71985 ], [ 6.342653, 46.710781 ], [ 6.302496, 46.69636 ], [ 6.298217, 46.694485 ], [ 6.274457, 46.684901 ], [ 6.270491, 46.68319 ], [ 6.260915, 46.67201 ], [ 6.257273, 46.669782 ], [ 6.212793, 46.64063 ], [ 6.175137, 46.61398 ], [ 6.161275, 46.6097 ], [ 6.137714, 46.59638 ], [ 6.113298, 46.578623 ], [ 6.112953, 46.575118 ], [ 6.134502, 46.56015 ], [ 6.138109, 46.55766 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "25", "CODE_DEPT": "26", "NOM_DEPT": "DROME", "CODE_CHF": "362", "NOM_CHF": "VALENCE", "X_CHF_LIEU": "8491", "Y_CHF_LIEU": "64277", "X_CENTROID": "8717", "Y_CENTROID": "64006", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.498788, 44.11572 ], [ 5.493838, 44.115436 ], [ 5.454716, 44.11923 ], [ 5.451161, 44.12113 ], [ 5.447571, 44.136758 ], [ 5.443033, 44.13795 ], [ 5.436695, 44.14207 ], [ 5.435756, 44.152249 ], [ 5.431059, 44.15151 ], [ 5.422917, 44.150039 ], [ 5.415834, 44.154652 ], [ 5.39695, 44.152338 ], [ 5.383241, 44.155285 ], [ 5.383201, 44.158797 ], [ 5.38665, 44.17927 ], [ 5.381281, 44.192382 ], [ 5.383188, 44.19907 ], [ 5.384529, 44.20119 ], [ 5.380358, 44.202911 ], [ 5.37667, 44.20513 ], [ 5.372391, 44.206686 ], [ 5.35579, 44.213599 ], [ 5.335726, 44.20431 ], [ 5.317996, 44.208794 ], [ 5.303624, 44.208799 ], [ 5.303298, 44.20539 ], [ 5.299429, 44.206924 ], [ 5.291804, 44.214647 ], [ 5.280668, 44.219796 ], [ 5.276283, 44.22099 ], [ 5.256509, 44.23006 ], [ 5.252657, 44.23113 ], [ 5.248536, 44.23112 ], [ 5.244512, 44.230707 ], [ 5.240446, 44.23083 ], [ 5.23815, 44.21323 ], [ 5.208775, 44.21442 ], [ 5.175606, 44.22087 ], [ 5.167913, 44.225304 ], [ 5.163507, 44.226355 ], [ 5.150007, 44.235237 ], [ 5.151814, 44.238308 ], [ 5.158751, 44.24287 ], [ 5.161548, 44.245591 ], [ 5.162089, 44.248948 ], [ 5.160531, 44.26562 ], [ 5.147458, 44.26917 ], [ 5.150647, 44.281877 ], [ 5.168429, 44.292243 ], [ 5.170106, 44.298738 ], [ 5.169743, 44.30201 ], [ 5.172827, 44.30821 ], [ 5.168839, 44.314125 ], [ 5.166434, 44.314857 ], [ 5.161976, 44.313387 ], [ 5.153262, 44.31015 ], [ 5.149503, 44.30066 ], [ 5.109641, 44.280367 ], [ 5.086471, 44.283933 ], [ 5.076512, 44.284086 ], [ 5.073922, 44.286944 ], [ 5.060245, 44.307614 ], [ 5.056515, 44.3054 ], [ 5.0295, 44.29789 ], [ 5.024772, 44.296784 ], [ 5.01715, 44.292242 ], [ 5.013072, 44.291074 ], [ 5.002729, 44.28537 ], [ 4.989594, 44.28577 ], [ 4.985462, 44.285517 ], [ 4.971688, 44.279426 ], [ 4.967555, 44.277726 ], [ 4.941528, 44.26941 ], [ 4.932031, 44.26245 ], [ 4.927221, 44.26211 ], [ 4.903477, 44.259478 ], [ 4.901283, 44.26428 ], [ 4.896965, 44.26441 ], [ 4.88025, 44.26177 ], [ 4.876029, 44.260266 ], [ 4.857094, 44.24599 ], [ 4.853171, 44.244366 ], [ 4.825342, 44.22845 ], [ 4.820886, 44.228889 ], [ 4.813448, 44.23242 ], [ 4.812141, 44.242062 ], [ 4.813118, 44.24521 ], [ 4.812513, 44.258019 ], [ 4.803999, 44.26921 ], [ 4.805857, 44.27484 ], [ 4.804479, 44.27762 ], [ 4.802926, 44.280793 ], [ 4.804563, 44.303897 ], [ 4.799988, 44.303549 ], [ 4.780956, 44.31712 ], [ 4.771902, 44.317537 ], [ 4.762995, 44.3251 ], [ 4.758399, 44.32533 ], [ 4.721663, 44.326592 ], [ 4.717089, 44.325907 ], [ 4.713017, 44.320649 ], [ 4.679884, 44.320692 ], [ 4.654887, 44.32835 ], [ 4.650615, 44.329806 ], [ 4.64959, 44.334233 ], [ 4.646837, 44.34828 ], [ 4.649064, 44.373073 ], [ 4.663492, 44.39545 ], [ 4.664373, 44.398944 ], [ 4.663338, 44.404317 ], [ 4.663053, 44.40702 ], [ 4.675978, 44.4367 ], [ 4.68026, 44.43827 ], [ 4.689287, 44.44051 ], [ 4.695289, 44.4458 ], [ 4.70041, 44.46939 ], [ 4.700103, 44.472952 ], [ 4.699537, 44.480083 ], [ 4.689415, 44.492349 ], [ 4.687882, 44.502934 ], [ 4.693101, 44.516703 ], [ 4.703129, 44.52456 ], [ 4.704551, 44.52789 ], [ 4.707933, 44.53442 ], [ 4.703415, 44.535714 ], [ 4.6925, 44.54623 ], [ 4.695739, 44.56307 ], [ 4.705961, 44.56665 ], [ 4.706404, 44.576314 ], [ 4.710872, 44.581999 ], [ 4.728619, 44.584685 ], [ 4.732864, 44.585888 ], [ 4.737462, 44.586672 ], [ 4.741169, 44.58877 ], [ 4.741139, 44.591872 ], [ 4.744202, 44.60089 ], [ 4.740405, 44.602392 ], [ 4.742368, 44.605171 ], [ 4.752426, 44.61893 ], [ 4.754218, 44.62183 ], [ 4.758089, 44.630739 ], [ 4.760718, 44.63335 ], [ 4.772902, 44.64263 ], [ 4.779073, 44.654699 ], [ 4.77792, 44.657761 ], [ 4.78159, 44.67885 ], [ 4.781209, 44.682373 ], [ 4.771968, 44.706 ], [ 4.76422, 44.71503 ], [ 4.764027, 44.729024 ], [ 4.76416, 44.73204 ], [ 4.759507, 44.74848 ], [ 4.769321, 44.759585 ], [ 4.762367, 44.76799 ], [ 4.76104, 44.77122 ], [ 4.761772, 44.7736 ], [ 4.766536, 44.778766 ], [ 4.770658, 44.780375 ], [ 4.783647, 44.78407 ], [ 4.795535, 44.79404 ], [ 4.797232, 44.803983 ], [ 4.80099, 44.805984 ], [ 4.80015, 44.809 ], [ 4.808382, 44.81478 ], [ 4.812834, 44.81553 ], [ 4.821485, 44.817384 ], [ 4.822499, 44.82055 ], [ 4.820281, 44.830192 ], [ 4.823316, 44.83949 ], [ 4.832487, 44.84087 ], [ 4.837147, 44.84131 ], [ 4.844119, 44.84547 ], [ 4.84757, 44.861873 ], [ 4.849984, 44.8648 ], [ 4.853417, 44.867152 ], [ 4.856764, 44.86955 ], [ 4.859694, 44.872001 ], [ 4.861281, 44.87822 ], [ 4.854324, 44.896523 ], [ 4.855085, 44.90001 ], [ 4.868911, 44.909923 ], [ 4.871343, 44.91673 ], [ 4.872362, 44.919916 ], [ 4.886589, 44.936652 ], [ 4.885877, 44.939591 ], [ 4.881366, 44.944603 ], [ 4.879216, 44.94744 ], [ 4.874277, 44.956367 ], [ 4.870828, 44.95867 ], [ 4.86049, 44.965551 ], [ 4.853083, 44.9779 ], [ 4.852566, 44.979535 ], [ 4.852189, 44.98308 ], [ 4.851868, 44.99372 ], [ 4.842493, 45.001983 ], [ 4.838684, 45.00426 ], [ 4.836708, 45.00751 ], [ 4.845408, 45.019956 ], [ 4.844111, 45.023373 ], [ 4.841948, 45.03791 ], [ 4.84455, 45.040541 ], [ 4.853914, 45.047509 ], [ 4.856465, 45.0501 ], [ 4.859747, 45.05594 ], [ 4.858913, 45.059161 ], [ 4.853039, 45.06404 ], [ 4.835642, 45.068347 ], [ 4.829155, 45.072848 ], [ 4.827816, 45.07855 ], [ 4.830462, 45.08402 ], [ 4.831643, 45.08748 ], [ 4.829597, 45.098 ], [ 4.827935, 45.101238 ], [ 4.825024, 45.10399 ], [ 4.821322, 45.106309 ], [ 4.814787, 45.111459 ], [ 4.812375, 45.11434 ], [ 4.804038, 45.122468 ], [ 4.803833, 45.12912 ], [ 4.804132, 45.13127 ], [ 4.805542, 45.134369 ], [ 4.828575, 45.15424 ], [ 4.828713, 45.156129 ], [ 4.826971, 45.15852 ], [ 4.824192, 45.160364 ], [ 4.819523, 45.161233 ], [ 4.809691, 45.168175 ], [ 4.810241, 45.17493 ], [ 4.812187, 45.18153 ], [ 4.806769, 45.1908 ], [ 4.805502, 45.196928 ], [ 4.812208, 45.204953 ], [ 4.810324, 45.20813 ], [ 4.803559, 45.224709 ], [ 4.802319, 45.228133 ], [ 4.8016, 45.24574 ], [ 4.808846, 45.258849 ], [ 4.809896, 45.261326 ], [ 4.809987, 45.266477 ], [ 4.809613, 45.2695 ], [ 4.809775, 45.272533 ], [ 4.809489, 45.28769 ], [ 4.808896, 45.29065 ], [ 4.800462, 45.29737 ], [ 4.805088, 45.29876 ], [ 4.809212, 45.300787 ], [ 4.854363, 45.308 ], [ 4.858799, 45.30895 ], [ 4.858988, 45.301997 ], [ 4.858617, 45.298518 ], [ 4.878779, 45.297713 ], [ 4.899498, 45.30765 ], [ 4.903057, 45.310191 ], [ 4.925238, 45.320404 ], [ 4.928178, 45.32273 ], [ 4.943909, 45.327864 ], [ 4.948148, 45.32858 ], [ 4.95774, 45.329379 ], [ 4.973933, 45.336273 ], [ 4.978246, 45.337954 ], [ 4.990369, 45.343413 ], [ 5.004716, 45.342067 ], [ 5.009652, 45.34223 ], [ 5.018797, 45.3225 ], [ 5.020647, 45.319289 ], [ 5.028752, 45.31713 ], [ 5.032911, 45.318104 ], [ 5.056476, 45.31661 ], [ 5.05911, 45.31362 ], [ 5.066365, 45.298584 ], [ 5.067888, 45.2956 ], [ 5.070509, 45.28577 ], [ 5.073566, 45.283228 ], [ 5.075415, 45.28183 ], [ 5.088531, 45.28625 ], [ 5.10791, 45.28785 ], [ 5.116362, 45.29131 ], [ 5.120994, 45.29733 ], [ 5.13052, 45.297795 ], [ 5.135363, 45.298279 ], [ 5.138789, 45.29644 ], [ 5.130631, 45.283678 ], [ 5.122195, 45.24544 ], [ 5.141072, 45.24525 ], [ 5.153102, 45.2563 ], [ 5.162538, 45.246719 ], [ 5.176541, 45.248402 ], [ 5.191351, 45.22386 ], [ 5.199656, 45.220494 ], [ 5.201713, 45.2174 ], [ 5.182678, 45.217548 ], [ 5.170895, 45.212445 ], [ 5.167415, 45.21013 ], [ 5.168459, 45.19764 ], [ 5.169774, 45.19443 ], [ 5.175783, 45.18127 ], [ 5.188036, 45.16729 ], [ 5.189357, 45.163957 ], [ 5.191216, 45.157165 ], [ 5.184447, 45.148146 ], [ 5.1892, 45.14209 ], [ 5.187561, 45.12853 ], [ 5.187495, 45.122937 ], [ 5.186889, 45.12013 ], [ 5.167161, 45.10023 ], [ 5.162894, 45.09843 ], [ 5.156072, 45.08279 ], [ 5.135416, 45.0779 ], [ 5.134543, 45.074676 ], [ 5.149661, 45.074106 ], [ 5.162641, 45.065568 ], [ 5.170834, 45.06872 ], [ 5.180111, 45.083683 ], [ 5.207811, 45.08421 ], [ 5.212351, 45.08327 ], [ 5.220014, 45.080608 ], [ 5.224169, 45.079912 ], [ 5.227494, 45.07722 ], [ 5.231728, 45.071168 ], [ 5.239853, 45.06773 ], [ 5.244513, 45.06697 ], [ 5.246537, 45.060728 ], [ 5.265166, 45.059387 ], [ 5.266332, 45.056165 ], [ 5.272423, 45.054996 ], [ 5.275255, 45.056524 ], [ 5.276451, 45.059679 ], [ 5.28982, 45.06088 ], [ 5.29162, 45.06389 ], [ 5.30689, 45.05845 ], [ 5.305798, 45.05538 ], [ 5.316422, 45.051703 ], [ 5.320482, 45.05186 ], [ 5.321077, 45.055173 ], [ 5.329014, 45.058691 ], [ 5.333351, 45.059988 ], [ 5.340586, 45.06189 ], [ 5.347807, 45.0474 ], [ 5.352338, 45.04696 ], [ 5.369797, 45.04395 ], [ 5.384095, 45.035979 ], [ 5.39289, 45.037249 ], [ 5.397269, 45.03833 ], [ 5.384813, 45.04896 ], [ 5.385417, 45.055083 ], [ 5.393834, 45.04685 ], [ 5.40765, 45.044867 ], [ 5.422873, 45.053095 ], [ 5.432402, 45.0545 ], [ 5.44593, 45.06859 ], [ 5.447812, 45.07179 ], [ 5.455339, 45.07907 ], [ 5.457488, 45.08167 ], [ 5.46395, 45.08693 ], [ 5.473718, 45.08639 ], [ 5.486388, 45.080783 ], [ 5.494196, 45.07167 ], [ 5.484569, 45.07304 ], [ 5.475777, 45.07029 ], [ 5.466517, 45.05403 ], [ 5.465229, 45.04354 ], [ 5.47773, 45.033439 ], [ 5.479206, 45.024037 ], [ 5.483609, 45.02279 ], [ 5.480436, 45.01308 ], [ 5.49306, 44.99541 ], [ 5.488361, 44.989665 ], [ 5.47919, 44.97003 ], [ 5.477675, 44.966761 ], [ 5.483029, 44.926367 ], [ 5.483565, 44.92301 ], [ 5.480488, 44.898175 ], [ 5.470453, 44.87809 ], [ 5.474919, 44.867889 ], [ 5.464305, 44.82952 ], [ 5.463795, 44.82598 ], [ 5.480397, 44.82272 ], [ 5.484766, 44.82307 ], [ 5.475126, 44.807928 ], [ 5.460202, 44.799992 ], [ 5.46402, 44.793881 ], [ 5.477975, 44.79192 ], [ 5.48156, 44.786013 ], [ 5.548726, 44.770716 ], [ 5.553872, 44.774876 ], [ 5.545874, 44.787879 ], [ 5.548387, 44.7931 ], [ 5.577771, 44.77978 ], [ 5.582047, 44.77787 ], [ 5.586144, 44.764129 ], [ 5.607698, 44.755859 ], [ 5.62238, 44.754035 ], [ 5.626315, 44.753293 ], [ 5.626659, 44.750385 ], [ 5.629065, 44.744797 ], [ 5.639871, 44.73265 ], [ 5.643978, 44.73158 ], [ 5.645942, 44.726577 ], [ 5.647102, 44.724099 ], [ 5.660657, 44.721369 ], [ 5.668003, 44.72468 ], [ 5.691217, 44.722612 ], [ 5.699316, 44.724451 ], [ 5.70406, 44.729299 ], [ 5.717932, 44.71537 ], [ 5.73636, 44.712668 ], [ 5.755312, 44.696965 ], [ 5.774648, 44.6985 ], [ 5.796837, 44.70557 ], [ 5.80147, 44.706779 ], [ 5.808962, 44.70579 ], [ 5.812675, 44.70501 ], [ 5.825458, 44.70098 ], [ 5.829958, 44.69124 ], [ 5.817189, 44.681885 ], [ 5.813277, 44.679904 ], [ 5.809249, 44.678123 ], [ 5.801017, 44.674828 ], [ 5.79062, 44.653299 ], [ 5.785703, 44.653135 ], [ 5.77112, 44.65428 ], [ 5.753769, 44.660529 ], [ 5.749155, 44.65108 ], [ 5.725505, 44.640087 ], [ 5.683495, 44.64998 ], [ 5.659305, 44.651049 ], [ 5.651551, 44.655217 ], [ 5.649246, 44.652903 ], [ 5.641715, 44.651084 ], [ 5.640301, 44.64782 ], [ 5.642842, 44.62426 ], [ 5.649462, 44.61938 ], [ 5.648367, 44.616218 ], [ 5.646092, 44.60992 ], [ 5.63703, 44.60922 ], [ 5.627477, 44.59497 ], [ 5.626319, 44.586623 ], [ 5.621998, 44.58586 ], [ 5.613898, 44.571821 ], [ 5.607148, 44.568351 ], [ 5.60649, 44.566655 ], [ 5.597249, 44.543274 ], [ 5.612473, 44.535601 ], [ 5.614987, 44.532776 ], [ 5.627653, 44.53436 ], [ 5.642693, 44.522064 ], [ 5.646326, 44.520076 ], [ 5.66305, 44.50495 ], [ 5.664504, 44.501894 ], [ 5.659776, 44.501972 ], [ 5.651244, 44.499322 ], [ 5.633188, 44.502097 ], [ 5.626329, 44.497775 ], [ 5.623729, 44.48406 ], [ 5.614847, 44.47184 ], [ 5.603637, 44.4655 ], [ 5.598968, 44.466268 ], [ 5.5691, 44.476578 ], [ 5.564687, 44.475249 ], [ 5.56043, 44.4743 ], [ 5.549714, 44.4799 ], [ 5.546077, 44.48212 ], [ 5.51103, 44.49151 ], [ 5.506409, 44.492018 ], [ 5.483134, 44.49122 ], [ 5.474925, 44.49426 ], [ 5.470847, 44.5 ], [ 5.466345, 44.50034 ], [ 5.457843, 44.498155 ], [ 5.458909, 44.48852 ], [ 5.460352, 44.48614 ], [ 5.461529, 44.482824 ], [ 5.466822, 44.47352 ], [ 5.460217, 44.46859 ], [ 5.463836, 44.452052 ], [ 5.464832, 44.44865 ], [ 5.49549, 44.438803 ], [ 5.495031, 44.43096 ], [ 5.493615, 44.42822 ], [ 5.489918, 44.429022 ], [ 5.486044, 44.428965 ], [ 5.483329, 44.42609 ], [ 5.47757, 44.42085 ], [ 5.472723, 44.420943 ], [ 5.438582, 44.433556 ], [ 5.433752, 44.433168 ], [ 5.418397, 44.42477 ], [ 5.425382, 44.41561 ], [ 5.430035, 44.41453 ], [ 5.441702, 44.391681 ], [ 5.442622, 44.381268 ], [ 5.431328, 44.375331 ], [ 5.434954, 44.36912 ], [ 5.439297, 44.36795 ], [ 5.443922, 44.367748 ], [ 5.462782, 44.367237 ], [ 5.467049, 44.35451 ], [ 5.468856, 44.35135 ], [ 5.47857, 44.351041 ], [ 5.490082, 44.33996 ], [ 5.492944, 44.33713 ], [ 5.50316, 44.344279 ], [ 5.520927, 44.349259 ], [ 5.53686, 44.342102 ], [ 5.539953, 44.332439 ], [ 5.549105, 44.330588 ], [ 5.566543, 44.33302 ], [ 5.571307, 44.333476 ], [ 5.582972, 44.33229 ], [ 5.586926, 44.33204 ], [ 5.588187, 44.33218 ], [ 5.62037, 44.33295 ], [ 5.6238, 44.335217 ], [ 5.628259, 44.33394 ], [ 5.630209, 44.32785 ], [ 5.613216, 44.315772 ], [ 5.608318, 44.30612 ], [ 5.616057, 44.30938 ], [ 5.629322, 44.30115 ], [ 5.633799, 44.30088 ], [ 5.639778, 44.2965 ], [ 5.635739, 44.291638 ], [ 5.632601, 44.289389 ], [ 5.632861, 44.282845 ], [ 5.646372, 44.270398 ], [ 5.646781, 44.26709 ], [ 5.671683, 44.274225 ], [ 5.67561, 44.27589 ], [ 5.68449, 44.268833 ], [ 5.686653, 44.266069 ], [ 5.684206, 44.26309 ], [ 5.674252, 44.25586 ], [ 5.672644, 44.24567 ], [ 5.673312, 44.240169 ], [ 5.682025, 44.23367 ], [ 5.681133, 44.23069 ], [ 5.676723, 44.21341 ], [ 5.685922, 44.197181 ], [ 5.676037, 44.191433 ], [ 5.651593, 44.18958 ], [ 5.652288, 44.186237 ], [ 5.643897, 44.17053 ], [ 5.650428, 44.166766 ], [ 5.682728, 44.163486 ], [ 5.681266, 44.16007 ], [ 5.678605, 44.146098 ], [ 5.67406, 44.14732 ], [ 5.645321, 44.148185 ], [ 5.640667, 44.149234 ], [ 5.631136, 44.150579 ], [ 5.632026, 44.157375 ], [ 5.638795, 44.16628 ], [ 5.629773, 44.17409 ], [ 5.616955, 44.17862 ], [ 5.609327, 44.19071 ], [ 5.605704, 44.19114 ], [ 5.602053, 44.191502 ], [ 5.594234, 44.187481 ], [ 5.579657, 44.18837 ], [ 5.575671, 44.186316 ], [ 5.564374, 44.170902 ], [ 5.568105, 44.168725 ], [ 5.581188, 44.155153 ], [ 5.570423, 44.148616 ], [ 5.551333, 44.149647 ], [ 5.551315, 44.14924 ], [ 5.550089, 44.145894 ], [ 5.542146, 44.13326 ], [ 5.511089, 44.12396 ], [ 5.507615, 44.11776 ], [ 5.498788, 44.11572 ] ], [ [ 4.89291, 44.36483 ], [ 4.892057, 44.36146 ], [ 4.873588, 44.351022 ], [ 4.869527, 44.34508 ], [ 4.87911, 44.34537 ], [ 4.891418, 44.340065 ], [ 4.895328, 44.33806 ], [ 4.882096, 44.32532 ], [ 4.890664, 44.313723 ], [ 4.891209, 44.30711 ], [ 4.889463, 44.304019 ], [ 4.917099, 44.3085 ], [ 4.921836, 44.308797 ], [ 4.983551, 44.29503 ], [ 4.987018, 44.292719 ], [ 4.992205, 44.31262 ], [ 4.997298, 44.31837 ], [ 5.013335, 44.325655 ], [ 5.009006, 44.33377 ], [ 5.021478, 44.344352 ], [ 5.025072, 44.360998 ], [ 5.053313, 44.36483 ], [ 5.066647, 44.37419 ], [ 5.07032, 44.37645 ], [ 5.072028, 44.37851 ], [ 5.070882, 44.383225 ], [ 5.0476, 44.38212 ], [ 5.032759, 44.390896 ], [ 5.018616, 44.392588 ], [ 5.013498, 44.405441 ], [ 5.017716, 44.407138 ], [ 5.01876, 44.415979 ], [ 5.013923, 44.415627 ], [ 5.006196, 44.41172 ], [ 4.98861, 44.4232 ], [ 4.984073, 44.42318 ], [ 4.970846, 44.430129 ], [ 4.959697, 44.42027 ], [ 4.955663, 44.420251 ], [ 4.951931, 44.41915 ], [ 4.948766, 44.41664 ], [ 4.918515, 44.407785 ], [ 4.910162, 44.39515 ], [ 4.911091, 44.384728 ], [ 4.907085, 44.374631 ], [ 4.903708, 44.37276 ], [ 4.893313, 44.367873 ], [ 4.89291, 44.36483 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "26", "CODE_DEPT": "27", "NOM_DEPT": "EURE", "CODE_CHF": "229", "NOM_CHF": "EVREUX", "X_CHF_LIEU": "5648", "Y_CHF_LIEU": "68819", "X_CENTROID": "5537", "Y_CENTROID": "68922", "CODE_REG": "23", "NOM_REGION": "HAUTE-NORMANDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.814819, 48.67017 ], [ 0.810178, 48.67135 ], [ 0.796482, 48.674914 ], [ 0.782205, 48.66652 ], [ 0.780369, 48.666589 ], [ 0.767326, 48.673616 ], [ 0.764138, 48.67572 ], [ 0.76511, 48.6905 ], [ 0.767725, 48.69322 ], [ 0.767302, 48.69582 ], [ 0.763337, 48.69793 ], [ 0.75117, 48.703978 ], [ 0.731016, 48.70383 ], [ 0.728764, 48.706847 ], [ 0.732598, 48.70933 ], [ 0.743593, 48.717 ], [ 0.748398, 48.718448 ], [ 0.758437, 48.72059 ], [ 0.763635, 48.73036 ], [ 0.775034, 48.73736 ], [ 0.77192, 48.74021 ], [ 0.751061, 48.760527 ], [ 0.75678, 48.766465 ], [ 0.755764, 48.770135 ], [ 0.752631, 48.77274 ], [ 0.739437, 48.77753 ], [ 0.730523, 48.78559 ], [ 0.716372, 48.785989 ], [ 0.713196, 48.78856 ], [ 0.708628, 48.79025 ], [ 0.703765, 48.791533 ], [ 0.699117, 48.79286 ], [ 0.690171, 48.79406 ], [ 0.660002, 48.811774 ], [ 0.656093, 48.81357 ], [ 0.647016, 48.814857 ], [ 0.642759, 48.816501 ], [ 0.628768, 48.825159 ], [ 0.624834, 48.82715 ], [ 0.607869, 48.832489 ], [ 0.611184, 48.835084 ], [ 0.633771, 48.85604 ], [ 0.619441, 48.852749 ], [ 0.610658, 48.85606 ], [ 0.6064, 48.862376 ], [ 0.608871, 48.8757 ], [ 0.589631, 48.872603 ], [ 0.585984, 48.8786 ], [ 0.596624, 48.884817 ], [ 0.595643, 48.888028 ], [ 0.590805, 48.888803 ], [ 0.578041, 48.893656 ], [ 0.573844, 48.89177 ], [ 0.553791, 48.87686 ], [ 0.549868, 48.87471 ], [ 0.52088, 48.880798 ], [ 0.515706, 48.88058 ], [ 0.496544, 48.87878 ], [ 0.47437, 48.88706 ], [ 0.459094, 48.8878 ], [ 0.457358, 48.87976 ], [ 0.452557, 48.88003 ], [ 0.443109, 48.88128 ], [ 0.443534, 48.88402 ], [ 0.45004, 48.891016 ], [ 0.436708, 48.88578 ], [ 0.426211, 48.8867 ], [ 0.417946, 48.898471 ], [ 0.386114, 48.910548 ], [ 0.387285, 48.91387 ], [ 0.390826, 48.927107 ], [ 0.395214, 48.928921 ], [ 0.396241, 48.93242 ], [ 0.412815, 48.950626 ], [ 0.431508, 48.96876 ], [ 0.4322, 48.971908 ], [ 0.432448, 48.978229 ], [ 0.4256, 48.982652 ], [ 0.42676, 48.985718 ], [ 0.433439, 49.00022 ], [ 0.433737, 49.00333 ], [ 0.435081, 49.00628 ], [ 0.44418, 49.01313 ], [ 0.446052, 49.01901 ], [ 0.424546, 49.032031 ], [ 0.414601, 49.032816 ], [ 0.409538, 49.03283 ], [ 0.384959, 49.037014 ], [ 0.375069, 49.052092 ], [ 0.370827, 49.05017 ], [ 0.366966, 49.052356 ], [ 0.380383, 49.06125 ], [ 0.379166, 49.06745 ], [ 0.378878, 49.07071 ], [ 0.389902, 49.0764 ], [ 0.413397, 49.07538 ], [ 0.417277, 49.073357 ], [ 0.417885, 49.08396 ], [ 0.416455, 49.08738 ], [ 0.402183, 49.08846 ], [ 0.411408, 49.09491 ], [ 0.410106, 49.09766 ], [ 0.400959, 49.09786 ], [ 0.399783, 49.10081 ], [ 0.407959, 49.11788 ], [ 0.409399, 49.120857 ], [ 0.409704, 49.12217 ], [ 0.408273, 49.12858 ], [ 0.422719, 49.130814 ], [ 0.429977, 49.139263 ], [ 0.432367, 49.142202 ], [ 0.426698, 49.14674 ], [ 0.413143, 49.14635 ], [ 0.406567, 49.14951 ], [ 0.401342, 49.14951 ], [ 0.387361, 49.15318 ], [ 0.385822, 49.15405 ], [ 0.387636, 49.156981 ], [ 0.391913, 49.17854 ], [ 0.388119, 49.18981 ], [ 0.389366, 49.19665 ], [ 0.393648, 49.20674 ], [ 0.388402, 49.21194 ], [ 0.382813, 49.21603 ], [ 0.367048, 49.216595 ], [ 0.342009, 49.229286 ], [ 0.337503, 49.23117 ], [ 0.321521, 49.251985 ], [ 0.326531, 49.25289 ], [ 0.341482, 49.253678 ], [ 0.377722, 49.26389 ], [ 0.382787, 49.26402 ], [ 0.380626, 49.27979 ], [ 0.383554, 49.28576 ], [ 0.380112, 49.28776 ], [ 0.365656, 49.29512 ], [ 0.361083, 49.296608 ], [ 0.342181, 49.29351 ], [ 0.322277, 49.278762 ], [ 0.308998, 49.28322 ], [ 0.309988, 49.286386 ], [ 0.322439, 49.29633 ], [ 0.316021, 49.311309 ], [ 0.302649, 49.313683 ], [ 0.298154, 49.31441 ], [ 0.30424, 49.317199 ], [ 0.30706, 49.3188 ], [ 0.323662, 49.340117 ], [ 0.308051, 49.358082 ], [ 0.303456, 49.368016 ], [ 0.301714, 49.371305 ], [ 0.306587, 49.383996 ], [ 0.309068, 49.38688 ], [ 0.308366, 49.390287 ], [ 0.29781, 49.409253 ], [ 0.297224, 49.42986 ], [ 0.305604, 49.43047 ], [ 0.309792, 49.4308 ], [ 0.335856, 49.43367 ], [ 0.34103, 49.4344 ], [ 0.338834, 49.437682 ], [ 0.338983, 49.440931 ], [ 0.363704, 49.44402 ], [ 0.368796, 49.443966 ], [ 0.382193, 49.44632 ], [ 0.386601, 49.44724 ], [ 0.421222, 49.45573 ], [ 0.426004, 49.4572 ], [ 0.430743, 49.45871 ], [ 0.435335, 49.46041 ], [ 0.469808, 49.475066 ], [ 0.474178, 49.476839 ], [ 0.47886, 49.47902 ], [ 0.493009, 49.484334 ], [ 0.503839, 49.484998 ], [ 0.509162, 49.48423 ], [ 0.522109, 49.47963 ], [ 0.534675, 49.469686 ], [ 0.537695, 49.467131 ], [ 0.538625, 49.46616 ], [ 0.543384, 49.462409 ], [ 0.55787, 49.4505 ], [ 0.560742, 49.4481 ], [ 0.581253, 49.43396 ], [ 0.594568, 49.429617 ], [ 0.599426, 49.42891 ], [ 0.614557, 49.42995 ], [ 0.638579, 49.44216 ], [ 0.642538, 49.444256 ], [ 0.645169, 49.4413 ], [ 0.630653, 49.427406 ], [ 0.629512, 49.42405 ], [ 0.639453, 49.42521 ], [ 0.643721, 49.4193 ], [ 0.657586, 49.41691 ], [ 0.653605, 49.41111 ], [ 0.649834, 49.40888 ], [ 0.65297, 49.4066 ], [ 0.657385, 49.405572 ], [ 0.666042, 49.402466 ], [ 0.670967, 49.40356 ], [ 0.686356, 49.40576 ], [ 0.706393, 49.40357 ], [ 0.70901, 49.41011 ], [ 0.714187, 49.40958 ], [ 0.715509, 49.410856 ], [ 0.738288, 49.40806 ], [ 0.743824, 49.41317 ], [ 0.767621, 49.41898 ], [ 0.783355, 49.410814 ], [ 0.787609, 49.41283 ], [ 0.803021, 49.417575 ], [ 0.800132, 49.42712 ], [ 0.802892, 49.427068 ], [ 0.815203, 49.400721 ], [ 0.818879, 49.39819 ], [ 0.828008, 49.39471 ], [ 0.833067, 49.39365 ], [ 0.856544, 49.393916 ], [ 0.860851, 49.395359 ], [ 0.864153, 49.39282 ], [ 0.873629, 49.3952 ], [ 0.878462, 49.396254 ], [ 0.876661, 49.389802 ], [ 0.884734, 49.38172 ], [ 0.880352, 49.376082 ], [ 0.879015, 49.372786 ], [ 0.888059, 49.373511 ], [ 0.892756, 49.37214 ], [ 0.895508, 49.37826 ], [ 0.913196, 49.38459 ], [ 0.918119, 49.38546 ], [ 0.917497, 49.3794 ], [ 0.917825, 49.376374 ], [ 0.922086, 49.36154 ], [ 0.924328, 49.358871 ], [ 0.921963, 49.352976 ], [ 0.923216, 49.349905 ], [ 0.926813, 49.34876 ], [ 0.93224, 49.34489 ], [ 0.928962, 49.34221 ], [ 0.920066, 49.338592 ], [ 0.885498, 49.34631 ], [ 0.871749, 49.34231 ], [ 0.864208, 49.345612 ], [ 0.85934, 49.34519 ], [ 0.848188, 49.33143 ], [ 0.844484, 49.32622 ], [ 0.862759, 49.325462 ], [ 0.86442, 49.32255 ], [ 0.869477, 49.32335 ], [ 0.892669, 49.316329 ], [ 0.893682, 49.30332 ], [ 0.899933, 49.298039 ], [ 0.909447, 49.29977 ], [ 0.908281, 49.306493 ], [ 0.921014, 49.31198 ], [ 0.925702, 49.313421 ], [ 0.937589, 49.31986 ], [ 0.951232, 49.29743 ], [ 0.960338, 49.294192 ], [ 0.960717, 49.29087 ], [ 0.962659, 49.28555 ], [ 0.955864, 49.281842 ], [ 0.952434, 49.279931 ], [ 0.955538, 49.274436 ], [ 0.955769, 49.27137 ], [ 0.970563, 49.27962 ], [ 0.980858, 49.27011 ], [ 0.985591, 49.26926 ], [ 0.989553, 49.26315 ], [ 0.999613, 49.262036 ], [ 0.994332, 49.2572 ], [ 0.999109, 49.25197 ], [ 1.038408, 49.259697 ], [ 1.038716, 49.25808 ], [ 1.051713, 49.26246 ], [ 1.051614, 49.25926 ], [ 1.05351, 49.26179 ], [ 1.061024, 49.25929 ], [ 1.063577, 49.26156 ], [ 1.052655, 49.27246 ], [ 1.065644, 49.28084 ], [ 1.048481, 49.29782 ], [ 1.067449, 49.304245 ], [ 1.071772, 49.3063 ], [ 1.090166, 49.30979 ], [ 1.094995, 49.30975 ], [ 1.124683, 49.30947 ], [ 1.129593, 49.30985 ], [ 1.133994, 49.30984 ], [ 1.134635, 49.322917 ], [ 1.136896, 49.32584 ], [ 1.144742, 49.332577 ], [ 1.145476, 49.33551 ], [ 1.155046, 49.33529 ], [ 1.160337, 49.340503 ], [ 1.166683, 49.338864 ], [ 1.168589, 49.33597 ], [ 1.178198, 49.34243 ], [ 1.182717, 49.343845 ], [ 1.184847, 49.33807 ], [ 1.185541, 49.337899 ], [ 1.200779, 49.33889 ], [ 1.198912, 49.35217 ], [ 1.200411, 49.355357 ], [ 1.204671, 49.35201 ], [ 1.209571, 49.35239 ], [ 1.212223, 49.349724 ], [ 1.241233, 49.347776 ], [ 1.246099, 49.347524 ], [ 1.272155, 49.34738 ], [ 1.272228, 49.35425 ], [ 1.282152, 49.36165 ], [ 1.286239, 49.36296 ], [ 1.289196, 49.37549 ], [ 1.286147, 49.383954 ], [ 1.28613, 49.38693 ], [ 1.292988, 49.39404 ], [ 1.297471, 49.39467 ], [ 1.308009, 49.39634 ], [ 1.315391, 49.41111 ], [ 1.311022, 49.425848 ], [ 1.309632, 49.42873 ], [ 1.328864, 49.431139 ], [ 1.338046, 49.428937 ], [ 1.335723, 49.43558 ], [ 1.337491, 49.43887 ], [ 1.348854, 49.435765 ], [ 1.349982, 49.43843 ], [ 1.344091, 49.44627 ], [ 1.368674, 49.4511 ], [ 1.386452, 49.46329 ], [ 1.38949, 49.46274 ], [ 1.392158, 49.461636 ], [ 1.383933, 49.449948 ], [ 1.411997, 49.45563 ], [ 1.436079, 49.45502 ], [ 1.449923, 49.45005 ], [ 1.476221, 49.45131 ], [ 1.491322, 49.44749 ], [ 1.498491, 49.4423 ], [ 1.501866, 49.439544 ], [ 1.527546, 49.442052 ], [ 1.5355, 49.433348 ], [ 1.537191, 49.43009 ], [ 1.550283, 49.44044 ], [ 1.576197, 49.440054 ], [ 1.575446, 49.437295 ], [ 1.581915, 49.433649 ], [ 1.585082, 49.43176 ], [ 1.603637, 49.413378 ], [ 1.606957, 49.410854 ], [ 1.623377, 49.41456 ], [ 1.628006, 49.414583 ], [ 1.62791, 49.41144 ], [ 1.644518, 49.40548 ], [ 1.647801, 49.403191 ], [ 1.650699, 49.403026 ], [ 1.659032, 49.39989 ], [ 1.670423, 49.40628 ], [ 1.680561, 49.405827 ], [ 1.682184, 49.402672 ], [ 1.691936, 49.39728 ], [ 1.694284, 49.394865 ], [ 1.705046, 49.40888 ], [ 1.713938, 49.40922 ], [ 1.717574, 49.4037 ], [ 1.735689, 49.40651 ], [ 1.740379, 49.40568 ], [ 1.736382, 49.40353 ], [ 1.720029, 49.39528 ], [ 1.742778, 49.38077 ], [ 1.749902, 49.37146 ], [ 1.759341, 49.36824 ], [ 1.760168, 49.365326 ], [ 1.757629, 49.35703 ], [ 1.774004, 49.335692 ], [ 1.770655, 49.32557 ], [ 1.767545, 49.31928 ], [ 1.774432, 49.30668 ], [ 1.77239, 49.293664 ], [ 1.77535, 49.29117 ], [ 1.784643, 49.29286 ], [ 1.796641, 49.28646 ], [ 1.794084, 49.27649 ], [ 1.80266, 49.273434 ], [ 1.800911, 49.270063 ], [ 1.790289, 49.25369 ], [ 1.790552, 49.246575 ], [ 1.786654, 49.24882 ], [ 1.766896, 49.252035 ], [ 1.768065, 49.25545 ], [ 1.75472, 49.270009 ], [ 1.750536, 49.268023 ], [ 1.735143, 49.269365 ], [ 1.727115, 49.26509 ], [ 1.711646, 49.26452 ], [ 1.708195, 49.26241 ], [ 1.708007, 49.25622 ], [ 1.701428, 49.25179 ], [ 1.699859, 49.248652 ], [ 1.701625, 49.2423 ], [ 1.700984, 49.23395 ], [ 1.704364, 49.2322 ], [ 1.702869, 49.22885 ], [ 1.676291, 49.21219 ], [ 1.673207, 49.205626 ], [ 1.676462, 49.20285 ], [ 1.671348, 49.19304 ], [ 1.670339, 49.189608 ], [ 1.671825, 49.180893 ], [ 1.666334, 49.17572 ], [ 1.669326, 49.169239 ], [ 1.661447, 49.156806 ], [ 1.664304, 49.153951 ], [ 1.662683, 49.1525 ], [ 1.653229, 49.14176 ], [ 1.655991, 49.13039 ], [ 1.652877, 49.128943 ], [ 1.648114, 49.12503 ], [ 1.646559, 49.12164 ], [ 1.627035, 49.105127 ], [ 1.620143, 49.096981 ], [ 1.623322, 49.08608 ], [ 1.619512, 49.08418 ], [ 1.608796, 49.07789 ], [ 1.605928, 49.080694 ], [ 1.599088, 49.084067 ], [ 1.594359, 49.08275 ], [ 1.589843, 49.081684 ], [ 1.572262, 49.07681 ], [ 1.569242, 49.07413 ], [ 1.560832, 49.0704 ], [ 1.546672, 49.072591 ], [ 1.541304, 49.07318 ], [ 1.520998, 49.068132 ], [ 1.519955, 49.071113 ], [ 1.516637, 49.07992 ], [ 1.510269, 49.084285 ], [ 1.51315, 49.077873 ], [ 1.503301, 49.0591 ], [ 1.498032, 49.05866 ], [ 1.486848, 49.05176 ], [ 1.47664, 49.05363 ], [ 1.461614, 49.06337 ], [ 1.44728, 49.05351 ], [ 1.451258, 49.05133 ], [ 1.448209, 49.04485 ], [ 1.456846, 49.03643 ], [ 1.457511, 49.029696 ], [ 1.457762, 49.0263 ], [ 1.468018, 49.02031 ], [ 1.471842, 49.01863 ], [ 1.477096, 49.014801 ], [ 1.474046, 49.00969 ], [ 1.478136, 49.00823 ], [ 1.480401, 49.005562 ], [ 1.48017, 49.00224 ], [ 1.470984, 48.99111 ], [ 1.461702, 48.98886 ], [ 1.468862, 48.97777 ], [ 1.470889, 48.97482 ], [ 1.47826, 48.97925 ], [ 1.493875, 48.979353 ], [ 1.507903, 48.983773 ], [ 1.513493, 48.9785 ], [ 1.518388, 48.978363 ], [ 1.514626, 48.976113 ], [ 1.495147, 48.96608 ], [ 1.501028, 48.9535 ], [ 1.510996, 48.953574 ], [ 1.508641, 48.95044 ], [ 1.501524, 48.941054 ], [ 1.497886, 48.938885 ], [ 1.488865, 48.93688 ], [ 1.475517, 48.94001 ], [ 1.461308, 48.93756 ], [ 1.460016, 48.93419 ], [ 1.457442, 48.92751 ], [ 1.447959, 48.924641 ], [ 1.451638, 48.92211 ], [ 1.460568, 48.90954 ], [ 1.461434, 48.8996 ], [ 1.466411, 48.8997 ], [ 1.470909, 48.894733 ], [ 1.465817, 48.87913 ], [ 1.464201, 48.876118 ], [ 1.457628, 48.871518 ], [ 1.453917, 48.87022 ], [ 1.449832, 48.869573 ], [ 1.445455, 48.867753 ], [ 1.431006, 48.86583 ], [ 1.424008, 48.860996 ], [ 1.419238, 48.86141 ], [ 1.404876, 48.860734 ], [ 1.397999, 48.85648 ], [ 1.397229, 48.8536 ], [ 1.390231, 48.84629 ], [ 1.386001, 48.84467 ], [ 1.359781, 48.8312 ], [ 1.35684, 48.815584 ], [ 1.366436, 48.80449 ], [ 1.367976, 48.802711 ], [ 1.370325, 48.80075 ], [ 1.372743, 48.79789 ], [ 1.376939, 48.78862 ], [ 1.373908, 48.78237 ], [ 1.364022, 48.78289 ], [ 1.356386, 48.779416 ], [ 1.355772, 48.77905 ], [ 1.351444, 48.77731 ], [ 1.331947, 48.762173 ], [ 1.322255, 48.76058 ], [ 1.313623, 48.7641 ], [ 1.311366, 48.76489 ], [ 1.306325, 48.76549 ], [ 1.296969, 48.768229 ], [ 1.27841, 48.76315 ], [ 1.273845, 48.762517 ], [ 1.26812, 48.75789 ], [ 1.263264, 48.75786 ], [ 1.254905, 48.760047 ], [ 1.254072, 48.76621 ], [ 1.246022, 48.76968 ], [ 1.241327, 48.769267 ], [ 1.222613, 48.7673 ], [ 1.22426, 48.764507 ], [ 1.226492, 48.76008 ], [ 1.22295, 48.758217 ], [ 1.218547, 48.76002 ], [ 1.188224, 48.77275 ], [ 1.162975, 48.769311 ], [ 1.15826, 48.7695 ], [ 1.149837, 48.77675 ], [ 1.152118, 48.785741 ], [ 1.147556, 48.78501 ], [ 1.121403, 48.789194 ], [ 1.118939, 48.78615 ], [ 1.122737, 48.769144 ], [ 1.113736, 48.746304 ], [ 1.110197, 48.748614 ], [ 1.087854, 48.75318 ], [ 1.088183, 48.75646 ], [ 1.083981, 48.75492 ], [ 1.072605, 48.749425 ], [ 1.063027, 48.758969 ], [ 1.059135, 48.75678 ], [ 1.035263, 48.73992 ], [ 1.036703, 48.73021 ], [ 1.032593, 48.728467 ], [ 1.02197, 48.73462 ], [ 1.018476, 48.73207 ], [ 1.010955, 48.72813 ], [ 0.98564, 48.72583 ], [ 0.982608, 48.72723 ], [ 0.978288, 48.73096 ], [ 0.973679, 48.72917 ], [ 0.959927, 48.72402 ], [ 0.951191, 48.71549 ], [ 0.921203, 48.709177 ], [ 0.919568, 48.71233 ], [ 0.900159, 48.711832 ], [ 0.890363, 48.71943 ], [ 0.876703, 48.715591 ], [ 0.872837, 48.71336 ], [ 0.862794, 48.687999 ], [ 0.850363, 48.68295 ], [ 0.827667, 48.680724 ], [ 0.823793, 48.67848 ], [ 0.814819, 48.67017 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "27", "CODE_DEPT": "28", "NOM_DEPT": "EURE-ET-LOIR", "CODE_CHF": "085", "NOM_CHF": "CHARTRES", "X_CHF_LIEU": "5882", "Y_CHF_LIEU": "68173", "X_CENTROID": "5793", "Y_CENTROID": "68109", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.520124, 47.98228 ], [ 1.511177, 47.983894 ], [ 1.493715, 47.987398 ], [ 1.490755, 47.9901 ], [ 1.455654, 48.00844 ], [ 1.441396, 48.01163 ], [ 1.432608, 48.00852 ], [ 1.43418, 47.99981 ], [ 1.439511, 47.98318 ], [ 1.437241, 47.9765 ], [ 1.43232, 47.97517 ], [ 1.407203, 47.9706 ], [ 1.386268, 47.98068 ], [ 1.382935, 47.97828 ], [ 1.370016, 47.95375 ], [ 1.349708, 47.963448 ], [ 1.33824, 47.95776 ], [ 1.308631, 47.95376 ], [ 1.30592, 47.95641 ], [ 1.29958, 47.968162 ], [ 1.2654, 47.96286 ], [ 1.260603, 47.96854 ], [ 1.259061, 47.971844 ], [ 1.248007, 47.97857 ], [ 1.242814, 47.97832 ], [ 1.222674, 47.97564 ], [ 1.205215, 47.96864 ], [ 1.191496, 47.97197 ], [ 1.195916, 47.973665 ], [ 1.200477, 47.97911 ], [ 1.193553, 47.98401 ], [ 1.187729, 48.0006 ], [ 1.174145, 48.005212 ], [ 1.16956, 48.006689 ], [ 1.170038, 48.009928 ], [ 1.161862, 48.017857 ], [ 1.167113, 48.026229 ], [ 1.163611, 48.02854 ], [ 1.143932, 48.028737 ], [ 1.141152, 48.0311 ], [ 1.133293, 48.033979 ], [ 1.129047, 48.03451 ], [ 1.12014, 48.04005 ], [ 1.115766, 48.05246 ], [ 1.113228, 48.05549 ], [ 1.106882, 48.060975 ], [ 1.112755, 48.0808 ], [ 1.107549, 48.080987 ], [ 1.071855, 48.07666 ], [ 1.065093, 48.085626 ], [ 1.03392, 48.085758 ], [ 1.029354, 48.08754 ], [ 1.009409, 48.08416 ], [ 0.995686, 48.089291 ], [ 0.99452, 48.099137 ], [ 1.040156, 48.11653 ], [ 1.047091, 48.12165 ], [ 1.039779, 48.13105 ], [ 1.029601, 48.132835 ], [ 1.008922, 48.131713 ], [ 0.995236, 48.126684 ], [ 0.955081, 48.100484 ], [ 0.945411, 48.09791 ], [ 0.945591, 48.100913 ], [ 0.944029, 48.11238 ], [ 0.939072, 48.11232 ], [ 0.929216, 48.11172 ], [ 0.91329, 48.104162 ], [ 0.888905, 48.10227 ], [ 0.883856, 48.10318 ], [ 0.871549, 48.10843 ], [ 0.841217, 48.10306 ], [ 0.843301, 48.10601 ], [ 0.855009, 48.12386 ], [ 0.850372, 48.13308 ], [ 0.914338, 48.13585 ], [ 0.91665, 48.138941 ], [ 0.90961, 48.14353 ], [ 0.911465, 48.146968 ], [ 0.909365, 48.15007 ], [ 0.884466, 48.16184 ], [ 0.860645, 48.16665 ], [ 0.840574, 48.16553 ], [ 0.83656, 48.16762 ], [ 0.833111, 48.16904 ], [ 0.82786, 48.173039 ], [ 0.81124, 48.18472 ], [ 0.797528, 48.188167 ], [ 0.797655, 48.19446 ], [ 0.80674, 48.19745 ], [ 0.80662, 48.20422 ], [ 0.829446, 48.21137 ], [ 0.822102, 48.223557 ], [ 0.787321, 48.26144 ], [ 0.791517, 48.265231 ], [ 0.785981, 48.2712 ], [ 0.794042, 48.284127 ], [ 0.802328, 48.288196 ], [ 0.807066, 48.28973 ], [ 0.797486, 48.291445 ], [ 0.778584, 48.302109 ], [ 0.764576, 48.299991 ], [ 0.760447, 48.298131 ], [ 0.757286, 48.300771 ], [ 0.769615, 48.31513 ], [ 0.769234, 48.32188 ], [ 0.778368, 48.32995 ], [ 0.781343, 48.332691 ], [ 0.785039, 48.337585 ], [ 0.785432, 48.34044 ], [ 0.788027, 48.341322 ], [ 0.813732, 48.348811 ], [ 0.818405, 48.349419 ], [ 0.824902, 48.3448 ], [ 0.827867, 48.342311 ], [ 0.841975, 48.349896 ], [ 0.840028, 48.35291 ], [ 0.853889, 48.349113 ], [ 0.869034, 48.35723 ], [ 0.883707, 48.35672 ], [ 0.894525, 48.367825 ], [ 0.896387, 48.370909 ], [ 0.904504, 48.37263 ], [ 0.907347, 48.3701 ], [ 0.922214, 48.38252 ], [ 0.926529, 48.384112 ], [ 0.929503, 48.39059 ], [ 0.948381, 48.40164 ], [ 0.945291, 48.41811 ], [ 0.973173, 48.43622 ], [ 0.976416, 48.43877 ], [ 0.974317, 48.44199 ], [ 0.963768, 48.44198 ], [ 0.955273, 48.445817 ], [ 0.940331, 48.46017 ], [ 0.937356, 48.47045 ], [ 0.936714, 48.47301 ], [ 0.935709, 48.47551 ], [ 0.953055, 48.48016 ], [ 0.955507, 48.489476 ], [ 0.955397, 48.49266 ], [ 0.951279, 48.49341 ], [ 0.941554, 48.49869 ], [ 0.954658, 48.50467 ], [ 0.96615, 48.520507 ], [ 0.96774, 48.523881 ], [ 0.962768, 48.524228 ], [ 0.931842, 48.534151 ], [ 0.924168, 48.53803 ], [ 0.937141, 48.5486 ], [ 0.925711, 48.55965 ], [ 0.921331, 48.55935 ], [ 0.910268, 48.564135 ], [ 0.905802, 48.56598 ], [ 0.892944, 48.57183 ], [ 0.867284, 48.57395 ], [ 0.849312, 48.58594 ], [ 0.845909, 48.609015 ], [ 0.826926, 48.6103 ], [ 0.822398, 48.60887 ], [ 0.818206, 48.615043 ], [ 0.827771, 48.63113 ], [ 0.831762, 48.63342 ], [ 0.822818, 48.63534 ], [ 0.821978, 48.64474 ], [ 0.823565, 48.65067 ], [ 0.819748, 48.652955 ], [ 0.809946, 48.66423 ], [ 0.814819, 48.67017 ], [ 0.823793, 48.67848 ], [ 0.827667, 48.680724 ], [ 0.850363, 48.68295 ], [ 0.862794, 48.687999 ], [ 0.872837, 48.71336 ], [ 0.876703, 48.715591 ], [ 0.890363, 48.71943 ], [ 0.900159, 48.711832 ], [ 0.919568, 48.71233 ], [ 0.921203, 48.709177 ], [ 0.951191, 48.71549 ], [ 0.959927, 48.72402 ], [ 0.973679, 48.72917 ], [ 0.978288, 48.73096 ], [ 0.982608, 48.72723 ], [ 0.98564, 48.72583 ], [ 1.010955, 48.72813 ], [ 1.018476, 48.73207 ], [ 1.02197, 48.73462 ], [ 1.032593, 48.728467 ], [ 1.036703, 48.73021 ], [ 1.035263, 48.73992 ], [ 1.059135, 48.75678 ], [ 1.063027, 48.758969 ], [ 1.072605, 48.749425 ], [ 1.083981, 48.75492 ], [ 1.088183, 48.75646 ], [ 1.087854, 48.75318 ], [ 1.110197, 48.748614 ], [ 1.113736, 48.746304 ], [ 1.122737, 48.769144 ], [ 1.118939, 48.78615 ], [ 1.121403, 48.789194 ], [ 1.147556, 48.78501 ], [ 1.152118, 48.785741 ], [ 1.149837, 48.77675 ], [ 1.15826, 48.7695 ], [ 1.162975, 48.769311 ], [ 1.188224, 48.77275 ], [ 1.218547, 48.76002 ], [ 1.22295, 48.758217 ], [ 1.226492, 48.76008 ], [ 1.22426, 48.764507 ], [ 1.222613, 48.7673 ], [ 1.241327, 48.769267 ], [ 1.246022, 48.76968 ], [ 1.254072, 48.76621 ], [ 1.254905, 48.760047 ], [ 1.263264, 48.75786 ], [ 1.26812, 48.75789 ], [ 1.273845, 48.762517 ], [ 1.27841, 48.76315 ], [ 1.296969, 48.768229 ], [ 1.306325, 48.76549 ], [ 1.311366, 48.76489 ], [ 1.313623, 48.7641 ], [ 1.322255, 48.76058 ], [ 1.331947, 48.762173 ], [ 1.351444, 48.77731 ], [ 1.355772, 48.77905 ], [ 1.356386, 48.779416 ], [ 1.364022, 48.78289 ], [ 1.373908, 48.78237 ], [ 1.376939, 48.78862 ], [ 1.372743, 48.79789 ], [ 1.370325, 48.80075 ], [ 1.367976, 48.802711 ], [ 1.366436, 48.80449 ], [ 1.35684, 48.815584 ], [ 1.359781, 48.8312 ], [ 1.386001, 48.84467 ], [ 1.390231, 48.84629 ], [ 1.397229, 48.8536 ], [ 1.397999, 48.85648 ], [ 1.404876, 48.860734 ], [ 1.419238, 48.86141 ], [ 1.424008, 48.860996 ], [ 1.431006, 48.86583 ], [ 1.445455, 48.867753 ], [ 1.449832, 48.869573 ], [ 1.453917, 48.87022 ], [ 1.457628, 48.871518 ], [ 1.464201, 48.876118 ], [ 1.465817, 48.87913 ], [ 1.470909, 48.894733 ], [ 1.466411, 48.8997 ], [ 1.461434, 48.8996 ], [ 1.460568, 48.90954 ], [ 1.451638, 48.92211 ], [ 1.447959, 48.924641 ], [ 1.457442, 48.92751 ], [ 1.460016, 48.93419 ], [ 1.461308, 48.93756 ], [ 1.475517, 48.94001 ], [ 1.488865, 48.93688 ], [ 1.497886, 48.938885 ], [ 1.501524, 48.941054 ], [ 1.501797, 48.941057 ], [ 1.511543, 48.933506 ], [ 1.508132, 48.92724 ], [ 1.513925, 48.92181 ], [ 1.522955, 48.924887 ], [ 1.538249, 48.921693 ], [ 1.540523, 48.918483 ], [ 1.541664, 48.915754 ], [ 1.544341, 48.91079 ], [ 1.538521, 48.90668 ], [ 1.558716, 48.891369 ], [ 1.563742, 48.890629 ], [ 1.561309, 48.88784 ], [ 1.546231, 48.87244 ], [ 1.554899, 48.86573 ], [ 1.558839, 48.86425 ], [ 1.559904, 48.86712 ], [ 1.568638, 48.865845 ], [ 1.572072, 48.86392 ], [ 1.582962, 48.8575 ], [ 1.577939, 48.84776 ], [ 1.577269, 48.844361 ], [ 1.58207, 48.84421 ], [ 1.586621, 48.8432 ], [ 1.594894, 48.83914 ], [ 1.594496, 48.835696 ], [ 1.581793, 48.82982 ], [ 1.590483, 48.81733 ], [ 1.582798, 48.81092 ], [ 1.579434, 48.8089 ], [ 1.576732, 48.785167 ], [ 1.587594, 48.773611 ], [ 1.582928, 48.76756 ], [ 1.584907, 48.763298 ], [ 1.605226, 48.76059 ], [ 1.62496, 48.749031 ], [ 1.622705, 48.740154 ], [ 1.620258, 48.736006 ], [ 1.61504, 48.735306 ], [ 1.590011, 48.712875 ], [ 1.594878, 48.709316 ], [ 1.580727, 48.701349 ], [ 1.584038, 48.69902 ], [ 1.582189, 48.696059 ], [ 1.606656, 48.6892 ], [ 1.611295, 48.68846 ], [ 1.608626, 48.682058 ], [ 1.606204, 48.67912 ], [ 1.601707, 48.66644 ], [ 1.602707, 48.6631 ], [ 1.607566, 48.659618 ], [ 1.622748, 48.65032 ], [ 1.643197, 48.651294 ], [ 1.640838, 48.644889 ], [ 1.647055, 48.63968 ], [ 1.651575, 48.638129 ], [ 1.649567, 48.632276 ], [ 1.656909, 48.62809 ], [ 1.657429, 48.62156 ], [ 1.663558, 48.61641 ], [ 1.666354, 48.61371 ], [ 1.681592, 48.61905 ], [ 1.690247, 48.616951 ], [ 1.685197, 48.61328 ], [ 1.687762, 48.611094 ], [ 1.691234, 48.613301 ], [ 1.709778, 48.613386 ], [ 1.717432, 48.610572 ], [ 1.717849, 48.60739 ], [ 1.704474, 48.58816 ], [ 1.701989, 48.585 ], [ 1.706156, 48.58317 ], [ 1.709253, 48.57802 ], [ 1.726923, 48.572844 ], [ 1.744584, 48.574102 ], [ 1.748456, 48.57603 ], [ 1.761507, 48.57166 ], [ 1.764943, 48.56221 ], [ 1.776034, 48.55565 ], [ 1.778178, 48.55263 ], [ 1.782719, 48.553168 ], [ 1.787245, 48.553745 ], [ 1.776301, 48.52681 ], [ 1.776842, 48.51287 ], [ 1.789428, 48.49444 ], [ 1.78664, 48.49147 ], [ 1.793193, 48.4867 ], [ 1.796336, 48.484192 ], [ 1.793066, 48.48163 ], [ 1.803139, 48.46658 ], [ 1.808028, 48.46576 ], [ 1.833171, 48.46734 ], [ 1.837137, 48.46114 ], [ 1.839126, 48.458032 ], [ 1.847344, 48.446632 ], [ 1.857023, 48.446212 ], [ 1.861091, 48.44446 ], [ 1.874392, 48.44029 ], [ 1.879442, 48.44067 ], [ 1.884121, 48.44001 ], [ 1.90452, 48.440263 ], [ 1.91015, 48.44593 ], [ 1.919886, 48.447935 ], [ 1.922149, 48.4576 ], [ 1.928572, 48.455733 ], [ 1.930628, 48.45372 ], [ 1.932512, 48.445548 ], [ 1.93833, 48.441398 ], [ 1.942895, 48.440998 ], [ 1.937301, 48.43544 ], [ 1.939016, 48.42216 ], [ 1.925893, 48.41275 ], [ 1.930424, 48.40395 ], [ 1.957737, 48.40515 ], [ 1.962226, 48.40432 ], [ 1.974978, 48.40174 ], [ 1.977244, 48.39916 ], [ 1.968537, 48.38362 ], [ 1.966722, 48.38042 ], [ 1.977025, 48.379189 ], [ 1.983903, 48.366445 ], [ 1.987356, 48.363811 ], [ 1.975622, 48.35688 ], [ 1.97062, 48.33999 ], [ 1.982344, 48.328317 ], [ 1.975601, 48.32332 ], [ 1.977212, 48.31401 ], [ 1.959227, 48.30869 ], [ 1.961905, 48.302846 ], [ 1.966219, 48.296774 ], [ 1.975456, 48.29402 ], [ 1.978957, 48.28799 ], [ 1.989021, 48.286984 ], [ 1.994085, 48.28659 ], [ 1.994521, 48.2835 ], [ 1.987876, 48.268708 ], [ 1.985726, 48.266242 ], [ 1.981399, 48.26141 ], [ 1.977882, 48.259308 ], [ 1.965943, 48.254462 ], [ 1.962064, 48.24547 ], [ 1.965343, 48.23767 ], [ 1.966607, 48.23506 ], [ 1.964442, 48.23212 ], [ 1.962595, 48.2226 ], [ 1.976462, 48.199861 ], [ 1.97085, 48.194314 ], [ 1.956429, 48.20006 ], [ 1.952285, 48.19387 ], [ 1.969347, 48.18168 ], [ 1.970035, 48.178109 ], [ 1.97055, 48.17105 ], [ 1.96628, 48.172695 ], [ 1.951887, 48.17462 ], [ 1.934758, 48.169364 ], [ 1.927115, 48.17345 ], [ 1.919554, 48.169487 ], [ 1.916563, 48.16706 ], [ 1.907925, 48.15999 ], [ 1.90323, 48.16003 ], [ 1.905183, 48.14694 ], [ 1.915328, 48.146654 ], [ 1.920403, 48.14638 ], [ 1.918712, 48.14358 ], [ 1.912622, 48.12913 ], [ 1.907824, 48.1304 ], [ 1.899468, 48.127564 ], [ 1.897623, 48.124523 ], [ 1.889714, 48.105586 ], [ 1.887624, 48.102722 ], [ 1.881637, 48.098013 ], [ 1.864904, 48.095189 ], [ 1.865166, 48.091781 ], [ 1.864599, 48.085017 ], [ 1.840198, 48.08728 ], [ 1.838124, 48.08078 ], [ 1.833278, 48.081318 ], [ 1.802746, 48.08921 ], [ 1.80004, 48.08412 ], [ 1.7975, 48.077682 ], [ 1.778099, 48.07517 ], [ 1.771543, 48.07004 ], [ 1.767072, 48.07179 ], [ 1.748763, 48.065781 ], [ 1.728803, 48.068888 ], [ 1.708991, 48.06694 ], [ 1.706129, 48.069758 ], [ 1.689474, 48.07754 ], [ 1.687023, 48.0751 ], [ 1.677207, 48.06541 ], [ 1.668431, 48.0668 ], [ 1.660607, 48.07512 ], [ 1.624269, 48.06676 ], [ 1.621686, 48.063877 ], [ 1.623713, 48.060786 ], [ 1.621232, 48.048319 ], [ 1.613878, 48.044156 ], [ 1.599285, 48.04276 ], [ 1.591873, 48.03075 ], [ 1.586955, 48.03052 ], [ 1.585117, 48.033535 ], [ 1.566382, 48.03656 ], [ 1.545307, 48.044589 ], [ 1.540194, 48.03873 ], [ 1.548119, 48.034543 ], [ 1.540795, 48.031032 ], [ 1.525946, 48.033232 ], [ 1.514051, 48.02723 ], [ 1.520888, 48.011108 ], [ 1.520124, 47.98228 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "28", "CODE_DEPT": "29", "NOM_DEPT": "FINISTERE", "CODE_CHF": "232", "NOM_CHF": "QUIMPER", "X_CHF_LIEU": "1713", "Y_CHF_LIEU": "67899", "X_CENTROID": "1770", "Y_CENTROID": "68189", "CODE_REG": "53", "NOM_REGION": "BRETAGNE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.523004, 47.849147 ], [ -3.525229, 47.85229 ], [ -3.541201, 47.8594 ], [ -3.530376, 47.84778 ], [ -3.539292, 47.83566 ], [ -3.542913, 47.822171 ], [ -3.537744, 47.821466 ], [ -3.535212, 47.814627 ], [ -3.527784, 47.80961 ], [ -3.523811, 47.799324 ], [ -3.537454, 47.766 ], [ -3.547341, 47.7646 ], [ -3.568094, 47.76842 ], [ -3.610893, 47.770001 ], [ -3.616153, 47.769748 ], [ -3.645455, 47.77639 ], [ -3.644426, 47.787121 ], [ -3.656606, 47.7809 ], [ -3.681412, 47.778139 ], [ -3.715178, 47.79506 ], [ -3.718815, 47.797637 ], [ -3.720252, 47.800942 ], [ -3.715553, 47.80703 ], [ -3.69589, 47.817605 ], [ -3.671163, 47.823597 ], [ -3.66098, 47.82175 ], [ -3.655723, 47.821433 ], [ -3.651502, 47.82092 ], [ -3.641843, 47.826575 ], [ -3.639574, 47.82902 ], [ -3.652604, 47.823507 ], [ -3.673312, 47.82617 ], [ -3.687821, 47.822 ], [ -3.697043, 47.82461 ], [ -3.709606, 47.813766 ], [ -3.732195, 47.805042 ], [ -3.741431, 47.813363 ], [ -3.749359, 47.844693 ], [ -3.74772, 47.84805 ], [ -3.746702, 47.850807 ], [ -3.75186, 47.84631 ], [ -3.754706, 47.844212 ], [ -3.750637, 47.842189 ], [ -3.754607, 47.83248 ], [ -3.747153, 47.82324 ], [ -3.75115, 47.817129 ], [ -3.741507, 47.80478 ], [ -3.741553, 47.801233 ], [ -3.743624, 47.79801 ], [ -3.756813, 47.792304 ], [ -3.76199, 47.79159 ], [ -3.79873, 47.788934 ], [ -3.808299, 47.79111 ], [ -3.810808, 47.794265 ], [ -3.836096, 47.796475 ], [ -3.850532, 47.793434 ], [ -3.855502, 47.80337 ], [ -3.900025, 47.83762 ], [ -3.890655, 47.853088 ], [ -3.882633, 47.857563 ], [ -3.878635, 47.859857 ], [ -3.883522, 47.85873 ], [ -3.900439, 47.8508 ], [ -3.910202, 47.852496 ], [ -3.913314, 47.855257 ], [ -3.905424, 47.8594 ], [ -3.906365, 47.86281 ], [ -3.912988, 47.868096 ], [ -3.92746, 47.871469 ], [ -3.933874, 47.880874 ], [ -3.942082, 47.88509 ], [ -3.948109, 47.89418 ], [ -3.946011, 47.90451 ], [ -3.953778, 47.896127 ], [ -3.968476, 47.89674 ], [ -3.979158, 47.902261 ], [ -3.982045, 47.89593 ], [ -3.991227, 47.897195 ], [ -3.990482, 47.893689 ], [ -3.98185, 47.889759 ], [ -3.98718, 47.87985 ], [ -3.982897, 47.85571 ], [ -4.03931, 47.84804 ], [ -4.050229, 47.852527 ], [ -4.082314, 47.86157 ], [ -4.080753, 47.862241 ], [ -4.05015, 47.853752 ], [ -4.049939, 47.85509 ], [ -4.069249, 47.864581 ], [ -4.067177, 47.871303 ], [ -4.075756, 47.86846 ], [ -4.080655, 47.870858 ], [ -4.085249, 47.864833 ], [ -4.09497, 47.86312 ], [ -4.11656, 47.8775 ], [ -4.110569, 47.881904 ], [ -4.105616, 47.880831 ], [ -4.1239, 47.88933 ], [ -4.118795, 47.894335 ], [ -4.115963, 47.896856 ], [ -4.130385, 47.89419 ], [ -4.140993, 47.90191 ], [ -4.143471, 47.912315 ], [ -4.139172, 47.922499 ], [ -4.11321, 47.933584 ], [ -4.103379, 47.941482 ], [ -4.084456, 47.936546 ], [ -4.079519, 47.935326 ], [ -4.07303, 47.932854 ], [ -4.069298, 47.932998 ], [ -4.091455, 47.94162 ], [ -4.083641, 47.949444 ], [ -4.096968, 47.944518 ], [ -4.105495, 47.94622 ], [ -4.095694, 47.962097 ], [ -4.095947, 47.965687 ], [ -4.100632, 47.97182 ], [ -4.114006, 47.977315 ], [ -4.107396, 47.970984 ], [ -4.108512, 47.96528 ], [ -4.119092, 47.965215 ], [ -4.113202, 47.959934 ], [ -4.116554, 47.95375 ], [ -4.113119, 47.936409 ], [ -4.138771, 47.92471 ], [ -4.1479, 47.91196 ], [ -4.148459, 47.898284 ], [ -4.163716, 47.89624 ], [ -4.172691, 47.90446 ], [ -4.176131, 47.90714 ], [ -4.167468, 47.89467 ], [ -4.141969, 47.894306 ], [ -4.133075, 47.890918 ], [ -4.115139, 47.869725 ], [ -4.118209, 47.864279 ], [ -4.147015, 47.85682 ], [ -4.151312, 47.854832 ], [ -4.163942, 47.848638 ], [ -4.168415, 47.83972 ], [ -4.169619, 47.84108 ], [ -4.168705, 47.849412 ], [ -4.167245, 47.856785 ], [ -4.172832, 47.875141 ], [ -4.184573, 47.8809 ], [ -4.196976, 47.86382 ], [ -4.201041, 47.86132 ], [ -4.208307, 47.866653 ], [ -4.210266, 47.86565 ], [ -4.193879, 47.85317 ], [ -4.18289, 47.83846 ], [ -4.164725, 47.83337 ], [ -4.162179, 47.826848 ], [ -4.166696, 47.81707 ], [ -4.180976, 47.80273 ], [ -4.194373, 47.79766 ], [ -4.204198, 47.79949 ], [ -4.208335, 47.8016 ], [ -4.21574, 47.812945 ], [ -4.218491, 47.80949 ], [ -4.214046, 47.79664 ], [ -4.226813, 47.79347 ], [ -4.267709, 47.791314 ], [ -4.275584, 47.79476 ], [ -4.272259, 47.7974 ], [ -4.272265, 47.80087 ], [ -4.287089, 47.792575 ], [ -4.300649, 47.80066 ], [ -4.32593, 47.79778 ], [ -4.371396, 47.798079 ], [ -4.373346, 47.81162 ], [ -4.379963, 47.81983 ], [ -4.367795, 47.826148 ], [ -4.353426, 47.828137 ], [ -4.349788, 47.830653 ], [ -4.346631, 47.84255 ], [ -4.347687, 47.84901 ], [ -4.352675, 47.86298 ], [ -4.35976, 47.87908 ], [ -4.357399, 47.88878 ], [ -4.343337, 47.89757 ], [ -4.339481, 47.899706 ], [ -4.366511, 47.89285 ], [ -4.371919, 47.90215 ], [ -4.373812, 47.905223 ], [ -4.395798, 47.9349 ], [ -4.399005, 47.937441 ], [ -4.409277, 47.94509 ], [ -4.41095, 47.94839 ], [ -4.420745, 47.96057 ], [ -4.458889, 47.9833 ], [ -4.46246, 47.985801 ], [ -4.472549, 47.985538 ], [ -4.495157, 47.99969 ], [ -4.529353, 48.00818 ], [ -4.535157, 48.01363 ], [ -4.530862, 48.034449 ], [ -4.495754, 48.038359 ], [ -4.490329, 48.037838 ], [ -4.490639, 48.03916 ], [ -4.52306, 48.04014 ], [ -4.527535, 48.03881 ], [ -4.541024, 48.03699 ], [ -4.534135, 48.03292 ], [ -4.537149, 48.016173 ], [ -4.544322, 48.01158 ], [ -4.549338, 48.01208 ], [ -4.566122, 48.000394 ], [ -4.589377, 48.006993 ], [ -4.597875, 48.0154 ], [ -4.602944, 48.015137 ], [ -4.622126, 48.01818 ], [ -4.629933, 48.026693 ], [ -4.632962, 48.02937 ], [ -4.645876, 48.02342 ], [ -4.656248, 48.023108 ], [ -4.697144, 48.028127 ], [ -4.731814, 48.03668 ], [ -4.734393, 48.039747 ], [ -4.709302, 48.043722 ], [ -4.706123, 48.04652 ], [ -4.713882, 48.05864 ], [ -4.709625, 48.063565 ], [ -4.679107, 48.061478 ], [ -4.664776, 48.070154 ], [ -4.639194, 48.06788 ], [ -4.625493, 48.07061 ], [ -4.621508, 48.068422 ], [ -4.583146, 48.079864 ], [ -4.568407, 48.08179 ], [ -4.548642, 48.07811 ], [ -4.534789, 48.08832 ], [ -4.504283, 48.08945 ], [ -4.488948, 48.087299 ], [ -4.462293, 48.09772 ], [ -4.457335, 48.096531 ], [ -4.432745, 48.09764 ], [ -4.417778, 48.10606 ], [ -4.38304, 48.10623 ], [ -4.378763, 48.107971 ], [ -4.363856, 48.10839 ], [ -4.341438, 48.09915 ], [ -4.33243, 48.08347 ], [ -4.331669, 48.0842 ], [ -4.334666, 48.097219 ], [ -4.326266, 48.097743 ], [ -4.301536, 48.090425 ], [ -4.296938, 48.092193 ], [ -4.297865, 48.09529 ], [ -4.285671, 48.10487 ], [ -4.284294, 48.107888 ], [ -4.28413, 48.12458 ], [ -4.269592, 48.13338 ], [ -4.272005, 48.146757 ], [ -4.272882, 48.15262 ], [ -4.275193, 48.15557 ], [ -4.294315, 48.158578 ], [ -4.296321, 48.165069 ], [ -4.291844, 48.1742 ], [ -4.296165, 48.183739 ], [ -4.304245, 48.19533 ], [ -4.313021, 48.19788 ], [ -4.316363, 48.203839 ], [ -4.321141, 48.203985 ], [ -4.33223, 48.206241 ], [ -4.367453, 48.2057 ], [ -4.376517, 48.216933 ], [ -4.400469, 48.22051 ], [ -4.404469, 48.222599 ], [ -4.423338, 48.227982 ], [ -4.433753, 48.227506 ], [ -4.440917, 48.23254 ], [ -4.460974, 48.2367 ], [ -4.492286, 48.23455 ], [ -4.496898, 48.232833 ], [ -4.501256, 48.22668 ], [ -4.497055, 48.220268 ], [ -4.510951, 48.20988 ], [ -4.522667, 48.190244 ], [ -4.53774, 48.18043 ], [ -4.541544, 48.17019 ], [ -4.551447, 48.16819 ], [ -4.557326, 48.17319 ], [ -4.560034, 48.17623 ], [ -4.55241, 48.180937 ], [ -4.551033, 48.1981 ], [ -4.560166, 48.22497 ], [ -4.568712, 48.23359 ], [ -4.546001, 48.241368 ], [ -4.544349, 48.24805 ], [ -4.552991, 48.2563 ], [ -4.55692, 48.25868 ], [ -4.580977, 48.25223 ], [ -4.596226, 48.25416 ], [ -4.608267, 48.26076 ], [ -4.621499, 48.26024 ], [ -4.61729, 48.27034 ], [ -4.621169, 48.27981 ], [ -4.60673, 48.283908 ], [ -4.601595, 48.28389 ], [ -4.586949, 48.2756 ], [ -4.569431, 48.283053 ], [ -4.566636, 48.28603 ], [ -4.567603, 48.29161 ], [ -4.578756, 48.32207 ], [ -4.555619, 48.337022 ], [ -4.540339, 48.340313 ], [ -4.535447, 48.33617 ], [ -4.543467, 48.32661 ], [ -4.548711, 48.30935 ], [ -4.556766, 48.30488 ], [ -4.555019, 48.29791 ], [ -4.55307, 48.29463 ], [ -4.532534, 48.286121 ], [ -4.508668, 48.30808 ], [ -4.50324, 48.30574 ], [ -4.515641, 48.29479 ], [ -4.506717, 48.282958 ], [ -4.502599, 48.28086 ], [ -4.472585, 48.28681 ], [ -4.459929, 48.29286 ], [ -4.423409, 48.29137 ], [ -4.410335, 48.276635 ], [ -4.38973, 48.27519 ], [ -4.3845, 48.275156 ], [ -4.371685, 48.2779 ], [ -4.367193, 48.27772 ], [ -4.352547, 48.286252 ], [ -4.342825, 48.28615 ], [ -4.338008, 48.285594 ], [ -4.301017, 48.297566 ], [ -4.275011, 48.295865 ], [ -4.263811, 48.291839 ], [ -4.267463, 48.287213 ], [ -4.279934, 48.288297 ], [ -4.287026, 48.2833 ], [ -4.28861, 48.27403 ], [ -4.264995, 48.267794 ], [ -4.261141, 48.265465 ], [ -4.262778, 48.25889 ], [ -4.252897, 48.25691 ], [ -4.246167, 48.251767 ], [ -4.243368, 48.24883 ], [ -4.217728, 48.25659 ], [ -4.212911, 48.243967 ], [ -4.206533, 48.23908 ], [ -4.206601, 48.2455 ], [ -4.190794, 48.24604 ], [ -4.160309, 48.244183 ], [ -4.13671, 48.237031 ], [ -4.115459, 48.2442 ], [ -4.113189, 48.242111 ], [ -4.117634, 48.22189 ], [ -4.117527, 48.2183 ], [ -4.111773, 48.23774 ], [ -4.108927, 48.240498 ], [ -4.099737, 48.25357 ], [ -4.102081, 48.254498 ], [ -4.135437, 48.2423 ], [ -4.145541, 48.244103 ], [ -4.150633, 48.24962 ], [ -4.160315, 48.24721 ], [ -4.202006, 48.250768 ], [ -4.217295, 48.259745 ], [ -4.237241, 48.25582 ], [ -4.242158, 48.25695 ], [ -4.273701, 48.27887 ], [ -4.258338, 48.28093 ], [ -4.235661, 48.28996 ], [ -4.220276, 48.28904 ], [ -4.200455, 48.29338 ], [ -4.195915, 48.291671 ], [ -4.189688, 48.29692 ], [ -4.194124, 48.297779 ], [ -4.234266, 48.29841 ], [ -4.238863, 48.30741 ], [ -4.221139, 48.31395 ], [ -4.226507, 48.31358 ], [ -4.240599, 48.31018 ], [ -4.250469, 48.30279 ], [ -4.273167, 48.310029 ], [ -4.27482, 48.31571 ], [ -4.252411, 48.32382 ], [ -4.255241, 48.32734 ], [ -4.272601, 48.32013 ], [ -4.282835, 48.31929 ], [ -4.294179, 48.31269 ], [ -4.329565, 48.31582 ], [ -4.32945, 48.318782 ], [ -4.310669, 48.33073 ], [ -4.311939, 48.33615 ], [ -4.282496, 48.34303 ], [ -4.277837, 48.344618 ], [ -4.282143, 48.34605 ], [ -4.28421, 48.35078 ], [ -4.270663, 48.35408 ], [ -4.268652, 48.35766 ], [ -4.273335, 48.356045 ], [ -4.292985, 48.35355 ], [ -4.302169, 48.35564 ], [ -4.305939, 48.34377 ], [ -4.325979, 48.34091 ], [ -4.329235, 48.34675 ], [ -4.318481, 48.36217 ], [ -4.323759, 48.35803 ], [ -4.346923, 48.34335 ], [ -4.351771, 48.344774 ], [ -4.344051, 48.354796 ], [ -4.34561, 48.355178 ], [ -4.359558, 48.347425 ], [ -4.363548, 48.345043 ], [ -4.371215, 48.331878 ], [ -4.378613, 48.326762 ], [ -4.409877, 48.32543 ], [ -4.411502, 48.328489 ], [ -4.395863, 48.340801 ], [ -4.396635, 48.341756 ], [ -4.440759, 48.3279 ], [ -4.450675, 48.328924 ], [ -4.434543, 48.36162 ], [ -4.417357, 48.36993 ], [ -4.404822, 48.38154 ], [ -4.367629, 48.395554 ], [ -4.36111, 48.40121 ], [ -4.356197, 48.40265 ], [ -4.352303, 48.40237 ], [ -4.3484, 48.40212 ], [ -4.318693, 48.414631 ], [ -4.31387, 48.41567 ], [ -4.270246, 48.44314 ], [ -4.274149, 48.443868 ], [ -4.278671, 48.439669 ], [ -4.281849, 48.436935 ], [ -4.291534, 48.434721 ], [ -4.313879, 48.420594 ], [ -4.32849, 48.418009 ], [ -4.347639, 48.408598 ], [ -4.36716, 48.406986 ], [ -4.3711, 48.40084 ], [ -4.376029, 48.40019 ], [ -4.379747, 48.39788 ], [ -4.389557, 48.39758 ], [ -4.405552, 48.39055 ], [ -4.423117, 48.39721 ], [ -4.430329, 48.39736 ], [ -4.433647, 48.39635 ], [ -4.437427, 48.38292 ], [ -4.457271, 48.385857 ], [ -4.471386, 48.38141 ], [ -4.481949, 48.38176 ], [ -4.506431, 48.37508 ], [ -4.533866, 48.35887 ], [ -4.548618, 48.36092 ], [ -4.553854, 48.3614 ], [ -4.570949, 48.35045 ], [ -4.607307, 48.33877 ], [ -4.616817, 48.339 ], [ -4.621781, 48.33827 ], [ -4.626704, 48.33753 ], [ -4.63794, 48.344218 ], [ -4.652385, 48.3461 ], [ -4.674345, 48.35402 ], [ -4.678908, 48.35545 ], [ -4.698435, 48.35108 ], [ -4.699714, 48.33762 ], [ -4.712448, 48.331265 ], [ -4.738621, 48.33168 ], [ -4.764509, 48.328232 ], [ -4.773022, 48.33179 ], [ -4.771505, 48.33519 ], [ -4.774583, 48.338029 ], [ -4.772488, 48.34824 ], [ -4.779123, 48.3574 ], [ -4.777273, 48.36048 ], [ -4.771217, 48.36145 ], [ -4.755806, 48.359434 ], [ -4.750646, 48.36013 ], [ -4.749865, 48.364669 ], [ -4.746314, 48.36681 ], [ -4.755563, 48.363843 ], [ -4.775966, 48.36301 ], [ -4.783444, 48.361295 ], [ -4.787291, 48.36253 ], [ -4.785701, 48.366354 ], [ -4.77415, 48.364673 ], [ -4.761416, 48.375157 ], [ -4.760987, 48.37858 ], [ -4.773252, 48.3879 ], [ -4.776351, 48.40696 ], [ -4.785326, 48.407513 ], [ -4.793463, 48.41594 ], [ -4.784643, 48.435457 ], [ -4.775978, 48.44389 ], [ -4.780469, 48.44531 ], [ -4.777375, 48.45156 ], [ -4.765067, 48.465698 ], [ -4.757024, 48.466181 ], [ -4.759487, 48.45978 ], [ -4.748103, 48.47084 ], [ -4.718163, 48.47439 ], [ -4.72164, 48.47538 ], [ -4.7247, 48.47686 ], [ -4.727757, 48.475101 ], [ -4.757783, 48.47048 ], [ -4.767051, 48.47669 ], [ -4.766669, 48.48016 ], [ -4.772723, 48.48549 ], [ -4.777316, 48.498549 ], [ -4.771508, 48.51412 ], [ -4.766439, 48.51654 ], [ -4.763541, 48.519286 ], [ -4.760316, 48.52946 ], [ -4.751466, 48.533201 ], [ -4.748683, 48.54343 ], [ -4.729872, 48.5556 ], [ -4.720355, 48.55809 ], [ -4.706425, 48.55319 ], [ -4.704109, 48.550046 ], [ -4.699935, 48.56958 ], [ -4.689952, 48.57096 ], [ -4.680567, 48.56836 ], [ -4.668866, 48.574275 ], [ -4.663167, 48.568941 ], [ -4.660517, 48.57139 ], [ -4.647143, 48.57213 ], [ -4.628999, 48.57807 ], [ -4.600176, 48.57196 ], [ -4.592368, 48.559838 ], [ -4.595545, 48.55341 ], [ -4.583978, 48.55587 ], [ -4.579685, 48.55528 ], [ -4.577643, 48.560066 ], [ -4.556815, 48.558856 ], [ -4.54183, 48.55596 ], [ -4.53071, 48.54879 ], [ -4.525181, 48.55349 ], [ -4.512507, 48.54913 ], [ -4.507057, 48.55288 ], [ -4.511972, 48.55185 ], [ -4.554336, 48.56205 ], [ -4.584996, 48.562795 ], [ -4.590886, 48.57222 ], [ -4.594371, 48.574748 ], [ -4.609416, 48.576875 ], [ -4.605195, 48.58306 ], [ -4.605345, 48.60054 ], [ -4.598875, 48.60552 ], [ -4.590369, 48.602034 ], [ -4.589687, 48.59518 ], [ -4.563925, 48.59725 ], [ -4.532784, 48.59538 ], [ -4.5289, 48.59292 ], [ -4.519757, 48.58599 ], [ -4.504765, 48.58621 ], [ -4.487957, 48.57404 ], [ -4.478405, 48.57208 ], [ -4.499306, 48.587365 ], [ -4.514267, 48.588822 ], [ -4.539432, 48.599913 ], [ -4.558074, 48.60606 ], [ -4.566393, 48.614472 ], [ -4.563882, 48.62113 ], [ -4.545286, 48.62675 ], [ -4.543364, 48.63326 ], [ -4.528742, 48.63065 ], [ -4.513925, 48.63227 ], [ -4.503074, 48.621933 ], [ -4.467954, 48.62642 ], [ -4.462756, 48.62706 ], [ -4.443949, 48.638917 ], [ -4.402521, 48.637097 ], [ -4.397363, 48.63639 ], [ -4.429006, 48.647623 ], [ -4.433326, 48.65344 ], [ -4.397146, 48.656206 ], [ -4.353749, 48.674825 ], [ -4.349139, 48.676475 ], [ -4.32978, 48.675484 ], [ -4.32702, 48.66933 ], [ -4.313352, 48.67039 ], [ -4.310227, 48.667844 ], [ -4.300849, 48.665249 ], [ -4.296315, 48.66033 ], [ -4.303197, 48.65154 ], [ -4.315032, 48.645416 ], [ -4.31099, 48.643425 ], [ -4.314156, 48.640818 ], [ -4.316152, 48.63775 ], [ -4.311593, 48.635176 ], [ -4.301942, 48.633023 ], [ -4.294016, 48.63628 ], [ -4.293186, 48.64127 ], [ -4.271009, 48.64929 ], [ -4.250349, 48.64963 ], [ -4.245142, 48.649834 ], [ -4.230494, 48.65333 ], [ -4.229702, 48.650268 ], [ -4.219577, 48.648914 ], [ -4.199607, 48.65266 ], [ -4.194485, 48.651999 ], [ -4.217569, 48.6612 ], [ -4.191406, 48.68268 ], [ -4.167145, 48.688261 ], [ -4.162413, 48.689765 ], [ -4.133031, 48.69525 ], [ -4.102175, 48.694072 ], [ -4.095117, 48.691026 ], [ -4.094512, 48.68758 ], [ -4.092403, 48.69083 ], [ -4.081961, 48.69158 ], [ -4.057584, 48.673129 ], [ -4.057122, 48.66962 ], [ -4.055639, 48.67216 ], [ -4.058299, 48.6764 ], [ -4.065692, 48.684966 ], [ -4.060875, 48.68717 ], [ -4.038455, 48.68658 ], [ -4.035777, 48.687651 ], [ -4.056171, 48.68879 ], [ -4.053806, 48.70226 ], [ -4.039427, 48.705198 ], [ -4.035343, 48.711526 ], [ -4.015228, 48.713436 ], [ -4.008163, 48.72259 ], [ -4.006921, 48.725944 ], [ -4.001808, 48.72659 ], [ -4.004735, 48.72095 ], [ -3.998949, 48.71425 ], [ -3.986241, 48.727547 ], [ -3.978134, 48.722966 ], [ -3.969138, 48.727638 ], [ -3.964353, 48.721968 ], [ -3.973629, 48.70389 ], [ -3.973259, 48.69704 ], [ -3.963773, 48.688728 ], [ -3.969351, 48.679335 ], [ -3.953119, 48.67172 ], [ -3.95234, 48.657802 ], [ -3.956145, 48.65128 ], [ -3.957215, 48.64785 ], [ -3.950619, 48.638741 ], [ -3.953861, 48.61828 ], [ -3.93501, 48.59868 ], [ -3.94183, 48.61169 ], [ -3.938912, 48.61453 ], [ -3.94374, 48.61581 ], [ -3.950629, 48.625006 ], [ -3.94655, 48.64195 ], [ -3.950709, 48.651387 ], [ -3.942217, 48.655369 ], [ -3.929798, 48.660175 ], [ -3.921061, 48.6726 ], [ -3.895587, 48.670588 ], [ -3.894779, 48.66726 ], [ -3.904755, 48.65973 ], [ -3.903882, 48.656319 ], [ -3.897599, 48.646833 ], [ -3.88552, 48.64048 ], [ -3.880688, 48.639172 ], [ -3.860141, 48.63169 ], [ -3.858216, 48.62876 ], [ -3.858126, 48.61812 ], [ -3.859482, 48.60957 ], [ -3.866444, 48.605459 ], [ -3.870649, 48.603997 ], [ -3.857434, 48.607452 ], [ -3.849571, 48.60377 ], [ -3.858036, 48.612663 ], [ -3.851675, 48.622095 ], [ -3.832444, 48.62781 ], [ -3.816795, 48.62854 ], [ -3.811288, 48.62892 ], [ -3.847132, 48.63096 ], [ -3.861363, 48.66784 ], [ -3.8552, 48.671451 ], [ -3.850963, 48.66172 ], [ -3.846264, 48.660184 ], [ -3.85274, 48.6878 ], [ -3.837993, 48.70626 ], [ -3.834167, 48.7086 ], [ -3.824788, 48.70657 ], [ -3.814454, 48.71455 ], [ -3.799403, 48.71127 ], [ -3.785042, 48.701348 ], [ -3.779723, 48.701769 ], [ -3.763109, 48.709006 ], [ -3.747877, 48.70777 ], [ -3.722155, 48.705459 ], [ -3.701328, 48.689861 ], [ -3.676629, 48.6881 ], [ -3.653483, 48.694749 ], [ -3.645368, 48.69452 ], [ -3.643467, 48.693404 ], [ -3.652481, 48.683792 ], [ -3.64189, 48.67288 ], [ -3.649361, 48.668197 ], [ -3.653735, 48.66626 ], [ -3.657899, 48.661735 ], [ -3.659144, 48.65921 ], [ -3.660776, 48.6563 ], [ -3.663536, 48.6538 ], [ -3.654996, 48.624011 ], [ -3.654181, 48.617296 ], [ -3.64898, 48.61163 ], [ -3.63988, 48.609114 ], [ -3.640603, 48.59606 ], [ -3.636745, 48.593329 ], [ -3.629298, 48.58836 ], [ -3.613731, 48.589224 ], [ -3.599568, 48.5846 ], [ -3.594583, 48.585749 ], [ -3.585718, 48.573269 ], [ -3.599429, 48.55861 ], [ -3.581724, 48.55397 ], [ -3.572694, 48.556768 ], [ -3.553824, 48.54128 ], [ -3.53928, 48.53825 ], [ -3.555746, 48.52961 ], [ -3.592834, 48.50004 ], [ -3.597677, 48.498591 ], [ -3.604168, 48.49405 ], [ -3.601798, 48.484415 ], [ -3.604904, 48.47825 ], [ -3.59807, 48.473897 ], [ -3.599593, 48.4708 ], [ -3.594945, 48.47043 ], [ -3.592163, 48.4645 ], [ -3.578692, 48.46273 ], [ -3.578885, 48.45952 ], [ -3.56894, 48.45294 ], [ -3.552517, 48.450752 ], [ -3.550496, 48.44783 ], [ -3.554192, 48.445378 ], [ -3.585041, 48.433 ], [ -3.598768, 48.422644 ], [ -3.600208, 48.4023 ], [ -3.603722, 48.40048 ], [ -3.603261, 48.39714 ], [ -3.607682, 48.388327 ], [ -3.603288, 48.38637 ], [ -3.554415, 48.37717 ], [ -3.553282, 48.37016 ], [ -3.562814, 48.34702 ], [ -3.556146, 48.34243 ], [ -3.549958, 48.31572 ], [ -3.541027, 48.31334 ], [ -3.529744, 48.320253 ], [ -3.52279, 48.32006 ], [ -3.518631, 48.31807 ], [ -3.528434, 48.31657 ], [ -3.539615, 48.30157 ], [ -3.547487, 48.29871 ], [ -3.552316, 48.299682 ], [ -3.553028, 48.293016 ], [ -3.530105, 48.286558 ], [ -3.522957, 48.28172 ], [ -3.517898, 48.28226 ], [ -3.52585, 48.2708 ], [ -3.526512, 48.2611 ], [ -3.522177, 48.25525 ], [ -3.540715, 48.253206 ], [ -3.539952, 48.24979 ], [ -3.544423, 48.24357 ], [ -3.553725, 48.24087 ], [ -3.556488, 48.230716 ], [ -3.556032, 48.22727 ], [ -3.54126, 48.2092 ], [ -3.522589, 48.203939 ], [ -3.521292, 48.197176 ], [ -3.519676, 48.19067 ], [ -3.543101, 48.193575 ], [ -3.566669, 48.190033 ], [ -3.564839, 48.185747 ], [ -3.56989, 48.18532 ], [ -3.591673, 48.17683 ], [ -3.620747, 48.17098 ], [ -3.625331, 48.169746 ], [ -3.653281, 48.15622 ], [ -3.671562, 48.151477 ], [ -3.696017, 48.15202 ], [ -3.696177, 48.148607 ], [ -3.712945, 48.14178 ], [ -3.71181, 48.13498 ], [ -3.723829, 48.12439 ], [ -3.720172, 48.118973 ], [ -3.732486, 48.112949 ], [ -3.729698, 48.10283 ], [ -3.732973, 48.096268 ], [ -3.727878, 48.095747 ], [ -3.708042, 48.09815 ], [ -3.695004, 48.09336 ], [ -3.698773, 48.09088 ], [ -3.70381, 48.08468 ], [ -3.70371, 48.06808 ], [ -3.701509, 48.064867 ], [ -3.674599, 48.05492 ], [ -3.660917, 48.01757 ], [ -3.649005, 48.006023 ], [ -3.641041, 47.985793 ], [ -3.621982, 47.982815 ], [ -3.613014, 47.9851 ], [ -3.600203, 47.990129 ], [ -3.590049, 47.98929 ], [ -3.581993, 47.98596 ], [ -3.574363, 47.99059 ], [ -3.554116, 47.99188 ], [ -3.545771, 47.98782 ], [ -3.530788, 47.98621 ], [ -3.517531, 47.97599 ], [ -3.502192, 47.97538 ], [ -3.497449, 47.97673 ], [ -3.485293, 47.96686 ], [ -3.479924, 47.950798 ], [ -3.470864, 47.94826 ], [ -3.468019, 47.94555 ], [ -3.463967, 47.947588 ], [ -3.461307, 47.95761 ], [ -3.441627, 47.960158 ], [ -3.412978, 47.97334 ], [ -3.408436, 47.967258 ], [ -3.40339, 47.967001 ], [ -3.401313, 47.960722 ], [ -3.392807, 47.95407 ], [ -3.393172, 47.95086 ], [ -3.400984, 47.941996 ], [ -3.388025, 47.92704 ], [ -3.391871, 47.9205 ], [ -3.406288, 47.917309 ], [ -3.411356, 47.90481 ], [ -3.402412, 47.88536 ], [ -3.403891, 47.868383 ], [ -3.398383, 47.863104 ], [ -3.40869, 47.863227 ], [ -3.42119, 47.86861 ], [ -3.449854, 47.861328 ], [ -3.44892, 47.848457 ], [ -3.457662, 47.836633 ], [ -3.462754, 47.83693 ], [ -3.472813, 47.83582 ], [ -3.485876, 47.82529 ], [ -3.490984, 47.825064 ], [ -3.508975, 47.83158 ], [ -3.518947, 47.83906 ], [ -3.519274, 47.8487 ], [ -3.523004, 47.849147 ] ] ], [ [ [ -5.102603, 48.436117 ], [ -5.105166, 48.43669 ], [ -5.110482, 48.43626 ], [ -5.115104, 48.437675 ], [ -5.108277, 48.442828 ], [ -5.096772, 48.44719 ], [ -5.093861, 48.451747 ], [ -5.102486, 48.455389 ], [ -5.130485, 48.449199 ], [ -5.138352, 48.44952 ], [ -5.139017, 48.45091 ], [ -5.137878, 48.4525 ], [ -5.131837, 48.458421 ], [ -5.129797, 48.459556 ], [ -5.110304, 48.465651 ], [ -5.104911, 48.47157 ], [ -5.092297, 48.47452 ], [ -5.081802, 48.473407 ], [ -5.076844, 48.47477 ], [ -5.073014, 48.477272 ], [ -5.074816, 48.48181 ], [ -5.072523, 48.482731 ], [ -5.069949, 48.48226 ], [ -5.065053, 48.481124 ], [ -5.060443, 48.47681 ], [ -5.052693, 48.47665 ], [ -5.055543, 48.46671 ], [ -5.048431, 48.464324 ], [ -5.037898, 48.464009 ], [ -5.035702, 48.46307 ], [ -5.035399, 48.461366 ], [ -5.038806, 48.458765 ], [ -5.04919, 48.458032 ], [ -5.059784, 48.450194 ], [ -5.080455, 48.449453 ], [ -5.089432, 48.44086 ], [ -5.099586, 48.439019 ], [ -5.102603, 48.436117 ] ] ], [ [ [ -3.99181, 48.7364 ], [ -3.995883, 48.740508 ], [ -4.006553, 48.74086 ], [ -4.01323, 48.743406 ], [ -4.021748, 48.73945 ], [ -4.034268, 48.742282 ], [ -4.036562, 48.743194 ], [ -4.03781, 48.744755 ], [ -4.037064, 48.746406 ], [ -4.021052, 48.75262 ], [ -4.010361, 48.75262 ], [ -4.007809, 48.75213 ], [ -4.000447, 48.747039 ], [ -3.990899, 48.744367 ], [ -3.988799, 48.739298 ], [ -3.99181, 48.7364 ] ] ], [ [ [ -4.959196, 48.389413 ], [ -4.963527, 48.39111 ], [ -4.966327, 48.39765 ], [ -4.961496, 48.40143 ], [ -4.953596, 48.394917 ], [ -4.95761, 48.39077 ], [ -4.959196, 48.389413 ] ] ], [ [ [ -4.845997, 48.031552 ], [ -4.854769, 48.035053 ], [ -4.858933, 48.0392 ], [ -4.866657, 48.03972 ], [ -4.868208, 48.040899 ], [ -4.866914, 48.04217 ], [ -4.852015, 48.03938 ], [ -4.849512, 48.034789 ], [ -4.845987, 48.03257 ], [ -4.845997, 48.031552 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "29", "CODE_DEPT": "2A", "NOM_DEPT": "CORSE-DU-SUD", "CODE_CHF": "004", "NOM_CHF": "AJACCIO", "X_CHF_LIEU": "11764", "Y_CHF_LIEU": "61089", "X_CENTROID": "11978", "Y_CENTROID": "61036", "CODE_REG": "94", "NOM_REGION": "CORSE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.402269, 41.858707 ], [ 9.40134, 41.855258 ], [ 9.405615, 41.820517 ], [ 9.395405, 41.79726 ], [ 9.399036, 41.787113 ], [ 9.396644, 41.773723 ], [ 9.40669, 41.767795 ], [ 9.404187, 41.720457 ], [ 9.401378, 41.717736 ], [ 9.404344, 41.71503 ], [ 9.399548, 41.694536 ], [ 9.379808, 41.68641 ], [ 9.37325, 41.677329 ], [ 9.383941, 41.667048 ], [ 9.385149, 41.65342 ], [ 9.38287, 41.65001 ], [ 9.368152, 41.63717 ], [ 9.360269, 41.640373 ], [ 9.351247, 41.63957 ], [ 9.346912, 41.633532 ], [ 9.353355, 41.62097 ], [ 9.350589, 41.618579 ], [ 9.323208, 41.61773 ], [ 9.313374, 41.625129 ], [ 9.313614, 41.62861 ], [ 9.305271, 41.625823 ], [ 9.305314, 41.615532 ], [ 9.286701, 41.60577 ], [ 9.283775, 41.595518 ], [ 9.286961, 41.589021 ], [ 9.294481, 41.584814 ], [ 9.298835, 41.586039 ], [ 9.320078, 41.60405 ], [ 9.333619, 41.602162 ], [ 9.34324, 41.59472 ], [ 9.356662, 41.596003 ], [ 9.361264, 41.596049 ], [ 9.367819, 41.593282 ], [ 9.351345, 41.577 ], [ 9.347986, 41.563808 ], [ 9.336623, 41.559062 ], [ 9.33212, 41.559686 ], [ 9.298422, 41.541707 ], [ 9.287077, 41.531065 ], [ 9.27429, 41.52805 ], [ 9.283002, 41.51662 ], [ 9.271516, 41.501857 ], [ 9.276703, 41.496304 ], [ 9.284676, 41.49975 ], [ 9.28651, 41.496707 ], [ 9.287259, 41.48379 ], [ 9.282937, 41.477484 ], [ 9.272049, 41.471138 ], [ 9.271555, 41.464763 ], [ 9.262851, 41.46251 ], [ 9.243115, 41.447701 ], [ 9.225862, 41.44253 ], [ 9.2246, 41.43279 ], [ 9.227671, 41.42637 ], [ 9.224478, 41.41624 ], [ 9.216085, 41.41412 ], [ 9.216774, 41.410876 ], [ 9.218589, 41.407427 ], [ 9.222895, 41.406279 ], [ 9.258989, 41.427417 ], [ 9.263385, 41.426434 ], [ 9.263234, 41.422966 ], [ 9.258217, 41.413296 ], [ 9.25074, 41.409321 ], [ 9.244524, 41.40016 ], [ 9.240734, 41.398129 ], [ 9.223104, 41.377944 ], [ 9.219627, 41.368038 ], [ 9.182812, 41.365997 ], [ 9.16978, 41.383335 ], [ 9.152261, 41.386186 ], [ 9.15566, 41.388643 ], [ 9.139983, 41.39014 ], [ 9.125563, 41.397441 ], [ 9.099378, 41.39283 ], [ 9.091646, 41.400096 ], [ 9.092722, 41.403474 ], [ 9.097376, 41.41327 ], [ 9.106897, 41.42035 ], [ 9.106884, 41.427196 ], [ 9.118701, 41.437708 ], [ 9.11301, 41.441589 ], [ 9.099503, 41.443376 ], [ 9.095534, 41.449469 ], [ 9.080824, 41.442 ], [ 9.072386, 41.44421 ], [ 9.067328, 41.449747 ], [ 9.068437, 41.463037 ], [ 9.077882, 41.474476 ], [ 9.079939, 41.47749 ], [ 9.071007, 41.475982 ], [ 9.055779, 41.462995 ], [ 9.047583, 41.45999 ], [ 9.043022, 41.45999 ], [ 9.03507, 41.46783 ], [ 9.022137, 41.46627 ], [ 9.015584, 41.474946 ], [ 9.002337, 41.47644 ], [ 8.998816, 41.47868 ], [ 8.997088, 41.483615 ], [ 8.994792, 41.485538 ], [ 8.983071, 41.475357 ], [ 8.974871, 41.48333 ], [ 8.966356, 41.48546 ], [ 8.96214, 41.49105 ], [ 8.945062, 41.489847 ], [ 8.940488, 41.490089 ], [ 8.936675, 41.492079 ], [ 8.924253, 41.491323 ], [ 8.91346, 41.506177 ], [ 8.886087, 41.50795 ], [ 8.885119, 41.517982 ], [ 8.878203, 41.52254 ], [ 8.856037, 41.51877 ], [ 8.846536, 41.518159 ], [ 8.842171, 41.52322 ], [ 8.85237, 41.535131 ], [ 8.851584, 41.54222 ], [ 8.840386, 41.545694 ], [ 8.821499, 41.54632 ], [ 8.812014, 41.553851 ], [ 8.808372, 41.555944 ], [ 8.794641, 41.556496 ], [ 8.787374, 41.560273 ], [ 8.789404, 41.566194 ], [ 8.799291, 41.57313 ], [ 8.790251, 41.585029 ], [ 8.781873, 41.58766 ], [ 8.779149, 41.590467 ], [ 8.789267, 41.605495 ], [ 8.792686, 41.629142 ], [ 8.800028, 41.632906 ], [ 8.804489, 41.63849 ], [ 8.817864, 41.63107 ], [ 8.852231, 41.647112 ], [ 8.865757, 41.648033 ], [ 8.869503, 41.646095 ], [ 8.8761, 41.65074 ], [ 8.883196, 41.670527 ], [ 8.912007, 41.67961 ], [ 8.915783, 41.681568 ], [ 8.912302, 41.690968 ], [ 8.889315, 41.689628 ], [ 8.878116, 41.695172 ], [ 8.84219, 41.69762 ], [ 8.828976, 41.70716 ], [ 8.825423, 41.709389 ], [ 8.812779, 41.713537 ], [ 8.786075, 41.703374 ], [ 8.773258, 41.716704 ], [ 8.783939, 41.73189 ], [ 8.784015, 41.73536 ], [ 8.777758, 41.740349 ], [ 8.768761, 41.74068 ], [ 8.714522, 41.722558 ], [ 8.709893, 41.722288 ], [ 8.705529, 41.72352 ], [ 8.706298, 41.733721 ], [ 8.702504, 41.739627 ], [ 8.670291, 41.74272 ], [ 8.661252, 41.740998 ], [ 8.65924, 41.744213 ], [ 8.66307, 41.7503 ], [ 8.671986, 41.752361 ], [ 8.684422, 41.74787 ], [ 8.708499, 41.757862 ], [ 8.712106, 41.76009 ], [ 8.730464, 41.779696 ], [ 8.723744, 41.78868 ], [ 8.713017, 41.795215 ], [ 8.712638, 41.801242 ], [ 8.734522, 41.798054 ], [ 8.753967, 41.811701 ], [ 8.757335, 41.809328 ], [ 8.771294, 41.81124 ], [ 8.779907, 41.833041 ], [ 8.756213, 41.84544 ], [ 8.787239, 41.84994 ], [ 8.789592, 41.853054 ], [ 8.790674, 41.85609 ], [ 8.788534, 41.86828 ], [ 8.782124, 41.87295 ], [ 8.780459, 41.88227 ], [ 8.800192, 41.88964 ], [ 8.802448, 41.896015 ], [ 8.799274, 41.902225 ], [ 8.797666, 41.90537 ], [ 8.778898, 41.9252 ], [ 8.769819, 41.926602 ], [ 8.761164, 41.924309 ], [ 8.75235, 41.932492 ], [ 8.747681, 41.93298 ], [ 8.74089, 41.928657 ], [ 8.739453, 41.91825 ], [ 8.719683, 41.909146 ], [ 8.673406, 41.90528 ], [ 8.641075, 41.909468 ], [ 8.636808, 41.907976 ], [ 8.609261, 41.895592 ], [ 8.612876, 41.901911 ], [ 8.611022, 41.912061 ], [ 8.620701, 41.927685 ], [ 8.621954, 41.937778 ], [ 8.618496, 41.940088 ], [ 8.609461, 41.93984 ], [ 8.593911, 41.963567 ], [ 8.618387, 41.97105 ], [ 8.622871, 41.970487 ], [ 8.644462, 41.967948 ], [ 8.662883, 41.97676 ], [ 8.668423, 41.98214 ], [ 8.669048, 41.984745 ], [ 8.669042, 41.99019 ], [ 8.667411, 41.993066 ], [ 8.659055, 41.992559 ], [ 8.654614, 42.001246 ], [ 8.656559, 42.004015 ], [ 8.658264, 42.010562 ], [ 8.688571, 42.02669 ], [ 8.706992, 42.027769 ], [ 8.719993, 42.032247 ], [ 8.725381, 42.04154 ], [ 8.742971, 42.04308 ], [ 8.746189, 42.04954 ], [ 8.743853, 42.0563 ], [ 8.743931, 42.059452 ], [ 8.740537, 42.06172 ], [ 8.733688, 42.06536 ], [ 8.720526, 42.064162 ], [ 8.717195, 42.077387 ], [ 8.71327, 42.083409 ], [ 8.705993, 42.0868 ], [ 8.70926, 42.096518 ], [ 8.700924, 42.107841 ], [ 8.701201, 42.11119 ], [ 8.689081, 42.113847 ], [ 8.679867, 42.10677 ], [ 8.662682, 42.10383 ], [ 8.650968, 42.116987 ], [ 8.64438, 42.1212 ], [ 8.635584, 42.12008 ], [ 8.633143, 42.12302 ], [ 8.623971, 42.123776 ], [ 8.611144, 42.133393 ], [ 8.584059, 42.130608 ], [ 8.5923, 42.142668 ], [ 8.585238, 42.15088 ], [ 8.576325, 42.152627 ], [ 8.56408, 42.147722 ], [ 8.560186, 42.14584 ], [ 8.562846, 42.152065 ], [ 8.579598, 42.15763 ], [ 8.591733, 42.167706 ], [ 8.584167, 42.171033 ], [ 8.566028, 42.17029 ], [ 8.564966, 42.176331 ], [ 8.582969, 42.178933 ], [ 8.586424, 42.18125 ], [ 8.584858, 42.182744 ], [ 8.582377, 42.183271 ], [ 8.578621, 42.19294 ], [ 8.5804, 42.202969 ], [ 8.570208, 42.20881 ], [ 8.573701, 42.215096 ], [ 8.570492, 42.22136 ], [ 8.572773, 42.227767 ], [ 8.57003, 42.230533 ], [ 8.560865, 42.231167 ], [ 8.552525, 42.228099 ], [ 8.545466, 42.232531 ], [ 8.54506, 42.238625 ], [ 8.563363, 42.23781 ], [ 8.606866, 42.250242 ], [ 8.608807, 42.25342 ], [ 8.635878, 42.252939 ], [ 8.643457, 42.256951 ], [ 8.6843, 42.26288 ], [ 8.688917, 42.263453 ], [ 8.691251, 42.26612 ], [ 8.690553, 42.27492 ], [ 8.691003, 42.27755 ], [ 8.687189, 42.282008 ], [ 8.682676, 42.28202 ], [ 8.675395, 42.284766 ], [ 8.672397, 42.29427 ], [ 8.660499, 42.299 ], [ 8.660471, 42.302349 ], [ 8.639531, 42.30108 ], [ 8.636827, 42.303616 ], [ 8.62767, 42.31076 ], [ 8.60944, 42.30801 ], [ 8.602213, 42.31152 ], [ 8.600082, 42.3183 ], [ 8.623362, 42.32973 ], [ 8.626292, 42.33645 ], [ 8.615678, 42.347464 ], [ 8.602747, 42.351453 ], [ 8.598413, 42.35288 ], [ 8.589438, 42.3515 ], [ 8.565776, 42.33505 ], [ 8.556929, 42.335118 ], [ 8.552554, 42.36489 ], [ 8.548586, 42.366729 ], [ 8.544337, 42.367923 ], [ 8.546088, 42.37446 ], [ 8.550006, 42.375926 ], [ 8.556867, 42.37153 ], [ 8.570213, 42.371319 ], [ 8.57725, 42.375528 ], [ 8.573411, 42.38141 ], [ 8.577985, 42.380562 ], [ 8.601111, 42.370128 ], [ 8.614264, 42.37385 ], [ 8.637097, 42.37283 ], [ 8.658591, 42.360101 ], [ 8.681455, 42.358196 ], [ 8.68348, 42.348031 ], [ 8.687893, 42.34882 ], [ 8.71445, 42.348452 ], [ 8.724757, 42.342175 ], [ 8.728569, 42.340176 ], [ 8.756264, 42.338445 ], [ 8.771169, 42.325407 ], [ 8.775858, 42.32517 ], [ 8.789827, 42.32569 ], [ 8.820246, 42.31711 ], [ 8.857166, 42.330983 ], [ 8.861452, 42.32964 ], [ 8.860741, 42.299152 ], [ 8.877006, 42.292963 ], [ 8.88513, 42.284907 ], [ 8.88282, 42.27508 ], [ 8.881945, 42.271691 ], [ 8.901546, 42.256445 ], [ 8.904768, 42.25387 ], [ 8.909395, 42.254521 ], [ 8.923217, 42.256607 ], [ 8.926624, 42.254191 ], [ 8.928923, 42.25125 ], [ 8.935556, 42.246806 ], [ 8.940115, 42.23721 ], [ 8.947593, 42.2337 ], [ 8.974011, 42.232444 ], [ 8.977408, 42.226755 ], [ 8.979794, 42.223989 ], [ 8.984029, 42.22461 ], [ 8.994525, 42.214496 ], [ 9.005959, 42.211902 ], [ 9.006493, 42.20872 ], [ 9.011125, 42.20837 ], [ 9.023252, 42.203576 ], [ 9.045743, 42.20773 ], [ 9.047977, 42.195904 ], [ 9.048986, 42.192998 ], [ 9.04895, 42.178679 ], [ 9.048123, 42.17571 ], [ 9.052274, 42.16967 ], [ 9.065062, 42.165879 ], [ 9.076168, 42.13615 ], [ 9.072032, 42.130006 ], [ 9.083633, 42.124771 ], [ 9.092096, 42.11673 ], [ 9.105495, 42.115671 ], [ 9.123646, 42.105403 ], [ 9.127745, 42.095747 ], [ 9.133688, 42.090554 ], [ 9.13055, 42.061789 ], [ 9.133566, 42.059397 ], [ 9.131797, 42.05287 ], [ 9.151575, 42.03897 ], [ 9.157677, 42.029724 ], [ 9.159622, 42.026592 ], [ 9.185928, 42.03065 ], [ 9.216496, 42.027759 ], [ 9.221085, 42.027606 ], [ 9.220737, 42.024319 ], [ 9.215612, 41.99495 ], [ 9.220243, 41.98962 ], [ 9.218995, 41.986398 ], [ 9.221897, 41.97352 ], [ 9.226045, 41.97221 ], [ 9.222672, 41.94947 ], [ 9.216813, 41.94063 ], [ 9.226439, 41.933843 ], [ 9.230643, 41.93263 ], [ 9.216597, 41.919734 ], [ 9.21328, 41.91746 ], [ 9.216501, 41.914946 ], [ 9.234749, 41.914995 ], [ 9.249417, 41.906675 ], [ 9.250098, 41.896496 ], [ 9.237199, 41.881995 ], [ 9.236107, 41.875436 ], [ 9.229796, 41.858634 ], [ 9.227497, 41.855589 ], [ 9.230964, 41.853267 ], [ 9.236082, 41.847765 ], [ 9.245264, 41.84877 ], [ 9.270567, 41.840564 ], [ 9.283692, 41.844089 ], [ 9.302048, 41.843426 ], [ 9.308599, 41.838879 ], [ 9.309095, 41.83214 ], [ 9.327056, 41.835808 ], [ 9.372932, 41.864775 ], [ 9.386719, 41.866392 ], [ 9.397891, 41.860019 ], [ 9.402269, 41.858707 ] ] ], [ [ [ 9.262569, 41.36307 ], [ 9.253598, 41.3697 ], [ 9.259125, 41.37258 ], [ 9.265988, 41.372241 ], [ 9.268173, 41.369273 ], [ 9.272667, 41.369148 ], [ 9.272825, 41.36601 ], [ 9.271029, 41.36496 ], [ 9.266923, 41.365476 ], [ 9.26659, 41.363794 ], [ 9.262569, 41.36307 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "30", "CODE_DEPT": "2B", "NOM_DEPT": "HAUTE-CORSE", "CODE_CHF": "033", "NOM_CHF": "BASTIA", "X_CHF_LIEU": "12285", "Y_CHF_LIEU": "61994", "X_CENTROID": "12112", "Y_CENTROID": "61638", "CODE_REG": "94", "NOM_REGION": "CORSE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.402269, 41.858707 ], [ 9.397891, 41.860019 ], [ 9.386719, 41.866392 ], [ 9.372932, 41.864775 ], [ 9.327056, 41.835808 ], [ 9.309095, 41.83214 ], [ 9.308599, 41.838879 ], [ 9.302048, 41.843426 ], [ 9.283692, 41.844089 ], [ 9.270567, 41.840564 ], [ 9.245264, 41.84877 ], [ 9.236082, 41.847765 ], [ 9.230964, 41.853267 ], [ 9.227497, 41.855589 ], [ 9.229796, 41.858634 ], [ 9.236107, 41.875436 ], [ 9.237199, 41.881995 ], [ 9.250098, 41.896496 ], [ 9.249417, 41.906675 ], [ 9.234749, 41.914995 ], [ 9.216501, 41.914946 ], [ 9.21328, 41.91746 ], [ 9.216597, 41.919734 ], [ 9.230643, 41.93263 ], [ 9.226439, 41.933843 ], [ 9.216813, 41.94063 ], [ 9.222672, 41.94947 ], [ 9.226045, 41.97221 ], [ 9.221897, 41.97352 ], [ 9.218995, 41.986398 ], [ 9.220243, 41.98962 ], [ 9.215612, 41.99495 ], [ 9.220737, 42.024319 ], [ 9.221085, 42.027606 ], [ 9.216496, 42.027759 ], [ 9.185928, 42.03065 ], [ 9.159622, 42.026592 ], [ 9.157677, 42.029724 ], [ 9.151575, 42.03897 ], [ 9.131797, 42.05287 ], [ 9.133566, 42.059397 ], [ 9.13055, 42.061789 ], [ 9.133688, 42.090554 ], [ 9.127745, 42.095747 ], [ 9.123646, 42.105403 ], [ 9.105495, 42.115671 ], [ 9.092096, 42.11673 ], [ 9.083633, 42.124771 ], [ 9.072032, 42.130006 ], [ 9.076168, 42.13615 ], [ 9.065062, 42.165879 ], [ 9.052274, 42.16967 ], [ 9.048123, 42.17571 ], [ 9.04895, 42.178679 ], [ 9.048986, 42.192998 ], [ 9.047977, 42.195904 ], [ 9.045743, 42.20773 ], [ 9.023252, 42.203576 ], [ 9.011125, 42.20837 ], [ 9.006493, 42.20872 ], [ 9.005959, 42.211902 ], [ 8.994525, 42.214496 ], [ 8.984029, 42.22461 ], [ 8.979794, 42.223989 ], [ 8.977408, 42.226755 ], [ 8.974011, 42.232444 ], [ 8.947593, 42.2337 ], [ 8.940115, 42.23721 ], [ 8.935556, 42.246806 ], [ 8.928923, 42.25125 ], [ 8.926624, 42.254191 ], [ 8.923217, 42.256607 ], [ 8.909395, 42.254521 ], [ 8.904768, 42.25387 ], [ 8.901546, 42.256445 ], [ 8.881945, 42.271691 ], [ 8.88282, 42.27508 ], [ 8.88513, 42.284907 ], [ 8.877006, 42.292963 ], [ 8.860741, 42.299152 ], [ 8.861452, 42.32964 ], [ 8.857166, 42.330983 ], [ 8.820246, 42.31711 ], [ 8.789827, 42.32569 ], [ 8.775858, 42.32517 ], [ 8.771169, 42.325407 ], [ 8.756264, 42.338445 ], [ 8.728569, 42.340176 ], [ 8.724757, 42.342175 ], [ 8.71445, 42.348452 ], [ 8.687893, 42.34882 ], [ 8.68348, 42.348031 ], [ 8.681455, 42.358196 ], [ 8.658591, 42.360101 ], [ 8.637097, 42.37283 ], [ 8.614264, 42.37385 ], [ 8.601111, 42.370128 ], [ 8.577985, 42.380562 ], [ 8.573411, 42.38141 ], [ 8.595273, 42.382898 ], [ 8.607186, 42.38799 ], [ 8.603886, 42.39782 ], [ 8.607768, 42.40406 ], [ 8.607324, 42.414126 ], [ 8.623291, 42.42044 ], [ 8.632545, 42.41979 ], [ 8.6368, 42.418389 ], [ 8.648883, 42.413928 ], [ 8.656552, 42.417639 ], [ 8.661808, 42.430588 ], [ 8.65121, 42.44137 ], [ 8.667063, 42.44713 ], [ 8.667134, 42.45726 ], [ 8.675359, 42.46563 ], [ 8.679452, 42.46728 ], [ 8.672783, 42.475695 ], [ 8.650443, 42.47707 ], [ 8.664905, 42.49574 ], [ 8.666982, 42.51336 ], [ 8.674092, 42.517326 ], [ 8.68841, 42.517977 ], [ 8.699096, 42.524968 ], [ 8.717823, 42.52545 ], [ 8.717444, 42.52892 ], [ 8.713371, 42.535353 ], [ 8.720072, 42.55583 ], [ 8.711851, 42.572578 ], [ 8.712641, 42.575916 ], [ 8.71577, 42.578597 ], [ 8.723724, 42.5801 ], [ 8.727004, 42.566204 ], [ 8.734129, 42.56376 ], [ 8.737694, 42.566162 ], [ 8.759772, 42.569064 ], [ 8.757775, 42.562312 ], [ 8.768273, 42.556147 ], [ 8.782195, 42.55686 ], [ 8.794045, 42.562123 ], [ 8.796519, 42.56505 ], [ 8.803186, 42.569919 ], [ 8.801673, 42.58338 ], [ 8.809426, 42.592016 ], [ 8.805765, 42.601915 ], [ 8.823567, 42.605443 ], [ 8.831854, 42.602169 ], [ 8.843012, 42.608175 ], [ 8.847486, 42.609219 ], [ 8.850832, 42.611298 ], [ 8.863094, 42.608958 ], [ 8.867395, 42.608406 ], [ 8.875234, 42.6151 ], [ 8.882571, 42.6273 ], [ 8.910273, 42.62948 ], [ 8.919373, 42.637567 ], [ 8.924094, 42.637999 ], [ 8.935425, 42.64074 ], [ 8.944229, 42.63428 ], [ 8.948379, 42.63355 ], [ 8.97558, 42.638853 ], [ 8.980307, 42.639337 ], [ 8.988368, 42.64113 ], [ 9.000254, 42.641752 ], [ 9.00311, 42.64398 ], [ 9.009864, 42.64044 ], [ 9.017582, 42.64256 ], [ 9.029908, 42.652723 ], [ 9.047827, 42.656001 ], [ 9.05885, 42.66214 ], [ 9.055401, 42.678881 ], [ 9.058129, 42.692397 ], [ 9.062212, 42.693924 ], [ 9.066723, 42.692757 ], [ 9.074557, 42.69601 ], [ 9.082795, 42.70464 ], [ 9.086233, 42.71459 ], [ 9.100417, 42.71562 ], [ 9.107897, 42.72453 ], [ 9.12463, 42.730576 ], [ 9.134116, 42.72982 ], [ 9.161563, 42.735894 ], [ 9.197116, 42.72544 ], [ 9.210041, 42.729742 ], [ 9.212789, 42.732559 ], [ 9.22176, 42.73419 ], [ 9.232009, 42.72298 ], [ 9.234004, 42.719914 ], [ 9.238745, 42.71998 ], [ 9.24808, 42.719886 ], [ 9.255888, 42.715939 ], [ 9.256554, 42.705545 ], [ 9.270595, 42.696947 ], [ 9.28695, 42.675864 ], [ 9.295987, 42.676125 ], [ 9.321143, 42.69602 ], [ 9.324862, 42.717723 ], [ 9.329005, 42.71881 ], [ 9.332543, 42.72119 ], [ 9.342756, 42.732827 ], [ 9.343822, 42.739682 ], [ 9.345461, 42.74258 ], [ 9.339857, 42.760647 ], [ 9.338441, 42.763933 ], [ 9.342646, 42.790764 ], [ 9.337935, 42.803934 ], [ 9.330329, 42.81136 ], [ 9.3263, 42.81227 ], [ 9.312045, 42.83396 ], [ 9.335889, 42.86451 ], [ 9.340296, 42.86567 ], [ 9.328267, 42.876026 ], [ 9.328078, 42.886538 ], [ 9.32168, 42.895811 ], [ 9.326389, 42.90118 ], [ 9.351448, 42.91529 ], [ 9.359476, 42.922887 ], [ 9.350609, 42.930693 ], [ 9.357863, 42.94353 ], [ 9.347102, 42.954701 ], [ 9.349903, 42.96087 ], [ 9.347027, 42.96343 ], [ 9.349875, 42.969677 ], [ 9.343578, 42.978359 ], [ 9.343577, 42.99774 ], [ 9.357601, 43.00622 ], [ 9.371358, 43.00522 ], [ 9.383896, 43.00921 ], [ 9.400951, 43.007669 ], [ 9.404635, 43.005636 ], [ 9.409434, 43.005782 ], [ 9.416827, 43.009807 ], [ 9.42574, 43.00913 ], [ 9.460567, 42.985852 ], [ 9.451916, 42.963065 ], [ 9.455224, 42.956478 ], [ 9.456432, 42.95333 ], [ 9.469239, 42.93647 ], [ 9.466182, 42.93372 ], [ 9.470928, 42.92048 ], [ 9.469755, 42.906137 ], [ 9.474493, 42.900103 ], [ 9.475256, 42.88453 ], [ 9.477581, 42.88184 ], [ 9.476916, 42.878528 ], [ 9.480015, 42.860159 ], [ 9.4841, 42.85381 ], [ 9.481716, 42.83644 ], [ 9.487022, 42.826884 ], [ 9.487114, 42.82354 ], [ 9.491458, 42.797526 ], [ 9.469851, 42.76647 ], [ 9.468417, 42.752838 ], [ 9.462914, 42.74343 ], [ 9.461327, 42.74017 ], [ 9.45645, 42.720741 ], [ 9.456258, 42.717586 ], [ 9.456045, 42.71457 ], [ 9.454509, 42.70812 ], [ 9.45487, 42.701459 ], [ 9.446972, 42.685834 ], [ 9.44806, 42.665543 ], [ 9.449197, 42.662245 ], [ 9.450927, 42.659001 ], [ 9.462639, 42.64 ], [ 9.482955, 42.61619 ], [ 9.485803, 42.61336 ], [ 9.515923, 42.58339 ], [ 9.526146, 42.568197 ], [ 9.527541, 42.56496 ], [ 9.534093, 42.526342 ], [ 9.534758, 42.52281 ], [ 9.529569, 42.49903 ], [ 9.529585, 42.49558 ], [ 9.530468, 42.48638 ], [ 9.531423, 42.483371 ], [ 9.53492, 42.473694 ], [ 9.536057, 42.470468 ], [ 9.541639, 42.457993 ], [ 9.540881, 42.44492 ], [ 9.540876, 42.44162 ], [ 9.542202, 42.431296 ], [ 9.543386, 42.427949 ], [ 9.539184, 42.41523 ], [ 9.538228, 42.412013 ], [ 9.53572, 42.39701 ], [ 9.535249, 42.393996 ], [ 9.532308, 42.38205 ], [ 9.532625, 42.37902 ], [ 9.534738, 42.362244 ], [ 9.535137, 42.358856 ], [ 9.53559, 42.355725 ], [ 9.540421, 42.337291 ], [ 9.541532, 42.331469 ], [ 9.542538, 42.32862 ], [ 9.552585, 42.30256 ], [ 9.553671, 42.299236 ], [ 9.55983, 42.28267 ], [ 9.555494, 42.25546 ], [ 9.555098, 42.252028 ], [ 9.55322, 42.24144 ], [ 9.553137, 42.2201 ], [ 9.558744, 42.195748 ], [ 9.554432, 42.160352 ], [ 9.554385, 42.156793 ], [ 9.554876, 42.145356 ], [ 9.556247, 42.142665 ], [ 9.549284, 42.10386 ], [ 9.499644, 42.051416 ], [ 9.496981, 42.048451 ], [ 9.494771, 42.04542 ], [ 9.457181, 42.002201 ], [ 9.441409, 41.98962 ], [ 9.439854, 41.98768 ], [ 9.415285, 41.958404 ], [ 9.411856, 41.941459 ], [ 9.412962, 41.938093 ], [ 9.414772, 41.935099 ], [ 9.416116, 41.928609 ], [ 9.408977, 41.90662 ], [ 9.402379, 41.897762 ], [ 9.397681, 41.87784 ], [ 9.399537, 41.861406 ], [ 9.402269, 41.858707 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "31", "CODE_DEPT": "30", "NOM_DEPT": "GARD", "CODE_CHF": "189", "NOM_CHF": "NIMES", "X_CHF_LIEU": "8093", "Y_CHF_LIEU": "63051", "X_CENTROID": "7946", "Y_CENTROID": "63223", "CODE_REG": "91", "NOM_REGION": "LANGUEDOC-ROUSSILLON" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.230283, 43.460185 ], [ 4.164626, 43.472158 ], [ 4.131594, 43.486202 ], [ 4.120925, 43.498019 ], [ 4.118143, 43.50814 ], [ 4.124355, 43.52109 ], [ 4.13334, 43.523373 ], [ 4.13825, 43.52903 ], [ 4.126266, 43.544115 ], [ 4.10553, 43.55293 ], [ 4.101042, 43.554371 ], [ 4.10274, 43.557143 ], [ 4.108712, 43.56844 ], [ 4.106343, 43.571378 ], [ 4.083496, 43.588354 ], [ 4.074673, 43.58859 ], [ 4.075126, 43.58899 ], [ 4.079447, 43.590302 ], [ 4.088261, 43.59093 ], [ 4.099889, 43.585274 ], [ 4.122875, 43.588359 ], [ 4.150216, 43.58556 ], [ 4.149622, 43.596115 ], [ 4.170054, 43.61081 ], [ 4.192906, 43.641866 ], [ 4.193818, 43.65175 ], [ 4.163626, 43.69014 ], [ 4.164313, 43.69283 ], [ 4.164613, 43.696 ], [ 4.162321, 43.70776 ], [ 4.153883, 43.71501 ], [ 4.15158, 43.71774 ], [ 4.145038, 43.732444 ], [ 4.143857, 43.735489 ], [ 4.133483, 43.74062 ], [ 4.122517, 43.737124 ], [ 4.114162, 43.73767 ], [ 4.111703, 43.74018 ], [ 4.103785, 43.74861 ], [ 4.099236, 43.749592 ], [ 4.095561, 43.75153 ], [ 4.091102, 43.76379 ], [ 4.083862, 43.767709 ], [ 4.067248, 43.764498 ], [ 4.064929, 43.767319 ], [ 4.059831, 43.77232 ], [ 4.051757, 43.774269 ], [ 4.051987, 43.778 ], [ 4.053123, 43.785046 ], [ 4.049778, 43.78757 ], [ 4.031522, 43.79893 ], [ 4.02865, 43.80156 ], [ 4.001341, 43.81305 ], [ 3.998455, 43.81149 ], [ 3.995606, 43.80989 ], [ 3.978808, 43.80287 ], [ 3.974348, 43.801474 ], [ 3.963614, 43.80451 ], [ 3.960123, 43.806046 ], [ 3.962087, 43.816405 ], [ 3.974203, 43.82721 ], [ 3.973738, 43.837118 ], [ 3.979528, 43.84268 ], [ 3.95814, 43.844132 ], [ 3.957748, 43.85043 ], [ 3.958993, 43.85351 ], [ 3.942114, 43.853379 ], [ 3.937902, 43.853577 ], [ 3.933721, 43.85425 ], [ 3.923111, 43.858788 ], [ 3.91773, 43.86833 ], [ 3.918219, 43.878665 ], [ 3.919554, 43.88197 ], [ 3.914357, 43.88765 ], [ 3.900092, 43.87873 ], [ 3.857116, 43.876165 ], [ 3.847961, 43.868749 ], [ 3.834475, 43.868664 ], [ 3.830809, 43.86642 ], [ 3.827923, 43.868948 ], [ 3.822361, 43.874084 ], [ 3.805468, 43.87859 ], [ 3.799542, 43.89082 ], [ 3.82249, 43.914978 ], [ 3.824003, 43.918054 ], [ 3.828287, 43.92406 ], [ 3.823284, 43.939785 ], [ 3.820307, 43.942408 ], [ 3.795518, 43.942277 ], [ 3.787083, 43.95384 ], [ 3.786956, 43.96361 ], [ 3.787337, 43.96687 ], [ 3.731136, 43.970681 ], [ 3.717269, 43.96098 ], [ 3.699443, 43.95823 ], [ 3.684487, 43.95166 ], [ 3.689503, 43.939937 ], [ 3.686397, 43.939498 ], [ 3.683658, 43.94063 ], [ 3.676573, 43.9324 ], [ 3.678652, 43.9261 ], [ 3.67342, 43.91326 ], [ 3.66699, 43.91057 ], [ 3.662454, 43.91127 ], [ 3.644609, 43.913 ], [ 3.645286, 43.90239 ], [ 3.638102, 43.898868 ], [ 3.637759, 43.91491 ], [ 3.623589, 43.916979 ], [ 3.621068, 43.91414 ], [ 3.602208, 43.89539 ], [ 3.600522, 43.88893 ], [ 3.582958, 43.87743 ], [ 3.577363, 43.867888 ], [ 3.583258, 43.85928 ], [ 3.599871, 43.852972 ], [ 3.599475, 43.849635 ], [ 3.581794, 43.846185 ], [ 3.578908, 43.843563 ], [ 3.57437, 43.84491 ], [ 3.561603, 43.855326 ], [ 3.548734, 43.85169 ], [ 3.527026, 43.859035 ], [ 3.521645, 43.86495 ], [ 3.523528, 43.88579 ], [ 3.520677, 43.888422 ], [ 3.507184, 43.896378 ], [ 3.496146, 43.89078 ], [ 3.491584, 43.89129 ], [ 3.482082, 43.890453 ], [ 3.460847, 43.87138 ], [ 3.447119, 43.868868 ], [ 3.435182, 43.86296 ], [ 3.430814, 43.864425 ], [ 3.421606, 43.87232 ], [ 3.431008, 43.87366 ], [ 3.43703, 43.886782 ], [ 3.435778, 43.900367 ], [ 3.423923, 43.91131 ], [ 3.401726, 43.91473 ], [ 3.394416, 43.910775 ], [ 3.381306, 43.91239 ], [ 3.370004, 43.916521 ], [ 3.359876, 43.91153 ], [ 3.358663, 43.91452 ], [ 3.352274, 43.93431 ], [ 3.351722, 43.937721 ], [ 3.353982, 43.940756 ], [ 3.359211, 43.95027 ], [ 3.375884, 43.956729 ], [ 3.377571, 43.96695 ], [ 3.405615, 43.969682 ], [ 3.406388, 43.97317 ], [ 3.418529, 43.992295 ], [ 3.443552, 44.00234 ], [ 3.450981, 44.022541 ], [ 3.449727, 44.023276 ], [ 3.444774, 44.024718 ], [ 3.440799, 44.02678 ], [ 3.417944, 44.040016 ], [ 3.399699, 44.044845 ], [ 3.386492, 44.055081 ], [ 3.372685, 44.05247 ], [ 3.367643, 44.058215 ], [ 3.351731, 44.05026 ], [ 3.347875, 44.052402 ], [ 3.344557, 44.054636 ], [ 3.337492, 44.05874 ], [ 3.332517, 44.074501 ], [ 3.32891, 44.07903 ], [ 3.325456, 44.077483 ], [ 3.323059, 44.07985 ], [ 3.318423, 44.07902 ], [ 3.305423, 44.06919 ], [ 3.295925, 44.06954 ], [ 3.27474, 44.087541 ], [ 3.263376, 44.092726 ], [ 3.291562, 44.10483 ], [ 3.310698, 44.104941 ], [ 3.319087, 44.108373 ], [ 3.323849, 44.10892 ], [ 3.323929, 44.11194 ], [ 3.32359, 44.127009 ], [ 3.320354, 44.13595 ], [ 3.330226, 44.142165 ], [ 3.332488, 44.14864 ], [ 3.336682, 44.15813 ], [ 3.373648, 44.170765 ], [ 3.392517, 44.16869 ], [ 3.396939, 44.162699 ], [ 3.428468, 44.148665 ], [ 3.435184, 44.132762 ], [ 3.438628, 44.130372 ], [ 3.443052, 44.12885 ], [ 3.481027, 44.12425 ], [ 3.50516, 44.1262 ], [ 3.509926, 44.12538 ], [ 3.533113, 44.12086 ], [ 3.544309, 44.11437 ], [ 3.565196, 44.123051 ], [ 3.569987, 44.122324 ], [ 3.574615, 44.121508 ], [ 3.606167, 44.115901 ], [ 3.632838, 44.12122 ], [ 3.63585, 44.138127 ], [ 3.647169, 44.14429 ], [ 3.645569, 44.147539 ], [ 3.632924, 44.152573 ], [ 3.630543, 44.15887 ], [ 3.637706, 44.175434 ], [ 3.644962, 44.179992 ], [ 3.649649, 44.180846 ], [ 3.659917, 44.17429 ], [ 3.667963, 44.177784 ], [ 3.671053, 44.1842 ], [ 3.680307, 44.18295 ], [ 3.685032, 44.182683 ], [ 3.684404, 44.179411 ], [ 3.692424, 44.171376 ], [ 3.707658, 44.164465 ], [ 3.721091, 44.164729 ], [ 3.725624, 44.164249 ], [ 3.73505, 44.15731 ], [ 3.750848, 44.15214 ], [ 3.755264, 44.15141 ], [ 3.759624, 44.15119 ], [ 3.762209, 44.14539 ], [ 3.768909, 44.14262 ], [ 3.773033, 44.141602 ], [ 3.777238, 44.1402 ], [ 3.796995, 44.127389 ], [ 3.810833, 44.128557 ], [ 3.816677, 44.131754 ], [ 3.820249, 44.13245 ], [ 3.828468, 44.136436 ], [ 3.832118, 44.13733 ], [ 3.872731, 44.12867 ], [ 3.894317, 44.14717 ], [ 3.898477, 44.148621 ], [ 3.907391, 44.14785 ], [ 3.910617, 44.150258 ], [ 3.911601, 44.16012 ], [ 3.927275, 44.1613 ], [ 3.923699, 44.18135 ], [ 3.932865, 44.1804 ], [ 3.969452, 44.165047 ], [ 3.974117, 44.16433 ], [ 3.975587, 44.169809 ], [ 3.969842, 44.172461 ], [ 3.96595, 44.171613 ], [ 3.958795, 44.18412 ], [ 3.959222, 44.19088 ], [ 3.938574, 44.19664 ], [ 3.946248, 44.212661 ], [ 3.947255, 44.215983 ], [ 3.950924, 44.21687 ], [ 3.946433, 44.24101 ], [ 3.954741, 44.24958 ], [ 3.966919, 44.249865 ], [ 3.971123, 44.250395 ], [ 3.974753, 44.25972 ], [ 3.969227, 44.264778 ], [ 3.958546, 44.270975 ], [ 3.949688, 44.26943 ], [ 3.946764, 44.266892 ], [ 3.934303, 44.27545 ], [ 3.94003, 44.283873 ], [ 3.939236, 44.287345 ], [ 3.932937, 44.29677 ], [ 3.924943, 44.300825 ], [ 3.922859, 44.305227 ], [ 3.943704, 44.317887 ], [ 3.948083, 44.32706 ], [ 3.948819, 44.32385 ], [ 3.952361, 44.330154 ], [ 3.947017, 44.335359 ], [ 3.937635, 44.33606 ], [ 3.925008, 44.34629 ], [ 3.925013, 44.352713 ], [ 3.911307, 44.37033 ], [ 3.889107, 44.385606 ], [ 3.885817, 44.387973 ], [ 3.888695, 44.392964 ], [ 3.898558, 44.39026 ], [ 3.900416, 44.392617 ], [ 3.901542, 44.395533 ], [ 3.908506, 44.40305 ], [ 3.91645, 44.405052 ], [ 3.948916, 44.402319 ], [ 3.949196, 44.409249 ], [ 3.961269, 44.414662 ], [ 3.971719, 44.426382 ], [ 3.973044, 44.426721 ], [ 3.97269, 44.436798 ], [ 3.97596, 44.44281 ], [ 3.998163, 44.4598 ], [ 4.002603, 44.458515 ], [ 4.015082, 44.45348 ], [ 4.01666, 44.450365 ], [ 4.023876, 44.446301 ], [ 4.037103, 44.445952 ], [ 4.045419, 44.43349 ], [ 4.037813, 44.420918 ], [ 4.054795, 44.41479 ], [ 4.06844, 44.40506 ], [ 4.059453, 44.393911 ], [ 4.042393, 44.39407 ], [ 4.043749, 44.384554 ], [ 4.046711, 44.38246 ], [ 4.05298, 44.3787 ], [ 4.056718, 44.36102 ], [ 4.053677, 44.358794 ], [ 4.05116, 44.34621 ], [ 4.053047, 44.33975 ], [ 4.047919, 44.334444 ], [ 4.035706, 44.329851 ], [ 4.038705, 44.327887 ], [ 4.048059, 44.31895 ], [ 4.051452, 44.317324 ], [ 4.055621, 44.319021 ], [ 4.060144, 44.32017 ], [ 4.073842, 44.329026 ], [ 4.103861, 44.333906 ], [ 4.106628, 44.332356 ], [ 4.10942, 44.330843 ], [ 4.113525, 44.32913 ], [ 4.126752, 44.337734 ], [ 4.141665, 44.323959 ], [ 4.142868, 44.313351 ], [ 4.161701, 44.31215 ], [ 4.173247, 44.317577 ], [ 4.177991, 44.31774 ], [ 4.183913, 44.30232 ], [ 4.186579, 44.299735 ], [ 4.212951, 44.29144 ], [ 4.216384, 44.289039 ], [ 4.230778, 44.277176 ], [ 4.234052, 44.27506 ], [ 4.238182, 44.273095 ], [ 4.245138, 44.26807 ], [ 4.258901, 44.264425 ], [ 4.273773, 44.271752 ], [ 4.286338, 44.289386 ], [ 4.288996, 44.292146 ], [ 4.289584, 44.29542 ], [ 4.288375, 44.315019 ], [ 4.306334, 44.31627 ], [ 4.318098, 44.32175 ], [ 4.329257, 44.33238 ], [ 4.325771, 44.33832 ], [ 4.370171, 44.34014 ], [ 4.38381, 44.344352 ], [ 4.38705, 44.347057 ], [ 4.391868, 44.346573 ], [ 4.402347, 44.335007 ], [ 4.40145, 44.328167 ], [ 4.400063, 44.324818 ], [ 4.391594, 44.304759 ], [ 4.393313, 44.2946 ], [ 4.40357, 44.288177 ], [ 4.431983, 44.28968 ], [ 4.435608, 44.283324 ], [ 4.440422, 44.28342 ], [ 4.450048, 44.295226 ], [ 4.453212, 44.29787 ], [ 4.448757, 44.29671 ], [ 4.450793, 44.330705 ], [ 4.451068, 44.334096 ], [ 4.459866, 44.341596 ], [ 4.464761, 44.341675 ], [ 4.48291, 44.3382 ], [ 4.506097, 44.340252 ], [ 4.512014, 44.3354 ], [ 4.514731, 44.329114 ], [ 4.524167, 44.328768 ], [ 4.531152, 44.3241 ], [ 4.54911, 44.324512 ], [ 4.547749, 44.322874 ], [ 4.545631, 44.319708 ], [ 4.557168, 44.304168 ], [ 4.569998, 44.299349 ], [ 4.574274, 44.30075 ], [ 4.59898, 44.291756 ], [ 4.602332, 44.29192 ], [ 4.605465, 44.29104 ], [ 4.609125, 44.289249 ], [ 4.616625, 44.277993 ], [ 4.620478, 44.279944 ], [ 4.632679, 44.284994 ], [ 4.637028, 44.283669 ], [ 4.641729, 44.2742 ], [ 4.649224, 44.27036 ], [ 4.648551, 44.26747 ], [ 4.651479, 44.259153 ], [ 4.653075, 44.25591 ], [ 4.67736, 44.234975 ], [ 4.672933, 44.2186 ], [ 4.673657, 44.21471 ], [ 4.681893, 44.211741 ], [ 4.699936, 44.216108 ], [ 4.708595, 44.2135 ], [ 4.710297, 44.206836 ], [ 4.70483, 44.201078 ], [ 4.703839, 44.197663 ], [ 4.708316, 44.191724 ], [ 4.717272, 44.18997 ], [ 4.721891, 44.18467 ], [ 4.716251, 44.176043 ], [ 4.717361, 44.169328 ], [ 4.717296, 44.16593 ], [ 4.717117, 44.1625 ], [ 4.71719, 44.159094 ], [ 4.718725, 44.152381 ], [ 4.718133, 44.14068 ], [ 4.705735, 44.1116 ], [ 4.705082, 44.10817 ], [ 4.719627, 44.088781 ], [ 4.71973, 44.085584 ], [ 4.727819, 44.07845 ], [ 4.752939, 44.08798 ], [ 4.757721, 44.087933 ], [ 4.760117, 44.08179 ], [ 4.760035, 44.078344 ], [ 4.762887, 44.07487 ], [ 4.784113, 44.067215 ], [ 4.786807, 44.064353 ], [ 4.78741, 44.054918 ], [ 4.792418, 44.049848 ], [ 4.795865, 44.04791 ], [ 4.799013, 44.04601 ], [ 4.807764, 44.03977 ], [ 4.813646, 44.03404 ], [ 4.82029, 44.01701 ], [ 4.839417, 44.014022 ], [ 4.842997, 44.00399 ], [ 4.843118, 44.00042 ], [ 4.845344, 43.995593 ], [ 4.844996, 43.992142 ], [ 4.840941, 43.98592 ], [ 4.8363, 43.985033 ], [ 4.812967, 43.988006 ], [ 4.810178, 43.977915 ], [ 4.814369, 43.964676 ], [ 4.791981, 43.952271 ], [ 4.778539, 43.93879 ], [ 4.748232, 43.931132 ], [ 4.741431, 43.92664 ], [ 4.738793, 43.923866 ], [ 4.739556, 43.92111 ], [ 4.735506, 43.91651 ], [ 4.723398, 43.906052 ], [ 4.698503, 43.89664 ], [ 4.703196, 43.897035 ], [ 4.7079, 43.89741 ], [ 4.705497, 43.894488 ], [ 4.692706, 43.88459 ], [ 4.66694, 43.87636 ], [ 4.662511, 43.870388 ], [ 4.661583, 43.873589 ], [ 4.64173, 43.8673 ], [ 4.646975, 43.85803 ], [ 4.643675, 43.851852 ], [ 4.661874, 43.85234 ], [ 4.666767, 43.84698 ], [ 4.664997, 43.843842 ], [ 4.652168, 43.839752 ], [ 4.64297, 43.83211 ], [ 4.654449, 43.809007 ], [ 4.652914, 43.787725 ], [ 4.650196, 43.780935 ], [ 4.629507, 43.761121 ], [ 4.628118, 43.757712 ], [ 4.627175, 43.754252 ], [ 4.61194, 43.724724 ], [ 4.613145, 43.71419 ], [ 4.626473, 43.68803 ], [ 4.597812, 43.68675 ], [ 4.578489, 43.69707 ], [ 4.559326, 43.699444 ], [ 4.537599, 43.707052 ], [ 4.524575, 43.702501 ], [ 4.49079, 43.7004 ], [ 4.486421, 43.69885 ], [ 4.476546, 43.6868 ], [ 4.477416, 43.672921 ], [ 4.451605, 43.66423 ], [ 4.42723, 43.625822 ], [ 4.428685, 43.619063 ], [ 4.438799, 43.611406 ], [ 4.448272, 43.61034 ], [ 4.466497, 43.61496 ], [ 4.473776, 43.610442 ], [ 4.473576, 43.603651 ], [ 4.452809, 43.584573 ], [ 4.448317, 43.583184 ], [ 4.443527, 43.58321 ], [ 4.424853, 43.58448 ], [ 4.4094, 43.57628 ], [ 4.41426, 43.567552 ], [ 4.408973, 43.561934 ], [ 4.404608, 43.560523 ], [ 4.390361, 43.56087 ], [ 4.37246, 43.54968 ], [ 4.35391, 43.547408 ], [ 4.332823, 43.535935 ], [ 4.3161, 43.546749 ], [ 4.322314, 43.55171 ], [ 4.318393, 43.557168 ], [ 4.315141, 43.551871 ], [ 4.309193, 43.54657 ], [ 4.320651, 43.527823 ], [ 4.293603, 43.51404 ], [ 4.244686, 43.501268 ], [ 4.240814, 43.499405 ], [ 4.237743, 43.496884 ], [ 4.239777, 43.49373 ], [ 4.231161, 43.47754 ], [ 4.230283, 43.460185 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "32", "CODE_DEPT": "31", "NOM_DEPT": "HAUTE-GARONNE", "CODE_CHF": "555", "NOM_CHF": "TOULOUSE", "X_CHF_LIEU": "5741", "Y_CHF_LIEU": "62796", "X_CENTROID": "5517", "Y_CENTROID": "62527", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.858306, 42.825719 ], [ 0.853758, 42.826744 ], [ 0.835187, 42.828277 ], [ 0.801483, 42.840483 ], [ 0.779279, 42.836148 ], [ 0.739791, 42.848259 ], [ 0.730403, 42.855735 ], [ 0.712922, 42.860293 ], [ 0.708378, 42.8614 ], [ 0.704491, 42.859502 ], [ 0.691821, 42.85523 ], [ 0.677886, 42.85511 ], [ 0.678698, 42.84825 ], [ 0.659217, 42.838678 ], [ 0.659112, 42.835203 ], [ 0.660552, 42.831915 ], [ 0.669588, 42.824537 ], [ 0.664746, 42.81517 ], [ 0.665711, 42.81214 ], [ 0.669986, 42.80363 ], [ 0.660008, 42.7984 ], [ 0.657841, 42.795782 ], [ 0.652294, 42.78765 ], [ 0.65049, 42.785438 ], [ 0.644541, 42.783076 ], [ 0.664194, 42.774772 ], [ 0.641852, 42.75482 ], [ 0.659866, 42.752162 ], [ 0.670131, 42.73265 ], [ 0.676455, 42.727372 ], [ 0.675066, 42.717241 ], [ 0.680501, 42.7076 ], [ 0.67321, 42.69135 ], [ 0.621613, 42.695701 ], [ 0.600493, 42.70339 ], [ 0.59672, 42.70555 ], [ 0.593881, 42.7043 ], [ 0.593069, 42.700937 ], [ 0.587988, 42.695228 ], [ 0.578783, 42.695478 ], [ 0.529614, 42.702684 ], [ 0.526374, 42.702592 ], [ 0.516216, 42.691679 ], [ 0.493291, 42.693096 ], [ 0.482285, 42.69919 ], [ 0.47775, 42.69999 ], [ 0.483742, 42.70892 ], [ 0.451297, 42.733134 ], [ 0.462125, 42.739203 ], [ 0.461558, 42.746044 ], [ 0.460252, 42.749387 ], [ 0.463462, 42.759484 ], [ 0.46214, 42.762638 ], [ 0.455185, 42.77092 ], [ 0.455983, 42.780574 ], [ 0.461998, 42.7894 ], [ 0.463138, 42.790136 ], [ 0.463434, 42.80239 ], [ 0.459851, 42.80498 ], [ 0.457889, 42.80793 ], [ 0.458793, 42.82387 ], [ 0.45921, 42.827199 ], [ 0.464129, 42.839956 ], [ 0.4675, 42.84675 ], [ 0.464761, 42.848158 ], [ 0.460239, 42.851749 ], [ 0.469379, 42.857516 ], [ 0.472676, 42.859303 ], [ 0.472642, 42.862613 ], [ 0.471878, 42.869208 ], [ 0.477357, 42.87824 ], [ 0.481956, 42.877965 ], [ 0.499291, 42.874555 ], [ 0.504028, 42.868782 ], [ 0.508611, 42.869167 ], [ 0.525546, 42.86755 ], [ 0.527716, 42.86485 ], [ 0.53418, 42.861256 ], [ 0.547136, 42.864612 ], [ 0.554041, 42.86009 ], [ 0.558081, 42.861146 ], [ 0.562341, 42.860757 ], [ 0.564129, 42.863325 ], [ 0.575935, 42.870826 ], [ 0.577659, 42.8767 ], [ 0.577041, 42.880091 ], [ 0.579564, 42.882954 ], [ 0.580972, 42.88586 ], [ 0.58566, 42.894347 ], [ 0.586278, 42.89742 ], [ 0.59229, 42.90854 ], [ 0.595495, 42.910069 ], [ 0.597588, 42.918033 ], [ 0.597177, 42.92147 ], [ 0.600187, 42.928015 ], [ 0.604428, 42.931735 ], [ 0.605645, 42.934 ], [ 0.609142, 42.934719 ], [ 0.615362, 42.93681 ], [ 0.618067, 42.93951 ], [ 0.626629, 42.94185 ], [ 0.637432, 42.95262 ], [ 0.641991, 42.952873 ], [ 0.645959, 42.96134 ], [ 0.643533, 42.963748 ], [ 0.636348, 42.96841 ], [ 0.635542, 42.968935 ], [ 0.624127, 42.971841 ], [ 0.620121, 42.97244 ], [ 0.615624, 42.978698 ], [ 0.613894, 42.982025 ], [ 0.615981, 42.98432 ], [ 0.611442, 42.98829 ], [ 0.615095, 42.98915 ], [ 0.625588, 42.991209 ], [ 0.625565, 42.99418 ], [ 0.625023, 43.002317 ], [ 0.622358, 43.004526 ], [ 0.615713, 43.01108 ], [ 0.614458, 43.014167 ], [ 0.616481, 43.020421 ], [ 0.615651, 43.02153 ], [ 0.613138, 43.024476 ], [ 0.608047, 43.034009 ], [ 0.59322, 43.035451 ], [ 0.59411, 43.032322 ], [ 0.592642, 43.026035 ], [ 0.591825, 43.022373 ], [ 0.58878, 43.02277 ], [ 0.585777, 43.023317 ], [ 0.585178, 43.020028 ], [ 0.572103, 43.021282 ], [ 0.564055, 43.018733 ], [ 0.561334, 43.016089 ], [ 0.548181, 43.006712 ], [ 0.545867, 43.003735 ], [ 0.542023, 43.001019 ], [ 0.538173, 43.001606 ], [ 0.52695, 43.008925 ], [ 0.53018, 43.01137 ], [ 0.534755, 43.017112 ], [ 0.53512, 43.037051 ], [ 0.536958, 43.039991 ], [ 0.548393, 43.043995 ], [ 0.562697, 43.036438 ], [ 0.566899, 43.03742 ], [ 0.565503, 43.040874 ], [ 0.563791, 43.04397 ], [ 0.558847, 43.062868 ], [ 0.55496, 43.064255 ], [ 0.561711, 43.072363 ], [ 0.563854, 43.07425 ], [ 0.532194, 43.08413 ], [ 0.532638, 43.09387 ], [ 0.529181, 43.093452 ], [ 0.522355, 43.09257 ], [ 0.50459, 43.095359 ], [ 0.500068, 43.107367 ], [ 0.491205, 43.10868 ], [ 0.48929, 43.115179 ], [ 0.485319, 43.114115 ], [ 0.464706, 43.111346 ], [ 0.452923, 43.11255 ], [ 0.456872, 43.11436 ], [ 0.463839, 43.118804 ], [ 0.45476, 43.12636 ], [ 0.442334, 43.13091 ], [ 0.441291, 43.13117 ], [ 0.44385, 43.13358 ], [ 0.456753, 43.14556 ], [ 0.458872, 43.148519 ], [ 0.462785, 43.15066 ], [ 0.499093, 43.17423 ], [ 0.520954, 43.193457 ], [ 0.505764, 43.19971 ], [ 0.515936, 43.20947 ], [ 0.517385, 43.212382 ], [ 0.521425, 43.21115 ], [ 0.533811, 43.20807 ], [ 0.544991, 43.21306 ], [ 0.551875, 43.209147 ], [ 0.555811, 43.210613 ], [ 0.57023, 43.21735 ], [ 0.573087, 43.21995 ], [ 0.572841, 43.23311 ], [ 0.568198, 43.232582 ], [ 0.55547, 43.236983 ], [ 0.550957, 43.236008 ], [ 0.554112, 43.23853 ], [ 0.566788, 43.2523 ], [ 0.576012, 43.25315 ], [ 0.576265, 43.25591 ], [ 0.576716, 43.258656 ], [ 0.580238, 43.261003 ], [ 0.596798, 43.273477 ], [ 0.6146, 43.27783 ], [ 0.615325, 43.280547 ], [ 0.618933, 43.290418 ], [ 0.635622, 43.295653 ], [ 0.632144, 43.301427 ], [ 0.611353, 43.30984 ], [ 0.606811, 43.31089 ], [ 0.610158, 43.3128 ], [ 0.611852, 43.31565 ], [ 0.616602, 43.31552 ], [ 0.644501, 43.31235 ], [ 0.65681, 43.317273 ], [ 0.659808, 43.319345 ], [ 0.674719, 43.32951 ], [ 0.675321, 43.332306 ], [ 0.690313, 43.349844 ], [ 0.693641, 43.35234 ], [ 0.697166, 43.357334 ], [ 0.69924, 43.359763 ], [ 0.700061, 43.361122 ], [ 0.702998, 43.364496 ], [ 0.716226, 43.378699 ], [ 0.7321, 43.371635 ], [ 0.740799, 43.37946 ], [ 0.744299, 43.38179 ], [ 0.749961, 43.398881 ], [ 0.751705, 43.400979 ], [ 0.75493, 43.404709 ], [ 0.75717, 43.40772 ], [ 0.752092, 43.41699 ], [ 0.770422, 43.41681 ], [ 0.803342, 43.401805 ], [ 0.807297, 43.39972 ], [ 0.807663, 43.40017 ], [ 0.818079, 43.41451 ], [ 0.821119, 43.417059 ], [ 0.840405, 43.41109 ], [ 0.844325, 43.409936 ], [ 0.853479, 43.41373 ], [ 0.857069, 43.41447 ], [ 0.864511, 43.41586 ], [ 0.875921, 43.41079 ], [ 0.880555, 43.410633 ], [ 0.883107, 43.4104 ], [ 0.885639, 43.41003 ], [ 0.897917, 43.406436 ], [ 0.90223, 43.40529 ], [ 0.90473, 43.407828 ], [ 0.917282, 43.40615 ], [ 0.917422, 43.40299 ], [ 0.927776, 43.39822 ], [ 0.927285, 43.39507 ], [ 0.942091, 43.383427 ], [ 0.944659, 43.380605 ], [ 0.9469, 43.38523 ], [ 0.963618, 43.386678 ], [ 0.968903, 43.377454 ], [ 0.96487, 43.37149 ], [ 0.976605, 43.363668 ], [ 0.980537, 43.36305 ], [ 0.989167, 43.365621 ], [ 0.993662, 43.366532 ], [ 0.998763, 43.376283 ], [ 1.002876, 43.37686 ], [ 1.005037, 43.37999 ], [ 0.998926, 43.384385 ], [ 1.001607, 43.391022 ], [ 0.993933, 43.407268 ], [ 0.997091, 43.40981 ], [ 1.004308, 43.41384 ], [ 1.022788, 43.4117 ], [ 1.023514, 43.41499 ], [ 1.028599, 43.42044 ], [ 1.021059, 43.428609 ], [ 1.018914, 43.430658 ], [ 1.021751, 43.432896 ], [ 1.032272, 43.441214 ], [ 1.033454, 43.44419 ], [ 1.03388, 43.44726 ], [ 1.034473, 43.45017 ], [ 1.039075, 43.452497 ], [ 1.037108, 43.45512 ], [ 1.04394, 43.458372 ], [ 1.04167, 43.460815 ], [ 1.038859, 43.463194 ], [ 1.017906, 43.47354 ], [ 1.020032, 43.47638 ], [ 1.03749, 43.48556 ], [ 1.033751, 43.48682 ], [ 1.051077, 43.48947 ], [ 1.05932, 43.504177 ], [ 1.072887, 43.50442 ], [ 1.069796, 43.507 ], [ 1.052928, 43.51839 ], [ 1.055315, 43.524976 ], [ 1.06845, 43.523492 ], [ 1.076593, 43.52668 ], [ 1.073076, 43.52903 ], [ 1.050552, 43.541036 ], [ 1.05963, 43.5393 ], [ 1.074806, 43.54643 ], [ 1.084108, 43.54648 ], [ 1.091417, 43.542501 ], [ 1.097081, 43.533231 ], [ 1.105617, 43.5366 ], [ 1.118141, 43.54553 ], [ 1.114137, 43.553653 ], [ 1.112391, 43.55671 ], [ 1.125451, 43.554299 ], [ 1.152204, 43.55702 ], [ 1.156696, 43.556634 ], [ 1.163369, 43.570859 ], [ 1.162297, 43.573802 ], [ 1.166831, 43.572528 ], [ 1.199343, 43.56918 ], [ 1.201942, 43.575518 ], [ 1.200479, 43.595726 ], [ 1.188439, 43.60562 ], [ 1.185959, 43.608462 ], [ 1.1809, 43.6141 ], [ 1.171418, 43.606896 ], [ 1.158654, 43.60518 ], [ 1.146019, 43.619029 ], [ 1.1426, 43.621311 ], [ 1.146816, 43.632336 ], [ 1.147455, 43.635182 ], [ 1.144935, 43.637614 ], [ 1.138899, 43.64183 ], [ 1.130581, 43.64265 ], [ 1.127421, 43.64076 ], [ 1.115933, 43.6396 ], [ 1.115457, 43.63673 ], [ 1.094498, 43.64243 ], [ 1.08861, 43.64729 ], [ 1.099477, 43.657494 ], [ 1.101383, 43.660561 ], [ 1.093458, 43.664383 ], [ 1.079461, 43.66252 ], [ 1.074826, 43.66171 ], [ 1.062518, 43.67116 ], [ 1.058015, 43.670848 ], [ 1.056834, 43.673842 ], [ 1.049022, 43.67602 ], [ 1.051339, 43.67864 ], [ 1.051577, 43.681849 ], [ 1.065703, 43.70023 ], [ 1.063925, 43.70292 ], [ 1.056108, 43.704756 ], [ 1.052021, 43.706375 ], [ 1.04073, 43.712176 ], [ 1.027388, 43.710432 ], [ 1.024347, 43.712987 ], [ 1.02217, 43.716017 ], [ 1.023419, 43.721873 ], [ 1.011973, 43.727695 ], [ 1.007789, 43.72879 ], [ 0.985922, 43.74382 ], [ 0.98905, 43.74386 ], [ 0.99219, 43.743895 ], [ 0.974622, 43.759295 ], [ 0.966056, 43.759567 ], [ 0.969891, 43.76138 ], [ 0.959099, 43.7718 ], [ 0.953642, 43.78406 ], [ 0.953983, 43.787372 ], [ 0.956063, 43.789329 ], [ 0.980517, 43.78758 ], [ 0.982503, 43.790461 ], [ 0.987578, 43.79559 ], [ 0.995961, 43.79755 ], [ 1.000344, 43.79837 ], [ 1.036771, 43.803028 ], [ 1.044982, 43.799521 ], [ 1.059132, 43.798594 ], [ 1.062046, 43.80136 ], [ 1.082129, 43.815465 ], [ 1.083306, 43.816332 ], [ 1.097104, 43.808139 ], [ 1.105866, 43.806663 ], [ 1.105058, 43.8014 ], [ 1.10768, 43.798782 ], [ 1.115083, 43.797776 ], [ 1.116766, 43.801 ], [ 1.125584, 43.80915 ], [ 1.142279, 43.81561 ], [ 1.144598, 43.822298 ], [ 1.157369, 43.818329 ], [ 1.162996, 43.80882 ], [ 1.175343, 43.80439 ], [ 1.17968, 43.79581 ], [ 1.18319, 43.79407 ], [ 1.215753, 43.79027 ], [ 1.217957, 43.783755 ], [ 1.207038, 43.77735 ], [ 1.210042, 43.77107 ], [ 1.212776, 43.768242 ], [ 1.27741, 43.78895 ], [ 1.267641, 43.79521 ], [ 1.266879, 43.79862 ], [ 1.271046, 43.798075 ], [ 1.27796, 43.80162 ], [ 1.281825, 43.79625 ], [ 1.286109, 43.7972 ], [ 1.29903, 43.799785 ], [ 1.301897, 43.80031 ], [ 1.305066, 43.801166 ], [ 1.311637, 43.80084 ], [ 1.314977, 43.803066 ], [ 1.326313, 43.808515 ], [ 1.343356, 43.81053 ], [ 1.345052, 43.81335 ], [ 1.35152, 43.81709 ], [ 1.360031, 43.81721 ], [ 1.361292, 43.820486 ], [ 1.354419, 43.836432 ], [ 1.331645, 43.83748 ], [ 1.314451, 43.83313 ], [ 1.303039, 43.843916 ], [ 1.293823, 43.8456 ], [ 1.296644, 43.848173 ], [ 1.319412, 43.85807 ], [ 1.323757, 43.85668 ], [ 1.335298, 43.851245 ], [ 1.358857, 43.85248 ], [ 1.36147, 43.858077 ], [ 1.34929, 43.87193 ], [ 1.352803, 43.873951 ], [ 1.355915, 43.882531 ], [ 1.365184, 43.889574 ], [ 1.390999, 43.881577 ], [ 1.404492, 43.884602 ], [ 1.408611, 43.882826 ], [ 1.418123, 43.871875 ], [ 1.430993, 43.86945 ], [ 1.447742, 43.873506 ], [ 1.448923, 43.87032 ], [ 1.467045, 43.89463 ], [ 1.469869, 43.89748 ], [ 1.475043, 43.905574 ], [ 1.477, 43.908293 ], [ 1.487717, 43.901799 ], [ 1.491908, 43.888761 ], [ 1.496655, 43.888583 ], [ 1.5166, 43.902682 ], [ 1.515195, 43.905966 ], [ 1.519355, 43.90495 ], [ 1.523323, 43.9036 ], [ 1.531161, 43.911546 ], [ 1.533792, 43.9211 ], [ 1.551068, 43.917996 ], [ 1.555617, 43.918317 ], [ 1.547523, 43.899722 ], [ 1.550723, 43.889881 ], [ 1.559399, 43.881968 ], [ 1.556407, 43.87578 ], [ 1.564008, 43.87188 ], [ 1.561642, 43.86998 ], [ 1.555312, 43.870834 ], [ 1.555086, 43.86849 ], [ 1.57037, 43.85182 ], [ 1.572585, 43.8488 ], [ 1.576138, 43.847463 ], [ 1.591232, 43.843572 ], [ 1.59317, 43.843138 ], [ 1.588589, 43.817176 ], [ 1.625502, 43.801807 ], [ 1.644788, 43.800257 ], [ 1.646404, 43.79706 ], [ 1.648551, 43.79404 ], [ 1.642091, 43.785095 ], [ 1.643045, 43.778375 ], [ 1.651526, 43.775861 ], [ 1.655786, 43.766887 ], [ 1.651455, 43.754629 ], [ 1.650186, 43.751589 ], [ 1.657976, 43.745017 ], [ 1.659743, 43.742186 ], [ 1.679455, 43.735749 ], [ 1.688782, 43.728464 ], [ 1.693023, 43.7297 ], [ 1.703544, 43.718894 ], [ 1.706446, 43.71622 ], [ 1.702349, 43.710276 ], [ 1.692903, 43.709965 ], [ 1.678907, 43.701391 ], [ 1.665722, 43.705072 ], [ 1.661032, 43.70565 ], [ 1.664454, 43.70362 ], [ 1.663572, 43.697279 ], [ 1.663573, 43.694058 ], [ 1.716092, 43.689389 ], [ 1.720704, 43.688346 ], [ 1.718914, 43.68522 ], [ 1.720379, 43.67515 ], [ 1.730492, 43.66414 ], [ 1.730357, 43.660759 ], [ 1.724309, 43.656774 ], [ 1.702541, 43.65089 ], [ 1.691623, 43.639998 ], [ 1.690614, 43.63316 ], [ 1.687765, 43.630421 ], [ 1.698605, 43.62009 ], [ 1.706268, 43.62138 ], [ 1.719106, 43.618386 ], [ 1.723044, 43.61676 ], [ 1.723742, 43.613797 ], [ 1.74056, 43.60596 ], [ 1.742237, 43.6046 ], [ 1.744731, 43.60436 ], [ 1.745048, 43.603462 ], [ 1.762222, 43.6018 ], [ 1.762697, 43.602738 ], [ 1.76653, 43.601881 ], [ 1.772294, 43.59812 ], [ 1.772591, 43.592348 ], [ 1.775825, 43.590468 ], [ 1.79341, 43.583763 ], [ 1.798684, 43.582535 ], [ 1.802575, 43.581147 ], [ 1.810477, 43.579173 ], [ 1.821662, 43.581194 ], [ 1.826037, 43.580296 ], [ 1.839147, 43.57779 ], [ 1.849452, 43.56754 ], [ 1.85195, 43.5522 ], [ 1.850711, 43.549192 ], [ 1.859818, 43.54661 ], [ 1.86424, 43.54506 ], [ 1.876382, 43.54154 ], [ 1.880414, 43.540315 ], [ 1.876463, 43.53868 ], [ 1.873093, 43.53647 ], [ 1.887719, 43.516941 ], [ 1.889391, 43.516184 ], [ 1.891608, 43.513409 ], [ 1.917079, 43.501474 ], [ 1.92057, 43.50514 ], [ 1.948634, 43.492166 ], [ 1.952509, 43.490449 ], [ 1.957257, 43.493698 ], [ 1.973997, 43.487838 ], [ 1.987799, 43.478826 ], [ 1.996014, 43.481736 ], [ 2.009895, 43.481468 ], [ 2.012578, 43.484246 ], [ 2.012012, 43.5071 ], [ 2.016101, 43.50871 ], [ 2.03489, 43.500013 ], [ 2.042285, 43.510929 ], [ 2.048094, 43.49829 ], [ 2.045463, 43.48777 ], [ 2.04829, 43.48573 ], [ 2.044983, 43.483196 ], [ 2.039032, 43.477708 ], [ 2.025048, 43.475397 ], [ 2.021455, 43.47307 ], [ 2.019322, 43.469938 ], [ 2.014953, 43.44947 ], [ 2.02247, 43.446087 ], [ 2.029133, 43.436898 ], [ 2.030853, 43.433737 ], [ 2.038411, 43.425482 ], [ 2.028795, 43.41962 ], [ 2.020921, 43.423193 ], [ 2.012692, 43.415021 ], [ 1.991106, 43.409343 ], [ 1.972991, 43.418962 ], [ 1.965903, 43.414971 ], [ 1.963038, 43.41991 ], [ 1.963752, 43.42275 ], [ 1.960755, 43.42396 ], [ 1.95817, 43.42561 ], [ 1.946584, 43.420597 ], [ 1.932769, 43.423377 ], [ 1.923508, 43.421558 ], [ 1.911508, 43.403408 ], [ 1.91463, 43.400749 ], [ 1.910708, 43.3974 ], [ 1.903591, 43.39402 ], [ 1.895584, 43.39658 ], [ 1.902433, 43.408813 ], [ 1.899143, 43.41113 ], [ 1.897627, 43.414271 ], [ 1.873987, 43.430259 ], [ 1.872942, 43.43696 ], [ 1.856453, 43.44345 ], [ 1.855178, 43.440517 ], [ 1.842953, 43.43255 ], [ 1.84599, 43.430729 ], [ 1.844511, 43.42261 ], [ 1.840383, 43.416741 ], [ 1.826761, 43.417746 ], [ 1.817266, 43.41065 ], [ 1.817111, 43.407384 ], [ 1.821619, 43.39879 ], [ 1.826108, 43.394661 ], [ 1.812498, 43.394126 ], [ 1.804971, 43.390588 ], [ 1.804994, 43.359764 ], [ 1.815575, 43.34831 ], [ 1.813484, 43.3415 ], [ 1.796973, 43.34056 ], [ 1.793332, 43.342567 ], [ 1.784932, 43.34515 ], [ 1.77653, 43.34256 ], [ 1.772273, 43.336977 ], [ 1.768684, 43.33939 ], [ 1.749223, 43.349462 ], [ 1.746555, 43.34348 ], [ 1.735427, 43.3377 ], [ 1.722905, 43.341533 ], [ 1.726379, 43.33269 ], [ 1.724412, 43.329666 ], [ 1.735952, 43.316018 ], [ 1.727504, 43.31357 ], [ 1.707384, 43.305316 ], [ 1.704015, 43.30282 ], [ 1.707797, 43.301155 ], [ 1.714527, 43.2971 ], [ 1.706646, 43.286036 ], [ 1.701275, 43.281698 ], [ 1.698489, 43.27911 ], [ 1.68842, 43.273554 ], [ 1.684706, 43.27552 ], [ 1.673613, 43.28134 ], [ 1.671417, 43.2783 ], [ 1.650608, 43.259827 ], [ 1.655788, 43.250976 ], [ 1.655283, 43.244105 ], [ 1.644398, 43.237564 ], [ 1.635082, 43.23709 ], [ 1.636456, 43.24718 ], [ 1.637144, 43.254008 ], [ 1.633595, 43.256239 ], [ 1.606213, 43.260604 ], [ 1.600931, 43.26622 ], [ 1.582583, 43.26887 ], [ 1.578834, 43.27512 ], [ 1.574813, 43.273429 ], [ 1.569433, 43.269912 ], [ 1.572619, 43.26357 ], [ 1.569141, 43.257366 ], [ 1.561765, 43.257484 ], [ 1.557052, 43.263323 ], [ 1.545386, 43.276797 ], [ 1.541674, 43.27509 ], [ 1.541722, 43.276082 ], [ 1.537449, 43.277077 ], [ 1.52189, 43.270621 ], [ 1.517628, 43.271643 ], [ 1.515703, 43.27804 ], [ 1.515871, 43.28441 ], [ 1.511636, 43.29246 ], [ 1.506599, 43.2872 ], [ 1.499248, 43.290445 ], [ 1.49622, 43.29277 ], [ 1.495033, 43.27689 ], [ 1.488674, 43.2686 ], [ 1.492642, 43.262804 ], [ 1.490239, 43.26011 ], [ 1.493322, 43.25422 ], [ 1.49768, 43.25466 ], [ 1.502879, 43.251637 ], [ 1.504522, 43.24953 ], [ 1.495751, 43.23897 ], [ 1.492447, 43.23684 ], [ 1.500513, 43.233745 ], [ 1.504053, 43.228189 ], [ 1.503881, 43.224867 ], [ 1.503995, 43.22095 ], [ 1.48702, 43.226503 ], [ 1.476565, 43.220347 ], [ 1.475497, 43.21699 ], [ 1.471837, 43.215385 ], [ 1.468744, 43.209566 ], [ 1.452056, 43.21222 ], [ 1.444751, 43.214018 ], [ 1.441798, 43.21587 ], [ 1.431539, 43.218136 ], [ 1.41686, 43.226325 ], [ 1.418659, 43.23654 ], [ 1.425426, 43.24559 ], [ 1.425886, 43.25582 ], [ 1.406262, 43.27419 ], [ 1.402761, 43.276547 ], [ 1.401943, 43.277623 ], [ 1.379301, 43.288857 ], [ 1.365686, 43.305999 ], [ 1.373023, 43.31015 ], [ 1.345491, 43.31549 ], [ 1.331294, 43.31383 ], [ 1.323968, 43.3094 ], [ 1.316667, 43.297392 ], [ 1.307485, 43.296727 ], [ 1.301558, 43.28756 ], [ 1.292531, 43.288366 ], [ 1.301238, 43.27292 ], [ 1.294862, 43.268267 ], [ 1.294111, 43.264926 ], [ 1.330481, 43.260644 ], [ 1.329953, 43.257217 ], [ 1.318422, 43.251154 ], [ 1.336707, 43.248387 ], [ 1.348304, 43.24313 ], [ 1.352581, 43.244617 ], [ 1.35678, 43.243701 ], [ 1.365233, 43.242021 ], [ 1.373053, 43.244883 ], [ 1.374903, 43.23864 ], [ 1.377652, 43.23627 ], [ 1.382925, 43.228152 ], [ 1.379963, 43.222341 ], [ 1.377872, 43.21925 ], [ 1.370204, 43.21067 ], [ 1.356669, 43.21301 ], [ 1.352282, 43.21198 ], [ 1.327822, 43.20456 ], [ 1.327516, 43.20196 ], [ 1.329615, 43.19702 ], [ 1.325853, 43.196126 ], [ 1.322387, 43.190989 ], [ 1.314608, 43.189995 ], [ 1.311658, 43.19165 ], [ 1.305721, 43.194912 ], [ 1.302034, 43.193576 ], [ 1.296283, 43.189284 ], [ 1.272331, 43.19585 ], [ 1.266351, 43.19148 ], [ 1.268142, 43.190779 ], [ 1.264613, 43.188734 ], [ 1.253254, 43.183792 ], [ 1.249383, 43.183306 ], [ 1.247613, 43.18654 ], [ 1.239495, 43.189065 ], [ 1.230324, 43.18739 ], [ 1.227735, 43.174001 ], [ 1.216928, 43.16329 ], [ 1.217172, 43.156579 ], [ 1.223738, 43.152072 ], [ 1.237564, 43.14998 ], [ 1.250818, 43.148097 ], [ 1.255381, 43.14795 ], [ 1.273873, 43.148388 ], [ 1.276705, 43.141992 ], [ 1.299357, 43.124961 ], [ 1.302718, 43.12259 ], [ 1.290166, 43.123439 ], [ 1.282698, 43.11601 ], [ 1.281744, 43.112995 ], [ 1.278927, 43.11026 ], [ 1.260737, 43.10799 ], [ 1.261854, 43.09165 ], [ 1.249571, 43.089042 ], [ 1.245513, 43.088076 ], [ 1.241135, 43.087537 ], [ 1.223571, 43.085926 ], [ 1.2221, 43.089078 ], [ 1.210476, 43.106905 ], [ 1.213204, 43.109236 ], [ 1.210751, 43.1151 ], [ 1.199329, 43.122617 ], [ 1.198395, 43.12542 ], [ 1.177517, 43.138201 ], [ 1.174984, 43.140974 ], [ 1.162565, 43.13204 ], [ 1.145819, 43.13863 ], [ 1.124082, 43.15691 ], [ 1.115991, 43.149875 ], [ 1.11207, 43.14841 ], [ 1.11198, 43.145531 ], [ 1.108471, 43.144228 ], [ 1.104069, 43.14396 ], [ 1.088091, 43.140035 ], [ 1.087977, 43.133825 ], [ 1.084129, 43.135403 ], [ 1.062938, 43.13867 ], [ 1.053544, 43.145454 ], [ 1.051863, 43.14391 ], [ 1.051446, 43.14061 ], [ 1.048409, 43.13815 ], [ 1.052319, 43.132935 ], [ 1.050845, 43.11982 ], [ 1.048314, 43.11731 ], [ 1.03823, 43.100308 ], [ 1.025497, 43.10214 ], [ 1.009501, 43.113484 ], [ 1.005098, 43.113303 ], [ 1.000889, 43.11428 ], [ 1.004142, 43.108616 ], [ 0.996328, 43.09811 ], [ 0.992095, 43.098018 ], [ 0.99167, 43.091173 ], [ 1.004964, 43.0816 ], [ 0.999629, 43.0765 ], [ 0.978285, 43.073009 ], [ 0.980334, 43.07022 ], [ 0.985586, 43.06247 ], [ 0.983483, 43.05626 ], [ 0.988953, 43.04786 ], [ 0.993263, 43.04842 ], [ 0.99437, 43.03985 ], [ 0.993153, 43.039558 ], [ 0.990214, 43.041564 ], [ 0.984119, 43.04539 ], [ 0.98455, 43.04218 ], [ 0.989042, 43.023396 ], [ 0.992966, 43.02338 ], [ 0.996808, 43.023981 ], [ 1.007949, 43.018763 ], [ 1.013484, 43.010022 ], [ 1.02239, 43.010195 ], [ 1.018611, 43.008147 ], [ 1.005529, 43.006087 ], [ 0.995098, 42.990834 ], [ 0.980532, 42.977687 ], [ 0.979101, 42.97443 ], [ 0.975795, 42.972974 ], [ 0.964711, 42.970804 ], [ 0.961393, 42.96831 ], [ 0.938102, 42.965646 ], [ 0.931165, 42.96643 ], [ 0.927664, 42.966687 ], [ 0.916804, 42.96074 ], [ 0.912639, 42.9594 ], [ 0.908073, 42.95831 ], [ 0.874911, 42.957776 ], [ 0.875793, 42.95445 ], [ 0.885379, 42.935725 ], [ 0.88452, 42.93244 ], [ 0.873674, 42.92673 ], [ 0.864822, 42.92743 ], [ 0.857163, 42.92399 ], [ 0.843739, 42.925182 ], [ 0.840735, 42.922675 ], [ 0.837338, 42.92054 ], [ 0.826682, 42.9155 ], [ 0.834232, 42.900791 ], [ 0.838049, 42.89883 ], [ 0.842883, 42.889585 ], [ 0.835258, 42.87359 ], [ 0.839447, 42.867521 ], [ 0.848211, 42.86533 ], [ 0.85666, 42.84052 ], [ 0.859883, 42.8383 ], [ 0.858306, 42.825719 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "33", "CODE_DEPT": "32", "NOM_DEPT": "GERS", "CODE_CHF": "013", "NOM_CHF": "AUCH", "X_CHF_LIEU": "5054", "Y_CHF_LIEU": "62858", "X_CENTROID": "4946", "Y_CENTROID": "62915", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.606811, 43.31089 ], [ 0.603125, 43.3121 ], [ 0.599695, 43.31365 ], [ 0.595984, 43.315758 ], [ 0.579671, 43.3212 ], [ 0.571099, 43.319836 ], [ 0.566583, 43.320815 ], [ 0.547069, 43.329806 ], [ 0.543299, 43.328587 ], [ 0.539688, 43.32713 ], [ 0.537018, 43.32757 ], [ 0.533036, 43.32959 ], [ 0.514701, 43.333342 ], [ 0.510377, 43.33384 ], [ 0.497721, 43.325993 ], [ 0.49354, 43.32548 ], [ 0.479816, 43.33259 ], [ 0.476404, 43.33223 ], [ 0.472977, 43.332483 ], [ 0.469934, 43.33497 ], [ 0.461134, 43.336562 ], [ 0.457253, 43.337884 ], [ 0.445023, 43.340611 ], [ 0.443605, 43.337553 ], [ 0.442971, 43.327926 ], [ 0.438138, 43.328486 ], [ 0.418738, 43.32808 ], [ 0.395823, 43.334244 ], [ 0.393631, 43.33744 ], [ 0.393953, 43.340409 ], [ 0.398672, 43.35144 ], [ 0.394226, 43.351019 ], [ 0.387506, 43.355321 ], [ 0.378548, 43.35537 ], [ 0.375684, 43.35299 ], [ 0.363876, 43.34957 ], [ 0.346156, 43.34814 ], [ 0.339845, 43.34377 ], [ 0.33135, 43.342654 ], [ 0.33095, 43.34597 ], [ 0.325407, 43.37478 ], [ 0.322128, 43.372589 ], [ 0.311893, 43.36716 ], [ 0.300517, 43.37136 ], [ 0.300552, 43.374844 ], [ 0.298759, 43.38858 ], [ 0.293995, 43.38779 ], [ 0.271197, 43.38262 ], [ 0.266934, 43.38168 ], [ 0.244136, 43.37272 ], [ 0.240272, 43.3707 ], [ 0.231704, 43.367712 ], [ 0.214771, 43.36984 ], [ 0.206345, 43.36778 ], [ 0.203647, 43.37024 ], [ 0.198076, 43.37492 ], [ 0.182031, 43.37118 ], [ 0.176969, 43.37704 ], [ 0.176024, 43.380442 ], [ 0.180075, 43.379125 ], [ 0.179426, 43.38255 ], [ 0.173805, 43.40277 ], [ 0.169555, 43.40181 ], [ 0.157076, 43.39925 ], [ 0.148339, 43.40516 ], [ 0.148276, 43.408683 ], [ 0.134549, 43.42249 ], [ 0.138111, 43.43305 ], [ 0.137459, 43.433992 ], [ 0.161807, 43.44151 ], [ 0.166064, 43.44238 ], [ 0.158148, 43.454315 ], [ 0.155394, 43.457025 ], [ 0.155302, 43.45788 ], [ 0.152138, 43.45988 ], [ 0.148229, 43.465191 ], [ 0.14453, 43.463761 ], [ 0.140635, 43.465044 ], [ 0.133654, 43.468209 ], [ 0.130741, 43.474065 ], [ 0.130044, 43.477395 ], [ 0.127279, 43.490655 ], [ 0.130128, 43.49304 ], [ 0.127468, 43.499 ], [ 0.125196, 43.50165 ], [ 0.112248, 43.51737 ], [ 0.108474, 43.51542 ], [ 0.091886, 43.510248 ], [ 0.082, 43.51736 ], [ 0.080576, 43.52395 ], [ 0.067742, 43.51941 ], [ 0.053621, 43.518767 ], [ 0.039857, 43.5369 ], [ 0.036462, 43.53938 ], [ 0.030055, 43.54457 ], [ 0.015782, 43.54339 ], [ 0.010764, 43.554897 ], [ 0.00946, 43.55783 ], [ 0.008294, 43.56073 ], [ -0.001666, 43.56532 ], [ -0.006586, 43.59283 ], [ -0.00871, 43.595291 ], [ -0.015009, 43.60552 ], [ -0.029866, 43.605067 ], [ -0.033826, 43.604731 ], [ -0.034107, 43.60747 ], [ -0.0383, 43.60614 ], [ -0.043995, 43.611191 ], [ -0.055966, 43.60653 ], [ -0.074213, 43.60618 ], [ -0.075589, 43.5928 ], [ -0.079109, 43.590517 ], [ -0.09313, 43.590695 ], [ -0.097509, 43.589427 ], [ -0.097245, 43.58591 ], [ -0.096783, 43.582406 ], [ -0.10552, 43.5818 ], [ -0.117675, 43.58552 ], [ -0.125567, 43.58349 ], [ -0.128961, 43.58145 ], [ -0.133718, 43.58144 ], [ -0.151007, 43.58546 ], [ -0.157822, 43.58145 ], [ -0.162108, 43.58167 ], [ -0.165057, 43.583931 ], [ -0.17692, 43.596596 ], [ -0.200656, 43.58543 ], [ -0.205011, 43.584 ], [ -0.206209, 43.587271 ], [ -0.210607, 43.593237 ], [ -0.228803, 43.589645 ], [ -0.238912, 43.58304 ], [ -0.242837, 43.58498 ], [ -0.249482, 43.596664 ], [ -0.254007, 43.596709 ], [ -0.254238, 43.600124 ], [ -0.248946, 43.60578 ], [ -0.247204, 43.61596 ], [ -0.274673, 43.61599 ], [ -0.280401, 43.62078 ], [ -0.281223, 43.624095 ], [ -0.280375, 43.627255 ], [ -0.282112, 43.643079 ], [ -0.266968, 43.63694 ], [ -0.263362, 43.638727 ], [ -0.263359, 43.64499 ], [ -0.261803, 43.64795 ], [ -0.259198, 43.653162 ], [ -0.246276, 43.654944 ], [ -0.243276, 43.663958 ], [ -0.23973, 43.671242 ], [ -0.24933, 43.671847 ], [ -0.256714, 43.6758 ], [ -0.254545, 43.682624 ], [ -0.241216, 43.692676 ], [ -0.247381, 43.70924 ], [ -0.226314, 43.71698 ], [ -0.222236, 43.71887 ], [ -0.218276, 43.72088 ], [ -0.194143, 43.73702 ], [ -0.195896, 43.740162 ], [ -0.196408, 43.746866 ], [ -0.218864, 43.750329 ], [ -0.213934, 43.755662 ], [ -0.209199, 43.756315 ], [ -0.207784, 43.759662 ], [ -0.215682, 43.77241 ], [ -0.214828, 43.782627 ], [ -0.222128, 43.78709 ], [ -0.221604, 43.79037 ], [ -0.218647, 43.79659 ], [ -0.226956, 43.807666 ], [ -0.216, 43.81254 ], [ -0.212633, 43.80928 ], [ -0.194708, 43.809211 ], [ -0.196344, 43.82912 ], [ -0.189844, 43.833697 ], [ -0.19342, 43.84001 ], [ -0.194496, 43.843009 ], [ -0.208908, 43.85767 ], [ -0.204298, 43.860257 ], [ -0.195834, 43.8707 ], [ -0.187112, 43.863894 ], [ -0.185723, 43.866889 ], [ -0.187532, 43.86985 ], [ -0.194002, 43.88158 ], [ -0.201257, 43.88527 ], [ -0.20535, 43.88498 ], [ -0.215616, 43.88927 ], [ -0.219239, 43.89122 ], [ -0.231716, 43.890962 ], [ -0.239879, 43.89741 ], [ -0.232826, 43.90154 ], [ -0.227893, 43.91079 ], [ -0.21685, 43.90762 ], [ -0.209669, 43.911734 ], [ -0.203483, 43.91339 ], [ -0.200575, 43.91464 ], [ -0.19871, 43.91782 ], [ -0.179029, 43.93649 ], [ -0.163922, 43.928606 ], [ -0.155915, 43.93233 ], [ -0.153158, 43.93882 ], [ -0.135133, 43.9363 ], [ -0.125325, 43.9436 ], [ -0.106746, 43.928834 ], [ -0.102561, 43.927278 ], [ -0.098748, 43.92889 ], [ -0.095423, 43.931002 ], [ -0.097864, 43.943353 ], [ -0.094468, 43.94579 ], [ -0.073635, 43.94456 ], [ -0.060463, 43.9588 ], [ -0.046915, 43.96123 ], [ -0.036169, 43.98374 ], [ -0.004915, 43.96253 ], [ -0.000961, 43.96061 ], [ 0.005561, 43.955612 ], [ 0.005383, 43.94523 ], [ -0.019936, 43.92927 ], [ 0.015984, 43.912245 ], [ 0.02921, 43.90203 ], [ 0.033178, 43.89998 ], [ 0.036927, 43.90213 ], [ 0.058618, 43.898381 ], [ 0.069083, 43.905345 ], [ 0.075082, 43.914682 ], [ 0.074765, 43.918186 ], [ 0.06974, 43.935252 ], [ 0.055391, 43.95707 ], [ 0.067104, 43.967359 ], [ 0.067536, 43.974242 ], [ 0.069724, 43.97655 ], [ 0.076046, 43.98314 ], [ 0.080372, 43.98172 ], [ 0.093313, 43.98574 ], [ 0.107388, 43.985382 ], [ 0.127415, 43.998581 ], [ 0.126847, 44.001926 ], [ 0.141, 43.993642 ], [ 0.138625, 43.97659 ], [ 0.156784, 43.972809 ], [ 0.161035, 43.97435 ], [ 0.164053, 43.977096 ], [ 0.165747, 43.99445 ], [ 0.18114, 44.002528 ], [ 0.189807, 44.015008 ], [ 0.193466, 44.01369 ], [ 0.201762, 44.014234 ], [ 0.214734, 44.02279 ], [ 0.218721, 44.02113 ], [ 0.229143, 44.02136 ], [ 0.232775, 44.02239 ], [ 0.232995, 44.00939 ], [ 0.250636, 44.004261 ], [ 0.259824, 44.005699 ], [ 0.27114, 44.00102 ], [ 0.273552, 43.998054 ], [ 0.28235, 43.998 ], [ 0.302772, 43.991395 ], [ 0.305493, 43.993992 ], [ 0.318026, 43.997245 ], [ 0.31486, 44.00671 ], [ 0.31548, 44.00997 ], [ 0.32475, 44.00785 ], [ 0.35707, 44.01553 ], [ 0.372908, 44.008429 ], [ 0.382444, 44.008342 ], [ 0.397883, 44.02188 ], [ 0.412024, 44.023499 ], [ 0.418874, 44.02821 ], [ 0.437588, 44.02919 ], [ 0.44245, 44.02876 ], [ 0.447452, 44.041621 ], [ 0.450312, 44.04438 ], [ 0.450621, 44.046404 ], [ 0.45866, 44.052579 ], [ 0.459759, 44.055378 ], [ 0.485403, 44.055439 ], [ 0.485697, 44.058687 ], [ 0.488817, 44.056463 ], [ 0.497471, 44.05758 ], [ 0.503819, 44.05377 ], [ 0.504717, 44.050667 ], [ 0.51158, 44.06274 ], [ 0.522484, 44.056951 ], [ 0.535071, 44.055209 ], [ 0.538427, 44.052952 ], [ 0.54609, 44.05623 ], [ 0.55874, 44.05822 ], [ 0.567315, 44.061234 ], [ 0.576884, 44.07345 ], [ 0.584703, 44.07726 ], [ 0.601222, 44.07801 ], [ 0.599327, 44.07495 ], [ 0.622547, 44.064176 ], [ 0.631509, 44.052863 ], [ 0.632705, 44.04963 ], [ 0.652847, 44.042833 ], [ 0.65417, 44.032849 ], [ 0.662534, 44.024582 ], [ 0.676267, 44.026883 ], [ 0.679586, 44.029348 ], [ 0.682755, 44.04224 ], [ 0.694547, 44.045124 ], [ 0.704967, 44.055725 ], [ 0.707923, 44.05829 ], [ 0.717115, 44.05759 ], [ 0.738933, 44.062491 ], [ 0.741635, 44.0652 ], [ 0.750176, 44.065523 ], [ 0.752327, 44.05944 ], [ 0.753347, 44.05637 ], [ 0.758697, 44.05113 ], [ 0.757886, 44.044459 ], [ 0.756565, 44.04124 ], [ 0.760935, 44.031997 ], [ 0.764048, 44.029639 ], [ 0.797375, 44.04396 ], [ 0.811224, 44.049663 ], [ 0.813507, 44.05228 ], [ 0.822057, 44.055596 ], [ 0.836679, 44.046981 ], [ 0.850634, 44.047679 ], [ 0.853937, 44.04218 ], [ 0.861963, 44.040185 ], [ 0.86534, 44.038325 ], [ 0.860854, 44.03746 ], [ 0.857868, 44.034901 ], [ 0.848912, 44.034104 ], [ 0.841769, 44.025329 ], [ 0.824257, 44.02906 ], [ 0.819879, 44.027696 ], [ 0.81585, 44.02604 ], [ 0.822488, 44.01464 ], [ 0.817424, 44.009073 ], [ 0.823675, 44.00673 ], [ 0.825149, 44.00441 ], [ 0.825979, 44.00096 ], [ 0.824219, 43.99446 ], [ 0.809019, 43.982047 ], [ 0.808342, 43.981179 ], [ 0.805555, 43.97941 ], [ 0.8009, 43.97726 ], [ 0.797205, 43.97512 ], [ 0.792216, 43.96615 ], [ 0.790753, 43.96307 ], [ 0.785137, 43.95809 ], [ 0.783778, 43.954916 ], [ 0.760114, 43.945304 ], [ 0.760549, 43.938669 ], [ 0.767958, 43.92478 ], [ 0.770004, 43.92214 ], [ 0.809298, 43.932302 ], [ 0.818672, 43.927583 ], [ 0.819943, 43.924979 ], [ 0.845156, 43.91536 ], [ 0.849347, 43.91718 ], [ 0.850473, 43.92001 ], [ 0.85214, 43.9227 ], [ 0.856065, 43.92102 ], [ 0.864678, 43.92318 ], [ 0.875289, 43.91283 ], [ 0.883738, 43.910326 ], [ 0.888197, 43.90962 ], [ 0.889231, 43.90425 ], [ 0.901197, 43.900841 ], [ 0.904654, 43.89893 ], [ 0.900571, 43.89653 ], [ 0.883251, 43.88887 ], [ 0.882866, 43.88583 ], [ 0.886033, 43.872245 ], [ 0.900972, 43.863621 ], [ 0.911024, 43.851768 ], [ 0.912698, 43.84849 ], [ 0.908473, 43.8494 ], [ 0.89538, 43.849253 ], [ 0.895239, 43.839897 ], [ 0.920762, 43.83302 ], [ 0.925163, 43.83203 ], [ 0.924206, 43.828939 ], [ 0.914785, 43.818577 ], [ 0.906108, 43.8111 ], [ 0.897205, 43.793232 ], [ 0.897026, 43.78662 ], [ 0.905542, 43.78412 ], [ 0.918354, 43.786473 ], [ 0.924358, 43.79153 ], [ 0.942257, 43.792112 ], [ 0.953983, 43.787372 ], [ 0.953642, 43.78406 ], [ 0.959099, 43.7718 ], [ 0.969891, 43.76138 ], [ 0.966056, 43.759567 ], [ 0.974622, 43.759295 ], [ 0.99219, 43.743895 ], [ 0.98905, 43.74386 ], [ 0.985922, 43.74382 ], [ 1.007789, 43.72879 ], [ 1.011973, 43.727695 ], [ 1.023419, 43.721873 ], [ 1.02217, 43.716017 ], [ 1.024347, 43.712987 ], [ 1.027388, 43.710432 ], [ 1.04073, 43.712176 ], [ 1.052021, 43.706375 ], [ 1.056108, 43.704756 ], [ 1.063925, 43.70292 ], [ 1.065703, 43.70023 ], [ 1.051577, 43.681849 ], [ 1.051339, 43.67864 ], [ 1.049022, 43.67602 ], [ 1.056834, 43.673842 ], [ 1.058015, 43.670848 ], [ 1.062518, 43.67116 ], [ 1.074826, 43.66171 ], [ 1.079461, 43.66252 ], [ 1.093458, 43.664383 ], [ 1.101383, 43.660561 ], [ 1.099477, 43.657494 ], [ 1.08861, 43.64729 ], [ 1.094498, 43.64243 ], [ 1.115457, 43.63673 ], [ 1.115933, 43.6396 ], [ 1.127421, 43.64076 ], [ 1.130581, 43.64265 ], [ 1.138899, 43.64183 ], [ 1.144935, 43.637614 ], [ 1.147455, 43.635182 ], [ 1.146816, 43.632336 ], [ 1.1426, 43.621311 ], [ 1.146019, 43.619029 ], [ 1.158654, 43.60518 ], [ 1.171418, 43.606896 ], [ 1.1809, 43.6141 ], [ 1.185959, 43.608462 ], [ 1.188439, 43.60562 ], [ 1.200479, 43.595726 ], [ 1.201942, 43.575518 ], [ 1.199343, 43.56918 ], [ 1.166831, 43.572528 ], [ 1.162297, 43.573802 ], [ 1.163369, 43.570859 ], [ 1.156696, 43.556634 ], [ 1.152204, 43.55702 ], [ 1.125451, 43.554299 ], [ 1.112391, 43.55671 ], [ 1.114137, 43.553653 ], [ 1.118141, 43.54553 ], [ 1.105617, 43.5366 ], [ 1.097081, 43.533231 ], [ 1.091417, 43.542501 ], [ 1.084108, 43.54648 ], [ 1.074806, 43.54643 ], [ 1.05963, 43.5393 ], [ 1.050552, 43.541036 ], [ 1.073076, 43.52903 ], [ 1.076593, 43.52668 ], [ 1.06845, 43.523492 ], [ 1.055315, 43.524976 ], [ 1.052928, 43.51839 ], [ 1.069796, 43.507 ], [ 1.072887, 43.50442 ], [ 1.05932, 43.504177 ], [ 1.051077, 43.48947 ], [ 1.033751, 43.48682 ], [ 1.03749, 43.48556 ], [ 1.020032, 43.47638 ], [ 1.017906, 43.47354 ], [ 1.038859, 43.463194 ], [ 1.04167, 43.460815 ], [ 1.04394, 43.458372 ], [ 1.037108, 43.45512 ], [ 1.039075, 43.452497 ], [ 1.034473, 43.45017 ], [ 1.03388, 43.44726 ], [ 1.033454, 43.44419 ], [ 1.032272, 43.441214 ], [ 1.021751, 43.432896 ], [ 1.018914, 43.430658 ], [ 1.021059, 43.428609 ], [ 1.028599, 43.42044 ], [ 1.023514, 43.41499 ], [ 1.022788, 43.4117 ], [ 1.004308, 43.41384 ], [ 0.997091, 43.40981 ], [ 0.993933, 43.407268 ], [ 1.001607, 43.391022 ], [ 0.998926, 43.384385 ], [ 1.005037, 43.37999 ], [ 1.002876, 43.37686 ], [ 0.998763, 43.376283 ], [ 0.993662, 43.366532 ], [ 0.989167, 43.365621 ], [ 0.980537, 43.36305 ], [ 0.976605, 43.363668 ], [ 0.96487, 43.37149 ], [ 0.968903, 43.377454 ], [ 0.963618, 43.386678 ], [ 0.9469, 43.38523 ], [ 0.944659, 43.380605 ], [ 0.942091, 43.383427 ], [ 0.927285, 43.39507 ], [ 0.927776, 43.39822 ], [ 0.917422, 43.40299 ], [ 0.917282, 43.40615 ], [ 0.90473, 43.407828 ], [ 0.90223, 43.40529 ], [ 0.897917, 43.406436 ], [ 0.885639, 43.41003 ], [ 0.883107, 43.4104 ], [ 0.880555, 43.410633 ], [ 0.875921, 43.41079 ], [ 0.864511, 43.41586 ], [ 0.857069, 43.41447 ], [ 0.853479, 43.41373 ], [ 0.844325, 43.409936 ], [ 0.840405, 43.41109 ], [ 0.821119, 43.417059 ], [ 0.818079, 43.41451 ], [ 0.807663, 43.40017 ], [ 0.807297, 43.39972 ], [ 0.803342, 43.401805 ], [ 0.770422, 43.41681 ], [ 0.752092, 43.41699 ], [ 0.75717, 43.40772 ], [ 0.75493, 43.404709 ], [ 0.751705, 43.400979 ], [ 0.749961, 43.398881 ], [ 0.744299, 43.38179 ], [ 0.740799, 43.37946 ], [ 0.7321, 43.371635 ], [ 0.716226, 43.378699 ], [ 0.702998, 43.364496 ], [ 0.700061, 43.361122 ], [ 0.69924, 43.359763 ], [ 0.697166, 43.357334 ], [ 0.693641, 43.35234 ], [ 0.690313, 43.349844 ], [ 0.675321, 43.332306 ], [ 0.674719, 43.32951 ], [ 0.659808, 43.319345 ], [ 0.65681, 43.317273 ], [ 0.644501, 43.31235 ], [ 0.616602, 43.31552 ], [ 0.611852, 43.31565 ], [ 0.610158, 43.3128 ], [ 0.606811, 43.31089 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "34", "CODE_DEPT": "33", "NOM_DEPT": "GIRONDE", "CODE_CHF": "063", "NOM_CHF": "BORDEAUX", "X_CHF_LIEU": "4172", "Y_CHF_LIEU": "64218", "X_CENTROID": "4175", "Y_CENTROID": "64203", "CODE_REG": "72", "NOM_REGION": "AQUITAINE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.140689, 44.22641 ], [ -0.144544, 44.22862 ], [ -0.166844, 44.24253 ], [ -0.176352, 44.25882 ], [ -0.190181, 44.268894 ], [ -0.19874, 44.26838 ], [ -0.206465, 44.264203 ], [ -0.226004, 44.264784 ], [ -0.228163, 44.25448 ], [ -0.223807, 44.209365 ], [ -0.223447, 44.205898 ], [ -0.259675, 44.19691 ], [ -0.264191, 44.195748 ], [ -0.273621, 44.194017 ], [ -0.305993, 44.20185 ], [ -0.310572, 44.20306 ], [ -0.368231, 44.20621 ], [ -0.372914, 44.207053 ], [ -0.385436, 44.208893 ], [ -0.389617, 44.209485 ], [ -0.396314, 44.237468 ], [ -0.384245, 44.28282 ], [ -0.383388, 44.28632 ], [ -0.38792, 44.287649 ], [ -0.402291, 44.28719 ], [ -0.429625, 44.301545 ], [ -0.43184, 44.322577 ], [ -0.43661, 44.3228 ], [ -0.479411, 44.325091 ], [ -0.517635, 44.339111 ], [ -0.519075, 44.342282 ], [ -0.528103, 44.36465 ], [ -0.532663, 44.366067 ], [ -0.560007, 44.37463 ], [ -0.570474, 44.38224 ], [ -0.603107, 44.390941 ], [ -0.607275, 44.39225 ], [ -0.641469, 44.40023 ], [ -0.637047, 44.40183 ], [ -0.625643, 44.408052 ], [ -0.627318, 44.429273 ], [ -0.628064, 44.44285 ], [ -0.63573, 44.44685 ], [ -0.639557, 44.448856 ], [ -0.643947, 44.450405 ], [ -0.677006, 44.456354 ], [ -0.682781, 44.45074 ], [ -0.681853, 44.4452 ], [ -0.694507, 44.441322 ], [ -0.698762, 44.44272 ], [ -0.703447, 44.443582 ], [ -0.726968, 44.44754 ], [ -0.774077, 44.440102 ], [ -0.780281, 44.428111 ], [ -0.784941, 44.42914 ], [ -0.794567, 44.42809 ], [ -0.81122, 44.420835 ], [ -0.840281, 44.41841 ], [ -0.909148, 44.43614 ], [ -0.919623, 44.44316 ], [ -0.944148, 44.43709 ], [ -0.948141, 44.435901 ], [ -0.970882, 44.429234 ], [ -1.024305, 44.423247 ], [ -1.029159, 44.4227 ], [ -1.025627, 44.425028 ], [ -1.007738, 44.436515 ], [ -0.992453, 44.461461 ], [ -0.990686, 44.46477 ], [ -0.981033, 44.48479 ], [ -0.988434, 44.50901 ], [ -0.996354, 44.51144 ], [ -1.011142, 44.510376 ], [ -1.030022, 44.50858 ], [ -1.080766, 44.53059 ], [ -1.085166, 44.53219 ], [ -1.087011, 44.529124 ], [ -1.106985, 44.50264 ], [ -1.111609, 44.501446 ], [ -1.199818, 44.47959 ], [ -1.204313, 44.478576 ], [ -1.25389, 44.467604 ], [ -1.250952, 44.506348 ], [ -1.259822, 44.544429 ], [ -1.232352, 44.568782 ], [ -1.213458, 44.597461 ], [ -1.20507, 44.61407 ], [ -1.204778, 44.635188 ], [ -1.204346, 44.638702 ], [ -1.193837, 44.65816 ], [ -1.186043, 44.662233 ], [ -1.16174, 44.663097 ], [ -1.143716, 44.6585 ], [ -1.141916, 44.651878 ], [ -1.153621, 44.646544 ], [ -1.153779, 44.643202 ], [ -1.145872, 44.642832 ], [ -1.139061, 44.64705 ], [ -1.124932, 44.64726 ], [ -1.11836, 44.643563 ], [ -1.118773, 44.64023 ], [ -1.112496, 44.64487 ], [ -1.084311, 44.641212 ], [ -1.066299, 44.646203 ], [ -1.056811, 44.644731 ], [ -1.048876, 44.64835 ], [ -1.044034, 44.648625 ], [ -1.040816, 44.65111 ], [ -1.016365, 44.641512 ], [ -1.018581, 44.647796 ], [ -1.009295, 44.64898 ], [ -1.004681, 44.648192 ], [ -1.006272, 44.654769 ], [ -1.018659, 44.66465 ], [ -1.017862, 44.66799 ], [ -1.020115, 44.67106 ], [ -1.02534, 44.676991 ], [ -1.051925, 44.684755 ], [ -1.06248, 44.691994 ], [ -1.056332, 44.694888 ], [ -1.037418, 44.69232 ], [ -1.037786, 44.695504 ], [ -1.078191, 44.722193 ], [ -1.100564, 44.73941 ], [ -1.117714, 44.74509 ], [ -1.12204, 44.751121 ], [ -1.118511, 44.753389 ], [ -1.116329, 44.756409 ], [ -1.119323, 44.753764 ], [ -1.128249, 44.75143 ], [ -1.132186, 44.75336 ], [ -1.161933, 44.774908 ], [ -1.177624, 44.761569 ], [ -1.174084, 44.751389 ], [ -1.177351, 44.74479 ], [ -1.207736, 44.7167 ], [ -1.219313, 44.709896 ], [ -1.229232, 44.697535 ], [ -1.237442, 44.68067 ], [ -1.238353, 44.67715 ], [ -1.244958, 44.64561 ], [ -1.241877, 44.638918 ], [ -1.244944, 44.62482 ], [ -1.251794, 44.620235 ], [ -1.26076, 44.628129 ], [ -1.261328, 44.649493 ], [ -1.233619, 44.8054 ], [ -1.232986, 44.80894 ], [ -1.214863, 44.917282 ], [ -1.214517, 44.920794 ], [ -1.194636, 45.06483 ], [ -1.194341, 45.068354 ], [ -1.187448, 45.12496 ], [ -1.187115, 45.12851 ], [ -1.169941, 45.246494 ], [ -1.169507, 45.25007 ], [ -1.164967, 45.28157 ], [ -1.16454, 45.28507 ], [ -1.158977, 45.355286 ], [ -1.160302, 45.39044 ], [ -1.160494, 45.40565 ], [ -1.151499, 45.44031 ], [ -1.154857, 45.46414 ], [ -1.155895, 45.46756 ], [ -1.154377, 45.48119 ], [ -1.137142, 45.50997 ], [ -1.120295, 45.522636 ], [ -1.117079, 45.52528 ], [ -1.1003, 45.5428 ], [ -1.093177, 45.559984 ], [ -1.071278, 45.568354 ], [ -1.06672, 45.56975 ], [ -1.0628, 45.56828 ], [ -1.061945, 45.554175 ], [ -1.043822, 45.5429 ], [ -1.041002, 45.539422 ], [ -1.040934, 45.53602 ], [ -1.044327, 45.534163 ], [ -1.054126, 45.53536 ], [ -1.057592, 45.52959 ], [ -1.069896, 45.525422 ], [ -1.068351, 45.515027 ], [ -1.051666, 45.50257 ], [ -1.047731, 45.50048 ], [ -1.02786, 45.49257 ], [ -1.019999, 45.48475 ], [ -1.016856, 45.48241 ], [ -0.982439, 45.46076 ], [ -0.979011, 45.45851 ], [ -0.932489, 45.439639 ], [ -0.904069, 45.41155 ], [ -0.903699, 45.408099 ], [ -0.868284, 45.391369 ], [ -0.864457, 45.389328 ], [ -0.846176, 45.37844 ], [ -0.843365, 45.37571 ], [ -0.810748, 45.35184 ], [ -0.810253, 45.348518 ], [ -0.803319, 45.343967 ], [ -0.784062, 45.312879 ], [ -0.782552, 45.30965 ], [ -0.768074, 45.28733 ], [ -0.767201, 45.28386 ], [ -0.764974, 45.280764 ], [ -0.746968, 45.226823 ], [ -0.742433, 45.227867 ], [ -0.73797, 45.229035 ], [ -0.695018, 45.236153 ], [ -0.69012, 45.236369 ], [ -0.699556, 45.28127 ], [ -0.698893, 45.284755 ], [ -0.714581, 45.324304 ], [ -0.714861, 45.32774 ], [ -0.708651, 45.32736 ], [ -0.650712, 45.3225 ], [ -0.642088, 45.3151 ], [ -0.633594, 45.31845 ], [ -0.607635, 45.324009 ], [ -0.599195, 45.32134 ], [ -0.594481, 45.321143 ], [ -0.594006, 45.331596 ], [ -0.585303, 45.342899 ], [ -0.572742, 45.33321 ], [ -0.568974, 45.331235 ], [ -0.573978, 45.31424 ], [ -0.573867, 45.310717 ], [ -0.570631, 45.30029 ], [ -0.567662, 45.29742 ], [ -0.55176, 45.295188 ], [ -0.548704, 45.293121 ], [ -0.516876, 45.288782 ], [ -0.513854, 45.286227 ], [ -0.490146, 45.291558 ], [ -0.48602, 45.293579 ], [ -0.472986, 45.293633 ], [ -0.462073, 45.28858 ], [ -0.457654, 45.288358 ], [ -0.437376, 45.282116 ], [ -0.433463, 45.28057 ], [ -0.418508, 45.27361 ], [ -0.4177, 45.264387 ], [ -0.41912, 45.261324 ], [ -0.424028, 45.24856 ], [ -0.409905, 45.24797 ], [ -0.406009, 45.238707 ], [ -0.413635, 45.226568 ], [ -0.413187, 45.22321 ], [ -0.419461, 45.206985 ], [ -0.417435, 45.20388 ], [ -0.402585, 45.189701 ], [ -0.40061, 45.182813 ], [ -0.399471, 45.179378 ], [ -0.385058, 45.146596 ], [ -0.383396, 45.143339 ], [ -0.378517, 45.15678 ], [ -0.366174, 45.167563 ], [ -0.362959, 45.170237 ], [ -0.338768, 45.16624 ], [ -0.323322, 45.157159 ], [ -0.316676, 45.140486 ], [ -0.31363, 45.13765 ], [ -0.309374, 45.146624 ], [ -0.307551, 45.149589 ], [ -0.279962, 45.143248 ], [ -0.275713, 45.141571 ], [ -0.273944, 45.134855 ], [ -0.256783, 45.114793 ], [ -0.245672, 45.108214 ], [ -0.221237, 45.10776 ], [ -0.212445, 45.102238 ], [ -0.209721, 45.100235 ], [ -0.191442, 45.09475 ], [ -0.166877, 45.092747 ], [ -0.161926, 45.09249 ], [ -0.15327, 45.08924 ], [ -0.143512, 45.090354 ], [ -0.110974, 45.115524 ], [ -0.092825, 45.121022 ], [ -0.087832, 45.12143 ], [ -0.061772, 45.098766 ], [ -0.057088, 45.098976 ], [ -0.05373, 45.10109 ], [ -0.046095, 45.09778 ], [ -0.0402, 45.10238 ], [ -0.025092, 45.11473 ], [ 0.00251, 45.119003 ], [ 0.006979, 45.117781 ], [ 0.031843, 45.11712 ], [ 0.045793, 45.11346 ], [ 0.061888, 45.09584 ], [ 0.067585, 45.0789 ], [ 0.070631, 45.076106 ], [ 0.072345, 45.0747 ], [ 0.073296, 45.07013 ], [ 0.055929, 45.04207 ], [ 0.044806, 45.035635 ], [ 0.042155, 45.025446 ], [ 0.040691, 45.02214 ], [ 0.03914, 45.02431 ], [ 0.039453, 45.02081 ], [ 0.035641, 45.01434 ], [ 0.040106, 44.99355 ], [ 0.036635, 44.991484 ], [ 0.029545, 44.97648 ], [ 0.017709, 44.98063 ], [ 0.013706, 44.978806 ], [ 0.014522, 44.97207 ], [ 0.00923, 44.962774 ], [ 0.005127, 44.94624 ], [ 0.016192, 44.931192 ], [ 0.018212, 44.928029 ], [ 0.022059, 44.92531 ], [ 0.033907, 44.91496 ], [ 0.02043, 44.897257 ], [ 0.01719, 44.894782 ], [ 0.015948, 44.894307 ], [ 0.014971, 44.89123 ], [ 0.012617, 44.8852 ], [ 0.001093, 44.87627 ], [ 0.001218, 44.87605 ], [ -0.001536, 44.87069 ], [ -0.004807, 44.868592 ], [ -0.010036, 44.859792 ], [ -0.032557, 44.855286 ], [ -0.03421, 44.852114 ], [ 0.003987, 44.84556 ], [ 0.008881, 44.845923 ], [ 0.022247, 44.84942 ], [ 0.039033, 44.837569 ], [ 0.037439, 44.83082 ], [ 0.043329, 44.825728 ], [ 0.047816, 44.82441 ], [ 0.050846, 44.82433 ], [ 0.064887, 44.82454 ], [ 0.070891, 44.819144 ], [ 0.075697, 44.81947 ], [ 0.082667, 44.831013 ], [ 0.091294, 44.83264 ], [ 0.095753, 44.83282 ], [ 0.108644, 44.830333 ], [ 0.109285, 44.820097 ], [ 0.114027, 44.819446 ], [ 0.114803, 44.81986 ], [ 0.124248, 44.827991 ], [ 0.148828, 44.82909 ], [ 0.157907, 44.82632 ], [ 0.17755, 44.82614 ], [ 0.182194, 44.82493 ], [ 0.184076, 44.823481 ], [ 0.189312, 44.82005 ], [ 0.192844, 44.820803 ], [ 0.206411, 44.838902 ], [ 0.209733, 44.841373 ], [ 0.217722, 44.84395 ], [ 0.22209, 44.84448 ], [ 0.238317, 44.854926 ], [ 0.241753, 44.8569 ], [ 0.243751, 44.85955 ], [ 0.239023, 44.87198 ], [ 0.284058, 44.864991 ], [ 0.288047, 44.86318 ], [ 0.311876, 44.847777 ], [ 0.315056, 44.84538 ], [ 0.299577, 44.83546 ], [ 0.300752, 44.82919 ], [ 0.29246, 44.83157 ], [ 0.285758, 44.82302 ], [ 0.268305, 44.826353 ], [ 0.263719, 44.826421 ], [ 0.263979, 44.8229 ], [ 0.265975, 44.81259 ], [ 0.274681, 44.79877 ], [ 0.27435, 44.79568 ], [ 0.271666, 44.78634 ], [ 0.274025, 44.783622 ], [ 0.280226, 44.774397 ], [ 0.293688, 44.76457 ], [ 0.297325, 44.76229 ], [ 0.296565, 44.75916 ], [ 0.271682, 44.75319 ], [ 0.267506, 44.751698 ], [ 0.249122, 44.751225 ], [ 0.235944, 44.76419 ], [ 0.226601, 44.764158 ], [ 0.224972, 44.76104 ], [ 0.218306, 44.75623 ], [ 0.211863, 44.739564 ], [ 0.218632, 44.72663 ], [ 0.201542, 44.72243 ], [ 0.200062, 44.72576 ], [ 0.193916, 44.74257 ], [ 0.18941, 44.74877 ], [ 0.184529, 44.74903 ], [ 0.180434, 44.745498 ], [ 0.178386, 44.742716 ], [ 0.172701, 44.73461 ], [ 0.164495, 44.73569 ], [ 0.161358, 44.73348 ], [ 0.15262, 44.73082 ], [ 0.141197, 44.73751 ], [ 0.139344, 44.72771 ], [ 0.136039, 44.71121 ], [ 0.130843, 44.70558 ], [ 0.128047, 44.70839 ], [ 0.119915, 44.71202 ], [ 0.11051, 44.71064 ], [ 0.105026, 44.701823 ], [ 0.100345, 44.70098 ], [ 0.107043, 44.68542 ], [ 0.115539, 44.68227 ], [ 0.129759, 44.683233 ], [ 0.134422, 44.682417 ], [ 0.133947, 44.679351 ], [ 0.130842, 44.673622 ], [ 0.133519, 44.667908 ], [ 0.142061, 44.66576 ], [ 0.159392, 44.66854 ], [ 0.163123, 44.67041 ], [ 0.167618, 44.668372 ], [ 0.180463, 44.664214 ], [ 0.183025, 44.661189 ], [ 0.181612, 44.65866 ], [ 0.17697, 44.65432 ], [ 0.173909, 44.651696 ], [ 0.168345, 44.64613 ], [ 0.165214, 44.632862 ], [ 0.160289, 44.632717 ], [ 0.146378, 44.635359 ], [ 0.141194, 44.641315 ], [ 0.13842, 44.63903 ], [ 0.139263, 44.627148 ], [ 0.154363, 44.614908 ], [ 0.150858, 44.608647 ], [ 0.146241, 44.608429 ], [ 0.133128, 44.606162 ], [ 0.117433, 44.59422 ], [ 0.11663, 44.593895 ], [ 0.113766, 44.59173 ], [ 0.110282, 44.59008 ], [ 0.105528, 44.58912 ], [ 0.082236, 44.58391 ], [ 0.085548, 44.57763 ], [ 0.082973, 44.567949 ], [ 0.074869, 44.560195 ], [ 0.072357, 44.550318 ], [ 0.068687, 44.54822 ], [ 0.064973, 44.55035 ], [ 0.03787, 44.554037 ], [ 0.032713, 44.55052 ], [ 0.029028, 44.548493 ], [ 0.020984, 44.54146 ], [ 0.016807, 44.54255 ], [ -0.001017, 44.55177 ], [ -0.00109, 44.548408 ], [ 0.017923, 44.53001 ], [ 0.009506, 44.521994 ], [ 0.00482, 44.522038 ], [ 0.001465, 44.520722 ], [ -0.00018, 44.518254 ], [ -0.004197, 44.51732 ], [ -0.015565, 44.504789 ], [ -0.01614, 44.501657 ], [ -0.016043, 44.489705 ], [ -0.013816, 44.46682 ], [ -0.007298, 44.459224 ], [ -0.002912, 44.460254 ], [ 0.004494, 44.456735 ], [ 0.007509, 44.44754 ], [ 0.004788, 44.44501 ], [ -0.002954, 44.442578 ], [ -0.007568, 44.433813 ], [ -0.005018, 44.424379 ], [ -0.011765, 44.420303 ], [ 0.006621, 44.397338 ], [ 0.015794, 44.3916 ], [ 0.018292, 44.38925 ], [ 0.016519, 44.386175 ], [ 0.010834, 44.38133 ], [ 0.021233, 44.375385 ], [ 0.014725, 44.366615 ], [ 0.009942, 44.367052 ], [ -0.001647, 44.37223 ], [ -0.011159, 44.37138 ], [ -0.028821, 44.36019 ], [ -0.032446, 44.360821 ], [ -0.036189, 44.36084 ], [ -0.040758, 44.360123 ], [ -0.059259, 44.35998 ], [ -0.069523, 44.35313 ], [ -0.078819, 44.35369 ], [ -0.080176, 44.350477 ], [ -0.085752, 44.33761 ], [ -0.080414, 44.334319 ], [ -0.077776, 44.332654 ], [ -0.057226, 44.31908 ], [ -0.03762, 44.299513 ], [ -0.034811, 44.29673 ], [ -0.042888, 44.293206 ], [ -0.033608, 44.27401 ], [ -0.049627, 44.267886 ], [ -0.053362, 44.265774 ], [ -0.064197, 44.249132 ], [ -0.066808, 44.246663 ], [ -0.073116, 44.251387 ], [ -0.08848, 44.238471 ], [ -0.104834, 44.231884 ], [ -0.11373, 44.233713 ], [ -0.119197, 44.238809 ], [ -0.123182, 44.240651 ], [ -0.125932, 44.23437 ], [ -0.136872, 44.228289 ], [ -0.140689, 44.22641 ] ] ], [ [ [ -1.029971, 44.64921 ], [ -1.031367, 44.652126 ], [ -1.026048, 44.66128 ], [ -1.014504, 44.652433 ], [ -1.017755, 44.65056 ], [ -1.024494, 44.652439 ], [ -1.028479, 44.65059 ], [ -1.029971, 44.64921 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "35", "CODE_DEPT": "34", "NOM_DEPT": "HERAULT", "CODE_CHF": "172", "NOM_CHF": "MONTPELLIER", "X_CHF_LIEU": "7707", "Y_CHF_LIEU": "62795", "X_CENTROID": "7296", "Y_CENTROID": "62756", "CODE_REG": "91", "NOM_REGION": "LANGUEDOC-ROUSSILLON" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.240561, 43.212809 ], [ 3.228989, 43.21916 ], [ 3.201526, 43.24776 ], [ 3.193229, 43.2504 ], [ 3.184023, 43.250124 ], [ 3.173126, 43.243836 ], [ 3.159183, 43.243228 ], [ 3.146508, 43.247384 ], [ 3.147017, 43.254157 ], [ 3.141627, 43.25951 ], [ 3.118897, 43.260731 ], [ 3.114664, 43.254745 ], [ 3.101424, 43.25616 ], [ 3.097452, 43.257928 ], [ 3.093639, 43.259874 ], [ 3.086199, 43.26382 ], [ 3.076978, 43.26293 ], [ 3.054347, 43.28004 ], [ 3.036064, 43.281912 ], [ 3.011118, 43.27762 ], [ 3.012103, 43.280936 ], [ 3.005738, 43.286244 ], [ 3.004816, 43.296769 ], [ 3.006281, 43.30013 ], [ 3.004423, 43.319708 ], [ 2.995281, 43.319555 ], [ 2.990723, 43.319222 ], [ 2.961798, 43.31304 ], [ 2.957536, 43.312476 ], [ 2.946079, 43.31196 ], [ 2.942061, 43.313666 ], [ 2.921249, 43.32608 ], [ 2.918369, 43.32351 ], [ 2.910982, 43.32005 ], [ 2.894929, 43.32626 ], [ 2.890884, 43.32793 ], [ 2.885119, 43.333249 ], [ 2.891178, 43.341802 ], [ 2.889495, 43.351767 ], [ 2.889904, 43.357345 ], [ 2.889793, 43.363723 ], [ 2.872288, 43.372934 ], [ 2.870568, 43.381011 ], [ 2.869181, 43.383636 ], [ 2.856778, 43.376288 ], [ 2.855626, 43.37348 ], [ 2.869575, 43.35645 ], [ 2.873742, 43.339633 ], [ 2.868538, 43.330064 ], [ 2.845974, 43.32562 ], [ 2.841926, 43.323686 ], [ 2.818156, 43.32396 ], [ 2.806109, 43.319211 ], [ 2.816603, 43.30865 ], [ 2.809682, 43.30437 ], [ 2.805735, 43.302361 ], [ 2.801825, 43.30031 ], [ 2.786537, 43.2844 ], [ 2.786968, 43.27444 ], [ 2.78708, 43.274035 ], [ 2.783181, 43.266633 ], [ 2.779998, 43.265241 ], [ 2.773293, 43.261242 ], [ 2.772493, 43.25803 ], [ 2.768509, 43.25726 ], [ 2.75252, 43.254594 ], [ 2.750072, 43.25739 ], [ 2.740772, 43.264578 ], [ 2.737904, 43.26725 ], [ 2.717737, 43.275558 ], [ 2.708919, 43.273655 ], [ 2.705185, 43.274472 ], [ 2.702969, 43.27682 ], [ 2.700303, 43.28281 ], [ 2.705513, 43.292266 ], [ 2.699148, 43.30833 ], [ 2.700735, 43.311207 ], [ 2.687773, 43.323 ], [ 2.685553, 43.31658 ], [ 2.677216, 43.31361 ], [ 2.674858, 43.303711 ], [ 2.659751, 43.29633 ], [ 2.659253, 43.292967 ], [ 2.643911, 43.29451 ], [ 2.639754, 43.295557 ], [ 2.631193, 43.29593 ], [ 2.624621, 43.28762 ], [ 2.616958, 43.284441 ], [ 2.617835, 43.287683 ], [ 2.601175, 43.298256 ], [ 2.600932, 43.301421 ], [ 2.599712, 43.31384 ], [ 2.596442, 43.31456 ], [ 2.592008, 43.31798 ], [ 2.590985, 43.3214 ], [ 2.583539, 43.333912 ], [ 2.555536, 43.337471 ], [ 2.551506, 43.33584 ], [ 2.540081, 43.34523 ], [ 2.54298, 43.347989 ], [ 2.555239, 43.366365 ], [ 2.552399, 43.37642 ], [ 2.557057, 43.38978 ], [ 2.566312, 43.39757 ], [ 2.569031, 43.400247 ], [ 2.573478, 43.399491 ], [ 2.586889, 43.39965 ], [ 2.593749, 43.40835 ], [ 2.593046, 43.411712 ], [ 2.583821, 43.412666 ], [ 2.569787, 43.42123 ], [ 2.565787, 43.42296 ], [ 2.579276, 43.4233 ], [ 2.597996, 43.43271 ], [ 2.602191, 43.43133 ], [ 2.606371, 43.431994 ], [ 2.606095, 43.43803 ], [ 2.608845, 43.44041 ], [ 2.617661, 43.438531 ], [ 2.641062, 43.45559 ], [ 2.644567, 43.45792 ], [ 2.644608, 43.46127 ], [ 2.641583, 43.46706 ], [ 2.663624, 43.46417 ], [ 2.668, 43.47005 ], [ 2.665094, 43.472677 ], [ 2.657633, 43.480958 ], [ 2.655033, 43.49418 ], [ 2.659896, 43.50346 ], [ 2.658852, 43.516923 ], [ 2.671518, 43.513697 ], [ 2.67602, 43.51346 ], [ 2.667984, 43.522062 ], [ 2.655687, 43.52725 ], [ 2.616643, 43.56538 ], [ 2.617994, 43.56872 ], [ 2.631005, 43.583242 ], [ 2.627227, 43.59319 ], [ 2.62254, 43.592463 ], [ 2.620069, 43.595423 ], [ 2.615603, 43.600518 ], [ 2.627779, 43.611106 ], [ 2.645491, 43.660672 ], [ 2.649787, 43.659444 ], [ 2.653587, 43.649991 ], [ 2.667283, 43.649448 ], [ 2.684695, 43.65381 ], [ 2.687337, 43.65093 ], [ 2.719328, 43.644412 ], [ 2.738722, 43.630334 ], [ 2.746507, 43.617845 ], [ 2.754524, 43.614139 ], [ 2.759078, 43.61489 ], [ 2.781699, 43.625876 ], [ 2.795131, 43.62463 ], [ 2.801592, 43.62954 ], [ 2.804692, 43.63216 ], [ 2.814703, 43.639479 ], [ 2.828424, 43.637432 ], [ 2.844894, 43.644763 ], [ 2.86877, 43.644965 ], [ 2.884296, 43.65713 ], [ 2.90294, 43.654647 ], [ 2.907798, 43.65475 ], [ 2.918495, 43.661993 ], [ 2.919588, 43.68659 ], [ 2.934967, 43.694712 ], [ 2.942225, 43.691774 ], [ 2.954969, 43.69654 ], [ 2.957596, 43.699448 ], [ 2.969351, 43.704023 ], [ 2.973965, 43.704627 ], [ 2.982088, 43.70803 ], [ 2.996006, 43.706493 ], [ 3.013333, 43.70144 ], [ 3.018665, 43.696 ], [ 3.022657, 43.69437 ], [ 3.031387, 43.69243 ], [ 3.048231, 43.696953 ], [ 3.060678, 43.692807 ], [ 3.061872, 43.69601 ], [ 3.062363, 43.7024 ], [ 3.069165, 43.706849 ], [ 3.054971, 43.715972 ], [ 3.057648, 43.725743 ], [ 3.053522, 43.732 ], [ 3.057115, 43.73844 ], [ 3.053162, 43.74478 ], [ 3.056275, 43.75495 ], [ 3.065413, 43.755703 ], [ 3.07351, 43.767594 ], [ 3.058796, 43.77968 ], [ 3.057048, 43.7828 ], [ 3.05838, 43.7861 ], [ 3.048568, 43.801498 ], [ 3.050173, 43.804619 ], [ 3.063813, 43.81263 ], [ 3.058661, 43.818006 ], [ 3.058733, 43.827967 ], [ 3.066312, 43.83527 ], [ 3.071172, 43.834826 ], [ 3.085706, 43.835554 ], [ 3.112567, 43.82707 ], [ 3.126978, 43.817668 ], [ 3.150705, 43.813769 ], [ 3.151466, 43.81479 ], [ 3.155002, 43.817065 ], [ 3.18238, 43.81283 ], [ 3.205308, 43.81296 ], [ 3.222688, 43.81778 ], [ 3.231794, 43.826063 ], [ 3.236311, 43.82744 ], [ 3.24472, 43.828807 ], [ 3.249037, 43.82958 ], [ 3.251333, 43.840067 ], [ 3.236408, 43.853896 ], [ 3.235019, 43.86087 ], [ 3.242077, 43.873934 ], [ 3.255494, 43.87803 ], [ 3.261857, 43.88748 ], [ 3.262608, 43.891 ], [ 3.274142, 43.89853 ], [ 3.277444, 43.896771 ], [ 3.285828, 43.893312 ], [ 3.295145, 43.89498 ], [ 3.318657, 43.891142 ], [ 3.342568, 43.89419 ], [ 3.341916, 43.903707 ], [ 3.35509, 43.912512 ], [ 3.358663, 43.91452 ], [ 3.359876, 43.91153 ], [ 3.370004, 43.916521 ], [ 3.381306, 43.91239 ], [ 3.394416, 43.910775 ], [ 3.401726, 43.91473 ], [ 3.423923, 43.91131 ], [ 3.435778, 43.900367 ], [ 3.43703, 43.886782 ], [ 3.431008, 43.87366 ], [ 3.421606, 43.87232 ], [ 3.430814, 43.864425 ], [ 3.435182, 43.86296 ], [ 3.447119, 43.868868 ], [ 3.460847, 43.87138 ], [ 3.482082, 43.890453 ], [ 3.491584, 43.89129 ], [ 3.496146, 43.89078 ], [ 3.507184, 43.896378 ], [ 3.520677, 43.888422 ], [ 3.523528, 43.88579 ], [ 3.521645, 43.86495 ], [ 3.527026, 43.859035 ], [ 3.548734, 43.85169 ], [ 3.561603, 43.855326 ], [ 3.57437, 43.84491 ], [ 3.578908, 43.843563 ], [ 3.581794, 43.846185 ], [ 3.599475, 43.849635 ], [ 3.599871, 43.852972 ], [ 3.583258, 43.85928 ], [ 3.577363, 43.867888 ], [ 3.582958, 43.87743 ], [ 3.600522, 43.88893 ], [ 3.602208, 43.89539 ], [ 3.621068, 43.91414 ], [ 3.623589, 43.916979 ], [ 3.637759, 43.91491 ], [ 3.638102, 43.898868 ], [ 3.645286, 43.90239 ], [ 3.644609, 43.913 ], [ 3.662454, 43.91127 ], [ 3.66699, 43.91057 ], [ 3.67342, 43.91326 ], [ 3.678652, 43.9261 ], [ 3.676573, 43.9324 ], [ 3.683658, 43.94063 ], [ 3.686397, 43.939498 ], [ 3.689503, 43.939937 ], [ 3.684487, 43.95166 ], [ 3.699443, 43.95823 ], [ 3.717269, 43.96098 ], [ 3.731136, 43.970681 ], [ 3.787337, 43.96687 ], [ 3.786956, 43.96361 ], [ 3.787083, 43.95384 ], [ 3.795518, 43.942277 ], [ 3.820307, 43.942408 ], [ 3.823284, 43.939785 ], [ 3.828287, 43.92406 ], [ 3.824003, 43.918054 ], [ 3.82249, 43.914978 ], [ 3.799542, 43.89082 ], [ 3.805468, 43.87859 ], [ 3.822361, 43.874084 ], [ 3.827923, 43.868948 ], [ 3.830809, 43.86642 ], [ 3.834475, 43.868664 ], [ 3.847961, 43.868749 ], [ 3.857116, 43.876165 ], [ 3.900092, 43.87873 ], [ 3.914357, 43.88765 ], [ 3.919554, 43.88197 ], [ 3.918219, 43.878665 ], [ 3.91773, 43.86833 ], [ 3.923111, 43.858788 ], [ 3.933721, 43.85425 ], [ 3.937902, 43.853577 ], [ 3.942114, 43.853379 ], [ 3.958993, 43.85351 ], [ 3.957748, 43.85043 ], [ 3.95814, 43.844132 ], [ 3.979528, 43.84268 ], [ 3.973738, 43.837118 ], [ 3.974203, 43.82721 ], [ 3.962087, 43.816405 ], [ 3.960123, 43.806046 ], [ 3.963614, 43.80451 ], [ 3.974348, 43.801474 ], [ 3.978808, 43.80287 ], [ 3.995606, 43.80989 ], [ 3.998455, 43.81149 ], [ 4.001341, 43.81305 ], [ 4.02865, 43.80156 ], [ 4.031522, 43.79893 ], [ 4.049778, 43.78757 ], [ 4.053123, 43.785046 ], [ 4.051987, 43.778 ], [ 4.051757, 43.774269 ], [ 4.059831, 43.77232 ], [ 4.064929, 43.767319 ], [ 4.067248, 43.764498 ], [ 4.083862, 43.767709 ], [ 4.091102, 43.76379 ], [ 4.095561, 43.75153 ], [ 4.099236, 43.749592 ], [ 4.103785, 43.74861 ], [ 4.111703, 43.74018 ], [ 4.114162, 43.73767 ], [ 4.122517, 43.737124 ], [ 4.133483, 43.74062 ], [ 4.143857, 43.735489 ], [ 4.145038, 43.732444 ], [ 4.15158, 43.71774 ], [ 4.153883, 43.71501 ], [ 4.162321, 43.70776 ], [ 4.164613, 43.696 ], [ 4.164313, 43.69283 ], [ 4.163626, 43.69014 ], [ 4.193818, 43.65175 ], [ 4.192906, 43.641866 ], [ 4.170054, 43.61081 ], [ 4.149622, 43.596115 ], [ 4.150216, 43.58556 ], [ 4.122875, 43.588359 ], [ 4.099889, 43.585274 ], [ 4.088261, 43.59093 ], [ 4.079447, 43.590302 ], [ 4.075126, 43.58899 ], [ 4.074673, 43.58859 ], [ 4.083496, 43.588354 ], [ 4.106343, 43.571378 ], [ 4.108712, 43.56844 ], [ 4.10274, 43.557143 ], [ 4.101042, 43.554371 ], [ 4.042516, 43.55683 ], [ 4.037657, 43.556336 ], [ 4.004763, 43.550959 ], [ 3.974016, 43.5412 ], [ 3.969386, 43.540231 ], [ 3.912291, 43.51849 ], [ 3.907956, 43.5172 ], [ 3.903821, 43.515261 ], [ 3.85278, 43.487458 ], [ 3.826219, 43.466493 ], [ 3.823545, 43.46355 ], [ 3.794526, 43.44003 ], [ 3.724916, 43.415799 ], [ 3.725368, 43.40164 ], [ 3.689099, 43.39198 ], [ 3.665745, 43.39295 ], [ 3.652847, 43.388098 ], [ 3.61948, 43.36763 ], [ 3.566689, 43.326158 ], [ 3.563656, 43.32348 ], [ 3.539809, 43.302016 ], [ 3.516013, 43.275981 ], [ 3.507807, 43.272431 ], [ 3.443607, 43.282168 ], [ 3.433626, 43.289459 ], [ 3.428965, 43.29021 ], [ 3.424149, 43.29008 ], [ 3.400448, 43.287284 ], [ 3.364786, 43.277371 ], [ 3.36059, 43.27587 ], [ 3.343555, 43.270307 ], [ 3.340277, 43.2677 ], [ 3.311623, 43.254482 ], [ 3.308215, 43.252324 ], [ 3.271341, 43.233398 ], [ 3.267666, 43.23132 ], [ 3.240561, 43.212809 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "36", "CODE_DEPT": "35", "NOM_DEPT": "ILLE-ET-VILAINE", "CODE_CHF": "238", "NOM_CHF": "RENNES", "X_CHF_LIEU": "3518", "Y_CHF_LIEU": "67896", "X_CENTROID": "3555", "Y_CENTROID": "67934", "CODE_REG": "53", "NOM_REGION": "BRETAGNE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.097036, 47.63136 ], [ -2.103189, 47.63486 ], [ -2.103979, 47.6381 ], [ -2.095198, 47.640469 ], [ -2.095004, 47.643752 ], [ -2.112425, 47.64754 ], [ -2.110371, 47.657015 ], [ -2.107446, 47.65979 ], [ -2.103234, 47.66599 ], [ -2.10385, 47.67619 ], [ -2.107481, 47.67771 ], [ -2.122663, 47.68267 ], [ -2.124075, 47.6929 ], [ -2.119132, 47.70971 ], [ -2.129069, 47.71756 ], [ -2.128417, 47.72396 ], [ -2.107391, 47.732748 ], [ -2.109457, 47.73588 ], [ -2.105087, 47.73757 ], [ -2.05986, 47.73831 ], [ -2.062322, 47.75127 ], [ -2.067314, 47.75088 ], [ -2.082389, 47.7505 ], [ -2.088468, 47.762597 ], [ -2.12863, 47.7614 ], [ -2.127329, 47.76455 ], [ -2.125108, 47.770656 ], [ -2.111378, 47.77228 ], [ -2.110098, 47.7786 ], [ -2.105343, 47.779665 ], [ -2.095417, 47.77899 ], [ -2.075998, 47.78918 ], [ -2.072142, 47.798552 ], [ -2.070534, 47.80807 ], [ -2.070464, 47.8114 ], [ -2.066864, 47.813246 ], [ -2.04677, 47.81919 ], [ -2.0452, 47.82226 ], [ -2.036045, 47.83346 ], [ -2.040324, 47.83522 ], [ -2.049442, 47.83786 ], [ -2.05393, 47.85095 ], [ -2.050927, 47.857133 ], [ -2.051378, 47.86018 ], [ -2.054704, 47.86879 ], [ -2.05828, 47.86651 ], [ -2.06932, 47.851884 ], [ -2.095195, 47.843258 ], [ -2.099383, 47.84375 ], [ -2.109451, 47.84884 ], [ -2.10618, 47.8516 ], [ -2.099109, 47.86447 ], [ -2.114176, 47.87883 ], [ -2.114768, 47.88232 ], [ -2.112087, 47.892485 ], [ -2.103623, 47.90039 ], [ -2.093704, 47.902133 ], [ -2.08967, 47.90286 ], [ -2.082017, 47.90892 ], [ -2.083715, 47.911666 ], [ -2.078951, 47.91949 ], [ -2.09806, 47.935717 ], [ -2.104673, 47.95198 ], [ -2.108884, 47.95319 ], [ -2.111211, 47.95908 ], [ -2.11977, 47.96095 ], [ -2.122495, 47.96386 ], [ -2.126572, 47.965615 ], [ -2.138403, 47.979735 ], [ -2.142614, 47.98174 ], [ -2.151741, 47.98361 ], [ -2.176729, 47.98005 ], [ -2.191056, 47.98918 ], [ -2.209813, 47.9948 ], [ -2.214416, 47.99324 ], [ -2.219153, 47.994681 ], [ -2.238197, 47.99933 ], [ -2.287539, 47.9915 ], [ -2.28804, 47.99491 ], [ -2.287311, 48.001734 ], [ -2.276503, 48.00884 ], [ -2.28244, 48.01796 ], [ -2.280539, 48.02114 ], [ -2.280018, 48.024 ], [ -2.273288, 48.031072 ], [ -2.252806, 48.045112 ], [ -2.249688, 48.047713 ], [ -2.242426, 48.0526 ], [ -2.19135, 48.05245 ], [ -2.171431, 48.06319 ], [ -2.171854, 48.07356 ], [ -2.16848, 48.076209 ], [ -2.171766, 48.078166 ], [ -2.181674, 48.083141 ], [ -2.18634, 48.081592 ], [ -2.222408, 48.078995 ], [ -2.234992, 48.07343 ], [ -2.23543, 48.06359 ], [ -2.256118, 48.062866 ], [ -2.256927, 48.069242 ], [ -2.24916, 48.08412 ], [ -2.253629, 48.08981 ], [ -2.253012, 48.094976 ], [ -2.255791, 48.09679 ], [ -2.253986, 48.107197 ], [ -2.287278, 48.133746 ], [ -2.283879, 48.14231 ], [ -2.283248, 48.1453 ], [ -2.278612, 48.14678 ], [ -2.264725, 48.15102 ], [ -2.25222, 48.14536 ], [ -2.242035, 48.14497 ], [ -2.240403, 48.14997 ], [ -2.247684, 48.154626 ], [ -2.247311, 48.158051 ], [ -2.230046, 48.164725 ], [ -2.224738, 48.17061 ], [ -2.224021, 48.183921 ], [ -2.218781, 48.20332 ], [ -2.227979, 48.210916 ], [ -2.213882, 48.21366 ], [ -2.20177, 48.208098 ], [ -2.191935, 48.208224 ], [ -2.184188, 48.211902 ], [ -2.183945, 48.21518 ], [ -2.190271, 48.224213 ], [ -2.187172, 48.244 ], [ -2.181494, 48.24885 ], [ -2.177596, 48.25095 ], [ -2.156662, 48.259563 ], [ -2.152795, 48.26172 ], [ -2.150098, 48.25872 ], [ -2.124054, 48.259305 ], [ -2.106582, 48.25166 ], [ -2.108602, 48.254799 ], [ -2.099637, 48.26289 ], [ -2.109596, 48.268669 ], [ -2.11046, 48.27506 ], [ -2.08501, 48.276285 ], [ -2.076641, 48.284741 ], [ -2.077427, 48.291622 ], [ -2.054287, 48.298556 ], [ -2.046771, 48.28978 ], [ -2.014101, 48.279532 ], [ -2.004284, 48.28113 ], [ -2.001991, 48.291107 ], [ -1.996033, 48.296651 ], [ -1.991436, 48.29819 ], [ -1.976457, 48.30024 ], [ -1.967577, 48.29191 ], [ -1.958045, 48.29312 ], [ -1.964572, 48.30144 ], [ -1.955451, 48.3188 ], [ -1.956632, 48.321857 ], [ -1.966897, 48.34282 ], [ -1.947782, 48.34259 ], [ -1.930318, 48.34813 ], [ -1.932019, 48.35459 ], [ -1.946466, 48.36712 ], [ -1.945718, 48.37742 ], [ -1.939919, 48.38613 ], [ -1.93829, 48.38909 ], [ -1.930066, 48.39433 ], [ -1.934232, 48.39632 ], [ -1.940771, 48.401371 ], [ -1.938171, 48.40783 ], [ -1.941192, 48.410584 ], [ -1.938097, 48.419863 ], [ -1.952001, 48.429874 ], [ -1.94883, 48.43646 ], [ -1.948042, 48.44635 ], [ -1.94173, 48.44853 ], [ -1.938892, 48.44702 ], [ -1.925875, 48.45744 ], [ -1.925583, 48.4643 ], [ -1.930747, 48.47035 ], [ -1.926936, 48.476826 ], [ -1.92213, 48.47732 ], [ -1.908996, 48.481554 ], [ -1.910871, 48.48478 ], [ -1.922607, 48.499449 ], [ -1.911488, 48.50974 ], [ -1.911453, 48.516604 ], [ -1.918771, 48.53314 ], [ -1.925546, 48.53836 ], [ -1.924803, 48.54518 ], [ -1.931336, 48.55056 ], [ -1.933339, 48.55107 ], [ -1.935391, 48.54821 ], [ -1.948037, 48.53881 ], [ -1.962692, 48.536195 ], [ -1.967441, 48.540179 ], [ -1.960992, 48.54934 ], [ -1.96307, 48.555937 ], [ -1.973372, 48.557327 ], [ -1.974857, 48.56781 ], [ -1.984663, 48.580505 ], [ -1.978379, 48.58399 ], [ -1.960586, 48.576005 ], [ -1.955327, 48.5764 ], [ -1.963932, 48.58335 ], [ -1.962082, 48.592635 ], [ -1.971737, 48.59057 ], [ -1.986195, 48.59388 ], [ -1.996143, 48.59233 ], [ -2.000698, 48.59733 ], [ -1.996984, 48.603692 ], [ -2.010716, 48.599356 ], [ -2.006274, 48.612576 ], [ -2.014327, 48.617041 ], [ -2.017127, 48.62737 ], [ -2.025383, 48.636313 ], [ -2.025336, 48.64685 ], [ -2.023301, 48.65002 ], [ -1.999846, 48.658362 ], [ -1.992134, 48.663084 ], [ -1.986287, 48.66896 ], [ -1.983262, 48.68204 ], [ -1.963724, 48.683964 ], [ -1.961394, 48.68079 ], [ -1.946286, 48.68393 ], [ -1.943606, 48.68625 ], [ -1.950988, 48.69032 ], [ -1.933667, 48.69716 ], [ -1.925432, 48.69314 ], [ -1.905293, 48.69032 ], [ -1.8957, 48.693412 ], [ -1.892455, 48.69626 ], [ -1.888423, 48.69856 ], [ -1.872968, 48.696913 ], [ -1.846144, 48.708136 ], [ -1.847318, 48.69425 ], [ -1.838702, 48.68147 ], [ -1.861815, 48.66735 ], [ -1.863727, 48.66056 ], [ -1.864518, 48.65707 ], [ -1.870603, 48.6437 ], [ -1.857094, 48.62462 ], [ -1.847729, 48.618765 ], [ -1.845281, 48.6164 ], [ -1.795953, 48.60659 ], [ -1.790819, 48.606022 ], [ -1.773098, 48.60347 ], [ -1.768553, 48.6034 ], [ -1.767714, 48.60239 ], [ -1.673029, 48.611393 ], [ -1.667887, 48.61042 ], [ -1.642637, 48.613908 ], [ -1.6376, 48.61473 ], [ -1.576214, 48.62555 ], [ -1.571087, 48.62645 ], [ -1.566049, 48.614827 ], [ -1.558303, 48.611232 ], [ -1.554664, 48.60923 ], [ -1.545464, 48.60609 ], [ -1.538887, 48.59746 ], [ -1.542011, 48.58087 ], [ -1.527747, 48.57908 ], [ -1.527773, 48.57577 ], [ -1.521005, 48.56705 ], [ -1.527171, 48.5619 ], [ -1.53311, 48.549439 ], [ -1.519766, 48.539657 ], [ -1.517781, 48.52985 ], [ -1.515309, 48.530294 ], [ -1.498528, 48.511018 ], [ -1.495733, 48.50831 ], [ -1.495588, 48.505047 ], [ -1.489947, 48.48937 ], [ -1.485862, 48.490737 ], [ -1.47467, 48.48588 ], [ -1.466134, 48.487976 ], [ -1.457581, 48.48543 ], [ -1.449399, 48.48677 ], [ -1.435747, 48.477916 ], [ -1.440356, 48.47217 ], [ -1.427752, 48.46235 ], [ -1.404237, 48.46143 ], [ -1.399391, 48.461159 ], [ -1.382967, 48.45687 ], [ -1.374943, 48.45926 ], [ -1.346533, 48.473118 ], [ -1.348477, 48.47989 ], [ -1.341415, 48.48921 ], [ -1.332739, 48.48886 ], [ -1.330412, 48.48596 ], [ -1.326326, 48.49852 ], [ -1.321808, 48.499798 ], [ -1.318768, 48.497286 ], [ -1.30455, 48.498803 ], [ -1.290184, 48.50679 ], [ -1.287629, 48.50953 ], [ -1.283385, 48.50853 ], [ -1.279004, 48.50918 ], [ -1.269542, 48.524356 ], [ -1.269817, 48.53105 ], [ -1.27291, 48.533721 ], [ -1.254221, 48.54327 ], [ -1.249493, 48.5437 ], [ -1.249016, 48.54367 ], [ -1.232492, 48.53764 ], [ -1.208259, 48.53909 ], [ -1.206894, 48.54219 ], [ -1.19316, 48.529248 ], [ -1.188368, 48.528687 ], [ -1.166724, 48.530079 ], [ -1.161961, 48.52425 ], [ -1.145709, 48.517654 ], [ -1.132159, 48.52173 ], [ -1.122244, 48.521362 ], [ -1.117277, 48.52165 ], [ -1.1012, 48.512885 ], [ -1.070165, 48.50849 ], [ -1.06746, 48.50561 ], [ -1.07492, 48.501133 ], [ -1.077392, 48.491095 ], [ -1.073586, 48.474894 ], [ -1.064649, 48.466913 ], [ -1.06716, 48.460332 ], [ -1.065332, 48.45125 ], [ -1.068721, 48.448676 ], [ -1.081436, 48.438573 ], [ -1.078227, 48.42201 ], [ -1.078455, 48.4185 ], [ -1.079735, 48.41738 ], [ -1.079478, 48.4139 ], [ -1.064323, 48.399929 ], [ -1.052793, 48.38093 ], [ -1.05658, 48.379187 ], [ -1.057253, 48.37582 ], [ -1.064838, 48.36724 ], [ -1.059735, 48.36682 ], [ -1.05578, 48.34113 ], [ -1.053602, 48.33813 ], [ -1.04583, 48.329655 ], [ -1.059222, 48.31219 ], [ -1.06096, 48.31109 ], [ -1.065875, 48.30968 ], [ -1.08845, 48.29013 ], [ -1.093643, 48.27288 ], [ -1.099932, 48.26837 ], [ -1.098672, 48.25131 ], [ -1.0806, 48.2195 ], [ -1.08253, 48.21623 ], [ -1.08712, 48.21004 ], [ -1.081888, 48.205148 ], [ -1.07765, 48.20315 ], [ -1.074357, 48.200471 ], [ -1.078229, 48.17997 ], [ -1.079822, 48.17687 ], [ -1.072702, 48.16579 ], [ -1.073926, 48.1593 ], [ -1.068944, 48.159482 ], [ -1.060683, 48.148738 ], [ -1.059299, 48.12549 ], [ -1.057022, 48.12246 ], [ -1.052936, 48.10604 ], [ -1.049133, 48.089596 ], [ -1.04725, 48.086606 ], [ -1.040332, 48.078086 ], [ -1.025492, 48.069845 ], [ -1.021497, 48.0684 ], [ -1.028222, 48.06103 ], [ -1.029935, 48.057763 ], [ -1.033183, 48.051353 ], [ -1.028089, 48.03846 ], [ -1.033554, 48.03261 ], [ -1.021413, 48.01744 ], [ -1.017261, 48.00804 ], [ -1.021712, 47.9954 ], [ -1.030417, 47.992473 ], [ -1.035241, 47.99201 ], [ -1.050316, 47.984634 ], [ -1.06883, 47.982949 ], [ -1.072252, 47.982065 ], [ -1.078714, 47.984409 ], [ -1.083363, 47.9857 ], [ -1.092993, 47.98751 ], [ -1.098003, 47.987018 ], [ -1.107516, 47.988876 ], [ -1.1223, 47.98651 ], [ -1.129886, 47.97122 ], [ -1.148707, 47.968216 ], [ -1.152452, 47.966344 ], [ -1.161289, 47.95295 ], [ -1.159514, 47.939221 ], [ -1.162792, 47.937924 ], [ -1.167151, 47.93417 ], [ -1.163133, 47.928089 ], [ -1.168644, 47.915475 ], [ -1.175715, 47.91095 ], [ -1.176175, 47.897723 ], [ -1.179919, 47.89558 ], [ -1.192156, 47.89102 ], [ -1.197126, 47.885593 ], [ -1.197464, 47.87902 ], [ -1.189163, 47.86771 ], [ -1.191997, 47.86543 ], [ -1.203023, 47.85685 ], [ -1.206104, 47.858387 ], [ -1.213082, 47.857217 ], [ -1.217566, 47.85601 ], [ -1.222126, 47.850366 ], [ -1.214178, 47.84251 ], [ -1.216083, 47.836154 ], [ -1.220867, 47.821723 ], [ -1.223153, 47.819009 ], [ -1.227872, 47.82029 ], [ -1.238252, 47.80999 ], [ -1.240193, 47.802287 ], [ -1.237062, 47.799597 ], [ -1.245882, 47.776718 ], [ -1.251009, 47.777622 ], [ -1.33715, 47.79463 ], [ -1.339993, 47.795214 ], [ -1.364478, 47.79967 ], [ -1.365536, 47.80604 ], [ -1.374824, 47.808827 ], [ -1.381228, 47.82141 ], [ -1.391976, 47.82855 ], [ -1.405523, 47.825 ], [ -1.409149, 47.827406 ], [ -1.411962, 47.82855 ], [ -1.414846, 47.827498 ], [ -1.419285, 47.829044 ], [ -1.427417, 47.832171 ], [ -1.456579, 47.83175 ], [ -1.465114, 47.83486 ], [ -1.479636, 47.83481 ], [ -1.481873, 47.8318 ], [ -1.480687, 47.82869 ], [ -1.474307, 47.824 ], [ -1.468448, 47.8059 ], [ -1.47114, 47.80307 ], [ -1.494999, 47.798505 ], [ -1.503981, 47.80108 ], [ -1.51219, 47.79722 ], [ -1.530422, 47.78478 ], [ -1.556429, 47.78372 ], [ -1.575393, 47.778234 ], [ -1.585308, 47.7789 ], [ -1.594141, 47.77603 ], [ -1.59491, 47.77332 ], [ -1.598107, 47.766525 ], [ -1.601774, 47.764542 ], [ -1.619634, 47.76357 ], [ -1.627131, 47.759827 ], [ -1.626098, 47.75656 ], [ -1.636801, 47.741755 ], [ -1.638131, 47.722209 ], [ -1.641237, 47.721825 ], [ -1.644387, 47.722087 ], [ -1.648814, 47.720306 ], [ -1.661157, 47.7102 ], [ -1.686443, 47.7126 ], [ -1.706147, 47.70895 ], [ -1.71127, 47.700421 ], [ -1.715725, 47.69945 ], [ -1.729713, 47.699342 ], [ -1.732593, 47.70184 ], [ -1.736125, 47.70415 ], [ -1.750249, 47.706751 ], [ -1.771608, 47.69868 ], [ -1.786276, 47.69988 ], [ -1.820055, 47.7056 ], [ -1.828414, 47.70954 ], [ -1.83778, 47.70676 ], [ -1.841527, 47.7055 ], [ -1.853488, 47.70804 ], [ -1.858304, 47.70825 ], [ -1.878257, 47.6952 ], [ -1.883074, 47.69499 ], [ -1.888114, 47.695482 ], [ -1.93644, 47.686523 ], [ -1.956329, 47.671188 ], [ -1.961339, 47.67094 ], [ -1.969284, 47.67424 ], [ -1.969042, 47.68781 ], [ -1.973056, 47.69403 ], [ -1.973401, 47.69415 ], [ -1.977136, 47.691668 ], [ -2.012284, 47.666454 ], [ -2.016926, 47.66683 ], [ -2.035333, 47.66847 ], [ -2.043095, 47.6657 ], [ -2.047426, 47.66379 ], [ -2.052005, 47.6504 ], [ -2.082054, 47.64945 ], [ -2.097036, 47.63136 ] ] ], [ [ [ -2.006895, 48.56611 ], [ -2.010653, 48.564792 ], [ -2.019503, 48.55909 ], [ -2.021944, 48.55622 ], [ -2.033869, 48.551173 ], [ -2.038784, 48.542 ], [ -2.043228, 48.54206 ], [ -2.052745, 48.551913 ], [ -2.047377, 48.56412 ], [ -2.060069, 48.5701 ], [ -2.080555, 48.56804 ], [ -2.094333, 48.57172 ], [ -2.1249, 48.593415 ], [ -2.125942, 48.59753 ], [ -2.123708, 48.60441 ], [ -2.149213, 48.62904 ], [ -2.148225, 48.632404 ], [ -2.134228, 48.635974 ], [ -2.124093, 48.63525 ], [ -2.11315, 48.641416 ], [ -2.086822, 48.63461 ], [ -2.082274, 48.63581 ], [ -2.074563, 48.63959 ], [ -2.054589, 48.63766 ], [ -2.050179, 48.63594 ], [ -2.050969, 48.62611 ], [ -2.035975, 48.625572 ], [ -2.031641, 48.62376 ], [ -2.032611, 48.62042 ], [ -2.029796, 48.61462 ], [ -2.033451, 48.61277 ], [ -2.030745, 48.60696 ], [ -2.030363, 48.603988 ], [ -2.022679, 48.60166 ], [ -2.015906, 48.59028 ], [ -2.013644, 48.58751 ], [ -2.003894, 48.586141 ], [ -1.997032, 48.581157 ], [ -2.010811, 48.57212 ], [ -2.006895, 48.56611 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "37", "CODE_DEPT": "36", "NOM_DEPT": "INDRE", "CODE_CHF": "044", "NOM_CHF": "CHATEAUROUX", "X_CHF_LIEU": "6001", "Y_CHF_LIEU": "66352", "X_CENTROID": "5913", "Y_CENTROID": "66318", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.415191, 46.34722 ], [ 1.411548, 46.3495 ], [ 1.407003, 46.36264 ], [ 1.395144, 46.368644 ], [ 1.396571, 46.371897 ], [ 1.39195, 46.37107 ], [ 1.376609, 46.38334 ], [ 1.373905, 46.38586 ], [ 1.36255, 46.39563 ], [ 1.359389, 46.39772 ], [ 1.344678, 46.401598 ], [ 1.340492, 46.3997 ], [ 1.312648, 46.39371 ], [ 1.321836, 46.386566 ], [ 1.311035, 46.381038 ], [ 1.310512, 46.37437 ], [ 1.28302, 46.37221 ], [ 1.279554, 46.376488 ], [ 1.274572, 46.37642 ], [ 1.26021, 46.37872 ], [ 1.250656, 46.37675 ], [ 1.238165, 46.3662 ], [ 1.21797, 46.368256 ], [ 1.213319, 46.374407 ], [ 1.212952, 46.388002 ], [ 1.208385, 46.38915 ], [ 1.193499, 46.380733 ], [ 1.192893, 46.37741 ], [ 1.18868, 46.37694 ], [ 1.180777, 46.378594 ], [ 1.17728, 46.38395 ], [ 1.1954, 46.40002 ], [ 1.193411, 46.40976 ], [ 1.211268, 46.42992 ], [ 1.213066, 46.43308 ], [ 1.203363, 46.433796 ], [ 1.195477, 46.42962 ], [ 1.185835, 46.429303 ], [ 1.185483, 46.439511 ], [ 1.168524, 46.44635 ], [ 1.16378, 46.44677 ], [ 1.150917, 46.450297 ], [ 1.135514, 46.470889 ], [ 1.152956, 46.472838 ], [ 1.136125, 46.493461 ], [ 1.136833, 46.49678 ], [ 1.145329, 46.50007 ], [ 1.149143, 46.502212 ], [ 1.146903, 46.50518 ], [ 1.12372, 46.52232 ], [ 1.119414, 46.524226 ], [ 1.104139, 46.53343 ], [ 1.090094, 46.53758 ], [ 1.080132, 46.53618 ], [ 1.065509, 46.539252 ], [ 1.020409, 46.53715 ], [ 1.019938, 46.540418 ], [ 1.024705, 46.5497 ], [ 1.014764, 46.567764 ], [ 1.009906, 46.56742 ], [ 0.990589, 46.56604 ], [ 0.982015, 46.57327 ], [ 0.962437, 46.57254 ], [ 0.955598, 46.57761 ], [ 0.941367, 46.580879 ], [ 0.937758, 46.59442 ], [ 0.933284, 46.594569 ], [ 0.916278, 46.597125 ], [ 0.908477, 46.605279 ], [ 0.904896, 46.618175 ], [ 0.893993, 46.628658 ], [ 0.895518, 46.631821 ], [ 0.907628, 46.64672 ], [ 0.915638, 46.650672 ], [ 0.90734, 46.666437 ], [ 0.91184, 46.67259 ], [ 0.907243, 46.678136 ], [ 0.902262, 46.677666 ], [ 0.918155, 46.690485 ], [ 0.927133, 46.6936 ], [ 0.924812, 46.70022 ], [ 0.921587, 46.70272 ], [ 0.910404, 46.71741 ], [ 0.911172, 46.72707 ], [ 0.90283, 46.730405 ], [ 0.898325, 46.7358 ], [ 0.879803, 46.73875 ], [ 0.867469, 46.74822 ], [ 0.884505, 46.75457 ], [ 0.911862, 46.757132 ], [ 0.916607, 46.75644 ], [ 0.930035, 46.755561 ], [ 0.943507, 46.73863 ], [ 0.947225, 46.73662 ], [ 0.961024, 46.74 ], [ 0.979595, 46.756038 ], [ 0.982563, 46.762548 ], [ 1.006777, 46.75848 ], [ 1.01169, 46.757814 ], [ 1.011173, 46.7662 ], [ 1.009519, 46.76876 ], [ 0.999956, 46.781046 ], [ 1.004327, 46.79088 ], [ 0.985332, 46.80165 ], [ 1.00893, 46.814446 ], [ 1.010199, 46.835282 ], [ 1.017929, 46.844251 ], [ 1.022644, 46.84562 ], [ 1.020281, 46.848498 ], [ 1.016925, 46.85445 ], [ 1.025551, 46.87966 ], [ 1.025219, 46.87975 ], [ 1.037503, 46.92823 ], [ 1.037435, 46.94206 ], [ 1.041221, 46.943541 ], [ 1.044912, 46.945117 ], [ 1.058044, 46.94968 ], [ 1.062925, 46.95882 ], [ 1.059915, 46.968642 ], [ 1.059912, 46.972011 ], [ 1.051693, 46.980284 ], [ 1.05633, 46.98967 ], [ 1.056376, 46.996439 ], [ 1.070197, 47.00051 ], [ 1.077615, 47.01584 ], [ 1.105678, 47.028167 ], [ 1.110264, 47.029242 ], [ 1.112761, 47.02676 ], [ 1.115568, 47.024438 ], [ 1.160983, 47.03936 ], [ 1.175977, 47.04122 ], [ 1.181069, 47.04104 ], [ 1.190076, 47.03407 ], [ 1.19304, 47.031711 ], [ 1.202802, 47.027693 ], [ 1.206733, 47.028295 ], [ 1.220634, 47.024908 ], [ 1.229742, 47.01705 ], [ 1.23222, 47.01414 ], [ 1.244251, 47.01995 ], [ 1.248989, 47.02083 ], [ 1.276097, 47.040806 ], [ 1.272536, 47.05041 ], [ 1.289151, 47.06286 ], [ 1.29299, 47.068965 ], [ 1.293769, 47.07225 ], [ 1.312185, 47.073875 ], [ 1.316275, 47.083877 ], [ 1.311277, 47.09362 ], [ 1.3175, 47.10295 ], [ 1.326639, 47.10465 ], [ 1.339469, 47.100467 ], [ 1.351835, 47.1062 ], [ 1.355669, 47.108478 ], [ 1.364901, 47.12461 ], [ 1.363751, 47.135086 ], [ 1.36186, 47.13826 ], [ 1.350896, 47.153714 ], [ 1.343527, 47.173555 ], [ 1.326666, 47.18622 ], [ 1.336774, 47.194223 ], [ 1.351844, 47.1939 ], [ 1.388418, 47.20687 ], [ 1.392843, 47.208693 ], [ 1.40637, 47.215543 ], [ 1.409592, 47.21741 ], [ 1.418308, 47.226188 ], [ 1.421208, 47.22916 ], [ 1.453139, 47.23899 ], [ 1.467986, 47.23903 ], [ 1.473013, 47.23891 ], [ 1.48761, 47.23748 ], [ 1.494832, 47.23311 ], [ 1.503504, 47.23452 ], [ 1.526638, 47.22251 ], [ 1.528062, 47.21925 ], [ 1.534446, 47.223591 ], [ 1.532718, 47.23026 ], [ 1.527011, 47.23978 ], [ 1.526755, 47.252496 ], [ 1.523953, 47.25534 ], [ 1.563081, 47.26143 ], [ 1.587815, 47.25788 ], [ 1.592885, 47.2577 ], [ 1.593136, 47.274416 ], [ 1.602725, 47.275018 ], [ 1.607649, 47.27543 ], [ 1.612089, 47.277139 ], [ 1.619786, 47.272629 ], [ 1.629582, 47.27443 ], [ 1.649461, 47.27148 ], [ 1.651132, 47.261842 ], [ 1.665701, 47.25889 ], [ 1.700438, 47.26408 ], [ 1.712938, 47.27395 ], [ 1.71582, 47.27682 ], [ 1.746692, 47.24987 ], [ 1.750044, 47.24731 ], [ 1.772462, 47.233739 ], [ 1.776111, 47.23138 ], [ 1.786011, 47.231397 ], [ 1.793575, 47.234807 ], [ 1.795821, 47.23782 ], [ 1.811518, 47.232183 ], [ 1.81462, 47.22999 ], [ 1.834519, 47.22055 ], [ 1.839079, 47.219308 ], [ 1.838892, 47.215759 ], [ 1.837444, 47.19837 ], [ 1.842237, 47.17758 ], [ 1.837527, 47.17678 ], [ 1.823578, 47.17397 ], [ 1.813917, 47.16657 ], [ 1.811046, 47.16327 ], [ 1.809816, 47.15621 ], [ 1.774451, 47.130755 ], [ 1.777883, 47.130107 ], [ 1.780997, 47.128943 ], [ 1.795823, 47.12081 ], [ 1.805415, 47.12016 ], [ 1.809476, 47.12202 ], [ 1.828448, 47.121302 ], [ 1.843601, 47.11348 ], [ 1.846675, 47.11098 ], [ 1.878812, 47.10229 ], [ 1.883068, 47.100512 ], [ 1.887899, 47.104764 ], [ 1.892733, 47.103766 ], [ 1.906385, 47.10811 ], [ 1.920261, 47.10403 ], [ 1.937202, 47.11093 ], [ 1.943597, 47.11505 ], [ 1.947311, 47.116674 ], [ 1.96314, 47.12418 ], [ 1.974874, 47.12104 ], [ 1.992226, 47.12565 ], [ 1.99666, 47.127 ], [ 1.999913, 47.11732 ], [ 2.00024, 47.11392 ], [ 2.009587, 47.11127 ], [ 2.004464, 47.10161 ], [ 2.006573, 47.09521 ], [ 2.026221, 47.096476 ], [ 2.031199, 47.1049 ], [ 2.050699, 47.10435 ], [ 2.053597, 47.101511 ], [ 2.048458, 47.09607 ], [ 2.055653, 47.076723 ], [ 2.053304, 47.07014 ], [ 2.044557, 47.066944 ], [ 2.040447, 47.060958 ], [ 2.0385, 47.057844 ], [ 2.02938, 47.045532 ], [ 2.031413, 47.04235 ], [ 2.053482, 47.03822 ], [ 2.064618, 47.027941 ], [ 2.081354, 47.021754 ], [ 2.08304, 47.018634 ], [ 2.094267, 47.014905 ], [ 2.096889, 47.01241 ], [ 2.106187, 47.0002 ], [ 2.108856, 46.997191 ], [ 2.105175, 46.99534 ], [ 2.094825, 46.989474 ], [ 2.094592, 46.98057 ], [ 2.091833, 46.977997 ], [ 2.087045, 46.97252 ], [ 2.089985, 46.96355 ], [ 2.08457, 46.958635 ], [ 2.081369, 46.95665 ], [ 2.070203, 46.954423 ], [ 2.070685, 46.934023 ], [ 2.106058, 46.91498 ], [ 2.110319, 46.91317 ], [ 2.143641, 46.91732 ], [ 2.151967, 46.91433 ], [ 2.154965, 46.91167 ], [ 2.153136, 46.908457 ], [ 2.14007, 46.88985 ], [ 2.126204, 46.879865 ], [ 2.120998, 46.88019 ], [ 2.090268, 46.86857 ], [ 2.092409, 46.852834 ], [ 2.077817, 46.838005 ], [ 2.072823, 46.837658 ], [ 2.069292, 46.83547 ], [ 2.050804, 46.8362 ], [ 2.047999, 46.832332 ], [ 2.071568, 46.809851 ], [ 2.100792, 46.79614 ], [ 2.104205, 46.793551 ], [ 2.105793, 46.79025 ], [ 2.116105, 46.778533 ], [ 2.094304, 46.75597 ], [ 2.070117, 46.752192 ], [ 2.065751, 46.74249 ], [ 2.074233, 46.73444 ], [ 2.092145, 46.72526 ], [ 2.088115, 46.715751 ], [ 2.087097, 46.712456 ], [ 2.092068, 46.71187 ], [ 2.100843, 46.70849 ], [ 2.11008, 46.71115 ], [ 2.119793, 46.70959 ], [ 2.128758, 46.706431 ], [ 2.141157, 46.69554 ], [ 2.155448, 46.69216 ], [ 2.154034, 46.68882 ], [ 2.137272, 46.67231 ], [ 2.13972, 46.6656 ], [ 2.151695, 46.65931 ], [ 2.166749, 46.64733 ], [ 2.175944, 46.64884 ], [ 2.179982, 46.6429 ], [ 2.189447, 46.642141 ], [ 2.181273, 46.62579 ], [ 2.187352, 46.61605 ], [ 2.185257, 46.612855 ], [ 2.184614, 46.60257 ], [ 2.180742, 46.600297 ], [ 2.176001, 46.6002 ], [ 2.167145, 46.588988 ], [ 2.16798, 46.585653 ], [ 2.173675, 46.565857 ], [ 2.1587, 46.557346 ], [ 2.160161, 46.55405 ], [ 2.181453, 46.526985 ], [ 2.182754, 46.513297 ], [ 2.183065, 46.50993 ], [ 2.189967, 46.505406 ], [ 2.194701, 46.50625 ], [ 2.203705, 46.48628 ], [ 2.200164, 46.48061 ], [ 2.20017, 46.480165 ], [ 2.198198, 46.47687 ], [ 2.193194, 46.47064 ], [ 2.151402, 46.4577 ], [ 2.155265, 46.43459 ], [ 2.167786, 46.42408 ], [ 2.149206, 46.4239 ], [ 2.140603, 46.421101 ], [ 2.115972, 46.421534 ], [ 2.10344, 46.41076 ], [ 2.088623, 46.41007 ], [ 2.088749, 46.41034 ], [ 2.084371, 46.41129 ], [ 2.072452, 46.420108 ], [ 2.063459, 46.42135 ], [ 2.058493, 46.420876 ], [ 2.029415, 46.42459 ], [ 2.026334, 46.427216 ], [ 1.993082, 46.43092 ], [ 1.990776, 46.435229 ], [ 1.986597, 46.435786 ], [ 1.981108, 46.440285 ], [ 1.976055, 46.4395 ], [ 1.926119, 46.43191 ], [ 1.92287, 46.434149 ], [ 1.919538, 46.43996 ], [ 1.911556, 46.44309 ], [ 1.899831, 46.438567 ], [ 1.895331, 46.43824 ], [ 1.88768, 46.440989 ], [ 1.883956, 46.43265 ], [ 1.878921, 46.432375 ], [ 1.853747, 46.43347 ], [ 1.84257, 46.42681 ], [ 1.818455, 46.431423 ], [ 1.816986, 46.4385 ], [ 1.802116, 46.44828 ], [ 1.798244, 46.45491 ], [ 1.793694, 46.45385 ], [ 1.784546, 46.455077 ], [ 1.74759, 46.45002 ], [ 1.750092, 46.447743 ], [ 1.752658, 46.445502 ], [ 1.758296, 46.43992 ], [ 1.75527, 46.437209 ], [ 1.759737, 46.42749 ], [ 1.748767, 46.412318 ], [ 1.750549, 46.405593 ], [ 1.745905, 46.40431 ], [ 1.72832, 46.39241 ], [ 1.727841, 46.38896 ], [ 1.7094, 46.39335 ], [ 1.683603, 46.41818 ], [ 1.679335, 46.416426 ], [ 1.661634, 46.4044 ], [ 1.65521, 46.395116 ], [ 1.651332, 46.392981 ], [ 1.64109, 46.38559 ], [ 1.627341, 46.389425 ], [ 1.614415, 46.403373 ], [ 1.621236, 46.419405 ], [ 1.609055, 46.42317 ], [ 1.604991, 46.421153 ], [ 1.592031, 46.4076 ], [ 1.577489, 46.409097 ], [ 1.574357, 46.406383 ], [ 1.569633, 46.40531 ], [ 1.555196, 46.395893 ], [ 1.546253, 46.395923 ], [ 1.543637, 46.416415 ], [ 1.534714, 46.4243 ], [ 1.525351, 46.426654 ], [ 1.521022, 46.42538 ], [ 1.510433, 46.41921 ], [ 1.509319, 46.412775 ], [ 1.500105, 46.405503 ], [ 1.497998, 46.39739 ], [ 1.496954, 46.394636 ], [ 1.493588, 46.39725 ], [ 1.479634, 46.393974 ], [ 1.463704, 46.37628 ], [ 1.445155, 46.37193 ], [ 1.437093, 46.36311 ], [ 1.43659, 46.35613 ], [ 1.415191, 46.34722 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "38", "CODE_DEPT": "37", "NOM_DEPT": "INDRE-ET-LOIRE", "CODE_CHF": "261", "NOM_CHF": "TOURS", "X_CHF_LIEU": "5256", "Y_CHF_LIEU": "67016", "X_CENTROID": "5254", "Y_CENTROID": "66867", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.326666, 47.18622 ], [ 1.343527, 47.173555 ], [ 1.350896, 47.153714 ], [ 1.36186, 47.13826 ], [ 1.363751, 47.135086 ], [ 1.364901, 47.12461 ], [ 1.355669, 47.108478 ], [ 1.351835, 47.1062 ], [ 1.339469, 47.100467 ], [ 1.326639, 47.10465 ], [ 1.3175, 47.10295 ], [ 1.311277, 47.09362 ], [ 1.316275, 47.083877 ], [ 1.312185, 47.073875 ], [ 1.293769, 47.07225 ], [ 1.29299, 47.068965 ], [ 1.289151, 47.06286 ], [ 1.272536, 47.05041 ], [ 1.276097, 47.040806 ], [ 1.248989, 47.02083 ], [ 1.244251, 47.01995 ], [ 1.23222, 47.01414 ], [ 1.229742, 47.01705 ], [ 1.220634, 47.024908 ], [ 1.206733, 47.028295 ], [ 1.202802, 47.027693 ], [ 1.19304, 47.031711 ], [ 1.190076, 47.03407 ], [ 1.181069, 47.04104 ], [ 1.175977, 47.04122 ], [ 1.160983, 47.03936 ], [ 1.115568, 47.024438 ], [ 1.112761, 47.02676 ], [ 1.110264, 47.029242 ], [ 1.105678, 47.028167 ], [ 1.077615, 47.01584 ], [ 1.070197, 47.00051 ], [ 1.056376, 46.996439 ], [ 1.05633, 46.98967 ], [ 1.051693, 46.980284 ], [ 1.059912, 46.972011 ], [ 1.059915, 46.968642 ], [ 1.062925, 46.95882 ], [ 1.058044, 46.94968 ], [ 1.044912, 46.945117 ], [ 1.041221, 46.943541 ], [ 1.037435, 46.94206 ], [ 1.037503, 46.92823 ], [ 1.025219, 46.87975 ], [ 1.025551, 46.87966 ], [ 1.016925, 46.85445 ], [ 1.020281, 46.848498 ], [ 1.022644, 46.84562 ], [ 1.017929, 46.844251 ], [ 1.010199, 46.835282 ], [ 1.00893, 46.814446 ], [ 0.985332, 46.80165 ], [ 1.004327, 46.79088 ], [ 0.999956, 46.781046 ], [ 1.009519, 46.76876 ], [ 1.011173, 46.7662 ], [ 1.01169, 46.757814 ], [ 1.006777, 46.75848 ], [ 0.982563, 46.762548 ], [ 0.979595, 46.756038 ], [ 0.961024, 46.74 ], [ 0.947225, 46.73662 ], [ 0.943507, 46.73863 ], [ 0.930035, 46.755561 ], [ 0.916607, 46.75644 ], [ 0.911862, 46.757132 ], [ 0.884505, 46.75457 ], [ 0.867469, 46.74822 ], [ 0.865602, 46.75104 ], [ 0.859743, 46.75572 ], [ 0.858729, 46.759154 ], [ 0.84484, 46.763019 ], [ 0.829396, 46.77687 ], [ 0.826099, 46.78682 ], [ 0.813354, 46.79168 ], [ 0.815597, 46.805 ], [ 0.810162, 46.814192 ], [ 0.809857, 46.8159 ], [ 0.809041, 46.819215 ], [ 0.807997, 46.829139 ], [ 0.794667, 46.832892 ], [ 0.786885, 46.84123 ], [ 0.796639, 46.84735 ], [ 0.795013, 46.85052 ], [ 0.771389, 46.85095 ], [ 0.766356, 46.85585 ], [ 0.771792, 46.86126 ], [ 0.765645, 46.86512 ], [ 0.753423, 46.860585 ], [ 0.743522, 46.871587 ], [ 0.739267, 46.87285 ], [ 0.729468, 46.88318 ], [ 0.727284, 46.88608 ], [ 0.70467, 46.90289 ], [ 0.703738, 46.909362 ], [ 0.704874, 46.91233 ], [ 0.708918, 46.917725 ], [ 0.703171, 46.925825 ], [ 0.706179, 46.936108 ], [ 0.695983, 46.959369 ], [ 0.695176, 46.96224 ], [ 0.695275, 46.969191 ], [ 0.690172, 46.97498 ], [ 0.660468, 46.978984 ], [ 0.651538, 46.986999 ], [ 0.637794, 46.98525 ], [ 0.63356, 46.986659 ], [ 0.623984, 46.993686 ], [ 0.621888, 46.99942 ], [ 0.623652, 47.00242 ], [ 0.61849, 47.00752 ], [ 0.590556, 47.00673 ], [ 0.585909, 47.00611 ], [ 0.567742, 47.006287 ], [ 0.56695, 47.00254 ], [ 0.567922, 46.999661 ], [ 0.574382, 46.99244 ], [ 0.573146, 46.989475 ], [ 0.573683, 46.98339 ], [ 0.576876, 46.98087 ], [ 0.598804, 46.974924 ], [ 0.601701, 46.958888 ], [ 0.598205, 46.95643 ], [ 0.563306, 46.955777 ], [ 0.554199, 46.95847 ], [ 0.549556, 46.95959 ], [ 0.512902, 46.95586 ], [ 0.50519, 46.95991 ], [ 0.502577, 46.95779 ], [ 0.491285, 46.955322 ], [ 0.486465, 46.95402 ], [ 0.444803, 46.941158 ], [ 0.443882, 46.93811 ], [ 0.43871, 46.92958 ], [ 0.434521, 46.931669 ], [ 0.420738, 46.93639 ], [ 0.405362, 46.936133 ], [ 0.401134, 46.93819 ], [ 0.38782, 46.94371 ], [ 0.38282, 46.94375 ], [ 0.36463, 46.948568 ], [ 0.348074, 46.93637 ], [ 0.343125, 46.936706 ], [ 0.325352, 46.930943 ], [ 0.321021, 46.932626 ], [ 0.310569, 46.93971 ], [ 0.302029, 46.95532 ], [ 0.303022, 46.958359 ], [ 0.306402, 46.96393 ], [ 0.298206, 46.97126 ], [ 0.306589, 46.97893 ], [ 0.291436, 46.99027 ], [ 0.296088, 46.990169 ], [ 0.310728, 46.997312 ], [ 0.308175, 46.99993 ], [ 0.306204, 47.00882 ], [ 0.300585, 47.021102 ], [ 0.309935, 47.028031 ], [ 0.309074, 47.03131 ], [ 0.307895, 47.047271 ], [ 0.298426, 47.053977 ], [ 0.294508, 47.051949 ], [ 0.267677, 47.04405 ], [ 0.264221, 47.04643 ], [ 0.26355, 47.068507 ], [ 0.243872, 47.07095 ], [ 0.235155, 47.06916 ], [ 0.232832, 47.06639 ], [ 0.228056, 47.06133 ], [ 0.208199, 47.053237 ], [ 0.194404, 47.063001 ], [ 0.180337, 47.05946 ], [ 0.175696, 47.06073 ], [ 0.176727, 47.064201 ], [ 0.174011, 47.06722 ], [ 0.177027, 47.07383 ], [ 0.194951, 47.08646 ], [ 0.198043, 47.09294 ], [ 0.185354, 47.10404 ], [ 0.183487, 47.11451 ], [ 0.179245, 47.11336 ], [ 0.167829, 47.108362 ], [ 0.161917, 47.10011 ], [ 0.158612, 47.10274 ], [ 0.134946, 47.10837 ], [ 0.134144, 47.11527 ], [ 0.140683, 47.124594 ], [ 0.137322, 47.122259 ], [ 0.127952, 47.120999 ], [ 0.123966, 47.126936 ], [ 0.110323, 47.12929 ], [ 0.10472, 47.120798 ], [ 0.090198, 47.12186 ], [ 0.082432, 47.117797 ], [ 0.077943, 47.127071 ], [ 0.081435, 47.13328 ], [ 0.07839, 47.14633 ], [ 0.068953, 47.14406 ], [ 0.064921, 47.146084 ], [ 0.05374, 47.16461 ], [ 0.05664, 47.167369 ], [ 0.06352, 47.17639 ], [ 0.066594, 47.189802 ], [ 0.061892, 47.19095 ], [ 0.053807, 47.198856 ], [ 0.068291, 47.214196 ], [ 0.072876, 47.214493 ], [ 0.076842, 47.21937 ], [ 0.072451, 47.219878 ], [ 0.073838, 47.233508 ], [ 0.069096, 47.24333 ], [ 0.076367, 47.251931 ], [ 0.08011, 47.271692 ], [ 0.083193, 47.274147 ], [ 0.087486, 47.27553 ], [ 0.088557, 47.282381 ], [ 0.082382, 47.28687 ], [ 0.100309, 47.308205 ], [ 0.111109, 47.31573 ], [ 0.117889, 47.32884 ], [ 0.117462, 47.332343 ], [ 0.135494, 47.335365 ], [ 0.144439, 47.342819 ], [ 0.147298, 47.345376 ], [ 0.14285, 47.358725 ], [ 0.140405, 47.361808 ], [ 0.15386, 47.363093 ], [ 0.157666, 47.36532 ], [ 0.182143, 47.381943 ], [ 0.168732, 47.386013 ], [ 0.168249, 47.396153 ], [ 0.153864, 47.39873 ], [ 0.156772, 47.401448 ], [ 0.180943, 47.416603 ], [ 0.185149, 47.426217 ], [ 0.184494, 47.429597 ], [ 0.180874, 47.45323 ], [ 0.184247, 47.45576 ], [ 0.19885, 47.47641 ], [ 0.200659, 47.4845 ], [ 0.20415, 47.48661 ], [ 0.220109, 47.501953 ], [ 0.219715, 47.50519 ], [ 0.224843, 47.52728 ], [ 0.207175, 47.52667 ], [ 0.205637, 47.53294 ], [ 0.19312, 47.538037 ], [ 0.200087, 47.54317 ], [ 0.214089, 47.56879 ], [ 0.218936, 47.57359 ], [ 0.230576, 47.57731 ], [ 0.234568, 47.57861 ], [ 0.230576, 47.585003 ], [ 0.230002, 47.608398 ], [ 0.232709, 47.61089 ], [ 0.25456, 47.61203 ], [ 0.259115, 47.612301 ], [ 0.275412, 47.5991 ], [ 0.322104, 47.595237 ], [ 0.339494, 47.583179 ], [ 0.339107, 47.57974 ], [ 0.37466, 47.57051 ], [ 0.378484, 47.56853 ], [ 0.397913, 47.57753 ], [ 0.402577, 47.578512 ], [ 0.3968, 47.59136 ], [ 0.395085, 47.594583 ], [ 0.382414, 47.60998 ], [ 0.373233, 47.61334 ], [ 0.364557, 47.62207 ], [ 0.381437, 47.639677 ], [ 0.382788, 47.643103 ], [ 0.391499, 47.641 ], [ 0.39625, 47.640855 ], [ 0.426615, 47.617726 ], [ 0.431741, 47.618316 ], [ 0.451411, 47.62146 ], [ 0.459238, 47.640594 ], [ 0.461177, 47.643806 ], [ 0.47545, 47.64688 ], [ 0.478496, 47.644182 ], [ 0.493419, 47.64508 ], [ 0.498418, 47.64476 ], [ 0.516741, 47.65622 ], [ 0.525724, 47.653936 ], [ 0.545247, 47.65717 ], [ 0.555785, 47.66397 ], [ 0.559603, 47.66617 ], [ 0.558792, 47.670796 ], [ 0.588942, 47.670053 ], [ 0.612683, 47.682913 ], [ 0.61868, 47.69226 ], [ 0.614431, 47.69421 ], [ 0.628781, 47.70803 ], [ 0.63877, 47.708125 ], [ 0.651962, 47.698476 ], [ 0.645512, 47.6893 ], [ 0.64478, 47.68594 ], [ 0.649237, 47.68436 ], [ 0.654258, 47.68419 ], [ 0.672603, 47.6959 ], [ 0.674774, 47.69901 ], [ 0.707317, 47.68297 ], [ 0.712153, 47.68181 ], [ 0.719417, 47.69 ], [ 0.732608, 47.693098 ], [ 0.735651, 47.69554 ], [ 0.787171, 47.68083 ], [ 0.80259, 47.6794 ], [ 0.81178, 47.682217 ], [ 0.829337, 47.67674 ], [ 0.834169, 47.676934 ], [ 0.840919, 47.68013 ], [ 0.844288, 47.681876 ], [ 0.865296, 47.689338 ], [ 0.867411, 47.68649 ], [ 0.85961, 47.67951 ], [ 0.862011, 47.67683 ], [ 0.860543, 47.67355 ], [ 0.844708, 47.64511 ], [ 0.862295, 47.63317 ], [ 0.859344, 47.626686 ], [ 0.850765, 47.62308 ], [ 0.852747, 47.6129 ], [ 0.85767, 47.611996 ], [ 0.864282, 47.599827 ], [ 0.894062, 47.60389 ], [ 0.899155, 47.603719 ], [ 0.895291, 47.61292 ], [ 0.904079, 47.61597 ], [ 0.916768, 47.630012 ], [ 0.919605, 47.632755 ], [ 0.9326, 47.62878 ], [ 0.937343, 47.628423 ], [ 0.951655, 47.62615 ], [ 0.960922, 47.62797 ], [ 0.96527, 47.62957 ], [ 0.972786, 47.621751 ], [ 0.987056, 47.62053 ], [ 0.991789, 47.62003 ], [ 0.984911, 47.604331 ], [ 0.987657, 47.59117 ], [ 0.995606, 47.5872 ], [ 0.997017, 47.583974 ], [ 1.000398, 47.58396 ], [ 1.003723, 47.584368 ], [ 1.01254, 47.60279 ], [ 1.019281, 47.60768 ], [ 1.028918, 47.608494 ], [ 1.033353, 47.607012 ], [ 1.059904, 47.57649 ], [ 1.062099, 47.56955 ], [ 1.063593, 47.56614 ], [ 1.073175, 47.5712 ], [ 1.077002, 47.57245 ], [ 1.076557, 47.5619 ], [ 1.047554, 47.53686 ], [ 1.045035, 47.53157 ], [ 1.068832, 47.51947 ], [ 1.068855, 47.502995 ], [ 1.080281, 47.49157 ], [ 1.081583, 47.488213 ], [ 1.090288, 47.472842 ], [ 1.093746, 47.47049 ], [ 1.092002, 47.467999 ], [ 1.086006, 47.46447 ], [ 1.08711, 47.46182 ], [ 1.10772, 47.465122 ], [ 1.112883, 47.465917 ], [ 1.128852, 47.450102 ], [ 1.133366, 47.44895 ], [ 1.131913, 47.44569 ], [ 1.114759, 47.42924 ], [ 1.085019, 47.429687 ], [ 1.110523, 47.408628 ], [ 1.113388, 47.39847 ], [ 1.121682, 47.39038 ], [ 1.121851, 47.38365 ], [ 1.118514, 47.381654 ], [ 1.107408, 47.372883 ], [ 1.106881, 47.36716 ], [ 1.122414, 47.35507 ], [ 1.115791, 47.350103 ], [ 1.107242, 47.33439 ], [ 1.106313, 47.331083 ], [ 1.094853, 47.328537 ], [ 1.105988, 47.301614 ], [ 1.108127, 47.29841 ], [ 1.131214, 47.29454 ], [ 1.162064, 47.272205 ], [ 1.173372, 47.28557 ], [ 1.174129, 47.2886 ], [ 1.182432, 47.28493 ], [ 1.197231, 47.284418 ], [ 1.215287, 47.28903 ], [ 1.215691, 47.292394 ], [ 1.219343, 47.293611 ], [ 1.223335, 47.294177 ], [ 1.242562, 47.286627 ], [ 1.243638, 47.28366 ], [ 1.243286, 47.278263 ], [ 1.242151, 47.27573 ], [ 1.264976, 47.25724 ], [ 1.275068, 47.256012 ], [ 1.287979, 47.24099 ], [ 1.301678, 47.22337 ], [ 1.302775, 47.22001 ], [ 1.30451, 47.21697 ], [ 1.322029, 47.193875 ], [ 1.323763, 47.19121 ], [ 1.326666, 47.18622 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "39", "CODE_DEPT": "38", "NOM_DEPT": "ISERE", "CODE_CHF": "185", "NOM_CHF": "GRENOBLE", "X_CHF_LIEU": "9140", "Y_CHF_LIEU": "64578", "X_CENTROID": "9020", "Y_CENTROID": "64659", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.80147, 44.706779 ], [ 5.796837, 44.70557 ], [ 5.774648, 44.6985 ], [ 5.755312, 44.696965 ], [ 5.73636, 44.712668 ], [ 5.717932, 44.71537 ], [ 5.70406, 44.729299 ], [ 5.699316, 44.724451 ], [ 5.691217, 44.722612 ], [ 5.668003, 44.72468 ], [ 5.660657, 44.721369 ], [ 5.647102, 44.724099 ], [ 5.645942, 44.726577 ], [ 5.643978, 44.73158 ], [ 5.639871, 44.73265 ], [ 5.629065, 44.744797 ], [ 5.626659, 44.750385 ], [ 5.626315, 44.753293 ], [ 5.62238, 44.754035 ], [ 5.607698, 44.755859 ], [ 5.586144, 44.764129 ], [ 5.582047, 44.77787 ], [ 5.577771, 44.77978 ], [ 5.548387, 44.7931 ], [ 5.545874, 44.787879 ], [ 5.553872, 44.774876 ], [ 5.548726, 44.770716 ], [ 5.48156, 44.786013 ], [ 5.477975, 44.79192 ], [ 5.46402, 44.793881 ], [ 5.460202, 44.799992 ], [ 5.475126, 44.807928 ], [ 5.484766, 44.82307 ], [ 5.480397, 44.82272 ], [ 5.463795, 44.82598 ], [ 5.464305, 44.82952 ], [ 5.474919, 44.867889 ], [ 5.470453, 44.87809 ], [ 5.480488, 44.898175 ], [ 5.483565, 44.92301 ], [ 5.483029, 44.926367 ], [ 5.477675, 44.966761 ], [ 5.47919, 44.97003 ], [ 5.488361, 44.989665 ], [ 5.49306, 44.99541 ], [ 5.480436, 45.01308 ], [ 5.483609, 45.02279 ], [ 5.479206, 45.024037 ], [ 5.47773, 45.033439 ], [ 5.465229, 45.04354 ], [ 5.466517, 45.05403 ], [ 5.475777, 45.07029 ], [ 5.484569, 45.07304 ], [ 5.494196, 45.07167 ], [ 5.486388, 45.080783 ], [ 5.473718, 45.08639 ], [ 5.46395, 45.08693 ], [ 5.457488, 45.08167 ], [ 5.455339, 45.07907 ], [ 5.447812, 45.07179 ], [ 5.44593, 45.06859 ], [ 5.432402, 45.0545 ], [ 5.422873, 45.053095 ], [ 5.40765, 45.044867 ], [ 5.393834, 45.04685 ], [ 5.385417, 45.055083 ], [ 5.384813, 45.04896 ], [ 5.397269, 45.03833 ], [ 5.39289, 45.037249 ], [ 5.384095, 45.035979 ], [ 5.369797, 45.04395 ], [ 5.352338, 45.04696 ], [ 5.347807, 45.0474 ], [ 5.340586, 45.06189 ], [ 5.333351, 45.059988 ], [ 5.329014, 45.058691 ], [ 5.321077, 45.055173 ], [ 5.320482, 45.05186 ], [ 5.316422, 45.051703 ], [ 5.305798, 45.05538 ], [ 5.30689, 45.05845 ], [ 5.29162, 45.06389 ], [ 5.28982, 45.06088 ], [ 5.276451, 45.059679 ], [ 5.275255, 45.056524 ], [ 5.272423, 45.054996 ], [ 5.266332, 45.056165 ], [ 5.265166, 45.059387 ], [ 5.246537, 45.060728 ], [ 5.244513, 45.06697 ], [ 5.239853, 45.06773 ], [ 5.231728, 45.071168 ], [ 5.227494, 45.07722 ], [ 5.224169, 45.079912 ], [ 5.220014, 45.080608 ], [ 5.212351, 45.08327 ], [ 5.207811, 45.08421 ], [ 5.180111, 45.083683 ], [ 5.170834, 45.06872 ], [ 5.162641, 45.065568 ], [ 5.149661, 45.074106 ], [ 5.134543, 45.074676 ], [ 5.135416, 45.0779 ], [ 5.156072, 45.08279 ], [ 5.162894, 45.09843 ], [ 5.167161, 45.10023 ], [ 5.186889, 45.12013 ], [ 5.187495, 45.122937 ], [ 5.187561, 45.12853 ], [ 5.1892, 45.14209 ], [ 5.184447, 45.148146 ], [ 5.191216, 45.157165 ], [ 5.189357, 45.163957 ], [ 5.188036, 45.16729 ], [ 5.175783, 45.18127 ], [ 5.169774, 45.19443 ], [ 5.168459, 45.19764 ], [ 5.167415, 45.21013 ], [ 5.170895, 45.212445 ], [ 5.182678, 45.217548 ], [ 5.201713, 45.2174 ], [ 5.199656, 45.220494 ], [ 5.191351, 45.22386 ], [ 5.176541, 45.248402 ], [ 5.162538, 45.246719 ], [ 5.153102, 45.2563 ], [ 5.141072, 45.24525 ], [ 5.122195, 45.24544 ], [ 5.130631, 45.283678 ], [ 5.138789, 45.29644 ], [ 5.135363, 45.298279 ], [ 5.13052, 45.297795 ], [ 5.120994, 45.29733 ], [ 5.116362, 45.29131 ], [ 5.10791, 45.28785 ], [ 5.088531, 45.28625 ], [ 5.075415, 45.28183 ], [ 5.073566, 45.283228 ], [ 5.070509, 45.28577 ], [ 5.067888, 45.2956 ], [ 5.066365, 45.298584 ], [ 5.05911, 45.31362 ], [ 5.056476, 45.31661 ], [ 5.032911, 45.318104 ], [ 5.028752, 45.31713 ], [ 5.020647, 45.319289 ], [ 5.018797, 45.3225 ], [ 5.009652, 45.34223 ], [ 5.004716, 45.342067 ], [ 4.990369, 45.343413 ], [ 4.978246, 45.337954 ], [ 4.973933, 45.336273 ], [ 4.95774, 45.329379 ], [ 4.948148, 45.32858 ], [ 4.943909, 45.327864 ], [ 4.928178, 45.32273 ], [ 4.925238, 45.320404 ], [ 4.903057, 45.310191 ], [ 4.899498, 45.30765 ], [ 4.878779, 45.297713 ], [ 4.858617, 45.298518 ], [ 4.858988, 45.301997 ], [ 4.858799, 45.30895 ], [ 4.854363, 45.308 ], [ 4.809212, 45.300787 ], [ 4.805088, 45.29876 ], [ 4.800462, 45.29737 ], [ 4.797706, 45.29977 ], [ 4.781541, 45.309877 ], [ 4.777746, 45.311739 ], [ 4.762214, 45.32355 ], [ 4.760834, 45.33641 ], [ 4.761049, 45.338384 ], [ 4.761683, 45.341472 ], [ 4.773748, 45.34815 ], [ 4.772551, 45.354297 ], [ 4.7698, 45.356962 ], [ 4.755997, 45.365681 ], [ 4.757023, 45.37146 ], [ 4.756426, 45.3748 ], [ 4.758848, 45.38472 ], [ 4.75485, 45.39779 ], [ 4.752409, 45.40023 ], [ 4.744783, 45.407368 ], [ 4.743146, 45.42042 ], [ 4.756688, 45.430069 ], [ 4.759953, 45.4326 ], [ 4.759948, 45.43849 ], [ 4.758645, 45.44139 ], [ 4.755536, 45.447047 ], [ 4.754932, 45.451028 ], [ 4.756936, 45.455707 ], [ 4.772288, 45.45556 ], [ 4.775918, 45.45421 ], [ 4.779476, 45.45504 ], [ 4.781318, 45.457782 ], [ 4.780067, 45.466664 ], [ 4.779996, 45.46965 ], [ 4.794931, 45.477065 ], [ 4.799126, 45.478502 ], [ 4.801278, 45.47935 ], [ 4.8136, 45.48419 ], [ 4.824478, 45.49494 ], [ 4.837207, 45.49916 ], [ 4.841456, 45.500603 ], [ 4.845381, 45.503844 ], [ 4.848693, 45.50637 ], [ 4.861328, 45.516849 ], [ 4.864208, 45.51942 ], [ 4.871814, 45.527636 ], [ 4.87277, 45.53091 ], [ 4.863055, 45.53775 ], [ 4.83654, 45.54482 ], [ 4.832431, 45.546921 ], [ 4.820698, 45.55853 ], [ 4.819066, 45.560784 ], [ 4.81601, 45.56535 ], [ 4.814331, 45.56811 ], [ 4.808442, 45.57235 ], [ 4.778305, 45.583981 ], [ 4.777132, 45.58739 ], [ 4.806022, 45.589007 ], [ 4.810818, 45.589722 ], [ 4.828533, 45.58773 ], [ 4.84462, 45.581562 ], [ 4.848644, 45.579919 ], [ 4.857586, 45.57652 ], [ 4.859784, 45.590833 ], [ 4.867189, 45.595466 ], [ 4.876687, 45.596695 ], [ 4.882762, 45.60179 ], [ 4.887708, 45.601581 ], [ 4.891364, 45.60155 ], [ 4.912981, 45.60698 ], [ 4.927079, 45.60572 ], [ 4.929941, 45.606467 ], [ 4.932731, 45.607347 ], [ 4.971512, 45.6127 ], [ 4.993871, 45.604875 ], [ 4.998331, 45.603282 ], [ 4.998873, 45.60372 ], [ 5.001745, 45.61396 ], [ 4.99231, 45.61573 ], [ 4.989447, 45.618573 ], [ 5.002707, 45.622463 ], [ 5.033762, 45.61412 ], [ 5.040266, 45.618563 ], [ 5.044126, 45.620547 ], [ 5.036484, 45.629522 ], [ 5.038303, 45.64337 ], [ 5.058066, 45.65334 ], [ 5.056684, 45.655575 ], [ 5.054025, 45.66005 ], [ 5.079511, 45.67613 ], [ 5.089164, 45.6772 ], [ 5.091109, 45.680388 ], [ 5.107072, 45.68822 ], [ 5.104281, 45.698294 ], [ 5.130745, 45.705183 ], [ 5.143568, 45.70131 ], [ 5.152058, 45.70408 ], [ 5.155332, 45.701662 ], [ 5.156647, 45.70506 ], [ 5.159244, 45.71525 ], [ 5.155242, 45.717167 ], [ 5.142938, 45.72221 ], [ 5.133749, 45.73339 ], [ 5.130361, 45.7356 ], [ 5.094527, 45.739453 ], [ 5.089879, 45.75263 ], [ 5.091591, 45.762848 ], [ 5.09354, 45.766036 ], [ 5.088802, 45.76702 ], [ 5.069344, 45.76641 ], [ 5.059605, 45.782074 ], [ 5.060075, 45.78534 ], [ 5.059069, 45.791857 ], [ 5.063732, 45.790871 ], [ 5.086697, 45.785242 ], [ 5.090735, 45.78716 ], [ 5.101067, 45.81338 ], [ 5.109059, 45.798321 ], [ 5.113621, 45.79941 ], [ 5.112341, 45.80601 ], [ 5.116455, 45.8112 ], [ 5.121251, 45.811622 ], [ 5.139582, 45.806 ], [ 5.144202, 45.80457 ], [ 5.157854, 45.803218 ], [ 5.172728, 45.79497 ], [ 5.177082, 45.79339 ], [ 5.184895, 45.78418 ], [ 5.18732, 45.781021 ], [ 5.188117, 45.77451 ], [ 5.195541, 45.771151 ], [ 5.200198, 45.77142 ], [ 5.224334, 45.76884 ], [ 5.236253, 45.7752 ], [ 5.240203, 45.77737 ], [ 5.251647, 45.7827 ], [ 5.255627, 45.78431 ], [ 5.263118, 45.787706 ], [ 5.266895, 45.78937 ], [ 5.278328, 45.803985 ], [ 5.288808, 45.81103 ], [ 5.290627, 45.814186 ], [ 5.291011, 45.821277 ], [ 5.299254, 45.83419 ], [ 5.302491, 45.848133 ], [ 5.314118, 45.85826 ], [ 5.330497, 45.864784 ], [ 5.334517, 45.8708 ], [ 5.335545, 45.87404 ], [ 5.338765, 45.878504 ], [ 5.340914, 45.880514 ], [ 5.354928, 45.88278 ], [ 5.374821, 45.87234 ], [ 5.37802, 45.86966 ], [ 5.381008, 45.86718 ], [ 5.404377, 45.85687 ], [ 5.414546, 45.85089 ], [ 5.416317, 45.848044 ], [ 5.417908, 45.841118 ], [ 5.430269, 45.83496 ], [ 5.433658, 45.8323 ], [ 5.435634, 45.829773 ], [ 5.436129, 45.826383 ], [ 5.422726, 45.82372 ], [ 5.422513, 45.80713 ], [ 5.435753, 45.79743 ], [ 5.439151, 45.795056 ], [ 5.444401, 45.789132 ], [ 5.447078, 45.786191 ], [ 5.450481, 45.784234 ], [ 5.460403, 45.778306 ], [ 5.483998, 45.75328 ], [ 5.494597, 45.7466 ], [ 5.498152, 45.744385 ], [ 5.514251, 45.733378 ], [ 5.517509, 45.73119 ], [ 5.524538, 45.718336 ], [ 5.527275, 45.71546 ], [ 5.545542, 45.71359 ], [ 5.549373, 45.711894 ], [ 5.552641, 45.7097 ], [ 5.556418, 45.70043 ], [ 5.570146, 45.69675 ], [ 5.575188, 45.69099 ], [ 5.574246, 45.687588 ], [ 5.565766, 45.68492 ], [ 5.556579, 45.696685 ], [ 5.5523, 45.6984 ], [ 5.545775, 45.69463 ], [ 5.547252, 45.68456 ], [ 5.550315, 45.68185 ], [ 5.551755, 45.673496 ], [ 5.555279, 45.671605 ], [ 5.563144, 45.674111 ], [ 5.567337, 45.673078 ], [ 5.579384, 45.66793 ], [ 5.578845, 45.66464 ], [ 5.581829, 45.661944 ], [ 5.601936, 45.652616 ], [ 5.604439, 45.63618 ], [ 5.614911, 45.625412 ], [ 5.621712, 45.61637 ], [ 5.623748, 45.61327 ], [ 5.622591, 45.609989 ], [ 5.624088, 45.60338 ], [ 5.637656, 45.589626 ], [ 5.640001, 45.58713 ], [ 5.645896, 45.58294 ], [ 5.646909, 45.57702 ], [ 5.671145, 45.561328 ], [ 5.67121, 45.55468 ], [ 5.675183, 45.55277 ], [ 5.673318, 45.549987 ], [ 5.681071, 45.54139 ], [ 5.676788, 45.54164 ], [ 5.673337, 45.54346 ], [ 5.67211, 45.54009 ], [ 5.677133, 45.53099 ], [ 5.691109, 45.527893 ], [ 5.69125, 45.52181 ], [ 5.695685, 45.519963 ], [ 5.701047, 45.51769 ], [ 5.712079, 45.500593 ], [ 5.713964, 45.497484 ], [ 5.719338, 45.48635 ], [ 5.719744, 45.483396 ], [ 5.733757, 45.474568 ], [ 5.736531, 45.47186 ], [ 5.732183, 45.452721 ], [ 5.739125, 45.440857 ], [ 5.739988, 45.43758 ], [ 5.753097, 45.43507 ], [ 5.757658, 45.434925 ], [ 5.760698, 45.43636 ], [ 5.763387, 45.43922 ], [ 5.782462, 45.441105 ], [ 5.796363, 45.43807 ], [ 5.811361, 45.425382 ], [ 5.829773, 45.421099 ], [ 5.834628, 45.4202 ], [ 5.835269, 45.42023 ], [ 5.854303, 45.41592 ], [ 5.859585, 45.409908 ], [ 5.879282, 45.40687 ], [ 5.890609, 45.399858 ], [ 5.891188, 45.39279 ], [ 5.891003, 45.389242 ], [ 5.894443, 45.38801 ], [ 5.91089, 45.394152 ], [ 5.923503, 45.41293 ], [ 5.906359, 45.409993 ], [ 5.903168, 45.4231 ], [ 5.904884, 45.43 ], [ 5.904455, 45.432308 ], [ 5.913134, 45.435534 ], [ 5.920589, 45.444413 ], [ 5.925239, 45.4649 ], [ 5.917251, 45.47324 ], [ 5.91537, 45.47645 ], [ 5.915827, 45.47661 ], [ 5.971015, 45.4914 ], [ 5.979432, 45.487803 ], [ 5.990198, 45.476244 ], [ 6.009027, 45.471992 ], [ 6.009951, 45.46518 ], [ 6.011361, 45.458827 ], [ 6.007789, 45.454111 ], [ 6.045157, 45.43952 ], [ 6.049236, 45.437807 ], [ 6.054414, 45.44074 ], [ 6.067078, 45.444052 ], [ 6.076276, 45.44325 ], [ 6.085559, 45.443059 ], [ 6.090016, 45.444008 ], [ 6.094287, 45.442322 ], [ 6.094585, 45.43549 ], [ 6.094509, 45.432052 ], [ 6.098749, 45.432349 ], [ 6.102561, 45.43368 ], [ 6.121315, 45.438284 ], [ 6.130143, 45.43503 ], [ 6.146025, 45.413288 ], [ 6.175458, 45.394101 ], [ 6.190269, 45.368 ], [ 6.175046, 45.35955 ], [ 6.170009, 45.359542 ], [ 6.176652, 45.35523 ], [ 6.190649, 45.3539 ], [ 6.194759, 45.352251 ], [ 6.191427, 45.33961 ], [ 6.187807, 45.333065 ], [ 6.185237, 45.33035 ], [ 6.184451, 45.31796 ], [ 6.179716, 45.317804 ], [ 6.15778, 45.312315 ], [ 6.152869, 45.303632 ], [ 6.141243, 45.298786 ], [ 6.142406, 45.295401 ], [ 6.130815, 45.284534 ], [ 6.139436, 45.25834 ], [ 6.125696, 45.24427 ], [ 6.12714, 45.2409 ], [ 6.128797, 45.230423 ], [ 6.139861, 45.2233 ], [ 6.13968, 45.213059 ], [ 6.159013, 45.202349 ], [ 6.161919, 45.188407 ], [ 6.160589, 45.181804 ], [ 6.146321, 45.16399 ], [ 6.14379, 45.154559 ], [ 6.16117, 45.151103 ], [ 6.164686, 45.15316 ], [ 6.169033, 45.154124 ], [ 6.17683, 45.1629 ], [ 6.180992, 45.16486 ], [ 6.207805, 45.156639 ], [ 6.222062, 45.14258 ], [ 6.249773, 45.149197 ], [ 6.26149, 45.14289 ], [ 6.265355, 45.13668 ], [ 6.260566, 45.12685 ], [ 6.258496, 45.12365 ], [ 6.245508, 45.119204 ], [ 6.229263, 45.106807 ], [ 6.243285, 45.06995 ], [ 6.22008, 45.065368 ], [ 6.218717, 45.062 ], [ 6.209563, 45.0423 ], [ 6.208686, 45.02834 ], [ 6.202925, 45.022933 ], [ 6.203138, 45.01245 ], [ 6.214373, 45.00568 ], [ 6.256173, 44.996219 ], [ 6.313282, 45.00386 ], [ 6.318199, 45.00387 ], [ 6.322681, 44.99762 ], [ 6.316204, 44.988209 ], [ 6.315992, 44.981186 ], [ 6.328214, 44.96635 ], [ 6.323254, 44.956575 ], [ 6.326279, 44.95001 ], [ 6.353422, 44.94256 ], [ 6.358172, 44.941575 ], [ 6.35491, 44.92778 ], [ 6.357945, 44.90729 ], [ 6.35466, 44.8971 ], [ 6.35855, 44.88732 ], [ 6.351997, 44.88203 ], [ 6.35047, 44.875131 ], [ 6.355364, 44.85482 ], [ 6.352053, 44.852842 ], [ 6.336319, 44.84837 ], [ 6.319428, 44.855139 ], [ 6.304353, 44.872792 ], [ 6.294563, 44.87398 ], [ 6.267095, 44.869092 ], [ 6.248866, 44.85256 ], [ 6.229098, 44.852 ], [ 6.196382, 44.85898 ], [ 6.192556, 44.85674 ], [ 6.169659, 44.852391 ], [ 6.165014, 44.853587 ], [ 6.157906, 44.85829 ], [ 6.130449, 44.862515 ], [ 6.113151, 44.84553 ], [ 6.097322, 44.83823 ], [ 6.093293, 44.83637 ], [ 6.056502, 44.815814 ], [ 6.052272, 44.81717 ], [ 6.030211, 44.8381 ], [ 6.016206, 44.83529 ], [ 6.003416, 44.820355 ], [ 5.979182, 44.818594 ], [ 5.975607, 44.81658 ], [ 5.949519, 44.80453 ], [ 5.951206, 44.80146 ], [ 5.977782, 44.79099 ], [ 5.979498, 44.78446 ], [ 5.980273, 44.781184 ], [ 5.976427, 44.779737 ], [ 5.953165, 44.771314 ], [ 5.952215, 44.768412 ], [ 5.951122, 44.759621 ], [ 5.946886, 44.76131 ], [ 5.937689, 44.763428 ], [ 5.919572, 44.75279 ], [ 5.902203, 44.75799 ], [ 5.893139, 44.75557 ], [ 5.885456, 44.74729 ], [ 5.880592, 44.746846 ], [ 5.867467, 44.751007 ], [ 5.847986, 44.751527 ], [ 5.841024, 44.756373 ], [ 5.827093, 44.75969 ], [ 5.826526, 44.756203 ], [ 5.829361, 44.74244 ], [ 5.81886, 44.73065 ], [ 5.811319, 44.71402 ], [ 5.80147, 44.706779 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "40", "CODE_DEPT": "39", "NOM_DEPT": "JURA", "CODE_CHF": "300", "NOM_CHF": "LONS-LE-SAUNIER", "X_CHF_LIEU": "8951", "Y_CHF_LIEU": "66225", "X_CENTROID": "9059", "Y_CENTROID": "66288", "CODE_REG": "43", "NOM_REGION": "FRANCHE-COMTE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.064008, 46.41623 ], [ 6.060575, 46.417509 ], [ 6.056984, 46.41619 ], [ 6.052807, 46.411409 ], [ 6.03102, 46.388101 ], [ 6.013384, 46.375997 ], [ 5.984117, 46.362656 ], [ 5.975139, 46.35029 ], [ 5.944004, 46.31221 ], [ 5.941531, 46.30926 ], [ 5.937319, 46.30977 ], [ 5.925908, 46.31377 ], [ 5.92187, 46.31194 ], [ 5.909198, 46.283945 ], [ 5.894627, 46.286614 ], [ 5.891985, 46.2836 ], [ 5.869187, 46.26498 ], [ 5.867694, 46.26822 ], [ 5.86085, 46.268771 ], [ 5.850659, 46.2617 ], [ 5.826262, 46.261715 ], [ 5.81828, 46.26287 ], [ 5.813575, 46.2636 ], [ 5.766045, 46.26833 ], [ 5.761568, 46.26715 ], [ 5.733675, 46.26377 ], [ 5.72966, 46.261928 ], [ 5.725181, 46.26069 ], [ 5.721538, 46.263177 ], [ 5.71596, 46.28037 ], [ 5.718978, 46.294287 ], [ 5.714553, 46.30807 ], [ 5.684582, 46.310934 ], [ 5.683316, 46.315874 ], [ 5.68023, 46.318433 ], [ 5.668481, 46.3239 ], [ 5.645285, 46.324791 ], [ 5.649798, 46.334192 ], [ 5.649207, 46.3373 ], [ 5.646092, 46.34281 ], [ 5.637458, 46.336442 ], [ 5.635057, 46.33331 ], [ 5.612518, 46.32656 ], [ 5.605673, 46.31364 ], [ 5.604641, 46.30944 ], [ 5.60215, 46.30681 ], [ 5.597891, 46.2979 ], [ 5.587251, 46.292509 ], [ 5.582606, 46.29324 ], [ 5.564674, 46.29277 ], [ 5.561577, 46.286576 ], [ 5.559458, 46.283515 ], [ 5.539301, 46.268903 ], [ 5.51137, 46.26436 ], [ 5.507498, 46.265481 ], [ 5.502609, 46.270211 ], [ 5.499595, 46.268205 ], [ 5.475362, 46.265221 ], [ 5.471308, 46.26721 ], [ 5.457672, 46.27685 ], [ 5.459001, 46.290531 ], [ 5.466531, 46.29324 ], [ 5.473218, 46.30893 ], [ 5.475305, 46.315385 ], [ 5.471469, 46.31653 ], [ 5.46518, 46.323542 ], [ 5.460892, 46.32247 ], [ 5.454476, 46.317998 ], [ 5.437146, 46.315127 ], [ 5.435942, 46.318468 ], [ 5.423534, 46.34773 ], [ 5.41024, 46.309105 ], [ 5.406583, 46.30991 ], [ 5.404054, 46.31477 ], [ 5.404041, 46.31567 ], [ 5.404352, 46.31918 ], [ 5.401686, 46.332799 ], [ 5.402729, 46.33612 ], [ 5.373462, 46.35224 ], [ 5.374637, 46.355329 ], [ 5.375761, 46.35843 ], [ 5.376474, 46.361669 ], [ 5.363472, 46.37002 ], [ 5.365075, 46.37308 ], [ 5.375164, 46.37971 ], [ 5.377881, 46.382324 ], [ 5.370296, 46.38603 ], [ 5.367105, 46.388692 ], [ 5.36352, 46.390388 ], [ 5.348116, 46.39942 ], [ 5.334092, 46.39972 ], [ 5.309146, 46.41026 ], [ 5.298806, 46.41553 ], [ 5.307817, 46.41486 ], [ 5.312333, 46.41602 ], [ 5.308145, 46.42047 ], [ 5.321727, 46.42895 ], [ 5.310561, 46.44677 ], [ 5.313215, 46.4525 ], [ 5.321799, 46.453601 ], [ 5.323147, 46.45648 ], [ 5.323351, 46.46251 ], [ 5.37379, 46.460451 ], [ 5.376345, 46.463127 ], [ 5.385312, 46.470544 ], [ 5.39358, 46.467596 ], [ 5.398099, 46.466601 ], [ 5.413803, 46.472045 ], [ 5.41843, 46.477298 ], [ 5.420044, 46.48018 ], [ 5.419959, 46.4809 ], [ 5.421173, 46.500302 ], [ 5.407571, 46.50041 ], [ 5.395657, 46.50569 ], [ 5.392428, 46.50821 ], [ 5.382494, 46.51557 ], [ 5.362852, 46.51791 ], [ 5.359459, 46.52364 ], [ 5.360073, 46.52424 ], [ 5.361582, 46.54823 ], [ 5.362579, 46.551642 ], [ 5.357651, 46.560563 ], [ 5.364888, 46.564513 ], [ 5.36788, 46.56695 ], [ 5.364614, 46.57504 ], [ 5.362124, 46.57727 ], [ 5.370666, 46.58053 ], [ 5.375536, 46.58016 ], [ 5.400427, 46.580232 ], [ 5.404691, 46.58211 ], [ 5.411943, 46.59863 ], [ 5.400092, 46.60937 ], [ 5.398593, 46.612719 ], [ 5.408583, 46.614554 ], [ 5.41379, 46.61464 ], [ 5.429678, 46.625847 ], [ 5.43349, 46.627757 ], [ 5.440623, 46.634902 ], [ 5.440601, 46.63791 ], [ 5.415008, 46.654146 ], [ 5.422912, 46.65831 ], [ 5.427103, 46.660161 ], [ 5.424814, 46.661344 ], [ 5.424647, 46.66464 ], [ 5.420175, 46.670009 ], [ 5.42209, 46.673032 ], [ 5.398501, 46.68268 ], [ 5.395359, 46.68505 ], [ 5.406696, 46.6954 ], [ 5.408349, 46.69844 ], [ 5.406642, 46.703931 ], [ 5.395012, 46.712507 ], [ 5.395908, 46.7156 ], [ 5.390789, 46.72636 ], [ 5.393641, 46.72863 ], [ 5.365725, 46.73107 ], [ 5.362002, 46.733117 ], [ 5.36676, 46.752396 ], [ 5.371518, 46.75152 ], [ 5.390112, 46.7672 ], [ 5.390248, 46.770592 ], [ 5.383425, 46.77553 ], [ 5.37375, 46.77707 ], [ 5.370807, 46.78352 ], [ 5.355051, 46.79094 ], [ 5.346456, 46.790222 ], [ 5.341506, 46.790692 ], [ 5.332496, 46.797713 ], [ 5.331173, 46.81027 ], [ 5.328584, 46.812916 ], [ 5.333584, 46.817814 ], [ 5.335836, 46.820732 ], [ 5.344929, 46.82101 ], [ 5.351119, 46.816088 ], [ 5.371185, 46.825152 ], [ 5.375268, 46.82699 ], [ 5.378666, 46.827574 ], [ 5.382143, 46.82784 ], [ 5.386981, 46.826825 ], [ 5.405169, 46.8324 ], [ 5.410217, 46.83258 ], [ 5.413464, 46.828263 ], [ 5.416653, 46.826782 ], [ 5.463195, 46.82858 ], [ 5.459748, 46.83418 ], [ 5.464207, 46.84017 ], [ 5.457796, 46.84527 ], [ 5.459286, 46.85524 ], [ 5.454209, 46.85592 ], [ 5.445188, 46.85941 ], [ 5.442352, 46.854479 ], [ 5.431176, 46.8606 ], [ 5.428179, 46.860238 ], [ 5.425168, 46.85986 ], [ 5.420118, 46.860579 ], [ 5.404005, 46.86888 ], [ 5.400587, 46.88273 ], [ 5.403681, 46.889389 ], [ 5.392627, 46.891384 ], [ 5.391603, 46.894072 ], [ 5.387129, 46.893039 ], [ 5.382801, 46.891741 ], [ 5.377783, 46.88999 ], [ 5.360337, 46.88434 ], [ 5.35077, 46.892129 ], [ 5.341274, 46.8901 ], [ 5.335521, 46.884666 ], [ 5.328758, 46.889316 ], [ 5.328806, 46.895927 ], [ 5.313989, 46.90866 ], [ 5.312069, 46.911703 ], [ 5.31075, 46.91807 ], [ 5.310031, 46.92125 ], [ 5.308512, 46.926925 ], [ 5.307367, 46.93646 ], [ 5.292306, 46.9407 ], [ 5.287444, 46.94079 ], [ 5.275311, 46.9353 ], [ 5.270919, 46.92936 ], [ 5.262014, 46.927387 ], [ 5.26267, 46.930815 ], [ 5.26267, 46.937733 ], [ 5.251317, 46.94458 ], [ 5.26227, 46.950171 ], [ 5.263045, 46.953605 ], [ 5.255236, 46.979888 ], [ 5.267767, 46.988388 ], [ 5.271966, 46.989342 ], [ 5.27507, 46.99803 ], [ 5.279146, 46.99915 ], [ 5.298243, 47.00179 ], [ 5.303971, 47.01045 ], [ 5.313647, 47.011302 ], [ 5.31824, 47.01246 ], [ 5.317198, 47.015806 ], [ 5.279764, 47.025333 ], [ 5.275327, 47.02693 ], [ 5.275218, 47.027161 ], [ 5.283484, 47.046318 ], [ 5.295851, 47.05608 ], [ 5.29907, 47.05864 ], [ 5.301895, 47.060904 ], [ 5.310446, 47.06051 ], [ 5.323975, 47.07379 ], [ 5.332533, 47.076593 ], [ 5.341181, 47.07717 ], [ 5.345786, 47.076649 ], [ 5.357909, 47.0786 ], [ 5.35988, 47.08114 ], [ 5.363344, 47.07834 ], [ 5.377627, 47.079322 ], [ 5.390537, 47.086784 ], [ 5.391341, 47.08976 ], [ 5.39781, 47.09465 ], [ 5.398163, 47.10465 ], [ 5.400588, 47.10756 ], [ 5.411215, 47.116853 ], [ 5.412114, 47.11986 ], [ 5.409191, 47.12502 ], [ 5.414128, 47.129753 ], [ 5.414566, 47.13276 ], [ 5.424893, 47.13698 ], [ 5.428918, 47.13696 ], [ 5.438985, 47.14299 ], [ 5.439112, 47.148991 ], [ 5.438298, 47.152017 ], [ 5.445085, 47.15842 ], [ 5.448641, 47.159662 ], [ 5.450873, 47.162857 ], [ 5.45227, 47.166268 ], [ 5.458916, 47.18193 ], [ 5.456227, 47.191629 ], [ 5.452548, 47.19381 ], [ 5.446891, 47.200762 ], [ 5.449262, 47.20322 ], [ 5.470255, 47.2111 ], [ 5.474206, 47.21308 ], [ 5.479136, 47.21851 ], [ 5.475309, 47.231305 ], [ 5.48011, 47.23705 ], [ 5.484335, 47.23806 ], [ 5.480799, 47.25744 ], [ 5.483133, 47.26041 ], [ 5.487558, 47.26656 ], [ 5.488004, 47.280175 ], [ 5.488275, 47.282601 ], [ 5.488559, 47.28502 ], [ 5.493047, 47.28818 ], [ 5.501046, 47.28513 ], [ 5.505365, 47.284071 ], [ 5.508605, 47.29337 ], [ 5.516953, 47.30115 ], [ 5.518539, 47.304187 ], [ 5.522116, 47.305352 ], [ 5.533517, 47.28627 ], [ 5.55606, 47.279047 ], [ 5.555199, 47.269005 ], [ 5.568857, 47.26959 ], [ 5.56976, 47.263576 ], [ 5.573459, 47.261512 ], [ 5.573451, 47.25555 ], [ 5.580744, 47.25286 ], [ 5.583791, 47.25515 ], [ 5.60132, 47.26061 ], [ 5.610811, 47.25906 ], [ 5.62332, 47.25403 ], [ 5.637434, 47.25615 ], [ 5.642305, 47.25619 ], [ 5.646765, 47.258898 ], [ 5.652677, 47.262339 ], [ 5.653365, 47.265008 ], [ 5.66334, 47.26604 ], [ 5.672097, 47.27422 ], [ 5.676645, 47.275723 ], [ 5.683462, 47.274152 ], [ 5.684065, 47.271642 ], [ 5.691668, 47.272295 ], [ 5.697562, 47.267915 ], [ 5.698726, 47.265006 ], [ 5.701682, 47.262208 ], [ 5.718946, 47.24147 ], [ 5.718389, 47.23804 ], [ 5.714028, 47.23601 ], [ 5.722763, 47.225421 ], [ 5.720717, 47.22262 ], [ 5.7234, 47.21842 ], [ 5.727009, 47.21763 ], [ 5.739038, 47.204355 ], [ 5.737666, 47.201289 ], [ 5.755693, 47.20538 ], [ 5.75913, 47.19971 ], [ 5.757191, 47.1967 ], [ 5.761384, 47.194186 ], [ 5.774928, 47.193366 ], [ 5.781091, 47.189885 ], [ 5.785197, 47.18853 ], [ 5.787059, 47.17652 ], [ 5.7851, 47.170565 ], [ 5.793167, 47.17457 ], [ 5.80754, 47.17125 ], [ 5.811467, 47.169054 ], [ 5.810483, 47.159051 ], [ 5.814705, 47.15316 ], [ 5.813663, 47.14989 ], [ 5.823646, 47.142587 ], [ 5.828074, 47.14118 ], [ 5.816597, 47.13479 ], [ 5.805567, 47.11947 ], [ 5.804744, 47.11608 ], [ 5.801869, 47.11053 ], [ 5.79159, 47.10518 ], [ 5.7902, 47.102292 ], [ 5.787552, 47.09599 ], [ 5.778052, 47.09749 ], [ 5.768989, 47.09004 ], [ 5.776818, 47.07789 ], [ 5.778609, 47.074771 ], [ 5.782717, 47.058051 ], [ 5.784717, 47.05491 ], [ 5.762794, 47.04611 ], [ 5.747797, 47.055454 ], [ 5.742758, 47.05591 ], [ 5.737384, 47.0508 ], [ 5.750931, 47.04067 ], [ 5.751268, 47.03719 ], [ 5.749742, 47.033877 ], [ 5.741657, 47.02983 ], [ 5.746332, 47.01996 ], [ 5.749513, 47.017243 ], [ 5.760567, 47.01367 ], [ 5.764418, 47.012482 ], [ 5.769926, 47.01766 ], [ 5.788092, 47.02074 ], [ 5.791866, 47.02264 ], [ 5.799216, 47.03178 ], [ 5.797116, 47.04209 ], [ 5.800341, 47.04481 ], [ 5.805278, 47.04573 ], [ 5.810145, 47.04681 ], [ 5.81492, 47.045883 ], [ 5.817225, 47.03928 ], [ 5.815687, 47.02598 ], [ 5.816025, 47.02259 ], [ 5.817347, 47.016634 ], [ 5.835588, 47.01331 ], [ 5.839449, 47.01535 ], [ 5.840657, 47.00851 ], [ 5.844003, 47.01002 ], [ 5.84693, 47.005845 ], [ 5.846944, 47.0031 ], [ 5.858321, 47.00829 ], [ 5.876931, 47.005813 ], [ 5.881568, 47.00509 ], [ 5.884481, 46.99848 ], [ 5.893725, 46.99652 ], [ 5.907692, 46.9996 ], [ 5.914876, 47.008023 ], [ 5.917343, 47.014438 ], [ 5.921548, 47.01448 ], [ 5.9137, 46.99063 ], [ 5.915004, 46.98722 ], [ 5.924782, 46.981068 ], [ 5.93888, 46.983709 ], [ 5.945111, 46.98885 ], [ 5.948985, 46.98117 ], [ 5.953536, 46.981101 ], [ 5.968591, 46.980282 ], [ 5.968915, 46.97684 ], [ 5.968797, 46.976123 ], [ 5.973172, 46.97596 ], [ 5.975184, 46.973309 ], [ 5.977195, 46.965608 ], [ 5.979789, 46.963478 ], [ 5.959531, 46.95093 ], [ 5.956543, 46.948498 ], [ 5.965485, 46.947448 ], [ 5.993638, 46.935755 ], [ 5.997222, 46.9335 ], [ 5.994455, 46.93104 ], [ 5.983877, 46.92098 ], [ 5.981702, 46.91801 ], [ 5.98195, 46.90821 ], [ 5.999368, 46.89679 ], [ 6.008435, 46.89556 ], [ 6.010313, 46.89245 ], [ 6.009696, 46.873095 ], [ 6.018207, 46.86974 ], [ 6.030152, 46.87447 ], [ 6.032267, 46.871421 ], [ 6.030521, 46.86862 ], [ 6.028808, 46.860321 ], [ 6.02468, 46.85649 ], [ 6.027407, 46.85172 ], [ 6.045962, 46.848848 ], [ 6.047095, 46.845638 ], [ 6.067857, 46.85862 ], [ 6.072026, 46.856851 ], [ 6.083771, 46.851355 ], [ 6.088554, 46.84264 ], [ 6.093277, 46.84232 ], [ 6.097614, 46.84422 ], [ 6.102703, 46.844809 ], [ 6.105555, 46.8453 ], [ 6.11332, 46.83622 ], [ 6.148065, 46.82156 ], [ 6.15224, 46.81953 ], [ 6.148831, 46.81599 ], [ 6.153656, 46.815219 ], [ 6.163781, 46.80384 ], [ 6.182748, 46.794304 ], [ 6.195654, 46.77997 ], [ 6.201136, 46.77529 ], [ 6.20333, 46.772681 ], [ 6.204198, 46.76339 ], [ 6.183659, 46.75463 ], [ 6.181715, 46.74809 ], [ 6.180198, 46.741442 ], [ 6.16818, 46.7361 ], [ 6.164171, 46.73432 ], [ 6.159724, 46.732906 ], [ 6.155252, 46.731515 ], [ 6.152262, 46.72945 ], [ 6.137485, 46.72386 ], [ 6.131107, 46.71962 ], [ 6.130623, 46.71941 ], [ 6.127108, 46.71707 ], [ 6.11296, 46.70774 ], [ 6.109355, 46.70701 ], [ 6.103598, 46.70369 ], [ 6.099766, 46.701272 ], [ 6.086126, 46.69611 ], [ 6.071211, 46.68757 ], [ 6.103265, 46.65249 ], [ 6.099197, 46.64334 ], [ 6.085902, 46.638469 ], [ 6.081737, 46.63654 ], [ 6.062602, 46.62709 ], [ 6.059153, 46.62485 ], [ 6.058497, 46.61898 ], [ 6.062491, 46.613515 ], [ 6.053761, 46.61291 ], [ 6.048567, 46.60772 ], [ 6.083865, 46.585034 ], [ 6.087083, 46.58255 ], [ 6.127186, 46.55582 ], [ 6.131093, 46.55357 ], [ 6.134607, 46.555612 ], [ 6.138109, 46.55766 ], [ 6.155487, 46.54556 ], [ 6.146652, 46.53031 ], [ 6.137178, 46.529723 ], [ 6.124071, 46.51952 ], [ 6.12083, 46.516942 ], [ 6.097317, 46.482454 ], [ 6.073784, 46.46441 ], [ 6.074869, 46.454278 ], [ 6.084833, 46.446494 ], [ 6.086247, 46.443149 ], [ 6.066153, 46.41939 ], [ 6.064008, 46.41623 ] ] ], [ [ [ 5.444408, 46.84535 ], [ 5.443001, 46.84588 ], [ 5.440782, 46.846162 ], [ 5.442092, 46.84842 ], [ 5.440846, 46.848458 ], [ 5.43983, 46.84893 ], [ 5.440312, 46.850586 ], [ 5.441095, 46.851651 ], [ 5.441712, 46.85194 ], [ 5.441975, 46.85194 ], [ 5.441991, 46.85113 ], [ 5.443689, 46.85095 ], [ 5.442904, 46.849838 ], [ 5.446155, 46.84943 ], [ 5.447391, 46.848013 ], [ 5.448702, 46.847976 ], [ 5.447832, 46.84673 ], [ 5.448476, 46.84645 ], [ 5.447838, 46.8457 ], [ 5.446746, 46.84595 ], [ 5.445922, 46.84544 ], [ 5.445157, 46.845637 ], [ 5.444408, 46.84535 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "41", "CODE_DEPT": "40", "NOM_DEPT": "LANDES", "CODE_CHF": "192", "NOM_CHF": "MONT-DE-MARSAN", "X_CHF_LIEU": "4187", "Y_CHF_LIEU": "63163", "X_CENTROID": "3964", "Y_CENTROID": "63257", "CODE_REG": "72", "NOM_REGION": "AQUITAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.242837, 43.58498 ], [ -0.247068, 43.58269 ], [ -0.251662, 43.58266 ], [ -0.25677, 43.5882 ], [ -0.283325, 43.58416 ], [ -0.287162, 43.5746 ], [ -0.294296, 43.567911 ], [ -0.301204, 43.5713 ], [ -0.302204, 43.565653 ], [ -0.303828, 43.562443 ], [ -0.310386, 43.558065 ], [ -0.336562, 43.55122 ], [ -0.348836, 43.556173 ], [ -0.351868, 43.55869 ], [ -0.353597, 43.56179 ], [ -0.367723, 43.56277 ], [ -0.37489, 43.567344 ], [ -0.389034, 43.56818 ], [ -0.397269, 43.565646 ], [ -0.400679, 43.563215 ], [ -0.40333, 43.56573 ], [ -0.406042, 43.56823 ], [ -0.433971, 43.554557 ], [ -0.437718, 43.552817 ], [ -0.446453, 43.55207 ], [ -0.449713, 43.54987 ], [ -0.459394, 43.561143 ], [ -0.459281, 43.56749 ], [ -0.45139, 43.56602 ], [ -0.431717, 43.583547 ], [ -0.431779, 43.586436 ], [ -0.440974, 43.590602 ], [ -0.441407, 43.59348 ], [ -0.449232, 43.59627 ], [ -0.461857, 43.5876 ], [ -0.465249, 43.589605 ], [ -0.504696, 43.57187 ], [ -0.507656, 43.56923 ], [ -0.507312, 43.568467 ], [ -0.521267, 43.559505 ], [ -0.525431, 43.55775 ], [ -0.548448, 43.54483 ], [ -0.552764, 43.543158 ], [ -0.557174, 43.5428 ], [ -0.558901, 43.54608 ], [ -0.561737, 43.55268 ], [ -0.567072, 43.55822 ], [ -0.600039, 43.538654 ], [ -0.614366, 43.537718 ], [ -0.615241, 43.54119 ], [ -0.614894, 43.544726 ], [ -0.61932, 43.5456 ], [ -0.63128, 43.550474 ], [ -0.633751, 43.5541 ], [ -0.638251, 43.553393 ], [ -0.655611, 43.556845 ], [ -0.657889, 43.55975 ], [ -0.641047, 43.57481 ], [ -0.645501, 43.574532 ], [ -0.661363, 43.568774 ], [ -0.688861, 43.55697 ], [ -0.697133, 43.55965 ], [ -0.700472, 43.562061 ], [ -0.707505, 43.557804 ], [ -0.709861, 43.547888 ], [ -0.70821, 43.541306 ], [ -0.712614, 43.54201 ], [ -0.721203, 43.541383 ], [ -0.728545, 43.54517 ], [ -0.73274, 43.552949 ], [ -0.734087, 43.55575 ], [ -0.738083, 43.55778 ], [ -0.770305, 43.579168 ], [ -0.774672, 43.57832 ], [ -0.782303, 43.57547 ], [ -0.781756, 43.565861 ], [ -0.794167, 43.56396 ], [ -0.795699, 43.56147 ], [ -0.803351, 43.55619 ], [ -0.820938, 43.561192 ], [ -0.837584, 43.55468 ], [ -0.842315, 43.554113 ], [ -0.842813, 43.543421 ], [ -0.860091, 43.542555 ], [ -0.863964, 43.544165 ], [ -0.867742, 43.544733 ], [ -0.871468, 43.545447 ], [ -0.893691, 43.550273 ], [ -0.907683, 43.54968 ], [ -0.911988, 43.54833 ], [ -0.919177, 43.54406 ], [ -0.923683, 43.53462 ], [ -0.928007, 43.53339 ], [ -0.935661, 43.53721 ], [ -0.939764, 43.538538 ], [ -0.949635, 43.532251 ], [ -0.962172, 43.535226 ], [ -0.9882, 43.5402 ], [ -1.001151, 43.536966 ], [ -0.989906, 43.531605 ], [ -0.989143, 43.51831 ], [ -0.992759, 43.512285 ], [ -0.993771, 43.50904 ], [ -0.992383, 43.504029 ], [ -1.017977, 43.50597 ], [ -1.023681, 43.501709 ], [ -1.026914, 43.50404 ], [ -1.028963, 43.50714 ], [ -1.04607, 43.51156 ], [ -1.068997, 43.50845 ], [ -1.077715, 43.521231 ], [ -1.081084, 43.523 ], [ -1.083223, 43.516519 ], [ -1.089581, 43.511928 ], [ -1.10733, 43.51432 ], [ -1.11628, 43.50343 ], [ -1.128596, 43.500349 ], [ -1.13298, 43.499705 ], [ -1.137624, 43.499401 ], [ -1.140709, 43.489652 ], [ -1.145124, 43.48859 ], [ -1.14851, 43.490922 ], [ -1.153755, 43.496207 ], [ -1.165674, 43.491272 ], [ -1.169662, 43.493029 ], [ -1.169836, 43.497121 ], [ -1.16492, 43.50836 ], [ -1.16017, 43.50857 ], [ -1.137291, 43.509721 ], [ -1.130839, 43.51416 ], [ -1.133883, 43.52032 ], [ -1.154083, 43.529314 ], [ -1.159516, 43.538665 ], [ -1.169708, 43.54531 ], [ -1.174184, 43.54605 ], [ -1.191399, 43.546862 ], [ -1.195616, 43.54609 ], [ -1.198334, 43.544125 ], [ -1.203884, 43.540261 ], [ -1.207378, 43.5379 ], [ -1.217605, 43.53062 ], [ -1.250529, 43.51684 ], [ -1.253742, 43.51575 ], [ -1.259852, 43.51317 ], [ -1.263935, 43.51147 ], [ -1.291381, 43.49839 ], [ -1.322411, 43.504947 ], [ -1.334037, 43.50367 ], [ -1.334926, 43.50315 ], [ -1.339491, 43.50245 ], [ -1.36965, 43.495024 ], [ -1.409764, 43.49679 ], [ -1.414216, 43.497209 ], [ -1.417658, 43.496907 ], [ -1.430715, 43.51421 ], [ -1.461756, 43.518331 ], [ -1.465627, 43.516523 ], [ -1.463336, 43.533081 ], [ -1.47943, 43.53916 ], [ -1.497632, 43.528942 ], [ -1.501414, 43.52695 ], [ -1.520215, 43.52898 ], [ -1.524867, 43.529701 ], [ -1.495584, 43.56762 ], [ -1.493309, 43.57054 ], [ -1.484595, 43.58322 ], [ -1.482502, 43.58642 ], [ -1.468952, 43.60727 ], [ -1.466913, 43.61022 ], [ -1.446685, 43.647486 ], [ -1.445676, 43.654638 ], [ -1.445591, 43.658021 ], [ -1.440562, 43.680253 ], [ -1.440529, 43.683499 ], [ -1.428448, 43.737958 ], [ -1.427606, 43.741363 ], [ -1.416042, 43.78189 ], [ -1.414567, 43.785181 ], [ -1.412666, 43.79472 ], [ -1.41179, 43.79788 ], [ -1.400856, 43.832819 ], [ -1.399856, 43.83633 ], [ -1.390421, 43.856449 ], [ -1.383673, 43.884382 ], [ -1.352736, 43.997971 ], [ -1.351446, 44.001358 ], [ -1.327377, 44.086222 ], [ -1.325915, 44.089524 ], [ -1.317321, 44.125559 ], [ -1.316381, 44.12884 ], [ -1.287863, 44.26717 ], [ -1.287089, 44.27072 ], [ -1.280696, 44.30434 ], [ -1.280059, 44.307711 ], [ -1.275291, 44.332354 ], [ -1.274754, 44.33589 ], [ -1.254491, 44.46405 ], [ -1.25389, 44.467604 ], [ -1.204313, 44.478576 ], [ -1.199818, 44.47959 ], [ -1.111609, 44.501446 ], [ -1.106985, 44.50264 ], [ -1.087011, 44.529124 ], [ -1.085166, 44.53219 ], [ -1.080766, 44.53059 ], [ -1.030022, 44.50858 ], [ -1.011142, 44.510376 ], [ -0.996354, 44.51144 ], [ -0.988434, 44.50901 ], [ -0.981033, 44.48479 ], [ -0.990686, 44.46477 ], [ -0.992453, 44.461461 ], [ -1.007738, 44.436515 ], [ -1.025627, 44.425028 ], [ -1.029159, 44.4227 ], [ -1.024305, 44.423247 ], [ -0.970882, 44.429234 ], [ -0.948141, 44.435901 ], [ -0.944148, 44.43709 ], [ -0.919623, 44.44316 ], [ -0.909148, 44.43614 ], [ -0.840281, 44.41841 ], [ -0.81122, 44.420835 ], [ -0.794567, 44.42809 ], [ -0.784941, 44.42914 ], [ -0.780281, 44.428111 ], [ -0.774077, 44.440102 ], [ -0.726968, 44.44754 ], [ -0.703447, 44.443582 ], [ -0.698762, 44.44272 ], [ -0.694507, 44.441322 ], [ -0.681853, 44.4452 ], [ -0.682781, 44.45074 ], [ -0.677006, 44.456354 ], [ -0.643947, 44.450405 ], [ -0.639557, 44.448856 ], [ -0.63573, 44.44685 ], [ -0.628064, 44.44285 ], [ -0.627318, 44.429273 ], [ -0.625643, 44.408052 ], [ -0.637047, 44.40183 ], [ -0.641469, 44.40023 ], [ -0.607275, 44.39225 ], [ -0.603107, 44.390941 ], [ -0.570474, 44.38224 ], [ -0.560007, 44.37463 ], [ -0.532663, 44.366067 ], [ -0.528103, 44.36465 ], [ -0.519075, 44.342282 ], [ -0.517635, 44.339111 ], [ -0.479411, 44.325091 ], [ -0.43661, 44.3228 ], [ -0.43184, 44.322577 ], [ -0.429625, 44.301545 ], [ -0.402291, 44.28719 ], [ -0.38792, 44.287649 ], [ -0.383388, 44.28632 ], [ -0.384245, 44.28282 ], [ -0.396314, 44.237468 ], [ -0.389617, 44.209485 ], [ -0.385436, 44.208893 ], [ -0.372914, 44.207053 ], [ -0.368231, 44.20621 ], [ -0.310572, 44.20306 ], [ -0.305993, 44.20185 ], [ -0.273621, 44.194017 ], [ -0.264191, 44.195748 ], [ -0.259675, 44.19691 ], [ -0.223447, 44.205898 ], [ -0.223807, 44.209365 ], [ -0.228163, 44.25448 ], [ -0.226004, 44.264784 ], [ -0.206465, 44.264203 ], [ -0.19874, 44.26838 ], [ -0.190181, 44.268894 ], [ -0.176352, 44.25882 ], [ -0.166844, 44.24253 ], [ -0.144544, 44.22862 ], [ -0.140689, 44.22641 ], [ -0.129643, 44.20261 ], [ -0.129202, 44.156 ], [ -0.129155, 44.15241 ], [ -0.114737, 44.15141 ], [ -0.106561, 44.154944 ], [ -0.08775, 44.155989 ], [ -0.064434, 44.151914 ], [ -0.059859, 44.150826 ], [ -0.055166, 44.1508 ], [ -0.00379, 44.149918 ], [ -0.003539, 44.1499 ], [ 0.032018, 44.13352 ], [ 0.034594, 44.130652 ], [ 0.130969, 44.124482 ], [ 0.135797, 44.124194 ], [ 0.131824, 44.11919 ], [ 0.135858, 44.113559 ], [ 0.136803, 44.11043 ], [ 0.124151, 44.10502 ], [ 0.100821, 44.08677 ], [ 0.102105, 44.08339 ], [ 0.094951, 44.06836 ], [ 0.087468, 44.063972 ], [ 0.076223, 44.030736 ], [ 0.0698, 44.02578 ], [ 0.060223, 44.02488 ], [ 0.061593, 44.02154 ], [ 0.062234, 44.018077 ], [ 0.061182, 44.014743 ], [ 0.062955, 44.001183 ], [ 0.076046, 43.98314 ], [ 0.069724, 43.97655 ], [ 0.067536, 43.974242 ], [ 0.067104, 43.967359 ], [ 0.055391, 43.95707 ], [ 0.06974, 43.935252 ], [ 0.074765, 43.918186 ], [ 0.075082, 43.914682 ], [ 0.069083, 43.905345 ], [ 0.058618, 43.898381 ], [ 0.036927, 43.90213 ], [ 0.033178, 43.89998 ], [ 0.02921, 43.90203 ], [ 0.015984, 43.912245 ], [ -0.019936, 43.92927 ], [ 0.005383, 43.94523 ], [ 0.005561, 43.955612 ], [ -0.000961, 43.96061 ], [ -0.004915, 43.96253 ], [ -0.036169, 43.98374 ], [ -0.046915, 43.96123 ], [ -0.060463, 43.9588 ], [ -0.073635, 43.94456 ], [ -0.094468, 43.94579 ], [ -0.097864, 43.943353 ], [ -0.095423, 43.931002 ], [ -0.098748, 43.92889 ], [ -0.102561, 43.927278 ], [ -0.106746, 43.928834 ], [ -0.125325, 43.9436 ], [ -0.135133, 43.9363 ], [ -0.153158, 43.93882 ], [ -0.155915, 43.93233 ], [ -0.163922, 43.928606 ], [ -0.179029, 43.93649 ], [ -0.19871, 43.91782 ], [ -0.200575, 43.91464 ], [ -0.203483, 43.91339 ], [ -0.209669, 43.911734 ], [ -0.21685, 43.90762 ], [ -0.227893, 43.91079 ], [ -0.232826, 43.90154 ], [ -0.239879, 43.89741 ], [ -0.231716, 43.890962 ], [ -0.219239, 43.89122 ], [ -0.215616, 43.88927 ], [ -0.20535, 43.88498 ], [ -0.201257, 43.88527 ], [ -0.194002, 43.88158 ], [ -0.187532, 43.86985 ], [ -0.185723, 43.866889 ], [ -0.187112, 43.863894 ], [ -0.195834, 43.8707 ], [ -0.204298, 43.860257 ], [ -0.208908, 43.85767 ], [ -0.194496, 43.843009 ], [ -0.19342, 43.84001 ], [ -0.189844, 43.833697 ], [ -0.196344, 43.82912 ], [ -0.194708, 43.809211 ], [ -0.212633, 43.80928 ], [ -0.216, 43.81254 ], [ -0.226956, 43.807666 ], [ -0.218647, 43.79659 ], [ -0.221604, 43.79037 ], [ -0.222128, 43.78709 ], [ -0.214828, 43.782627 ], [ -0.215682, 43.77241 ], [ -0.207784, 43.759662 ], [ -0.209199, 43.756315 ], [ -0.213934, 43.755662 ], [ -0.218864, 43.750329 ], [ -0.196408, 43.746866 ], [ -0.195896, 43.740162 ], [ -0.194143, 43.73702 ], [ -0.218276, 43.72088 ], [ -0.222236, 43.71887 ], [ -0.226314, 43.71698 ], [ -0.247381, 43.70924 ], [ -0.241216, 43.692676 ], [ -0.254545, 43.682624 ], [ -0.256714, 43.6758 ], [ -0.24933, 43.671847 ], [ -0.23973, 43.671242 ], [ -0.243276, 43.663958 ], [ -0.246276, 43.654944 ], [ -0.259198, 43.653162 ], [ -0.261803, 43.64795 ], [ -0.263359, 43.64499 ], [ -0.263362, 43.638727 ], [ -0.266968, 43.63694 ], [ -0.282112, 43.643079 ], [ -0.280375, 43.627255 ], [ -0.281223, 43.624095 ], [ -0.280401, 43.62078 ], [ -0.274673, 43.61599 ], [ -0.247204, 43.61596 ], [ -0.248946, 43.60578 ], [ -0.254238, 43.600124 ], [ -0.254007, 43.596709 ], [ -0.249482, 43.596664 ], [ -0.242837, 43.58498 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "42", "CODE_DEPT": "41", "NOM_DEPT": "LOIR-ET-CHER", "CODE_CHF": "018", "NOM_CHF": "BLOIS", "X_CHF_LIEU": "5742", "Y_CHF_LIEU": "67227", "X_CENTROID": "5820", "Y_CENTROID": "67251", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.326666, 47.18622 ], [ 1.323763, 47.19121 ], [ 1.322029, 47.193875 ], [ 1.30451, 47.21697 ], [ 1.302775, 47.22001 ], [ 1.301678, 47.22337 ], [ 1.287979, 47.24099 ], [ 1.275068, 47.256012 ], [ 1.264976, 47.25724 ], [ 1.242151, 47.27573 ], [ 1.243286, 47.278263 ], [ 1.243638, 47.28366 ], [ 1.242562, 47.286627 ], [ 1.223335, 47.294177 ], [ 1.219343, 47.293611 ], [ 1.215691, 47.292394 ], [ 1.215287, 47.28903 ], [ 1.197231, 47.284418 ], [ 1.182432, 47.28493 ], [ 1.174129, 47.2886 ], [ 1.173372, 47.28557 ], [ 1.162064, 47.272205 ], [ 1.131214, 47.29454 ], [ 1.108127, 47.29841 ], [ 1.105988, 47.301614 ], [ 1.094853, 47.328537 ], [ 1.106313, 47.331083 ], [ 1.107242, 47.33439 ], [ 1.115791, 47.350103 ], [ 1.122414, 47.35507 ], [ 1.106881, 47.36716 ], [ 1.107408, 47.372883 ], [ 1.118514, 47.381654 ], [ 1.121851, 47.38365 ], [ 1.121682, 47.39038 ], [ 1.113388, 47.39847 ], [ 1.110523, 47.408628 ], [ 1.085019, 47.429687 ], [ 1.114759, 47.42924 ], [ 1.131913, 47.44569 ], [ 1.133366, 47.44895 ], [ 1.128852, 47.450102 ], [ 1.112883, 47.465917 ], [ 1.10772, 47.465122 ], [ 1.08711, 47.46182 ], [ 1.086006, 47.46447 ], [ 1.092002, 47.467999 ], [ 1.093746, 47.47049 ], [ 1.090288, 47.472842 ], [ 1.081583, 47.488213 ], [ 1.080281, 47.49157 ], [ 1.068855, 47.502995 ], [ 1.068832, 47.51947 ], [ 1.045035, 47.53157 ], [ 1.047554, 47.53686 ], [ 1.076557, 47.5619 ], [ 1.077002, 47.57245 ], [ 1.073175, 47.5712 ], [ 1.063593, 47.56614 ], [ 1.062099, 47.56955 ], [ 1.059904, 47.57649 ], [ 1.033353, 47.607012 ], [ 1.028918, 47.608494 ], [ 1.019281, 47.60768 ], [ 1.01254, 47.60279 ], [ 1.003723, 47.584368 ], [ 1.000398, 47.58396 ], [ 0.997017, 47.583974 ], [ 0.995606, 47.5872 ], [ 0.987657, 47.59117 ], [ 0.984911, 47.604331 ], [ 0.991789, 47.62003 ], [ 0.987056, 47.62053 ], [ 0.972786, 47.621751 ], [ 0.96527, 47.62957 ], [ 0.960922, 47.62797 ], [ 0.951655, 47.62615 ], [ 0.937343, 47.628423 ], [ 0.9326, 47.62878 ], [ 0.919605, 47.632755 ], [ 0.916768, 47.630012 ], [ 0.904079, 47.61597 ], [ 0.895291, 47.61292 ], [ 0.899155, 47.603719 ], [ 0.894062, 47.60389 ], [ 0.864282, 47.599827 ], [ 0.85767, 47.611996 ], [ 0.852747, 47.6129 ], [ 0.850765, 47.62308 ], [ 0.859344, 47.626686 ], [ 0.862295, 47.63317 ], [ 0.844708, 47.64511 ], [ 0.860543, 47.67355 ], [ 0.862011, 47.67683 ], [ 0.85961, 47.67951 ], [ 0.867411, 47.68649 ], [ 0.865296, 47.689338 ], [ 0.844288, 47.681876 ], [ 0.840919, 47.68013 ], [ 0.834169, 47.676934 ], [ 0.829337, 47.67674 ], [ 0.81178, 47.682217 ], [ 0.80259, 47.6794 ], [ 0.787171, 47.68083 ], [ 0.735651, 47.69554 ], [ 0.732608, 47.693098 ], [ 0.719417, 47.69 ], [ 0.712153, 47.68181 ], [ 0.707317, 47.68297 ], [ 0.674774, 47.69901 ], [ 0.672603, 47.6959 ], [ 0.654258, 47.68419 ], [ 0.649237, 47.68436 ], [ 0.64478, 47.68594 ], [ 0.645512, 47.6893 ], [ 0.651962, 47.698476 ], [ 0.63877, 47.708125 ], [ 0.628781, 47.70803 ], [ 0.614431, 47.69421 ], [ 0.611211, 47.691663 ], [ 0.60454, 47.686681 ], [ 0.595902, 47.689251 ], [ 0.592798, 47.70218 ], [ 0.580315, 47.712378 ], [ 0.580508, 47.71283 ], [ 0.594084, 47.723035 ], [ 0.608728, 47.725299 ], [ 0.611604, 47.72814 ], [ 0.610668, 47.732038 ], [ 0.61795, 47.736635 ], [ 0.6199, 47.746174 ], [ 0.626331, 47.75136 ], [ 0.646097, 47.75305 ], [ 0.650273, 47.754928 ], [ 0.6512, 47.75512 ], [ 0.670962, 47.767308 ], [ 0.674985, 47.76877 ], [ 0.692446, 47.76435 ], [ 0.697354, 47.764192 ], [ 0.702633, 47.76967 ], [ 0.691748, 47.78353 ], [ 0.702679, 47.78965 ], [ 0.711896, 47.78721 ], [ 0.712824, 47.79049 ], [ 0.730115, 47.805476 ], [ 0.73379, 47.807699 ], [ 0.740279, 47.81256 ], [ 0.747692, 47.827838 ], [ 0.756337, 47.830822 ], [ 0.758989, 47.83358 ], [ 0.768413, 47.83111 ], [ 0.774046, 47.8406 ], [ 0.773852, 47.85065 ], [ 0.770099, 47.852747 ], [ 0.759165, 47.85923 ], [ 0.76353, 47.86516 ], [ 0.757341, 47.884682 ], [ 0.759813, 47.89809 ], [ 0.763737, 47.899975 ], [ 0.768069, 47.901399 ], [ 0.786998, 47.911751 ], [ 0.794073, 47.907436 ], [ 0.797868, 47.89796 ], [ 0.813238, 47.889483 ], [ 0.816836, 47.891827 ], [ 0.815816, 47.895158 ], [ 0.810811, 47.91816 ], [ 0.816349, 47.934277 ], [ 0.845193, 47.94119 ], [ 0.848378, 47.94393 ], [ 0.845574, 47.9539 ], [ 0.842824, 47.956598 ], [ 0.836839, 47.968938 ], [ 0.829036, 47.97258 ], [ 0.824356, 47.98174 ], [ 0.820383, 47.98803 ], [ 0.830555, 47.99605 ], [ 0.835775, 48.00914 ], [ 0.840591, 48.01901 ], [ 0.838332, 48.03261 ], [ 0.813335, 48.03145 ], [ 0.807136, 48.03659 ], [ 0.797551, 48.03725 ], [ 0.794879, 48.046931 ], [ 0.793995, 48.06944 ], [ 0.838376, 48.0713 ], [ 0.843023, 48.07264 ], [ 0.84501, 48.092771 ], [ 0.830283, 48.09114 ], [ 0.816151, 48.094634 ], [ 0.817906, 48.09768 ], [ 0.837246, 48.100919 ], [ 0.841217, 48.10306 ], [ 0.871549, 48.10843 ], [ 0.883856, 48.10318 ], [ 0.888905, 48.10227 ], [ 0.91329, 48.104162 ], [ 0.929216, 48.11172 ], [ 0.939072, 48.11232 ], [ 0.944029, 48.11238 ], [ 0.945591, 48.100913 ], [ 0.945411, 48.09791 ], [ 0.955081, 48.100484 ], [ 0.995236, 48.126684 ], [ 1.008922, 48.131713 ], [ 1.029601, 48.132835 ], [ 1.039779, 48.13105 ], [ 1.047091, 48.12165 ], [ 1.040156, 48.11653 ], [ 0.99452, 48.099137 ], [ 0.995686, 48.089291 ], [ 1.009409, 48.08416 ], [ 1.029354, 48.08754 ], [ 1.03392, 48.085758 ], [ 1.065093, 48.085626 ], [ 1.071855, 48.07666 ], [ 1.107549, 48.080987 ], [ 1.112755, 48.0808 ], [ 1.106882, 48.060975 ], [ 1.113228, 48.05549 ], [ 1.115766, 48.05246 ], [ 1.12014, 48.04005 ], [ 1.129047, 48.03451 ], [ 1.133293, 48.033979 ], [ 1.141152, 48.0311 ], [ 1.143932, 48.028737 ], [ 1.163611, 48.02854 ], [ 1.167113, 48.026229 ], [ 1.161862, 48.017857 ], [ 1.170038, 48.009928 ], [ 1.16956, 48.006689 ], [ 1.174145, 48.005212 ], [ 1.187729, 48.0006 ], [ 1.193553, 47.98401 ], [ 1.200477, 47.97911 ], [ 1.195916, 47.973665 ], [ 1.191496, 47.97197 ], [ 1.205215, 47.96864 ], [ 1.222674, 47.97564 ], [ 1.242814, 47.97832 ], [ 1.248007, 47.97857 ], [ 1.259061, 47.971844 ], [ 1.260603, 47.96854 ], [ 1.2654, 47.96286 ], [ 1.29958, 47.968162 ], [ 1.30592, 47.95641 ], [ 1.308631, 47.95376 ], [ 1.33824, 47.95776 ], [ 1.349708, 47.963448 ], [ 1.370016, 47.95375 ], [ 1.382935, 47.97828 ], [ 1.386268, 47.98068 ], [ 1.407203, 47.9706 ], [ 1.43232, 47.97517 ], [ 1.437241, 47.9765 ], [ 1.439511, 47.98318 ], [ 1.43418, 47.99981 ], [ 1.432608, 48.00852 ], [ 1.441396, 48.01163 ], [ 1.455654, 48.00844 ], [ 1.490755, 47.9901 ], [ 1.493715, 47.987398 ], [ 1.511177, 47.983894 ], [ 1.520124, 47.98228 ], [ 1.551414, 47.98964 ], [ 1.560687, 47.987876 ], [ 1.564819, 47.98977 ], [ 1.564452, 47.97312 ], [ 1.547853, 47.961535 ], [ 1.547007, 47.958204 ], [ 1.555956, 47.95532 ], [ 1.55221, 47.953137 ], [ 1.533467, 47.949196 ], [ 1.526238, 47.944642 ], [ 1.522628, 47.931869 ], [ 1.525424, 47.92911 ], [ 1.553575, 47.92076 ], [ 1.57582, 47.90618 ], [ 1.579184, 47.903529 ], [ 1.577301, 47.89739 ], [ 1.581427, 47.891747 ], [ 1.579064, 47.889009 ], [ 1.588642, 47.87759 ], [ 1.583443, 47.871851 ], [ 1.583626, 47.86849 ], [ 1.548849, 47.84338 ], [ 1.535838, 47.83852 ], [ 1.534145, 47.83158 ], [ 1.531379, 47.82861 ], [ 1.527922, 47.822632 ], [ 1.527172, 47.81932 ], [ 1.540854, 47.817015 ], [ 1.566758, 47.79904 ], [ 1.570241, 47.79672 ], [ 1.567251, 47.78869 ], [ 1.571251, 47.78696 ], [ 1.550856, 47.772211 ], [ 1.547817, 47.76954 ], [ 1.59798, 47.73974 ], [ 1.587321, 47.73208 ], [ 1.583133, 47.729973 ], [ 1.582867, 47.72644 ], [ 1.619393, 47.73947 ], [ 1.627599, 47.75607 ], [ 1.629262, 47.75941 ], [ 1.652215, 47.749207 ], [ 1.655696, 47.74719 ], [ 1.673132, 47.73948 ], [ 1.693807, 47.73879 ], [ 1.712265, 47.732617 ], [ 1.713066, 47.7221 ], [ 1.725656, 47.70271 ], [ 1.728065, 47.699565 ], [ 1.723804, 47.697646 ], [ 1.719378, 47.695923 ], [ 1.721493, 47.692796 ], [ 1.728091, 47.687853 ], [ 1.740037, 47.66185 ], [ 1.746726, 47.656755 ], [ 1.776475, 47.65287 ], [ 1.780571, 47.650848 ], [ 1.778699, 47.644149 ], [ 1.78966, 47.637205 ], [ 1.794452, 47.63612 ], [ 1.802572, 47.64049 ], [ 1.804482, 47.64738 ], [ 1.811415, 47.652507 ], [ 1.845386, 47.65936 ], [ 1.843748, 47.68327 ], [ 1.849532, 47.688292 ], [ 1.854454, 47.689412 ], [ 1.86291, 47.68861 ], [ 1.865859, 47.675948 ], [ 1.890772, 47.677763 ], [ 1.899064, 47.67383 ], [ 1.909007, 47.67509 ], [ 1.913991, 47.67449 ], [ 1.927563, 47.67822 ], [ 1.937186, 47.677582 ], [ 1.94207, 47.661828 ], [ 1.956351, 47.661992 ], [ 1.964992, 47.65891 ], [ 1.977227, 47.6643 ], [ 1.981894, 47.665539 ], [ 1.99523, 47.66426 ], [ 2.00053, 47.67368 ], [ 2.008923, 47.677456 ], [ 2.064654, 47.674863 ], [ 2.069925, 47.680621 ], [ 2.07455, 47.68215 ], [ 2.103849, 47.67736 ], [ 2.107753, 47.67106 ], [ 2.112621, 47.67 ], [ 2.127918, 47.67826 ], [ 2.137839, 47.67718 ], [ 2.149203, 47.670747 ], [ 2.169602, 47.67102 ], [ 2.198824, 47.67743 ], [ 2.203685, 47.678548 ], [ 2.20609, 47.67639 ], [ 2.20677, 47.66293 ], [ 2.220507, 47.664809 ], [ 2.240709, 47.64126 ], [ 2.239214, 47.62098 ], [ 2.233959, 47.62067 ], [ 2.197252, 47.607447 ], [ 2.15629, 47.601046 ], [ 2.138094, 47.588815 ], [ 2.119575, 47.58295 ], [ 2.121466, 47.57964 ], [ 2.127704, 47.569933 ], [ 2.125186, 47.55636 ], [ 2.131382, 47.550696 ], [ 2.193775, 47.54857 ], [ 2.197561, 47.54612 ], [ 2.214491, 47.52043 ], [ 2.19607, 47.4879 ], [ 2.201325, 47.488183 ], [ 2.219441, 47.49544 ], [ 2.234995, 47.496357 ], [ 2.243082, 47.492764 ], [ 2.247745, 47.491732 ], [ 2.245237, 47.48872 ], [ 2.238643, 47.47238 ], [ 2.244993, 47.45995 ], [ 2.238642, 47.45097 ], [ 2.246699, 47.4424 ], [ 2.243692, 47.414827 ], [ 2.240389, 47.41299 ], [ 2.230388, 47.40753 ], [ 2.225176, 47.40753 ], [ 2.204829, 47.406079 ], [ 2.188242, 47.4357 ], [ 2.136692, 47.40632 ], [ 2.114999, 47.42148 ], [ 2.115628, 47.41792 ], [ 2.116926, 47.410801 ], [ 2.102739, 47.391616 ], [ 2.097085, 47.36681 ], [ 2.101881, 47.367644 ], [ 2.111377, 47.36953 ], [ 2.114665, 47.36701 ], [ 2.126704, 47.345417 ], [ 2.119391, 47.333433 ], [ 2.128526, 47.33112 ], [ 2.13502, 47.32174 ], [ 2.147988, 47.316361 ], [ 2.157151, 47.30021 ], [ 2.153429, 47.29787 ], [ 2.139909, 47.293434 ], [ 2.132895, 47.28119 ], [ 2.128373, 47.280176 ], [ 2.11426, 47.279178 ], [ 2.111136, 47.281729 ], [ 2.103938, 47.28571 ], [ 2.094206, 47.285388 ], [ 2.088978, 47.28549 ], [ 2.058927, 47.28037 ], [ 2.024529, 47.26512 ], [ 2.020248, 47.267006 ], [ 2.010461, 47.26841 ], [ 1.996609, 47.265751 ], [ 1.975957, 47.27577 ], [ 1.975822, 47.2759 ], [ 1.971437, 47.27765 ], [ 1.941373, 47.290064 ], [ 1.923006, 47.27359 ], [ 1.922685, 47.26385 ], [ 1.895493, 47.2548 ], [ 1.892391, 47.24875 ], [ 1.909522, 47.243789 ], [ 1.912241, 47.240753 ], [ 1.915639, 47.23418 ], [ 1.908321, 47.22089 ], [ 1.905858, 47.217887 ], [ 1.875333, 47.20708 ], [ 1.853088, 47.220528 ], [ 1.839079, 47.219308 ], [ 1.834519, 47.22055 ], [ 1.81462, 47.22999 ], [ 1.811518, 47.232183 ], [ 1.795821, 47.23782 ], [ 1.793575, 47.234807 ], [ 1.786011, 47.231397 ], [ 1.776111, 47.23138 ], [ 1.772462, 47.233739 ], [ 1.750044, 47.24731 ], [ 1.746692, 47.24987 ], [ 1.71582, 47.27682 ], [ 1.712938, 47.27395 ], [ 1.700438, 47.26408 ], [ 1.665701, 47.25889 ], [ 1.651132, 47.261842 ], [ 1.649461, 47.27148 ], [ 1.629582, 47.27443 ], [ 1.619786, 47.272629 ], [ 1.612089, 47.277139 ], [ 1.607649, 47.27543 ], [ 1.602725, 47.275018 ], [ 1.593136, 47.274416 ], [ 1.592885, 47.2577 ], [ 1.587815, 47.25788 ], [ 1.563081, 47.26143 ], [ 1.523953, 47.25534 ], [ 1.526755, 47.252496 ], [ 1.527011, 47.23978 ], [ 1.532718, 47.23026 ], [ 1.534446, 47.223591 ], [ 1.528062, 47.21925 ], [ 1.526638, 47.22251 ], [ 1.503504, 47.23452 ], [ 1.494832, 47.23311 ], [ 1.48761, 47.23748 ], [ 1.473013, 47.23891 ], [ 1.467986, 47.23903 ], [ 1.453139, 47.23899 ], [ 1.421208, 47.22916 ], [ 1.418308, 47.226188 ], [ 1.409592, 47.21741 ], [ 1.40637, 47.215543 ], [ 1.392843, 47.208693 ], [ 1.388418, 47.20687 ], [ 1.351844, 47.1939 ], [ 1.336774, 47.194223 ], [ 1.326666, 47.18622 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "43", "CODE_DEPT": "42", "NOM_DEPT": "LOIRE", "CODE_CHF": "218", "NOM_CHF": "SAINT-ETIENNE", "X_CHF_LIEU": "8086", "Y_CHF_LIEU": "64825", "X_CENTROID": "7906", "Y_CENTROID": "65148", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.755997, 45.365681 ], [ 4.751443, 45.365906 ], [ 4.725367, 45.361429 ], [ 4.723111, 45.354601 ], [ 4.718831, 45.354162 ], [ 4.70331, 45.349563 ], [ 4.701388, 45.34686 ], [ 4.698023, 45.344986 ], [ 4.679737, 45.345938 ], [ 4.675294, 45.34429 ], [ 4.638553, 45.32619 ], [ 4.640204, 45.32373 ], [ 4.643177, 45.318903 ], [ 4.640382, 45.31719 ], [ 4.633844, 45.314942 ], [ 4.61595, 45.3102 ], [ 4.616857, 45.3001 ], [ 4.622791, 45.294838 ], [ 4.621508, 45.29154 ], [ 4.611889, 45.292024 ], [ 4.602724, 45.291 ], [ 4.598597, 45.28949 ], [ 4.591348, 45.272883 ], [ 4.593657, 45.26978 ], [ 4.598493, 45.26897 ], [ 4.602945, 45.265422 ], [ 4.605305, 45.26367 ], [ 4.605227, 45.253429 ], [ 4.588302, 45.246547 ], [ 4.584802, 45.244075 ], [ 4.560654, 45.24717 ], [ 4.546242, 45.243778 ], [ 4.535936, 45.23662 ], [ 4.517747, 45.24179 ], [ 4.505973, 45.233025 ], [ 4.490899, 45.232209 ], [ 4.483135, 45.236446 ], [ 4.479248, 45.237912 ], [ 4.474656, 45.23876 ], [ 4.46811, 45.247245 ], [ 4.4569, 45.25345 ], [ 4.454041, 45.25626 ], [ 4.445481, 45.259544 ], [ 4.434076, 45.274704 ], [ 4.419655, 45.275401 ], [ 4.415655, 45.2736 ], [ 4.39131, 45.26354 ], [ 4.387182, 45.257536 ], [ 4.374922, 45.261956 ], [ 4.371186, 45.259886 ], [ 4.350182, 45.2777 ], [ 4.359604, 45.28536 ], [ 4.361268, 45.291869 ], [ 4.369175, 45.29898 ], [ 4.366258, 45.30128 ], [ 4.352304, 45.304163 ], [ 4.331653, 45.31848 ], [ 4.36338, 45.337485 ], [ 4.368006, 45.33711 ], [ 4.359801, 45.34938 ], [ 4.34053, 45.36431 ], [ 4.336435, 45.36616 ], [ 4.312929, 45.370013 ], [ 4.308199, 45.37099 ], [ 4.303818, 45.362834 ], [ 4.295644, 45.364036 ], [ 4.289755, 45.35907 ], [ 4.271631, 45.35976 ], [ 4.270101, 45.362663 ], [ 4.270802, 45.374921 ], [ 4.257172, 45.37169 ], [ 4.244341, 45.38528 ], [ 4.239555, 45.384997 ], [ 4.236695, 45.38683 ], [ 4.22656, 45.389724 ], [ 4.222207, 45.38819 ], [ 4.200862, 45.38221 ], [ 4.180821, 45.3917 ], [ 4.162102, 45.388907 ], [ 4.157679, 45.38762 ], [ 4.144443, 45.384108 ], [ 4.147892, 45.381543 ], [ 4.156688, 45.36947 ], [ 4.149893, 45.36523 ], [ 4.120395, 45.368376 ], [ 4.109111, 45.3618 ], [ 4.107809, 45.354804 ], [ 4.101586, 45.35788 ], [ 4.098516, 45.359578 ], [ 4.080171, 45.35552 ], [ 4.073682, 45.338963 ], [ 4.070804, 45.336055 ], [ 4.062761, 45.339427 ], [ 4.054874, 45.3518 ], [ 4.041548, 45.35493 ], [ 4.037552, 45.35296 ], [ 4.025162, 45.34806 ], [ 4.020571, 45.328194 ], [ 4.014976, 45.33082 ], [ 4.014606, 45.333633 ], [ 4.012813, 45.33685 ], [ 4.002483, 45.35599 ], [ 3.997708, 45.356064 ], [ 3.987124, 45.364983 ], [ 3.985593, 45.371579 ], [ 3.978268, 45.375696 ], [ 3.97343, 45.375216 ], [ 3.961027, 45.370271 ], [ 3.947613, 45.37405 ], [ 3.938752, 45.371396 ], [ 3.934501, 45.361697 ], [ 3.918387, 45.354365 ], [ 3.91933, 45.341804 ], [ 3.909899, 45.33512 ], [ 3.906268, 45.33325 ], [ 3.905179, 45.336184 ], [ 3.902781, 45.338697 ], [ 3.902488, 45.34186 ], [ 3.897408, 45.35708 ], [ 3.892146, 45.36985 ], [ 3.894516, 45.383762 ], [ 3.890368, 45.393665 ], [ 3.899085, 45.40631 ], [ 3.898541, 45.409818 ], [ 3.907081, 45.412955 ], [ 3.911124, 45.419352 ], [ 3.913895, 45.42225 ], [ 3.918432, 45.42133 ], [ 3.937312, 45.429987 ], [ 3.959804, 45.43416 ], [ 3.963258, 45.436431 ], [ 3.96329, 45.437511 ], [ 3.96286, 45.44078 ], [ 3.960143, 45.443446 ], [ 3.971058, 45.44726 ], [ 3.975106, 45.44827 ], [ 3.969091, 45.45332 ], [ 3.973126, 45.459399 ], [ 3.966383, 45.468283 ], [ 3.967553, 45.47155 ], [ 3.971637, 45.47743 ], [ 3.983336, 45.483219 ], [ 3.985629, 45.48618 ], [ 3.983321, 45.48887 ], [ 3.984007, 45.49506 ], [ 3.972738, 45.50013 ], [ 3.969342, 45.50143 ], [ 3.96484, 45.50322 ], [ 3.962229, 45.50555 ], [ 3.958555, 45.51379 ], [ 3.94643, 45.543404 ], [ 3.954474, 45.555827 ], [ 3.944619, 45.56275 ], [ 3.941931, 45.568999 ], [ 3.939503, 45.57179 ], [ 3.935595, 45.577238 ], [ 3.932168, 45.579365 ], [ 3.909481, 45.59411 ], [ 3.908775, 45.597243 ], [ 3.904504, 45.598862 ], [ 3.881466, 45.60297 ], [ 3.86909, 45.61305 ], [ 3.861186, 45.61473 ], [ 3.860428, 45.61798 ], [ 3.858678, 45.624337 ], [ 3.835863, 45.627138 ], [ 3.82364, 45.63202 ], [ 3.820703, 45.637408 ], [ 3.81931, 45.64043 ], [ 3.817721, 45.6467 ], [ 3.805428, 45.656051 ], [ 3.802989, 45.658734 ], [ 3.794532, 45.67347 ], [ 3.792084, 45.67652 ], [ 3.777585, 45.690566 ], [ 3.775857, 45.700178 ], [ 3.78238, 45.71165 ], [ 3.779998, 45.714062 ], [ 3.777015, 45.71953 ], [ 3.780919, 45.724673 ], [ 3.776168, 45.72512 ], [ 3.76804, 45.72867 ], [ 3.755838, 45.74661 ], [ 3.745951, 45.741173 ], [ 3.730822, 45.753484 ], [ 3.727106, 45.75558 ], [ 3.729002, 45.75789 ], [ 3.730436, 45.760357 ], [ 3.733108, 45.76194 ], [ 3.737972, 45.767782 ], [ 3.728469, 45.776012 ], [ 3.700393, 45.783556 ], [ 3.693391, 45.78863 ], [ 3.695115, 45.7947 ], [ 3.712631, 45.80129 ], [ 3.726892, 45.83027 ], [ 3.719124, 45.85007 ], [ 3.720762, 45.851129 ], [ 3.726607, 45.85957 ], [ 3.72853, 45.862687 ], [ 3.720282, 45.861741 ], [ 3.7172, 45.867641 ], [ 3.715524, 45.870587 ], [ 3.734084, 45.87127 ], [ 3.750312, 45.88437 ], [ 3.754371, 45.88603 ], [ 3.752984, 45.88933 ], [ 3.740233, 45.907764 ], [ 3.728991, 45.91415 ], [ 3.726359, 45.917066 ], [ 3.72135, 45.922745 ], [ 3.694018, 45.93073 ], [ 3.693892, 45.93096 ], [ 3.69416, 45.948166 ], [ 3.704505, 45.955549 ], [ 3.701807, 45.965724 ], [ 3.709612, 45.97414 ], [ 3.742071, 45.96669 ], [ 3.75064, 45.97003 ], [ 3.755204, 45.97982 ], [ 3.760021, 45.980675 ], [ 3.781713, 45.972792 ], [ 3.805153, 45.98329 ], [ 3.80972, 45.984662 ], [ 3.82322, 45.988158 ], [ 3.828199, 45.99707 ], [ 3.831736, 45.99944 ], [ 3.832076, 45.99966 ], [ 3.827342, 46.000213 ], [ 3.824711, 46.0066 ], [ 3.815876, 46.0191 ], [ 3.807536, 46.049778 ], [ 3.805606, 46.053061 ], [ 3.818213, 46.07803 ], [ 3.816589, 46.084564 ], [ 3.819836, 46.08704 ], [ 3.821294, 46.090239 ], [ 3.818358, 46.093007 ], [ 3.802831, 46.11014 ], [ 3.793486, 46.112203 ], [ 3.801251, 46.13142 ], [ 3.790052, 46.15339 ], [ 3.791627, 46.15658 ], [ 3.806301, 46.16134 ], [ 3.809736, 46.163104 ], [ 3.806379, 46.165757 ], [ 3.789791, 46.18749 ], [ 3.788646, 46.19804 ], [ 3.793571, 46.207686 ], [ 3.785038, 46.22044 ], [ 3.773353, 46.227186 ], [ 3.76865, 46.23699 ], [ 3.773322, 46.242469 ], [ 3.778236, 46.24306 ], [ 3.798801, 46.23991 ], [ 3.8027, 46.23851 ], [ 3.807612, 46.25739 ], [ 3.845692, 46.26181 ], [ 3.850553, 46.26209 ], [ 3.868924, 46.26366 ], [ 3.875376, 46.272546 ], [ 3.882358, 46.274707 ], [ 3.886954, 46.27379 ], [ 3.899534, 46.275914 ], [ 3.903775, 46.274008 ], [ 3.906644, 46.263791 ], [ 3.90876, 46.260622 ], [ 3.907418, 46.24389 ], [ 3.897392, 46.237145 ], [ 3.897328, 46.22691 ], [ 3.890132, 46.214491 ], [ 3.905496, 46.20923 ], [ 3.909456, 46.20793 ], [ 3.917106, 46.203884 ], [ 3.936212, 46.2062 ], [ 3.960314, 46.203401 ], [ 3.965168, 46.20286 ], [ 3.97257, 46.19973 ], [ 3.971497, 46.189672 ], [ 3.980798, 46.18189 ], [ 3.985073, 46.172301 ], [ 3.988528, 46.169857 ], [ 4.018044, 46.17202 ], [ 4.027488, 46.16959 ], [ 4.031149, 46.17197 ], [ 4.046013, 46.179222 ], [ 4.050073, 46.180688 ], [ 4.056681, 46.185859 ], [ 4.059972, 46.188458 ], [ 4.067331, 46.186813 ], [ 4.078635, 46.190606 ], [ 4.082922, 46.19102 ], [ 4.099435, 46.197107 ], [ 4.103832, 46.19844 ], [ 4.132853, 46.180686 ], [ 4.133393, 46.177321 ], [ 4.133847, 46.177317 ], [ 4.138591, 46.176666 ], [ 4.143322, 46.176 ], [ 4.178133, 46.173687 ], [ 4.186752, 46.176633 ], [ 4.184851, 46.179868 ], [ 4.18493, 46.19012 ], [ 4.189229, 46.18864 ], [ 4.206215, 46.19449 ], [ 4.215845, 46.18722 ], [ 4.219558, 46.1851 ], [ 4.223365, 46.180189 ], [ 4.224993, 46.17763 ], [ 4.226578, 46.17837 ], [ 4.232491, 46.17955 ], [ 4.240916, 46.186897 ], [ 4.255016, 46.18713 ], [ 4.258146, 46.184546 ], [ 4.261911, 46.17517 ], [ 4.253409, 46.167343 ], [ 4.24866, 46.16711 ], [ 4.253192, 46.157817 ], [ 4.277541, 46.15661 ], [ 4.282432, 46.156816 ], [ 4.290281, 46.16932 ], [ 4.298212, 46.17305 ], [ 4.30287, 46.174325 ], [ 4.309176, 46.17292 ], [ 4.311831, 46.1712 ], [ 4.31641, 46.171305 ], [ 4.326397, 46.18171 ], [ 4.326643, 46.184894 ], [ 4.334903, 46.181744 ], [ 4.346643, 46.18726 ], [ 4.358511, 46.18268 ], [ 4.36632, 46.185423 ], [ 4.370806, 46.184333 ], [ 4.373498, 46.187246 ], [ 4.363353, 46.19856 ], [ 4.374769, 46.20951 ], [ 4.388416, 46.21308 ], [ 4.38808, 46.21979 ], [ 4.406746, 46.21962 ], [ 4.419863, 46.210066 ], [ 4.421756, 46.20702 ], [ 4.422965, 46.203137 ], [ 4.401312, 46.19688 ], [ 4.395468, 46.1925 ], [ 4.402903, 46.18454 ], [ 4.406358, 46.18224 ], [ 4.410541, 46.18153 ], [ 4.414315, 46.18007 ], [ 4.435171, 46.169958 ], [ 4.438591, 46.167879 ], [ 4.417098, 46.13926 ], [ 4.417362, 46.13592 ], [ 4.408245, 46.137061 ], [ 4.385438, 46.147645 ], [ 4.381809, 46.14966 ], [ 4.377187, 46.149808 ], [ 4.361588, 46.138459 ], [ 4.356622, 46.138275 ], [ 4.332742, 46.135505 ], [ 4.329682, 46.13323 ], [ 4.322116, 46.12998 ], [ 4.319714, 46.11682 ], [ 4.312806, 46.112249 ], [ 4.309295, 46.110002 ], [ 4.305996, 46.100331 ], [ 4.311328, 46.09485 ], [ 4.310007, 46.085029 ], [ 4.310407, 46.08172 ], [ 4.304989, 46.079196 ], [ 4.301426, 46.078463 ], [ 4.300045, 46.06605 ], [ 4.297331, 46.063451 ], [ 4.285097, 46.05368 ], [ 4.266223, 46.051978 ], [ 4.257097, 46.05392 ], [ 4.253426, 46.05179 ], [ 4.251078, 46.04918 ], [ 4.260961, 46.039113 ], [ 4.260555, 46.03605 ], [ 4.26982, 46.033529 ], [ 4.275984, 46.023896 ], [ 4.28002, 46.02177 ], [ 4.287736, 46.018359 ], [ 4.300616, 46.02077 ], [ 4.305067, 46.021475 ], [ 4.305846, 46.02159 ], [ 4.30825, 46.011252 ], [ 4.310332, 46.008013 ], [ 4.312008, 46.00513 ], [ 4.301162, 45.99192 ], [ 4.300096, 45.988894 ], [ 4.289001, 45.995658 ], [ 4.274439, 45.992365 ], [ 4.269628, 45.992716 ], [ 4.26467, 45.998517 ], [ 4.251152, 45.9956 ], [ 4.246046, 45.99612 ], [ 4.248043, 45.986724 ], [ 4.258975, 45.98117 ], [ 4.272447, 45.979968 ], [ 4.275742, 45.9778 ], [ 4.288823, 45.973172 ], [ 4.300575, 45.958322 ], [ 4.293912, 45.9534 ], [ 4.312396, 45.942289 ], [ 4.32205, 45.941123 ], [ 4.33654, 45.93183 ], [ 4.34602, 45.929943 ], [ 4.337581, 45.918335 ], [ 4.341656, 45.91666 ], [ 4.346215, 45.915765 ], [ 4.327391, 45.905639 ], [ 4.323221, 45.90389 ], [ 4.326224, 45.89737 ], [ 4.336936, 45.89016 ], [ 4.340314, 45.880026 ], [ 4.342469, 45.876903 ], [ 4.361094, 45.86617 ], [ 4.389622, 45.864616 ], [ 4.394471, 45.865168 ], [ 4.39614, 45.85982 ], [ 4.390615, 45.85028 ], [ 4.383083, 45.845972 ], [ 4.387014, 45.83982 ], [ 4.390601, 45.837476 ], [ 4.383698, 45.83399 ], [ 4.380569, 45.825315 ], [ 4.376035, 45.82482 ], [ 4.382465, 45.82027 ], [ 4.380282, 45.81745 ], [ 4.38784, 45.803007 ], [ 4.383692, 45.804995 ], [ 4.375618, 45.80445 ], [ 4.37399, 45.801141 ], [ 4.37645, 45.784107 ], [ 4.358288, 45.778915 ], [ 4.349101, 45.77117 ], [ 4.360331, 45.754213 ], [ 4.359161, 45.751102 ], [ 4.373271, 45.749445 ], [ 4.385803, 45.75466 ], [ 4.390677, 45.755077 ], [ 4.401178, 45.74657 ], [ 4.402925, 45.74392 ], [ 4.391247, 45.737877 ], [ 4.384784, 45.72119 ], [ 4.375139, 45.71338 ], [ 4.369701, 45.700396 ], [ 4.365516, 45.69852 ], [ 4.36994, 45.692918 ], [ 4.373447, 45.69078 ], [ 4.365891, 45.682997 ], [ 4.368732, 45.6737 ], [ 4.36592, 45.671153 ], [ 4.387908, 45.663797 ], [ 4.392551, 45.66248 ], [ 4.395888, 45.65524 ], [ 4.39261, 45.653616 ], [ 4.404997, 45.639196 ], [ 4.40886, 45.63712 ], [ 4.410284, 45.632051 ], [ 4.418074, 45.629449 ], [ 4.422444, 45.629664 ], [ 4.437475, 45.624196 ], [ 4.441489, 45.62305 ], [ 4.450037, 45.607355 ], [ 4.460841, 45.601 ], [ 4.472496, 45.597345 ], [ 4.474517, 45.59471 ], [ 4.46818, 45.58844 ], [ 4.467814, 45.58575 ], [ 4.500541, 45.585473 ], [ 4.504569, 45.58362 ], [ 4.50522, 45.576882 ], [ 4.514431, 45.57652 ], [ 4.521878, 45.572641 ], [ 4.542608, 45.57977 ], [ 4.547261, 45.58016 ], [ 4.555531, 45.579142 ], [ 4.566766, 45.58368 ], [ 4.5706, 45.582256 ], [ 4.583861, 45.57323 ], [ 4.58711, 45.57072 ], [ 4.602862, 45.57041 ], [ 4.610735, 45.57391 ], [ 4.614858, 45.57548 ], [ 4.625701, 45.56825 ], [ 4.635566, 45.548374 ], [ 4.642481, 45.543365 ], [ 4.644591, 45.54016 ], [ 4.652094, 45.54209 ], [ 4.659832, 45.543227 ], [ 4.646599, 45.55558 ], [ 4.648858, 45.5617 ], [ 4.649274, 45.56491 ], [ 4.658587, 45.56377 ], [ 4.676305, 45.56877 ], [ 4.688126, 45.55776 ], [ 4.685176, 45.554756 ], [ 4.668371, 45.545874 ], [ 4.666491, 45.543047 ], [ 4.665332, 45.542839 ], [ 4.664346, 45.539458 ], [ 4.650706, 45.52987 ], [ 4.654295, 45.499392 ], [ 4.650603, 45.49711 ], [ 4.65775, 45.48559 ], [ 4.662186, 45.48661 ], [ 4.668818, 45.48234 ], [ 4.670697, 45.476281 ], [ 4.677448, 45.48065 ], [ 4.681929, 45.479806 ], [ 4.699815, 45.47813 ], [ 4.718576, 45.491941 ], [ 4.721828, 45.494395 ], [ 4.738429, 45.487168 ], [ 4.742368, 45.47397 ], [ 4.737785, 45.47272 ], [ 4.754109, 45.458183 ], [ 4.756936, 45.455707 ], [ 4.754932, 45.451028 ], [ 4.755536, 45.447047 ], [ 4.758645, 45.44139 ], [ 4.759948, 45.43849 ], [ 4.759953, 45.4326 ], [ 4.756688, 45.430069 ], [ 4.743146, 45.42042 ], [ 4.744783, 45.407368 ], [ 4.752409, 45.40023 ], [ 4.75485, 45.39779 ], [ 4.758848, 45.38472 ], [ 4.756426, 45.3748 ], [ 4.757023, 45.37146 ], [ 4.755997, 45.365681 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "44", "CODE_DEPT": "43", "NOM_DEPT": "HAUTE-LOIRE", "CODE_CHF": "157", "NOM_CHF": "LE PUY-EN-VELAY", "X_CHF_LIEU": "7696", "Y_CHF_LIEU": "64386", "X_CENTROID": "7634", "Y_CENTROID": "64479", "CODE_REG": "83", "NOM_REGION": "AUVERGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.862527, 44.74387 ], [ 3.858308, 44.74553 ], [ 3.839419, 44.74712 ], [ 3.829915, 44.754638 ], [ 3.832974, 44.75725 ], [ 3.841072, 44.76562 ], [ 3.841852, 44.772132 ], [ 3.833253, 44.77528 ], [ 3.819372, 44.772561 ], [ 3.817335, 44.769812 ], [ 3.810631, 44.76588 ], [ 3.80699, 44.767583 ], [ 3.804675, 44.77364 ], [ 3.797349, 44.786488 ], [ 3.771952, 44.80232 ], [ 3.764135, 44.800381 ], [ 3.759954, 44.806334 ], [ 3.761687, 44.812876 ], [ 3.759833, 44.81606 ], [ 3.755779, 44.817536 ], [ 3.743866, 44.8378 ], [ 3.73538, 44.840119 ], [ 3.735968, 44.83672 ], [ 3.719429, 44.831796 ], [ 3.701809, 44.836267 ], [ 3.694679, 44.831675 ], [ 3.666365, 44.828778 ], [ 3.663663, 44.831414 ], [ 3.657417, 44.836124 ], [ 3.6616, 44.83776 ], [ 3.669728, 44.841282 ], [ 3.67364, 44.85412 ], [ 3.671245, 44.85703 ], [ 3.664392, 44.860969 ], [ 3.660137, 44.87051 ], [ 3.644297, 44.87713 ], [ 3.640654, 44.87857 ], [ 3.632535, 44.87731 ], [ 3.629866, 44.87983 ], [ 3.614235, 44.874817 ], [ 3.608282, 44.879334 ], [ 3.603369, 44.879379 ], [ 3.595024, 44.87579 ], [ 3.59783, 44.858709 ], [ 3.586884, 44.836052 ], [ 3.589724, 44.82939 ], [ 3.582453, 44.826117 ], [ 3.56877, 44.834183 ], [ 3.555337, 44.82567 ], [ 3.541089, 44.82805 ], [ 3.5122, 44.824816 ], [ 3.507375, 44.82423 ], [ 3.493094, 44.811514 ], [ 3.490994, 44.808481 ], [ 3.486967, 44.80647 ], [ 3.478242, 44.80968 ], [ 3.47001, 44.82194 ], [ 3.45617, 44.831228 ], [ 3.457593, 44.841324 ], [ 3.445198, 44.851764 ], [ 3.4418, 44.85423 ], [ 3.436572, 44.87699 ], [ 3.435711, 44.880244 ], [ 3.421511, 44.89482 ], [ 3.417812, 44.90504 ], [ 3.419257, 44.908435 ], [ 3.413026, 44.91567 ], [ 3.41038, 44.91779 ], [ 3.415119, 44.9263 ], [ 3.412835, 44.944843 ], [ 3.410817, 44.948001 ], [ 3.403222, 44.95686 ], [ 3.390906, 44.95277 ], [ 3.377783, 44.95659 ], [ 3.371664, 44.968929 ], [ 3.372711, 44.975723 ], [ 3.368997, 44.97418 ], [ 3.361343, 44.97141 ], [ 3.356642, 44.97219 ], [ 3.34806, 44.97511 ], [ 3.34589, 44.985264 ], [ 3.363227, 44.99016 ], [ 3.371466, 45.002189 ], [ 3.368411, 45.004793 ], [ 3.35479, 45.00222 ], [ 3.345223, 45.01283 ], [ 3.327055, 45.010081 ], [ 3.337174, 45.02535 ], [ 3.332968, 45.02692 ], [ 3.311406, 45.021768 ], [ 3.307443, 45.023625 ], [ 3.305632, 45.02683 ], [ 3.298213, 45.03565 ], [ 3.303179, 45.045129 ], [ 3.299816, 45.055123 ], [ 3.312027, 45.08086 ], [ 3.308955, 45.086117 ], [ 3.291978, 45.08925 ], [ 3.285721, 45.093607 ], [ 3.286627, 45.096765 ], [ 3.283645, 45.102752 ], [ 3.2962, 45.106438 ], [ 3.300765, 45.106552 ], [ 3.3067, 45.10134 ], [ 3.324087, 45.096032 ], [ 3.32858, 45.09484 ], [ 3.36145, 45.10419 ], [ 3.351855, 45.104835 ], [ 3.349481, 45.111425 ], [ 3.330342, 45.11118 ], [ 3.313978, 45.118139 ], [ 3.313723, 45.11814 ], [ 3.301533, 45.12399 ], [ 3.29229, 45.122169 ], [ 3.288033, 45.120424 ], [ 3.275998, 45.142686 ], [ 3.281602, 45.151613 ], [ 3.267973, 45.15406 ], [ 3.26166, 45.170039 ], [ 3.262959, 45.18379 ], [ 3.270971, 45.192257 ], [ 3.272226, 45.209461 ], [ 3.251607, 45.216083 ], [ 3.24693, 45.215598 ], [ 3.242156, 45.216482 ], [ 3.235591, 45.22139 ], [ 3.232795, 45.238535 ], [ 3.222768, 45.24561 ], [ 3.228571, 45.265161 ], [ 3.226852, 45.27194 ], [ 3.222058, 45.272143 ], [ 3.209301, 45.28122 ], [ 3.185611, 45.27957 ], [ 3.185039, 45.27633 ], [ 3.164242, 45.26911 ], [ 3.169023, 45.281502 ], [ 3.161355, 45.289176 ], [ 3.160671, 45.295417 ], [ 3.155859, 45.29477 ], [ 3.145214, 45.287838 ], [ 3.1316, 45.28612 ], [ 3.126815, 45.28538 ], [ 3.112196, 45.284752 ], [ 3.101084, 45.291119 ], [ 3.08654, 45.290033 ], [ 3.085389, 45.2967 ], [ 3.097823, 45.300874 ], [ 3.102748, 45.300608 ], [ 3.110348, 45.30483 ], [ 3.113462, 45.31141 ], [ 3.100696, 45.31613 ], [ 3.091661, 45.324264 ], [ 3.099147, 45.32809 ], [ 3.113417, 45.327089 ], [ 3.114886, 45.33385 ], [ 3.111332, 45.350341 ], [ 3.103498, 45.354373 ], [ 3.130809, 45.351346 ], [ 3.138964, 45.35449 ], [ 3.146604, 45.350777 ], [ 3.151254, 45.351131 ], [ 3.181128, 45.35231 ], [ 3.177483, 45.35466 ], [ 3.179586, 45.3612 ], [ 3.192882, 45.36487 ], [ 3.199492, 45.369938 ], [ 3.209061, 45.370245 ], [ 3.211477, 45.367206 ], [ 3.215856, 45.370007 ], [ 3.218652, 45.369488 ], [ 3.222804, 45.38218 ], [ 3.235505, 45.39138 ], [ 3.236171, 45.394629 ], [ 3.242594, 45.390555 ], [ 3.255856, 45.3898 ], [ 3.26018, 45.39075 ], [ 3.283054, 45.3979 ], [ 3.287523, 45.399606 ], [ 3.290615, 45.4017 ], [ 3.291755, 45.40461 ], [ 3.295401, 45.41487 ], [ 3.295765, 45.41839 ], [ 3.299828, 45.42024 ], [ 3.308909, 45.41839 ], [ 3.324317, 45.405377 ], [ 3.32594, 45.398744 ], [ 3.330264, 45.39721 ], [ 3.341972, 45.41808 ], [ 3.340854, 45.42136 ], [ 3.352437, 45.421104 ], [ 3.355951, 45.422705 ], [ 3.363668, 45.413855 ], [ 3.367373, 45.41149 ], [ 3.38001, 45.401158 ], [ 3.389278, 45.40322 ], [ 3.398039, 45.40028 ], [ 3.406548, 45.403299 ], [ 3.418577, 45.400004 ], [ 3.420231, 45.397179 ], [ 3.427435, 45.40165 ], [ 3.451273, 45.401461 ], [ 3.455852, 45.400335 ], [ 3.460601, 45.401171 ], [ 3.463556, 45.407571 ], [ 3.479403, 45.42029 ], [ 3.496769, 45.426239 ], [ 3.501257, 45.427633 ], [ 3.506861, 45.411048 ], [ 3.518551, 45.40478 ], [ 3.521799, 45.402128 ], [ 3.548129, 45.39802 ], [ 3.55582, 45.393878 ], [ 3.564485, 45.396347 ], [ 3.569313, 45.402293 ], [ 3.579076, 45.38602 ], [ 3.581125, 45.38277 ], [ 3.586739, 45.37717 ], [ 3.588084, 45.373876 ], [ 3.586165, 45.37117 ], [ 3.590793, 45.35709 ], [ 3.59499, 45.355335 ], [ 3.617814, 45.33816 ], [ 3.627347, 45.3389 ], [ 3.640876, 45.348436 ], [ 3.645366, 45.3579 ], [ 3.66318, 45.36297 ], [ 3.667354, 45.376556 ], [ 3.672631, 45.381829 ], [ 3.681775, 45.382539 ], [ 3.684735, 45.380035 ], [ 3.694962, 45.373264 ], [ 3.704165, 45.37159 ], [ 3.698737, 45.36259 ], [ 3.701783, 45.360002 ], [ 3.706467, 45.360702 ], [ 3.714686, 45.36015 ], [ 3.718668, 45.3609 ], [ 3.722903, 45.35951 ], [ 3.732048, 45.35943 ], [ 3.742091, 45.353025 ], [ 3.755922, 45.353887 ], [ 3.758875, 45.35596 ], [ 3.77153, 45.350295 ], [ 3.780233, 45.351613 ], [ 3.789194, 45.358529 ], [ 3.787159, 45.371799 ], [ 3.791406, 45.38477 ], [ 3.796166, 45.38517 ], [ 3.805971, 45.391629 ], [ 3.817942, 45.386121 ], [ 3.822802, 45.380322 ], [ 3.836299, 45.383095 ], [ 3.837311, 45.366302 ], [ 3.845234, 45.369836 ], [ 3.856716, 45.359654 ], [ 3.874532, 45.355419 ], [ 3.893419, 45.35522 ], [ 3.897408, 45.35708 ], [ 3.902488, 45.34186 ], [ 3.902781, 45.338697 ], [ 3.905179, 45.336184 ], [ 3.906268, 45.33325 ], [ 3.909899, 45.33512 ], [ 3.91933, 45.341804 ], [ 3.918387, 45.354365 ], [ 3.934501, 45.361697 ], [ 3.938752, 45.371396 ], [ 3.947613, 45.37405 ], [ 3.961027, 45.370271 ], [ 3.97343, 45.375216 ], [ 3.978268, 45.375696 ], [ 3.985593, 45.371579 ], [ 3.987124, 45.364983 ], [ 3.997708, 45.356064 ], [ 4.002483, 45.35599 ], [ 4.012813, 45.33685 ], [ 4.014606, 45.333633 ], [ 4.014976, 45.33082 ], [ 4.020571, 45.328194 ], [ 4.025162, 45.34806 ], [ 4.037552, 45.35296 ], [ 4.041548, 45.35493 ], [ 4.054874, 45.3518 ], [ 4.062761, 45.339427 ], [ 4.070804, 45.336055 ], [ 4.073682, 45.338963 ], [ 4.080171, 45.35552 ], [ 4.098516, 45.359578 ], [ 4.101586, 45.35788 ], [ 4.107809, 45.354804 ], [ 4.109111, 45.3618 ], [ 4.120395, 45.368376 ], [ 4.149893, 45.36523 ], [ 4.156688, 45.36947 ], [ 4.147892, 45.381543 ], [ 4.144443, 45.384108 ], [ 4.157679, 45.38762 ], [ 4.162102, 45.388907 ], [ 4.180821, 45.3917 ], [ 4.200862, 45.38221 ], [ 4.222207, 45.38819 ], [ 4.22656, 45.389724 ], [ 4.236695, 45.38683 ], [ 4.239555, 45.384997 ], [ 4.244341, 45.38528 ], [ 4.257172, 45.37169 ], [ 4.270802, 45.374921 ], [ 4.270101, 45.362663 ], [ 4.271631, 45.35976 ], [ 4.289755, 45.35907 ], [ 4.295644, 45.364036 ], [ 4.303818, 45.362834 ], [ 4.308199, 45.37099 ], [ 4.312929, 45.370013 ], [ 4.336435, 45.36616 ], [ 4.34053, 45.36431 ], [ 4.359801, 45.34938 ], [ 4.368006, 45.33711 ], [ 4.36338, 45.337485 ], [ 4.331653, 45.31848 ], [ 4.352304, 45.304163 ], [ 4.366258, 45.30128 ], [ 4.369175, 45.29898 ], [ 4.361268, 45.291869 ], [ 4.359604, 45.28536 ], [ 4.350182, 45.2777 ], [ 4.371186, 45.259886 ], [ 4.374922, 45.261956 ], [ 4.387182, 45.257536 ], [ 4.39131, 45.26354 ], [ 4.415655, 45.2736 ], [ 4.419655, 45.275401 ], [ 4.434076, 45.274704 ], [ 4.445481, 45.259544 ], [ 4.454041, 45.25626 ], [ 4.4569, 45.25345 ], [ 4.46811, 45.247245 ], [ 4.474656, 45.23876 ], [ 4.479248, 45.237912 ], [ 4.483135, 45.236446 ], [ 4.488918, 45.22342 ], [ 4.481328, 45.215919 ], [ 4.476933, 45.210673 ], [ 4.478555, 45.198314 ], [ 4.480555, 45.195459 ], [ 4.472579, 45.17989 ], [ 4.459058, 45.172156 ], [ 4.458157, 45.168872 ], [ 4.448111, 45.16196 ], [ 4.443347, 45.14558 ], [ 4.443565, 45.14218 ], [ 4.448414, 45.12946 ], [ 4.457564, 45.12224 ], [ 4.457286, 45.11889 ], [ 4.452662, 45.119125 ], [ 4.438931, 45.12036 ], [ 4.442014, 45.11169 ], [ 4.439755, 45.10989 ], [ 4.436425, 45.109456 ], [ 4.427843, 45.11751 ], [ 4.429495, 45.130393 ], [ 4.411159, 45.14083 ], [ 4.397828, 45.139484 ], [ 4.380955, 45.143558 ], [ 4.376559, 45.14436 ], [ 4.37257, 45.12807 ], [ 4.397573, 45.118082 ], [ 4.399854, 45.1081 ], [ 4.38784, 45.103623 ], [ 4.384585, 45.10107 ], [ 4.371468, 45.104384 ], [ 4.363868, 45.10042 ], [ 4.359232, 45.09957 ], [ 4.362829, 45.08751 ], [ 4.358616, 45.086252 ], [ 4.354941, 45.077282 ], [ 4.346372, 45.07504 ], [ 4.347737, 45.06525 ], [ 4.360713, 45.055392 ], [ 4.370244, 45.056005 ], [ 4.37873, 45.05286 ], [ 4.381644, 45.042797 ], [ 4.379068, 45.03617 ], [ 4.365133, 45.03556 ], [ 4.35376, 45.030569 ], [ 4.351543, 45.02766 ], [ 4.318086, 45.029934 ], [ 4.299684, 45.020038 ], [ 4.297425, 45.01353 ], [ 4.291981, 45.00429 ], [ 4.292148, 44.993912 ], [ 4.307317, 44.98588 ], [ 4.30998, 44.98093 ], [ 4.313234, 44.979581 ], [ 4.314365, 44.973166 ], [ 4.297662, 44.96895 ], [ 4.294225, 44.966801 ], [ 4.27942, 44.966702 ], [ 4.256587, 44.959876 ], [ 4.235239, 44.967805 ], [ 4.231819, 44.96574 ], [ 4.223854, 44.96288 ], [ 4.216572, 44.933577 ], [ 4.213073, 44.93121 ], [ 4.190046, 44.91419 ], [ 4.191688, 44.912136 ], [ 4.188048, 44.91019 ], [ 4.183014, 44.905224 ], [ 4.179479, 44.886514 ], [ 4.16616, 44.88194 ], [ 4.156637, 44.87398 ], [ 4.136896, 44.87405 ], [ 4.117944, 44.87811 ], [ 4.113166, 44.87856 ], [ 4.087906, 44.87033 ], [ 4.084478, 44.869194 ], [ 4.077563, 44.86981 ], [ 4.072916, 44.86977 ], [ 4.03891, 44.87276 ], [ 4.028735, 44.86617 ], [ 4.028196, 44.86301 ], [ 4.025204, 44.851002 ], [ 4.020047, 44.84586 ], [ 4.023795, 44.84387 ], [ 4.028587, 44.834619 ], [ 4.025664, 44.831837 ], [ 4.016413, 44.83039 ], [ 4.009087, 44.834627 ], [ 3.998603, 44.823575 ], [ 3.989593, 44.83134 ], [ 3.98493, 44.83169 ], [ 3.981451, 44.825961 ], [ 3.987154, 44.816384 ], [ 3.981885, 44.81168 ], [ 3.978357, 44.813905 ], [ 3.96732, 44.820179 ], [ 3.963183, 44.829759 ], [ 3.958782, 44.82839 ], [ 3.945543, 44.824346 ], [ 3.944475, 44.821015 ], [ 3.936818, 44.798093 ], [ 3.918029, 44.778856 ], [ 3.924334, 44.770979 ], [ 3.924918, 44.769624 ], [ 3.921789, 44.76768 ], [ 3.913657, 44.76654 ], [ 3.908988, 44.765461 ], [ 3.900111, 44.7628 ], [ 3.89572, 44.752874 ], [ 3.872496, 44.75531 ], [ 3.862527, 44.74387 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "45", "CODE_DEPT": "44", "NOM_DEPT": "LOIRE-ATLANTIQUE", "CODE_CHF": "109", "NOM_CHF": "NANTES", "X_CHF_LIEU": "3555", "Y_CHF_LIEU": "66895", "X_CENTROID": "3468", "Y_CENTROID": "67061", "CODE_REG": "52", "NOM_REGION": "PAYS-DE-LA-LOIRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.148571, 47.029554 ], [ -1.196769, 47.039766 ], [ -1.209355, 47.04962 ], [ -1.21686, 47.05349 ], [ -1.229934, 47.06376 ], [ -1.248522, 47.06856 ], [ -1.267884, 47.084269 ], [ -1.272681, 47.08317 ], [ -1.274855, 47.0803 ], [ -1.286754, 47.0764 ], [ -1.290343, 47.07042 ], [ -1.290826, 47.06721 ], [ -1.287282, 47.058313 ], [ -1.299588, 47.04404 ], [ -1.298726, 47.03471 ], [ -1.303526, 47.03438 ], [ -1.317961, 47.034303 ], [ -1.336458, 47.044069 ], [ -1.345721, 47.04573 ], [ -1.347471, 47.039471 ], [ -1.362682, 47.03983 ], [ -1.375944, 47.02966 ], [ -1.366917, 47.017366 ], [ -1.365391, 47.007144 ], [ -1.364064, 47.003777 ], [ -1.375472, 46.98889 ], [ -1.359059, 46.98113 ], [ -1.360369, 46.971094 ], [ -1.367089, 46.96623 ], [ -1.36616, 46.95669 ], [ -1.373372, 46.95208 ], [ -1.377802, 46.953769 ], [ -1.390452, 46.94803 ], [ -1.415448, 46.94435 ], [ -1.458268, 46.925838 ], [ -1.462548, 46.92666 ], [ -1.471736, 46.933189 ], [ -1.470196, 46.93622 ], [ -1.458498, 46.95623 ], [ -1.472347, 46.97079 ], [ -1.475681, 46.98113 ], [ -1.472223, 46.98741 ], [ -1.462634, 46.99002 ], [ -1.462869, 46.996532 ], [ -1.465618, 46.99933 ], [ -1.474979, 47.02161 ], [ -1.47313, 47.03112 ], [ -1.480637, 47.035431 ], [ -1.48279, 47.03833 ], [ -1.495824, 47.041505 ], [ -1.499845, 47.040689 ], [ -1.504315, 47.03909 ], [ -1.519996, 47.02567 ], [ -1.534341, 47.023431 ], [ -1.554425, 47.014983 ], [ -1.543644, 47.003775 ], [ -1.550895, 46.991422 ], [ -1.551626, 46.98494 ], [ -1.554272, 46.97865 ], [ -1.542958, 46.96165 ], [ -1.544151, 46.95829 ], [ -1.519976, 46.937781 ], [ -1.526616, 46.92525 ], [ -1.545933, 46.925477 ], [ -1.543341, 46.92252 ], [ -1.526956, 46.90574 ], [ -1.504373, 46.89292 ], [ -1.500595, 46.8834 ], [ -1.526798, 46.873833 ], [ -1.536755, 46.875263 ], [ -1.546259, 46.873021 ], [ -1.548511, 46.86008 ], [ -1.57794, 46.86509 ], [ -1.600872, 46.872968 ], [ -1.609602, 46.87123 ], [ -1.613571, 46.87321 ], [ -1.640486, 46.87849 ], [ -1.650611, 46.878914 ], [ -1.664178, 46.874703 ], [ -1.668471, 46.87659 ], [ -1.690948, 46.89007 ], [ -1.715256, 46.884724 ], [ -1.729528, 46.88771 ], [ -1.732279, 46.89028 ], [ -1.738078, 46.90541 ], [ -1.736259, 46.911526 ], [ -1.737883, 46.91399 ], [ -1.745423, 46.918905 ], [ -1.742287, 46.920974 ], [ -1.750245, 46.93049 ], [ -1.755205, 46.92969 ], [ -1.779732, 46.92533 ], [ -1.787902, 46.929422 ], [ -1.797702, 46.92798 ], [ -1.832106, 46.93209 ], [ -1.829087, 46.934702 ], [ -1.825555, 46.94764 ], [ -1.827145, 46.95098 ], [ -1.846398, 46.954154 ], [ -1.871782, 46.9531 ], [ -1.890506, 46.958676 ], [ -1.915735, 46.97558 ], [ -1.9177, 46.992375 ], [ -1.938925, 46.99351 ], [ -1.943608, 46.99512 ], [ -1.972218, 47.028584 ], [ -1.97631, 47.02875 ], [ -1.980414, 47.028906 ], [ -2.003548, 47.06024 ], [ -2.015895, 47.06652 ], [ -2.020004, 47.06868 ], [ -2.033174, 47.07411 ], [ -2.051288, 47.091114 ], [ -2.053683, 47.09425 ], [ -2.101531, 47.10638 ], [ -2.10506, 47.1121 ], [ -2.12005, 47.1102 ], [ -2.145464, 47.11187 ], [ -2.173538, 47.11961 ], [ -2.177283, 47.12199 ], [ -2.213079, 47.12472 ], [ -2.243827, 47.13516 ], [ -2.23241, 47.1423 ], [ -2.228864, 47.144869 ], [ -2.225884, 47.15149 ], [ -2.212932, 47.156091 ], [ -2.174622, 47.1588 ], [ -2.171707, 47.161633 ], [ -2.166599, 47.16739 ], [ -2.160357, 47.19402 ], [ -2.158227, 47.19707 ], [ -2.159684, 47.21101 ], [ -2.178815, 47.23531 ], [ -2.170221, 47.24359 ], [ -2.168511, 47.2678 ], [ -2.148235, 47.26963 ], [ -2.134293, 47.274079 ], [ -2.129201, 47.27461 ], [ -2.06213, 47.28206 ], [ -2.047618, 47.28604 ], [ -2.045758, 47.28939 ], [ -2.042359, 47.29173 ], [ -2.01495, 47.28587 ], [ -2.010494, 47.28458 ], [ -2.010489, 47.29433 ], [ -2.010328, 47.29757 ], [ -2.010274, 47.314743 ], [ -2.015395, 47.315315 ], [ -2.032801, 47.30433 ], [ -2.038534, 47.313545 ], [ -2.043583, 47.313921 ], [ -2.071841, 47.30555 ], [ -2.108057, 47.30606 ], [ -2.113125, 47.30567 ], [ -2.142467, 47.30003 ], [ -2.16909, 47.289917 ], [ -2.181594, 47.29857 ], [ -2.183004, 47.29518 ], [ -2.184784, 47.282178 ], [ -2.193561, 47.278754 ], [ -2.198338, 47.272504 ], [ -2.221793, 47.26589 ], [ -2.228735, 47.257007 ], [ -2.248828, 47.254185 ], [ -2.270119, 47.23957 ], [ -2.294585, 47.234688 ], [ -2.302972, 47.237246 ], [ -2.336953, 47.25337 ], [ -2.346292, 47.265571 ], [ -2.35757, 47.272846 ], [ -2.361998, 47.27457 ], [ -2.39582, 47.281556 ], [ -2.423752, 47.27414 ], [ -2.421239, 47.25911 ], [ -2.449756, 47.2636 ], [ -2.457384, 47.268223 ], [ -2.491706, 47.275327 ], [ -2.503819, 47.280952 ], [ -2.54653, 47.29194 ], [ -2.542924, 47.29812 ], [ -2.518151, 47.30025 ], [ -2.513806, 47.298381 ], [ -2.511633, 47.302022 ], [ -2.513391, 47.30312 ], [ -2.50146, 47.31768 ], [ -2.501156, 47.32468 ], [ -2.50719, 47.34181 ], [ -2.522675, 47.359893 ], [ -2.525945, 47.362625 ], [ -2.556645, 47.37357 ], [ -2.555762, 47.376967 ], [ -2.533175, 47.38427 ], [ -2.502924, 47.402531 ], [ -2.498252, 47.40389 ], [ -2.470758, 47.416955 ], [ -2.463262, 47.4128 ], [ -2.434028, 47.413049 ], [ -2.433068, 47.416423 ], [ -2.454718, 47.425235 ], [ -2.447147, 47.43733 ], [ -2.458489, 47.44812 ], [ -2.452868, 47.460964 ], [ -2.44035, 47.465819 ], [ -2.427617, 47.475789 ], [ -2.423027, 47.477122 ], [ -2.420088, 47.4669 ], [ -2.410409, 47.45883 ], [ -2.395334, 47.45657 ], [ -2.377584, 47.46276 ], [ -2.36721, 47.46319 ], [ -2.355923, 47.455979 ], [ -2.316133, 47.46251 ], [ -2.313426, 47.483065 ], [ -2.30048, 47.498136 ], [ -2.29705, 47.512014 ], [ -2.298099, 47.515476 ], [ -2.29745, 47.515506 ], [ -2.279494, 47.510881 ], [ -2.259526, 47.51175 ], [ -2.255948, 47.50935 ], [ -2.261677, 47.50047 ], [ -2.248656, 47.4953 ], [ -2.244284, 47.49361 ], [ -2.216832, 47.507059 ], [ -2.203241, 47.5105 ], [ -2.198455, 47.51113 ], [ -2.185606, 47.509068 ], [ -2.189112, 47.49938 ], [ -2.186385, 47.49323 ], [ -2.166233, 47.49088 ], [ -2.157796, 47.49475 ], [ -2.155255, 47.497805 ], [ -2.153629, 47.50827 ], [ -2.155171, 47.518728 ], [ -2.148712, 47.52356 ], [ -2.14396, 47.524961 ], [ -2.098852, 47.533449 ], [ -2.097167, 47.54022 ], [ -2.103892, 47.54911 ], [ -2.0975, 47.569237 ], [ -2.096731, 47.57263 ], [ -2.103211, 47.575166 ], [ -2.105064, 47.57754 ], [ -2.100458, 47.578858 ], [ -2.102524, 47.5953 ], [ -2.086481, 47.603255 ], [ -2.0853, 47.606536 ], [ -2.084146, 47.609959 ], [ -2.086555, 47.623745 ], [ -2.097036, 47.63136 ], [ -2.082054, 47.64945 ], [ -2.052005, 47.6504 ], [ -2.047426, 47.66379 ], [ -2.043095, 47.6657 ], [ -2.035333, 47.66847 ], [ -2.016926, 47.66683 ], [ -2.012284, 47.666454 ], [ -1.977136, 47.691668 ], [ -1.973401, 47.69415 ], [ -1.973056, 47.69403 ], [ -1.969042, 47.68781 ], [ -1.969284, 47.67424 ], [ -1.961339, 47.67094 ], [ -1.956329, 47.671188 ], [ -1.93644, 47.686523 ], [ -1.888114, 47.695482 ], [ -1.883074, 47.69499 ], [ -1.878257, 47.6952 ], [ -1.858304, 47.70825 ], [ -1.853488, 47.70804 ], [ -1.841527, 47.7055 ], [ -1.83778, 47.70676 ], [ -1.828414, 47.70954 ], [ -1.820055, 47.7056 ], [ -1.786276, 47.69988 ], [ -1.771608, 47.69868 ], [ -1.750249, 47.706751 ], [ -1.736125, 47.70415 ], [ -1.732593, 47.70184 ], [ -1.729713, 47.699342 ], [ -1.715725, 47.69945 ], [ -1.71127, 47.700421 ], [ -1.706147, 47.70895 ], [ -1.686443, 47.7126 ], [ -1.661157, 47.7102 ], [ -1.648814, 47.720306 ], [ -1.644387, 47.722087 ], [ -1.641237, 47.721825 ], [ -1.638131, 47.722209 ], [ -1.636801, 47.741755 ], [ -1.626098, 47.75656 ], [ -1.627131, 47.759827 ], [ -1.619634, 47.76357 ], [ -1.601774, 47.764542 ], [ -1.598107, 47.766525 ], [ -1.59491, 47.77332 ], [ -1.594141, 47.77603 ], [ -1.585308, 47.7789 ], [ -1.575393, 47.778234 ], [ -1.556429, 47.78372 ], [ -1.530422, 47.78478 ], [ -1.51219, 47.79722 ], [ -1.503981, 47.80108 ], [ -1.494999, 47.798505 ], [ -1.47114, 47.80307 ], [ -1.468448, 47.8059 ], [ -1.474307, 47.824 ], [ -1.480687, 47.82869 ], [ -1.481873, 47.8318 ], [ -1.479636, 47.83481 ], [ -1.465114, 47.83486 ], [ -1.456579, 47.83175 ], [ -1.427417, 47.832171 ], [ -1.419285, 47.829044 ], [ -1.414846, 47.827498 ], [ -1.411962, 47.82855 ], [ -1.409149, 47.827406 ], [ -1.405523, 47.825 ], [ -1.391976, 47.82855 ], [ -1.381228, 47.82141 ], [ -1.374824, 47.808827 ], [ -1.365536, 47.80604 ], [ -1.364478, 47.79967 ], [ -1.339993, 47.795214 ], [ -1.33715, 47.79463 ], [ -1.251009, 47.777622 ], [ -1.245882, 47.776718 ], [ -1.247316, 47.763028 ], [ -1.236525, 47.75578 ], [ -1.241724, 47.74286 ], [ -1.255719, 47.742569 ], [ -1.255316, 47.739203 ], [ -1.254406, 47.73267 ], [ -1.234119, 47.72336 ], [ -1.215419, 47.71882 ], [ -1.195666, 47.72172 ], [ -1.19545, 47.71203 ], [ -1.180204, 47.69679 ], [ -1.17493, 47.69456 ], [ -1.177913, 47.68801 ], [ -1.175483, 47.681359 ], [ -1.181369, 47.66861 ], [ -1.172985, 47.66037 ], [ -1.162948, 47.66049 ], [ -1.156466, 47.64547 ], [ -1.157909, 47.639163 ], [ -1.157394, 47.63599 ], [ -1.154156, 47.633618 ], [ -1.137678, 47.62215 ], [ -1.137894, 47.618927 ], [ -1.123665, 47.61921 ], [ -1.103175, 47.62059 ], [ -1.075035, 47.60613 ], [ -1.030451, 47.59937 ], [ -1.025255, 47.59902 ], [ -1.021577, 47.59672 ], [ -1.009226, 47.59105 ], [ -1.008165, 47.58776 ], [ -1.020182, 47.57714 ], [ -1.032991, 47.571965 ], [ -1.037088, 47.57049 ], [ -1.042198, 47.56323 ], [ -1.055643, 47.56528 ], [ -1.060517, 47.56597 ], [ -1.099905, 47.565729 ], [ -1.104863, 47.56527 ], [ -1.123516, 47.56952 ], [ -1.172934, 47.57282 ], [ -1.173253, 47.569228 ], [ -1.178346, 47.54802 ], [ -1.154392, 47.542337 ], [ -1.154454, 47.538856 ], [ -1.168004, 47.529123 ], [ -1.156214, 47.51015 ], [ -1.146997, 47.50709 ], [ -1.142822, 47.505071 ], [ -1.107533, 47.50095 ], [ -1.077012, 47.50328 ], [ -1.072631, 47.501481 ], [ -1.049296, 47.50528 ], [ -1.044458, 47.505501 ], [ -1.025803, 47.500127 ], [ -1.011586, 47.489874 ], [ -0.970663, 47.492295 ], [ -0.96548, 47.4918 ], [ -0.96091, 47.48379 ], [ -0.958993, 47.48123 ], [ -0.962337, 47.47918 ], [ -0.967867, 47.46805 ], [ -0.954011, 47.45323 ], [ -0.952818, 47.43581 ], [ -0.947628, 47.42975 ], [ -0.948347, 47.42274 ], [ -0.943182, 47.41861 ], [ -0.925506, 47.40194 ], [ -0.923456, 47.39877 ], [ -0.927155, 47.39636 ], [ -0.935856, 47.38778 ], [ -0.945808, 47.38703 ], [ -0.949385, 47.38442 ], [ -0.957845, 47.3802 ], [ -0.962253, 47.37843 ], [ -0.966359, 47.376361 ], [ -0.969338, 47.3743 ], [ -0.976234, 47.371029 ], [ -0.981172, 47.37088 ], [ -0.990563, 47.37262 ], [ -1.012695, 47.36571 ], [ -1.032118, 47.365001 ], [ -1.036884, 47.36469 ], [ -1.063981, 47.37019 ], [ -1.07853, 47.3708 ], [ -1.101857, 47.36664 ], [ -1.106842, 47.36589 ], [ -1.111954, 47.36594 ], [ -1.11428, 47.367041 ], [ -1.144951, 47.367996 ], [ -1.170101, 47.364653 ], [ -1.183138, 47.3542 ], [ -1.187253, 47.35254 ], [ -1.205598, 47.348976 ], [ -1.228373, 47.349978 ], [ -1.232283, 47.34792 ], [ -1.236679, 47.345979 ], [ -1.256452, 47.34125 ], [ -1.282624, 47.340957 ], [ -1.287817, 47.34056 ], [ -1.306548, 47.33448 ], [ -1.310318, 47.33205 ], [ -1.322745, 47.32088 ], [ -1.337293, 47.317469 ], [ -1.354204, 47.30416 ], [ -1.339313, 47.300976 ], [ -1.319029, 47.30321 ], [ -1.3138, 47.302964 ], [ -1.294757, 47.301354 ], [ -1.282664, 47.2958 ], [ -1.28022, 47.2929 ], [ -1.27672, 47.288055 ], [ -1.276402, 47.2696 ], [ -1.255337, 47.25317 ], [ -1.254061, 47.25009 ], [ -1.235477, 47.241102 ], [ -1.231267, 47.239579 ], [ -1.213985, 47.245907 ], [ -1.209506, 47.25178 ], [ -1.204918, 47.25304 ], [ -1.195861, 47.252181 ], [ -1.185046, 47.242529 ], [ -1.181106, 47.2409 ], [ -1.188046, 47.22311 ], [ -1.188466, 47.220003 ], [ -1.177609, 47.216185 ], [ -1.174481, 47.214404 ], [ -1.175243, 47.21162 ], [ -1.180764, 47.20741 ], [ -1.174632, 47.19846 ], [ -1.176734, 47.192659 ], [ -1.165361, 47.188066 ], [ -1.161776, 47.18583 ], [ -1.167714, 47.17355 ], [ -1.169555, 47.170515 ], [ -1.172048, 47.16789 ], [ -1.188363, 47.158232 ], [ -1.191065, 47.15542 ], [ -1.209088, 47.14454 ], [ -1.218849, 47.144322 ], [ -1.23822, 47.134904 ], [ -1.235255, 47.132488 ], [ -1.230987, 47.1313 ], [ -1.23218, 47.12799 ], [ -1.226626, 47.118667 ], [ -1.232328, 47.109875 ], [ -1.246738, 47.10053 ], [ -1.249652, 47.09763 ], [ -1.240897, 47.094585 ], [ -1.228114, 47.099769 ], [ -1.179363, 47.09529 ], [ -1.175073, 47.093584 ], [ -1.170549, 47.09295 ], [ -1.167958, 47.09052 ], [ -1.161898, 47.07957 ], [ -1.148528, 47.069621 ], [ -1.120108, 47.06414 ], [ -1.115539, 47.062697 ], [ -1.120792, 47.053584 ], [ -1.11789, 47.04028 ], [ -1.143996, 47.030927 ], [ -1.148571, 47.029554 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "46", "CODE_DEPT": "45", "NOM_DEPT": "LOIRET", "CODE_CHF": "234", "NOM_CHF": "ORLEANS", "X_CHF_LIEU": "6181", "Y_CHF_LIEU": "67563", "X_CENTROID": "6510", "Y_CENTROID": "67570", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.874625, 47.52042 ], [ 2.870551, 47.51828 ], [ 2.841217, 47.51181 ], [ 2.826262, 47.49807 ], [ 2.806484, 47.494459 ], [ 2.802623, 47.49678 ], [ 2.797521, 47.49734 ], [ 2.794601, 47.500227 ], [ 2.783529, 47.51519 ], [ 2.762558, 47.524957 ], [ 2.742696, 47.526517 ], [ 2.73182, 47.538095 ], [ 2.727151, 47.536221 ], [ 2.728377, 47.532938 ], [ 2.723602, 47.52338 ], [ 2.72549, 47.510266 ], [ 2.72176, 47.504415 ], [ 2.727407, 47.49889 ], [ 2.725405, 47.49575 ], [ 2.714574, 47.48925 ], [ 2.686362, 47.483189 ], [ 2.682059, 47.48336 ], [ 2.669382, 47.48468 ], [ 2.664608, 47.485757 ], [ 2.656286, 47.49335 ], [ 2.655871, 47.510396 ], [ 2.612018, 47.526389 ], [ 2.613325, 47.52941 ], [ 2.616728, 47.538566 ], [ 2.607079, 47.54915 ], [ 2.603024, 47.550996 ], [ 2.592984, 47.55814 ], [ 2.573916, 47.559625 ], [ 2.567581, 47.56849 ], [ 2.564341, 47.571147 ], [ 2.544971, 47.57467 ], [ 2.520343, 47.57237 ], [ 2.506549, 47.56809 ], [ 2.491358, 47.56829 ], [ 2.490301, 47.57177 ], [ 2.456411, 47.593837 ], [ 2.44743, 47.606577 ], [ 2.438079, 47.60977 ], [ 2.43345, 47.60822 ], [ 2.400349, 47.598576 ], [ 2.394291, 47.59292 ], [ 2.379655, 47.590592 ], [ 2.372689, 47.585442 ], [ 2.360156, 47.59105 ], [ 2.343358, 47.60448 ], [ 2.323488, 47.60856 ], [ 2.307202, 47.617324 ], [ 2.303059, 47.61954 ], [ 2.293606, 47.62262 ], [ 2.289632, 47.62905 ], [ 2.284817, 47.628675 ], [ 2.239214, 47.62098 ], [ 2.240709, 47.64126 ], [ 2.220507, 47.664809 ], [ 2.20677, 47.66293 ], [ 2.20609, 47.67639 ], [ 2.203685, 47.678548 ], [ 2.198824, 47.67743 ], [ 2.169602, 47.67102 ], [ 2.149203, 47.670747 ], [ 2.137839, 47.67718 ], [ 2.127918, 47.67826 ], [ 2.112621, 47.67 ], [ 2.107753, 47.67106 ], [ 2.103849, 47.67736 ], [ 2.07455, 47.68215 ], [ 2.069925, 47.680621 ], [ 2.064654, 47.674863 ], [ 2.008923, 47.677456 ], [ 2.00053, 47.67368 ], [ 1.99523, 47.66426 ], [ 1.981894, 47.665539 ], [ 1.977227, 47.6643 ], [ 1.964992, 47.65891 ], [ 1.956351, 47.661992 ], [ 1.94207, 47.661828 ], [ 1.937186, 47.677582 ], [ 1.927563, 47.67822 ], [ 1.913991, 47.67449 ], [ 1.909007, 47.67509 ], [ 1.899064, 47.67383 ], [ 1.890772, 47.677763 ], [ 1.865859, 47.675948 ], [ 1.86291, 47.68861 ], [ 1.854454, 47.689412 ], [ 1.849532, 47.688292 ], [ 1.843748, 47.68327 ], [ 1.845386, 47.65936 ], [ 1.811415, 47.652507 ], [ 1.804482, 47.64738 ], [ 1.802572, 47.64049 ], [ 1.794452, 47.63612 ], [ 1.78966, 47.637205 ], [ 1.778699, 47.644149 ], [ 1.780571, 47.650848 ], [ 1.776475, 47.65287 ], [ 1.746726, 47.656755 ], [ 1.740037, 47.66185 ], [ 1.728091, 47.687853 ], [ 1.721493, 47.692796 ], [ 1.719378, 47.695923 ], [ 1.723804, 47.697646 ], [ 1.728065, 47.699565 ], [ 1.725656, 47.70271 ], [ 1.713066, 47.7221 ], [ 1.712265, 47.732617 ], [ 1.693807, 47.73879 ], [ 1.673132, 47.73948 ], [ 1.655696, 47.74719 ], [ 1.652215, 47.749207 ], [ 1.629262, 47.75941 ], [ 1.627599, 47.75607 ], [ 1.619393, 47.73947 ], [ 1.582867, 47.72644 ], [ 1.583133, 47.729973 ], [ 1.587321, 47.73208 ], [ 1.59798, 47.73974 ], [ 1.547817, 47.76954 ], [ 1.550856, 47.772211 ], [ 1.571251, 47.78696 ], [ 1.567251, 47.78869 ], [ 1.570241, 47.79672 ], [ 1.566758, 47.79904 ], [ 1.540854, 47.817015 ], [ 1.527172, 47.81932 ], [ 1.527922, 47.822632 ], [ 1.531379, 47.82861 ], [ 1.534145, 47.83158 ], [ 1.535838, 47.83852 ], [ 1.548849, 47.84338 ], [ 1.583626, 47.86849 ], [ 1.583443, 47.871851 ], [ 1.588642, 47.87759 ], [ 1.579064, 47.889009 ], [ 1.581427, 47.891747 ], [ 1.577301, 47.89739 ], [ 1.579184, 47.903529 ], [ 1.57582, 47.90618 ], [ 1.553575, 47.92076 ], [ 1.525424, 47.92911 ], [ 1.522628, 47.931869 ], [ 1.526238, 47.944642 ], [ 1.533467, 47.949196 ], [ 1.55221, 47.953137 ], [ 1.555956, 47.95532 ], [ 1.547007, 47.958204 ], [ 1.547853, 47.961535 ], [ 1.564452, 47.97312 ], [ 1.564819, 47.98977 ], [ 1.560687, 47.987876 ], [ 1.551414, 47.98964 ], [ 1.520124, 47.98228 ], [ 1.520888, 48.011108 ], [ 1.514051, 48.02723 ], [ 1.525946, 48.033232 ], [ 1.540795, 48.031032 ], [ 1.548119, 48.034543 ], [ 1.540194, 48.03873 ], [ 1.545307, 48.044589 ], [ 1.566382, 48.03656 ], [ 1.585117, 48.033535 ], [ 1.586955, 48.03052 ], [ 1.591873, 48.03075 ], [ 1.599285, 48.04276 ], [ 1.613878, 48.044156 ], [ 1.621232, 48.048319 ], [ 1.623713, 48.060786 ], [ 1.621686, 48.063877 ], [ 1.624269, 48.06676 ], [ 1.660607, 48.07512 ], [ 1.668431, 48.0668 ], [ 1.677207, 48.06541 ], [ 1.687023, 48.0751 ], [ 1.689474, 48.07754 ], [ 1.706129, 48.069758 ], [ 1.708991, 48.06694 ], [ 1.728803, 48.068888 ], [ 1.748763, 48.065781 ], [ 1.767072, 48.07179 ], [ 1.771543, 48.07004 ], [ 1.778099, 48.07517 ], [ 1.7975, 48.077682 ], [ 1.80004, 48.08412 ], [ 1.802746, 48.08921 ], [ 1.833278, 48.081318 ], [ 1.838124, 48.08078 ], [ 1.840198, 48.08728 ], [ 1.864599, 48.085017 ], [ 1.865166, 48.091781 ], [ 1.864904, 48.095189 ], [ 1.881637, 48.098013 ], [ 1.887624, 48.102722 ], [ 1.889714, 48.105586 ], [ 1.897623, 48.124523 ], [ 1.899468, 48.127564 ], [ 1.907824, 48.1304 ], [ 1.912622, 48.12913 ], [ 1.918712, 48.14358 ], [ 1.920403, 48.14638 ], [ 1.915328, 48.146654 ], [ 1.905183, 48.14694 ], [ 1.90323, 48.16003 ], [ 1.907925, 48.15999 ], [ 1.916563, 48.16706 ], [ 1.919554, 48.169487 ], [ 1.927115, 48.17345 ], [ 1.934758, 48.169364 ], [ 1.951887, 48.17462 ], [ 1.96628, 48.172695 ], [ 1.97055, 48.17105 ], [ 1.970035, 48.178109 ], [ 1.969347, 48.18168 ], [ 1.952285, 48.19387 ], [ 1.956429, 48.20006 ], [ 1.97085, 48.194314 ], [ 1.976462, 48.199861 ], [ 1.962595, 48.2226 ], [ 1.964442, 48.23212 ], [ 1.966607, 48.23506 ], [ 1.965343, 48.23767 ], [ 1.962064, 48.24547 ], [ 1.965943, 48.254462 ], [ 1.977882, 48.259308 ], [ 1.981399, 48.26141 ], [ 1.985726, 48.266242 ], [ 1.987876, 48.268708 ], [ 1.994521, 48.2835 ], [ 1.994085, 48.28659 ], [ 2.009276, 48.28532 ], [ 2.028994, 48.288632 ], [ 2.043236, 48.286166 ], [ 2.051468, 48.29021 ], [ 2.052708, 48.295474 ], [ 2.087542, 48.29451 ], [ 2.099895, 48.304714 ], [ 2.108709, 48.30746 ], [ 2.113717, 48.30725 ], [ 2.111702, 48.300367 ], [ 2.1106, 48.296949 ], [ 2.141159, 48.29928 ], [ 2.161589, 48.29844 ], [ 2.16239, 48.301511 ], [ 2.155435, 48.30546 ], [ 2.153878, 48.30841 ], [ 2.152668, 48.31482 ], [ 2.166995, 48.313033 ], [ 2.170835, 48.31504 ], [ 2.177842, 48.31293 ], [ 2.181484, 48.31379 ], [ 2.182947, 48.32382 ], [ 2.20709, 48.34494 ], [ 2.21469, 48.33667 ], [ 2.231822, 48.32977 ], [ 2.24631, 48.329968 ], [ 2.239599, 48.319128 ], [ 2.238047, 48.31637 ], [ 2.248218, 48.31542 ], [ 2.245229, 48.301852 ], [ 2.245157, 48.2984 ], [ 2.2501, 48.29975 ], [ 2.254851, 48.301418 ], [ 2.265536, 48.31267 ], [ 2.269118, 48.31505 ], [ 2.296706, 48.30885 ], [ 2.300208, 48.311242 ], [ 2.312424, 48.33012 ], [ 2.317182, 48.331567 ], [ 2.326154, 48.33064 ], [ 2.32931, 48.332833 ], [ 2.340362, 48.318796 ], [ 2.355802, 48.310433 ], [ 2.369945, 48.30867 ], [ 2.398936, 48.31526 ], [ 2.402664, 48.32072 ], [ 2.417749, 48.302206 ], [ 2.420762, 48.299251 ], [ 2.423098, 48.29278 ], [ 2.418346, 48.27989 ], [ 2.420109, 48.2667 ], [ 2.421716, 48.26388 ], [ 2.435639, 48.254848 ], [ 2.440144, 48.2532 ], [ 2.444509, 48.254485 ], [ 2.4518, 48.250425 ], [ 2.465405, 48.25326 ], [ 2.46909, 48.255282 ], [ 2.476787, 48.25083 ], [ 2.480612, 48.24139 ], [ 2.484178, 48.23897 ], [ 2.501745, 48.23871 ], [ 2.506192, 48.23854 ], [ 2.507345, 48.228985 ], [ 2.51535, 48.22693 ], [ 2.514119, 48.214382 ], [ 2.517404, 48.214378 ], [ 2.519932, 48.201377 ], [ 2.523011, 48.19876 ], [ 2.520296, 48.193919 ], [ 2.515406, 48.19301 ], [ 2.508843, 48.180923 ], [ 2.514911, 48.16484 ], [ 2.506327, 48.15644 ], [ 2.502032, 48.158444 ], [ 2.483238, 48.164518 ], [ 2.480872, 48.16161 ], [ 2.47185, 48.154597 ], [ 2.474045, 48.15161 ], [ 2.461097, 48.138207 ], [ 2.444256, 48.13147 ], [ 2.442692, 48.12549 ], [ 2.455859, 48.123389 ], [ 2.458954, 48.125608 ], [ 2.477562, 48.1291 ], [ 2.517284, 48.1259 ], [ 2.52221, 48.125215 ], [ 2.521724, 48.128417 ], [ 2.534395, 48.13806 ], [ 2.537505, 48.14052 ], [ 2.565815, 48.14109 ], [ 2.570563, 48.140816 ], [ 2.577868, 48.13178 ], [ 2.599014, 48.1316 ], [ 2.634454, 48.13833 ], [ 2.639666, 48.13895 ], [ 2.661585, 48.123439 ], [ 2.664748, 48.120542 ], [ 2.66757, 48.120667 ], [ 2.675484, 48.12517 ], [ 2.706547, 48.124819 ], [ 2.722461, 48.13741 ], [ 2.750335, 48.14487 ], [ 2.755198, 48.14565 ], [ 2.754255, 48.151905 ], [ 2.738384, 48.16342 ], [ 2.736406, 48.16631 ], [ 2.754682, 48.16139 ], [ 2.77668, 48.165726 ], [ 2.780977, 48.167363 ], [ 2.79024, 48.1653 ], [ 2.798959, 48.168025 ], [ 2.810918, 48.164067 ], [ 2.810418, 48.16082 ], [ 2.800412, 48.15361 ], [ 2.797907, 48.140551 ], [ 2.799465, 48.137396 ], [ 2.802391, 48.131462 ], [ 2.816334, 48.13043 ], [ 2.82088, 48.12966 ], [ 2.823316, 48.13278 ], [ 2.838308, 48.135908 ], [ 2.864438, 48.152902 ], [ 2.866823, 48.15604 ], [ 2.870991, 48.15647 ], [ 2.895207, 48.15895 ], [ 2.900047, 48.15943 ], [ 2.931137, 48.162813 ], [ 2.936314, 48.163392 ], [ 2.951969, 48.16436 ], [ 2.959952, 48.15538 ], [ 2.963612, 48.15287 ], [ 2.978176, 48.15058 ], [ 2.987615, 48.15228 ], [ 2.994044, 48.1431 ], [ 3.002138, 48.14166 ], [ 3.003886, 48.14486 ], [ 3.01323, 48.14348 ], [ 3.019049, 48.13778 ], [ 3.023122, 48.13567 ], [ 3.027273, 48.1307 ], [ 3.015884, 48.11571 ], [ 3.0351, 48.11563 ], [ 3.041212, 48.09648 ], [ 3.042902, 48.093376 ], [ 3.050194, 48.09124 ], [ 3.049882, 48.088253 ], [ 3.050471, 48.07233 ], [ 3.060278, 48.064699 ], [ 3.078932, 48.06024 ], [ 3.090345, 48.053944 ], [ 3.095365, 48.05398 ], [ 3.090536, 48.04822 ], [ 3.09762, 48.039558 ], [ 3.119731, 48.03247 ], [ 3.124263, 48.03113 ], [ 3.120648, 48.028603 ], [ 3.102176, 48.022456 ], [ 3.10115, 48.019028 ], [ 3.10657, 48.013183 ], [ 3.120845, 48.009363 ], [ 3.121123, 47.995936 ], [ 3.126676, 47.991268 ], [ 3.122989, 47.985198 ], [ 3.128498, 47.979513 ], [ 3.128119, 47.97251 ], [ 3.113425, 47.963348 ], [ 3.105272, 47.946941 ], [ 3.10076, 47.94799 ], [ 3.088683, 47.94318 ], [ 3.08394, 47.942431 ], [ 3.078743, 47.93327 ], [ 3.065214, 47.930519 ], [ 3.063161, 47.92733 ], [ 3.053812, 47.92445 ], [ 3.048244, 47.911331 ], [ 3.030666, 47.90784 ], [ 3.011818, 47.904825 ], [ 3.01543, 47.8985 ], [ 3.007226, 47.895295 ], [ 3.011491, 47.875099 ], [ 2.994904, 47.86735 ], [ 3.018188, 47.861193 ], [ 3.023297, 47.861021 ], [ 3.026906, 47.85892 ], [ 3.033824, 47.843874 ], [ 3.030665, 47.83748 ], [ 3.013874, 47.83184 ], [ 3.013992, 47.825032 ], [ 3.019403, 47.81945 ], [ 3.015473, 47.813539 ], [ 3.019882, 47.81304 ], [ 3.024344, 47.81308 ], [ 3.024263, 47.80966 ], [ 3.027584, 47.799766 ], [ 3.023798, 47.786375 ], [ 3.018803, 47.78647 ], [ 2.988902, 47.786125 ], [ 2.98045, 47.782523 ], [ 2.977353, 47.779958 ], [ 2.954511, 47.77426 ], [ 2.947189, 47.76579 ], [ 2.937484, 47.7663 ], [ 2.935592, 47.763247 ], [ 2.93056, 47.76283 ], [ 2.912915, 47.769388 ], [ 2.908379, 47.768017 ], [ 2.899667, 47.76492 ], [ 2.856477, 47.761736 ], [ 2.853882, 47.75868 ], [ 2.858407, 47.748679 ], [ 2.852539, 47.728151 ], [ 2.84865, 47.7258 ], [ 2.851135, 47.71967 ], [ 2.848969, 47.71685 ], [ 2.861175, 47.710943 ], [ 2.877733, 47.71885 ], [ 2.883507, 47.71345 ], [ 2.879661, 47.70378 ], [ 2.884065, 47.702075 ], [ 2.888655, 47.70057 ], [ 2.893098, 47.69888 ], [ 2.92416, 47.682496 ], [ 2.918155, 47.6698 ], [ 2.928231, 47.658439 ], [ 2.937223, 47.659056 ], [ 2.941581, 47.657537 ], [ 2.951156, 47.6479 ], [ 2.954234, 47.64569 ], [ 2.939684, 47.63836 ], [ 2.936158, 47.636427 ], [ 2.934061, 47.630152 ], [ 2.932321, 47.62705 ], [ 2.943619, 47.607763 ], [ 2.940355, 47.59821 ], [ 2.945698, 47.59225 ], [ 2.959327, 47.587517 ], [ 2.96487, 47.57446 ], [ 2.974821, 47.572714 ], [ 2.976538, 47.56943 ], [ 2.971791, 47.56792 ], [ 2.958658, 47.55738 ], [ 2.953843, 47.55861 ], [ 2.914297, 47.56597 ], [ 2.912958, 47.56364 ], [ 2.909374, 47.559612 ], [ 2.905814, 47.55747 ], [ 2.883392, 47.55272 ], [ 2.878366, 47.55267 ], [ 2.868583, 47.546008 ], [ 2.85663, 47.55141 ], [ 2.845187, 47.544935 ], [ 2.846885, 47.54153 ], [ 2.874625, 47.52042 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "47", "CODE_DEPT": "46", "NOM_DEPT": "LOT", "CODE_CHF": "042", "NOM_CHF": "CAHORS", "X_CHF_LIEU": "5759", "Y_CHF_LIEU": "63732", "X_CENTROID": "5893", "Y_CENTROID": "63926", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.882083, 44.340074 ], [ 1.85629, 44.332742 ], [ 1.849722, 44.335005 ], [ 1.847231, 44.337806 ], [ 1.842695, 44.33697 ], [ 1.833702, 44.33513 ], [ 1.826465, 44.32359 ], [ 1.813143, 44.327982 ], [ 1.807251, 44.33324 ], [ 1.805975, 44.336637 ], [ 1.801818, 44.3357 ], [ 1.793744, 44.333749 ], [ 1.79125, 44.327762 ], [ 1.783485, 44.327847 ], [ 1.787993, 44.32172 ], [ 1.78237, 44.316122 ], [ 1.773271, 44.314203 ], [ 1.759546, 44.323177 ], [ 1.740904, 44.326297 ], [ 1.73309, 44.317897 ], [ 1.706266, 44.312508 ], [ 1.702321, 44.314505 ], [ 1.698485, 44.31283 ], [ 1.675551, 44.29785 ], [ 1.671104, 44.29826 ], [ 1.670328, 44.293399 ], [ 1.669676, 44.290735 ], [ 1.665366, 44.291187 ], [ 1.659487, 44.28326 ], [ 1.655897, 44.28512 ], [ 1.651059, 44.296711 ], [ 1.646736, 44.295064 ], [ 1.637352, 44.297001 ], [ 1.634017, 44.294934 ], [ 1.650018, 44.28304 ], [ 1.644042, 44.27354 ], [ 1.636036, 44.2699 ], [ 1.615631, 44.2784 ], [ 1.616652, 44.29767 ], [ 1.612038, 44.296711 ], [ 1.602525, 44.29617 ], [ 1.596701, 44.301522 ], [ 1.587527, 44.301432 ], [ 1.583253, 44.29988 ], [ 1.573875, 44.300958 ], [ 1.570705, 44.298396 ], [ 1.575434, 44.285305 ], [ 1.564456, 44.278851 ], [ 1.576671, 44.26947 ], [ 1.58079, 44.259581 ], [ 1.585916, 44.250942 ], [ 1.582443, 44.24556 ], [ 1.578933, 44.24369 ], [ 1.57292, 44.2353 ], [ 1.546054, 44.23018 ], [ 1.541735, 44.22871 ], [ 1.530026, 44.23459 ], [ 1.526928, 44.237212 ], [ 1.518156, 44.25233 ], [ 1.524087, 44.26122 ], [ 1.511915, 44.271094 ], [ 1.508952, 44.273709 ], [ 1.504077, 44.273265 ], [ 1.489859, 44.27216 ], [ 1.481934, 44.280839 ], [ 1.473534, 44.284216 ], [ 1.463113, 44.26918 ], [ 1.454513, 44.26613 ], [ 1.452071, 44.255988 ], [ 1.430319, 44.24309 ], [ 1.425752, 44.242029 ], [ 1.423051, 44.242774 ], [ 1.419793, 44.240602 ], [ 1.394161, 44.228986 ], [ 1.389259, 44.22875 ], [ 1.370509, 44.217636 ], [ 1.35715, 44.203023 ], [ 1.337985, 44.22666 ], [ 1.316172, 44.23097 ], [ 1.303104, 44.2283 ], [ 1.285965, 44.23448 ], [ 1.281318, 44.23534 ], [ 1.283518, 44.23793 ], [ 1.284393, 44.252516 ], [ 1.288709, 44.253943 ], [ 1.302983, 44.262511 ], [ 1.30288, 44.269315 ], [ 1.294544, 44.271923 ], [ 1.304016, 44.294191 ], [ 1.299992, 44.295011 ], [ 1.282704, 44.29009 ], [ 1.272716, 44.28264 ], [ 1.258367, 44.28299 ], [ 1.255351, 44.285687 ], [ 1.253224, 44.28274 ], [ 1.250491, 44.26974 ], [ 1.24419, 44.26604 ], [ 1.242612, 44.26925 ], [ 1.238265, 44.275294 ], [ 1.225198, 44.27918 ], [ 1.213001, 44.270934 ], [ 1.203287, 44.28248 ], [ 1.195068, 44.282012 ], [ 1.188983, 44.286918 ], [ 1.184412, 44.2868 ], [ 1.180887, 44.28885 ], [ 1.17746, 44.294831 ], [ 1.178986, 44.310559 ], [ 1.175529, 44.3085 ], [ 1.168975, 44.304108 ], [ 1.15957, 44.30992 ], [ 1.151415, 44.30739 ], [ 1.135027, 44.31689 ], [ 1.130534, 44.316985 ], [ 1.122866, 44.31566 ], [ 1.120364, 44.3181 ], [ 1.10939, 44.324871 ], [ 1.114707, 44.33775 ], [ 1.100694, 44.347087 ], [ 1.083658, 44.35139 ], [ 1.081223, 44.35439 ], [ 1.085842, 44.35546 ], [ 1.093797, 44.36784 ], [ 1.130922, 44.372159 ], [ 1.134424, 44.37446 ], [ 1.132599, 44.384514 ], [ 1.132478, 44.393876 ], [ 1.106685, 44.39235 ], [ 1.10233, 44.391893 ], [ 1.098001, 44.3903 ], [ 1.082963, 44.38159 ], [ 1.064084, 44.37851 ], [ 1.059579, 44.3909 ], [ 1.051168, 44.392269 ], [ 1.058599, 44.3997 ], [ 1.061688, 44.401928 ], [ 1.059949, 44.405022 ], [ 1.06145, 44.41474 ], [ 1.057488, 44.427679 ], [ 1.051011, 44.43041 ], [ 1.047182, 44.43103 ], [ 1.045005, 44.43401 ], [ 1.031175, 44.433092 ], [ 1.031241, 44.43951 ], [ 1.021679, 44.4466 ], [ 1.02099, 44.45624 ], [ 1.025025, 44.465633 ], [ 1.022472, 44.4721 ], [ 1.023009, 44.47544 ], [ 1.012236, 44.47851 ], [ 1.009025, 44.48005 ], [ 1.014987, 44.489721 ], [ 1.016272, 44.50364 ], [ 0.999969, 44.5252 ], [ 0.989453, 44.5324 ], [ 0.98846, 44.53943 ], [ 0.98152, 44.544441 ], [ 0.993167, 44.549408 ], [ 1.006567, 44.54762 ], [ 1.011873, 44.539265 ], [ 1.013166, 44.53614 ], [ 1.036748, 44.55605 ], [ 1.040809, 44.557693 ], [ 1.042312, 44.55793 ], [ 1.053195, 44.56377 ], [ 1.06723, 44.565525 ], [ 1.073639, 44.57408 ], [ 1.075141, 44.57732 ], [ 1.076483, 44.57417 ], [ 1.085075, 44.57195 ], [ 1.098607, 44.57189 ], [ 1.10321, 44.57174 ], [ 1.099504, 44.580043 ], [ 1.103467, 44.58097 ], [ 1.096152, 44.593124 ], [ 1.107396, 44.603961 ], [ 1.123622, 44.614828 ], [ 1.127289, 44.616772 ], [ 1.146642, 44.63136 ], [ 1.150893, 44.632856 ], [ 1.15255, 44.63618 ], [ 1.146516, 44.65285 ], [ 1.149825, 44.655027 ], [ 1.146901, 44.66758 ], [ 1.146733, 44.670797 ], [ 1.161061, 44.672964 ], [ 1.166974, 44.67859 ], [ 1.180561, 44.682687 ], [ 1.219796, 44.68332 ], [ 1.22455, 44.68427 ], [ 1.224707, 44.68571 ], [ 1.230001, 44.69115 ], [ 1.242933, 44.694636 ], [ 1.244638, 44.70475 ], [ 1.261542, 44.71018 ], [ 1.268091, 44.71896 ], [ 1.270041, 44.72209 ], [ 1.282721, 44.7151 ], [ 1.287021, 44.71446 ], [ 1.299421, 44.731674 ], [ 1.297181, 44.73806 ], [ 1.30019, 44.744284 ], [ 1.312139, 44.74149 ], [ 1.316051, 44.740375 ], [ 1.321535, 44.761097 ], [ 1.308133, 44.7709 ], [ 1.303951, 44.7725 ], [ 1.297154, 44.77697 ], [ 1.303806, 44.785691 ], [ 1.30262, 44.78896 ], [ 1.293311, 44.789852 ], [ 1.301166, 44.797744 ], [ 1.321845, 44.804111 ], [ 1.325507, 44.806012 ], [ 1.352501, 44.808578 ], [ 1.356551, 44.81025 ], [ 1.360244, 44.81116 ], [ 1.364103, 44.811568 ], [ 1.360801, 44.83889 ], [ 1.365459, 44.84497 ], [ 1.378341, 44.84335 ], [ 1.388593, 44.849992 ], [ 1.402507, 44.849049 ], [ 1.402862, 44.85081 ], [ 1.405462, 44.86314 ], [ 1.409292, 44.864725 ], [ 1.411446, 44.87271 ], [ 1.414009, 44.871655 ], [ 1.416778, 44.8709 ], [ 1.431431, 44.87177 ], [ 1.439858, 44.875245 ], [ 1.442178, 44.87835 ], [ 1.442508, 44.881063 ], [ 1.439857, 44.888951 ], [ 1.435732, 44.889676 ], [ 1.421836, 44.89641 ], [ 1.419672, 44.899003 ], [ 1.418269, 44.907448 ], [ 1.410526, 44.908788 ], [ 1.423629, 44.918268 ], [ 1.441562, 44.918782 ], [ 1.4331, 44.937214 ], [ 1.433462, 44.946044 ], [ 1.428611, 44.946309 ], [ 1.41899, 44.95828 ], [ 1.419568, 44.968397 ], [ 1.414261, 44.97391 ], [ 1.414987, 44.993566 ], [ 1.40913, 45.00673 ], [ 1.433023, 45.01077 ], [ 1.448262, 45.019313 ], [ 1.460357, 45.01397 ], [ 1.477292, 45.020092 ], [ 1.477131, 45.02692 ], [ 1.47993, 45.026756 ], [ 1.5058, 45.039498 ], [ 1.522661, 45.042659 ], [ 1.526759, 45.04428 ], [ 1.540315, 45.04467 ], [ 1.543942, 45.03125 ], [ 1.55204, 45.02847 ], [ 1.57097, 45.03956 ], [ 1.603883, 45.03535 ], [ 1.608069, 45.03353 ], [ 1.608959, 45.02889 ], [ 1.60956, 45.032305 ], [ 1.627746, 45.03332 ], [ 1.63238, 45.03233 ], [ 1.64737, 45.025837 ], [ 1.651891, 45.025288 ], [ 1.653199, 45.018955 ], [ 1.671411, 45.004307 ], [ 1.680078, 45.003329 ], [ 1.684371, 45.00266 ], [ 1.689269, 44.994604 ], [ 1.692273, 44.992577 ], [ 1.700373, 44.98916 ], [ 1.703377, 44.98657 ], [ 1.707508, 44.972512 ], [ 1.708767, 44.96964 ], [ 1.71088, 44.96709 ], [ 1.712968, 44.967326 ], [ 1.726256, 44.967011 ], [ 1.736182, 44.96053 ], [ 1.740734, 44.96058 ], [ 1.748795, 44.95683 ], [ 1.755329, 44.944135 ], [ 1.753982, 44.940851 ], [ 1.750554, 44.93879 ], [ 1.76701, 44.933045 ], [ 1.771447, 44.92727 ], [ 1.774029, 44.92453 ], [ 1.774608, 44.92354 ], [ 1.777453, 44.926209 ], [ 1.784546, 44.93052 ], [ 1.785701, 44.936906 ], [ 1.788603, 44.934606 ], [ 1.801468, 44.92641 ], [ 1.800167, 44.92029 ], [ 1.800798, 44.92038 ], [ 1.810042, 44.92795 ], [ 1.819741, 44.92722 ], [ 1.827628, 44.93073 ], [ 1.829361, 44.933962 ], [ 1.831572, 44.94342 ], [ 1.83589, 44.944323 ], [ 1.838527, 44.93818 ], [ 1.842772, 44.937083 ], [ 1.848412, 44.943958 ], [ 1.851053, 44.94625 ], [ 1.887091, 44.95634 ], [ 1.888368, 44.96292 ], [ 1.907779, 44.978243 ], [ 1.927179, 44.978801 ], [ 1.936522, 44.973164 ], [ 1.94015, 44.97184 ], [ 1.941333, 44.958208 ], [ 1.946191, 44.95348 ], [ 1.95099, 44.953158 ], [ 1.9566, 44.95901 ], [ 1.984336, 44.973719 ], [ 2.008268, 44.976231 ], [ 2.040848, 44.98198 ], [ 2.045121, 44.98367 ], [ 2.058581, 44.97541 ], [ 2.062914, 44.976506 ], [ 2.079176, 44.954969 ], [ 2.080703, 44.95158 ], [ 2.076351, 44.934785 ], [ 2.102335, 44.919916 ], [ 2.105115, 44.91332 ], [ 2.10811, 44.910598 ], [ 2.085432, 44.898772 ], [ 2.084512, 44.888373 ], [ 2.09351, 44.87237 ], [ 2.097414, 44.87057 ], [ 2.117213, 44.848255 ], [ 2.127146, 44.84358 ], [ 2.127673, 44.840631 ], [ 2.136778, 44.826242 ], [ 2.139801, 44.823825 ], [ 2.144397, 44.823528 ], [ 2.16629, 44.81207 ], [ 2.166053, 44.79902 ], [ 2.169115, 44.792941 ], [ 2.171633, 44.790258 ], [ 2.169882, 44.784663 ], [ 2.168506, 44.781934 ], [ 2.164663, 44.77259 ], [ 2.155249, 44.77155 ], [ 2.150975, 44.770024 ], [ 2.149147, 44.7697 ], [ 2.148908, 44.76629 ], [ 2.153492, 44.75311 ], [ 2.154692, 44.74974 ], [ 2.148087, 44.72285 ], [ 2.133279, 44.709356 ], [ 2.130064, 44.6993 ], [ 2.132873, 44.697189 ], [ 2.138291, 44.69288 ], [ 2.142949, 44.6937 ], [ 2.154666, 44.699366 ], [ 2.158546, 44.697352 ], [ 2.179152, 44.674449 ], [ 2.176251, 44.67183 ], [ 2.16601, 44.66129 ], [ 2.169023, 44.65883 ], [ 2.173735, 44.653251 ], [ 2.169541, 44.6477 ], [ 2.169419, 44.63798 ], [ 2.172326, 44.63578 ], [ 2.176555, 44.63547 ], [ 2.204864, 44.618394 ], [ 2.207475, 44.615532 ], [ 2.209251, 44.605731 ], [ 2.197709, 44.600318 ], [ 2.198334, 44.593561 ], [ 2.193314, 44.587763 ], [ 2.185813, 44.59071 ], [ 2.169815, 44.59141 ], [ 2.169552, 44.59132 ], [ 2.166655, 44.5887 ], [ 2.152562, 44.571586 ], [ 2.14808, 44.570651 ], [ 2.13433, 44.57037 ], [ 2.126954, 44.578256 ], [ 2.11629, 44.573102 ], [ 2.104023, 44.571473 ], [ 2.098323, 44.57582 ], [ 2.095353, 44.57801 ], [ 2.079834, 44.585022 ], [ 2.064612, 44.56775 ], [ 2.061247, 44.569389 ], [ 2.06364, 44.579268 ], [ 2.055083, 44.58027 ], [ 2.035452, 44.570211 ], [ 2.032878, 44.560204 ], [ 2.028857, 44.55823 ], [ 2.02803, 44.558001 ], [ 2.023677, 44.556333 ], [ 2.004211, 44.55696 ], [ 1.984239, 44.54726 ], [ 1.979555, 44.54102 ], [ 1.973838, 44.53561 ], [ 1.971753, 44.532553 ], [ 1.97072, 44.529176 ], [ 1.957918, 44.519044 ], [ 1.948186, 44.517304 ], [ 1.943408, 44.51711 ], [ 1.928272, 44.50508 ], [ 1.918913, 44.50437 ], [ 1.911268, 44.50287 ], [ 1.919767, 44.48867 ], [ 1.916454, 44.486324 ], [ 1.908117, 44.488196 ], [ 1.905072, 44.501274 ], [ 1.892546, 44.505578 ], [ 1.887907, 44.5048 ], [ 1.881928, 44.483945 ], [ 1.877448, 44.4841 ], [ 1.873307, 44.48432 ], [ 1.861576, 44.48732 ], [ 1.839964, 44.479604 ], [ 1.839533, 44.476098 ], [ 1.845965, 44.470817 ], [ 1.847655, 44.46751 ], [ 1.851868, 44.461246 ], [ 1.848247, 44.447676 ], [ 1.85067, 44.43731 ], [ 1.873186, 44.42414 ], [ 1.87332, 44.423691 ], [ 1.870881, 44.42065 ], [ 1.874271, 44.406866 ], [ 1.868875, 44.397213 ], [ 1.874402, 44.39144 ], [ 1.891429, 44.37913 ], [ 1.896363, 44.36943 ], [ 1.908239, 44.363419 ], [ 1.910045, 44.36019 ], [ 1.910827, 44.356738 ], [ 1.905909, 44.350856 ], [ 1.891626, 44.351766 ], [ 1.884697, 44.343009 ], [ 1.882083, 44.340074 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "48", "CODE_DEPT": "47", "NOM_DEPT": "LOT-ET-GARONNE", "CODE_CHF": "001", "NOM_CHF": "AGEN", "X_CHF_LIEU": "5097", "Y_CHF_LIEU": "63477", "X_CENTROID": "4976", "Y_CENTROID": "63664", "CODE_REG": "72", "NOM_REGION": "AQUITAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.741635, 44.0652 ], [ 0.738933, 44.062491 ], [ 0.717115, 44.05759 ], [ 0.707923, 44.05829 ], [ 0.704967, 44.055725 ], [ 0.694547, 44.045124 ], [ 0.682755, 44.04224 ], [ 0.679586, 44.029348 ], [ 0.676267, 44.026883 ], [ 0.662534, 44.024582 ], [ 0.65417, 44.032849 ], [ 0.652847, 44.042833 ], [ 0.632705, 44.04963 ], [ 0.631509, 44.052863 ], [ 0.622547, 44.064176 ], [ 0.599327, 44.07495 ], [ 0.601222, 44.07801 ], [ 0.584703, 44.07726 ], [ 0.576884, 44.07345 ], [ 0.567315, 44.061234 ], [ 0.55874, 44.05822 ], [ 0.54609, 44.05623 ], [ 0.538427, 44.052952 ], [ 0.535071, 44.055209 ], [ 0.522484, 44.056951 ], [ 0.51158, 44.06274 ], [ 0.504717, 44.050667 ], [ 0.503819, 44.05377 ], [ 0.497471, 44.05758 ], [ 0.488817, 44.056463 ], [ 0.485697, 44.058687 ], [ 0.485403, 44.055439 ], [ 0.459759, 44.055378 ], [ 0.45866, 44.052579 ], [ 0.450621, 44.046404 ], [ 0.450312, 44.04438 ], [ 0.447452, 44.041621 ], [ 0.44245, 44.02876 ], [ 0.437588, 44.02919 ], [ 0.418874, 44.02821 ], [ 0.412024, 44.023499 ], [ 0.397883, 44.02188 ], [ 0.382444, 44.008342 ], [ 0.372908, 44.008429 ], [ 0.35707, 44.01553 ], [ 0.32475, 44.00785 ], [ 0.31548, 44.00997 ], [ 0.31486, 44.00671 ], [ 0.318026, 43.997245 ], [ 0.305493, 43.993992 ], [ 0.302772, 43.991395 ], [ 0.28235, 43.998 ], [ 0.273552, 43.998054 ], [ 0.27114, 44.00102 ], [ 0.259824, 44.005699 ], [ 0.250636, 44.004261 ], [ 0.232995, 44.00939 ], [ 0.232775, 44.02239 ], [ 0.229143, 44.02136 ], [ 0.218721, 44.02113 ], [ 0.214734, 44.02279 ], [ 0.201762, 44.014234 ], [ 0.193466, 44.01369 ], [ 0.189807, 44.015008 ], [ 0.18114, 44.002528 ], [ 0.165747, 43.99445 ], [ 0.164053, 43.977096 ], [ 0.161035, 43.97435 ], [ 0.156784, 43.972809 ], [ 0.138625, 43.97659 ], [ 0.141, 43.993642 ], [ 0.126847, 44.001926 ], [ 0.127415, 43.998581 ], [ 0.107388, 43.985382 ], [ 0.093313, 43.98574 ], [ 0.080372, 43.98172 ], [ 0.076046, 43.98314 ], [ 0.062955, 44.001183 ], [ 0.061182, 44.014743 ], [ 0.062234, 44.018077 ], [ 0.061593, 44.02154 ], [ 0.060223, 44.02488 ], [ 0.0698, 44.02578 ], [ 0.076223, 44.030736 ], [ 0.087468, 44.063972 ], [ 0.094951, 44.06836 ], [ 0.102105, 44.08339 ], [ 0.100821, 44.08677 ], [ 0.124151, 44.10502 ], [ 0.136803, 44.11043 ], [ 0.135858, 44.113559 ], [ 0.131824, 44.11919 ], [ 0.135797, 44.124194 ], [ 0.130969, 44.124482 ], [ 0.034594, 44.130652 ], [ 0.032018, 44.13352 ], [ -0.003539, 44.1499 ], [ -0.00379, 44.149918 ], [ -0.055166, 44.1508 ], [ -0.059859, 44.150826 ], [ -0.064434, 44.151914 ], [ -0.08775, 44.155989 ], [ -0.106561, 44.154944 ], [ -0.114737, 44.15141 ], [ -0.129155, 44.15241 ], [ -0.129202, 44.156 ], [ -0.129643, 44.20261 ], [ -0.140689, 44.22641 ], [ -0.136872, 44.228289 ], [ -0.125932, 44.23437 ], [ -0.123182, 44.240651 ], [ -0.119197, 44.238809 ], [ -0.11373, 44.233713 ], [ -0.104834, 44.231884 ], [ -0.08848, 44.238471 ], [ -0.073116, 44.251387 ], [ -0.066808, 44.246663 ], [ -0.064197, 44.249132 ], [ -0.053362, 44.265774 ], [ -0.049627, 44.267886 ], [ -0.033608, 44.27401 ], [ -0.042888, 44.293206 ], [ -0.034811, 44.29673 ], [ -0.03762, 44.299513 ], [ -0.057226, 44.31908 ], [ -0.077776, 44.332654 ], [ -0.080414, 44.334319 ], [ -0.085752, 44.33761 ], [ -0.080176, 44.350477 ], [ -0.078819, 44.35369 ], [ -0.069523, 44.35313 ], [ -0.059259, 44.35998 ], [ -0.040758, 44.360123 ], [ -0.036189, 44.36084 ], [ -0.032446, 44.360821 ], [ -0.028821, 44.36019 ], [ -0.011159, 44.37138 ], [ -0.001647, 44.37223 ], [ 0.009942, 44.367052 ], [ 0.014725, 44.366615 ], [ 0.021233, 44.375385 ], [ 0.010834, 44.38133 ], [ 0.016519, 44.386175 ], [ 0.018292, 44.38925 ], [ 0.015794, 44.3916 ], [ 0.006621, 44.397338 ], [ -0.011765, 44.420303 ], [ -0.005018, 44.424379 ], [ -0.007568, 44.433813 ], [ -0.002954, 44.442578 ], [ 0.004788, 44.44501 ], [ 0.007509, 44.44754 ], [ 0.004494, 44.456735 ], [ -0.002912, 44.460254 ], [ -0.007298, 44.459224 ], [ -0.013816, 44.46682 ], [ -0.016043, 44.489705 ], [ -0.01614, 44.501657 ], [ -0.015565, 44.504789 ], [ -0.004197, 44.51732 ], [ -0.00018, 44.518254 ], [ 0.001465, 44.520722 ], [ 0.00482, 44.522038 ], [ 0.009506, 44.521994 ], [ 0.017923, 44.53001 ], [ -0.00109, 44.548408 ], [ -0.001017, 44.55177 ], [ 0.016807, 44.54255 ], [ 0.020984, 44.54146 ], [ 0.029028, 44.548493 ], [ 0.032713, 44.55052 ], [ 0.03787, 44.554037 ], [ 0.064973, 44.55035 ], [ 0.068687, 44.54822 ], [ 0.072357, 44.550318 ], [ 0.074869, 44.560195 ], [ 0.082973, 44.567949 ], [ 0.085548, 44.57763 ], [ 0.082236, 44.58391 ], [ 0.105528, 44.58912 ], [ 0.110282, 44.59008 ], [ 0.113766, 44.59173 ], [ 0.11663, 44.593895 ], [ 0.117433, 44.59422 ], [ 0.133128, 44.606162 ], [ 0.146241, 44.608429 ], [ 0.150858, 44.608647 ], [ 0.154363, 44.614908 ], [ 0.139263, 44.627148 ], [ 0.13842, 44.63903 ], [ 0.141194, 44.641315 ], [ 0.146378, 44.635359 ], [ 0.160289, 44.632717 ], [ 0.165214, 44.632862 ], [ 0.168345, 44.64613 ], [ 0.173909, 44.651696 ], [ 0.17697, 44.65432 ], [ 0.181612, 44.65866 ], [ 0.183025, 44.661189 ], [ 0.180463, 44.664214 ], [ 0.167618, 44.668372 ], [ 0.163123, 44.67041 ], [ 0.159392, 44.66854 ], [ 0.142061, 44.66576 ], [ 0.133519, 44.667908 ], [ 0.130842, 44.673622 ], [ 0.133947, 44.679351 ], [ 0.134422, 44.682417 ], [ 0.129759, 44.683233 ], [ 0.115539, 44.68227 ], [ 0.107043, 44.68542 ], [ 0.100345, 44.70098 ], [ 0.105026, 44.701823 ], [ 0.11051, 44.71064 ], [ 0.119915, 44.71202 ], [ 0.128047, 44.70839 ], [ 0.130843, 44.70558 ], [ 0.136039, 44.71121 ], [ 0.139344, 44.72771 ], [ 0.141197, 44.73751 ], [ 0.15262, 44.73082 ], [ 0.161358, 44.73348 ], [ 0.164495, 44.73569 ], [ 0.172701, 44.73461 ], [ 0.178386, 44.742716 ], [ 0.180434, 44.745498 ], [ 0.184529, 44.74903 ], [ 0.18941, 44.74877 ], [ 0.193916, 44.74257 ], [ 0.200062, 44.72576 ], [ 0.201542, 44.72243 ], [ 0.218632, 44.72663 ], [ 0.211863, 44.739564 ], [ 0.218306, 44.75623 ], [ 0.224972, 44.76104 ], [ 0.226601, 44.764158 ], [ 0.235944, 44.76419 ], [ 0.249122, 44.751225 ], [ 0.267506, 44.751698 ], [ 0.271682, 44.75319 ], [ 0.296565, 44.75916 ], [ 0.297325, 44.76229 ], [ 0.303376, 44.75898 ], [ 0.307009, 44.758097 ], [ 0.336793, 44.735477 ], [ 0.341042, 44.725526 ], [ 0.34502, 44.72342 ], [ 0.347345, 44.720489 ], [ 0.347871, 44.710395 ], [ 0.343484, 44.709136 ], [ 0.341479, 44.70237 ], [ 0.356731, 44.694158 ], [ 0.359541, 44.69132 ], [ 0.350448, 44.674965 ], [ 0.349598, 44.660847 ], [ 0.351812, 44.65562 ], [ 0.355528, 44.65496 ], [ 0.36662, 44.6612 ], [ 0.37674, 44.65393 ], [ 0.39101, 44.654527 ], [ 0.416954, 44.64521 ], [ 0.429293, 44.65074 ], [ 0.447578, 44.654082 ], [ 0.451989, 44.655588 ], [ 0.467953, 44.666809 ], [ 0.47053, 44.66958 ], [ 0.488043, 44.666907 ], [ 0.495626, 44.669808 ], [ 0.516743, 44.67811 ], [ 0.521659, 44.67858 ], [ 0.530741, 44.67673 ], [ 0.534406, 44.67461 ], [ 0.538778, 44.66844 ], [ 0.546558, 44.66515 ], [ 0.562454, 44.6723 ], [ 0.567171, 44.671513 ], [ 0.576468, 44.693063 ], [ 0.58749, 44.698699 ], [ 0.591392, 44.696938 ], [ 0.616758, 44.69343 ], [ 0.620018, 44.691297 ], [ 0.623614, 44.69315 ], [ 0.621799, 44.699352 ], [ 0.627378, 44.704218 ], [ 0.63036, 44.70657 ], [ 0.644297, 44.70432 ], [ 0.65546, 44.693432 ], [ 0.655629, 44.68998 ], [ 0.657142, 44.68701 ], [ 0.657434, 44.67786 ], [ 0.680587, 44.67628 ], [ 0.685312, 44.675561 ], [ 0.692439, 44.676619 ], [ 0.696058, 44.67701 ], [ 0.724522, 44.677041 ], [ 0.729134, 44.67599 ], [ 0.746133, 44.68175 ], [ 0.760052, 44.680305 ], [ 0.763141, 44.689924 ], [ 0.783217, 44.684113 ], [ 0.787299, 44.68529 ], [ 0.788386, 44.695241 ], [ 0.79947, 44.700775 ], [ 0.817888, 44.696709 ], [ 0.82861, 44.68977 ], [ 0.831074, 44.68317 ], [ 0.829354, 44.68062 ], [ 0.825838, 44.6759 ], [ 0.83544, 44.670422 ], [ 0.848411, 44.67017 ], [ 0.852444, 44.668979 ], [ 0.84865, 44.667221 ], [ 0.84337, 44.66272 ], [ 0.843061, 44.656287 ], [ 0.835063, 44.653294 ], [ 0.835656, 44.636879 ], [ 0.817004, 44.62701 ], [ 0.825021, 44.62122 ], [ 0.826465, 44.61516 ], [ 0.82929, 44.612852 ], [ 0.837936, 44.614922 ], [ 0.835146, 44.6022 ], [ 0.853389, 44.59948 ], [ 0.857727, 44.598106 ], [ 0.865974, 44.598013 ], [ 0.869996, 44.59732 ], [ 0.876301, 44.613963 ], [ 0.895557, 44.61593 ], [ 0.907453, 44.62186 ], [ 0.911162, 44.62317 ], [ 0.914685, 44.624745 ], [ 0.926654, 44.635 ], [ 0.939393, 44.63981 ], [ 0.944179, 44.640355 ], [ 0.966655, 44.636195 ], [ 0.977296, 44.642992 ], [ 0.995923, 44.632821 ], [ 0.997505, 44.62949 ], [ 1.012502, 44.61583 ], [ 1.029019, 44.60966 ], [ 1.033401, 44.608369 ], [ 1.046781, 44.604959 ], [ 1.056876, 44.59771 ], [ 1.071021, 44.596119 ], [ 1.077766, 44.583845 ], [ 1.075141, 44.57732 ], [ 1.073639, 44.57408 ], [ 1.06723, 44.565525 ], [ 1.053195, 44.56377 ], [ 1.042312, 44.55793 ], [ 1.040809, 44.557693 ], [ 1.036748, 44.55605 ], [ 1.013166, 44.53614 ], [ 1.011873, 44.539265 ], [ 1.006567, 44.54762 ], [ 0.993167, 44.549408 ], [ 0.98152, 44.544441 ], [ 0.98846, 44.53943 ], [ 0.989453, 44.5324 ], [ 0.999969, 44.5252 ], [ 1.016272, 44.50364 ], [ 1.014987, 44.489721 ], [ 1.009025, 44.48005 ], [ 1.012236, 44.47851 ], [ 1.023009, 44.47544 ], [ 1.022472, 44.4721 ], [ 1.025025, 44.465633 ], [ 1.02099, 44.45624 ], [ 1.021679, 44.4466 ], [ 1.031241, 44.43951 ], [ 1.031175, 44.433092 ], [ 1.045005, 44.43401 ], [ 1.047182, 44.43103 ], [ 1.051011, 44.43041 ], [ 1.057488, 44.427679 ], [ 1.06145, 44.41474 ], [ 1.059949, 44.405022 ], [ 1.061688, 44.401928 ], [ 1.058599, 44.3997 ], [ 1.051168, 44.392269 ], [ 1.059579, 44.3909 ], [ 1.064084, 44.37851 ], [ 1.060473, 44.36626 ], [ 1.04722, 44.36257 ], [ 1.024678, 44.366855 ], [ 1.022266, 44.36406 ], [ 1.004384, 44.3657 ], [ 0.996705, 44.36915 ], [ 0.993497, 44.36652 ], [ 0.978586, 44.358049 ], [ 0.969794, 44.36102 ], [ 0.950506, 44.359519 ], [ 0.944146, 44.35426 ], [ 0.942382, 44.34442 ], [ 0.941254, 44.344399 ], [ 0.940563, 44.34785 ], [ 0.937285, 44.36861 ], [ 0.923647, 44.37801 ], [ 0.919845, 44.38442 ], [ 0.915224, 44.384097 ], [ 0.910846, 44.38296 ], [ 0.906666, 44.382224 ], [ 0.895341, 44.37918 ], [ 0.893959, 44.37312 ], [ 0.891334, 44.37046 ], [ 0.88732, 44.364646 ], [ 0.893363, 44.35607 ], [ 0.892011, 44.349914 ], [ 0.896113, 44.346228 ], [ 0.894805, 44.343286 ], [ 0.883328, 44.328379 ], [ 0.879503, 44.327342 ], [ 0.873272, 44.323574 ], [ 0.874884, 44.32072 ], [ 0.869445, 44.309255 ], [ 0.8838, 44.30769 ], [ 0.891142, 44.298742 ], [ 0.895067, 44.296701 ], [ 0.912026, 44.300914 ], [ 0.91643, 44.302204 ], [ 0.921475, 44.294196 ], [ 0.923515, 44.29157 ], [ 0.946024, 44.27511 ], [ 0.950788, 44.275072 ], [ 0.948841, 44.27207 ], [ 0.940855, 44.26422 ], [ 0.927782, 44.26741 ], [ 0.932795, 44.251252 ], [ 0.91909, 44.23827 ], [ 0.92851, 44.233064 ], [ 0.929239, 44.23025 ], [ 0.903111, 44.19005 ], [ 0.898525, 44.190904 ], [ 0.860992, 44.192979 ], [ 0.859687, 44.19274 ], [ 0.857793, 44.189864 ], [ 0.853675, 44.18425 ], [ 0.853632, 44.174782 ], [ 0.863912, 44.173569 ], [ 0.870138, 44.169 ], [ 0.882074, 44.17363 ], [ 0.890008, 44.17022 ], [ 0.889794, 44.16688 ], [ 0.888106, 44.163836 ], [ 0.888351, 44.14881 ], [ 0.894084, 44.14023 ], [ 0.892066, 44.13733 ], [ 0.883987, 44.140094 ], [ 0.880236, 44.131711 ], [ 0.869092, 44.126516 ], [ 0.857814, 44.127575 ], [ 0.855079, 44.13049 ], [ 0.820491, 44.14314 ], [ 0.796556, 44.14512 ], [ 0.787733, 44.14276 ], [ 0.795082, 44.133498 ], [ 0.797565, 44.130387 ], [ 0.793165, 44.118458 ], [ 0.798588, 44.110104 ], [ 0.795242, 44.11227 ], [ 0.78192, 44.112919 ], [ 0.775041, 44.11688 ], [ 0.773071, 44.113883 ], [ 0.754273, 44.10475 ], [ 0.748003, 44.093292 ], [ 0.747761, 44.08648 ], [ 0.739874, 44.0781 ], [ 0.737992, 44.071404 ], [ 0.741635, 44.0652 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "49", "CODE_DEPT": "48", "NOM_DEPT": "LOZERE", "CODE_CHF": "095", "NOM_CHF": "MENDE", "X_CHF_LIEU": "7397", "Y_CHF_LIEU": "63800", "X_CENTROID": "7397", "Y_CENTROID": "63799", "CODE_REG": "91", "NOM_REGION": "LANGUEDOC-ROUSSILLON" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.998163, 44.4598 ], [ 3.97596, 44.44281 ], [ 3.97269, 44.436798 ], [ 3.973044, 44.426721 ], [ 3.971719, 44.426382 ], [ 3.961269, 44.414662 ], [ 3.949196, 44.409249 ], [ 3.948916, 44.402319 ], [ 3.91645, 44.405052 ], [ 3.908506, 44.40305 ], [ 3.901542, 44.395533 ], [ 3.900416, 44.392617 ], [ 3.898558, 44.39026 ], [ 3.888695, 44.392964 ], [ 3.885817, 44.387973 ], [ 3.889107, 44.385606 ], [ 3.911307, 44.37033 ], [ 3.925013, 44.352713 ], [ 3.925008, 44.34629 ], [ 3.937635, 44.33606 ], [ 3.947017, 44.335359 ], [ 3.952361, 44.330154 ], [ 3.948819, 44.32385 ], [ 3.948083, 44.32706 ], [ 3.943704, 44.317887 ], [ 3.922859, 44.305227 ], [ 3.924943, 44.300825 ], [ 3.932937, 44.29677 ], [ 3.939236, 44.287345 ], [ 3.94003, 44.283873 ], [ 3.934303, 44.27545 ], [ 3.946764, 44.266892 ], [ 3.949688, 44.26943 ], [ 3.958546, 44.270975 ], [ 3.969227, 44.264778 ], [ 3.974753, 44.25972 ], [ 3.971123, 44.250395 ], [ 3.966919, 44.249865 ], [ 3.954741, 44.24958 ], [ 3.946433, 44.24101 ], [ 3.950924, 44.21687 ], [ 3.947255, 44.215983 ], [ 3.946248, 44.212661 ], [ 3.938574, 44.19664 ], [ 3.959222, 44.19088 ], [ 3.958795, 44.18412 ], [ 3.96595, 44.171613 ], [ 3.969842, 44.172461 ], [ 3.975587, 44.169809 ], [ 3.974117, 44.16433 ], [ 3.969452, 44.165047 ], [ 3.932865, 44.1804 ], [ 3.923699, 44.18135 ], [ 3.927275, 44.1613 ], [ 3.911601, 44.16012 ], [ 3.910617, 44.150258 ], [ 3.907391, 44.14785 ], [ 3.898477, 44.148621 ], [ 3.894317, 44.14717 ], [ 3.872731, 44.12867 ], [ 3.832118, 44.13733 ], [ 3.828468, 44.136436 ], [ 3.820249, 44.13245 ], [ 3.816677, 44.131754 ], [ 3.810833, 44.128557 ], [ 3.796995, 44.127389 ], [ 3.777238, 44.1402 ], [ 3.773033, 44.141602 ], [ 3.768909, 44.14262 ], [ 3.762209, 44.14539 ], [ 3.759624, 44.15119 ], [ 3.755264, 44.15141 ], [ 3.750848, 44.15214 ], [ 3.73505, 44.15731 ], [ 3.725624, 44.164249 ], [ 3.721091, 44.164729 ], [ 3.707658, 44.164465 ], [ 3.692424, 44.171376 ], [ 3.684404, 44.179411 ], [ 3.685032, 44.182683 ], [ 3.680307, 44.18295 ], [ 3.671053, 44.1842 ], [ 3.667963, 44.177784 ], [ 3.659917, 44.17429 ], [ 3.649649, 44.180846 ], [ 3.644962, 44.179992 ], [ 3.637706, 44.175434 ], [ 3.630543, 44.15887 ], [ 3.632924, 44.152573 ], [ 3.645569, 44.147539 ], [ 3.647169, 44.14429 ], [ 3.63585, 44.138127 ], [ 3.632838, 44.12122 ], [ 3.606167, 44.115901 ], [ 3.574615, 44.121508 ], [ 3.569987, 44.122324 ], [ 3.565196, 44.123051 ], [ 3.544309, 44.11437 ], [ 3.533113, 44.12086 ], [ 3.509926, 44.12538 ], [ 3.50516, 44.1262 ], [ 3.481027, 44.12425 ], [ 3.443052, 44.12885 ], [ 3.438628, 44.130372 ], [ 3.435184, 44.132762 ], [ 3.428468, 44.148665 ], [ 3.396939, 44.162699 ], [ 3.392517, 44.16869 ], [ 3.373648, 44.170765 ], [ 3.372075, 44.180725 ], [ 3.358391, 44.19447 ], [ 3.360423, 44.201169 ], [ 3.355603, 44.20084 ], [ 3.332084, 44.203509 ], [ 3.318327, 44.20039 ], [ 3.301043, 44.206461 ], [ 3.291616, 44.205676 ], [ 3.287881, 44.19952 ], [ 3.264363, 44.200308 ], [ 3.243235, 44.19257 ], [ 3.239261, 44.19066 ], [ 3.230589, 44.189863 ], [ 3.226313, 44.190592 ], [ 3.203593, 44.193462 ], [ 3.212071, 44.19578 ], [ 3.215799, 44.2021 ], [ 3.219211, 44.204503 ], [ 3.221213, 44.207713 ], [ 3.23054, 44.23034 ], [ 3.195687, 44.24066 ], [ 3.187826, 44.24891 ], [ 3.174415, 44.24526 ], [ 3.160532, 44.24628 ], [ 3.154268, 44.27304 ], [ 3.14617, 44.276031 ], [ 3.14016, 44.26704 ], [ 3.138298, 44.26397 ], [ 3.133898, 44.262382 ], [ 3.124527, 44.26147 ], [ 3.125306, 44.28542 ], [ 3.154266, 44.309225 ], [ 3.146076, 44.31713 ], [ 3.150937, 44.329933 ], [ 3.134194, 44.334528 ], [ 3.128198, 44.3509 ], [ 3.131976, 44.357178 ], [ 3.123591, 44.360771 ], [ 3.120492, 44.366814 ], [ 3.122494, 44.370017 ], [ 3.123395, 44.38021 ], [ 3.119743, 44.386331 ], [ 3.137053, 44.391621 ], [ 3.137244, 44.408266 ], [ 3.130371, 44.412037 ], [ 3.126721, 44.41396 ], [ 3.129938, 44.420337 ], [ 3.141045, 44.426796 ], [ 3.142256, 44.433734 ], [ 3.135077, 44.442016 ], [ 3.136367, 44.44539 ], [ 3.136186, 44.44879 ], [ 3.135486, 44.455519 ], [ 3.124866, 44.4613 ], [ 3.117325, 44.47379 ], [ 3.103506, 44.479535 ], [ 3.09956, 44.48043 ], [ 3.068932, 44.502706 ], [ 3.075465, 44.51598 ], [ 3.076238, 44.519464 ], [ 3.07491, 44.533292 ], [ 3.08347, 44.56032 ], [ 3.079021, 44.566472 ], [ 3.076607, 44.5695 ], [ 3.076196, 44.57255 ], [ 3.061845, 44.579 ], [ 3.059631, 44.58163 ], [ 3.055354, 44.58707 ], [ 3.041086, 44.594202 ], [ 3.037131, 44.59554 ], [ 3.031891, 44.598463 ], [ 3.030708, 44.600741 ], [ 3.018388, 44.61126 ], [ 3.013273, 44.620847 ], [ 2.987819, 44.64119 ], [ 2.985448, 44.64421 ], [ 2.981677, 44.644686 ], [ 2.985621, 44.658235 ], [ 2.999722, 44.67654 ], [ 3.001628, 44.686838 ], [ 3.016022, 44.712531 ], [ 3.034293, 44.71554 ], [ 3.039129, 44.715001 ], [ 3.034894, 44.727048 ], [ 3.027305, 44.73022 ], [ 3.028747, 44.73319 ], [ 3.031345, 44.74964 ], [ 3.037832, 44.75809 ], [ 3.042243, 44.75938 ], [ 3.048237, 44.76432 ], [ 3.044048, 44.773528 ], [ 3.049475, 44.77862 ], [ 3.049971, 44.78188 ], [ 3.048705, 44.79461 ], [ 3.046242, 44.79729 ], [ 3.047916, 44.803903 ], [ 3.064034, 44.820236 ], [ 3.072702, 44.822751 ], [ 3.07698, 44.82428 ], [ 3.072175, 44.836266 ], [ 3.089341, 44.832787 ], [ 3.093846, 44.83312 ], [ 3.096528, 44.83334 ], [ 3.099159, 44.83291 ], [ 3.097681, 44.841558 ], [ 3.100179, 44.843924 ], [ 3.094845, 44.85548 ], [ 3.103188, 44.863215 ], [ 3.104979, 44.86626 ], [ 3.103126, 44.88463 ], [ 3.119516, 44.89154 ], [ 3.128384, 44.903578 ], [ 3.142848, 44.902282 ], [ 3.147951, 44.89634 ], [ 3.151478, 44.893933 ], [ 3.157551, 44.886641 ], [ 3.16028, 44.88447 ], [ 3.164673, 44.875178 ], [ 3.179882, 44.86781 ], [ 3.181619, 44.86469 ], [ 3.190271, 44.862524 ], [ 3.195963, 44.872084 ], [ 3.214815, 44.875003 ], [ 3.225669, 44.882094 ], [ 3.234928, 44.888584 ], [ 3.227769, 44.89707 ], [ 3.228278, 44.90695 ], [ 3.226428, 44.90998 ], [ 3.231158, 44.911119 ], [ 3.249693, 44.916238 ], [ 3.244565, 44.931717 ], [ 3.250201, 44.93658 ], [ 3.248414, 44.939506 ], [ 3.252172, 44.94078 ], [ 3.256169, 44.9416 ], [ 3.265703, 44.941663 ], [ 3.262554, 44.93524 ], [ 3.267129, 44.92959 ], [ 3.285389, 44.926254 ], [ 3.300883, 44.939367 ], [ 3.314336, 44.93979 ], [ 3.31825, 44.94601 ], [ 3.334081, 44.95385 ], [ 3.337948, 44.95591 ], [ 3.35037, 44.95503 ], [ 3.354528, 44.95482 ], [ 3.355222, 44.958259 ], [ 3.361343, 44.97141 ], [ 3.368997, 44.97418 ], [ 3.372711, 44.975723 ], [ 3.371664, 44.968929 ], [ 3.377783, 44.95659 ], [ 3.390906, 44.95277 ], [ 3.403222, 44.95686 ], [ 3.410817, 44.948001 ], [ 3.412835, 44.944843 ], [ 3.415119, 44.9263 ], [ 3.41038, 44.91779 ], [ 3.413026, 44.91567 ], [ 3.419257, 44.908435 ], [ 3.417812, 44.90504 ], [ 3.421511, 44.89482 ], [ 3.435711, 44.880244 ], [ 3.436572, 44.87699 ], [ 3.4418, 44.85423 ], [ 3.445198, 44.851764 ], [ 3.457593, 44.841324 ], [ 3.45617, 44.831228 ], [ 3.47001, 44.82194 ], [ 3.478242, 44.80968 ], [ 3.486967, 44.80647 ], [ 3.490994, 44.808481 ], [ 3.493094, 44.811514 ], [ 3.507375, 44.82423 ], [ 3.5122, 44.824816 ], [ 3.541089, 44.82805 ], [ 3.555337, 44.82567 ], [ 3.56877, 44.834183 ], [ 3.582453, 44.826117 ], [ 3.589724, 44.82939 ], [ 3.586884, 44.836052 ], [ 3.59783, 44.858709 ], [ 3.595024, 44.87579 ], [ 3.603369, 44.879379 ], [ 3.608282, 44.879334 ], [ 3.614235, 44.874817 ], [ 3.629866, 44.87983 ], [ 3.632535, 44.87731 ], [ 3.640654, 44.87857 ], [ 3.644297, 44.87713 ], [ 3.660137, 44.87051 ], [ 3.664392, 44.860969 ], [ 3.671245, 44.85703 ], [ 3.67364, 44.85412 ], [ 3.669728, 44.841282 ], [ 3.6616, 44.83776 ], [ 3.657417, 44.836124 ], [ 3.663663, 44.831414 ], [ 3.666365, 44.828778 ], [ 3.694679, 44.831675 ], [ 3.701809, 44.836267 ], [ 3.719429, 44.831796 ], [ 3.735968, 44.83672 ], [ 3.73538, 44.840119 ], [ 3.743866, 44.8378 ], [ 3.755779, 44.817536 ], [ 3.759833, 44.81606 ], [ 3.761687, 44.812876 ], [ 3.759954, 44.806334 ], [ 3.764135, 44.800381 ], [ 3.771952, 44.80232 ], [ 3.797349, 44.786488 ], [ 3.804675, 44.77364 ], [ 3.80699, 44.767583 ], [ 3.810631, 44.76588 ], [ 3.817335, 44.769812 ], [ 3.819372, 44.772561 ], [ 3.833253, 44.77528 ], [ 3.841852, 44.772132 ], [ 3.841072, 44.76562 ], [ 3.832974, 44.75725 ], [ 3.829915, 44.754638 ], [ 3.839419, 44.74712 ], [ 3.858308, 44.74553 ], [ 3.862527, 44.74387 ], [ 3.877097, 44.73599 ], [ 3.863763, 44.722326 ], [ 3.8631, 44.71202 ], [ 3.870008, 44.707206 ], [ 3.869246, 44.700396 ], [ 3.869648, 44.69696 ], [ 3.883529, 44.696718 ], [ 3.884563, 44.69344 ], [ 3.881767, 44.690573 ], [ 3.871647, 44.679336 ], [ 3.885373, 44.657457 ], [ 3.894778, 44.649963 ], [ 3.895766, 44.642293 ], [ 3.894403, 44.639018 ], [ 3.89414, 44.61529 ], [ 3.906662, 44.61096 ], [ 3.908084, 44.6077 ], [ 3.90533, 44.595462 ], [ 3.90654, 44.59237 ], [ 3.918466, 44.587368 ], [ 3.916821, 44.58071 ], [ 3.921627, 44.574962 ], [ 3.923567, 44.571885 ], [ 3.944441, 44.57366 ], [ 3.948774, 44.572887 ], [ 3.95849, 44.55689 ], [ 3.960906, 44.55381 ], [ 3.964955, 44.541002 ], [ 3.965692, 44.537682 ], [ 3.967657, 44.534856 ], [ 3.978998, 44.52176 ], [ 3.97579, 44.516742 ], [ 3.980284, 44.51542 ], [ 3.986789, 44.50243 ], [ 3.987125, 44.47487 ], [ 3.998163, 44.4598 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "50", "CODE_DEPT": "49", "NOM_DEPT": "MAINE-ET-LOIRE", "CODE_CHF": "007", "NOM_CHF": "ANGERS", "X_CHF_LIEU": "4322", "Y_CHF_LIEU": "67140", "X_CENTROID": "4312", "Y_CENTROID": "67050", "CODE_REG": "52", "NOM_REGION": "PAYS-DE-LA-LOIRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.102121, 47.064806 ], [ -0.10698, 47.06354 ], [ -0.128896, 47.054236 ], [ -0.133284, 47.055549 ], [ -0.138001, 47.064342 ], [ -0.149809, 47.06965 ], [ -0.158811, 47.068883 ], [ -0.165984, 47.064596 ], [ -0.17037, 47.066071 ], [ -0.174754, 47.06752 ], [ -0.178554, 47.069792 ], [ -0.166736, 47.08099 ], [ -0.140891, 47.09676 ], [ -0.141253, 47.10365 ], [ -0.146212, 47.1027 ], [ -0.15615, 47.101591 ], [ -0.18524, 47.10842 ], [ -0.186682, 47.10534 ], [ -0.190185, 47.099648 ], [ -0.206269, 47.093193 ], [ -0.209135, 47.09591 ], [ -0.24043, 47.10508 ], [ -0.258181, 47.10028 ], [ -0.262876, 47.10548 ], [ -0.266009, 47.10295 ], [ -0.29251, 47.10061 ], [ -0.312636, 47.09205 ], [ -0.317233, 47.09127 ], [ -0.340141, 47.08727 ], [ -0.342066, 47.090237 ], [ -0.354651, 47.09465 ], [ -0.359108, 47.093536 ], [ -0.363689, 47.09253 ], [ -0.381939, 47.088554 ], [ -0.387062, 47.09239 ], [ -0.391846, 47.09188 ], [ -0.40078, 47.07077 ], [ -0.408634, 47.066493 ], [ -0.426487, 47.07224 ], [ -0.445454, 47.067681 ], [ -0.460572, 47.06835 ], [ -0.480383, 47.053638 ], [ -0.483854, 47.066538 ], [ -0.464423, 47.07614 ], [ -0.463353, 47.08187 ], [ -0.467753, 47.08341 ], [ -0.491782, 47.08285 ], [ -0.51513, 47.077937 ], [ -0.519492, 47.076037 ], [ -0.559717, 47.061701 ], [ -0.556127, 47.05925 ], [ -0.556072, 47.045618 ], [ -0.543463, 47.03511 ], [ -0.547013, 47.02875 ], [ -0.561548, 47.029506 ], [ -0.566774, 47.019836 ], [ -0.580099, 47.014899 ], [ -0.587252, 47.00613 ], [ -0.59574, 47.000642 ], [ -0.595492, 46.99791 ], [ -0.600671, 46.997541 ], [ -0.620177, 46.99336 ], [ -0.625115, 46.99334 ], [ -0.632918, 46.99693 ], [ -0.646938, 46.99426 ], [ -0.673301, 47.001866 ], [ -0.680368, 46.99324 ], [ -0.680185, 46.987658 ], [ -0.684779, 46.987998 ], [ -0.689724, 46.992716 ], [ -0.698466, 46.99456 ], [ -0.702174, 46.992164 ], [ -0.714462, 46.98599 ], [ -0.7338, 46.99708 ], [ -0.751304, 46.99227 ], [ -0.761383, 46.99305 ], [ -0.772827, 47.00336 ], [ -0.78685, 47.005107 ], [ -0.789958, 47.00245 ], [ -0.808398, 46.991895 ], [ -0.805024, 46.98945 ], [ -0.809678, 46.98819 ], [ -0.816647, 46.99306 ], [ -0.821638, 46.992845 ], [ -0.834302, 46.987512 ], [ -0.84772, 46.98615 ], [ -0.855169, 46.977938 ], [ -0.854241, 46.971586 ], [ -0.858915, 46.97047 ], [ -0.882077, 46.976295 ], [ -0.891961, 46.975827 ], [ -0.893938, 46.97896 ], [ -0.901294, 46.99144 ], [ -0.914903, 46.99544 ], [ -0.934878, 47.00756 ], [ -0.93682, 47.004376 ], [ -0.959132, 46.99812 ], [ -0.977324, 47.014336 ], [ -0.986265, 47.012964 ], [ -1.002264, 47.02129 ], [ -1.005048, 47.01849 ], [ -1.01611, 47.003644 ], [ -1.020849, 47.004984 ], [ -1.05132, 47.005892 ], [ -1.064663, 47.01069 ], [ -1.074205, 47.00947 ], [ -1.083305, 47.01268 ], [ -1.087586, 47.01316 ], [ -1.09057, 47.01532 ], [ -1.095473, 47.014782 ], [ -1.127501, 47.021456 ], [ -1.131994, 47.02297 ], [ -1.148571, 47.029554 ], [ -1.143996, 47.030927 ], [ -1.11789, 47.04028 ], [ -1.120792, 47.053584 ], [ -1.115539, 47.062697 ], [ -1.120108, 47.06414 ], [ -1.148528, 47.069621 ], [ -1.161898, 47.07957 ], [ -1.167958, 47.09052 ], [ -1.170549, 47.09295 ], [ -1.175073, 47.093584 ], [ -1.179363, 47.09529 ], [ -1.228114, 47.099769 ], [ -1.240897, 47.094585 ], [ -1.249652, 47.09763 ], [ -1.246738, 47.10053 ], [ -1.232328, 47.109875 ], [ -1.226626, 47.118667 ], [ -1.23218, 47.12799 ], [ -1.230987, 47.1313 ], [ -1.235255, 47.132488 ], [ -1.23822, 47.134904 ], [ -1.218849, 47.144322 ], [ -1.209088, 47.14454 ], [ -1.191065, 47.15542 ], [ -1.188363, 47.158232 ], [ -1.172048, 47.16789 ], [ -1.169555, 47.170515 ], [ -1.167714, 47.17355 ], [ -1.161776, 47.18583 ], [ -1.165361, 47.188066 ], [ -1.176734, 47.192659 ], [ -1.174632, 47.19846 ], [ -1.180764, 47.20741 ], [ -1.175243, 47.21162 ], [ -1.174481, 47.214404 ], [ -1.177609, 47.216185 ], [ -1.188466, 47.220003 ], [ -1.188046, 47.22311 ], [ -1.181106, 47.2409 ], [ -1.185046, 47.242529 ], [ -1.195861, 47.252181 ], [ -1.204918, 47.25304 ], [ -1.209506, 47.25178 ], [ -1.213985, 47.245907 ], [ -1.231267, 47.239579 ], [ -1.235477, 47.241102 ], [ -1.254061, 47.25009 ], [ -1.255337, 47.25317 ], [ -1.276402, 47.2696 ], [ -1.27672, 47.288055 ], [ -1.28022, 47.2929 ], [ -1.282664, 47.2958 ], [ -1.294757, 47.301354 ], [ -1.3138, 47.302964 ], [ -1.319029, 47.30321 ], [ -1.339313, 47.300976 ], [ -1.354204, 47.30416 ], [ -1.337293, 47.317469 ], [ -1.322745, 47.32088 ], [ -1.310318, 47.33205 ], [ -1.306548, 47.33448 ], [ -1.287817, 47.34056 ], [ -1.282624, 47.340957 ], [ -1.256452, 47.34125 ], [ -1.236679, 47.345979 ], [ -1.232283, 47.34792 ], [ -1.228373, 47.349978 ], [ -1.205598, 47.348976 ], [ -1.187253, 47.35254 ], [ -1.183138, 47.3542 ], [ -1.170101, 47.364653 ], [ -1.144951, 47.367996 ], [ -1.11428, 47.367041 ], [ -1.111954, 47.36594 ], [ -1.106842, 47.36589 ], [ -1.101857, 47.36664 ], [ -1.07853, 47.3708 ], [ -1.063981, 47.37019 ], [ -1.036884, 47.36469 ], [ -1.032118, 47.365001 ], [ -1.012695, 47.36571 ], [ -0.990563, 47.37262 ], [ -0.981172, 47.37088 ], [ -0.976234, 47.371029 ], [ -0.969338, 47.3743 ], [ -0.966359, 47.376361 ], [ -0.962253, 47.37843 ], [ -0.957845, 47.3802 ], [ -0.949385, 47.38442 ], [ -0.945808, 47.38703 ], [ -0.935856, 47.38778 ], [ -0.927155, 47.39636 ], [ -0.923456, 47.39877 ], [ -0.925506, 47.40194 ], [ -0.943182, 47.41861 ], [ -0.948347, 47.42274 ], [ -0.947628, 47.42975 ], [ -0.952818, 47.43581 ], [ -0.954011, 47.45323 ], [ -0.967867, 47.46805 ], [ -0.962337, 47.47918 ], [ -0.958993, 47.48123 ], [ -0.96091, 47.48379 ], [ -0.96548, 47.4918 ], [ -0.970663, 47.492295 ], [ -1.011586, 47.489874 ], [ -1.025803, 47.500127 ], [ -1.044458, 47.505501 ], [ -1.049296, 47.50528 ], [ -1.072631, 47.501481 ], [ -1.077012, 47.50328 ], [ -1.107533, 47.50095 ], [ -1.142822, 47.505071 ], [ -1.146997, 47.50709 ], [ -1.156214, 47.51015 ], [ -1.168004, 47.529123 ], [ -1.154454, 47.538856 ], [ -1.154392, 47.542337 ], [ -1.178346, 47.54802 ], [ -1.173253, 47.569228 ], [ -1.172934, 47.57282 ], [ -1.123516, 47.56952 ], [ -1.104863, 47.56527 ], [ -1.099905, 47.565729 ], [ -1.060517, 47.56597 ], [ -1.055643, 47.56528 ], [ -1.042198, 47.56323 ], [ -1.037088, 47.57049 ], [ -1.032991, 47.571965 ], [ -1.020182, 47.57714 ], [ -1.008165, 47.58776 ], [ -1.009226, 47.59105 ], [ -1.021577, 47.59672 ], [ -1.025255, 47.59902 ], [ -1.030451, 47.59937 ], [ -1.075035, 47.60613 ], [ -1.103175, 47.62059 ], [ -1.123665, 47.61921 ], [ -1.137894, 47.618927 ], [ -1.137678, 47.62215 ], [ -1.154156, 47.633618 ], [ -1.157394, 47.63599 ], [ -1.157909, 47.639163 ], [ -1.156466, 47.64547 ], [ -1.162948, 47.66049 ], [ -1.172985, 47.66037 ], [ -1.181369, 47.66861 ], [ -1.175483, 47.681359 ], [ -1.177913, 47.68801 ], [ -1.17493, 47.69456 ], [ -1.180204, 47.69679 ], [ -1.19545, 47.71203 ], [ -1.195666, 47.72172 ], [ -1.215419, 47.71882 ], [ -1.234119, 47.72336 ], [ -1.254406, 47.73267 ], [ -1.255316, 47.739203 ], [ -1.255719, 47.742569 ], [ -1.241724, 47.74286 ], [ -1.236525, 47.75578 ], [ -1.247316, 47.763028 ], [ -1.245882, 47.776718 ], [ -1.237062, 47.799597 ], [ -1.240193, 47.802287 ], [ -1.238252, 47.80999 ], [ -1.215047, 47.80252 ], [ -1.209308, 47.796777 ], [ -1.199356, 47.795251 ], [ -1.193039, 47.786212 ], [ -1.177831, 47.784646 ], [ -1.165022, 47.778875 ], [ -1.140507, 47.77469 ], [ -1.137437, 47.77664 ], [ -1.139246, 47.7822 ], [ -1.13972, 47.78502 ], [ -1.09285, 47.7812 ], [ -1.080839, 47.7747 ], [ -1.075591, 47.77444 ], [ -1.075037, 47.77419 ], [ -1.047709, 47.773645 ], [ -1.043471, 47.77241 ], [ -1.033695, 47.77114 ], [ -1.020898, 47.77479 ], [ -1.015442, 47.76929 ], [ -1.006341, 47.76808 ], [ -0.999831, 47.76435 ], [ -0.990877, 47.76401 ], [ -0.986653, 47.762935 ], [ -0.982688, 47.76193 ], [ -0.978457, 47.762 ], [ -0.952266, 47.76999 ], [ -0.958546, 47.77912 ], [ -0.972097, 47.78315 ], [ -0.961986, 47.79352 ], [ -0.959761, 47.79633 ], [ -0.950554, 47.79553 ], [ -0.936498, 47.786855 ], [ -0.931138, 47.790325 ], [ -0.931935, 47.79351 ], [ -0.894399, 47.77125 ], [ -0.893041, 47.76786 ], [ -0.89317, 47.764506 ], [ -0.864606, 47.759136 ], [ -0.859867, 47.7581 ], [ -0.843281, 47.75364 ], [ -0.839295, 47.752282 ], [ -0.8354, 47.76962 ], [ -0.816068, 47.77123 ], [ -0.811744, 47.765357 ], [ -0.792946, 47.761507 ], [ -0.786308, 47.75292 ], [ -0.783388, 47.750193 ], [ -0.764392, 47.754013 ], [ -0.759625, 47.752932 ], [ -0.749702, 47.74161 ], [ -0.735166, 47.739497 ], [ -0.731594, 47.741891 ], [ -0.718459, 47.740885 ], [ -0.709257, 47.74377 ], [ -0.689884, 47.73969 ], [ -0.669841, 47.740754 ], [ -0.653787, 47.73338 ], [ -0.649406, 47.734554 ], [ -0.646242, 47.736906 ], [ -0.616059, 47.73597 ], [ -0.610818, 47.735689 ], [ -0.587755, 47.75593 ], [ -0.584648, 47.7584 ], [ -0.573109, 47.753704 ], [ -0.564982, 47.756835 ], [ -0.560372, 47.757435 ], [ -0.537758, 47.75149 ], [ -0.532922, 47.75069 ], [ -0.51835, 47.767697 ], [ -0.521709, 47.78069 ], [ -0.5221, 47.78398 ], [ -0.519889, 47.78652 ], [ -0.511455, 47.78553 ], [ -0.507134, 47.78507 ], [ -0.480245, 47.777 ], [ -0.45681, 47.760044 ], [ -0.453929, 47.75724 ], [ -0.429175, 47.76722 ], [ -0.414949, 47.76522 ], [ -0.410032, 47.76522 ], [ -0.414219, 47.775078 ], [ -0.409624, 47.77803 ], [ -0.38398, 47.76716 ], [ -0.381704, 47.76057 ], [ -0.376992, 47.760212 ], [ -0.379706, 47.751206 ], [ -0.375467, 47.74566 ], [ -0.37253, 47.743144 ], [ -0.373778, 47.73987 ], [ -0.358295, 47.731968 ], [ -0.364226, 47.71933 ], [ -0.365826, 47.71612 ], [ -0.35113, 47.71444 ], [ -0.333663, 47.72094 ], [ -0.314076, 47.71791 ], [ -0.309075, 47.71734 ], [ -0.29153, 47.717705 ], [ -0.287627, 47.71913 ], [ -0.256663, 47.7081 ], [ -0.236766, 47.704631 ], [ -0.205739, 47.72261 ], [ -0.202373, 47.725242 ], [ -0.193568, 47.723339 ], [ -0.184536, 47.716064 ], [ -0.175301, 47.716315 ], [ -0.173406, 47.713412 ], [ -0.18346, 47.71213 ], [ -0.184352, 47.705395 ], [ -0.203437, 47.693883 ], [ -0.217688, 47.692798 ], [ -0.215838, 47.682922 ], [ -0.199473, 47.665634 ], [ -0.196659, 47.662739 ], [ -0.196697, 47.650036 ], [ -0.193158, 47.64793 ], [ -0.163713, 47.645961 ], [ -0.158952, 47.647045 ], [ -0.147524, 47.63613 ], [ -0.138798, 47.63417 ], [ -0.134502, 47.632489 ], [ -0.127846, 47.63671 ], [ -0.1141, 47.635476 ], [ -0.113835, 47.64532 ], [ -0.105482, 47.65708 ], [ -0.09905, 47.66179 ], [ -0.094554, 47.660605 ], [ -0.09248, 47.65426 ], [ -0.092424, 47.65101 ], [ -0.074508, 47.657487 ], [ -0.052378, 47.64868 ], [ -0.026745, 47.646349 ], [ -0.020286, 47.63702 ], [ -0.017114, 47.63914 ], [ -0.004508, 47.647688 ], [ -0.001037, 47.645238 ], [ 0.012965, 47.62869 ], [ 0.009393, 47.626815 ], [ 0.009923, 47.623775 ], [ 0.034202, 47.61842 ], [ 0.052261, 47.60622 ], [ 0.06224, 47.60448 ], [ 0.071017, 47.60812 ], [ 0.095772, 47.603325 ], [ 0.110628, 47.6059 ], [ 0.115651, 47.605628 ], [ 0.120352, 47.596 ], [ 0.134245, 47.59442 ], [ 0.144174, 47.583055 ], [ 0.148488, 47.5813 ], [ 0.161129, 47.592413 ], [ 0.176229, 47.59441 ], [ 0.183976, 47.599011 ], [ 0.185834, 47.616547 ], [ 0.197801, 47.61545 ], [ 0.201909, 47.615582 ], [ 0.204544, 47.605972 ], [ 0.209402, 47.60552 ], [ 0.212617, 47.611785 ], [ 0.226382, 47.61064 ], [ 0.230002, 47.608398 ], [ 0.230576, 47.585003 ], [ 0.234568, 47.57861 ], [ 0.230576, 47.57731 ], [ 0.218936, 47.57359 ], [ 0.214089, 47.56879 ], [ 0.200087, 47.54317 ], [ 0.19312, 47.538037 ], [ 0.205637, 47.53294 ], [ 0.207175, 47.52667 ], [ 0.224843, 47.52728 ], [ 0.219715, 47.50519 ], [ 0.220109, 47.501953 ], [ 0.20415, 47.48661 ], [ 0.200659, 47.4845 ], [ 0.19885, 47.47641 ], [ 0.184247, 47.45576 ], [ 0.180874, 47.45323 ], [ 0.184494, 47.429597 ], [ 0.185149, 47.426217 ], [ 0.180943, 47.416603 ], [ 0.156772, 47.401448 ], [ 0.153864, 47.39873 ], [ 0.168249, 47.396153 ], [ 0.168732, 47.386013 ], [ 0.182143, 47.381943 ], [ 0.157666, 47.36532 ], [ 0.15386, 47.363093 ], [ 0.140405, 47.361808 ], [ 0.14285, 47.358725 ], [ 0.147298, 47.345376 ], [ 0.144439, 47.342819 ], [ 0.135494, 47.335365 ], [ 0.117462, 47.332343 ], [ 0.117889, 47.32884 ], [ 0.111109, 47.31573 ], [ 0.100309, 47.308205 ], [ 0.082382, 47.28687 ], [ 0.088557, 47.282381 ], [ 0.087486, 47.27553 ], [ 0.083193, 47.274147 ], [ 0.08011, 47.271692 ], [ 0.076367, 47.251931 ], [ 0.069096, 47.24333 ], [ 0.073838, 47.233508 ], [ 0.072451, 47.219878 ], [ 0.076842, 47.21937 ], [ 0.072876, 47.214493 ], [ 0.068291, 47.214196 ], [ 0.053807, 47.198856 ], [ 0.061892, 47.19095 ], [ 0.066594, 47.189802 ], [ 0.06352, 47.17639 ], [ 0.05664, 47.167369 ], [ 0.05374, 47.16461 ], [ 0.051052, 47.16713 ], [ 0.036642, 47.16036 ], [ 0.033624, 47.16289 ], [ 0.019015, 47.175758 ], [ 0.01534, 47.173168 ], [ -0.011722, 47.15624 ], [ -0.033736, 47.12756 ], [ -0.03444, 47.12063 ], [ -0.036549, 47.11752 ], [ -0.039508, 47.11475 ], [ -0.037498, 47.10814 ], [ -0.028063, 47.106027 ], [ -0.02707, 47.102674 ], [ -0.035315, 47.08672 ], [ -0.039917, 47.08761 ], [ -0.044239, 47.093151 ], [ -0.067762, 47.09338 ], [ -0.068733, 47.09653 ], [ -0.085541, 47.100434 ], [ -0.088887, 47.09827 ], [ -0.098055, 47.09135 ], [ -0.099978, 47.088083 ], [ -0.100648, 47.08459 ], [ -0.102121, 47.064806 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "51", "CODE_DEPT": "50", "NOM_DEPT": "MANCHE", "CODE_CHF": "502", "NOM_CHF": "SAINT-LO", "X_CHF_LIEU": "4014", "Y_CHF_LIEU": "68982", "X_CENTROID": "3839", "Y_CENTROID": "68953", "CODE_REG": "25", "NOM_REGION": "BASSE-NORMANDIE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.070165, 48.50849 ], [ -1.1012, 48.512885 ], [ -1.117277, 48.52165 ], [ -1.122244, 48.521362 ], [ -1.132159, 48.52173 ], [ -1.145709, 48.517654 ], [ -1.161961, 48.52425 ], [ -1.166724, 48.530079 ], [ -1.188368, 48.528687 ], [ -1.19316, 48.529248 ], [ -1.206894, 48.54219 ], [ -1.208259, 48.53909 ], [ -1.232492, 48.53764 ], [ -1.249016, 48.54367 ], [ -1.249493, 48.5437 ], [ -1.254221, 48.54327 ], [ -1.27291, 48.533721 ], [ -1.269817, 48.53105 ], [ -1.269542, 48.524356 ], [ -1.279004, 48.50918 ], [ -1.283385, 48.50853 ], [ -1.287629, 48.50953 ], [ -1.290184, 48.50679 ], [ -1.30455, 48.498803 ], [ -1.318768, 48.497286 ], [ -1.321808, 48.499798 ], [ -1.326326, 48.49852 ], [ -1.330412, 48.48596 ], [ -1.332739, 48.48886 ], [ -1.341415, 48.48921 ], [ -1.348477, 48.47989 ], [ -1.346533, 48.473118 ], [ -1.374943, 48.45926 ], [ -1.382967, 48.45687 ], [ -1.399391, 48.461159 ], [ -1.404237, 48.46143 ], [ -1.427752, 48.46235 ], [ -1.440356, 48.47217 ], [ -1.435747, 48.477916 ], [ -1.449399, 48.48677 ], [ -1.457581, 48.48543 ], [ -1.466134, 48.487976 ], [ -1.47467, 48.48588 ], [ -1.485862, 48.490737 ], [ -1.489947, 48.48937 ], [ -1.495588, 48.505047 ], [ -1.495733, 48.50831 ], [ -1.498528, 48.511018 ], [ -1.515309, 48.530294 ], [ -1.517781, 48.52985 ], [ -1.519766, 48.539657 ], [ -1.53311, 48.549439 ], [ -1.527171, 48.5619 ], [ -1.521005, 48.56705 ], [ -1.527773, 48.57577 ], [ -1.527747, 48.57908 ], [ -1.542011, 48.58087 ], [ -1.538887, 48.59746 ], [ -1.545464, 48.60609 ], [ -1.554664, 48.60923 ], [ -1.558303, 48.611232 ], [ -1.566049, 48.614827 ], [ -1.571087, 48.62645 ], [ -1.553792, 48.62949 ], [ -1.549446, 48.630158 ], [ -1.520247, 48.627613 ], [ -1.516621, 48.62151 ], [ -1.515647, 48.61826 ], [ -1.512305, 48.616211 ], [ -1.511937, 48.61321 ], [ -1.508061, 48.61869 ], [ -1.480794, 48.61939 ], [ -1.475995, 48.61905 ], [ -1.453439, 48.62417 ], [ -1.448692, 48.623481 ], [ -1.430117, 48.63457 ], [ -1.427017, 48.64083 ], [ -1.422596, 48.6424 ], [ -1.420876, 48.639256 ], [ -1.391553, 48.64393 ], [ -1.371804, 48.64154 ], [ -1.361667, 48.63408 ], [ -1.352426, 48.631329 ], [ -1.347353, 48.63144 ], [ -1.345475, 48.63273 ], [ -1.348359, 48.631937 ], [ -1.351354, 48.63248 ], [ -1.364427, 48.64695 ], [ -1.369988, 48.64648 ], [ -1.377601, 48.650693 ], [ -1.392769, 48.65063 ], [ -1.400675, 48.659104 ], [ -1.380209, 48.682794 ], [ -1.376541, 48.6848 ], [ -1.374995, 48.687787 ], [ -1.372288, 48.693796 ], [ -1.375536, 48.69148 ], [ -1.394562, 48.677941 ], [ -1.399004, 48.676084 ], [ -1.431561, 48.66588 ], [ -1.439354, 48.657073 ], [ -1.444374, 48.65615 ], [ -1.449256, 48.6694 ], [ -1.457399, 48.673651 ], [ -1.48655, 48.68632 ], [ -1.496102, 48.6838 ], [ -1.504902, 48.687396 ], [ -1.506943, 48.690544 ], [ -1.517312, 48.71335 ], [ -1.518701, 48.71666 ], [ -1.529156, 48.729982 ], [ -1.53324, 48.73138 ], [ -1.552711, 48.73243 ], [ -1.556378, 48.734647 ], [ -1.57088, 48.743939 ], [ -1.574582, 48.754158 ], [ -1.570844, 48.767 ], [ -1.570309, 48.77038 ], [ -1.569352, 48.78823 ], [ -1.572764, 48.815939 ], [ -1.575568, 48.82239 ], [ -1.585923, 48.82983 ], [ -1.609851, 48.833008 ], [ -1.607401, 48.836778 ], [ -1.594983, 48.84251 ], [ -1.591833, 48.84517 ], [ -1.58456, 48.849377 ], [ -1.579525, 48.85886 ], [ -1.577962, 48.86204 ], [ -1.572787, 48.881609 ], [ -1.572119, 48.88489 ], [ -1.571132, 48.8906 ], [ -1.561525, 48.92764 ], [ -1.557702, 48.93158 ], [ -1.559572, 48.91269 ], [ -1.553785, 48.8978 ], [ -1.551397, 48.89799 ], [ -1.551386, 48.90879 ], [ -1.543453, 48.931386 ], [ -1.550169, 48.940319 ], [ -1.562205, 48.94082 ], [ -1.562437, 48.94705 ], [ -1.561831, 48.95121 ], [ -1.561456, 48.96828 ], [ -1.562258, 48.97803 ], [ -1.561999, 48.98131 ], [ -1.559253, 48.99866 ], [ -1.556631, 48.99982 ], [ -1.552134, 48.99068 ], [ -1.550058, 48.99199 ], [ -1.55156, 48.998192 ], [ -1.556967, 49.011281 ], [ -1.55607, 49.024924 ], [ -1.534801, 49.03402 ], [ -1.518343, 49.025451 ], [ -1.513915, 49.02351 ], [ -1.510284, 49.021124 ], [ -1.505913, 49.01936 ], [ -1.504679, 49.02014 ], [ -1.508524, 49.026405 ], [ -1.538189, 49.03955 ], [ -1.542564, 49.04132 ], [ -1.555303, 49.03678 ], [ -1.559912, 49.03825 ], [ -1.569816, 49.03016 ], [ -1.576883, 49.01711 ], [ -1.576108, 49.006778 ], [ -1.581948, 49.004528 ], [ -1.595358, 49.027181 ], [ -1.607322, 49.06765 ], [ -1.606272, 49.06864 ], [ -1.599231, 49.05633 ], [ -1.598095, 49.06022 ], [ -1.6006, 49.07331 ], [ -1.610165, 49.083581 ], [ -1.605427, 49.111881 ], [ -1.594853, 49.13032 ], [ -1.585285, 49.13107 ], [ -1.580298, 49.13148 ], [ -1.594782, 49.14081 ], [ -1.596134, 49.14413 ], [ -1.604218, 49.18854 ], [ -1.605505, 49.19189 ], [ -1.605572, 49.205286 ], [ -1.61192, 49.21805 ], [ -1.572085, 49.222132 ], [ -1.567259, 49.220883 ], [ -1.567629, 49.221185 ], [ -1.587432, 49.23286 ], [ -1.613567, 49.234796 ], [ -1.6228, 49.226256 ], [ -1.624932, 49.21597 ], [ -1.632059, 49.21481 ], [ -1.648982, 49.232534 ], [ -1.650697, 49.23585 ], [ -1.65928, 49.25553 ], [ -1.660664, 49.25883 ], [ -1.66574, 49.26628 ], [ -1.667599, 49.268719 ], [ -1.675794, 49.28034 ], [ -1.661433, 49.280754 ], [ -1.664166, 49.28586 ], [ -1.684741, 49.28883 ], [ -1.690647, 49.294579 ], [ -1.692944, 49.29773 ], [ -1.698584, 49.30569 ], [ -1.699953, 49.30847 ], [ -1.708234, 49.3245 ], [ -1.682834, 49.33077 ], [ -1.702657, 49.331933 ], [ -1.721197, 49.32644 ], [ -1.745723, 49.34801 ], [ -1.74914, 49.35054 ], [ -1.75249, 49.35309 ], [ -1.757904, 49.357522 ], [ -1.760222, 49.35993 ], [ -1.77999, 49.372093 ], [ -1.778986, 49.3739 ], [ -1.763286, 49.37219 ], [ -1.769985, 49.376631 ], [ -1.780348, 49.37773 ], [ -1.793443, 49.37172 ], [ -1.80894, 49.373907 ], [ -1.8105, 49.37731 ], [ -1.822957, 49.398995 ], [ -1.823033, 49.415408 ], [ -1.823064, 49.43561 ], [ -1.823429, 49.438625 ], [ -1.833949, 49.465192 ], [ -1.836419, 49.46824 ], [ -1.846017, 49.47479 ], [ -1.845318, 49.491265 ], [ -1.845644, 49.49443 ], [ -1.849683, 49.50675 ], [ -1.855867, 49.51117 ], [ -1.860493, 49.51213 ], [ -1.870951, 49.51333 ], [ -1.882401, 49.52045 ], [ -1.886622, 49.537329 ], [ -1.881127, 49.54284 ], [ -1.863029, 49.55044 ], [ -1.857916, 49.55139 ], [ -1.854536, 49.55634 ], [ -1.843455, 49.568999 ], [ -1.841157, 49.571639 ], [ -1.84158, 49.579788 ], [ -1.841839, 49.582821 ], [ -1.842243, 49.59722 ], [ -1.844195, 49.61363 ], [ -1.860529, 49.650265 ], [ -1.864844, 49.65233 ], [ -1.870463, 49.65602 ], [ -1.873562, 49.657683 ], [ -1.887468, 49.65968 ], [ -1.894341, 49.66397 ], [ -1.898261, 49.6658 ], [ -1.919443, 49.66653 ], [ -1.945515, 49.677526 ], [ -1.937622, 49.6866 ], [ -1.935886, 49.6899 ], [ -1.94671, 49.70539 ], [ -1.943888, 49.72244 ], [ -1.936063, 49.7261 ], [ -1.910356, 49.722616 ], [ -1.891362, 49.7106 ], [ -1.890333, 49.707236 ], [ -1.880731, 49.70597 ], [ -1.875839, 49.70678 ], [ -1.861135, 49.71492 ], [ -1.85203, 49.71598 ], [ -1.849802, 49.713126 ], [ -1.839749, 49.7112 ], [ -1.827099, 49.692775 ], [ -1.818792, 49.690035 ], [ -1.814473, 49.68882 ], [ -1.79494, 49.68753 ], [ -1.767209, 49.68015 ], [ -1.762675, 49.67868 ], [ -1.719858, 49.67966 ], [ -1.70879, 49.6729 ], [ -1.704438, 49.67082 ], [ -1.694778, 49.67029 ], [ -1.68604, 49.673324 ], [ -1.679176, 49.66895 ], [ -1.683579, 49.6675 ], [ -1.67968, 49.66172 ], [ -1.670779, 49.65778 ], [ -1.654778, 49.657027 ], [ -1.64938, 49.65683 ], [ -1.629516, 49.65994 ], [ -1.625563, 49.65856 ], [ -1.628991, 49.65246 ], [ -1.623596, 49.64675 ], [ -1.608396, 49.6459 ], [ -1.602854, 49.64579 ], [ -1.6031, 49.655773 ], [ -1.595719, 49.654477 ], [ -1.588753, 49.65271 ], [ -1.569005, 49.656682 ], [ -1.553883, 49.654082 ], [ -1.548801, 49.65461 ], [ -1.531088, 49.6553 ], [ -1.505924, 49.66254 ], [ -1.502227, 49.66464 ], [ -1.491636, 49.67004 ], [ -1.488012, 49.668251 ], [ -1.483499, 49.678003 ], [ -1.475625, 49.68249 ], [ -1.472808, 49.69549 ], [ -1.452667, 49.69187 ], [ -1.431857, 49.70051 ], [ -1.426995, 49.70189 ], [ -1.391547, 49.70613 ], [ -1.365451, 49.705859 ], [ -1.351406, 49.702736 ], [ -1.346798, 49.70141 ], [ -1.328948, 49.7005 ], [ -1.32481, 49.69882 ], [ -1.304892, 49.69458 ], [ -1.29985, 49.69352 ], [ -1.268552, 49.69465 ], [ -1.270748, 49.68157 ], [ -1.265525, 49.6758 ], [ -1.261931, 49.673275 ], [ -1.257301, 49.66946 ], [ -1.256473, 49.66683 ], [ -1.239988, 49.650754 ], [ -1.243241, 49.6482 ], [ -1.230154, 49.625495 ], [ -1.228886, 49.61164 ], [ -1.235476, 49.60793 ], [ -1.250156, 49.61212 ], [ -1.255504, 49.61231 ], [ -1.271874, 49.57059 ], [ -1.276676, 49.57374 ], [ -1.271306, 49.583376 ], [ -1.280386, 49.586359 ], [ -1.285581, 49.587067 ], [ -1.297331, 49.581251 ], [ -1.300378, 49.57863 ], [ -1.307363, 49.56325 ], [ -1.307799, 49.560036 ], [ -1.309562, 49.548408 ], [ -1.307773, 49.54572 ], [ -1.304859, 49.53752 ], [ -1.302622, 49.53509 ], [ -1.290846, 49.52127 ], [ -1.289678, 49.51821 ], [ -1.28099, 49.510674 ], [ -1.278419, 49.50802 ], [ -1.273592, 49.503492 ], [ -1.256987, 49.484896 ], [ -1.254042, 49.481867 ], [ -1.234004, 49.46535 ], [ -1.230736, 49.46256 ], [ -1.225604, 49.457914 ], [ -1.223118, 49.45555 ], [ -1.215123, 49.4493 ], [ -1.212361, 49.44728 ], [ -1.199823, 49.437767 ], [ -1.196795, 49.435334 ], [ -1.191718, 49.43146 ], [ -1.189345, 49.42944 ], [ -1.170925, 49.4121 ], [ -1.16207, 49.39182 ], [ -1.165032, 49.385128 ], [ -1.179204, 49.37525 ], [ -1.1768, 49.36839 ], [ -1.177537, 49.364902 ], [ -1.163876, 49.36657 ], [ -1.137164, 49.35728 ], [ -1.136049, 49.35404 ], [ -1.119623, 49.35557 ], [ -1.118898, 49.35236 ], [ -1.113308, 49.326691 ], [ -1.116762, 49.32407 ], [ -1.139452, 49.3096 ], [ -1.136826, 49.293 ], [ -1.131559, 49.284796 ], [ -1.127154, 49.28374 ], [ -1.12114, 49.27874 ], [ -1.128905, 49.27657 ], [ -1.133356, 49.2715 ], [ -1.112984, 49.26151 ], [ -1.104845, 49.252897 ], [ -1.095279, 49.25263 ], [ -1.095265, 49.24655 ], [ -1.092615, 49.24399 ], [ -1.087678, 49.24554 ], [ -1.074542, 49.23259 ], [ -1.062107, 49.22741 ], [ -1.058388, 49.2252 ], [ -1.053793, 49.22638 ], [ -1.047026, 49.221572 ], [ -1.036842, 49.221401 ], [ -1.024082, 49.20384 ], [ -1.023564, 49.20336 ], [ -1.008002, 49.20323 ], [ -0.988753, 49.19767 ], [ -0.987315, 49.19434 ], [ -0.97222, 49.19345 ], [ -0.959274, 49.198916 ], [ -0.937402, 49.21654 ], [ -0.932547, 49.21773 ], [ -0.931039, 49.226638 ], [ -0.925287, 49.2316 ], [ -0.920701, 49.230764 ], [ -0.924353, 49.22818 ], [ -0.920925, 49.221585 ], [ -0.901576, 49.20482 ], [ -0.887334, 49.201773 ], [ -0.910471, 49.19293 ], [ -0.912375, 49.183238 ], [ -0.92794, 49.165259 ], [ -0.937743, 49.16276 ], [ -0.947337, 49.16562 ], [ -0.956748, 49.164648 ], [ -0.958777, 49.16139 ], [ -0.936054, 49.158234 ], [ -0.931332, 49.15787 ], [ -0.937614, 49.15006 ], [ -0.907235, 49.13847 ], [ -0.903756, 49.136007 ], [ -0.905686, 49.132857 ], [ -0.900657, 49.132021 ], [ -0.895489, 49.132243 ], [ -0.89063, 49.13074 ], [ -0.888682, 49.125091 ], [ -0.904396, 49.115741 ], [ -0.914368, 49.1136 ], [ -0.922908, 49.10468 ], [ -0.924798, 49.101394 ], [ -0.893182, 49.117257 ], [ -0.88332, 49.11632 ], [ -0.878455, 49.1171 ], [ -0.877293, 49.108535 ], [ -0.877089, 49.10562 ], [ -0.877933, 49.10281 ], [ -0.878176, 49.09231 ], [ -0.880054, 49.08902 ], [ -0.870823, 49.077002 ], [ -0.870349, 49.073588 ], [ -0.869083, 49.07131 ], [ -0.869699, 49.06892 ], [ -0.870789, 49.064616 ], [ -0.875705, 49.05835 ], [ -0.876058, 49.05484 ], [ -0.880508, 49.05299 ], [ -0.891404, 49.045585 ], [ -0.885105, 49.04012 ], [ -0.870261, 49.03791 ], [ -0.862941, 49.033028 ], [ -0.862559, 49.02641 ], [ -0.867436, 49.02702 ], [ -0.885517, 49.0224 ], [ -0.8951, 49.011102 ], [ -0.901754, 49.012587 ], [ -0.905113, 49.0114 ], [ -0.908525, 49.00182 ], [ -0.909472, 48.998588 ], [ -0.915084, 48.98955 ], [ -0.941689, 48.96985 ], [ -0.944262, 48.96699 ], [ -0.954764, 48.965915 ], [ -0.986092, 48.952884 ], [ -0.990474, 48.950847 ], [ -0.994057, 48.95086 ], [ -0.997539, 48.950278 ], [ -1.001978, 48.95182 ], [ -1.010925, 48.95437 ], [ -1.020826, 48.95334 ], [ -1.027063, 48.962372 ], [ -1.031166, 48.960803 ], [ -1.044941, 48.96157 ], [ -1.052055, 48.95758 ], [ -1.056539, 48.95862 ], [ -1.058288, 48.95563 ], [ -1.055016, 48.94979 ], [ -1.071058, 48.94515 ], [ -1.064179, 48.941616 ], [ -1.065538, 48.931908 ], [ -1.07563, 48.92467 ], [ -1.075509, 48.92137 ], [ -1.071119, 48.92028 ], [ -1.066637, 48.919399 ], [ -1.052082, 48.923557 ], [ -1.02122, 48.926282 ], [ -1.013568, 48.92168 ], [ -1.021892, 48.90513 ], [ -1.049194, 48.89403 ], [ -1.050674, 48.890585 ], [ -1.05275, 48.88726 ], [ -1.057922, 48.87987 ], [ -1.059166, 48.87726 ], [ -1.064089, 48.87666 ], [ -1.069667, 48.871174 ], [ -1.0793, 48.8699 ], [ -1.09129, 48.87986 ], [ -1.09473, 48.87742 ], [ -1.101995, 48.866359 ], [ -1.120359, 48.85643 ], [ -1.121156, 48.84822 ], [ -1.126199, 48.849 ], [ -1.134947, 48.84645 ], [ -1.147021, 48.83563 ], [ -1.15708, 48.83637 ], [ -1.156907, 48.83489 ], [ -1.159278, 48.828538 ], [ -1.154292, 48.82314 ], [ -1.131205, 48.81992 ], [ -1.128609, 48.81711 ], [ -1.126652, 48.817358 ], [ -1.112704, 48.814984 ], [ -1.105514, 48.815457 ], [ -1.102298, 48.81427 ], [ -1.097289, 48.804671 ], [ -1.094949, 48.80162 ], [ -1.091833, 48.798734 ], [ -1.095982, 48.78666 ], [ -1.084108, 48.77931 ], [ -1.063501, 48.77507 ], [ -1.058734, 48.773351 ], [ -1.042029, 48.78283 ], [ -1.037394, 48.7828 ], [ -1.017017, 48.77285 ], [ -0.999312, 48.776852 ], [ -0.994239, 48.77715 ], [ -0.975072, 48.774519 ], [ -0.967055, 48.786087 ], [ -0.962351, 48.784613 ], [ -0.953693, 48.78832 ], [ -0.942241, 48.78178 ], [ -0.940336, 48.77857 ], [ -0.922326, 48.771356 ], [ -0.892271, 48.76549 ], [ -0.884687, 48.75712 ], [ -0.869777, 48.75643 ], [ -0.857529, 48.76153 ], [ -0.853875, 48.76388 ], [ -0.833212, 48.76516 ], [ -0.82521, 48.769537 ], [ -0.822003, 48.77224 ], [ -0.820382, 48.770574 ], [ -0.837619, 48.7549 ], [ -0.840936, 48.75223 ], [ -0.851775, 48.745576 ], [ -0.847051, 48.72971 ], [ -0.842413, 48.728463 ], [ -0.831817, 48.72967 ], [ -0.828977, 48.73252 ], [ -0.818932, 48.731414 ], [ -0.807277, 48.724475 ], [ -0.799661, 48.71203 ], [ -0.796916, 48.70907 ], [ -0.782499, 48.702761 ], [ -0.778546, 48.701346 ], [ -0.771771, 48.69738 ], [ -0.769037, 48.694939 ], [ -0.764464, 48.69339 ], [ -0.736816, 48.686229 ], [ -0.736267, 48.679501 ], [ -0.741063, 48.68077 ], [ -0.756696, 48.672754 ], [ -0.761733, 48.663212 ], [ -0.773294, 48.6567 ], [ -0.772818, 48.65331 ], [ -0.771271, 48.650141 ], [ -0.762478, 48.631634 ], [ -0.743561, 48.627566 ], [ -0.739977, 48.621708 ], [ -0.744902, 48.621446 ], [ -0.753004, 48.61964 ], [ -0.751665, 48.603429 ], [ -0.758265, 48.59475 ], [ -0.763014, 48.59339 ], [ -0.769516, 48.58829 ], [ -0.774519, 48.57541 ], [ -0.773342, 48.56849 ], [ -0.775712, 48.561837 ], [ -0.790567, 48.55207 ], [ -0.805633, 48.549751 ], [ -0.808914, 48.54787 ], [ -0.855947, 48.512185 ], [ -0.85602, 48.50874 ], [ -0.860363, 48.50146 ], [ -0.864503, 48.49989 ], [ -0.896033, 48.49487 ], [ -0.899357, 48.49748 ], [ -0.909357, 48.497279 ], [ -0.918084, 48.50072 ], [ -0.923879, 48.513139 ], [ -0.944042, 48.51464 ], [ -0.953884, 48.51679 ], [ -0.96223, 48.51277 ], [ -0.963867, 48.50269 ], [ -0.973776, 48.49483 ], [ -1.002975, 48.48907 ], [ -1.011839, 48.492995 ], [ -1.060748, 48.515392 ], [ -1.062997, 48.51309 ], [ -1.070165, 48.50849 ] ] ], [ [ [ -1.510898, 48.63503 ], [ -1.512867, 48.63564 ], [ -1.51236, 48.636697 ], [ -1.510871, 48.63693 ], [ -1.509807, 48.635785 ], [ -1.510898, 48.63503 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "52", "CODE_DEPT": "51", "NOM_DEPT": "MARNE", "CODE_CHF": "108", "NOM_CHF": "CHALONS-EN-CHAMPAGNE", "X_CHF_LIEU": "7999", "Y_CHF_LIEU": "68738", "X_CENTROID": "7907", "Y_CENTROID": "68728", "CODE_REG": "21", "NOM_REGION": "CHAMPAGNE-ARDENNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.670183, 48.53189 ], [ 4.650985, 48.537005 ], [ 4.649977, 48.53983 ], [ 4.635014, 48.54448 ], [ 4.636207, 48.5497 ], [ 4.641338, 48.55388 ], [ 4.636332, 48.5537 ], [ 4.592975, 48.55234 ], [ 4.586045, 48.548146 ], [ 4.581057, 48.54856 ], [ 4.575926, 48.5492 ], [ 4.558081, 48.542425 ], [ 4.543945, 48.52803 ], [ 4.538806, 48.527398 ], [ 4.528813, 48.5294 ], [ 4.520811, 48.544941 ], [ 4.516867, 48.54445 ], [ 4.511043, 48.54783 ], [ 4.507606, 48.54518 ], [ 4.495281, 48.53872 ], [ 4.490796, 48.54015 ], [ 4.463404, 48.54756 ], [ 4.458127, 48.54784 ], [ 4.427877, 48.553165 ], [ 4.42331, 48.55415 ], [ 4.418399, 48.555473 ], [ 4.392438, 48.567422 ], [ 4.349656, 48.59794 ], [ 4.344703, 48.59837 ], [ 4.330833, 48.601819 ], [ 4.318252, 48.613403 ], [ 4.314918, 48.61622 ], [ 4.330956, 48.62959 ], [ 4.329072, 48.63612 ], [ 4.326398, 48.638772 ], [ 4.324339, 48.641647 ], [ 4.323216, 48.64393 ], [ 4.318484, 48.64956 ], [ 4.327909, 48.65608 ], [ 4.324067, 48.66198 ], [ 4.333205, 48.673664 ], [ 4.323296, 48.68411 ], [ 4.327016, 48.696879 ], [ 4.325579, 48.7002 ], [ 4.311773, 48.710559 ], [ 4.297443, 48.71315 ], [ 4.262377, 48.707152 ], [ 4.248388, 48.71158 ], [ 4.243113, 48.716673 ], [ 4.234701, 48.70529 ], [ 4.233041, 48.70231 ], [ 4.177346, 48.70825 ], [ 4.162185, 48.706155 ], [ 4.157769, 48.70434 ], [ 4.153641, 48.70268 ], [ 4.131091, 48.68615 ], [ 4.126466, 48.687778 ], [ 4.088126, 48.698875 ], [ 4.083978, 48.700037 ], [ 4.079788, 48.701127 ], [ 4.065982, 48.6872 ], [ 4.067612, 48.67785 ], [ 4.062858, 48.67184 ], [ 4.044291, 48.660955 ], [ 4.039499, 48.66168 ], [ 4.030184, 48.65965 ], [ 4.001696, 48.66388 ], [ 3.998629, 48.66116 ], [ 3.984211, 48.65194 ], [ 3.977256, 48.63209 ], [ 3.980532, 48.629473 ], [ 3.974072, 48.62657 ], [ 3.966616, 48.62992 ], [ 3.964055, 48.62714 ], [ 3.94924, 48.603432 ], [ 3.91901, 48.60597 ], [ 3.911396, 48.60185 ], [ 3.908424, 48.60175 ], [ 3.897616, 48.575738 ], [ 3.883945, 48.57776 ], [ 3.883263, 48.57755 ], [ 3.878854, 48.57902 ], [ 3.855214, 48.579262 ], [ 3.855122, 48.572794 ], [ 3.863732, 48.569629 ], [ 3.858832, 48.55683 ], [ 3.86001, 48.543549 ], [ 3.866229, 48.543549 ], [ 3.86544, 48.540046 ], [ 3.852471, 48.52483 ], [ 3.834507, 48.51766 ], [ 3.829732, 48.51714 ], [ 3.825896, 48.515174 ], [ 3.821633, 48.517039 ], [ 3.796397, 48.5281 ], [ 3.786289, 48.52873 ], [ 3.782383, 48.52746 ], [ 3.774481, 48.5298 ], [ 3.76655, 48.527446 ], [ 3.759259, 48.53186 ], [ 3.731761, 48.53754 ], [ 3.726541, 48.537189 ], [ 3.706308, 48.534585 ], [ 3.701306, 48.534281 ], [ 3.6882, 48.53895 ], [ 3.664193, 48.53553 ], [ 3.66131, 48.53466 ], [ 3.658505, 48.53564 ], [ 3.643639, 48.53626 ], [ 3.63263, 48.54552 ], [ 3.631399, 48.57156 ], [ 3.629017, 48.57416 ], [ 3.623843, 48.57911 ], [ 3.615255, 48.57849 ], [ 3.61177, 48.5761 ], [ 3.607694, 48.57417 ], [ 3.604245, 48.572453 ], [ 3.602682, 48.57567 ], [ 3.59248, 48.587004 ], [ 3.582592, 48.58546 ], [ 3.581882, 48.588702 ], [ 3.579892, 48.604859 ], [ 3.575032, 48.60446 ], [ 3.565324, 48.60353 ], [ 3.563076, 48.612739 ], [ 3.555754, 48.62069 ], [ 3.540941, 48.63019 ], [ 3.521163, 48.6337 ], [ 3.522656, 48.63909 ], [ 3.533236, 48.64651 ], [ 3.528071, 48.645758 ], [ 3.512619, 48.643982 ], [ 3.492289, 48.64724 ], [ 3.476594, 48.637961 ], [ 3.451091, 48.63465 ], [ 3.458809, 48.65128 ], [ 3.442561, 48.66436 ], [ 3.446181, 48.666898 ], [ 3.442698, 48.67251 ], [ 3.456628, 48.68287 ], [ 3.470957, 48.68723 ], [ 3.472543, 48.69737 ], [ 3.47762, 48.69833 ], [ 3.464601, 48.707277 ], [ 3.467159, 48.72285 ], [ 3.466954, 48.72581 ], [ 3.46675, 48.72877 ], [ 3.467051, 48.732092 ], [ 3.467396, 48.73863 ], [ 3.442735, 48.73781 ], [ 3.43681, 48.74321 ], [ 3.437315, 48.749861 ], [ 3.436595, 48.75318 ], [ 3.432915, 48.75555 ], [ 3.40936, 48.75278 ], [ 3.399831, 48.755326 ], [ 3.397144, 48.76144 ], [ 3.409984, 48.78372 ], [ 3.414979, 48.78374 ], [ 3.428538, 48.78082 ], [ 3.442195, 48.78485 ], [ 3.442604, 48.78814 ], [ 3.440934, 48.80152 ], [ 3.421146, 48.80249 ], [ 3.407443, 48.80695 ], [ 3.416612, 48.81783 ], [ 3.420847, 48.816025 ], [ 3.434609, 48.812028 ], [ 3.449507, 48.812081 ], [ 3.470215, 48.820698 ], [ 3.474847, 48.81937 ], [ 3.477905, 48.81417 ], [ 3.480923, 48.81219 ], [ 3.483786, 48.81395 ], [ 3.487202, 48.81519 ], [ 3.485241, 48.825503 ], [ 3.491285, 48.83514 ], [ 3.486806, 48.848601 ], [ 3.485187, 48.85191 ], [ 3.486791, 48.857307 ], [ 3.484515, 48.86024 ], [ 3.481315, 48.86647 ], [ 3.485612, 48.866746 ], [ 3.489643, 48.8678 ], [ 3.494059, 48.8691 ], [ 3.502997, 48.87149 ], [ 3.502839, 48.874895 ], [ 3.508888, 48.89112 ], [ 3.520911, 48.90559 ], [ 3.523973, 48.907485 ], [ 3.528576, 48.91214 ], [ 3.547421, 48.91502 ], [ 3.566684, 48.913496 ], [ 3.57243, 48.918612 ], [ 3.574443, 48.939025 ], [ 3.588352, 48.94372 ], [ 3.593373, 48.944644 ], [ 3.601246, 48.946682 ], [ 3.594094, 48.95762 ], [ 3.591475, 48.960246 ], [ 3.602925, 48.96545 ], [ 3.616661, 48.96516 ], [ 3.621206, 48.96603 ], [ 3.625814, 48.98575 ], [ 3.637845, 49.000843 ], [ 3.639825, 49.003998 ], [ 3.660412, 49.0043 ], [ 3.665159, 49.00563 ], [ 3.668852, 49.00798 ], [ 3.677678, 49.01602 ], [ 3.66354, 49.037311 ], [ 3.65839, 49.037753 ], [ 3.64997, 49.04142 ], [ 3.615771, 49.03642 ], [ 3.614684, 49.033552 ], [ 3.586674, 49.03583 ], [ 3.585204, 49.03887 ], [ 3.587706, 49.05935 ], [ 3.590739, 49.06013 ], [ 3.600591, 49.06256 ], [ 3.604007, 49.06915 ], [ 3.607391, 49.071858 ], [ 3.632115, 49.072405 ], [ 3.638573, 49.077865 ], [ 3.639054, 49.08131 ], [ 3.63224, 49.08609 ], [ 3.62255, 49.10449 ], [ 3.620078, 49.107328 ], [ 3.613414, 49.115904 ], [ 3.601545, 49.117645 ], [ 3.600018, 49.12069 ], [ 3.610441, 49.127518 ], [ 3.612047, 49.137004 ], [ 3.619769, 49.14105 ], [ 3.619819, 49.147538 ], [ 3.621107, 49.14977 ], [ 3.624456, 49.151353 ], [ 3.654771, 49.148791 ], [ 3.679251, 49.15302 ], [ 3.683835, 49.15449 ], [ 3.695606, 49.151143 ], [ 3.697999, 49.14871 ], [ 3.703297, 49.143204 ], [ 3.712178, 49.146191 ], [ 3.717014, 49.14704 ], [ 3.734837, 49.15513 ], [ 3.739564, 49.15689 ], [ 3.744432, 49.15697 ], [ 3.748676, 49.15853 ], [ 3.751148, 49.1777 ], [ 3.740643, 49.17866 ], [ 3.725822, 49.17501 ], [ 3.70649, 49.18032 ], [ 3.69754, 49.19191 ], [ 3.703936, 49.19729 ], [ 3.704655, 49.20067 ], [ 3.700577, 49.20145 ], [ 3.697477, 49.206641 ], [ 3.681937, 49.198746 ], [ 3.67667, 49.20726 ], [ 3.662545, 49.20898 ], [ 3.654814, 49.212922 ], [ 3.654839, 49.219233 ], [ 3.651479, 49.22156 ], [ 3.666006, 49.22311 ], [ 3.677019, 49.237082 ], [ 3.67504, 49.24009 ], [ 3.670256, 49.24074 ], [ 3.655255, 49.26285 ], [ 3.660449, 49.26837 ], [ 3.665133, 49.26943 ], [ 3.66059, 49.270796 ], [ 3.651676, 49.27863 ], [ 3.658994, 49.28677 ], [ 3.655943, 49.29108 ], [ 3.64038, 49.29846 ], [ 3.63834, 49.30135 ], [ 3.642556, 49.303248 ], [ 3.64492, 49.313115 ], [ 3.647596, 49.31596 ], [ 3.666467, 49.32172 ], [ 3.669161, 49.32475 ], [ 3.683021, 49.32557 ], [ 3.687315, 49.32683 ], [ 3.69306, 49.32861 ], [ 3.707044, 49.333353 ], [ 3.71235, 49.33407 ], [ 3.731413, 49.33493 ], [ 3.736196, 49.33555 ], [ 3.742022, 49.33895 ], [ 3.741252, 49.344699 ], [ 3.741087, 49.34759 ], [ 3.746475, 49.34815 ], [ 3.757818, 49.347608 ], [ 3.773533, 49.354187 ], [ 3.777535, 49.35582 ], [ 3.779802, 49.352853 ], [ 3.789367, 49.354714 ], [ 3.793198, 49.35689 ], [ 3.803095, 49.358822 ], [ 3.818508, 49.357011 ], [ 3.823765, 49.35699 ], [ 3.828389, 49.351891 ], [ 3.83278, 49.35026 ], [ 3.85131, 49.34494 ], [ 3.857908, 49.353672 ], [ 3.848856, 49.36139 ], [ 3.847477, 49.364596 ], [ 3.853577, 49.366413 ], [ 3.856059, 49.36835 ], [ 3.859844, 49.381525 ], [ 3.87455, 49.383999 ], [ 3.891038, 49.39155 ], [ 3.895741, 49.39278 ], [ 3.910328, 49.395268 ], [ 3.92132, 49.405361 ], [ 3.92482, 49.40772 ], [ 3.933172, 49.40113 ], [ 3.93472, 49.39841 ], [ 3.961309, 49.37734 ], [ 3.981515, 49.379241 ], [ 3.986644, 49.37892 ], [ 4.008214, 49.367416 ], [ 4.011882, 49.361462 ], [ 4.012729, 49.358308 ], [ 4.02145, 49.36018 ], [ 4.035496, 49.359904 ], [ 4.037098, 49.384126 ], [ 4.044698, 49.4031 ], [ 4.047973, 49.40564 ], [ 4.074305, 49.40338 ], [ 4.07891, 49.401586 ], [ 4.085314, 49.401538 ], [ 4.106287, 49.401932 ], [ 4.110667, 49.40193 ], [ 4.115034, 49.401933 ], [ 4.13863, 49.40321 ], [ 4.14317, 49.404196 ], [ 4.162354, 49.40155 ], [ 4.167348, 49.40188 ], [ 4.191434, 49.40104 ], [ 4.188997, 49.3987 ], [ 4.198871, 49.38678 ], [ 4.201308, 49.383793 ], [ 4.20951, 49.386561 ], [ 4.213672, 49.38787 ], [ 4.235997, 49.38164 ], [ 4.240809, 49.38247 ], [ 4.242934, 49.38037 ], [ 4.247956, 49.3808 ], [ 4.258585, 49.36495 ], [ 4.27362, 49.35507 ], [ 4.294051, 49.35267 ], [ 4.291196, 49.350764 ], [ 4.290316, 49.346916 ], [ 4.305355, 49.329494 ], [ 4.307812, 49.32656 ], [ 4.308294, 49.326603 ], [ 4.333585, 49.32643 ], [ 4.348607, 49.317016 ], [ 4.353711, 49.316546 ], [ 4.359348, 49.31965 ], [ 4.36261, 49.32078 ], [ 4.371273, 49.32279 ], [ 4.375619, 49.3238 ], [ 4.390817, 49.2988 ], [ 4.396755, 49.29316 ], [ 4.406725, 49.291287 ], [ 4.408451, 49.28806 ], [ 4.408668, 49.286913 ], [ 4.444511, 49.27601 ], [ 4.446787, 49.272868 ], [ 4.45071, 49.274601 ], [ 4.454543, 49.27601 ], [ 4.479014, 49.27976 ], [ 4.48384, 49.28078 ], [ 4.492719, 49.28083 ], [ 4.515835, 49.2813 ], [ 4.53667, 49.28451 ], [ 4.552575, 49.293752 ], [ 4.557759, 49.29471 ], [ 4.577908, 49.295483 ], [ 4.599907, 49.28849 ], [ 4.596327, 49.286051 ], [ 4.591669, 49.280287 ], [ 4.597212, 49.27112 ], [ 4.606824, 49.26868 ], [ 4.611629, 49.25929 ], [ 4.611822, 49.2558 ], [ 4.618864, 49.24642 ], [ 4.619003, 49.23945 ], [ 4.636983, 49.23265 ], [ 4.670503, 49.24124 ], [ 4.685038, 49.256153 ], [ 4.690096, 49.257485 ], [ 4.703917, 49.254593 ], [ 4.703328, 49.25132 ], [ 4.713246, 49.25049 ], [ 4.718233, 49.25093 ], [ 4.72578, 49.253167 ], [ 4.729119, 49.251555 ], [ 4.74352, 49.2444 ], [ 4.744232, 49.24147 ], [ 4.76425, 49.24452 ], [ 4.789425, 49.241719 ], [ 4.806997, 49.2486 ], [ 4.812108, 49.249401 ], [ 4.820229, 49.24209 ], [ 4.82985, 49.243073 ], [ 4.827381, 49.2381 ], [ 4.827131, 49.235308 ], [ 4.866461, 49.22658 ], [ 4.867323, 49.2299 ], [ 4.861837, 49.23885 ], [ 4.882243, 49.25765 ], [ 4.876159, 49.26302 ], [ 4.889711, 49.258614 ], [ 4.908641, 49.26341 ], [ 4.913375, 49.26472 ], [ 4.924466, 49.261473 ], [ 4.933761, 49.261648 ], [ 4.923869, 49.250602 ], [ 4.95054, 49.240245 ], [ 4.950989, 49.236866 ], [ 4.970838, 49.23554 ], [ 4.975569, 49.222788 ], [ 4.977581, 49.219751 ], [ 4.988955, 49.213484 ], [ 4.991859, 49.210838 ], [ 4.990533, 49.207415 ], [ 4.978532, 49.20045 ], [ 4.953973, 49.19408 ], [ 4.942378, 49.18677 ], [ 4.941676, 49.183805 ], [ 4.952939, 49.17105 ], [ 4.954392, 49.168122 ], [ 4.964624, 49.15441 ], [ 4.965324, 49.15119 ], [ 4.974853, 49.132849 ], [ 4.978523, 49.12845 ], [ 4.98064, 49.126485 ], [ 4.984722, 49.122496 ], [ 4.987983, 49.119636 ], [ 4.996343, 49.106502 ], [ 4.997767, 49.09228 ], [ 4.996638, 49.088913 ], [ 5.003861, 49.06568 ], [ 5.005744, 49.05987 ], [ 5.000361, 49.050536 ], [ 4.968234, 49.024281 ], [ 4.965432, 49.02144 ], [ 4.966715, 49.021 ], [ 5.01001, 49.03469 ], [ 5.032916, 49.02574 ], [ 5.035267, 49.02256 ], [ 5.035641, 49.02057 ], [ 5.037505, 49.01057 ], [ 5.031576, 49.00129 ], [ 5.03062, 48.994998 ], [ 5.009278, 48.993135 ], [ 4.995417, 48.982465 ], [ 5.000441, 48.9834 ], [ 5.029939, 48.97864 ], [ 5.037757, 48.97412 ], [ 5.030943, 48.95432 ], [ 5.027718, 48.952194 ], [ 5.014132, 48.94559 ], [ 5.014887, 48.94251 ], [ 5.012848, 48.93675 ], [ 4.996952, 48.93704 ], [ 4.97332, 48.92887 ], [ 4.957261, 48.92803 ], [ 4.954079, 48.930911 ], [ 4.949578, 48.9303 ], [ 4.936209, 48.92214 ], [ 4.932159, 48.912682 ], [ 4.917043, 48.90321 ], [ 4.915801, 48.899847 ], [ 4.913592, 48.89768 ], [ 4.920098, 48.89466 ], [ 4.923063, 48.888495 ], [ 4.916497, 48.875413 ], [ 4.913098, 48.872733 ], [ 4.912256, 48.86946 ], [ 4.923236, 48.862891 ], [ 4.928577, 48.851029 ], [ 4.937384, 48.84811 ], [ 4.935493, 48.8405 ], [ 4.930968, 48.8394 ], [ 4.902918, 48.82774 ], [ 4.90027, 48.82463 ], [ 4.888761, 48.81721 ], [ 4.890378, 48.814107 ], [ 4.896351, 48.80903 ], [ 4.89003, 48.80036 ], [ 4.892929, 48.797694 ], [ 4.893365, 48.79696 ], [ 4.898034, 48.796138 ], [ 4.920462, 48.790984 ], [ 4.924802, 48.79238 ], [ 4.934376, 48.790589 ], [ 4.935478, 48.78432 ], [ 4.949258, 48.770537 ], [ 4.953825, 48.768195 ], [ 4.978949, 48.7517 ], [ 4.980624, 48.7485 ], [ 4.981359, 48.74564 ], [ 4.989575, 48.74204 ], [ 5.00922, 48.74139 ], [ 5.006168, 48.721442 ], [ 5.016002, 48.70952 ], [ 5.012702, 48.707153 ], [ 4.999273, 48.710392 ], [ 5.006402, 48.69885 ], [ 5.003295, 48.69617 ], [ 4.990665, 48.690724 ], [ 4.988428, 48.68443 ], [ 4.983953, 48.6861 ], [ 4.953906, 48.687122 ], [ 4.943394, 48.6807 ], [ 4.938677, 48.67477 ], [ 4.935845, 48.677555 ], [ 4.911002, 48.68885 ], [ 4.907662, 48.68634 ], [ 4.896822, 48.679325 ], [ 4.873943, 48.67252 ], [ 4.867776, 48.667206 ], [ 4.863555, 48.66805 ], [ 4.854931, 48.666947 ], [ 4.851014, 48.66757 ], [ 4.84669, 48.67208 ], [ 4.842237, 48.6733 ], [ 4.823314, 48.6741 ], [ 4.81997, 48.679902 ], [ 4.815489, 48.67958 ], [ 4.798326, 48.6775 ], [ 4.796902, 48.674395 ], [ 4.7914, 48.66964 ], [ 4.781666, 48.67021 ], [ 4.780413, 48.6673 ], [ 4.772425, 48.656462 ], [ 4.771876, 48.65188 ], [ 4.772621, 48.651816 ], [ 4.777424, 48.652906 ], [ 4.812533, 48.65467 ], [ 4.841402, 48.6492 ], [ 4.839057, 48.645834 ], [ 4.849539, 48.640867 ], [ 4.851305, 48.63819 ], [ 4.850022, 48.622271 ], [ 4.852769, 48.61589 ], [ 4.857671, 48.61523 ], [ 4.85438, 48.61272 ], [ 4.829662, 48.612481 ], [ 4.807034, 48.599655 ], [ 4.802295, 48.598323 ], [ 4.768136, 48.59344 ], [ 4.770422, 48.57642 ], [ 4.775919, 48.566985 ], [ 4.79375, 48.56707 ], [ 4.784793, 48.554867 ], [ 4.796077, 48.532517 ], [ 4.79918, 48.52979 ], [ 4.794317, 48.5294 ], [ 4.786045, 48.53115 ], [ 4.724836, 48.54141 ], [ 4.719578, 48.54141 ], [ 4.68471, 48.535371 ], [ 4.674932, 48.53763 ], [ 4.670183, 48.53189 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "53", "CODE_DEPT": "52", "NOM_DEPT": "HAUTE-MARNE", "CODE_CHF": "121", "NOM_CHF": "CHAUMONT", "X_CHF_LIEU": "8591", "Y_CHF_LIEU": "67811", "X_CENTROID": "8656", "Y_CENTROID": "67811", "CODE_REG": "21", "NOM_REGION": "CHAMPAGNE-ARDENNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.374079, 47.604542 ], [ 5.365786, 47.60279 ], [ 5.358712, 47.59427 ], [ 5.355723, 47.59169 ], [ 5.342324, 47.59669 ], [ 5.343756, 47.603543 ], [ 5.337818, 47.60903 ], [ 5.333294, 47.61063 ], [ 5.3233, 47.611993 ], [ 5.316021, 47.607221 ], [ 5.306357, 47.607277 ], [ 5.278142, 47.588255 ], [ 5.277901, 47.581361 ], [ 5.273261, 47.580551 ], [ 5.25623, 47.576551 ], [ 5.239656, 47.597653 ], [ 5.25601, 47.61922 ], [ 5.258601, 47.622222 ], [ 5.246326, 47.620136 ], [ 5.242875, 47.6182 ], [ 5.240285, 47.61678 ], [ 5.236942, 47.61678 ], [ 5.237409, 47.6203 ], [ 5.211365, 47.64166 ], [ 5.188388, 47.649609 ], [ 5.176227, 47.651385 ], [ 5.17341, 47.653536 ], [ 5.178341, 47.68095 ], [ 5.173442, 47.68082 ], [ 5.160201, 47.678155 ], [ 5.155673, 47.66839 ], [ 5.136233, 47.65195 ], [ 5.127205, 47.64846 ], [ 5.117441, 47.650566 ], [ 5.116859, 47.65202 ], [ 5.107398, 47.65133 ], [ 5.102371, 47.65734 ], [ 5.082662, 47.659447 ], [ 5.076587, 47.664976 ], [ 5.067123, 47.667368 ], [ 5.062024, 47.66718 ], [ 5.052569, 47.669839 ], [ 5.046804, 47.67557 ], [ 5.056238, 47.69481 ], [ 5.031234, 47.694135 ], [ 5.033099, 47.70772 ], [ 5.029154, 47.70993 ], [ 5.008993, 47.70096 ], [ 5.00401, 47.700376 ], [ 5.002099, 47.693539 ], [ 4.993925, 47.689285 ], [ 4.96857, 47.68733 ], [ 4.971371, 47.69023 ], [ 4.956706, 47.69974 ], [ 4.953759, 47.706313 ], [ 4.956914, 47.709051 ], [ 4.964212, 47.713422 ], [ 4.964464, 47.72281 ], [ 4.970801, 47.72782 ], [ 4.971535, 47.73108 ], [ 4.964441, 47.734828 ], [ 4.960496, 47.73281 ], [ 4.965074, 47.74222 ], [ 4.958989, 47.76187 ], [ 4.954454, 47.762716 ], [ 4.946347, 47.76596 ], [ 4.939114, 47.76205 ], [ 4.924775, 47.76062 ], [ 4.921427, 47.765883 ], [ 4.9168, 47.76682 ], [ 4.920816, 47.767837 ], [ 4.921897, 47.77594 ], [ 4.917958, 47.77709 ], [ 4.939148, 47.78389 ], [ 4.943089, 47.785719 ], [ 4.947261, 47.78693 ], [ 4.955366, 47.789719 ], [ 4.986103, 47.8036 ], [ 4.992111, 47.81344 ], [ 4.994125, 47.819748 ], [ 4.99022, 47.82112 ], [ 4.984921, 47.82527 ], [ 4.984281, 47.82461 ], [ 4.984619, 47.82756 ], [ 4.973256, 47.8312 ], [ 4.961536, 47.84076 ], [ 4.962141, 47.854264 ], [ 4.954094, 47.86677 ], [ 4.944541, 47.866387 ], [ 4.927456, 47.871548 ], [ 4.928136, 47.88697 ], [ 4.923381, 47.892401 ], [ 4.919542, 47.89431 ], [ 4.916131, 47.896976 ], [ 4.905961, 47.91647 ], [ 4.903607, 47.91955 ], [ 4.894663, 47.9226 ], [ 4.874586, 47.919522 ], [ 4.856783, 47.895634 ], [ 4.853034, 47.897539 ], [ 4.834024, 47.90679 ], [ 4.829474, 47.912285 ], [ 4.829963, 47.91559 ], [ 4.845857, 47.922903 ], [ 4.86521, 47.941564 ], [ 4.863158, 47.94457 ], [ 4.856121, 47.95328 ], [ 4.845033, 47.96043 ], [ 4.819692, 47.96247 ], [ 4.810959, 47.95987 ], [ 4.801642, 47.96254 ], [ 4.796724, 47.96257 ], [ 4.787781, 47.965254 ], [ 4.785712, 47.971461 ], [ 4.795259, 47.98344 ], [ 4.807631, 47.98884 ], [ 4.796214, 47.9954 ], [ 4.78942, 48.00787 ], [ 4.784607, 48.006727 ], [ 4.749531, 48.00431 ], [ 4.719943, 48.008896 ], [ 4.717126, 48.011368 ], [ 4.704239, 48.020241 ], [ 4.708903, 48.02178 ], [ 4.710489, 48.03515 ], [ 4.721823, 48.042371 ], [ 4.723155, 48.045763 ], [ 4.710106, 48.051129 ], [ 4.691158, 48.07195 ], [ 4.665953, 48.07672 ], [ 4.660742, 48.07715 ], [ 4.657543, 48.079243 ], [ 4.666381, 48.082637 ], [ 4.686338, 48.08422 ], [ 4.69088, 48.08595 ], [ 4.706273, 48.091733 ], [ 4.706929, 48.09499 ], [ 4.704076, 48.09777 ], [ 4.724477, 48.10697 ], [ 4.729771, 48.116376 ], [ 4.731874, 48.119451 ], [ 4.74089, 48.11566 ], [ 4.762028, 48.11511 ], [ 4.782071, 48.110791 ], [ 4.786885, 48.109269 ], [ 4.819903, 48.10332 ], [ 4.834386, 48.105164 ], [ 4.833349, 48.117511 ], [ 4.830916, 48.126433 ], [ 4.828601, 48.129079 ], [ 4.841084, 48.13464 ], [ 4.845262, 48.1407 ], [ 4.850094, 48.14158 ], [ 4.838385, 48.15215 ], [ 4.836583, 48.162213 ], [ 4.838845, 48.16886 ], [ 4.84882, 48.17667 ], [ 4.847077, 48.17992 ], [ 4.853853, 48.18932 ], [ 4.85609, 48.192464 ], [ 4.856297, 48.192587 ], [ 4.862336, 48.19818 ], [ 4.862435, 48.20861 ], [ 4.836553, 48.218619 ], [ 4.835568, 48.222045 ], [ 4.839374, 48.2242 ], [ 4.851517, 48.22941 ], [ 4.843279, 48.24076 ], [ 4.845763, 48.24706 ], [ 4.84458, 48.24907 ], [ 4.846501, 48.25581 ], [ 4.859395, 48.266025 ], [ 4.842941, 48.283517 ], [ 4.850845, 48.296255 ], [ 4.830865, 48.30309 ], [ 4.826276, 48.302243 ], [ 4.825283, 48.3121 ], [ 4.817381, 48.320442 ], [ 4.814218, 48.32301 ], [ 4.837279, 48.337297 ], [ 4.841471, 48.33946 ], [ 4.834492, 48.344477 ], [ 4.818946, 48.34505 ], [ 4.79289, 48.356093 ], [ 4.788073, 48.35542 ], [ 4.774639, 48.35745 ], [ 4.75458, 48.36655 ], [ 4.760188, 48.38761 ], [ 4.74663, 48.392303 ], [ 4.721621, 48.394397 ], [ 4.707664, 48.391098 ], [ 4.703582, 48.393137 ], [ 4.701249, 48.39537 ], [ 4.708356, 48.401185 ], [ 4.694223, 48.41467 ], [ 4.685262, 48.41681 ], [ 4.680322, 48.417054 ], [ 4.688066, 48.425403 ], [ 4.67796, 48.432421 ], [ 4.676942, 48.43567 ], [ 4.675907, 48.44138 ], [ 4.673885, 48.444132 ], [ 4.635782, 48.456612 ], [ 4.630106, 48.465518 ], [ 4.62683, 48.468082 ], [ 4.63622, 48.467215 ], [ 4.648724, 48.47071 ], [ 4.653469, 48.470557 ], [ 4.651486, 48.47721 ], [ 4.659165, 48.49323 ], [ 4.657667, 48.50323 ], [ 4.666284, 48.510635 ], [ 4.669606, 48.510796 ], [ 4.676345, 48.51953 ], [ 4.672146, 48.528872 ], [ 4.670183, 48.53189 ], [ 4.674932, 48.53763 ], [ 4.68471, 48.535371 ], [ 4.719578, 48.54141 ], [ 4.724836, 48.54141 ], [ 4.786045, 48.53115 ], [ 4.794317, 48.5294 ], [ 4.79918, 48.52979 ], [ 4.796077, 48.532517 ], [ 4.784793, 48.554867 ], [ 4.79375, 48.56707 ], [ 4.775919, 48.566985 ], [ 4.770422, 48.57642 ], [ 4.768136, 48.59344 ], [ 4.802295, 48.598323 ], [ 4.807034, 48.599655 ], [ 4.829662, 48.612481 ], [ 4.85438, 48.61272 ], [ 4.857671, 48.61523 ], [ 4.852769, 48.61589 ], [ 4.850022, 48.622271 ], [ 4.851305, 48.63819 ], [ 4.849539, 48.640867 ], [ 4.839057, 48.645834 ], [ 4.841402, 48.6492 ], [ 4.812533, 48.65467 ], [ 4.777424, 48.652906 ], [ 4.772621, 48.651816 ], [ 4.771876, 48.65188 ], [ 4.772425, 48.656462 ], [ 4.780413, 48.6673 ], [ 4.781666, 48.67021 ], [ 4.7914, 48.66964 ], [ 4.796902, 48.674395 ], [ 4.798326, 48.6775 ], [ 4.815489, 48.67958 ], [ 4.81997, 48.679902 ], [ 4.823314, 48.6741 ], [ 4.842237, 48.6733 ], [ 4.84669, 48.67208 ], [ 4.851014, 48.66757 ], [ 4.854931, 48.666947 ], [ 4.863555, 48.66805 ], [ 4.867776, 48.667206 ], [ 4.873943, 48.67252 ], [ 4.896822, 48.679325 ], [ 4.907662, 48.68634 ], [ 4.911002, 48.68885 ], [ 4.935845, 48.677555 ], [ 4.938677, 48.67477 ], [ 4.943394, 48.6807 ], [ 4.953906, 48.687122 ], [ 4.983953, 48.6861 ], [ 4.988428, 48.68443 ], [ 5.003256, 48.68204 ], [ 5.007434, 48.680069 ], [ 5.008261, 48.67048 ], [ 5.011053, 48.66783 ], [ 4.996128, 48.66047 ], [ 4.992812, 48.658271 ], [ 4.993755, 48.65522 ], [ 4.994686, 48.64616 ], [ 5.004196, 48.6346 ], [ 4.996262, 48.61879 ], [ 5.006401, 48.61139 ], [ 5.033402, 48.61376 ], [ 5.051809, 48.632966 ], [ 5.056671, 48.63233 ], [ 5.05939, 48.61519 ], [ 5.068597, 48.59919 ], [ 5.070286, 48.595925 ], [ 5.094681, 48.59297 ], [ 5.114686, 48.59458 ], [ 5.119453, 48.595716 ], [ 5.117875, 48.58689 ], [ 5.123434, 48.58214 ], [ 5.127067, 48.5801 ], [ 5.131277, 48.572586 ], [ 5.134455, 48.57069 ], [ 5.140569, 48.565697 ], [ 5.143528, 48.563133 ], [ 5.152213, 48.56034 ], [ 5.160367, 48.564133 ], [ 5.165068, 48.565343 ], [ 5.172768, 48.557149 ], [ 5.192655, 48.548397 ], [ 5.197028, 48.546678 ], [ 5.194712, 48.540557 ], [ 5.207077, 48.53747 ], [ 5.211558, 48.53191 ], [ 5.212253, 48.52879 ], [ 5.217139, 48.52771 ], [ 5.221951, 48.52648 ], [ 5.229125, 48.530773 ], [ 5.272637, 48.514317 ], [ 5.287443, 48.513709 ], [ 5.289147, 48.51053 ], [ 5.292344, 48.50931 ], [ 5.295728, 48.508329 ], [ 5.302655, 48.513091 ], [ 5.30559, 48.51576 ], [ 5.317018, 48.50891 ], [ 5.327505, 48.509 ], [ 5.346954, 48.48505 ], [ 5.34947, 48.481989 ], [ 5.363594, 48.477271 ], [ 5.368678, 48.47625 ], [ 5.369382, 48.47655 ], [ 5.377321, 48.47191 ], [ 5.398074, 48.473187 ], [ 5.40115, 48.470299 ], [ 5.403623, 48.46785 ], [ 5.406055, 48.465393 ], [ 5.403949, 48.455175 ], [ 5.409502, 48.44554 ], [ 5.429225, 48.43441 ], [ 5.439576, 48.4342 ], [ 5.444199, 48.42803 ], [ 5.44593, 48.42484 ], [ 5.455491, 48.42252 ], [ 5.464657, 48.42535 ], [ 5.468366, 48.423682 ], [ 5.470062, 48.42093 ], [ 5.465177, 48.419995 ], [ 5.447148, 48.41499 ], [ 5.409779, 48.39262 ], [ 5.397763, 48.39259 ], [ 5.393838, 48.39157 ], [ 5.408839, 48.38303 ], [ 5.438413, 48.380864 ], [ 5.442884, 48.37939 ], [ 5.421257, 48.36335 ], [ 5.418555, 48.36069 ], [ 5.42237, 48.35175 ], [ 5.417157, 48.342622 ], [ 5.424574, 48.334216 ], [ 5.426048, 48.33106 ], [ 5.443838, 48.33683 ], [ 5.459888, 48.34948 ], [ 5.472422, 48.351535 ], [ 5.474496, 48.35457 ], [ 5.499385, 48.35455 ], [ 5.507063, 48.350159 ], [ 5.522169, 48.34862 ], [ 5.526527, 48.346856 ], [ 5.523022, 48.34051 ], [ 5.531164, 48.32816 ], [ 5.533514, 48.3251 ], [ 5.588128, 48.27732 ], [ 5.588425, 48.27376 ], [ 5.608996, 48.288858 ], [ 5.611652, 48.29181 ], [ 5.649556, 48.27029 ], [ 5.653809, 48.268524 ], [ 5.651579, 48.25797 ], [ 5.64946, 48.2547 ], [ 5.642055, 48.245749 ], [ 5.640901, 48.24235 ], [ 5.672188, 48.231009 ], [ 5.676344, 48.229016 ], [ 5.683443, 48.23294 ], [ 5.687792, 48.23418 ], [ 5.706542, 48.22194 ], [ 5.710844, 48.21994 ], [ 5.722288, 48.20595 ], [ 5.72451, 48.203075 ], [ 5.726909, 48.200508 ], [ 5.730055, 48.19832 ], [ 5.730983, 48.1897 ], [ 5.69977, 48.18967 ], [ 5.680173, 48.178674 ], [ 5.682299, 48.17548 ], [ 5.686525, 48.164079 ], [ 5.684222, 48.158234 ], [ 5.685843, 48.150941 ], [ 5.675079, 48.139247 ], [ 5.676706, 48.136311 ], [ 5.666767, 48.130206 ], [ 5.662513, 48.12879 ], [ 5.661573, 48.12561 ], [ 5.656558, 48.12055 ], [ 5.669706, 48.11224 ], [ 5.672119, 48.10944 ], [ 5.658664, 48.106017 ], [ 5.649393, 48.10505 ], [ 5.645839, 48.10252 ], [ 5.639085, 48.09728 ], [ 5.632878, 48.08437 ], [ 5.655767, 48.071364 ], [ 5.655564, 48.081237 ], [ 5.659139, 48.083668 ], [ 5.692078, 48.07555 ], [ 5.696278, 48.077566 ], [ 5.70029, 48.06744 ], [ 5.713371, 48.061623 ], [ 5.721281, 48.052725 ], [ 5.720627, 48.05202 ], [ 5.721596, 48.04526 ], [ 5.740804, 48.049012 ], [ 5.764225, 48.03154 ], [ 5.768818, 48.030033 ], [ 5.77682, 48.03364 ], [ 5.776273, 48.02525 ], [ 5.776419, 48.022407 ], [ 5.787321, 48.007417 ], [ 5.786418, 48.00402 ], [ 5.794917, 47.993694 ], [ 5.793592, 47.99071 ], [ 5.782448, 47.980041 ], [ 5.778492, 47.97801 ], [ 5.788412, 47.952696 ], [ 5.802464, 47.949714 ], [ 5.805268, 47.946973 ], [ 5.815285, 47.95692 ], [ 5.829489, 47.958036 ], [ 5.839732, 47.9648 ], [ 5.839894, 47.968087 ], [ 5.845841, 47.975696 ], [ 5.848679, 47.96961 ], [ 5.853561, 47.96988 ], [ 5.854239, 47.966037 ], [ 5.849925, 47.964359 ], [ 5.856384, 47.948371 ], [ 5.86448, 47.94588 ], [ 5.884687, 47.929263 ], [ 5.884726, 47.92605 ], [ 5.888909, 47.91304 ], [ 5.890458, 47.909759 ], [ 5.889189, 47.90737 ], [ 5.886494, 47.90263 ], [ 5.883191, 47.90026 ], [ 5.851353, 47.9059 ], [ 5.848194, 47.903435 ], [ 5.845094, 47.89709 ], [ 5.842544, 47.89423 ], [ 5.82186, 47.86911 ], [ 5.824676, 47.8594 ], [ 5.827301, 47.85467 ], [ 5.828521, 47.85195 ], [ 5.823562, 47.85229 ], [ 5.805625, 47.84732 ], [ 5.801098, 47.84698 ], [ 5.796619, 47.84982 ], [ 5.798883, 47.85571 ], [ 5.789061, 47.8552 ], [ 5.761192, 47.859343 ], [ 5.758832, 47.85667 ], [ 5.753406, 47.85165 ], [ 5.744204, 47.848855 ], [ 5.748488, 47.82977 ], [ 5.746056, 47.823596 ], [ 5.743349, 47.82115 ], [ 5.731428, 47.81763 ], [ 5.728007, 47.81845 ], [ 5.718716, 47.821082 ], [ 5.713646, 47.82157 ], [ 5.708478, 47.82197 ], [ 5.693678, 47.82175 ], [ 5.685751, 47.81278 ], [ 5.676612, 47.77916 ], [ 5.680107, 47.77774 ], [ 5.682247, 47.77539 ], [ 5.67997, 47.769968 ], [ 5.703353, 47.769574 ], [ 5.708914, 47.764664 ], [ 5.707806, 47.76152 ], [ 5.706342, 47.751116 ], [ 5.70942, 47.74495 ], [ 5.692378, 47.73693 ], [ 5.689648, 47.7339 ], [ 5.692494, 47.727885 ], [ 5.695895, 47.72518 ], [ 5.692512, 47.724 ], [ 5.685198, 47.722694 ], [ 5.687023, 47.72023 ], [ 5.684206, 47.71228 ], [ 5.69322, 47.70396 ], [ 5.694993, 47.69364 ], [ 5.693806, 47.69022 ], [ 5.692038, 47.687162 ], [ 5.675428, 47.682563 ], [ 5.667652, 47.685479 ], [ 5.663716, 47.684911 ], [ 5.659723, 47.68453 ], [ 5.659334, 47.681543 ], [ 5.653261, 47.677161 ], [ 5.648861, 47.675549 ], [ 5.629558, 47.67674 ], [ 5.61539, 47.67334 ], [ 5.606094, 47.675205 ], [ 5.60234, 47.67506 ], [ 5.596814, 47.671647 ], [ 5.585265, 47.69057 ], [ 5.583657, 47.70088 ], [ 5.575159, 47.70473 ], [ 5.571029, 47.706798 ], [ 5.567389, 47.70712 ], [ 5.565433, 47.7039 ], [ 5.530594, 47.67401 ], [ 5.510298, 47.67423 ], [ 5.506626, 47.67666 ], [ 5.502301, 47.67741 ], [ 5.48277, 47.684644 ], [ 5.478994, 47.6823 ], [ 5.46934, 47.67483 ], [ 5.444413, 47.67089 ], [ 5.434217, 47.67126 ], [ 5.421267, 47.67644 ], [ 5.406486, 47.67362 ], [ 5.398975, 47.653075 ], [ 5.401686, 47.64844 ], [ 5.405616, 47.64813 ], [ 5.4032, 47.64509 ], [ 5.387812, 47.636212 ], [ 5.37492, 47.621355 ], [ 5.374079, 47.604542 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "54", "CODE_DEPT": "53", "NOM_DEPT": "MAYENNE", "CODE_CHF": "130", "NOM_CHF": "LAVAL", "X_CHF_LIEU": "4193", "Y_CHF_LIEU": "67814", "X_CENTROID": "4280", "Y_CENTROID": "67892", "CODE_REG": "52", "NOM_REGION": "PAYS-DE-LA-LOIRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.381704, 47.76057 ], [ -0.38398, 47.76716 ], [ -0.409624, 47.77803 ], [ -0.414219, 47.775078 ], [ -0.410032, 47.76522 ], [ -0.414949, 47.76522 ], [ -0.429175, 47.76722 ], [ -0.453929, 47.75724 ], [ -0.45681, 47.760044 ], [ -0.480245, 47.777 ], [ -0.507134, 47.78507 ], [ -0.511455, 47.78553 ], [ -0.519889, 47.78652 ], [ -0.5221, 47.78398 ], [ -0.521709, 47.78069 ], [ -0.51835, 47.767697 ], [ -0.532922, 47.75069 ], [ -0.537758, 47.75149 ], [ -0.560372, 47.757435 ], [ -0.564982, 47.756835 ], [ -0.573109, 47.753704 ], [ -0.584648, 47.7584 ], [ -0.587755, 47.75593 ], [ -0.610818, 47.735689 ], [ -0.616059, 47.73597 ], [ -0.646242, 47.736906 ], [ -0.649406, 47.734554 ], [ -0.653787, 47.73338 ], [ -0.669841, 47.740754 ], [ -0.689884, 47.73969 ], [ -0.709257, 47.74377 ], [ -0.718459, 47.740885 ], [ -0.731594, 47.741891 ], [ -0.735166, 47.739497 ], [ -0.749702, 47.74161 ], [ -0.759625, 47.752932 ], [ -0.764392, 47.754013 ], [ -0.783388, 47.750193 ], [ -0.786308, 47.75292 ], [ -0.792946, 47.761507 ], [ -0.811744, 47.765357 ], [ -0.816068, 47.77123 ], [ -0.8354, 47.76962 ], [ -0.839295, 47.752282 ], [ -0.843281, 47.75364 ], [ -0.859867, 47.7581 ], [ -0.864606, 47.759136 ], [ -0.89317, 47.764506 ], [ -0.893041, 47.76786 ], [ -0.894399, 47.77125 ], [ -0.931935, 47.79351 ], [ -0.931138, 47.790325 ], [ -0.936498, 47.786855 ], [ -0.950554, 47.79553 ], [ -0.959761, 47.79633 ], [ -0.961986, 47.79352 ], [ -0.972097, 47.78315 ], [ -0.958546, 47.77912 ], [ -0.952266, 47.76999 ], [ -0.978457, 47.762 ], [ -0.982688, 47.76193 ], [ -0.986653, 47.762935 ], [ -0.990877, 47.76401 ], [ -0.999831, 47.76435 ], [ -1.006341, 47.76808 ], [ -1.015442, 47.76929 ], [ -1.020898, 47.77479 ], [ -1.033695, 47.77114 ], [ -1.043471, 47.77241 ], [ -1.047709, 47.773645 ], [ -1.075037, 47.77419 ], [ -1.075591, 47.77444 ], [ -1.080839, 47.7747 ], [ -1.09285, 47.7812 ], [ -1.13972, 47.78502 ], [ -1.139246, 47.7822 ], [ -1.137437, 47.77664 ], [ -1.140507, 47.77469 ], [ -1.165022, 47.778875 ], [ -1.177831, 47.784646 ], [ -1.193039, 47.786212 ], [ -1.199356, 47.795251 ], [ -1.209308, 47.796777 ], [ -1.215047, 47.80252 ], [ -1.238252, 47.80999 ], [ -1.227872, 47.82029 ], [ -1.223153, 47.819009 ], [ -1.220867, 47.821723 ], [ -1.216083, 47.836154 ], [ -1.214178, 47.84251 ], [ -1.222126, 47.850366 ], [ -1.217566, 47.85601 ], [ -1.213082, 47.857217 ], [ -1.206104, 47.858387 ], [ -1.203023, 47.85685 ], [ -1.191997, 47.86543 ], [ -1.189163, 47.86771 ], [ -1.197464, 47.87902 ], [ -1.197126, 47.885593 ], [ -1.192156, 47.89102 ], [ -1.179919, 47.89558 ], [ -1.176175, 47.897723 ], [ -1.175715, 47.91095 ], [ -1.168644, 47.915475 ], [ -1.163133, 47.928089 ], [ -1.167151, 47.93417 ], [ -1.162792, 47.937924 ], [ -1.159514, 47.939221 ], [ -1.161289, 47.95295 ], [ -1.152452, 47.966344 ], [ -1.148707, 47.968216 ], [ -1.129886, 47.97122 ], [ -1.1223, 47.98651 ], [ -1.107516, 47.988876 ], [ -1.098003, 47.987018 ], [ -1.092993, 47.98751 ], [ -1.083363, 47.9857 ], [ -1.078714, 47.984409 ], [ -1.072252, 47.982065 ], [ -1.06883, 47.982949 ], [ -1.050316, 47.984634 ], [ -1.035241, 47.99201 ], [ -1.030417, 47.992473 ], [ -1.021712, 47.9954 ], [ -1.017261, 48.00804 ], [ -1.021413, 48.01744 ], [ -1.033554, 48.03261 ], [ -1.028089, 48.03846 ], [ -1.033183, 48.051353 ], [ -1.029935, 48.057763 ], [ -1.028222, 48.06103 ], [ -1.021497, 48.0684 ], [ -1.025492, 48.069845 ], [ -1.040332, 48.078086 ], [ -1.04725, 48.086606 ], [ -1.049133, 48.089596 ], [ -1.052936, 48.10604 ], [ -1.057022, 48.12246 ], [ -1.059299, 48.12549 ], [ -1.060683, 48.148738 ], [ -1.068944, 48.159482 ], [ -1.073926, 48.1593 ], [ -1.072702, 48.16579 ], [ -1.079822, 48.17687 ], [ -1.078229, 48.17997 ], [ -1.074357, 48.200471 ], [ -1.07765, 48.20315 ], [ -1.081888, 48.205148 ], [ -1.08712, 48.21004 ], [ -1.08253, 48.21623 ], [ -1.0806, 48.2195 ], [ -1.098672, 48.25131 ], [ -1.099932, 48.26837 ], [ -1.093643, 48.27288 ], [ -1.08845, 48.29013 ], [ -1.065875, 48.30968 ], [ -1.06096, 48.31109 ], [ -1.059222, 48.31219 ], [ -1.04583, 48.329655 ], [ -1.053602, 48.33813 ], [ -1.05578, 48.34113 ], [ -1.059735, 48.36682 ], [ -1.064838, 48.36724 ], [ -1.057253, 48.37582 ], [ -1.05658, 48.379187 ], [ -1.052793, 48.38093 ], [ -1.064323, 48.399929 ], [ -1.079478, 48.4139 ], [ -1.079735, 48.41738 ], [ -1.078455, 48.4185 ], [ -1.078227, 48.42201 ], [ -1.081436, 48.438573 ], [ -1.068721, 48.448676 ], [ -1.065332, 48.45125 ], [ -1.06716, 48.460332 ], [ -1.064649, 48.466913 ], [ -1.073586, 48.474894 ], [ -1.077392, 48.491095 ], [ -1.07492, 48.501133 ], [ -1.06746, 48.50561 ], [ -1.070165, 48.50849 ], [ -1.062997, 48.51309 ], [ -1.060748, 48.515392 ], [ -1.011839, 48.492995 ], [ -1.002975, 48.48907 ], [ -0.973776, 48.49483 ], [ -0.963867, 48.50269 ], [ -0.96223, 48.51277 ], [ -0.953884, 48.51679 ], [ -0.944042, 48.51464 ], [ -0.923879, 48.513139 ], [ -0.918084, 48.50072 ], [ -0.909357, 48.497279 ], [ -0.899357, 48.49748 ], [ -0.896033, 48.49487 ], [ -0.864503, 48.49989 ], [ -0.860363, 48.50146 ], [ -0.845826, 48.49783 ], [ -0.826973, 48.477186 ], [ -0.821988, 48.47608 ], [ -0.81808, 48.47412 ], [ -0.818601, 48.468431 ], [ -0.815108, 48.45746 ], [ -0.812743, 48.45492 ], [ -0.793424, 48.465267 ], [ -0.777874, 48.46541 ], [ -0.773966, 48.44271 ], [ -0.760817, 48.436412 ], [ -0.756483, 48.436937 ], [ -0.715918, 48.4509 ], [ -0.735258, 48.462402 ], [ -0.730066, 48.47205 ], [ -0.725251, 48.47347 ], [ -0.716955, 48.47032 ], [ -0.703268, 48.472888 ], [ -0.702106, 48.46966 ], [ -0.692663, 48.46827 ], [ -0.687991, 48.46944 ], [ -0.68361, 48.47069 ], [ -0.68367, 48.47694 ], [ -0.669079, 48.483289 ], [ -0.66884, 48.486458 ], [ -0.658168, 48.474845 ], [ -0.653977, 48.45746 ], [ -0.653906, 48.453912 ], [ -0.654215, 48.44454 ], [ -0.613629, 48.46061 ], [ -0.598929, 48.47074 ], [ -0.594311, 48.47252 ], [ -0.593207, 48.47084 ], [ -0.575807, 48.470079 ], [ -0.571639, 48.46893 ], [ -0.567457, 48.474545 ], [ -0.564255, 48.47686 ], [ -0.562328, 48.473799 ], [ -0.553157, 48.47297 ], [ -0.53787, 48.488884 ], [ -0.534907, 48.49155 ], [ -0.518632, 48.497552 ], [ -0.512798, 48.50653 ], [ -0.509294, 48.50884 ], [ -0.492665, 48.50212 ], [ -0.48293, 48.50263 ], [ -0.478198, 48.50157 ], [ -0.466117, 48.51252 ], [ -0.455856, 48.51269 ], [ -0.450728, 48.51282 ], [ -0.446883, 48.51494 ], [ -0.428467, 48.51021 ], [ -0.424473, 48.50819 ], [ -0.425449, 48.50736 ], [ -0.400875, 48.50789 ], [ -0.397657, 48.51051 ], [ -0.393346, 48.50107 ], [ -0.389253, 48.49937 ], [ -0.375751, 48.4961 ], [ -0.371083, 48.495556 ], [ -0.365814, 48.48755 ], [ -0.353152, 48.483774 ], [ -0.353789, 48.496496 ], [ -0.336825, 48.50242 ], [ -0.334973, 48.50908 ], [ -0.320239, 48.522929 ], [ -0.312305, 48.52027 ], [ -0.308956, 48.51833 ], [ -0.290094, 48.516871 ], [ -0.285881, 48.515169 ], [ -0.285283, 48.50865 ], [ -0.27155, 48.50745 ], [ -0.26839, 48.52067 ], [ -0.250837, 48.528081 ], [ -0.243057, 48.537062 ], [ -0.260578, 48.54913 ], [ -0.257472, 48.551956 ], [ -0.249293, 48.556078 ], [ -0.246473, 48.56572 ], [ -0.242639, 48.568 ], [ -0.230695, 48.56195 ], [ -0.215792, 48.55979 ], [ -0.207346, 48.56252 ], [ -0.199584, 48.558236 ], [ -0.195862, 48.55591 ], [ -0.191725, 48.55168 ], [ -0.189492, 48.548622 ], [ -0.179251, 48.541649 ], [ -0.144604, 48.52775 ], [ -0.145388, 48.52116 ], [ -0.166668, 48.514706 ], [ -0.172087, 48.502137 ], [ -0.167477, 48.50297 ], [ -0.155678, 48.49331 ], [ -0.155447, 48.490138 ], [ -0.155064, 48.48716 ], [ -0.15017, 48.478953 ], [ -0.153516, 48.47695 ], [ -0.148132, 48.47161 ], [ -0.148946, 48.45879 ], [ -0.142193, 48.4543 ], [ -0.137842, 48.45282 ], [ -0.118485, 48.448233 ], [ -0.108255, 48.448024 ], [ -0.08034, 48.44971 ], [ -0.067327, 48.45723 ], [ -0.062548, 48.456514 ], [ -0.053345, 48.45351 ], [ -0.049827, 48.44723 ], [ -0.054087, 48.43391 ], [ -0.055219, 48.43059 ], [ -0.05758, 48.429084 ], [ -0.053658, 48.3935 ], [ -0.053479, 48.390188 ], [ -0.057247, 48.384779 ], [ -0.054531, 48.382003 ], [ -0.060081, 48.377503 ], [ -0.069332, 48.377848 ], [ -0.078791, 48.3702 ], [ -0.092307, 48.37461 ], [ -0.112164, 48.374246 ], [ -0.117513, 48.368262 ], [ -0.136317, 48.362723 ], [ -0.132777, 48.34571 ], [ -0.12222, 48.33831 ], [ -0.126558, 48.33926 ], [ -0.148068, 48.344142 ], [ -0.152716, 48.343046 ], [ -0.157998, 48.334522 ], [ -0.155774, 48.31747 ], [ -0.154882, 48.31408 ], [ -0.151639, 48.314018 ], [ -0.148392, 48.313897 ], [ -0.142301, 48.30842 ], [ -0.138609, 48.29495 ], [ -0.149338, 48.28368 ], [ -0.15104, 48.2774 ], [ -0.149973, 48.276253 ], [ -0.15234, 48.2732 ], [ -0.16458, 48.25916 ], [ -0.160959, 48.238806 ], [ -0.157622, 48.23619 ], [ -0.145406, 48.2219 ], [ -0.148927, 48.219703 ], [ -0.152524, 48.21383 ], [ -0.146837, 48.20501 ], [ -0.151311, 48.203674 ], [ -0.164727, 48.199614 ], [ -0.178705, 48.190386 ], [ -0.181799, 48.18832 ], [ -0.185908, 48.183438 ], [ -0.189927, 48.18131 ], [ -0.222508, 48.171953 ], [ -0.246636, 48.16015 ], [ -0.250213, 48.157918 ], [ -0.248305, 48.15491 ], [ -0.238886, 48.1488 ], [ -0.253808, 48.136529 ], [ -0.249608, 48.134961 ], [ -0.243429, 48.1327 ], [ -0.241139, 48.126954 ], [ -0.222963, 48.12272 ], [ -0.223729, 48.119848 ], [ -0.216316, 48.1132 ], [ -0.216521, 48.109706 ], [ -0.234647, 48.09782 ], [ -0.236383, 48.08753 ], [ -0.232358, 48.081714 ], [ -0.22338, 48.07841 ], [ -0.225994, 48.07168 ], [ -0.226776, 48.068421 ], [ -0.230942, 48.05898 ], [ -0.235426, 48.06046 ], [ -0.274233, 48.06446 ], [ -0.286069, 48.0584 ], [ -0.282795, 48.05629 ], [ -0.316466, 48.04586 ], [ -0.330357, 48.05038 ], [ -0.334153, 48.04859 ], [ -0.340504, 48.044065 ], [ -0.334475, 48.032374 ], [ -0.338154, 48.012139 ], [ -0.308993, 48.005604 ], [ -0.308526, 48.00565 ], [ -0.312453, 48.00107 ], [ -0.312033, 47.99435 ], [ -0.299537, 47.97663 ], [ -0.300459, 47.96666 ], [ -0.293238, 47.96204 ], [ -0.288351, 47.9613 ], [ -0.284638, 47.95917 ], [ -0.280183, 47.957819 ], [ -0.294033, 47.94549 ], [ -0.311674, 47.940308 ], [ -0.31392, 47.93828 ], [ -0.319993, 47.9353 ], [ -0.325124, 47.9361 ], [ -0.338703, 47.9325 ], [ -0.38484, 47.93084 ], [ -0.388983, 47.929185 ], [ -0.397652, 47.91827 ], [ -0.412853, 47.915837 ], [ -0.409521, 47.913196 ], [ -0.404047, 47.90035 ], [ -0.41104, 47.89536 ], [ -0.406808, 47.893691 ], [ -0.392576, 47.89233 ], [ -0.391195, 47.88916 ], [ -0.386293, 47.88852 ], [ -0.376839, 47.88727 ], [ -0.37087, 47.87511 ], [ -0.37161, 47.87179 ], [ -0.377995, 47.86672 ], [ -0.374966, 47.85761 ], [ -0.41203, 47.85763 ], [ -0.413312, 47.854866 ], [ -0.41099, 47.846637 ], [ -0.425496, 47.84934 ], [ -0.432478, 47.84078 ], [ -0.447914, 47.832035 ], [ -0.444321, 47.82986 ], [ -0.43408, 47.80905 ], [ -0.430168, 47.80707 ], [ -0.416994, 47.802672 ], [ -0.388201, 47.805319 ], [ -0.387144, 47.804268 ], [ -0.385203, 47.801288 ], [ -0.38008, 47.782338 ], [ -0.378805, 47.779096 ], [ -0.375843, 47.7659 ], [ -0.381704, 47.76057 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "55", "CODE_DEPT": "54", "NOM_DEPT": "MEURTHE-ET-MOSELLE", "CODE_CHF": "395", "NOM_CHF": "NANCY", "X_CHF_LIEU": "9342", "Y_CHF_LIEU": "68483", "X_CENTROID": "9324", "Y_CENTROID": "68587", "CODE_REG": "41", "NOM_REGION": "LORRAINE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.123165, 48.51359 ], [ 7.088409, 48.51003 ], [ 7.083761, 48.50849 ], [ 7.078427, 48.50736 ], [ 7.058079, 48.49912 ], [ 7.05366, 48.497718 ], [ 7.050706, 48.49544 ], [ 7.028723, 48.49209 ], [ 7.007433, 48.4818 ], [ 6.986537, 48.48015 ], [ 6.981908, 48.47843 ], [ 6.977808, 48.476702 ], [ 6.965827, 48.47144 ], [ 6.93055, 48.442644 ], [ 6.921954, 48.43939 ], [ 6.918228, 48.43553 ], [ 6.914972, 48.4329 ], [ 6.892421, 48.41919 ], [ 6.88266, 48.41712 ], [ 6.869862, 48.42248 ], [ 6.864557, 48.43553 ], [ 6.855054, 48.433116 ], [ 6.8532, 48.42999 ], [ 6.849189, 48.42383 ], [ 6.827695, 48.4156 ], [ 6.826331, 48.41248 ], [ 6.815027, 48.39507 ], [ 6.797637, 48.402021 ], [ 6.785782, 48.39613 ], [ 6.785524, 48.401932 ], [ 6.780436, 48.402283 ], [ 6.775474, 48.40138 ], [ 6.765889, 48.40164 ], [ 6.760057, 48.41105 ], [ 6.739562, 48.41201 ], [ 6.738843, 48.415402 ], [ 6.734617, 48.417048 ], [ 6.724907, 48.41616 ], [ 6.712979, 48.4214 ], [ 6.698644, 48.41286 ], [ 6.694155, 48.41443 ], [ 6.685584, 48.418006 ], [ 6.682938, 48.424456 ], [ 6.679525, 48.42171 ], [ 6.676469, 48.423468 ], [ 6.66941, 48.426055 ], [ 6.659226, 48.42613 ], [ 6.644798, 48.428616 ], [ 6.647149, 48.43168 ], [ 6.644486, 48.441666 ], [ 6.636392, 48.450272 ], [ 6.638711, 48.46048 ], [ 6.635397, 48.470502 ], [ 6.63083, 48.472029 ], [ 6.620728, 48.47244 ], [ 6.607558, 48.46723 ], [ 6.597506, 48.46697 ], [ 6.596062, 48.46468 ], [ 6.594471, 48.46241 ], [ 6.584766, 48.45988 ], [ 6.568563, 48.438238 ], [ 6.583871, 48.417225 ], [ 6.578736, 48.415534 ], [ 6.544568, 48.42762 ], [ 6.540543, 48.42794 ], [ 6.534394, 48.43146 ], [ 6.530202, 48.4295 ], [ 6.518029, 48.423511 ], [ 6.513622, 48.421553 ], [ 6.501792, 48.41456 ], [ 6.496649, 48.41494 ], [ 6.486985, 48.41628 ], [ 6.482636, 48.414966 ], [ 6.471325, 48.409201 ], [ 6.466929, 48.41043 ], [ 6.456866, 48.41702 ], [ 6.448213, 48.414405 ], [ 6.443482, 48.413021 ], [ 6.424666, 48.40823 ], [ 6.412688, 48.39332 ], [ 6.402911, 48.392256 ], [ 6.400678, 48.39536 ], [ 6.395929, 48.39469 ], [ 6.387395, 48.392143 ], [ 6.384241, 48.39461 ], [ 6.384043, 48.39952 ], [ 6.39045, 48.4045 ], [ 6.376792, 48.411896 ], [ 6.363617, 48.407867 ], [ 6.362428, 48.40745 ], [ 6.358962, 48.404865 ], [ 6.353963, 48.403881 ], [ 6.336509, 48.40459 ], [ 6.331346, 48.40486 ], [ 6.30818, 48.41195 ], [ 6.303381, 48.42854 ], [ 6.297438, 48.43367 ], [ 6.285143, 48.42942 ], [ 6.279505, 48.42405 ], [ 6.270298, 48.426101 ], [ 6.268672, 48.422805 ], [ 6.260443, 48.4064 ], [ 6.255765, 48.40641 ], [ 6.242664, 48.404052 ], [ 6.233339, 48.397113 ], [ 6.232097, 48.40023 ], [ 6.221955, 48.400664 ], [ 6.201743, 48.399375 ], [ 6.200161, 48.39804 ], [ 6.17842, 48.39761 ], [ 6.1788, 48.400542 ], [ 6.18273, 48.408954 ], [ 6.178927, 48.410461 ], [ 6.177176, 48.40745 ], [ 6.163188, 48.40579 ], [ 6.149421, 48.40827 ], [ 6.147421, 48.40783 ], [ 6.152327, 48.381648 ], [ 6.14879, 48.37923 ], [ 6.132707, 48.362684 ], [ 6.125088, 48.367261 ], [ 6.122831, 48.364754 ], [ 6.11705, 48.353841 ], [ 6.112344, 48.3549 ], [ 6.102617, 48.35628 ], [ 6.093755, 48.363852 ], [ 6.098286, 48.36485 ], [ 6.091215, 48.382258 ], [ 6.087498, 48.3834 ], [ 6.076707, 48.37985 ], [ 6.073746, 48.37752 ], [ 6.079825, 48.36364 ], [ 6.075185, 48.362156 ], [ 6.071492, 48.359767 ], [ 6.066434, 48.35945 ], [ 6.061359, 48.35975 ], [ 6.058422, 48.362 ], [ 6.047337, 48.365613 ], [ 6.046914, 48.36227 ], [ 6.032763, 48.361026 ], [ 6.024946, 48.35689 ], [ 6.020291, 48.36145 ], [ 6.01525, 48.360951 ], [ 6.005127, 48.360416 ], [ 5.992951, 48.35442 ], [ 5.988254, 48.35497 ], [ 5.982558, 48.35004 ], [ 5.973706, 48.35187 ], [ 5.96481, 48.35006 ], [ 5.960272, 48.351021 ], [ 5.955419, 48.356481 ], [ 5.954123, 48.359386 ], [ 5.956472, 48.36729 ], [ 5.95189, 48.36678 ], [ 5.952599, 48.37267 ], [ 5.944654, 48.37582 ], [ 5.947487, 48.37862 ], [ 5.954939, 48.387374 ], [ 5.952035, 48.390066 ], [ 5.949585, 48.3965 ], [ 5.94698, 48.39826 ], [ 5.941116, 48.40074 ], [ 5.937153, 48.40217 ], [ 5.92769, 48.393686 ], [ 5.925022, 48.396039 ], [ 5.920503, 48.40107 ], [ 5.918091, 48.404141 ], [ 5.91004, 48.40476 ], [ 5.909567, 48.41893 ], [ 5.91439, 48.424938 ], [ 5.924594, 48.424552 ], [ 5.931327, 48.433946 ], [ 5.926762, 48.4353 ], [ 5.898036, 48.43595 ], [ 5.907931, 48.42799 ], [ 5.896968, 48.40848 ], [ 5.878184, 48.40301 ], [ 5.870039, 48.406133 ], [ 5.865014, 48.40697 ], [ 5.855383, 48.409377 ], [ 5.856315, 48.41184 ], [ 5.85934, 48.4165 ], [ 5.882079, 48.43337 ], [ 5.884003, 48.43638 ], [ 5.885263, 48.437885 ], [ 5.897314, 48.44861 ], [ 5.886837, 48.456175 ], [ 5.888609, 48.46945 ], [ 5.9043, 48.48293 ], [ 5.898792, 48.48544 ], [ 5.901508, 48.4885 ], [ 5.905902, 48.49498 ], [ 5.901013, 48.49401 ], [ 5.876608, 48.49748 ], [ 5.865923, 48.5042 ], [ 5.862241, 48.50649 ], [ 5.83778, 48.50481 ], [ 5.836407, 48.500708 ], [ 5.831799, 48.50016 ], [ 5.824376, 48.49639 ], [ 5.810772, 48.4983 ], [ 5.809221, 48.495125 ], [ 5.792136, 48.48864 ], [ 5.787024, 48.48291 ], [ 5.783684, 48.485546 ], [ 5.778599, 48.486187 ], [ 5.774739, 48.48846 ], [ 5.765155, 48.49649 ], [ 5.76487, 48.49983 ], [ 5.762777, 48.51614 ], [ 5.760971, 48.52147 ], [ 5.761889, 48.524752 ], [ 5.766914, 48.534203 ], [ 5.77559, 48.537322 ], [ 5.776375, 48.54062 ], [ 5.772728, 48.541899 ], [ 5.762875, 48.5463 ], [ 5.757625, 48.54675 ], [ 5.744353, 48.552431 ], [ 5.728643, 48.55354 ], [ 5.725255, 48.55565 ], [ 5.715484, 48.5623 ], [ 5.71413, 48.56494 ], [ 5.714943, 48.5733 ], [ 5.713341, 48.57668 ], [ 5.717988, 48.591209 ], [ 5.722763, 48.592243 ], [ 5.741515, 48.596664 ], [ 5.754818, 48.6063 ], [ 5.764234, 48.60778 ], [ 5.769398, 48.60842 ], [ 5.789908, 48.60719 ], [ 5.793323, 48.60887 ], [ 5.798026, 48.61356 ], [ 5.7975, 48.61667 ], [ 5.803519, 48.625138 ], [ 5.799433, 48.62693 ], [ 5.790067, 48.62798 ], [ 5.764339, 48.619024 ], [ 5.760452, 48.621 ], [ 5.758376, 48.62129 ], [ 5.759203, 48.6246 ], [ 5.760946, 48.63114 ], [ 5.756326, 48.637004 ], [ 5.752287, 48.641544 ], [ 5.749915, 48.64447 ], [ 5.74451, 48.656898 ], [ 5.747463, 48.659845 ], [ 5.748918, 48.666849 ], [ 5.746144, 48.66966 ], [ 5.755881, 48.69197 ], [ 5.757173, 48.69456 ], [ 5.764601, 48.701083 ], [ 5.760421, 48.702764 ], [ 5.751104, 48.71381 ], [ 5.733023, 48.72381 ], [ 5.732055, 48.724557 ], [ 5.728777, 48.72663 ], [ 5.719037, 48.73291 ], [ 5.724748, 48.73805 ], [ 5.714041, 48.744623 ], [ 5.719113, 48.748216 ], [ 5.732567, 48.75018 ], [ 5.743127, 48.757178 ], [ 5.736559, 48.762477 ], [ 5.740039, 48.77224 ], [ 5.766159, 48.78905 ], [ 5.776455, 48.790066 ], [ 5.776984, 48.793356 ], [ 5.778491, 48.7999 ], [ 5.774231, 48.7987 ], [ 5.762412, 48.79391 ], [ 5.759356, 48.79586 ], [ 5.758209, 48.80123 ], [ 5.762901, 48.802628 ], [ 5.774308, 48.813208 ], [ 5.78135, 48.83537 ], [ 5.777993, 48.837851 ], [ 5.775159, 48.85708 ], [ 5.771704, 48.85776 ], [ 5.769401, 48.85959 ], [ 5.768135, 48.86297 ], [ 5.765203, 48.872991 ], [ 5.773466, 48.874725 ], [ 5.777443, 48.87614 ], [ 5.782274, 48.876672 ], [ 5.786585, 48.8782 ], [ 5.787991, 48.887895 ], [ 5.770036, 48.895124 ], [ 5.757243, 48.90996 ], [ 5.756831, 48.91299 ], [ 5.753148, 48.91305 ], [ 5.750108, 48.91418 ], [ 5.747025, 48.91526 ], [ 5.751909, 48.921124 ], [ 5.776647, 48.92516 ], [ 5.79958, 48.94632 ], [ 5.81282, 48.94358 ], [ 5.817226, 48.94245 ], [ 5.831351, 48.94397 ], [ 5.842413, 48.95217 ], [ 5.84727, 48.951793 ], [ 5.848573, 48.954866 ], [ 5.849168, 48.96123 ], [ 5.8304, 48.97619 ], [ 5.817812, 48.98024 ], [ 5.812928, 48.98067 ], [ 5.804394, 48.98389 ], [ 5.802736, 48.987116 ], [ 5.821367, 49.00341 ], [ 5.817407, 49.00806 ], [ 5.814064, 49.005431 ], [ 5.815, 49.00857 ], [ 5.829622, 49.02741 ], [ 5.829903, 49.030558 ], [ 5.853476, 49.04045 ], [ 5.851206, 49.043469 ], [ 5.838473, 49.05315 ], [ 5.836058, 49.06606 ], [ 5.831265, 49.06454 ], [ 5.805944, 49.06346 ], [ 5.805771, 49.06658 ], [ 5.808172, 49.07577 ], [ 5.810402, 49.078782 ], [ 5.819334, 49.08637 ], [ 5.823213, 49.08868 ], [ 5.817853, 49.11104 ], [ 5.812824, 49.11129 ], [ 5.807797, 49.11134 ], [ 5.802818, 49.11228 ], [ 5.777362, 49.11164 ], [ 5.778497, 49.10905 ], [ 5.772557, 49.10535 ], [ 5.768537, 49.10678 ], [ 5.755118, 49.11419 ], [ 5.748301, 49.12312 ], [ 5.754527, 49.132202 ], [ 5.771796, 49.13979 ], [ 5.767645, 49.140124 ], [ 5.755974, 49.142389 ], [ 5.757448, 49.14561 ], [ 5.759572, 49.14868 ], [ 5.758935, 49.15215 ], [ 5.749182, 49.15496 ], [ 5.7464, 49.161482 ], [ 5.764739, 49.194059 ], [ 5.765774, 49.1975 ], [ 5.761112, 49.20146 ], [ 5.757366, 49.20098 ], [ 5.750386, 49.19854 ], [ 5.745193, 49.1982 ], [ 5.730304, 49.19517 ], [ 5.723192, 49.199306 ], [ 5.726491, 49.20175 ], [ 5.719916, 49.217164 ], [ 5.728719, 49.22498 ], [ 5.73345, 49.226132 ], [ 5.740556, 49.230117 ], [ 5.737341, 49.232448 ], [ 5.725272, 49.24478 ], [ 5.720933, 49.247707 ], [ 5.728497, 49.25668 ], [ 5.725312, 49.266381 ], [ 5.724722, 49.26978 ], [ 5.760905, 49.27961 ], [ 5.768283, 49.299781 ], [ 5.7638, 49.31137 ], [ 5.7629, 49.314332 ], [ 5.759984, 49.315379 ], [ 5.756975, 49.314422 ], [ 5.753468, 49.31188 ], [ 5.749166, 49.30989 ], [ 5.732039, 49.31093 ], [ 5.720819, 49.33008 ], [ 5.737194, 49.33887 ], [ 5.739328, 49.34586 ], [ 5.737916, 49.349089 ], [ 5.737564, 49.35568 ], [ 5.731571, 49.361087 ], [ 5.726699, 49.36218 ], [ 5.712225, 49.36346 ], [ 5.714375, 49.36925 ], [ 5.707787, 49.38411 ], [ 5.704749, 49.386855 ], [ 5.687281, 49.393747 ], [ 5.694297, 49.39986 ], [ 5.69213, 49.402156 ], [ 5.691872, 49.40539 ], [ 5.6918, 49.41509 ], [ 5.682024, 49.414504 ], [ 5.676869, 49.41902 ], [ 5.633554, 49.43787 ], [ 5.630124, 49.435248 ], [ 5.616183, 49.430362 ], [ 5.61691, 49.423511 ], [ 5.607205, 49.422435 ], [ 5.606563, 49.419013 ], [ 5.598517, 49.4232 ], [ 5.584345, 49.41881 ], [ 5.570027, 49.42248 ], [ 5.568345, 49.420001 ], [ 5.563085, 49.41928 ], [ 5.552529, 49.41824 ], [ 5.531254, 49.407743 ], [ 5.49917, 49.40745 ], [ 5.496634, 49.39438 ], [ 5.485008, 49.38329 ], [ 5.480988, 49.38248 ], [ 5.473871, 49.38917 ], [ 5.476893, 49.39529 ], [ 5.462875, 49.39689 ], [ 5.446816, 49.40399 ], [ 5.447164, 49.40407 ], [ 5.452186, 49.40507 ], [ 5.471776, 49.40924 ], [ 5.478992, 49.40426 ], [ 5.493942, 49.40707 ], [ 5.506772, 49.4215 ], [ 5.498186, 49.424384 ], [ 5.494264, 49.422261 ], [ 5.471244, 49.42804 ], [ 5.479012, 49.432736 ], [ 5.485193, 49.445388 ], [ 5.482348, 49.448162 ], [ 5.467361, 49.45001 ], [ 5.464134, 49.4526 ], [ 5.468359, 49.458735 ], [ 5.471172, 49.46157 ], [ 5.467072, 49.46296 ], [ 5.464264, 49.471165 ], [ 5.463647, 49.4822 ], [ 5.473769, 49.482598 ], [ 5.476665, 49.48513 ], [ 5.482492, 49.49376 ], [ 5.47917, 49.49558 ], [ 5.470911, 49.497214 ], [ 5.484815, 49.506686 ], [ 5.526401, 49.51139 ], [ 5.531456, 49.51252 ], [ 5.533447, 49.513412 ], [ 5.542475, 49.51697 ], [ 5.553983, 49.527872 ], [ 5.569193, 49.52734 ], [ 5.593826, 49.52136 ], [ 5.607102, 49.50699 ], [ 5.610984, 49.50593 ], [ 5.61742, 49.51435 ], [ 5.621111, 49.520649 ], [ 5.617958, 49.530347 ], [ 5.628092, 49.538059 ], [ 5.632798, 49.53956 ], [ 5.632922, 49.54306 ], [ 5.645203, 49.54969 ], [ 5.660806, 49.552354 ], [ 5.669231, 49.54851 ], [ 5.679833, 49.548293 ], [ 5.698123, 49.54234 ], [ 5.701263, 49.53952 ], [ 5.721682, 49.541013 ], [ 5.730061, 49.544475 ], [ 5.742718, 49.539271 ], [ 5.757155, 49.542568 ], [ 5.758513, 49.5591 ], [ 5.772744, 49.56255 ], [ 5.815257, 49.54494 ], [ 5.810482, 49.54354 ], [ 5.815282, 49.53933 ], [ 5.817199, 49.537 ], [ 5.836173, 49.54178 ], [ 5.844181, 49.52967 ], [ 5.835261, 49.52652 ], [ 5.836046, 49.519957 ], [ 5.864012, 49.50125 ], [ 5.888261, 49.497338 ], [ 5.893402, 49.49692 ], [ 5.898435, 49.48431 ], [ 5.897027, 49.481138 ], [ 5.904673, 49.48453 ], [ 5.912982, 49.482078 ], [ 5.917527, 49.48262 ], [ 5.925328, 49.48484 ], [ 5.929609, 49.48535 ], [ 5.935571, 49.47829 ], [ 5.939797, 49.47738 ], [ 5.934477, 49.47171 ], [ 5.941863, 49.452446 ], [ 5.930767, 49.446554 ], [ 5.940797, 49.4338 ], [ 5.942283, 49.430355 ], [ 5.937777, 49.42873 ], [ 5.928285, 49.42647 ], [ 5.919719, 49.41814 ], [ 5.915632, 49.409513 ], [ 5.91184, 49.40753 ], [ 5.91579, 49.405965 ], [ 5.919901, 49.40458 ], [ 5.929677, 49.40148 ], [ 5.935039, 49.38094 ], [ 5.924782, 49.37305 ], [ 5.933406, 49.369443 ], [ 5.941007, 49.36071 ], [ 5.95104, 49.362034 ], [ 5.956124, 49.361595 ], [ 5.963582, 49.34662 ], [ 5.973406, 49.345321 ], [ 5.978376, 49.34486 ], [ 5.973218, 49.34445 ], [ 5.962819, 49.34486 ], [ 5.943394, 49.34029 ], [ 5.943314, 49.336946 ], [ 5.949495, 49.32806 ], [ 5.969991, 49.318536 ], [ 5.985221, 49.30517 ], [ 5.988107, 49.307492 ], [ 5.997125, 49.31424 ], [ 6.005021, 49.30972 ], [ 6.002952, 49.28907 ], [ 6.001631, 49.285747 ], [ 6.000446, 49.27553 ], [ 6.009838, 49.27247 ], [ 6.007822, 49.27043 ], [ 6.009836, 49.26608 ], [ 6.007922, 49.25941 ], [ 6.029172, 49.250036 ], [ 6.025889, 49.24349 ], [ 6.027876, 49.23331 ], [ 6.030761, 49.23308 ], [ 6.014515, 49.221875 ], [ 6.009565, 49.221792 ], [ 5.999638, 49.210956 ], [ 6.003519, 49.20897 ], [ 5.995509, 49.20749 ], [ 5.987627, 49.209617 ], [ 5.98441, 49.207412 ], [ 5.986235, 49.201438 ], [ 5.978771, 49.19486 ], [ 5.979529, 49.19299 ], [ 5.982116, 49.18715 ], [ 5.985181, 49.184838 ], [ 6.005027, 49.182715 ], [ 6.017339, 49.17189 ], [ 6.031132, 49.16749 ], [ 6.027936, 49.16492 ], [ 6.019092, 49.161958 ], [ 6.010886, 49.15368 ], [ 6.006477, 49.15334 ], [ 5.999566, 49.15575 ], [ 5.990328, 49.15445 ], [ 5.994304, 49.14873 ], [ 5.982262, 49.14397 ], [ 5.984418, 49.14116 ], [ 5.986154, 49.137966 ], [ 5.993989, 49.13356 ], [ 5.990612, 49.12754 ], [ 6.002144, 49.116469 ], [ 6.004983, 49.1139 ], [ 6.002705, 49.11078 ], [ 5.993738, 49.10787 ], [ 5.972667, 49.10822 ], [ 5.967699, 49.108336 ], [ 5.947825, 49.10878 ], [ 5.931603, 49.109104 ], [ 5.927818, 49.0996 ], [ 5.925645, 49.092901 ], [ 5.941603, 49.08054 ], [ 5.93473, 49.0755 ], [ 5.935207, 49.07208 ], [ 5.936821, 49.06889 ], [ 5.95037, 49.064908 ], [ 5.951719, 49.061663 ], [ 5.955657, 49.05003 ], [ 5.957792, 49.047378 ], [ 5.966914, 49.04651 ], [ 5.972448, 49.04156 ], [ 5.981175, 49.043389 ], [ 5.98541, 49.04205 ], [ 5.992056, 49.03981 ], [ 5.994968, 49.038097 ], [ 6.001616, 49.03519 ], [ 6.005445, 49.034425 ], [ 6.012649, 49.03735 ], [ 6.019487, 49.02456 ], [ 6.030663, 49.01701 ], [ 6.040883, 49.01491 ], [ 6.044965, 49.008935 ], [ 6.0432, 49.001925 ], [ 6.043815, 48.98909 ], [ 6.033896, 48.98478 ], [ 6.041341, 48.98046 ], [ 6.043435, 48.97748 ], [ 6.06144, 48.978873 ], [ 6.064765, 48.98101 ], [ 6.073834, 48.979015 ], [ 6.071029, 48.972725 ], [ 6.077312, 48.967785 ], [ 6.079195, 48.96474 ], [ 6.081323, 48.96305 ], [ 6.094718, 48.96789 ], [ 6.099614, 48.96885 ], [ 6.114238, 48.967227 ], [ 6.124748, 48.95607 ], [ 6.123214, 48.949418 ], [ 6.128252, 48.94936 ], [ 6.125142, 48.9399 ], [ 6.141559, 48.93305 ], [ 6.146544, 48.93258 ], [ 6.149731, 48.93332 ], [ 6.150023, 48.939285 ], [ 6.161467, 48.943699 ], [ 6.165301, 48.942041 ], [ 6.170431, 48.94216 ], [ 6.175165, 48.936236 ], [ 6.200807, 48.93713 ], [ 6.205897, 48.93769 ], [ 6.205768, 48.939588 ], [ 6.220643, 48.93823 ], [ 6.225117, 48.9293 ], [ 6.234795, 48.92789 ], [ 6.237097, 48.92493 ], [ 6.247297, 48.92488 ], [ 6.258243, 48.93173 ], [ 6.262562, 48.933509 ], [ 6.271237, 48.93331 ], [ 6.277034, 48.927966 ], [ 6.283947, 48.92842 ], [ 6.287794, 48.92769 ], [ 6.2884, 48.916323 ], [ 6.306997, 48.9195 ], [ 6.311181, 48.92107 ], [ 6.310847, 48.91175 ], [ 6.324395, 48.90751 ], [ 6.327517, 48.904873 ], [ 6.325839, 48.89593 ], [ 6.321088, 48.89463 ], [ 6.311501, 48.8922 ], [ 6.297384, 48.88247 ], [ 6.308444, 48.87826 ], [ 6.308081, 48.87534 ], [ 6.310919, 48.87276 ], [ 6.312126, 48.86642 ], [ 6.305417, 48.86369 ], [ 6.297463, 48.86648 ], [ 6.299103, 48.85533 ], [ 6.300111, 48.85252 ], [ 6.295087, 48.85179 ], [ 6.285472, 48.849429 ], [ 6.288014, 48.84367 ], [ 6.307404, 48.83376 ], [ 6.31625, 48.83692 ], [ 6.329999, 48.83571 ], [ 6.334824, 48.83461 ], [ 6.339647, 48.83349 ], [ 6.331992, 48.825728 ], [ 6.318345, 48.829357 ], [ 6.301116, 48.824253 ], [ 6.30468, 48.82241 ], [ 6.308785, 48.82115 ], [ 6.331522, 48.82327 ], [ 6.333754, 48.82046 ], [ 6.336054, 48.81294 ], [ 6.339339, 48.81103 ], [ 6.353939, 48.812989 ], [ 6.357369, 48.81058 ], [ 6.347483, 48.803934 ], [ 6.354861, 48.79534 ], [ 6.355453, 48.79204 ], [ 6.358564, 48.779633 ], [ 6.366691, 48.78293 ], [ 6.370878, 48.7847 ], [ 6.383904, 48.780763 ], [ 6.388744, 48.78061 ], [ 6.394874, 48.77476 ], [ 6.42867, 48.78767 ], [ 6.43311, 48.7891 ], [ 6.44207, 48.78098 ], [ 6.451275, 48.77908 ], [ 6.454219, 48.769234 ], [ 6.453603, 48.765894 ], [ 6.461365, 48.767326 ], [ 6.485482, 48.76587 ], [ 6.490392, 48.76496 ], [ 6.507983, 48.754369 ], [ 6.506608, 48.74849 ], [ 6.511382, 48.74884 ], [ 6.519434, 48.75275 ], [ 6.53421, 48.749598 ], [ 6.538634, 48.75139 ], [ 6.543982, 48.753756 ], [ 6.547622, 48.75462 ], [ 6.562184, 48.75611 ], [ 6.564859, 48.749425 ], [ 6.584287, 48.73317 ], [ 6.589493, 48.73248 ], [ 6.59851, 48.71876 ], [ 6.598966, 48.71569 ], [ 6.616654, 48.71471 ], [ 6.629055, 48.71107 ], [ 6.637589, 48.70312 ], [ 6.642411, 48.702432 ], [ 6.657733, 48.70774 ], [ 6.661575, 48.70608 ], [ 6.674735, 48.69183 ], [ 6.670752, 48.686436 ], [ 6.670491, 48.673046 ], [ 6.666421, 48.67104 ], [ 6.668962, 48.667339 ], [ 6.688766, 48.68213 ], [ 6.694358, 48.673136 ], [ 6.704312, 48.672395 ], [ 6.708674, 48.67064 ], [ 6.722859, 48.66709 ], [ 6.726081, 48.664422 ], [ 6.738556, 48.667588 ], [ 6.752396, 48.66722 ], [ 6.75513, 48.66988 ], [ 6.759914, 48.669672 ], [ 6.760279, 48.65812 ], [ 6.762831, 48.65542 ], [ 6.763951, 48.6521 ], [ 6.777492, 48.653474 ], [ 6.776732, 48.65049 ], [ 6.774114, 48.647917 ], [ 6.780104, 48.644674 ], [ 6.782626, 48.642721 ], [ 6.813799, 48.64682 ], [ 6.834472, 48.64371 ], [ 6.839311, 48.63743 ], [ 6.842629, 48.63248 ], [ 6.842835, 48.629725 ], [ 6.847891, 48.62384 ], [ 6.857471, 48.620939 ], [ 6.893295, 48.625005 ], [ 6.901083, 48.621589 ], [ 6.905394, 48.61983 ], [ 6.917507, 48.624318 ], [ 6.918856, 48.63053 ], [ 6.925352, 48.63472 ], [ 6.930007, 48.63555 ], [ 6.942476, 48.618 ], [ 6.939742, 48.61506 ], [ 6.957241, 48.60974 ], [ 6.961836, 48.60872 ], [ 6.987682, 48.61211 ], [ 6.991258, 48.609493 ], [ 6.993192, 48.60991 ], [ 7.005991, 48.60944 ], [ 7.008742, 48.611841 ], [ 7.015156, 48.60409 ], [ 6.995388, 48.593854 ], [ 7.019187, 48.580901 ], [ 7.029071, 48.58022 ], [ 7.034245, 48.580418 ], [ 7.044708, 48.56228 ], [ 7.057114, 48.55146 ], [ 7.082511, 48.541696 ], [ 7.062191, 48.540132 ], [ 7.057235, 48.53919 ], [ 7.074798, 48.537232 ], [ 7.07936, 48.53642 ], [ 7.07538, 48.53477 ], [ 7.065385, 48.5243 ], [ 7.068664, 48.52252 ], [ 7.077105, 48.51634 ], [ 7.08063, 48.51267 ], [ 7.083459, 48.51558 ], [ 7.103796, 48.517641 ], [ 7.123165, 48.51359 ] ] ], [ [ [ 5.42599, 49.48614 ], [ 5.433874, 49.49086 ], [ 5.43974, 49.500453 ], [ 5.442003, 49.503618 ], [ 5.465225, 49.48689 ], [ 5.456238, 49.484258 ], [ 5.455555, 49.48094 ], [ 5.451653, 49.48333 ], [ 5.42599, 49.48614 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "56", "CODE_DEPT": "55", "NOM_DEPT": "MEUSE", "CODE_CHF": "029", "NOM_CHF": "BAR-LE-DUC", "X_CHF_LIEU": "8592", "Y_CHF_LIEU": "68545", "X_CENTROID": "8742", "Y_CENTROID": "68792", "CODE_REG": "41", "NOM_REGION": "LORRAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.765155, 48.49649 ], [ 5.760795, 48.49445 ], [ 5.746109, 48.47625 ], [ 5.74243, 48.474498 ], [ 5.740613, 48.46537 ], [ 5.735324, 48.46516 ], [ 5.715639, 48.460378 ], [ 5.695076, 48.463449 ], [ 5.689593, 48.467381 ], [ 5.684919, 48.46836 ], [ 5.676378, 48.47153 ], [ 5.656871, 48.47126 ], [ 5.653333, 48.46901 ], [ 5.644529, 48.47187 ], [ 5.641988, 48.472203 ], [ 5.639804, 48.46915 ], [ 5.651446, 48.45818 ], [ 5.649849, 48.454962 ], [ 5.644971, 48.454044 ], [ 5.626986, 48.44888 ], [ 5.623837, 48.44596 ], [ 5.61883, 48.43049 ], [ 5.615055, 48.44051 ], [ 5.610061, 48.441568 ], [ 5.589323, 48.44213 ], [ 5.580391, 48.43848 ], [ 5.576649, 48.43197 ], [ 5.566636, 48.434108 ], [ 5.567996, 48.4373 ], [ 5.560827, 48.44147 ], [ 5.556327, 48.4399 ], [ 5.534464, 48.432297 ], [ 5.515417, 48.42998 ], [ 5.509929, 48.41702 ], [ 5.513904, 48.4108 ], [ 5.509008, 48.40991 ], [ 5.470062, 48.42093 ], [ 5.468366, 48.423682 ], [ 5.464657, 48.42535 ], [ 5.455491, 48.42252 ], [ 5.44593, 48.42484 ], [ 5.444199, 48.42803 ], [ 5.439576, 48.4342 ], [ 5.429225, 48.43441 ], [ 5.409502, 48.44554 ], [ 5.403949, 48.455175 ], [ 5.406055, 48.465393 ], [ 5.403623, 48.46785 ], [ 5.40115, 48.470299 ], [ 5.398074, 48.473187 ], [ 5.377321, 48.47191 ], [ 5.369382, 48.47655 ], [ 5.368678, 48.47625 ], [ 5.363594, 48.477271 ], [ 5.34947, 48.481989 ], [ 5.346954, 48.48505 ], [ 5.327505, 48.509 ], [ 5.317018, 48.50891 ], [ 5.30559, 48.51576 ], [ 5.302655, 48.513091 ], [ 5.295728, 48.508329 ], [ 5.292344, 48.50931 ], [ 5.289147, 48.51053 ], [ 5.287443, 48.513709 ], [ 5.272637, 48.514317 ], [ 5.229125, 48.530773 ], [ 5.221951, 48.52648 ], [ 5.217139, 48.52771 ], [ 5.212253, 48.52879 ], [ 5.211558, 48.53191 ], [ 5.207077, 48.53747 ], [ 5.194712, 48.540557 ], [ 5.197028, 48.546678 ], [ 5.192655, 48.548397 ], [ 5.172768, 48.557149 ], [ 5.165068, 48.565343 ], [ 5.160367, 48.564133 ], [ 5.152213, 48.56034 ], [ 5.143528, 48.563133 ], [ 5.140569, 48.565697 ], [ 5.134455, 48.57069 ], [ 5.131277, 48.572586 ], [ 5.127067, 48.5801 ], [ 5.123434, 48.58214 ], [ 5.117875, 48.58689 ], [ 5.119453, 48.595716 ], [ 5.114686, 48.59458 ], [ 5.094681, 48.59297 ], [ 5.070286, 48.595925 ], [ 5.068597, 48.59919 ], [ 5.05939, 48.61519 ], [ 5.056671, 48.63233 ], [ 5.051809, 48.632966 ], [ 5.033402, 48.61376 ], [ 5.006401, 48.61139 ], [ 4.996262, 48.61879 ], [ 5.004196, 48.6346 ], [ 4.994686, 48.64616 ], [ 4.993755, 48.65522 ], [ 4.992812, 48.658271 ], [ 4.996128, 48.66047 ], [ 5.011053, 48.66783 ], [ 5.008261, 48.67048 ], [ 5.007434, 48.680069 ], [ 5.003256, 48.68204 ], [ 4.988428, 48.68443 ], [ 4.990665, 48.690724 ], [ 5.003295, 48.69617 ], [ 5.006402, 48.69885 ], [ 4.999273, 48.710392 ], [ 5.012702, 48.707153 ], [ 5.016002, 48.70952 ], [ 5.006168, 48.721442 ], [ 5.00922, 48.74139 ], [ 4.989575, 48.74204 ], [ 4.981359, 48.74564 ], [ 4.980624, 48.7485 ], [ 4.978949, 48.7517 ], [ 4.953825, 48.768195 ], [ 4.949258, 48.770537 ], [ 4.935478, 48.78432 ], [ 4.934376, 48.790589 ], [ 4.924802, 48.79238 ], [ 4.920462, 48.790984 ], [ 4.898034, 48.796138 ], [ 4.893365, 48.79696 ], [ 4.892929, 48.797694 ], [ 4.89003, 48.80036 ], [ 4.896351, 48.80903 ], [ 4.890378, 48.814107 ], [ 4.888761, 48.81721 ], [ 4.90027, 48.82463 ], [ 4.902918, 48.82774 ], [ 4.930968, 48.8394 ], [ 4.935493, 48.8405 ], [ 4.937384, 48.84811 ], [ 4.928577, 48.851029 ], [ 4.923236, 48.862891 ], [ 4.912256, 48.86946 ], [ 4.913098, 48.872733 ], [ 4.916497, 48.875413 ], [ 4.923063, 48.888495 ], [ 4.920098, 48.89466 ], [ 4.913592, 48.89768 ], [ 4.915801, 48.899847 ], [ 4.917043, 48.90321 ], [ 4.932159, 48.912682 ], [ 4.936209, 48.92214 ], [ 4.949578, 48.9303 ], [ 4.954079, 48.930911 ], [ 4.957261, 48.92803 ], [ 4.97332, 48.92887 ], [ 4.996952, 48.93704 ], [ 5.012848, 48.93675 ], [ 5.014887, 48.94251 ], [ 5.014132, 48.94559 ], [ 5.027718, 48.952194 ], [ 5.030943, 48.95432 ], [ 5.037757, 48.97412 ], [ 5.029939, 48.97864 ], [ 5.000441, 48.9834 ], [ 4.995417, 48.982465 ], [ 5.009278, 48.993135 ], [ 5.03062, 48.994998 ], [ 5.031576, 49.00129 ], [ 5.037505, 49.01057 ], [ 5.035641, 49.02057 ], [ 5.035267, 49.02256 ], [ 5.032916, 49.02574 ], [ 5.01001, 49.03469 ], [ 4.966715, 49.021 ], [ 4.965432, 49.02144 ], [ 4.968234, 49.024281 ], [ 5.000361, 49.050536 ], [ 5.005744, 49.05987 ], [ 5.003861, 49.06568 ], [ 4.996638, 49.088913 ], [ 4.997767, 49.09228 ], [ 4.996343, 49.106502 ], [ 4.987983, 49.119636 ], [ 4.984722, 49.122496 ], [ 4.98064, 49.126485 ], [ 4.978523, 49.12845 ], [ 4.974853, 49.132849 ], [ 4.965324, 49.15119 ], [ 4.964624, 49.15441 ], [ 4.954392, 49.168122 ], [ 4.952939, 49.17105 ], [ 4.941676, 49.183805 ], [ 4.942378, 49.18677 ], [ 4.953973, 49.19408 ], [ 4.978532, 49.20045 ], [ 4.990533, 49.207415 ], [ 4.991859, 49.210838 ], [ 4.988955, 49.213484 ], [ 4.977581, 49.219751 ], [ 4.975569, 49.222788 ], [ 4.970838, 49.23554 ], [ 4.950989, 49.236866 ], [ 4.960253, 49.23996 ], [ 4.968033, 49.248792 ], [ 4.996246, 49.257977 ], [ 4.9999, 49.26045 ], [ 4.998664, 49.26366 ], [ 5.006624, 49.26767 ], [ 5.011029, 49.269287 ], [ 5.025812, 49.273042 ], [ 5.036007, 49.27122 ], [ 5.051181, 49.274052 ], [ 5.049709, 49.283366 ], [ 5.05546, 49.28798 ], [ 5.059407, 49.28975 ], [ 5.056637, 49.293365 ], [ 5.051473, 49.29422 ], [ 5.041741, 49.29669 ], [ 5.030794, 49.30817 ], [ 5.038152, 49.316204 ], [ 5.032377, 49.32393 ], [ 5.029392, 49.326036 ], [ 5.028499, 49.332354 ], [ 5.027099, 49.335615 ], [ 5.055816, 49.359435 ], [ 5.054072, 49.36611 ], [ 5.060209, 49.371517 ], [ 5.08389, 49.37043 ], [ 5.088622, 49.36963 ], [ 5.100617, 49.380497 ], [ 5.10415, 49.38978 ], [ 5.088653, 49.39861 ], [ 5.084472, 49.404586 ], [ 5.099317, 49.413842 ], [ 5.109334, 49.41547 ], [ 5.115029, 49.42058 ], [ 5.107781, 49.424674 ], [ 5.106154, 49.4277 ], [ 5.100887, 49.440834 ], [ 5.10986, 49.45625 ], [ 5.102876, 49.46017 ], [ 5.100672, 49.46126 ], [ 5.095809, 49.4604 ], [ 5.082957, 49.47036 ], [ 5.083, 49.473807 ], [ 5.084529, 49.48056 ], [ 5.079907, 49.48637 ], [ 5.074537, 49.486683 ], [ 5.059979, 49.50119 ], [ 5.059872, 49.504708 ], [ 5.062563, 49.50745 ], [ 5.077415, 49.508733 ], [ 5.084962, 49.51711 ], [ 5.085535, 49.520335 ], [ 5.089874, 49.52109 ], [ 5.097719, 49.533646 ], [ 5.090506, 49.538 ], [ 5.090175, 49.54479 ], [ 5.095677, 49.554358 ], [ 5.09608, 49.55779 ], [ 5.104178, 49.55609 ], [ 5.108388, 49.555298 ], [ 5.112148, 49.5597 ], [ 5.113352, 49.5621 ], [ 5.106024, 49.578524 ], [ 5.115037, 49.59093 ], [ 5.119715, 49.59268 ], [ 5.145609, 49.58919 ], [ 5.152668, 49.58011 ], [ 5.152895, 49.576623 ], [ 5.160299, 49.56957 ], [ 5.159887, 49.56669 ], [ 5.168633, 49.56366 ], [ 5.177683, 49.56715 ], [ 5.186928, 49.56969 ], [ 5.196319, 49.56755 ], [ 5.201334, 49.56814 ], [ 5.214137, 49.57301 ], [ 5.234775, 49.56567 ], [ 5.234681, 49.562235 ], [ 5.247139, 49.55762 ], [ 5.251771, 49.55671 ], [ 5.259298, 49.54436 ], [ 5.26271, 49.54182 ], [ 5.271867, 49.54457 ], [ 5.277031, 49.54416 ], [ 5.284348, 49.55242 ], [ 5.307404, 49.557781 ], [ 5.31177, 49.55929 ], [ 5.308171, 49.562847 ], [ 5.312228, 49.565143 ], [ 5.339981, 49.59419 ], [ 5.347645, 49.5897 ], [ 5.357528, 49.58989 ], [ 5.361514, 49.59206 ], [ 5.37203, 49.592166 ], [ 5.379728, 49.59563 ], [ 5.381689, 49.6057 ], [ 5.389677, 49.615617 ], [ 5.393537, 49.617088 ], [ 5.428929, 49.5954 ], [ 5.430972, 49.592384 ], [ 5.428995, 49.5892 ], [ 5.439331, 49.5698 ], [ 5.453857, 49.565967 ], [ 5.446263, 49.553389 ], [ 5.441353, 49.552139 ], [ 5.442549, 49.550272 ], [ 5.465261, 49.53631 ], [ 5.46403, 49.526199 ], [ 5.447197, 49.51788 ], [ 5.463425, 49.50897 ], [ 5.466285, 49.49893 ], [ 5.470911, 49.497214 ], [ 5.47917, 49.49558 ], [ 5.482492, 49.49376 ], [ 5.476665, 49.48513 ], [ 5.473769, 49.482598 ], [ 5.463647, 49.4822 ], [ 5.464264, 49.471165 ], [ 5.467072, 49.46296 ], [ 5.471172, 49.46157 ], [ 5.468359, 49.458735 ], [ 5.464134, 49.4526 ], [ 5.467361, 49.45001 ], [ 5.482348, 49.448162 ], [ 5.485193, 49.445388 ], [ 5.479012, 49.432736 ], [ 5.471244, 49.42804 ], [ 5.494264, 49.422261 ], [ 5.498186, 49.424384 ], [ 5.506772, 49.4215 ], [ 5.493942, 49.40707 ], [ 5.478992, 49.40426 ], [ 5.471776, 49.40924 ], [ 5.452186, 49.40507 ], [ 5.447164, 49.40407 ], [ 5.446816, 49.40399 ], [ 5.462875, 49.39689 ], [ 5.476893, 49.39529 ], [ 5.473871, 49.38917 ], [ 5.480988, 49.38248 ], [ 5.485008, 49.38329 ], [ 5.496634, 49.39438 ], [ 5.49917, 49.40745 ], [ 5.531254, 49.407743 ], [ 5.552529, 49.41824 ], [ 5.563085, 49.41928 ], [ 5.568345, 49.420001 ], [ 5.570027, 49.42248 ], [ 5.584345, 49.41881 ], [ 5.598517, 49.4232 ], [ 5.606563, 49.419013 ], [ 5.607205, 49.422435 ], [ 5.61691, 49.423511 ], [ 5.616183, 49.430362 ], [ 5.630124, 49.435248 ], [ 5.633554, 49.43787 ], [ 5.676869, 49.41902 ], [ 5.682024, 49.414504 ], [ 5.6918, 49.41509 ], [ 5.691872, 49.40539 ], [ 5.69213, 49.402156 ], [ 5.694297, 49.39986 ], [ 5.687281, 49.393747 ], [ 5.704749, 49.386855 ], [ 5.707787, 49.38411 ], [ 5.714375, 49.36925 ], [ 5.712225, 49.36346 ], [ 5.726699, 49.36218 ], [ 5.731571, 49.361087 ], [ 5.737564, 49.35568 ], [ 5.737916, 49.349089 ], [ 5.739328, 49.34586 ], [ 5.737194, 49.33887 ], [ 5.720819, 49.33008 ], [ 5.732039, 49.31093 ], [ 5.749166, 49.30989 ], [ 5.753468, 49.31188 ], [ 5.756975, 49.314422 ], [ 5.759984, 49.315379 ], [ 5.7629, 49.314332 ], [ 5.7638, 49.31137 ], [ 5.768283, 49.299781 ], [ 5.760905, 49.27961 ], [ 5.724722, 49.26978 ], [ 5.725312, 49.266381 ], [ 5.728497, 49.25668 ], [ 5.720933, 49.247707 ], [ 5.725272, 49.24478 ], [ 5.737341, 49.232448 ], [ 5.740556, 49.230117 ], [ 5.73345, 49.226132 ], [ 5.728719, 49.22498 ], [ 5.719916, 49.217164 ], [ 5.726491, 49.20175 ], [ 5.723192, 49.199306 ], [ 5.730304, 49.19517 ], [ 5.745193, 49.1982 ], [ 5.750386, 49.19854 ], [ 5.757366, 49.20098 ], [ 5.761112, 49.20146 ], [ 5.765774, 49.1975 ], [ 5.764739, 49.194059 ], [ 5.7464, 49.161482 ], [ 5.749182, 49.15496 ], [ 5.758935, 49.15215 ], [ 5.759572, 49.14868 ], [ 5.757448, 49.14561 ], [ 5.755974, 49.142389 ], [ 5.767645, 49.140124 ], [ 5.771796, 49.13979 ], [ 5.754527, 49.132202 ], [ 5.748301, 49.12312 ], [ 5.755118, 49.11419 ], [ 5.768537, 49.10678 ], [ 5.772557, 49.10535 ], [ 5.778497, 49.10905 ], [ 5.777362, 49.11164 ], [ 5.802818, 49.11228 ], [ 5.807797, 49.11134 ], [ 5.812824, 49.11129 ], [ 5.817853, 49.11104 ], [ 5.823213, 49.08868 ], [ 5.819334, 49.08637 ], [ 5.810402, 49.078782 ], [ 5.808172, 49.07577 ], [ 5.805771, 49.06658 ], [ 5.805944, 49.06346 ], [ 5.831265, 49.06454 ], [ 5.836058, 49.06606 ], [ 5.838473, 49.05315 ], [ 5.851206, 49.043469 ], [ 5.853476, 49.04045 ], [ 5.829903, 49.030558 ], [ 5.829622, 49.02741 ], [ 5.815, 49.00857 ], [ 5.814064, 49.005431 ], [ 5.817407, 49.00806 ], [ 5.821367, 49.00341 ], [ 5.802736, 48.987116 ], [ 5.804394, 48.98389 ], [ 5.812928, 48.98067 ], [ 5.817812, 48.98024 ], [ 5.8304, 48.97619 ], [ 5.849168, 48.96123 ], [ 5.848573, 48.954866 ], [ 5.84727, 48.951793 ], [ 5.842413, 48.95217 ], [ 5.831351, 48.94397 ], [ 5.817226, 48.94245 ], [ 5.81282, 48.94358 ], [ 5.79958, 48.94632 ], [ 5.776647, 48.92516 ], [ 5.751909, 48.921124 ], [ 5.747025, 48.91526 ], [ 5.750108, 48.91418 ], [ 5.753148, 48.91305 ], [ 5.756831, 48.91299 ], [ 5.757243, 48.90996 ], [ 5.770036, 48.895124 ], [ 5.787991, 48.887895 ], [ 5.786585, 48.8782 ], [ 5.782274, 48.876672 ], [ 5.777443, 48.87614 ], [ 5.773466, 48.874725 ], [ 5.765203, 48.872991 ], [ 5.768135, 48.86297 ], [ 5.769401, 48.85959 ], [ 5.771704, 48.85776 ], [ 5.775159, 48.85708 ], [ 5.777993, 48.837851 ], [ 5.78135, 48.83537 ], [ 5.774308, 48.813208 ], [ 5.762901, 48.802628 ], [ 5.758209, 48.80123 ], [ 5.759356, 48.79586 ], [ 5.762412, 48.79391 ], [ 5.774231, 48.7987 ], [ 5.778491, 48.7999 ], [ 5.776984, 48.793356 ], [ 5.776455, 48.790066 ], [ 5.766159, 48.78905 ], [ 5.740039, 48.77224 ], [ 5.736559, 48.762477 ], [ 5.743127, 48.757178 ], [ 5.732567, 48.75018 ], [ 5.719113, 48.748216 ], [ 5.714041, 48.744623 ], [ 5.724748, 48.73805 ], [ 5.719037, 48.73291 ], [ 5.728777, 48.72663 ], [ 5.732055, 48.724557 ], [ 5.733023, 48.72381 ], [ 5.751104, 48.71381 ], [ 5.760421, 48.702764 ], [ 5.764601, 48.701083 ], [ 5.757173, 48.69456 ], [ 5.755881, 48.69197 ], [ 5.746144, 48.66966 ], [ 5.748918, 48.666849 ], [ 5.747463, 48.659845 ], [ 5.74451, 48.656898 ], [ 5.749915, 48.64447 ], [ 5.752287, 48.641544 ], [ 5.756326, 48.637004 ], [ 5.760946, 48.63114 ], [ 5.759203, 48.6246 ], [ 5.758376, 48.62129 ], [ 5.760452, 48.621 ], [ 5.764339, 48.619024 ], [ 5.790067, 48.62798 ], [ 5.799433, 48.62693 ], [ 5.803519, 48.625138 ], [ 5.7975, 48.61667 ], [ 5.798026, 48.61356 ], [ 5.793323, 48.60887 ], [ 5.789908, 48.60719 ], [ 5.769398, 48.60842 ], [ 5.764234, 48.60778 ], [ 5.754818, 48.6063 ], [ 5.741515, 48.596664 ], [ 5.722763, 48.592243 ], [ 5.717988, 48.591209 ], [ 5.713341, 48.57668 ], [ 5.714943, 48.5733 ], [ 5.71413, 48.56494 ], [ 5.715484, 48.5623 ], [ 5.725255, 48.55565 ], [ 5.728643, 48.55354 ], [ 5.744353, 48.552431 ], [ 5.757625, 48.54675 ], [ 5.762875, 48.5463 ], [ 5.772728, 48.541899 ], [ 5.776375, 48.54062 ], [ 5.77559, 48.537322 ], [ 5.766914, 48.534203 ], [ 5.761889, 48.524752 ], [ 5.760971, 48.52147 ], [ 5.762777, 48.51614 ], [ 5.76487, 48.49983 ], [ 5.765155, 48.49649 ] ], [ [ 5.42599, 49.48614 ], [ 5.451653, 49.48333 ], [ 5.455555, 49.48094 ], [ 5.456238, 49.484258 ], [ 5.465225, 49.48689 ], [ 5.442003, 49.503618 ], [ 5.43974, 49.500453 ], [ 5.433874, 49.49086 ], [ 5.42599, 49.48614 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "57", "CODE_DEPT": "56", "NOM_DEPT": "MORBIHAN", "CODE_CHF": "260", "NOM_CHF": "VANNES", "X_CHF_LIEU": "2678", "Y_CHF_LIEU": "67440", "X_CENTROID": "2663", "Y_CENTROID": "67663", "CODE_REG": "53", "NOM_REGION": "BRETAGNE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.458489, 47.44812 ], [ -2.468694, 47.44905 ], [ -2.481557, 47.443075 ], [ -2.493777, 47.44938 ], [ -2.497395, 47.45961 ], [ -2.489698, 47.472495 ], [ -2.49957, 47.48877 ], [ -2.494972, 47.494678 ], [ -2.484709, 47.49482 ], [ -2.464253, 47.48513 ], [ -2.448211, 47.493341 ], [ -2.427578, 47.494152 ], [ -2.42294, 47.49253 ], [ -2.420456, 47.49521 ], [ -2.438729, 47.496447 ], [ -2.441534, 47.49902 ], [ -2.46388, 47.50948 ], [ -2.466831, 47.51189 ], [ -2.495759, 47.51631 ], [ -2.499913, 47.51809 ], [ -2.502609, 47.52099 ], [ -2.52068, 47.5261 ], [ -2.535333, 47.525828 ], [ -2.544239, 47.52268 ], [ -2.545112, 47.519163 ], [ -2.556992, 47.51299 ], [ -2.577103, 47.51693 ], [ -2.598006, 47.51695 ], [ -2.623327, 47.50505 ], [ -2.632431, 47.50751 ], [ -2.633557, 47.511 ], [ -2.639799, 47.515993 ], [ -2.658646, 47.517984 ], [ -2.663121, 47.51923 ], [ -2.679118, 47.49452 ], [ -2.711772, 47.504504 ], [ -2.727034, 47.505974 ], [ -2.750088, 47.498528 ], [ -2.780511, 47.49512 ], [ -2.791259, 47.48763 ], [ -2.799895, 47.48708 ], [ -2.80464, 47.48848 ], [ -2.809881, 47.4883 ], [ -2.819352, 47.488575 ], [ -2.847098, 47.49825 ], [ -2.852326, 47.51862 ], [ -2.869388, 47.53043 ], [ -2.872909, 47.533 ], [ -2.886834, 47.537568 ], [ -2.897373, 47.53668 ], [ -2.901166, 47.53771 ], [ -2.900984, 47.541 ], [ -2.910415, 47.543595 ], [ -2.913523, 47.54614 ], [ -2.911144, 47.55643 ], [ -2.908172, 47.55933 ], [ -2.903388, 47.560695 ], [ -2.87795, 47.559175 ], [ -2.869401, 47.550436 ], [ -2.859781, 47.54976 ], [ -2.861502, 47.53958 ], [ -2.853405, 47.53733 ], [ -2.849627, 47.539345 ], [ -2.846089, 47.545498 ], [ -2.830702, 47.545719 ], [ -2.82396, 47.54245 ], [ -2.817, 47.55405 ], [ -2.808345, 47.5511 ], [ -2.802595, 47.541861 ], [ -2.787762, 47.54963 ], [ -2.774172, 47.53984 ], [ -2.75914, 47.53728 ], [ -2.745192, 47.54167 ], [ -2.734749, 47.541604 ], [ -2.728778, 47.54695 ], [ -2.730289, 47.550344 ], [ -2.727757, 47.5619 ], [ -2.718798, 47.569627 ], [ -2.715216, 47.57926 ], [ -2.719365, 47.58885 ], [ -2.718591, 47.59581 ], [ -2.722752, 47.60201 ], [ -2.73862, 47.60314 ], [ -2.769724, 47.61633 ], [ -2.774697, 47.621697 ], [ -2.765331, 47.62211 ], [ -2.740928, 47.615161 ], [ -2.743493, 47.62732 ], [ -2.746323, 47.624597 ], [ -2.753812, 47.62731 ], [ -2.757374, 47.63693 ], [ -2.778346, 47.62974 ], [ -2.777483, 47.62646 ], [ -2.780067, 47.62345 ], [ -2.791483, 47.6177 ], [ -2.811212, 47.62125 ], [ -2.830144, 47.616383 ], [ -2.859252, 47.62228 ], [ -2.866641, 47.61786 ], [ -2.858048, 47.61522 ], [ -2.865807, 47.60676 ], [ -2.861333, 47.60067 ], [ -2.869903, 47.598385 ], [ -2.883425, 47.602893 ], [ -2.888307, 47.60372 ], [ -2.890974, 47.578944 ], [ -2.903282, 47.58408 ], [ -2.910766, 47.59226 ], [ -2.916293, 47.58663 ], [ -2.924126, 47.58676 ], [ -2.919483, 47.59637 ], [ -2.926744, 47.597827 ], [ -2.930471, 47.60434 ], [ -2.939929, 47.593635 ], [ -2.947675, 47.60685 ], [ -2.948285, 47.62081 ], [ -2.940896, 47.625432 ], [ -2.9357, 47.625291 ], [ -2.943379, 47.62913 ], [ -2.956806, 47.62693 ], [ -2.961258, 47.63593 ], [ -2.957925, 47.638248 ], [ -2.96278, 47.63867 ], [ -2.973764, 47.655148 ], [ -2.975514, 47.65777 ], [ -2.977542, 47.66024 ], [ -2.982027, 47.65581 ], [ -2.956512, 47.61844 ], [ -2.966919, 47.60694 ], [ -2.972093, 47.606543 ], [ -2.95736, 47.59677 ], [ -2.962818, 47.59104 ], [ -2.962734, 47.58469 ], [ -2.947008, 47.57564 ], [ -2.937184, 47.567553 ], [ -2.933497, 47.56043 ], [ -2.932742, 47.557236 ], [ -2.937259, 47.55552 ], [ -2.956663, 47.55972 ], [ -2.970619, 47.558585 ], [ -2.973721, 47.57224 ], [ -2.990342, 47.580195 ], [ -2.989331, 47.583668 ], [ -2.995742, 47.58811 ], [ -2.993135, 47.57121 ], [ -3.001932, 47.56795 ], [ -3.009322, 47.572221 ], [ -3.02302, 47.591455 ], [ -3.024005, 47.59131 ], [ -3.026705, 47.5884 ], [ -3.023741, 47.57173 ], [ -3.040635, 47.58309 ], [ -3.046974, 47.578514 ], [ -3.051979, 47.577938 ], [ -3.0548, 47.571409 ], [ -3.070055, 47.571355 ], [ -3.093946, 47.56597 ], [ -3.102456, 47.5739 ], [ -3.095391, 47.57862 ], [ -3.103164, 47.58276 ], [ -3.126464, 47.59509 ], [ -3.129706, 47.585095 ], [ -3.127968, 47.578334 ], [ -3.12002, 47.57407 ], [ -3.126395, 47.564639 ], [ -3.128281, 47.561434 ], [ -3.132344, 47.530758 ], [ -3.126231, 47.514088 ], [ -3.118405, 47.50999 ], [ -3.119632, 47.50314 ], [ -3.116874, 47.49639 ], [ -3.098112, 47.484453 ], [ -3.087621, 47.47234 ], [ -3.102521, 47.472792 ], [ -3.116602, 47.47715 ], [ -3.131873, 47.47641 ], [ -3.135992, 47.47888 ], [ -3.142481, 47.48412 ], [ -3.149312, 47.50077 ], [ -3.151776, 47.50388 ], [ -3.153576, 47.52077 ], [ -3.159455, 47.52645 ], [ -3.142673, 47.533635 ], [ -3.134875, 47.546398 ], [ -3.137325, 47.556453 ], [ -3.138442, 47.55978 ], [ -3.140604, 47.581 ], [ -3.156038, 47.6035 ], [ -3.15828, 47.606719 ], [ -3.196712, 47.62402 ], [ -3.210093, 47.64292 ], [ -3.204461, 47.6487 ], [ -3.208216, 47.662342 ], [ -3.205878, 47.66545 ], [ -3.20752, 47.66864 ], [ -3.186002, 47.682229 ], [ -3.166, 47.681753 ], [ -3.159969, 47.687163 ], [ -3.151085, 47.68931 ], [ -3.151236, 47.6927 ], [ -3.168982, 47.6949 ], [ -3.176776, 47.69431 ], [ -3.195839, 47.688858 ], [ -3.20979, 47.693136 ], [ -3.203675, 47.68163 ], [ -3.214047, 47.67017 ], [ -3.21148, 47.652977 ], [ -3.216734, 47.64819 ], [ -3.272793, 47.679546 ], [ -3.305419, 47.690627 ], [ -3.310338, 47.691842 ], [ -3.336325, 47.695003 ], [ -3.34466, 47.695137 ], [ -3.351467, 47.692329 ], [ -3.355873, 47.68779 ], [ -3.360388, 47.69009 ], [ -3.355863, 47.694311 ], [ -3.351659, 47.6992 ], [ -3.343809, 47.6972 ], [ -3.326245, 47.699992 ], [ -3.312518, 47.695002 ], [ -3.307885, 47.693266 ], [ -3.290004, 47.68761 ], [ -3.280593, 47.688426 ], [ -3.285867, 47.697867 ], [ -3.287864, 47.70096 ], [ -3.306696, 47.703768 ], [ -3.312555, 47.707822 ], [ -3.336301, 47.7076 ], [ -3.340914, 47.708705 ], [ -3.353835, 47.704201 ], [ -3.359706, 47.70911 ], [ -3.346789, 47.71399 ], [ -3.342698, 47.71592 ], [ -3.347396, 47.72524 ], [ -3.344075, 47.731613 ], [ -3.334062, 47.73137 ], [ -3.321599, 47.73642 ], [ -3.315048, 47.74482 ], [ -3.306356, 47.74862 ], [ -3.296612, 47.7683 ], [ -3.286357, 47.769351 ], [ -3.28249, 47.77935 ], [ -3.291163, 47.78743 ], [ -3.283859, 47.79397 ], [ -3.294363, 47.79351 ], [ -3.290919, 47.774288 ], [ -3.312855, 47.7605 ], [ -3.325089, 47.75888 ], [ -3.325834, 47.74872 ], [ -3.333625, 47.744217 ], [ -3.338439, 47.743052 ], [ -3.346595, 47.746221 ], [ -3.351028, 47.75631 ], [ -3.362135, 47.767102 ], [ -3.359902, 47.770266 ], [ -3.367955, 47.77454 ], [ -3.389853, 47.80602 ], [ -3.38629, 47.81573 ], [ -3.38802, 47.823083 ], [ -3.388816, 47.828583 ], [ -3.392376, 47.8224 ], [ -3.387783, 47.81655 ], [ -3.39055, 47.81036 ], [ -3.403915, 47.80859 ], [ -3.391446, 47.803662 ], [ -3.381466, 47.79156 ], [ -3.382253, 47.78461 ], [ -3.370442, 47.77383 ], [ -3.372095, 47.770523 ], [ -3.353981, 47.754362 ], [ -3.352041, 47.74765 ], [ -3.357882, 47.73134 ], [ -3.366687, 47.72853 ], [ -3.367403, 47.725124 ], [ -3.369571, 47.71496 ], [ -3.382551, 47.704494 ], [ -3.391638, 47.70151 ], [ -3.411909, 47.702325 ], [ -3.416112, 47.70035 ], [ -3.429482, 47.703499 ], [ -3.44694, 47.69676 ], [ -3.456736, 47.697786 ], [ -3.493302, 47.72567 ], [ -3.500025, 47.73456 ], [ -3.501593, 47.737859 ], [ -3.507058, 47.74783 ], [ -3.526263, 47.764535 ], [ -3.528987, 47.774931 ], [ -3.529675, 47.778451 ], [ -3.519744, 47.801023 ], [ -3.522424, 47.80745 ], [ -3.533286, 47.81521 ], [ -3.539954, 47.8284 ], [ -3.538146, 47.835505 ], [ -3.523874, 47.84564 ], [ -3.523004, 47.849147 ], [ -3.519274, 47.8487 ], [ -3.518947, 47.83906 ], [ -3.508975, 47.83158 ], [ -3.490984, 47.825064 ], [ -3.485876, 47.82529 ], [ -3.472813, 47.83582 ], [ -3.462754, 47.83693 ], [ -3.457662, 47.836633 ], [ -3.44892, 47.848457 ], [ -3.449854, 47.861328 ], [ -3.42119, 47.86861 ], [ -3.40869, 47.863227 ], [ -3.398383, 47.863104 ], [ -3.403891, 47.868383 ], [ -3.402412, 47.88536 ], [ -3.411356, 47.90481 ], [ -3.406288, 47.917309 ], [ -3.391871, 47.9205 ], [ -3.388025, 47.92704 ], [ -3.400984, 47.941996 ], [ -3.393172, 47.95086 ], [ -3.392807, 47.95407 ], [ -3.401313, 47.960722 ], [ -3.40339, 47.967001 ], [ -3.408436, 47.967258 ], [ -3.412978, 47.97334 ], [ -3.441627, 47.960158 ], [ -3.461307, 47.95761 ], [ -3.463967, 47.947588 ], [ -3.468019, 47.94555 ], [ -3.470864, 47.94826 ], [ -3.479924, 47.950798 ], [ -3.485293, 47.96686 ], [ -3.497449, 47.97673 ], [ -3.502192, 47.97538 ], [ -3.517531, 47.97599 ], [ -3.530788, 47.98621 ], [ -3.545771, 47.98782 ], [ -3.554116, 47.99188 ], [ -3.574363, 47.99059 ], [ -3.581993, 47.98596 ], [ -3.590049, 47.98929 ], [ -3.600203, 47.990129 ], [ -3.613014, 47.9851 ], [ -3.621982, 47.982815 ], [ -3.641041, 47.985793 ], [ -3.649005, 48.006023 ], [ -3.660917, 48.01757 ], [ -3.674599, 48.05492 ], [ -3.701509, 48.064867 ], [ -3.70371, 48.06808 ], [ -3.70381, 48.08468 ], [ -3.698773, 48.09088 ], [ -3.695004, 48.09336 ], [ -3.708042, 48.09815 ], [ -3.727878, 48.095747 ], [ -3.732973, 48.096268 ], [ -3.729698, 48.10283 ], [ -3.732486, 48.112949 ], [ -3.720172, 48.118973 ], [ -3.723829, 48.12439 ], [ -3.71181, 48.13498 ], [ -3.712945, 48.14178 ], [ -3.696177, 48.148607 ], [ -3.696017, 48.15202 ], [ -3.671562, 48.151477 ], [ -3.653281, 48.15622 ], [ -3.625331, 48.169746 ], [ -3.620747, 48.17098 ], [ -3.591673, 48.17683 ], [ -3.56989, 48.18532 ], [ -3.564839, 48.185747 ], [ -3.55792, 48.180931 ], [ -3.553306, 48.17965 ], [ -3.532568, 48.178331 ], [ -3.501416, 48.181328 ], [ -3.496707, 48.182888 ], [ -3.484418, 48.184829 ], [ -3.480454, 48.18586 ], [ -3.470217, 48.179019 ], [ -3.450452, 48.178451 ], [ -3.446269, 48.18034 ], [ -3.445105, 48.18693 ], [ -3.422077, 48.173347 ], [ -3.437932, 48.16028 ], [ -3.433656, 48.1541 ], [ -3.42051, 48.148524 ], [ -3.417596, 48.14564 ], [ -3.408702, 48.14893 ], [ -3.403883, 48.155018 ], [ -3.389662, 48.15357 ], [ -3.374356, 48.162777 ], [ -3.34934, 48.166033 ], [ -3.341953, 48.17081 ], [ -3.336929, 48.171567 ], [ -3.324402, 48.158492 ], [ -3.322894, 48.14963 ], [ -3.318249, 48.1488 ], [ -3.315455, 48.15521 ], [ -3.300754, 48.155021 ], [ -3.291728, 48.15252 ], [ -3.284694, 48.143765 ], [ -3.275336, 48.142197 ], [ -3.271025, 48.14053 ], [ -3.269592, 48.14368 ], [ -3.2569, 48.147321 ], [ -3.252814, 48.14914 ], [ -3.238346, 48.15033 ], [ -3.211561, 48.142456 ], [ -3.214832, 48.151905 ], [ -3.201521, 48.161443 ], [ -3.192268, 48.16387 ], [ -3.183202, 48.161224 ], [ -3.178229, 48.16115 ], [ -3.173944, 48.159354 ], [ -3.161117, 48.16468 ], [ -3.147869, 48.161097 ], [ -3.132714, 48.17393 ], [ -3.130223, 48.17687 ], [ -3.136624, 48.18224 ], [ -3.136108, 48.189165 ], [ -3.129925, 48.19867 ], [ -3.120273, 48.201 ], [ -3.11534, 48.20677 ], [ -3.09757, 48.205578 ], [ -3.094792, 48.20304 ], [ -3.086394, 48.204666 ], [ -3.081694, 48.21003 ], [ -3.076967, 48.2099 ], [ -3.070056, 48.205229 ], [ -3.054889, 48.20647 ], [ -3.035975, 48.20235 ], [ -3.030742, 48.1965 ], [ -3.020859, 48.196706 ], [ -3.016147, 48.197994 ], [ -3.018569, 48.19131 ], [ -3.011584, 48.175161 ], [ -2.998049, 48.16731 ], [ -2.999753, 48.16071 ], [ -2.979469, 48.16132 ], [ -2.968085, 48.16788 ], [ -2.963583, 48.16933 ], [ -2.943871, 48.171702 ], [ -2.896018, 48.163341 ], [ -2.891453, 48.164734 ], [ -2.888056, 48.1621 ], [ -2.877949, 48.150917 ], [ -2.854805, 48.14236 ], [ -2.849797, 48.141211 ], [ -2.815509, 48.14654 ], [ -2.810401, 48.14655 ], [ -2.784964, 48.122615 ], [ -2.78195, 48.120327 ], [ -2.783476, 48.11137 ], [ -2.778113, 48.10608 ], [ -2.775249, 48.08704 ], [ -2.761983, 48.097144 ], [ -2.751404, 48.116509 ], [ -2.748166, 48.113871 ], [ -2.728458, 48.1165 ], [ -2.709032, 48.112915 ], [ -2.703982, 48.112429 ], [ -2.702304, 48.118727 ], [ -2.679521, 48.129499 ], [ -2.676227, 48.13182 ], [ -2.662597, 48.1304 ], [ -2.656567, 48.12128 ], [ -2.651993, 48.119971 ], [ -2.652644, 48.113471 ], [ -2.651812, 48.11061 ], [ -2.652594, 48.10721 ], [ -2.655691, 48.087965 ], [ -2.671327, 48.062907 ], [ -2.667, 48.0567 ], [ -2.668668, 48.04678 ], [ -2.659756, 48.044852 ], [ -2.657516, 48.0424 ], [ -2.660751, 48.037055 ], [ -2.655761, 48.03254 ], [ -2.64629, 48.040087 ], [ -2.643247, 48.03728 ], [ -2.623324, 48.0369 ], [ -2.582922, 48.06334 ], [ -2.580891, 48.06653 ], [ -2.579225, 48.06975 ], [ -2.564496, 48.069192 ], [ -2.553719, 48.07602 ], [ -2.548679, 48.07648 ], [ -2.551781, 48.09575 ], [ -2.546657, 48.10107 ], [ -2.534741, 48.10764 ], [ -2.520902, 48.122141 ], [ -2.514928, 48.131234 ], [ -2.515424, 48.13792 ], [ -2.533234, 48.15367 ], [ -2.534346, 48.15694 ], [ -2.488328, 48.15791 ], [ -2.485405, 48.164552 ], [ -2.460856, 48.16327 ], [ -2.451564, 48.17081 ], [ -2.447034, 48.172519 ], [ -2.420924, 48.173254 ], [ -2.407188, 48.16804 ], [ -2.399673, 48.15508 ], [ -2.380299, 48.143152 ], [ -2.375705, 48.14144 ], [ -2.374972, 48.13874 ], [ -2.374551, 48.1309 ], [ -2.365799, 48.115854 ], [ -2.36211, 48.113614 ], [ -2.357527, 48.111315 ], [ -2.346988, 48.1264 ], [ -2.330118, 48.120361 ], [ -2.322439, 48.12462 ], [ -2.316929, 48.13411 ], [ -2.306935, 48.13576 ], [ -2.292218, 48.132757 ], [ -2.287278, 48.133746 ], [ -2.253986, 48.107197 ], [ -2.255791, 48.09679 ], [ -2.253012, 48.094976 ], [ -2.253629, 48.08981 ], [ -2.24916, 48.08412 ], [ -2.256927, 48.069242 ], [ -2.256118, 48.062866 ], [ -2.23543, 48.06359 ], [ -2.234992, 48.07343 ], [ -2.222408, 48.078995 ], [ -2.18634, 48.081592 ], [ -2.181674, 48.083141 ], [ -2.171766, 48.078166 ], [ -2.16848, 48.076209 ], [ -2.171854, 48.07356 ], [ -2.171431, 48.06319 ], [ -2.19135, 48.05245 ], [ -2.242426, 48.0526 ], [ -2.249688, 48.047713 ], [ -2.252806, 48.045112 ], [ -2.273288, 48.031072 ], [ -2.280018, 48.024 ], [ -2.280539, 48.02114 ], [ -2.28244, 48.01796 ], [ -2.276503, 48.00884 ], [ -2.287311, 48.001734 ], [ -2.28804, 47.99491 ], [ -2.287539, 47.9915 ], [ -2.238197, 47.99933 ], [ -2.219153, 47.994681 ], [ -2.214416, 47.99324 ], [ -2.209813, 47.9948 ], [ -2.191056, 47.98918 ], [ -2.176729, 47.98005 ], [ -2.151741, 47.98361 ], [ -2.142614, 47.98174 ], [ -2.138403, 47.979735 ], [ -2.126572, 47.965615 ], [ -2.122495, 47.96386 ], [ -2.11977, 47.96095 ], [ -2.111211, 47.95908 ], [ -2.108884, 47.95319 ], [ -2.104673, 47.95198 ], [ -2.09806, 47.935717 ], [ -2.078951, 47.91949 ], [ -2.083715, 47.911666 ], [ -2.082017, 47.90892 ], [ -2.08967, 47.90286 ], [ -2.093704, 47.902133 ], [ -2.103623, 47.90039 ], [ -2.112087, 47.892485 ], [ -2.114768, 47.88232 ], [ -2.114176, 47.87883 ], [ -2.099109, 47.86447 ], [ -2.10618, 47.8516 ], [ -2.109451, 47.84884 ], [ -2.099383, 47.84375 ], [ -2.095195, 47.843258 ], [ -2.06932, 47.851884 ], [ -2.05828, 47.86651 ], [ -2.054704, 47.86879 ], [ -2.051378, 47.86018 ], [ -2.050927, 47.857133 ], [ -2.05393, 47.85095 ], [ -2.049442, 47.83786 ], [ -2.040324, 47.83522 ], [ -2.036045, 47.83346 ], [ -2.0452, 47.82226 ], [ -2.04677, 47.81919 ], [ -2.066864, 47.813246 ], [ -2.070464, 47.8114 ], [ -2.070534, 47.80807 ], [ -2.072142, 47.798552 ], [ -2.075998, 47.78918 ], [ -2.095417, 47.77899 ], [ -2.105343, 47.779665 ], [ -2.110098, 47.7786 ], [ -2.111378, 47.77228 ], [ -2.125108, 47.770656 ], [ -2.127329, 47.76455 ], [ -2.12863, 47.7614 ], [ -2.088468, 47.762597 ], [ -2.082389, 47.7505 ], [ -2.067314, 47.75088 ], [ -2.062322, 47.75127 ], [ -2.05986, 47.73831 ], [ -2.105087, 47.73757 ], [ -2.109457, 47.73588 ], [ -2.107391, 47.732748 ], [ -2.128417, 47.72396 ], [ -2.129069, 47.71756 ], [ -2.119132, 47.70971 ], [ -2.124075, 47.6929 ], [ -2.122663, 47.68267 ], [ -2.107481, 47.67771 ], [ -2.10385, 47.67619 ], [ -2.103234, 47.66599 ], [ -2.107446, 47.65979 ], [ -2.110371, 47.657015 ], [ -2.112425, 47.64754 ], [ -2.095004, 47.643752 ], [ -2.095198, 47.640469 ], [ -2.103979, 47.6381 ], [ -2.103189, 47.63486 ], [ -2.097036, 47.63136 ], [ -2.086555, 47.623745 ], [ -2.084146, 47.609959 ], [ -2.0853, 47.606536 ], [ -2.086481, 47.603255 ], [ -2.102524, 47.5953 ], [ -2.100458, 47.578858 ], [ -2.105064, 47.57754 ], [ -2.103211, 47.575166 ], [ -2.096731, 47.57263 ], [ -2.0975, 47.569237 ], [ -2.103892, 47.54911 ], [ -2.097167, 47.54022 ], [ -2.098852, 47.533449 ], [ -2.14396, 47.524961 ], [ -2.148712, 47.52356 ], [ -2.155171, 47.518728 ], [ -2.153629, 47.50827 ], [ -2.155255, 47.497805 ], [ -2.157796, 47.49475 ], [ -2.166233, 47.49088 ], [ -2.186385, 47.49323 ], [ -2.189112, 47.49938 ], [ -2.185606, 47.509068 ], [ -2.198455, 47.51113 ], [ -2.203241, 47.5105 ], [ -2.216832, 47.507059 ], [ -2.244284, 47.49361 ], [ -2.248656, 47.4953 ], [ -2.261677, 47.50047 ], [ -2.255948, 47.50935 ], [ -2.259526, 47.51175 ], [ -2.279494, 47.510881 ], [ -2.29745, 47.515506 ], [ -2.298099, 47.515476 ], [ -2.29705, 47.512014 ], [ -2.30048, 47.498136 ], [ -2.313426, 47.483065 ], [ -2.316133, 47.46251 ], [ -2.355923, 47.455979 ], [ -2.36721, 47.46319 ], [ -2.377584, 47.46276 ], [ -2.395334, 47.45657 ], [ -2.410409, 47.45883 ], [ -2.420088, 47.4669 ], [ -2.423027, 47.477122 ], [ -2.427617, 47.475789 ], [ -2.44035, 47.465819 ], [ -2.452868, 47.460964 ], [ -2.458489, 47.44812 ] ] ], [ [ [ -3.243707, 47.38696 ], [ -3.233801, 47.37909 ], [ -3.219513, 47.37637 ], [ -3.218725, 47.369479 ], [ -3.215431, 47.37201 ], [ -3.205428, 47.372069 ], [ -3.194052, 47.36589 ], [ -3.155845, 47.36083 ], [ -3.141984, 47.33163 ], [ -3.124187, 47.32629 ], [ -3.121282, 47.323411 ], [ -3.116104, 47.323766 ], [ -3.099541, 47.31581 ], [ -3.068419, 47.316268 ], [ -3.059785, 47.308603 ], [ -3.077575, 47.287067 ], [ -3.090227, 47.281048 ], [ -3.113883, 47.288009 ], [ -3.118963, 47.288797 ], [ -3.134439, 47.287663 ], [ -3.153145, 47.29351 ], [ -3.15807, 47.292359 ], [ -3.173567, 47.30073 ], [ -3.187089, 47.29563 ], [ -3.202025, 47.29703 ], [ -3.216736, 47.29432 ], [ -3.237325, 47.304138 ], [ -3.246508, 47.31265 ], [ -3.239201, 47.32139 ], [ -3.235445, 47.32382 ], [ -3.251836, 47.336805 ], [ -3.260949, 47.35692 ], [ -3.259308, 47.36744 ], [ -3.251751, 47.37193 ], [ -3.24861, 47.385798 ], [ -3.243707, 47.38696 ] ] ], [ [ [ -3.421794, 47.62 ], [ -3.427389, 47.623746 ], [ -3.43258, 47.62436 ], [ -3.438506, 47.62775 ], [ -3.446994, 47.62359 ], [ -3.462408, 47.621267 ], [ -3.473157, 47.6264 ], [ -3.483301, 47.628407 ], [ -3.486074, 47.631323 ], [ -3.493356, 47.63329 ], [ -3.505973, 47.639779 ], [ -3.513689, 47.646925 ], [ -3.511145, 47.65137 ], [ -3.498153, 47.653338 ], [ -3.495109, 47.653254 ], [ -3.464792, 47.648175 ], [ -3.447714, 47.643666 ], [ -3.437168, 47.64387 ], [ -3.429711, 47.64209 ], [ -3.416594, 47.63338 ], [ -3.421312, 47.62176 ], [ -3.421794, 47.62 ] ] ], [ [ [ -2.948152, 47.37334 ], [ -2.955677, 47.37803 ], [ -2.958185, 47.38289 ], [ -2.973536, 47.38561 ], [ -2.984453, 47.393374 ], [ -2.991791, 47.39479 ], [ -2.992648, 47.398287 ], [ -2.990239, 47.40052 ], [ -2.969309, 47.393603 ], [ -2.953707, 47.39151 ], [ -2.94148, 47.393216 ], [ -2.950713, 47.38765 ], [ -2.953572, 47.38288 ], [ -2.949234, 47.378655 ], [ -2.948443, 47.37512 ], [ -2.948152, 47.37334 ] ] ], [ [ [ -2.859561, 47.55989 ], [ -2.861501, 47.5687 ], [ -2.852306, 47.599396 ], [ -2.847033, 47.599868 ], [ -2.840082, 47.60499 ], [ -2.838436, 47.60423 ], [ -2.840674, 47.597489 ], [ -2.839499, 47.59395 ], [ -2.826044, 47.58975 ], [ -2.837811, 47.588525 ], [ -2.845562, 47.589247 ], [ -2.847884, 47.58828 ], [ -2.849508, 47.58667 ], [ -2.854217, 47.5733 ], [ -2.851517, 47.56644 ], [ -2.858295, 47.564643 ], [ -2.859561, 47.55989 ] ] ], [ [ [ -2.880513, 47.331253 ], [ -2.886577, 47.33436 ], [ -2.888781, 47.337505 ], [ -2.88986, 47.34599 ], [ -2.883698, 47.343089 ], [ -2.881138, 47.34325 ], [ -2.87352, 47.34329 ], [ -2.866691, 47.34848 ], [ -2.864127, 47.34848 ], [ -2.861929, 47.34186 ], [ -2.862297, 47.34013 ], [ -2.865114, 47.337233 ], [ -2.880513, 47.331253 ] ] ], [ [ [ -2.80961, 47.57826 ], [ -2.811918, 47.579124 ], [ -2.812992, 47.58421 ], [ -2.808397, 47.58586 ], [ -2.809073, 47.592073 ], [ -2.796705, 47.598574 ], [ -2.794327, 47.603458 ], [ -2.787506, 47.596802 ], [ -2.797822, 47.58946 ], [ -2.807719, 47.57951 ], [ -2.80961, 47.57826 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "58", "CODE_DEPT": "57", "NOM_DEPT": "MOSELLE", "CODE_CHF": "463", "NOM_CHF": "METZ", "X_CHF_LIEU": "9318", "Y_CHF_LIEU": "68957", "X_CENTROID": "9677", "Y_CENTROID": "68881", "CODE_REG": "41", "NOM_REGION": "LORRAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.635286, 49.05417 ], [ 7.639294, 49.048116 ], [ 7.628348, 49.03678 ], [ 7.626239, 49.033722 ], [ 7.617915, 49.030386 ], [ 7.61065, 49.02201 ], [ 7.606889, 49.019911 ], [ 7.608195, 49.010413 ], [ 7.588722, 48.99103 ], [ 7.591159, 48.988098 ], [ 7.592336, 48.98485 ], [ 7.589173, 48.98205 ], [ 7.582392, 48.97266 ], [ 7.583559, 48.96604 ], [ 7.579926, 48.96161 ], [ 7.553536, 48.94239 ], [ 7.556685, 48.936198 ], [ 7.536256, 48.933506 ], [ 7.527765, 48.94197 ], [ 7.513191, 48.94325 ], [ 7.508411, 48.94364 ], [ 7.487019, 48.950061 ], [ 7.477995, 48.961495 ], [ 7.45365, 48.964879 ], [ 7.451631, 48.96797 ], [ 7.447472, 48.966046 ], [ 7.404511, 48.9582 ], [ 7.392312, 48.95272 ], [ 7.379918, 48.951197 ], [ 7.375698, 48.95142 ], [ 7.368109, 48.95355 ], [ 7.363903, 48.95525 ], [ 7.355124, 48.954443 ], [ 7.350815, 48.95279 ], [ 7.343367, 48.94843 ], [ 7.333561, 48.948246 ], [ 7.326853, 48.94338 ], [ 7.322678, 48.945298 ], [ 7.30646, 48.953357 ], [ 7.305475, 48.956643 ], [ 7.290203, 48.956516 ], [ 7.290433, 48.967089 ], [ 7.293927, 48.97262 ], [ 7.238142, 48.9877 ], [ 7.214241, 48.98116 ], [ 7.209311, 48.980088 ], [ 7.206959, 48.98296 ], [ 7.195847, 48.99377 ], [ 7.186213, 48.99376 ], [ 7.183774, 48.99644 ], [ 7.17359, 49.00611 ], [ 7.169316, 49.005042 ], [ 7.161607, 49.00193 ], [ 7.160682, 49.00524 ], [ 7.130174, 49.00541 ], [ 7.122364, 49.02322 ], [ 7.122979, 49.02648 ], [ 7.116375, 49.031083 ], [ 7.119477, 49.03722 ], [ 7.116612, 49.03976 ], [ 7.106358, 49.04535 ], [ 7.106797, 49.04864 ], [ 7.101874, 49.06121 ], [ 7.113838, 49.06471 ], [ 7.117294, 49.06681 ], [ 7.099342, 49.07789 ], [ 7.089116, 49.07039 ], [ 7.074754, 49.07213 ], [ 7.071032, 49.06975 ], [ 7.0686, 49.06339 ], [ 7.072338, 49.057247 ], [ 7.073994, 49.054787 ], [ 7.07866, 49.050361 ], [ 7.057835, 49.033158 ], [ 7.054913, 49.03063 ], [ 7.047917, 49.01591 ], [ 7.054464, 49.01139 ], [ 7.052581, 49.00849 ], [ 7.046848, 48.99991 ], [ 7.033682, 48.98985 ], [ 7.038662, 48.97666 ], [ 7.027888, 48.96948 ], [ 7.032219, 48.956049 ], [ 7.0288, 48.956038 ], [ 7.025378, 48.95615 ], [ 7.021751, 48.956995 ], [ 7.018077, 48.95776 ], [ 6.992743, 48.96027 ], [ 6.988544, 48.95883 ], [ 6.987805, 48.95276 ], [ 6.986481, 48.949764 ], [ 6.986381, 48.946859 ], [ 6.981781, 48.94194 ], [ 6.977854, 48.932782 ], [ 6.965828, 48.92652 ], [ 6.960851, 48.92557 ], [ 6.948243, 48.931394 ], [ 6.946783, 48.93466 ], [ 6.944402, 48.9348 ], [ 6.941442, 48.92459 ], [ 6.955073, 48.920039 ], [ 6.963487, 48.90728 ], [ 6.957465, 48.89421 ], [ 6.972319, 48.890754 ], [ 6.982702, 48.891543 ], [ 6.987974, 48.891368 ], [ 7.02655, 48.879711 ], [ 7.05501, 48.86492 ], [ 7.051672, 48.863771 ], [ 7.050544, 48.85893 ], [ 7.079252, 48.863896 ], [ 7.089153, 48.86309 ], [ 7.094146, 48.86288 ], [ 7.098772, 48.85421 ], [ 7.092468, 48.84988 ], [ 7.08838, 48.848392 ], [ 7.085183, 48.84747 ], [ 7.0817, 48.84759 ], [ 7.057126, 48.84741 ], [ 7.052063, 48.84688 ], [ 7.052897, 48.83867 ], [ 7.054315, 48.83602 ], [ 7.049695, 48.82345 ], [ 7.047117, 48.82064 ], [ 7.049769, 48.81773 ], [ 7.052435, 48.81484 ], [ 7.080902, 48.81356 ], [ 7.08504, 48.811908 ], [ 7.087958, 48.80617 ], [ 7.070561, 48.80128 ], [ 7.066783, 48.79933 ], [ 7.07513, 48.78805 ], [ 7.079244, 48.78629 ], [ 7.085536, 48.79162 ], [ 7.099603, 48.795613 ], [ 7.104562, 48.79645 ], [ 7.108504, 48.797865 ], [ 7.11715, 48.79894 ], [ 7.12201, 48.79971 ], [ 7.126562, 48.80107 ], [ 7.121704, 48.807055 ], [ 7.129735, 48.81565 ], [ 7.139809, 48.817497 ], [ 7.143224, 48.820135 ], [ 7.147387, 48.82224 ], [ 7.142117, 48.83555 ], [ 7.148854, 48.8446 ], [ 7.173508, 48.842019 ], [ 7.180837, 48.84901 ], [ 7.184904, 48.850374 ], [ 7.194087, 48.83902 ], [ 7.187199, 48.83428 ], [ 7.198574, 48.82782 ], [ 7.203428, 48.82696 ], [ 7.211982, 48.82613 ], [ 7.216079, 48.8208 ], [ 7.219991, 48.819087 ], [ 7.217749, 48.828109 ], [ 7.227, 48.82848 ], [ 7.245313, 48.81734 ], [ 7.254469, 48.81991 ], [ 7.258105, 48.822174 ], [ 7.260133, 48.82029 ], [ 7.262461, 48.81857 ], [ 7.25826, 48.81757 ], [ 7.245235, 48.81003 ], [ 7.249213, 48.80781 ], [ 7.257857, 48.80412 ], [ 7.260851, 48.79755 ], [ 7.26406, 48.799121 ], [ 7.270146, 48.802506 ], [ 7.27423, 48.80044 ], [ 7.290899, 48.79391 ], [ 7.290695, 48.786296 ], [ 7.308377, 48.767536 ], [ 7.31334, 48.76724 ], [ 7.311008, 48.764081 ], [ 7.292018, 48.75221 ], [ 7.286137, 48.73152 ], [ 7.268353, 48.714201 ], [ 7.264726, 48.70046 ], [ 7.262073, 48.697798 ], [ 7.242262, 48.69211 ], [ 7.245176, 48.689637 ], [ 7.257236, 48.67285 ], [ 7.261696, 48.6715 ], [ 7.266276, 48.662301 ], [ 7.271164, 48.66238 ], [ 7.304356, 48.66021 ], [ 7.290602, 48.64556 ], [ 7.272375, 48.633446 ], [ 7.276136, 48.62426 ], [ 7.256898, 48.599923 ], [ 7.261855, 48.594421 ], [ 7.265139, 48.59172 ], [ 7.260833, 48.590044 ], [ 7.256282, 48.58868 ], [ 7.253572, 48.58624 ], [ 7.241234, 48.57374 ], [ 7.221387, 48.558066 ], [ 7.220273, 48.554683 ], [ 7.206436, 48.55254 ], [ 7.201361, 48.552704 ], [ 7.193254, 48.54924 ], [ 7.189533, 48.540042 ], [ 7.187101, 48.537272 ], [ 7.170802, 48.531386 ], [ 7.168499, 48.528693 ], [ 7.16791, 48.5276 ], [ 7.162675, 48.52811 ], [ 7.1527, 48.530426 ], [ 7.137943, 48.52835 ], [ 7.115674, 48.5368 ], [ 7.091701, 48.5298 ], [ 7.07936, 48.53642 ], [ 7.074798, 48.537232 ], [ 7.057235, 48.53919 ], [ 7.062191, 48.540132 ], [ 7.082511, 48.541696 ], [ 7.057114, 48.55146 ], [ 7.044708, 48.56228 ], [ 7.034245, 48.580418 ], [ 7.029071, 48.58022 ], [ 7.019187, 48.580901 ], [ 6.995388, 48.593854 ], [ 7.015156, 48.60409 ], [ 7.008742, 48.611841 ], [ 7.005991, 48.60944 ], [ 6.993192, 48.60991 ], [ 6.991258, 48.609493 ], [ 6.987682, 48.61211 ], [ 6.961836, 48.60872 ], [ 6.957241, 48.60974 ], [ 6.939742, 48.61506 ], [ 6.942476, 48.618 ], [ 6.930007, 48.63555 ], [ 6.925352, 48.63472 ], [ 6.918856, 48.63053 ], [ 6.917507, 48.624318 ], [ 6.905394, 48.61983 ], [ 6.901083, 48.621589 ], [ 6.893295, 48.625005 ], [ 6.857471, 48.620939 ], [ 6.847891, 48.62384 ], [ 6.842835, 48.629725 ], [ 6.842629, 48.63248 ], [ 6.839311, 48.63743 ], [ 6.834472, 48.64371 ], [ 6.813799, 48.64682 ], [ 6.782626, 48.642721 ], [ 6.780104, 48.644674 ], [ 6.774114, 48.647917 ], [ 6.776732, 48.65049 ], [ 6.777492, 48.653474 ], [ 6.763951, 48.6521 ], [ 6.762831, 48.65542 ], [ 6.760279, 48.65812 ], [ 6.759914, 48.669672 ], [ 6.75513, 48.66988 ], [ 6.752396, 48.66722 ], [ 6.738556, 48.667588 ], [ 6.726081, 48.664422 ], [ 6.722859, 48.66709 ], [ 6.708674, 48.67064 ], [ 6.704312, 48.672395 ], [ 6.694358, 48.673136 ], [ 6.688766, 48.68213 ], [ 6.668962, 48.667339 ], [ 6.666421, 48.67104 ], [ 6.670491, 48.673046 ], [ 6.670752, 48.686436 ], [ 6.674735, 48.69183 ], [ 6.661575, 48.70608 ], [ 6.657733, 48.70774 ], [ 6.642411, 48.702432 ], [ 6.637589, 48.70312 ], [ 6.629055, 48.71107 ], [ 6.616654, 48.71471 ], [ 6.598966, 48.71569 ], [ 6.59851, 48.71876 ], [ 6.589493, 48.73248 ], [ 6.584287, 48.73317 ], [ 6.564859, 48.749425 ], [ 6.562184, 48.75611 ], [ 6.547622, 48.75462 ], [ 6.543982, 48.753756 ], [ 6.538634, 48.75139 ], [ 6.53421, 48.749598 ], [ 6.519434, 48.75275 ], [ 6.511382, 48.74884 ], [ 6.506608, 48.74849 ], [ 6.507983, 48.754369 ], [ 6.490392, 48.76496 ], [ 6.485482, 48.76587 ], [ 6.461365, 48.767326 ], [ 6.453603, 48.765894 ], [ 6.454219, 48.769234 ], [ 6.451275, 48.77908 ], [ 6.44207, 48.78098 ], [ 6.43311, 48.7891 ], [ 6.42867, 48.78767 ], [ 6.394874, 48.77476 ], [ 6.388744, 48.78061 ], [ 6.383904, 48.780763 ], [ 6.370878, 48.7847 ], [ 6.366691, 48.78293 ], [ 6.358564, 48.779633 ], [ 6.355453, 48.79204 ], [ 6.354861, 48.79534 ], [ 6.347483, 48.803934 ], [ 6.357369, 48.81058 ], [ 6.353939, 48.812989 ], [ 6.339339, 48.81103 ], [ 6.336054, 48.81294 ], [ 6.333754, 48.82046 ], [ 6.331522, 48.82327 ], [ 6.308785, 48.82115 ], [ 6.30468, 48.82241 ], [ 6.301116, 48.824253 ], [ 6.318345, 48.829357 ], [ 6.331992, 48.825728 ], [ 6.339647, 48.83349 ], [ 6.334824, 48.83461 ], [ 6.329999, 48.83571 ], [ 6.31625, 48.83692 ], [ 6.307404, 48.83376 ], [ 6.288014, 48.84367 ], [ 6.285472, 48.849429 ], [ 6.295087, 48.85179 ], [ 6.300111, 48.85252 ], [ 6.299103, 48.85533 ], [ 6.297463, 48.86648 ], [ 6.305417, 48.86369 ], [ 6.312126, 48.86642 ], [ 6.310919, 48.87276 ], [ 6.308081, 48.87534 ], [ 6.308444, 48.87826 ], [ 6.297384, 48.88247 ], [ 6.311501, 48.8922 ], [ 6.321088, 48.89463 ], [ 6.325839, 48.89593 ], [ 6.327517, 48.904873 ], [ 6.324395, 48.90751 ], [ 6.310847, 48.91175 ], [ 6.311181, 48.92107 ], [ 6.306997, 48.9195 ], [ 6.2884, 48.916323 ], [ 6.287794, 48.92769 ], [ 6.283947, 48.92842 ], [ 6.277034, 48.927966 ], [ 6.271237, 48.93331 ], [ 6.262562, 48.933509 ], [ 6.258243, 48.93173 ], [ 6.247297, 48.92488 ], [ 6.237097, 48.92493 ], [ 6.234795, 48.92789 ], [ 6.225117, 48.9293 ], [ 6.220643, 48.93823 ], [ 6.205768, 48.939588 ], [ 6.205897, 48.93769 ], [ 6.200807, 48.93713 ], [ 6.175165, 48.936236 ], [ 6.170431, 48.94216 ], [ 6.165301, 48.942041 ], [ 6.161467, 48.943699 ], [ 6.150023, 48.939285 ], [ 6.149731, 48.93332 ], [ 6.146544, 48.93258 ], [ 6.141559, 48.93305 ], [ 6.125142, 48.9399 ], [ 6.128252, 48.94936 ], [ 6.123214, 48.949418 ], [ 6.124748, 48.95607 ], [ 6.114238, 48.967227 ], [ 6.099614, 48.96885 ], [ 6.094718, 48.96789 ], [ 6.081323, 48.96305 ], [ 6.079195, 48.96474 ], [ 6.077312, 48.967785 ], [ 6.071029, 48.972725 ], [ 6.073834, 48.979015 ], [ 6.064765, 48.98101 ], [ 6.06144, 48.978873 ], [ 6.043435, 48.97748 ], [ 6.041341, 48.98046 ], [ 6.033896, 48.98478 ], [ 6.043815, 48.98909 ], [ 6.0432, 49.001925 ], [ 6.044965, 49.008935 ], [ 6.040883, 49.01491 ], [ 6.030663, 49.01701 ], [ 6.019487, 49.02456 ], [ 6.012649, 49.03735 ], [ 6.005445, 49.034425 ], [ 6.001616, 49.03519 ], [ 5.994968, 49.038097 ], [ 5.992056, 49.03981 ], [ 5.98541, 49.04205 ], [ 5.981175, 49.043389 ], [ 5.972448, 49.04156 ], [ 5.966914, 49.04651 ], [ 5.957792, 49.047378 ], [ 5.955657, 49.05003 ], [ 5.951719, 49.061663 ], [ 5.95037, 49.064908 ], [ 5.936821, 49.06889 ], [ 5.935207, 49.07208 ], [ 5.93473, 49.0755 ], [ 5.941603, 49.08054 ], [ 5.925645, 49.092901 ], [ 5.927818, 49.0996 ], [ 5.931603, 49.109104 ], [ 5.947825, 49.10878 ], [ 5.967699, 49.108336 ], [ 5.972667, 49.10822 ], [ 5.993738, 49.10787 ], [ 6.002705, 49.11078 ], [ 6.004983, 49.1139 ], [ 6.002144, 49.116469 ], [ 5.990612, 49.12754 ], [ 5.993989, 49.13356 ], [ 5.986154, 49.137966 ], [ 5.984418, 49.14116 ], [ 5.982262, 49.14397 ], [ 5.994304, 49.14873 ], [ 5.990328, 49.15445 ], [ 5.999566, 49.15575 ], [ 6.006477, 49.15334 ], [ 6.010886, 49.15368 ], [ 6.019092, 49.161958 ], [ 6.027936, 49.16492 ], [ 6.031132, 49.16749 ], [ 6.017339, 49.17189 ], [ 6.005027, 49.182715 ], [ 5.985181, 49.184838 ], [ 5.982116, 49.18715 ], [ 5.979529, 49.19299 ], [ 5.978771, 49.19486 ], [ 5.986235, 49.201438 ], [ 5.98441, 49.207412 ], [ 5.987627, 49.209617 ], [ 5.995509, 49.20749 ], [ 6.003519, 49.20897 ], [ 5.999638, 49.210956 ], [ 6.009565, 49.221792 ], [ 6.014515, 49.221875 ], [ 6.030761, 49.23308 ], [ 6.027876, 49.23331 ], [ 6.025889, 49.24349 ], [ 6.029172, 49.250036 ], [ 6.007922, 49.25941 ], [ 6.009836, 49.26608 ], [ 6.007822, 49.27043 ], [ 6.009838, 49.27247 ], [ 6.000446, 49.27553 ], [ 6.001631, 49.285747 ], [ 6.002952, 49.28907 ], [ 6.005021, 49.30972 ], [ 5.997125, 49.31424 ], [ 5.988107, 49.307492 ], [ 5.985221, 49.30517 ], [ 5.969991, 49.318536 ], [ 5.949495, 49.32806 ], [ 5.943314, 49.336946 ], [ 5.943394, 49.34029 ], [ 5.962819, 49.34486 ], [ 5.973218, 49.34445 ], [ 5.978376, 49.34486 ], [ 5.973406, 49.345321 ], [ 5.963582, 49.34662 ], [ 5.956124, 49.361595 ], [ 5.95104, 49.362034 ], [ 5.941007, 49.36071 ], [ 5.933406, 49.369443 ], [ 5.924782, 49.37305 ], [ 5.935039, 49.38094 ], [ 5.929677, 49.40148 ], [ 5.919901, 49.40458 ], [ 5.91579, 49.405965 ], [ 5.91184, 49.40753 ], [ 5.915632, 49.409513 ], [ 5.919719, 49.41814 ], [ 5.928285, 49.42647 ], [ 5.937777, 49.42873 ], [ 5.942283, 49.430355 ], [ 5.940797, 49.4338 ], [ 5.930767, 49.446554 ], [ 5.941863, 49.452446 ], [ 5.934477, 49.47171 ], [ 5.939797, 49.47738 ], [ 5.935571, 49.47829 ], [ 5.929609, 49.48535 ], [ 5.925328, 49.48484 ], [ 5.917527, 49.48262 ], [ 5.912982, 49.482078 ], [ 5.904673, 49.48453 ], [ 5.897027, 49.481138 ], [ 5.898435, 49.48431 ], [ 5.893402, 49.49692 ], [ 5.911798, 49.501631 ], [ 5.931451, 49.498774 ], [ 5.9362, 49.49995 ], [ 5.945434, 49.49964 ], [ 5.951237, 49.49489 ], [ 5.955345, 49.49333 ], [ 5.970201, 49.490222 ], [ 5.974236, 49.46641 ], [ 5.985665, 49.45955 ], [ 5.979316, 49.454049 ], [ 5.982054, 49.451067 ], [ 6.001039, 49.45558 ], [ 6.025686, 49.45355 ], [ 6.027222, 49.45034 ], [ 6.037181, 49.44868 ], [ 6.042151, 49.447809 ], [ 6.056344, 49.465405 ], [ 6.076592, 49.46361 ], [ 6.086264, 49.45576 ], [ 6.095623, 49.452849 ], [ 6.100813, 49.452887 ], [ 6.099041, 49.463321 ], [ 6.102919, 49.469734 ], [ 6.122159, 49.4745 ], [ 6.129603, 49.491138 ], [ 6.139986, 49.48955 ], [ 6.144612, 49.48774 ], [ 6.157537, 49.49316 ], [ 6.156764, 49.502837 ], [ 6.175179, 49.508733 ], [ 6.179634, 49.50706 ], [ 6.211439, 49.506311 ], [ 6.216733, 49.506819 ], [ 6.217001, 49.509987 ], [ 6.226394, 49.51 ], [ 6.235639, 49.50807 ], [ 6.242694, 49.51218 ], [ 6.276154, 49.503536 ], [ 6.279483, 49.49748 ], [ 6.280569, 49.49416 ], [ 6.294515, 49.487026 ], [ 6.299231, 49.48821 ], [ 6.295625, 49.48172 ], [ 6.319861, 49.477096 ], [ 6.331354, 49.469962 ], [ 6.333778, 49.46689 ], [ 6.343426, 49.46838 ], [ 6.34711, 49.46603 ], [ 6.351248, 49.46704 ], [ 6.360963, 49.461299 ], [ 6.364391, 49.45949 ], [ 6.368857, 49.45982 ], [ 6.367599, 49.466539 ], [ 6.4032, 49.46596 ], [ 6.422407, 49.476014 ], [ 6.431843, 49.47446 ], [ 6.436886, 49.46894 ], [ 6.440433, 49.466669 ], [ 6.45394, 49.463891 ], [ 6.468186, 49.46473 ], [ 6.481532, 49.454923 ], [ 6.484899, 49.45247 ], [ 6.500555, 49.449723 ], [ 6.530296, 49.435292 ], [ 6.535419, 49.434161 ], [ 6.554641, 49.41905 ], [ 6.538352, 49.41101 ], [ 6.540528, 49.40114 ], [ 6.551364, 49.39714 ], [ 6.55234, 49.394095 ], [ 6.5846, 49.384433 ], [ 6.585932, 49.3709 ], [ 6.596177, 49.369234 ], [ 6.59857, 49.36305 ], [ 6.587068, 49.351599 ], [ 6.574899, 49.358051 ], [ 6.569627, 49.357703 ], [ 6.564998, 49.356103 ], [ 6.56538, 49.34929 ], [ 6.577573, 49.338419 ], [ 6.578704, 49.335083 ], [ 6.592112, 49.33364 ], [ 6.590861, 49.32498 ], [ 6.588885, 49.3221 ], [ 6.615992, 49.302684 ], [ 6.628629, 49.29863 ], [ 6.631762, 49.29603 ], [ 6.640485, 49.29369 ], [ 6.652022, 49.28425 ], [ 6.65323, 49.28112 ], [ 6.667846, 49.28044 ], [ 6.660753, 49.26072 ], [ 6.66153, 49.25733 ], [ 6.665016, 49.254724 ], [ 6.680232, 49.254287 ], [ 6.688785, 49.246223 ], [ 6.685103, 49.24374 ], [ 6.692921, 49.217549 ], [ 6.697286, 49.21557 ], [ 6.722115, 49.21942 ], [ 6.730623, 49.206712 ], [ 6.712838, 49.189558 ], [ 6.71753, 49.17976 ], [ 6.719747, 49.17659 ], [ 6.726909, 49.17178 ], [ 6.730153, 49.16917 ], [ 6.743225, 49.164298 ], [ 6.747885, 49.16592 ], [ 6.773788, 49.167645 ], [ 6.784134, 49.16815 ], [ 6.829632, 49.15267 ], [ 6.834463, 49.15138 ], [ 6.840668, 49.1542 ], [ 6.843841, 49.15552 ], [ 6.847701, 49.15741 ], [ 6.84531, 49.160142 ], [ 6.844708, 49.172916 ], [ 6.858744, 49.17575 ], [ 6.860935, 49.17862 ], [ 6.861287, 49.18204 ], [ 6.85014, 49.19352 ], [ 6.851165, 49.20046 ], [ 6.841082, 49.208586 ], [ 6.840444, 49.21423 ], [ 6.858445, 49.22163 ], [ 6.879987, 49.21259 ], [ 6.884808, 49.21111 ], [ 6.894288, 49.2102 ], [ 6.924296, 49.22308 ], [ 6.934805, 49.22213 ], [ 6.940357, 49.216549 ], [ 6.943567, 49.21377 ], [ 6.95021, 49.20864 ], [ 6.953543, 49.206062 ], [ 6.957561, 49.20381 ], [ 6.976575, 49.20864 ], [ 6.996648, 49.19746 ], [ 6.998807, 49.194287 ], [ 7.008091, 49.19374 ], [ 7.013078, 49.18863 ], [ 7.01544, 49.19127 ], [ 7.020264, 49.192727 ], [ 7.033706, 49.188262 ], [ 7.028266, 49.17131 ], [ 7.046368, 49.1319 ], [ 7.045659, 49.12845 ], [ 7.045846, 49.118382 ], [ 7.057568, 49.11254 ], [ 7.067036, 49.115227 ], [ 7.071995, 49.124747 ], [ 7.085937, 49.12915 ], [ 7.089676, 49.131502 ], [ 7.08047, 49.142474 ], [ 7.082145, 49.153436 ], [ 7.103087, 49.15461 ], [ 7.110839, 49.15042 ], [ 7.103631, 49.14538 ], [ 7.104239, 49.13868 ], [ 7.124926, 49.1412 ], [ 7.130931, 49.135628 ], [ 7.131685, 49.13218 ], [ 7.135634, 49.12975 ], [ 7.158799, 49.12077 ], [ 7.164081, 49.126922 ], [ 7.184878, 49.12963 ], [ 7.196066, 49.12208 ], [ 7.198332, 49.115178 ], [ 7.201847, 49.117594 ], [ 7.21111, 49.1249 ], [ 7.245446, 49.12971 ], [ 7.249111, 49.127395 ], [ 7.279325, 49.12327 ], [ 7.283683, 49.11758 ], [ 7.2934, 49.11516 ], [ 7.302035, 49.12151 ], [ 7.304114, 49.12408 ], [ 7.313686, 49.136539 ], [ 7.325955, 49.14345 ], [ 7.362775, 49.14518 ], [ 7.362421, 49.14848 ], [ 7.366178, 49.172012 ], [ 7.376353, 49.174272 ], [ 7.381506, 49.175273 ], [ 7.445344, 49.184718 ], [ 7.446641, 49.18287 ], [ 7.434909, 49.1779 ], [ 7.443693, 49.17111 ], [ 7.433547, 49.167775 ], [ 7.4386, 49.16441 ], [ 7.450558, 49.168209 ], [ 7.456798, 49.164133 ], [ 7.475833, 49.168766 ], [ 7.491343, 49.168512 ], [ 7.495109, 49.15843 ], [ 7.503565, 49.150531 ], [ 7.489804, 49.14002 ], [ 7.489583, 49.136528 ], [ 7.498562, 49.13356 ], [ 7.504947, 49.124138 ], [ 7.51783, 49.118773 ], [ 7.521466, 49.10888 ], [ 7.52386, 49.105821 ], [ 7.531179, 49.09713 ], [ 7.55886, 49.082379 ], [ 7.568486, 49.079906 ], [ 7.604695, 49.08175 ], [ 7.630777, 49.07074 ], [ 7.632308, 49.057032 ], [ 7.635286, 49.05417 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "59", "CODE_DEPT": "58", "NOM_DEPT": "NIEVRE", "CODE_CHF": "194", "NOM_CHF": "NEVERS", "X_CHF_LIEU": "7119", "Y_CHF_LIEU": "66547", "X_CENTROID": "7382", "Y_CENTROID": "66684", "CODE_REG": "26", "NOM_REGION": "BOURGOGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.629424, 46.749459 ], [ 3.626404, 46.752267 ], [ 3.601826, 46.75213 ], [ 3.596399, 46.76499 ], [ 3.592562, 46.762801 ], [ 3.578083, 46.74927 ], [ 3.595819, 46.725291 ], [ 3.580594, 46.71698 ], [ 3.576978, 46.72291 ], [ 3.573043, 46.720994 ], [ 3.568891, 46.71591 ], [ 3.564076, 46.71611 ], [ 3.547722, 46.722415 ], [ 3.54791, 46.718956 ], [ 3.5489, 46.70555 ], [ 3.559853, 46.68998 ], [ 3.554262, 46.684601 ], [ 3.550406, 46.682395 ], [ 3.542815, 46.67946 ], [ 3.534364, 46.68752 ], [ 3.529451, 46.688203 ], [ 3.520472, 46.68524 ], [ 3.486834, 46.660559 ], [ 3.486669, 46.65381 ], [ 3.483132, 46.651678 ], [ 3.474191, 46.653535 ], [ 3.45571, 46.651466 ], [ 3.45409, 46.654841 ], [ 3.443455, 46.662338 ], [ 3.4474, 46.67139 ], [ 3.452928, 46.677 ], [ 3.452896, 46.687333 ], [ 3.445923, 46.69225 ], [ 3.436015, 46.69355 ], [ 3.430011, 46.69883 ], [ 3.434214, 46.71222 ], [ 3.414609, 46.711105 ], [ 3.390052, 46.714892 ], [ 3.385292, 46.713764 ], [ 3.366416, 46.69068 ], [ 3.356914, 46.688419 ], [ 3.352532, 46.686596 ], [ 3.337856, 46.685253 ], [ 3.318052, 46.68844 ], [ 3.304499, 46.702842 ], [ 3.298052, 46.715879 ], [ 3.283373, 46.71515 ], [ 3.282979, 46.714971 ], [ 3.278417, 46.716324 ], [ 3.268544, 46.715924 ], [ 3.259773, 46.70766 ], [ 3.234217, 46.69737 ], [ 3.229528, 46.69646 ], [ 3.226936, 46.69 ], [ 3.204426, 46.678752 ], [ 3.199366, 46.6795 ], [ 3.167414, 46.690968 ], [ 3.149247, 46.708218 ], [ 3.146988, 46.710211 ], [ 3.143329, 46.71274 ], [ 3.129056, 46.727493 ], [ 3.104673, 46.73318 ], [ 3.100537, 46.734293 ], [ 3.083478, 46.73777 ], [ 3.079605, 46.739964 ], [ 3.04955, 46.75772 ], [ 3.037546, 46.77283 ], [ 3.036264, 46.775966 ], [ 3.032068, 46.794911 ], [ 3.032122, 46.798063 ], [ 3.039067, 46.80962 ], [ 3.041154, 46.812673 ], [ 3.057639, 46.825136 ], [ 3.058486, 46.831592 ], [ 3.05694, 46.83391 ], [ 3.054584, 46.83877 ], [ 3.056647, 46.84197 ], [ 3.069402, 46.852258 ], [ 3.063605, 46.889951 ], [ 3.062334, 46.892347 ], [ 3.061145, 46.89738 ], [ 3.058074, 46.90028 ], [ 3.050227, 46.909154 ], [ 3.064553, 46.93573 ], [ 3.066029, 46.93843 ], [ 3.068254, 46.941521 ], [ 3.078275, 46.953427 ], [ 3.079337, 46.96024 ], [ 3.075119, 46.96206 ], [ 3.062751, 46.98026 ], [ 3.065324, 46.997174 ], [ 3.065841, 47.00046 ], [ 3.073675, 47.01237 ], [ 3.074759, 47.015859 ], [ 3.074778, 47.02999 ], [ 3.072676, 47.033282 ], [ 3.063618, 47.04617 ], [ 3.060101, 47.04586 ], [ 3.053966, 47.04825 ], [ 3.050517, 47.050679 ], [ 3.022241, 47.063652 ], [ 3.020041, 47.06679 ], [ 3.022524, 47.08016 ], [ 3.031362, 47.092884 ], [ 3.030102, 47.103508 ], [ 3.03025, 47.107055 ], [ 3.03, 47.108315 ], [ 3.029382, 47.11166 ], [ 3.028283, 47.12844 ], [ 3.02496, 47.13111 ], [ 3.017179, 47.13978 ], [ 3.020588, 47.152981 ], [ 3.019283, 47.15628 ], [ 3.015945, 47.159095 ], [ 3.015206, 47.16243 ], [ 2.997741, 47.200851 ], [ 2.995918, 47.203804 ], [ 2.993844, 47.20668 ], [ 2.991122, 47.209691 ], [ 2.979026, 47.229064 ], [ 2.981806, 47.25352 ], [ 2.982757, 47.256558 ], [ 2.981658, 47.262509 ], [ 2.973547, 47.26994 ], [ 2.941563, 47.285155 ], [ 2.92678, 47.29845 ], [ 2.923336, 47.300844 ], [ 2.916129, 47.305647 ], [ 2.912962, 47.30832 ], [ 2.909119, 47.310584 ], [ 2.899453, 47.31274 ], [ 2.89495, 47.31377 ], [ 2.879024, 47.32028 ], [ 2.873695, 47.3291 ], [ 2.870247, 47.342343 ], [ 2.877113, 47.35156 ], [ 2.879782, 47.35453 ], [ 2.88208, 47.357587 ], [ 2.890555, 47.365995 ], [ 2.893026, 47.369085 ], [ 2.919771, 47.41047 ], [ 2.91962, 47.413657 ], [ 2.920906, 47.423155 ], [ 2.931557, 47.43343 ], [ 2.931885, 47.43681 ], [ 2.919831, 47.45873 ], [ 2.919191, 47.46062 ], [ 2.91778, 47.463787 ], [ 2.897163, 47.48515 ], [ 2.89713, 47.488733 ], [ 2.892395, 47.49898 ], [ 2.891632, 47.50194 ], [ 2.889574, 47.507764 ], [ 2.887256, 47.510615 ], [ 2.874625, 47.52042 ], [ 2.846885, 47.54153 ], [ 2.845187, 47.544935 ], [ 2.85663, 47.55141 ], [ 2.868583, 47.546008 ], [ 2.878366, 47.55267 ], [ 2.883392, 47.55272 ], [ 2.905814, 47.55747 ], [ 2.909374, 47.559612 ], [ 2.912958, 47.56364 ], [ 2.914297, 47.56597 ], [ 2.953843, 47.55861 ], [ 2.958658, 47.55738 ], [ 2.971791, 47.56792 ], [ 2.976538, 47.56943 ], [ 2.991328, 47.568027 ], [ 3.017047, 47.55783 ], [ 3.026689, 47.558708 ], [ 3.030852, 47.56057 ], [ 3.038488, 47.56506 ], [ 3.058681, 47.568759 ], [ 3.068241, 47.57706 ], [ 3.071969, 47.57956 ], [ 3.088025, 47.58699 ], [ 3.107221, 47.58554 ], [ 3.111581, 47.5839 ], [ 3.117534, 47.580678 ], [ 3.120284, 47.578893 ], [ 3.123524, 47.57615 ], [ 3.11636, 47.56704 ], [ 3.122224, 47.542894 ], [ 3.123027, 47.539428 ], [ 3.136654, 47.540124 ], [ 3.149412, 47.529504 ], [ 3.162247, 47.524005 ], [ 3.165191, 47.517502 ], [ 3.178884, 47.51947 ], [ 3.18614, 47.52359 ], [ 3.204517, 47.523192 ], [ 3.233674, 47.49285 ], [ 3.235027, 47.48964 ], [ 3.250321, 47.48841 ], [ 3.259236, 47.49191 ], [ 3.274682, 47.49196 ], [ 3.285252, 47.503939 ], [ 3.287427, 47.500864 ], [ 3.296228, 47.492596 ], [ 3.306115, 47.49367 ], [ 3.33567, 47.481462 ], [ 3.338044, 47.47252 ], [ 3.346456, 47.46969 ], [ 3.345704, 47.476617 ], [ 3.365715, 47.48653 ], [ 3.380385, 47.487833 ], [ 3.391056, 47.499653 ], [ 3.391332, 47.50656 ], [ 3.400355, 47.508578 ], [ 3.405484, 47.50869 ], [ 3.408787, 47.508027 ], [ 3.41224, 47.50787 ], [ 3.43223, 47.50733 ], [ 3.446589, 47.51028 ], [ 3.449538, 47.503871 ], [ 3.457679, 47.500472 ], [ 3.462467, 47.501183 ], [ 3.483515, 47.493032 ], [ 3.488277, 47.49383 ], [ 3.494746, 47.52129 ], [ 3.491375, 47.55647 ], [ 3.492033, 47.55999 ], [ 3.495344, 47.559972 ], [ 3.498358, 47.560878 ], [ 3.510307, 47.5505 ], [ 3.514192, 47.527224 ], [ 3.521363, 47.52255 ], [ 3.526056, 47.52143 ], [ 3.538233, 47.516592 ], [ 3.541425, 47.51425 ], [ 3.552142, 47.50341 ], [ 3.570725, 47.499523 ], [ 3.575459, 47.49869 ], [ 3.580478, 47.49487 ], [ 3.575259, 47.48629 ], [ 3.57569, 47.48317 ], [ 3.57613, 47.48213 ], [ 3.581675, 47.46445 ], [ 3.583276, 47.4615 ], [ 3.587873, 47.461882 ], [ 3.593202, 47.457714 ], [ 3.600971, 47.465182 ], [ 3.60535, 47.4662 ], [ 3.615236, 47.465828 ], [ 3.616422, 47.45934 ], [ 3.623783, 47.455385 ], [ 3.628686, 47.4547 ], [ 3.634157, 47.456076 ], [ 3.655583, 47.44881 ], [ 3.674397, 47.44953 ], [ 3.677363, 47.44686 ], [ 3.679358, 47.447242 ], [ 3.673439, 47.43561 ], [ 3.679809, 47.432548 ], [ 3.683925, 47.43387 ], [ 3.687996, 47.43166 ], [ 3.701553, 47.426486 ], [ 3.712403, 47.41442 ], [ 3.71491, 47.409463 ], [ 3.714782, 47.40683 ], [ 3.720317, 47.4013 ], [ 3.73389, 47.397065 ], [ 3.772571, 47.40308 ], [ 3.774605, 47.4062 ], [ 3.783303, 47.405169 ], [ 3.784123, 47.39328 ], [ 3.785631, 47.39032 ], [ 3.790461, 47.38973 ], [ 3.800243, 47.38965 ], [ 3.813743, 47.38037 ], [ 3.828057, 47.38205 ], [ 3.829261, 47.385333 ], [ 3.822621, 47.40091 ], [ 3.829087, 47.40576 ], [ 3.83893, 47.40605 ], [ 3.842009, 47.40872 ], [ 3.851737, 47.427572 ], [ 3.851308, 47.435588 ], [ 3.855194, 47.43388 ], [ 3.864383, 47.43433 ], [ 3.875517, 47.42881 ], [ 3.879911, 47.429811 ], [ 3.880587, 47.42654 ], [ 3.890213, 47.419812 ], [ 3.893397, 47.41029 ], [ 3.87946, 47.39991 ], [ 3.861455, 47.39337 ], [ 3.87141, 47.36717 ], [ 3.887463, 47.365881 ], [ 3.889564, 47.36875 ], [ 3.908792, 47.38206 ], [ 3.937927, 47.379826 ], [ 3.950594, 47.39305 ], [ 3.960513, 47.38579 ], [ 3.961353, 47.38232 ], [ 3.971393, 47.3746 ], [ 3.963999, 47.36586 ], [ 3.972954, 47.335 ], [ 3.982474, 47.322595 ], [ 3.987562, 47.32279 ], [ 4.000593, 47.31229 ], [ 4.020165, 47.31261 ], [ 4.027648, 47.31628 ], [ 4.030765, 47.32625 ], [ 4.039859, 47.327435 ], [ 4.047974, 47.339525 ], [ 4.067422, 47.33847 ], [ 4.076938, 47.340736 ], [ 4.101162, 47.33813 ], [ 4.106086, 47.33926 ], [ 4.107051, 47.33596 ], [ 4.119339, 47.33966 ], [ 4.130918, 47.35428 ], [ 4.13986, 47.3567 ], [ 4.143319, 47.35429 ], [ 4.139693, 47.35199 ], [ 4.125043, 47.335671 ], [ 4.123777, 47.32957 ], [ 4.130407, 47.32057 ], [ 4.128764, 47.31737 ], [ 4.11539, 47.30772 ], [ 4.123776, 47.30424 ], [ 4.132541, 47.30749 ], [ 4.131322, 47.304314 ], [ 4.114587, 47.29261 ], [ 4.125356, 47.249506 ], [ 4.133287, 47.2406 ], [ 4.135149, 47.23736 ], [ 4.177723, 47.25274 ], [ 4.186745, 47.24514 ], [ 4.192241, 47.23541 ], [ 4.219177, 47.21942 ], [ 4.22889, 47.20378 ], [ 4.230876, 47.19704 ], [ 4.212327, 47.18113 ], [ 4.209485, 47.168057 ], [ 4.210078, 47.158615 ], [ 4.209834, 47.155412 ], [ 4.205254, 47.15425 ], [ 4.194293, 47.148649 ], [ 4.186084, 47.152236 ], [ 4.181902, 47.150514 ], [ 4.139461, 47.14329 ], [ 4.120584, 47.145524 ], [ 4.115724, 47.14602 ], [ 4.112572, 47.14356 ], [ 4.116374, 47.134688 ], [ 4.108619, 47.131 ], [ 4.115967, 47.123338 ], [ 4.113981, 47.119143 ], [ 4.108988, 47.11946 ], [ 4.097676, 47.12619 ], [ 4.092706, 47.125721 ], [ 4.094833, 47.122612 ], [ 4.089786, 47.11704 ], [ 4.065407, 47.12084 ], [ 4.058772, 47.117491 ], [ 4.054995, 47.11522 ], [ 4.048656, 47.110047 ], [ 4.052594, 47.096965 ], [ 4.040302, 47.08653 ], [ 4.038853, 47.07974 ], [ 4.042109, 47.07702 ], [ 4.051451, 47.07416 ], [ 4.071006, 47.05808 ], [ 4.058189, 47.03941 ], [ 4.058279, 47.03257 ], [ 4.060912, 47.022489 ], [ 4.054465, 47.01327 ], [ 4.041746, 47.007752 ], [ 4.036583, 47.002072 ], [ 4.033377, 46.999607 ], [ 4.000752, 46.98621 ], [ 3.995999, 46.986744 ], [ 3.995001, 46.983322 ], [ 3.995097, 46.976397 ], [ 4.008715, 46.97225 ], [ 4.027712, 46.982721 ], [ 4.037144, 46.98469 ], [ 4.053855, 46.95978 ], [ 4.051063, 46.9535 ], [ 4.039773, 46.946965 ], [ 4.045065, 46.937741 ], [ 4.045302, 46.934372 ], [ 4.036827, 46.92633 ], [ 4.037067, 46.91969 ], [ 4.043618, 46.90432 ], [ 4.044687, 46.901169 ], [ 4.05919, 46.89978 ], [ 4.07139, 46.894251 ], [ 4.074981, 46.89189 ], [ 4.095196, 46.872416 ], [ 4.100104, 46.86256 ], [ 4.100887, 46.859107 ], [ 4.052059, 46.840438 ], [ 4.048389, 46.83795 ], [ 4.043109, 46.8336 ], [ 4.04595, 46.83124 ], [ 4.058347, 46.81908 ], [ 4.058444, 46.81598 ], [ 4.060935, 46.795162 ], [ 4.061995, 46.79171 ], [ 4.062545, 46.788322 ], [ 4.056286, 46.779267 ], [ 4.046503, 46.778356 ], [ 4.043832, 46.781253 ], [ 4.038172, 46.78686 ], [ 4.018742, 46.777012 ], [ 3.999789, 46.777701 ], [ 3.968523, 46.768649 ], [ 3.966737, 46.765485 ], [ 3.963222, 46.76603 ], [ 3.96223, 46.762587 ], [ 3.952834, 46.75434 ], [ 3.933395, 46.750714 ], [ 3.928165, 46.74138 ], [ 3.895651, 46.73319 ], [ 3.889191, 46.728229 ], [ 3.884282, 46.72829 ], [ 3.876358, 46.73227 ], [ 3.875024, 46.72916 ], [ 3.853508, 46.724934 ], [ 3.844924, 46.72199 ], [ 3.837252, 46.710169 ], [ 3.826552, 46.70383 ], [ 3.822214, 46.705145 ], [ 3.794654, 46.70203 ], [ 3.789893, 46.718483 ], [ 3.77978, 46.729915 ], [ 3.783666, 46.73605 ], [ 3.779252, 46.73782 ], [ 3.738633, 46.75196 ], [ 3.703968, 46.74684 ], [ 3.699403, 46.74535 ], [ 3.661101, 46.73774 ], [ 3.647852, 46.74264 ], [ 3.644177, 46.740886 ], [ 3.634065, 46.74422 ], [ 3.629424, 46.749459 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "60", "CODE_DEPT": "59", "NOM_DEPT": "NORD", "CODE_CHF": "350", "NOM_CHF": "LILLE", "X_CHF_LIEU": "7040", "Y_CHF_LIEU": "70594", "X_CENTROID": "7157", "Y_CENTROID": "70390", "CODE_REG": "31", "NOM_REGION": "NORD-PAS-DE-CALAIS" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.140895, 49.97876 ], [ 4.136382, 49.97751 ], [ 4.104938, 49.97157 ], [ 4.099815, 49.97233 ], [ 4.089691, 49.970476 ], [ 4.082589, 49.97383 ], [ 4.079933, 49.97995 ], [ 4.074968, 49.981 ], [ 4.044796, 49.98584 ], [ 4.031122, 49.98207 ], [ 4.027393, 49.98298 ], [ 4.021563, 49.986119 ], [ 4.011405, 49.98605 ], [ 4.005734, 49.9952 ], [ 3.985562, 49.99476 ], [ 3.980801, 49.993576 ], [ 3.980144, 50.00356 ], [ 3.995236, 50.028447 ], [ 3.991313, 50.038189 ], [ 3.989547, 50.04135 ], [ 3.982309, 50.04428 ], [ 3.949834, 50.026885 ], [ 3.948308, 50.02955 ], [ 3.943012, 50.029659 ], [ 3.922871, 50.02626 ], [ 3.919783, 50.02361 ], [ 3.887292, 50.00969 ], [ 3.887395, 50.01317 ], [ 3.886697, 50.023514 ], [ 3.878323, 50.027886 ], [ 3.883321, 50.02902 ], [ 3.882319, 50.03237 ], [ 3.868771, 50.03761 ], [ 3.848124, 50.04053 ], [ 3.837059, 50.047809 ], [ 3.832229, 50.04678 ], [ 3.815827, 50.03904 ], [ 3.811, 50.04064 ], [ 3.793588, 50.048296 ], [ 3.77793, 50.045989 ], [ 3.77523, 50.04908 ], [ 3.770963, 50.05104 ], [ 3.745752, 50.053572 ], [ 3.742636, 50.0561 ], [ 3.72121, 50.06413 ], [ 3.715185, 50.06927 ], [ 3.710359, 50.066491 ], [ 3.705575, 50.06564 ], [ 3.669883, 50.055088 ], [ 3.665721, 50.054697 ], [ 3.658176, 50.0484 ], [ 3.657538, 50.04003 ], [ 3.662095, 50.03873 ], [ 3.657569, 50.03273 ], [ 3.643079, 50.036989 ], [ 3.63009, 50.03202 ], [ 3.625097, 50.03078 ], [ 3.621489, 50.02882 ], [ 3.614124, 50.02506 ], [ 3.608747, 50.0301 ], [ 3.607741, 50.033469 ], [ 3.594225, 50.043918 ], [ 3.57924, 50.0471 ], [ 3.575596, 50.04925 ], [ 3.567799, 50.052971 ], [ 3.55644, 50.0539 ], [ 3.551277, 50.05377 ], [ 3.541758, 50.051975 ], [ 3.52989, 50.038887 ], [ 3.508157, 50.035512 ], [ 3.507062, 50.03336 ], [ 3.505235, 50.03054 ], [ 3.490106, 50.01896 ], [ 3.484913, 50.019609 ], [ 3.427792, 50.022085 ], [ 3.42847, 50.02478 ], [ 3.424921, 50.02727 ], [ 3.41538, 50.026754 ], [ 3.398474, 50.03458 ], [ 3.392479, 50.031132 ], [ 3.387166, 50.03106 ], [ 3.374224, 50.03641 ], [ 3.353107, 50.03571 ], [ 3.350214, 50.03286 ], [ 3.351671, 50.02973 ], [ 3.343616, 50.02627 ], [ 3.337102, 50.017401 ], [ 3.327669, 50.01585 ], [ 3.309304, 50.019352 ], [ 3.304894, 50.01846 ], [ 3.300484, 50.01759 ], [ 3.290837, 50.01513 ], [ 3.280355, 50.01521 ], [ 3.273525, 50.02027 ], [ 3.277936, 50.021475 ], [ 3.270716, 50.02947 ], [ 3.267164, 50.03012 ], [ 3.263541, 50.03064 ], [ 3.258791, 50.03141 ], [ 3.255846, 50.02544 ], [ 3.246725, 50.02769 ], [ 3.244843, 50.030617 ], [ 3.244078, 50.03089 ], [ 3.233971, 50.02838 ], [ 3.229336, 50.03018 ], [ 3.203548, 50.017876 ], [ 3.172707, 50.01199 ], [ 3.171212, 50.01512 ], [ 3.166994, 50.02098 ], [ 3.162556, 50.01932 ], [ 3.147359, 50.01876 ], [ 3.148926, 50.02527 ], [ 3.123578, 50.02448 ], [ 3.121506, 50.02698 ], [ 3.114299, 50.03354 ], [ 3.113001, 50.03922 ], [ 3.095776, 50.04572 ], [ 3.090254, 50.053741 ], [ 3.084626, 50.05849 ], [ 3.085835, 50.06422 ], [ 3.093709, 50.06685 ], [ 3.098108, 50.068437 ], [ 3.094889, 50.071035 ], [ 3.087669, 50.07557 ], [ 3.088853, 50.082176 ], [ 3.103729, 50.080961 ], [ 3.114055, 50.09238 ], [ 3.113084, 50.095556 ], [ 3.109628, 50.104783 ], [ 3.104601, 50.10463 ], [ 3.105585, 50.10803 ], [ 3.104294, 50.11138 ], [ 3.103755, 50.114613 ], [ 3.093601, 50.12164 ], [ 3.095967, 50.12452 ], [ 3.130662, 50.13914 ], [ 3.135333, 50.140743 ], [ 3.135538, 50.14421 ], [ 3.130229, 50.14456 ], [ 3.115494, 50.148244 ], [ 3.112266, 50.15477 ], [ 3.100959, 50.161969 ], [ 3.115648, 50.16664 ], [ 3.137514, 50.16694 ], [ 3.151507, 50.18027 ], [ 3.156377, 50.18157 ], [ 3.15517, 50.18466 ], [ 3.147055, 50.18825 ], [ 3.142896, 50.19649 ], [ 3.138996, 50.19748 ], [ 3.131195, 50.199495 ], [ 3.132574, 50.20258 ], [ 3.135974, 50.208 ], [ 3.142792, 50.21924 ], [ 3.147956, 50.21915 ], [ 3.178885, 50.219073 ], [ 3.180625, 50.22424 ], [ 3.184117, 50.226231 ], [ 3.186851, 50.23493 ], [ 3.18238, 50.23364 ], [ 3.174272, 50.240954 ], [ 3.169753, 50.24209 ], [ 3.147167, 50.24622 ], [ 3.149535, 50.260884 ], [ 3.154141, 50.2602 ], [ 3.150799, 50.26214 ], [ 3.138159, 50.26525 ], [ 3.132839, 50.26624 ], [ 3.127684, 50.26638 ], [ 3.107559, 50.26857 ], [ 3.102434, 50.269337 ], [ 3.077477, 50.27436 ], [ 3.062161, 50.27182 ], [ 3.061811, 50.27209 ], [ 3.057623, 50.27316 ], [ 3.054641, 50.27533 ], [ 3.050776, 50.277171 ], [ 3.036395, 50.26941 ], [ 3.02981, 50.26719 ], [ 3.018644, 50.264394 ], [ 3.015395, 50.26615 ], [ 3.012244, 50.26798 ], [ 3.015274, 50.28378 ], [ 3.036142, 50.28755 ], [ 3.044308, 50.283109 ], [ 3.055097, 50.2823 ], [ 3.052454, 50.28759 ], [ 3.055204, 50.28976 ], [ 3.051618, 50.29197 ], [ 3.047612, 50.293846 ], [ 3.050529, 50.29609 ], [ 3.058413, 50.30227 ], [ 3.065485, 50.30731 ], [ 3.080685, 50.30911 ], [ 3.084867, 50.31123 ], [ 3.082137, 50.313778 ], [ 3.079182, 50.316213 ], [ 3.074598, 50.31711 ], [ 3.060366, 50.32892 ], [ 3.061114, 50.33278 ], [ 3.058157, 50.335402 ], [ 3.046692, 50.34581 ], [ 3.042777, 50.34486 ], [ 3.038806, 50.34402 ], [ 3.035188, 50.34633 ], [ 3.013459, 50.35941 ], [ 3.010385, 50.35878 ], [ 3.00734, 50.359486 ], [ 3.008267, 50.3625 ], [ 3.002793, 50.370887 ], [ 3.001685, 50.3739 ], [ 2.993935, 50.38177 ], [ 2.990422, 50.39495 ], [ 2.983904, 50.40024 ], [ 2.980518, 50.40288 ], [ 2.991727, 50.4017 ], [ 2.995463, 50.39994 ], [ 3.014959, 50.4031 ], [ 3.027533, 50.40852 ], [ 3.029516, 50.41154 ], [ 3.037445, 50.41999 ], [ 3.038979, 50.42318 ], [ 3.062224, 50.42562 ], [ 3.065917, 50.423558 ], [ 3.071442, 50.42531 ], [ 3.069662, 50.428592 ], [ 3.078492, 50.44097 ], [ 3.081786, 50.44373 ], [ 3.077219, 50.44499 ], [ 3.067817, 50.44685 ], [ 3.066525, 50.458531 ], [ 3.062966, 50.456962 ], [ 3.058817, 50.456183 ], [ 3.053992, 50.454884 ], [ 3.041611, 50.44451 ], [ 3.038558, 50.442143 ], [ 3.029859, 50.44468 ], [ 3.016292, 50.44192 ], [ 3.016715, 50.445271 ], [ 3.016703, 50.45198 ], [ 3.008268, 50.45586 ], [ 3.017172, 50.465765 ], [ 3.019563, 50.46833 ], [ 3.017258, 50.470352 ], [ 3.017441, 50.47284 ], [ 3.021001, 50.475423 ], [ 3.024325, 50.48406 ], [ 3.010848, 50.49027 ], [ 3.008344, 50.49277 ], [ 3.00439, 50.495011 ], [ 2.99423, 50.49666 ], [ 2.989854, 50.498861 ], [ 2.96471, 50.51278 ], [ 2.950676, 50.511903 ], [ 2.946244, 50.51042 ], [ 2.926865, 50.50781 ], [ 2.922758, 50.505749 ], [ 2.910143, 50.49983 ], [ 2.904831, 50.503456 ], [ 2.901641, 50.50101 ], [ 2.882077, 50.50775 ], [ 2.881294, 50.51769 ], [ 2.889207, 50.52994 ], [ 2.887046, 50.53298 ], [ 2.886965, 50.53766 ], [ 2.882504, 50.53597 ], [ 2.878465, 50.534651 ], [ 2.862058, 50.52977 ], [ 2.857089, 50.529234 ], [ 2.852162, 50.5286 ], [ 2.846701, 50.52791 ], [ 2.824771, 50.52561 ], [ 2.81437, 50.52813 ], [ 2.810636, 50.52882 ], [ 2.803772, 50.52691 ], [ 2.798854, 50.52792 ], [ 2.801323, 50.53732 ], [ 2.796583, 50.54632 ], [ 2.794472, 50.549206 ], [ 2.808764, 50.55082 ], [ 2.813165, 50.54931 ], [ 2.815076, 50.56599 ], [ 2.808235, 50.57885 ], [ 2.793326, 50.58123 ], [ 2.789076, 50.58306 ], [ 2.792065, 50.586288 ], [ 2.808041, 50.60755 ], [ 2.82454, 50.61594 ], [ 2.828412, 50.61824 ], [ 2.831382, 50.62002 ], [ 2.841416, 50.627662 ], [ 2.857106, 50.627313 ], [ 2.862341, 50.62726 ], [ 2.866202, 50.629046 ], [ 2.869738, 50.6311 ], [ 2.86681, 50.6338 ], [ 2.845502, 50.652274 ], [ 2.842615, 50.65488 ], [ 2.830892, 50.660718 ], [ 2.821276, 50.661278 ], [ 2.818177, 50.66327 ], [ 2.809188, 50.66937 ], [ 2.80598, 50.6665 ], [ 2.796618, 50.66296 ], [ 2.769677, 50.663617 ], [ 2.759527, 50.651402 ], [ 2.759178, 50.65068 ], [ 2.788444, 50.63595 ], [ 2.792447, 50.63366 ], [ 2.784663, 50.629183 ], [ 2.764665, 50.633382 ], [ 2.760314, 50.63147 ], [ 2.750512, 50.61355 ], [ 2.751518, 50.60689 ], [ 2.747182, 50.60525 ], [ 2.726066, 50.613847 ], [ 2.718588, 50.62936 ], [ 2.698103, 50.62915 ], [ 2.684208, 50.63311 ], [ 2.683002, 50.636413 ], [ 2.673575, 50.634334 ], [ 2.669852, 50.625332 ], [ 2.644364, 50.62256 ], [ 2.630516, 50.617952 ], [ 2.616283, 50.6271 ], [ 2.613497, 50.63349 ], [ 2.593574, 50.631603 ], [ 2.592547, 50.6347 ], [ 2.584993, 50.63692 ], [ 2.582335, 50.63418 ], [ 2.568492, 50.632523 ], [ 2.564301, 50.62443 ], [ 2.561693, 50.62746 ], [ 2.551557, 50.62651 ], [ 2.541783, 50.62923 ], [ 2.534119, 50.64167 ], [ 2.528875, 50.64257 ], [ 2.506806, 50.633424 ], [ 2.501953, 50.63196 ], [ 2.491542, 50.63172 ], [ 2.473183, 50.6386 ], [ 2.470104, 50.64149 ], [ 2.450822, 50.653445 ], [ 2.44606, 50.6551 ], [ 2.430188, 50.6568 ], [ 2.421532, 50.66552 ], [ 2.416134, 50.665832 ], [ 2.414511, 50.669432 ], [ 2.409622, 50.67093 ], [ 2.401762, 50.679916 ], [ 2.378528, 50.67193 ], [ 2.371374, 50.677092 ], [ 2.368168, 50.67936 ], [ 2.363525, 50.68464 ], [ 2.367167, 50.687067 ], [ 2.386124, 50.69858 ], [ 2.366375, 50.7095 ], [ 2.366373, 50.709677 ], [ 2.362256, 50.71111 ], [ 2.353433, 50.717992 ], [ 2.350813, 50.72054 ], [ 2.350509, 50.72655 ], [ 2.339683, 50.73067 ], [ 2.342195, 50.740698 ], [ 2.363636, 50.751568 ], [ 2.382123, 50.75499 ], [ 2.411478, 50.766734 ], [ 2.407129, 50.767171 ], [ 2.404331, 50.771635 ], [ 2.40068, 50.77399 ], [ 2.386543, 50.777525 ], [ 2.381448, 50.77868 ], [ 2.374318, 50.783027 ], [ 2.365724, 50.77547 ], [ 2.360333, 50.77539 ], [ 2.340563, 50.780906 ], [ 2.319058, 50.78244 ], [ 2.31261, 50.78721 ], [ 2.309115, 50.78505 ], [ 2.288578, 50.777039 ], [ 2.288277, 50.7803 ], [ 2.287618, 50.78681 ], [ 2.273686, 50.783234 ], [ 2.254833, 50.78803 ], [ 2.251044, 50.78963 ], [ 2.242758, 50.79652 ], [ 2.239846, 50.79903 ], [ 2.226713, 50.80782 ], [ 2.22266, 50.80987 ], [ 2.21343, 50.81055 ], [ 2.211363, 50.81953 ], [ 2.212661, 50.82256 ], [ 2.207562, 50.82789 ], [ 2.208621, 50.837058 ], [ 2.206205, 50.84023 ], [ 2.202647, 50.842941 ], [ 2.203616, 50.84971 ], [ 2.190113, 50.86793 ], [ 2.19034, 50.87137 ], [ 2.18877, 50.874647 ], [ 2.166938, 50.908442 ], [ 2.16555, 50.911653 ], [ 2.164601, 50.91492 ], [ 2.151317, 50.93257 ], [ 2.145509, 50.94511 ], [ 2.141819, 50.94747 ], [ 2.135655, 50.96309 ], [ 2.128009, 50.96739 ], [ 2.125134, 50.970134 ], [ 2.122685, 50.97288 ], [ 2.121666, 50.979107 ], [ 2.10927, 50.98417 ], [ 2.110463, 50.98741 ], [ 2.106566, 50.989943 ], [ 2.089192, 51.00349 ], [ 2.067712, 51.0065 ], [ 2.083572, 51.00839 ], [ 2.103662, 51.00518 ], [ 2.117312, 50.99467 ], [ 2.120473, 50.99192 ], [ 2.112877, 51.00504 ], [ 2.146495, 51.02689 ], [ 2.175015, 51.01554 ], [ 2.170886, 51.0133 ], [ 2.179919, 51.011309 ], [ 2.184275, 51.024899 ], [ 2.191054, 51.03047 ], [ 2.190033, 51.03722 ], [ 2.175106, 51.04176 ], [ 2.190397, 51.04113 ], [ 2.208475, 51.03241 ], [ 2.234957, 51.037247 ], [ 2.240201, 51.03858 ], [ 2.259275, 51.043537 ], [ 2.264227, 51.044445 ], [ 2.296897, 51.05023 ], [ 2.302421, 51.05101 ], [ 2.35041, 51.06024 ], [ 2.3676, 51.05149 ], [ 2.383895, 51.04901 ], [ 2.427124, 51.056229 ], [ 2.432332, 51.05754 ], [ 2.46192, 51.06529 ], [ 2.466931, 51.066449 ], [ 2.470114, 51.06704 ], [ 2.473281, 51.067669 ], [ 2.488896, 51.071823 ], [ 2.494106, 51.073208 ], [ 2.541447, 51.08776 ], [ 2.546031, 51.0894 ], [ 2.557367, 51.07337 ], [ 2.559218, 51.070054 ], [ 2.561481, 51.06683 ], [ 2.566089, 51.046043 ], [ 2.567001, 51.042674 ], [ 2.575724, 51.01401 ], [ 2.572476, 51.01309 ], [ 2.574804, 51.00361 ], [ 2.582346, 50.99758 ], [ 2.606478, 50.98891 ], [ 2.629709, 50.94933 ], [ 2.617791, 50.93514 ], [ 2.609007, 50.931025 ], [ 2.594754, 50.920753 ], [ 2.590013, 50.9191 ], [ 2.592097, 50.915945 ], [ 2.602718, 50.91505 ], [ 2.607418, 50.90932 ], [ 2.604717, 50.90635 ], [ 2.608896, 50.89629 ], [ 2.607309, 50.87259 ], [ 2.612033, 50.86683 ], [ 2.602139, 50.855935 ], [ 2.59917, 50.85329 ], [ 2.599113, 50.84982 ], [ 2.614633, 50.847667 ], [ 2.616995, 50.84089 ], [ 2.624824, 50.836062 ], [ 2.634983, 50.81276 ], [ 2.658365, 50.81458 ], [ 2.662318, 50.81629 ], [ 2.670175, 50.82104 ], [ 2.682146, 50.81393 ], [ 2.719826, 50.812052 ], [ 2.723565, 50.809503 ], [ 2.725014, 50.795725 ], [ 2.735823, 50.783636 ], [ 2.738556, 50.780591 ], [ 2.752129, 50.77742 ], [ 2.754308, 50.7746 ], [ 2.760956, 50.76926 ], [ 2.759503, 50.762527 ], [ 2.782033, 50.74769 ], [ 2.791225, 50.727528 ], [ 2.809139, 50.71931 ], [ 2.813275, 50.716948 ], [ 2.848568, 50.72176 ], [ 2.86741, 50.705783 ], [ 2.870173, 50.702914 ], [ 2.884268, 50.7059 ], [ 2.897134, 50.69585 ], [ 2.90043, 50.69329 ], [ 2.909936, 50.69436 ], [ 2.909077, 50.70086 ], [ 2.917296, 50.70352 ], [ 2.922327, 50.7028 ], [ 2.930072, 50.71174 ], [ 2.937172, 50.73006 ], [ 2.943586, 50.73379 ], [ 2.937651, 50.74257 ], [ 2.940137, 50.74536 ], [ 2.952081, 50.75185 ], [ 2.971968, 50.750275 ], [ 2.979787, 50.75468 ], [ 2.983294, 50.75719 ], [ 3.009904, 50.76806 ], [ 3.015254, 50.773624 ], [ 3.029982, 50.77043 ], [ 3.035274, 50.77015 ], [ 3.040683, 50.77557 ], [ 3.053763, 50.78015 ], [ 3.058745, 50.78071 ], [ 3.085734, 50.772887 ], [ 3.090194, 50.77439 ], [ 3.102702, 50.78094 ], [ 3.112211, 50.793036 ], [ 3.125773, 50.78777 ], [ 3.147109, 50.7899 ], [ 3.158357, 50.77504 ], [ 3.161603, 50.77226 ], [ 3.174469, 50.75711 ], [ 3.184298, 50.74905 ], [ 3.192547, 50.738923 ], [ 3.196344, 50.73705 ], [ 3.199132, 50.73405 ], [ 3.193002, 50.728442 ], [ 3.195467, 50.72249 ], [ 3.210326, 50.713016 ], [ 3.247511, 50.710327 ], [ 3.257956, 50.70243 ], [ 3.259532, 50.69569 ], [ 3.253688, 50.691138 ], [ 3.261831, 50.675965 ], [ 3.243893, 50.66976 ], [ 3.242114, 50.66668 ], [ 3.24437, 50.654571 ], [ 3.245075, 50.65143 ], [ 3.24882, 50.649456 ], [ 3.247623, 50.63855 ], [ 3.250659, 50.63614 ], [ 3.256616, 50.63107 ], [ 3.258704, 50.628176 ], [ 3.256132, 50.621953 ], [ 3.270677, 50.60878 ], [ 3.270969, 50.60551 ], [ 3.27831, 50.5942 ], [ 3.276637, 50.58483 ], [ 3.276169, 50.58168 ], [ 3.281692, 50.57622 ], [ 3.27806, 50.566755 ], [ 3.284599, 50.56183 ], [ 3.280712, 50.5597 ], [ 3.276055, 50.55827 ], [ 3.281236, 50.55255 ], [ 3.2796, 50.539547 ], [ 3.287029, 50.530869 ], [ 3.286531, 50.527576 ], [ 3.32095, 50.51726 ], [ 3.328858, 50.508128 ], [ 3.331755, 50.507743 ], [ 3.334712, 50.5079 ], [ 3.360271, 50.5037 ], [ 3.372971, 50.49298 ], [ 3.377262, 50.49099 ], [ 3.400258, 50.498564 ], [ 3.405551, 50.498781 ], [ 3.43563, 50.509127 ], [ 3.439442, 50.507228 ], [ 3.444757, 50.506536 ], [ 3.450083, 50.507226 ], [ 3.456075, 50.5207 ], [ 3.475, 50.53295 ], [ 3.506485, 50.528416 ], [ 3.517988, 50.52145 ], [ 3.51369, 50.5114 ], [ 3.497804, 50.4978 ], [ 3.501589, 50.48785 ], [ 3.506667, 50.489153 ], [ 3.526219, 50.4953 ], [ 3.558634, 50.49842 ], [ 3.568602, 50.500114 ], [ 3.578961, 50.49285 ], [ 3.583316, 50.491015 ], [ 3.607937, 50.49653 ], [ 3.629448, 50.4814 ], [ 3.640294, 50.46585 ], [ 3.643649, 50.463167 ], [ 3.65395, 50.462601 ], [ 3.660986, 50.45759 ], [ 3.660365, 50.44451 ], [ 3.667626, 50.43974 ], [ 3.668833, 50.43645 ], [ 3.671893, 50.4129 ], [ 3.673437, 50.40965 ], [ 3.672952, 50.38906 ], [ 3.668431, 50.382751 ], [ 3.665304, 50.379895 ], [ 3.658408, 50.37321 ], [ 3.657797, 50.370536 ], [ 3.666545, 50.36218 ], [ 3.664978, 50.34876 ], [ 3.676144, 50.338007 ], [ 3.673676, 50.33493 ], [ 3.680066, 50.32923 ], [ 3.684925, 50.327562 ], [ 3.694183, 50.315425 ], [ 3.708085, 50.304859 ], [ 3.710431, 50.30317 ], [ 3.716778, 50.30787 ], [ 3.714352, 50.31678 ], [ 3.726565, 50.31082 ], [ 3.73174, 50.3119 ], [ 3.729811, 50.32687 ], [ 3.734504, 50.33233 ], [ 3.738629, 50.34582 ], [ 3.747527, 50.349788 ], [ 3.758248, 50.34887 ], [ 3.763554, 50.34808 ], [ 3.765482, 50.35124 ], [ 3.781047, 50.35328 ], [ 3.79658, 50.35137 ], [ 3.805725, 50.35462 ], [ 3.810935, 50.35399 ], [ 3.813953, 50.34794 ], [ 3.811659, 50.344885 ], [ 3.821792, 50.34595 ], [ 3.82999, 50.353032 ], [ 3.84015, 50.353861 ], [ 3.854478, 50.35053 ], [ 3.857562, 50.3479 ], [ 3.870706, 50.3387 ], [ 3.885758, 50.33948 ], [ 3.888876, 50.333282 ], [ 3.88606, 50.32706 ], [ 3.915284, 50.33065 ], [ 3.919801, 50.33218 ], [ 3.961807, 50.34808 ], [ 3.967141, 50.34745 ], [ 3.96736, 50.34057 ], [ 3.972104, 50.3465 ], [ 3.982059, 50.343978 ], [ 3.98687, 50.342459 ], [ 3.993217, 50.347705 ], [ 4.013692, 50.351337 ], [ 4.02522, 50.35789 ], [ 4.037613, 50.342904 ], [ 4.05219, 50.338785 ], [ 4.077086, 50.32075 ], [ 4.078661, 50.31043 ], [ 4.078833, 50.30926 ], [ 4.098934, 50.312258 ], [ 4.108291, 50.30414 ], [ 4.11803, 50.302649 ], [ 4.12539, 50.2831 ], [ 4.124121, 50.273275 ], [ 4.1341, 50.27402 ], [ 4.138373, 50.261524 ], [ 4.134956, 50.25909 ], [ 4.153771, 50.25676 ], [ 4.163658, 50.257292 ], [ 4.166825, 50.26706 ], [ 4.152045, 50.27693 ], [ 4.160433, 50.28587 ], [ 4.170685, 50.28557 ], [ 4.179618, 50.27676 ], [ 4.209977, 50.27007 ], [ 4.22082, 50.2543 ], [ 4.204554, 50.24057 ], [ 4.199062, 50.24045 ], [ 4.183381, 50.23215 ], [ 4.16644, 50.215094 ], [ 4.150867, 50.21342 ], [ 4.16042, 50.19485 ], [ 4.156247, 50.19284 ], [ 4.156582, 50.186063 ], [ 4.150045, 50.17659 ], [ 4.15506, 50.167136 ], [ 4.153214, 50.160373 ], [ 4.140636, 50.15371 ], [ 4.129467, 50.13803 ], [ 4.126925, 50.13492 ], [ 4.146143, 50.128959 ], [ 4.163119, 50.13506 ], [ 4.195247, 50.1346 ], [ 4.203384, 50.115316 ], [ 4.197658, 50.10944 ], [ 4.204636, 50.10453 ], [ 4.205375, 50.097989 ], [ 4.227539, 50.07968 ], [ 4.23076, 50.07321 ], [ 4.22816, 50.066702 ], [ 4.201024, 50.0569 ], [ 4.190622, 50.049422 ], [ 4.175988, 50.0458 ], [ 4.171064, 50.047 ], [ 4.164072, 50.04866 ], [ 4.160782, 50.04752 ], [ 4.135626, 50.018567 ], [ 4.135425, 50.015183 ], [ 4.147204, 50.00403 ], [ 4.162406, 49.99655 ], [ 4.156285, 49.98721 ], [ 4.145596, 49.98025 ], [ 4.140895, 49.97876 ] ] ], [ [ [ 3.003746, 50.15016 ], [ 3.007826, 50.14868 ], [ 3.014941, 50.15242 ], [ 3.019176, 50.15371 ], [ 3.022362, 50.15195 ], [ 3.026289, 50.151016 ], [ 3.035919, 50.15156 ], [ 3.039068, 50.15671 ], [ 3.040398, 50.1597 ], [ 3.056215, 50.166048 ], [ 3.060737, 50.17094 ], [ 3.062726, 50.17378 ], [ 3.085555, 50.170979 ], [ 3.090058, 50.171757 ], [ 3.092256, 50.165442 ], [ 3.095886, 50.16313 ], [ 3.092079, 50.160674 ], [ 3.067794, 50.14749 ], [ 3.072024, 50.13422 ], [ 3.072368, 50.130818 ], [ 3.067294, 50.128738 ], [ 3.062491, 50.130429 ], [ 3.052154, 50.13241 ], [ 3.037036, 50.13058 ], [ 3.034799, 50.12765 ], [ 3.024637, 50.116387 ], [ 3.010628, 50.112806 ], [ 3.007835, 50.11563 ], [ 3.000531, 50.12011 ], [ 3.002389, 50.12996 ], [ 2.994718, 50.13815 ], [ 3.003746, 50.15016 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "61", "CODE_DEPT": "60", "NOM_DEPT": "OISE", "CODE_CHF": "057", "NOM_CHF": "BEAUVAIS", "X_CHF_LIEU": "6337", "Y_CHF_LIEU": "69264", "X_CENTROID": "6582", "Y_CENTROID": "69235", "CODE_REG": "22", "NOM_REGION": "PICARDIE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.071884, 49.117554 ], [ 3.069347, 49.11485 ], [ 3.056321, 49.101918 ], [ 3.056752, 49.09578 ], [ 3.064684, 49.08817 ], [ 3.066076, 49.08522 ], [ 3.061684, 49.08647 ], [ 3.034416, 49.08861 ], [ 3.0305, 49.08689 ], [ 3.012773, 49.09062 ], [ 3.003956, 49.088741 ], [ 2.999206, 49.088534 ], [ 2.989885, 49.08157 ], [ 2.988135, 49.072376 ], [ 2.983235, 49.07188 ], [ 2.974612, 49.074838 ], [ 2.974159, 49.0778 ], [ 2.971429, 49.088972 ], [ 2.967335, 49.090652 ], [ 2.954853, 49.08595 ], [ 2.94583, 49.08808 ], [ 2.944317, 49.081814 ], [ 2.937888, 49.077998 ], [ 2.933807, 49.08001 ], [ 2.923982, 49.07829 ], [ 2.900947, 49.08535 ], [ 2.899159, 49.08252 ], [ 2.895105, 49.077052 ], [ 2.890202, 49.07847 ], [ 2.872029, 49.071248 ], [ 2.856089, 49.070034 ], [ 2.854288, 49.073152 ], [ 2.844946, 49.08488 ], [ 2.83522, 49.083 ], [ 2.821258, 49.08681 ], [ 2.809254, 49.097536 ], [ 2.80477, 49.09576 ], [ 2.79173, 49.09014 ], [ 2.787956, 49.08917 ], [ 2.783988, 49.08864 ], [ 2.788214, 49.08287 ], [ 2.768337, 49.08326 ], [ 2.772712, 49.081378 ], [ 2.785275, 49.07544 ], [ 2.760833, 49.063004 ], [ 2.756038, 49.061528 ], [ 2.735013, 49.060459 ], [ 2.733096, 49.063359 ], [ 2.724357, 49.08046 ], [ 2.720824, 49.07564 ], [ 2.703081, 49.064736 ], [ 2.698321, 49.06443 ], [ 2.690023, 49.067562 ], [ 2.691155, 49.07062 ], [ 2.693519, 49.073452 ], [ 2.67832, 49.08573 ], [ 2.676384, 49.088872 ], [ 2.650967, 49.10025 ], [ 2.640674, 49.099713 ], [ 2.633273, 49.108376 ], [ 2.631694, 49.105117 ], [ 2.619365, 49.09447 ], [ 2.614781, 49.09409 ], [ 2.610339, 49.094943 ], [ 2.609132, 49.091558 ], [ 2.590524, 49.07965 ], [ 2.586578, 49.080127 ], [ 2.582606, 49.08048 ], [ 2.580161, 49.08326 ], [ 2.576746, 49.092429 ], [ 2.559479, 49.09762 ], [ 2.554091, 49.11754 ], [ 2.542285, 49.118854 ], [ 2.542654, 49.122065 ], [ 2.537924, 49.12103 ], [ 2.532668, 49.11593 ], [ 2.531063, 49.0996 ], [ 2.526067, 49.10089 ], [ 2.489931, 49.10636 ], [ 2.501596, 49.11948 ], [ 2.499227, 49.12227 ], [ 2.494845, 49.12351 ], [ 2.477004, 49.12797 ], [ 2.477603, 49.13107 ], [ 2.473884, 49.132987 ], [ 2.461309, 49.13661 ], [ 2.458813, 49.139483 ], [ 2.435399, 49.13394 ], [ 2.436577, 49.13646 ], [ 2.438907, 49.1415 ], [ 2.439898, 49.14365 ], [ 2.440903, 49.145803 ], [ 2.410447, 49.15208 ], [ 2.394792, 49.14981 ], [ 2.3732, 49.15925 ], [ 2.369839, 49.15718 ], [ 2.358039, 49.14815 ], [ 2.354227, 49.150485 ], [ 2.321777, 49.18444 ], [ 2.317953, 49.185233 ], [ 2.310593, 49.184876 ], [ 2.306913, 49.185179 ], [ 2.301197, 49.183887 ], [ 2.299925, 49.180589 ], [ 2.28887, 49.169681 ], [ 2.286413, 49.15992 ], [ 2.281365, 49.15913 ], [ 2.266531, 49.156295 ], [ 2.262132, 49.158102 ], [ 2.259401, 49.15544 ], [ 2.241583, 49.151573 ], [ 2.225833, 49.1516 ], [ 2.21636, 49.154378 ], [ 2.219639, 49.15692 ], [ 2.234054, 49.165695 ], [ 2.220277, 49.179201 ], [ 2.215478, 49.17823 ], [ 2.207218, 49.17489 ], [ 2.187374, 49.173229 ], [ 2.183442, 49.17382 ], [ 2.176584, 49.17654 ], [ 2.178986, 49.17382 ], [ 2.172135, 49.166607 ], [ 2.16393, 49.1661 ], [ 2.161839, 49.16823 ], [ 2.157738, 49.17251 ], [ 2.163401, 49.17762 ], [ 2.157181, 49.182282 ], [ 2.153026, 49.183925 ], [ 2.143261, 49.18555 ], [ 2.139762, 49.18313 ], [ 2.13028, 49.19075 ], [ 2.11591, 49.18799 ], [ 2.095875, 49.19006 ], [ 2.093329, 49.19285 ], [ 2.09024, 49.20545 ], [ 2.080769, 49.207203 ], [ 2.08089, 49.21045 ], [ 2.076699, 49.20844 ], [ 2.069874, 49.203344 ], [ 2.050488, 49.19878 ], [ 2.038368, 49.19241 ], [ 2.038236, 49.19213 ], [ 2.035163, 49.189908 ], [ 2.021784, 49.18868 ], [ 2.018235, 49.186355 ], [ 1.999445, 49.175573 ], [ 1.990193, 49.17676 ], [ 1.974086, 49.183316 ], [ 1.971263, 49.181107 ], [ 1.962698, 49.1746 ], [ 1.958097, 49.17287 ], [ 1.937433, 49.170761 ], [ 1.933925, 49.17335 ], [ 1.882568, 49.1625 ], [ 1.882617, 49.16594 ], [ 1.876765, 49.175309 ], [ 1.874497, 49.17429 ], [ 1.869788, 49.17265 ], [ 1.849074, 49.170489 ], [ 1.838268, 49.16619 ], [ 1.834069, 49.16512 ], [ 1.83664, 49.171547 ], [ 1.831251, 49.17698 ], [ 1.816999, 49.17587 ], [ 1.797776, 49.185147 ], [ 1.794378, 49.183189 ], [ 1.793582, 49.18028 ], [ 1.789302, 49.181493 ], [ 1.776924, 49.185225 ], [ 1.776379, 49.185094 ], [ 1.773149, 49.18247 ], [ 1.756131, 49.174879 ], [ 1.742695, 49.1798 ], [ 1.742878, 49.18299 ], [ 1.73895, 49.19219 ], [ 1.725913, 49.19401 ], [ 1.72571, 49.197273 ], [ 1.715583, 49.20285 ], [ 1.715608, 49.206238 ], [ 1.73398, 49.21199 ], [ 1.735795, 49.22194 ], [ 1.740453, 49.22344 ], [ 1.736324, 49.225573 ], [ 1.710812, 49.23738 ], [ 1.704364, 49.2322 ], [ 1.700984, 49.23395 ], [ 1.701625, 49.2423 ], [ 1.699859, 49.248652 ], [ 1.701428, 49.25179 ], [ 1.708007, 49.25622 ], [ 1.708195, 49.26241 ], [ 1.711646, 49.26452 ], [ 1.727115, 49.26509 ], [ 1.735143, 49.269365 ], [ 1.750536, 49.268023 ], [ 1.75472, 49.270009 ], [ 1.768065, 49.25545 ], [ 1.766896, 49.252035 ], [ 1.786654, 49.24882 ], [ 1.790552, 49.246575 ], [ 1.790289, 49.25369 ], [ 1.800911, 49.270063 ], [ 1.80266, 49.273434 ], [ 1.794084, 49.27649 ], [ 1.796641, 49.28646 ], [ 1.784643, 49.29286 ], [ 1.77535, 49.29117 ], [ 1.77239, 49.293664 ], [ 1.774432, 49.30668 ], [ 1.767545, 49.31928 ], [ 1.770655, 49.32557 ], [ 1.774004, 49.335692 ], [ 1.757629, 49.35703 ], [ 1.760168, 49.365326 ], [ 1.759341, 49.36824 ], [ 1.749902, 49.37146 ], [ 1.742778, 49.38077 ], [ 1.720029, 49.39528 ], [ 1.736382, 49.40353 ], [ 1.740379, 49.40568 ], [ 1.735689, 49.40651 ], [ 1.717574, 49.4037 ], [ 1.713938, 49.40922 ], [ 1.72201, 49.42149 ], [ 1.726078, 49.438065 ], [ 1.733389, 49.44122 ], [ 1.736373, 49.44713 ], [ 1.739918, 49.4493 ], [ 1.748842, 49.45144 ], [ 1.749925, 49.45679 ], [ 1.747434, 49.45945 ], [ 1.760619, 49.46452 ], [ 1.765371, 49.465925 ], [ 1.775771, 49.47344 ], [ 1.775438, 49.48686 ], [ 1.778449, 49.489626 ], [ 1.788633, 49.490141 ], [ 1.78755, 49.50623 ], [ 1.783584, 49.507609 ], [ 1.768074, 49.512028 ], [ 1.755399, 49.50646 ], [ 1.744868, 49.49173 ], [ 1.740506, 49.497983 ], [ 1.72546, 49.49978 ], [ 1.719227, 49.50292 ], [ 1.717972, 49.50674 ], [ 1.71992, 49.508904 ], [ 1.738792, 49.52058 ], [ 1.745519, 49.53916 ], [ 1.744888, 49.53952 ], [ 1.731211, 49.541354 ], [ 1.724905, 49.54554 ], [ 1.72916, 49.55503 ], [ 1.729834, 49.56129 ], [ 1.726288, 49.56386 ], [ 1.720397, 49.569598 ], [ 1.717848, 49.57262 ], [ 1.710406, 49.57725 ], [ 1.697693, 49.57222 ], [ 1.694593, 49.58054 ], [ 1.709641, 49.58021 ], [ 1.7204, 49.58556 ], [ 1.721618, 49.58881 ], [ 1.720146, 49.589656 ], [ 1.693725, 49.60107 ], [ 1.715943, 49.61395 ], [ 1.721685, 49.623321 ], [ 1.71873, 49.62976 ], [ 1.717252, 49.632981 ], [ 1.707252, 49.63776 ], [ 1.70442, 49.63976 ], [ 1.701361, 49.641952 ], [ 1.698685, 49.64435 ], [ 1.708078, 49.646149 ], [ 1.713754, 49.654908 ], [ 1.721554, 49.65857 ], [ 1.722778, 49.66165 ], [ 1.724131, 49.671805 ], [ 1.747082, 49.680078 ], [ 1.752184, 49.68097 ], [ 1.751309, 49.68392 ], [ 1.750299, 49.69582 ], [ 1.746515, 49.69757 ], [ 1.743109, 49.70033 ], [ 1.732928, 49.69855 ], [ 1.717096, 49.68456 ], [ 1.707758, 49.681374 ], [ 1.68862, 49.69371 ], [ 1.715453, 49.71033 ], [ 1.715109, 49.71354 ], [ 1.715538, 49.73288 ], [ 1.725303, 49.73157 ], [ 1.742891, 49.73855 ], [ 1.745455, 49.738572 ], [ 1.74026, 49.75025 ], [ 1.74272, 49.75285 ], [ 1.749886, 49.76211 ], [ 1.763625, 49.75727 ], [ 1.784845, 49.7579 ], [ 1.792246, 49.755812 ], [ 1.790529, 49.75335 ], [ 1.794776, 49.75146 ], [ 1.809602, 49.75384 ], [ 1.818059, 49.74194 ], [ 1.820456, 49.73905 ], [ 1.836526, 49.740248 ], [ 1.840662, 49.733926 ], [ 1.825215, 49.724396 ], [ 1.820558, 49.72255 ], [ 1.822305, 49.719551 ], [ 1.832154, 49.71917 ], [ 1.839607, 49.71506 ], [ 1.837961, 49.70878 ], [ 1.845561, 49.70421 ], [ 1.848986, 49.70164 ], [ 1.863471, 49.70385 ], [ 1.876809, 49.69965 ], [ 1.881046, 49.69786 ], [ 1.890205, 49.69906 ], [ 1.894761, 49.699796 ], [ 1.915707, 49.71363 ], [ 1.929088, 49.71792 ], [ 1.933066, 49.71988 ], [ 1.947314, 49.70371 ], [ 1.949092, 49.7008 ], [ 1.967105, 49.71783 ], [ 1.97147, 49.719941 ], [ 1.977685, 49.71135 ], [ 1.992926, 49.71005 ], [ 2.001826, 49.71338 ], [ 2.014066, 49.708198 ], [ 2.023351, 49.711005 ], [ 2.02847, 49.710713 ], [ 2.02882, 49.710536 ], [ 2.034015, 49.710623 ], [ 2.037942, 49.70439 ], [ 2.058855, 49.6951 ], [ 2.059015, 49.68862 ], [ 2.048708, 49.688004 ], [ 2.050939, 49.68644 ], [ 2.066362, 49.68451 ], [ 2.083263, 49.692043 ], [ 2.087716, 49.69012 ], [ 2.095049, 49.69293 ], [ 2.110949, 49.693848 ], [ 2.118952, 49.68925 ], [ 2.124042, 49.688039 ], [ 2.138188, 49.69105 ], [ 2.144646, 49.69586 ], [ 2.147203, 49.69869 ], [ 2.155584, 49.7021 ], [ 2.185361, 49.70271 ], [ 2.190164, 49.70388 ], [ 2.192036, 49.7029 ], [ 2.204975, 49.69855 ], [ 2.223633, 49.70236 ], [ 2.228579, 49.702342 ], [ 2.232463, 49.70208 ], [ 2.247169, 49.70164 ], [ 2.255913, 49.69578 ], [ 2.260268, 49.695404 ], [ 2.287811, 49.68714 ], [ 2.290579, 49.68426 ], [ 2.300514, 49.681894 ], [ 2.314607, 49.68641 ], [ 2.315517, 49.68981 ], [ 2.327508, 49.68275 ], [ 2.332295, 49.680994 ], [ 2.335226, 49.67171 ], [ 2.350234, 49.663092 ], [ 2.355011, 49.664088 ], [ 2.358328, 49.66566 ], [ 2.362066, 49.66674 ], [ 2.369307, 49.65772 ], [ 2.37391, 49.656037 ], [ 2.388916, 49.65592 ], [ 2.397808, 49.658925 ], [ 2.402178, 49.66052 ], [ 2.412372, 49.661234 ], [ 2.445587, 49.65298 ], [ 2.449166, 49.64713 ], [ 2.452897, 49.64114 ], [ 2.456753, 49.635111 ], [ 2.465564, 49.63799 ], [ 2.46896, 49.63603 ], [ 2.473367, 49.635319 ], [ 2.466812, 49.62704 ], [ 2.474051, 49.62264 ], [ 2.478123, 49.62079 ], [ 2.501306, 49.63781 ], [ 2.505507, 49.63973 ], [ 2.505375, 49.63625 ], [ 2.517447, 49.629598 ], [ 2.520903, 49.62694 ], [ 2.523867, 49.62808 ], [ 2.526593, 49.62944 ], [ 2.546494, 49.61614 ], [ 2.566469, 49.619035 ], [ 2.561697, 49.6109 ], [ 2.559162, 49.60822 ], [ 2.568938, 49.60013 ], [ 2.571632, 49.59708 ], [ 2.578709, 49.59728 ], [ 2.581595, 49.599318 ], [ 2.587559, 49.607417 ], [ 2.595904, 49.610105 ], [ 2.592678, 49.612323 ], [ 2.606249, 49.608153 ], [ 2.620704, 49.61133 ], [ 2.625948, 49.61095 ], [ 2.627046, 49.61013 ], [ 2.624482, 49.607213 ], [ 2.630769, 49.5983 ], [ 2.627794, 49.5853 ], [ 2.631943, 49.57912 ], [ 2.645208, 49.57363 ], [ 2.649629, 49.571764 ], [ 2.665993, 49.579826 ], [ 2.670723, 49.58142 ], [ 2.669194, 49.59991 ], [ 2.674102, 49.60002 ], [ 2.673979, 49.60195 ], [ 2.687078, 49.61467 ], [ 2.687363, 49.61783 ], [ 2.68783, 49.62304 ], [ 2.688934, 49.625655 ], [ 2.693622, 49.62586 ], [ 2.698296, 49.62625 ], [ 2.717068, 49.62366 ], [ 2.720402, 49.62106 ], [ 2.72521, 49.62473 ], [ 2.744352, 49.6252 ], [ 2.752944, 49.622109 ], [ 2.757555, 49.62097 ], [ 2.759687, 49.617728 ], [ 2.771722, 49.614184 ], [ 2.775992, 49.614875 ], [ 2.7905, 49.61494 ], [ 2.794973, 49.616831 ], [ 2.798614, 49.61938 ], [ 2.797412, 49.62623 ], [ 2.796333, 49.62964 ], [ 2.790333, 49.642128 ], [ 2.797732, 49.65726 ], [ 2.802349, 49.658754 ], [ 2.799495, 49.65948 ], [ 2.800429, 49.661366 ], [ 2.839634, 49.66077 ], [ 2.84335, 49.65853 ], [ 2.850149, 49.66237 ], [ 2.846658, 49.66783 ], [ 2.845141, 49.67062 ], [ 2.847449, 49.67214 ], [ 2.860329, 49.68078 ], [ 2.856765, 49.68275 ], [ 2.860636, 49.684885 ], [ 2.875527, 49.683769 ], [ 2.884609, 49.672545 ], [ 2.888795, 49.67069 ], [ 2.888424, 49.68202 ], [ 2.886762, 49.68842 ], [ 2.869074, 49.69972 ], [ 2.866199, 49.70249 ], [ 2.88318, 49.71037 ], [ 2.881704, 49.71366 ], [ 2.883796, 49.713833 ], [ 2.889739, 49.701519 ], [ 2.892294, 49.69868 ], [ 2.906863, 49.701264 ], [ 2.909734, 49.70719 ], [ 2.913415, 49.70951 ], [ 2.934781, 49.67663 ], [ 2.938476, 49.678785 ], [ 2.946497, 49.67509 ], [ 2.95329, 49.66654 ], [ 2.953004, 49.6759 ], [ 2.956076, 49.678307 ], [ 2.948747, 49.68282 ], [ 2.950191, 49.69274 ], [ 2.969691, 49.69656 ], [ 2.977431, 49.70466 ], [ 2.982405, 49.70392 ], [ 2.989983, 49.705514 ], [ 2.992366, 49.70765 ], [ 3.004392, 49.70181 ], [ 3.005222, 49.69531 ], [ 3.008325, 49.69272 ], [ 3.013408, 49.69252 ], [ 3.023736, 49.68153 ], [ 3.028305, 49.68006 ], [ 3.033486, 49.68308 ], [ 3.040503, 49.694985 ], [ 3.050281, 49.693643 ], [ 3.055323, 49.69401 ], [ 3.057579, 49.70415 ], [ 3.053997, 49.71048 ], [ 3.052435, 49.71377 ], [ 3.07844, 49.71099 ], [ 3.08332, 49.71249 ], [ 3.0792, 49.69166 ], [ 3.090193, 49.696837 ], [ 3.092566, 49.69962 ], [ 3.097274, 49.70587 ], [ 3.113319, 49.70622 ], [ 3.118652, 49.70583 ], [ 3.125917, 49.696499 ], [ 3.116282, 49.68111 ], [ 3.125, 49.67274 ], [ 3.127083, 49.66953 ], [ 3.123629, 49.66118 ], [ 3.112828, 49.66571 ], [ 3.108299, 49.66467 ], [ 3.107594, 49.65862 ], [ 3.099382, 49.656556 ], [ 3.09645, 49.65064 ], [ 3.10594, 49.64891 ], [ 3.112675, 49.6402 ], [ 3.110476, 49.634234 ], [ 3.112766, 49.63133 ], [ 3.109219, 49.6289 ], [ 3.096579, 49.62347 ], [ 3.093575, 49.622549 ], [ 3.099238, 49.61807 ], [ 3.102, 49.61579 ], [ 3.119137, 49.60449 ], [ 3.122533, 49.60203 ], [ 3.124178, 49.59626 ], [ 3.135088, 49.58137 ], [ 3.138052, 49.57859 ], [ 3.138985, 49.57585 ], [ 3.126982, 49.57291 ], [ 3.126302, 49.56607 ], [ 3.131731, 49.56022 ], [ 3.13148, 49.54338 ], [ 3.125924, 49.5418 ], [ 3.127901, 49.531384 ], [ 3.122465, 49.521683 ], [ 3.096325, 49.5179 ], [ 3.10247, 49.505138 ], [ 3.107214, 49.50367 ], [ 3.116497, 49.495212 ], [ 3.121281, 49.49368 ], [ 3.123306, 49.4808 ], [ 3.110055, 49.47665 ], [ 3.105299, 49.47129 ], [ 3.107085, 49.46823 ], [ 3.124931, 49.46279 ], [ 3.129742, 49.46205 ], [ 3.150778, 49.455269 ], [ 3.155214, 49.454185 ], [ 3.162893, 49.4496 ], [ 3.166193, 49.44692 ], [ 3.161892, 49.4426 ], [ 3.165126, 49.44085 ], [ 3.160518, 49.43936 ], [ 3.12159, 49.431745 ], [ 3.110497, 49.43848 ], [ 3.100285, 49.439278 ], [ 3.094759, 49.42484 ], [ 3.095073, 49.423041 ], [ 3.095304, 49.42123 ], [ 3.095987, 49.41791 ], [ 3.095633, 49.39798 ], [ 3.090827, 49.398246 ], [ 3.094371, 49.37853 ], [ 3.081094, 49.374334 ], [ 3.076804, 49.36871 ], [ 3.076881, 49.35548 ], [ 3.072728, 49.34789 ], [ 3.068641, 49.347304 ], [ 3.048062, 49.3368 ], [ 3.036335, 49.32574 ], [ 3.034824, 49.328981 ], [ 3.012697, 49.337219 ], [ 3.008859, 49.337857 ], [ 3.001788, 49.34015 ], [ 2.998267, 49.337471 ], [ 2.96426, 49.32138 ], [ 2.967232, 49.31895 ], [ 2.978566, 49.30941 ], [ 2.973468, 49.30457 ], [ 2.97006, 49.30261 ], [ 2.988812, 49.29672 ], [ 2.994407, 49.2883 ], [ 3.009304, 49.291113 ], [ 3.018346, 49.288074 ], [ 3.014208, 49.28181 ], [ 3.019265, 49.28142 ], [ 3.030165, 49.287604 ], [ 3.036277, 49.282703 ], [ 3.027533, 49.274903 ], [ 3.027586, 49.271523 ], [ 3.030826, 49.26683 ], [ 3.026756, 49.260573 ], [ 3.032901, 49.24729 ], [ 3.033311, 49.24379 ], [ 3.033311, 49.24334 ], [ 3.039066, 49.2274 ], [ 3.022988, 49.219284 ], [ 3.009196, 49.222917 ], [ 3.01267, 49.22901 ], [ 3.00162, 49.235657 ], [ 2.996211, 49.235315 ], [ 2.964349, 49.23191 ], [ 2.958739, 49.226606 ], [ 2.967366, 49.21533 ], [ 2.969496, 49.20994 ], [ 2.967579, 49.20332 ], [ 2.97115, 49.19708 ], [ 2.971814, 49.187529 ], [ 2.976519, 49.1859 ], [ 2.981375, 49.18447 ], [ 2.984871, 49.186965 ], [ 2.991687, 49.191982 ], [ 3.015991, 49.18 ], [ 3.021733, 49.17057 ], [ 3.027107, 49.17003 ], [ 3.037898, 49.16921 ], [ 3.035753, 49.180685 ], [ 3.035069, 49.18362 ], [ 3.029789, 49.183887 ], [ 3.025431, 49.190209 ], [ 3.0062, 49.187083 ], [ 3.00048, 49.19673 ], [ 2.998614, 49.21043 ], [ 3.001523, 49.21332 ], [ 3.006148, 49.215033 ], [ 3.016537, 49.21631 ], [ 3.030821, 49.21218 ], [ 3.034837, 49.20578 ], [ 3.043415, 49.20905 ], [ 3.05214, 49.206625 ], [ 3.061165, 49.204077 ], [ 3.060085, 49.19525 ], [ 3.063237, 49.19278 ], [ 3.077849, 49.194798 ], [ 3.085004, 49.182755 ], [ 3.083737, 49.16281 ], [ 3.094297, 49.15717 ], [ 3.086688, 49.173 ], [ 3.10245, 49.19731 ], [ 3.114563, 49.190768 ], [ 3.113552, 49.167556 ], [ 3.126879, 49.16219 ], [ 3.137366, 49.16177 ], [ 3.142289, 49.157411 ], [ 3.126777, 49.14851 ], [ 3.127057, 49.145066 ], [ 3.107105, 49.14612 ], [ 3.113521, 49.1411 ], [ 3.116887, 49.13867 ], [ 3.113415, 49.13626 ], [ 3.105274, 49.13555 ], [ 3.093913, 49.1421 ], [ 3.093026, 49.12898 ], [ 3.087084, 49.12321 ], [ 3.077028, 49.122065 ], [ 3.071884, 49.117554 ] ] ], [ [ [ 2.99023, 49.21067 ], [ 2.988514, 49.211356 ], [ 2.987417, 49.210915 ], [ 2.988597, 49.21239 ], [ 2.987855, 49.21253 ], [ 2.987087, 49.212264 ], [ 2.985454, 49.213082 ], [ 2.986304, 49.21511 ], [ 2.985082, 49.21624 ], [ 2.982406, 49.2163 ], [ 2.982488, 49.21688 ], [ 2.984698, 49.21817 ], [ 2.989446, 49.219492 ], [ 2.988457, 49.22211 ], [ 2.992451, 49.2232 ], [ 2.993755, 49.22253 ], [ 2.997749, 49.22358 ], [ 3.000412, 49.222666 ], [ 3.002566, 49.21969 ], [ 3.002759, 49.21884 ], [ 2.998298, 49.21909 ], [ 2.998161, 49.21895 ], [ 2.99779, 49.21679 ], [ 2.999698, 49.215384 ], [ 2.997887, 49.21396 ], [ 2.99694, 49.21401 ], [ 2.995746, 49.21258 ], [ 2.995321, 49.21132 ], [ 2.994511, 49.21236 ], [ 2.99237, 49.2121 ], [ 2.991739, 49.21094 ], [ 2.99023, 49.21067 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "62", "CODE_DEPT": "61", "NOM_DEPT": "ORNE", "CODE_CHF": "001", "NOM_CHF": "ALENCON", "X_CHF_LIEU": "4849", "Y_CHF_LIEU": "68183", "X_CENTROID": "4884", "Y_CENTROID": "68397", "CODE_REG": "25", "NOM_REGION": "BASSE-NORMANDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.797655, 48.19446 ], [ 0.793203, 48.19307 ], [ 0.759209, 48.18009 ], [ 0.755327, 48.18211 ], [ 0.751105, 48.183916 ], [ 0.73863, 48.18919 ], [ 0.732119, 48.19816 ], [ 0.723637, 48.19814 ], [ 0.72026, 48.202768 ], [ 0.72035, 48.20628 ], [ 0.687394, 48.24078 ], [ 0.683916, 48.254 ], [ 0.679097, 48.25508 ], [ 0.652469, 48.26339 ], [ 0.642751, 48.26154 ], [ 0.631907, 48.254761 ], [ 0.631421, 48.251466 ], [ 0.63848, 48.235611 ], [ 0.635062, 48.235515 ], [ 0.631908, 48.23462 ], [ 0.630203, 48.24078 ], [ 0.622457, 48.244921 ], [ 0.613135, 48.24273 ], [ 0.593727, 48.24455 ], [ 0.579192, 48.244412 ], [ 0.574411, 48.244917 ], [ 0.546795, 48.250162 ], [ 0.537336, 48.24924 ], [ 0.537331, 48.252801 ], [ 0.53656, 48.25978 ], [ 0.530307, 48.2655 ], [ 0.525809, 48.26595 ], [ 0.512572, 48.26759 ], [ 0.494423, 48.283488 ], [ 0.497806, 48.289797 ], [ 0.505824, 48.293658 ], [ 0.491583, 48.30716 ], [ 0.475989, 48.30005 ], [ 0.46327, 48.30528 ], [ 0.442805, 48.30464 ], [ 0.438486, 48.306046 ], [ 0.429965, 48.30868 ], [ 0.427652, 48.31486 ], [ 0.426281, 48.31752 ], [ 0.415531, 48.32149 ], [ 0.408565, 48.316323 ], [ 0.395362, 48.32129 ], [ 0.383907, 48.33288 ], [ 0.380633, 48.34306 ], [ 0.384251, 48.34307 ], [ 0.387484, 48.34731 ], [ 0.387348, 48.350595 ], [ 0.380557, 48.36928 ], [ 0.380868, 48.37279 ], [ 0.378659, 48.38323 ], [ 0.37678, 48.3854 ], [ 0.373864, 48.38697 ], [ 0.375708, 48.390098 ], [ 0.372679, 48.41013 ], [ 0.379512, 48.414919 ], [ 0.381725, 48.42479 ], [ 0.376012, 48.43031 ], [ 0.373314, 48.43287 ], [ 0.367808, 48.43774 ], [ 0.367697, 48.44131 ], [ 0.363205, 48.45156 ], [ 0.35289, 48.45969 ], [ 0.350087, 48.45865 ], [ 0.345224, 48.45927 ], [ 0.340997, 48.460977 ], [ 0.33683, 48.46282 ], [ 0.324524, 48.471903 ], [ 0.314738, 48.473194 ], [ 0.30963, 48.473286 ], [ 0.297909, 48.479816 ], [ 0.283555, 48.48145 ], [ 0.278804, 48.48089 ], [ 0.266806, 48.48458 ], [ 0.262725, 48.482862 ], [ 0.26165, 48.47934 ], [ 0.258785, 48.47664 ], [ 0.225463, 48.47286 ], [ 0.221658, 48.47314 ], [ 0.217968, 48.473801 ], [ 0.213565, 48.47283 ], [ 0.194949, 48.463745 ], [ 0.191952, 48.46234 ], [ 0.186797, 48.46281 ], [ 0.172327, 48.46383 ], [ 0.170289, 48.4572 ], [ 0.173647, 48.45088 ], [ 0.169081, 48.44948 ], [ 0.152522, 48.45663 ], [ 0.143925, 48.454948 ], [ 0.145863, 48.45217 ], [ 0.154882, 48.4453 ], [ 0.158318, 48.443078 ], [ 0.153319, 48.43794 ], [ 0.148697, 48.43711 ], [ 0.125777, 48.43417 ], [ 0.121836, 48.435978 ], [ 0.117659, 48.436164 ], [ 0.111593, 48.43232 ], [ 0.109346, 48.42302 ], [ 0.099434, 48.41096 ], [ 0.083677, 48.411027 ], [ 0.083781, 48.41013 ], [ 0.079721, 48.408733 ], [ 0.067362, 48.40606 ], [ 0.064199, 48.40338 ], [ 0.054482, 48.39148 ], [ 0.062524, 48.383028 ], [ 0.039682, 48.38041 ], [ 0.035453, 48.38038 ], [ 0.023083, 48.38021 ], [ 0.01868, 48.38158 ], [ 0.005246, 48.38964 ], [ 0.00337, 48.395996 ], [ -0.001245, 48.39727 ], [ -0.02017, 48.39393 ], [ -0.022101, 48.38779 ], [ -0.051402, 48.37816 ], [ -0.049672, 48.37513 ], [ -0.054531, 48.382003 ], [ -0.057247, 48.384779 ], [ -0.053479, 48.390188 ], [ -0.053658, 48.3935 ], [ -0.05758, 48.429084 ], [ -0.055219, 48.43059 ], [ -0.054087, 48.43391 ], [ -0.049827, 48.44723 ], [ -0.053345, 48.45351 ], [ -0.062548, 48.456514 ], [ -0.067327, 48.45723 ], [ -0.08034, 48.44971 ], [ -0.108255, 48.448024 ], [ -0.118485, 48.448233 ], [ -0.137842, 48.45282 ], [ -0.142193, 48.4543 ], [ -0.148946, 48.45879 ], [ -0.148132, 48.47161 ], [ -0.153516, 48.47695 ], [ -0.15017, 48.478953 ], [ -0.155064, 48.48716 ], [ -0.155447, 48.490138 ], [ -0.155678, 48.49331 ], [ -0.167477, 48.50297 ], [ -0.172087, 48.502137 ], [ -0.166668, 48.514706 ], [ -0.145388, 48.52116 ], [ -0.144604, 48.52775 ], [ -0.179251, 48.541649 ], [ -0.189492, 48.548622 ], [ -0.191725, 48.55168 ], [ -0.195862, 48.55591 ], [ -0.199584, 48.558236 ], [ -0.207346, 48.56252 ], [ -0.215792, 48.55979 ], [ -0.230695, 48.56195 ], [ -0.242639, 48.568 ], [ -0.246473, 48.56572 ], [ -0.249293, 48.556078 ], [ -0.257472, 48.551956 ], [ -0.260578, 48.54913 ], [ -0.243057, 48.537062 ], [ -0.250837, 48.528081 ], [ -0.26839, 48.52067 ], [ -0.27155, 48.50745 ], [ -0.285283, 48.50865 ], [ -0.285881, 48.515169 ], [ -0.290094, 48.516871 ], [ -0.308956, 48.51833 ], [ -0.312305, 48.52027 ], [ -0.320239, 48.522929 ], [ -0.334973, 48.50908 ], [ -0.336825, 48.50242 ], [ -0.353789, 48.496496 ], [ -0.353152, 48.483774 ], [ -0.365814, 48.48755 ], [ -0.371083, 48.495556 ], [ -0.375751, 48.4961 ], [ -0.389253, 48.49937 ], [ -0.393346, 48.50107 ], [ -0.397657, 48.51051 ], [ -0.400875, 48.50789 ], [ -0.425449, 48.50736 ], [ -0.424473, 48.50819 ], [ -0.428467, 48.51021 ], [ -0.446883, 48.51494 ], [ -0.450728, 48.51282 ], [ -0.455856, 48.51269 ], [ -0.466117, 48.51252 ], [ -0.478198, 48.50157 ], [ -0.48293, 48.50263 ], [ -0.492665, 48.50212 ], [ -0.509294, 48.50884 ], [ -0.512798, 48.50653 ], [ -0.518632, 48.497552 ], [ -0.534907, 48.49155 ], [ -0.53787, 48.488884 ], [ -0.553157, 48.47297 ], [ -0.562328, 48.473799 ], [ -0.564255, 48.47686 ], [ -0.567457, 48.474545 ], [ -0.571639, 48.46893 ], [ -0.575807, 48.470079 ], [ -0.593207, 48.47084 ], [ -0.594311, 48.47252 ], [ -0.598929, 48.47074 ], [ -0.613629, 48.46061 ], [ -0.654215, 48.44454 ], [ -0.653906, 48.453912 ], [ -0.653977, 48.45746 ], [ -0.658168, 48.474845 ], [ -0.66884, 48.486458 ], [ -0.669079, 48.483289 ], [ -0.68367, 48.47694 ], [ -0.68361, 48.47069 ], [ -0.687991, 48.46944 ], [ -0.692663, 48.46827 ], [ -0.702106, 48.46966 ], [ -0.703268, 48.472888 ], [ -0.716955, 48.47032 ], [ -0.725251, 48.47347 ], [ -0.730066, 48.47205 ], [ -0.735258, 48.462402 ], [ -0.715918, 48.4509 ], [ -0.756483, 48.436937 ], [ -0.760817, 48.436412 ], [ -0.773966, 48.44271 ], [ -0.777874, 48.46541 ], [ -0.793424, 48.465267 ], [ -0.812743, 48.45492 ], [ -0.815108, 48.45746 ], [ -0.818601, 48.468431 ], [ -0.81808, 48.47412 ], [ -0.821988, 48.47608 ], [ -0.826973, 48.477186 ], [ -0.845826, 48.49783 ], [ -0.860363, 48.50146 ], [ -0.85602, 48.50874 ], [ -0.855947, 48.512185 ], [ -0.808914, 48.54787 ], [ -0.805633, 48.549751 ], [ -0.790567, 48.55207 ], [ -0.775712, 48.561837 ], [ -0.773342, 48.56849 ], [ -0.774519, 48.57541 ], [ -0.769516, 48.58829 ], [ -0.763014, 48.59339 ], [ -0.758265, 48.59475 ], [ -0.751665, 48.603429 ], [ -0.753004, 48.61964 ], [ -0.744902, 48.621446 ], [ -0.739977, 48.621708 ], [ -0.743561, 48.627566 ], [ -0.762478, 48.631634 ], [ -0.771271, 48.650141 ], [ -0.772818, 48.65331 ], [ -0.773294, 48.6567 ], [ -0.761733, 48.663212 ], [ -0.756696, 48.672754 ], [ -0.741063, 48.68077 ], [ -0.736267, 48.679501 ], [ -0.736816, 48.686229 ], [ -0.764464, 48.69339 ], [ -0.769037, 48.694939 ], [ -0.771771, 48.69738 ], [ -0.778546, 48.701346 ], [ -0.782499, 48.702761 ], [ -0.796916, 48.70907 ], [ -0.799661, 48.71203 ], [ -0.807277, 48.724475 ], [ -0.818932, 48.731414 ], [ -0.828977, 48.73252 ], [ -0.831817, 48.72967 ], [ -0.842413, 48.728463 ], [ -0.847051, 48.72971 ], [ -0.851775, 48.745576 ], [ -0.840936, 48.75223 ], [ -0.825322, 48.75249 ], [ -0.812822, 48.75846 ], [ -0.80823, 48.76011 ], [ -0.789464, 48.77964 ], [ -0.784904, 48.781185 ], [ -0.781431, 48.78347 ], [ -0.780627, 48.786651 ], [ -0.743942, 48.79192 ], [ -0.720012, 48.79936 ], [ -0.714679, 48.79987 ], [ -0.711532, 48.802766 ], [ -0.70847, 48.805706 ], [ -0.686626, 48.820049 ], [ -0.682172, 48.82183 ], [ -0.690819, 48.824385 ], [ -0.702481, 48.834216 ], [ -0.7055, 48.83679 ], [ -0.691249, 48.84623 ], [ -0.682991, 48.8423 ], [ -0.652919, 48.83846 ], [ -0.643436, 48.84095 ], [ -0.643054, 48.830407 ], [ -0.645422, 48.82722 ], [ -0.624501, 48.826973 ], [ -0.61079, 48.83198 ], [ -0.606409, 48.83389 ], [ -0.603179, 48.834514 ], [ -0.599866, 48.83492 ], [ -0.580286, 48.836553 ], [ -0.574716, 48.83111 ], [ -0.569821, 48.83052 ], [ -0.560863, 48.83431 ], [ -0.54965, 48.84627 ], [ -0.524007, 48.85031 ], [ -0.512126, 48.84849 ], [ -0.509979, 48.84597 ], [ -0.495536, 48.84904 ], [ -0.49708, 48.85578 ], [ -0.477606, 48.85936 ], [ -0.469371, 48.86803 ], [ -0.464764, 48.87099 ], [ -0.432673, 48.872694 ], [ -0.424948, 48.86976 ], [ -0.425236, 48.86646 ], [ -0.410852, 48.869961 ], [ -0.406375, 48.86827 ], [ -0.404559, 48.86157 ], [ -0.401276, 48.85894 ], [ -0.388768, 48.84807 ], [ -0.383774, 48.84698 ], [ -0.365815, 48.84871 ], [ -0.363386, 48.849126 ], [ -0.359269, 48.843661 ], [ -0.368887, 48.841806 ], [ -0.369708, 48.83553 ], [ -0.34715, 48.822514 ], [ -0.345416, 48.821833 ], [ -0.333989, 48.8335 ], [ -0.32966, 48.835523 ], [ -0.33373, 48.84351 ], [ -0.335751, 48.84632 ], [ -0.330234, 48.85474 ], [ -0.32852, 48.8576 ], [ -0.307438, 48.857707 ], [ -0.301102, 48.85222 ], [ -0.298548, 48.849159 ], [ -0.287467, 48.852722 ], [ -0.283313, 48.85239 ], [ -0.268018, 48.853183 ], [ -0.258988, 48.849901 ], [ -0.253713, 48.849514 ], [ -0.242242, 48.84928 ], [ -0.231433, 48.84476 ], [ -0.227631, 48.843263 ], [ -0.214942, 48.84073 ], [ -0.208, 48.84447 ], [ -0.204676, 48.846527 ], [ -0.198952, 48.84103 ], [ -0.180463, 48.83635 ], [ -0.174129, 48.82773 ], [ -0.151769, 48.82025 ], [ -0.14839, 48.822514 ], [ -0.130837, 48.817359 ], [ -0.126169, 48.81657 ], [ -0.144833, 48.83246 ], [ -0.14223, 48.83543 ], [ -0.127746, 48.83784 ], [ -0.124776, 48.847426 ], [ -0.114839, 48.840674 ], [ -0.106732, 48.83962 ], [ -0.08833, 48.84408 ], [ -0.079195, 48.84248 ], [ -0.075024, 48.84065 ], [ -0.069593, 48.842663 ], [ -0.060574, 48.85022 ], [ -0.059006, 48.853492 ], [ -0.03408, 48.86691 ], [ -0.030807, 48.869734 ], [ -0.031067, 48.873733 ], [ -0.02257, 48.876846 ], [ -0.009494, 48.87462 ], [ -0.006654, 48.872 ], [ -0.006177, 48.87223 ], [ -0.008969, 48.8809 ], [ -0.009861, 48.8838 ], [ 0.023808, 48.89517 ], [ 0.050136, 48.89928 ], [ 0.058093, 48.90507 ], [ 0.058007, 48.9078 ], [ 0.061767, 48.91375 ], [ 0.06374, 48.91677 ], [ 0.065764, 48.926145 ], [ 0.078168, 48.93532 ], [ 0.080723, 48.937984 ], [ 0.101453, 48.936112 ], [ 0.125316, 48.94992 ], [ 0.127608, 48.95222 ], [ 0.136288, 48.9504 ], [ 0.144625, 48.94337 ], [ 0.146026, 48.94051 ], [ 0.150868, 48.92717 ], [ 0.165756, 48.92588 ], [ 0.170789, 48.927 ], [ 0.179152, 48.9299 ], [ 0.184684, 48.93847 ], [ 0.187316, 48.94107 ], [ 0.214989, 48.94645 ], [ 0.222151, 48.943047 ], [ 0.224621, 48.94029 ], [ 0.2389, 48.9425 ], [ 0.242449, 48.95542 ], [ 0.244401, 48.958552 ], [ 0.257001, 48.963447 ], [ 0.271397, 48.96486 ], [ 0.276222, 48.96538 ], [ 0.278183, 48.95012 ], [ 0.282713, 48.94891 ], [ 0.304392, 48.95315 ], [ 0.308722, 48.954227 ], [ 0.319844, 48.94704 ], [ 0.329514, 48.945218 ], [ 0.333231, 48.942782 ], [ 0.356623, 48.94962 ], [ 0.374945, 48.969597 ], [ 0.377447, 48.972558 ], [ 0.404368, 48.96274 ], [ 0.400154, 48.952755 ], [ 0.412815, 48.950626 ], [ 0.396241, 48.93242 ], [ 0.395214, 48.928921 ], [ 0.390826, 48.927107 ], [ 0.387285, 48.91387 ], [ 0.386114, 48.910548 ], [ 0.417946, 48.898471 ], [ 0.426211, 48.8867 ], [ 0.436708, 48.88578 ], [ 0.45004, 48.891016 ], [ 0.443534, 48.88402 ], [ 0.443109, 48.88128 ], [ 0.452557, 48.88003 ], [ 0.457358, 48.87976 ], [ 0.459094, 48.8878 ], [ 0.47437, 48.88706 ], [ 0.496544, 48.87878 ], [ 0.515706, 48.88058 ], [ 0.52088, 48.880798 ], [ 0.549868, 48.87471 ], [ 0.553791, 48.87686 ], [ 0.573844, 48.89177 ], [ 0.578041, 48.893656 ], [ 0.590805, 48.888803 ], [ 0.595643, 48.888028 ], [ 0.596624, 48.884817 ], [ 0.585984, 48.8786 ], [ 0.589631, 48.872603 ], [ 0.608871, 48.8757 ], [ 0.6064, 48.862376 ], [ 0.610658, 48.85606 ], [ 0.619441, 48.852749 ], [ 0.633771, 48.85604 ], [ 0.611184, 48.835084 ], [ 0.607869, 48.832489 ], [ 0.624834, 48.82715 ], [ 0.628768, 48.825159 ], [ 0.642759, 48.816501 ], [ 0.647016, 48.814857 ], [ 0.656093, 48.81357 ], [ 0.660002, 48.811774 ], [ 0.690171, 48.79406 ], [ 0.699117, 48.79286 ], [ 0.703765, 48.791533 ], [ 0.708628, 48.79025 ], [ 0.713196, 48.78856 ], [ 0.716372, 48.785989 ], [ 0.730523, 48.78559 ], [ 0.739437, 48.77753 ], [ 0.752631, 48.77274 ], [ 0.755764, 48.770135 ], [ 0.75678, 48.766465 ], [ 0.751061, 48.760527 ], [ 0.77192, 48.74021 ], [ 0.775034, 48.73736 ], [ 0.763635, 48.73036 ], [ 0.758437, 48.72059 ], [ 0.748398, 48.718448 ], [ 0.743593, 48.717 ], [ 0.732598, 48.70933 ], [ 0.728764, 48.706847 ], [ 0.731016, 48.70383 ], [ 0.75117, 48.703978 ], [ 0.763337, 48.69793 ], [ 0.767302, 48.69582 ], [ 0.767725, 48.69322 ], [ 0.76511, 48.6905 ], [ 0.764138, 48.67572 ], [ 0.767326, 48.673616 ], [ 0.780369, 48.666589 ], [ 0.782205, 48.66652 ], [ 0.796482, 48.674914 ], [ 0.810178, 48.67135 ], [ 0.814819, 48.67017 ], [ 0.809946, 48.66423 ], [ 0.819748, 48.652955 ], [ 0.823565, 48.65067 ], [ 0.821978, 48.64474 ], [ 0.822818, 48.63534 ], [ 0.831762, 48.63342 ], [ 0.827771, 48.63113 ], [ 0.818206, 48.615043 ], [ 0.822398, 48.60887 ], [ 0.826926, 48.6103 ], [ 0.845909, 48.609015 ], [ 0.849312, 48.58594 ], [ 0.867284, 48.57395 ], [ 0.892944, 48.57183 ], [ 0.905802, 48.56598 ], [ 0.910268, 48.564135 ], [ 0.921331, 48.55935 ], [ 0.925711, 48.55965 ], [ 0.937141, 48.5486 ], [ 0.924168, 48.53803 ], [ 0.931842, 48.534151 ], [ 0.962768, 48.524228 ], [ 0.96774, 48.523881 ], [ 0.96615, 48.520507 ], [ 0.954658, 48.50467 ], [ 0.941554, 48.49869 ], [ 0.951279, 48.49341 ], [ 0.955397, 48.49266 ], [ 0.955507, 48.489476 ], [ 0.953055, 48.48016 ], [ 0.935709, 48.47551 ], [ 0.936714, 48.47301 ], [ 0.937356, 48.47045 ], [ 0.940331, 48.46017 ], [ 0.955273, 48.445817 ], [ 0.963768, 48.44198 ], [ 0.974317, 48.44199 ], [ 0.976416, 48.43877 ], [ 0.973173, 48.43622 ], [ 0.945291, 48.41811 ], [ 0.948381, 48.40164 ], [ 0.929503, 48.39059 ], [ 0.926529, 48.384112 ], [ 0.922214, 48.38252 ], [ 0.907347, 48.3701 ], [ 0.904504, 48.37263 ], [ 0.896387, 48.370909 ], [ 0.894525, 48.367825 ], [ 0.883707, 48.35672 ], [ 0.869034, 48.35723 ], [ 0.853889, 48.349113 ], [ 0.840028, 48.35291 ], [ 0.841975, 48.349896 ], [ 0.827867, 48.342311 ], [ 0.824902, 48.3448 ], [ 0.818405, 48.349419 ], [ 0.813732, 48.348811 ], [ 0.788027, 48.341322 ], [ 0.785432, 48.34044 ], [ 0.785039, 48.337585 ], [ 0.781343, 48.332691 ], [ 0.778368, 48.32995 ], [ 0.769234, 48.32188 ], [ 0.769615, 48.31513 ], [ 0.757286, 48.300771 ], [ 0.760447, 48.298131 ], [ 0.764576, 48.299991 ], [ 0.778584, 48.302109 ], [ 0.797486, 48.291445 ], [ 0.807066, 48.28973 ], [ 0.802328, 48.288196 ], [ 0.794042, 48.284127 ], [ 0.785981, 48.2712 ], [ 0.791517, 48.265231 ], [ 0.787321, 48.26144 ], [ 0.822102, 48.223557 ], [ 0.829446, 48.21137 ], [ 0.80662, 48.20422 ], [ 0.80674, 48.19745 ], [ 0.797655, 48.19446 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "63", "CODE_DEPT": "62", "NOM_DEPT": "PAS-DE-CALAIS", "CODE_CHF": "041", "NOM_CHF": "ARRAS", "X_CHF_LIEU": "6843", "Y_CHF_LIEU": "70212", "X_CENTROID": "6494", "Y_CENTROID": "70442", "CODE_REG": "31", "NOM_REGION": "NORD-PAS-DE-CALAIS" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.090254, 50.053741 ], [ 3.087305, 50.0509 ], [ 3.074492, 50.0453 ], [ 3.071427, 50.047906 ], [ 3.06154, 50.04938 ], [ 3.057637, 50.05122 ], [ 3.030412, 50.057479 ], [ 3.026241, 50.05678 ], [ 3.024914, 50.054148 ], [ 3.02193, 50.05684 ], [ 3.01197, 50.058039 ], [ 3.006835, 50.054609 ], [ 3.002692, 50.05298 ], [ 2.993849, 50.050415 ], [ 2.988758, 50.0493 ], [ 2.971536, 50.04137 ], [ 2.969176, 50.046692 ], [ 2.961795, 50.05014 ], [ 2.957679, 50.05113 ], [ 2.949406, 50.05304 ], [ 2.944091, 50.0527 ], [ 2.940021, 50.05047 ], [ 2.938699, 50.047337 ], [ 2.934866, 50.04524 ], [ 2.930726, 50.04403 ], [ 2.920175, 50.048592 ], [ 2.919557, 50.042089 ], [ 2.917016, 50.03554 ], [ 2.896167, 50.03656 ], [ 2.882694, 50.0312 ], [ 2.879144, 50.02915 ], [ 2.875747, 50.027 ], [ 2.878569, 50.02452 ], [ 2.871189, 50.021076 ], [ 2.856377, 50.02358 ], [ 2.855422, 50.02607 ], [ 2.853071, 50.02916 ], [ 2.859918, 50.03366 ], [ 2.869954, 50.034951 ], [ 2.876374, 50.04424 ], [ 2.864729, 50.05992 ], [ 2.860778, 50.060646 ], [ 2.856704, 50.060992 ], [ 2.854922, 50.064277 ], [ 2.855414, 50.07799 ], [ 2.85018, 50.07808 ], [ 2.837806, 50.07201 ], [ 2.831235, 50.06317 ], [ 2.82771, 50.06563 ], [ 2.8105, 50.05987 ], [ 2.807198, 50.06246 ], [ 2.804223, 50.05971 ], [ 2.795705, 50.05127 ], [ 2.79451, 50.05005 ], [ 2.780917, 50.04835 ], [ 2.775739, 50.0428 ], [ 2.752195, 50.04032 ], [ 2.748877, 50.042918 ], [ 2.742339, 50.04801 ], [ 2.745871, 50.05013 ], [ 2.763746, 50.060597 ], [ 2.7609, 50.069384 ], [ 2.764392, 50.071825 ], [ 2.774462, 50.079226 ], [ 2.77886, 50.08847 ], [ 2.781836, 50.09111 ], [ 2.778142, 50.09943 ], [ 2.778492, 50.102405 ], [ 2.780898, 50.111156 ], [ 2.77794, 50.11376 ], [ 2.763849, 50.11051 ], [ 2.749537, 50.112803 ], [ 2.74715, 50.11551 ], [ 2.72993, 50.12586 ], [ 2.725191, 50.126365 ], [ 2.707128, 50.12643 ], [ 2.71352, 50.11019 ], [ 2.703494, 50.107689 ], [ 2.697575, 50.102573 ], [ 2.715239, 50.09011 ], [ 2.718994, 50.08764 ], [ 2.715684, 50.08536 ], [ 2.703859, 50.08099 ], [ 2.701148, 50.08391 ], [ 2.691593, 50.09203 ], [ 2.682389, 50.095045 ], [ 2.672081, 50.09363 ], [ 2.669203, 50.0961 ], [ 2.656525, 50.100283 ], [ 2.653888, 50.09803 ], [ 2.647546, 50.09441 ], [ 2.644387, 50.096988 ], [ 2.635779, 50.10002 ], [ 2.630646, 50.10511 ], [ 2.630728, 50.10728 ], [ 2.626761, 50.10933 ], [ 2.611729, 50.1101 ], [ 2.592904, 50.106555 ], [ 2.590719, 50.10911 ], [ 2.575671, 50.11333 ], [ 2.573, 50.11546 ], [ 2.569355, 50.1204 ], [ 2.569643, 50.1226 ], [ 2.583003, 50.13214 ], [ 2.586635, 50.137365 ], [ 2.582367, 50.13804 ], [ 2.577454, 50.139103 ], [ 2.56837, 50.13596 ], [ 2.564676, 50.13824 ], [ 2.551329, 50.141704 ], [ 2.546349, 50.13609 ], [ 2.548176, 50.12382 ], [ 2.545311, 50.12092 ], [ 2.532332, 50.11508 ], [ 2.514949, 50.140821 ], [ 2.510031, 50.140747 ], [ 2.491086, 50.137662 ], [ 2.475975, 50.13686 ], [ 2.472807, 50.13516 ], [ 2.4694, 50.133645 ], [ 2.464991, 50.131731 ], [ 2.455049, 50.13118 ], [ 2.454672, 50.12855 ], [ 2.449995, 50.1244 ], [ 2.44742, 50.11975 ], [ 2.446132, 50.11744 ], [ 2.44424, 50.1142 ], [ 2.429658, 50.088185 ], [ 2.424694, 50.087668 ], [ 2.417504, 50.09138 ], [ 2.414508, 50.10065 ], [ 2.409489, 50.1012 ], [ 2.39739, 50.1065 ], [ 2.394888, 50.110193 ], [ 2.37546, 50.10926 ], [ 2.379793, 50.11919 ], [ 2.385485, 50.13942 ], [ 2.391722, 50.144852 ], [ 2.389892, 50.15519 ], [ 2.398866, 50.15642 ], [ 2.401777, 50.16201 ], [ 2.403268, 50.1648 ], [ 2.410836, 50.1632 ], [ 2.41453, 50.16417 ], [ 2.415553, 50.16998 ], [ 2.414846, 50.17311 ], [ 2.417858, 50.17386 ], [ 2.420855, 50.17464 ], [ 2.435006, 50.17962 ], [ 2.445443, 50.17925 ], [ 2.450821, 50.17852 ], [ 2.469649, 50.18738 ], [ 2.473887, 50.18865 ], [ 2.481204, 50.19124 ], [ 2.485371, 50.19134 ], [ 2.49209, 50.19369 ], [ 2.49569, 50.19456 ], [ 2.495053, 50.19955 ], [ 2.492589, 50.2025 ], [ 2.488928, 50.204861 ], [ 2.485204, 50.2078 ], [ 2.480374, 50.208121 ], [ 2.464414, 50.21423 ], [ 2.459599, 50.219552 ], [ 2.456774, 50.221929 ], [ 2.452066, 50.23021 ], [ 2.446938, 50.229347 ], [ 2.436855, 50.227263 ], [ 2.432034, 50.22777 ], [ 2.4174, 50.228295 ], [ 2.407013, 50.2343 ], [ 2.402588, 50.23322 ], [ 2.389474, 50.22476 ], [ 2.384861, 50.22541 ], [ 2.383136, 50.22576 ], [ 2.373296, 50.217769 ], [ 2.370989, 50.210888 ], [ 2.36782, 50.20802 ], [ 2.364877, 50.20728 ], [ 2.361731, 50.207078 ], [ 2.336655, 50.23499 ], [ 2.334836, 50.23706 ], [ 2.332878, 50.23908 ], [ 2.32887, 50.237219 ], [ 2.314767, 50.23442 ], [ 2.31625, 50.23139 ], [ 2.320808, 50.23284 ], [ 2.331301, 50.22172 ], [ 2.327132, 50.213098 ], [ 2.325191, 50.21593 ], [ 2.318389, 50.21915 ], [ 2.301693, 50.212957 ], [ 2.296925, 50.21371 ], [ 2.290685, 50.21858 ], [ 2.287735, 50.22135 ], [ 2.269351, 50.227649 ], [ 2.253431, 50.21468 ], [ 2.239739, 50.21317 ], [ 2.230807, 50.21063 ], [ 2.227382, 50.20861 ], [ 2.224421, 50.21736 ], [ 2.213785, 50.21736 ], [ 2.204867, 50.21395 ], [ 2.199908, 50.215175 ], [ 2.19949, 50.21241 ], [ 2.187737, 50.20968 ], [ 2.183477, 50.21002 ], [ 2.178498, 50.207293 ], [ 2.173297, 50.20789 ], [ 2.14976, 50.19043 ], [ 2.146971, 50.19327 ], [ 2.141667, 50.20246 ], [ 2.135692, 50.20745 ], [ 2.12193, 50.21029 ], [ 2.114559, 50.202862 ], [ 2.110291, 50.20449 ], [ 2.096639, 50.20663 ], [ 2.085714, 50.20102 ], [ 2.08483, 50.20422 ], [ 2.083606, 50.21697 ], [ 2.080371, 50.219413 ], [ 2.068487, 50.227091 ], [ 2.067945, 50.232978 ], [ 2.063816, 50.234456 ], [ 2.064081, 50.23752 ], [ 2.077822, 50.24873 ], [ 2.075299, 50.25116 ], [ 2.064405, 50.25562 ], [ 2.059045, 50.25537 ], [ 2.048668, 50.256771 ], [ 2.037773, 50.26406 ], [ 2.034272, 50.26619 ], [ 2.026236, 50.26955 ], [ 2.01185, 50.26797 ], [ 2.003229, 50.27038 ], [ 2.000611, 50.27243 ], [ 1.994128, 50.27572 ], [ 1.969736, 50.282455 ], [ 1.959874, 50.29049 ], [ 1.955702, 50.289557 ], [ 1.949353, 50.2862 ], [ 1.945648, 50.287747 ], [ 1.934163, 50.29938 ], [ 1.959846, 50.311618 ], [ 1.963934, 50.31805 ], [ 1.964332, 50.32122 ], [ 1.946195, 50.33149 ], [ 1.941134, 50.330674 ], [ 1.919498, 50.31259 ], [ 1.898883, 50.31333 ], [ 1.898602, 50.31592 ], [ 1.893294, 50.31817 ], [ 1.888094, 50.31806 ], [ 1.875354, 50.32273 ], [ 1.869131, 50.33447 ], [ 1.852133, 50.34107 ], [ 1.851698, 50.34291 ], [ 1.846308, 50.34361 ], [ 1.821907, 50.35029 ], [ 1.81855, 50.35223 ], [ 1.804679, 50.35961 ], [ 1.800413, 50.35955 ], [ 1.791952, 50.35946 ], [ 1.786838, 50.359656 ], [ 1.761849, 50.361608 ], [ 1.755055, 50.35705 ], [ 1.740339, 50.35452 ], [ 1.730052, 50.34782 ], [ 1.725573, 50.34572 ], [ 1.703836, 50.34304 ], [ 1.694837, 50.33888 ], [ 1.69253, 50.34291 ], [ 1.690565, 50.33969 ], [ 1.667566, 50.33074 ], [ 1.662287, 50.331458 ], [ 1.66431, 50.334533 ], [ 1.651627, 50.33981 ], [ 1.646499, 50.340077 ], [ 1.641544, 50.35215 ], [ 1.631789, 50.36152 ], [ 1.633358, 50.36424 ], [ 1.623055, 50.37143 ], [ 1.617782, 50.372227 ], [ 1.613351, 50.370489 ], [ 1.600635, 50.375949 ], [ 1.580943, 50.378678 ], [ 1.573413, 50.38727 ], [ 1.571513, 50.390377 ], [ 1.555965, 50.39875 ], [ 1.568914, 50.439935 ], [ 1.573471, 50.4677 ], [ 1.574189, 50.47116 ], [ 1.576258, 50.48754 ], [ 1.578151, 50.51921 ], [ 1.585536, 50.53601 ], [ 1.590797, 50.53675 ], [ 1.595956, 50.53056 ], [ 1.610679, 50.525762 ], [ 1.630697, 50.51362 ], [ 1.63487, 50.51133 ], [ 1.637225, 50.509647 ], [ 1.640627, 50.508786 ], [ 1.655632, 50.507783 ], [ 1.660189, 50.50634 ], [ 1.661916, 50.50652 ], [ 1.661612, 50.50736 ], [ 1.647457, 50.51128 ], [ 1.635626, 50.51358 ], [ 1.613803, 50.53763 ], [ 1.609281, 50.53966 ], [ 1.580884, 50.564105 ], [ 1.576899, 50.57743 ], [ 1.578796, 50.58064 ], [ 1.578041, 50.60334 ], [ 1.578329, 50.60662 ], [ 1.576175, 50.636336 ], [ 1.578647, 50.63925 ], [ 1.572075, 50.66092 ], [ 1.572168, 50.664106 ], [ 1.562514, 50.689053 ], [ 1.562605, 50.69228 ], [ 1.561442, 50.69935 ], [ 1.570984, 50.71213 ], [ 1.567627, 50.722238 ], [ 1.584842, 50.727918 ], [ 1.586783, 50.72479 ], [ 1.591143, 50.72659 ], [ 1.599415, 50.72455 ], [ 1.593564, 50.73354 ], [ 1.5957, 50.74664 ], [ 1.594676, 50.74986 ], [ 1.605048, 50.7655 ], [ 1.604096, 50.80318 ], [ 1.609219, 50.804337 ], [ 1.599884, 50.805946 ], [ 1.59543, 50.81476 ], [ 1.594044, 50.817725 ], [ 1.58994, 50.82865 ], [ 1.588712, 50.831501 ], [ 1.578546, 50.855164 ], [ 1.581354, 50.86909 ], [ 1.585456, 50.87146 ], [ 1.612931, 50.87268 ], [ 1.631553, 50.87619 ], [ 1.636224, 50.877037 ], [ 1.666962, 50.8922 ], [ 1.689409, 50.91251 ], [ 1.692683, 50.915377 ], [ 1.70248, 50.92175 ], [ 1.705862, 50.9238 ], [ 1.725274, 50.93628 ], [ 1.744412, 50.94364 ], [ 1.779646, 50.95451 ], [ 1.823042, 50.961484 ], [ 1.828446, 50.9624 ], [ 1.839031, 50.96478 ], [ 1.846962, 50.96335 ], [ 1.86769, 50.97388 ], [ 1.889653, 50.97273 ], [ 1.907155, 50.981283 ], [ 1.912384, 50.9826 ], [ 1.942352, 50.98805 ], [ 1.967848, 50.98879 ], [ 1.972904, 50.98963 ], [ 1.993557, 50.99374 ], [ 2.041204, 50.99727 ], [ 2.051657, 51.00446 ], [ 2.06212, 51.00599 ], [ 2.067712, 51.0065 ], [ 2.089192, 51.00349 ], [ 2.106566, 50.989943 ], [ 2.110463, 50.98741 ], [ 2.10927, 50.98417 ], [ 2.121666, 50.979107 ], [ 2.122685, 50.97288 ], [ 2.125134, 50.970134 ], [ 2.128009, 50.96739 ], [ 2.135655, 50.96309 ], [ 2.141819, 50.94747 ], [ 2.145509, 50.94511 ], [ 2.151317, 50.93257 ], [ 2.164601, 50.91492 ], [ 2.16555, 50.911653 ], [ 2.166938, 50.908442 ], [ 2.18877, 50.874647 ], [ 2.19034, 50.87137 ], [ 2.190113, 50.86793 ], [ 2.203616, 50.84971 ], [ 2.202647, 50.842941 ], [ 2.206205, 50.84023 ], [ 2.208621, 50.837058 ], [ 2.207562, 50.82789 ], [ 2.212661, 50.82256 ], [ 2.211363, 50.81953 ], [ 2.21343, 50.81055 ], [ 2.22266, 50.80987 ], [ 2.226713, 50.80782 ], [ 2.239846, 50.79903 ], [ 2.242758, 50.79652 ], [ 2.251044, 50.78963 ], [ 2.254833, 50.78803 ], [ 2.273686, 50.783234 ], [ 2.287618, 50.78681 ], [ 2.288277, 50.7803 ], [ 2.288578, 50.777039 ], [ 2.309115, 50.78505 ], [ 2.31261, 50.78721 ], [ 2.319058, 50.78244 ], [ 2.340563, 50.780906 ], [ 2.360333, 50.77539 ], [ 2.365724, 50.77547 ], [ 2.374318, 50.783027 ], [ 2.381448, 50.77868 ], [ 2.386543, 50.777525 ], [ 2.40068, 50.77399 ], [ 2.404331, 50.771635 ], [ 2.407129, 50.767171 ], [ 2.411478, 50.766734 ], [ 2.382123, 50.75499 ], [ 2.363636, 50.751568 ], [ 2.342195, 50.740698 ], [ 2.339683, 50.73067 ], [ 2.350509, 50.72655 ], [ 2.350813, 50.72054 ], [ 2.353433, 50.717992 ], [ 2.362256, 50.71111 ], [ 2.366373, 50.709677 ], [ 2.366375, 50.7095 ], [ 2.386124, 50.69858 ], [ 2.367167, 50.687067 ], [ 2.363525, 50.68464 ], [ 2.368168, 50.67936 ], [ 2.371374, 50.677092 ], [ 2.378528, 50.67193 ], [ 2.401762, 50.679916 ], [ 2.409622, 50.67093 ], [ 2.414511, 50.669432 ], [ 2.416134, 50.665832 ], [ 2.421532, 50.66552 ], [ 2.430188, 50.6568 ], [ 2.44606, 50.6551 ], [ 2.450822, 50.653445 ], [ 2.470104, 50.64149 ], [ 2.473183, 50.6386 ], [ 2.491542, 50.63172 ], [ 2.501953, 50.63196 ], [ 2.506806, 50.633424 ], [ 2.528875, 50.64257 ], [ 2.534119, 50.64167 ], [ 2.541783, 50.62923 ], [ 2.551557, 50.62651 ], [ 2.561693, 50.62746 ], [ 2.564301, 50.62443 ], [ 2.568492, 50.632523 ], [ 2.582335, 50.63418 ], [ 2.584993, 50.63692 ], [ 2.592547, 50.6347 ], [ 2.593574, 50.631603 ], [ 2.613497, 50.63349 ], [ 2.616283, 50.6271 ], [ 2.630516, 50.617952 ], [ 2.644364, 50.62256 ], [ 2.669852, 50.625332 ], [ 2.673575, 50.634334 ], [ 2.683002, 50.636413 ], [ 2.684208, 50.63311 ], [ 2.698103, 50.62915 ], [ 2.718588, 50.62936 ], [ 2.726066, 50.613847 ], [ 2.747182, 50.60525 ], [ 2.751518, 50.60689 ], [ 2.750512, 50.61355 ], [ 2.760314, 50.63147 ], [ 2.764665, 50.633382 ], [ 2.784663, 50.629183 ], [ 2.792447, 50.63366 ], [ 2.788444, 50.63595 ], [ 2.759178, 50.65068 ], [ 2.759527, 50.651402 ], [ 2.769677, 50.663617 ], [ 2.796618, 50.66296 ], [ 2.80598, 50.6665 ], [ 2.809188, 50.66937 ], [ 2.818177, 50.66327 ], [ 2.821276, 50.661278 ], [ 2.830892, 50.660718 ], [ 2.842615, 50.65488 ], [ 2.845502, 50.652274 ], [ 2.86681, 50.6338 ], [ 2.869738, 50.6311 ], [ 2.866202, 50.629046 ], [ 2.862341, 50.62726 ], [ 2.857106, 50.627313 ], [ 2.841416, 50.627662 ], [ 2.831382, 50.62002 ], [ 2.828412, 50.61824 ], [ 2.82454, 50.61594 ], [ 2.808041, 50.60755 ], [ 2.792065, 50.586288 ], [ 2.789076, 50.58306 ], [ 2.793326, 50.58123 ], [ 2.808235, 50.57885 ], [ 2.815076, 50.56599 ], [ 2.813165, 50.54931 ], [ 2.808764, 50.55082 ], [ 2.794472, 50.549206 ], [ 2.796583, 50.54632 ], [ 2.801323, 50.53732 ], [ 2.798854, 50.52792 ], [ 2.803772, 50.52691 ], [ 2.810636, 50.52882 ], [ 2.81437, 50.52813 ], [ 2.824771, 50.52561 ], [ 2.846701, 50.52791 ], [ 2.852162, 50.5286 ], [ 2.857089, 50.529234 ], [ 2.862058, 50.52977 ], [ 2.878465, 50.534651 ], [ 2.882504, 50.53597 ], [ 2.886965, 50.53766 ], [ 2.887046, 50.53298 ], [ 2.889207, 50.52994 ], [ 2.881294, 50.51769 ], [ 2.882077, 50.50775 ], [ 2.901641, 50.50101 ], [ 2.904831, 50.503456 ], [ 2.910143, 50.49983 ], [ 2.922758, 50.505749 ], [ 2.926865, 50.50781 ], [ 2.946244, 50.51042 ], [ 2.950676, 50.511903 ], [ 2.96471, 50.51278 ], [ 2.989854, 50.498861 ], [ 2.99423, 50.49666 ], [ 3.00439, 50.495011 ], [ 3.008344, 50.49277 ], [ 3.010848, 50.49027 ], [ 3.024325, 50.48406 ], [ 3.021001, 50.475423 ], [ 3.017441, 50.47284 ], [ 3.017258, 50.470352 ], [ 3.019563, 50.46833 ], [ 3.017172, 50.465765 ], [ 3.008268, 50.45586 ], [ 3.016703, 50.45198 ], [ 3.016715, 50.445271 ], [ 3.016292, 50.44192 ], [ 3.029859, 50.44468 ], [ 3.038558, 50.442143 ], [ 3.041611, 50.44451 ], [ 3.053992, 50.454884 ], [ 3.058817, 50.456183 ], [ 3.062966, 50.456962 ], [ 3.066525, 50.458531 ], [ 3.067817, 50.44685 ], [ 3.077219, 50.44499 ], [ 3.081786, 50.44373 ], [ 3.078492, 50.44097 ], [ 3.069662, 50.428592 ], [ 3.071442, 50.42531 ], [ 3.065917, 50.423558 ], [ 3.062224, 50.42562 ], [ 3.038979, 50.42318 ], [ 3.037445, 50.41999 ], [ 3.029516, 50.41154 ], [ 3.027533, 50.40852 ], [ 3.014959, 50.4031 ], [ 2.995463, 50.39994 ], [ 2.991727, 50.4017 ], [ 2.980518, 50.40288 ], [ 2.983904, 50.40024 ], [ 2.990422, 50.39495 ], [ 2.993935, 50.38177 ], [ 3.001685, 50.3739 ], [ 3.002793, 50.370887 ], [ 3.008267, 50.3625 ], [ 3.00734, 50.359486 ], [ 3.010385, 50.35878 ], [ 3.013459, 50.35941 ], [ 3.035188, 50.34633 ], [ 3.038806, 50.34402 ], [ 3.042777, 50.34486 ], [ 3.046692, 50.34581 ], [ 3.058157, 50.335402 ], [ 3.061114, 50.33278 ], [ 3.060366, 50.32892 ], [ 3.074598, 50.31711 ], [ 3.079182, 50.316213 ], [ 3.082137, 50.313778 ], [ 3.084867, 50.31123 ], [ 3.080685, 50.30911 ], [ 3.065485, 50.30731 ], [ 3.058413, 50.30227 ], [ 3.050529, 50.29609 ], [ 3.047612, 50.293846 ], [ 3.051618, 50.29197 ], [ 3.055204, 50.28976 ], [ 3.052454, 50.28759 ], [ 3.055097, 50.2823 ], [ 3.044308, 50.283109 ], [ 3.036142, 50.28755 ], [ 3.015274, 50.28378 ], [ 3.012244, 50.26798 ], [ 3.015395, 50.26615 ], [ 3.018644, 50.264394 ], [ 3.02981, 50.26719 ], [ 3.036395, 50.26941 ], [ 3.050776, 50.277171 ], [ 3.054641, 50.27533 ], [ 3.057623, 50.27316 ], [ 3.061811, 50.27209 ], [ 3.062161, 50.27182 ], [ 3.077477, 50.27436 ], [ 3.102434, 50.269337 ], [ 3.107559, 50.26857 ], [ 3.127684, 50.26638 ], [ 3.132839, 50.26624 ], [ 3.138159, 50.26525 ], [ 3.150799, 50.26214 ], [ 3.154141, 50.2602 ], [ 3.149535, 50.260884 ], [ 3.147167, 50.24622 ], [ 3.169753, 50.24209 ], [ 3.174272, 50.240954 ], [ 3.18238, 50.23364 ], [ 3.186851, 50.23493 ], [ 3.184117, 50.226231 ], [ 3.180625, 50.22424 ], [ 3.178885, 50.219073 ], [ 3.147956, 50.21915 ], [ 3.142792, 50.21924 ], [ 3.135974, 50.208 ], [ 3.132574, 50.20258 ], [ 3.131195, 50.199495 ], [ 3.138996, 50.19748 ], [ 3.142896, 50.19649 ], [ 3.147055, 50.18825 ], [ 3.15517, 50.18466 ], [ 3.156377, 50.18157 ], [ 3.151507, 50.18027 ], [ 3.137514, 50.16694 ], [ 3.115648, 50.16664 ], [ 3.100959, 50.161969 ], [ 3.112266, 50.15477 ], [ 3.115494, 50.148244 ], [ 3.130229, 50.14456 ], [ 3.135538, 50.14421 ], [ 3.135333, 50.140743 ], [ 3.130662, 50.13914 ], [ 3.095967, 50.12452 ], [ 3.093601, 50.12164 ], [ 3.103755, 50.114613 ], [ 3.104294, 50.11138 ], [ 3.105585, 50.10803 ], [ 3.104601, 50.10463 ], [ 3.109628, 50.104783 ], [ 3.113084, 50.095556 ], [ 3.114055, 50.09238 ], [ 3.103729, 50.080961 ], [ 3.088853, 50.082176 ], [ 3.087669, 50.07557 ], [ 3.094889, 50.071035 ], [ 3.098108, 50.068437 ], [ 3.093709, 50.06685 ], [ 3.085835, 50.06422 ], [ 3.084626, 50.05849 ], [ 3.090254, 50.053741 ] ], [ [ 3.003746, 50.15016 ], [ 2.994718, 50.13815 ], [ 3.002389, 50.12996 ], [ 3.000531, 50.12011 ], [ 3.007835, 50.11563 ], [ 3.010628, 50.112806 ], [ 3.024637, 50.116387 ], [ 3.034799, 50.12765 ], [ 3.037036, 50.13058 ], [ 3.052154, 50.13241 ], [ 3.062491, 50.130429 ], [ 3.067294, 50.128738 ], [ 3.072368, 50.130818 ], [ 3.072024, 50.13422 ], [ 3.067794, 50.14749 ], [ 3.092079, 50.160674 ], [ 3.095886, 50.16313 ], [ 3.092256, 50.165442 ], [ 3.090058, 50.171757 ], [ 3.085555, 50.170979 ], [ 3.062726, 50.17378 ], [ 3.060737, 50.17094 ], [ 3.056215, 50.166048 ], [ 3.040398, 50.1597 ], [ 3.039068, 50.15671 ], [ 3.035919, 50.15156 ], [ 3.026289, 50.151016 ], [ 3.022362, 50.15195 ], [ 3.019176, 50.15371 ], [ 3.014941, 50.15242 ], [ 3.007826, 50.14868 ], [ 3.003746, 50.15016 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "64", "CODE_DEPT": "63", "NOM_DEPT": "PUY-DE-DOME", "CODE_CHF": "113", "NOM_CHF": "CLERMONT-FERRAND", "X_CHF_LIEU": "7067", "Y_CHF_LIEU": "65200", "X_CENTROID": "7109", "Y_CENTROID": "65140", "CODE_REG": "83", "NOM_REGION": "AUVERGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.103498, 45.354373 ], [ 3.100442, 45.352503 ], [ 3.096457, 45.352038 ], [ 3.093847, 45.349087 ], [ 3.088392, 45.339727 ], [ 3.07004, 45.33624 ], [ 3.063179, 45.33137 ], [ 3.065741, 45.31774 ], [ 3.056889, 45.309826 ], [ 3.059399, 45.30683 ], [ 3.05557, 45.305297 ], [ 3.036731, 45.2982 ], [ 3.03224, 45.297796 ], [ 3.023857, 45.295538 ], [ 3.018305, 45.28707 ], [ 3.013611, 45.28828 ], [ 2.999196, 45.290733 ], [ 2.967984, 45.306882 ], [ 2.948625, 45.30913 ], [ 2.947996, 45.312565 ], [ 2.932074, 45.32993 ], [ 2.92452, 45.34642 ], [ 2.924245, 45.3511 ], [ 2.920906, 45.36484 ], [ 2.922728, 45.368108 ], [ 2.918284, 45.366943 ], [ 2.905135, 45.36955 ], [ 2.892968, 45.37924 ], [ 2.888952, 45.380965 ], [ 2.880617, 45.3831 ], [ 2.87353, 45.37537 ], [ 2.868737, 45.37611 ], [ 2.857949, 45.383046 ], [ 2.852379, 45.39234 ], [ 2.847408, 45.39209 ], [ 2.828076, 45.390757 ], [ 2.815354, 45.4004 ], [ 2.789725, 45.39052 ], [ 2.785148, 45.384578 ], [ 2.780556, 45.38563 ], [ 2.776168, 45.38685 ], [ 2.762087, 45.38649 ], [ 2.750028, 45.391286 ], [ 2.745843, 45.39262 ], [ 2.728285, 45.389776 ], [ 2.714525, 45.38147 ], [ 2.70457, 45.389 ], [ 2.699535, 45.39845 ], [ 2.681746, 45.409104 ], [ 2.679942, 45.422696 ], [ 2.683295, 45.42459 ], [ 2.690031, 45.43185 ], [ 2.688464, 45.437694 ], [ 2.674162, 45.438122 ], [ 2.660432, 45.434795 ], [ 2.651365, 45.442745 ], [ 2.646883, 45.443613 ], [ 2.638222, 45.44576 ], [ 2.624533, 45.4439 ], [ 2.62547, 45.44728 ], [ 2.622732, 45.464336 ], [ 2.616335, 45.464152 ], [ 2.601189, 45.45092 ], [ 2.591404, 45.45063 ], [ 2.574355, 45.45663 ], [ 2.565898, 45.46486 ], [ 2.561151, 45.464724 ], [ 2.535771, 45.457499 ], [ 2.536998, 45.463817 ], [ 2.543963, 45.478982 ], [ 2.539263, 45.47925 ], [ 2.521354, 45.482391 ], [ 2.508409, 45.478508 ], [ 2.51389, 45.49284 ], [ 2.510569, 45.497743 ], [ 2.508997, 45.50023 ], [ 2.509567, 45.50681 ], [ 2.518362, 45.518911 ], [ 2.514877, 45.524893 ], [ 2.517911, 45.53107 ], [ 2.51498, 45.54099 ], [ 2.518148, 45.543574 ], [ 2.516673, 45.55115 ], [ 2.51588, 45.55388 ], [ 2.507604, 45.553353 ], [ 2.496294, 45.556832 ], [ 2.488221, 45.569016 ], [ 2.47428, 45.579019 ], [ 2.463472, 45.59468 ], [ 2.465476, 45.60105 ], [ 2.474686, 45.60655 ], [ 2.478432, 45.607917 ], [ 2.482026, 45.63521 ], [ 2.486287, 45.64082 ], [ 2.513977, 45.639441 ], [ 2.517926, 45.63991 ], [ 2.51907, 45.64427 ], [ 2.518942, 45.64708 ], [ 2.526007, 45.65567 ], [ 2.51449, 45.66581 ], [ 2.514537, 45.67214 ], [ 2.524542, 45.681215 ], [ 2.528684, 45.6822 ], [ 2.526321, 45.685 ], [ 2.52583, 45.69435 ], [ 2.521281, 45.69582 ], [ 2.521626, 45.70949 ], [ 2.492126, 45.73767 ], [ 2.485224, 45.74686 ], [ 2.471269, 45.749497 ], [ 2.46699, 45.75578 ], [ 2.454754, 45.76116 ], [ 2.450513, 45.75943 ], [ 2.442298, 45.761406 ], [ 2.434119, 45.769857 ], [ 2.433456, 45.773024 ], [ 2.430863, 45.788617 ], [ 2.389333, 45.82402 ], [ 2.38802, 45.82738 ], [ 2.40211, 45.83712 ], [ 2.426321, 45.8343 ], [ 2.432688, 45.839001 ], [ 2.438951, 45.846497 ], [ 2.447823, 45.84582 ], [ 2.449666, 45.85222 ], [ 2.443406, 45.857 ], [ 2.442696, 45.863508 ], [ 2.443424, 45.86674 ], [ 2.465349, 45.86821 ], [ 2.465267, 45.871353 ], [ 2.47428, 45.87116 ], [ 2.487571, 45.864216 ], [ 2.492225, 45.86403 ], [ 2.50158, 45.875787 ], [ 2.502119, 45.886082 ], [ 2.511845, 45.887124 ], [ 2.549707, 45.9089 ], [ 2.553196, 45.911393 ], [ 2.55784, 45.91296 ], [ 2.54389, 45.91661 ], [ 2.542608, 45.92342 ], [ 2.544087, 45.93027 ], [ 2.553174, 45.93797 ], [ 2.551637, 45.94127 ], [ 2.568835, 45.947141 ], [ 2.565828, 45.95686 ], [ 2.602149, 45.96552 ], [ 2.60683, 45.966424 ], [ 2.610789, 45.972732 ], [ 2.600091, 45.98405 ], [ 2.596791, 45.98665 ], [ 2.593557, 45.99938 ], [ 2.598839, 46.008656 ], [ 2.598287, 46.01525 ], [ 2.601761, 46.02106 ], [ 2.600116, 46.0303 ], [ 2.602696, 46.032875 ], [ 2.599212, 46.03549 ], [ 2.573497, 46.047006 ], [ 2.554677, 46.07613 ], [ 2.550659, 46.08644 ], [ 2.552621, 46.093401 ], [ 2.550966, 46.09961 ], [ 2.549019, 46.112802 ], [ 2.550523, 46.118958 ], [ 2.554641, 46.1205 ], [ 2.559959, 46.13228 ], [ 2.559208, 46.13873 ], [ 2.563985, 46.14081 ], [ 2.565379, 46.143041 ], [ 2.574549, 46.139933 ], [ 2.587726, 46.129275 ], [ 2.591384, 46.12678 ], [ 2.598423, 46.129358 ], [ 2.601883, 46.1309 ], [ 2.619412, 46.12462 ], [ 2.623711, 46.1228 ], [ 2.637202, 46.119385 ], [ 2.646827, 46.120748 ], [ 2.654375, 46.12526 ], [ 2.6619, 46.137759 ], [ 2.664111, 46.140458 ], [ 2.668672, 46.15326 ], [ 2.674938, 46.15853 ], [ 2.676724, 46.17206 ], [ 2.68505, 46.17571 ], [ 2.699216, 46.1785 ], [ 2.702702, 46.181007 ], [ 2.71947, 46.17996 ], [ 2.723105, 46.181518 ], [ 2.722605, 46.18809 ], [ 2.730098, 46.196285 ], [ 2.721645, 46.208547 ], [ 2.730277, 46.2204 ], [ 2.732598, 46.223413 ], [ 2.746418, 46.21988 ], [ 2.759837, 46.21 ], [ 2.769665, 46.21074 ], [ 2.783931, 46.20146 ], [ 2.786782, 46.19865 ], [ 2.805593, 46.196421 ], [ 2.810405, 46.196213 ], [ 2.817313, 46.20502 ], [ 2.823309, 46.219961 ], [ 2.817677, 46.23211 ], [ 2.819163, 46.241792 ], [ 2.855298, 46.25519 ], [ 2.85976, 46.25659 ], [ 2.866004, 46.251059 ], [ 2.886301, 46.253135 ], [ 2.905702, 46.248713 ], [ 2.925898, 46.24938 ], [ 2.941248, 46.242082 ], [ 2.945972, 46.24168 ], [ 2.932266, 46.23232 ], [ 2.939127, 46.22375 ], [ 2.936354, 46.2209 ], [ 2.932737, 46.218683 ], [ 2.923866, 46.217102 ], [ 2.915817, 46.212792 ], [ 2.912136, 46.202523 ], [ 2.919911, 46.18947 ], [ 2.919052, 46.18241 ], [ 2.915582, 46.17982 ], [ 2.910762, 46.178659 ], [ 2.913332, 46.176446 ], [ 2.915695, 46.17413 ], [ 2.948325, 46.169174 ], [ 2.95212, 46.17133 ], [ 2.96161, 46.13184 ], [ 2.964396, 46.129063 ], [ 2.968686, 46.12383 ], [ 2.971744, 46.12169 ], [ 2.980121, 46.12452 ], [ 2.994263, 46.123197 ], [ 3.00896, 46.11452 ], [ 3.014279, 46.105277 ], [ 3.021631, 46.101683 ], [ 3.026111, 46.102933 ], [ 3.035161, 46.105479 ], [ 3.039111, 46.107486 ], [ 3.050446, 46.1008 ], [ 3.090942, 46.111725 ], [ 3.099678, 46.095653 ], [ 3.098327, 46.08532 ], [ 3.100845, 46.0823 ], [ 3.108918, 46.081443 ], [ 3.113059, 46.081448 ], [ 3.116072, 46.080356 ], [ 3.118319, 46.07858 ], [ 3.121821, 46.076424 ], [ 3.127839, 46.07149 ], [ 3.174579, 46.06595 ], [ 3.179342, 46.066577 ], [ 3.179455, 46.07346 ], [ 3.214511, 46.074945 ], [ 3.221868, 46.067393 ], [ 3.228259, 46.070487 ], [ 3.232525, 46.06972 ], [ 3.230469, 46.06687 ], [ 3.237284, 46.063247 ], [ 3.241718, 46.062454 ], [ 3.253201, 46.06435 ], [ 3.256571, 46.065798 ], [ 3.275767, 46.062935 ], [ 3.284372, 46.06596 ], [ 3.297921, 46.06435 ], [ 3.302392, 46.06577 ], [ 3.305497, 46.06118 ], [ 3.314361, 46.061601 ], [ 3.317011, 46.059126 ], [ 3.332797, 46.05355 ], [ 3.331634, 46.047269 ], [ 3.332054, 46.044098 ], [ 3.336269, 46.04605 ], [ 3.369134, 46.054484 ], [ 3.382902, 46.06457 ], [ 3.402685, 46.066805 ], [ 3.419742, 46.07438 ], [ 3.422215, 46.07129 ], [ 3.434954, 46.060824 ], [ 3.444781, 46.060291 ], [ 3.453593, 46.06379 ], [ 3.45719, 46.062303 ], [ 3.457308, 46.059394 ], [ 3.460638, 46.057058 ], [ 3.460557, 46.05048 ], [ 3.471773, 46.04022 ], [ 3.467123, 46.03934 ], [ 3.463125, 46.037461 ], [ 3.467401, 46.02788 ], [ 3.464145, 46.008173 ], [ 3.468679, 46.00941 ], [ 3.473174, 46.010738 ], [ 3.486673, 46.01432 ], [ 3.520433, 46.01443 ], [ 3.520709, 46.02037 ], [ 3.538337, 46.02133 ], [ 3.544922, 46.014036 ], [ 3.548701, 46.015845 ], [ 3.553012, 46.01526 ], [ 3.554569, 46.01839 ], [ 3.577777, 46.017844 ], [ 3.584021, 46.02279 ], [ 3.588341, 46.02418 ], [ 3.598457, 46.01774 ], [ 3.613056, 46.00084 ], [ 3.613497, 45.99749 ], [ 3.625873, 45.983702 ], [ 3.630235, 45.96417 ], [ 3.631994, 45.96106 ], [ 3.63916, 45.965428 ], [ 3.66186, 45.961012 ], [ 3.666639, 45.96115 ], [ 3.678016, 45.95595 ], [ 3.680677, 45.94357 ], [ 3.682524, 45.94054 ], [ 3.691148, 45.933452 ], [ 3.693892, 45.93096 ], [ 3.694018, 45.93073 ], [ 3.72135, 45.922745 ], [ 3.726359, 45.917066 ], [ 3.728991, 45.91415 ], [ 3.740233, 45.907764 ], [ 3.752984, 45.88933 ], [ 3.754371, 45.88603 ], [ 3.750312, 45.88437 ], [ 3.734084, 45.87127 ], [ 3.715524, 45.870587 ], [ 3.7172, 45.867641 ], [ 3.720282, 45.861741 ], [ 3.72853, 45.862687 ], [ 3.726607, 45.85957 ], [ 3.720762, 45.851129 ], [ 3.719124, 45.85007 ], [ 3.726892, 45.83027 ], [ 3.712631, 45.80129 ], [ 3.695115, 45.7947 ], [ 3.693391, 45.78863 ], [ 3.700393, 45.783556 ], [ 3.728469, 45.776012 ], [ 3.737972, 45.767782 ], [ 3.733108, 45.76194 ], [ 3.730436, 45.760357 ], [ 3.729002, 45.75789 ], [ 3.727106, 45.75558 ], [ 3.730822, 45.753484 ], [ 3.745951, 45.741173 ], [ 3.755838, 45.74661 ], [ 3.76804, 45.72867 ], [ 3.776168, 45.72512 ], [ 3.780919, 45.724673 ], [ 3.777015, 45.71953 ], [ 3.779998, 45.714062 ], [ 3.78238, 45.71165 ], [ 3.775857, 45.700178 ], [ 3.777585, 45.690566 ], [ 3.792084, 45.67652 ], [ 3.794532, 45.67347 ], [ 3.802989, 45.658734 ], [ 3.805428, 45.656051 ], [ 3.817721, 45.6467 ], [ 3.81931, 45.64043 ], [ 3.820703, 45.637408 ], [ 3.82364, 45.63202 ], [ 3.835863, 45.627138 ], [ 3.858678, 45.624337 ], [ 3.860428, 45.61798 ], [ 3.861186, 45.61473 ], [ 3.86909, 45.61305 ], [ 3.881466, 45.60297 ], [ 3.904504, 45.598862 ], [ 3.908775, 45.597243 ], [ 3.909481, 45.59411 ], [ 3.932168, 45.579365 ], [ 3.935595, 45.577238 ], [ 3.939503, 45.57179 ], [ 3.941931, 45.568999 ], [ 3.944619, 45.56275 ], [ 3.954474, 45.555827 ], [ 3.94643, 45.543404 ], [ 3.958555, 45.51379 ], [ 3.962229, 45.50555 ], [ 3.96484, 45.50322 ], [ 3.969342, 45.50143 ], [ 3.972738, 45.50013 ], [ 3.984007, 45.49506 ], [ 3.983321, 45.48887 ], [ 3.985629, 45.48618 ], [ 3.983336, 45.483219 ], [ 3.971637, 45.47743 ], [ 3.967553, 45.47155 ], [ 3.966383, 45.468283 ], [ 3.973126, 45.459399 ], [ 3.969091, 45.45332 ], [ 3.975106, 45.44827 ], [ 3.971058, 45.44726 ], [ 3.960143, 45.443446 ], [ 3.96286, 45.44078 ], [ 3.96329, 45.437511 ], [ 3.963258, 45.436431 ], [ 3.959804, 45.43416 ], [ 3.937312, 45.429987 ], [ 3.918432, 45.42133 ], [ 3.913895, 45.42225 ], [ 3.911124, 45.419352 ], [ 3.907081, 45.412955 ], [ 3.898541, 45.409818 ], [ 3.899085, 45.40631 ], [ 3.890368, 45.393665 ], [ 3.894516, 45.383762 ], [ 3.892146, 45.36985 ], [ 3.897408, 45.35708 ], [ 3.893419, 45.35522 ], [ 3.874532, 45.355419 ], [ 3.856716, 45.359654 ], [ 3.845234, 45.369836 ], [ 3.837311, 45.366302 ], [ 3.836299, 45.383095 ], [ 3.822802, 45.380322 ], [ 3.817942, 45.386121 ], [ 3.805971, 45.391629 ], [ 3.796166, 45.38517 ], [ 3.791406, 45.38477 ], [ 3.787159, 45.371799 ], [ 3.789194, 45.358529 ], [ 3.780233, 45.351613 ], [ 3.77153, 45.350295 ], [ 3.758875, 45.35596 ], [ 3.755922, 45.353887 ], [ 3.742091, 45.353025 ], [ 3.732048, 45.35943 ], [ 3.722903, 45.35951 ], [ 3.718668, 45.3609 ], [ 3.714686, 45.36015 ], [ 3.706467, 45.360702 ], [ 3.701783, 45.360002 ], [ 3.698737, 45.36259 ], [ 3.704165, 45.37159 ], [ 3.694962, 45.373264 ], [ 3.684735, 45.380035 ], [ 3.681775, 45.382539 ], [ 3.672631, 45.381829 ], [ 3.667354, 45.376556 ], [ 3.66318, 45.36297 ], [ 3.645366, 45.3579 ], [ 3.640876, 45.348436 ], [ 3.627347, 45.3389 ], [ 3.617814, 45.33816 ], [ 3.59499, 45.355335 ], [ 3.590793, 45.35709 ], [ 3.586165, 45.37117 ], [ 3.588084, 45.373876 ], [ 3.586739, 45.37717 ], [ 3.581125, 45.38277 ], [ 3.579076, 45.38602 ], [ 3.569313, 45.402293 ], [ 3.564485, 45.396347 ], [ 3.55582, 45.393878 ], [ 3.548129, 45.39802 ], [ 3.521799, 45.402128 ], [ 3.518551, 45.40478 ], [ 3.506861, 45.411048 ], [ 3.501257, 45.427633 ], [ 3.496769, 45.426239 ], [ 3.479403, 45.42029 ], [ 3.463556, 45.407571 ], [ 3.460601, 45.401171 ], [ 3.455852, 45.400335 ], [ 3.451273, 45.401461 ], [ 3.427435, 45.40165 ], [ 3.420231, 45.397179 ], [ 3.418577, 45.400004 ], [ 3.406548, 45.403299 ], [ 3.398039, 45.40028 ], [ 3.389278, 45.40322 ], [ 3.38001, 45.401158 ], [ 3.367373, 45.41149 ], [ 3.363668, 45.413855 ], [ 3.355951, 45.422705 ], [ 3.352437, 45.421104 ], [ 3.340854, 45.42136 ], [ 3.341972, 45.41808 ], [ 3.330264, 45.39721 ], [ 3.32594, 45.398744 ], [ 3.324317, 45.405377 ], [ 3.308909, 45.41839 ], [ 3.299828, 45.42024 ], [ 3.295765, 45.41839 ], [ 3.295401, 45.41487 ], [ 3.291755, 45.40461 ], [ 3.290615, 45.4017 ], [ 3.287523, 45.399606 ], [ 3.283054, 45.3979 ], [ 3.26018, 45.39075 ], [ 3.255856, 45.3898 ], [ 3.242594, 45.390555 ], [ 3.236171, 45.394629 ], [ 3.235505, 45.39138 ], [ 3.222804, 45.38218 ], [ 3.218652, 45.369488 ], [ 3.215856, 45.370007 ], [ 3.211477, 45.367206 ], [ 3.209061, 45.370245 ], [ 3.199492, 45.369938 ], [ 3.192882, 45.36487 ], [ 3.179586, 45.3612 ], [ 3.177483, 45.35466 ], [ 3.181128, 45.35231 ], [ 3.151254, 45.351131 ], [ 3.146604, 45.350777 ], [ 3.138964, 45.35449 ], [ 3.130809, 45.351346 ], [ 3.103498, 45.354373 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "65", "CODE_DEPT": "64", "NOM_DEPT": "PYRENEES-ATLANTIQUES", "CODE_CHF": "445", "NOM_CHF": "PAU", "X_CHF_LIEU": "4264", "Y_CHF_LIEU": "62504", "X_CENTROID": "3945", "Y_CENTROID": "62469", "CODE_REG": "72", "NOM_REGION": "AQUITAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.313443, 42.849375 ], [ -0.315497, 42.846153 ], [ -0.326287, 42.83487 ], [ -0.335323, 42.837195 ], [ -0.349198, 42.83519 ], [ -0.364969, 42.81738 ], [ -0.388866, 42.800541 ], [ -0.410797, 42.806667 ], [ -0.441449, 42.796876 ], [ -0.49492, 42.81863 ], [ -0.501298, 42.827889 ], [ -0.509922, 42.825113 ], [ -0.524149, 42.811289 ], [ -0.526911, 42.794565 ], [ -0.544393, 42.79064 ], [ -0.553722, 42.77912 ], [ -0.563019, 42.78049 ], [ -0.567747, 42.780873 ], [ -0.570273, 42.79077 ], [ -0.565586, 42.796831 ], [ -0.566164, 42.803662 ], [ -0.573618, 42.807401 ], [ -0.591622, 42.80359 ], [ -0.600281, 42.806428 ], [ -0.602347, 42.830086 ], [ -0.621643, 42.83965 ], [ -0.636157, 42.85325 ], [ -0.640546, 42.853586 ], [ -0.656061, 42.85922 ], [ -0.662673, 42.870738 ], [ -0.679442, 42.88293 ], [ -0.69775, 42.87959 ], [ -0.722561, 42.88968 ], [ -0.731417, 42.897933 ], [ -0.734972, 42.91169 ], [ -0.725877, 42.91959 ], [ -0.732967, 42.935529 ], [ -0.730891, 42.93869 ], [ -0.737123, 42.947152 ], [ -0.740469, 42.94887 ], [ -0.743279, 42.951583 ], [ -0.752805, 42.966961 ], [ -0.766504, 42.968544 ], [ -0.783837, 42.96456 ], [ -0.788663, 42.96412 ], [ -0.811885, 42.95129 ], [ -0.835877, 42.95341 ], [ -0.864704, 42.950974 ], [ -0.882969, 42.95558 ], [ -0.8975, 42.95584 ], [ -0.897582, 42.95942 ], [ -0.910014, 42.9638 ], [ -0.923917, 42.954572 ], [ -0.943103, 42.953869 ], [ -0.969921, 42.96187 ], [ -0.997284, 42.976233 ], [ -1.007051, 42.98855 ], [ -1.010466, 42.991095 ], [ -1.014744, 42.992818 ], [ -1.07233, 42.99845 ], [ -1.08449, 43.004031 ], [ -1.083574, 43.010883 ], [ -1.09738, 43.01314 ], [ -1.112416, 43.021635 ], [ -1.139251, 43.00847 ], [ -1.144497, 43.014045 ], [ -1.1456, 43.024485 ], [ -1.169244, 43.036099 ], [ -1.173541, 43.037625 ], [ -1.175113, 43.034403 ], [ -1.183728, 43.03418 ], [ -1.209938, 43.048492 ], [ -1.212409, 43.051394 ], [ -1.230798, 43.054816 ], [ -1.243829, 43.044593 ], [ -1.247508, 43.04236 ], [ -1.26161, 43.043593 ], [ -1.272182, 43.055216 ], [ -1.308474, 43.071008 ], [ -1.293568, 43.099752 ], [ -1.273029, 43.115738 ], [ -1.270189, 43.11857 ], [ -1.320145, 43.112768 ], [ -1.327877, 43.108971 ], [ -1.33225, 43.10778 ], [ -1.345197, 43.093069 ], [ -1.341514, 43.079381 ], [ -1.344857, 43.05126 ], [ -1.350976, 43.034142 ], [ -1.356565, 43.028952 ], [ -1.365888, 43.030799 ], [ -1.439726, 43.04595 ], [ -1.453267, 43.06038 ], [ -1.456043, 43.06325 ], [ -1.471281, 43.080941 ], [ -1.470674, 43.091209 ], [ -1.427253, 43.117281 ], [ -1.427077, 43.12077 ], [ -1.414498, 43.13044 ], [ -1.411524, 43.140457 ], [ -1.413699, 43.15024 ], [ -1.407506, 43.15535 ], [ -1.402886, 43.15608 ], [ -1.400027, 43.179935 ], [ -1.384954, 43.188125 ], [ -1.383697, 43.222311 ], [ -1.378322, 43.231673 ], [ -1.378586, 43.23515 ], [ -1.379716, 43.238509 ], [ -1.385578, 43.25499 ], [ -1.413206, 43.27342 ], [ -1.433076, 43.266764 ], [ -1.44608, 43.268806 ], [ -1.468961, 43.273699 ], [ -1.48451, 43.28178 ], [ -1.493953, 43.282365 ], [ -1.505856, 43.293276 ], [ -1.524593, 43.29311 ], [ -1.529292, 43.293413 ], [ -1.561732, 43.2884 ], [ -1.559528, 43.275039 ], [ -1.57347, 43.252598 ], [ -1.607092, 43.253276 ], [ -1.61821, 43.259875 ], [ -1.624382, 43.2695 ], [ -1.629765, 43.286782 ], [ -1.623152, 43.303664 ], [ -1.630919, 43.307278 ], [ -1.635301, 43.308829 ], [ -1.635609, 43.308816 ], [ -1.644551, 43.306782 ], [ -1.655737, 43.312807 ], [ -1.669614, 43.314254 ], [ -1.682256, 43.309903 ], [ -1.699794, 43.30963 ], [ -1.704278, 43.30863 ], [ -1.713446, 43.300932 ], [ -1.731214, 43.298677 ], [ -1.73935, 43.31478 ], [ -1.738246, 43.32836 ], [ -1.75039, 43.33281 ], [ -1.754943, 43.342497 ], [ -1.759025, 43.344228 ], [ -1.76284, 43.343916 ], [ -1.767025, 43.34256 ], [ -1.786007, 43.350463 ], [ -1.78505, 43.353966 ], [ -1.772005, 43.364204 ], [ -1.779209, 43.371078 ], [ -1.76183, 43.376937 ], [ -1.752257, 43.384892 ], [ -1.733809, 43.382052 ], [ -1.729376, 43.38314 ], [ -1.686478, 43.396379 ], [ -1.682892, 43.39195 ], [ -1.680377, 43.3899 ], [ -1.669409, 43.388141 ], [ -1.661977, 43.392346 ], [ -1.662032, 43.40217 ], [ -1.644317, 43.40672 ], [ -1.621164, 43.42301 ], [ -1.609472, 43.427525 ], [ -1.607457, 43.43062 ], [ -1.600529, 43.43475 ], [ -1.594341, 43.44753 ], [ -1.578024, 43.46381 ], [ -1.570117, 43.47577 ], [ -1.569808, 43.482458 ], [ -1.54982, 43.49433 ], [ -1.547318, 43.497121 ], [ -1.524867, 43.529701 ], [ -1.520215, 43.52898 ], [ -1.501414, 43.52695 ], [ -1.497632, 43.528942 ], [ -1.47943, 43.53916 ], [ -1.463336, 43.533081 ], [ -1.465627, 43.516523 ], [ -1.461756, 43.518331 ], [ -1.430715, 43.51421 ], [ -1.417658, 43.496907 ], [ -1.414216, 43.497209 ], [ -1.409764, 43.49679 ], [ -1.36965, 43.495024 ], [ -1.339491, 43.50245 ], [ -1.334926, 43.50315 ], [ -1.334037, 43.50367 ], [ -1.322411, 43.504947 ], [ -1.291381, 43.49839 ], [ -1.263935, 43.51147 ], [ -1.259852, 43.51317 ], [ -1.253742, 43.51575 ], [ -1.250529, 43.51684 ], [ -1.217605, 43.53062 ], [ -1.207378, 43.5379 ], [ -1.203884, 43.540261 ], [ -1.198334, 43.544125 ], [ -1.195616, 43.54609 ], [ -1.191399, 43.546862 ], [ -1.174184, 43.54605 ], [ -1.169708, 43.54531 ], [ -1.159516, 43.538665 ], [ -1.154083, 43.529314 ], [ -1.133883, 43.52032 ], [ -1.130839, 43.51416 ], [ -1.137291, 43.509721 ], [ -1.16017, 43.50857 ], [ -1.16492, 43.50836 ], [ -1.169836, 43.497121 ], [ -1.169662, 43.493029 ], [ -1.165674, 43.491272 ], [ -1.153755, 43.496207 ], [ -1.14851, 43.490922 ], [ -1.145124, 43.48859 ], [ -1.140709, 43.489652 ], [ -1.137624, 43.499401 ], [ -1.13298, 43.499705 ], [ -1.128596, 43.500349 ], [ -1.11628, 43.50343 ], [ -1.10733, 43.51432 ], [ -1.089581, 43.511928 ], [ -1.083223, 43.516519 ], [ -1.081084, 43.523 ], [ -1.077715, 43.521231 ], [ -1.068997, 43.50845 ], [ -1.04607, 43.51156 ], [ -1.028963, 43.50714 ], [ -1.026914, 43.50404 ], [ -1.023681, 43.501709 ], [ -1.017977, 43.50597 ], [ -0.992383, 43.504029 ], [ -0.993771, 43.50904 ], [ -0.992759, 43.512285 ], [ -0.989143, 43.51831 ], [ -0.989906, 43.531605 ], [ -1.001151, 43.536966 ], [ -0.9882, 43.5402 ], [ -0.962172, 43.535226 ], [ -0.949635, 43.532251 ], [ -0.939764, 43.538538 ], [ -0.935661, 43.53721 ], [ -0.928007, 43.53339 ], [ -0.923683, 43.53462 ], [ -0.919177, 43.54406 ], [ -0.911988, 43.54833 ], [ -0.907683, 43.54968 ], [ -0.893691, 43.550273 ], [ -0.871468, 43.545447 ], [ -0.867742, 43.544733 ], [ -0.863964, 43.544165 ], [ -0.860091, 43.542555 ], [ -0.842813, 43.543421 ], [ -0.842315, 43.554113 ], [ -0.837584, 43.55468 ], [ -0.820938, 43.561192 ], [ -0.803351, 43.55619 ], [ -0.795699, 43.56147 ], [ -0.794167, 43.56396 ], [ -0.781756, 43.565861 ], [ -0.782303, 43.57547 ], [ -0.774672, 43.57832 ], [ -0.770305, 43.579168 ], [ -0.738083, 43.55778 ], [ -0.734087, 43.55575 ], [ -0.73274, 43.552949 ], [ -0.728545, 43.54517 ], [ -0.721203, 43.541383 ], [ -0.712614, 43.54201 ], [ -0.70821, 43.541306 ], [ -0.709861, 43.547888 ], [ -0.707505, 43.557804 ], [ -0.700472, 43.562061 ], [ -0.697133, 43.55965 ], [ -0.688861, 43.55697 ], [ -0.661363, 43.568774 ], [ -0.645501, 43.574532 ], [ -0.641047, 43.57481 ], [ -0.657889, 43.55975 ], [ -0.655611, 43.556845 ], [ -0.638251, 43.553393 ], [ -0.633751, 43.5541 ], [ -0.63128, 43.550474 ], [ -0.61932, 43.5456 ], [ -0.614894, 43.544726 ], [ -0.615241, 43.54119 ], [ -0.614366, 43.537718 ], [ -0.600039, 43.538654 ], [ -0.567072, 43.55822 ], [ -0.561737, 43.55268 ], [ -0.558901, 43.54608 ], [ -0.557174, 43.5428 ], [ -0.552764, 43.543158 ], [ -0.548448, 43.54483 ], [ -0.525431, 43.55775 ], [ -0.521267, 43.559505 ], [ -0.507312, 43.568467 ], [ -0.507656, 43.56923 ], [ -0.504696, 43.57187 ], [ -0.465249, 43.589605 ], [ -0.461857, 43.5876 ], [ -0.449232, 43.59627 ], [ -0.441407, 43.59348 ], [ -0.440974, 43.590602 ], [ -0.431779, 43.586436 ], [ -0.431717, 43.583547 ], [ -0.45139, 43.56602 ], [ -0.459281, 43.56749 ], [ -0.459394, 43.561143 ], [ -0.449713, 43.54987 ], [ -0.446453, 43.55207 ], [ -0.437718, 43.552817 ], [ -0.433971, 43.554557 ], [ -0.406042, 43.56823 ], [ -0.40333, 43.56573 ], [ -0.400679, 43.563215 ], [ -0.397269, 43.565646 ], [ -0.389034, 43.56818 ], [ -0.37489, 43.567344 ], [ -0.367723, 43.56277 ], [ -0.353597, 43.56179 ], [ -0.351868, 43.55869 ], [ -0.348836, 43.556173 ], [ -0.336562, 43.55122 ], [ -0.310386, 43.558065 ], [ -0.303828, 43.562443 ], [ -0.302204, 43.565653 ], [ -0.301204, 43.5713 ], [ -0.294296, 43.567911 ], [ -0.287162, 43.5746 ], [ -0.283325, 43.58416 ], [ -0.25677, 43.5882 ], [ -0.251662, 43.58266 ], [ -0.247068, 43.58269 ], [ -0.242837, 43.58498 ], [ -0.238912, 43.58304 ], [ -0.228803, 43.589645 ], [ -0.210607, 43.593237 ], [ -0.206209, 43.587271 ], [ -0.205011, 43.584 ], [ -0.200656, 43.58543 ], [ -0.17692, 43.596596 ], [ -0.165057, 43.583931 ], [ -0.162108, 43.58167 ], [ -0.157822, 43.58145 ], [ -0.151007, 43.58546 ], [ -0.133718, 43.58144 ], [ -0.128961, 43.58145 ], [ -0.125567, 43.58349 ], [ -0.117675, 43.58552 ], [ -0.10552, 43.5818 ], [ -0.096783, 43.582406 ], [ -0.091968, 43.570063 ], [ -0.093557, 43.563706 ], [ -0.090087, 43.559969 ], [ -0.094943, 43.548071 ], [ -0.091411, 43.542481 ], [ -0.087008, 43.542552 ], [ -0.069606, 43.54674 ], [ -0.057929, 43.53622 ], [ -0.056176, 43.533034 ], [ -0.049232, 43.52975 ], [ -0.048168, 43.52719 ], [ -0.0437, 43.522986 ], [ -0.043649, 43.52014 ], [ -0.040132, 43.5126 ], [ -0.044093, 43.506588 ], [ -0.044886, 43.5038 ], [ -0.046746, 43.498293 ], [ -0.049195, 43.492011 ], [ -0.036451, 43.48885 ], [ -0.030784, 43.474017 ], [ -0.02639, 43.474851 ], [ -0.020185, 43.47253 ], [ -0.018906, 43.47006 ], [ -0.019443, 43.466869 ], [ -0.032107, 43.466039 ], [ -0.061553, 43.462582 ], [ -0.065754, 43.463489 ], [ -0.061978, 43.45362 ], [ -0.064851, 43.44702 ], [ -0.066819, 43.443831 ], [ -0.069629, 43.434208 ], [ -0.053331, 43.42252 ], [ -0.067273, 43.410416 ], [ -0.042983, 43.41021 ], [ -0.042459, 43.413376 ], [ -0.038142, 43.418863 ], [ -0.034239, 43.4308 ], [ -0.028231, 43.43189 ], [ -0.02481, 43.43004 ], [ -0.022528, 43.432688 ], [ -0.016534, 43.443947 ], [ -0.007073, 43.44401 ], [ -0.002483, 43.445085 ], [ -0.003263, 43.434943 ], [ -0.004794, 43.43162 ], [ -0.001211, 43.42925 ], [ 0.009655, 43.422202 ], [ 0.007811, 43.4192 ], [ -0.003807, 43.39805 ], [ -0.000391, 43.39624 ], [ -0.00297, 43.395267 ], [ -0.004291, 43.39337 ], [ 0.002651, 43.392821 ], [ -0.001203, 43.38742 ], [ 0.001295, 43.38497 ], [ -0.00059, 43.381828 ], [ -0.004653, 43.375711 ], [ 0.000487, 43.37038 ], [ 0.004757, 43.371813 ], [ 0.00741, 43.365881 ], [ 0.005349, 43.36304 ], [ 0.02875, 43.346655 ], [ 0.025541, 43.340229 ], [ 0.024182, 43.33862 ], [ 0.020525, 43.336337 ], [ 0.012768, 43.327535 ], [ 0.008515, 43.326076 ], [ -0.003208, 43.331449 ], [ -0.025371, 43.329616 ], [ -0.026224, 43.3273 ], [ -0.027991, 43.32267 ], [ -0.031664, 43.31258 ], [ -0.034256, 43.30958 ], [ -0.037224, 43.306958 ], [ -0.044586, 43.302799 ], [ -0.04401, 43.289338 ], [ -0.040786, 43.283578 ], [ -0.028313, 43.280714 ], [ -0.023975, 43.28021 ], [ -0.025978, 43.277071 ], [ -0.018534, 43.272787 ], [ -0.018439, 43.269315 ], [ -0.025019, 43.26019 ], [ -0.025297, 43.253289 ], [ -0.044814, 43.23384 ], [ -0.046754, 43.223726 ], [ -0.048038, 43.22053 ], [ -0.053677, 43.21846 ], [ -0.061765, 43.22151 ], [ -0.065681, 43.223163 ], [ -0.073972, 43.22238 ], [ -0.072342, 43.21209 ], [ -0.067874, 43.17712 ], [ -0.072545, 43.17684 ], [ -0.091251, 43.177037 ], [ -0.101822, 43.16705 ], [ -0.111709, 43.17823 ], [ -0.116234, 43.17913 ], [ -0.125306, 43.167414 ], [ -0.126899, 43.164586 ], [ -0.126421, 43.158488 ], [ -0.134809, 43.151718 ], [ -0.139471, 43.14837 ], [ -0.138922, 43.14527 ], [ -0.146314, 43.12819 ], [ -0.15059, 43.12705 ], [ -0.166479, 43.121402 ], [ -0.176483, 43.110926 ], [ -0.193583, 43.11466 ], [ -0.191928, 43.1047 ], [ -0.197504, 43.0998 ], [ -0.18734, 43.088552 ], [ -0.199012, 43.065981 ], [ -0.196559, 43.059366 ], [ -0.181008, 43.052032 ], [ -0.185734, 43.05182 ], [ -0.223952, 43.03369 ], [ -0.227697, 43.03594 ], [ -0.241058, 43.039645 ], [ -0.26014, 43.03767 ], [ -0.256413, 43.02486 ], [ -0.261461, 43.01233 ], [ -0.264716, 43.01001 ], [ -0.268857, 43.00819 ], [ -0.287669, 43.005556 ], [ -0.292254, 42.99215 ], [ -0.289622, 42.96112 ], [ -0.283829, 42.95578 ], [ -0.27927, 42.942346 ], [ -0.279243, 42.939053 ], [ -0.284941, 42.930202 ], [ -0.297785, 42.93098 ], [ -0.313024, 42.918566 ], [ -0.322251, 42.917389 ], [ -0.326875, 42.916868 ], [ -0.324323, 42.90333 ], [ -0.316002, 42.895045 ], [ -0.315883, 42.88482 ], [ -0.307294, 42.86898 ], [ -0.311468, 42.852487 ], [ -0.313443, 42.849375 ] ], [ [ -0.10728, 43.370741 ], [ -0.106752, 43.3676 ], [ -0.10333, 43.35858 ], [ -0.094255, 43.35779 ], [ -0.09023, 43.35935 ], [ -0.086853, 43.3371 ], [ -0.087271, 43.33384 ], [ -0.091731, 43.33354 ], [ -0.108476, 43.337801 ], [ -0.114802, 43.322035 ], [ -0.109926, 43.312803 ], [ -0.09645, 43.313028 ], [ -0.080269, 43.307612 ], [ -0.075832, 43.30694 ], [ -0.075042, 43.30714 ], [ -0.070119, 43.31585 ], [ -0.069483, 43.31919 ], [ -0.068281, 43.32232 ], [ -0.067389, 43.32873 ], [ -0.064339, 43.337926 ], [ -0.06517, 43.341027 ], [ -0.063935, 43.34402 ], [ -0.062575, 43.34698 ], [ -0.063012, 43.35008 ], [ -0.077803, 43.36507 ], [ -0.078793, 43.365137 ], [ -0.082359, 43.366755 ], [ -0.085342, 43.371522 ], [ -0.093096, 43.373885 ], [ -0.09693, 43.374036 ], [ -0.10728, 43.370741 ] ], [ [ -0.137352, 43.28575 ], [ -0.137243, 43.281477 ], [ -0.138442, 43.278156 ], [ -0.140603, 43.27167 ], [ -0.125298, 43.249783 ], [ -0.1241, 43.24632 ], [ -0.11839, 43.241377 ], [ -0.109441, 43.242571 ], [ -0.104915, 43.242917 ], [ -0.103075, 43.24282 ], [ -0.104273, 43.245844 ], [ -0.094273, 43.25526 ], [ -0.086347, 43.256053 ], [ -0.079746, 43.26483 ], [ -0.079662, 43.271566 ], [ -0.084744, 43.277209 ], [ -0.095498, 43.287731 ], [ -0.090984, 43.297763 ], [ -0.089287, 43.301062 ], [ -0.09391, 43.30131 ], [ -0.113765, 43.30902 ], [ -0.122218, 43.30143 ], [ -0.125899, 43.299298 ], [ -0.129744, 43.28974 ], [ -0.137352, 43.28575 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "66", "CODE_DEPT": "65", "NOM_DEPT": "HAUTES-PYRENEES", "CODE_CHF": "440", "NOM_CHF": "TARBES", "X_CHF_LIEU": "4622", "Y_CHF_LIEU": "62414", "X_CENTROID": "4689", "Y_CENTROID": "62209", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.47775, 42.69999 ], [ 0.473064, 42.700042 ], [ 0.462497, 42.693738 ], [ 0.425725, 42.690808 ], [ 0.39593, 42.69962 ], [ 0.39263, 42.713118 ], [ 0.387936, 42.712508 ], [ 0.37417, 42.715077 ], [ 0.3601, 42.724303 ], [ 0.358876, 42.720881 ], [ 0.344952, 42.71132 ], [ 0.32771, 42.705318 ], [ 0.320685, 42.68515 ], [ 0.295536, 42.675038 ], [ 0.265931, 42.692503 ], [ 0.266898, 42.70282 ], [ 0.259883, 42.71582 ], [ 0.223739, 42.718496 ], [ 0.209351, 42.72696 ], [ 0.205992, 42.7293 ], [ 0.175303, 42.73579 ], [ 0.159244, 42.723732 ], [ 0.136567, 42.72233 ], [ 0.132698, 42.715898 ], [ 0.115185, 42.710821 ], [ 0.105713, 42.71066 ], [ 0.088644, 42.716788 ], [ 0.079512, 42.714712 ], [ 0.069003, 42.70338 ], [ 0.05673, 42.6981 ], [ 0.047504, 42.696262 ], [ 0.029445, 42.700936 ], [ 0.024933, 42.7021 ], [ 0.01558, 42.70084 ], [ 0.013543, 42.693952 ], [ 0.00264, 42.68705 ], [ -0.011239, 42.684692 ], [ -0.015979, 42.68532 ], [ -0.057542, 42.693456 ], [ -0.063505, 42.698765 ], [ -0.068457, 42.71586 ], [ -0.105645, 42.722178 ], [ -0.123126, 42.750473 ], [ -0.140701, 42.7673 ], [ -0.149168, 42.770515 ], [ -0.147566, 42.773856 ], [ -0.154798, 42.782435 ], [ -0.15861, 42.795695 ], [ -0.173664, 42.788078 ], [ -0.182863, 42.786725 ], [ -0.198251, 42.794816 ], [ -0.212047, 42.797023 ], [ -0.236449, 42.807745 ], [ -0.237807, 42.814354 ], [ -0.238794, 42.817798 ], [ -0.243358, 42.82314 ], [ -0.246646, 42.82071 ], [ -0.255807, 42.820136 ], [ -0.274993, 42.829757 ], [ -0.278465, 42.835807 ], [ -0.305081, 42.84129 ], [ -0.313443, 42.849375 ], [ -0.311468, 42.852487 ], [ -0.307294, 42.86898 ], [ -0.315883, 42.88482 ], [ -0.316002, 42.895045 ], [ -0.324323, 42.90333 ], [ -0.326875, 42.916868 ], [ -0.322251, 42.917389 ], [ -0.313024, 42.918566 ], [ -0.297785, 42.93098 ], [ -0.284941, 42.930202 ], [ -0.279243, 42.939053 ], [ -0.27927, 42.942346 ], [ -0.283829, 42.95578 ], [ -0.289622, 42.96112 ], [ -0.292254, 42.99215 ], [ -0.287669, 43.005556 ], [ -0.268857, 43.00819 ], [ -0.264716, 43.01001 ], [ -0.261461, 43.01233 ], [ -0.256413, 43.02486 ], [ -0.26014, 43.03767 ], [ -0.241058, 43.039645 ], [ -0.227697, 43.03594 ], [ -0.223952, 43.03369 ], [ -0.185734, 43.05182 ], [ -0.181008, 43.052032 ], [ -0.196559, 43.059366 ], [ -0.199012, 43.065981 ], [ -0.18734, 43.088552 ], [ -0.197504, 43.0998 ], [ -0.191928, 43.1047 ], [ -0.193583, 43.11466 ], [ -0.176483, 43.110926 ], [ -0.166479, 43.121402 ], [ -0.15059, 43.12705 ], [ -0.146314, 43.12819 ], [ -0.138922, 43.14527 ], [ -0.139471, 43.14837 ], [ -0.134809, 43.151718 ], [ -0.126421, 43.158488 ], [ -0.126899, 43.164586 ], [ -0.125306, 43.167414 ], [ -0.116234, 43.17913 ], [ -0.111709, 43.17823 ], [ -0.101822, 43.16705 ], [ -0.091251, 43.177037 ], [ -0.072545, 43.17684 ], [ -0.067874, 43.17712 ], [ -0.072342, 43.21209 ], [ -0.073972, 43.22238 ], [ -0.065681, 43.223163 ], [ -0.061765, 43.22151 ], [ -0.053677, 43.21846 ], [ -0.048038, 43.22053 ], [ -0.046754, 43.223726 ], [ -0.044814, 43.23384 ], [ -0.025297, 43.253289 ], [ -0.025019, 43.26019 ], [ -0.018439, 43.269315 ], [ -0.018534, 43.272787 ], [ -0.025978, 43.277071 ], [ -0.023975, 43.28021 ], [ -0.028313, 43.280714 ], [ -0.040786, 43.283578 ], [ -0.04401, 43.289338 ], [ -0.044586, 43.302799 ], [ -0.037224, 43.306958 ], [ -0.034256, 43.30958 ], [ -0.031664, 43.31258 ], [ -0.027991, 43.32267 ], [ -0.026224, 43.3273 ], [ -0.025371, 43.329616 ], [ -0.003208, 43.331449 ], [ 0.008515, 43.326076 ], [ 0.012768, 43.327535 ], [ 0.020525, 43.336337 ], [ 0.024182, 43.33862 ], [ 0.025541, 43.340229 ], [ 0.02875, 43.346655 ], [ 0.005349, 43.36304 ], [ 0.00741, 43.365881 ], [ 0.004757, 43.371813 ], [ 0.000487, 43.37038 ], [ -0.004653, 43.375711 ], [ -0.00059, 43.381828 ], [ 0.001295, 43.38497 ], [ -0.001203, 43.38742 ], [ 0.002651, 43.392821 ], [ -0.004291, 43.39337 ], [ -0.00297, 43.395267 ], [ -0.000391, 43.39624 ], [ -0.003807, 43.39805 ], [ 0.007811, 43.4192 ], [ 0.009655, 43.422202 ], [ -0.001211, 43.42925 ], [ -0.004794, 43.43162 ], [ -0.003263, 43.434943 ], [ -0.002483, 43.445085 ], [ -0.007073, 43.44401 ], [ -0.016534, 43.443947 ], [ -0.022528, 43.432688 ], [ -0.02481, 43.43004 ], [ -0.028231, 43.43189 ], [ -0.034239, 43.4308 ], [ -0.038142, 43.418863 ], [ -0.042459, 43.413376 ], [ -0.042983, 43.41021 ], [ -0.067273, 43.410416 ], [ -0.053331, 43.42252 ], [ -0.069629, 43.434208 ], [ -0.066819, 43.443831 ], [ -0.064851, 43.44702 ], [ -0.061978, 43.45362 ], [ -0.065754, 43.463489 ], [ -0.061553, 43.462582 ], [ -0.032107, 43.466039 ], [ -0.019443, 43.466869 ], [ -0.018906, 43.47006 ], [ -0.020185, 43.47253 ], [ -0.02639, 43.474851 ], [ -0.030784, 43.474017 ], [ -0.036451, 43.48885 ], [ -0.049195, 43.492011 ], [ -0.046746, 43.498293 ], [ -0.044886, 43.5038 ], [ -0.044093, 43.506588 ], [ -0.040132, 43.5126 ], [ -0.043649, 43.52014 ], [ -0.0437, 43.522986 ], [ -0.048168, 43.52719 ], [ -0.049232, 43.52975 ], [ -0.056176, 43.533034 ], [ -0.057929, 43.53622 ], [ -0.069606, 43.54674 ], [ -0.087008, 43.542552 ], [ -0.091411, 43.542481 ], [ -0.094943, 43.548071 ], [ -0.090087, 43.559969 ], [ -0.093557, 43.563706 ], [ -0.091968, 43.570063 ], [ -0.096783, 43.582406 ], [ -0.097245, 43.58591 ], [ -0.097509, 43.589427 ], [ -0.09313, 43.590695 ], [ -0.079109, 43.590517 ], [ -0.075589, 43.5928 ], [ -0.074213, 43.60618 ], [ -0.055966, 43.60653 ], [ -0.043995, 43.611191 ], [ -0.0383, 43.60614 ], [ -0.034107, 43.60747 ], [ -0.033826, 43.604731 ], [ -0.029866, 43.605067 ], [ -0.015009, 43.60552 ], [ -0.00871, 43.595291 ], [ -0.006586, 43.59283 ], [ -0.001666, 43.56532 ], [ 0.008294, 43.56073 ], [ 0.00946, 43.55783 ], [ 0.010764, 43.554897 ], [ 0.015782, 43.54339 ], [ 0.030055, 43.54457 ], [ 0.036462, 43.53938 ], [ 0.039857, 43.5369 ], [ 0.053621, 43.518767 ], [ 0.067742, 43.51941 ], [ 0.080576, 43.52395 ], [ 0.082, 43.51736 ], [ 0.091886, 43.510248 ], [ 0.108474, 43.51542 ], [ 0.112248, 43.51737 ], [ 0.125196, 43.50165 ], [ 0.127468, 43.499 ], [ 0.130128, 43.49304 ], [ 0.127279, 43.490655 ], [ 0.130044, 43.477395 ], [ 0.130741, 43.474065 ], [ 0.133654, 43.468209 ], [ 0.140635, 43.465044 ], [ 0.14453, 43.463761 ], [ 0.148229, 43.465191 ], [ 0.152138, 43.45988 ], [ 0.155302, 43.45788 ], [ 0.155394, 43.457025 ], [ 0.158148, 43.454315 ], [ 0.166064, 43.44238 ], [ 0.161807, 43.44151 ], [ 0.137459, 43.433992 ], [ 0.138111, 43.43305 ], [ 0.134549, 43.42249 ], [ 0.148276, 43.408683 ], [ 0.148339, 43.40516 ], [ 0.157076, 43.39925 ], [ 0.169555, 43.40181 ], [ 0.173805, 43.40277 ], [ 0.179426, 43.38255 ], [ 0.180075, 43.379125 ], [ 0.176024, 43.380442 ], [ 0.176969, 43.37704 ], [ 0.182031, 43.37118 ], [ 0.198076, 43.37492 ], [ 0.203647, 43.37024 ], [ 0.206345, 43.36778 ], [ 0.214771, 43.36984 ], [ 0.231704, 43.367712 ], [ 0.240272, 43.3707 ], [ 0.244136, 43.37272 ], [ 0.266934, 43.38168 ], [ 0.271197, 43.38262 ], [ 0.293995, 43.38779 ], [ 0.298759, 43.38858 ], [ 0.300552, 43.374844 ], [ 0.300517, 43.37136 ], [ 0.311893, 43.36716 ], [ 0.322128, 43.372589 ], [ 0.325407, 43.37478 ], [ 0.33095, 43.34597 ], [ 0.33135, 43.342654 ], [ 0.339845, 43.34377 ], [ 0.346156, 43.34814 ], [ 0.363876, 43.34957 ], [ 0.375684, 43.35299 ], [ 0.378548, 43.35537 ], [ 0.387506, 43.355321 ], [ 0.394226, 43.351019 ], [ 0.398672, 43.35144 ], [ 0.393953, 43.340409 ], [ 0.393631, 43.33744 ], [ 0.395823, 43.334244 ], [ 0.418738, 43.32808 ], [ 0.438138, 43.328486 ], [ 0.442971, 43.327926 ], [ 0.443605, 43.337553 ], [ 0.445023, 43.340611 ], [ 0.457253, 43.337884 ], [ 0.461134, 43.336562 ], [ 0.469934, 43.33497 ], [ 0.472977, 43.332483 ], [ 0.476404, 43.33223 ], [ 0.479816, 43.33259 ], [ 0.49354, 43.32548 ], [ 0.497721, 43.325993 ], [ 0.510377, 43.33384 ], [ 0.514701, 43.333342 ], [ 0.533036, 43.32959 ], [ 0.537018, 43.32757 ], [ 0.539688, 43.32713 ], [ 0.543299, 43.328587 ], [ 0.547069, 43.329806 ], [ 0.566583, 43.320815 ], [ 0.571099, 43.319836 ], [ 0.579671, 43.3212 ], [ 0.595984, 43.315758 ], [ 0.599695, 43.31365 ], [ 0.603125, 43.3121 ], [ 0.606811, 43.31089 ], [ 0.611353, 43.30984 ], [ 0.632144, 43.301427 ], [ 0.635622, 43.295653 ], [ 0.618933, 43.290418 ], [ 0.615325, 43.280547 ], [ 0.6146, 43.27783 ], [ 0.596798, 43.273477 ], [ 0.580238, 43.261003 ], [ 0.576716, 43.258656 ], [ 0.576265, 43.25591 ], [ 0.576012, 43.25315 ], [ 0.566788, 43.2523 ], [ 0.554112, 43.23853 ], [ 0.550957, 43.236008 ], [ 0.55547, 43.236983 ], [ 0.568198, 43.232582 ], [ 0.572841, 43.23311 ], [ 0.573087, 43.21995 ], [ 0.57023, 43.21735 ], [ 0.555811, 43.210613 ], [ 0.551875, 43.209147 ], [ 0.544991, 43.21306 ], [ 0.533811, 43.20807 ], [ 0.521425, 43.21115 ], [ 0.517385, 43.212382 ], [ 0.515936, 43.20947 ], [ 0.505764, 43.19971 ], [ 0.520954, 43.193457 ], [ 0.499093, 43.17423 ], [ 0.462785, 43.15066 ], [ 0.458872, 43.148519 ], [ 0.456753, 43.14556 ], [ 0.44385, 43.13358 ], [ 0.441291, 43.13117 ], [ 0.442334, 43.13091 ], [ 0.45476, 43.12636 ], [ 0.463839, 43.118804 ], [ 0.456872, 43.11436 ], [ 0.452923, 43.11255 ], [ 0.464706, 43.111346 ], [ 0.485319, 43.114115 ], [ 0.48929, 43.115179 ], [ 0.491205, 43.10868 ], [ 0.500068, 43.107367 ], [ 0.50459, 43.095359 ], [ 0.522355, 43.09257 ], [ 0.529181, 43.093452 ], [ 0.532638, 43.09387 ], [ 0.532194, 43.08413 ], [ 0.563854, 43.07425 ], [ 0.561711, 43.072363 ], [ 0.55496, 43.064255 ], [ 0.558847, 43.062868 ], [ 0.563791, 43.04397 ], [ 0.565503, 43.040874 ], [ 0.566899, 43.03742 ], [ 0.562697, 43.036438 ], [ 0.548393, 43.043995 ], [ 0.536958, 43.039991 ], [ 0.53512, 43.037051 ], [ 0.534755, 43.017112 ], [ 0.53018, 43.01137 ], [ 0.52695, 43.008925 ], [ 0.538173, 43.001606 ], [ 0.542023, 43.001019 ], [ 0.545867, 43.003735 ], [ 0.548181, 43.006712 ], [ 0.561334, 43.016089 ], [ 0.564055, 43.018733 ], [ 0.572103, 43.021282 ], [ 0.585178, 43.020028 ], [ 0.585777, 43.023317 ], [ 0.58878, 43.02277 ], [ 0.591825, 43.022373 ], [ 0.592642, 43.026035 ], [ 0.59411, 43.032322 ], [ 0.59322, 43.035451 ], [ 0.608047, 43.034009 ], [ 0.613138, 43.024476 ], [ 0.615651, 43.02153 ], [ 0.616481, 43.020421 ], [ 0.614458, 43.014167 ], [ 0.615713, 43.01108 ], [ 0.622358, 43.004526 ], [ 0.625023, 43.002317 ], [ 0.625565, 42.99418 ], [ 0.625588, 42.991209 ], [ 0.615095, 42.98915 ], [ 0.611442, 42.98829 ], [ 0.615981, 42.98432 ], [ 0.613894, 42.982025 ], [ 0.615624, 42.978698 ], [ 0.620121, 42.97244 ], [ 0.624127, 42.971841 ], [ 0.635542, 42.968935 ], [ 0.636348, 42.96841 ], [ 0.643533, 42.963748 ], [ 0.645959, 42.96134 ], [ 0.641991, 42.952873 ], [ 0.637432, 42.95262 ], [ 0.626629, 42.94185 ], [ 0.618067, 42.93951 ], [ 0.615362, 42.93681 ], [ 0.609142, 42.934719 ], [ 0.605645, 42.934 ], [ 0.604428, 42.931735 ], [ 0.600187, 42.928015 ], [ 0.597177, 42.92147 ], [ 0.597588, 42.918033 ], [ 0.595495, 42.910069 ], [ 0.59229, 42.90854 ], [ 0.586278, 42.89742 ], [ 0.58566, 42.894347 ], [ 0.580972, 42.88586 ], [ 0.579564, 42.882954 ], [ 0.577041, 42.880091 ], [ 0.577659, 42.8767 ], [ 0.575935, 42.870826 ], [ 0.564129, 42.863325 ], [ 0.562341, 42.860757 ], [ 0.558081, 42.861146 ], [ 0.554041, 42.86009 ], [ 0.547136, 42.864612 ], [ 0.53418, 42.861256 ], [ 0.527716, 42.86485 ], [ 0.525546, 42.86755 ], [ 0.508611, 42.869167 ], [ 0.504028, 42.868782 ], [ 0.499291, 42.874555 ], [ 0.481956, 42.877965 ], [ 0.477357, 42.87824 ], [ 0.471878, 42.869208 ], [ 0.472642, 42.862613 ], [ 0.472676, 42.859303 ], [ 0.469379, 42.857516 ], [ 0.460239, 42.851749 ], [ 0.464761, 42.848158 ], [ 0.4675, 42.84675 ], [ 0.464129, 42.839956 ], [ 0.45921, 42.827199 ], [ 0.458793, 42.82387 ], [ 0.457889, 42.80793 ], [ 0.459851, 42.80498 ], [ 0.463434, 42.80239 ], [ 0.463138, 42.790136 ], [ 0.461998, 42.7894 ], [ 0.455983, 42.780574 ], [ 0.455185, 42.77092 ], [ 0.46214, 42.762638 ], [ 0.463462, 42.759484 ], [ 0.460252, 42.749387 ], [ 0.461558, 42.746044 ], [ 0.462125, 42.739203 ], [ 0.451297, 42.733134 ], [ 0.483742, 42.70892 ], [ 0.47775, 42.69999 ] ] ], [ [ [ -0.137352, 43.28575 ], [ -0.129744, 43.28974 ], [ -0.125899, 43.299298 ], [ -0.122218, 43.30143 ], [ -0.113765, 43.30902 ], [ -0.09391, 43.30131 ], [ -0.089287, 43.301062 ], [ -0.090984, 43.297763 ], [ -0.095498, 43.287731 ], [ -0.084744, 43.277209 ], [ -0.079662, 43.271566 ], [ -0.079746, 43.26483 ], [ -0.086347, 43.256053 ], [ -0.094273, 43.25526 ], [ -0.104273, 43.245844 ], [ -0.103075, 43.24282 ], [ -0.104915, 43.242917 ], [ -0.109441, 43.242571 ], [ -0.11839, 43.241377 ], [ -0.1241, 43.24632 ], [ -0.125298, 43.249783 ], [ -0.140603, 43.27167 ], [ -0.138442, 43.278156 ], [ -0.137243, 43.281477 ], [ -0.137352, 43.28575 ] ] ], [ [ [ -0.10728, 43.370741 ], [ -0.09693, 43.374036 ], [ -0.093096, 43.373885 ], [ -0.085342, 43.371522 ], [ -0.082359, 43.366755 ], [ -0.078793, 43.365137 ], [ -0.077803, 43.36507 ], [ -0.063012, 43.35008 ], [ -0.062575, 43.34698 ], [ -0.063935, 43.34402 ], [ -0.06517, 43.341027 ], [ -0.064339, 43.337926 ], [ -0.067389, 43.32873 ], [ -0.068281, 43.32232 ], [ -0.069483, 43.31919 ], [ -0.070119, 43.31585 ], [ -0.075042, 43.30714 ], [ -0.075832, 43.30694 ], [ -0.080269, 43.307612 ], [ -0.09645, 43.313028 ], [ -0.109926, 43.312803 ], [ -0.114802, 43.322035 ], [ -0.108476, 43.337801 ], [ -0.091731, 43.33354 ], [ -0.087271, 43.33384 ], [ -0.086853, 43.3371 ], [ -0.09023, 43.35935 ], [ -0.094255, 43.35779 ], [ -0.10333, 43.35858 ], [ -0.106752, 43.3676 ], [ -0.10728, 43.370741 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "67", "CODE_DEPT": "66", "NOM_DEPT": "PYRENEES-ORIENTALES", "CODE_CHF": "136", "NOM_CHF": "PERPIGNAN", "X_CHF_LIEU": "6913", "Y_CHF_LIEU": "61775", "X_CENTROID": "6607", "Y_CENTROID": "61668", "CODE_REG": "91", "NOM_REGION": "LANGUEDOC-ROUSSILLON" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.17407, 42.435191 ], [ 3.123712, 42.43531 ], [ 3.12083, 42.438006 ], [ 3.11693, 42.43603 ], [ 3.108092, 42.433588 ], [ 3.099123, 42.425543 ], [ 3.081231, 42.42821 ], [ 3.047755, 42.45708 ], [ 3.040447, 42.47369 ], [ 3.035906, 42.473745 ], [ 3.011546, 42.46709 ], [ 3.000923, 42.47299 ], [ 2.996212, 42.47332 ], [ 2.986753, 42.473067 ], [ 2.975863, 42.4671 ], [ 2.966575, 42.46701 ], [ 2.947088, 42.481801 ], [ 2.943981, 42.47944 ], [ 2.932851, 42.474368 ], [ 2.930098, 42.47156 ], [ 2.919348, 42.456848 ], [ 2.888228, 42.46086 ], [ 2.883811, 42.460105 ], [ 2.869106, 42.466902 ], [ 2.861352, 42.455198 ], [ 2.848554, 42.456583 ], [ 2.844459, 42.458015 ], [ 2.839868, 42.458988 ], [ 2.830469, 42.443207 ], [ 2.814056, 42.437238 ], [ 2.798364, 42.419906 ], [ 2.794124, 42.41828 ], [ 2.772117, 42.41229 ], [ 2.760617, 42.418435 ], [ 2.756587, 42.424844 ], [ 2.751866, 42.42537 ], [ 2.747692, 42.425299 ], [ 2.727371, 42.42262 ], [ 2.723961, 42.422724 ], [ 2.719585, 42.422 ], [ 2.691401, 42.40621 ], [ 2.673944, 42.4047 ], [ 2.670543, 42.38838 ], [ 2.652876, 42.38444 ], [ 2.65632, 42.382295 ], [ 2.659111, 42.379688 ], [ 2.662355, 42.36592 ], [ 2.675295, 42.355741 ], [ 2.675439, 42.345117 ], [ 2.672644, 42.342224 ], [ 2.66331, 42.341 ], [ 2.616356, 42.345972 ], [ 2.589681, 42.353881 ], [ 2.587526, 42.35706 ], [ 2.56187, 42.357114 ], [ 2.555202, 42.35268 ], [ 2.551632, 42.342645 ], [ 2.542191, 42.335199 ], [ 2.537951, 42.333698 ], [ 2.533265, 42.33349 ], [ 2.498432, 42.34262 ], [ 2.484885, 42.34008 ], [ 2.477796, 42.34441 ], [ 2.4763, 42.347712 ], [ 2.472717, 42.35003 ], [ 2.466899, 42.3595 ], [ 2.452936, 42.36883 ], [ 2.436367, 42.375093 ], [ 2.433343, 42.391957 ], [ 2.410338, 42.39216 ], [ 2.384097, 42.400223 ], [ 2.356268, 42.40428 ], [ 2.348138, 42.407901 ], [ 2.344862, 42.414443 ], [ 2.326867, 42.41705 ], [ 2.318743, 42.425012 ], [ 2.310598, 42.428447 ], [ 2.293944, 42.422981 ], [ 2.257083, 42.438488 ], [ 2.244429, 42.42881 ], [ 2.226329, 42.425783 ], [ 2.20135, 42.416664 ], [ 2.156949, 42.423378 ], [ 2.137359, 42.415662 ], [ 2.133169, 42.414342 ], [ 2.126581, 42.41036 ], [ 2.118632, 42.39609 ], [ 2.114897, 42.394506 ], [ 2.11366, 42.381696 ], [ 2.093464, 42.375234 ], [ 2.089548, 42.373717 ], [ 2.085933, 42.363745 ], [ 2.076724, 42.36438 ], [ 2.059883, 42.358628 ], [ 2.023496, 42.355227 ], [ 2.012785, 42.349402 ], [ 1.989063, 42.36103 ], [ 1.969772, 42.376653 ], [ 1.960959, 42.392999 ], [ 1.956481, 42.416992 ], [ 1.958286, 42.423959 ], [ 1.945314, 42.428083 ], [ 1.941143, 42.43396 ], [ 1.942895, 42.444429 ], [ 1.937441, 42.452645 ], [ 1.933845, 42.454165 ], [ 1.9183, 42.44665 ], [ 1.904571, 42.44861 ], [ 1.900273, 42.449976 ], [ 1.887127, 42.44994 ], [ 1.877658, 42.46134 ], [ 1.864965, 42.465383 ], [ 1.856231, 42.46373 ], [ 1.844678, 42.47386 ], [ 1.843362, 42.47715 ], [ 1.831512, 42.48309 ], [ 1.813199, 42.48473 ], [ 1.805248, 42.488653 ], [ 1.767644, 42.486751 ], [ 1.746603, 42.49482 ], [ 1.73246, 42.493244 ], [ 1.726603, 42.50279 ], [ 1.724011, 42.520249 ], [ 1.733407, 42.532507 ], [ 1.740135, 42.556467 ], [ 1.750786, 42.56342 ], [ 1.764873, 42.565027 ], [ 1.769603, 42.564506 ], [ 1.782868, 42.57173 ], [ 1.786125, 42.573623 ], [ 1.799703, 42.57232 ], [ 1.820712, 42.579504 ], [ 1.824728, 42.58124 ], [ 1.838155, 42.583957 ], [ 1.865377, 42.579925 ], [ 1.874485, 42.581415 ], [ 1.873502, 42.588202 ], [ 1.890215, 42.592989 ], [ 1.89352, 42.606051 ], [ 1.898745, 42.61167 ], [ 1.900303, 42.614906 ], [ 1.910766, 42.608063 ], [ 1.924961, 42.608539 ], [ 1.933621, 42.605578 ], [ 1.942099, 42.608521 ], [ 1.950468, 42.616947 ], [ 1.97328, 42.61838 ], [ 1.976361, 42.62107 ], [ 1.976116, 42.62744 ], [ 1.987816, 42.6443 ], [ 1.990771, 42.64664 ], [ 1.997956, 42.660903 ], [ 2.002095, 42.661076 ], [ 2.015214, 42.65539 ], [ 2.018423, 42.65366 ], [ 2.022788, 42.653364 ], [ 2.04327, 42.657496 ], [ 2.047019, 42.66359 ], [ 2.061034, 42.66184 ], [ 2.073887, 42.665624 ], [ 2.10655, 42.664841 ], [ 2.127885, 42.672039 ], [ 2.143126, 42.663854 ], [ 2.152302, 42.662075 ], [ 2.161322, 42.664241 ], [ 2.166054, 42.66392 ], [ 2.173177, 42.65562 ], [ 2.176088, 42.65301 ], [ 2.176143, 42.652596 ], [ 2.176219, 42.648901 ], [ 2.188063, 42.65205 ], [ 2.192366, 42.651766 ], [ 2.191276, 42.656631 ], [ 2.192168, 42.659057 ], [ 2.218667, 42.672426 ], [ 2.240947, 42.67753 ], [ 2.256682, 42.698268 ], [ 2.264471, 42.702116 ], [ 2.264713, 42.709032 ], [ 2.275384, 42.702928 ], [ 2.28859, 42.70067 ], [ 2.318547, 42.706457 ], [ 2.32249, 42.70811 ], [ 2.342891, 42.722902 ], [ 2.355346, 42.72805 ], [ 2.357134, 42.738418 ], [ 2.353569, 42.748566 ], [ 2.352471, 42.749692 ], [ 2.351796, 42.75222 ], [ 2.350519, 42.7573 ], [ 2.352611, 42.76015 ], [ 2.349394, 42.76951 ], [ 2.343325, 42.774112 ], [ 2.344229, 42.780565 ], [ 2.343923, 42.801227 ], [ 2.339328, 42.801531 ], [ 2.33228, 42.80487 ], [ 2.33204, 42.81834 ], [ 2.322405, 42.825453 ], [ 2.32504, 42.8352 ], [ 2.336096, 42.840709 ], [ 2.36647, 42.84556 ], [ 2.370849, 42.84635 ], [ 2.382167, 42.848466 ], [ 2.397686, 42.845128 ], [ 2.401353, 42.843872 ], [ 2.452145, 42.83694 ], [ 2.45682, 42.83748 ], [ 2.459478, 42.83808 ], [ 2.462198, 42.83856 ], [ 2.496644, 42.84839 ], [ 2.500452, 42.85043 ], [ 2.512073, 42.8477 ], [ 2.515232, 42.84545 ], [ 2.518539, 42.84314 ], [ 2.554148, 42.84627 ], [ 2.558602, 42.845506 ], [ 2.567708, 42.843691 ], [ 2.572403, 42.84337 ], [ 2.603246, 42.83613 ], [ 2.635284, 42.83795 ], [ 2.639901, 42.83826 ], [ 2.664347, 42.836753 ], [ 2.665142, 42.83666 ], [ 2.682011, 42.83072 ], [ 2.72743, 42.8344 ], [ 2.740524, 42.83789 ], [ 2.751927, 42.848735 ], [ 2.754346, 42.851708 ], [ 2.755066, 42.85486 ], [ 2.761908, 42.873325 ], [ 2.787164, 42.89441 ], [ 2.8054, 42.89788 ], [ 2.810132, 42.89842 ], [ 2.83792, 42.912314 ], [ 2.865274, 42.918341 ], [ 2.880505, 42.901363 ], [ 2.902421, 42.89638 ], [ 2.906997, 42.895679 ], [ 2.91436, 42.887448 ], [ 2.917115, 42.88486 ], [ 2.98478, 42.8665 ], [ 2.988876, 42.864578 ], [ 3.012405, 42.853193 ], [ 3.03948, 42.84012 ], [ 3.043511, 42.83815 ], [ 3.038732, 42.78179 ], [ 3.039267, 42.778275 ], [ 3.038904, 42.746858 ], [ 3.038853, 42.743352 ], [ 3.039842, 42.72662 ], [ 3.040279, 42.72327 ], [ 3.035475, 42.644227 ], [ 3.035728, 42.640766 ], [ 3.04235, 42.60352 ], [ 3.043114, 42.600082 ], [ 3.044268, 42.596872 ], [ 3.045056, 42.593725 ], [ 3.049268, 42.552154 ], [ 3.055299, 42.539422 ], [ 3.05825, 42.536732 ], [ 3.072081, 42.535187 ], [ 3.07637, 42.533754 ], [ 3.094697, 42.52455 ], [ 3.099107, 42.523613 ], [ 3.107907, 42.52454 ], [ 3.133595, 42.51727 ], [ 3.135447, 42.514161 ], [ 3.12679, 42.50609 ], [ 3.126782, 42.502549 ], [ 3.133977, 42.498369 ], [ 3.132924, 42.494981 ], [ 3.129255, 42.489188 ], [ 3.131913, 42.4827 ], [ 3.153637, 42.477488 ], [ 3.160651, 42.462268 ], [ 3.15727, 42.459972 ], [ 3.164907, 42.456194 ], [ 3.164961, 42.449497 ], [ 3.17533, 42.438478 ], [ 3.17407, 42.435191 ] ], [ [ 1.980578, 42.49478 ], [ 1.977965, 42.48859 ], [ 1.962663, 42.476833 ], [ 1.960056, 42.470452 ], [ 1.959803, 42.453261 ], [ 1.976787, 42.44903 ], [ 1.980854, 42.44761 ], [ 2.004724, 42.447236 ], [ 2.009407, 42.448115 ], [ 2.012837, 42.452696 ], [ 2.006447, 42.456583 ], [ 2.002789, 42.45822 ], [ 1.991899, 42.463836 ], [ 1.98661, 42.472712 ], [ 1.993973, 42.48447 ], [ 1.998385, 42.484978 ], [ 1.995604, 42.4878 ], [ 1.989823, 42.493339 ], [ 1.980578, 42.49478 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "68", "CODE_DEPT": "67", "NOM_DEPT": "BAS-RHIN", "CODE_CHF": "482", "NOM_CHF": "STRASBOURG", "X_CHF_LIEU": "10499", "Y_CHF_LIEU": "68420", "X_CENTROID": "10349", "Y_CENTROID": "68508", "CODE_REG": "42", "NOM_REGION": "ALSACE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.577859, 48.12139 ], [ 7.572792, 48.12133 ], [ 7.537615, 48.123653 ], [ 7.518595, 48.127764 ], [ 7.517421, 48.13057 ], [ 7.515351, 48.13313 ], [ 7.520334, 48.1495 ], [ 7.474998, 48.15948 ], [ 7.47014, 48.160174 ], [ 7.470667, 48.163381 ], [ 7.472763, 48.182228 ], [ 7.475189, 48.185092 ], [ 7.473539, 48.197736 ], [ 7.476943, 48.20354 ], [ 7.472434, 48.20473 ], [ 7.450586, 48.21168 ], [ 7.444787, 48.21678 ], [ 7.435466, 48.21786 ], [ 7.4178, 48.22269 ], [ 7.414318, 48.224911 ], [ 7.409073, 48.22445 ], [ 7.398737, 48.2323 ], [ 7.351512, 48.24745 ], [ 7.325376, 48.24545 ], [ 7.312801, 48.255661 ], [ 7.314287, 48.26244 ], [ 7.322898, 48.26327 ], [ 7.328684, 48.26782 ], [ 7.33139, 48.2702 ], [ 7.333983, 48.272511 ], [ 7.308792, 48.26851 ], [ 7.29386, 48.27077 ], [ 7.299949, 48.28285 ], [ 7.290493, 48.29074 ], [ 7.290799, 48.293838 ], [ 7.286358, 48.295009 ], [ 7.28222, 48.2966 ], [ 7.280565, 48.29983 ], [ 7.274333, 48.30508 ], [ 7.259555, 48.3052 ], [ 7.254595, 48.306004 ], [ 7.245237, 48.30334 ], [ 7.218359, 48.31089 ], [ 7.203354, 48.30989 ], [ 7.198282, 48.310477 ], [ 7.196704, 48.313722 ], [ 7.190289, 48.32289 ], [ 7.180957, 48.32548 ], [ 7.179213, 48.32869 ], [ 7.183497, 48.33839 ], [ 7.169537, 48.342307 ], [ 7.166545, 48.33934 ], [ 7.147917, 48.33327 ], [ 7.144831, 48.332165 ], [ 7.141319, 48.33202 ], [ 7.136446, 48.33241 ], [ 7.117124, 48.334133 ], [ 7.105971, 48.34411 ], [ 7.101462, 48.34503 ], [ 7.075964, 48.352585 ], [ 7.079827, 48.35481 ], [ 7.085662, 48.36014 ], [ 7.088402, 48.36305 ], [ 7.100822, 48.37374 ], [ 7.106642, 48.376065 ], [ 7.108321, 48.37902 ], [ 7.103692, 48.38799 ], [ 7.092947, 48.394169 ], [ 7.088645, 48.39572 ], [ 7.084985, 48.39788 ], [ 7.087244, 48.401015 ], [ 7.095804, 48.404953 ], [ 7.09342, 48.41118 ], [ 7.097112, 48.423457 ], [ 7.095687, 48.426533 ], [ 7.105324, 48.43709 ], [ 7.109384, 48.438797 ], [ 7.108093, 48.44029 ], [ 7.106218, 48.44402 ], [ 7.104289, 48.45416 ], [ 7.116817, 48.47333 ], [ 7.118811, 48.483719 ], [ 7.114032, 48.485326 ], [ 7.093663, 48.48928 ], [ 7.093726, 48.492352 ], [ 7.091003, 48.500878 ], [ 7.094251, 48.5062 ], [ 7.096288, 48.50312 ], [ 7.125615, 48.49959 ], [ 7.123165, 48.51359 ], [ 7.103796, 48.517641 ], [ 7.083459, 48.51558 ], [ 7.08063, 48.51267 ], [ 7.077105, 48.51634 ], [ 7.068664, 48.52252 ], [ 7.065385, 48.5243 ], [ 7.07538, 48.53477 ], [ 7.07936, 48.53642 ], [ 7.091701, 48.5298 ], [ 7.115674, 48.5368 ], [ 7.137943, 48.52835 ], [ 7.1527, 48.530426 ], [ 7.162675, 48.52811 ], [ 7.16791, 48.5276 ], [ 7.168499, 48.528693 ], [ 7.170802, 48.531386 ], [ 7.187101, 48.537272 ], [ 7.189533, 48.540042 ], [ 7.193254, 48.54924 ], [ 7.201361, 48.552704 ], [ 7.206436, 48.55254 ], [ 7.220273, 48.554683 ], [ 7.221387, 48.558066 ], [ 7.241234, 48.57374 ], [ 7.253572, 48.58624 ], [ 7.256282, 48.58868 ], [ 7.260833, 48.590044 ], [ 7.265139, 48.59172 ], [ 7.261855, 48.594421 ], [ 7.256898, 48.599923 ], [ 7.276136, 48.62426 ], [ 7.272375, 48.633446 ], [ 7.290602, 48.64556 ], [ 7.304356, 48.66021 ], [ 7.271164, 48.66238 ], [ 7.266276, 48.662301 ], [ 7.261696, 48.6715 ], [ 7.257236, 48.67285 ], [ 7.245176, 48.689637 ], [ 7.242262, 48.69211 ], [ 7.262073, 48.697798 ], [ 7.264726, 48.70046 ], [ 7.268353, 48.714201 ], [ 7.286137, 48.73152 ], [ 7.292018, 48.75221 ], [ 7.311008, 48.764081 ], [ 7.31334, 48.76724 ], [ 7.308377, 48.767536 ], [ 7.290695, 48.786296 ], [ 7.290899, 48.79391 ], [ 7.27423, 48.80044 ], [ 7.270146, 48.802506 ], [ 7.26406, 48.799121 ], [ 7.260851, 48.79755 ], [ 7.257857, 48.80412 ], [ 7.249213, 48.80781 ], [ 7.245235, 48.81003 ], [ 7.25826, 48.81757 ], [ 7.262461, 48.81857 ], [ 7.260133, 48.82029 ], [ 7.258105, 48.822174 ], [ 7.254469, 48.81991 ], [ 7.245313, 48.81734 ], [ 7.227, 48.82848 ], [ 7.217749, 48.828109 ], [ 7.219991, 48.819087 ], [ 7.216079, 48.8208 ], [ 7.211982, 48.82613 ], [ 7.203428, 48.82696 ], [ 7.198574, 48.82782 ], [ 7.187199, 48.83428 ], [ 7.194087, 48.83902 ], [ 7.184904, 48.850374 ], [ 7.180837, 48.84901 ], [ 7.173508, 48.842019 ], [ 7.148854, 48.8446 ], [ 7.142117, 48.83555 ], [ 7.147387, 48.82224 ], [ 7.143224, 48.820135 ], [ 7.139809, 48.817497 ], [ 7.129735, 48.81565 ], [ 7.121704, 48.807055 ], [ 7.126562, 48.80107 ], [ 7.12201, 48.79971 ], [ 7.11715, 48.79894 ], [ 7.108504, 48.797865 ], [ 7.104562, 48.79645 ], [ 7.099603, 48.795613 ], [ 7.085536, 48.79162 ], [ 7.079244, 48.78629 ], [ 7.07513, 48.78805 ], [ 7.066783, 48.79933 ], [ 7.070561, 48.80128 ], [ 7.087958, 48.80617 ], [ 7.08504, 48.811908 ], [ 7.080902, 48.81356 ], [ 7.052435, 48.81484 ], [ 7.049769, 48.81773 ], [ 7.047117, 48.82064 ], [ 7.049695, 48.82345 ], [ 7.054315, 48.83602 ], [ 7.052897, 48.83867 ], [ 7.052063, 48.84688 ], [ 7.057126, 48.84741 ], [ 7.0817, 48.84759 ], [ 7.085183, 48.84747 ], [ 7.08838, 48.848392 ], [ 7.092468, 48.84988 ], [ 7.098772, 48.85421 ], [ 7.094146, 48.86288 ], [ 7.089153, 48.86309 ], [ 7.079252, 48.863896 ], [ 7.050544, 48.85893 ], [ 7.051672, 48.863771 ], [ 7.05501, 48.86492 ], [ 7.02655, 48.879711 ], [ 6.987974, 48.891368 ], [ 6.982702, 48.891543 ], [ 6.972319, 48.890754 ], [ 6.957465, 48.89421 ], [ 6.963487, 48.90728 ], [ 6.955073, 48.920039 ], [ 6.941442, 48.92459 ], [ 6.944402, 48.9348 ], [ 6.946783, 48.93466 ], [ 6.948243, 48.931394 ], [ 6.960851, 48.92557 ], [ 6.965828, 48.92652 ], [ 6.977854, 48.932782 ], [ 6.981781, 48.94194 ], [ 6.986381, 48.946859 ], [ 6.986481, 48.949764 ], [ 6.987805, 48.95276 ], [ 6.988544, 48.95883 ], [ 6.992743, 48.96027 ], [ 7.018077, 48.95776 ], [ 7.021751, 48.956995 ], [ 7.025378, 48.95615 ], [ 7.0288, 48.956038 ], [ 7.032219, 48.956049 ], [ 7.027888, 48.96948 ], [ 7.038662, 48.97666 ], [ 7.033682, 48.98985 ], [ 7.046848, 48.99991 ], [ 7.052581, 49.00849 ], [ 7.054464, 49.01139 ], [ 7.047917, 49.01591 ], [ 7.054913, 49.03063 ], [ 7.057835, 49.033158 ], [ 7.07866, 49.050361 ], [ 7.073994, 49.054787 ], [ 7.072338, 49.057247 ], [ 7.0686, 49.06339 ], [ 7.071032, 49.06975 ], [ 7.074754, 49.07213 ], [ 7.089116, 49.07039 ], [ 7.099342, 49.07789 ], [ 7.117294, 49.06681 ], [ 7.113838, 49.06471 ], [ 7.101874, 49.06121 ], [ 7.106797, 49.04864 ], [ 7.106358, 49.04535 ], [ 7.116612, 49.03976 ], [ 7.119477, 49.03722 ], [ 7.116375, 49.031083 ], [ 7.122979, 49.02648 ], [ 7.122364, 49.02322 ], [ 7.130174, 49.00541 ], [ 7.160682, 49.00524 ], [ 7.161607, 49.00193 ], [ 7.169316, 49.005042 ], [ 7.17359, 49.00611 ], [ 7.183774, 48.99644 ], [ 7.186213, 48.99376 ], [ 7.195847, 48.99377 ], [ 7.206959, 48.98296 ], [ 7.209311, 48.980088 ], [ 7.214241, 48.98116 ], [ 7.238142, 48.9877 ], [ 7.293927, 48.97262 ], [ 7.290433, 48.967089 ], [ 7.290203, 48.956516 ], [ 7.305475, 48.956643 ], [ 7.30646, 48.953357 ], [ 7.322678, 48.945298 ], [ 7.326853, 48.94338 ], [ 7.333561, 48.948246 ], [ 7.343367, 48.94843 ], [ 7.350815, 48.95279 ], [ 7.355124, 48.954443 ], [ 7.363903, 48.95525 ], [ 7.368109, 48.95355 ], [ 7.375698, 48.95142 ], [ 7.379918, 48.951197 ], [ 7.392312, 48.95272 ], [ 7.404511, 48.9582 ], [ 7.447472, 48.966046 ], [ 7.451631, 48.96797 ], [ 7.45365, 48.964879 ], [ 7.477995, 48.961495 ], [ 7.487019, 48.950061 ], [ 7.508411, 48.94364 ], [ 7.513191, 48.94325 ], [ 7.527765, 48.94197 ], [ 7.536256, 48.933506 ], [ 7.556685, 48.936198 ], [ 7.553536, 48.94239 ], [ 7.579926, 48.96161 ], [ 7.583559, 48.96604 ], [ 7.582392, 48.97266 ], [ 7.589173, 48.98205 ], [ 7.592336, 48.98485 ], [ 7.591159, 48.988098 ], [ 7.588722, 48.99103 ], [ 7.608195, 49.010413 ], [ 7.606889, 49.019911 ], [ 7.61065, 49.02201 ], [ 7.617915, 49.030386 ], [ 7.626239, 49.033722 ], [ 7.628348, 49.03678 ], [ 7.639294, 49.048116 ], [ 7.635286, 49.05417 ], [ 7.671084, 49.04597 ], [ 7.691726, 49.04922 ], [ 7.697077, 49.04975 ], [ 7.695848, 49.056301 ], [ 7.720646, 49.05273 ], [ 7.730602, 49.05446 ], [ 7.73223, 49.04436 ], [ 7.737335, 49.04474 ], [ 7.766454, 49.046681 ], [ 7.778385, 49.057637 ], [ 7.788754, 49.058593 ], [ 7.799934, 49.06416 ], [ 7.832946, 49.047714 ], [ 7.847331, 49.0437 ], [ 7.852164, 49.03809 ], [ 7.85549, 49.035417 ], [ 7.85963, 49.03529 ], [ 7.867408, 49.03349 ], [ 7.870725, 49.036276 ], [ 7.890091, 49.04795 ], [ 7.915271, 49.04191 ], [ 7.920273, 49.043209 ], [ 7.93704, 49.05623 ], [ 7.965415, 49.040484 ], [ 7.976319, 49.0283 ], [ 7.997338, 49.02802 ], [ 8.020574, 49.01937 ], [ 8.051136, 49.012758 ], [ 8.068136, 48.99931 ], [ 8.086945, 48.99056 ], [ 8.091376, 48.98926 ], [ 8.128979, 48.98306 ], [ 8.132862, 48.98107 ], [ 8.147114, 48.977487 ], [ 8.162481, 48.97742 ], [ 8.193517, 48.97647 ], [ 8.202866, 48.96936 ], [ 8.221431, 48.97524 ], [ 8.230295, 48.9673 ], [ 8.201638, 48.95915 ], [ 8.18931, 48.94822 ], [ 8.187147, 48.94506 ], [ 8.184989, 48.94194 ], [ 8.168506, 48.924505 ], [ 8.165528, 48.92179 ], [ 8.141568, 48.89607 ], [ 8.123191, 48.86812 ], [ 8.121444, 48.864942 ], [ 8.108217, 48.835263 ], [ 8.107299, 48.828408 ], [ 8.106525, 48.825115 ], [ 8.087016, 48.80201 ], [ 8.083462, 48.799432 ], [ 8.062413, 48.78919 ], [ 8.041571, 48.79073 ], [ 8.031856, 48.78815 ], [ 8.017477, 48.76275 ], [ 7.982994, 48.761088 ], [ 7.978115, 48.76025 ], [ 7.96876, 48.75305 ], [ 7.967702, 48.72979 ], [ 7.966976, 48.72631 ], [ 7.924601, 48.69054 ], [ 7.921391, 48.68796 ], [ 7.896251, 48.66721 ], [ 7.893, 48.664595 ], [ 7.845044, 48.645532 ], [ 7.835923, 48.633674 ], [ 7.834842, 48.63022 ], [ 7.830464, 48.620063 ], [ 7.805009, 48.59319 ], [ 7.800177, 48.58317 ], [ 7.805468, 48.558838 ], [ 7.805162, 48.5135 ], [ 7.793974, 48.501669 ], [ 7.771475, 48.492437 ], [ 7.76841, 48.48989 ], [ 7.766162, 48.463973 ], [ 7.763982, 48.45384 ], [ 7.753419, 48.43461 ], [ 7.751579, 48.431347 ], [ 7.733547, 48.398685 ], [ 7.730966, 48.3822 ], [ 7.735052, 48.365845 ], [ 7.736099, 48.362594 ], [ 7.737219, 48.359422 ], [ 7.743503, 48.34033 ], [ 7.744637, 48.33687 ], [ 7.744002, 48.32639 ], [ 7.738099, 48.32058 ], [ 7.705078, 48.30964 ], [ 7.693937, 48.30212 ], [ 7.680779, 48.25732 ], [ 7.679569, 48.25418 ], [ 7.678301, 48.250851 ], [ 7.666151, 48.221101 ], [ 7.64185, 48.204 ], [ 7.637131, 48.19587 ], [ 7.635273, 48.192681 ], [ 7.613793, 48.169665 ], [ 7.5995, 48.155631 ], [ 7.598898, 48.13543 ], [ 7.580143, 48.124441 ], [ 7.577859, 48.12139 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "69", "CODE_DEPT": "68", "NOM_DEPT": "HAUT-RHIN", "CODE_CHF": "066", "NOM_CHF": "COLMAR", "X_CHF_LIEU": "10241", "Y_CHF_LIEU": "67845", "X_CENTROID": "10194", "Y_CENTROID": "67595", "CODE_REG": "42", "NOM_REGION": "ALSACE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.577859, 48.12139 ], [ 7.577109, 48.11848 ], [ 7.579775, 48.106843 ], [ 7.575989, 48.093902 ], [ 7.569675, 48.08421 ], [ 7.573386, 48.05963 ], [ 7.56859, 48.03634 ], [ 7.575301, 48.02753 ], [ 7.578458, 48.02489 ], [ 7.605851, 48.003353 ], [ 7.608583, 48.00032 ], [ 7.622157, 47.97366 ], [ 7.606746, 47.95129 ], [ 7.603343, 47.94856 ], [ 7.599898, 47.94614 ], [ 7.582634, 47.92989 ], [ 7.580516, 47.923853 ], [ 7.580987, 47.92077 ], [ 7.58346, 47.90143 ], [ 7.582515, 47.89826 ], [ 7.556153, 47.877574 ], [ 7.555642, 47.87053 ], [ 7.556106, 47.86719 ], [ 7.563369, 47.85117 ], [ 7.562403, 47.841018 ], [ 7.545848, 47.81265 ], [ 7.544378, 47.809554 ], [ 7.54106, 47.803453 ], [ 7.530228, 47.78344 ], [ 7.53157, 47.76937 ], [ 7.533371, 47.76603 ], [ 7.538212, 47.757261 ], [ 7.539848, 47.75434 ], [ 7.548326, 47.73873 ], [ 7.5472, 47.728838 ], [ 7.538458, 47.717052 ], [ 7.534946, 47.714718 ], [ 7.51721, 47.70486 ], [ 7.513752, 47.70282 ], [ 7.512127, 47.696092 ], [ 7.519798, 47.68342 ], [ 7.521764, 47.66301 ], [ 7.524674, 47.66019 ], [ 7.53729, 47.649597 ], [ 7.56457, 47.634568 ], [ 7.567355, 47.63174 ], [ 7.569511, 47.628722 ], [ 7.574324, 47.615802 ], [ 7.593036, 47.600821 ], [ 7.592744, 47.59759 ], [ 7.584266, 47.57571 ], [ 7.574802, 47.57614 ], [ 7.565025, 47.57632 ], [ 7.557757, 47.571568 ], [ 7.551769, 47.563381 ], [ 7.547566, 47.56173 ], [ 7.517363, 47.54577 ], [ 7.507876, 47.544756 ], [ 7.504503, 47.54297 ], [ 7.499111, 47.53824 ], [ 7.499031, 47.535234 ], [ 7.502447, 47.52884 ], [ 7.520963, 47.53339 ], [ 7.530015, 47.52632 ], [ 7.523452, 47.51704 ], [ 7.508542, 47.51558 ], [ 7.500923, 47.518499 ], [ 7.497798, 47.521226 ], [ 7.498597, 47.51775 ], [ 7.50873, 47.50991 ], [ 7.50952, 47.499566 ], [ 7.489963, 47.48374 ], [ 7.480658, 47.48079 ], [ 7.470657, 47.48159 ], [ 7.464232, 47.48699 ], [ 7.454619, 47.489427 ], [ 7.438881, 47.49629 ], [ 7.434763, 47.497966 ], [ 7.421954, 47.48352 ], [ 7.421225, 47.48017 ], [ 7.43116, 47.48146 ], [ 7.453485, 47.473576 ], [ 7.44463, 47.461914 ], [ 7.430067, 47.459278 ], [ 7.422547, 47.447753 ], [ 7.403802, 47.43769 ], [ 7.400344, 47.43539 ], [ 7.386298, 47.43197 ], [ 7.356149, 47.434239 ], [ 7.338911, 47.440572 ], [ 7.328807, 47.44084 ], [ 7.324561, 47.438952 ], [ 7.303976, 47.43825 ], [ 7.245487, 47.420194 ], [ 7.24434, 47.42734 ], [ 7.236761, 47.43028 ], [ 7.235902, 47.436879 ], [ 7.227924, 47.439657 ], [ 7.210452, 47.43612 ], [ 7.206223, 47.434891 ], [ 7.196512, 47.435747 ], [ 7.172162, 47.445503 ], [ 7.178251, 47.45814 ], [ 7.177993, 47.46811 ], [ 7.18773, 47.483462 ], [ 7.197923, 47.49016 ], [ 7.202313, 47.4917 ], [ 7.198165, 47.49358 ], [ 7.163992, 47.49011 ], [ 7.130346, 47.503027 ], [ 7.142173, 47.52502 ], [ 7.137885, 47.53066 ], [ 7.136668, 47.533675 ], [ 7.13281, 47.539202 ], [ 7.131577, 47.540291 ], [ 7.128022, 47.54183 ], [ 7.118633, 47.547311 ], [ 7.114064, 47.547969 ], [ 7.106216, 47.551337 ], [ 7.107618, 47.55364 ], [ 7.107532, 47.558583 ], [ 7.108259, 47.5618 ], [ 7.102383, 47.5706 ], [ 7.094361, 47.57349 ], [ 7.09288, 47.57694 ], [ 7.088724, 47.58354 ], [ 7.086324, 47.58491 ], [ 7.086787, 47.58765 ], [ 7.085388, 47.59305 ], [ 7.081668, 47.59476 ], [ 7.078391, 47.59686 ], [ 7.074772, 47.59885 ], [ 7.074506, 47.59886 ], [ 7.041412, 47.599821 ], [ 7.02538, 47.59238 ], [ 7.024362, 47.589127 ], [ 7.019563, 47.588382 ], [ 7.019479, 47.593982 ], [ 7.009213, 47.599391 ], [ 7.006716, 47.60145 ], [ 7.011233, 47.6057 ], [ 7.007647, 47.60747 ], [ 7.006179, 47.61933 ], [ 7.007601, 47.621573 ], [ 7.006925, 47.626418 ], [ 7.010525, 47.630152 ], [ 7.016567, 47.645049 ], [ 7.017172, 47.648129 ], [ 7.019805, 47.65068 ], [ 7.034478, 47.64946 ], [ 7.039244, 47.65039 ], [ 7.037741, 47.653449 ], [ 7.035237, 47.659655 ], [ 7.045282, 47.67037 ], [ 7.04166, 47.67241 ], [ 7.037637, 47.67515 ], [ 7.039997, 47.6781 ], [ 7.045893, 47.68334 ], [ 7.038634, 47.687945 ], [ 7.036342, 47.692224 ], [ 7.038652, 47.692586 ], [ 7.035736, 47.694967 ], [ 7.027565, 47.70537 ], [ 7.029376, 47.70866 ], [ 7.037418, 47.721558 ], [ 7.035193, 47.7241 ], [ 7.032079, 47.72619 ], [ 7.0294, 47.72838 ], [ 7.020601, 47.73444 ], [ 7.018794, 47.7374 ], [ 7.015778, 47.74346 ], [ 7.011685, 47.741631 ], [ 6.998425, 47.745825 ], [ 6.993444, 47.746743 ], [ 6.974542, 47.75147 ], [ 6.938479, 47.77082 ], [ 6.923452, 47.77006 ], [ 6.922358, 47.77209 ], [ 6.91897, 47.774 ], [ 6.907546, 47.777715 ], [ 6.902092, 47.77645 ], [ 6.891696, 47.77834 ], [ 6.88743, 47.779961 ], [ 6.864959, 47.784607 ], [ 6.862197, 47.78744 ], [ 6.842967, 47.81367 ], [ 6.84618, 47.822945 ], [ 6.891175, 47.83352 ], [ 6.896086, 47.83297 ], [ 6.897089, 47.83479 ], [ 6.907205, 47.84604 ], [ 6.916958, 47.847597 ], [ 6.920048, 47.850287 ], [ 6.918805, 47.85286 ], [ 6.918906, 47.858039 ], [ 6.914944, 47.86005 ], [ 6.90804, 47.864664 ], [ 6.907135, 47.87129 ], [ 6.907124, 47.88116 ], [ 6.898328, 47.88869 ], [ 6.918458, 47.898414 ], [ 6.917036, 47.90165 ], [ 6.927478, 47.90875 ], [ 6.926308, 47.91541 ], [ 6.912346, 47.91838 ], [ 6.924738, 47.92915 ], [ 6.920791, 47.945939 ], [ 6.923823, 47.95247 ], [ 6.925559, 47.95925 ], [ 6.931043, 47.97115 ], [ 6.941063, 47.97778 ], [ 6.943766, 47.980383 ], [ 6.943033, 47.99199 ], [ 6.94353, 47.99867 ], [ 6.951891, 48.00241 ], [ 6.961425, 48.00046 ], [ 6.976517, 48.009239 ], [ 6.981539, 48.00942 ], [ 6.989372, 48.018211 ], [ 7.002566, 48.02325 ], [ 7.011704, 48.035355 ], [ 7.016021, 48.03719 ], [ 7.013018, 48.04011 ], [ 7.009749, 48.04289 ], [ 7.012283, 48.04583 ], [ 7.018614, 48.05506 ], [ 7.023359, 48.05648 ], [ 7.024436, 48.063384 ], [ 7.034358, 48.075389 ], [ 7.05165, 48.08261 ], [ 7.06841, 48.10328 ], [ 7.070402, 48.10644 ], [ 7.076708, 48.108486 ], [ 7.083691, 48.12207 ], [ 7.084163, 48.12922 ], [ 7.068587, 48.130752 ], [ 7.059047, 48.13918 ], [ 7.078438, 48.16401 ], [ 7.077558, 48.170925 ], [ 7.082138, 48.17477 ], [ 7.083342, 48.17745 ], [ 7.086997, 48.183753 ], [ 7.102708, 48.19191 ], [ 7.10629, 48.19431 ], [ 7.108345, 48.19751 ], [ 7.105556, 48.200462 ], [ 7.108503, 48.20317 ], [ 7.116387, 48.20713 ], [ 7.126811, 48.22509 ], [ 7.132651, 48.24283 ], [ 7.143334, 48.258446 ], [ 7.153763, 48.26527 ], [ 7.157746, 48.26753 ], [ 7.158499, 48.26835 ], [ 7.159414, 48.27463 ], [ 7.174226, 48.287813 ], [ 7.172441, 48.29749 ], [ 7.176243, 48.299121 ], [ 7.193611, 48.302029 ], [ 7.198282, 48.310477 ], [ 7.203354, 48.30989 ], [ 7.218359, 48.31089 ], [ 7.245237, 48.30334 ], [ 7.254595, 48.306004 ], [ 7.259555, 48.3052 ], [ 7.274333, 48.30508 ], [ 7.280565, 48.29983 ], [ 7.28222, 48.2966 ], [ 7.286358, 48.295009 ], [ 7.290799, 48.293838 ], [ 7.290493, 48.29074 ], [ 7.299949, 48.28285 ], [ 7.29386, 48.27077 ], [ 7.308792, 48.26851 ], [ 7.333983, 48.272511 ], [ 7.33139, 48.2702 ], [ 7.328684, 48.26782 ], [ 7.322898, 48.26327 ], [ 7.314287, 48.26244 ], [ 7.312801, 48.255661 ], [ 7.325376, 48.24545 ], [ 7.351512, 48.24745 ], [ 7.398737, 48.2323 ], [ 7.409073, 48.22445 ], [ 7.414318, 48.224911 ], [ 7.4178, 48.22269 ], [ 7.435466, 48.21786 ], [ 7.444787, 48.21678 ], [ 7.450586, 48.21168 ], [ 7.472434, 48.20473 ], [ 7.476943, 48.20354 ], [ 7.473539, 48.197736 ], [ 7.475189, 48.185092 ], [ 7.472763, 48.182228 ], [ 7.470667, 48.163381 ], [ 7.47014, 48.160174 ], [ 7.474998, 48.15948 ], [ 7.520334, 48.1495 ], [ 7.515351, 48.13313 ], [ 7.517421, 48.13057 ], [ 7.518595, 48.127764 ], [ 7.537615, 48.123653 ], [ 7.572792, 48.12133 ], [ 7.577859, 48.12139 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "70", "CODE_DEPT": "69", "NOM_DEPT": "RHONE", "CODE_CHF": "123", "NOM_CHF": "LYON", "X_CHF_LIEU": "8431", "Y_CHF_LIEU": "65193", "X_CENTROID": "8273", "Y_CENTROID": "65314", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.101067, 45.81338 ], [ 5.090735, 45.78716 ], [ 5.086697, 45.785242 ], [ 5.063732, 45.790871 ], [ 5.059069, 45.791857 ], [ 5.060075, 45.78534 ], [ 5.059605, 45.782074 ], [ 5.069344, 45.76641 ], [ 5.088802, 45.76702 ], [ 5.09354, 45.766036 ], [ 5.091591, 45.762848 ], [ 5.089879, 45.75263 ], [ 5.094527, 45.739453 ], [ 5.130361, 45.7356 ], [ 5.133749, 45.73339 ], [ 5.142938, 45.72221 ], [ 5.155242, 45.717167 ], [ 5.159244, 45.71525 ], [ 5.156647, 45.70506 ], [ 5.155332, 45.701662 ], [ 5.152058, 45.70408 ], [ 5.143568, 45.70131 ], [ 5.130745, 45.705183 ], [ 5.104281, 45.698294 ], [ 5.107072, 45.68822 ], [ 5.091109, 45.680388 ], [ 5.089164, 45.6772 ], [ 5.079511, 45.67613 ], [ 5.054025, 45.66005 ], [ 5.056684, 45.655575 ], [ 5.058066, 45.65334 ], [ 5.038303, 45.64337 ], [ 5.036484, 45.629522 ], [ 5.044126, 45.620547 ], [ 5.040266, 45.618563 ], [ 5.033762, 45.61412 ], [ 5.002707, 45.622463 ], [ 4.989447, 45.618573 ], [ 4.99231, 45.61573 ], [ 5.001745, 45.61396 ], [ 4.998873, 45.60372 ], [ 4.998331, 45.603282 ], [ 4.993871, 45.604875 ], [ 4.971512, 45.6127 ], [ 4.932731, 45.607347 ], [ 4.929941, 45.606467 ], [ 4.927079, 45.60572 ], [ 4.912981, 45.60698 ], [ 4.891364, 45.60155 ], [ 4.887708, 45.601581 ], [ 4.882762, 45.60179 ], [ 4.876687, 45.596695 ], [ 4.867189, 45.595466 ], [ 4.859784, 45.590833 ], [ 4.857586, 45.57652 ], [ 4.848644, 45.579919 ], [ 4.84462, 45.581562 ], [ 4.828533, 45.58773 ], [ 4.810818, 45.589722 ], [ 4.806022, 45.589007 ], [ 4.777132, 45.58739 ], [ 4.778305, 45.583981 ], [ 4.808442, 45.57235 ], [ 4.814331, 45.56811 ], [ 4.81601, 45.56535 ], [ 4.819066, 45.560784 ], [ 4.820698, 45.55853 ], [ 4.832431, 45.546921 ], [ 4.83654, 45.54482 ], [ 4.863055, 45.53775 ], [ 4.87277, 45.53091 ], [ 4.871814, 45.527636 ], [ 4.864208, 45.51942 ], [ 4.861328, 45.516849 ], [ 4.848693, 45.50637 ], [ 4.845381, 45.503844 ], [ 4.841456, 45.500603 ], [ 4.837207, 45.49916 ], [ 4.824478, 45.49494 ], [ 4.8136, 45.48419 ], [ 4.801278, 45.47935 ], [ 4.799126, 45.478502 ], [ 4.794931, 45.477065 ], [ 4.779996, 45.46965 ], [ 4.780067, 45.466664 ], [ 4.781318, 45.457782 ], [ 4.779476, 45.45504 ], [ 4.775918, 45.45421 ], [ 4.772288, 45.45556 ], [ 4.756936, 45.455707 ], [ 4.754109, 45.458183 ], [ 4.737785, 45.47272 ], [ 4.742368, 45.47397 ], [ 4.738429, 45.487168 ], [ 4.721828, 45.494395 ], [ 4.718576, 45.491941 ], [ 4.699815, 45.47813 ], [ 4.681929, 45.479806 ], [ 4.677448, 45.48065 ], [ 4.670697, 45.476281 ], [ 4.668818, 45.48234 ], [ 4.662186, 45.48661 ], [ 4.65775, 45.48559 ], [ 4.650603, 45.49711 ], [ 4.654295, 45.499392 ], [ 4.650706, 45.52987 ], [ 4.664346, 45.539458 ], [ 4.665332, 45.542839 ], [ 4.666491, 45.543047 ], [ 4.668371, 45.545874 ], [ 4.685176, 45.554756 ], [ 4.688126, 45.55776 ], [ 4.676305, 45.56877 ], [ 4.658587, 45.56377 ], [ 4.649274, 45.56491 ], [ 4.648858, 45.5617 ], [ 4.646599, 45.55558 ], [ 4.659832, 45.543227 ], [ 4.652094, 45.54209 ], [ 4.644591, 45.54016 ], [ 4.642481, 45.543365 ], [ 4.635566, 45.548374 ], [ 4.625701, 45.56825 ], [ 4.614858, 45.57548 ], [ 4.610735, 45.57391 ], [ 4.602862, 45.57041 ], [ 4.58711, 45.57072 ], [ 4.583861, 45.57323 ], [ 4.5706, 45.582256 ], [ 4.566766, 45.58368 ], [ 4.555531, 45.579142 ], [ 4.547261, 45.58016 ], [ 4.542608, 45.57977 ], [ 4.521878, 45.572641 ], [ 4.514431, 45.57652 ], [ 4.50522, 45.576882 ], [ 4.504569, 45.58362 ], [ 4.500541, 45.585473 ], [ 4.467814, 45.58575 ], [ 4.46818, 45.58844 ], [ 4.474517, 45.59471 ], [ 4.472496, 45.597345 ], [ 4.460841, 45.601 ], [ 4.450037, 45.607355 ], [ 4.441489, 45.62305 ], [ 4.437475, 45.624196 ], [ 4.422444, 45.629664 ], [ 4.418074, 45.629449 ], [ 4.410284, 45.632051 ], [ 4.40886, 45.63712 ], [ 4.404997, 45.639196 ], [ 4.39261, 45.653616 ], [ 4.395888, 45.65524 ], [ 4.392551, 45.66248 ], [ 4.387908, 45.663797 ], [ 4.36592, 45.671153 ], [ 4.368732, 45.6737 ], [ 4.365891, 45.682997 ], [ 4.373447, 45.69078 ], [ 4.36994, 45.692918 ], [ 4.365516, 45.69852 ], [ 4.369701, 45.700396 ], [ 4.375139, 45.71338 ], [ 4.384784, 45.72119 ], [ 4.391247, 45.737877 ], [ 4.402925, 45.74392 ], [ 4.401178, 45.74657 ], [ 4.390677, 45.755077 ], [ 4.385803, 45.75466 ], [ 4.373271, 45.749445 ], [ 4.359161, 45.751102 ], [ 4.360331, 45.754213 ], [ 4.349101, 45.77117 ], [ 4.358288, 45.778915 ], [ 4.37645, 45.784107 ], [ 4.37399, 45.801141 ], [ 4.375618, 45.80445 ], [ 4.383692, 45.804995 ], [ 4.38784, 45.803007 ], [ 4.380282, 45.81745 ], [ 4.382465, 45.82027 ], [ 4.376035, 45.82482 ], [ 4.380569, 45.825315 ], [ 4.383698, 45.83399 ], [ 4.390601, 45.837476 ], [ 4.387014, 45.83982 ], [ 4.383083, 45.845972 ], [ 4.390615, 45.85028 ], [ 4.39614, 45.85982 ], [ 4.394471, 45.865168 ], [ 4.389622, 45.864616 ], [ 4.361094, 45.86617 ], [ 4.342469, 45.876903 ], [ 4.340314, 45.880026 ], [ 4.336936, 45.89016 ], [ 4.326224, 45.89737 ], [ 4.323221, 45.90389 ], [ 4.327391, 45.905639 ], [ 4.346215, 45.915765 ], [ 4.341656, 45.91666 ], [ 4.337581, 45.918335 ], [ 4.34602, 45.929943 ], [ 4.33654, 45.93183 ], [ 4.32205, 45.941123 ], [ 4.312396, 45.942289 ], [ 4.293912, 45.9534 ], [ 4.300575, 45.958322 ], [ 4.288823, 45.973172 ], [ 4.275742, 45.9778 ], [ 4.272447, 45.979968 ], [ 4.258975, 45.98117 ], [ 4.248043, 45.986724 ], [ 4.246046, 45.99612 ], [ 4.251152, 45.9956 ], [ 4.26467, 45.998517 ], [ 4.269628, 45.992716 ], [ 4.274439, 45.992365 ], [ 4.289001, 45.995658 ], [ 4.300096, 45.988894 ], [ 4.301162, 45.99192 ], [ 4.312008, 46.00513 ], [ 4.310332, 46.008013 ], [ 4.30825, 46.011252 ], [ 4.305846, 46.02159 ], [ 4.305067, 46.021475 ], [ 4.300616, 46.02077 ], [ 4.287736, 46.018359 ], [ 4.28002, 46.02177 ], [ 4.275984, 46.023896 ], [ 4.26982, 46.033529 ], [ 4.260555, 46.03605 ], [ 4.260961, 46.039113 ], [ 4.251078, 46.04918 ], [ 4.253426, 46.05179 ], [ 4.257097, 46.05392 ], [ 4.266223, 46.051978 ], [ 4.285097, 46.05368 ], [ 4.297331, 46.063451 ], [ 4.300045, 46.06605 ], [ 4.301426, 46.078463 ], [ 4.304989, 46.079196 ], [ 4.310407, 46.08172 ], [ 4.310007, 46.085029 ], [ 4.311328, 46.09485 ], [ 4.305996, 46.100331 ], [ 4.309295, 46.110002 ], [ 4.312806, 46.112249 ], [ 4.319714, 46.11682 ], [ 4.322116, 46.12998 ], [ 4.329682, 46.13323 ], [ 4.332742, 46.135505 ], [ 4.356622, 46.138275 ], [ 4.361588, 46.138459 ], [ 4.377187, 46.149808 ], [ 4.381809, 46.14966 ], [ 4.385438, 46.147645 ], [ 4.408245, 46.137061 ], [ 4.417362, 46.13592 ], [ 4.417098, 46.13926 ], [ 4.438591, 46.167879 ], [ 4.435171, 46.169958 ], [ 4.414315, 46.18007 ], [ 4.410541, 46.18153 ], [ 4.406358, 46.18224 ], [ 4.402903, 46.18454 ], [ 4.395468, 46.1925 ], [ 4.401312, 46.19688 ], [ 4.422965, 46.203137 ], [ 4.421756, 46.20702 ], [ 4.419863, 46.210066 ], [ 4.406746, 46.21962 ], [ 4.38808, 46.21979 ], [ 4.386217, 46.225674 ], [ 4.385568, 46.246162 ], [ 4.388286, 46.24791 ], [ 4.396835, 46.266523 ], [ 4.396451, 46.271841 ], [ 4.396364, 46.274544 ], [ 4.398757, 46.284322 ], [ 4.407092, 46.292739 ], [ 4.405814, 46.296061 ], [ 4.410616, 46.29534 ], [ 4.424387, 46.2963 ], [ 4.427039, 46.30283 ], [ 4.437717, 46.296284 ], [ 4.439452, 46.29306 ], [ 4.453248, 46.29644 ], [ 4.462188, 46.29402 ], [ 4.475428, 46.2844 ], [ 4.483775, 46.287065 ], [ 4.488465, 46.28799 ], [ 4.501484, 46.270072 ], [ 4.504001, 46.267139 ], [ 4.542343, 46.27197 ], [ 4.54645, 46.27392 ], [ 4.54809, 46.28323 ], [ 4.555437, 46.29126 ], [ 4.557841, 46.293993 ], [ 4.570273, 46.293029 ], [ 4.572161, 46.28998 ], [ 4.572725, 46.277045 ], [ 4.582672, 46.270215 ], [ 4.586527, 46.26836 ], [ 4.614456, 46.2664 ], [ 4.618565, 46.264793 ], [ 4.620162, 46.277956 ], [ 4.617019, 46.28062 ], [ 4.635777, 46.291918 ], [ 4.638725, 46.30142 ], [ 4.653189, 46.303177 ], [ 4.664478, 46.29662 ], [ 4.679741, 46.304518 ], [ 4.693436, 46.30232 ], [ 4.69295, 46.297099 ], [ 4.693884, 46.29454 ], [ 4.703249, 46.284841 ], [ 4.70748, 46.2847 ], [ 4.710054, 46.278947 ], [ 4.707417, 46.269764 ], [ 4.700696, 46.267477 ], [ 4.694068, 46.271512 ], [ 4.68457, 46.26593 ], [ 4.680571, 46.267218 ], [ 4.681228, 46.257301 ], [ 4.690873, 46.24965 ], [ 4.705377, 46.250961 ], [ 4.708899, 46.248584 ], [ 4.720694, 46.24426 ], [ 4.736181, 46.233202 ], [ 4.733016, 46.22751 ], [ 4.720018, 46.2285 ], [ 4.731773, 46.21322 ], [ 4.735682, 46.2117 ], [ 4.721501, 46.20013 ], [ 4.721489, 46.19684 ], [ 4.720362, 46.193577 ], [ 4.724376, 46.18431 ], [ 4.733118, 46.177792 ], [ 4.75959, 46.173603 ], [ 4.763197, 46.1757 ], [ 4.771584, 46.17564 ], [ 4.775494, 46.177093 ], [ 4.780213, 46.176677 ], [ 4.782319, 46.171636 ], [ 4.784274, 46.16837 ], [ 4.791741, 46.16361 ], [ 4.799993, 46.15949 ], [ 4.80255, 46.156437 ], [ 4.802787, 46.153407 ], [ 4.795944, 46.139158 ], [ 4.793172, 46.136382 ], [ 4.787486, 46.13089 ], [ 4.784254, 46.1283 ], [ 4.772069, 46.117627 ], [ 4.771191, 46.1117 ], [ 4.767114, 46.106527 ], [ 4.762596, 46.102544 ], [ 4.760178, 46.100645 ], [ 4.757137, 46.09827 ], [ 4.748023, 46.091357 ], [ 4.749615, 46.08242 ], [ 4.756261, 46.078971 ], [ 4.761062, 46.07046 ], [ 4.761755, 46.067438 ], [ 4.759083, 46.061202 ], [ 4.75632, 46.05855 ], [ 4.739617, 46.047487 ], [ 4.745657, 46.03524 ], [ 4.746774, 46.03255 ], [ 4.746389, 46.026946 ], [ 4.743942, 46.020309 ], [ 4.74889, 46.00719 ], [ 4.748988, 46.003757 ], [ 4.748491, 46.00278 ], [ 4.749567, 45.99637 ], [ 4.754611, 45.97381 ], [ 4.750169, 45.96449 ], [ 4.748462, 45.96241 ], [ 4.744998, 45.959882 ], [ 4.730275, 45.95041 ], [ 4.731896, 45.9408 ], [ 4.739899, 45.937875 ], [ 4.744455, 45.937427 ], [ 4.756784, 45.93463 ], [ 4.761121, 45.934998 ], [ 4.769154, 45.93832 ], [ 4.777994, 45.93784 ], [ 4.786921, 45.926478 ], [ 4.788994, 45.92355 ], [ 4.803178, 45.921968 ], [ 4.80776, 45.920805 ], [ 4.809782, 45.918314 ], [ 4.810675, 45.909752 ], [ 4.80955, 45.90653 ], [ 4.804099, 45.89807 ], [ 4.805177, 45.89633 ], [ 4.844452, 45.911557 ], [ 4.849116, 45.912868 ], [ 4.853105, 45.90716 ], [ 4.870683, 45.903127 ], [ 4.872016, 45.896782 ], [ 4.872087, 45.893538 ], [ 4.877315, 45.89668 ], [ 4.880699, 45.89717 ], [ 4.883222, 45.88343 ], [ 4.883827, 45.87999 ], [ 4.904376, 45.874524 ], [ 4.909017, 45.87411 ], [ 4.901239, 45.86059 ], [ 4.900569, 45.8576 ], [ 4.91595, 45.845415 ], [ 4.918781, 45.83565 ], [ 4.921116, 45.83274 ], [ 4.919766, 45.82949 ], [ 4.918589, 45.809357 ], [ 4.924522, 45.804041 ], [ 4.946837, 45.809405 ], [ 4.951516, 45.808766 ], [ 4.966931, 45.80904 ], [ 4.970375, 45.80738 ], [ 4.98034, 45.80584 ], [ 4.992917, 45.8078 ], [ 4.996959, 45.809142 ], [ 5.001206, 45.81012 ], [ 5.012298, 45.80523 ], [ 5.016691, 45.80561 ], [ 5.020714, 45.80713 ], [ 5.037812, 45.80835 ], [ 5.045296, 45.81182 ], [ 5.054278, 45.811582 ], [ 5.058158, 45.809926 ], [ 5.087546, 45.8118 ], [ 5.092558, 45.811834 ], [ 5.096801, 45.81264 ], [ 5.101067, 45.81338 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "71", "CODE_DEPT": "70", "NOM_DEPT": "HAUTE-SAONE", "CODE_CHF": "550", "NOM_CHF": "VESOUL", "X_CHF_LIEU": "9369", "Y_CHF_LIEU": "67293", "X_CENTROID": "9316", "Y_CENTROID": "67312", "CODE_REG": "43", "NOM_REGION": "FRANCHE-COMTE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.698726, 47.265006 ], [ 5.697562, 47.267915 ], [ 5.691668, 47.272295 ], [ 5.684065, 47.271642 ], [ 5.683462, 47.274152 ], [ 5.676645, 47.275723 ], [ 5.672097, 47.27422 ], [ 5.66334, 47.26604 ], [ 5.653365, 47.265008 ], [ 5.652677, 47.262339 ], [ 5.646765, 47.258898 ], [ 5.642305, 47.25619 ], [ 5.637434, 47.25615 ], [ 5.62332, 47.25403 ], [ 5.610811, 47.25906 ], [ 5.60132, 47.26061 ], [ 5.583791, 47.25515 ], [ 5.580744, 47.25286 ], [ 5.573451, 47.25555 ], [ 5.573459, 47.261512 ], [ 5.56976, 47.263576 ], [ 5.568857, 47.26959 ], [ 5.555199, 47.269005 ], [ 5.55606, 47.279047 ], [ 5.533517, 47.28627 ], [ 5.522116, 47.305352 ], [ 5.518539, 47.304187 ], [ 5.513097, 47.30816 ], [ 5.509108, 47.30809 ], [ 5.498495, 47.314221 ], [ 5.47918, 47.31496 ], [ 5.47167, 47.318119 ], [ 5.47373, 47.324317 ], [ 5.477101, 47.326749 ], [ 5.48901, 47.32903 ], [ 5.494704, 47.338099 ], [ 5.490065, 47.354347 ], [ 5.488824, 47.35586 ], [ 5.489222, 47.36987 ], [ 5.491894, 47.372889 ], [ 5.496919, 47.38855 ], [ 5.477992, 47.39423 ], [ 5.451393, 47.38397 ], [ 5.449094, 47.38675 ], [ 5.433256, 47.392522 ], [ 5.433672, 47.39584 ], [ 5.442459, 47.40705 ], [ 5.430425, 47.42136 ], [ 5.43846, 47.44423 ], [ 5.441022, 47.44656 ], [ 5.435629, 47.45029 ], [ 5.431819, 47.44826 ], [ 5.418162, 47.450702 ], [ 5.413959, 47.459966 ], [ 5.409538, 47.46146 ], [ 5.379572, 47.45056 ], [ 5.380928, 47.45358 ], [ 5.381551, 47.459229 ], [ 5.370722, 47.464475 ], [ 5.379534, 47.46614 ], [ 5.404108, 47.475102 ], [ 5.407642, 47.47719 ], [ 5.403346, 47.477351 ], [ 5.387298, 47.481194 ], [ 5.388163, 47.48362 ], [ 5.391142, 47.48816 ], [ 5.397351, 47.49625 ], [ 5.399216, 47.499014 ], [ 5.427781, 47.49652 ], [ 5.43203, 47.491777 ], [ 5.436433, 47.49042 ], [ 5.44311, 47.494932 ], [ 5.44746, 47.4962 ], [ 5.451419, 47.504303 ], [ 5.453722, 47.5067 ], [ 5.469344, 47.52437 ], [ 5.471747, 47.52746 ], [ 5.486404, 47.52697 ], [ 5.487817, 47.52991 ], [ 5.49664, 47.54713 ], [ 5.496668, 47.55059 ], [ 5.491292, 47.563383 ], [ 5.48238, 47.56545 ], [ 5.486492, 47.57861 ], [ 5.478564, 47.60539 ], [ 5.471052, 47.60822 ], [ 5.468523, 47.611129 ], [ 5.440171, 47.629771 ], [ 5.425595, 47.63207 ], [ 5.422559, 47.629463 ], [ 5.399805, 47.59716 ], [ 5.396263, 47.595966 ], [ 5.389121, 47.595238 ], [ 5.378175, 47.603549 ], [ 5.374079, 47.604542 ], [ 5.37492, 47.621355 ], [ 5.387812, 47.636212 ], [ 5.4032, 47.64509 ], [ 5.405616, 47.64813 ], [ 5.401686, 47.64844 ], [ 5.398975, 47.653075 ], [ 5.406486, 47.67362 ], [ 5.421267, 47.67644 ], [ 5.434217, 47.67126 ], [ 5.444413, 47.67089 ], [ 5.46934, 47.67483 ], [ 5.478994, 47.6823 ], [ 5.48277, 47.684644 ], [ 5.502301, 47.67741 ], [ 5.506626, 47.67666 ], [ 5.510298, 47.67423 ], [ 5.530594, 47.67401 ], [ 5.565433, 47.7039 ], [ 5.567389, 47.70712 ], [ 5.571029, 47.706798 ], [ 5.575159, 47.70473 ], [ 5.583657, 47.70088 ], [ 5.585265, 47.69057 ], [ 5.596814, 47.671647 ], [ 5.60234, 47.67506 ], [ 5.606094, 47.675205 ], [ 5.61539, 47.67334 ], [ 5.629558, 47.67674 ], [ 5.648861, 47.675549 ], [ 5.653261, 47.677161 ], [ 5.659334, 47.681543 ], [ 5.659723, 47.68453 ], [ 5.663716, 47.684911 ], [ 5.667652, 47.685479 ], [ 5.675428, 47.682563 ], [ 5.692038, 47.687162 ], [ 5.693806, 47.69022 ], [ 5.694993, 47.69364 ], [ 5.69322, 47.70396 ], [ 5.684206, 47.71228 ], [ 5.687023, 47.72023 ], [ 5.685198, 47.722694 ], [ 5.692512, 47.724 ], [ 5.695895, 47.72518 ], [ 5.692494, 47.727885 ], [ 5.689648, 47.7339 ], [ 5.692378, 47.73693 ], [ 5.70942, 47.74495 ], [ 5.706342, 47.751116 ], [ 5.707806, 47.76152 ], [ 5.708914, 47.764664 ], [ 5.703353, 47.769574 ], [ 5.67997, 47.769968 ], [ 5.682247, 47.77539 ], [ 5.680107, 47.77774 ], [ 5.676612, 47.77916 ], [ 5.685751, 47.81278 ], [ 5.693678, 47.82175 ], [ 5.708478, 47.82197 ], [ 5.713646, 47.82157 ], [ 5.718716, 47.821082 ], [ 5.728007, 47.81845 ], [ 5.731428, 47.81763 ], [ 5.743349, 47.82115 ], [ 5.746056, 47.823596 ], [ 5.748488, 47.82977 ], [ 5.744204, 47.848855 ], [ 5.753406, 47.85165 ], [ 5.758832, 47.85667 ], [ 5.761192, 47.859343 ], [ 5.789061, 47.8552 ], [ 5.798883, 47.85571 ], [ 5.796619, 47.84982 ], [ 5.801098, 47.84698 ], [ 5.805625, 47.84732 ], [ 5.823562, 47.85229 ], [ 5.828521, 47.85195 ], [ 5.827301, 47.85467 ], [ 5.824676, 47.8594 ], [ 5.82186, 47.86911 ], [ 5.842544, 47.89423 ], [ 5.845094, 47.89709 ], [ 5.848194, 47.903435 ], [ 5.851353, 47.9059 ], [ 5.883191, 47.90026 ], [ 5.886494, 47.90263 ], [ 5.889189, 47.90737 ], [ 5.890458, 47.909759 ], [ 5.888909, 47.91304 ], [ 5.884726, 47.92605 ], [ 5.896863, 47.931638 ], [ 5.89341, 47.93786 ], [ 5.902823, 47.94554 ], [ 5.907548, 47.94665 ], [ 5.912835, 47.94675 ], [ 5.918043, 47.94736 ], [ 5.919171, 47.967864 ], [ 5.92133, 47.971026 ], [ 5.92739, 47.9744 ], [ 5.943047, 47.979813 ], [ 5.947534, 47.97971 ], [ 5.950301, 47.97351 ], [ 5.957968, 47.96959 ], [ 5.959703, 47.96655 ], [ 5.941548, 47.95232 ], [ 5.937566, 47.950629 ], [ 5.932628, 47.937928 ], [ 5.942523, 47.93631 ], [ 5.947635, 47.93618 ], [ 5.956055, 47.938664 ], [ 5.964594, 47.946113 ], [ 5.968902, 47.947409 ], [ 5.970446, 47.953917 ], [ 5.970778, 47.957205 ], [ 6.002262, 47.95609 ], [ 6.008771, 47.961399 ], [ 6.009432, 47.96785 ], [ 6.023004, 47.97797 ], [ 6.022306, 47.98761 ], [ 6.036864, 48.00145 ], [ 6.068036, 48.01351 ], [ 6.072221, 48.01555 ], [ 6.080853, 48.0128 ], [ 6.085549, 48.01345 ], [ 6.104598, 48.01351 ], [ 6.109235, 48.01247 ], [ 6.114302, 48.01807 ], [ 6.127381, 48.022228 ], [ 6.131397, 48.02408 ], [ 6.152409, 48.009447 ], [ 6.156058, 48.006944 ], [ 6.152863, 47.996114 ], [ 6.159124, 47.99129 ], [ 6.163943, 47.97561 ], [ 6.161293, 47.97279 ], [ 6.149584, 47.9685 ], [ 6.155256, 47.96443 ], [ 6.16079, 47.9612 ], [ 6.161247, 47.958296 ], [ 6.171045, 47.95264 ], [ 6.179247, 47.95459 ], [ 6.182056, 47.95693 ], [ 6.207056, 47.945733 ], [ 6.208138, 47.942344 ], [ 6.204514, 47.932292 ], [ 6.209344, 47.93105 ], [ 6.214423, 47.930382 ], [ 6.219609, 47.93566 ], [ 6.233409, 47.933599 ], [ 6.237987, 47.93284 ], [ 6.24611, 47.93943 ], [ 6.250767, 47.93908 ], [ 6.259912, 47.94437 ], [ 6.262957, 47.94614 ], [ 6.274023, 47.951659 ], [ 6.277334, 47.95381 ], [ 6.292827, 47.955646 ], [ 6.306804, 47.95078 ], [ 6.322461, 47.95008 ], [ 6.360997, 47.96025 ], [ 6.364993, 47.962572 ], [ 6.378691, 47.95866 ], [ 6.388353, 47.960018 ], [ 6.404507, 47.952832 ], [ 6.407328, 47.94644 ], [ 6.40842, 47.9432 ], [ 6.431921, 47.94381 ], [ 6.448609, 47.922719 ], [ 6.460947, 47.91751 ], [ 6.457047, 47.90783 ], [ 6.475807, 47.888451 ], [ 6.478262, 47.88544 ], [ 6.503444, 47.89625 ], [ 6.537052, 47.90226 ], [ 6.542014, 47.902534 ], [ 6.555909, 47.91996 ], [ 6.558255, 47.92297 ], [ 6.568708, 47.934499 ], [ 6.596358, 47.94331 ], [ 6.601244, 47.944379 ], [ 6.605983, 47.944468 ], [ 6.610445, 47.93891 ], [ 6.612502, 47.93604 ], [ 6.629286, 47.928183 ], [ 6.640878, 47.91702 ], [ 6.639864, 47.91005 ], [ 6.645203, 47.904085 ], [ 6.669324, 47.89329 ], [ 6.683084, 47.89042 ], [ 6.686832, 47.88826 ], [ 6.689377, 47.8873 ], [ 6.691325, 47.88584 ], [ 6.699113, 47.88228 ], [ 6.703674, 47.881424 ], [ 6.710113, 47.87582 ], [ 6.730734, 47.866448 ], [ 6.735247, 47.864926 ], [ 6.737294, 47.86547 ], [ 6.738164, 47.86205 ], [ 6.784952, 47.84957 ], [ 6.790661, 47.844226 ], [ 6.791102, 47.83783 ], [ 6.788987, 47.83483 ], [ 6.791946, 47.83016 ], [ 6.820459, 47.8158 ], [ 6.823539, 47.81305 ], [ 6.824672, 47.809647 ], [ 6.807186, 47.79243 ], [ 6.786246, 47.78229 ], [ 6.774581, 47.76673 ], [ 6.771134, 47.764492 ], [ 6.757638, 47.74788 ], [ 6.758938, 47.74206 ], [ 6.759587, 47.739156 ], [ 6.760447, 47.735813 ], [ 6.759074, 47.72281 ], [ 6.771583, 47.71257 ], [ 6.770079, 47.7034 ], [ 6.779242, 47.69294 ], [ 6.780151, 47.689771 ], [ 6.778645, 47.67587 ], [ 6.777237, 47.665986 ], [ 6.784508, 47.65434 ], [ 6.787491, 47.65166 ], [ 6.790704, 47.64789 ], [ 6.798335, 47.644 ], [ 6.799868, 47.63763 ], [ 6.792461, 47.63003 ], [ 6.791077, 47.62688 ], [ 6.780405, 47.625261 ], [ 6.778741, 47.622098 ], [ 6.777868, 47.615412 ], [ 6.785643, 47.61136 ], [ 6.788234, 47.60487 ], [ 6.789341, 47.60469 ], [ 6.793286, 47.59928 ], [ 6.791302, 47.59629 ], [ 6.802327, 47.58966 ], [ 6.804107, 47.583046 ], [ 6.816938, 47.578076 ], [ 6.820109, 47.57549 ], [ 6.821011, 47.57433 ], [ 6.821724, 47.573314 ], [ 6.817753, 47.571786 ], [ 6.809823, 47.5687 ], [ 6.807005, 47.5628 ], [ 6.801329, 47.56181 ], [ 6.799531, 47.555241 ], [ 6.781102, 47.53637 ], [ 6.777111, 47.536955 ], [ 6.7693, 47.53771 ], [ 6.765616, 47.53907 ], [ 6.758113, 47.54157 ], [ 6.753726, 47.54296 ], [ 6.748853, 47.54863 ], [ 6.744932, 47.55079 ], [ 6.740108, 47.556802 ], [ 6.725942, 47.560401 ], [ 6.722269, 47.559455 ], [ 6.720623, 47.557237 ], [ 6.71951, 47.55253 ], [ 6.714589, 47.553158 ], [ 6.707803, 47.558 ], [ 6.685248, 47.56315 ], [ 6.686969, 47.5684 ], [ 6.688866, 47.57081 ], [ 6.665164, 47.57255 ], [ 6.659797, 47.57991 ], [ 6.653689, 47.571221 ], [ 6.667054, 47.560701 ], [ 6.670176, 47.5579 ], [ 6.667733, 47.55488 ], [ 6.659006, 47.54661 ], [ 6.654297, 47.54178 ], [ 6.651061, 47.53902 ], [ 6.648122, 47.53612 ], [ 6.644428, 47.534053 ], [ 6.627005, 47.529848 ], [ 6.617904, 47.531023 ], [ 6.613339, 47.530804 ], [ 6.605545, 47.533794 ], [ 6.606403, 47.53685 ], [ 6.602113, 47.538351 ], [ 6.594465, 47.54235 ], [ 6.58045, 47.54411 ], [ 6.581312, 47.54088 ], [ 6.569138, 47.53135 ], [ 6.5814, 47.529294 ], [ 6.579606, 47.52594 ], [ 6.57902, 47.522753 ], [ 6.583668, 47.51035 ], [ 6.576228, 47.49833 ], [ 6.573512, 47.495494 ], [ 6.568577, 47.49626 ], [ 6.558532, 47.496358 ], [ 6.553836, 47.490311 ], [ 6.552118, 47.49326 ], [ 6.532903, 47.506293 ], [ 6.531543, 47.50341 ], [ 6.522414, 47.49726 ], [ 6.517722, 47.49667 ], [ 6.506233, 47.502125 ], [ 6.500569, 47.51025 ], [ 6.497259, 47.507838 ], [ 6.475829, 47.49525 ], [ 6.475733, 47.488659 ], [ 6.471519, 47.48702 ], [ 6.46359, 47.5097 ], [ 6.460669, 47.512445 ], [ 6.45632, 47.514087 ], [ 6.428573, 47.51692 ], [ 6.420592, 47.5196 ], [ 6.416725, 47.521112 ], [ 6.414662, 47.51943 ], [ 6.411148, 47.5219 ], [ 6.396998, 47.518373 ], [ 6.389787, 47.506159 ], [ 6.38645, 47.508274 ], [ 6.378694, 47.511364 ], [ 6.374837, 47.51115 ], [ 6.368083, 47.51349 ], [ 6.363965, 47.512097 ], [ 6.348676, 47.50556 ], [ 6.343925, 47.505511 ], [ 6.334475, 47.506 ], [ 6.331564, 47.50345 ], [ 6.331201, 47.500389 ], [ 6.320565, 47.48775 ], [ 6.311626, 47.48829 ], [ 6.307378, 47.49032 ], [ 6.302508, 47.49153 ], [ 6.299164, 47.48322 ], [ 6.299621, 47.479855 ], [ 6.301729, 47.469857 ], [ 6.294221, 47.465962 ], [ 6.292276, 47.46285 ], [ 6.282863, 47.451489 ], [ 6.285731, 47.449309 ], [ 6.289211, 47.44758 ], [ 6.284914, 47.445512 ], [ 6.280184, 47.44397 ], [ 6.263406, 47.446072 ], [ 6.261907, 47.43738 ], [ 6.261047, 47.43438 ], [ 6.260835, 47.42849 ], [ 6.250552, 47.424665 ], [ 6.246193, 47.426129 ], [ 6.234959, 47.43114 ], [ 6.233076, 47.4281 ], [ 6.243715, 47.413702 ], [ 6.241571, 47.41074 ], [ 6.232706, 47.413838 ], [ 6.229907, 47.41651 ], [ 6.22465, 47.422 ], [ 6.211616, 47.4258 ], [ 6.207986, 47.4288 ], [ 6.206369, 47.431288 ], [ 6.20225, 47.429906 ], [ 6.198717, 47.41788 ], [ 6.194119, 47.417787 ], [ 6.186566, 47.41421 ], [ 6.177539, 47.4162 ], [ 6.170568, 47.41235 ], [ 6.170974, 47.40934 ], [ 6.177865, 47.40671 ], [ 6.185315, 47.40523 ], [ 6.189249, 47.40556 ], [ 6.189034, 47.402386 ], [ 6.179743, 47.40191 ], [ 6.172705, 47.39778 ], [ 6.171557, 47.39453 ], [ 6.160353, 47.388358 ], [ 6.155959, 47.389874 ], [ 6.152249, 47.38612 ], [ 6.147528, 47.38592 ], [ 6.130007, 47.388017 ], [ 6.126305, 47.393909 ], [ 6.117785, 47.39662 ], [ 6.118479, 47.39348 ], [ 6.106828, 47.38361 ], [ 6.111808, 47.37867 ], [ 6.106643, 47.37699 ], [ 6.110691, 47.37543 ], [ 6.119702, 47.36846 ], [ 6.11706, 47.36612 ], [ 6.111452, 47.36204 ], [ 6.103077, 47.36121 ], [ 6.102487, 47.361322 ], [ 6.103184, 47.364655 ], [ 6.100892, 47.37088 ], [ 6.082016, 47.37171 ], [ 6.082373, 47.360849 ], [ 6.081865, 47.357556 ], [ 6.071943, 47.35051 ], [ 6.057539, 47.349676 ], [ 6.054942, 47.35133 ], [ 6.052159, 47.352277 ], [ 6.051001, 47.348938 ], [ 6.048023, 47.34644 ], [ 6.038896, 47.344913 ], [ 6.030475, 47.33757 ], [ 6.027015, 47.33495 ], [ 6.023555, 47.33235 ], [ 6.010495, 47.333167 ], [ 6.008152, 47.335813 ], [ 5.996651, 47.33987 ], [ 5.992056, 47.328536 ], [ 5.988164, 47.32717 ], [ 5.987159, 47.329824 ], [ 5.983149, 47.329441 ], [ 5.978633, 47.328043 ], [ 5.964007, 47.337201 ], [ 5.96356, 47.33727 ], [ 5.960306, 47.33929 ], [ 5.942949, 47.341304 ], [ 5.941769, 47.3442 ], [ 5.938583, 47.34241 ], [ 5.926704, 47.34476 ], [ 5.924679, 47.341648 ], [ 5.930662, 47.328913 ], [ 5.926441, 47.32707 ], [ 5.921675, 47.32762 ], [ 5.904306, 47.333025 ], [ 5.896712, 47.32907 ], [ 5.896168, 47.32612 ], [ 5.902059, 47.315002 ], [ 5.894814, 47.31183 ], [ 5.882704, 47.32163 ], [ 5.878955, 47.319649 ], [ 5.873147, 47.3146 ], [ 5.863882, 47.31598 ], [ 5.853064, 47.31083 ], [ 5.852381, 47.30794 ], [ 5.845068, 47.300892 ], [ 5.840561, 47.299813 ], [ 5.83122, 47.29871 ], [ 5.827125, 47.29789 ], [ 5.815037, 47.29514 ], [ 5.810675, 47.294785 ], [ 5.795302, 47.2897 ], [ 5.790403, 47.289932 ], [ 5.78254, 47.28869 ], [ 5.774967, 47.280222 ], [ 5.757453, 47.27633 ], [ 5.75426, 47.27291 ], [ 5.749752, 47.27249 ], [ 5.741824, 47.264968 ], [ 5.735196, 47.26344 ], [ 5.731034, 47.2646 ], [ 5.71138, 47.27057 ], [ 5.707877, 47.26803 ], [ 5.698726, 47.265006 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "72", "CODE_DEPT": "71", "NOM_DEPT": "SAONE-ET-LOIRE", "CODE_CHF": "270", "NOM_CHF": "MACON", "X_CHF_LIEU": "8409", "Y_CHF_LIEU": "65800", "X_CENTROID": "8179", "Y_CENTROID": "66172", "CODE_REG": "26", "NOM_REGION": "BOURGOGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.38808, 46.21979 ], [ 4.388416, 46.21308 ], [ 4.374769, 46.20951 ], [ 4.363353, 46.19856 ], [ 4.373498, 46.187246 ], [ 4.370806, 46.184333 ], [ 4.36632, 46.185423 ], [ 4.358511, 46.18268 ], [ 4.346643, 46.18726 ], [ 4.334903, 46.181744 ], [ 4.326643, 46.184894 ], [ 4.326397, 46.18171 ], [ 4.31641, 46.171305 ], [ 4.311831, 46.1712 ], [ 4.309176, 46.17292 ], [ 4.30287, 46.174325 ], [ 4.298212, 46.17305 ], [ 4.290281, 46.16932 ], [ 4.282432, 46.156816 ], [ 4.277541, 46.15661 ], [ 4.253192, 46.157817 ], [ 4.24866, 46.16711 ], [ 4.253409, 46.167343 ], [ 4.261911, 46.17517 ], [ 4.258146, 46.184546 ], [ 4.255016, 46.18713 ], [ 4.240916, 46.186897 ], [ 4.232491, 46.17955 ], [ 4.226578, 46.17837 ], [ 4.224993, 46.17763 ], [ 4.223365, 46.180189 ], [ 4.219558, 46.1851 ], [ 4.215845, 46.18722 ], [ 4.206215, 46.19449 ], [ 4.189229, 46.18864 ], [ 4.18493, 46.19012 ], [ 4.184851, 46.179868 ], [ 4.186752, 46.176633 ], [ 4.178133, 46.173687 ], [ 4.143322, 46.176 ], [ 4.138591, 46.176666 ], [ 4.133847, 46.177317 ], [ 4.133393, 46.177321 ], [ 4.132853, 46.180686 ], [ 4.103832, 46.19844 ], [ 4.099435, 46.197107 ], [ 4.082922, 46.19102 ], [ 4.078635, 46.190606 ], [ 4.067331, 46.186813 ], [ 4.059972, 46.188458 ], [ 4.056681, 46.185859 ], [ 4.050073, 46.180688 ], [ 4.046013, 46.179222 ], [ 4.031149, 46.17197 ], [ 4.027488, 46.16959 ], [ 4.018044, 46.17202 ], [ 3.988528, 46.169857 ], [ 3.985073, 46.172301 ], [ 3.980798, 46.18189 ], [ 3.971497, 46.189672 ], [ 3.97257, 46.19973 ], [ 3.965168, 46.20286 ], [ 3.960314, 46.203401 ], [ 3.936212, 46.2062 ], [ 3.917106, 46.203884 ], [ 3.909456, 46.20793 ], [ 3.905496, 46.20923 ], [ 3.890132, 46.214491 ], [ 3.897328, 46.22691 ], [ 3.897392, 46.237145 ], [ 3.907418, 46.24389 ], [ 3.90876, 46.260622 ], [ 3.906644, 46.263791 ], [ 3.903775, 46.274008 ], [ 3.899534, 46.275914 ], [ 3.892627, 46.284857 ], [ 3.901973, 46.293158 ], [ 3.931632, 46.29622 ], [ 3.947858, 46.30367 ], [ 3.947853, 46.30561 ], [ 3.947644, 46.319029 ], [ 3.971745, 46.320726 ], [ 3.985659, 46.3175 ], [ 4.005259, 46.32741 ], [ 3.994357, 46.327655 ], [ 3.985653, 46.328685 ], [ 3.987605, 46.34751 ], [ 3.98739, 46.350751 ], [ 3.988308, 46.35402 ], [ 3.991544, 46.370419 ], [ 3.98187, 46.38516 ], [ 3.98086, 46.388351 ], [ 3.977569, 46.397871 ], [ 3.987989, 46.40765 ], [ 3.984633, 46.416478 ], [ 3.984118, 46.41966 ], [ 3.991706, 46.42308 ], [ 3.995311, 46.4251 ], [ 3.995438, 46.42849 ], [ 3.989353, 46.436951 ], [ 4.002835, 46.44053 ], [ 3.997519, 46.45258 ], [ 4.001541, 46.45875 ], [ 4.000963, 46.462011 ], [ 3.97434, 46.47957 ], [ 3.965148, 46.477997 ], [ 3.960554, 46.47766 ], [ 3.952282, 46.478727 ], [ 3.957963, 46.49048 ], [ 3.953475, 46.49179 ], [ 3.934151, 46.490952 ], [ 3.916492, 46.496102 ], [ 3.911475, 46.495494 ], [ 3.90295, 46.491725 ], [ 3.898791, 46.48541 ], [ 3.897341, 46.482053 ], [ 3.887973, 46.48236 ], [ 3.865262, 46.489648 ], [ 3.860414, 46.49556 ], [ 3.863828, 46.51268 ], [ 3.855143, 46.51532 ], [ 3.845819, 46.51294 ], [ 3.845038, 46.513086 ], [ 3.840126, 46.518454 ], [ 3.846291, 46.524009 ], [ 3.837014, 46.53161 ], [ 3.811746, 46.52059 ], [ 3.807423, 46.51938 ], [ 3.794429, 46.527344 ], [ 3.780666, 46.528366 ], [ 3.777916, 46.53126 ], [ 3.770248, 46.538954 ], [ 3.755776, 46.53615 ], [ 3.741847, 46.539547 ], [ 3.732679, 46.547747 ], [ 3.73427, 46.554364 ], [ 3.737008, 46.55607 ], [ 3.741006, 46.56022 ], [ 3.743285, 46.566462 ], [ 3.740437, 46.57593 ], [ 3.740264, 46.578593 ], [ 3.739016, 46.58386 ], [ 3.737848, 46.58728 ], [ 3.734557, 46.60378 ], [ 3.719594, 46.60544 ], [ 3.713444, 46.61072 ], [ 3.723234, 46.622771 ], [ 3.716206, 46.630973 ], [ 3.712708, 46.63333 ], [ 3.704613, 46.6452 ], [ 3.703416, 46.64763 ], [ 3.699613, 46.65191 ], [ 3.699364, 46.654886 ], [ 3.698335, 46.65826 ], [ 3.692296, 46.6636 ], [ 3.670584, 46.67209 ], [ 3.671974, 46.68191 ], [ 3.655468, 46.68775 ], [ 3.654644, 46.69107 ], [ 3.651138, 46.704235 ], [ 3.637642, 46.70748 ], [ 3.637681, 46.724192 ], [ 3.622802, 46.7409 ], [ 3.628874, 46.74613 ], [ 3.629424, 46.749459 ], [ 3.634065, 46.74422 ], [ 3.644177, 46.740886 ], [ 3.647852, 46.74264 ], [ 3.661101, 46.73774 ], [ 3.699403, 46.74535 ], [ 3.703968, 46.74684 ], [ 3.738633, 46.75196 ], [ 3.779252, 46.73782 ], [ 3.783666, 46.73605 ], [ 3.77978, 46.729915 ], [ 3.789893, 46.718483 ], [ 3.794654, 46.70203 ], [ 3.822214, 46.705145 ], [ 3.826552, 46.70383 ], [ 3.837252, 46.710169 ], [ 3.844924, 46.72199 ], [ 3.853508, 46.724934 ], [ 3.875024, 46.72916 ], [ 3.876358, 46.73227 ], [ 3.884282, 46.72829 ], [ 3.889191, 46.728229 ], [ 3.895651, 46.73319 ], [ 3.928165, 46.74138 ], [ 3.933395, 46.750714 ], [ 3.952834, 46.75434 ], [ 3.96223, 46.762587 ], [ 3.963222, 46.76603 ], [ 3.966737, 46.765485 ], [ 3.968523, 46.768649 ], [ 3.999789, 46.777701 ], [ 4.018742, 46.777012 ], [ 4.038172, 46.78686 ], [ 4.043832, 46.781253 ], [ 4.046503, 46.778356 ], [ 4.056286, 46.779267 ], [ 4.062545, 46.788322 ], [ 4.061995, 46.79171 ], [ 4.060935, 46.795162 ], [ 4.058444, 46.81598 ], [ 4.058347, 46.81908 ], [ 4.04595, 46.83124 ], [ 4.043109, 46.8336 ], [ 4.048389, 46.83795 ], [ 4.052059, 46.840438 ], [ 4.100887, 46.859107 ], [ 4.100104, 46.86256 ], [ 4.095196, 46.872416 ], [ 4.074981, 46.89189 ], [ 4.07139, 46.894251 ], [ 4.05919, 46.89978 ], [ 4.044687, 46.901169 ], [ 4.043618, 46.90432 ], [ 4.037067, 46.91969 ], [ 4.036827, 46.92633 ], [ 4.045302, 46.934372 ], [ 4.045065, 46.937741 ], [ 4.039773, 46.946965 ], [ 4.051063, 46.9535 ], [ 4.053855, 46.95978 ], [ 4.037144, 46.98469 ], [ 4.027712, 46.982721 ], [ 4.008715, 46.97225 ], [ 3.995097, 46.976397 ], [ 3.995001, 46.983322 ], [ 3.995999, 46.986744 ], [ 4.000752, 46.98621 ], [ 4.033377, 46.999607 ], [ 4.036583, 47.002072 ], [ 4.041746, 47.007752 ], [ 4.054465, 47.01327 ], [ 4.060912, 47.022489 ], [ 4.058279, 47.03257 ], [ 4.058189, 47.03941 ], [ 4.071006, 47.05808 ], [ 4.051451, 47.07416 ], [ 4.042109, 47.07702 ], [ 4.038853, 47.07974 ], [ 4.040302, 47.08653 ], [ 4.052594, 47.096965 ], [ 4.048656, 47.110047 ], [ 4.054995, 47.11522 ], [ 4.058772, 47.117491 ], [ 4.065407, 47.12084 ], [ 4.089786, 47.11704 ], [ 4.094833, 47.122612 ], [ 4.092706, 47.125721 ], [ 4.097676, 47.12619 ], [ 4.108988, 47.11946 ], [ 4.113981, 47.119143 ], [ 4.115967, 47.123338 ], [ 4.118037, 47.126469 ], [ 4.126361, 47.13025 ], [ 4.130814, 47.12866 ], [ 4.137526, 47.119751 ], [ 4.150014, 47.11404 ], [ 4.160185, 47.12145 ], [ 4.167639, 47.11726 ], [ 4.172031, 47.11539 ], [ 4.187801, 47.137938 ], [ 4.188262, 47.14506 ], [ 4.181902, 47.150514 ], [ 4.186084, 47.152236 ], [ 4.194293, 47.148649 ], [ 4.205254, 47.15425 ], [ 4.209834, 47.155412 ], [ 4.21432, 47.15414 ], [ 4.219316, 47.14567 ], [ 4.237719, 47.146527 ], [ 4.241903, 47.14823 ], [ 4.239994, 47.14216 ], [ 4.247581, 47.13299 ], [ 4.25165, 47.13151 ], [ 4.252329, 47.128362 ], [ 4.259725, 47.11401 ], [ 4.263651, 47.11213 ], [ 4.281407, 47.107838 ], [ 4.298812, 47.112047 ], [ 4.300654, 47.109703 ], [ 4.302058, 47.10722 ], [ 4.309766, 47.10367 ], [ 4.338435, 47.10257 ], [ 4.346937, 47.09981 ], [ 4.349385, 47.096953 ], [ 4.34425, 47.07243 ], [ 4.357443, 47.062992 ], [ 4.36218, 47.06428 ], [ 4.370266, 47.07702 ], [ 4.377814, 47.08149 ], [ 4.397777, 47.08272 ], [ 4.411758, 47.07899 ], [ 4.416154, 47.07723 ], [ 4.407028, 47.06947 ], [ 4.403261, 47.05638 ], [ 4.406283, 47.05 ], [ 4.42728, 47.040413 ], [ 4.457438, 47.040154 ], [ 4.471598, 47.030492 ], [ 4.489643, 47.03201 ], [ 4.495195, 47.027515 ], [ 4.498842, 47.02558 ], [ 4.502063, 47.018763 ], [ 4.504946, 47.01682 ], [ 4.506723, 47.013524 ], [ 4.531749, 47.01249 ], [ 4.554809, 47.020055 ], [ 4.556762, 47.006971 ], [ 4.547687, 46.995323 ], [ 4.554726, 46.990645 ], [ 4.56426, 46.9922 ], [ 4.568085, 46.99113 ], [ 4.567488, 46.98282 ], [ 4.570956, 46.97538 ], [ 4.573661, 46.97339 ], [ 4.591862, 46.967769 ], [ 4.589702, 46.957839 ], [ 4.595184, 46.952387 ], [ 4.599187, 46.950342 ], [ 4.613027, 46.94919 ], [ 4.617528, 46.944025 ], [ 4.614328, 46.94167 ], [ 4.644807, 46.940812 ], [ 4.64986, 46.94136 ], [ 4.652319, 46.93879 ], [ 4.678435, 46.93043 ], [ 4.679344, 46.927129 ], [ 4.665587, 46.915352 ], [ 4.666216, 46.91233 ], [ 4.682495, 46.90333 ], [ 4.68522, 46.900954 ], [ 4.708482, 46.90489 ], [ 4.712712, 46.90651 ], [ 4.719844, 46.916734 ], [ 4.718761, 46.919884 ], [ 4.725702, 46.92156 ], [ 4.72813, 46.919375 ], [ 4.740913, 46.92205 ], [ 4.744315, 46.924435 ], [ 4.755666, 46.91735 ], [ 4.76581, 46.918461 ], [ 4.770888, 46.9178 ], [ 4.775264, 46.917775 ], [ 4.779335, 46.91888 ], [ 4.790831, 46.925487 ], [ 4.788806, 46.93223 ], [ 4.80871, 46.930629 ], [ 4.816165, 46.932989 ], [ 4.816575, 46.93581 ], [ 4.866477, 46.94661 ], [ 4.870766, 46.94817 ], [ 4.893082, 46.9515 ], [ 4.89099, 46.957489 ], [ 4.896423, 46.96613 ], [ 4.910146, 46.9673 ], [ 4.914754, 46.96776 ], [ 4.943033, 46.96501 ], [ 4.952096, 46.96498 ], [ 4.955229, 46.9632 ], [ 4.964474, 46.96457 ], [ 4.967366, 46.961966 ], [ 4.999744, 46.95886 ], [ 5.004412, 46.958113 ], [ 5.00565, 46.95921 ], [ 5.00125, 46.959744 ], [ 4.996557, 46.96409 ], [ 5.003646, 46.97185 ], [ 5.018517, 46.97229 ], [ 5.029188, 46.979646 ], [ 5.044374, 46.98069 ], [ 5.049304, 46.981587 ], [ 5.054491, 46.9775 ], [ 5.057018, 46.97541 ], [ 5.06575, 46.96978 ], [ 5.065934, 46.96701 ], [ 5.070824, 46.967242 ], [ 5.074772, 46.96111 ], [ 5.101101, 46.954464 ], [ 5.097533, 46.94488 ], [ 5.100742, 46.94658 ], [ 5.103195, 46.948796 ], [ 5.106005, 46.95712 ], [ 5.118261, 46.96037 ], [ 5.120174, 46.96319 ], [ 5.138312, 46.96242 ], [ 5.145926, 46.96533 ], [ 5.150454, 46.96637 ], [ 5.164631, 46.96423 ], [ 5.181662, 46.974827 ], [ 5.189358, 46.97283 ], [ 5.192864, 46.97135 ], [ 5.198601, 46.9804 ], [ 5.201518, 46.9832 ], [ 5.208954, 46.982234 ], [ 5.212199, 46.98014 ], [ 5.220619, 46.98618 ], [ 5.222072, 46.988854 ], [ 5.242026, 46.981542 ], [ 5.255236, 46.979888 ], [ 5.263045, 46.953605 ], [ 5.26227, 46.950171 ], [ 5.251317, 46.94458 ], [ 5.26267, 46.937733 ], [ 5.26267, 46.930815 ], [ 5.262014, 46.927387 ], [ 5.270919, 46.92936 ], [ 5.275311, 46.9353 ], [ 5.287444, 46.94079 ], [ 5.292306, 46.9407 ], [ 5.307367, 46.93646 ], [ 5.308512, 46.926925 ], [ 5.310031, 46.92125 ], [ 5.31075, 46.91807 ], [ 5.312069, 46.911703 ], [ 5.313989, 46.90866 ], [ 5.328806, 46.895927 ], [ 5.328758, 46.889316 ], [ 5.335521, 46.884666 ], [ 5.341274, 46.8901 ], [ 5.35077, 46.892129 ], [ 5.360337, 46.88434 ], [ 5.377783, 46.88999 ], [ 5.382801, 46.891741 ], [ 5.387129, 46.893039 ], [ 5.391603, 46.894072 ], [ 5.392627, 46.891384 ], [ 5.403681, 46.889389 ], [ 5.400587, 46.88273 ], [ 5.404005, 46.86888 ], [ 5.420118, 46.860579 ], [ 5.425168, 46.85986 ], [ 5.428179, 46.860238 ], [ 5.431176, 46.8606 ], [ 5.442352, 46.854479 ], [ 5.445188, 46.85941 ], [ 5.454209, 46.85592 ], [ 5.459286, 46.85524 ], [ 5.457796, 46.84527 ], [ 5.464207, 46.84017 ], [ 5.459748, 46.83418 ], [ 5.463195, 46.82858 ], [ 5.416653, 46.826782 ], [ 5.413464, 46.828263 ], [ 5.410217, 46.83258 ], [ 5.405169, 46.8324 ], [ 5.386981, 46.826825 ], [ 5.382143, 46.82784 ], [ 5.378666, 46.827574 ], [ 5.375268, 46.82699 ], [ 5.371185, 46.825152 ], [ 5.351119, 46.816088 ], [ 5.344929, 46.82101 ], [ 5.335836, 46.820732 ], [ 5.333584, 46.817814 ], [ 5.328584, 46.812916 ], [ 5.331173, 46.81027 ], [ 5.332496, 46.797713 ], [ 5.341506, 46.790692 ], [ 5.346456, 46.790222 ], [ 5.355051, 46.79094 ], [ 5.370807, 46.78352 ], [ 5.37375, 46.77707 ], [ 5.383425, 46.77553 ], [ 5.390248, 46.770592 ], [ 5.390112, 46.7672 ], [ 5.371518, 46.75152 ], [ 5.36676, 46.752396 ], [ 5.362002, 46.733117 ], [ 5.365725, 46.73107 ], [ 5.393641, 46.72863 ], [ 5.390789, 46.72636 ], [ 5.395908, 46.7156 ], [ 5.395012, 46.712507 ], [ 5.406642, 46.703931 ], [ 5.408349, 46.69844 ], [ 5.406696, 46.6954 ], [ 5.395359, 46.68505 ], [ 5.398501, 46.68268 ], [ 5.42209, 46.673032 ], [ 5.420175, 46.670009 ], [ 5.424647, 46.66464 ], [ 5.424814, 46.661344 ], [ 5.427103, 46.660161 ], [ 5.422912, 46.65831 ], [ 5.415008, 46.654146 ], [ 5.440601, 46.63791 ], [ 5.440623, 46.634902 ], [ 5.43349, 46.627757 ], [ 5.429678, 46.625847 ], [ 5.41379, 46.61464 ], [ 5.408583, 46.614554 ], [ 5.398593, 46.612719 ], [ 5.400092, 46.60937 ], [ 5.411943, 46.59863 ], [ 5.404691, 46.58211 ], [ 5.400427, 46.580232 ], [ 5.375536, 46.58016 ], [ 5.370666, 46.58053 ], [ 5.362124, 46.57727 ], [ 5.364614, 46.57504 ], [ 5.36788, 46.56695 ], [ 5.364888, 46.564513 ], [ 5.357651, 46.560563 ], [ 5.362579, 46.551642 ], [ 5.361582, 46.54823 ], [ 5.360073, 46.52424 ], [ 5.359459, 46.52364 ], [ 5.362852, 46.51791 ], [ 5.382494, 46.51557 ], [ 5.392428, 46.50821 ], [ 5.395657, 46.50569 ], [ 5.407571, 46.50041 ], [ 5.421173, 46.500302 ], [ 5.419959, 46.4809 ], [ 5.420044, 46.48018 ], [ 5.41843, 46.477298 ], [ 5.413803, 46.472045 ], [ 5.398099, 46.466601 ], [ 5.39358, 46.467596 ], [ 5.385312, 46.470544 ], [ 5.376345, 46.463127 ], [ 5.37379, 46.460451 ], [ 5.323351, 46.46251 ], [ 5.323147, 46.45648 ], [ 5.321799, 46.453601 ], [ 5.313215, 46.4525 ], [ 5.310561, 46.44677 ], [ 5.273677, 46.44859 ], [ 5.269653, 46.450226 ], [ 5.256271, 46.45188 ], [ 5.248004, 46.45937 ], [ 5.243864, 46.46046 ], [ 5.236259, 46.45778 ], [ 5.233384, 46.46045 ], [ 5.224698, 46.46835 ], [ 5.215064, 46.46836 ], [ 5.21528, 46.47176 ], [ 5.213031, 46.481541 ], [ 5.206685, 46.486177 ], [ 5.209481, 46.492105 ], [ 5.200343, 46.50257 ], [ 5.203565, 46.504803 ], [ 5.201221, 46.50782 ], [ 5.181672, 46.50998 ], [ 5.165839, 46.517675 ], [ 5.164303, 46.50462 ], [ 5.141168, 46.508484 ], [ 5.13403, 46.50145 ], [ 5.129066, 46.50092 ], [ 5.112817, 46.49296 ], [ 5.095259, 46.49798 ], [ 5.071449, 46.48582 ], [ 5.054751, 46.48428 ], [ 5.0509, 46.48625 ], [ 5.014233, 46.50045 ], [ 5.012448, 46.50297 ], [ 5.010594, 46.51107 ], [ 5.006369, 46.509703 ], [ 4.980216, 46.515203 ], [ 4.970038, 46.51409 ], [ 4.962656, 46.50655 ], [ 4.952797, 46.50447 ], [ 4.947369, 46.50843 ], [ 4.947245, 46.51445 ], [ 4.934745, 46.51332 ], [ 4.933592, 46.51245 ], [ 4.931736, 46.509791 ], [ 4.929616, 46.50408 ], [ 4.928837, 46.501589 ], [ 4.927682, 46.499168 ], [ 4.925241, 46.49615 ], [ 4.915896, 46.48819 ], [ 4.914522, 46.481374 ], [ 4.91453, 46.480113 ], [ 4.915024, 46.47711 ], [ 4.914448, 46.46216 ], [ 4.912497, 46.459323 ], [ 4.894444, 46.445374 ], [ 4.892887, 46.44257 ], [ 4.891797, 46.438555 ], [ 4.891523, 46.430291 ], [ 4.891532, 46.42752 ], [ 4.891047, 46.424056 ], [ 4.889934, 46.417121 ], [ 4.887496, 46.402732 ], [ 4.88495, 46.399883 ], [ 4.873919, 46.38499 ], [ 4.86776, 46.37806 ], [ 4.865691, 46.37576 ], [ 4.86312, 46.37326 ], [ 4.85853, 46.36802 ], [ 4.856454, 46.365123 ], [ 4.850912, 46.352864 ], [ 4.85239, 46.34617 ], [ 4.852652, 46.34279 ], [ 4.853156, 46.329247 ], [ 4.851423, 46.32608 ], [ 4.849389, 46.32322 ], [ 4.841217, 46.311805 ], [ 4.839228, 46.308684 ], [ 4.832926, 46.29944 ], [ 4.826332, 46.27591 ], [ 4.824739, 46.272934 ], [ 4.816488, 46.2654 ], [ 4.811341, 46.260583 ], [ 4.810817, 46.25455 ], [ 4.810798, 46.251233 ], [ 4.808184, 46.238106 ], [ 4.800741, 46.229658 ], [ 4.797847, 46.224543 ], [ 4.79551, 46.22014 ], [ 4.79428, 46.217051 ], [ 4.792735, 46.20751 ], [ 4.792327, 46.200968 ], [ 4.780203, 46.18675 ], [ 4.780213, 46.176677 ], [ 4.775494, 46.177093 ], [ 4.771584, 46.17564 ], [ 4.763197, 46.1757 ], [ 4.75959, 46.173603 ], [ 4.733118, 46.177792 ], [ 4.724376, 46.18431 ], [ 4.720362, 46.193577 ], [ 4.721489, 46.19684 ], [ 4.721501, 46.20013 ], [ 4.735682, 46.2117 ], [ 4.731773, 46.21322 ], [ 4.720018, 46.2285 ], [ 4.733016, 46.22751 ], [ 4.736181, 46.233202 ], [ 4.720694, 46.24426 ], [ 4.708899, 46.248584 ], [ 4.705377, 46.250961 ], [ 4.690873, 46.24965 ], [ 4.681228, 46.257301 ], [ 4.680571, 46.267218 ], [ 4.68457, 46.26593 ], [ 4.694068, 46.271512 ], [ 4.700696, 46.267477 ], [ 4.707417, 46.269764 ], [ 4.710054, 46.278947 ], [ 4.70748, 46.2847 ], [ 4.703249, 46.284841 ], [ 4.693884, 46.29454 ], [ 4.69295, 46.297099 ], [ 4.693436, 46.30232 ], [ 4.679741, 46.304518 ], [ 4.664478, 46.29662 ], [ 4.653189, 46.303177 ], [ 4.638725, 46.30142 ], [ 4.635777, 46.291918 ], [ 4.617019, 46.28062 ], [ 4.620162, 46.277956 ], [ 4.618565, 46.264793 ], [ 4.614456, 46.2664 ], [ 4.586527, 46.26836 ], [ 4.582672, 46.270215 ], [ 4.572725, 46.277045 ], [ 4.572161, 46.28998 ], [ 4.570273, 46.293029 ], [ 4.557841, 46.293993 ], [ 4.555437, 46.29126 ], [ 4.54809, 46.28323 ], [ 4.54645, 46.27392 ], [ 4.542343, 46.27197 ], [ 4.504001, 46.267139 ], [ 4.501484, 46.270072 ], [ 4.488465, 46.28799 ], [ 4.483775, 46.287065 ], [ 4.475428, 46.2844 ], [ 4.462188, 46.29402 ], [ 4.453248, 46.29644 ], [ 4.439452, 46.29306 ], [ 4.437717, 46.296284 ], [ 4.427039, 46.30283 ], [ 4.424387, 46.2963 ], [ 4.410616, 46.29534 ], [ 4.405814, 46.296061 ], [ 4.407092, 46.292739 ], [ 4.398757, 46.284322 ], [ 4.396364, 46.274544 ], [ 4.396451, 46.271841 ], [ 4.396835, 46.266523 ], [ 4.388286, 46.24791 ], [ 4.385568, 46.246162 ], [ 4.386217, 46.225674 ], [ 4.38808, 46.21979 ] ], [ [ 5.444408, 46.84535 ], [ 5.445157, 46.845637 ], [ 5.445922, 46.84544 ], [ 5.446746, 46.84595 ], [ 5.447838, 46.8457 ], [ 5.448476, 46.84645 ], [ 5.447832, 46.84673 ], [ 5.448702, 46.847976 ], [ 5.447391, 46.848013 ], [ 5.446155, 46.84943 ], [ 5.442904, 46.849838 ], [ 5.443689, 46.85095 ], [ 5.441991, 46.85113 ], [ 5.441975, 46.85194 ], [ 5.441712, 46.85194 ], [ 5.441095, 46.851651 ], [ 5.440312, 46.850586 ], [ 5.43983, 46.84893 ], [ 5.440846, 46.848458 ], [ 5.442092, 46.84842 ], [ 5.440782, 46.846162 ], [ 5.443001, 46.84588 ], [ 5.444408, 46.84535 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "73", "CODE_DEPT": "72", "NOM_DEPT": "SARTHE", "CODE_CHF": "181", "NOM_CHF": "LE MANS", "X_CHF_LIEU": "4909", "Y_CHF_LIEU": "67707", "X_CENTROID": "4928", "Y_CENTROID": "67696", "CODE_REG": "52", "NOM_REGION": "PAYS-DE-LA-LOIRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.614431, 47.69421 ], [ 0.61868, 47.69226 ], [ 0.612683, 47.682913 ], [ 0.588942, 47.670053 ], [ 0.558792, 47.670796 ], [ 0.559603, 47.66617 ], [ 0.555785, 47.66397 ], [ 0.545247, 47.65717 ], [ 0.525724, 47.653936 ], [ 0.516741, 47.65622 ], [ 0.498418, 47.64476 ], [ 0.493419, 47.64508 ], [ 0.478496, 47.644182 ], [ 0.47545, 47.64688 ], [ 0.461177, 47.643806 ], [ 0.459238, 47.640594 ], [ 0.451411, 47.62146 ], [ 0.431741, 47.618316 ], [ 0.426615, 47.617726 ], [ 0.39625, 47.640855 ], [ 0.391499, 47.641 ], [ 0.382788, 47.643103 ], [ 0.381437, 47.639677 ], [ 0.364557, 47.62207 ], [ 0.373233, 47.61334 ], [ 0.382414, 47.60998 ], [ 0.395085, 47.594583 ], [ 0.3968, 47.59136 ], [ 0.402577, 47.578512 ], [ 0.397913, 47.57753 ], [ 0.378484, 47.56853 ], [ 0.37466, 47.57051 ], [ 0.339107, 47.57974 ], [ 0.339494, 47.583179 ], [ 0.322104, 47.595237 ], [ 0.275412, 47.5991 ], [ 0.259115, 47.612301 ], [ 0.25456, 47.61203 ], [ 0.232709, 47.61089 ], [ 0.230002, 47.608398 ], [ 0.226382, 47.61064 ], [ 0.212617, 47.611785 ], [ 0.209402, 47.60552 ], [ 0.204544, 47.605972 ], [ 0.201909, 47.615582 ], [ 0.197801, 47.61545 ], [ 0.185834, 47.616547 ], [ 0.183976, 47.599011 ], [ 0.176229, 47.59441 ], [ 0.161129, 47.592413 ], [ 0.148488, 47.5813 ], [ 0.144174, 47.583055 ], [ 0.134245, 47.59442 ], [ 0.120352, 47.596 ], [ 0.115651, 47.605628 ], [ 0.110628, 47.6059 ], [ 0.095772, 47.603325 ], [ 0.071017, 47.60812 ], [ 0.06224, 47.60448 ], [ 0.052261, 47.60622 ], [ 0.034202, 47.61842 ], [ 0.009923, 47.623775 ], [ 0.009393, 47.626815 ], [ 0.012965, 47.62869 ], [ -0.001037, 47.645238 ], [ -0.004508, 47.647688 ], [ -0.017114, 47.63914 ], [ -0.020286, 47.63702 ], [ -0.026745, 47.646349 ], [ -0.052378, 47.64868 ], [ -0.074508, 47.657487 ], [ -0.092424, 47.65101 ], [ -0.09248, 47.65426 ], [ -0.094554, 47.660605 ], [ -0.09905, 47.66179 ], [ -0.105482, 47.65708 ], [ -0.113835, 47.64532 ], [ -0.1141, 47.635476 ], [ -0.127846, 47.63671 ], [ -0.134502, 47.632489 ], [ -0.138798, 47.63417 ], [ -0.147524, 47.63613 ], [ -0.158952, 47.647045 ], [ -0.163713, 47.645961 ], [ -0.193158, 47.64793 ], [ -0.196697, 47.650036 ], [ -0.196659, 47.662739 ], [ -0.199473, 47.665634 ], [ -0.215838, 47.682922 ], [ -0.217688, 47.692798 ], [ -0.203437, 47.693883 ], [ -0.184352, 47.705395 ], [ -0.18346, 47.71213 ], [ -0.173406, 47.713412 ], [ -0.175301, 47.716315 ], [ -0.184536, 47.716064 ], [ -0.193568, 47.723339 ], [ -0.202373, 47.725242 ], [ -0.205739, 47.72261 ], [ -0.236766, 47.704631 ], [ -0.256663, 47.7081 ], [ -0.287627, 47.71913 ], [ -0.29153, 47.717705 ], [ -0.309075, 47.71734 ], [ -0.314076, 47.71791 ], [ -0.333663, 47.72094 ], [ -0.35113, 47.71444 ], [ -0.365826, 47.71612 ], [ -0.364226, 47.71933 ], [ -0.358295, 47.731968 ], [ -0.373778, 47.73987 ], [ -0.37253, 47.743144 ], [ -0.375467, 47.74566 ], [ -0.379706, 47.751206 ], [ -0.376992, 47.760212 ], [ -0.381704, 47.76057 ], [ -0.375843, 47.7659 ], [ -0.378805, 47.779096 ], [ -0.38008, 47.782338 ], [ -0.385203, 47.801288 ], [ -0.387144, 47.804268 ], [ -0.388201, 47.805319 ], [ -0.416994, 47.802672 ], [ -0.430168, 47.80707 ], [ -0.43408, 47.80905 ], [ -0.444321, 47.82986 ], [ -0.447914, 47.832035 ], [ -0.432478, 47.84078 ], [ -0.425496, 47.84934 ], [ -0.41099, 47.846637 ], [ -0.413312, 47.854866 ], [ -0.41203, 47.85763 ], [ -0.374966, 47.85761 ], [ -0.377995, 47.86672 ], [ -0.37161, 47.87179 ], [ -0.37087, 47.87511 ], [ -0.376839, 47.88727 ], [ -0.386293, 47.88852 ], [ -0.391195, 47.88916 ], [ -0.392576, 47.89233 ], [ -0.406808, 47.893691 ], [ -0.41104, 47.89536 ], [ -0.404047, 47.90035 ], [ -0.409521, 47.913196 ], [ -0.412853, 47.915837 ], [ -0.397652, 47.91827 ], [ -0.388983, 47.929185 ], [ -0.38484, 47.93084 ], [ -0.338703, 47.9325 ], [ -0.325124, 47.9361 ], [ -0.319993, 47.9353 ], [ -0.31392, 47.93828 ], [ -0.311674, 47.940308 ], [ -0.294033, 47.94549 ], [ -0.280183, 47.957819 ], [ -0.284638, 47.95917 ], [ -0.288351, 47.9613 ], [ -0.293238, 47.96204 ], [ -0.300459, 47.96666 ], [ -0.299537, 47.97663 ], [ -0.312033, 47.99435 ], [ -0.312453, 48.00107 ], [ -0.308526, 48.00565 ], [ -0.308993, 48.005604 ], [ -0.338154, 48.012139 ], [ -0.334475, 48.032374 ], [ -0.340504, 48.044065 ], [ -0.334153, 48.04859 ], [ -0.330357, 48.05038 ], [ -0.316466, 48.04586 ], [ -0.282795, 48.05629 ], [ -0.286069, 48.0584 ], [ -0.274233, 48.06446 ], [ -0.235426, 48.06046 ], [ -0.230942, 48.05898 ], [ -0.226776, 48.068421 ], [ -0.225994, 48.07168 ], [ -0.22338, 48.07841 ], [ -0.232358, 48.081714 ], [ -0.236383, 48.08753 ], [ -0.234647, 48.09782 ], [ -0.216521, 48.109706 ], [ -0.216316, 48.1132 ], [ -0.223729, 48.119848 ], [ -0.222963, 48.12272 ], [ -0.241139, 48.126954 ], [ -0.243429, 48.1327 ], [ -0.249608, 48.134961 ], [ -0.253808, 48.136529 ], [ -0.238886, 48.1488 ], [ -0.248305, 48.15491 ], [ -0.250213, 48.157918 ], [ -0.246636, 48.16015 ], [ -0.222508, 48.171953 ], [ -0.189927, 48.18131 ], [ -0.185908, 48.183438 ], [ -0.181799, 48.18832 ], [ -0.178705, 48.190386 ], [ -0.164727, 48.199614 ], [ -0.151311, 48.203674 ], [ -0.146837, 48.20501 ], [ -0.152524, 48.21383 ], [ -0.148927, 48.219703 ], [ -0.145406, 48.2219 ], [ -0.157622, 48.23619 ], [ -0.160959, 48.238806 ], [ -0.16458, 48.25916 ], [ -0.15234, 48.2732 ], [ -0.149973, 48.276253 ], [ -0.15104, 48.2774 ], [ -0.149338, 48.28368 ], [ -0.138609, 48.29495 ], [ -0.142301, 48.30842 ], [ -0.148392, 48.313897 ], [ -0.151639, 48.314018 ], [ -0.154882, 48.31408 ], [ -0.155774, 48.31747 ], [ -0.157998, 48.334522 ], [ -0.152716, 48.343046 ], [ -0.148068, 48.344142 ], [ -0.126558, 48.33926 ], [ -0.12222, 48.33831 ], [ -0.132777, 48.34571 ], [ -0.136317, 48.362723 ], [ -0.117513, 48.368262 ], [ -0.112164, 48.374246 ], [ -0.092307, 48.37461 ], [ -0.078791, 48.3702 ], [ -0.069332, 48.377848 ], [ -0.060081, 48.377503 ], [ -0.054531, 48.382003 ], [ -0.049672, 48.37513 ], [ -0.051402, 48.37816 ], [ -0.022101, 48.38779 ], [ -0.02017, 48.39393 ], [ -0.001245, 48.39727 ], [ 0.00337, 48.395996 ], [ 0.005246, 48.38964 ], [ 0.01868, 48.38158 ], [ 0.023083, 48.38021 ], [ 0.035453, 48.38038 ], [ 0.039682, 48.38041 ], [ 0.062524, 48.383028 ], [ 0.054482, 48.39148 ], [ 0.064199, 48.40338 ], [ 0.067362, 48.40606 ], [ 0.079721, 48.408733 ], [ 0.083781, 48.41013 ], [ 0.083677, 48.411027 ], [ 0.099434, 48.41096 ], [ 0.109346, 48.42302 ], [ 0.111593, 48.43232 ], [ 0.117659, 48.436164 ], [ 0.121836, 48.435978 ], [ 0.125777, 48.43417 ], [ 0.148697, 48.43711 ], [ 0.153319, 48.43794 ], [ 0.158318, 48.443078 ], [ 0.154882, 48.4453 ], [ 0.145863, 48.45217 ], [ 0.143925, 48.454948 ], [ 0.152522, 48.45663 ], [ 0.169081, 48.44948 ], [ 0.173647, 48.45088 ], [ 0.170289, 48.4572 ], [ 0.172327, 48.46383 ], [ 0.186797, 48.46281 ], [ 0.191952, 48.46234 ], [ 0.194949, 48.463745 ], [ 0.213565, 48.47283 ], [ 0.217968, 48.473801 ], [ 0.221658, 48.47314 ], [ 0.225463, 48.47286 ], [ 0.258785, 48.47664 ], [ 0.26165, 48.47934 ], [ 0.262725, 48.482862 ], [ 0.266806, 48.48458 ], [ 0.278804, 48.48089 ], [ 0.283555, 48.48145 ], [ 0.297909, 48.479816 ], [ 0.30963, 48.473286 ], [ 0.314738, 48.473194 ], [ 0.324524, 48.471903 ], [ 0.33683, 48.46282 ], [ 0.340997, 48.460977 ], [ 0.345224, 48.45927 ], [ 0.350087, 48.45865 ], [ 0.35289, 48.45969 ], [ 0.363205, 48.45156 ], [ 0.367697, 48.44131 ], [ 0.367808, 48.43774 ], [ 0.373314, 48.43287 ], [ 0.376012, 48.43031 ], [ 0.381725, 48.42479 ], [ 0.379512, 48.414919 ], [ 0.372679, 48.41013 ], [ 0.375708, 48.390098 ], [ 0.373864, 48.38697 ], [ 0.37678, 48.3854 ], [ 0.378659, 48.38323 ], [ 0.380868, 48.37279 ], [ 0.380557, 48.36928 ], [ 0.387348, 48.350595 ], [ 0.387484, 48.34731 ], [ 0.384251, 48.34307 ], [ 0.380633, 48.34306 ], [ 0.383907, 48.33288 ], [ 0.395362, 48.32129 ], [ 0.408565, 48.316323 ], [ 0.415531, 48.32149 ], [ 0.426281, 48.31752 ], [ 0.427652, 48.31486 ], [ 0.429965, 48.30868 ], [ 0.438486, 48.306046 ], [ 0.442805, 48.30464 ], [ 0.46327, 48.30528 ], [ 0.475989, 48.30005 ], [ 0.491583, 48.30716 ], [ 0.505824, 48.293658 ], [ 0.497806, 48.289797 ], [ 0.494423, 48.283488 ], [ 0.512572, 48.26759 ], [ 0.525809, 48.26595 ], [ 0.530307, 48.2655 ], [ 0.53656, 48.25978 ], [ 0.537331, 48.252801 ], [ 0.537336, 48.24924 ], [ 0.546795, 48.250162 ], [ 0.574411, 48.244917 ], [ 0.579192, 48.244412 ], [ 0.593727, 48.24455 ], [ 0.613135, 48.24273 ], [ 0.622457, 48.244921 ], [ 0.630203, 48.24078 ], [ 0.631908, 48.23462 ], [ 0.635062, 48.235515 ], [ 0.63848, 48.235611 ], [ 0.631421, 48.251466 ], [ 0.631907, 48.254761 ], [ 0.642751, 48.26154 ], [ 0.652469, 48.26339 ], [ 0.679097, 48.25508 ], [ 0.683916, 48.254 ], [ 0.687394, 48.24078 ], [ 0.72035, 48.20628 ], [ 0.72026, 48.202768 ], [ 0.723637, 48.19814 ], [ 0.732119, 48.19816 ], [ 0.73863, 48.18919 ], [ 0.751105, 48.183916 ], [ 0.755327, 48.18211 ], [ 0.759209, 48.18009 ], [ 0.793203, 48.19307 ], [ 0.797655, 48.19446 ], [ 0.797528, 48.188167 ], [ 0.81124, 48.18472 ], [ 0.82786, 48.173039 ], [ 0.833111, 48.16904 ], [ 0.83656, 48.16762 ], [ 0.840574, 48.16553 ], [ 0.860645, 48.16665 ], [ 0.884466, 48.16184 ], [ 0.909365, 48.15007 ], [ 0.911465, 48.146968 ], [ 0.90961, 48.14353 ], [ 0.91665, 48.138941 ], [ 0.914338, 48.13585 ], [ 0.850372, 48.13308 ], [ 0.855009, 48.12386 ], [ 0.843301, 48.10601 ], [ 0.841217, 48.10306 ], [ 0.837246, 48.100919 ], [ 0.817906, 48.09768 ], [ 0.816151, 48.094634 ], [ 0.830283, 48.09114 ], [ 0.84501, 48.092771 ], [ 0.843023, 48.07264 ], [ 0.838376, 48.0713 ], [ 0.793995, 48.06944 ], [ 0.794879, 48.046931 ], [ 0.797551, 48.03725 ], [ 0.807136, 48.03659 ], [ 0.813335, 48.03145 ], [ 0.838332, 48.03261 ], [ 0.840591, 48.01901 ], [ 0.835775, 48.00914 ], [ 0.830555, 47.99605 ], [ 0.820383, 47.98803 ], [ 0.824356, 47.98174 ], [ 0.829036, 47.97258 ], [ 0.836839, 47.968938 ], [ 0.842824, 47.956598 ], [ 0.845574, 47.9539 ], [ 0.848378, 47.94393 ], [ 0.845193, 47.94119 ], [ 0.816349, 47.934277 ], [ 0.810811, 47.91816 ], [ 0.815816, 47.895158 ], [ 0.816836, 47.891827 ], [ 0.813238, 47.889483 ], [ 0.797868, 47.89796 ], [ 0.794073, 47.907436 ], [ 0.786998, 47.911751 ], [ 0.768069, 47.901399 ], [ 0.763737, 47.899975 ], [ 0.759813, 47.89809 ], [ 0.757341, 47.884682 ], [ 0.76353, 47.86516 ], [ 0.759165, 47.85923 ], [ 0.770099, 47.852747 ], [ 0.773852, 47.85065 ], [ 0.774046, 47.8406 ], [ 0.768413, 47.83111 ], [ 0.758989, 47.83358 ], [ 0.756337, 47.830822 ], [ 0.747692, 47.827838 ], [ 0.740279, 47.81256 ], [ 0.73379, 47.807699 ], [ 0.730115, 47.805476 ], [ 0.712824, 47.79049 ], [ 0.711896, 47.78721 ], [ 0.702679, 47.78965 ], [ 0.691748, 47.78353 ], [ 0.702633, 47.76967 ], [ 0.697354, 47.764192 ], [ 0.692446, 47.76435 ], [ 0.674985, 47.76877 ], [ 0.670962, 47.767308 ], [ 0.6512, 47.75512 ], [ 0.650273, 47.754928 ], [ 0.646097, 47.75305 ], [ 0.626331, 47.75136 ], [ 0.6199, 47.746174 ], [ 0.61795, 47.736635 ], [ 0.610668, 47.732038 ], [ 0.611604, 47.72814 ], [ 0.608728, 47.725299 ], [ 0.594084, 47.723035 ], [ 0.580508, 47.71283 ], [ 0.580315, 47.712378 ], [ 0.592798, 47.70218 ], [ 0.595902, 47.689251 ], [ 0.60454, 47.686681 ], [ 0.611211, 47.691663 ], [ 0.614431, 47.69421 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "74", "CODE_DEPT": "73", "NOM_DEPT": "SAVOIE", "CODE_CHF": "065", "NOM_CHF": "CHAMBERY", "X_CHF_LIEU": "9277", "Y_CHF_LIEU": "65005", "X_CENTROID": "9689", "Y_CENTROID": "64923", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.629987, 45.109327 ], [ 6.626688, 45.111841 ], [ 6.61353, 45.120957 ], [ 6.589941, 45.1192 ], [ 6.576531, 45.1231 ], [ 6.57357, 45.120596 ], [ 6.563908, 45.11382 ], [ 6.561367, 45.10731 ], [ 6.540052, 45.09953 ], [ 6.530287, 45.099065 ], [ 6.510423, 45.109 ], [ 6.507778, 45.105994 ], [ 6.487117, 45.09613 ], [ 6.481725, 45.09045 ], [ 6.488729, 45.070181 ], [ 6.487082, 45.05641 ], [ 6.482138, 45.05625 ], [ 6.453124, 45.05237 ], [ 6.43487, 45.063 ], [ 6.420353, 45.06122 ], [ 6.406143, 45.06425 ], [ 6.396888, 45.061989 ], [ 6.364878, 45.070171 ], [ 6.367174, 45.07326 ], [ 6.374601, 45.082295 ], [ 6.362713, 45.105032 ], [ 6.334233, 45.122939 ], [ 6.332876, 45.11962 ], [ 6.317031, 45.111934 ], [ 6.293342, 45.108636 ], [ 6.276888, 45.114933 ], [ 6.260566, 45.12685 ], [ 6.265355, 45.13668 ], [ 6.26149, 45.14289 ], [ 6.249773, 45.149197 ], [ 6.222062, 45.14258 ], [ 6.207805, 45.156639 ], [ 6.180992, 45.16486 ], [ 6.17683, 45.1629 ], [ 6.169033, 45.154124 ], [ 6.164686, 45.15316 ], [ 6.16117, 45.151103 ], [ 6.14379, 45.154559 ], [ 6.146321, 45.16399 ], [ 6.160589, 45.181804 ], [ 6.161919, 45.188407 ], [ 6.159013, 45.202349 ], [ 6.13968, 45.213059 ], [ 6.139861, 45.2233 ], [ 6.128797, 45.230423 ], [ 6.12714, 45.2409 ], [ 6.125696, 45.24427 ], [ 6.139436, 45.25834 ], [ 6.130815, 45.284534 ], [ 6.142406, 45.295401 ], [ 6.141243, 45.298786 ], [ 6.152869, 45.303632 ], [ 6.15778, 45.312315 ], [ 6.179716, 45.317804 ], [ 6.184451, 45.31796 ], [ 6.185237, 45.33035 ], [ 6.187807, 45.333065 ], [ 6.191427, 45.33961 ], [ 6.194759, 45.352251 ], [ 6.190649, 45.3539 ], [ 6.176652, 45.35523 ], [ 6.170009, 45.359542 ], [ 6.175046, 45.35955 ], [ 6.190269, 45.368 ], [ 6.175458, 45.394101 ], [ 6.146025, 45.413288 ], [ 6.130143, 45.43503 ], [ 6.121315, 45.438284 ], [ 6.102561, 45.43368 ], [ 6.098749, 45.432349 ], [ 6.094509, 45.432052 ], [ 6.094585, 45.43549 ], [ 6.094287, 45.442322 ], [ 6.090016, 45.444008 ], [ 6.085559, 45.443059 ], [ 6.076276, 45.44325 ], [ 6.067078, 45.444052 ], [ 6.054414, 45.44074 ], [ 6.049236, 45.437807 ], [ 6.045157, 45.43952 ], [ 6.007789, 45.454111 ], [ 6.011361, 45.458827 ], [ 6.009951, 45.46518 ], [ 6.009027, 45.471992 ], [ 5.990198, 45.476244 ], [ 5.979432, 45.487803 ], [ 5.971015, 45.4914 ], [ 5.915827, 45.47661 ], [ 5.91537, 45.47645 ], [ 5.917251, 45.47324 ], [ 5.925239, 45.4649 ], [ 5.920589, 45.444413 ], [ 5.913134, 45.435534 ], [ 5.904455, 45.432308 ], [ 5.904884, 45.43 ], [ 5.903168, 45.4231 ], [ 5.906359, 45.409993 ], [ 5.923503, 45.41293 ], [ 5.91089, 45.394152 ], [ 5.894443, 45.38801 ], [ 5.891003, 45.389242 ], [ 5.891188, 45.39279 ], [ 5.890609, 45.399858 ], [ 5.879282, 45.40687 ], [ 5.859585, 45.409908 ], [ 5.854303, 45.41592 ], [ 5.835269, 45.42023 ], [ 5.834628, 45.4202 ], [ 5.829773, 45.421099 ], [ 5.811361, 45.425382 ], [ 5.796363, 45.43807 ], [ 5.782462, 45.441105 ], [ 5.763387, 45.43922 ], [ 5.760698, 45.43636 ], [ 5.757658, 45.434925 ], [ 5.753097, 45.43507 ], [ 5.739988, 45.43758 ], [ 5.739125, 45.440857 ], [ 5.732183, 45.452721 ], [ 5.736531, 45.47186 ], [ 5.733757, 45.474568 ], [ 5.719744, 45.483396 ], [ 5.719338, 45.48635 ], [ 5.713964, 45.497484 ], [ 5.712079, 45.500593 ], [ 5.701047, 45.51769 ], [ 5.695685, 45.519963 ], [ 5.69125, 45.52181 ], [ 5.691109, 45.527893 ], [ 5.677133, 45.53099 ], [ 5.67211, 45.54009 ], [ 5.673337, 45.54346 ], [ 5.676788, 45.54164 ], [ 5.681071, 45.54139 ], [ 5.673318, 45.549987 ], [ 5.675183, 45.55277 ], [ 5.67121, 45.55468 ], [ 5.671145, 45.561328 ], [ 5.646909, 45.57702 ], [ 5.645896, 45.58294 ], [ 5.640001, 45.58713 ], [ 5.637656, 45.589626 ], [ 5.624088, 45.60338 ], [ 5.622591, 45.609989 ], [ 5.623748, 45.61327 ], [ 5.627389, 45.611 ], [ 5.635454, 45.61404 ], [ 5.636372, 45.617397 ], [ 5.638412, 45.623025 ], [ 5.646456, 45.624764 ], [ 5.648328, 45.627405 ], [ 5.652818, 45.636679 ], [ 5.676337, 45.638059 ], [ 5.684695, 45.64143 ], [ 5.687901, 45.643964 ], [ 5.68945, 45.65048 ], [ 5.687844, 45.65364 ], [ 5.684166, 45.660199 ], [ 5.68564, 45.667012 ], [ 5.709199, 45.684927 ], [ 5.706277, 45.6951 ], [ 5.703726, 45.69815 ], [ 5.699897, 45.706901 ], [ 5.700599, 45.709948 ], [ 5.723288, 45.708167 ], [ 5.727741, 45.70927 ], [ 5.731321, 45.710153 ], [ 5.744182, 45.706263 ], [ 5.753456, 45.7068 ], [ 5.776366, 45.72792 ], [ 5.771226, 45.73755 ], [ 5.769679, 45.740816 ], [ 5.776639, 45.74258 ], [ 5.780427, 45.74292 ], [ 5.783592, 45.745204 ], [ 5.779509, 45.758712 ], [ 5.782612, 45.768944 ], [ 5.783047, 45.772465 ], [ 5.780056, 45.77802 ], [ 5.781383, 45.78084 ], [ 5.784591, 45.797224 ], [ 5.785319, 45.820075 ], [ 5.786934, 45.823224 ], [ 5.79213, 45.8281 ], [ 5.79585, 45.8298 ], [ 5.801109, 45.845796 ], [ 5.805399, 45.857881 ], [ 5.807525, 45.86064 ], [ 5.813809, 45.87385 ], [ 5.815154, 45.877201 ], [ 5.824882, 45.900386 ], [ 5.826317, 45.903693 ], [ 5.828998, 45.91696 ], [ 5.821881, 45.929241 ], [ 5.826116, 45.935262 ], [ 5.829631, 45.93758 ], [ 5.840286, 45.932321 ], [ 5.862078, 45.9322 ], [ 5.864867, 45.922258 ], [ 5.865804, 45.918936 ], [ 5.862625, 45.916638 ], [ 5.865741, 45.904079 ], [ 5.866816, 45.89869 ], [ 5.875603, 45.866983 ], [ 5.876087, 45.86341 ], [ 5.877123, 45.84816 ], [ 5.873424, 45.839042 ], [ 5.877809, 45.833884 ], [ 5.881238, 45.831409 ], [ 5.884466, 45.82633 ], [ 5.903836, 45.825558 ], [ 5.904711, 45.81182 ], [ 5.911823, 45.807168 ], [ 5.913953, 45.80406 ], [ 5.923117, 45.8051 ], [ 5.933251, 45.8113 ], [ 5.934122, 45.814602 ], [ 5.947964, 45.81052 ], [ 5.957776, 45.81207 ], [ 5.962785, 45.812735 ], [ 5.957448, 45.79802 ], [ 5.958068, 45.79492 ], [ 5.976022, 45.795815 ], [ 5.98055, 45.79617 ], [ 5.982179, 45.783163 ], [ 5.97306, 45.7719 ], [ 5.974033, 45.76869 ], [ 5.990146, 45.76451 ], [ 5.994261, 45.763216 ], [ 5.99667, 45.760404 ], [ 5.993197, 45.75094 ], [ 5.993806, 45.74769 ], [ 6.007549, 45.750715 ], [ 6.038005, 45.740878 ], [ 6.042253, 45.739259 ], [ 6.05508, 45.749194 ], [ 6.077005, 45.740947 ], [ 6.09133, 45.743934 ], [ 6.096133, 45.74282 ], [ 6.097173, 45.733599 ], [ 6.101762, 45.734194 ], [ 6.102219, 45.76022 ], [ 6.103134, 45.763445 ], [ 6.126279, 45.7515 ], [ 6.134623, 45.75518 ], [ 6.137611, 45.761328 ], [ 6.161318, 45.75643 ], [ 6.166234, 45.755725 ], [ 6.165841, 45.749535 ], [ 6.173941, 45.74713 ], [ 6.178384, 45.747155 ], [ 6.180328, 45.735753 ], [ 6.182875, 45.73327 ], [ 6.195548, 45.732331 ], [ 6.192971, 45.723148 ], [ 6.191921, 45.720114 ], [ 6.192367, 45.694642 ], [ 6.196181, 45.692767 ], [ 6.200252, 45.698663 ], [ 6.212644, 45.702537 ], [ 6.214292, 45.708988 ], [ 6.224754, 45.7053 ], [ 6.228203, 45.704002 ], [ 6.231654, 45.70276 ], [ 6.229745, 45.68262 ], [ 6.243726, 45.685117 ], [ 6.258115, 45.683593 ], [ 6.260673, 45.686628 ], [ 6.280343, 45.684822 ], [ 6.303372, 45.691485 ], [ 6.307949, 45.69296 ], [ 6.327378, 45.692915 ], [ 6.344215, 45.720599 ], [ 6.346179, 45.72371 ], [ 6.351084, 45.729264 ], [ 6.351108, 45.72944 ], [ 6.347677, 45.73717 ], [ 6.367189, 45.75069 ], [ 6.370442, 45.75293 ], [ 6.373861, 45.75937 ], [ 6.372507, 45.765876 ], [ 6.363309, 45.767953 ], [ 6.393263, 45.7849 ], [ 6.395768, 45.78772 ], [ 6.414943, 45.796749 ], [ 6.420117, 45.802262 ], [ 6.424559, 45.803858 ], [ 6.430076, 45.817156 ], [ 6.440621, 45.82894 ], [ 6.44419, 45.831382 ], [ 6.449187, 45.836448 ], [ 6.447603, 45.842256 ], [ 6.445068, 45.84482 ], [ 6.44632, 45.847929 ], [ 6.454178, 45.85539 ], [ 6.450756, 45.861323 ], [ 6.459298, 45.86484 ], [ 6.471838, 45.88429 ], [ 6.495368, 45.89103 ], [ 6.507915, 45.906245 ], [ 6.511064, 45.909058 ], [ 6.515993, 45.90314 ], [ 6.532823, 45.897 ], [ 6.556582, 45.89326 ], [ 6.559095, 45.88681 ], [ 6.567366, 45.88317 ], [ 6.570688, 45.88065 ], [ 6.572783, 45.877738 ], [ 6.569046, 45.87563 ], [ 6.568024, 45.862826 ], [ 6.563039, 45.86316 ], [ 6.554069, 45.86011 ], [ 6.535327, 45.86198 ], [ 6.544175, 45.8495 ], [ 6.552719, 45.826342 ], [ 6.562056, 45.81819 ], [ 6.565557, 45.81571 ], [ 6.569102, 45.81791 ], [ 6.5777, 45.81571 ], [ 6.584893, 45.80063 ], [ 6.594801, 45.79365 ], [ 6.599175, 45.79236 ], [ 6.601684, 45.79507 ], [ 6.63286, 45.798632 ], [ 6.637001, 45.80007 ], [ 6.654914, 45.799659 ], [ 6.659355, 45.80015 ], [ 6.676741, 45.780037 ], [ 6.690589, 45.77057 ], [ 6.68919, 45.76042 ], [ 6.687012, 45.754037 ], [ 6.698694, 45.74348 ], [ 6.689691, 45.728212 ], [ 6.707658, 45.72453 ], [ 6.711951, 45.72292 ], [ 6.740457, 45.74627 ], [ 6.742899, 45.753042 ], [ 6.757547, 45.76714 ], [ 6.781592, 45.77027 ], [ 6.797511, 45.778469 ], [ 6.802517, 45.77837 ], [ 6.807236, 45.747416 ], [ 6.815909, 45.738928 ], [ 6.809395, 45.725878 ], [ 6.827512, 45.70515 ], [ 6.840253, 45.69999 ], [ 6.845514, 45.69405 ], [ 6.846121, 45.690569 ], [ 6.872044, 45.680304 ], [ 6.901363, 45.67912 ], [ 6.905411, 45.67707 ], [ 6.906332, 45.670085 ], [ 6.902143, 45.663748 ], [ 6.914955, 45.66091 ], [ 6.916154, 45.654778 ], [ 6.914833, 45.65174 ], [ 6.933225, 45.64662 ], [ 6.966743, 45.65386 ], [ 6.976747, 45.646197 ], [ 6.999126, 45.63817 ], [ 6.997339, 45.631401 ], [ 6.985208, 45.620165 ], [ 6.978895, 45.58864 ], [ 6.994946, 45.57136 ], [ 6.990544, 45.5614 ], [ 6.995077, 45.54398 ], [ 6.992015, 45.533529 ], [ 7.004775, 45.51854 ], [ 7.000779, 45.508305 ], [ 6.999974, 45.504791 ], [ 7.02166, 45.496874 ], [ 7.051051, 45.49625 ], [ 7.056115, 45.490639 ], [ 7.048163, 45.48233 ], [ 7.046239, 45.479148 ], [ 7.049574, 45.47268 ], [ 7.078324, 45.47328 ], [ 7.10181, 45.46852 ], [ 7.100943, 45.455051 ], [ 7.110218, 45.44707 ], [ 7.114687, 45.437551 ], [ 7.113516, 45.43419 ], [ 7.150285, 45.423046 ], [ 7.184202, 45.403453 ], [ 7.177592, 45.390111 ], [ 7.163693, 45.38018 ], [ 7.159861, 45.359581 ], [ 7.135646, 45.347837 ], [ 7.13268, 45.330625 ], [ 7.124126, 45.32732 ], [ 7.114352, 45.328948 ], [ 7.110695, 45.326512 ], [ 7.111696, 45.31618 ], [ 7.117734, 45.31055 ], [ 7.122003, 45.29677 ], [ 7.135251, 45.281804 ], [ 7.13094, 45.27189 ], [ 7.135106, 45.254561 ], [ 7.126119, 45.24612 ], [ 7.111395, 45.244634 ], [ 7.083564, 45.22468 ], [ 7.075911, 45.212142 ], [ 7.066401, 45.21134 ], [ 7.054389, 45.222618 ], [ 7.05118, 45.22534 ], [ 7.041505, 45.224582 ], [ 7.025445, 45.216831 ], [ 7.001326, 45.217419 ], [ 6.990072, 45.21078 ], [ 6.966272, 45.206472 ], [ 6.964836, 45.196678 ], [ 6.953926, 45.18973 ], [ 6.953579, 45.18286 ], [ 6.947093, 45.17802 ], [ 6.942909, 45.176188 ], [ 6.945159, 45.17303 ], [ 6.892974, 45.165654 ], [ 6.886166, 45.15627 ], [ 6.895383, 45.140093 ], [ 6.854264, 45.128622 ], [ 6.796843, 45.152967 ], [ 6.791896, 45.15328 ], [ 6.769526, 45.159338 ], [ 6.747221, 45.14081 ], [ 6.738745, 45.13748 ], [ 6.711286, 45.14476 ], [ 6.706565, 45.14367 ], [ 6.678693, 45.137628 ], [ 6.670986, 45.124812 ], [ 6.65002, 45.115712 ], [ 6.63515, 45.115306 ], [ 6.629987, 45.109327 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "75", "CODE_DEPT": "74", "NOM_DEPT": "HAUTE-SAVOIE", "CODE_CHF": "010", "NOM_CHF": "ANNECY", "X_CHF_LIEU": "9426", "Y_CHF_LIEU": "65380", "X_CENTROID": "9650", "Y_CENTROID": "65540", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.802517, 45.77837 ], [ 6.797511, 45.778469 ], [ 6.781592, 45.77027 ], [ 6.757547, 45.76714 ], [ 6.742899, 45.753042 ], [ 6.740457, 45.74627 ], [ 6.711951, 45.72292 ], [ 6.707658, 45.72453 ], [ 6.689691, 45.728212 ], [ 6.698694, 45.74348 ], [ 6.687012, 45.754037 ], [ 6.68919, 45.76042 ], [ 6.690589, 45.77057 ], [ 6.676741, 45.780037 ], [ 6.659355, 45.80015 ], [ 6.654914, 45.799659 ], [ 6.637001, 45.80007 ], [ 6.63286, 45.798632 ], [ 6.601684, 45.79507 ], [ 6.599175, 45.79236 ], [ 6.594801, 45.79365 ], [ 6.584893, 45.80063 ], [ 6.5777, 45.81571 ], [ 6.569102, 45.81791 ], [ 6.565557, 45.81571 ], [ 6.562056, 45.81819 ], [ 6.552719, 45.826342 ], [ 6.544175, 45.8495 ], [ 6.535327, 45.86198 ], [ 6.554069, 45.86011 ], [ 6.563039, 45.86316 ], [ 6.568024, 45.862826 ], [ 6.569046, 45.87563 ], [ 6.572783, 45.877738 ], [ 6.570688, 45.88065 ], [ 6.567366, 45.88317 ], [ 6.559095, 45.88681 ], [ 6.556582, 45.89326 ], [ 6.532823, 45.897 ], [ 6.515993, 45.90314 ], [ 6.511064, 45.909058 ], [ 6.507915, 45.906245 ], [ 6.495368, 45.89103 ], [ 6.471838, 45.88429 ], [ 6.459298, 45.86484 ], [ 6.450756, 45.861323 ], [ 6.454178, 45.85539 ], [ 6.44632, 45.847929 ], [ 6.445068, 45.84482 ], [ 6.447603, 45.842256 ], [ 6.449187, 45.836448 ], [ 6.44419, 45.831382 ], [ 6.440621, 45.82894 ], [ 6.430076, 45.817156 ], [ 6.424559, 45.803858 ], [ 6.420117, 45.802262 ], [ 6.414943, 45.796749 ], [ 6.395768, 45.78772 ], [ 6.393263, 45.7849 ], [ 6.363309, 45.767953 ], [ 6.372507, 45.765876 ], [ 6.373861, 45.75937 ], [ 6.370442, 45.75293 ], [ 6.367189, 45.75069 ], [ 6.347677, 45.73717 ], [ 6.351108, 45.72944 ], [ 6.351084, 45.729264 ], [ 6.346179, 45.72371 ], [ 6.344215, 45.720599 ], [ 6.327378, 45.692915 ], [ 6.307949, 45.69296 ], [ 6.303372, 45.691485 ], [ 6.280343, 45.684822 ], [ 6.260673, 45.686628 ], [ 6.258115, 45.683593 ], [ 6.243726, 45.685117 ], [ 6.229745, 45.68262 ], [ 6.231654, 45.70276 ], [ 6.228203, 45.704002 ], [ 6.224754, 45.7053 ], [ 6.214292, 45.708988 ], [ 6.212644, 45.702537 ], [ 6.200252, 45.698663 ], [ 6.196181, 45.692767 ], [ 6.192367, 45.694642 ], [ 6.191921, 45.720114 ], [ 6.192971, 45.723148 ], [ 6.195548, 45.732331 ], [ 6.182875, 45.73327 ], [ 6.180328, 45.735753 ], [ 6.178384, 45.747155 ], [ 6.173941, 45.74713 ], [ 6.165841, 45.749535 ], [ 6.166234, 45.755725 ], [ 6.161318, 45.75643 ], [ 6.137611, 45.761328 ], [ 6.134623, 45.75518 ], [ 6.126279, 45.7515 ], [ 6.103134, 45.763445 ], [ 6.102219, 45.76022 ], [ 6.101762, 45.734194 ], [ 6.097173, 45.733599 ], [ 6.096133, 45.74282 ], [ 6.09133, 45.743934 ], [ 6.077005, 45.740947 ], [ 6.05508, 45.749194 ], [ 6.042253, 45.739259 ], [ 6.038005, 45.740878 ], [ 6.007549, 45.750715 ], [ 5.993806, 45.74769 ], [ 5.993197, 45.75094 ], [ 5.99667, 45.760404 ], [ 5.994261, 45.763216 ], [ 5.990146, 45.76451 ], [ 5.974033, 45.76869 ], [ 5.97306, 45.7719 ], [ 5.982179, 45.783163 ], [ 5.98055, 45.79617 ], [ 5.976022, 45.795815 ], [ 5.958068, 45.79492 ], [ 5.957448, 45.79802 ], [ 5.962785, 45.812735 ], [ 5.957776, 45.81207 ], [ 5.947964, 45.81052 ], [ 5.934122, 45.814602 ], [ 5.933251, 45.8113 ], [ 5.923117, 45.8051 ], [ 5.913953, 45.80406 ], [ 5.911823, 45.807168 ], [ 5.904711, 45.81182 ], [ 5.903836, 45.825558 ], [ 5.884466, 45.82633 ], [ 5.881238, 45.831409 ], [ 5.877809, 45.833884 ], [ 5.873424, 45.839042 ], [ 5.877123, 45.84816 ], [ 5.876087, 45.86341 ], [ 5.875603, 45.866983 ], [ 5.866816, 45.89869 ], [ 5.865741, 45.904079 ], [ 5.862625, 45.916638 ], [ 5.865804, 45.918936 ], [ 5.864867, 45.922258 ], [ 5.862078, 45.9322 ], [ 5.840286, 45.932321 ], [ 5.829631, 45.93758 ], [ 5.825235, 45.938483 ], [ 5.8288, 45.94049 ], [ 5.834832, 45.9523 ], [ 5.832784, 45.96171 ], [ 5.833912, 45.96857 ], [ 5.834026, 45.97203 ], [ 5.809968, 45.98983 ], [ 5.810189, 45.99339 ], [ 5.809541, 46.00525 ], [ 5.810555, 46.00815 ], [ 5.806792, 46.01297 ], [ 5.805472, 46.01574 ], [ 5.812299, 46.0238 ], [ 5.810502, 46.029894 ], [ 5.809339, 46.03295 ], [ 5.808012, 46.041156 ], [ 5.806997, 46.04383 ], [ 5.812553, 46.051513 ], [ 5.813614, 46.0543 ], [ 5.810988, 46.058878 ], [ 5.808074, 46.06086 ], [ 5.811532, 46.077597 ], [ 5.819203, 46.087562 ], [ 5.821693, 46.089897 ], [ 5.820731, 46.102932 ], [ 5.829654, 46.105665 ], [ 5.838211, 46.10255 ], [ 5.852738, 46.089201 ], [ 5.855987, 46.08667 ], [ 5.866262, 46.08554 ], [ 5.885654, 46.08541 ], [ 5.892996, 46.09377 ], [ 5.886227, 46.10962 ], [ 5.890789, 46.11581 ], [ 5.893026, 46.118917 ], [ 5.896829, 46.11977 ], [ 5.906798, 46.12254 ], [ 5.920403, 46.131039 ], [ 5.927926, 46.128 ], [ 5.936956, 46.12865 ], [ 5.95273, 46.130365 ], [ 5.956063, 46.132089 ], [ 5.957292, 46.12795 ], [ 5.960622, 46.130105 ], [ 5.973524, 46.13189 ], [ 5.980364, 46.13587 ], [ 5.982528, 46.13896 ], [ 5.993515, 46.14385 ], [ 6.017932, 46.14229 ], [ 6.035353, 46.136161 ], [ 6.047817, 46.14094 ], [ 6.047841, 46.14441 ], [ 6.052099, 46.15056 ], [ 6.091658, 46.15078 ], [ 6.097824, 46.145387 ], [ 6.126625, 46.14046 ], [ 6.131101, 46.14052 ], [ 6.135412, 46.141327 ], [ 6.13829, 46.14382 ], [ 6.146555, 46.145957 ], [ 6.148376, 46.14922 ], [ 6.175299, 46.158261 ], [ 6.188334, 46.168097 ], [ 6.186311, 46.174796 ], [ 6.186108, 46.17822 ], [ 6.209952, 46.192606 ], [ 6.214252, 46.193791 ], [ 6.226392, 46.20204 ], [ 6.230116, 46.20356 ], [ 6.233843, 46.206006 ], [ 6.248983, 46.2061 ], [ 6.276374, 46.21524 ], [ 6.290518, 46.223324 ], [ 6.294471, 46.224931 ], [ 6.309154, 46.24249 ], [ 6.306376, 46.25198 ], [ 6.308534, 46.25502 ], [ 6.303604, 46.25536 ], [ 6.294917, 46.257814 ], [ 6.294883, 46.26459 ], [ 6.291442, 46.26204 ], [ 6.2782, 46.251618 ], [ 6.26922, 46.24852 ], [ 6.2645, 46.24975 ], [ 6.261336, 46.25246 ], [ 6.238823, 46.275322 ], [ 6.238651, 46.282303 ], [ 6.251104, 46.28822 ], [ 6.251881, 46.29167 ], [ 6.245576, 46.30328 ], [ 6.241373, 46.304558 ], [ 6.250225, 46.308 ], [ 6.258155, 46.324753 ], [ 6.269367, 46.33669 ], [ 6.277334, 46.34912 ], [ 6.287331, 46.356946 ], [ 6.291412, 46.35899 ], [ 6.303395, 46.36622 ], [ 6.311512, 46.36761 ], [ 6.315959, 46.368807 ], [ 6.32689, 46.371066 ], [ 6.345247, 46.369555 ], [ 6.349113, 46.3674 ], [ 6.359372, 46.35003 ], [ 6.362591, 46.34777 ], [ 6.390778, 46.341 ], [ 6.39922, 46.34973 ], [ 6.404349, 46.351213 ], [ 6.413939, 46.359281 ], [ 6.438449, 46.36234 ], [ 6.442914, 46.36398 ], [ 6.447545, 46.365561 ], [ 6.474921, 46.375519 ], [ 6.481418, 46.38101 ], [ 6.48601, 46.3946 ], [ 6.513072, 46.40479 ], [ 6.517967, 46.40453 ], [ 6.544206, 46.39505 ], [ 6.568242, 46.398235 ], [ 6.573185, 46.399316 ], [ 6.61402, 46.40328 ], [ 6.616792, 46.403422 ], [ 6.619571, 46.403478 ], [ 6.624282, 46.404374 ], [ 6.638672, 46.405412 ], [ 6.643614, 46.40565 ], [ 6.711861, 46.40761 ], [ 6.717014, 46.40788 ], [ 6.757506, 46.402605 ], [ 6.761223, 46.40019 ], [ 6.790015, 46.393154 ], [ 6.805192, 46.394064 ], [ 6.801821, 46.38832 ], [ 6.806129, 46.380041 ], [ 6.800903, 46.375131 ], [ 6.791873, 46.367201 ], [ 6.782236, 46.366638 ], [ 6.771278, 46.360141 ], [ 6.772193, 46.350185 ], [ 6.774674, 46.347281 ], [ 6.786918, 46.332541 ], [ 6.796401, 46.33079 ], [ 6.801136, 46.321033 ], [ 6.822673, 46.31268 ], [ 6.831572, 46.30044 ], [ 6.845967, 46.29094 ], [ 6.850886, 46.29025 ], [ 6.855357, 46.291866 ], [ 6.863737, 46.27978 ], [ 6.852748, 46.25317 ], [ 6.840407, 46.24713 ], [ 6.834025, 46.23766 ], [ 6.822211, 46.231265 ], [ 6.821128, 46.2243 ], [ 6.803564, 46.203131 ], [ 6.806982, 46.196463 ], [ 6.810784, 46.1802 ], [ 6.807337, 46.177843 ], [ 6.793523, 46.16426 ], [ 6.790422, 46.154311 ], [ 6.797237, 46.138271 ], [ 6.812353, 46.13203 ], [ 6.815212, 46.12932 ], [ 6.834736, 46.13224 ], [ 6.852683, 46.1267 ], [ 6.897142, 46.123 ], [ 6.893169, 46.105755 ], [ 6.885097, 46.096818 ], [ 6.890051, 46.07657 ], [ 6.880577, 46.068627 ], [ 6.873114, 46.05556 ], [ 6.872633, 46.05205 ], [ 6.887971, 46.0439 ], [ 6.909534, 46.052 ], [ 6.922089, 46.0628 ], [ 6.936209, 46.06427 ], [ 6.937976, 46.054241 ], [ 6.951127, 46.049645 ], [ 6.960682, 46.03364 ], [ 6.962904, 46.030534 ], [ 6.981157, 46.018759 ], [ 6.986806, 46.005107 ], [ 7.009037, 45.99714 ], [ 7.02013, 45.98131 ], [ 7.012909, 45.972564 ], [ 7.012762, 45.965762 ], [ 7.036102, 45.952561 ], [ 7.04214, 45.928288 ], [ 7.042049, 45.92477 ], [ 7.038827, 45.92205 ], [ 7.021333, 45.91479 ], [ 7.008919, 45.90344 ], [ 7.006282, 45.900387 ], [ 7.004187, 45.886315 ], [ 7.002929, 45.882852 ], [ 6.996492, 45.873143 ], [ 6.992852, 45.87065 ], [ 6.954902, 45.860524 ], [ 6.937725, 45.847501 ], [ 6.908472, 45.842693 ], [ 6.879522, 45.847974 ], [ 6.873663, 45.84243 ], [ 6.869982, 45.828395 ], [ 6.862576, 45.82909 ], [ 6.861388, 45.83257 ], [ 6.857232, 45.834547 ], [ 6.853841, 45.83715 ], [ 6.840125, 45.840035 ], [ 6.821585, 45.836995 ], [ 6.804669, 45.81671 ], [ 6.807072, 45.813784 ], [ 6.812006, 45.80796 ], [ 6.811691, 45.797418 ], [ 6.803877, 45.78858 ], [ 6.802517, 45.77837 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "76", "CODE_DEPT": "75", "NOM_DEPT": "PARIS", "CODE_CHF": "101", "NOM_CHF": "PARIS--1ER-ARRONDISSEMENT", "X_CHF_LIEU": "6516", "Y_CHF_LIEU": "68623", "X_CENTROID": "6517", "Y_CENTROID": "68620", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.416367, 48.849247 ], [ 2.415892, 48.84664 ], [ 2.416502, 48.8347 ], [ 2.422967, 48.842714 ], [ 2.427461, 48.84164 ], [ 2.437059, 48.84117 ], [ 2.442857, 48.84555 ], [ 2.447579, 48.8449 ], [ 2.464673, 48.841532 ], [ 2.467314, 48.83912 ], [ 2.46962, 48.836077 ], [ 2.464996, 48.82999 ], [ 2.466188, 48.826672 ], [ 2.461194, 48.818277 ], [ 2.456645, 48.81701 ], [ 2.419933, 48.82393 ], [ 2.403242, 48.82916 ], [ 2.393998, 48.82757 ], [ 2.389917, 48.82592 ], [ 2.368823, 48.81755 ], [ 2.364442, 48.81608 ], [ 2.360036, 48.81561 ], [ 2.355593, 48.81587 ], [ 2.352648, 48.818314 ], [ 2.344084, 48.81596 ], [ 2.332032, 48.81694 ], [ 2.328164, 48.81907 ], [ 2.313783, 48.82211 ], [ 2.309534, 48.823082 ], [ 2.301049, 48.825075 ], [ 2.297141, 48.825987 ], [ 2.289538, 48.82818 ], [ 2.285347, 48.829803 ], [ 2.271895, 48.828363 ], [ 2.263029, 48.834011 ], [ 2.262759, 48.83383 ], [ 2.257612, 48.834607 ], [ 2.248056, 48.84632 ], [ 2.223956, 48.85322 ], [ 2.225787, 48.85934 ], [ 2.230058, 48.867314 ], [ 2.23278, 48.86951 ], [ 2.236482, 48.87085 ], [ 2.245659, 48.87635 ], [ 2.255282, 48.874641 ], [ 2.260275, 48.880221 ], [ 2.280002, 48.878534 ], [ 2.280497, 48.881181 ], [ 2.284306, 48.885772 ], [ 2.299983, 48.892268 ], [ 2.303792, 48.894053 ], [ 2.315925, 48.89866 ], [ 2.31983, 48.900414 ], [ 2.324885, 48.90087 ], [ 2.329983, 48.901163 ], [ 2.334361, 48.901233 ], [ 2.351873, 48.90153 ], [ 2.361188, 48.90161 ], [ 2.365854, 48.90161 ], [ 2.370286, 48.90165 ], [ 2.389444, 48.901193 ], [ 2.397957, 48.89286 ], [ 2.398651, 48.889414 ], [ 2.400339, 48.88375 ], [ 2.407535, 48.880528 ], [ 2.410694, 48.87847 ], [ 2.413277, 48.873119 ], [ 2.414556, 48.858817 ], [ 2.415427, 48.855268 ], [ 2.416367, 48.849247 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "77", "CODE_DEPT": "76", "NOM_DEPT": "SEINE-MARITIME", "CODE_CHF": "540", "NOM_CHF": "ROUEN", "X_CHF_LIEU": "5623", "Y_CHF_LIEU": "69287", "X_CENTROID": "5574", "Y_CENTROID": "69524", "CODE_REG": "23", "NOM_REGION": "HAUTE-NORMANDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.713938, 49.40922 ], [ 1.705046, 49.40888 ], [ 1.694284, 49.394865 ], [ 1.691936, 49.39728 ], [ 1.682184, 49.402672 ], [ 1.680561, 49.405827 ], [ 1.670423, 49.40628 ], [ 1.659032, 49.39989 ], [ 1.650699, 49.403026 ], [ 1.647801, 49.403191 ], [ 1.644518, 49.40548 ], [ 1.62791, 49.41144 ], [ 1.628006, 49.414583 ], [ 1.623377, 49.41456 ], [ 1.606957, 49.410854 ], [ 1.603637, 49.413378 ], [ 1.585082, 49.43176 ], [ 1.581915, 49.433649 ], [ 1.575446, 49.437295 ], [ 1.576197, 49.440054 ], [ 1.550283, 49.44044 ], [ 1.537191, 49.43009 ], [ 1.5355, 49.433348 ], [ 1.527546, 49.442052 ], [ 1.501866, 49.439544 ], [ 1.498491, 49.4423 ], [ 1.491322, 49.44749 ], [ 1.476221, 49.45131 ], [ 1.449923, 49.45005 ], [ 1.436079, 49.45502 ], [ 1.411997, 49.45563 ], [ 1.383933, 49.449948 ], [ 1.392158, 49.461636 ], [ 1.38949, 49.46274 ], [ 1.386452, 49.46329 ], [ 1.368674, 49.4511 ], [ 1.344091, 49.44627 ], [ 1.349982, 49.43843 ], [ 1.348854, 49.435765 ], [ 1.337491, 49.43887 ], [ 1.335723, 49.43558 ], [ 1.338046, 49.428937 ], [ 1.328864, 49.431139 ], [ 1.309632, 49.42873 ], [ 1.311022, 49.425848 ], [ 1.315391, 49.41111 ], [ 1.308009, 49.39634 ], [ 1.297471, 49.39467 ], [ 1.292988, 49.39404 ], [ 1.28613, 49.38693 ], [ 1.286147, 49.383954 ], [ 1.289196, 49.37549 ], [ 1.286239, 49.36296 ], [ 1.282152, 49.36165 ], [ 1.272228, 49.35425 ], [ 1.272155, 49.34738 ], [ 1.246099, 49.347524 ], [ 1.241233, 49.347776 ], [ 1.212223, 49.349724 ], [ 1.209571, 49.35239 ], [ 1.204671, 49.35201 ], [ 1.200411, 49.355357 ], [ 1.198912, 49.35217 ], [ 1.200779, 49.33889 ], [ 1.185541, 49.337899 ], [ 1.184847, 49.33807 ], [ 1.182717, 49.343845 ], [ 1.178198, 49.34243 ], [ 1.168589, 49.33597 ], [ 1.166683, 49.338864 ], [ 1.160337, 49.340503 ], [ 1.155046, 49.33529 ], [ 1.145476, 49.33551 ], [ 1.144742, 49.332577 ], [ 1.136896, 49.32584 ], [ 1.134635, 49.322917 ], [ 1.133994, 49.30984 ], [ 1.129593, 49.30985 ], [ 1.124683, 49.30947 ], [ 1.094995, 49.30975 ], [ 1.090166, 49.30979 ], [ 1.071772, 49.3063 ], [ 1.067449, 49.304245 ], [ 1.048481, 49.29782 ], [ 1.065644, 49.28084 ], [ 1.052655, 49.27246 ], [ 1.063577, 49.26156 ], [ 1.061024, 49.25929 ], [ 1.05351, 49.26179 ], [ 1.051614, 49.25926 ], [ 1.051713, 49.26246 ], [ 1.038716, 49.25808 ], [ 1.038408, 49.259697 ], [ 0.999109, 49.25197 ], [ 0.994332, 49.2572 ], [ 0.999613, 49.262036 ], [ 0.989553, 49.26315 ], [ 0.985591, 49.26926 ], [ 0.980858, 49.27011 ], [ 0.970563, 49.27962 ], [ 0.955769, 49.27137 ], [ 0.955538, 49.274436 ], [ 0.952434, 49.279931 ], [ 0.955864, 49.281842 ], [ 0.962659, 49.28555 ], [ 0.960717, 49.29087 ], [ 0.960338, 49.294192 ], [ 0.951232, 49.29743 ], [ 0.937589, 49.31986 ], [ 0.925702, 49.313421 ], [ 0.921014, 49.31198 ], [ 0.908281, 49.306493 ], [ 0.909447, 49.29977 ], [ 0.899933, 49.298039 ], [ 0.893682, 49.30332 ], [ 0.892669, 49.316329 ], [ 0.869477, 49.32335 ], [ 0.86442, 49.32255 ], [ 0.862759, 49.325462 ], [ 0.844484, 49.32622 ], [ 0.848188, 49.33143 ], [ 0.85934, 49.34519 ], [ 0.864208, 49.345612 ], [ 0.871749, 49.34231 ], [ 0.885498, 49.34631 ], [ 0.920066, 49.338592 ], [ 0.928962, 49.34221 ], [ 0.93224, 49.34489 ], [ 0.926813, 49.34876 ], [ 0.923216, 49.349905 ], [ 0.921963, 49.352976 ], [ 0.924328, 49.358871 ], [ 0.922086, 49.36154 ], [ 0.917825, 49.376374 ], [ 0.917497, 49.3794 ], [ 0.918119, 49.38546 ], [ 0.913196, 49.38459 ], [ 0.895508, 49.37826 ], [ 0.892756, 49.37214 ], [ 0.888059, 49.373511 ], [ 0.879015, 49.372786 ], [ 0.880352, 49.376082 ], [ 0.884734, 49.38172 ], [ 0.876661, 49.389802 ], [ 0.878462, 49.396254 ], [ 0.873629, 49.3952 ], [ 0.864153, 49.39282 ], [ 0.860851, 49.395359 ], [ 0.856544, 49.393916 ], [ 0.833067, 49.39365 ], [ 0.828008, 49.39471 ], [ 0.818879, 49.39819 ], [ 0.815203, 49.400721 ], [ 0.802892, 49.427068 ], [ 0.800132, 49.42712 ], [ 0.803021, 49.417575 ], [ 0.787609, 49.41283 ], [ 0.783355, 49.410814 ], [ 0.767621, 49.41898 ], [ 0.743824, 49.41317 ], [ 0.738288, 49.40806 ], [ 0.715509, 49.410856 ], [ 0.714187, 49.40958 ], [ 0.70901, 49.41011 ], [ 0.706393, 49.40357 ], [ 0.686356, 49.40576 ], [ 0.670967, 49.40356 ], [ 0.666042, 49.402466 ], [ 0.657385, 49.405572 ], [ 0.65297, 49.4066 ], [ 0.649834, 49.40888 ], [ 0.653605, 49.41111 ], [ 0.657586, 49.41691 ], [ 0.643721, 49.4193 ], [ 0.639453, 49.42521 ], [ 0.629512, 49.42405 ], [ 0.630653, 49.427406 ], [ 0.645169, 49.4413 ], [ 0.642538, 49.444256 ], [ 0.638579, 49.44216 ], [ 0.614557, 49.42995 ], [ 0.599426, 49.42891 ], [ 0.594568, 49.429617 ], [ 0.581253, 49.43396 ], [ 0.560742, 49.4481 ], [ 0.55787, 49.4505 ], [ 0.543384, 49.462409 ], [ 0.538625, 49.46616 ], [ 0.537695, 49.467131 ], [ 0.534675, 49.469686 ], [ 0.522109, 49.47963 ], [ 0.509162, 49.48423 ], [ 0.503839, 49.484998 ], [ 0.493009, 49.484334 ], [ 0.47886, 49.47902 ], [ 0.474178, 49.476839 ], [ 0.469808, 49.475066 ], [ 0.435335, 49.46041 ], [ 0.430743, 49.45871 ], [ 0.426004, 49.4572 ], [ 0.421222, 49.45573 ], [ 0.386601, 49.44724 ], [ 0.382193, 49.44632 ], [ 0.368796, 49.443966 ], [ 0.363704, 49.44402 ], [ 0.338983, 49.440931 ], [ 0.297345, 49.43913 ], [ 0.285713, 49.44447 ], [ 0.287626, 49.447948 ], [ 0.3087, 49.44905 ], [ 0.31183, 49.449594 ], [ 0.303271, 49.45052 ], [ 0.287893, 49.45125 ], [ 0.274945, 49.446728 ], [ 0.269987, 49.447642 ], [ 0.257973, 49.44918 ], [ 0.253845, 49.449507 ], [ 0.237788, 49.45209 ], [ 0.195024, 49.45486 ], [ 0.171701, 49.46002 ], [ 0.156336, 49.45818 ], [ 0.145183, 49.46547 ], [ 0.114342, 49.470644 ], [ 0.09308, 49.48131 ], [ 0.093312, 49.49453 ], [ 0.088123, 49.500586 ], [ 0.083366, 49.50217 ], [ 0.069789, 49.50632 ], [ 0.066273, 49.51541 ], [ 0.066916, 49.51867 ], [ 0.075547, 49.53717 ], [ 0.078026, 49.53999 ], [ 0.108648, 49.58592 ], [ 0.111463, 49.58899 ], [ 0.126703, 49.60683 ], [ 0.128783, 49.60996 ], [ 0.140654, 49.62589 ], [ 0.142587, 49.629209 ], [ 0.15393, 49.64781 ], [ 0.151799, 49.657507 ], [ 0.158992, 49.66592 ], [ 0.159931, 49.669206 ], [ 0.164907, 49.68619 ], [ 0.1751, 49.6941 ], [ 0.179394, 49.696157 ], [ 0.182167, 49.699179 ], [ 0.205158, 49.71298 ], [ 0.220071, 49.71693 ], [ 0.225343, 49.71764 ], [ 0.241163, 49.720239 ], [ 0.259697, 49.72762 ], [ 0.264879, 49.72875 ], [ 0.270224, 49.73072 ], [ 0.290015, 49.737824 ], [ 0.29379, 49.739607 ], [ 0.299454, 49.74006 ], [ 0.316104, 49.74079 ], [ 0.320424, 49.741464 ], [ 0.334415, 49.74611 ], [ 0.338901, 49.74789 ], [ 0.351317, 49.75327 ], [ 0.355324, 49.755199 ], [ 0.366921, 49.767119 ], [ 0.38715, 49.771878 ], [ 0.424136, 49.78437 ], [ 0.428468, 49.78628 ], [ 0.479088, 49.806282 ], [ 0.483546, 49.80826 ], [ 0.507522, 49.819882 ], [ 0.51259, 49.81964 ], [ 0.520306, 49.823532 ], [ 0.524244, 49.82541 ], [ 0.534402, 49.83373 ], [ 0.557663, 49.84364 ], [ 0.56234, 49.845528 ], [ 0.581406, 49.85205 ], [ 0.602412, 49.85438 ], [ 0.606981, 49.85625 ], [ 0.640399, 49.863815 ], [ 0.645528, 49.86415 ], [ 0.650624, 49.86491 ], [ 0.655782, 49.865513 ], [ 0.668522, 49.86727 ], [ 0.709745, 49.87294 ], [ 0.718799, 49.869483 ], [ 0.745112, 49.87126 ], [ 0.750404, 49.87138 ], [ 0.76389, 49.871746 ], [ 0.795854, 49.87701 ], [ 0.800985, 49.87831 ], [ 0.834184, 49.88969 ], [ 0.839541, 49.889338 ], [ 0.893722, 49.89902 ], [ 0.89844, 49.900331 ], [ 0.924739, 49.905354 ], [ 0.929789, 49.906743 ], [ 0.96144, 49.919712 ], [ 0.972258, 49.91924 ], [ 1.021849, 49.916274 ], [ 1.025735, 49.91655 ], [ 1.035178, 49.91887 ], [ 1.039774, 49.92025 ], [ 1.06981, 49.92678 ], [ 1.085877, 49.93557 ], [ 1.110602, 49.93893 ], [ 1.115246, 49.94057 ], [ 1.143184, 49.94988 ], [ 1.147616, 49.95169 ], [ 1.164733, 49.9578 ], [ 1.168719, 49.959651 ], [ 1.189936, 49.96695 ], [ 1.194522, 49.96804 ], [ 1.202426, 49.97179 ], [ 1.205261, 49.977542 ], [ 1.208678, 49.97982 ], [ 1.230982, 49.987512 ], [ 1.235089, 49.98961 ], [ 1.256331, 50.002107 ], [ 1.259655, 50.004355 ], [ 1.266964, 50.009121 ], [ 1.270733, 50.01143 ], [ 1.33435, 50.04797 ], [ 1.338735, 50.04997 ], [ 1.342387, 50.05176 ], [ 1.369126, 50.06372 ], [ 1.379705, 50.065015 ], [ 1.404428, 50.05723 ], [ 1.40926, 50.05707 ], [ 1.419826, 50.06641 ], [ 1.421862, 50.069131 ], [ 1.431667, 50.07115 ], [ 1.450671, 50.06723 ], [ 1.453325, 50.06438 ], [ 1.456458, 50.063714 ], [ 1.459146, 50.062499 ], [ 1.452288, 50.041617 ], [ 1.45886, 50.03696 ], [ 1.473212, 50.033686 ], [ 1.475827, 50.03069 ], [ 1.48632, 50.023 ], [ 1.493091, 50.01845 ], [ 1.497761, 50.019436 ], [ 1.514481, 50.01265 ], [ 1.523615, 50.001981 ], [ 1.525236, 49.99895 ], [ 1.52695, 49.99658 ], [ 1.55751, 49.98041 ], [ 1.561275, 49.97833 ], [ 1.570107, 49.97536 ], [ 1.57439, 49.97365 ], [ 1.577978, 49.96386 ], [ 1.603803, 49.943395 ], [ 1.608454, 49.94181 ], [ 1.624556, 49.93428 ], [ 1.643494, 49.9303 ], [ 1.647729, 49.92857 ], [ 1.652181, 49.927065 ], [ 1.678451, 49.91813 ], [ 1.678647, 49.91323 ], [ 1.690784, 49.901682 ], [ 1.691652, 49.898735 ], [ 1.693304, 49.895608 ], [ 1.69702, 49.89333 ], [ 1.706178, 49.89144 ], [ 1.71209, 49.8864 ], [ 1.713912, 49.87702 ], [ 1.711815, 49.87417 ], [ 1.712859, 49.87083 ], [ 1.718728, 49.86571 ], [ 1.720039, 49.86167 ], [ 1.719039, 49.848352 ], [ 1.72535, 49.84322 ], [ 1.726224, 49.839945 ], [ 1.725711, 49.836561 ], [ 1.733854, 49.8135 ], [ 1.742319, 49.80639 ], [ 1.744387, 49.80357 ], [ 1.749904, 49.79486 ], [ 1.752718, 49.79215 ], [ 1.758369, 49.78351 ], [ 1.759249, 49.7804 ], [ 1.773681, 49.77636 ], [ 1.779601, 49.77073 ], [ 1.780929, 49.767426 ], [ 1.78333, 49.764467 ], [ 1.784845, 49.7579 ], [ 1.763625, 49.75727 ], [ 1.749886, 49.76211 ], [ 1.74272, 49.75285 ], [ 1.74026, 49.75025 ], [ 1.745455, 49.738572 ], [ 1.742891, 49.73855 ], [ 1.725303, 49.73157 ], [ 1.715538, 49.73288 ], [ 1.715109, 49.71354 ], [ 1.715453, 49.71033 ], [ 1.68862, 49.69371 ], [ 1.707758, 49.681374 ], [ 1.717096, 49.68456 ], [ 1.732928, 49.69855 ], [ 1.743109, 49.70033 ], [ 1.746515, 49.69757 ], [ 1.750299, 49.69582 ], [ 1.751309, 49.68392 ], [ 1.752184, 49.68097 ], [ 1.747082, 49.680078 ], [ 1.724131, 49.671805 ], [ 1.722778, 49.66165 ], [ 1.721554, 49.65857 ], [ 1.713754, 49.654908 ], [ 1.708078, 49.646149 ], [ 1.698685, 49.64435 ], [ 1.701361, 49.641952 ], [ 1.70442, 49.63976 ], [ 1.707252, 49.63776 ], [ 1.717252, 49.632981 ], [ 1.71873, 49.62976 ], [ 1.721685, 49.623321 ], [ 1.715943, 49.61395 ], [ 1.693725, 49.60107 ], [ 1.720146, 49.589656 ], [ 1.721618, 49.58881 ], [ 1.7204, 49.58556 ], [ 1.709641, 49.58021 ], [ 1.694593, 49.58054 ], [ 1.697693, 49.57222 ], [ 1.710406, 49.57725 ], [ 1.717848, 49.57262 ], [ 1.720397, 49.569598 ], [ 1.726288, 49.56386 ], [ 1.729834, 49.56129 ], [ 1.72916, 49.55503 ], [ 1.724905, 49.54554 ], [ 1.731211, 49.541354 ], [ 1.744888, 49.53952 ], [ 1.745519, 49.53916 ], [ 1.738792, 49.52058 ], [ 1.71992, 49.508904 ], [ 1.717972, 49.50674 ], [ 1.719227, 49.50292 ], [ 1.72546, 49.49978 ], [ 1.740506, 49.497983 ], [ 1.744868, 49.49173 ], [ 1.755399, 49.50646 ], [ 1.768074, 49.512028 ], [ 1.783584, 49.507609 ], [ 1.78755, 49.50623 ], [ 1.788633, 49.490141 ], [ 1.778449, 49.489626 ], [ 1.775438, 49.48686 ], [ 1.775771, 49.47344 ], [ 1.765371, 49.465925 ], [ 1.760619, 49.46452 ], [ 1.747434, 49.45945 ], [ 1.749925, 49.45679 ], [ 1.748842, 49.45144 ], [ 1.739918, 49.4493 ], [ 1.736373, 49.44713 ], [ 1.733389, 49.44122 ], [ 1.726078, 49.438065 ], [ 1.72201, 49.42149 ], [ 1.713938, 49.40922 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "78", "CODE_DEPT": "77", "NOM_DEPT": "SEINE-ET-MARNE", "CODE_CHF": "288", "NOM_CHF": "MELUN", "X_CHF_LIEU": "6748", "Y_CHF_LIEU": "68266", "X_CENTROID": "6951", "Y_CENTROID": "68362", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.936314, 48.163392 ], [ 2.931137, 48.162813 ], [ 2.900047, 48.15943 ], [ 2.895207, 48.15895 ], [ 2.870991, 48.15647 ], [ 2.866823, 48.15604 ], [ 2.864438, 48.152902 ], [ 2.838308, 48.135908 ], [ 2.823316, 48.13278 ], [ 2.82088, 48.12966 ], [ 2.816334, 48.13043 ], [ 2.802391, 48.131462 ], [ 2.799465, 48.137396 ], [ 2.797907, 48.140551 ], [ 2.800412, 48.15361 ], [ 2.810418, 48.16082 ], [ 2.810918, 48.164067 ], [ 2.798959, 48.168025 ], [ 2.79024, 48.1653 ], [ 2.780977, 48.167363 ], [ 2.77668, 48.165726 ], [ 2.754682, 48.16139 ], [ 2.736406, 48.16631 ], [ 2.738384, 48.16342 ], [ 2.754255, 48.151905 ], [ 2.755198, 48.14565 ], [ 2.750335, 48.14487 ], [ 2.722461, 48.13741 ], [ 2.706547, 48.124819 ], [ 2.675484, 48.12517 ], [ 2.66757, 48.120667 ], [ 2.664748, 48.120542 ], [ 2.661585, 48.123439 ], [ 2.639666, 48.13895 ], [ 2.634454, 48.13833 ], [ 2.599014, 48.1316 ], [ 2.577868, 48.13178 ], [ 2.570563, 48.140816 ], [ 2.565815, 48.14109 ], [ 2.537505, 48.14052 ], [ 2.534395, 48.13806 ], [ 2.521724, 48.128417 ], [ 2.52221, 48.125215 ], [ 2.517284, 48.1259 ], [ 2.477562, 48.1291 ], [ 2.458954, 48.125608 ], [ 2.455859, 48.123389 ], [ 2.442692, 48.12549 ], [ 2.444256, 48.13147 ], [ 2.461097, 48.138207 ], [ 2.474045, 48.15161 ], [ 2.47185, 48.154597 ], [ 2.480872, 48.16161 ], [ 2.483238, 48.164518 ], [ 2.502032, 48.158444 ], [ 2.506327, 48.15644 ], [ 2.514911, 48.16484 ], [ 2.508843, 48.180923 ], [ 2.515406, 48.19301 ], [ 2.520296, 48.193919 ], [ 2.523011, 48.19876 ], [ 2.519932, 48.201377 ], [ 2.517404, 48.214378 ], [ 2.514119, 48.214382 ], [ 2.51535, 48.22693 ], [ 2.507345, 48.228985 ], [ 2.506192, 48.23854 ], [ 2.501745, 48.23871 ], [ 2.484178, 48.23897 ], [ 2.480612, 48.24139 ], [ 2.476787, 48.25083 ], [ 2.46909, 48.255282 ], [ 2.465405, 48.25326 ], [ 2.4518, 48.250425 ], [ 2.444509, 48.254485 ], [ 2.440144, 48.2532 ], [ 2.435639, 48.254848 ], [ 2.421716, 48.26388 ], [ 2.420109, 48.2667 ], [ 2.418346, 48.27989 ], [ 2.423098, 48.29278 ], [ 2.420762, 48.299251 ], [ 2.417749, 48.302206 ], [ 2.402664, 48.32072 ], [ 2.395402, 48.325757 ], [ 2.394016, 48.33253 ], [ 2.392372, 48.33587 ], [ 2.401297, 48.33302 ], [ 2.410141, 48.336079 ], [ 2.429878, 48.33657 ], [ 2.433827, 48.33454 ], [ 2.43034, 48.347506 ], [ 2.441143, 48.3572 ], [ 2.433247, 48.35961 ], [ 2.429832, 48.36202 ], [ 2.433195, 48.3644 ], [ 2.440984, 48.36838 ], [ 2.450638, 48.36716 ], [ 2.44984, 48.37371 ], [ 2.482461, 48.38246 ], [ 2.473832, 48.39039 ], [ 2.486035, 48.39683 ], [ 2.50648, 48.394911 ], [ 2.521784, 48.40404 ], [ 2.54706, 48.40142 ], [ 2.543782, 48.403913 ], [ 2.517311, 48.42768 ], [ 2.505029, 48.429866 ], [ 2.505037, 48.44484 ], [ 2.504411, 48.44808 ], [ 2.505804, 48.451011 ], [ 2.501263, 48.45635 ], [ 2.498523, 48.45719 ], [ 2.499641, 48.45905 ], [ 2.502797, 48.4601 ], [ 2.505938, 48.461159 ], [ 2.502473, 48.484247 ], [ 2.510364, 48.488445 ], [ 2.509908, 48.49085 ], [ 2.512086, 48.49541 ], [ 2.513823, 48.50953 ], [ 2.509083, 48.509626 ], [ 2.506859, 48.515779 ], [ 2.49761, 48.51724 ], [ 2.509452, 48.54262 ], [ 2.499315, 48.54291 ], [ 2.518054, 48.561802 ], [ 2.519648, 48.56834 ], [ 2.531595, 48.573659 ], [ 2.526677, 48.573414 ], [ 2.521772, 48.573224 ], [ 2.522051, 48.57675 ], [ 2.518277, 48.58326 ], [ 2.539227, 48.593685 ], [ 2.54145, 48.596887 ], [ 2.543285, 48.605818 ], [ 2.542513, 48.608801 ], [ 2.539681, 48.611489 ], [ 2.526154, 48.614773 ], [ 2.525227, 48.621201 ], [ 2.516511, 48.62915 ], [ 2.520278, 48.63127 ], [ 2.540056, 48.63365 ], [ 2.547965, 48.64966 ], [ 2.544445, 48.65171 ], [ 2.533752, 48.6573 ], [ 2.544822, 48.66927 ], [ 2.547461, 48.67192 ], [ 2.556959, 48.672883 ], [ 2.565205, 48.66936 ], [ 2.579195, 48.677514 ], [ 2.584074, 48.67715 ], [ 2.584646, 48.68034 ], [ 2.580376, 48.68948 ], [ 2.57166, 48.692023 ], [ 2.572261, 48.694966 ], [ 2.577677, 48.69901 ], [ 2.574345, 48.701 ], [ 2.571587, 48.70266 ], [ 2.568804, 48.70722 ], [ 2.568137, 48.708974 ], [ 2.570969, 48.71173 ], [ 2.580406, 48.72299 ], [ 2.594679, 48.731805 ], [ 2.594109, 48.73523 ], [ 2.587757, 48.74408 ], [ 2.599551, 48.75074 ], [ 2.597544, 48.760569 ], [ 2.614817, 48.761121 ], [ 2.60644, 48.773307 ], [ 2.591044, 48.77233 ], [ 2.587516, 48.77805 ], [ 2.598816, 48.793366 ], [ 2.591542, 48.79737 ], [ 2.593058, 48.80031 ], [ 2.596498, 48.80607 ], [ 2.59228, 48.807437 ], [ 2.595795, 48.81427 ], [ 2.595334, 48.817457 ], [ 2.591136, 48.826634 ], [ 2.586672, 48.827887 ], [ 2.586281, 48.83425 ], [ 2.584171, 48.837429 ], [ 2.573836, 48.85338 ], [ 2.582522, 48.8562 ], [ 2.586866, 48.86183 ], [ 2.587332, 48.865 ], [ 2.582285, 48.8654 ], [ 2.567967, 48.86594 ], [ 2.570615, 48.87878 ], [ 2.563216, 48.8831 ], [ 2.559406, 48.885338 ], [ 2.587229, 48.89854 ], [ 2.591024, 48.906953 ], [ 2.592724, 48.90753 ], [ 2.58878, 48.90949 ], [ 2.592342, 48.925024 ], [ 2.596169, 48.92603 ], [ 2.602598, 48.929357 ], [ 2.602682, 48.93276 ], [ 2.597808, 48.938144 ], [ 2.593811, 48.946593 ], [ 2.591905, 48.94935 ], [ 2.590118, 48.952623 ], [ 2.566237, 48.97551 ], [ 2.576511, 48.980354 ], [ 2.579819, 48.98686 ], [ 2.575843, 49.00029 ], [ 2.571528, 49.001531 ], [ 2.565792, 49.0124 ], [ 2.561242, 49.012185 ], [ 2.553061, 49.009817 ], [ 2.550672, 49.01263 ], [ 2.538421, 49.01446 ], [ 2.535372, 49.02057 ], [ 2.535425, 49.02379 ], [ 2.545077, 49.022421 ], [ 2.563288, 49.02743 ], [ 2.568943, 49.03635 ], [ 2.56934, 49.03959 ], [ 2.579624, 49.046501 ], [ 2.589495, 49.04717 ], [ 2.594474, 49.04714 ], [ 2.573213, 49.059283 ], [ 2.590524, 49.07965 ], [ 2.609132, 49.091558 ], [ 2.610339, 49.094943 ], [ 2.614781, 49.09409 ], [ 2.619365, 49.09447 ], [ 2.631694, 49.105117 ], [ 2.633273, 49.108376 ], [ 2.640674, 49.099713 ], [ 2.650967, 49.10025 ], [ 2.676384, 49.088872 ], [ 2.67832, 49.08573 ], [ 2.693519, 49.073452 ], [ 2.691155, 49.07062 ], [ 2.690023, 49.067562 ], [ 2.698321, 49.06443 ], [ 2.703081, 49.064736 ], [ 2.720824, 49.07564 ], [ 2.724357, 49.08046 ], [ 2.733096, 49.063359 ], [ 2.735013, 49.060459 ], [ 2.756038, 49.061528 ], [ 2.760833, 49.063004 ], [ 2.785275, 49.07544 ], [ 2.772712, 49.081378 ], [ 2.768337, 49.08326 ], [ 2.788214, 49.08287 ], [ 2.783988, 49.08864 ], [ 2.787956, 49.08917 ], [ 2.79173, 49.09014 ], [ 2.80477, 49.09576 ], [ 2.809254, 49.097536 ], [ 2.821258, 49.08681 ], [ 2.83522, 49.083 ], [ 2.844946, 49.08488 ], [ 2.854288, 49.073152 ], [ 2.856089, 49.070034 ], [ 2.872029, 49.071248 ], [ 2.890202, 49.07847 ], [ 2.895105, 49.077052 ], [ 2.899159, 49.08252 ], [ 2.900947, 49.08535 ], [ 2.923982, 49.07829 ], [ 2.933807, 49.08001 ], [ 2.937888, 49.077998 ], [ 2.944317, 49.081814 ], [ 2.94583, 49.08808 ], [ 2.954853, 49.08595 ], [ 2.967335, 49.090652 ], [ 2.971429, 49.088972 ], [ 2.974159, 49.0778 ], [ 2.974612, 49.074838 ], [ 2.983235, 49.07188 ], [ 2.988135, 49.072376 ], [ 2.989885, 49.08157 ], [ 2.999206, 49.088534 ], [ 3.003956, 49.088741 ], [ 3.012773, 49.09062 ], [ 3.0305, 49.08689 ], [ 3.034416, 49.08861 ], [ 3.061684, 49.08647 ], [ 3.066076, 49.08522 ], [ 3.064684, 49.08817 ], [ 3.056752, 49.09578 ], [ 3.056321, 49.101918 ], [ 3.069347, 49.11485 ], [ 3.071884, 49.117554 ], [ 3.079808, 49.1129 ], [ 3.115282, 49.10688 ], [ 3.121614, 49.10908 ], [ 3.124129, 49.107235 ], [ 3.138602, 49.1064 ], [ 3.145738, 49.10177 ], [ 3.160231, 49.09929 ], [ 3.16523, 49.09966 ], [ 3.155087, 49.082428 ], [ 3.158681, 49.08041 ], [ 3.167882, 49.0769 ], [ 3.180064, 49.065489 ], [ 3.181708, 49.06217 ], [ 3.180866, 49.05615 ], [ 3.190667, 49.049972 ], [ 3.190614, 49.046717 ], [ 3.181112, 49.04428 ], [ 3.176541, 49.03141 ], [ 3.163424, 49.02626 ], [ 3.163008, 49.019944 ], [ 3.171569, 49.012496 ], [ 3.198993, 49.00579 ], [ 3.208947, 48.99671 ], [ 3.209318, 48.993786 ], [ 3.223297, 48.990452 ], [ 3.224841, 48.987329 ], [ 3.229177, 48.98842 ], [ 3.231216, 48.976751 ], [ 3.245993, 48.976065 ], [ 3.254925, 48.96463 ], [ 3.255523, 48.96132 ], [ 3.259065, 48.95126 ], [ 3.262904, 48.948935 ], [ 3.261229, 48.9471 ], [ 3.259827, 48.945174 ], [ 3.265161, 48.939065 ], [ 3.26948, 48.937455 ], [ 3.283772, 48.94016 ], [ 3.300969, 48.94665 ], [ 3.30475, 48.94877 ], [ 3.31222, 48.935418 ], [ 3.312797, 48.92478 ], [ 3.313076, 48.921216 ], [ 3.317005, 48.91885 ], [ 3.330199, 48.90796 ], [ 3.361726, 48.91956 ], [ 3.367427, 48.9288 ], [ 3.37561, 48.90922 ], [ 3.369828, 48.89614 ], [ 3.382479, 48.885942 ], [ 3.38328, 48.87249 ], [ 3.387958, 48.87097 ], [ 3.400635, 48.876027 ], [ 3.405856, 48.87588 ], [ 3.401029, 48.86872 ], [ 3.398898, 48.86642 ], [ 3.408514, 48.86371 ], [ 3.423063, 48.86757 ], [ 3.433142, 48.86001 ], [ 3.448478, 48.85872 ], [ 3.452232, 48.8563 ], [ 3.44578, 48.8461 ], [ 3.445361, 48.843232 ], [ 3.459253, 48.841066 ], [ 3.461955, 48.83847 ], [ 3.470198, 48.850547 ], [ 3.480156, 48.8516 ], [ 3.485187, 48.85191 ], [ 3.486806, 48.848601 ], [ 3.491285, 48.83514 ], [ 3.485241, 48.825503 ], [ 3.487202, 48.81519 ], [ 3.483786, 48.81395 ], [ 3.480923, 48.81219 ], [ 3.477905, 48.81417 ], [ 3.474847, 48.81937 ], [ 3.470215, 48.820698 ], [ 3.449507, 48.812081 ], [ 3.434609, 48.812028 ], [ 3.420847, 48.816025 ], [ 3.416612, 48.81783 ], [ 3.407443, 48.80695 ], [ 3.421146, 48.80249 ], [ 3.440934, 48.80152 ], [ 3.442604, 48.78814 ], [ 3.442195, 48.78485 ], [ 3.428538, 48.78082 ], [ 3.414979, 48.78374 ], [ 3.409984, 48.78372 ], [ 3.397144, 48.76144 ], [ 3.399831, 48.755326 ], [ 3.40936, 48.75278 ], [ 3.432915, 48.75555 ], [ 3.436595, 48.75318 ], [ 3.437315, 48.749861 ], [ 3.43681, 48.74321 ], [ 3.442735, 48.73781 ], [ 3.467396, 48.73863 ], [ 3.467051, 48.732092 ], [ 3.46675, 48.72877 ], [ 3.466954, 48.72581 ], [ 3.467159, 48.72285 ], [ 3.464601, 48.707277 ], [ 3.47762, 48.69833 ], [ 3.472543, 48.69737 ], [ 3.470957, 48.68723 ], [ 3.456628, 48.68287 ], [ 3.442698, 48.67251 ], [ 3.446181, 48.666898 ], [ 3.442561, 48.66436 ], [ 3.458809, 48.65128 ], [ 3.451091, 48.63465 ], [ 3.476594, 48.637961 ], [ 3.492289, 48.64724 ], [ 3.512619, 48.643982 ], [ 3.528071, 48.645758 ], [ 3.533236, 48.64651 ], [ 3.522656, 48.63909 ], [ 3.521163, 48.6337 ], [ 3.540941, 48.63019 ], [ 3.555754, 48.62069 ], [ 3.556545, 48.61731 ], [ 3.508636, 48.605598 ], [ 3.505274, 48.602986 ], [ 3.515219, 48.590989 ], [ 3.496646, 48.58992 ], [ 3.485304, 48.580464 ], [ 3.480668, 48.579133 ], [ 3.469023, 48.573054 ], [ 3.465516, 48.57049 ], [ 3.483775, 48.54706 ], [ 3.480919, 48.541431 ], [ 3.47562, 48.54128 ], [ 3.450707, 48.52867 ], [ 3.445941, 48.52879 ], [ 3.41464, 48.53379 ], [ 3.408474, 48.529945 ], [ 3.405398, 48.52802 ], [ 3.422267, 48.51541 ], [ 3.434924, 48.49705 ], [ 3.433434, 48.490391 ], [ 3.424335, 48.49154 ], [ 3.407523, 48.487793 ], [ 3.403747, 48.48599 ], [ 3.387681, 48.48016 ], [ 3.384094, 48.47803 ], [ 3.39732, 48.468171 ], [ 3.39689, 48.461488 ], [ 3.405714, 48.45329 ], [ 3.400909, 48.43688 ], [ 3.39673, 48.43489 ], [ 3.392493, 48.425157 ], [ 3.407194, 48.422678 ], [ 3.411833, 48.42132 ], [ 3.411362, 48.41804 ], [ 3.402286, 48.415408 ], [ 3.416642, 48.415835 ], [ 3.421938, 48.412236 ], [ 3.420872, 48.40902 ], [ 3.414792, 48.390273 ], [ 3.409931, 48.39054 ], [ 3.400207, 48.390881 ], [ 3.385095, 48.398713 ], [ 3.375408, 48.39869 ], [ 3.374142, 48.39549 ], [ 3.366319, 48.391485 ], [ 3.361191, 48.37257 ], [ 3.356091, 48.37516 ], [ 3.356559, 48.378452 ], [ 3.351685, 48.378619 ], [ 3.346315, 48.373246 ], [ 3.336538, 48.37318 ], [ 3.330117, 48.372123 ], [ 3.325478, 48.37309 ], [ 3.311856, 48.376023 ], [ 3.31069, 48.37291 ], [ 3.306018, 48.37289 ], [ 3.283175, 48.381385 ], [ 3.281618, 48.37816 ], [ 3.272179, 48.378325 ], [ 3.267473, 48.37713 ], [ 3.259611, 48.36859 ], [ 3.251021, 48.365101 ], [ 3.246859, 48.36729 ], [ 3.226483, 48.37024 ], [ 3.222216, 48.370008 ], [ 3.214496, 48.36759 ], [ 3.211304, 48.366267 ], [ 3.20445, 48.3642 ], [ 3.199658, 48.364461 ], [ 3.193763, 48.369392 ], [ 3.184941, 48.368129 ], [ 3.183373, 48.37146 ], [ 3.171808, 48.37768 ], [ 3.170015, 48.3747 ], [ 3.14485, 48.367303 ], [ 3.139869, 48.372599 ], [ 3.135759, 48.37088 ], [ 3.122467, 48.36863 ], [ 3.118385, 48.36668 ], [ 3.103418, 48.349514 ], [ 3.099602, 48.3516 ], [ 3.101066, 48.354788 ], [ 3.080611, 48.36083 ], [ 3.066702, 48.35772 ], [ 3.062057, 48.357442 ], [ 3.049451, 48.36003 ], [ 3.046276, 48.35731 ], [ 3.036773, 48.33779 ], [ 3.04226, 48.33219 ], [ 3.040571, 48.328931 ], [ 3.015685, 48.307317 ], [ 3.0171, 48.304537 ], [ 3.027469, 48.300639 ], [ 3.020051, 48.29638 ], [ 3.026761, 48.28802 ], [ 3.029739, 48.285424 ], [ 3.026961, 48.28246 ], [ 3.02476, 48.275645 ], [ 3.029261, 48.274204 ], [ 3.043708, 48.27184 ], [ 3.04757, 48.2497 ], [ 3.032696, 48.24874 ], [ 3.012819, 48.2221 ], [ 3.00599, 48.20942 ], [ 2.997119, 48.20635 ], [ 2.988961, 48.20902 ], [ 2.984587, 48.207453 ], [ 2.971666, 48.203411 ], [ 2.970958, 48.194188 ], [ 2.955416, 48.19252 ], [ 2.951461, 48.19049 ], [ 2.934749, 48.17882 ], [ 2.934241, 48.175727 ], [ 2.936314, 48.163392 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "79", "CODE_DEPT": "78", "NOM_DEPT": "YVELINES", "CODE_CHF": "646", "NOM_CHF": "VERSAILLES", "X_CHF_LIEU": "6364", "Y_CHF_LIEU": "68564", "X_CENTROID": "6149", "Y_CENTROID": "68578", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.922149, 48.4576 ], [ 1.919886, 48.447935 ], [ 1.91015, 48.44593 ], [ 1.90452, 48.440263 ], [ 1.884121, 48.44001 ], [ 1.879442, 48.44067 ], [ 1.874392, 48.44029 ], [ 1.861091, 48.44446 ], [ 1.857023, 48.446212 ], [ 1.847344, 48.446632 ], [ 1.839126, 48.458032 ], [ 1.837137, 48.46114 ], [ 1.833171, 48.46734 ], [ 1.808028, 48.46576 ], [ 1.803139, 48.46658 ], [ 1.793066, 48.48163 ], [ 1.796336, 48.484192 ], [ 1.793193, 48.4867 ], [ 1.78664, 48.49147 ], [ 1.789428, 48.49444 ], [ 1.776842, 48.51287 ], [ 1.776301, 48.52681 ], [ 1.787245, 48.553745 ], [ 1.782719, 48.553168 ], [ 1.778178, 48.55263 ], [ 1.776034, 48.55565 ], [ 1.764943, 48.56221 ], [ 1.761507, 48.57166 ], [ 1.748456, 48.57603 ], [ 1.744584, 48.574102 ], [ 1.726923, 48.572844 ], [ 1.709253, 48.57802 ], [ 1.706156, 48.58317 ], [ 1.701989, 48.585 ], [ 1.704474, 48.58816 ], [ 1.717849, 48.60739 ], [ 1.717432, 48.610572 ], [ 1.709778, 48.613386 ], [ 1.691234, 48.613301 ], [ 1.687762, 48.611094 ], [ 1.685197, 48.61328 ], [ 1.690247, 48.616951 ], [ 1.681592, 48.61905 ], [ 1.666354, 48.61371 ], [ 1.663558, 48.61641 ], [ 1.657429, 48.62156 ], [ 1.656909, 48.62809 ], [ 1.649567, 48.632276 ], [ 1.651575, 48.638129 ], [ 1.647055, 48.63968 ], [ 1.640838, 48.644889 ], [ 1.643197, 48.651294 ], [ 1.622748, 48.65032 ], [ 1.607566, 48.659618 ], [ 1.602707, 48.6631 ], [ 1.601707, 48.66644 ], [ 1.606204, 48.67912 ], [ 1.608626, 48.682058 ], [ 1.611295, 48.68846 ], [ 1.606656, 48.6892 ], [ 1.582189, 48.696059 ], [ 1.584038, 48.69902 ], [ 1.580727, 48.701349 ], [ 1.594878, 48.709316 ], [ 1.590011, 48.712875 ], [ 1.61504, 48.735306 ], [ 1.620258, 48.736006 ], [ 1.622705, 48.740154 ], [ 1.62496, 48.749031 ], [ 1.605226, 48.76059 ], [ 1.584907, 48.763298 ], [ 1.582928, 48.76756 ], [ 1.587594, 48.773611 ], [ 1.576732, 48.785167 ], [ 1.579434, 48.8089 ], [ 1.582798, 48.81092 ], [ 1.590483, 48.81733 ], [ 1.581793, 48.82982 ], [ 1.594496, 48.835696 ], [ 1.594894, 48.83914 ], [ 1.586621, 48.8432 ], [ 1.58207, 48.84421 ], [ 1.577269, 48.844361 ], [ 1.577939, 48.84776 ], [ 1.582962, 48.8575 ], [ 1.572072, 48.86392 ], [ 1.568638, 48.865845 ], [ 1.559904, 48.86712 ], [ 1.558839, 48.86425 ], [ 1.554899, 48.86573 ], [ 1.546231, 48.87244 ], [ 1.561309, 48.88784 ], [ 1.563742, 48.890629 ], [ 1.558716, 48.891369 ], [ 1.538521, 48.90668 ], [ 1.544341, 48.91079 ], [ 1.541664, 48.915754 ], [ 1.540523, 48.918483 ], [ 1.538249, 48.921693 ], [ 1.522955, 48.924887 ], [ 1.513925, 48.92181 ], [ 1.508132, 48.92724 ], [ 1.511543, 48.933506 ], [ 1.501797, 48.941057 ], [ 1.501524, 48.941054 ], [ 1.508641, 48.95044 ], [ 1.510996, 48.953574 ], [ 1.501028, 48.9535 ], [ 1.495147, 48.96608 ], [ 1.514626, 48.976113 ], [ 1.518388, 48.978363 ], [ 1.513493, 48.9785 ], [ 1.507903, 48.983773 ], [ 1.493875, 48.979353 ], [ 1.47826, 48.97925 ], [ 1.470889, 48.97482 ], [ 1.468862, 48.97777 ], [ 1.461702, 48.98886 ], [ 1.470984, 48.99111 ], [ 1.48017, 49.00224 ], [ 1.480401, 49.005562 ], [ 1.478136, 49.00823 ], [ 1.474046, 49.00969 ], [ 1.477096, 49.014801 ], [ 1.471842, 49.01863 ], [ 1.468018, 49.02031 ], [ 1.457762, 49.0263 ], [ 1.457511, 49.029696 ], [ 1.456846, 49.03643 ], [ 1.448209, 49.04485 ], [ 1.451258, 49.05133 ], [ 1.44728, 49.05351 ], [ 1.461614, 49.06337 ], [ 1.47664, 49.05363 ], [ 1.486848, 49.05176 ], [ 1.498032, 49.05866 ], [ 1.503301, 49.0591 ], [ 1.51315, 49.077873 ], [ 1.510269, 49.084285 ], [ 1.516637, 49.07992 ], [ 1.519955, 49.071113 ], [ 1.520998, 49.068132 ], [ 1.541304, 49.07318 ], [ 1.546672, 49.072591 ], [ 1.560832, 49.0704 ], [ 1.569242, 49.07413 ], [ 1.572262, 49.07681 ], [ 1.589843, 49.081684 ], [ 1.594359, 49.08275 ], [ 1.599088, 49.084067 ], [ 1.605928, 49.080694 ], [ 1.608796, 49.07789 ], [ 1.612163, 49.0733 ], [ 1.614301, 49.07118 ], [ 1.620154, 49.073924 ], [ 1.641721, 49.08092 ], [ 1.646598, 49.08132 ], [ 1.670822, 49.078911 ], [ 1.683574, 49.0738 ], [ 1.687592, 49.071847 ], [ 1.691372, 49.07013 ], [ 1.696857, 49.06536 ], [ 1.693668, 49.05668 ], [ 1.719925, 49.0473 ], [ 1.723457, 49.04498 ], [ 1.729224, 49.04859 ], [ 1.732066, 49.05042 ], [ 1.735638, 49.04868 ], [ 1.745981, 49.04812 ], [ 1.751177, 49.04823 ], [ 1.755356, 49.061067 ], [ 1.759422, 49.06328 ], [ 1.770733, 49.05778 ], [ 1.784687, 49.05735 ], [ 1.789382, 49.057862 ], [ 1.7943, 49.058199 ], [ 1.797862, 49.06922 ], [ 1.796547, 49.072232 ], [ 1.811698, 49.07405 ], [ 1.815394, 49.07641 ], [ 1.823601, 49.07667 ], [ 1.836704, 49.07162 ], [ 1.840643, 49.069339 ], [ 1.841442, 49.064787 ], [ 1.861522, 49.05901 ], [ 1.865469, 49.057472 ], [ 1.863854, 49.05437 ], [ 1.851334, 49.03336 ], [ 1.859318, 49.02977 ], [ 1.862414, 49.020159 ], [ 1.859255, 49.013969 ], [ 1.861713, 49.01412 ], [ 1.877382, 49.0191 ], [ 1.881898, 49.01954 ], [ 1.881715, 49.026141 ], [ 1.883463, 49.03262 ], [ 1.908523, 49.048024 ], [ 1.911215, 49.046843 ], [ 1.914082, 49.04583 ], [ 1.912474, 49.041612 ], [ 1.935202, 49.02456 ], [ 1.937802, 49.02178 ], [ 1.945651, 49.025137 ], [ 1.954948, 49.024535 ], [ 1.957081, 49.021801 ], [ 1.967144, 49.023201 ], [ 1.976186, 49.01957 ], [ 1.986761, 49.01998 ], [ 1.991882, 49.02101 ], [ 2.001651, 49.01281 ], [ 2.004889, 49.010076 ], [ 2.007631, 49.00824 ], [ 2.010479, 49.00584 ], [ 2.023614, 48.997901 ], [ 2.026445, 49.000703 ], [ 2.046502, 49.00185 ], [ 2.064429, 49.008208 ], [ 2.067402, 49.00632 ], [ 2.071694, 49.001709 ], [ 2.083654, 49.01178 ], [ 2.086064, 49.01465 ], [ 2.105785, 49.00948 ], [ 2.121257, 49.01849 ], [ 2.126795, 49.008687 ], [ 2.122018, 48.99852 ], [ 2.127453, 48.989052 ], [ 2.1619, 48.983165 ], [ 2.166354, 48.981478 ], [ 2.17802, 48.96685 ], [ 2.178155, 48.96351 ], [ 2.178105, 48.95977 ], [ 2.175501, 48.95519 ], [ 2.173141, 48.9533 ], [ 2.201086, 48.950186 ], [ 2.205858, 48.94974 ], [ 2.20663, 48.94119 ], [ 2.201901, 48.93713 ], [ 2.198927, 48.935252 ], [ 2.202626, 48.920996 ], [ 2.199191, 48.91897 ], [ 2.201798, 48.91362 ], [ 2.198638, 48.91148 ], [ 2.200616, 48.9088 ], [ 2.196361, 48.906951 ], [ 2.174289, 48.899067 ], [ 2.169241, 48.89574 ], [ 2.166658, 48.892656 ], [ 2.157976, 48.88047 ], [ 2.155696, 48.87725 ], [ 2.150383, 48.87111 ], [ 2.153155, 48.86915 ], [ 2.153669, 48.864415 ], [ 2.150549, 48.85846 ], [ 2.157847, 48.85049 ], [ 2.159584, 48.847557 ], [ 2.149748, 48.84657 ], [ 2.145874, 48.84017 ], [ 2.145876, 48.8367 ], [ 2.147655, 48.83121 ], [ 2.148626, 48.82848 ], [ 2.150808, 48.822474 ], [ 2.150436, 48.819396 ], [ 2.15043, 48.81895 ], [ 2.157309, 48.81465 ], [ 2.161221, 48.81272 ], [ 2.172757, 48.81522 ], [ 2.17674, 48.81399 ], [ 2.185087, 48.800075 ], [ 2.183049, 48.79724 ], [ 2.202513, 48.79834 ], [ 2.205307, 48.79546 ], [ 2.209114, 48.7868 ], [ 2.223876, 48.78449 ], [ 2.22637, 48.78151 ], [ 2.228836, 48.77489 ], [ 2.227483, 48.77163 ], [ 2.207269, 48.770318 ], [ 2.200844, 48.77488 ], [ 2.190663, 48.775037 ], [ 2.186958, 48.77264 ], [ 2.191919, 48.76686 ], [ 2.189379, 48.75345 ], [ 2.184595, 48.754929 ], [ 2.17545, 48.75773 ], [ 2.161902, 48.752595 ], [ 2.151397, 48.752818 ], [ 2.138971, 48.7466 ], [ 2.138893, 48.74312 ], [ 2.13498, 48.73714 ], [ 2.130229, 48.737438 ], [ 2.122662, 48.74107 ], [ 2.104654, 48.73798 ], [ 2.10057, 48.73586 ], [ 2.110657, 48.724053 ], [ 2.107738, 48.71747 ], [ 2.110333, 48.714381 ], [ 2.107798, 48.711565 ], [ 2.097183, 48.70052 ], [ 2.097853, 48.69403 ], [ 2.093351, 48.69581 ], [ 2.089331, 48.698041 ], [ 2.082079, 48.68545 ], [ 2.077905, 48.686394 ], [ 2.069888, 48.68879 ], [ 2.066512, 48.6869 ], [ 2.062865, 48.6872 ], [ 2.055659, 48.686787 ], [ 2.050596, 48.68729 ], [ 2.042245, 48.68035 ], [ 2.037155, 48.68013 ], [ 2.033591, 48.6775 ], [ 2.028902, 48.663742 ], [ 2.028553, 48.660618 ], [ 2.022358, 48.65785 ], [ 2.013269, 48.659574 ], [ 2.011658, 48.65358 ], [ 2.01669, 48.64444 ], [ 2.020277, 48.64209 ], [ 2.034908, 48.641464 ], [ 2.036063, 48.631803 ], [ 2.04148, 48.62654 ], [ 2.042083, 48.62618 ], [ 2.045683, 48.62372 ], [ 2.057726, 48.617295 ], [ 2.054815, 48.60796 ], [ 2.04969, 48.60783 ], [ 2.035013, 48.604852 ], [ 2.033047, 48.5982 ], [ 2.032411, 48.59517 ], [ 2.036348, 48.5898 ], [ 2.032866, 48.587446 ], [ 2.016821, 48.567424 ], [ 2.017574, 48.557597 ], [ 2.012795, 48.556595 ], [ 1.98299, 48.55683 ], [ 1.979664, 48.554336 ], [ 1.962685, 48.560487 ], [ 1.957646, 48.55964 ], [ 1.937604, 48.562218 ], [ 1.934125, 48.54865 ], [ 1.962171, 48.53509 ], [ 1.976168, 48.534236 ], [ 1.977246, 48.52759 ], [ 1.967476, 48.52574 ], [ 1.964238, 48.52785 ], [ 1.953016, 48.523454 ], [ 1.951471, 48.520112 ], [ 1.934279, 48.495776 ], [ 1.933108, 48.481424 ], [ 1.928094, 48.48046 ], [ 1.919729, 48.4766 ], [ 1.916248, 48.47023 ], [ 1.916634, 48.4633 ], [ 1.922149, 48.4576 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "80", "CODE_DEPT": "79", "NOM_DEPT": "DEUX-SEVRES", "CODE_CHF": "191", "NOM_CHF": "NIORT", "X_CHF_LIEU": "4337", "Y_CHF_LIEU": "65864", "X_CENTROID": "4459", "Y_CENTROID": "66115", "CODE_REG": "54", "NOM_REGION": "POITOU-CHARENTES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.102937, 45.96966 ], [ -0.107459, 45.97055 ], [ -0.117338, 45.97749 ], [ -0.135611, 45.978538 ], [ -0.132598, 45.987606 ], [ -0.136825, 45.98918 ], [ -0.144795, 46.00467 ], [ -0.158512, 46.00504 ], [ -0.158305, 46.0082 ], [ -0.164194, 46.012763 ], [ -0.162963, 46.01902 ], [ -0.16345, 46.02232 ], [ -0.168185, 46.026801 ], [ -0.164509, 46.03576 ], [ -0.189132, 46.02614 ], [ -0.189839, 46.02964 ], [ -0.190974, 46.04361 ], [ -0.193898, 46.05117 ], [ -0.210661, 46.045432 ], [ -0.229108, 46.04792 ], [ -0.233049, 46.048464 ], [ -0.2686, 46.056439 ], [ -0.273131, 46.05731 ], [ -0.274533, 46.067579 ], [ -0.288816, 46.085118 ], [ -0.293282, 46.086593 ], [ -0.296411, 46.0839 ], [ -0.308001, 46.078279 ], [ -0.327183, 46.0813 ], [ -0.331541, 46.08246 ], [ -0.362733, 46.075551 ], [ -0.364418, 46.07853 ], [ -0.361875, 46.084166 ], [ -0.37348, 46.09406 ], [ -0.38644, 46.096874 ], [ -0.401451, 46.084248 ], [ -0.405371, 46.086257 ], [ -0.421421, 46.09334 ], [ -0.421226, 46.1133 ], [ -0.425235, 46.1117 ], [ -0.439449, 46.1036 ], [ -0.441444, 46.094705 ], [ -0.443727, 46.097637 ], [ -0.450867, 46.101981 ], [ -0.473602, 46.104757 ], [ -0.491715, 46.10798 ], [ -0.505467, 46.10719 ], [ -0.511963, 46.11131 ], [ -0.516389, 46.112417 ], [ -0.509761, 46.116795 ], [ -0.518414, 46.124198 ], [ -0.514345, 46.12583 ], [ -0.511059, 46.12817 ], [ -0.520492, 46.1283 ], [ -0.526724, 46.132269 ], [ -0.526793, 46.135557 ], [ -0.531324, 46.13667 ], [ -0.533284, 46.139718 ], [ -0.538043, 46.14072 ], [ -0.546856, 46.143864 ], [ -0.566285, 46.143301 ], [ -0.57933, 46.14826 ], [ -0.582225, 46.142537 ], [ -0.583081, 46.13956 ], [ -0.602388, 46.14251 ], [ -0.615966, 46.13838 ], [ -0.628183, 46.143701 ], [ -0.626849, 46.15216 ], [ -0.603764, 46.15516 ], [ -0.604641, 46.158432 ], [ -0.613016, 46.16152 ], [ -0.622797, 46.16092 ], [ -0.634622, 46.16572 ], [ -0.643554, 46.16502 ], [ -0.651379, 46.16837 ], [ -0.65539, 46.169953 ], [ -0.664928, 46.18181 ], [ -0.688524, 46.18223 ], [ -0.696475, 46.192738 ], [ -0.695072, 46.195992 ], [ -0.682412, 46.19769 ], [ -0.686375, 46.20719 ], [ -0.686332, 46.213702 ], [ -0.69905, 46.22262 ], [ -0.702818, 46.22456 ], [ -0.74701, 46.24324 ], [ -0.751462, 46.24507 ], [ -0.754364, 46.251582 ], [ -0.736065, 46.267727 ], [ -0.742668, 46.27666 ], [ -0.745248, 46.27959 ], [ -0.754669, 46.302444 ], [ -0.750476, 46.304259 ], [ -0.726249, 46.303206 ], [ -0.718202, 46.30519 ], [ -0.719803, 46.314577 ], [ -0.716357, 46.31689 ], [ -0.707104, 46.318002 ], [ -0.70053, 46.322759 ], [ -0.697338, 46.325189 ], [ -0.676169, 46.31806 ], [ -0.672273, 46.316219 ], [ -0.655579, 46.3158 ], [ -0.652074, 46.317473 ], [ -0.647445, 46.3177 ], [ -0.643541, 46.31945 ], [ -0.636797, 46.324659 ], [ -0.637249, 46.334578 ], [ -0.619408, 46.33971 ], [ -0.608049, 46.34665 ], [ -0.602849, 46.359586 ], [ -0.578438, 46.356019 ], [ -0.559595, 46.36094 ], [ -0.557285, 46.364046 ], [ -0.540585, 46.38381 ], [ -0.5378, 46.38646 ], [ -0.541296, 46.38894 ], [ -0.54963, 46.3927 ], [ -0.569019, 46.39457 ], [ -0.572378, 46.40071 ], [ -0.581989, 46.40223 ], [ -0.601255, 46.41263 ], [ -0.611005, 46.413052 ], [ -0.619035, 46.39361 ], [ -0.620883, 46.39046 ], [ -0.637872, 46.3975 ], [ -0.632655, 46.403305 ], [ -0.640021, 46.415862 ], [ -0.634986, 46.429111 ], [ -0.636841, 46.43231 ], [ -0.620234, 46.439216 ], [ -0.61809, 46.448956 ], [ -0.610978, 46.45144 ], [ -0.608213, 46.454208 ], [ -0.616219, 46.46283 ], [ -0.617997, 46.47311 ], [ -0.628563, 46.479938 ], [ -0.625533, 46.49676 ], [ -0.632839, 46.501418 ], [ -0.634351, 46.504714 ], [ -0.64436, 46.51089 ], [ -0.638679, 46.519278 ], [ -0.642232, 46.52476 ], [ -0.628198, 46.528166 ], [ -0.608657, 46.52813 ], [ -0.602129, 46.53328 ], [ -0.602901, 46.53962 ], [ -0.603098, 46.542805 ], [ -0.608309, 46.56249 ], [ -0.6132, 46.562352 ], [ -0.617953, 46.5615 ], [ -0.622828, 46.57428 ], [ -0.624699, 46.57745 ], [ -0.613427, 46.58761 ], [ -0.618935, 46.592971 ], [ -0.616699, 46.59887 ], [ -0.627151, 46.6056 ], [ -0.617714, 46.61846 ], [ -0.613965, 46.620125 ], [ -0.633062, 46.636331 ], [ -0.643094, 46.637815 ], [ -0.657073, 46.633954 ], [ -0.658671, 46.640402 ], [ -0.650795, 46.644141 ], [ -0.647809, 46.656784 ], [ -0.640573, 46.661124 ], [ -0.636989, 46.663329 ], [ -0.654026, 46.67448 ], [ -0.657737, 46.67669 ], [ -0.678752, 46.686685 ], [ -0.660358, 46.69867 ], [ -0.655832, 46.700335 ], [ -0.673111, 46.720822 ], [ -0.684401, 46.72765 ], [ -0.688669, 46.725848 ], [ -0.698074, 46.735938 ], [ -0.695491, 46.74537 ], [ -0.698238, 46.751617 ], [ -0.707732, 46.74968 ], [ -0.716599, 46.752971 ], [ -0.719752, 46.75573 ], [ -0.726564, 46.76876 ], [ -0.725162, 46.78292 ], [ -0.720612, 46.78928 ], [ -0.718528, 46.79888 ], [ -0.703625, 46.80746 ], [ -0.6991, 46.808855 ], [ -0.701034, 46.8116 ], [ -0.71004, 46.82157 ], [ -0.714991, 46.82157 ], [ -0.729631, 46.821551 ], [ -0.738594, 46.82889 ], [ -0.757951, 46.83132 ], [ -0.761555, 46.833852 ], [ -0.773173, 46.840358 ], [ -0.777826, 46.84097 ], [ -0.786763, 46.851918 ], [ -0.788296, 46.854301 ], [ -0.793735, 46.857854 ], [ -0.795076, 46.86104 ], [ -0.819018, 46.881121 ], [ -0.83246, 46.88474 ], [ -0.818284, 46.902572 ], [ -0.820341, 46.908976 ], [ -0.813814, 46.91398 ], [ -0.809903, 46.91971 ], [ -0.824358, 46.921706 ], [ -0.830606, 46.93114 ], [ -0.85264, 46.93825 ], [ -0.851841, 46.9442 ], [ -0.876134, 46.945243 ], [ -0.881, 46.94647 ], [ -0.882299, 46.94988 ], [ -0.865305, 46.95284 ], [ -0.868023, 46.959361 ], [ -0.87779, 46.959141 ], [ -0.883243, 46.96852 ], [ -0.898223, 46.96807 ], [ -0.902217, 46.970315 ], [ -0.896251, 46.97468 ], [ -0.891961, 46.975827 ], [ -0.882077, 46.976295 ], [ -0.858915, 46.97047 ], [ -0.854241, 46.971586 ], [ -0.855169, 46.977938 ], [ -0.84772, 46.98615 ], [ -0.834302, 46.987512 ], [ -0.821638, 46.992845 ], [ -0.816647, 46.99306 ], [ -0.809678, 46.98819 ], [ -0.805024, 46.98945 ], [ -0.808398, 46.991895 ], [ -0.789958, 47.00245 ], [ -0.78685, 47.005107 ], [ -0.772827, 47.00336 ], [ -0.761383, 46.99305 ], [ -0.751304, 46.99227 ], [ -0.7338, 46.99708 ], [ -0.714462, 46.98599 ], [ -0.702174, 46.992164 ], [ -0.698466, 46.99456 ], [ -0.689724, 46.992716 ], [ -0.684779, 46.987998 ], [ -0.680185, 46.987658 ], [ -0.680368, 46.99324 ], [ -0.673301, 47.001866 ], [ -0.646938, 46.99426 ], [ -0.632918, 46.99693 ], [ -0.625115, 46.99334 ], [ -0.620177, 46.99336 ], [ -0.600671, 46.997541 ], [ -0.595492, 46.99791 ], [ -0.59574, 47.000642 ], [ -0.587252, 47.00613 ], [ -0.580099, 47.014899 ], [ -0.566774, 47.019836 ], [ -0.561548, 47.029506 ], [ -0.547013, 47.02875 ], [ -0.543463, 47.03511 ], [ -0.556072, 47.045618 ], [ -0.556127, 47.05925 ], [ -0.559717, 47.061701 ], [ -0.519492, 47.076037 ], [ -0.51513, 47.077937 ], [ -0.491782, 47.08285 ], [ -0.467753, 47.08341 ], [ -0.463353, 47.08187 ], [ -0.464423, 47.07614 ], [ -0.483854, 47.066538 ], [ -0.480383, 47.053638 ], [ -0.460572, 47.06835 ], [ -0.445454, 47.067681 ], [ -0.426487, 47.07224 ], [ -0.408634, 47.066493 ], [ -0.40078, 47.07077 ], [ -0.391846, 47.09188 ], [ -0.387062, 47.09239 ], [ -0.381939, 47.088554 ], [ -0.363689, 47.09253 ], [ -0.359108, 47.093536 ], [ -0.354651, 47.09465 ], [ -0.342066, 47.090237 ], [ -0.340141, 47.08727 ], [ -0.317233, 47.09127 ], [ -0.312636, 47.09205 ], [ -0.29251, 47.10061 ], [ -0.266009, 47.10295 ], [ -0.262876, 47.10548 ], [ -0.258181, 47.10028 ], [ -0.24043, 47.10508 ], [ -0.209135, 47.09591 ], [ -0.206269, 47.093193 ], [ -0.190185, 47.099648 ], [ -0.186682, 47.10534 ], [ -0.18524, 47.10842 ], [ -0.15615, 47.101591 ], [ -0.146212, 47.1027 ], [ -0.141253, 47.10365 ], [ -0.140891, 47.09676 ], [ -0.166736, 47.08099 ], [ -0.178554, 47.069792 ], [ -0.174754, 47.06752 ], [ -0.17037, 47.066071 ], [ -0.165984, 47.064596 ], [ -0.158811, 47.068883 ], [ -0.149809, 47.06965 ], [ -0.138001, 47.064342 ], [ -0.133284, 47.055549 ], [ -0.128896, 47.054236 ], [ -0.10698, 47.06354 ], [ -0.102121, 47.064806 ], [ -0.092179, 47.04135 ], [ -0.091414, 47.03789 ], [ -0.09026, 47.0327 ], [ -0.088966, 47.02759 ], [ -0.088267, 47.025046 ], [ -0.081256, 47.01302 ], [ -0.082627, 47.01004 ], [ -0.093051, 47.0085 ], [ -0.092379, 47.005294 ], [ -0.084947, 46.98863 ], [ -0.086481, 46.9853 ], [ -0.06031, 46.99443 ], [ -0.055331, 46.99464 ], [ -0.038714, 46.98928 ], [ -0.033901, 46.983537 ], [ -0.033124, 46.980251 ], [ -0.043471, 46.96926 ], [ -0.046251, 46.966516 ], [ -0.04483, 46.95952 ], [ -0.033932, 46.951992 ], [ -0.031346, 46.945284 ], [ -0.030741, 46.941777 ], [ -0.022143, 46.93811 ], [ -0.015046, 46.925268 ], [ -0.01387, 46.92187 ], [ -0.010303, 46.91142 ], [ -0.009123, 46.90792 ], [ -0.023214, 46.894689 ], [ -0.02304, 46.888062 ], [ -0.031594, 46.87675 ], [ -0.035644, 46.87494 ], [ -0.032214, 46.87234 ], [ -0.022418, 46.874095 ], [ -0.008089, 46.870425 ], [ 0.001665, 46.86249 ], [ 0.010103, 46.8586 ], [ 0.023744, 46.85394 ], [ 0.033758, 46.854076 ], [ 0.019124, 46.837669 ], [ 0.016607, 46.83496 ], [ 0.014988, 46.83457 ], [ 0.002082, 46.845 ], [ -0.007806, 46.84665 ], [ -0.025776, 46.840614 ], [ -0.035501, 46.832564 ], [ -0.04569, 46.8321 ], [ -0.045392, 46.824 ], [ -0.049092, 46.82304 ], [ -0.045274, 46.82074 ], [ -0.017515, 46.814665 ], [ -0.006895, 46.82197 ], [ -0.004126, 46.819376 ], [ 0.006922, 46.81351 ], [ 0.00403, 46.80766 ], [ -0.00706, 46.80176 ], [ -0.009554, 46.798934 ], [ -0.022661, 46.78952 ], [ -0.017718, 46.778014 ], [ -0.021874, 46.77635 ], [ -0.015765, 46.75706 ], [ -0.012665, 46.754349 ], [ -0.001918, 46.761281 ], [ 0.028176, 46.738979 ], [ 0.033065, 46.738492 ], [ 0.038065, 46.731179 ], [ 0.03675, 46.728622 ], [ 0.031902, 46.72717 ], [ 0.022859, 46.72768 ], [ 0.0073, 46.71992 ], [ 0.003784, 46.717647 ], [ -0.000478, 46.71582 ], [ 0.002659, 46.705751 ], [ 0.000092, 46.699331 ], [ -0.018356, 46.694297 ], [ -0.009606, 46.68267 ], [ -0.028872, 46.67222 ], [ -0.031657, 46.669347 ], [ -0.032044, 46.669255 ], [ -0.037853, 46.663803 ], [ -0.034129, 46.654314 ], [ -0.064752, 46.63276 ], [ -0.065814, 46.622825 ], [ -0.060919, 46.62276 ], [ -0.028191, 46.628529 ], [ -0.017205, 46.639407 ], [ -0.0049, 46.644704 ], [ 0.000427, 46.6397 ], [ -0.010066, 46.61655 ], [ 0.003187, 46.611459 ], [ 0.022855, 46.61453 ], [ 0.021688, 46.61124 ], [ 0.025803, 46.605092 ], [ 0.023996, 46.59511 ], [ 0.042719, 46.59117 ], [ 0.038232, 46.58956 ], [ 0.030598, 46.58503 ], [ 0.020517, 46.584644 ], [ -0.003315, 46.571731 ], [ -0.01011, 46.555441 ], [ 0.007113, 46.54534 ], [ -0.004934, 46.52722 ], [ -0.006269, 46.52398 ], [ -0.031351, 46.52498 ], [ -0.03118, 46.5083 ], [ -0.038793, 46.49971 ], [ -0.039234, 46.493107 ], [ -0.032175, 46.488644 ], [ -0.042535, 46.48235 ], [ -0.04326, 46.472436 ], [ -0.040101, 46.47006 ], [ -0.013593, 46.47442 ], [ -0.012533, 46.471277 ], [ -0.010466, 46.468331 ], [ -0.017852, 46.456403 ], [ -0.019244, 46.45328 ], [ -0.010582, 46.44989 ], [ -0.012776, 46.425881 ], [ -0.020218, 46.40588 ], [ -0.012697, 46.40202 ], [ -0.007707, 46.39253 ], [ -0.007997, 46.38906 ], [ 0.000448, 46.392249 ], [ 0.014669, 46.39083 ], [ 0.02244, 46.3792 ], [ 0.029944, 46.37503 ], [ 0.03422, 46.373497 ], [ 0.016604, 46.35947 ], [ 0.013848, 46.35701 ], [ 0.031407, 46.34621 ], [ 0.02302, 46.342513 ], [ 0.017389, 46.329345 ], [ 0.015099, 46.326257 ], [ 0.029354, 46.32867 ], [ 0.047162, 46.3224 ], [ 0.078218, 46.304943 ], [ 0.096931, 46.32056 ], [ 0.095524, 46.327444 ], [ 0.101365, 46.33309 ], [ 0.117942, 46.34089 ], [ 0.123317, 46.346792 ], [ 0.137598, 46.349395 ], [ 0.156198, 46.34327 ], [ 0.175249, 46.331376 ], [ 0.177369, 46.32811 ], [ 0.16595, 46.31705 ], [ 0.169492, 46.31068 ], [ 0.165, 46.305514 ], [ 0.152946, 46.304051 ], [ 0.170331, 46.284156 ], [ 0.17232, 46.278601 ], [ 0.162055, 46.26755 ], [ 0.133602, 46.266793 ], [ 0.128837, 46.26723 ], [ 0.130082, 46.264055 ], [ 0.137458, 46.244985 ], [ 0.139473, 46.240215 ], [ 0.142697, 46.23045 ], [ 0.13588, 46.22573 ], [ 0.131318, 46.226836 ], [ 0.11804, 46.213182 ], [ 0.113432, 46.21221 ], [ 0.109509, 46.18913 ], [ 0.107702, 46.18599 ], [ 0.139626, 46.1796 ], [ 0.148112, 46.17257 ], [ 0.153841, 46.160416 ], [ 0.155111, 46.157168 ], [ 0.167667, 46.15608 ], [ 0.171881, 46.15583 ], [ 0.17692, 46.15012 ], [ 0.186802, 46.14931 ], [ 0.198304, 46.159936 ], [ 0.213326, 46.159044 ], [ 0.218932, 46.15537 ], [ 0.21631, 46.14213 ], [ 0.200552, 46.12986 ], [ 0.198477, 46.126835 ], [ 0.20303, 46.12573 ], [ 0.204103, 46.12274 ], [ 0.199993, 46.117439 ], [ 0.188854, 46.11131 ], [ 0.190716, 46.104793 ], [ 0.193879, 46.09689 ], [ 0.197168, 46.09537 ], [ 0.192706, 46.094741 ], [ 0.177537, 46.08321 ], [ 0.173683, 46.0821 ], [ 0.167523, 46.084555 ], [ 0.164726, 46.08731 ], [ 0.135816, 46.104051 ], [ 0.131845, 46.1022 ], [ 0.119132, 46.09761 ], [ 0.11478, 46.09637 ], [ 0.10568, 46.097988 ], [ 0.096715, 46.10537 ], [ 0.093014, 46.10335 ], [ 0.094764, 46.100376 ], [ 0.099559, 46.09151 ], [ 0.096913, 46.088888 ], [ 0.092904, 46.090011 ], [ 0.072972, 46.0939 ], [ 0.068935, 46.09212 ], [ 0.052655, 46.08029 ], [ 0.061213, 46.07258 ], [ 0.052554, 46.069866 ], [ 0.037802, 46.06854 ], [ 0.019144, 46.052844 ], [ 0.015952, 46.0549 ], [ 0.004892, 46.059525 ], [ 0.00147, 46.057235 ], [ -0.030922, 46.05594 ], [ -0.039502, 46.053107 ], [ -0.038172, 46.04988 ], [ -0.036759, 46.04329 ], [ -0.022684, 46.02995 ], [ -0.031191, 46.021862 ], [ -0.04552, 46.020621 ], [ -0.045363, 46.01406 ], [ -0.051674, 46.00192 ], [ -0.04216, 45.99615 ], [ -0.05034, 45.98906 ], [ -0.054852, 45.98789 ], [ -0.062011, 45.979723 ], [ -0.066728, 45.98087 ], [ -0.102937, 45.96966 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "81", "CODE_DEPT": "80", "NOM_DEPT": "SOMME", "CODE_CHF": "021", "NOM_CHF": "AMIENS", "X_CHF_LIEU": "6494", "Y_CHF_LIEU": "69772", "X_CENTROID": "6481", "Y_CENTROID": "69846", "CODE_REG": "22", "NOM_REGION": "PICARDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.118652, 49.70583 ], [ 3.113319, 49.70622 ], [ 3.097274, 49.70587 ], [ 3.092566, 49.69962 ], [ 3.090193, 49.696837 ], [ 3.0792, 49.69166 ], [ 3.08332, 49.71249 ], [ 3.07844, 49.71099 ], [ 3.052435, 49.71377 ], [ 3.053997, 49.71048 ], [ 3.057579, 49.70415 ], [ 3.055323, 49.69401 ], [ 3.050281, 49.693643 ], [ 3.040503, 49.694985 ], [ 3.033486, 49.68308 ], [ 3.028305, 49.68006 ], [ 3.023736, 49.68153 ], [ 3.013408, 49.69252 ], [ 3.008325, 49.69272 ], [ 3.005222, 49.69531 ], [ 3.004392, 49.70181 ], [ 2.992366, 49.70765 ], [ 2.989983, 49.705514 ], [ 2.982405, 49.70392 ], [ 2.977431, 49.70466 ], [ 2.969691, 49.69656 ], [ 2.950191, 49.69274 ], [ 2.948747, 49.68282 ], [ 2.956076, 49.678307 ], [ 2.953004, 49.6759 ], [ 2.95329, 49.66654 ], [ 2.946497, 49.67509 ], [ 2.938476, 49.678785 ], [ 2.934781, 49.67663 ], [ 2.913415, 49.70951 ], [ 2.909734, 49.70719 ], [ 2.906863, 49.701264 ], [ 2.892294, 49.69868 ], [ 2.889739, 49.701519 ], [ 2.883796, 49.713833 ], [ 2.881704, 49.71366 ], [ 2.88318, 49.71037 ], [ 2.866199, 49.70249 ], [ 2.869074, 49.69972 ], [ 2.886762, 49.68842 ], [ 2.888424, 49.68202 ], [ 2.888795, 49.67069 ], [ 2.884609, 49.672545 ], [ 2.875527, 49.683769 ], [ 2.860636, 49.684885 ], [ 2.856765, 49.68275 ], [ 2.860329, 49.68078 ], [ 2.847449, 49.67214 ], [ 2.845141, 49.67062 ], [ 2.846658, 49.66783 ], [ 2.850149, 49.66237 ], [ 2.84335, 49.65853 ], [ 2.839634, 49.66077 ], [ 2.800429, 49.661366 ], [ 2.799495, 49.65948 ], [ 2.802349, 49.658754 ], [ 2.797732, 49.65726 ], [ 2.790333, 49.642128 ], [ 2.796333, 49.62964 ], [ 2.797412, 49.62623 ], [ 2.798614, 49.61938 ], [ 2.794973, 49.616831 ], [ 2.7905, 49.61494 ], [ 2.775992, 49.614875 ], [ 2.771722, 49.614184 ], [ 2.759687, 49.617728 ], [ 2.757555, 49.62097 ], [ 2.752944, 49.622109 ], [ 2.744352, 49.6252 ], [ 2.72521, 49.62473 ], [ 2.720402, 49.62106 ], [ 2.717068, 49.62366 ], [ 2.698296, 49.62625 ], [ 2.693622, 49.62586 ], [ 2.688934, 49.625655 ], [ 2.68783, 49.62304 ], [ 2.687363, 49.61783 ], [ 2.687078, 49.61467 ], [ 2.673979, 49.60195 ], [ 2.674102, 49.60002 ], [ 2.669194, 49.59991 ], [ 2.670723, 49.58142 ], [ 2.665993, 49.579826 ], [ 2.649629, 49.571764 ], [ 2.645208, 49.57363 ], [ 2.631943, 49.57912 ], [ 2.627794, 49.5853 ], [ 2.630769, 49.5983 ], [ 2.624482, 49.607213 ], [ 2.627046, 49.61013 ], [ 2.625948, 49.61095 ], [ 2.620704, 49.61133 ], [ 2.606249, 49.608153 ], [ 2.592678, 49.612323 ], [ 2.595904, 49.610105 ], [ 2.587559, 49.607417 ], [ 2.581595, 49.599318 ], [ 2.578709, 49.59728 ], [ 2.571632, 49.59708 ], [ 2.568938, 49.60013 ], [ 2.559162, 49.60822 ], [ 2.561697, 49.6109 ], [ 2.566469, 49.619035 ], [ 2.546494, 49.61614 ], [ 2.526593, 49.62944 ], [ 2.523867, 49.62808 ], [ 2.520903, 49.62694 ], [ 2.517447, 49.629598 ], [ 2.505375, 49.63625 ], [ 2.505507, 49.63973 ], [ 2.501306, 49.63781 ], [ 2.478123, 49.62079 ], [ 2.474051, 49.62264 ], [ 2.466812, 49.62704 ], [ 2.473367, 49.635319 ], [ 2.46896, 49.63603 ], [ 2.465564, 49.63799 ], [ 2.456753, 49.635111 ], [ 2.452897, 49.64114 ], [ 2.449166, 49.64713 ], [ 2.445587, 49.65298 ], [ 2.412372, 49.661234 ], [ 2.402178, 49.66052 ], [ 2.397808, 49.658925 ], [ 2.388916, 49.65592 ], [ 2.37391, 49.656037 ], [ 2.369307, 49.65772 ], [ 2.362066, 49.66674 ], [ 2.358328, 49.66566 ], [ 2.355011, 49.664088 ], [ 2.350234, 49.663092 ], [ 2.335226, 49.67171 ], [ 2.332295, 49.680994 ], [ 2.327508, 49.68275 ], [ 2.315517, 49.68981 ], [ 2.314607, 49.68641 ], [ 2.300514, 49.681894 ], [ 2.290579, 49.68426 ], [ 2.287811, 49.68714 ], [ 2.260268, 49.695404 ], [ 2.255913, 49.69578 ], [ 2.247169, 49.70164 ], [ 2.232463, 49.70208 ], [ 2.228579, 49.702342 ], [ 2.223633, 49.70236 ], [ 2.204975, 49.69855 ], [ 2.192036, 49.7029 ], [ 2.190164, 49.70388 ], [ 2.185361, 49.70271 ], [ 2.155584, 49.7021 ], [ 2.147203, 49.69869 ], [ 2.144646, 49.69586 ], [ 2.138188, 49.69105 ], [ 2.124042, 49.688039 ], [ 2.118952, 49.68925 ], [ 2.110949, 49.693848 ], [ 2.095049, 49.69293 ], [ 2.087716, 49.69012 ], [ 2.083263, 49.692043 ], [ 2.066362, 49.68451 ], [ 2.050939, 49.68644 ], [ 2.048708, 49.688004 ], [ 2.059015, 49.68862 ], [ 2.058855, 49.6951 ], [ 2.037942, 49.70439 ], [ 2.034015, 49.710623 ], [ 2.02882, 49.710536 ], [ 2.02847, 49.710713 ], [ 2.023351, 49.711005 ], [ 2.014066, 49.708198 ], [ 2.001826, 49.71338 ], [ 1.992926, 49.71005 ], [ 1.977685, 49.71135 ], [ 1.97147, 49.719941 ], [ 1.967105, 49.71783 ], [ 1.949092, 49.7008 ], [ 1.947314, 49.70371 ], [ 1.933066, 49.71988 ], [ 1.929088, 49.71792 ], [ 1.915707, 49.71363 ], [ 1.894761, 49.699796 ], [ 1.890205, 49.69906 ], [ 1.881046, 49.69786 ], [ 1.876809, 49.69965 ], [ 1.863471, 49.70385 ], [ 1.848986, 49.70164 ], [ 1.845561, 49.70421 ], [ 1.837961, 49.70878 ], [ 1.839607, 49.71506 ], [ 1.832154, 49.71917 ], [ 1.822305, 49.719551 ], [ 1.820558, 49.72255 ], [ 1.825215, 49.724396 ], [ 1.840662, 49.733926 ], [ 1.836526, 49.740248 ], [ 1.820456, 49.73905 ], [ 1.818059, 49.74194 ], [ 1.809602, 49.75384 ], [ 1.794776, 49.75146 ], [ 1.790529, 49.75335 ], [ 1.792246, 49.755812 ], [ 1.784845, 49.7579 ], [ 1.78333, 49.764467 ], [ 1.780929, 49.767426 ], [ 1.779601, 49.77073 ], [ 1.773681, 49.77636 ], [ 1.759249, 49.7804 ], [ 1.758369, 49.78351 ], [ 1.752718, 49.79215 ], [ 1.749904, 49.79486 ], [ 1.744387, 49.80357 ], [ 1.742319, 49.80639 ], [ 1.733854, 49.8135 ], [ 1.725711, 49.836561 ], [ 1.726224, 49.839945 ], [ 1.72535, 49.84322 ], [ 1.719039, 49.848352 ], [ 1.720039, 49.86167 ], [ 1.718728, 49.86571 ], [ 1.712859, 49.87083 ], [ 1.711815, 49.87417 ], [ 1.713912, 49.87702 ], [ 1.71209, 49.8864 ], [ 1.706178, 49.89144 ], [ 1.69702, 49.89333 ], [ 1.693304, 49.895608 ], [ 1.691652, 49.898735 ], [ 1.690784, 49.901682 ], [ 1.678647, 49.91323 ], [ 1.678451, 49.91813 ], [ 1.652181, 49.927065 ], [ 1.647729, 49.92857 ], [ 1.643494, 49.9303 ], [ 1.624556, 49.93428 ], [ 1.608454, 49.94181 ], [ 1.603803, 49.943395 ], [ 1.577978, 49.96386 ], [ 1.57439, 49.97365 ], [ 1.570107, 49.97536 ], [ 1.561275, 49.97833 ], [ 1.55751, 49.98041 ], [ 1.52695, 49.99658 ], [ 1.525236, 49.99895 ], [ 1.523615, 50.001981 ], [ 1.514481, 50.01265 ], [ 1.497761, 50.019436 ], [ 1.493091, 50.01845 ], [ 1.48632, 50.023 ], [ 1.475827, 50.03069 ], [ 1.473212, 50.033686 ], [ 1.45886, 50.03696 ], [ 1.452288, 50.041617 ], [ 1.459146, 50.062499 ], [ 1.456458, 50.063714 ], [ 1.453325, 50.06438 ], [ 1.450671, 50.06723 ], [ 1.431667, 50.07115 ], [ 1.421862, 50.069131 ], [ 1.419826, 50.06641 ], [ 1.40926, 50.05707 ], [ 1.404428, 50.05723 ], [ 1.379705, 50.065015 ], [ 1.392618, 50.075461 ], [ 1.413951, 50.08517 ], [ 1.417617, 50.087581 ], [ 1.421354, 50.08908 ], [ 1.451257, 50.10708 ], [ 1.453752, 50.109977 ], [ 1.46652, 50.13583 ], [ 1.468043, 50.13908 ], [ 1.483097, 50.17267 ], [ 1.505551, 50.19657 ], [ 1.545748, 50.214139 ], [ 1.556144, 50.216211 ], [ 1.563635, 50.21315 ], [ 1.559372, 50.210977 ], [ 1.572128, 50.199315 ], [ 1.574236, 50.19602 ], [ 1.587442, 50.19003 ], [ 1.591259, 50.187582 ], [ 1.596264, 50.18617 ], [ 1.616781, 50.19044 ], [ 1.631019, 50.18899 ], [ 1.661372, 50.179563 ], [ 1.665954, 50.17765 ], [ 1.674962, 50.17543 ], [ 1.680548, 50.180597 ], [ 1.683249, 50.18323 ], [ 1.675657, 50.19007 ], [ 1.673107, 50.192345 ], [ 1.664845, 50.211232 ], [ 1.66146, 50.21382 ], [ 1.644008, 50.21644 ], [ 1.639635, 50.21719 ], [ 1.624798, 50.21463 ], [ 1.617027, 50.21935 ], [ 1.595119, 50.243155 ], [ 1.592228, 50.256458 ], [ 1.564968, 50.25601 ], [ 1.550048, 50.26047 ], [ 1.538298, 50.28026 ], [ 1.541985, 50.305 ], [ 1.546808, 50.327952 ], [ 1.55446, 50.3586 ], [ 1.567351, 50.36335 ], [ 1.580868, 50.358878 ], [ 1.602444, 50.35982 ], [ 1.625986, 50.364336 ], [ 1.636957, 50.35362 ], [ 1.641544, 50.35215 ], [ 1.646499, 50.340077 ], [ 1.651627, 50.33981 ], [ 1.66431, 50.334533 ], [ 1.662287, 50.331458 ], [ 1.667566, 50.33074 ], [ 1.690565, 50.33969 ], [ 1.69253, 50.34291 ], [ 1.694837, 50.33888 ], [ 1.703836, 50.34304 ], [ 1.725573, 50.34572 ], [ 1.730052, 50.34782 ], [ 1.740339, 50.35452 ], [ 1.755055, 50.35705 ], [ 1.761849, 50.361608 ], [ 1.786838, 50.359656 ], [ 1.791952, 50.35946 ], [ 1.800413, 50.35955 ], [ 1.804679, 50.35961 ], [ 1.81855, 50.35223 ], [ 1.821907, 50.35029 ], [ 1.846308, 50.34361 ], [ 1.851698, 50.34291 ], [ 1.852133, 50.34107 ], [ 1.869131, 50.33447 ], [ 1.875354, 50.32273 ], [ 1.888094, 50.31806 ], [ 1.893294, 50.31817 ], [ 1.898602, 50.31592 ], [ 1.898883, 50.31333 ], [ 1.919498, 50.31259 ], [ 1.941134, 50.330674 ], [ 1.946195, 50.33149 ], [ 1.964332, 50.32122 ], [ 1.963934, 50.31805 ], [ 1.959846, 50.311618 ], [ 1.934163, 50.29938 ], [ 1.945648, 50.287747 ], [ 1.949353, 50.2862 ], [ 1.955702, 50.289557 ], [ 1.959874, 50.29049 ], [ 1.969736, 50.282455 ], [ 1.994128, 50.27572 ], [ 2.000611, 50.27243 ], [ 2.003229, 50.27038 ], [ 2.01185, 50.26797 ], [ 2.026236, 50.26955 ], [ 2.034272, 50.26619 ], [ 2.037773, 50.26406 ], [ 2.048668, 50.256771 ], [ 2.059045, 50.25537 ], [ 2.064405, 50.25562 ], [ 2.075299, 50.25116 ], [ 2.077822, 50.24873 ], [ 2.064081, 50.23752 ], [ 2.063816, 50.234456 ], [ 2.067945, 50.232978 ], [ 2.068487, 50.227091 ], [ 2.080371, 50.219413 ], [ 2.083606, 50.21697 ], [ 2.08483, 50.20422 ], [ 2.085714, 50.20102 ], [ 2.096639, 50.20663 ], [ 2.110291, 50.20449 ], [ 2.114559, 50.202862 ], [ 2.12193, 50.21029 ], [ 2.135692, 50.20745 ], [ 2.141667, 50.20246 ], [ 2.146971, 50.19327 ], [ 2.14976, 50.19043 ], [ 2.173297, 50.20789 ], [ 2.178498, 50.207293 ], [ 2.183477, 50.21002 ], [ 2.187737, 50.20968 ], [ 2.19949, 50.21241 ], [ 2.199908, 50.215175 ], [ 2.204867, 50.21395 ], [ 2.213785, 50.21736 ], [ 2.224421, 50.21736 ], [ 2.227382, 50.20861 ], [ 2.230807, 50.21063 ], [ 2.239739, 50.21317 ], [ 2.253431, 50.21468 ], [ 2.269351, 50.227649 ], [ 2.287735, 50.22135 ], [ 2.290685, 50.21858 ], [ 2.296925, 50.21371 ], [ 2.301693, 50.212957 ], [ 2.318389, 50.21915 ], [ 2.325191, 50.21593 ], [ 2.327132, 50.213098 ], [ 2.331301, 50.22172 ], [ 2.320808, 50.23284 ], [ 2.31625, 50.23139 ], [ 2.314767, 50.23442 ], [ 2.32887, 50.237219 ], [ 2.332878, 50.23908 ], [ 2.334836, 50.23706 ], [ 2.336655, 50.23499 ], [ 2.361731, 50.207078 ], [ 2.364877, 50.20728 ], [ 2.36782, 50.20802 ], [ 2.370989, 50.210888 ], [ 2.373296, 50.217769 ], [ 2.383136, 50.22576 ], [ 2.384861, 50.22541 ], [ 2.389474, 50.22476 ], [ 2.402588, 50.23322 ], [ 2.407013, 50.2343 ], [ 2.4174, 50.228295 ], [ 2.432034, 50.22777 ], [ 2.436855, 50.227263 ], [ 2.446938, 50.229347 ], [ 2.452066, 50.23021 ], [ 2.456774, 50.221929 ], [ 2.459599, 50.219552 ], [ 2.464414, 50.21423 ], [ 2.480374, 50.208121 ], [ 2.485204, 50.2078 ], [ 2.488928, 50.204861 ], [ 2.492589, 50.2025 ], [ 2.495053, 50.19955 ], [ 2.49569, 50.19456 ], [ 2.49209, 50.19369 ], [ 2.485371, 50.19134 ], [ 2.481204, 50.19124 ], [ 2.473887, 50.18865 ], [ 2.469649, 50.18738 ], [ 2.450821, 50.17852 ], [ 2.445443, 50.17925 ], [ 2.435006, 50.17962 ], [ 2.420855, 50.17464 ], [ 2.417858, 50.17386 ], [ 2.414846, 50.17311 ], [ 2.415553, 50.16998 ], [ 2.41453, 50.16417 ], [ 2.410836, 50.1632 ], [ 2.403268, 50.1648 ], [ 2.401777, 50.16201 ], [ 2.398866, 50.15642 ], [ 2.389892, 50.15519 ], [ 2.391722, 50.144852 ], [ 2.385485, 50.13942 ], [ 2.379793, 50.11919 ], [ 2.37546, 50.10926 ], [ 2.394888, 50.110193 ], [ 2.39739, 50.1065 ], [ 2.409489, 50.1012 ], [ 2.414508, 50.10065 ], [ 2.417504, 50.09138 ], [ 2.424694, 50.087668 ], [ 2.429658, 50.088185 ], [ 2.44424, 50.1142 ], [ 2.446132, 50.11744 ], [ 2.44742, 50.11975 ], [ 2.449995, 50.1244 ], [ 2.454672, 50.12855 ], [ 2.455049, 50.13118 ], [ 2.464991, 50.131731 ], [ 2.4694, 50.133645 ], [ 2.472807, 50.13516 ], [ 2.475975, 50.13686 ], [ 2.491086, 50.137662 ], [ 2.510031, 50.140747 ], [ 2.514949, 50.140821 ], [ 2.532332, 50.11508 ], [ 2.545311, 50.12092 ], [ 2.548176, 50.12382 ], [ 2.546349, 50.13609 ], [ 2.551329, 50.141704 ], [ 2.564676, 50.13824 ], [ 2.56837, 50.13596 ], [ 2.577454, 50.139103 ], [ 2.582367, 50.13804 ], [ 2.586635, 50.137365 ], [ 2.583003, 50.13214 ], [ 2.569643, 50.1226 ], [ 2.569355, 50.1204 ], [ 2.573, 50.11546 ], [ 2.575671, 50.11333 ], [ 2.590719, 50.10911 ], [ 2.592904, 50.106555 ], [ 2.611729, 50.1101 ], [ 2.626761, 50.10933 ], [ 2.630728, 50.10728 ], [ 2.630646, 50.10511 ], [ 2.635779, 50.10002 ], [ 2.644387, 50.096988 ], [ 2.647546, 50.09441 ], [ 2.653888, 50.09803 ], [ 2.656525, 50.100283 ], [ 2.669203, 50.0961 ], [ 2.672081, 50.09363 ], [ 2.682389, 50.095045 ], [ 2.691593, 50.09203 ], [ 2.701148, 50.08391 ], [ 2.703859, 50.08099 ], [ 2.715684, 50.08536 ], [ 2.718994, 50.08764 ], [ 2.715239, 50.09011 ], [ 2.697575, 50.102573 ], [ 2.703494, 50.107689 ], [ 2.71352, 50.11019 ], [ 2.707128, 50.12643 ], [ 2.725191, 50.126365 ], [ 2.72993, 50.12586 ], [ 2.74715, 50.11551 ], [ 2.749537, 50.112803 ], [ 2.763849, 50.11051 ], [ 2.77794, 50.11376 ], [ 2.780898, 50.111156 ], [ 2.778492, 50.102405 ], [ 2.778142, 50.09943 ], [ 2.781836, 50.09111 ], [ 2.77886, 50.08847 ], [ 2.774462, 50.079226 ], [ 2.764392, 50.071825 ], [ 2.7609, 50.069384 ], [ 2.763746, 50.060597 ], [ 2.745871, 50.05013 ], [ 2.742339, 50.04801 ], [ 2.748877, 50.042918 ], [ 2.752195, 50.04032 ], [ 2.775739, 50.0428 ], [ 2.780917, 50.04835 ], [ 2.79451, 50.05005 ], [ 2.795705, 50.05127 ], [ 2.804223, 50.05971 ], [ 2.807198, 50.06246 ], [ 2.8105, 50.05987 ], [ 2.82771, 50.06563 ], [ 2.831235, 50.06317 ], [ 2.837806, 50.07201 ], [ 2.85018, 50.07808 ], [ 2.855414, 50.07799 ], [ 2.854922, 50.064277 ], [ 2.856704, 50.060992 ], [ 2.860778, 50.060646 ], [ 2.864729, 50.05992 ], [ 2.876374, 50.04424 ], [ 2.869954, 50.034951 ], [ 2.859918, 50.03366 ], [ 2.853071, 50.02916 ], [ 2.855422, 50.02607 ], [ 2.856377, 50.02358 ], [ 2.871189, 50.021076 ], [ 2.878569, 50.02452 ], [ 2.875747, 50.027 ], [ 2.879144, 50.02915 ], [ 2.882694, 50.0312 ], [ 2.896167, 50.03656 ], [ 2.917016, 50.03554 ], [ 2.919557, 50.042089 ], [ 2.920175, 50.048592 ], [ 2.930726, 50.04403 ], [ 2.934866, 50.04524 ], [ 2.938699, 50.047337 ], [ 2.940021, 50.05047 ], [ 2.944091, 50.0527 ], [ 2.949406, 50.05304 ], [ 2.957679, 50.05113 ], [ 2.961795, 50.05014 ], [ 2.969176, 50.046692 ], [ 2.971536, 50.04137 ], [ 2.988758, 50.0493 ], [ 2.993849, 50.050415 ], [ 3.002692, 50.05298 ], [ 3.006835, 50.054609 ], [ 3.01197, 50.058039 ], [ 3.02193, 50.05684 ], [ 3.024914, 50.054148 ], [ 3.026241, 50.05678 ], [ 3.030412, 50.057479 ], [ 3.057637, 50.05122 ], [ 3.06154, 50.04938 ], [ 3.071427, 50.047906 ], [ 3.074492, 50.0453 ], [ 3.087305, 50.0509 ], [ 3.090254, 50.053741 ], [ 3.095776, 50.04572 ], [ 3.113001, 50.03922 ], [ 3.114299, 50.03354 ], [ 3.121506, 50.02698 ], [ 3.123578, 50.02448 ], [ 3.148926, 50.02527 ], [ 3.147359, 50.01876 ], [ 3.162556, 50.01932 ], [ 3.166994, 50.02098 ], [ 3.171212, 50.01512 ], [ 3.172707, 50.01199 ], [ 3.171404, 50.009985 ], [ 3.159159, 49.99394 ], [ 3.155683, 49.991754 ], [ 3.165045, 49.99164 ], [ 3.177706, 49.98661 ], [ 3.187671, 49.98787 ], [ 3.192523, 49.98888 ], [ 3.198541, 49.98501 ], [ 3.202722, 49.98549 ], [ 3.192717, 49.977536 ], [ 3.170413, 49.968003 ], [ 3.163644, 49.96336 ], [ 3.16214, 49.954361 ], [ 3.161614, 49.95111 ], [ 3.166553, 49.95023 ], [ 3.164916, 49.94754 ], [ 3.160361, 49.94655 ], [ 3.137879, 49.93586 ], [ 3.124664, 49.921393 ], [ 3.123668, 49.918017 ], [ 3.11762, 49.91396 ], [ 3.120118, 49.91122 ], [ 3.122607, 49.89941 ], [ 3.117858, 49.89026 ], [ 3.119134, 49.88302 ], [ 3.087836, 49.86569 ], [ 3.083196, 49.86657 ], [ 3.084962, 49.87576 ], [ 3.082604, 49.87849 ], [ 3.077501, 49.878367 ], [ 3.073939, 49.875988 ], [ 3.070905, 49.8734 ], [ 3.079469, 49.865411 ], [ 3.083057, 49.84937 ], [ 3.084399, 49.84625 ], [ 3.081738, 49.841378 ], [ 3.077623, 49.839683 ], [ 3.073663, 49.83889 ], [ 3.069341, 49.83698 ], [ 3.057068, 49.83078 ], [ 3.059037, 49.827646 ], [ 3.060006, 49.825175 ], [ 3.060722, 49.820099 ], [ 3.079039, 49.82122 ], [ 3.082605, 49.819241 ], [ 3.085004, 49.81765 ], [ 3.082321, 49.815244 ], [ 3.080299, 49.80991 ], [ 3.086135, 49.80449 ], [ 3.084245, 49.794884 ], [ 3.085933, 49.79175 ], [ 3.081379, 49.79053 ], [ 3.061329, 49.78138 ], [ 3.067381, 49.77337 ], [ 3.065338, 49.77048 ], [ 3.073808, 49.7664 ], [ 3.095114, 49.76615 ], [ 3.100454, 49.76593 ], [ 3.094682, 49.75727 ], [ 3.096772, 49.74806 ], [ 3.09936, 49.7384 ], [ 3.100671, 49.735222 ], [ 3.113653, 49.72548 ], [ 3.120398, 49.70573 ], [ 3.118652, 49.70583 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "82", "CODE_DEPT": "81", "NOM_DEPT": "TARN", "CODE_CHF": "004", "NOM_CHF": "ALBI", "X_CHF_LIEU": "6313", "Y_CHF_LIEU": "63147", "X_CENTROID": "6328", "Y_CENTROID": "62988", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.565787, 43.42296 ], [ 2.565541, 43.42291 ], [ 2.561483, 43.42096 ], [ 2.548049, 43.42465 ], [ 2.518988, 43.423716 ], [ 2.497332, 43.434287 ], [ 2.494383, 43.436937 ], [ 2.477992, 43.43643 ], [ 2.473695, 43.43651 ], [ 2.469545, 43.43535 ], [ 2.451105, 43.43223 ], [ 2.42759, 43.43449 ], [ 2.40776, 43.42522 ], [ 2.404826, 43.42244 ], [ 2.406846, 43.419255 ], [ 2.398735, 43.417051 ], [ 2.375171, 43.423 ], [ 2.371245, 43.423076 ], [ 2.367331, 43.42318 ], [ 2.363082, 43.42457 ], [ 2.348387, 43.432774 ], [ 2.313931, 43.441064 ], [ 2.304106, 43.447929 ], [ 2.299698, 43.446812 ], [ 2.284875, 43.4433 ], [ 2.281798, 43.441449 ], [ 2.268692, 43.450611 ], [ 2.265415, 43.452919 ], [ 2.263919, 43.455923 ], [ 2.258295, 43.460113 ], [ 2.256687, 43.45364 ], [ 2.243802, 43.44544 ], [ 2.241344, 43.44268 ], [ 2.239358, 43.439747 ], [ 2.235584, 43.43756 ], [ 2.222523, 43.42831 ], [ 2.223344, 43.417789 ], [ 2.229322, 43.408286 ], [ 2.215024, 43.382615 ], [ 2.211099, 43.384565 ], [ 2.184058, 43.397779 ], [ 2.170349, 43.415876 ], [ 2.156305, 43.414894 ], [ 2.138318, 43.403714 ], [ 2.133557, 43.40356 ], [ 2.130495, 43.40122 ], [ 2.111065, 43.39619 ], [ 2.108785, 43.39446 ], [ 2.104399, 43.395602 ], [ 2.095112, 43.3962 ], [ 2.091681, 43.39389 ], [ 2.085693, 43.398082 ], [ 2.077317, 43.39563 ], [ 2.072801, 43.395696 ], [ 2.068725, 43.408896 ], [ 2.053071, 43.43031 ], [ 2.033296, 43.43604 ], [ 2.029133, 43.436898 ], [ 2.02247, 43.446087 ], [ 2.014953, 43.44947 ], [ 2.019322, 43.469938 ], [ 2.021455, 43.47307 ], [ 2.025048, 43.475397 ], [ 2.039032, 43.477708 ], [ 2.044983, 43.483196 ], [ 2.04829, 43.48573 ], [ 2.045463, 43.48777 ], [ 2.048094, 43.49829 ], [ 2.042285, 43.510929 ], [ 2.03489, 43.500013 ], [ 2.016101, 43.50871 ], [ 2.012012, 43.5071 ], [ 2.012578, 43.484246 ], [ 2.009895, 43.481468 ], [ 1.996014, 43.481736 ], [ 1.987799, 43.478826 ], [ 1.973997, 43.487838 ], [ 1.957257, 43.493698 ], [ 1.952509, 43.490449 ], [ 1.948634, 43.492166 ], [ 1.92057, 43.50514 ], [ 1.917079, 43.501474 ], [ 1.891608, 43.513409 ], [ 1.889391, 43.516184 ], [ 1.887719, 43.516941 ], [ 1.873093, 43.53647 ], [ 1.876463, 43.53868 ], [ 1.880414, 43.540315 ], [ 1.876382, 43.54154 ], [ 1.86424, 43.54506 ], [ 1.859818, 43.54661 ], [ 1.850711, 43.549192 ], [ 1.85195, 43.5522 ], [ 1.849452, 43.56754 ], [ 1.839147, 43.57779 ], [ 1.826037, 43.580296 ], [ 1.821662, 43.581194 ], [ 1.810477, 43.579173 ], [ 1.802575, 43.581147 ], [ 1.798684, 43.582535 ], [ 1.79341, 43.583763 ], [ 1.775825, 43.590468 ], [ 1.772591, 43.592348 ], [ 1.772294, 43.59812 ], [ 1.76653, 43.601881 ], [ 1.762697, 43.602738 ], [ 1.762222, 43.6018 ], [ 1.745048, 43.603462 ], [ 1.744731, 43.60436 ], [ 1.742237, 43.6046 ], [ 1.74056, 43.60596 ], [ 1.723742, 43.613797 ], [ 1.723044, 43.61676 ], [ 1.719106, 43.618386 ], [ 1.706268, 43.62138 ], [ 1.698605, 43.62009 ], [ 1.687765, 43.630421 ], [ 1.690614, 43.63316 ], [ 1.691623, 43.639998 ], [ 1.702541, 43.65089 ], [ 1.724309, 43.656774 ], [ 1.730357, 43.660759 ], [ 1.730492, 43.66414 ], [ 1.720379, 43.67515 ], [ 1.718914, 43.68522 ], [ 1.720704, 43.688346 ], [ 1.716092, 43.689389 ], [ 1.663573, 43.694058 ], [ 1.663572, 43.697279 ], [ 1.664454, 43.70362 ], [ 1.661032, 43.70565 ], [ 1.665722, 43.705072 ], [ 1.678907, 43.701391 ], [ 1.692903, 43.709965 ], [ 1.702349, 43.710276 ], [ 1.706446, 43.71622 ], [ 1.703544, 43.718894 ], [ 1.693023, 43.7297 ], [ 1.688782, 43.728464 ], [ 1.679455, 43.735749 ], [ 1.659743, 43.742186 ], [ 1.657976, 43.745017 ], [ 1.650186, 43.751589 ], [ 1.651455, 43.754629 ], [ 1.655786, 43.766887 ], [ 1.651526, 43.775861 ], [ 1.643045, 43.778375 ], [ 1.642091, 43.785095 ], [ 1.648551, 43.79404 ], [ 1.646404, 43.79706 ], [ 1.644788, 43.800257 ], [ 1.625502, 43.801807 ], [ 1.588589, 43.817176 ], [ 1.59317, 43.843138 ], [ 1.591232, 43.843572 ], [ 1.576138, 43.847463 ], [ 1.572585, 43.8488 ], [ 1.57037, 43.85182 ], [ 1.555086, 43.86849 ], [ 1.555312, 43.870834 ], [ 1.561642, 43.86998 ], [ 1.564008, 43.87188 ], [ 1.556407, 43.87578 ], [ 1.559399, 43.881968 ], [ 1.550723, 43.889881 ], [ 1.547523, 43.899722 ], [ 1.555617, 43.918317 ], [ 1.565019, 43.917307 ], [ 1.56963, 43.918142 ], [ 1.573536, 43.919786 ], [ 1.573867, 43.932481 ], [ 1.572858, 43.93497 ], [ 1.57752, 43.938812 ], [ 1.57311, 43.939834 ], [ 1.565952, 43.944088 ], [ 1.538736, 43.947346 ], [ 1.539563, 43.953973 ], [ 1.535268, 43.95967 ], [ 1.543666, 43.95675 ], [ 1.5502, 43.959984 ], [ 1.552291, 43.96304 ], [ 1.566416, 43.96531 ], [ 1.589318, 43.9604 ], [ 1.618384, 43.959129 ], [ 1.622719, 43.9607 ], [ 1.621945, 43.96386 ], [ 1.618637, 43.97283 ], [ 1.627258, 43.983373 ], [ 1.634649, 43.99173 ], [ 1.637097, 43.994685 ], [ 1.64981, 43.992268 ], [ 1.654319, 43.99299 ], [ 1.657586, 43.99879 ], [ 1.651181, 44.011278 ], [ 1.660102, 44.01271 ], [ 1.664533, 44.01149 ], [ 1.66922, 44.01109 ], [ 1.672877, 44.017385 ], [ 1.689731, 44.02326 ], [ 1.700894, 44.04193 ], [ 1.704208, 44.04436 ], [ 1.693526, 44.060111 ], [ 1.680416, 44.064571 ], [ 1.666838, 44.064929 ], [ 1.66396, 44.07157 ], [ 1.669095, 44.0885 ], [ 1.656676, 44.094033 ], [ 1.653121, 44.096447 ], [ 1.654375, 44.099406 ], [ 1.652824, 44.10848 ], [ 1.658716, 44.116643 ], [ 1.661999, 44.11412 ], [ 1.671048, 44.116127 ], [ 1.689593, 44.11277 ], [ 1.703121, 44.116214 ], [ 1.722151, 44.115097 ], [ 1.722089, 44.1184 ], [ 1.733508, 44.11229 ], [ 1.746638, 44.11464 ], [ 1.765889, 44.105552 ], [ 1.773229, 44.09713 ], [ 1.777958, 44.096767 ], [ 1.781724, 44.09765 ], [ 1.792808, 44.099803 ], [ 1.787708, 44.10874 ], [ 1.80385, 44.12358 ], [ 1.805673, 44.126598 ], [ 1.809295, 44.124351 ], [ 1.825328, 44.10797 ], [ 1.834477, 44.10596 ], [ 1.83743, 44.103256 ], [ 1.836598, 44.1061 ], [ 1.840519, 44.11415 ], [ 1.838957, 44.117207 ], [ 1.830068, 44.132028 ], [ 1.836775, 44.143891 ], [ 1.841019, 44.14417 ], [ 1.846177, 44.135808 ], [ 1.850339, 44.13517 ], [ 1.864961, 44.14342 ], [ 1.882758, 44.138527 ], [ 1.891553, 44.1413 ], [ 1.903269, 44.13076 ], [ 1.914388, 44.136189 ], [ 1.918422, 44.140298 ], [ 1.91477, 44.1424 ], [ 1.894931, 44.15597 ], [ 1.909789, 44.163562 ], [ 1.919064, 44.16308 ], [ 1.922417, 44.16105 ], [ 1.932682, 44.15575 ], [ 1.941394, 44.14786 ], [ 1.955454, 44.148758 ], [ 1.968628, 44.14474 ], [ 1.983368, 44.15232 ], [ 1.990171, 44.149453 ], [ 1.999161, 44.15079 ], [ 2.003793, 44.15116 ], [ 2.008016, 44.15273 ], [ 2.03025, 44.15757 ], [ 2.027089, 44.16693 ], [ 2.03111, 44.16875 ], [ 2.058502, 44.17228 ], [ 2.051179, 44.18686 ], [ 2.063174, 44.18924 ], [ 2.067551, 44.190122 ], [ 2.075514, 44.18204 ], [ 2.093014, 44.185178 ], [ 2.096551, 44.179068 ], [ 2.104725, 44.180242 ], [ 2.107798, 44.18287 ], [ 2.103134, 44.19149 ], [ 2.109785, 44.19499 ], [ 2.114064, 44.1958 ], [ 2.128047, 44.19611 ], [ 2.135213, 44.20041 ], [ 2.144534, 44.20048 ], [ 2.149213, 44.20054 ], [ 2.152652, 44.19145 ], [ 2.158773, 44.186971 ], [ 2.15473, 44.181296 ], [ 2.15815, 44.17923 ], [ 2.17194, 44.18054 ], [ 2.18079, 44.17828 ], [ 2.182014, 44.17151 ], [ 2.191033, 44.16346 ], [ 2.199835, 44.16527 ], [ 2.205638, 44.1706 ], [ 2.223858, 44.167026 ], [ 2.237614, 44.158626 ], [ 2.216793, 44.151557 ], [ 2.211048, 44.146619 ], [ 2.201984, 44.14492 ], [ 2.193505, 44.14781 ], [ 2.182698, 44.14133 ], [ 2.188454, 44.13738 ], [ 2.191958, 44.139739 ], [ 2.224895, 44.138644 ], [ 2.23754, 44.134313 ], [ 2.261838, 44.144678 ], [ 2.28488, 44.145335 ], [ 2.288372, 44.14301 ], [ 2.297572, 44.135894 ], [ 2.290639, 44.123572 ], [ 2.307295, 44.11854 ], [ 2.32333, 44.124453 ], [ 2.332443, 44.123024 ], [ 2.340338, 44.11139 ], [ 2.348244, 44.108232 ], [ 2.351988, 44.106373 ], [ 2.355459, 44.104332 ], [ 2.357739, 44.10155 ], [ 2.384438, 44.09396 ], [ 2.389215, 44.09457 ], [ 2.389214, 44.09111 ], [ 2.399704, 44.084026 ], [ 2.410932, 44.069299 ], [ 2.41021, 44.055858 ], [ 2.456246, 44.05107 ], [ 2.460871, 44.050323 ], [ 2.46679, 44.03254 ], [ 2.46993, 44.03032 ], [ 2.484888, 44.02469 ], [ 2.491987, 44.01325 ], [ 2.495398, 44.01121 ], [ 2.495189, 44.00523 ], [ 2.491762, 44.003525 ], [ 2.494652, 43.99831 ], [ 2.494988, 43.995512 ], [ 2.498413, 43.99306 ], [ 2.501798, 43.986633 ], [ 2.523255, 43.98015 ], [ 2.523088, 43.97323 ], [ 2.52088, 43.963112 ], [ 2.51981, 43.96002 ], [ 2.503845, 43.95485 ], [ 2.499348, 43.95052 ], [ 2.499084, 43.94509 ], [ 2.508499, 43.94527 ], [ 2.537229, 43.933825 ], [ 2.536983, 43.930395 ], [ 2.553842, 43.921087 ], [ 2.552838, 43.907791 ], [ 2.551007, 43.901583 ], [ 2.550498, 43.89822 ], [ 2.552007, 43.89157 ], [ 2.576271, 43.88176 ], [ 2.57997, 43.876184 ], [ 2.578587, 43.87319 ], [ 2.567351, 43.86851 ], [ 2.56361, 43.863215 ], [ 2.564387, 43.85097 ], [ 2.561802, 43.84597 ], [ 2.590488, 43.818278 ], [ 2.593359, 43.818271 ], [ 2.596139, 43.81881 ], [ 2.599743, 43.817089 ], [ 2.598972, 43.813639 ], [ 2.609147, 43.80681 ], [ 2.613699, 43.796972 ], [ 2.624269, 43.789819 ], [ 2.629213, 43.78025 ], [ 2.632803, 43.778159 ], [ 2.656754, 43.76271 ], [ 2.659933, 43.756371 ], [ 2.68173, 43.74351 ], [ 2.695398, 43.743158 ], [ 2.700006, 43.74256 ], [ 2.713823, 43.74197 ], [ 2.740543, 43.72896 ], [ 2.77671, 43.73662 ], [ 2.781499, 43.736958 ], [ 2.789149, 43.752549 ], [ 2.814518, 43.76158 ], [ 2.823856, 43.761205 ], [ 2.835755, 43.751109 ], [ 2.853612, 43.74858 ], [ 2.858278, 43.74923 ], [ 2.858564, 43.74914 ], [ 2.862726, 43.747556 ], [ 2.870453, 43.739161 ], [ 2.902605, 43.742272 ], [ 2.906604, 43.740943 ], [ 2.921903, 43.73515 ], [ 2.919189, 43.732351 ], [ 2.925714, 43.705711 ], [ 2.934967, 43.694712 ], [ 2.919588, 43.68659 ], [ 2.918495, 43.661993 ], [ 2.907798, 43.65475 ], [ 2.90294, 43.654647 ], [ 2.884296, 43.65713 ], [ 2.86877, 43.644965 ], [ 2.844894, 43.644763 ], [ 2.828424, 43.637432 ], [ 2.814703, 43.639479 ], [ 2.804692, 43.63216 ], [ 2.801592, 43.62954 ], [ 2.795131, 43.62463 ], [ 2.781699, 43.625876 ], [ 2.759078, 43.61489 ], [ 2.754524, 43.614139 ], [ 2.746507, 43.617845 ], [ 2.738722, 43.630334 ], [ 2.719328, 43.644412 ], [ 2.687337, 43.65093 ], [ 2.684695, 43.65381 ], [ 2.667283, 43.649448 ], [ 2.653587, 43.649991 ], [ 2.649787, 43.659444 ], [ 2.645491, 43.660672 ], [ 2.627779, 43.611106 ], [ 2.615603, 43.600518 ], [ 2.620069, 43.595423 ], [ 2.62254, 43.592463 ], [ 2.627227, 43.59319 ], [ 2.631005, 43.583242 ], [ 2.617994, 43.56872 ], [ 2.616643, 43.56538 ], [ 2.655687, 43.52725 ], [ 2.667984, 43.522062 ], [ 2.67602, 43.51346 ], [ 2.671518, 43.513697 ], [ 2.658852, 43.516923 ], [ 2.659896, 43.50346 ], [ 2.655033, 43.49418 ], [ 2.657633, 43.480958 ], [ 2.665094, 43.472677 ], [ 2.668, 43.47005 ], [ 2.663624, 43.46417 ], [ 2.641583, 43.46706 ], [ 2.644608, 43.46127 ], [ 2.644567, 43.45792 ], [ 2.641062, 43.45559 ], [ 2.617661, 43.438531 ], [ 2.608845, 43.44041 ], [ 2.606095, 43.43803 ], [ 2.606371, 43.431994 ], [ 2.602191, 43.43133 ], [ 2.597996, 43.43271 ], [ 2.579276, 43.4233 ], [ 2.565787, 43.42296 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "83", "CODE_DEPT": "82", "NOM_DEPT": "TARN-ET-GARONNE", "CODE_CHF": "121", "NOM_CHF": "MONTAUBAN", "X_CHF_LIEU": "5681", "Y_CHF_LIEU": "63256", "X_CENTROID": "5624", "Y_CENTROID": "63333", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.555617, 43.918317 ], [ 1.551068, 43.917996 ], [ 1.533792, 43.9211 ], [ 1.531161, 43.911546 ], [ 1.523323, 43.9036 ], [ 1.519355, 43.90495 ], [ 1.515195, 43.905966 ], [ 1.5166, 43.902682 ], [ 1.496655, 43.888583 ], [ 1.491908, 43.888761 ], [ 1.487717, 43.901799 ], [ 1.477, 43.908293 ], [ 1.475043, 43.905574 ], [ 1.469869, 43.89748 ], [ 1.467045, 43.89463 ], [ 1.448923, 43.87032 ], [ 1.447742, 43.873506 ], [ 1.430993, 43.86945 ], [ 1.418123, 43.871875 ], [ 1.408611, 43.882826 ], [ 1.404492, 43.884602 ], [ 1.390999, 43.881577 ], [ 1.365184, 43.889574 ], [ 1.355915, 43.882531 ], [ 1.352803, 43.873951 ], [ 1.34929, 43.87193 ], [ 1.36147, 43.858077 ], [ 1.358857, 43.85248 ], [ 1.335298, 43.851245 ], [ 1.323757, 43.85668 ], [ 1.319412, 43.85807 ], [ 1.296644, 43.848173 ], [ 1.293823, 43.8456 ], [ 1.303039, 43.843916 ], [ 1.314451, 43.83313 ], [ 1.331645, 43.83748 ], [ 1.354419, 43.836432 ], [ 1.361292, 43.820486 ], [ 1.360031, 43.81721 ], [ 1.35152, 43.81709 ], [ 1.345052, 43.81335 ], [ 1.343356, 43.81053 ], [ 1.326313, 43.808515 ], [ 1.314977, 43.803066 ], [ 1.311637, 43.80084 ], [ 1.305066, 43.801166 ], [ 1.301897, 43.80031 ], [ 1.29903, 43.799785 ], [ 1.286109, 43.7972 ], [ 1.281825, 43.79625 ], [ 1.27796, 43.80162 ], [ 1.271046, 43.798075 ], [ 1.266879, 43.79862 ], [ 1.267641, 43.79521 ], [ 1.27741, 43.78895 ], [ 1.212776, 43.768242 ], [ 1.210042, 43.77107 ], [ 1.207038, 43.77735 ], [ 1.217957, 43.783755 ], [ 1.215753, 43.79027 ], [ 1.18319, 43.79407 ], [ 1.17968, 43.79581 ], [ 1.175343, 43.80439 ], [ 1.162996, 43.80882 ], [ 1.157369, 43.818329 ], [ 1.144598, 43.822298 ], [ 1.142279, 43.81561 ], [ 1.125584, 43.80915 ], [ 1.116766, 43.801 ], [ 1.115083, 43.797776 ], [ 1.10768, 43.798782 ], [ 1.105058, 43.8014 ], [ 1.105866, 43.806663 ], [ 1.097104, 43.808139 ], [ 1.083306, 43.816332 ], [ 1.082129, 43.815465 ], [ 1.062046, 43.80136 ], [ 1.059132, 43.798594 ], [ 1.044982, 43.799521 ], [ 1.036771, 43.803028 ], [ 1.000344, 43.79837 ], [ 0.995961, 43.79755 ], [ 0.987578, 43.79559 ], [ 0.982503, 43.790461 ], [ 0.980517, 43.78758 ], [ 0.956063, 43.789329 ], [ 0.953983, 43.787372 ], [ 0.942257, 43.792112 ], [ 0.924358, 43.79153 ], [ 0.918354, 43.786473 ], [ 0.905542, 43.78412 ], [ 0.897026, 43.78662 ], [ 0.897205, 43.793232 ], [ 0.906108, 43.8111 ], [ 0.914785, 43.818577 ], [ 0.924206, 43.828939 ], [ 0.925163, 43.83203 ], [ 0.920762, 43.83302 ], [ 0.895239, 43.839897 ], [ 0.89538, 43.849253 ], [ 0.908473, 43.8494 ], [ 0.912698, 43.84849 ], [ 0.911024, 43.851768 ], [ 0.900972, 43.863621 ], [ 0.886033, 43.872245 ], [ 0.882866, 43.88583 ], [ 0.883251, 43.88887 ], [ 0.900571, 43.89653 ], [ 0.904654, 43.89893 ], [ 0.901197, 43.900841 ], [ 0.889231, 43.90425 ], [ 0.888197, 43.90962 ], [ 0.883738, 43.910326 ], [ 0.875289, 43.91283 ], [ 0.864678, 43.92318 ], [ 0.856065, 43.92102 ], [ 0.85214, 43.9227 ], [ 0.850473, 43.92001 ], [ 0.849347, 43.91718 ], [ 0.845156, 43.91536 ], [ 0.819943, 43.924979 ], [ 0.818672, 43.927583 ], [ 0.809298, 43.932302 ], [ 0.770004, 43.92214 ], [ 0.767958, 43.92478 ], [ 0.760549, 43.938669 ], [ 0.760114, 43.945304 ], [ 0.783778, 43.954916 ], [ 0.785137, 43.95809 ], [ 0.790753, 43.96307 ], [ 0.792216, 43.96615 ], [ 0.797205, 43.97512 ], [ 0.8009, 43.97726 ], [ 0.805555, 43.97941 ], [ 0.808342, 43.981179 ], [ 0.809019, 43.982047 ], [ 0.824219, 43.99446 ], [ 0.825979, 44.00096 ], [ 0.825149, 44.00441 ], [ 0.823675, 44.00673 ], [ 0.817424, 44.009073 ], [ 0.822488, 44.01464 ], [ 0.81585, 44.02604 ], [ 0.819879, 44.027696 ], [ 0.824257, 44.02906 ], [ 0.841769, 44.025329 ], [ 0.848912, 44.034104 ], [ 0.857868, 44.034901 ], [ 0.860854, 44.03746 ], [ 0.86534, 44.038325 ], [ 0.861963, 44.040185 ], [ 0.853937, 44.04218 ], [ 0.850634, 44.047679 ], [ 0.836679, 44.046981 ], [ 0.822057, 44.055596 ], [ 0.813507, 44.05228 ], [ 0.811224, 44.049663 ], [ 0.797375, 44.04396 ], [ 0.764048, 44.029639 ], [ 0.760935, 44.031997 ], [ 0.756565, 44.04124 ], [ 0.757886, 44.044459 ], [ 0.758697, 44.05113 ], [ 0.753347, 44.05637 ], [ 0.752327, 44.05944 ], [ 0.750176, 44.065523 ], [ 0.741635, 44.0652 ], [ 0.737992, 44.071404 ], [ 0.739874, 44.0781 ], [ 0.747761, 44.08648 ], [ 0.748003, 44.093292 ], [ 0.754273, 44.10475 ], [ 0.773071, 44.113883 ], [ 0.775041, 44.11688 ], [ 0.78192, 44.112919 ], [ 0.795242, 44.11227 ], [ 0.798588, 44.110104 ], [ 0.793165, 44.118458 ], [ 0.797565, 44.130387 ], [ 0.795082, 44.133498 ], [ 0.787733, 44.14276 ], [ 0.796556, 44.14512 ], [ 0.820491, 44.14314 ], [ 0.855079, 44.13049 ], [ 0.857814, 44.127575 ], [ 0.869092, 44.126516 ], [ 0.880236, 44.131711 ], [ 0.883987, 44.140094 ], [ 0.892066, 44.13733 ], [ 0.894084, 44.14023 ], [ 0.888351, 44.14881 ], [ 0.888106, 44.163836 ], [ 0.889794, 44.16688 ], [ 0.890008, 44.17022 ], [ 0.882074, 44.17363 ], [ 0.870138, 44.169 ], [ 0.863912, 44.173569 ], [ 0.853632, 44.174782 ], [ 0.853675, 44.18425 ], [ 0.857793, 44.189864 ], [ 0.859687, 44.19274 ], [ 0.860992, 44.192979 ], [ 0.898525, 44.190904 ], [ 0.903111, 44.19005 ], [ 0.929239, 44.23025 ], [ 0.92851, 44.233064 ], [ 0.91909, 44.23827 ], [ 0.932795, 44.251252 ], [ 0.927782, 44.26741 ], [ 0.940855, 44.26422 ], [ 0.948841, 44.27207 ], [ 0.950788, 44.275072 ], [ 0.946024, 44.27511 ], [ 0.923515, 44.29157 ], [ 0.921475, 44.294196 ], [ 0.91643, 44.302204 ], [ 0.912026, 44.300914 ], [ 0.895067, 44.296701 ], [ 0.891142, 44.298742 ], [ 0.8838, 44.30769 ], [ 0.869445, 44.309255 ], [ 0.874884, 44.32072 ], [ 0.873272, 44.323574 ], [ 0.879503, 44.327342 ], [ 0.883328, 44.328379 ], [ 0.894805, 44.343286 ], [ 0.896113, 44.346228 ], [ 0.892011, 44.349914 ], [ 0.893363, 44.35607 ], [ 0.88732, 44.364646 ], [ 0.891334, 44.37046 ], [ 0.893959, 44.37312 ], [ 0.895341, 44.37918 ], [ 0.906666, 44.382224 ], [ 0.910846, 44.38296 ], [ 0.915224, 44.384097 ], [ 0.919845, 44.38442 ], [ 0.923647, 44.37801 ], [ 0.937285, 44.36861 ], [ 0.940563, 44.34785 ], [ 0.941254, 44.344399 ], [ 0.942382, 44.34442 ], [ 0.944146, 44.35426 ], [ 0.950506, 44.359519 ], [ 0.969794, 44.36102 ], [ 0.978586, 44.358049 ], [ 0.993497, 44.36652 ], [ 0.996705, 44.36915 ], [ 1.004384, 44.3657 ], [ 1.022266, 44.36406 ], [ 1.024678, 44.366855 ], [ 1.04722, 44.36257 ], [ 1.060473, 44.36626 ], [ 1.064084, 44.37851 ], [ 1.082963, 44.38159 ], [ 1.098001, 44.3903 ], [ 1.10233, 44.391893 ], [ 1.106685, 44.39235 ], [ 1.132478, 44.393876 ], [ 1.132599, 44.384514 ], [ 1.134424, 44.37446 ], [ 1.130922, 44.372159 ], [ 1.093797, 44.36784 ], [ 1.085842, 44.35546 ], [ 1.081223, 44.35439 ], [ 1.083658, 44.35139 ], [ 1.100694, 44.347087 ], [ 1.114707, 44.33775 ], [ 1.10939, 44.324871 ], [ 1.120364, 44.3181 ], [ 1.122866, 44.31566 ], [ 1.130534, 44.316985 ], [ 1.135027, 44.31689 ], [ 1.151415, 44.30739 ], [ 1.15957, 44.30992 ], [ 1.168975, 44.304108 ], [ 1.175529, 44.3085 ], [ 1.178986, 44.310559 ], [ 1.17746, 44.294831 ], [ 1.180887, 44.28885 ], [ 1.184412, 44.2868 ], [ 1.188983, 44.286918 ], [ 1.195068, 44.282012 ], [ 1.203287, 44.28248 ], [ 1.213001, 44.270934 ], [ 1.225198, 44.27918 ], [ 1.238265, 44.275294 ], [ 1.242612, 44.26925 ], [ 1.24419, 44.26604 ], [ 1.250491, 44.26974 ], [ 1.253224, 44.28274 ], [ 1.255351, 44.285687 ], [ 1.258367, 44.28299 ], [ 1.272716, 44.28264 ], [ 1.282704, 44.29009 ], [ 1.299992, 44.295011 ], [ 1.304016, 44.294191 ], [ 1.294544, 44.271923 ], [ 1.30288, 44.269315 ], [ 1.302983, 44.262511 ], [ 1.288709, 44.253943 ], [ 1.284393, 44.252516 ], [ 1.283518, 44.23793 ], [ 1.281318, 44.23534 ], [ 1.285965, 44.23448 ], [ 1.303104, 44.2283 ], [ 1.316172, 44.23097 ], [ 1.337985, 44.22666 ], [ 1.35715, 44.203023 ], [ 1.370509, 44.217636 ], [ 1.389259, 44.22875 ], [ 1.394161, 44.228986 ], [ 1.419793, 44.240602 ], [ 1.423051, 44.242774 ], [ 1.425752, 44.242029 ], [ 1.430319, 44.24309 ], [ 1.452071, 44.255988 ], [ 1.454513, 44.26613 ], [ 1.463113, 44.26918 ], [ 1.473534, 44.284216 ], [ 1.481934, 44.280839 ], [ 1.489859, 44.27216 ], [ 1.504077, 44.273265 ], [ 1.508952, 44.273709 ], [ 1.511915, 44.271094 ], [ 1.524087, 44.26122 ], [ 1.518156, 44.25233 ], [ 1.526928, 44.237212 ], [ 1.530026, 44.23459 ], [ 1.541735, 44.22871 ], [ 1.546054, 44.23018 ], [ 1.57292, 44.2353 ], [ 1.578933, 44.24369 ], [ 1.582443, 44.24556 ], [ 1.585916, 44.250942 ], [ 1.58079, 44.259581 ], [ 1.576671, 44.26947 ], [ 1.564456, 44.278851 ], [ 1.575434, 44.285305 ], [ 1.570705, 44.298396 ], [ 1.573875, 44.300958 ], [ 1.583253, 44.29988 ], [ 1.587527, 44.301432 ], [ 1.596701, 44.301522 ], [ 1.602525, 44.29617 ], [ 1.612038, 44.296711 ], [ 1.616652, 44.29767 ], [ 1.615631, 44.2784 ], [ 1.636036, 44.2699 ], [ 1.644042, 44.27354 ], [ 1.650018, 44.28304 ], [ 1.634017, 44.294934 ], [ 1.637352, 44.297001 ], [ 1.646736, 44.295064 ], [ 1.651059, 44.296711 ], [ 1.655897, 44.28512 ], [ 1.659487, 44.28326 ], [ 1.665366, 44.291187 ], [ 1.669676, 44.290735 ], [ 1.670328, 44.293399 ], [ 1.671104, 44.29826 ], [ 1.675551, 44.29785 ], [ 1.698485, 44.31283 ], [ 1.702321, 44.314505 ], [ 1.706266, 44.312508 ], [ 1.73309, 44.317897 ], [ 1.740904, 44.326297 ], [ 1.759546, 44.323177 ], [ 1.773271, 44.314203 ], [ 1.78237, 44.316122 ], [ 1.787993, 44.32172 ], [ 1.783485, 44.327847 ], [ 1.79125, 44.327762 ], [ 1.793744, 44.333749 ], [ 1.801818, 44.3357 ], [ 1.805975, 44.336637 ], [ 1.807251, 44.33324 ], [ 1.813143, 44.327982 ], [ 1.826465, 44.32359 ], [ 1.833702, 44.33513 ], [ 1.842695, 44.33697 ], [ 1.847231, 44.337806 ], [ 1.849722, 44.335005 ], [ 1.85629, 44.332742 ], [ 1.882083, 44.340074 ], [ 1.885627, 44.335267 ], [ 1.880816, 44.334993 ], [ 1.872421, 44.33263 ], [ 1.860483, 44.32194 ], [ 1.880166, 44.303109 ], [ 1.868779, 44.29204 ], [ 1.87319, 44.290822 ], [ 1.901391, 44.279116 ], [ 1.909854, 44.281415 ], [ 1.93638, 44.280883 ], [ 1.940271, 44.28255 ], [ 1.943413, 44.280015 ], [ 1.966238, 44.277594 ], [ 1.970633, 44.276348 ], [ 1.960638, 44.24882 ], [ 1.962021, 44.242339 ], [ 1.957699, 44.241767 ], [ 1.943065, 44.247586 ], [ 1.940187, 44.24479 ], [ 1.932163, 44.242647 ], [ 1.90835, 44.21245 ], [ 1.894638, 44.21281 ], [ 1.890347, 44.20757 ], [ 1.902943, 44.204 ], [ 1.905812, 44.19214 ], [ 1.91299, 44.18841 ], [ 1.911095, 44.185458 ], [ 1.915747, 44.18554 ], [ 1.922996, 44.18919 ], [ 1.931422, 44.187513 ], [ 1.934353, 44.17464 ], [ 1.94071, 44.16977 ], [ 1.946484, 44.18282 ], [ 1.96062, 44.184138 ], [ 1.977979, 44.179513 ], [ 1.980073, 44.176427 ], [ 1.973623, 44.171353 ], [ 1.975743, 44.16476 ], [ 1.997054, 44.15822 ], [ 1.990171, 44.149453 ], [ 1.983368, 44.15232 ], [ 1.968628, 44.14474 ], [ 1.955454, 44.148758 ], [ 1.941394, 44.14786 ], [ 1.932682, 44.15575 ], [ 1.922417, 44.16105 ], [ 1.919064, 44.16308 ], [ 1.909789, 44.163562 ], [ 1.894931, 44.15597 ], [ 1.91477, 44.1424 ], [ 1.918422, 44.140298 ], [ 1.914388, 44.136189 ], [ 1.903269, 44.13076 ], [ 1.891553, 44.1413 ], [ 1.882758, 44.138527 ], [ 1.864961, 44.14342 ], [ 1.850339, 44.13517 ], [ 1.846177, 44.135808 ], [ 1.841019, 44.14417 ], [ 1.836775, 44.143891 ], [ 1.830068, 44.132028 ], [ 1.838957, 44.117207 ], [ 1.840519, 44.11415 ], [ 1.836598, 44.1061 ], [ 1.83743, 44.103256 ], [ 1.834477, 44.10596 ], [ 1.825328, 44.10797 ], [ 1.809295, 44.124351 ], [ 1.805673, 44.126598 ], [ 1.80385, 44.12358 ], [ 1.787708, 44.10874 ], [ 1.792808, 44.099803 ], [ 1.781724, 44.09765 ], [ 1.777958, 44.096767 ], [ 1.773229, 44.09713 ], [ 1.765889, 44.105552 ], [ 1.746638, 44.11464 ], [ 1.733508, 44.11229 ], [ 1.722089, 44.1184 ], [ 1.722151, 44.115097 ], [ 1.703121, 44.116214 ], [ 1.689593, 44.11277 ], [ 1.671048, 44.116127 ], [ 1.661999, 44.11412 ], [ 1.658716, 44.116643 ], [ 1.652824, 44.10848 ], [ 1.654375, 44.099406 ], [ 1.653121, 44.096447 ], [ 1.656676, 44.094033 ], [ 1.669095, 44.0885 ], [ 1.66396, 44.07157 ], [ 1.666838, 44.064929 ], [ 1.680416, 44.064571 ], [ 1.693526, 44.060111 ], [ 1.704208, 44.04436 ], [ 1.700894, 44.04193 ], [ 1.689731, 44.02326 ], [ 1.672877, 44.017385 ], [ 1.66922, 44.01109 ], [ 1.664533, 44.01149 ], [ 1.660102, 44.01271 ], [ 1.651181, 44.011278 ], [ 1.657586, 43.99879 ], [ 1.654319, 43.99299 ], [ 1.64981, 43.992268 ], [ 1.637097, 43.994685 ], [ 1.634649, 43.99173 ], [ 1.627258, 43.983373 ], [ 1.618637, 43.97283 ], [ 1.621945, 43.96386 ], [ 1.622719, 43.9607 ], [ 1.618384, 43.959129 ], [ 1.589318, 43.9604 ], [ 1.566416, 43.96531 ], [ 1.552291, 43.96304 ], [ 1.5502, 43.959984 ], [ 1.543666, 43.95675 ], [ 1.535268, 43.95967 ], [ 1.539563, 43.953973 ], [ 1.538736, 43.947346 ], [ 1.565952, 43.944088 ], [ 1.57311, 43.939834 ], [ 1.57752, 43.938812 ], [ 1.572858, 43.93497 ], [ 1.573867, 43.932481 ], [ 1.573536, 43.919786 ], [ 1.56963, 43.918142 ], [ 1.565019, 43.917307 ], [ 1.555617, 43.918317 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "84", "CODE_DEPT": "83", "NOM_DEPT": "VAR", "CODE_CHF": "137", "NOM_CHF": "TOULON", "X_CHF_LIEU": "9386", "Y_CHF_LIEU": "62294", "X_CENTROID": "9626", "Y_CENTROID": "62658", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.933726, 43.48007 ], [ 6.924581, 43.47205 ], [ 6.92131, 43.451306 ], [ 6.894866, 43.436938 ], [ 6.893798, 43.43028 ], [ 6.890097, 43.428012 ], [ 6.874789, 43.42625 ], [ 6.864121, 43.43283 ], [ 6.858407, 43.427795 ], [ 6.8575, 43.41428 ], [ 6.854202, 43.411903 ], [ 6.841518, 43.416227 ], [ 6.836735, 43.416396 ], [ 6.827512, 43.417606 ], [ 6.787761, 43.408952 ], [ 6.766054, 43.42159 ], [ 6.763676, 43.42453 ], [ 6.759109, 43.42366 ], [ 6.746774, 43.418683 ], [ 6.735328, 43.407767 ], [ 6.729116, 43.39484 ], [ 6.730766, 43.388281 ], [ 6.714532, 43.36808 ], [ 6.718038, 43.358341 ], [ 6.713815, 43.345878 ], [ 6.686824, 43.341579 ], [ 6.682171, 43.340981 ], [ 6.668772, 43.331305 ], [ 6.665875, 43.321074 ], [ 6.668219, 43.3143 ], [ 6.632801, 43.305711 ], [ 6.625814, 43.3007 ], [ 6.62073, 43.295922 ], [ 6.585295, 43.27922 ], [ 6.585382, 43.2725 ], [ 6.586694, 43.269224 ], [ 6.584916, 43.266788 ], [ 6.590809, 43.26348 ], [ 6.594155, 43.26219 ], [ 6.619595, 43.2641 ], [ 6.623616, 43.26534 ], [ 6.643543, 43.27397 ], [ 6.663851, 43.26539 ], [ 6.675978, 43.278369 ], [ 6.696529, 43.264601 ], [ 6.688909, 43.252 ], [ 6.681031, 43.24844 ], [ 6.677776, 43.24588 ], [ 6.665308, 43.24237 ], [ 6.662453, 43.22514 ], [ 6.665254, 43.211466 ], [ 6.677862, 43.197962 ], [ 6.659517, 43.195156 ], [ 6.644396, 43.18684 ], [ 6.640826, 43.18038 ], [ 6.644069, 43.170755 ], [ 6.647, 43.16944 ], [ 6.64659, 43.167806 ], [ 6.645069, 43.16749 ], [ 6.633894, 43.171521 ], [ 6.616284, 43.16259 ], [ 6.598473, 43.18292 ], [ 6.556951, 43.188178 ], [ 6.552277, 43.187423 ], [ 6.537324, 43.178938 ], [ 6.535731, 43.165979 ], [ 6.521828, 43.1641 ], [ 6.494056, 43.150898 ], [ 6.490166, 43.15287 ], [ 6.465464, 43.15682 ], [ 6.452186, 43.154417 ], [ 6.448245, 43.15266 ], [ 6.440647, 43.144846 ], [ 6.429318, 43.150555 ], [ 6.405947, 43.14833 ], [ 6.368112, 43.13564 ], [ 6.36391, 43.12575 ], [ 6.360394, 43.11623 ], [ 6.36638, 43.092627 ], [ 6.363991, 43.08956 ], [ 6.354469, 43.08888 ], [ 6.326106, 43.092466 ], [ 6.312936, 43.106798 ], [ 6.294076, 43.108718 ], [ 6.28631, 43.111296 ], [ 6.286518, 43.114521 ], [ 6.276057, 43.12009 ], [ 6.271819, 43.12099 ], [ 6.258864, 43.120069 ], [ 6.238769, 43.113222 ], [ 6.234334, 43.11301 ], [ 6.201047, 43.115429 ], [ 6.180415, 43.106454 ], [ 6.162001, 43.09032 ], [ 6.153594, 43.073748 ], [ 6.149596, 43.052857 ], [ 6.152821, 43.03906 ], [ 6.163394, 43.030895 ], [ 6.149844, 43.027422 ], [ 6.133858, 43.034441 ], [ 6.120455, 43.032536 ], [ 6.116722, 43.034759 ], [ 6.099998, 43.028564 ], [ 6.093452, 43.03716 ], [ 6.101109, 43.04107 ], [ 6.119959, 43.039958 ], [ 6.130489, 43.04679 ], [ 6.132424, 43.057147 ], [ 6.12708, 43.07433 ], [ 6.113569, 43.0836 ], [ 6.108785, 43.083918 ], [ 6.08151, 43.087357 ], [ 6.051102, 43.07918 ], [ 6.037018, 43.0787 ], [ 6.032563, 43.07759 ], [ 6.019387, 43.080368 ], [ 6.021986, 43.09557 ], [ 5.997932, 43.104711 ], [ 5.993279, 43.104994 ], [ 5.97906, 43.10654 ], [ 5.929023, 43.104996 ], [ 5.931487, 43.115082 ], [ 5.920388, 43.12104 ], [ 5.91136, 43.11965 ], [ 5.905189, 43.114687 ], [ 5.891964, 43.117023 ], [ 5.887337, 43.116148 ], [ 5.885618, 43.117148 ], [ 5.88496, 43.104205 ], [ 5.907216, 43.10028 ], [ 5.906443, 43.093682 ], [ 5.895977, 43.082597 ], [ 5.903883, 43.078901 ], [ 5.915412, 43.084026 ], [ 5.92805, 43.080686 ], [ 5.941315, 43.0827 ], [ 5.948441, 43.078203 ], [ 5.950055, 43.07494 ], [ 5.945829, 43.069103 ], [ 5.932012, 43.071146 ], [ 5.913907, 43.067065 ], [ 5.903569, 43.07337 ], [ 5.896593, 43.07774 ], [ 5.887468, 43.07645 ], [ 5.872799, 43.067594 ], [ 5.860028, 43.049367 ], [ 5.847225, 43.04929 ], [ 5.843581, 43.047049 ], [ 5.829989, 43.049883 ], [ 5.814742, 43.06289 ], [ 5.797819, 43.069038 ], [ 5.79584, 43.072275 ], [ 5.804867, 43.08022 ], [ 5.810012, 43.093632 ], [ 5.807881, 43.100338 ], [ 5.812705, 43.106332 ], [ 5.810253, 43.113002 ], [ 5.807265, 43.11572 ], [ 5.793786, 43.113907 ], [ 5.7711, 43.1168 ], [ 5.779776, 43.132189 ], [ 5.770334, 43.13901 ], [ 5.750781, 43.13127 ], [ 5.748323, 43.134093 ], [ 5.730274, 43.13546 ], [ 5.725912, 43.136526 ], [ 5.718975, 43.14553 ], [ 5.695909, 43.145092 ], [ 5.684359, 43.156009 ], [ 5.684189, 43.1595 ], [ 5.693446, 43.16741 ], [ 5.692399, 43.174222 ], [ 5.685827, 43.17913 ], [ 5.676397, 43.178122 ], [ 5.671875, 43.17927 ], [ 5.673562, 43.181963 ], [ 5.675956, 43.190643 ], [ 5.678393, 43.21163 ], [ 5.678421, 43.215161 ], [ 5.682372, 43.235304 ], [ 5.701154, 43.23892 ], [ 5.704584, 43.241447 ], [ 5.70169, 43.246946 ], [ 5.738292, 43.26193 ], [ 5.760763, 43.267225 ], [ 5.760788, 43.27032 ], [ 5.762613, 43.282444 ], [ 5.758411, 43.283964 ], [ 5.737105, 43.302067 ], [ 5.727039, 43.317488 ], [ 5.695071, 43.31374 ], [ 5.690692, 43.312629 ], [ 5.67974, 43.31885 ], [ 5.670125, 43.318864 ], [ 5.683491, 43.32184 ], [ 5.689808, 43.330924 ], [ 5.688016, 43.340887 ], [ 5.703233, 43.35373 ], [ 5.703385, 43.35724 ], [ 5.694293, 43.365413 ], [ 5.684662, 43.39593 ], [ 5.682788, 43.399166 ], [ 5.702862, 43.408127 ], [ 5.72205, 43.40867 ], [ 5.744663, 43.402827 ], [ 5.749077, 43.401409 ], [ 5.778369, 43.41001 ], [ 5.787168, 43.417053 ], [ 5.788349, 43.420263 ], [ 5.787862, 43.42041 ], [ 5.773787, 43.421763 ], [ 5.750885, 43.434851 ], [ 5.72801, 43.46589 ], [ 5.703791, 43.482307 ], [ 5.698933, 43.48206 ], [ 5.703216, 43.49531 ], [ 5.714255, 43.50126 ], [ 5.71766, 43.535326 ], [ 5.725661, 43.55112 ], [ 5.710063, 43.553963 ], [ 5.70698, 43.55605 ], [ 5.691893, 43.56324 ], [ 5.673857, 43.56434 ], [ 5.669315, 43.564641 ], [ 5.657371, 43.575665 ], [ 5.688412, 43.58486 ], [ 5.681586, 43.61212 ], [ 5.703071, 43.64365 ], [ 5.716038, 43.647021 ], [ 5.718973, 43.649838 ], [ 5.770163, 43.66047 ], [ 5.794457, 43.660708 ], [ 5.799206, 43.659929 ], [ 5.801513, 43.673879 ], [ 5.810585, 43.68611 ], [ 5.813248, 43.68905 ], [ 5.808917, 43.690561 ], [ 5.78849, 43.69687 ], [ 5.784025, 43.703032 ], [ 5.78368, 43.716628 ], [ 5.776958, 43.721365 ], [ 5.753393, 43.724431 ], [ 5.755339, 43.72693 ], [ 5.757333, 43.729409 ], [ 5.778678, 43.752709 ], [ 5.781343, 43.75566 ], [ 5.82767, 43.74767 ], [ 5.835113, 43.743484 ], [ 5.848607, 43.72164 ], [ 5.849043, 43.71818 ], [ 5.855749, 43.723189 ], [ 5.874983, 43.72299 ], [ 5.888624, 43.72636 ], [ 5.903144, 43.735513 ], [ 5.905002, 43.75278 ], [ 5.918742, 43.75548 ], [ 5.922661, 43.757539 ], [ 5.925662, 43.755964 ], [ 5.928999, 43.7498 ], [ 5.938029, 43.74907 ], [ 5.943609, 43.725944 ], [ 5.951306, 43.721828 ], [ 5.96521, 43.7225 ], [ 5.97993, 43.71548 ], [ 5.984534, 43.71449 ], [ 5.986794, 43.698564 ], [ 5.987772, 43.69542 ], [ 6.004165, 43.688288 ], [ 6.011191, 43.675352 ], [ 6.018883, 43.67112 ], [ 6.021735, 43.668288 ], [ 6.038784, 43.679592 ], [ 6.034615, 43.692711 ], [ 6.047019, 43.69703 ], [ 6.051561, 43.697712 ], [ 6.056553, 43.700084 ], [ 6.066238, 43.70479 ], [ 6.070405, 43.704944 ], [ 6.085981, 43.71666 ], [ 6.091826, 43.7258 ], [ 6.090296, 43.728974 ], [ 6.095298, 43.72961 ], [ 6.111011, 43.745665 ], [ 6.11575, 43.74556 ], [ 6.124387, 43.738339 ], [ 6.128625, 43.73679 ], [ 6.136721, 43.73675 ], [ 6.140606, 43.737611 ], [ 6.16532, 43.74945 ], [ 6.182737, 43.762171 ], [ 6.184159, 43.76561 ], [ 6.18504, 43.768282 ], [ 6.188387, 43.77614 ], [ 6.207321, 43.79529 ], [ 6.219498, 43.799781 ], [ 6.224189, 43.79984 ], [ 6.233044, 43.798984 ], [ 6.245312, 43.80241 ], [ 6.24963, 43.80158 ], [ 6.257113, 43.7976 ], [ 6.267787, 43.778547 ], [ 6.312809, 43.7588 ], [ 6.329213, 43.746226 ], [ 6.35451, 43.736515 ], [ 6.376266, 43.7423 ], [ 6.378913, 43.739372 ], [ 6.383541, 43.734437 ], [ 6.412788, 43.762256 ], [ 6.415852, 43.79005 ], [ 6.438807, 43.7942 ], [ 6.438808, 43.797745 ], [ 6.44893, 43.793615 ], [ 6.456835, 43.79313 ], [ 6.469959, 43.797523 ], [ 6.487059, 43.79225 ], [ 6.520281, 43.806925 ], [ 6.538469, 43.795518 ], [ 6.545273, 43.782523 ], [ 6.542339, 43.77589 ], [ 6.551026, 43.78125 ], [ 6.554071, 43.783435 ], [ 6.578409, 43.795654 ], [ 6.581177, 43.79815 ], [ 6.58621, 43.802451 ], [ 6.586912, 43.80532 ], [ 6.623513, 43.804451 ], [ 6.624163, 43.797637 ], [ 6.631781, 43.78971 ], [ 6.636396, 43.788951 ], [ 6.636148, 43.78622 ], [ 6.637802, 43.78096 ], [ 6.645036, 43.77722 ], [ 6.64192, 43.771434 ], [ 6.64185, 43.768184 ], [ 6.651067, 43.76575 ], [ 6.656379, 43.752203 ], [ 6.657423, 43.74872 ], [ 6.682462, 43.757585 ], [ 6.700874, 43.75383 ], [ 6.713283, 43.743764 ], [ 6.712452, 43.740342 ], [ 6.754162, 43.737857 ], [ 6.75727, 43.727858 ], [ 6.766196, 43.72003 ], [ 6.773193, 43.69711 ], [ 6.774704, 43.693851 ], [ 6.767122, 43.68957 ], [ 6.763489, 43.683024 ], [ 6.761134, 43.665891 ], [ 6.766017, 43.66051 ], [ 6.775052, 43.6596 ], [ 6.787139, 43.646097 ], [ 6.789749, 43.643367 ], [ 6.799868, 43.628348 ], [ 6.813587, 43.6297 ], [ 6.824612, 43.623192 ], [ 6.838426, 43.61688 ], [ 6.838665, 43.6138 ], [ 6.853158, 43.6064 ], [ 6.856823, 43.60836 ], [ 6.864765, 43.605159 ], [ 6.878763, 43.60666 ], [ 6.883712, 43.6065 ], [ 6.890741, 43.60961 ], [ 6.89447, 43.61102 ], [ 6.907869, 43.59934 ], [ 6.911991, 43.59833 ], [ 6.90031, 43.58315 ], [ 6.907831, 43.570943 ], [ 6.906637, 43.56415 ], [ 6.901986, 43.564253 ], [ 6.88712, 43.551823 ], [ 6.880004, 43.53578 ], [ 6.879135, 43.532454 ], [ 6.881414, 43.529345 ], [ 6.890768, 43.527623 ], [ 6.895211, 43.521932 ], [ 6.88423, 43.502536 ], [ 6.899554, 43.496022 ], [ 6.903919, 43.495072 ], [ 6.912292, 43.492654 ], [ 6.915656, 43.48302 ], [ 6.929232, 43.48092 ], [ 6.933726, 43.48007 ] ] ], [ [ [ 6.198263, 42.982033 ], [ 6.196415, 42.983204 ], [ 6.19528, 42.988395 ], [ 6.191609, 42.99076 ], [ 6.1763, 42.996 ], [ 6.163015, 42.99925 ], [ 6.163453, 43.00077 ], [ 6.172399, 43.00626 ], [ 6.17933, 43.00786 ], [ 6.199031, 43.00172 ], [ 6.21098, 43.002905 ], [ 6.214421, 43.00523 ], [ 6.218038, 43.011839 ], [ 6.229773, 43.01048 ], [ 6.233982, 43.012261 ], [ 6.239612, 43.023883 ], [ 6.242019, 43.023279 ], [ 6.244071, 43.02004 ], [ 6.247721, 43.01775 ], [ 6.251653, 43.0041 ], [ 6.249463, 42.999183 ], [ 6.247704, 42.99799 ], [ 6.238313, 42.997153 ], [ 6.228222, 42.992983 ], [ 6.214866, 42.98984 ], [ 6.207668, 42.98295 ], [ 6.198263, 42.982033 ] ] ], [ [ [ 6.472761, 43.020037 ], [ 6.472229, 43.018326 ], [ 6.459776, 43.013992 ], [ 6.451052, 43.016856 ], [ 6.44352, 43.00779 ], [ 6.437651, 43.004997 ], [ 6.433113, 43.00873 ], [ 6.434805, 43.01555 ], [ 6.433698, 43.01715 ], [ 6.434826, 43.020445 ], [ 6.439714, 43.024457 ], [ 6.458014, 43.02845 ], [ 6.463223, 43.0382 ], [ 6.470504, 43.045209 ], [ 6.472538, 43.04618 ], [ 6.474595, 43.04712 ], [ 6.504976, 43.052608 ], [ 6.508841, 43.04853 ], [ 6.508485, 43.045282 ], [ 6.502137, 43.042806 ], [ 6.490071, 43.04219 ], [ 6.486049, 43.040223 ], [ 6.479925, 43.030635 ], [ 6.473687, 43.02525 ], [ 6.472761, 43.020037 ] ] ], [ [ [ 6.397098, 42.9928 ], [ 6.387298, 42.997801 ], [ 6.372874, 42.996922 ], [ 6.370849, 43.00154 ], [ 6.381625, 43.008403 ], [ 6.382863, 43.01174 ], [ 6.392092, 43.01307 ], [ 6.407759, 43.017903 ], [ 6.411792, 43.016389 ], [ 6.412815, 43.011271 ], [ 6.418952, 43.011751 ], [ 6.417089, 43.006994 ], [ 6.405284, 42.995846 ], [ 6.398567, 42.99422 ], [ 6.397098, 42.9928 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "85", "CODE_DEPT": "84", "NOM_DEPT": "VAUCLUSE", "CODE_CHF": "007", "NOM_CHF": "AVIGNON", "X_CHF_LIEU": "8451", "Y_CHF_LIEU": "63182", "X_CENTROID": "8753", "Y_CENTROID": "63240", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.753393, 43.724431 ], [ 5.750437, 43.721561 ], [ 5.737583, 43.71653 ], [ 5.712048, 43.69057 ], [ 5.68289, 43.69271 ], [ 5.67803, 43.69278 ], [ 5.65704, 43.685392 ], [ 5.641181, 43.672138 ], [ 5.623852, 43.66615 ], [ 5.61987, 43.66532 ], [ 5.606437, 43.658725 ], [ 5.601712, 43.65927 ], [ 5.57325, 43.661955 ], [ 5.549617, 43.659802 ], [ 5.530189, 43.6593 ], [ 5.487564, 43.668037 ], [ 5.483312, 43.669205 ], [ 5.445436, 43.67997 ], [ 5.440745, 43.68049 ], [ 5.412543, 43.692971 ], [ 5.408725, 43.69483 ], [ 5.388126, 43.70219 ], [ 5.384307, 43.70314 ], [ 5.370535, 43.709189 ], [ 5.366694, 43.71054 ], [ 5.343699, 43.71877 ], [ 5.33963, 43.72034 ], [ 5.325916, 43.729237 ], [ 5.322493, 43.731786 ], [ 5.3153, 43.736566 ], [ 5.28639, 43.74014 ], [ 5.281813, 43.74057 ], [ 5.264103, 43.744232 ], [ 5.245554, 43.747137 ], [ 5.240966, 43.747322 ], [ 5.236378, 43.74747 ], [ 5.231553, 43.747623 ], [ 5.18623, 43.735651 ], [ 5.138788, 43.752797 ], [ 5.135018, 43.75427 ], [ 5.123784, 43.758753 ], [ 5.119674, 43.76046 ], [ 5.090664, 43.77211 ], [ 5.086392, 43.77385 ], [ 5.048139, 43.789727 ], [ 5.042624, 43.8065 ], [ 5.04187, 43.809388 ], [ 5.035354, 43.820141 ], [ 5.033312, 43.823213 ], [ 4.997651, 43.84485 ], [ 4.995428, 43.84671 ], [ 4.9915, 43.85072 ], [ 4.988513, 43.853538 ], [ 4.969577, 43.869707 ], [ 4.930503, 43.88437 ], [ 4.926581, 43.886165 ], [ 4.922008, 43.886759 ], [ 4.907485, 43.88644 ], [ 4.881295, 43.901502 ], [ 4.876904, 43.903135 ], [ 4.854593, 43.910762 ], [ 4.810454, 43.91401 ], [ 4.805819, 43.91469 ], [ 4.773363, 43.919349 ], [ 4.769047, 43.919914 ], [ 4.738793, 43.923866 ], [ 4.741431, 43.92664 ], [ 4.748232, 43.931132 ], [ 4.778539, 43.93879 ], [ 4.791981, 43.952271 ], [ 4.814369, 43.964676 ], [ 4.810178, 43.977915 ], [ 4.812967, 43.988006 ], [ 4.8363, 43.985033 ], [ 4.840941, 43.98592 ], [ 4.844996, 43.992142 ], [ 4.845344, 43.995593 ], [ 4.843118, 44.00042 ], [ 4.842997, 44.00399 ], [ 4.839417, 44.014022 ], [ 4.82029, 44.01701 ], [ 4.813646, 44.03404 ], [ 4.807764, 44.03977 ], [ 4.799013, 44.04601 ], [ 4.795865, 44.04791 ], [ 4.792418, 44.049848 ], [ 4.78741, 44.054918 ], [ 4.786807, 44.064353 ], [ 4.784113, 44.067215 ], [ 4.762887, 44.07487 ], [ 4.760035, 44.078344 ], [ 4.760117, 44.08179 ], [ 4.757721, 44.087933 ], [ 4.752939, 44.08798 ], [ 4.727819, 44.07845 ], [ 4.71973, 44.085584 ], [ 4.719627, 44.088781 ], [ 4.705082, 44.10817 ], [ 4.705735, 44.1116 ], [ 4.718133, 44.14068 ], [ 4.718725, 44.152381 ], [ 4.71719, 44.159094 ], [ 4.717117, 44.1625 ], [ 4.717296, 44.16593 ], [ 4.717361, 44.169328 ], [ 4.716251, 44.176043 ], [ 4.721891, 44.18467 ], [ 4.717272, 44.18997 ], [ 4.708316, 44.191724 ], [ 4.703839, 44.197663 ], [ 4.70483, 44.201078 ], [ 4.710297, 44.206836 ], [ 4.708595, 44.2135 ], [ 4.699936, 44.216108 ], [ 4.681893, 44.211741 ], [ 4.673657, 44.21471 ], [ 4.672933, 44.2186 ], [ 4.67736, 44.234975 ], [ 4.653075, 44.25591 ], [ 4.651479, 44.259153 ], [ 4.648551, 44.26747 ], [ 4.649224, 44.27036 ], [ 4.652364, 44.29127 ], [ 4.653181, 44.294807 ], [ 4.651542, 44.32632 ], [ 4.650615, 44.329806 ], [ 4.654887, 44.32835 ], [ 4.679884, 44.320692 ], [ 4.713017, 44.320649 ], [ 4.717089, 44.325907 ], [ 4.721663, 44.326592 ], [ 4.758399, 44.32533 ], [ 4.762995, 44.3251 ], [ 4.771902, 44.317537 ], [ 4.780956, 44.31712 ], [ 4.799988, 44.303549 ], [ 4.804563, 44.303897 ], [ 4.802926, 44.280793 ], [ 4.804479, 44.27762 ], [ 4.805857, 44.27484 ], [ 4.803999, 44.26921 ], [ 4.812513, 44.258019 ], [ 4.813118, 44.24521 ], [ 4.812141, 44.242062 ], [ 4.813448, 44.23242 ], [ 4.820886, 44.228889 ], [ 4.825342, 44.22845 ], [ 4.853171, 44.244366 ], [ 4.857094, 44.24599 ], [ 4.876029, 44.260266 ], [ 4.88025, 44.26177 ], [ 4.896965, 44.26441 ], [ 4.901283, 44.26428 ], [ 4.903477, 44.259478 ], [ 4.927221, 44.26211 ], [ 4.932031, 44.26245 ], [ 4.941528, 44.26941 ], [ 4.967555, 44.277726 ], [ 4.971688, 44.279426 ], [ 4.985462, 44.285517 ], [ 4.989594, 44.28577 ], [ 5.002729, 44.28537 ], [ 5.013072, 44.291074 ], [ 5.01715, 44.292242 ], [ 5.024772, 44.296784 ], [ 5.0295, 44.29789 ], [ 5.056515, 44.3054 ], [ 5.060245, 44.307614 ], [ 5.073922, 44.286944 ], [ 5.076512, 44.284086 ], [ 5.086471, 44.283933 ], [ 5.109641, 44.280367 ], [ 5.149503, 44.30066 ], [ 5.153262, 44.31015 ], [ 5.161976, 44.313387 ], [ 5.166434, 44.314857 ], [ 5.168839, 44.314125 ], [ 5.172827, 44.30821 ], [ 5.169743, 44.30201 ], [ 5.170106, 44.298738 ], [ 5.168429, 44.292243 ], [ 5.150647, 44.281877 ], [ 5.147458, 44.26917 ], [ 5.160531, 44.26562 ], [ 5.162089, 44.248948 ], [ 5.161548, 44.245591 ], [ 5.158751, 44.24287 ], [ 5.151814, 44.238308 ], [ 5.150007, 44.235237 ], [ 5.163507, 44.226355 ], [ 5.167913, 44.225304 ], [ 5.175606, 44.22087 ], [ 5.208775, 44.21442 ], [ 5.23815, 44.21323 ], [ 5.240446, 44.23083 ], [ 5.244512, 44.230707 ], [ 5.248536, 44.23112 ], [ 5.252657, 44.23113 ], [ 5.256509, 44.23006 ], [ 5.276283, 44.22099 ], [ 5.280668, 44.219796 ], [ 5.291804, 44.214647 ], [ 5.299429, 44.206924 ], [ 5.303298, 44.20539 ], [ 5.303624, 44.208799 ], [ 5.317996, 44.208794 ], [ 5.335726, 44.20431 ], [ 5.35579, 44.213599 ], [ 5.372391, 44.206686 ], [ 5.37667, 44.20513 ], [ 5.380358, 44.202911 ], [ 5.384529, 44.20119 ], [ 5.383188, 44.19907 ], [ 5.381281, 44.192382 ], [ 5.38665, 44.17927 ], [ 5.383201, 44.158797 ], [ 5.383241, 44.155285 ], [ 5.39695, 44.152338 ], [ 5.415834, 44.154652 ], [ 5.422917, 44.150039 ], [ 5.431059, 44.15151 ], [ 5.435756, 44.152249 ], [ 5.436695, 44.14207 ], [ 5.443033, 44.13795 ], [ 5.447571, 44.136758 ], [ 5.451161, 44.12113 ], [ 5.454716, 44.11923 ], [ 5.493838, 44.115436 ], [ 5.498788, 44.11572 ], [ 5.49816, 44.073267 ], [ 5.501567, 44.06694 ], [ 5.503023, 44.06371 ], [ 5.517337, 44.06347 ], [ 5.540038, 44.068458 ], [ 5.544501, 44.06967 ], [ 5.542776, 44.02435 ], [ 5.519542, 43.993959 ], [ 5.514257, 43.976792 ], [ 5.51317, 43.97336 ], [ 5.507972, 43.9578 ], [ 5.511577, 43.94852 ], [ 5.512674, 43.9454 ], [ 5.525213, 43.946861 ], [ 5.541171, 43.940828 ], [ 5.544992, 43.939055 ], [ 5.562939, 43.94245 ], [ 5.567633, 43.94264 ], [ 5.569475, 43.939544 ], [ 5.583383, 43.915913 ], [ 5.60656, 43.91608 ], [ 5.591367, 43.890674 ], [ 5.59029, 43.887233 ], [ 5.572737, 43.863508 ], [ 5.561328, 43.85746 ], [ 5.557468, 43.855458 ], [ 5.548657, 43.84789 ], [ 5.544566, 43.817233 ], [ 5.547911, 43.816398 ], [ 5.551256, 43.81722 ], [ 5.563903, 43.820867 ], [ 5.571883, 43.82934 ], [ 5.599493, 43.82714 ], [ 5.627694, 43.830792 ], [ 5.631373, 43.82857 ], [ 5.643087, 43.826927 ], [ 5.646917, 43.826104 ], [ 5.650596, 43.82525 ], [ 5.654445, 43.825111 ], [ 5.657024, 43.81851 ], [ 5.670121, 43.80872 ], [ 5.674483, 43.80736 ], [ 5.684298, 43.789453 ], [ 5.690681, 43.785127 ], [ 5.695001, 43.78421 ], [ 5.705321, 43.779587 ], [ 5.713558, 43.78112 ], [ 5.716274, 43.756931 ], [ 5.748017, 43.74148 ], [ 5.757333, 43.729409 ], [ 5.755339, 43.72693 ], [ 5.753393, 43.724431 ] ] ], [ [ [ 4.89291, 44.36483 ], [ 4.893313, 44.367873 ], [ 4.903708, 44.37276 ], [ 4.907085, 44.374631 ], [ 4.911091, 44.384728 ], [ 4.910162, 44.39515 ], [ 4.918515, 44.407785 ], [ 4.948766, 44.41664 ], [ 4.951931, 44.41915 ], [ 4.955663, 44.420251 ], [ 4.959697, 44.42027 ], [ 4.970846, 44.430129 ], [ 4.984073, 44.42318 ], [ 4.98861, 44.4232 ], [ 5.006196, 44.41172 ], [ 5.013923, 44.415627 ], [ 5.01876, 44.415979 ], [ 5.017716, 44.407138 ], [ 5.013498, 44.405441 ], [ 5.018616, 44.392588 ], [ 5.032759, 44.390896 ], [ 5.0476, 44.38212 ], [ 5.070882, 44.383225 ], [ 5.072028, 44.37851 ], [ 5.07032, 44.37645 ], [ 5.066647, 44.37419 ], [ 5.053313, 44.36483 ], [ 5.025072, 44.360998 ], [ 5.021478, 44.344352 ], [ 5.009006, 44.33377 ], [ 5.013335, 44.325655 ], [ 4.997298, 44.31837 ], [ 4.992205, 44.31262 ], [ 4.987018, 44.292719 ], [ 4.983551, 44.29503 ], [ 4.921836, 44.308797 ], [ 4.917099, 44.3085 ], [ 4.889463, 44.304019 ], [ 4.891209, 44.30711 ], [ 4.890664, 44.313723 ], [ 4.882096, 44.32532 ], [ 4.895328, 44.33806 ], [ 4.891418, 44.340065 ], [ 4.87911, 44.34537 ], [ 4.869527, 44.34508 ], [ 4.873588, 44.351022 ], [ 4.892057, 44.36146 ], [ 4.89291, 44.36483 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "86", "CODE_DEPT": "85", "NOM_DEPT": "VENDEE", "CODE_CHF": "191", "NOM_CHF": "LA ROCHE-SUR-YON", "X_CHF_LIEU": "3616", "Y_CHF_LIEU": "66283", "X_CENTROID": "3724", "Y_CENTROID": "66280", "CODE_REG": "52", "NOM_REGION": "PAYS-DE-LA-LOIRE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.129404, 46.310277 ], [ -1.14485, 46.314576 ], [ -1.14801, 46.316598 ], [ -1.159802, 46.32243 ], [ -1.163774, 46.32434 ], [ -1.169668, 46.31954 ], [ -1.19737, 46.315393 ], [ -1.202044, 46.316086 ], [ -1.195946, 46.300567 ], [ -1.207092, 46.286142 ], [ -1.207608, 46.28287 ], [ -1.211879, 46.280906 ], [ -1.206537, 46.27149 ], [ -1.210155, 46.26983 ], [ -1.223728, 46.27486 ], [ -1.265424, 46.2999 ], [ -1.299067, 46.322537 ], [ -1.303407, 46.320624 ], [ -1.295244, 46.29708 ], [ -1.278243, 46.28881 ], [ -1.283298, 46.28825 ], [ -1.297512, 46.2915 ], [ -1.300917, 46.29427 ], [ -1.324029, 46.328085 ], [ -1.341475, 46.341048 ], [ -1.350964, 46.343779 ], [ -1.355165, 46.345837 ], [ -1.364669, 46.347926 ], [ -1.371781, 46.34599 ], [ -1.355758, 46.34201 ], [ -1.353404, 46.339429 ], [ -1.372921, 46.34315 ], [ -1.398041, 46.34089 ], [ -1.421946, 46.346637 ], [ -1.440193, 46.341039 ], [ -1.465388, 46.34276 ], [ -1.471553, 46.34807 ], [ -1.479711, 46.368461 ], [ -1.481596, 46.37174 ], [ -1.505168, 46.39939 ], [ -1.537968, 46.409242 ], [ -1.543127, 46.408883 ], [ -1.550666, 46.405462 ], [ -1.564277, 46.40685 ], [ -1.619316, 46.413011 ], [ -1.651348, 46.422831 ], [ -1.649013, 46.42588 ], [ -1.648817, 46.429411 ], [ -1.706677, 46.449995 ], [ -1.714284, 46.45903 ], [ -1.724147, 46.459277 ], [ -1.75946, 46.4774 ], [ -1.761022, 46.48064 ], [ -1.769978, 46.48896 ], [ -1.78275, 46.4943 ], [ -1.792481, 46.493406 ], [ -1.799923, 46.48907 ], [ -1.812599, 46.494319 ], [ -1.818351, 46.5146 ], [ -1.818474, 46.518059 ], [ -1.846336, 46.58133 ], [ -1.847696, 46.584699 ], [ -1.856094, 46.6084 ], [ -1.870706, 46.617787 ], [ -1.875722, 46.627587 ], [ -1.898379, 46.64126 ], [ -1.91975, 46.66867 ], [ -1.922682, 46.671525 ], [ -1.941714, 46.6917 ], [ -1.954849, 46.694687 ], [ -1.95974, 46.69397 ], [ -1.968936, 46.69416 ], [ -1.977774, 46.70302 ], [ -1.982924, 46.72026 ], [ -2.054992, 46.772112 ], [ -2.058248, 46.77492 ], [ -2.138629, 46.816391 ], [ -2.141989, 46.81897 ], [ -2.146519, 46.857634 ], [ -2.154597, 46.88816 ], [ -2.12029, 46.892216 ], [ -2.109842, 46.899484 ], [ -2.118898, 46.90212 ], [ -2.116728, 46.90895 ], [ -2.090021, 46.93013 ], [ -2.074534, 46.93785 ], [ -2.071213, 46.93517 ], [ -2.072749, 46.94184 ], [ -2.057905, 46.951572 ], [ -2.045238, 46.96689 ], [ -2.044643, 46.9804 ], [ -2.028141, 47.009568 ], [ -1.983312, 47.025994 ], [ -1.980414, 47.028906 ], [ -1.97631, 47.02875 ], [ -1.972218, 47.028584 ], [ -1.943608, 46.99512 ], [ -1.938925, 46.99351 ], [ -1.9177, 46.992375 ], [ -1.915735, 46.97558 ], [ -1.890506, 46.958676 ], [ -1.871782, 46.9531 ], [ -1.846398, 46.954154 ], [ -1.827145, 46.95098 ], [ -1.825555, 46.94764 ], [ -1.829087, 46.934702 ], [ -1.832106, 46.93209 ], [ -1.797702, 46.92798 ], [ -1.787902, 46.929422 ], [ -1.779732, 46.92533 ], [ -1.755205, 46.92969 ], [ -1.750245, 46.93049 ], [ -1.742287, 46.920974 ], [ -1.745423, 46.918905 ], [ -1.737883, 46.91399 ], [ -1.736259, 46.911526 ], [ -1.738078, 46.90541 ], [ -1.732279, 46.89028 ], [ -1.729528, 46.88771 ], [ -1.715256, 46.884724 ], [ -1.690948, 46.89007 ], [ -1.668471, 46.87659 ], [ -1.664178, 46.874703 ], [ -1.650611, 46.878914 ], [ -1.640486, 46.87849 ], [ -1.613571, 46.87321 ], [ -1.609602, 46.87123 ], [ -1.600872, 46.872968 ], [ -1.57794, 46.86509 ], [ -1.548511, 46.86008 ], [ -1.546259, 46.873021 ], [ -1.536755, 46.875263 ], [ -1.526798, 46.873833 ], [ -1.500595, 46.8834 ], [ -1.504373, 46.89292 ], [ -1.526956, 46.90574 ], [ -1.543341, 46.92252 ], [ -1.545933, 46.925477 ], [ -1.526616, 46.92525 ], [ -1.519976, 46.937781 ], [ -1.544151, 46.95829 ], [ -1.542958, 46.96165 ], [ -1.554272, 46.97865 ], [ -1.551626, 46.98494 ], [ -1.550895, 46.991422 ], [ -1.543644, 47.003775 ], [ -1.554425, 47.014983 ], [ -1.534341, 47.023431 ], [ -1.519996, 47.02567 ], [ -1.504315, 47.03909 ], [ -1.499845, 47.040689 ], [ -1.495824, 47.041505 ], [ -1.48279, 47.03833 ], [ -1.480637, 47.035431 ], [ -1.47313, 47.03112 ], [ -1.474979, 47.02161 ], [ -1.465618, 46.99933 ], [ -1.462869, 46.996532 ], [ -1.462634, 46.99002 ], [ -1.472223, 46.98741 ], [ -1.475681, 46.98113 ], [ -1.472347, 46.97079 ], [ -1.458498, 46.95623 ], [ -1.470196, 46.93622 ], [ -1.471736, 46.933189 ], [ -1.462548, 46.92666 ], [ -1.458268, 46.925838 ], [ -1.415448, 46.94435 ], [ -1.390452, 46.94803 ], [ -1.377802, 46.953769 ], [ -1.373372, 46.95208 ], [ -1.36616, 46.95669 ], [ -1.367089, 46.96623 ], [ -1.360369, 46.971094 ], [ -1.359059, 46.98113 ], [ -1.375472, 46.98889 ], [ -1.364064, 47.003777 ], [ -1.365391, 47.007144 ], [ -1.366917, 47.017366 ], [ -1.375944, 47.02966 ], [ -1.362682, 47.03983 ], [ -1.347471, 47.039471 ], [ -1.345721, 47.04573 ], [ -1.336458, 47.044069 ], [ -1.317961, 47.034303 ], [ -1.303526, 47.03438 ], [ -1.298726, 47.03471 ], [ -1.299588, 47.04404 ], [ -1.287282, 47.058313 ], [ -1.290826, 47.06721 ], [ -1.290343, 47.07042 ], [ -1.286754, 47.0764 ], [ -1.274855, 47.0803 ], [ -1.272681, 47.08317 ], [ -1.267884, 47.084269 ], [ -1.248522, 47.06856 ], [ -1.229934, 47.06376 ], [ -1.21686, 47.05349 ], [ -1.209355, 47.04962 ], [ -1.196769, 47.039766 ], [ -1.148571, 47.029554 ], [ -1.131994, 47.02297 ], [ -1.127501, 47.021456 ], [ -1.095473, 47.014782 ], [ -1.09057, 47.01532 ], [ -1.087586, 47.01316 ], [ -1.083305, 47.01268 ], [ -1.074205, 47.00947 ], [ -1.064663, 47.01069 ], [ -1.05132, 47.005892 ], [ -1.020849, 47.004984 ], [ -1.01611, 47.003644 ], [ -1.005048, 47.01849 ], [ -1.002264, 47.02129 ], [ -0.986265, 47.012964 ], [ -0.977324, 47.014336 ], [ -0.959132, 46.99812 ], [ -0.93682, 47.004376 ], [ -0.934878, 47.00756 ], [ -0.914903, 46.99544 ], [ -0.901294, 46.99144 ], [ -0.893938, 46.97896 ], [ -0.891961, 46.975827 ], [ -0.896251, 46.97468 ], [ -0.902217, 46.970315 ], [ -0.898223, 46.96807 ], [ -0.883243, 46.96852 ], [ -0.87779, 46.959141 ], [ -0.868023, 46.959361 ], [ -0.865305, 46.95284 ], [ -0.882299, 46.94988 ], [ -0.881, 46.94647 ], [ -0.876134, 46.945243 ], [ -0.851841, 46.9442 ], [ -0.85264, 46.93825 ], [ -0.830606, 46.93114 ], [ -0.824358, 46.921706 ], [ -0.809903, 46.91971 ], [ -0.813814, 46.91398 ], [ -0.820341, 46.908976 ], [ -0.818284, 46.902572 ], [ -0.83246, 46.88474 ], [ -0.819018, 46.881121 ], [ -0.795076, 46.86104 ], [ -0.793735, 46.857854 ], [ -0.788296, 46.854301 ], [ -0.786763, 46.851918 ], [ -0.777826, 46.84097 ], [ -0.773173, 46.840358 ], [ -0.761555, 46.833852 ], [ -0.757951, 46.83132 ], [ -0.738594, 46.82889 ], [ -0.729631, 46.821551 ], [ -0.714991, 46.82157 ], [ -0.71004, 46.82157 ], [ -0.701034, 46.8116 ], [ -0.6991, 46.808855 ], [ -0.703625, 46.80746 ], [ -0.718528, 46.79888 ], [ -0.720612, 46.78928 ], [ -0.725162, 46.78292 ], [ -0.726564, 46.76876 ], [ -0.719752, 46.75573 ], [ -0.716599, 46.752971 ], [ -0.707732, 46.74968 ], [ -0.698238, 46.751617 ], [ -0.695491, 46.74537 ], [ -0.698074, 46.735938 ], [ -0.688669, 46.725848 ], [ -0.684401, 46.72765 ], [ -0.673111, 46.720822 ], [ -0.655832, 46.700335 ], [ -0.660358, 46.69867 ], [ -0.678752, 46.686685 ], [ -0.657737, 46.67669 ], [ -0.654026, 46.67448 ], [ -0.636989, 46.663329 ], [ -0.640573, 46.661124 ], [ -0.647809, 46.656784 ], [ -0.650795, 46.644141 ], [ -0.658671, 46.640402 ], [ -0.657073, 46.633954 ], [ -0.643094, 46.637815 ], [ -0.633062, 46.636331 ], [ -0.613965, 46.620125 ], [ -0.617714, 46.61846 ], [ -0.627151, 46.6056 ], [ -0.616699, 46.59887 ], [ -0.618935, 46.592971 ], [ -0.613427, 46.58761 ], [ -0.624699, 46.57745 ], [ -0.622828, 46.57428 ], [ -0.617953, 46.5615 ], [ -0.6132, 46.562352 ], [ -0.608309, 46.56249 ], [ -0.603098, 46.542805 ], [ -0.602901, 46.53962 ], [ -0.602129, 46.53328 ], [ -0.608657, 46.52813 ], [ -0.628198, 46.528166 ], [ -0.642232, 46.52476 ], [ -0.638679, 46.519278 ], [ -0.64436, 46.51089 ], [ -0.634351, 46.504714 ], [ -0.632839, 46.501418 ], [ -0.625533, 46.49676 ], [ -0.628563, 46.479938 ], [ -0.617997, 46.47311 ], [ -0.616219, 46.46283 ], [ -0.608213, 46.454208 ], [ -0.610978, 46.45144 ], [ -0.61809, 46.448956 ], [ -0.620234, 46.439216 ], [ -0.636841, 46.43231 ], [ -0.634986, 46.429111 ], [ -0.640021, 46.415862 ], [ -0.632655, 46.403305 ], [ -0.637872, 46.3975 ], [ -0.620883, 46.39046 ], [ -0.619035, 46.39361 ], [ -0.611005, 46.413052 ], [ -0.601255, 46.41263 ], [ -0.581989, 46.40223 ], [ -0.572378, 46.40071 ], [ -0.569019, 46.39457 ], [ -0.54963, 46.3927 ], [ -0.541296, 46.38894 ], [ -0.5378, 46.38646 ], [ -0.540585, 46.38381 ], [ -0.557285, 46.364046 ], [ -0.559595, 46.36094 ], [ -0.578438, 46.356019 ], [ -0.602849, 46.359586 ], [ -0.608049, 46.34665 ], [ -0.619408, 46.33971 ], [ -0.637249, 46.334578 ], [ -0.636797, 46.324659 ], [ -0.643541, 46.31945 ], [ -0.647445, 46.3177 ], [ -0.652074, 46.317473 ], [ -0.655579, 46.3158 ], [ -0.672273, 46.316219 ], [ -0.676169, 46.31806 ], [ -0.697338, 46.325189 ], [ -0.70053, 46.322759 ], [ -0.707104, 46.318002 ], [ -0.716357, 46.31689 ], [ -0.719803, 46.314577 ], [ -0.718202, 46.30519 ], [ -0.726249, 46.303206 ], [ -0.750476, 46.304259 ], [ -0.753457, 46.306946 ], [ -0.775833, 46.318467 ], [ -0.780848, 46.31836 ], [ -0.792868, 46.32433 ], [ -0.802811, 46.32529 ], [ -0.807126, 46.331371 ], [ -0.797727, 46.33845 ], [ -0.803746, 46.34246 ], [ -0.81117, 46.338043 ], [ -0.82541, 46.336366 ], [ -0.828389, 46.339133 ], [ -0.836394, 46.34136 ], [ -0.846813, 46.33422 ], [ -0.8449, 46.324612 ], [ -0.848986, 46.31833 ], [ -0.863019, 46.31914 ], [ -0.860811, 46.32547 ], [ -0.86853, 46.325489 ], [ -0.870267, 46.322455 ], [ -0.886848, 46.326704 ], [ -0.88904, 46.32386 ], [ -0.895424, 46.31685 ], [ -0.912086, 46.312749 ], [ -0.915043, 46.31553 ], [ -0.933937, 46.31264 ], [ -0.958784, 46.32337 ], [ -0.943732, 46.336965 ], [ -0.93546, 46.356762 ], [ -0.93423, 46.360113 ], [ -0.932977, 46.362969 ], [ -0.927338, 46.370935 ], [ -0.951491, 46.361103 ], [ -0.964513, 46.3654 ], [ -0.966979, 46.362233 ], [ -0.978339, 46.3512 ], [ -1.017639, 46.35301 ], [ -1.05072, 46.34326 ], [ -1.053688, 46.349578 ], [ -1.055237, 46.346413 ], [ -1.073337, 46.326877 ], [ -1.080064, 46.322326 ], [ -1.078144, 46.319257 ], [ -1.095328, 46.31378 ], [ -1.1141, 46.316999 ], [ -1.117434, 46.32324 ], [ -1.121791, 46.3232 ], [ -1.123946, 46.31469 ], [ -1.129404, 46.310277 ] ] ], [ [ [ -2.301813, 46.989743 ], [ -2.301866, 46.99672 ], [ -2.29304, 47.00947 ], [ -2.301975, 47.02494 ], [ -2.276196, 47.027689 ], [ -2.260655, 47.02774 ], [ -2.255562, 47.027071 ], [ -2.23947, 47.01832 ], [ -2.224866, 47.01479 ], [ -2.220012, 47.008663 ], [ -2.219389, 46.99786 ], [ -2.223402, 46.99218 ], [ -2.242135, 46.99565 ], [ -2.246804, 46.994029 ], [ -2.234451, 46.99339 ], [ -2.234263, 46.97813 ], [ -2.232543, 46.975079 ], [ -2.222546, 46.97462 ], [ -2.19175, 46.962822 ], [ -2.187332, 46.96115 ], [ -2.160233, 46.95119 ], [ -2.149786, 46.939054 ], [ -2.150312, 46.90037 ], [ -2.152163, 46.897 ], [ -2.162589, 46.90473 ], [ -2.179251, 46.93434 ], [ -2.194495, 46.948613 ], [ -2.198075, 46.951177 ], [ -2.201718, 46.9537 ], [ -2.221958, 46.964732 ], [ -2.242603, 46.964913 ], [ -2.255007, 46.95869 ], [ -2.267264, 46.963959 ], [ -2.284562, 46.98178 ], [ -2.297644, 46.987579 ], [ -2.301813, 46.989743 ] ] ], [ [ [ -2.304793, 46.709424 ], [ -2.297019, 46.705046 ], [ -2.285959, 46.695341 ], [ -2.283506, 46.69224 ], [ -2.282903, 46.690491 ], [ -2.286363, 46.689664 ], [ -2.290098, 46.692054 ], [ -2.312454, 46.695216 ], [ -2.316916, 46.691093 ], [ -2.330215, 46.686026 ], [ -2.332654, 46.68549 ], [ -2.33331, 46.68723 ], [ -2.343371, 46.6927 ], [ -2.350769, 46.69165 ], [ -2.364988, 46.69538 ], [ -2.371376, 46.700809 ], [ -2.380857, 46.699714 ], [ -2.382384, 46.704796 ], [ -2.392909, 46.70998 ], [ -2.394348, 46.71152 ], [ -2.397488, 46.71617 ], [ -2.3982, 46.71805 ], [ -2.398815, 46.7233 ], [ -2.397846, 46.72491 ], [ -2.395634, 46.725887 ], [ -2.388471, 46.7279 ], [ -2.383211, 46.73163 ], [ -2.3808, 46.732469 ], [ -2.373113, 46.732775 ], [ -2.348115, 46.728321 ], [ -2.339132, 46.720004 ], [ -2.318904, 46.719266 ], [ -2.31084, 46.71236 ], [ -2.306086, 46.71097 ], [ -2.304793, 46.709424 ] ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "87", "CODE_DEPT": "86", "NOM_DEPT": "VIENNE", "CODE_CHF": "194", "NOM_CHF": "POITIERS", "X_CHF_LIEU": "4959", "Y_CHF_LIEU": "66123", "X_CENTROID": "5055", "Y_CENTROID": "66102", "CODE_REG": "54", "NOM_REGION": "POITOU-CHARENTES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.823433, 46.12859 ], [ 0.820243, 46.131277 ], [ 0.80827, 46.136812 ], [ 0.78519, 46.13106 ], [ 0.747883, 46.13872 ], [ 0.729218, 46.135069 ], [ 0.725123, 46.136321 ], [ 0.712339, 46.13896 ], [ 0.711895, 46.13842 ], [ 0.710923, 46.135026 ], [ 0.707183, 46.129 ], [ 0.685596, 46.12073 ], [ 0.676447, 46.11253 ], [ 0.687453, 46.097255 ], [ 0.682508, 46.097208 ], [ 0.648819, 46.094659 ], [ 0.640102, 46.09169 ], [ 0.620563, 46.093178 ], [ 0.613616, 46.08856 ], [ 0.608968, 46.08974 ], [ 0.607706, 46.08661 ], [ 0.607353, 46.07778 ], [ 0.59568, 46.07266 ], [ 0.594834, 46.075725 ], [ 0.590854, 46.08116 ], [ 0.574107, 46.07813 ], [ 0.563209, 46.08915 ], [ 0.553329, 46.09004 ], [ 0.539973, 46.085558 ], [ 0.538878, 46.088904 ], [ 0.536932, 46.095619 ], [ 0.521014, 46.11261 ], [ 0.504334, 46.11933 ], [ 0.508685, 46.13194 ], [ 0.504155, 46.13298 ], [ 0.495224, 46.135284 ], [ 0.486249, 46.12808 ], [ 0.472303, 46.130136 ], [ 0.47028, 46.12707 ], [ 0.46296, 46.11136 ], [ 0.455705, 46.1069 ], [ 0.451133, 46.108004 ], [ 0.446452, 46.103655 ], [ 0.443259, 46.10157 ], [ 0.448793, 46.09619 ], [ 0.445706, 46.09352 ], [ 0.447431, 46.08704 ], [ 0.466899, 46.087455 ], [ 0.475703, 46.08467 ], [ 0.474218, 46.07445 ], [ 0.478007, 46.06833 ], [ 0.480651, 46.06543 ], [ 0.471089, 46.06677 ], [ 0.466101, 46.06097 ], [ 0.446351, 46.051235 ], [ 0.413287, 46.04909 ], [ 0.41227, 46.05227 ], [ 0.402776, 46.06313 ], [ 0.398446, 46.06466 ], [ 0.389851, 46.06712 ], [ 0.381784, 46.063385 ], [ 0.35306, 46.065061 ], [ 0.349208, 46.06388 ], [ 0.345021, 46.06375 ], [ 0.340403, 46.06448 ], [ 0.322525, 46.06241 ], [ 0.314395, 46.06509 ], [ 0.31087, 46.062545 ], [ 0.291331, 46.05955 ], [ 0.276888, 46.061085 ], [ 0.273541, 46.06724 ], [ 0.256425, 46.0787 ], [ 0.242206, 46.080836 ], [ 0.234946, 46.085381 ], [ 0.232986, 46.08753 ], [ 0.22668, 46.09008 ], [ 0.223643, 46.09252 ], [ 0.197168, 46.09537 ], [ 0.193879, 46.09689 ], [ 0.190716, 46.104793 ], [ 0.188854, 46.11131 ], [ 0.199993, 46.117439 ], [ 0.204103, 46.12274 ], [ 0.20303, 46.12573 ], [ 0.198477, 46.126835 ], [ 0.200552, 46.12986 ], [ 0.21631, 46.14213 ], [ 0.218932, 46.15537 ], [ 0.213326, 46.159044 ], [ 0.198304, 46.159936 ], [ 0.186802, 46.14931 ], [ 0.17692, 46.15012 ], [ 0.171881, 46.15583 ], [ 0.167667, 46.15608 ], [ 0.155111, 46.157168 ], [ 0.153841, 46.160416 ], [ 0.148112, 46.17257 ], [ 0.139626, 46.1796 ], [ 0.107702, 46.18599 ], [ 0.109509, 46.18913 ], [ 0.113432, 46.21221 ], [ 0.11804, 46.213182 ], [ 0.131318, 46.226836 ], [ 0.13588, 46.22573 ], [ 0.142697, 46.23045 ], [ 0.139473, 46.240215 ], [ 0.137458, 46.244985 ], [ 0.130082, 46.264055 ], [ 0.128837, 46.26723 ], [ 0.133602, 46.266793 ], [ 0.162055, 46.26755 ], [ 0.17232, 46.278601 ], [ 0.170331, 46.284156 ], [ 0.152946, 46.304051 ], [ 0.165, 46.305514 ], [ 0.169492, 46.31068 ], [ 0.16595, 46.31705 ], [ 0.177369, 46.32811 ], [ 0.175249, 46.331376 ], [ 0.156198, 46.34327 ], [ 0.137598, 46.349395 ], [ 0.123317, 46.346792 ], [ 0.117942, 46.34089 ], [ 0.101365, 46.33309 ], [ 0.095524, 46.327444 ], [ 0.096931, 46.32056 ], [ 0.078218, 46.304943 ], [ 0.047162, 46.3224 ], [ 0.029354, 46.32867 ], [ 0.015099, 46.326257 ], [ 0.017389, 46.329345 ], [ 0.02302, 46.342513 ], [ 0.031407, 46.34621 ], [ 0.013848, 46.35701 ], [ 0.016604, 46.35947 ], [ 0.03422, 46.373497 ], [ 0.029944, 46.37503 ], [ 0.02244, 46.3792 ], [ 0.014669, 46.39083 ], [ 0.000448, 46.392249 ], [ -0.007997, 46.38906 ], [ -0.007707, 46.39253 ], [ -0.012697, 46.40202 ], [ -0.020218, 46.40588 ], [ -0.012776, 46.425881 ], [ -0.010582, 46.44989 ], [ -0.019244, 46.45328 ], [ -0.017852, 46.456403 ], [ -0.010466, 46.468331 ], [ -0.012533, 46.471277 ], [ -0.013593, 46.47442 ], [ -0.040101, 46.47006 ], [ -0.04326, 46.472436 ], [ -0.042535, 46.48235 ], [ -0.032175, 46.488644 ], [ -0.039234, 46.493107 ], [ -0.038793, 46.49971 ], [ -0.03118, 46.5083 ], [ -0.031351, 46.52498 ], [ -0.006269, 46.52398 ], [ -0.004934, 46.52722 ], [ 0.007113, 46.54534 ], [ -0.01011, 46.555441 ], [ -0.003315, 46.571731 ], [ 0.020517, 46.584644 ], [ 0.030598, 46.58503 ], [ 0.038232, 46.58956 ], [ 0.042719, 46.59117 ], [ 0.023996, 46.59511 ], [ 0.025803, 46.605092 ], [ 0.021688, 46.61124 ], [ 0.022855, 46.61453 ], [ 0.003187, 46.611459 ], [ -0.010066, 46.61655 ], [ 0.000427, 46.6397 ], [ -0.0049, 46.644704 ], [ -0.017205, 46.639407 ], [ -0.028191, 46.628529 ], [ -0.060919, 46.62276 ], [ -0.065814, 46.622825 ], [ -0.064752, 46.63276 ], [ -0.034129, 46.654314 ], [ -0.037853, 46.663803 ], [ -0.032044, 46.669255 ], [ -0.031657, 46.669347 ], [ -0.028872, 46.67222 ], [ -0.009606, 46.68267 ], [ -0.018356, 46.694297 ], [ 0.000092, 46.699331 ], [ 0.002659, 46.705751 ], [ -0.000478, 46.71582 ], [ 0.003784, 46.717647 ], [ 0.0073, 46.71992 ], [ 0.022859, 46.72768 ], [ 0.031902, 46.72717 ], [ 0.03675, 46.728622 ], [ 0.038065, 46.731179 ], [ 0.033065, 46.738492 ], [ 0.028176, 46.738979 ], [ -0.001918, 46.761281 ], [ -0.012665, 46.754349 ], [ -0.015765, 46.75706 ], [ -0.021874, 46.77635 ], [ -0.017718, 46.778014 ], [ -0.022661, 46.78952 ], [ -0.009554, 46.798934 ], [ -0.00706, 46.80176 ], [ 0.00403, 46.80766 ], [ 0.006922, 46.81351 ], [ -0.004126, 46.819376 ], [ -0.006895, 46.82197 ], [ -0.017515, 46.814665 ], [ -0.045274, 46.82074 ], [ -0.049092, 46.82304 ], [ -0.045392, 46.824 ], [ -0.04569, 46.8321 ], [ -0.035501, 46.832564 ], [ -0.025776, 46.840614 ], [ -0.007806, 46.84665 ], [ 0.002082, 46.845 ], [ 0.014988, 46.83457 ], [ 0.016607, 46.83496 ], [ 0.019124, 46.837669 ], [ 0.033758, 46.854076 ], [ 0.023744, 46.85394 ], [ 0.010103, 46.8586 ], [ 0.001665, 46.86249 ], [ -0.008089, 46.870425 ], [ -0.022418, 46.874095 ], [ -0.032214, 46.87234 ], [ -0.035644, 46.87494 ], [ -0.031594, 46.87675 ], [ -0.02304, 46.888062 ], [ -0.023214, 46.894689 ], [ -0.009123, 46.90792 ], [ -0.010303, 46.91142 ], [ -0.01387, 46.92187 ], [ -0.015046, 46.925268 ], [ -0.022143, 46.93811 ], [ -0.030741, 46.941777 ], [ -0.031346, 46.945284 ], [ -0.033932, 46.951992 ], [ -0.04483, 46.95952 ], [ -0.046251, 46.966516 ], [ -0.043471, 46.96926 ], [ -0.033124, 46.980251 ], [ -0.033901, 46.983537 ], [ -0.038714, 46.98928 ], [ -0.055331, 46.99464 ], [ -0.06031, 46.99443 ], [ -0.086481, 46.9853 ], [ -0.084947, 46.98863 ], [ -0.092379, 47.005294 ], [ -0.093051, 47.0085 ], [ -0.082627, 47.01004 ], [ -0.081256, 47.01302 ], [ -0.088267, 47.025046 ], [ -0.088966, 47.02759 ], [ -0.09026, 47.0327 ], [ -0.091414, 47.03789 ], [ -0.092179, 47.04135 ], [ -0.102121, 47.064806 ], [ -0.100648, 47.08459 ], [ -0.099978, 47.088083 ], [ -0.098055, 47.09135 ], [ -0.088887, 47.09827 ], [ -0.085541, 47.100434 ], [ -0.068733, 47.09653 ], [ -0.067762, 47.09338 ], [ -0.044239, 47.093151 ], [ -0.039917, 47.08761 ], [ -0.035315, 47.08672 ], [ -0.02707, 47.102674 ], [ -0.028063, 47.106027 ], [ -0.037498, 47.10814 ], [ -0.039508, 47.11475 ], [ -0.036549, 47.11752 ], [ -0.03444, 47.12063 ], [ -0.033736, 47.12756 ], [ -0.011722, 47.15624 ], [ 0.01534, 47.173168 ], [ 0.019015, 47.175758 ], [ 0.033624, 47.16289 ], [ 0.036642, 47.16036 ], [ 0.051052, 47.16713 ], [ 0.05374, 47.16461 ], [ 0.064921, 47.146084 ], [ 0.068953, 47.14406 ], [ 0.07839, 47.14633 ], [ 0.081435, 47.13328 ], [ 0.077943, 47.127071 ], [ 0.082432, 47.117797 ], [ 0.090198, 47.12186 ], [ 0.10472, 47.120798 ], [ 0.110323, 47.12929 ], [ 0.123966, 47.126936 ], [ 0.127952, 47.120999 ], [ 0.137322, 47.122259 ], [ 0.140683, 47.124594 ], [ 0.134144, 47.11527 ], [ 0.134946, 47.10837 ], [ 0.158612, 47.10274 ], [ 0.161917, 47.10011 ], [ 0.167829, 47.108362 ], [ 0.179245, 47.11336 ], [ 0.183487, 47.11451 ], [ 0.185354, 47.10404 ], [ 0.198043, 47.09294 ], [ 0.194951, 47.08646 ], [ 0.177027, 47.07383 ], [ 0.174011, 47.06722 ], [ 0.176727, 47.064201 ], [ 0.175696, 47.06073 ], [ 0.180337, 47.05946 ], [ 0.194404, 47.063001 ], [ 0.208199, 47.053237 ], [ 0.228056, 47.06133 ], [ 0.232832, 47.06639 ], [ 0.235155, 47.06916 ], [ 0.243872, 47.07095 ], [ 0.26355, 47.068507 ], [ 0.264221, 47.04643 ], [ 0.267677, 47.04405 ], [ 0.294508, 47.051949 ], [ 0.298426, 47.053977 ], [ 0.307895, 47.047271 ], [ 0.309074, 47.03131 ], [ 0.309935, 47.028031 ], [ 0.300585, 47.021102 ], [ 0.306204, 47.00882 ], [ 0.308175, 46.99993 ], [ 0.310728, 46.997312 ], [ 0.296088, 46.990169 ], [ 0.291436, 46.99027 ], [ 0.306589, 46.97893 ], [ 0.298206, 46.97126 ], [ 0.306402, 46.96393 ], [ 0.303022, 46.958359 ], [ 0.302029, 46.95532 ], [ 0.310569, 46.93971 ], [ 0.321021, 46.932626 ], [ 0.325352, 46.930943 ], [ 0.343125, 46.936706 ], [ 0.348074, 46.93637 ], [ 0.36463, 46.948568 ], [ 0.38282, 46.94375 ], [ 0.38782, 46.94371 ], [ 0.401134, 46.93819 ], [ 0.405362, 46.936133 ], [ 0.420738, 46.93639 ], [ 0.434521, 46.931669 ], [ 0.43871, 46.92958 ], [ 0.443882, 46.93811 ], [ 0.444803, 46.941158 ], [ 0.486465, 46.95402 ], [ 0.491285, 46.955322 ], [ 0.502577, 46.95779 ], [ 0.50519, 46.95991 ], [ 0.512902, 46.95586 ], [ 0.549556, 46.95959 ], [ 0.554199, 46.95847 ], [ 0.563306, 46.955777 ], [ 0.598205, 46.95643 ], [ 0.601701, 46.958888 ], [ 0.598804, 46.974924 ], [ 0.576876, 46.98087 ], [ 0.573683, 46.98339 ], [ 0.573146, 46.989475 ], [ 0.574382, 46.99244 ], [ 0.567922, 46.999661 ], [ 0.56695, 47.00254 ], [ 0.567742, 47.006287 ], [ 0.585909, 47.00611 ], [ 0.590556, 47.00673 ], [ 0.61849, 47.00752 ], [ 0.623652, 47.00242 ], [ 0.621888, 46.99942 ], [ 0.623984, 46.993686 ], [ 0.63356, 46.986659 ], [ 0.637794, 46.98525 ], [ 0.651538, 46.986999 ], [ 0.660468, 46.978984 ], [ 0.690172, 46.97498 ], [ 0.695275, 46.969191 ], [ 0.695176, 46.96224 ], [ 0.695983, 46.959369 ], [ 0.706179, 46.936108 ], [ 0.703171, 46.925825 ], [ 0.708918, 46.917725 ], [ 0.704874, 46.91233 ], [ 0.703738, 46.909362 ], [ 0.70467, 46.90289 ], [ 0.727284, 46.88608 ], [ 0.729468, 46.88318 ], [ 0.739267, 46.87285 ], [ 0.743522, 46.871587 ], [ 0.753423, 46.860585 ], [ 0.765645, 46.86512 ], [ 0.771792, 46.86126 ], [ 0.766356, 46.85585 ], [ 0.771389, 46.85095 ], [ 0.795013, 46.85052 ], [ 0.796639, 46.84735 ], [ 0.786885, 46.84123 ], [ 0.794667, 46.832892 ], [ 0.807997, 46.829139 ], [ 0.809041, 46.819215 ], [ 0.809857, 46.8159 ], [ 0.810162, 46.814192 ], [ 0.815597, 46.805 ], [ 0.813354, 46.79168 ], [ 0.826099, 46.78682 ], [ 0.829396, 46.77687 ], [ 0.84484, 46.763019 ], [ 0.858729, 46.759154 ], [ 0.859743, 46.75572 ], [ 0.865602, 46.75104 ], [ 0.867469, 46.74822 ], [ 0.879803, 46.73875 ], [ 0.898325, 46.7358 ], [ 0.90283, 46.730405 ], [ 0.911172, 46.72707 ], [ 0.910404, 46.71741 ], [ 0.921587, 46.70272 ], [ 0.924812, 46.70022 ], [ 0.927133, 46.6936 ], [ 0.918155, 46.690485 ], [ 0.902262, 46.677666 ], [ 0.907243, 46.678136 ], [ 0.91184, 46.67259 ], [ 0.90734, 46.666437 ], [ 0.915638, 46.650672 ], [ 0.907628, 46.64672 ], [ 0.895518, 46.631821 ], [ 0.893993, 46.628658 ], [ 0.904896, 46.618175 ], [ 0.908477, 46.605279 ], [ 0.916278, 46.597125 ], [ 0.933284, 46.594569 ], [ 0.937758, 46.59442 ], [ 0.941367, 46.580879 ], [ 0.955598, 46.57761 ], [ 0.962437, 46.57254 ], [ 0.982015, 46.57327 ], [ 0.990589, 46.56604 ], [ 1.009906, 46.56742 ], [ 1.014764, 46.567764 ], [ 1.024705, 46.5497 ], [ 1.019938, 46.540418 ], [ 1.020409, 46.53715 ], [ 1.065509, 46.539252 ], [ 1.080132, 46.53618 ], [ 1.090094, 46.53758 ], [ 1.104139, 46.53343 ], [ 1.119414, 46.524226 ], [ 1.12372, 46.52232 ], [ 1.146903, 46.50518 ], [ 1.149143, 46.502212 ], [ 1.145329, 46.50007 ], [ 1.136833, 46.49678 ], [ 1.136125, 46.493461 ], [ 1.152956, 46.472838 ], [ 1.135514, 46.470889 ], [ 1.150917, 46.450297 ], [ 1.16378, 46.44677 ], [ 1.168524, 46.44635 ], [ 1.185483, 46.439511 ], [ 1.185835, 46.429303 ], [ 1.195477, 46.42962 ], [ 1.203363, 46.433796 ], [ 1.213066, 46.43308 ], [ 1.211268, 46.42992 ], [ 1.193411, 46.40976 ], [ 1.1954, 46.40002 ], [ 1.17728, 46.38395 ], [ 1.173138, 46.38522 ], [ 1.157006, 46.38923 ], [ 1.155318, 46.38604 ], [ 1.148515, 46.37707 ], [ 1.149083, 46.370275 ], [ 1.128579, 46.362221 ], [ 1.129862, 46.358937 ], [ 1.127761, 46.34886 ], [ 1.109444, 46.35383 ], [ 1.101408, 46.362367 ], [ 1.077291, 46.35855 ], [ 1.072731, 46.35947 ], [ 1.050157, 46.362781 ], [ 1.050965, 46.35948 ], [ 1.027163, 46.34344 ], [ 1.026141, 46.340038 ], [ 1.028543, 46.3333 ], [ 1.021178, 46.3133 ], [ 1.009903, 46.30666 ], [ 1.009553, 46.29661 ], [ 1.003748, 46.29117 ], [ 1.005887, 46.28097 ], [ 1.003381, 46.28023 ], [ 0.999812, 46.28261 ], [ 0.990064, 46.28378 ], [ 0.986247, 46.281592 ], [ 0.97255, 46.28553 ], [ 0.952797, 46.285635 ], [ 0.935318, 46.29125 ], [ 0.934185, 46.28133 ], [ 0.929197, 46.280956 ], [ 0.901248, 46.28751 ], [ 0.8897, 46.268548 ], [ 0.861633, 46.26182 ], [ 0.863365, 46.258715 ], [ 0.857724, 46.249538 ], [ 0.848308, 46.24826 ], [ 0.843549, 46.238884 ], [ 0.851894, 46.23596 ], [ 0.851551, 46.23245 ], [ 0.843527, 46.22921 ], [ 0.808399, 46.228006 ], [ 0.799361, 46.2155 ], [ 0.794748, 46.214049 ], [ 0.796455, 46.21129 ], [ 0.801413, 46.207386 ], [ 0.800223, 46.20148 ], [ 0.803917, 46.199291 ], [ 0.813334, 46.197689 ], [ 0.821161, 46.185507 ], [ 0.833299, 46.18064 ], [ 0.828706, 46.172166 ], [ 0.831415, 46.170218 ], [ 0.838205, 46.16573 ], [ 0.832417, 46.156346 ], [ 0.835748, 46.14618 ], [ 0.845853, 46.138369 ], [ 0.840116, 46.13367 ], [ 0.837012, 46.130886 ], [ 0.823433, 46.12859 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "88", "CODE_DEPT": "87", "NOM_DEPT": "HAUTE-VIENNE", "CODE_CHF": "085", "NOM_CHF": "LIMOGES", "X_CHF_LIEU": "5650", "Y_CHF_LIEU": "65275", "X_CENTROID": "5631", "Y_CENTROID": "65339", "CODE_REG": "74", "NOM_REGION": "LIMOUSIN" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.253152, 45.44422 ], [ 1.250141, 45.44149 ], [ 1.242025, 45.437605 ], [ 1.237444, 45.438848 ], [ 1.233962, 45.45501 ], [ 1.212123, 45.46237 ], [ 1.185123, 45.4551 ], [ 1.177031, 45.45872 ], [ 1.175344, 45.468794 ], [ 1.162444, 45.47835 ], [ 1.158185, 45.476674 ], [ 1.149887, 45.473268 ], [ 1.131013, 45.472253 ], [ 1.119623, 45.47779 ], [ 1.118436, 45.487904 ], [ 1.12289, 45.48947 ], [ 1.134423, 45.50488 ], [ 1.147483, 45.515418 ], [ 1.164273, 45.522954 ], [ 1.165365, 45.526367 ], [ 1.132364, 45.541325 ], [ 1.128288, 45.54322 ], [ 1.119312, 45.545962 ], [ 1.109717, 45.544666 ], [ 1.104331, 45.53909 ], [ 1.086024, 45.53474 ], [ 1.084638, 45.531442 ], [ 1.081118, 45.533561 ], [ 1.074201, 45.545612 ], [ 1.061699, 45.554891 ], [ 1.061386, 45.5543 ], [ 1.056478, 45.5546 ], [ 1.047749, 45.557829 ], [ 1.037977, 45.569468 ], [ 1.034704, 45.579661 ], [ 1.039334, 45.58584 ], [ 1.032964, 45.59906 ], [ 1.02011, 45.60974 ], [ 0.995823, 45.612708 ], [ 0.989587, 45.607355 ], [ 0.97569, 45.604493 ], [ 0.969549, 45.60994 ], [ 0.959802, 45.608692 ], [ 0.946322, 45.61296 ], [ 0.918839, 45.605185 ], [ 0.904489, 45.60593 ], [ 0.898605, 45.600323 ], [ 0.89374, 45.60103 ], [ 0.890345, 45.60325 ], [ 0.881222, 45.61059 ], [ 0.876966, 45.61984 ], [ 0.869353, 45.62353 ], [ 0.866884, 45.62097 ], [ 0.8597, 45.613191 ], [ 0.858099, 45.6098 ], [ 0.849461, 45.593259 ], [ 0.848144, 45.589847 ], [ 0.839996, 45.581304 ], [ 0.8115, 45.57587 ], [ 0.810565, 45.57909 ], [ 0.805857, 45.594966 ], [ 0.801392, 45.59593 ], [ 0.777188, 45.59217 ], [ 0.767445, 45.60439 ], [ 0.750613, 45.616873 ], [ 0.753737, 45.619602 ], [ 0.763951, 45.6315 ], [ 0.775643, 45.667746 ], [ 0.77397, 45.66781 ], [ 0.760468, 45.670949 ], [ 0.744137, 45.68826 ], [ 0.722051, 45.69461 ], [ 0.713127, 45.694042 ], [ 0.702599, 45.687846 ], [ 0.694223, 45.690494 ], [ 0.681304, 45.687445 ], [ 0.676533, 45.68841 ], [ 0.662086, 45.68748 ], [ 0.653606, 45.69103 ], [ 0.650294, 45.697586 ], [ 0.637778, 45.70198 ], [ 0.629742, 45.71457 ], [ 0.633501, 45.7205 ], [ 0.64553, 45.71892 ], [ 0.650416, 45.72802 ], [ 0.647616, 45.730638 ], [ 0.652867, 45.73938 ], [ 0.660713, 45.73941 ], [ 0.665281, 45.739401 ], [ 0.666527, 45.745238 ], [ 0.666235, 45.748196 ], [ 0.691144, 45.76091 ], [ 0.695379, 45.76212 ], [ 0.707649, 45.761712 ], [ 0.711682, 45.76286 ], [ 0.714765, 45.76922 ], [ 0.70749, 45.77825 ], [ 0.710515, 45.8022 ], [ 0.718721, 45.80558 ], [ 0.7426, 45.804378 ], [ 0.752389, 45.797106 ], [ 0.762003, 45.79694 ], [ 0.768055, 45.791552 ], [ 0.770227, 45.788478 ], [ 0.783779, 45.793475 ], [ 0.776974, 45.80224 ], [ 0.783826, 45.810583 ], [ 0.780808, 45.81709 ], [ 0.782118, 45.820404 ], [ 0.795978, 45.82984 ], [ 0.818349, 45.864053 ], [ 0.82098, 45.86696 ], [ 0.818405, 45.869162 ], [ 0.810678, 45.868238 ], [ 0.8075, 45.870023 ], [ 0.823749, 45.88079 ], [ 0.827373, 45.882748 ], [ 0.81354, 45.896886 ], [ 0.815983, 45.917292 ], [ 0.809017, 45.921742 ], [ 0.809969, 45.92832 ], [ 0.812111, 45.93127 ], [ 0.821962, 45.93157 ], [ 0.838047, 45.92336 ], [ 0.847972, 45.92405 ], [ 0.861148, 45.919803 ], [ 0.884652, 45.923831 ], [ 0.906305, 45.93793 ], [ 0.916094, 45.93717 ], [ 0.920972, 45.937917 ], [ 0.92049, 45.94352 ], [ 0.922516, 45.94594 ], [ 0.92468, 45.951209 ], [ 0.940886, 45.95921 ], [ 0.943377, 45.97307 ], [ 0.934634, 45.976415 ], [ 0.934675, 45.99221 ], [ 0.921525, 45.99615 ], [ 0.919886, 46.00223 ], [ 0.923782, 46.008258 ], [ 0.909946, 46.017543 ], [ 0.905615, 46.0182 ], [ 0.894052, 46.022699 ], [ 0.894327, 46.025632 ], [ 0.886192, 46.03173 ], [ 0.866517, 46.01648 ], [ 0.858456, 46.019618 ], [ 0.856265, 46.02972 ], [ 0.849302, 46.03449 ], [ 0.845226, 46.0365 ], [ 0.821993, 46.04636 ], [ 0.817909, 46.04789 ], [ 0.816632, 46.057565 ], [ 0.826105, 46.065061 ], [ 0.819171, 46.0774 ], [ 0.827127, 46.086025 ], [ 0.827141, 46.088278 ], [ 0.832253, 46.09391 ], [ 0.832307, 46.10434 ], [ 0.811893, 46.12297 ], [ 0.818813, 46.12717 ], [ 0.823433, 46.12859 ], [ 0.837012, 46.130886 ], [ 0.840116, 46.13367 ], [ 0.845853, 46.138369 ], [ 0.835748, 46.14618 ], [ 0.832417, 46.156346 ], [ 0.838205, 46.16573 ], [ 0.831415, 46.170218 ], [ 0.828706, 46.172166 ], [ 0.833299, 46.18064 ], [ 0.821161, 46.185507 ], [ 0.813334, 46.197689 ], [ 0.803917, 46.199291 ], [ 0.800223, 46.20148 ], [ 0.801413, 46.207386 ], [ 0.796455, 46.21129 ], [ 0.794748, 46.214049 ], [ 0.799361, 46.2155 ], [ 0.808399, 46.228006 ], [ 0.843527, 46.22921 ], [ 0.851551, 46.23245 ], [ 0.851894, 46.23596 ], [ 0.843549, 46.238884 ], [ 0.848308, 46.24826 ], [ 0.857724, 46.249538 ], [ 0.863365, 46.258715 ], [ 0.861633, 46.26182 ], [ 0.8897, 46.268548 ], [ 0.901248, 46.28751 ], [ 0.929197, 46.280956 ], [ 0.934185, 46.28133 ], [ 0.935318, 46.29125 ], [ 0.952797, 46.285635 ], [ 0.97255, 46.28553 ], [ 0.986247, 46.281592 ], [ 0.990064, 46.28378 ], [ 0.999812, 46.28261 ], [ 1.003381, 46.28023 ], [ 1.005887, 46.28097 ], [ 1.003748, 46.29117 ], [ 1.009553, 46.29661 ], [ 1.009903, 46.30666 ], [ 1.021178, 46.3133 ], [ 1.028543, 46.3333 ], [ 1.026141, 46.340038 ], [ 1.027163, 46.34344 ], [ 1.050965, 46.35948 ], [ 1.050157, 46.362781 ], [ 1.072731, 46.35947 ], [ 1.077291, 46.35855 ], [ 1.101408, 46.362367 ], [ 1.109444, 46.35383 ], [ 1.127761, 46.34886 ], [ 1.129862, 46.358937 ], [ 1.128579, 46.362221 ], [ 1.149083, 46.370275 ], [ 1.148515, 46.37707 ], [ 1.155318, 46.38604 ], [ 1.157006, 46.38923 ], [ 1.173138, 46.38522 ], [ 1.17728, 46.38395 ], [ 1.180777, 46.378594 ], [ 1.18868, 46.37694 ], [ 1.192893, 46.37741 ], [ 1.193499, 46.380733 ], [ 1.208385, 46.38915 ], [ 1.212952, 46.388002 ], [ 1.213319, 46.374407 ], [ 1.21797, 46.368256 ], [ 1.238165, 46.3662 ], [ 1.250656, 46.37675 ], [ 1.26021, 46.37872 ], [ 1.274572, 46.37642 ], [ 1.279554, 46.376488 ], [ 1.28302, 46.37221 ], [ 1.310512, 46.37437 ], [ 1.311035, 46.381038 ], [ 1.321836, 46.386566 ], [ 1.312648, 46.39371 ], [ 1.340492, 46.3997 ], [ 1.344678, 46.401598 ], [ 1.359389, 46.39772 ], [ 1.36255, 46.39563 ], [ 1.373905, 46.38586 ], [ 1.376609, 46.38334 ], [ 1.39195, 46.37107 ], [ 1.396571, 46.371897 ], [ 1.395144, 46.368644 ], [ 1.407003, 46.36264 ], [ 1.411548, 46.3495 ], [ 1.415191, 46.34722 ], [ 1.411944, 46.344805 ], [ 1.409687, 46.341909 ], [ 1.430481, 46.333767 ], [ 1.444558, 46.333933 ], [ 1.445731, 46.330635 ], [ 1.43869, 46.323153 ], [ 1.442205, 46.303783 ], [ 1.429761, 46.29951 ], [ 1.425425, 46.29804 ], [ 1.417187, 46.279616 ], [ 1.430576, 46.27746 ], [ 1.436758, 46.27248 ], [ 1.424521, 46.26715 ], [ 1.415204, 46.269132 ], [ 1.406468, 46.26096 ], [ 1.407643, 46.25446 ], [ 1.419417, 46.248709 ], [ 1.418063, 46.24211 ], [ 1.413869, 46.24034 ], [ 1.40437, 46.2416 ], [ 1.395412, 46.23898 ], [ 1.379201, 46.2192 ], [ 1.374521, 46.21817 ], [ 1.387328, 46.19966 ], [ 1.395054, 46.195814 ], [ 1.401736, 46.183263 ], [ 1.406756, 46.183208 ], [ 1.418726, 46.17777 ], [ 1.428212, 46.179273 ], [ 1.43538, 46.17617 ], [ 1.448556, 46.17925 ], [ 1.452574, 46.18115 ], [ 1.460906, 46.177631 ], [ 1.458851, 46.17141 ], [ 1.465051, 46.16248 ], [ 1.451356, 46.152661 ], [ 1.470206, 46.14961 ], [ 1.481769, 46.138715 ], [ 1.495629, 46.140224 ], [ 1.494325, 46.13345 ], [ 1.502153, 46.12954 ], [ 1.504852, 46.123197 ], [ 1.493488, 46.11767 ], [ 1.488492, 46.10816 ], [ 1.499966, 46.10244 ], [ 1.500707, 46.09568 ], [ 1.507847, 46.089246 ], [ 1.512506, 46.09356 ], [ 1.525675, 46.089578 ], [ 1.527149, 46.079492 ], [ 1.536513, 46.078758 ], [ 1.542086, 46.074074 ], [ 1.532444, 46.058603 ], [ 1.536707, 46.05302 ], [ 1.535513, 46.050717 ], [ 1.548244, 46.03347 ], [ 1.538179, 46.026857 ], [ 1.532917, 46.01036 ], [ 1.536575, 46.000609 ], [ 1.537903, 45.99734 ], [ 1.564237, 45.997433 ], [ 1.568388, 45.996837 ], [ 1.570881, 45.9884 ], [ 1.57369, 45.986204 ], [ 1.577299, 45.97804 ], [ 1.574813, 45.975771 ], [ 1.566241, 45.963684 ], [ 1.556429, 45.96405 ], [ 1.536417, 45.9541 ], [ 1.518656, 45.9505 ], [ 1.516824, 45.947565 ], [ 1.517933, 45.94136 ], [ 1.508951, 45.94031 ], [ 1.513591, 45.931 ], [ 1.532402, 45.929845 ], [ 1.544139, 45.91939 ], [ 1.547265, 45.91683 ], [ 1.555829, 45.91946 ], [ 1.573076, 45.91571 ], [ 1.577143, 45.91762 ], [ 1.581065, 45.930664 ], [ 1.600532, 45.93155 ], [ 1.604934, 45.93306 ], [ 1.617812, 45.93011 ], [ 1.625778, 45.93259 ], [ 1.62801, 45.9264 ], [ 1.637132, 45.92598 ], [ 1.625928, 45.9157 ], [ 1.64157, 45.896219 ], [ 1.640017, 45.894327 ], [ 1.641483, 45.8924 ], [ 1.632501, 45.89001 ], [ 1.622337, 45.896266 ], [ 1.618304, 45.886832 ], [ 1.611897, 45.890302 ], [ 1.602085, 45.88968 ], [ 1.591033, 45.88307 ], [ 1.603689, 45.879294 ], [ 1.606992, 45.86648 ], [ 1.602398, 45.857465 ], [ 1.624643, 45.84984 ], [ 1.628475, 45.8476 ], [ 1.647909, 45.84496 ], [ 1.652828, 45.845631 ], [ 1.658734, 45.83701 ], [ 1.65992, 45.8338 ], [ 1.667341, 45.838616 ], [ 1.676873, 45.83764 ], [ 1.694896, 45.843765 ], [ 1.719883, 45.841511 ], [ 1.729643, 45.843513 ], [ 1.736078, 45.84891 ], [ 1.73972, 45.851389 ], [ 1.75168, 45.85484 ], [ 1.755837, 45.85566 ], [ 1.756992, 45.86617 ], [ 1.765811, 45.868987 ], [ 1.770776, 45.868374 ], [ 1.779369, 45.85233 ], [ 1.773224, 45.84291 ], [ 1.778194, 45.83321 ], [ 1.786571, 45.82954 ], [ 1.796208, 45.829508 ], [ 1.824792, 45.8109 ], [ 1.828963, 45.8128 ], [ 1.830678, 45.82303 ], [ 1.834272, 45.825449 ], [ 1.843092, 45.81398 ], [ 1.855481, 45.81026 ], [ 1.85631, 45.80692 ], [ 1.861212, 45.8071 ], [ 1.883805, 45.79471 ], [ 1.89149, 45.771667 ], [ 1.897805, 45.767955 ], [ 1.902149, 45.769546 ], [ 1.896354, 45.76007 ], [ 1.877298, 45.75822 ], [ 1.874175, 45.75554 ], [ 1.883401, 45.747848 ], [ 1.886413, 45.745194 ], [ 1.874752, 45.727228 ], [ 1.88352, 45.72603 ], [ 1.89247, 45.71827 ], [ 1.888536, 45.71637 ], [ 1.880786, 45.71244 ], [ 1.881175, 45.70909 ], [ 1.896599, 45.701409 ], [ 1.898731, 45.698278 ], [ 1.898709, 45.694864 ], [ 1.907303, 45.69176 ], [ 1.909555, 45.6818 ], [ 1.901422, 45.67858 ], [ 1.882191, 45.679824 ], [ 1.87902, 45.666383 ], [ 1.874816, 45.664666 ], [ 1.854027, 45.67058 ], [ 1.84507, 45.663374 ], [ 1.826437, 45.665046 ], [ 1.823414, 45.67191 ], [ 1.819797, 45.67404 ], [ 1.815294, 45.679771 ], [ 1.802214, 45.676219 ], [ 1.801385, 45.672986 ], [ 1.794815, 45.680913 ], [ 1.785834, 45.68266 ], [ 1.783086, 45.673285 ], [ 1.77472, 45.65831 ], [ 1.765424, 45.657648 ], [ 1.763797, 45.654577 ], [ 1.753465, 45.65546 ], [ 1.752899, 45.65208 ], [ 1.750205, 45.64571 ], [ 1.724169, 45.63886 ], [ 1.710733, 45.64134 ], [ 1.696303, 45.633651 ], [ 1.668273, 45.614149 ], [ 1.664765, 45.61169 ], [ 1.659864, 45.606349 ], [ 1.658937, 45.59694 ], [ 1.651973, 45.59315 ], [ 1.64933, 45.59055 ], [ 1.625187, 45.578705 ], [ 1.600404, 45.57942 ], [ 1.592897, 45.575027 ], [ 1.590755, 45.572037 ], [ 1.584891, 45.55608 ], [ 1.571207, 45.55529 ], [ 1.558783, 45.550945 ], [ 1.54682, 45.55446 ], [ 1.541999, 45.555015 ], [ 1.517394, 45.564276 ], [ 1.516971, 45.55755 ], [ 1.511347, 45.55214 ], [ 1.492475, 45.54939 ], [ 1.491524, 45.5523 ], [ 1.492228, 45.560861 ], [ 1.488061, 45.56226 ], [ 1.480434, 45.56594 ], [ 1.478789, 45.559077 ], [ 1.473136, 45.55342 ], [ 1.453415, 45.55222 ], [ 1.452689, 45.53505 ], [ 1.439542, 45.52041 ], [ 1.435222, 45.521876 ], [ 1.426618, 45.52979 ], [ 1.417346, 45.529588 ], [ 1.408944, 45.526335 ], [ 1.395821, 45.50867 ], [ 1.391455, 45.50729 ], [ 1.3896, 45.49616 ], [ 1.384904, 45.495567 ], [ 1.375566, 45.49433 ], [ 1.368894, 45.48956 ], [ 1.350078, 45.466897 ], [ 1.345901, 45.46874 ], [ 1.285317, 45.490281 ], [ 1.287191, 45.48724 ], [ 1.286405, 45.48075 ], [ 1.27885, 45.47709 ], [ 1.275609, 45.47795 ], [ 1.269155, 45.47636 ], [ 1.263869, 45.467308 ], [ 1.263341, 45.453897 ], [ 1.25548, 45.45036 ], [ 1.253152, 45.44422 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "89", "CODE_DEPT": "88", "NOM_DEPT": "VOSGES", "CODE_CHF": "160", "NOM_CHF": "EPINAL", "X_CHF_LIEU": "9565", "Y_CHF_LIEU": "67915", "X_CENTROID": "9511", "Y_CENTROID": "67938", "CODE_REG": "41", "NOM_REGION": "LORRAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.823539, 47.81305 ], [ 6.820459, 47.8158 ], [ 6.791946, 47.83016 ], [ 6.788987, 47.83483 ], [ 6.791102, 47.83783 ], [ 6.790661, 47.844226 ], [ 6.784952, 47.84957 ], [ 6.738164, 47.86205 ], [ 6.737294, 47.86547 ], [ 6.735247, 47.864926 ], [ 6.730734, 47.866448 ], [ 6.710113, 47.87582 ], [ 6.703674, 47.881424 ], [ 6.699113, 47.88228 ], [ 6.691325, 47.88584 ], [ 6.689377, 47.8873 ], [ 6.686832, 47.88826 ], [ 6.683084, 47.89042 ], [ 6.669324, 47.89329 ], [ 6.645203, 47.904085 ], [ 6.639864, 47.91005 ], [ 6.640878, 47.91702 ], [ 6.629286, 47.928183 ], [ 6.612502, 47.93604 ], [ 6.610445, 47.93891 ], [ 6.605983, 47.944468 ], [ 6.601244, 47.944379 ], [ 6.596358, 47.94331 ], [ 6.568708, 47.934499 ], [ 6.558255, 47.92297 ], [ 6.555909, 47.91996 ], [ 6.542014, 47.902534 ], [ 6.537052, 47.90226 ], [ 6.503444, 47.89625 ], [ 6.478262, 47.88544 ], [ 6.475807, 47.888451 ], [ 6.457047, 47.90783 ], [ 6.460947, 47.91751 ], [ 6.448609, 47.922719 ], [ 6.431921, 47.94381 ], [ 6.40842, 47.9432 ], [ 6.407328, 47.94644 ], [ 6.404507, 47.952832 ], [ 6.388353, 47.960018 ], [ 6.378691, 47.95866 ], [ 6.364993, 47.962572 ], [ 6.360997, 47.96025 ], [ 6.322461, 47.95008 ], [ 6.306804, 47.95078 ], [ 6.292827, 47.955646 ], [ 6.277334, 47.95381 ], [ 6.274023, 47.951659 ], [ 6.262957, 47.94614 ], [ 6.259912, 47.94437 ], [ 6.250767, 47.93908 ], [ 6.24611, 47.93943 ], [ 6.237987, 47.93284 ], [ 6.233409, 47.933599 ], [ 6.219609, 47.93566 ], [ 6.214423, 47.930382 ], [ 6.209344, 47.93105 ], [ 6.204514, 47.932292 ], [ 6.208138, 47.942344 ], [ 6.207056, 47.945733 ], [ 6.182056, 47.95693 ], [ 6.179247, 47.95459 ], [ 6.171045, 47.95264 ], [ 6.161247, 47.958296 ], [ 6.16079, 47.9612 ], [ 6.155256, 47.96443 ], [ 6.149584, 47.9685 ], [ 6.161293, 47.97279 ], [ 6.163943, 47.97561 ], [ 6.159124, 47.99129 ], [ 6.152863, 47.996114 ], [ 6.156058, 48.006944 ], [ 6.152409, 48.009447 ], [ 6.131397, 48.02408 ], [ 6.127381, 48.022228 ], [ 6.114302, 48.01807 ], [ 6.109235, 48.01247 ], [ 6.104598, 48.01351 ], [ 6.085549, 48.01345 ], [ 6.080853, 48.0128 ], [ 6.072221, 48.01555 ], [ 6.068036, 48.01351 ], [ 6.036864, 48.00145 ], [ 6.022306, 47.98761 ], [ 6.023004, 47.97797 ], [ 6.009432, 47.96785 ], [ 6.008771, 47.961399 ], [ 6.002262, 47.95609 ], [ 5.970778, 47.957205 ], [ 5.970446, 47.953917 ], [ 5.968902, 47.947409 ], [ 5.964594, 47.946113 ], [ 5.956055, 47.938664 ], [ 5.947635, 47.93618 ], [ 5.942523, 47.93631 ], [ 5.932628, 47.937928 ], [ 5.937566, 47.950629 ], [ 5.941548, 47.95232 ], [ 5.959703, 47.96655 ], [ 5.957968, 47.96959 ], [ 5.950301, 47.97351 ], [ 5.947534, 47.97971 ], [ 5.943047, 47.979813 ], [ 5.92739, 47.9744 ], [ 5.92133, 47.971026 ], [ 5.919171, 47.967864 ], [ 5.918043, 47.94736 ], [ 5.912835, 47.94675 ], [ 5.907548, 47.94665 ], [ 5.902823, 47.94554 ], [ 5.89341, 47.93786 ], [ 5.896863, 47.931638 ], [ 5.884726, 47.92605 ], [ 5.884687, 47.929263 ], [ 5.86448, 47.94588 ], [ 5.856384, 47.948371 ], [ 5.849925, 47.964359 ], [ 5.854239, 47.966037 ], [ 5.853561, 47.96988 ], [ 5.848679, 47.96961 ], [ 5.845841, 47.975696 ], [ 5.839894, 47.968087 ], [ 5.839732, 47.9648 ], [ 5.829489, 47.958036 ], [ 5.815285, 47.95692 ], [ 5.805268, 47.946973 ], [ 5.802464, 47.949714 ], [ 5.788412, 47.952696 ], [ 5.778492, 47.97801 ], [ 5.782448, 47.980041 ], [ 5.793592, 47.99071 ], [ 5.794917, 47.993694 ], [ 5.786418, 48.00402 ], [ 5.787321, 48.007417 ], [ 5.776419, 48.022407 ], [ 5.776273, 48.02525 ], [ 5.77682, 48.03364 ], [ 5.768818, 48.030033 ], [ 5.764225, 48.03154 ], [ 5.740804, 48.049012 ], [ 5.721596, 48.04526 ], [ 5.720627, 48.05202 ], [ 5.721281, 48.052725 ], [ 5.713371, 48.061623 ], [ 5.70029, 48.06744 ], [ 5.696278, 48.077566 ], [ 5.692078, 48.07555 ], [ 5.659139, 48.083668 ], [ 5.655564, 48.081237 ], [ 5.655767, 48.071364 ], [ 5.632878, 48.08437 ], [ 5.639085, 48.09728 ], [ 5.645839, 48.10252 ], [ 5.649393, 48.10505 ], [ 5.658664, 48.106017 ], [ 5.672119, 48.10944 ], [ 5.669706, 48.11224 ], [ 5.656558, 48.12055 ], [ 5.661573, 48.12561 ], [ 5.662513, 48.12879 ], [ 5.666767, 48.130206 ], [ 5.676706, 48.136311 ], [ 5.675079, 48.139247 ], [ 5.685843, 48.150941 ], [ 5.684222, 48.158234 ], [ 5.686525, 48.164079 ], [ 5.682299, 48.17548 ], [ 5.680173, 48.178674 ], [ 5.69977, 48.18967 ], [ 5.730983, 48.1897 ], [ 5.730055, 48.19832 ], [ 5.726909, 48.200508 ], [ 5.72451, 48.203075 ], [ 5.722288, 48.20595 ], [ 5.710844, 48.21994 ], [ 5.706542, 48.22194 ], [ 5.687792, 48.23418 ], [ 5.683443, 48.23294 ], [ 5.676344, 48.229016 ], [ 5.672188, 48.231009 ], [ 5.640901, 48.24235 ], [ 5.642055, 48.245749 ], [ 5.64946, 48.2547 ], [ 5.651579, 48.25797 ], [ 5.653809, 48.268524 ], [ 5.649556, 48.27029 ], [ 5.611652, 48.29181 ], [ 5.608996, 48.288858 ], [ 5.588425, 48.27376 ], [ 5.588128, 48.27732 ], [ 5.533514, 48.3251 ], [ 5.531164, 48.32816 ], [ 5.523022, 48.34051 ], [ 5.526527, 48.346856 ], [ 5.522169, 48.34862 ], [ 5.507063, 48.350159 ], [ 5.499385, 48.35455 ], [ 5.474496, 48.35457 ], [ 5.472422, 48.351535 ], [ 5.459888, 48.34948 ], [ 5.443838, 48.33683 ], [ 5.426048, 48.33106 ], [ 5.424574, 48.334216 ], [ 5.417157, 48.342622 ], [ 5.42237, 48.35175 ], [ 5.418555, 48.36069 ], [ 5.421257, 48.36335 ], [ 5.442884, 48.37939 ], [ 5.438413, 48.380864 ], [ 5.408839, 48.38303 ], [ 5.393838, 48.39157 ], [ 5.397763, 48.39259 ], [ 5.409779, 48.39262 ], [ 5.447148, 48.41499 ], [ 5.465177, 48.419995 ], [ 5.470062, 48.42093 ], [ 5.509008, 48.40991 ], [ 5.513904, 48.4108 ], [ 5.509929, 48.41702 ], [ 5.515417, 48.42998 ], [ 5.534464, 48.432297 ], [ 5.556327, 48.4399 ], [ 5.560827, 48.44147 ], [ 5.567996, 48.4373 ], [ 5.566636, 48.434108 ], [ 5.576649, 48.43197 ], [ 5.580391, 48.43848 ], [ 5.589323, 48.44213 ], [ 5.610061, 48.441568 ], [ 5.615055, 48.44051 ], [ 5.61883, 48.43049 ], [ 5.623837, 48.44596 ], [ 5.626986, 48.44888 ], [ 5.644971, 48.454044 ], [ 5.649849, 48.454962 ], [ 5.651446, 48.45818 ], [ 5.639804, 48.46915 ], [ 5.641988, 48.472203 ], [ 5.644529, 48.47187 ], [ 5.653333, 48.46901 ], [ 5.656871, 48.47126 ], [ 5.676378, 48.47153 ], [ 5.684919, 48.46836 ], [ 5.689593, 48.467381 ], [ 5.695076, 48.463449 ], [ 5.715639, 48.460378 ], [ 5.735324, 48.46516 ], [ 5.740613, 48.46537 ], [ 5.74243, 48.474498 ], [ 5.746109, 48.47625 ], [ 5.760795, 48.49445 ], [ 5.765155, 48.49649 ], [ 5.774739, 48.48846 ], [ 5.778599, 48.486187 ], [ 5.783684, 48.485546 ], [ 5.787024, 48.48291 ], [ 5.792136, 48.48864 ], [ 5.809221, 48.495125 ], [ 5.810772, 48.4983 ], [ 5.824376, 48.49639 ], [ 5.831799, 48.50016 ], [ 5.836407, 48.500708 ], [ 5.83778, 48.50481 ], [ 5.862241, 48.50649 ], [ 5.865923, 48.5042 ], [ 5.876608, 48.49748 ], [ 5.901013, 48.49401 ], [ 5.905902, 48.49498 ], [ 5.901508, 48.4885 ], [ 5.898792, 48.48544 ], [ 5.9043, 48.48293 ], [ 5.888609, 48.46945 ], [ 5.886837, 48.456175 ], [ 5.897314, 48.44861 ], [ 5.885263, 48.437885 ], [ 5.884003, 48.43638 ], [ 5.882079, 48.43337 ], [ 5.85934, 48.4165 ], [ 5.856315, 48.41184 ], [ 5.855383, 48.409377 ], [ 5.865014, 48.40697 ], [ 5.870039, 48.406133 ], [ 5.878184, 48.40301 ], [ 5.896968, 48.40848 ], [ 5.907931, 48.42799 ], [ 5.898036, 48.43595 ], [ 5.926762, 48.4353 ], [ 5.931327, 48.433946 ], [ 5.924594, 48.424552 ], [ 5.91439, 48.424938 ], [ 5.909567, 48.41893 ], [ 5.91004, 48.40476 ], [ 5.918091, 48.404141 ], [ 5.920503, 48.40107 ], [ 5.925022, 48.396039 ], [ 5.92769, 48.393686 ], [ 5.937153, 48.40217 ], [ 5.941116, 48.40074 ], [ 5.94698, 48.39826 ], [ 5.949585, 48.3965 ], [ 5.952035, 48.390066 ], [ 5.954939, 48.387374 ], [ 5.947487, 48.37862 ], [ 5.944654, 48.37582 ], [ 5.952599, 48.37267 ], [ 5.95189, 48.36678 ], [ 5.956472, 48.36729 ], [ 5.954123, 48.359386 ], [ 5.955419, 48.356481 ], [ 5.960272, 48.351021 ], [ 5.96481, 48.35006 ], [ 5.973706, 48.35187 ], [ 5.982558, 48.35004 ], [ 5.988254, 48.35497 ], [ 5.992951, 48.35442 ], [ 6.005127, 48.360416 ], [ 6.01525, 48.360951 ], [ 6.020291, 48.36145 ], [ 6.024946, 48.35689 ], [ 6.032763, 48.361026 ], [ 6.046914, 48.36227 ], [ 6.047337, 48.365613 ], [ 6.058422, 48.362 ], [ 6.061359, 48.35975 ], [ 6.066434, 48.35945 ], [ 6.071492, 48.359767 ], [ 6.075185, 48.362156 ], [ 6.079825, 48.36364 ], [ 6.073746, 48.37752 ], [ 6.076707, 48.37985 ], [ 6.087498, 48.3834 ], [ 6.091215, 48.382258 ], [ 6.098286, 48.36485 ], [ 6.093755, 48.363852 ], [ 6.102617, 48.35628 ], [ 6.112344, 48.3549 ], [ 6.11705, 48.353841 ], [ 6.122831, 48.364754 ], [ 6.125088, 48.367261 ], [ 6.132707, 48.362684 ], [ 6.14879, 48.37923 ], [ 6.152327, 48.381648 ], [ 6.147421, 48.40783 ], [ 6.149421, 48.40827 ], [ 6.163188, 48.40579 ], [ 6.177176, 48.40745 ], [ 6.178927, 48.410461 ], [ 6.18273, 48.408954 ], [ 6.1788, 48.400542 ], [ 6.17842, 48.39761 ], [ 6.200161, 48.39804 ], [ 6.201743, 48.399375 ], [ 6.221955, 48.400664 ], [ 6.232097, 48.40023 ], [ 6.233339, 48.397113 ], [ 6.242664, 48.404052 ], [ 6.255765, 48.40641 ], [ 6.260443, 48.4064 ], [ 6.268672, 48.422805 ], [ 6.270298, 48.426101 ], [ 6.279505, 48.42405 ], [ 6.285143, 48.42942 ], [ 6.297438, 48.43367 ], [ 6.303381, 48.42854 ], [ 6.30818, 48.41195 ], [ 6.331346, 48.40486 ], [ 6.336509, 48.40459 ], [ 6.353963, 48.403881 ], [ 6.358962, 48.404865 ], [ 6.362428, 48.40745 ], [ 6.363617, 48.407867 ], [ 6.376792, 48.411896 ], [ 6.39045, 48.4045 ], [ 6.384043, 48.39952 ], [ 6.384241, 48.39461 ], [ 6.387395, 48.392143 ], [ 6.395929, 48.39469 ], [ 6.400678, 48.39536 ], [ 6.402911, 48.392256 ], [ 6.412688, 48.39332 ], [ 6.424666, 48.40823 ], [ 6.443482, 48.413021 ], [ 6.448213, 48.414405 ], [ 6.456866, 48.41702 ], [ 6.466929, 48.41043 ], [ 6.471325, 48.409201 ], [ 6.482636, 48.414966 ], [ 6.486985, 48.41628 ], [ 6.496649, 48.41494 ], [ 6.501792, 48.41456 ], [ 6.513622, 48.421553 ], [ 6.518029, 48.423511 ], [ 6.530202, 48.4295 ], [ 6.534394, 48.43146 ], [ 6.540543, 48.42794 ], [ 6.544568, 48.42762 ], [ 6.578736, 48.415534 ], [ 6.583871, 48.417225 ], [ 6.568563, 48.438238 ], [ 6.584766, 48.45988 ], [ 6.594471, 48.46241 ], [ 6.596062, 48.46468 ], [ 6.597506, 48.46697 ], [ 6.607558, 48.46723 ], [ 6.620728, 48.47244 ], [ 6.63083, 48.472029 ], [ 6.635397, 48.470502 ], [ 6.638711, 48.46048 ], [ 6.636392, 48.450272 ], [ 6.644486, 48.441666 ], [ 6.647149, 48.43168 ], [ 6.644798, 48.428616 ], [ 6.659226, 48.42613 ], [ 6.66941, 48.426055 ], [ 6.676469, 48.423468 ], [ 6.679525, 48.42171 ], [ 6.682938, 48.424456 ], [ 6.685584, 48.418006 ], [ 6.694155, 48.41443 ], [ 6.698644, 48.41286 ], [ 6.712979, 48.4214 ], [ 6.724907, 48.41616 ], [ 6.734617, 48.417048 ], [ 6.738843, 48.415402 ], [ 6.739562, 48.41201 ], [ 6.760057, 48.41105 ], [ 6.765889, 48.40164 ], [ 6.775474, 48.40138 ], [ 6.780436, 48.402283 ], [ 6.785524, 48.401932 ], [ 6.785782, 48.39613 ], [ 6.797637, 48.402021 ], [ 6.815027, 48.39507 ], [ 6.826331, 48.41248 ], [ 6.827695, 48.4156 ], [ 6.849189, 48.42383 ], [ 6.8532, 48.42999 ], [ 6.855054, 48.433116 ], [ 6.864557, 48.43553 ], [ 6.869862, 48.42248 ], [ 6.88266, 48.41712 ], [ 6.892421, 48.41919 ], [ 6.914972, 48.4329 ], [ 6.918228, 48.43553 ], [ 6.921954, 48.43939 ], [ 6.93055, 48.442644 ], [ 6.965827, 48.47144 ], [ 6.977808, 48.476702 ], [ 6.981908, 48.47843 ], [ 6.986537, 48.48015 ], [ 7.007433, 48.4818 ], [ 7.028723, 48.49209 ], [ 7.050706, 48.49544 ], [ 7.05366, 48.497718 ], [ 7.058079, 48.49912 ], [ 7.078427, 48.50736 ], [ 7.083761, 48.50849 ], [ 7.088409, 48.51003 ], [ 7.123165, 48.51359 ], [ 7.125615, 48.49959 ], [ 7.096288, 48.50312 ], [ 7.094251, 48.5062 ], [ 7.091003, 48.500878 ], [ 7.093726, 48.492352 ], [ 7.093663, 48.48928 ], [ 7.114032, 48.485326 ], [ 7.118811, 48.483719 ], [ 7.116817, 48.47333 ], [ 7.104289, 48.45416 ], [ 7.106218, 48.44402 ], [ 7.108093, 48.44029 ], [ 7.109384, 48.438797 ], [ 7.105324, 48.43709 ], [ 7.095687, 48.426533 ], [ 7.097112, 48.423457 ], [ 7.09342, 48.41118 ], [ 7.095804, 48.404953 ], [ 7.087244, 48.401015 ], [ 7.084985, 48.39788 ], [ 7.088645, 48.39572 ], [ 7.092947, 48.394169 ], [ 7.103692, 48.38799 ], [ 7.108321, 48.37902 ], [ 7.106642, 48.376065 ], [ 7.100822, 48.37374 ], [ 7.088402, 48.36305 ], [ 7.085662, 48.36014 ], [ 7.079827, 48.35481 ], [ 7.075964, 48.352585 ], [ 7.101462, 48.34503 ], [ 7.105971, 48.34411 ], [ 7.117124, 48.334133 ], [ 7.136446, 48.33241 ], [ 7.141319, 48.33202 ], [ 7.144831, 48.332165 ], [ 7.147917, 48.33327 ], [ 7.166545, 48.33934 ], [ 7.169537, 48.342307 ], [ 7.183497, 48.33839 ], [ 7.179213, 48.32869 ], [ 7.180957, 48.32548 ], [ 7.190289, 48.32289 ], [ 7.196704, 48.313722 ], [ 7.198282, 48.310477 ], [ 7.193611, 48.302029 ], [ 7.176243, 48.299121 ], [ 7.172441, 48.29749 ], [ 7.174226, 48.287813 ], [ 7.159414, 48.27463 ], [ 7.158499, 48.26835 ], [ 7.157746, 48.26753 ], [ 7.153763, 48.26527 ], [ 7.143334, 48.258446 ], [ 7.132651, 48.24283 ], [ 7.126811, 48.22509 ], [ 7.116387, 48.20713 ], [ 7.108503, 48.20317 ], [ 7.105556, 48.200462 ], [ 7.108345, 48.19751 ], [ 7.10629, 48.19431 ], [ 7.102708, 48.19191 ], [ 7.086997, 48.183753 ], [ 7.083342, 48.17745 ], [ 7.082138, 48.17477 ], [ 7.077558, 48.170925 ], [ 7.078438, 48.16401 ], [ 7.059047, 48.13918 ], [ 7.068587, 48.130752 ], [ 7.084163, 48.12922 ], [ 7.083691, 48.12207 ], [ 7.076708, 48.108486 ], [ 7.070402, 48.10644 ], [ 7.06841, 48.10328 ], [ 7.05165, 48.08261 ], [ 7.034358, 48.075389 ], [ 7.024436, 48.063384 ], [ 7.023359, 48.05648 ], [ 7.018614, 48.05506 ], [ 7.012283, 48.04583 ], [ 7.009749, 48.04289 ], [ 7.013018, 48.04011 ], [ 7.016021, 48.03719 ], [ 7.011704, 48.035355 ], [ 7.002566, 48.02325 ], [ 6.989372, 48.018211 ], [ 6.981539, 48.00942 ], [ 6.976517, 48.009239 ], [ 6.961425, 48.00046 ], [ 6.951891, 48.00241 ], [ 6.94353, 47.99867 ], [ 6.943033, 47.99199 ], [ 6.943766, 47.980383 ], [ 6.941063, 47.97778 ], [ 6.931043, 47.97115 ], [ 6.925559, 47.95925 ], [ 6.923823, 47.95247 ], [ 6.920791, 47.945939 ], [ 6.924738, 47.92915 ], [ 6.912346, 47.91838 ], [ 6.926308, 47.91541 ], [ 6.927478, 47.90875 ], [ 6.917036, 47.90165 ], [ 6.918458, 47.898414 ], [ 6.898328, 47.88869 ], [ 6.907124, 47.88116 ], [ 6.907135, 47.87129 ], [ 6.90804, 47.864664 ], [ 6.914944, 47.86005 ], [ 6.918906, 47.858039 ], [ 6.918805, 47.85286 ], [ 6.920048, 47.850287 ], [ 6.916958, 47.847597 ], [ 6.907205, 47.84604 ], [ 6.897089, 47.83479 ], [ 6.896086, 47.83297 ], [ 6.891175, 47.83352 ], [ 6.84618, 47.822945 ], [ 6.84183, 47.82478 ], [ 6.823539, 47.81305 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "90", "CODE_DEPT": "89", "NOM_DEPT": "YONNE", "CODE_CHF": "024", "NOM_CHF": "AUXERRE", "X_CHF_LIEU": "7424", "Y_CHF_LIEU": "67442", "X_CENTROID": "7422", "Y_CENTROID": "67489", "CODE_REG": "26", "NOM_REGION": "BOURGOGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.106086, 47.33926 ], [ 4.101162, 47.33813 ], [ 4.076938, 47.340736 ], [ 4.067422, 47.33847 ], [ 4.047974, 47.339525 ], [ 4.039859, 47.327435 ], [ 4.030765, 47.32625 ], [ 4.027648, 47.31628 ], [ 4.020165, 47.31261 ], [ 4.000593, 47.31229 ], [ 3.987562, 47.32279 ], [ 3.982474, 47.322595 ], [ 3.972954, 47.335 ], [ 3.963999, 47.36586 ], [ 3.971393, 47.3746 ], [ 3.961353, 47.38232 ], [ 3.960513, 47.38579 ], [ 3.950594, 47.39305 ], [ 3.937927, 47.379826 ], [ 3.908792, 47.38206 ], [ 3.889564, 47.36875 ], [ 3.887463, 47.365881 ], [ 3.87141, 47.36717 ], [ 3.861455, 47.39337 ], [ 3.87946, 47.39991 ], [ 3.893397, 47.41029 ], [ 3.890213, 47.419812 ], [ 3.880587, 47.42654 ], [ 3.879911, 47.429811 ], [ 3.875517, 47.42881 ], [ 3.864383, 47.43433 ], [ 3.855194, 47.43388 ], [ 3.851308, 47.435588 ], [ 3.851737, 47.427572 ], [ 3.842009, 47.40872 ], [ 3.83893, 47.40605 ], [ 3.829087, 47.40576 ], [ 3.822621, 47.40091 ], [ 3.829261, 47.385333 ], [ 3.828057, 47.38205 ], [ 3.813743, 47.38037 ], [ 3.800243, 47.38965 ], [ 3.790461, 47.38973 ], [ 3.785631, 47.39032 ], [ 3.784123, 47.39328 ], [ 3.783303, 47.405169 ], [ 3.774605, 47.4062 ], [ 3.772571, 47.40308 ], [ 3.73389, 47.397065 ], [ 3.720317, 47.4013 ], [ 3.714782, 47.40683 ], [ 3.71491, 47.409463 ], [ 3.712403, 47.41442 ], [ 3.701553, 47.426486 ], [ 3.687996, 47.43166 ], [ 3.683925, 47.43387 ], [ 3.679809, 47.432548 ], [ 3.673439, 47.43561 ], [ 3.679358, 47.447242 ], [ 3.677363, 47.44686 ], [ 3.674397, 47.44953 ], [ 3.655583, 47.44881 ], [ 3.634157, 47.456076 ], [ 3.628686, 47.4547 ], [ 3.623783, 47.455385 ], [ 3.616422, 47.45934 ], [ 3.615236, 47.465828 ], [ 3.60535, 47.4662 ], [ 3.600971, 47.465182 ], [ 3.593202, 47.457714 ], [ 3.587873, 47.461882 ], [ 3.583276, 47.4615 ], [ 3.581675, 47.46445 ], [ 3.57613, 47.48213 ], [ 3.57569, 47.48317 ], [ 3.575259, 47.48629 ], [ 3.580478, 47.49487 ], [ 3.575459, 47.49869 ], [ 3.570725, 47.499523 ], [ 3.552142, 47.50341 ], [ 3.541425, 47.51425 ], [ 3.538233, 47.516592 ], [ 3.526056, 47.52143 ], [ 3.521363, 47.52255 ], [ 3.514192, 47.527224 ], [ 3.510307, 47.5505 ], [ 3.498358, 47.560878 ], [ 3.495344, 47.559972 ], [ 3.492033, 47.55999 ], [ 3.491375, 47.55647 ], [ 3.494746, 47.52129 ], [ 3.488277, 47.49383 ], [ 3.483515, 47.493032 ], [ 3.462467, 47.501183 ], [ 3.457679, 47.500472 ], [ 3.449538, 47.503871 ], [ 3.446589, 47.51028 ], [ 3.43223, 47.50733 ], [ 3.41224, 47.50787 ], [ 3.408787, 47.508027 ], [ 3.405484, 47.50869 ], [ 3.400355, 47.508578 ], [ 3.391332, 47.50656 ], [ 3.391056, 47.499653 ], [ 3.380385, 47.487833 ], [ 3.365715, 47.48653 ], [ 3.345704, 47.476617 ], [ 3.346456, 47.46969 ], [ 3.338044, 47.47252 ], [ 3.33567, 47.481462 ], [ 3.306115, 47.49367 ], [ 3.296228, 47.492596 ], [ 3.287427, 47.500864 ], [ 3.285252, 47.503939 ], [ 3.274682, 47.49196 ], [ 3.259236, 47.49191 ], [ 3.250321, 47.48841 ], [ 3.235027, 47.48964 ], [ 3.233674, 47.49285 ], [ 3.204517, 47.523192 ], [ 3.18614, 47.52359 ], [ 3.178884, 47.51947 ], [ 3.165191, 47.517502 ], [ 3.162247, 47.524005 ], [ 3.149412, 47.529504 ], [ 3.136654, 47.540124 ], [ 3.123027, 47.539428 ], [ 3.122224, 47.542894 ], [ 3.11636, 47.56704 ], [ 3.123524, 47.57615 ], [ 3.120284, 47.578893 ], [ 3.117534, 47.580678 ], [ 3.111581, 47.5839 ], [ 3.107221, 47.58554 ], [ 3.088025, 47.58699 ], [ 3.071969, 47.57956 ], [ 3.068241, 47.57706 ], [ 3.058681, 47.568759 ], [ 3.038488, 47.56506 ], [ 3.030852, 47.56057 ], [ 3.026689, 47.558708 ], [ 3.017047, 47.55783 ], [ 2.991328, 47.568027 ], [ 2.976538, 47.56943 ], [ 2.974821, 47.572714 ], [ 2.96487, 47.57446 ], [ 2.959327, 47.587517 ], [ 2.945698, 47.59225 ], [ 2.940355, 47.59821 ], [ 2.943619, 47.607763 ], [ 2.932321, 47.62705 ], [ 2.934061, 47.630152 ], [ 2.936158, 47.636427 ], [ 2.939684, 47.63836 ], [ 2.954234, 47.64569 ], [ 2.951156, 47.6479 ], [ 2.941581, 47.657537 ], [ 2.937223, 47.659056 ], [ 2.928231, 47.658439 ], [ 2.918155, 47.6698 ], [ 2.92416, 47.682496 ], [ 2.893098, 47.69888 ], [ 2.888655, 47.70057 ], [ 2.884065, 47.702075 ], [ 2.879661, 47.70378 ], [ 2.883507, 47.71345 ], [ 2.877733, 47.71885 ], [ 2.861175, 47.710943 ], [ 2.848969, 47.71685 ], [ 2.851135, 47.71967 ], [ 2.84865, 47.7258 ], [ 2.852539, 47.728151 ], [ 2.858407, 47.748679 ], [ 2.853882, 47.75868 ], [ 2.856477, 47.761736 ], [ 2.899667, 47.76492 ], [ 2.908379, 47.768017 ], [ 2.912915, 47.769388 ], [ 2.93056, 47.76283 ], [ 2.935592, 47.763247 ], [ 2.937484, 47.7663 ], [ 2.947189, 47.76579 ], [ 2.954511, 47.77426 ], [ 2.977353, 47.779958 ], [ 2.98045, 47.782523 ], [ 2.988902, 47.786125 ], [ 3.018803, 47.78647 ], [ 3.023798, 47.786375 ], [ 3.027584, 47.799766 ], [ 3.024263, 47.80966 ], [ 3.024344, 47.81308 ], [ 3.019882, 47.81304 ], [ 3.015473, 47.813539 ], [ 3.019403, 47.81945 ], [ 3.013992, 47.825032 ], [ 3.013874, 47.83184 ], [ 3.030665, 47.83748 ], [ 3.033824, 47.843874 ], [ 3.026906, 47.85892 ], [ 3.023297, 47.861021 ], [ 3.018188, 47.861193 ], [ 2.994904, 47.86735 ], [ 3.011491, 47.875099 ], [ 3.007226, 47.895295 ], [ 3.01543, 47.8985 ], [ 3.011818, 47.904825 ], [ 3.030666, 47.90784 ], [ 3.048244, 47.911331 ], [ 3.053812, 47.92445 ], [ 3.063161, 47.92733 ], [ 3.065214, 47.930519 ], [ 3.078743, 47.93327 ], [ 3.08394, 47.942431 ], [ 3.088683, 47.94318 ], [ 3.10076, 47.94799 ], [ 3.105272, 47.946941 ], [ 3.113425, 47.963348 ], [ 3.128119, 47.97251 ], [ 3.128498, 47.979513 ], [ 3.122989, 47.985198 ], [ 3.126676, 47.991268 ], [ 3.121123, 47.995936 ], [ 3.120845, 48.009363 ], [ 3.10657, 48.013183 ], [ 3.10115, 48.019028 ], [ 3.102176, 48.022456 ], [ 3.120648, 48.028603 ], [ 3.124263, 48.03113 ], [ 3.119731, 48.03247 ], [ 3.09762, 48.039558 ], [ 3.090536, 48.04822 ], [ 3.095365, 48.05398 ], [ 3.090345, 48.053944 ], [ 3.078932, 48.06024 ], [ 3.060278, 48.064699 ], [ 3.050471, 48.07233 ], [ 3.049882, 48.088253 ], [ 3.050194, 48.09124 ], [ 3.042902, 48.093376 ], [ 3.041212, 48.09648 ], [ 3.0351, 48.11563 ], [ 3.015884, 48.11571 ], [ 3.027273, 48.1307 ], [ 3.023122, 48.13567 ], [ 3.019049, 48.13778 ], [ 3.01323, 48.14348 ], [ 3.003886, 48.14486 ], [ 3.002138, 48.14166 ], [ 2.994044, 48.1431 ], [ 2.987615, 48.15228 ], [ 2.978176, 48.15058 ], [ 2.963612, 48.15287 ], [ 2.959952, 48.15538 ], [ 2.951969, 48.16436 ], [ 2.936314, 48.163392 ], [ 2.934241, 48.175727 ], [ 2.934749, 48.17882 ], [ 2.951461, 48.19049 ], [ 2.955416, 48.19252 ], [ 2.970958, 48.194188 ], [ 2.971666, 48.203411 ], [ 2.984587, 48.207453 ], [ 2.988961, 48.20902 ], [ 2.997119, 48.20635 ], [ 3.00599, 48.20942 ], [ 3.012819, 48.2221 ], [ 3.032696, 48.24874 ], [ 3.04757, 48.2497 ], [ 3.043708, 48.27184 ], [ 3.029261, 48.274204 ], [ 3.02476, 48.275645 ], [ 3.026961, 48.28246 ], [ 3.029739, 48.285424 ], [ 3.026761, 48.28802 ], [ 3.020051, 48.29638 ], [ 3.027469, 48.300639 ], [ 3.0171, 48.304537 ], [ 3.015685, 48.307317 ], [ 3.040571, 48.328931 ], [ 3.04226, 48.33219 ], [ 3.036773, 48.33779 ], [ 3.046276, 48.35731 ], [ 3.049451, 48.36003 ], [ 3.062057, 48.357442 ], [ 3.066702, 48.35772 ], [ 3.080611, 48.36083 ], [ 3.101066, 48.354788 ], [ 3.099602, 48.3516 ], [ 3.103418, 48.349514 ], [ 3.118385, 48.36668 ], [ 3.122467, 48.36863 ], [ 3.135759, 48.37088 ], [ 3.139869, 48.372599 ], [ 3.14485, 48.367303 ], [ 3.170015, 48.3747 ], [ 3.171808, 48.37768 ], [ 3.183373, 48.37146 ], [ 3.184941, 48.368129 ], [ 3.193763, 48.369392 ], [ 3.199658, 48.364461 ], [ 3.20445, 48.3642 ], [ 3.211304, 48.366267 ], [ 3.214496, 48.36759 ], [ 3.222216, 48.370008 ], [ 3.226483, 48.37024 ], [ 3.246859, 48.36729 ], [ 3.251021, 48.365101 ], [ 3.259611, 48.36859 ], [ 3.267473, 48.37713 ], [ 3.272179, 48.378325 ], [ 3.281618, 48.37816 ], [ 3.283175, 48.381385 ], [ 3.306018, 48.37289 ], [ 3.31069, 48.37291 ], [ 3.311856, 48.376023 ], [ 3.325478, 48.37309 ], [ 3.330117, 48.372123 ], [ 3.336538, 48.37318 ], [ 3.346315, 48.373246 ], [ 3.351685, 48.378619 ], [ 3.356559, 48.378452 ], [ 3.356091, 48.37516 ], [ 3.361191, 48.37257 ], [ 3.366319, 48.391485 ], [ 3.374142, 48.39549 ], [ 3.375408, 48.39869 ], [ 3.385095, 48.398713 ], [ 3.400207, 48.390881 ], [ 3.409931, 48.39054 ], [ 3.414792, 48.390273 ], [ 3.414008, 48.37654 ], [ 3.426582, 48.36169 ], [ 3.431584, 48.36085 ], [ 3.450115, 48.372852 ], [ 3.465281, 48.37451 ], [ 3.470481, 48.374671 ], [ 3.470803, 48.37444 ], [ 3.472982, 48.371899 ], [ 3.474875, 48.369265 ], [ 3.495725, 48.36935 ], [ 3.50441, 48.36549 ], [ 3.540825, 48.336547 ], [ 3.545109, 48.33455 ], [ 3.543961, 48.32276 ], [ 3.543904, 48.319789 ], [ 3.559032, 48.320358 ], [ 3.564072, 48.321081 ], [ 3.56318, 48.310819 ], [ 3.587536, 48.29848 ], [ 3.582509, 48.28284 ], [ 3.610952, 48.27461 ], [ 3.615187, 48.27254 ], [ 3.622873, 48.261375 ], [ 3.624347, 48.258442 ], [ 3.624443, 48.25517 ], [ 3.599994, 48.23551 ], [ 3.604684, 48.229886 ], [ 3.608006, 48.231831 ], [ 3.619329, 48.22813 ], [ 3.621602, 48.22561 ], [ 3.609202, 48.21066 ], [ 3.579608, 48.190672 ], [ 3.575186, 48.18874 ], [ 3.589992, 48.180588 ], [ 3.593967, 48.1787 ], [ 3.623548, 48.192 ], [ 3.636498, 48.186735 ], [ 3.64051, 48.184617 ], [ 3.648805, 48.17093 ], [ 3.650655, 48.16818 ], [ 3.65964, 48.159577 ], [ 3.666663, 48.142638 ], [ 3.66787, 48.139212 ], [ 3.691075, 48.145413 ], [ 3.693632, 48.15174 ], [ 3.694415, 48.15505 ], [ 3.698164, 48.148692 ], [ 3.705728, 48.1452 ], [ 3.721798, 48.158178 ], [ 3.716542, 48.17418 ], [ 3.741053, 48.16934 ], [ 3.74548, 48.167534 ], [ 3.754541, 48.15209 ], [ 3.742117, 48.1417 ], [ 3.739803, 48.138693 ], [ 3.74065, 48.131983 ], [ 3.752958, 48.125957 ], [ 3.763975, 48.13212 ], [ 3.768933, 48.13285 ], [ 3.776493, 48.12867 ], [ 3.782117, 48.11992 ], [ 3.791315, 48.117598 ], [ 3.798242, 48.10911 ], [ 3.80166, 48.10673 ], [ 3.803843, 48.10367 ], [ 3.80565, 48.10052 ], [ 3.798965, 48.08936 ], [ 3.798608, 48.08617 ], [ 3.806636, 48.08239 ], [ 3.822803, 48.065827 ], [ 3.826352, 48.063516 ], [ 3.828647, 48.04807 ], [ 3.82198, 48.04392 ], [ 3.829137, 48.03902 ], [ 3.832152, 48.036235 ], [ 3.83961, 48.03606 ], [ 3.843397, 48.03537 ], [ 3.847997, 48.02939 ], [ 3.870242, 48.01631 ], [ 3.870626, 48.00623 ], [ 3.870812, 48.002864 ], [ 3.862835, 48.00627 ], [ 3.844554, 48.003613 ], [ 3.839811, 48.00389 ], [ 3.849394, 47.986794 ], [ 3.850027, 47.98366 ], [ 3.859899, 47.98401 ], [ 3.863339, 47.979601 ], [ 3.8618, 47.976444 ], [ 3.880447, 47.98144 ], [ 3.882089, 47.997965 ], [ 3.885815, 48.000277 ], [ 3.895731, 47.999833 ], [ 3.90227, 47.99484 ], [ 3.903717, 47.99164 ], [ 3.913529, 47.97208 ], [ 3.905655, 47.95914 ], [ 3.902393, 47.93829 ], [ 3.896827, 47.932289 ], [ 3.894031, 47.929296 ], [ 3.895693, 47.92855 ], [ 3.905178, 47.926483 ], [ 3.914044, 47.92962 ], [ 3.918489, 47.92802 ], [ 3.923708, 47.932432 ], [ 3.92645, 47.93457 ], [ 3.949414, 47.93206 ], [ 3.963109, 47.935455 ], [ 3.976533, 47.93127 ], [ 3.981186, 47.930166 ], [ 3.985625, 47.930516 ], [ 4.001886, 47.94058 ], [ 4.005536, 47.94237 ], [ 4.019887, 47.92868 ], [ 4.025042, 47.928649 ], [ 4.033216, 47.932339 ], [ 4.045912, 47.9269 ], [ 4.054893, 47.93003 ], [ 4.060938, 47.94571 ], [ 4.089798, 47.94397 ], [ 4.092716, 47.94128 ], [ 4.094619, 47.92834 ], [ 4.113712, 47.92816 ], [ 4.122115, 47.93166 ], [ 4.137273, 47.937786 ], [ 4.141839, 47.937112 ], [ 4.141785, 47.94393 ], [ 4.162736, 47.95857 ], [ 4.167337, 47.96001 ], [ 4.184257, 47.95386 ], [ 4.185452, 47.94016 ], [ 4.200398, 47.94183 ], [ 4.206056, 47.947361 ], [ 4.204572, 47.96108 ], [ 4.195372, 47.96431 ], [ 4.195329, 47.96776 ], [ 4.201952, 47.972577 ], [ 4.221154, 47.97122 ], [ 4.225956, 47.971942 ], [ 4.227548, 47.962007 ], [ 4.2239, 47.948499 ], [ 4.246331, 47.930425 ], [ 4.259501, 47.925577 ], [ 4.274316, 47.92352 ], [ 4.288659, 47.92685 ], [ 4.293424, 47.92568 ], [ 4.29652, 47.92304 ], [ 4.305628, 47.9204 ], [ 4.306787, 47.91038 ], [ 4.312718, 47.90498 ], [ 4.308703, 47.90336 ], [ 4.300067, 47.901094 ], [ 4.28612, 47.90056 ], [ 4.273877, 47.89631 ], [ 4.27068, 47.89359 ], [ 4.266941, 47.88717 ], [ 4.247359, 47.87616 ], [ 4.26444, 47.871501 ], [ 4.262689, 47.84401 ], [ 4.271426, 47.84034 ], [ 4.294777, 47.84667 ], [ 4.324863, 47.847197 ], [ 4.328751, 47.84169 ], [ 4.32163, 47.83384 ], [ 4.324899, 47.82074 ], [ 4.319977, 47.811427 ], [ 4.323647, 47.809639 ], [ 4.340297, 47.79957 ], [ 4.338072, 47.79662 ], [ 4.327231, 47.78566 ], [ 4.33446, 47.77725 ], [ 4.335459, 47.77396 ], [ 4.330507, 47.77296 ], [ 4.32954, 47.769534 ], [ 4.331033, 47.756087 ], [ 4.318003, 47.750635 ], [ 4.309503, 47.75236 ], [ 4.308158, 47.749242 ], [ 4.293038, 47.73285 ], [ 4.288087, 47.733901 ], [ 4.275392, 47.73983 ], [ 4.260371, 47.740621 ], [ 4.256314, 47.727 ], [ 4.241388, 47.72428 ], [ 4.239355, 47.71776 ], [ 4.253546, 47.71426 ], [ 4.257436, 47.70786 ], [ 4.265892, 47.70395 ], [ 4.261835, 47.69424 ], [ 4.280804, 47.6852 ], [ 4.284063, 47.682662 ], [ 4.279384, 47.68157 ], [ 4.255222, 47.6835 ], [ 4.250789, 47.67809 ], [ 4.226613, 47.67821 ], [ 4.22599, 47.67142 ], [ 4.246661, 47.661732 ], [ 4.236943, 47.646604 ], [ 4.231944, 47.645882 ], [ 4.224024, 47.633363 ], [ 4.215349, 47.630798 ], [ 4.213621, 47.604 ], [ 4.215812, 47.60083 ], [ 4.210871, 47.60133 ], [ 4.201036, 47.60197 ], [ 4.197352, 47.599692 ], [ 4.186136, 47.581289 ], [ 4.188284, 47.573174 ], [ 4.187159, 47.57048 ], [ 4.17495, 47.553 ], [ 4.168098, 47.55163 ], [ 4.164177, 47.55357 ], [ 4.159492, 47.55276 ], [ 4.153444, 47.54425 ], [ 4.145917, 47.54045 ], [ 4.149408, 47.53524 ], [ 4.150705, 47.5325 ], [ 4.143225, 47.52832 ], [ 4.140114, 47.525789 ], [ 4.13752, 47.51944 ], [ 4.119533, 47.5147 ], [ 4.114631, 47.51476 ], [ 4.116087, 47.50557 ], [ 4.112404, 47.5035 ], [ 4.116126, 47.49786 ], [ 4.118944, 47.49539 ], [ 4.120923, 47.489696 ], [ 4.115979, 47.48448 ], [ 4.118079, 47.4788 ], [ 4.120568, 47.477816 ], [ 4.125598, 47.47707 ], [ 4.128832, 47.470462 ], [ 4.119427, 47.443553 ], [ 4.115591, 47.44164 ], [ 4.108109, 47.44561 ], [ 4.103834, 47.44419 ], [ 4.106987, 47.43815 ], [ 4.098629, 47.430473 ], [ 4.095401, 47.432898 ], [ 4.085393, 47.4399 ], [ 4.080503, 47.43624 ], [ 4.083221, 47.43353 ], [ 4.082661, 47.42355 ], [ 4.084039, 47.42021 ], [ 4.072978, 47.413652 ], [ 4.070106, 47.407286 ], [ 4.065198, 47.40727 ], [ 4.067769, 47.40051 ], [ 4.085936, 47.394031 ], [ 4.078053, 47.38175 ], [ 4.082395, 47.37555 ], [ 4.097171, 47.373534 ], [ 4.106783, 47.37627 ], [ 4.10567, 47.36602 ], [ 4.098155, 47.35749 ], [ 4.107089, 47.34934 ], [ 4.106086, 47.33926 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "91", "CODE_DEPT": "90", "NOM_DEPT": "TERRITOIRE-DE-BELFORT", "CODE_CHF": "010", "NOM_CHF": "BELFORT", "X_CHF_LIEU": "9889", "Y_CHF_LIEU": "67337", "X_CENTROID": "9948", "Y_CENTROID": "67330", "CODE_REG": "43", "NOM_REGION": "FRANCHE-COMTE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.939179, 47.4337 ], [ 6.936741, 47.43612 ], [ 6.934951, 47.447019 ], [ 6.932251, 47.45276 ], [ 6.932316, 47.455824 ], [ 6.92987, 47.45853 ], [ 6.919363, 47.468203 ], [ 6.907344, 47.472888 ], [ 6.909833, 47.47494 ], [ 6.915711, 47.47824 ], [ 6.913493, 47.48135 ], [ 6.907611, 47.494555 ], [ 6.920045, 47.49782 ], [ 6.922982, 47.50016 ], [ 6.931237, 47.497752 ], [ 6.938548, 47.48651 ], [ 6.942672, 47.48492 ], [ 6.945373, 47.48729 ], [ 6.949125, 47.4857 ], [ 6.944813, 47.49826 ], [ 6.947186, 47.510407 ], [ 6.945008, 47.51334 ], [ 6.940905, 47.51506 ], [ 6.93758, 47.51742 ], [ 6.934612, 47.517764 ], [ 6.925322, 47.51953 ], [ 6.921146, 47.520273 ], [ 6.907885, 47.52706 ], [ 6.915914, 47.5304 ], [ 6.91027, 47.539646 ], [ 6.906982, 47.54219 ], [ 6.906437, 47.54548 ], [ 6.899593, 47.549818 ], [ 6.889827, 47.55007 ], [ 6.887326, 47.55283 ], [ 6.884008, 47.55517 ], [ 6.88001, 47.55365 ], [ 6.85988, 47.54755 ], [ 6.855715, 47.54794 ], [ 6.850617, 47.54813 ], [ 6.830636, 47.54644 ], [ 6.81666, 47.547922 ], [ 6.814554, 47.55086 ], [ 6.807005, 47.5628 ], [ 6.809823, 47.5687 ], [ 6.817753, 47.571786 ], [ 6.821724, 47.573314 ], [ 6.821011, 47.57433 ], [ 6.820109, 47.57549 ], [ 6.816938, 47.578076 ], [ 6.804107, 47.583046 ], [ 6.802327, 47.58966 ], [ 6.791302, 47.59629 ], [ 6.793286, 47.59928 ], [ 6.789341, 47.60469 ], [ 6.788234, 47.60487 ], [ 6.785643, 47.61136 ], [ 6.777868, 47.615412 ], [ 6.778741, 47.622098 ], [ 6.780405, 47.625261 ], [ 6.791077, 47.62688 ], [ 6.792461, 47.63003 ], [ 6.799868, 47.63763 ], [ 6.798335, 47.644 ], [ 6.790704, 47.64789 ], [ 6.787491, 47.65166 ], [ 6.784508, 47.65434 ], [ 6.777237, 47.665986 ], [ 6.778645, 47.67587 ], [ 6.780151, 47.689771 ], [ 6.779242, 47.69294 ], [ 6.770079, 47.7034 ], [ 6.771583, 47.71257 ], [ 6.759074, 47.72281 ], [ 6.760447, 47.735813 ], [ 6.759587, 47.739156 ], [ 6.758938, 47.74206 ], [ 6.757638, 47.74788 ], [ 6.771134, 47.764492 ], [ 6.774581, 47.76673 ], [ 6.786246, 47.78229 ], [ 6.807186, 47.79243 ], [ 6.824672, 47.809647 ], [ 6.823539, 47.81305 ], [ 6.84183, 47.82478 ], [ 6.84618, 47.822945 ], [ 6.842967, 47.81367 ], [ 6.862197, 47.78744 ], [ 6.864959, 47.784607 ], [ 6.88743, 47.779961 ], [ 6.891696, 47.77834 ], [ 6.902092, 47.77645 ], [ 6.907546, 47.777715 ], [ 6.91897, 47.774 ], [ 6.922358, 47.77209 ], [ 6.923452, 47.77006 ], [ 6.938479, 47.77082 ], [ 6.974542, 47.75147 ], [ 6.993444, 47.746743 ], [ 6.998425, 47.745825 ], [ 7.011685, 47.741631 ], [ 7.015778, 47.74346 ], [ 7.018794, 47.7374 ], [ 7.020601, 47.73444 ], [ 7.0294, 47.72838 ], [ 7.032079, 47.72619 ], [ 7.035193, 47.7241 ], [ 7.037418, 47.721558 ], [ 7.029376, 47.70866 ], [ 7.027565, 47.70537 ], [ 7.035736, 47.694967 ], [ 7.038652, 47.692586 ], [ 7.036342, 47.692224 ], [ 7.038634, 47.687945 ], [ 7.045893, 47.68334 ], [ 7.039997, 47.6781 ], [ 7.037637, 47.67515 ], [ 7.04166, 47.67241 ], [ 7.045282, 47.67037 ], [ 7.035237, 47.659655 ], [ 7.037741, 47.653449 ], [ 7.039244, 47.65039 ], [ 7.034478, 47.64946 ], [ 7.019805, 47.65068 ], [ 7.017172, 47.648129 ], [ 7.016567, 47.645049 ], [ 7.010525, 47.630152 ], [ 7.006925, 47.626418 ], [ 7.007601, 47.621573 ], [ 7.006179, 47.61933 ], [ 7.007647, 47.60747 ], [ 7.011233, 47.6057 ], [ 7.006716, 47.60145 ], [ 7.009213, 47.599391 ], [ 7.019479, 47.593982 ], [ 7.019563, 47.588382 ], [ 7.024362, 47.589127 ], [ 7.02538, 47.59238 ], [ 7.041412, 47.599821 ], [ 7.074506, 47.59886 ], [ 7.074772, 47.59885 ], [ 7.078391, 47.59686 ], [ 7.081668, 47.59476 ], [ 7.085388, 47.59305 ], [ 7.086787, 47.58765 ], [ 7.086324, 47.58491 ], [ 7.088724, 47.58354 ], [ 7.09288, 47.57694 ], [ 7.094361, 47.57349 ], [ 7.102383, 47.5706 ], [ 7.108259, 47.5618 ], [ 7.107532, 47.558583 ], [ 7.107618, 47.55364 ], [ 7.106216, 47.551337 ], [ 7.114064, 47.547969 ], [ 7.118633, 47.547311 ], [ 7.128022, 47.54183 ], [ 7.131577, 47.540291 ], [ 7.13281, 47.539202 ], [ 7.136668, 47.533675 ], [ 7.137885, 47.53066 ], [ 7.142173, 47.52502 ], [ 7.130346, 47.503027 ], [ 7.125789, 47.50223 ], [ 7.110619, 47.4949 ], [ 7.096726, 47.49514 ], [ 7.0788, 47.48906 ], [ 7.036238, 47.499 ], [ 7.031552, 47.5 ], [ 7.024394, 47.504213 ], [ 7.019427, 47.50413 ], [ 6.982897, 47.49426 ], [ 6.988581, 47.48559 ], [ 6.987743, 47.479165 ], [ 6.988496, 47.47304 ], [ 6.991513, 47.469112 ], [ 6.991764, 47.46642 ], [ 7.000036, 47.464349 ], [ 7.000311, 47.454695 ], [ 6.989853, 47.448096 ], [ 6.975143, 47.44773 ], [ 6.970283, 47.44705 ], [ 6.962571, 47.43532 ], [ 6.944034, 47.43379 ], [ 6.939179, 47.4337 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "92", "CODE_DEPT": "91", "NOM_DEPT": "ESSONNE", "CODE_CHF": "228", "NOM_CHF": "EVRY", "X_CHF_LIEU": "6590", "Y_CHF_LIEU": "68372", "X_CENTROID": "6441", "Y_CENTROID": "68249", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.402664, 48.32072 ], [ 2.398936, 48.31526 ], [ 2.369945, 48.30867 ], [ 2.355802, 48.310433 ], [ 2.340362, 48.318796 ], [ 2.32931, 48.332833 ], [ 2.326154, 48.33064 ], [ 2.317182, 48.331567 ], [ 2.312424, 48.33012 ], [ 2.300208, 48.311242 ], [ 2.296706, 48.30885 ], [ 2.269118, 48.31505 ], [ 2.265536, 48.31267 ], [ 2.254851, 48.301418 ], [ 2.2501, 48.29975 ], [ 2.245157, 48.2984 ], [ 2.245229, 48.301852 ], [ 2.248218, 48.31542 ], [ 2.238047, 48.31637 ], [ 2.239599, 48.319128 ], [ 2.24631, 48.329968 ], [ 2.231822, 48.32977 ], [ 2.21469, 48.33667 ], [ 2.20709, 48.34494 ], [ 2.182947, 48.32382 ], [ 2.181484, 48.31379 ], [ 2.177842, 48.31293 ], [ 2.170835, 48.31504 ], [ 2.166995, 48.313033 ], [ 2.152668, 48.31482 ], [ 2.153878, 48.30841 ], [ 2.155435, 48.30546 ], [ 2.16239, 48.301511 ], [ 2.161589, 48.29844 ], [ 2.141159, 48.29928 ], [ 2.1106, 48.296949 ], [ 2.111702, 48.300367 ], [ 2.113717, 48.30725 ], [ 2.108709, 48.30746 ], [ 2.099895, 48.304714 ], [ 2.087542, 48.29451 ], [ 2.052708, 48.295474 ], [ 2.051468, 48.29021 ], [ 2.043236, 48.286166 ], [ 2.028994, 48.288632 ], [ 2.009276, 48.28532 ], [ 1.994085, 48.28659 ], [ 1.989021, 48.286984 ], [ 1.978957, 48.28799 ], [ 1.975456, 48.29402 ], [ 1.966219, 48.296774 ], [ 1.961905, 48.302846 ], [ 1.959227, 48.30869 ], [ 1.977212, 48.31401 ], [ 1.975601, 48.32332 ], [ 1.982344, 48.328317 ], [ 1.97062, 48.33999 ], [ 1.975622, 48.35688 ], [ 1.987356, 48.363811 ], [ 1.983903, 48.366445 ], [ 1.977025, 48.379189 ], [ 1.966722, 48.38042 ], [ 1.968537, 48.38362 ], [ 1.977244, 48.39916 ], [ 1.974978, 48.40174 ], [ 1.962226, 48.40432 ], [ 1.957737, 48.40515 ], [ 1.930424, 48.40395 ], [ 1.925893, 48.41275 ], [ 1.939016, 48.42216 ], [ 1.937301, 48.43544 ], [ 1.942895, 48.440998 ], [ 1.93833, 48.441398 ], [ 1.932512, 48.445548 ], [ 1.930628, 48.45372 ], [ 1.928572, 48.455733 ], [ 1.922149, 48.4576 ], [ 1.916634, 48.4633 ], [ 1.916248, 48.47023 ], [ 1.919729, 48.4766 ], [ 1.928094, 48.48046 ], [ 1.933108, 48.481424 ], [ 1.934279, 48.495776 ], [ 1.951471, 48.520112 ], [ 1.953016, 48.523454 ], [ 1.964238, 48.52785 ], [ 1.967476, 48.52574 ], [ 1.977246, 48.52759 ], [ 1.976168, 48.534236 ], [ 1.962171, 48.53509 ], [ 1.934125, 48.54865 ], [ 1.937604, 48.562218 ], [ 1.957646, 48.55964 ], [ 1.962685, 48.560487 ], [ 1.979664, 48.554336 ], [ 1.98299, 48.55683 ], [ 2.012795, 48.556595 ], [ 2.017574, 48.557597 ], [ 2.016821, 48.567424 ], [ 2.032866, 48.587446 ], [ 2.036348, 48.5898 ], [ 2.032411, 48.59517 ], [ 2.033047, 48.5982 ], [ 2.035013, 48.604852 ], [ 2.04969, 48.60783 ], [ 2.054815, 48.60796 ], [ 2.057726, 48.617295 ], [ 2.045683, 48.62372 ], [ 2.042083, 48.62618 ], [ 2.04148, 48.62654 ], [ 2.036063, 48.631803 ], [ 2.034908, 48.641464 ], [ 2.020277, 48.64209 ], [ 2.01669, 48.64444 ], [ 2.011658, 48.65358 ], [ 2.013269, 48.659574 ], [ 2.022358, 48.65785 ], [ 2.028553, 48.660618 ], [ 2.028902, 48.663742 ], [ 2.033591, 48.6775 ], [ 2.037155, 48.68013 ], [ 2.042245, 48.68035 ], [ 2.050596, 48.68729 ], [ 2.055659, 48.686787 ], [ 2.062865, 48.6872 ], [ 2.066512, 48.6869 ], [ 2.069888, 48.68879 ], [ 2.077905, 48.686394 ], [ 2.082079, 48.68545 ], [ 2.089331, 48.698041 ], [ 2.093351, 48.69581 ], [ 2.097853, 48.69403 ], [ 2.097183, 48.70052 ], [ 2.107798, 48.711565 ], [ 2.110333, 48.714381 ], [ 2.107738, 48.71747 ], [ 2.110657, 48.724053 ], [ 2.10057, 48.73586 ], [ 2.104654, 48.73798 ], [ 2.122662, 48.74107 ], [ 2.130229, 48.737438 ], [ 2.13498, 48.73714 ], [ 2.138893, 48.74312 ], [ 2.138971, 48.7466 ], [ 2.151397, 48.752818 ], [ 2.161902, 48.752595 ], [ 2.17545, 48.75773 ], [ 2.184595, 48.754929 ], [ 2.189379, 48.75345 ], [ 2.191919, 48.76686 ], [ 2.186958, 48.77264 ], [ 2.190663, 48.775037 ], [ 2.200844, 48.77488 ], [ 2.207269, 48.770318 ], [ 2.227483, 48.77163 ], [ 2.228836, 48.77489 ], [ 2.232908, 48.769136 ], [ 2.232519, 48.76596 ], [ 2.254936, 48.760659 ], [ 2.264862, 48.761036 ], [ 2.271536, 48.75756 ], [ 2.276283, 48.756581 ], [ 2.283756, 48.74831 ], [ 2.279015, 48.742935 ], [ 2.275813, 48.74044 ], [ 2.278781, 48.734272 ], [ 2.302187, 48.73906 ], [ 2.303062, 48.73255 ], [ 2.304179, 48.72935 ], [ 2.316346, 48.733666 ], [ 2.32047, 48.749007 ], [ 2.328018, 48.750129 ], [ 2.33075, 48.7481 ], [ 2.340757, 48.7409 ], [ 2.350444, 48.740512 ], [ 2.354533, 48.738645 ], [ 2.364891, 48.74569 ], [ 2.369837, 48.746057 ], [ 2.370374, 48.730896 ], [ 2.370437, 48.72786 ], [ 2.370441, 48.725301 ], [ 2.370707, 48.72018 ], [ 2.386585, 48.720097 ], [ 2.411014, 48.72605 ], [ 2.414729, 48.72085 ], [ 2.41426, 48.71782 ], [ 2.430537, 48.72353 ], [ 2.435125, 48.7241 ], [ 2.439831, 48.725171 ], [ 2.442471, 48.72116 ], [ 2.446577, 48.71592 ], [ 2.450946, 48.71536 ], [ 2.450352, 48.7215 ], [ 2.468022, 48.72696 ], [ 2.472979, 48.72757 ], [ 2.475385, 48.727599 ], [ 2.480113, 48.72792 ], [ 2.484547, 48.72908 ], [ 2.505499, 48.734707 ], [ 2.510055, 48.734663 ], [ 2.515478, 48.72908 ], [ 2.517992, 48.715906 ], [ 2.519286, 48.7127 ], [ 2.526118, 48.708617 ], [ 2.529129, 48.70631 ], [ 2.527896, 48.704378 ], [ 2.531077, 48.699786 ], [ 2.540215, 48.698994 ], [ 2.54431, 48.69845 ], [ 2.548329, 48.69244 ], [ 2.549092, 48.6891 ], [ 2.566907, 48.69183 ], [ 2.57166, 48.692023 ], [ 2.580376, 48.68948 ], [ 2.584646, 48.68034 ], [ 2.584074, 48.67715 ], [ 2.579195, 48.677514 ], [ 2.565205, 48.66936 ], [ 2.556959, 48.672883 ], [ 2.547461, 48.67192 ], [ 2.544822, 48.66927 ], [ 2.533752, 48.6573 ], [ 2.544445, 48.65171 ], [ 2.547965, 48.64966 ], [ 2.540056, 48.63365 ], [ 2.520278, 48.63127 ], [ 2.516511, 48.62915 ], [ 2.525227, 48.621201 ], [ 2.526154, 48.614773 ], [ 2.539681, 48.611489 ], [ 2.542513, 48.608801 ], [ 2.543285, 48.605818 ], [ 2.54145, 48.596887 ], [ 2.539227, 48.593685 ], [ 2.518277, 48.58326 ], [ 2.522051, 48.57675 ], [ 2.521772, 48.573224 ], [ 2.526677, 48.573414 ], [ 2.531595, 48.573659 ], [ 2.519648, 48.56834 ], [ 2.518054, 48.561802 ], [ 2.499315, 48.54291 ], [ 2.509452, 48.54262 ], [ 2.49761, 48.51724 ], [ 2.506859, 48.515779 ], [ 2.509083, 48.509626 ], [ 2.513823, 48.50953 ], [ 2.512086, 48.49541 ], [ 2.509908, 48.49085 ], [ 2.510364, 48.488445 ], [ 2.502473, 48.484247 ], [ 2.505938, 48.461159 ], [ 2.502797, 48.4601 ], [ 2.499641, 48.45905 ], [ 2.498523, 48.45719 ], [ 2.501263, 48.45635 ], [ 2.505804, 48.451011 ], [ 2.504411, 48.44808 ], [ 2.505037, 48.44484 ], [ 2.505029, 48.429866 ], [ 2.517311, 48.42768 ], [ 2.543782, 48.403913 ], [ 2.54706, 48.40142 ], [ 2.521784, 48.40404 ], [ 2.50648, 48.394911 ], [ 2.486035, 48.39683 ], [ 2.473832, 48.39039 ], [ 2.482461, 48.38246 ], [ 2.44984, 48.37371 ], [ 2.450638, 48.36716 ], [ 2.440984, 48.36838 ], [ 2.433195, 48.3644 ], [ 2.429832, 48.36202 ], [ 2.433247, 48.35961 ], [ 2.441143, 48.3572 ], [ 2.43034, 48.347506 ], [ 2.433827, 48.33454 ], [ 2.429878, 48.33657 ], [ 2.410141, 48.336079 ], [ 2.401297, 48.33302 ], [ 2.392372, 48.33587 ], [ 2.394016, 48.33253 ], [ 2.395402, 48.325757 ], [ 2.402664, 48.32072 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "93", "CODE_DEPT": "92", "NOM_DEPT": "HAUTS-DE-SEINE", "CODE_CHF": "050", "NOM_CHF": "NANTERRE", "X_CHF_LIEU": "6416", "Y_CHF_LIEU": "68659", "X_CENTROID": "6458", "Y_CENTROID": "68555", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.32047, 48.749007 ], [ 2.316346, 48.733666 ], [ 2.304179, 48.72935 ], [ 2.303062, 48.73255 ], [ 2.302187, 48.73906 ], [ 2.278781, 48.734272 ], [ 2.275813, 48.74044 ], [ 2.279015, 48.742935 ], [ 2.283756, 48.74831 ], [ 2.276283, 48.756581 ], [ 2.271536, 48.75756 ], [ 2.264862, 48.761036 ], [ 2.254936, 48.760659 ], [ 2.232519, 48.76596 ], [ 2.232908, 48.769136 ], [ 2.228836, 48.77489 ], [ 2.22637, 48.78151 ], [ 2.223876, 48.78449 ], [ 2.209114, 48.7868 ], [ 2.205307, 48.79546 ], [ 2.202513, 48.79834 ], [ 2.183049, 48.79724 ], [ 2.185087, 48.800075 ], [ 2.17674, 48.81399 ], [ 2.172757, 48.81522 ], [ 2.161221, 48.81272 ], [ 2.157309, 48.81465 ], [ 2.15043, 48.81895 ], [ 2.150436, 48.819396 ], [ 2.150808, 48.822474 ], [ 2.148626, 48.82848 ], [ 2.147655, 48.83121 ], [ 2.145876, 48.8367 ], [ 2.145874, 48.84017 ], [ 2.149748, 48.84657 ], [ 2.159584, 48.847557 ], [ 2.157847, 48.85049 ], [ 2.150549, 48.85846 ], [ 2.153669, 48.864415 ], [ 2.153155, 48.86915 ], [ 2.150383, 48.87111 ], [ 2.155696, 48.87725 ], [ 2.157976, 48.88047 ], [ 2.166658, 48.892656 ], [ 2.169241, 48.89574 ], [ 2.174289, 48.899067 ], [ 2.196361, 48.906951 ], [ 2.200616, 48.9088 ], [ 2.216673, 48.917959 ], [ 2.220333, 48.920528 ], [ 2.227342, 48.92544 ], [ 2.230896, 48.92786 ], [ 2.243644, 48.934337 ], [ 2.247595, 48.93674 ], [ 2.251839, 48.93873 ], [ 2.268888, 48.94657 ], [ 2.288738, 48.9507 ], [ 2.29341, 48.95056 ], [ 2.311536, 48.94792 ], [ 2.316571, 48.9471 ], [ 2.334896, 48.94154 ], [ 2.335926, 48.93151 ], [ 2.328273, 48.9227 ], [ 2.325545, 48.9205 ], [ 2.322101, 48.91879 ], [ 2.320552, 48.916183 ], [ 2.317183, 48.915057 ], [ 2.313758, 48.914022 ], [ 2.315757, 48.91141 ], [ 2.31983, 48.900414 ], [ 2.315925, 48.89866 ], [ 2.303792, 48.894053 ], [ 2.299983, 48.892268 ], [ 2.284306, 48.885772 ], [ 2.280497, 48.881181 ], [ 2.280002, 48.878534 ], [ 2.260275, 48.880221 ], [ 2.255282, 48.874641 ], [ 2.245659, 48.87635 ], [ 2.236482, 48.87085 ], [ 2.23278, 48.86951 ], [ 2.230058, 48.867314 ], [ 2.225787, 48.85934 ], [ 2.223956, 48.85322 ], [ 2.248056, 48.84632 ], [ 2.257612, 48.834607 ], [ 2.262759, 48.83383 ], [ 2.263029, 48.834011 ], [ 2.271895, 48.828363 ], [ 2.285347, 48.829803 ], [ 2.289538, 48.82818 ], [ 2.297141, 48.825987 ], [ 2.301049, 48.825075 ], [ 2.309534, 48.823082 ], [ 2.313783, 48.82211 ], [ 2.328164, 48.81907 ], [ 2.332032, 48.81694 ], [ 2.328902, 48.81358 ], [ 2.323179, 48.809697 ], [ 2.318954, 48.80993 ], [ 2.324925, 48.80422 ], [ 2.323857, 48.80152 ], [ 2.31856, 48.78803 ], [ 2.322413, 48.78692 ], [ 2.32565, 48.781829 ], [ 2.319929, 48.77072 ], [ 2.316523, 48.766856 ], [ 2.311483, 48.75802 ], [ 2.31192, 48.751728 ], [ 2.32047, 48.749007 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "94", "CODE_DEPT": "93", "NOM_DEPT": "SEINE-SAINT-DENIS", "CODE_CHF": "008", "NOM_CHF": "BOBIGNY", "X_CHF_LIEU": "6588", "Y_CHF_LIEU": "68679", "X_CENTROID": "6617", "Y_CENTROID": "68687", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.59228, 48.807437 ], [ 2.570009, 48.81509 ], [ 2.568499, 48.818281 ], [ 2.567792, 48.82466 ], [ 2.538968, 48.838757 ], [ 2.534248, 48.84406 ], [ 2.518276, 48.84877 ], [ 2.515649, 48.85138 ], [ 2.51367, 48.85017 ], [ 2.51073, 48.8527 ], [ 2.503941, 48.85723 ], [ 2.499718, 48.85568 ], [ 2.496133, 48.857128 ], [ 2.496392, 48.859908 ], [ 2.481534, 48.86141 ], [ 2.476856, 48.86031 ], [ 2.454295, 48.85542 ], [ 2.447103, 48.851156 ], [ 2.442308, 48.85231 ], [ 2.418969, 48.849332 ], [ 2.416367, 48.849247 ], [ 2.415427, 48.855268 ], [ 2.414556, 48.858817 ], [ 2.413277, 48.873119 ], [ 2.410694, 48.87847 ], [ 2.407535, 48.880528 ], [ 2.400339, 48.88375 ], [ 2.398651, 48.889414 ], [ 2.397957, 48.89286 ], [ 2.389444, 48.901193 ], [ 2.370286, 48.90165 ], [ 2.365854, 48.90161 ], [ 2.361188, 48.90161 ], [ 2.351873, 48.90153 ], [ 2.334361, 48.901233 ], [ 2.329983, 48.901163 ], [ 2.324885, 48.90087 ], [ 2.31983, 48.900414 ], [ 2.315757, 48.91141 ], [ 2.313758, 48.914022 ], [ 2.317183, 48.915057 ], [ 2.320552, 48.916183 ], [ 2.322101, 48.91879 ], [ 2.325545, 48.9205 ], [ 2.328273, 48.9227 ], [ 2.335926, 48.93151 ], [ 2.334896, 48.94154 ], [ 2.316571, 48.9471 ], [ 2.311536, 48.94792 ], [ 2.29341, 48.95056 ], [ 2.288738, 48.9507 ], [ 2.292153, 48.9516 ], [ 2.289328, 48.95645 ], [ 2.288461, 48.95898 ], [ 2.29481, 48.96409 ], [ 2.298617, 48.966353 ], [ 2.309233, 48.96303 ], [ 2.313177, 48.96222 ], [ 2.324595, 48.95798 ], [ 2.328342, 48.95966 ], [ 2.333313, 48.95538 ], [ 2.340954, 48.964453 ], [ 2.349237, 48.96719 ], [ 2.354076, 48.96582 ], [ 2.361812, 48.973163 ], [ 2.366156, 48.97423 ], [ 2.370926, 48.97289 ], [ 2.375936, 48.972023 ], [ 2.379178, 48.97159 ], [ 2.382447, 48.971293 ], [ 2.403173, 48.957774 ], [ 2.407384, 48.956131 ], [ 2.410523, 48.95749 ], [ 2.417452, 48.959382 ], [ 2.422241, 48.958524 ], [ 2.435657, 48.95551 ], [ 2.445422, 48.95664 ], [ 2.448577, 48.95527 ], [ 2.456014, 48.95578 ], [ 2.45949, 48.955055 ], [ 2.466738, 48.96335 ], [ 2.491128, 48.973206 ], [ 2.496009, 48.972723 ], [ 2.497219, 48.974805 ], [ 2.50052, 48.975287 ], [ 2.50151, 48.978825 ], [ 2.511464, 48.980817 ], [ 2.532661, 49.00433 ], [ 2.552215, 49.006433 ], [ 2.553061, 49.009817 ], [ 2.561242, 49.012185 ], [ 2.565792, 49.0124 ], [ 2.571528, 49.001531 ], [ 2.575843, 49.00029 ], [ 2.579819, 48.98686 ], [ 2.576511, 48.980354 ], [ 2.566237, 48.97551 ], [ 2.590118, 48.952623 ], [ 2.591905, 48.94935 ], [ 2.593811, 48.946593 ], [ 2.597808, 48.938144 ], [ 2.602682, 48.93276 ], [ 2.602598, 48.929357 ], [ 2.596169, 48.92603 ], [ 2.592342, 48.925024 ], [ 2.58878, 48.90949 ], [ 2.592724, 48.90753 ], [ 2.591024, 48.906953 ], [ 2.587229, 48.89854 ], [ 2.559406, 48.885338 ], [ 2.563216, 48.8831 ], [ 2.570615, 48.87878 ], [ 2.567967, 48.86594 ], [ 2.582285, 48.8654 ], [ 2.587332, 48.865 ], [ 2.586866, 48.86183 ], [ 2.582522, 48.8562 ], [ 2.573836, 48.85338 ], [ 2.584171, 48.837429 ], [ 2.586281, 48.83425 ], [ 2.586672, 48.827887 ], [ 2.591136, 48.826634 ], [ 2.595334, 48.817457 ], [ 2.595795, 48.81427 ], [ 2.59228, 48.807437 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "95", "CODE_DEPT": "94", "NOM_DEPT": "VAL-DE-MARNE", "CODE_CHF": "028", "NOM_CHF": "CRETEIL", "X_CHF_LIEU": "6604", "Y_CHF_LIEU": "68546", "X_CENTROID": "6609", "Y_CENTROID": "68531", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.57166, 48.692023 ], [ 2.566907, 48.69183 ], [ 2.549092, 48.6891 ], [ 2.548329, 48.69244 ], [ 2.54431, 48.69845 ], [ 2.540215, 48.698994 ], [ 2.531077, 48.699786 ], [ 2.527896, 48.704378 ], [ 2.529129, 48.70631 ], [ 2.526118, 48.708617 ], [ 2.519286, 48.7127 ], [ 2.517992, 48.715906 ], [ 2.515478, 48.72908 ], [ 2.510055, 48.734663 ], [ 2.505499, 48.734707 ], [ 2.484547, 48.72908 ], [ 2.480113, 48.72792 ], [ 2.475385, 48.727599 ], [ 2.472979, 48.72757 ], [ 2.468022, 48.72696 ], [ 2.450352, 48.7215 ], [ 2.450946, 48.71536 ], [ 2.446577, 48.71592 ], [ 2.442471, 48.72116 ], [ 2.439831, 48.725171 ], [ 2.435125, 48.7241 ], [ 2.430537, 48.72353 ], [ 2.41426, 48.71782 ], [ 2.414729, 48.72085 ], [ 2.411014, 48.72605 ], [ 2.386585, 48.720097 ], [ 2.370707, 48.72018 ], [ 2.370441, 48.725301 ], [ 2.370437, 48.72786 ], [ 2.370374, 48.730896 ], [ 2.369837, 48.746057 ], [ 2.364891, 48.74569 ], [ 2.354533, 48.738645 ], [ 2.350444, 48.740512 ], [ 2.340757, 48.7409 ], [ 2.33075, 48.7481 ], [ 2.328018, 48.750129 ], [ 2.32047, 48.749007 ], [ 2.31192, 48.751728 ], [ 2.311483, 48.75802 ], [ 2.316523, 48.766856 ], [ 2.319929, 48.77072 ], [ 2.32565, 48.781829 ], [ 2.322413, 48.78692 ], [ 2.31856, 48.78803 ], [ 2.323857, 48.80152 ], [ 2.324925, 48.80422 ], [ 2.318954, 48.80993 ], [ 2.323179, 48.809697 ], [ 2.328902, 48.81358 ], [ 2.332032, 48.81694 ], [ 2.344084, 48.81596 ], [ 2.352648, 48.818314 ], [ 2.355593, 48.81587 ], [ 2.360036, 48.81561 ], [ 2.364442, 48.81608 ], [ 2.368823, 48.81755 ], [ 2.389917, 48.82592 ], [ 2.393998, 48.82757 ], [ 2.403242, 48.82916 ], [ 2.419933, 48.82393 ], [ 2.456645, 48.81701 ], [ 2.461194, 48.818277 ], [ 2.466188, 48.826672 ], [ 2.464996, 48.82999 ], [ 2.46962, 48.836077 ], [ 2.467314, 48.83912 ], [ 2.464673, 48.841532 ], [ 2.447579, 48.8449 ], [ 2.442857, 48.84555 ], [ 2.437059, 48.84117 ], [ 2.427461, 48.84164 ], [ 2.422967, 48.842714 ], [ 2.416502, 48.8347 ], [ 2.415892, 48.84664 ], [ 2.416367, 48.849247 ], [ 2.418969, 48.849332 ], [ 2.442308, 48.85231 ], [ 2.447103, 48.851156 ], [ 2.454295, 48.85542 ], [ 2.476856, 48.86031 ], [ 2.481534, 48.86141 ], [ 2.496392, 48.859908 ], [ 2.496133, 48.857128 ], [ 2.499718, 48.85568 ], [ 2.503941, 48.85723 ], [ 2.51073, 48.8527 ], [ 2.51367, 48.85017 ], [ 2.515649, 48.85138 ], [ 2.518276, 48.84877 ], [ 2.534248, 48.84406 ], [ 2.538968, 48.838757 ], [ 2.567792, 48.82466 ], [ 2.568499, 48.818281 ], [ 2.570009, 48.81509 ], [ 2.59228, 48.807437 ], [ 2.596498, 48.80607 ], [ 2.593058, 48.80031 ], [ 2.591542, 48.79737 ], [ 2.598816, 48.793366 ], [ 2.587516, 48.77805 ], [ 2.591044, 48.77233 ], [ 2.60644, 48.773307 ], [ 2.614817, 48.761121 ], [ 2.597544, 48.760569 ], [ 2.599551, 48.75074 ], [ 2.587757, 48.74408 ], [ 2.594109, 48.73523 ], [ 2.594679, 48.731805 ], [ 2.580406, 48.72299 ], [ 2.570969, 48.71173 ], [ 2.568137, 48.708974 ], [ 2.568804, 48.70722 ], [ 2.571587, 48.70266 ], [ 2.574345, 48.701 ], [ 2.577677, 48.69901 ], [ 2.572261, 48.694966 ], [ 2.57166, 48.692023 ] ] ] } }
-,
-{ "type": "Feature", "properties": { "ID_GEOFLA": "96", "CODE_DEPT": "95", "NOM_DEPT": "VAL-D'OISE", "CODE_CHF": "500", "NOM_CHF": "PONTOISE", "X_CHF_LIEU": "6342", "Y_CHF_LIEU": "68838", "X_CENTROID": "6365", "Y_CENTROID": "68873", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.200616, 48.9088 ], [ 2.198638, 48.91148 ], [ 2.201798, 48.91362 ], [ 2.199191, 48.91897 ], [ 2.202626, 48.920996 ], [ 2.198927, 48.935252 ], [ 2.201901, 48.93713 ], [ 2.20663, 48.94119 ], [ 2.205858, 48.94974 ], [ 2.201086, 48.950186 ], [ 2.173141, 48.9533 ], [ 2.175501, 48.95519 ], [ 2.178105, 48.95977 ], [ 2.178155, 48.96351 ], [ 2.17802, 48.96685 ], [ 2.166354, 48.981478 ], [ 2.1619, 48.983165 ], [ 2.127453, 48.989052 ], [ 2.122018, 48.99852 ], [ 2.126795, 49.008687 ], [ 2.121257, 49.01849 ], [ 2.105785, 49.00948 ], [ 2.086064, 49.01465 ], [ 2.083654, 49.01178 ], [ 2.071694, 49.001709 ], [ 2.067402, 49.00632 ], [ 2.064429, 49.008208 ], [ 2.046502, 49.00185 ], [ 2.026445, 49.000703 ], [ 2.023614, 48.997901 ], [ 2.010479, 49.00584 ], [ 2.007631, 49.00824 ], [ 2.004889, 49.010076 ], [ 2.001651, 49.01281 ], [ 1.991882, 49.02101 ], [ 1.986761, 49.01998 ], [ 1.976186, 49.01957 ], [ 1.967144, 49.023201 ], [ 1.957081, 49.021801 ], [ 1.954948, 49.024535 ], [ 1.945651, 49.025137 ], [ 1.937802, 49.02178 ], [ 1.935202, 49.02456 ], [ 1.912474, 49.041612 ], [ 1.914082, 49.04583 ], [ 1.911215, 49.046843 ], [ 1.908523, 49.048024 ], [ 1.883463, 49.03262 ], [ 1.881715, 49.026141 ], [ 1.881898, 49.01954 ], [ 1.877382, 49.0191 ], [ 1.861713, 49.01412 ], [ 1.859255, 49.013969 ], [ 1.862414, 49.020159 ], [ 1.859318, 49.02977 ], [ 1.851334, 49.03336 ], [ 1.863854, 49.05437 ], [ 1.865469, 49.057472 ], [ 1.861522, 49.05901 ], [ 1.841442, 49.064787 ], [ 1.840643, 49.069339 ], [ 1.836704, 49.07162 ], [ 1.823601, 49.07667 ], [ 1.815394, 49.07641 ], [ 1.811698, 49.07405 ], [ 1.796547, 49.072232 ], [ 1.797862, 49.06922 ], [ 1.7943, 49.058199 ], [ 1.789382, 49.057862 ], [ 1.784687, 49.05735 ], [ 1.770733, 49.05778 ], [ 1.759422, 49.06328 ], [ 1.755356, 49.061067 ], [ 1.751177, 49.04823 ], [ 1.745981, 49.04812 ], [ 1.735638, 49.04868 ], [ 1.732066, 49.05042 ], [ 1.729224, 49.04859 ], [ 1.723457, 49.04498 ], [ 1.719925, 49.0473 ], [ 1.693668, 49.05668 ], [ 1.696857, 49.06536 ], [ 1.691372, 49.07013 ], [ 1.687592, 49.071847 ], [ 1.683574, 49.0738 ], [ 1.670822, 49.078911 ], [ 1.646598, 49.08132 ], [ 1.641721, 49.08092 ], [ 1.620154, 49.073924 ], [ 1.614301, 49.07118 ], [ 1.612163, 49.0733 ], [ 1.608796, 49.07789 ], [ 1.619512, 49.08418 ], [ 1.623322, 49.08608 ], [ 1.620143, 49.096981 ], [ 1.627035, 49.105127 ], [ 1.646559, 49.12164 ], [ 1.648114, 49.12503 ], [ 1.652877, 49.128943 ], [ 1.655991, 49.13039 ], [ 1.653229, 49.14176 ], [ 1.662683, 49.1525 ], [ 1.664304, 49.153951 ], [ 1.661447, 49.156806 ], [ 1.669326, 49.169239 ], [ 1.666334, 49.17572 ], [ 1.671825, 49.180893 ], [ 1.670339, 49.189608 ], [ 1.671348, 49.19304 ], [ 1.676462, 49.20285 ], [ 1.673207, 49.205626 ], [ 1.676291, 49.21219 ], [ 1.702869, 49.22885 ], [ 1.704364, 49.2322 ], [ 1.710812, 49.23738 ], [ 1.736324, 49.225573 ], [ 1.740453, 49.22344 ], [ 1.735795, 49.22194 ], [ 1.73398, 49.21199 ], [ 1.715608, 49.206238 ], [ 1.715583, 49.20285 ], [ 1.72571, 49.197273 ], [ 1.725913, 49.19401 ], [ 1.73895, 49.19219 ], [ 1.742878, 49.18299 ], [ 1.742695, 49.1798 ], [ 1.756131, 49.174879 ], [ 1.773149, 49.18247 ], [ 1.776379, 49.185094 ], [ 1.776924, 49.185225 ], [ 1.789302, 49.181493 ], [ 1.793582, 49.18028 ], [ 1.794378, 49.183189 ], [ 1.797776, 49.185147 ], [ 1.816999, 49.17587 ], [ 1.831251, 49.17698 ], [ 1.83664, 49.171547 ], [ 1.834069, 49.16512 ], [ 1.838268, 49.16619 ], [ 1.849074, 49.170489 ], [ 1.869788, 49.17265 ], [ 1.874497, 49.17429 ], [ 1.876765, 49.175309 ], [ 1.882617, 49.16594 ], [ 1.882568, 49.1625 ], [ 1.933925, 49.17335 ], [ 1.937433, 49.170761 ], [ 1.958097, 49.17287 ], [ 1.962698, 49.1746 ], [ 1.971263, 49.181107 ], [ 1.974086, 49.183316 ], [ 1.990193, 49.17676 ], [ 1.999445, 49.175573 ], [ 2.018235, 49.186355 ], [ 2.021784, 49.18868 ], [ 2.035163, 49.189908 ], [ 2.038236, 49.19213 ], [ 2.038368, 49.19241 ], [ 2.050488, 49.19878 ], [ 2.069874, 49.203344 ], [ 2.076699, 49.20844 ], [ 2.08089, 49.21045 ], [ 2.080769, 49.207203 ], [ 2.09024, 49.20545 ], [ 2.093329, 49.19285 ], [ 2.095875, 49.19006 ], [ 2.11591, 49.18799 ], [ 2.13028, 49.19075 ], [ 2.139762, 49.18313 ], [ 2.143261, 49.18555 ], [ 2.153026, 49.183925 ], [ 2.157181, 49.182282 ], [ 2.163401, 49.17762 ], [ 2.157738, 49.17251 ], [ 2.161839, 49.16823 ], [ 2.16393, 49.1661 ], [ 2.172135, 49.166607 ], [ 2.178986, 49.17382 ], [ 2.176584, 49.17654 ], [ 2.183442, 49.17382 ], [ 2.187374, 49.173229 ], [ 2.207218, 49.17489 ], [ 2.215478, 49.17823 ], [ 2.220277, 49.179201 ], [ 2.234054, 49.165695 ], [ 2.219639, 49.15692 ], [ 2.21636, 49.154378 ], [ 2.225833, 49.1516 ], [ 2.241583, 49.151573 ], [ 2.259401, 49.15544 ], [ 2.262132, 49.158102 ], [ 2.266531, 49.156295 ], [ 2.281365, 49.15913 ], [ 2.286413, 49.15992 ], [ 2.28887, 49.169681 ], [ 2.299925, 49.180589 ], [ 2.301197, 49.183887 ], [ 2.306913, 49.185179 ], [ 2.310593, 49.184876 ], [ 2.317953, 49.185233 ], [ 2.321777, 49.18444 ], [ 2.354227, 49.150485 ], [ 2.358039, 49.14815 ], [ 2.369839, 49.15718 ], [ 2.3732, 49.15925 ], [ 2.394792, 49.14981 ], [ 2.410447, 49.15208 ], [ 2.440903, 49.145803 ], [ 2.439898, 49.14365 ], [ 2.438907, 49.1415 ], [ 2.436577, 49.13646 ], [ 2.435399, 49.13394 ], [ 2.458813, 49.139483 ], [ 2.461309, 49.13661 ], [ 2.473884, 49.132987 ], [ 2.477603, 49.13107 ], [ 2.477004, 49.12797 ], [ 2.494845, 49.12351 ], [ 2.499227, 49.12227 ], [ 2.501596, 49.11948 ], [ 2.489931, 49.10636 ], [ 2.526067, 49.10089 ], [ 2.531063, 49.0996 ], [ 2.532668, 49.11593 ], [ 2.537924, 49.12103 ], [ 2.542654, 49.122065 ], [ 2.542285, 49.118854 ], [ 2.554091, 49.11754 ], [ 2.559479, 49.09762 ], [ 2.576746, 49.092429 ], [ 2.580161, 49.08326 ], [ 2.582606, 49.08048 ], [ 2.586578, 49.080127 ], [ 2.590524, 49.07965 ], [ 2.573213, 49.059283 ], [ 2.594474, 49.04714 ], [ 2.589495, 49.04717 ], [ 2.579624, 49.046501 ], [ 2.56934, 49.03959 ], [ 2.568943, 49.03635 ], [ 2.563288, 49.02743 ], [ 2.545077, 49.022421 ], [ 2.535425, 49.02379 ], [ 2.535372, 49.02057 ], [ 2.538421, 49.01446 ], [ 2.550672, 49.01263 ], [ 2.553061, 49.009817 ], [ 2.552215, 49.006433 ], [ 2.532661, 49.00433 ], [ 2.511464, 48.980817 ], [ 2.50151, 48.978825 ], [ 2.50052, 48.975287 ], [ 2.497219, 48.974805 ], [ 2.496009, 48.972723 ], [ 2.491128, 48.973206 ], [ 2.466738, 48.96335 ], [ 2.45949, 48.955055 ], [ 2.456014, 48.95578 ], [ 2.448577, 48.95527 ], [ 2.445422, 48.95664 ], [ 2.435657, 48.95551 ], [ 2.422241, 48.958524 ], [ 2.417452, 48.959382 ], [ 2.410523, 48.95749 ], [ 2.407384, 48.956131 ], [ 2.403173, 48.957774 ], [ 2.382447, 48.971293 ], [ 2.379178, 48.97159 ], [ 2.375936, 48.972023 ], [ 2.370926, 48.97289 ], [ 2.366156, 48.97423 ], [ 2.361812, 48.973163 ], [ 2.354076, 48.96582 ], [ 2.349237, 48.96719 ], [ 2.340954, 48.964453 ], [ 2.333313, 48.95538 ], [ 2.328342, 48.95966 ], [ 2.324595, 48.95798 ], [ 2.313177, 48.96222 ], [ 2.309233, 48.96303 ], [ 2.298617, 48.966353 ], [ 2.29481, 48.96409 ], [ 2.288461, 48.95898 ], [ 2.289328, 48.95645 ], [ 2.292153, 48.9516 ], [ 2.288738, 48.9507 ], [ 2.268888, 48.94657 ], [ 2.251839, 48.93873 ], [ 2.247595, 48.93674 ], [ 2.243644, 48.934337 ], [ 2.230896, 48.92786 ], [ 2.227342, 48.92544 ], [ 2.220333, 48.920528 ], [ 2.216673, 48.917959 ], [ 2.200616, 48.9088 ] ] ] } }
-
-]
-}
Copied: cartography/trunk/leaflet/src/main/webapp/DEPARTEMENTS.json (from rev 682, cartography/trunk/leaflet/src/main/webapp/DEPARTEMENT.json)
===================================================================
--- cartography/trunk/leaflet/src/main/webapp/DEPARTEMENTS.json (rev 0)
+++ cartography/trunk/leaflet/src/main/webapp/DEPARTEMENTS.json 2013-07-04 14:46:39 UTC (rev 683)
@@ -0,0 +1,198 @@
+var depts = {
+"type": "FeatureCollection",
+
+"features": [
+{ "type": "Feature", "properties": { "ID_GEOFLA": "1", "CODE_DEPT": "01", "NOM_DEPT": "AIN", "CODE_CHF": "053", "NOM_CHF": "BOURG-EN-BRESSE", "X_CHF_LIEU": "8717", "Y_CHF_LIEU": "65696", "X_CENTROID": "8814", "Y_CENTROID": "65582", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.829631, 45.93758 ], [ 5.826116, 45.935262 ], [ 5.821881, 45.929241 ], [ 5.828998, 45.91696 ], [ 5.826317, 45.903693 ], [ 5.824882, 45.900386 ], [ 5.815154, 45.877201 ], [ 5.813809, 45.87385 ], [ 5.807525, 45.86064 ], [ 5.805399, 45.857881 ], [ 5.801109, 45.845796 ], [ 5.79585, 45.8298 ], [ 5.79213, 45.8281 ], [ 5.786934, 45.823224 ], [ 5.785319, 45.820075 ], [ 5.784591, 45.797224 ], [ 5.781383, 45.78084 ], [ 5.780056, 45.77802 ], [ 5.783047, 45.772465 ], [ 5.782612, 45.768944 ], [ 5.779509, 45.758712 ], [ 5.783592, 45.745204 ], [ 5.780427, 45.74292 ], [ 5.776639, 45.74258 ], [ 5.769679, 45.740816 ], [ 5.771226, 45.73755 ], [ 5.776366, 45.72792 ], [ 5.753456, 45.7068 ], [ 5.744182, 45.706263 ], [ 5.731321, 45.710153 ], [ 5.727741, 45.70927 ], [ 5.723288, 45.708167 ], [ 5.700599, 45.709948 ], [ 5.699897, 45.706901 ], [ 5.703726, 45.69815 ], [ 5.706277, 45.6951 ], [ 5.709199, 45.684927 ], [ 5.68564, 45.667012 ], [ 5.684166, 45.660199 ], [ 5.687844, 45.65364 ], [ 5.68945, 45.65048 ], [ 5.687901, 45.643964 ], [ 5.684695, 45.64143 ], [ 5.676337, 45.638059 ], [ 5.652818, 45.636679 ], [ 5.648328, 45.627405 ], [ 5.646456, 45.624764 ], [ 5.638412, 45.623025 ], [ 5.636372, 45.617397 ], [ 5.635454, 45.61404 ], [ 5.627389, 45.611 ], [ 5.623748, 45.61327 ], [ 5.621712, 45.61637 ], [ 5.614911, 45.625412 ], [ 5.604439, 45.63618 ], [ 5.601936, 45.652616 ], [ 5.581829, 45.661944 ], [ 5.578845, 45.66464 ], [ 5.579384, 45.66793 ], [ 5.567337, 45.673078 ], [ 5.563144, 45.674111 ], [ 5.555279, 45.671605 ], [ 5.551755, 45.673496 ], [ 5.550315, 45.68185 ], [ 5.547252, 45.68456 ], [ 5.545775, 45.69463 ], [ 5.5523, 45.6984 ], [ 5.556579, 45.696685 ], [ 5.565766, 45.68492 ], [ 5.574246, 45.687588 ], [ 5.575188, 45.69099 ], [ 5.570146, 45.69675 ], [ 5.556418, 45.70043 ], [ 5.552641, 45.7097 ], [ 5.549373, 45.711894 ], [ 5.545542, 45.71359 ], [ 5.527275, 45.71546 ], [ 5.524538, 45.718336 ], [ 5.517509, 45.73119 ], [ 5.514251, 45.733378 ], [ 5.498152, 45.744385 ], [ 5.494597, 45.7466 ], [ 5.483998, 45.75328 ], [ 5.460403, 45.778306 ], [ 5.450481, 45.784234 ], [ 5.447078, 45.786191 ], [ 5.444401, 45.789132 ], [ 5.439151, 45.795056 ], [ 5.435753, 45.79743 ], [ 5.422513, 45.80713 ], [ 5.422726, 45.82372 ], [ 5.436129, 45.826383 ], [ 5.435634, 45.829773 ], [ 5.433658, 45.8323 ], [ 5.430269, 45.83496 ], [ 5.417908, 45.841118 ], [ 5.416317, 45.848044 ], [ 5.414546, 45.85089 ], [ 5.404377, 45.85687 ], [ 5.381008, 45.86718 ], [ 5.37802, 45.86966 ], [ 5.374821, 45.87234 ], [ 5.354928, 45.88278 ], [ 5.340914, 45.880514 ], [ 5.338765, 45.878504 ], [ 5.335545, 45.87404 ], [ 5.334517, 45.8708 ], [ 5.330497, 45.864784 ], [ 5.314118, 45.85826 ], [ 5.302491, 45.848133 ], [ 5.299254, 45.83419 ], [ 5.291011, 45.821277 ], [ 5.290627, 45.814186 ], [ 5.288808, 45.81103 ], [ 5.278328, 45.803985 ], [ 5.266895, 45.78937 ], [ 5.263118, 45.787706 ], [ 5.255627, 45.78431 ], [ 5.251647, 45.7827 ], [ 5.240203, 45.77737 ], [ 5.236253, 45.7752 ], [ 5.224334, 45.76884 ], [ 5.200198, 45.77142 ], [ 5.195541, 45.771151 ], [ 5.188117, 45.77451 ], [ 5.18732, 45.781021 ], [ 5.184895, 45.78418 ], [ 5.177082, 45.79339 ], [ 5.172728, 45.79497 ], [ 5.157854, 45.803218 ], [ 5.144202, 45.80457 ], [ 5.139582, 45.806 ], [ 5.121251, 45.811622 ], [ 5.116455, 45.8112 ], [ 5.112341, 45.80601 ], [ 5.113621, 45.79941 ], [ 5.109059, 45.798321 ], [ 5.101067, 45.81338 ], [ 5.096801, 45.81264 ], [ 5.092558, 45.811834 ], [ 5.087546, 45.8118 ], [ 5.058158, 45.809926 ], [ 5.054278, 45.811582 ], [ 5.045296, 45.81182 ], [ 5.037812, 45.80835 ], [ 5.020714, 45.80713 ], [ 5.016691, 45.80561 ], [ 5.012298, 45.80523 ], [ 5.001206, 45.81012 ], [ 4.996959, 45.809142 ], [ 4.992917, 45.8078 ], [ 4.98034, 45.80584 ], [ 4.970375, 45.80738 ], [ 4.966931, 45.80904 ], [ 4.951516, 45.808766 ], [ 4.946837, 45.809405 ], [ 4.924522, 45.804041 ], [ 4.918589, 45.809357 ], [ 4.919766, 45.82949 ], [ 4.921116, 45.83274 ], [ 4.918781, 45.83565 ], [ 4.91595, 45.845415 ], [ 4.900569, 45.8576 ], [ 4.901239, 45.86059 ], [ 4.909017, 45.87411 ], [ 4.904376, 45.874524 ], [ 4.883827, 45.87999 ], [ 4.883222, 45.88343 ], [ 4.880699, 45.89717 ], [ 4.877315, 45.89668 ], [ 4.872087, 45.893538 ], [ 4.872016, 45.896782 ], [ 4.870683, 45.903127 ], [ 4.853105, 45.90716 ], [ 4.849116, 45.912868 ], [ 4.844452, 45.911557 ], [ 4.805177, 45.89633 ], [ 4.804099, 45.89807 ], [ 4.80955, 45.90653 ], [ 4.810675, 45.909752 ], [ 4.809782, 45.918314 ], [ 4.80776, 45.920805 ], [ 4.803178, 45.921968 ], [ 4.788994, 45.92355 ], [ 4.786921, 45.926478 ], [ 4.777994, 45.93784 ], [ 4.769154, 45.93832 ], [ 4.761121, 45.934998 ], [ 4.756784, 45.93463 ], [ 4.744455, 45.937427 ], [ 4.739899, 45.937875 ], [ 4.731896, 45.9408 ], [ 4.730275, 45.95041 ], [ 4.744998, 45.959882 ], [ 4.748462, 45.96241 ], [ 4.750169, 45.96449 ], [ 4.754611, 45.97381 ], [ 4.749567, 45.99637 ], [ 4.748491, 46.00278 ], [ 4.748988, 46.003757 ], [ 4.74889, 46.00719 ], [ 4.743942, 46.020309 ], [ 4.746389, 46.026946 ], [ 4.746774, 46.03255 ], [ 4.745657, 46.03524 ], [ 4.739617, 46.047487 ], [ 4.75632, 46.05855 ], [ 4.759083, 46.061202 ], [ 4.761755, 46.067438 ], [ 4.761062, 46.07046 ], [ 4.756261, 46.078971 ], [ 4.749615, 46.08242 ], [ 4.748023, 46.091357 ], [ 4.757137, 46.09827 ], [ 4.760178, 46.100645 ], [ 4.762596, 46.102544 ], [ 4.767114, 46.106527 ], [ 4.771191, 46.1117 ], [ 4.772069, 46.117627 ], [ 4.784254, 46.1283 ], [ 4.787486, 46.13089 ], [ 4.793172, 46.136382 ], [ 4.795944, 46.139158 ], [ 4.802787, 46.153407 ], [ 4.80255, 46.156437 ], [ 4.799993, 46.15949 ], [ 4.791741, 46.16361 ], [ 4.784274, 46.16837 ], [ 4.782319, 46.171636 ], [ 4.780213, 46.176677 ], [ 4.780203, 46.18675 ], [ 4.792327, 46.200968 ], [ 4.792735, 46.20751 ], [ 4.79428, 46.217051 ], [ 4.79551, 46.22014 ], [ 4.797847, 46.224543 ], [ 4.800741, 46.229658 ], [ 4.808184, 46.238106 ], [ 4.810798, 46.251233 ], [ 4.810817, 46.25455 ], [ 4.811341, 46.260583 ], [ 4.816488, 46.2654 ], [ 4.824739, 46.272934 ], [ 4.826332, 46.27591 ], [ 4.832926, 46.29944 ], [ 4.839228, 46.308684 ], [ 4.841217, 46.311805 ], [ 4.849389, 46.32322 ], [ 4.851423, 46.32608 ], [ 4.853156, 46.329247 ], [ 4.852652, 46.34279 ], [ 4.85239, 46.34617 ], [ 4.850912, 46.352864 ], [ 4.856454, 46.365123 ], [ 4.85853, 46.36802 ], [ 4.86312, 46.37326 ], [ 4.865691, 46.37576 ], [ 4.86776, 46.37806 ], [ 4.873919, 46.38499 ], [ 4.88495, 46.399883 ], [ 4.887496, 46.402732 ], [ 4.889934, 46.417121 ], [ 4.891047, 46.424056 ], [ 4.891532, 46.42752 ], [ 4.891523, 46.430291 ], [ 4.891797, 46.438555 ], [ 4.892887, 46.44257 ], [ 4.894444, 46.445374 ], [ 4.912497, 46.459323 ], [ 4.914448, 46.46216 ], [ 4.915024, 46.47711 ], [ 4.91453, 46.480113 ], [ 4.914522, 46.481374 ], [ 4.915896, 46.48819 ], [ 4.925241, 46.49615 ], [ 4.927682, 46.499168 ], [ 4.928837, 46.501589 ], [ 4.929616, 46.50408 ], [ 4.931736, 46.509791 ], [ 4.933592, 46.51245 ], [ 4.934745, 46.51332 ], [ 4.947245, 46.51445 ], [ 4.947369, 46.50843 ], [ 4.952797, 46.50447 ], [ 4.962656, 46.50655 ], [ 4.970038, 46.51409 ], [ 4.980216, 46.515203 ], [ 5.006369, 46.509703 ], [ 5.010594, 46.51107 ], [ 5.012448, 46.50297 ], [ 5.014233, 46.50045 ], [ 5.0509, 46.48625 ], [ 5.054751, 46.48428 ], [ 5.071449, 46.48582 ], [ 5.095259, 46.49798 ], [ 5.112817, 46.49296 ], [ 5.129066, 46.50092 ], [ 5.13403, 46.50145 ], [ 5.141168, 46.508484 ], [ 5.164303, 46.50462 ], [ 5.165839, 46.517675 ], [ 5.181672, 46.50998 ], [ 5.201221, 46.50782 ], [ 5.203565, 46.504803 ], [ 5.200343, 46.50257 ], [ 5.209481, 46.492105 ], [ 5.206685, 46.486177 ], [ 5.213031, 46.481541 ], [ 5.21528, 46.47176 ], [ 5.215064, 46.46836 ], [ 5.224698, 46.46835 ], [ 5.233384, 46.46045 ], [ 5.236259, 46.45778 ], [ 5.243864, 46.46046 ], [ 5.248004, 46.45937 ], [ 5.256271, 46.45188 ], [ 5.269653, 46.450226 ], [ 5.273677, 46.44859 ], [ 5.310561, 46.44677 ], [ 5.321727, 46.42895 ], [ 5.308145, 46.42047 ], [ 5.312333, 46.41602 ], [ 5.307817, 46.41486 ], [ 5.298806, 46.41553 ], [ 5.309146, 46.41026 ], [ 5.334092, 46.39972 ], [ 5.348116, 46.39942 ], [ 5.36352, 46.390388 ], [ 5.367105, 46.388692 ], [ 5.370296, 46.38603 ], [ 5.377881, 46.382324 ], [ 5.375164, 46.37971 ], [ 5.365075, 46.37308 ], [ 5.363472, 46.37002 ], [ 5.376474, 46.361669 ], [ 5.375761, 46.35843 ], [ 5.374637, 46.355329 ], [ 5.373462, 46.35224 ], [ 5.402729, 46.33612 ], [ 5.401686, 46.332799 ], [ 5.404352, 46.31918 ], [ 5.404041, 46.31567 ], [ 5.404054, 46.31477 ], [ 5.406583, 46.30991 ], [ 5.41024, 46.309105 ], [ 5.423534, 46.34773 ], [ 5.435942, 46.318468 ], [ 5.437146, 46.315127 ], [ 5.454476, 46.317998 ], [ 5.460892, 46.32247 ], [ 5.46518, 46.323542 ], [ 5.471469, 46.31653 ], [ 5.475305, 46.315385 ], [ 5.473218, 46.30893 ], [ 5.466531, 46.29324 ], [ 5.459001, 46.290531 ], [ 5.457672, 46.27685 ], [ 5.471308, 46.26721 ], [ 5.475362, 46.265221 ], [ 5.499595, 46.268205 ], [ 5.502609, 46.270211 ], [ 5.507498, 46.265481 ], [ 5.51137, 46.26436 ], [ 5.539301, 46.268903 ], [ 5.559458, 46.283515 ], [ 5.561577, 46.286576 ], [ 5.564674, 46.29277 ], [ 5.582606, 46.29324 ], [ 5.587251, 46.292509 ], [ 5.597891, 46.2979 ], [ 5.60215, 46.30681 ], [ 5.604641, 46.30944 ], [ 5.605673, 46.31364 ], [ 5.612518, 46.32656 ], [ 5.635057, 46.33331 ], [ 5.637458, 46.336442 ], [ 5.646092, 46.34281 ], [ 5.649207, 46.3373 ], [ 5.649798, 46.334192 ], [ 5.645285, 46.324791 ], [ 5.668481, 46.3239 ], [ 5.68023, 46.318433 ], [ 5.683316, 46.315874 ], [ 5.684582, 46.310934 ], [ 5.714553, 46.30807 ], [ 5.718978, 46.294287 ], [ 5.71596, 46.28037 ], [ 5.721538, 46.263177 ], [ 5.725181, 46.26069 ], [ 5.72966, 46.261928 ], [ 5.733675, 46.26377 ], [ 5.761568, 46.26715 ], [ 5.766045, 46.26833 ], [ 5.813575, 46.2636 ], [ 5.81828, 46.26287 ], [ 5.826262, 46.261715 ], [ 5.850659, 46.2617 ], [ 5.86085, 46.268771 ], [ 5.867694, 46.26822 ], [ 5.869187, 46.26498 ], [ 5.891985, 46.2836 ], [ 5.894627, 46.286614 ], [ 5.909198, 46.283945 ], [ 5.92187, 46.31194 ], [ 5.925908, 46.31377 ], [ 5.937319, 46.30977 ], [ 5.941531, 46.30926 ], [ 5.944004, 46.31221 ], [ 5.975139, 46.35029 ], [ 5.984117, 46.362656 ], [ 6.013384, 46.375997 ], [ 6.03102, 46.388101 ], [ 6.052807, 46.411409 ], [ 6.056984, 46.41619 ], [ 6.060575, 46.417509 ], [ 6.064008, 46.41623 ], [ 6.097526, 46.408284 ], [ 6.106503, 46.399839 ], [ 6.120401, 46.39595 ], [ 6.147124, 46.37983 ], [ 6.160984, 46.37655 ], [ 6.166676, 46.37074 ], [ 6.166736, 46.36414 ], [ 6.155084, 46.348797 ], [ 6.138661, 46.336571 ], [ 6.137695, 46.333119 ], [ 6.126191, 46.32009 ], [ 6.124378, 46.317263 ], [ 6.119788, 46.31113 ], [ 6.119099, 46.30771 ], [ 6.119469, 46.295283 ], [ 6.105303, 46.287352 ], [ 6.102366, 46.284846 ], [ 6.112992, 46.268046 ], [ 6.116039, 46.265656 ], [ 6.120108, 46.263625 ], [ 6.122535, 46.25334 ], [ 6.115883, 46.244428 ], [ 6.103464, 46.238658 ], [ 6.088144, 46.24704 ], [ 6.08338, 46.2464 ], [ 6.07048, 46.241743 ], [ 6.061954, 46.24488 ], [ 6.046946, 46.231941 ], [ 6.042401, 46.2331 ], [ 6.038615, 46.235317 ], [ 6.029934, 46.23591 ], [ 6.016684, 46.231819 ], [ 6.012598, 46.23002 ], [ 6.002932, 46.22258 ], [ 5.993818, 46.22044 ], [ 5.992718, 46.217169 ], [ 5.974412, 46.214748 ], [ 5.964201, 46.198029 ], [ 5.963676, 46.19697 ], [ 5.990045, 46.187466 ], [ 5.993657, 46.18138 ], [ 5.990267, 46.17488 ], [ 5.98217, 46.17221 ], [ 5.975425, 46.159302 ], [ 5.973349, 46.156167 ], [ 5.964701, 46.14466 ], [ 5.966498, 46.13834 ], [ 5.959563, 46.13426 ], [ 5.956063, 46.132089 ], [ 5.95273, 46.130365 ], [ 5.936956, 46.12865 ], [ 5.927926, 46.128 ], [ 5.920403, 46.131039 ], [ 5.906798, 46.12254 ], [ 5.896829, 46.11977 ], [ 5.893026, 46.118917 ], [ 5.890789, 46.11581 ], [ 5.886227, 46.10962 ], [ 5.892996, 46.09377 ], [ 5.885654, 46.08541 ], [ 5.866262, 46.08554 ], [ 5.855987, 46.08667 ], [ 5.852738, 46.089201 ], [ 5.838211, 46.10255 ], [ 5.829654, 46.105665 ], [ 5.820731, 46.102932 ], [ 5.821693, 46.089897 ], [ 5.819203, 46.087562 ], [ 5.811532, 46.077597 ], [ 5.808074, 46.06086 ], [ 5.810988, 46.058878 ], [ 5.813614, 46.0543 ], [ 5.812553, 46.051513 ], [ 5.806997, 46.04383 ], [ 5.808012, 46.041156 ], [ 5.809339, 46.03295 ], [ 5.810502, 46.029894 ], [ 5.812299, 46.0238 ], [ 5.805472, 46.01574 ], [ 5.806792, 46.01297 ], [ 5.810555, 46.00815 ], [ 5.809541, 46.00525 ], [ 5.810189, 45.99339 ], [ 5.809968, 45.98983 ], [ 5.834026, 45.97203 ], [ 5.833912, 45.96857 ], [ 5.832784, 45.96171 ], [ 5.834832, 45.9523 ], [ 5.8288, 45.94049 ], [ 5.825235, 45.938483 ], [ 5.829631, 45.93758 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "2", "CODE_DEPT": "02", "NOM_DEPT": "AISNE", "CODE_CHF": "408", "NOM_CHF": "LAON", "X_CHF_LIEU": "7451", "Y_CHF_LIEU": "69406", "X_CENTROID": "7404", "Y_CENTROID": "69401", "CODE_REG": "22", "NOM_REGION": "PICARDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.485187, 48.85191 ], [ 3.480156, 48.8516 ], [ 3.470198, 48.850547 ], [ 3.461955, 48.83847 ], [ 3.459253, 48.841066 ], [ 3.445361, 48.843232 ], [ 3.44578, 48.8461 ], [ 3.452232, 48.8563 ], [ 3.448478, 48.85872 ], [ 3.433142, 48.86001 ], [ 3.423063, 48.86757 ], [ 3.408514, 48.86371 ], [ 3.398898, 48.86642 ], [ 3.401029, 48.86872 ], [ 3.405856, 48.87588 ], [ 3.400635, 48.876027 ], [ 3.387958, 48.87097 ], [ 3.38328, 48.87249 ], [ 3.382479, 48.885942 ], [ 3.369828, 48.89614 ], [ 3.37561, 48.90922 ], [ 3.367427, 48.9288 ], [ 3.361726, 48.91956 ], [ 3.330199, 48.90796 ], [ 3.317005, 48.91885 ], [ 3.313076, 48.921216 ], [ 3.312797, 48.92478 ], [ 3.31222, 48.935418 ], [ 3.30475, 48.94877 ], [ 3.300969, 48.94665 ], [ 3.283772, 48.94016 ], [ 3.26948, 48.937455 ], [ 3.265161, 48.939065 ], [ 3.259827, 48.945174 ], [ 3.261229, 48.9471 ], [ 3.262904, 48.948935 ], [ 3.259065, 48.95126 ], [ 3.255523, 48.96132 ], [ 3.254925, 48.96463 ], [ 3.245993, 48.976065 ], [ 3.231216, 48.976751 ], [ 3.229177, 48.98842 ], [ 3.224841, 48.987329 ], [ 3.223297, 48.990452 ], [ 3.209318, 48.993786 ], [ 3.208947, 48.99671 ], [ 3.198993, 49.00579 ], [ 3.171569, 49.012496 ], [ 3.163008, 49.019944 ], [ 3.163424, 49.02626 ], [ 3.176541, 49.03141 ], [ 3.181112, 49.04428 ], [ 3.190614, 49.046717 ], [ 3.190667, 49.049972 ], [ 3.180866, 49.05615 ], [ 3.181708, 49.06217 ], [ 3.180064, 49.065489 ], [ 3.167882, 49.0769 ], [ 3.158681, 49.08041 ], [ 3.155087, 49.082428 ], [ 3.16523, 49.09966 ], [ 3.160231, 49.09929 ], [ 3.145738, 49.10177 ], [ 3.138602, 49.1064 ], [ 3.124129, 49.107235 ], [ 3.121614, 49.10908 ], [ 3.115282, 49.10688 ], [ 3.079808, 49.1129 ], [ 3.071884, 49.117554 ], [ 3.077028, 49.122065 ], [ 3.087084, 49.12321 ], [ 3.093026, 49.12898 ], [ 3.093913, 49.1421 ], [ 3.105274, 49.13555 ], [ 3.113415, 49.13626 ], [ 3.116887, 49.13867 ], [ 3.113521, 49.1411 ], [ 3.107105, 49.14612 ], [ 3.127057, 49.145066 ], [ 3.126777, 49.14851 ], [ 3.142289, 49.157411 ], [ 3.137366, 49.16177 ], [ 3.126879, 49.16219 ], [ 3.113552, 49.167556 ], [ 3.114563, 49.190768 ], [ 3.10245, 49.19731 ], [ 3.086688, 49.173 ], [ 3.094297, 49.15717 ], [ 3.083737, 49.16281 ], [ 3.085004, 49.182755 ], [ 3.077849, 49.194798 ], [ 3.063237, 49.19278 ], [ 3.060085, 49.19525 ], [ 3.061165, 49.204077 ], [ 3.05214, 49.206625 ], [ 3.043415, 49.20905 ], [ 3.034837, 49.20578 ], [ 3.030821, 49.21218 ], [ 3.016537, 49.21631 ], [ 3.006148, 49.215033 ], [ 3.001523, 49.21332 ], [ 2.998614, 49.21043 ], [ 3.00048, 49.19673 ], [ 3.0062, 49.187083 ], [ 3.025431, 49.190209 ], [ 3.029789, 49.183887 ], [ 3.035069, 49.18362 ], [ 3.035753, 49.180685 ], [ 3.037898, 49.16921 ], [ 3.027107, 49.17003 ], [ 3.021733, 49.17057 ], [ 3.015991, 49.18 ], [ 2.991687, 49.191982 ], [ 2.984871, 49.186965 ], [ 2.981375, 49.18447 ], [ 2.976519, 49.1859 ], [ 2.971814, 49.187529 ], [ 2.97115, 49.19708 ], [ 2.967579, 49.20332 ], [ 2.969496, 49.20994 ], [ 2.967366, 49.21533 ], [ 2.958739, 49.226606 ], [ 2.964349, 49.23191 ], [ 2.996211, 49.235315 ], [ 3.00162, 49.235657 ], [ 3.01267, 49.22901 ], [ 3.009196, 49.222917 ], [ 3.022988, 49.219284 ], [ 3.039066, 49.2274 ], [ 3.033311, 49.24334 ], [ 3.033311, 49.24379 ], [ 3.032901, 49.24729 ], [ 3.026756, 49.260573 ], [ 3.030826, 49.26683 ], [ 3.027586, 49.271523 ], [ 3.027533, 49.274903 ], [ 3.036277, 49.282703 ], [ 3.030165, 49.287604 ], [ 3.019265, 49.28142 ], [ 3.014208, 49.28181 ], [ 3.018346, 49.288074 ], [ 3.009304, 49.291113 ], [ 2.994407, 49.2883 ], [ 2.988812, 49.29672 ], [ 2.97006, 49.30261 ], [ 2.973468, 49.30457 ], [ 2.978566, 49.30941 ], [ 2.967232, 49.31895 ], [ 2.96426, 49.32138 ], [ 2.998267, 49.337471 ], [ 3.001788, 49.34015 ], [ 3.008859, 49.337857 ], [ 3.012697, 49.337219 ], [ 3.034824, 49.328981 ], [ 3.036335, 49.32574 ], [ 3.048062, 49.3368 ], [ 3.068641, 49.347304 ], [ 3.072728, 49.34789 ], [ 3.076881, 49.35548 ], [ 3.076804, 49.36871 ], [ 3.081094, 49.374334 ], [ 3.094371, 49.37853 ], [ 3.090827, 49.398246 ], [ 3.095633, 49.39798 ], [ 3.095987, 49.41791 ], [ 3.095304, 49.42123 ], [ 3.095073, 49.423041 ], [ 3.094759, 49.42484 ], [ 3.100285, 49.439278 ], [ 3.110497, 49.43848 ], [ 3.12159, 49.431745 ], [ 3.160518, 49.43936 ], [ 3.165126, 49.44085 ], [ 3.161892, 49.4426 ], [ 3.166193, 49.44692 ], [ 3.162893, 49.4496 ], [ 3.155214, 49.454185 ], [ 3.150778, 49.455269 ], [ 3.129742, 49.46205 ], [ 3.124931, 49.46279 ], [ 3.107085, 49.46823 ], [ 3.105299, 49.47129 ], [ 3.110055, 49.47665 ], [ 3.123306, 49.4808 ], [ 3.121281, 49.49368 ], [ 3.116497, 49.495212 ], [ 3.107214, 49.50367 ], [ 3.10247, 49.505138 ], [ 3.096325, 49.5179 ], [ 3.122465, 49.521683 ], [ 3.127901, 49.531384 ], [ 3.125924, 49.5418 ], [ 3.13148, 49.54338 ], [ 3.131731, 49.56022 ], [ 3.126302, 49.56607 ], [ 3.126982, 49.57291 ], [ 3.138985, 49.57585 ], [ 3.138052, 49.57859 ], [ 3.135088, 49.58137 ], [ 3.124178, 49.59626 ], [ 3.122533, 49.60203 ], [ 3.119137, 49.60449 ], [ 3.102, 49.61579 ], [ 3.099238, 49.61807 ], [ 3.093575, 49.622549 ], [ 3.096579, 49.62347 ], [ 3.109219, 49.6289 ], [ 3.112766, 49.63133 ], [ 3.110476, 49.634234 ], [ 3.112675, 49.6402 ], [ 3.10594, 49.64891 ], [ 3.09645, 49.65064 ], [ 3.099382, 49.656556 ], [ 3.107594, 49.65862 ], [ 3.108299, 49.66467 ], [ 3.112828, 49.66571 ], [ 3.123629, 49.66118 ], [ 3.127083, 49.66953 ], [ 3.125, 49.67274 ], [ 3.116282, 49.68111 ], [ 3.125917, 49.696499 ], [ 3.118652, 49.70583 ], [ 3.120398, 49.70573 ], [ 3.113653, 49.72548 ], [ 3.100671, 49.735222 ], [ 3.09936, 49.7384 ], [ 3.096772, 49.74806 ], [ 3.094682, 49.75727 ], [ 3.100454, 49.76593 ], [ 3.095114, 49.76615 ], [ 3.073808, 49.7664 ], [ 3.065338, 49.77048 ], [ 3.067381, 49.77337 ], [ 3.061329, 49.78138 ], [ 3.081379, 49.79053 ], [ 3.085933, 49.79175 ], [ 3.084245, 49.794884 ], [ 3.086135, 49.80449 ], [ 3.080299, 49.80991 ], [ 3.082321, 49.815244 ], [ 3.085004, 49.81765 ], [ 3.082605, 49.819241 ], [ 3.079039, 49.82122 ], [ 3.060722, 49.820099 ], [ 3.060006, 49.825175 ], [ 3.059037, 49.827646 ], [ 3.057068, 49.83078 ], [ 3.069341, 49.83698 ], [ 3.073663, 49.83889 ], [ 3.077623, 49.839683 ], [ 3.081738, 49.841378 ], [ 3.084399, 49.84625 ], [ 3.083057, 49.84937 ], [ 3.079469, 49.865411 ], [ 3.070905, 49.8734 ], [ 3.073939, 49.875988 ], [ 3.077501, 49.878367 ], [ 3.082604, 49.87849 ], [ 3.084962, 49.87576 ], [ 3.083196, 49.86657 ], [ 3.087836, 49.86569 ], [ 3.119134, 49.88302 ], [ 3.117858, 49.89026 ], [ 3.122607, 49.89941 ], [ 3.120118, 49.91122 ], [ 3.11762, 49.91396 ], [ 3.123668, 49.918017 ], [ 3.124664, 49.921393 ], [ 3.137879, 49.93586 ], [ 3.160361, 49.94655 ], [ 3.164916, 49.94754 ], [ 3.166553, 49.95023 ], [ 3.161614, 49.95111 ], [ 3.16214, 49.954361 ], [ 3.163644, 49.96336 ], [ 3.170413, 49.968003 ], [ 3.192717, 49.977536 ], [ 3.202722, 49.98549 ], [ 3.198541, 49.98501 ], [ 3.192523, 49.98888 ], [ 3.187671, 49.98787 ], [ 3.177706, 49.98661 ], [ 3.165045, 49.99164 ], [ 3.155683, 49.991754 ], [ 3.159159, 49.99394 ], [ 3.171404, 50.009985 ], [ 3.172707, 50.01199 ], [ 3.203548, 50.017876 ], [ 3.229336, 50.03018 ], [ 3.233971, 50.02838 ], [ 3.244078, 50.03089 ], [ 3.244843, 50.030617 ], [ 3.246725, 50.02769 ], [ 3.255846, 50.02544 ], [ 3.258791, 50.03141 ], [ 3.263541, 50.03064 ], [ 3.267164, 50.03012 ], [ 3.270716, 50.02947 ], [ 3.277936, 50.021475 ], [ 3.273525, 50.02027 ], [ 3.280355, 50.01521 ], [ 3.290837, 50.01513 ], [ 3.300484, 50.01759 ], [ 3.304894, 50.01846 ], [ 3.309304, 50.019352 ], [ 3.327669, 50.01585 ], [ 3.337102, 50.017401 ], [ 3.343616, 50.02627 ], [ 3.351671, 50.02973 ], [ 3.350214, 50.03286 ], [ 3.353107, 50.03571 ], [ 3.374224, 50.03641 ], [ 3.387166, 50.03106 ], [ 3.392479, 50.031132 ], [ 3.398474, 50.03458 ], [ 3.41538, 50.026754 ], [ 3.424921, 50.02727 ], [ 3.42847, 50.02478 ], [ 3.427792, 50.022085 ], [ 3.484913, 50.019609 ], [ 3.490106, 50.01896 ], [ 3.505235, 50.03054 ], [ 3.507062, 50.03336 ], [ 3.508157, 50.035512 ], [ 3.52989, 50.038887 ], [ 3.541758, 50.051975 ], [ 3.551277, 50.05377 ], [ 3.55644, 50.0539 ], [ 3.567799, 50.052971 ], [ 3.575596, 50.04925 ], [ 3.57924, 50.0471 ], [ 3.594225, 50.043918 ], [ 3.607741, 50.033469 ], [ 3.608747, 50.0301 ], [ 3.614124, 50.02506 ], [ 3.621489, 50.02882 ], [ 3.625097, 50.03078 ], [ 3.63009, 50.03202 ], [ 3.643079, 50.036989 ], [ 3.657569, 50.03273 ], [ 3.662095, 50.03873 ], [ 3.657538, 50.04003 ], [ 3.658176, 50.0484 ], [ 3.665721, 50.054697 ], [ 3.669883, 50.055088 ], [ 3.705575, 50.06564 ], [ 3.710359, 50.066491 ], [ 3.715185, 50.06927 ], [ 3.72121, 50.06413 ], [ 3.742636, 50.0561 ], [ 3.745752, 50.053572 ], [ 3.770963, 50.05104 ], [ 3.77523, 50.04908 ], [ 3.77793, 50.045989 ], [ 3.793588, 50.048296 ], [ 3.811, 50.04064 ], [ 3.815827, 50.03904 ], [ 3.832229, 50.04678 ], [ 3.837059, 50.047809 ], [ 3.848124, 50.04053 ], [ 3.868771, 50.03761 ], [ 3.882319, 50.03237 ], [ 3.883321, 50.02902 ], [ 3.878323, 50.027886 ], [ 3.886697, 50.023514 ], [ 3.887395, 50.01317 ], [ 3.887292, 50.00969 ], [ 3.919783, 50.02361 ], [ 3.922871, 50.02626 ], [ 3.943012, 50.029659 ], [ 3.948308, 50.02955 ], [ 3.949834, 50.026885 ], [ 3.982309, 50.04428 ], [ 3.989547, 50.04135 ], [ 3.991313, 50.038189 ], [ 3.995236, 50.028447 ], [ 3.980144, 50.00356 ], [ 3.980801, 49.993576 ], [ 3.985562, 49.99476 ], [ 4.005734, 49.9952 ], [ 4.011405, 49.98605 ], [ 4.021563, 49.986119 ], [ 4.027393, 49.98298 ], [ 4.031122, 49.98207 ], [ 4.044796, 49.98584 ], [ 4.074968, 49.981 ], [ 4.079933, 49.97995 ], [ 4.082589, 49.97383 ], [ 4.089691, 49.970476 ], [ 4.099815, 49.97233 ], [ 4.104938, 49.97157 ], [ 4.136382, 49.97751 ], [ 4.140895, 49.97876 ], [ 4.154144, 49.97513 ], [ 4.169033, 49.97686 ], [ 4.173918, 49.97604 ], [ 4.195446, 49.96745 ], [ 4.195946, 49.96085 ], [ 4.197356, 49.954486 ], [ 4.22778, 49.95793 ], [ 4.233068, 49.957824 ], [ 4.232132, 49.95596 ], [ 4.232061, 49.952462 ], [ 4.220206, 49.93359 ], [ 4.217774, 49.91626 ], [ 4.222142, 49.910427 ], [ 4.233643, 49.90912 ], [ 4.236936, 49.90378 ], [ 4.24633, 49.90226 ], [ 4.255734, 49.903977 ], [ 4.251798, 49.8904 ], [ 4.250089, 49.86324 ], [ 4.249554, 49.86011 ], [ 4.249004, 49.85696 ], [ 4.246034, 49.85426 ], [ 4.233752, 49.84863 ], [ 4.23017, 49.836088 ], [ 4.225337, 49.83498 ], [ 4.214774, 49.806115 ], [ 4.219523, 49.805 ], [ 4.227042, 49.79319 ], [ 4.224917, 49.79022 ], [ 4.209942, 49.78205 ], [ 4.206332, 49.77962 ], [ 4.212018, 49.774218 ], [ 4.214263, 49.77118 ], [ 4.224503, 49.77294 ], [ 4.242039, 49.765469 ], [ 4.246879, 49.75574 ], [ 4.230539, 49.74703 ], [ 4.226128, 49.73424 ], [ 4.227618, 49.731073 ], [ 4.225406, 49.72728 ], [ 4.220371, 49.72599 ], [ 4.205171, 49.722706 ], [ 4.202292, 49.72051 ], [ 4.191381, 49.715644 ], [ 4.192459, 49.71254 ], [ 4.184381, 49.70123 ], [ 4.185269, 49.698872 ], [ 4.179917, 49.698062 ], [ 4.164831, 49.693894 ], [ 4.160116, 49.69305 ], [ 4.151058, 49.690646 ], [ 4.146816, 49.689266 ], [ 4.146699, 49.67785 ], [ 4.126474, 49.6782 ], [ 4.122702, 49.660923 ], [ 4.124871, 49.650613 ], [ 4.11724, 49.641526 ], [ 4.11569, 49.63326 ], [ 4.110419, 49.63265 ], [ 4.095983, 49.629173 ], [ 4.071483, 49.63594 ], [ 4.050555, 49.634931 ], [ 4.047514, 49.63781 ], [ 4.042341, 49.63791 ], [ 4.038598, 49.62526 ], [ 4.026316, 49.619905 ], [ 4.031525, 49.61411 ], [ 4.047558, 49.60065 ], [ 4.060605, 49.59637 ], [ 4.064445, 49.594161 ], [ 4.060391, 49.587978 ], [ 4.062671, 49.57459 ], [ 4.07677, 49.570721 ], [ 4.059686, 49.5545 ], [ 4.050439, 49.55159 ], [ 4.051908, 49.545073 ], [ 4.067545, 49.54314 ], [ 4.075648, 49.53896 ], [ 4.075097, 49.521852 ], [ 4.074145, 49.51859 ], [ 4.060243, 49.521254 ], [ 4.056108, 49.508824 ], [ 4.04086, 49.508381 ], [ 4.040423, 49.505176 ], [ 4.040766, 49.495519 ], [ 4.040928, 49.492651 ], [ 4.041527, 49.484044 ], [ 4.041419, 49.48075 ], [ 4.041379, 49.477403 ], [ 4.042112, 49.47073 ], [ 4.066154, 49.44545 ], [ 4.06141, 49.44673 ], [ 4.056813, 49.445737 ], [ 4.047178, 49.445173 ], [ 4.037579, 49.43808 ], [ 4.0394, 49.43544 ], [ 4.04326, 49.4246 ], [ 4.04913, 49.40901 ], [ 4.047973, 49.40564 ], [ 4.044698, 49.4031 ], [ 4.037098, 49.384126 ], [ 4.035496, 49.359904 ], [ 4.02145, 49.36018 ], [ 4.012729, 49.358308 ], [ 4.011882, 49.361462 ], [ 4.008214, 49.367416 ], [ 3.986644, 49.37892 ], [ 3.981515, 49.379241 ], [ 3.961309, 49.37734 ], [ 3.93472, 49.39841 ], [ 3.933172, 49.40113 ], [ 3.92482, 49.40772 ], [ 3.92132, 49.405361 ], [ 3.910328, 49.395268 ], [ 3.895741, 49.39278 ], [ 3.891038, 49.39155 ], [ 3.87455, 49.383999 ], [ 3.859844, 49.381525 ], [ 3.856059, 49.36835 ], [ 3.853577, 49.366413 ], [ 3.847477, 49.364596 ], [ 3.848856, 49.36139 ], [ 3.857908, 49.353672 ], [ 3.85131, 49.34494 ], [ 3.83278, 49.35026 ], [ 3.828389, 49.351891 ], [ 3.823765, 49.35699 ], [ 3.818508, 49.357011 ], [ 3.803095, 49.358822 ], [ 3.793198, 49.35689 ], [ 3.789367, 49.354714 ], [ 3.779802, 49.352853 ], [ 3.777535, 49.35582 ], [ 3.773533, 49.354187 ], [ 3.757818, 49.347608 ], [ 3.746475, 49.34815 ], [ 3.741087, 49.34759 ], [ 3.741252, 49.344699 ], [ 3.742022, 49.33895 ], [ 3.736196, 49.33555 ], [ 3.731413, 49.33493 ], [ 3.71235, 49.33407 ], [ 3.707044, 49.333353 ], [ 3.69306, 49.32861 ], [ 3.687315, 49.32683 ], [ 3.683021, 49.32557 ], [ 3.669161, 49.32475 ], [ 3.666467, 49.32172 ], [ 3.647596, 49.31596 ], [ 3.64492, 49.313115 ], [ 3.642556, 49.303248 ], [ 3.63834, 49.30135 ], [ 3.64038, 49.29846 ], [ 3.655943, 49.29108 ], [ 3.658994, 49.28677 ], [ 3.651676, 49.27863 ], [ 3.66059, 49.270796 ], [ 3.665133, 49.26943 ], [ 3.660449, 49.26837 ], [ 3.655255, 49.26285 ], [ 3.670256, 49.24074 ], [ 3.67504, 49.24009 ], [ 3.677019, 49.237082 ], [ 3.666006, 49.22311 ], [ 3.651479, 49.22156 ], [ 3.654839, 49.219233 ], [ 3.654814, 49.212922 ], [ 3.662545, 49.20898 ], [ 3.67667, 49.20726 ], [ 3.681937, 49.198746 ], [ 3.697477, 49.206641 ], [ 3.700577, 49.20145 ], [ 3.704655, 49.20067 ], [ 3.703936, 49.19729 ], [ 3.69754, 49.19191 ], [ 3.70649, 49.18032 ], [ 3.725822, 49.17501 ], [ 3.740643, 49.17866 ], [ 3.751148, 49.1777 ], [ 3.748676, 49.15853 ], [ 3.744432, 49.15697 ], [ 3.739564, 49.15689 ], [ 3.734837, 49.15513 ], [ 3.717014, 49.14704 ], [ 3.712178, 49.146191 ], [ 3.703297, 49.143204 ], [ 3.697999, 49.14871 ], [ 3.695606, 49.151143 ], [ 3.683835, 49.15449 ], [ 3.679251, 49.15302 ], [ 3.654771, 49.148791 ], [ 3.624456, 49.151353 ], [ 3.621107, 49.14977 ], [ 3.619819, 49.147538 ], [ 3.619769, 49.14105 ], [ 3.612047, 49.137004 ], [ 3.610441, 49.127518 ], [ 3.600018, 49.12069 ], [ 3.601545, 49.117645 ], [ 3.613414, 49.115904 ], [ 3.620078, 49.107328 ], [ 3.62255, 49.10449 ], [ 3.63224, 49.08609 ], [ 3.639054, 49.08131 ], [ 3.638573, 49.077865 ], [ 3.632115, 49.072405 ], [ 3.607391, 49.071858 ], [ 3.604007, 49.06915 ], [ 3.600591, 49.06256 ], [ 3.590739, 49.06013 ], [ 3.587706, 49.05935 ], [ 3.585204, 49.03887 ], [ 3.586674, 49.03583 ], [ 3.614684, 49.033552 ], [ 3.615771, 49.03642 ], [ 3.64997, 49.04142 ], [ 3.65839, 49.037753 ], [ 3.66354, 49.037311 ], [ 3.677678, 49.01602 ], [ 3.668852, 49.00798 ], [ 3.665159, 49.00563 ], [ 3.660412, 49.0043 ], [ 3.639825, 49.003998 ], [ 3.637845, 49.000843 ], [ 3.625814, 48.98575 ], [ 3.621206, 48.96603 ], [ 3.616661, 48.96516 ], [ 3.602925, 48.96545 ], [ 3.591475, 48.960246 ], [ 3.594094, 48.95762 ], [ 3.601246, 48.946682 ], [ 3.593373, 48.944644 ], [ 3.588352, 48.94372 ], [ 3.574443, 48.939025 ], [ 3.57243, 48.918612 ], [ 3.566684, 48.913496 ], [ 3.547421, 48.91502 ], [ 3.528576, 48.91214 ], [ 3.523973, 48.907485 ], [ 3.520911, 48.90559 ], [ 3.508888, 48.89112 ], [ 3.502839, 48.874895 ], [ 3.502997, 48.87149 ], [ 3.494059, 48.8691 ], [ 3.489643, 48.8678 ], [ 3.485612, 48.866746 ], [ 3.481315, 48.86647 ], [ 3.484515, 48.86024 ], [ 3.486791, 48.857307 ], [ 3.485187, 48.85191 ] ], [ [ 2.99023, 49.21067 ], [ 2.991739, 49.21094 ], [ 2.99237, 49.2121 ], [ 2.994511, 49.21236 ], [ 2.995321, 49.21132 ], [ 2.995746, 49.21258 ], [ 2.99694, 49.21401 ], [ 2.997887, 49.21396 ], [ 2.999698, 49.215384 ], [ 2.99779, 49.21679 ], [ 2.998161, 49.21895 ], [ 2.998298, 49.21909 ], [ 3.002759, 49.21884 ], [ 3.002566, 49.21969 ], [ 3.000412, 49.222666 ], [ 2.997749, 49.22358 ], [ 2.993755, 49.22253 ], [ 2.992451, 49.2232 ], [ 2.988457, 49.22211 ], [ 2.989446, 49.219492 ], [ 2.984698, 49.21817 ], [ 2.982488, 49.21688 ], [ 2.982406, 49.2163 ], [ 2.985082, 49.21624 ], [ 2.986304, 49.21511 ], [ 2.985454, 49.213082 ], [ 2.987087, 49.212264 ], [ 2.987855, 49.21253 ], [ 2.988597, 49.21239 ], [ 2.987417, 49.210915 ], [ 2.988514, 49.211356 ], [ 2.99023, 49.21067 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "3", "CODE_DEPT": "03", "NOM_DEPT": "ALLIER", "CODE_CHF": "190", "NOM_CHF": "MOULINS", "X_CHF_LIEU": "7254", "Y_CHF_LIEU": "66072", "X_CENTROID": "7144", "Y_CENTROID": "65882", "CODE_REG": "83", "NOM_REGION": "AUVERGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.693892, 45.93096 ], [ 3.691148, 45.933452 ], [ 3.682524, 45.94054 ], [ 3.680677, 45.94357 ], [ 3.678016, 45.95595 ], [ 3.666639, 45.96115 ], [ 3.66186, 45.961012 ], [ 3.63916, 45.965428 ], [ 3.631994, 45.96106 ], [ 3.630235, 45.96417 ], [ 3.625873, 45.983702 ], [ 3.613497, 45.99749 ], [ 3.613056, 46.00084 ], [ 3.598457, 46.01774 ], [ 3.588341, 46.02418 ], [ 3.584021, 46.02279 ], [ 3.577777, 46.017844 ], [ 3.554569, 46.01839 ], [ 3.553012, 46.01526 ], [ 3.548701, 46.015845 ], [ 3.544922, 46.014036 ], [ 3.538337, 46.02133 ], [ 3.520709, 46.02037 ], [ 3.520433, 46.01443 ], [ 3.486673, 46.01432 ], [ 3.473174, 46.010738 ], [ 3.468679, 46.00941 ], [ 3.464145, 46.008173 ], [ 3.467401, 46.02788 ], [ 3.463125, 46.037461 ], [ 3.467123, 46.03934 ], [ 3.471773, 46.04022 ], [ 3.460557, 46.05048 ], [ 3.460638, 46.057058 ], [ 3.457308, 46.059394 ], [ 3.45719, 46.062303 ], [ 3.453593, 46.06379 ], [ 3.444781, 46.060291 ], [ 3.434954, 46.060824 ], [ 3.422215, 46.07129 ], [ 3.419742, 46.07438 ], [ 3.402685, 46.066805 ], [ 3.382902, 46.06457 ], [ 3.369134, 46.054484 ], [ 3.336269, 46.04605 ], [ 3.332054, 46.044098 ], [ 3.331634, 46.047269 ], [ 3.332797, 46.05355 ], [ 3.317011, 46.059126 ], [ 3.314361, 46.061601 ], [ 3.305497, 46.06118 ], [ 3.302392, 46.06577 ], [ 3.297921, 46.06435 ], [ 3.284372, 46.06596 ], [ 3.275767, 46.062935 ], [ 3.256571, 46.065798 ], [ 3.253201, 46.06435 ], [ 3.241718, 46.062454 ], [ 3.237284, 46.063247 ], [ 3.230469, 46.06687 ], [ 3.232525, 46.06972 ], [ 3.228259, 46.070487 ], [ 3.221868, 46.067393 ], [ 3.214511, 46.074945 ], [ 3.179455, 46.07346 ], [ 3.179342, 46.066577 ], [ 3.174579, 46.06595 ], [ 3.127839, 46.07149 ], [ 3.121821, 46.076424 ], [ 3.118319, 46.07858 ], [ 3.116072, 46.080356 ], [ 3.113059, 46.081448 ], [ 3.108918, 46.081443 ], [ 3.100845, 46.0823 ], [ 3.098327, 46.08532 ], [ 3.099678, 46.095653 ], [ 3.090942, 46.111725 ], [ 3.050446, 46.1008 ], [ 3.039111, 46.107486 ], [ 3.035161, 46.105479 ], [ 3.026111, 46.102933 ], [ 3.021631, 46.101683 ], [ 3.014279, 46.105277 ], [ 3.00896, 46.11452 ], [ 2.994263, 46.123197 ], [ 2.980121, 46.12452 ], [ 2.971744, 46.12169 ], [ 2.968686, 46.12383 ], [ 2.964396, 46.129063 ], [ 2.96161, 46.13184 ], [ 2.95212, 46.17133 ], [ 2.948325, 46.169174 ], [ 2.915695, 46.17413 ], [ 2.913332, 46.176446 ], [ 2.910762, 46.178659 ], [ 2.915582, 46.17982 ], [ 2.919052, 46.18241 ], [ 2.919911, 46.18947 ], [ 2.912136, 46.202523 ], [ 2.915817, 46.212792 ], [ 2.923866, 46.217102 ], [ 2.932737, 46.218683 ], [ 2.936354, 46.2209 ], [ 2.939127, 46.22375 ], [ 2.932266, 46.23232 ], [ 2.945972, 46.24168 ], [ 2.941248, 46.242082 ], [ 2.925898, 46.24938 ], [ 2.905702, 46.248713 ], [ 2.886301, 46.253135 ], [ 2.866004, 46.251059 ], [ 2.85976, 46.25659 ], [ 2.855298, 46.25519 ], [ 2.819163, 46.241792 ], [ 2.817677, 46.23211 ], [ 2.823309, 46.219961 ], [ 2.817313, 46.20502 ], [ 2.810405, 46.196213 ], [ 2.805593, 46.196421 ], [ 2.786782, 46.19865 ], [ 2.783931, 46.20146 ], [ 2.769665, 46.21074 ], [ 2.759837, 46.21 ], [ 2.746418, 46.21988 ], [ 2.732598, 46.223413 ], [ 2.730277, 46.2204 ], [ 2.721645, 46.208547 ], [ 2.730098, 46.196285 ], [ 2.722605, 46.18809 ], [ 2.723105, 46.181518 ], [ 2.71947, 46.17996 ], [ 2.702702, 46.181007 ], [ 2.699216, 46.1785 ], [ 2.68505, 46.17571 ], [ 2.676724, 46.17206 ], [ 2.674938, 46.15853 ], [ 2.668672, 46.15326 ], [ 2.664111, 46.140458 ], [ 2.6619, 46.137759 ], [ 2.654375, 46.12526 ], [ 2.646827, 46.120748 ], [ 2.637202, 46.119385 ], [ 2.623711, 46.1228 ], [ 2.619412, 46.12462 ], [ 2.601883, 46.1309 ], [ 2.598423, 46.129358 ], [ 2.591384, 46.12678 ], [ 2.587726, 46.129275 ], [ 2.574549, 46.139933 ], [ 2.565379, 46.143041 ], [ 2.559155, 46.174409 ], [ 2.55459, 46.174634 ], [ 2.541834, 46.17629 ], [ 2.528499, 46.184939 ], [ 2.526102, 46.18782 ], [ 2.528303, 46.19419 ], [ 2.521757, 46.20277 ], [ 2.515203, 46.238543 ], [ 2.516311, 46.23944 ], [ 2.511509, 46.23952 ], [ 2.50198, 46.246978 ], [ 2.48892, 46.250009 ], [ 2.487941, 46.253354 ], [ 2.477773, 46.26881 ], [ 2.47958, 46.27539 ], [ 2.4803, 46.278831 ], [ 2.470215, 46.28635 ], [ 2.443032, 46.294999 ], [ 2.438446, 46.29366 ], [ 2.430241, 46.290739 ], [ 2.426006, 46.28453 ], [ 2.421374, 46.285327 ], [ 2.415615, 46.297932 ], [ 2.420657, 46.31013 ], [ 2.415901, 46.311351 ], [ 2.388164, 46.33157 ], [ 2.38608, 46.33197 ], [ 2.383785, 46.329129 ], [ 2.37061, 46.31272 ], [ 2.36621, 46.31117 ], [ 2.357932, 46.323367 ], [ 2.334254, 46.32517 ], [ 2.314586, 46.33464 ], [ 2.31162, 46.34097 ], [ 2.30211, 46.34236 ], [ 2.307829, 46.347666 ], [ 2.309602, 46.356592 ], [ 2.323262, 46.365778 ], [ 2.337142, 46.365742 ], [ 2.336464, 46.36904 ], [ 2.335475, 46.372324 ], [ 2.331406, 46.37841 ], [ 2.312479, 46.37606 ], [ 2.300942, 46.381861 ], [ 2.286936, 46.38331 ], [ 2.284789, 46.386309 ], [ 2.284576, 46.38962 ], [ 2.278416, 46.40865 ], [ 2.282033, 46.41082 ], [ 2.279481, 46.41384 ], [ 2.281048, 46.420405 ], [ 2.278432, 46.427215 ], [ 2.284666, 46.45136 ], [ 2.305465, 46.475433 ], [ 2.313097, 46.47077 ], [ 2.316996, 46.468505 ], [ 2.321409, 46.46891 ], [ 2.330814, 46.478862 ], [ 2.32963, 46.48183 ], [ 2.324969, 46.487742 ], [ 2.334315, 46.499566 ], [ 2.363697, 46.51724 ], [ 2.3683, 46.51843 ], [ 2.384099, 46.5183 ], [ 2.414634, 46.520833 ], [ 2.427808, 46.52598 ], [ 2.437939, 46.52528 ], [ 2.446148, 46.521044 ], [ 2.478655, 46.530724 ], [ 2.482929, 46.532697 ], [ 2.496526, 46.531155 ], [ 2.500235, 46.52215 ], [ 2.50976, 46.52345 ], [ 2.520282, 46.529925 ], [ 2.529408, 46.5278 ], [ 2.532682, 46.521701 ], [ 2.536652, 46.519709 ], [ 2.540403, 46.521921 ], [ 2.55179, 46.5284 ], [ 2.570133, 46.533409 ], [ 2.576552, 46.53852 ], [ 2.613262, 46.55461 ], [ 2.605668, 46.563288 ], [ 2.609356, 46.569613 ], [ 2.60834, 46.57295 ], [ 2.598461, 46.59531 ], [ 2.583888, 46.59459 ], [ 2.57738, 46.60673 ], [ 2.568383, 46.609392 ], [ 2.572922, 46.61045 ], [ 2.588657, 46.61695 ], [ 2.584599, 46.62636 ], [ 2.596325, 46.636723 ], [ 2.5931, 46.64658 ], [ 2.588997, 46.6481 ], [ 2.566995, 46.65248 ], [ 2.570439, 46.65681 ], [ 2.570551, 46.65927 ], [ 2.606155, 46.669299 ], [ 2.60704, 46.662639 ], [ 2.623914, 46.65663 ], [ 2.63156, 46.6688 ], [ 2.631838, 46.672203 ], [ 2.621638, 46.679274 ], [ 2.623478, 46.68931 ], [ 2.628221, 46.690308 ], [ 2.648081, 46.68896 ], [ 2.656179, 46.69735 ], [ 2.674262, 46.702279 ], [ 2.677795, 46.704612 ], [ 2.676175, 46.71084 ], [ 2.688603, 46.72118 ], [ 2.698463, 46.72106 ], [ 2.703898, 46.7256 ], [ 2.704833, 46.73904 ], [ 2.730642, 46.74799 ], [ 2.734528, 46.74622 ], [ 2.743797, 46.73055 ], [ 2.755115, 46.72391 ], [ 2.758521, 46.717659 ], [ 2.771375, 46.72126 ], [ 2.77475, 46.718953 ], [ 2.782748, 46.722462 ], [ 2.793416, 46.733557 ], [ 2.822561, 46.735415 ], [ 2.827485, 46.735333 ], [ 2.841168, 46.727321 ], [ 2.845727, 46.726616 ], [ 2.843818, 46.739228 ], [ 2.844634, 46.742362 ], [ 2.875346, 46.760642 ], [ 2.880422, 46.77003 ], [ 2.894344, 46.77417 ], [ 2.898967, 46.775675 ], [ 2.910924, 46.781348 ], [ 2.908913, 46.78447 ], [ 2.912941, 46.790192 ], [ 2.936099, 46.795393 ], [ 2.93989, 46.79319 ], [ 2.944387, 46.792993 ], [ 2.952503, 46.79268 ], [ 2.959915, 46.803877 ], [ 2.979899, 46.80342 ], [ 2.996604, 46.79696 ], [ 3.01614, 46.79983 ], [ 3.027584, 46.79337 ], [ 3.032068, 46.794911 ], [ 3.036264, 46.775966 ], [ 3.037546, 46.77283 ], [ 3.04955, 46.75772 ], [ 3.079605, 46.739964 ], [ 3.083478, 46.73777 ], [ 3.100537, 46.734293 ], [ 3.104673, 46.73318 ], [ 3.129056, 46.727493 ], [ 3.143329, 46.71274 ], [ 3.146988, 46.710211 ], [ 3.149247, 46.708218 ], [ 3.167414, 46.690968 ], [ 3.199366, 46.6795 ], [ 3.204426, 46.678752 ], [ 3.226936, 46.69 ], [ 3.229528, 46.69646 ], [ 3.234217, 46.69737 ], [ 3.259773, 46.70766 ], [ 3.268544, 46.715924 ], [ 3.278417, 46.716324 ], [ 3.282979, 46.714971 ], [ 3.283373, 46.71515 ], [ 3.298052, 46.715879 ], [ 3.304499, 46.702842 ], [ 3.318052, 46.68844 ], [ 3.337856, 46.685253 ], [ 3.352532, 46.686596 ], [ 3.356914, 46.688419 ], [ 3.366416, 46.69068 ], [ 3.385292, 46.713764 ], [ 3.390052, 46.714892 ], [ 3.414609, 46.711105 ], [ 3.434214, 46.71222 ], [ 3.430011, 46.69883 ], [ 3.436015, 46.69355 ], [ 3.445923, 46.69225 ], [ 3.452896, 46.687333 ], [ 3.452928, 46.677 ], [ 3.4474, 46.67139 ], [ 3.443455, 46.662338 ], [ 3.45409, 46.654841 ], [ 3.45571, 46.651466 ], [ 3.474191, 46.653535 ], [ 3.483132, 46.651678 ], [ 3.486669, 46.65381 ], [ 3.486834, 46.660559 ], [ 3.520472, 46.68524 ], [ 3.529451, 46.688203 ], [ 3.534364, 46.68752 ], [ 3.542815, 46.67946 ], [ 3.550406, 46.682395 ], [ 3.554262, 46.684601 ], [ 3.559853, 46.68998 ], [ 3.5489, 46.70555 ], [ 3.54791, 46.718956 ], [ 3.547722, 46.722415 ], [ 3.564076, 46.71611 ], [ 3.568891, 46.71591 ], [ 3.573043, 46.720994 ], [ 3.576978, 46.72291 ], [ 3.580594, 46.71698 ], [ 3.595819, 46.725291 ], [ 3.578083, 46.74927 ], [ 3.592562, 46.762801 ], [ 3.596399, 46.76499 ], [ 3.601826, 46.75213 ], [ 3.626404, 46.752267 ], [ 3.629424, 46.749459 ], [ 3.628874, 46.74613 ], [ 3.622802, 46.7409 ], [ 3.637681, 46.724192 ], [ 3.637642, 46.70748 ], [ 3.651138, 46.704235 ], [ 3.654644, 46.69107 ], [ 3.655468, 46.68775 ], [ 3.671974, 46.68191 ], [ 3.670584, 46.67209 ], [ 3.692296, 46.6636 ], [ 3.698335, 46.65826 ], [ 3.699364, 46.654886 ], [ 3.699613, 46.65191 ], [ 3.703416, 46.64763 ], [ 3.704613, 46.6452 ], [ 3.712708, 46.63333 ], [ 3.716206, 46.630973 ], [ 3.723234, 46.622771 ], [ 3.713444, 46.61072 ], [ 3.719594, 46.60544 ], [ 3.734557, 46.60378 ], [ 3.737848, 46.58728 ], [ 3.739016, 46.58386 ], [ 3.740264, 46.578593 ], [ 3.740437, 46.57593 ], [ 3.743285, 46.566462 ], [ 3.741006, 46.56022 ], [ 3.737008, 46.55607 ], [ 3.73427, 46.554364 ], [ 3.732679, 46.547747 ], [ 3.741847, 46.539547 ], [ 3.755776, 46.53615 ], [ 3.770248, 46.538954 ], [ 3.777916, 46.53126 ], [ 3.780666, 46.528366 ], [ 3.794429, 46.527344 ], [ 3.807423, 46.51938 ], [ 3.811746, 46.52059 ], [ 3.837014, 46.53161 ], [ 3.846291, 46.524009 ], [ 3.840126, 46.518454 ], [ 3.845038, 46.513086 ], [ 3.845819, 46.51294 ], [ 3.855143, 46.51532 ], [ 3.863828, 46.51268 ], [ 3.860414, 46.49556 ], [ 3.865262, 46.489648 ], [ 3.887973, 46.48236 ], [ 3.897341, 46.482053 ], [ 3.898791, 46.48541 ], [ 3.90295, 46.491725 ], [ 3.911475, 46.495494 ], [ 3.916492, 46.496102 ], [ 3.934151, 46.490952 ], [ 3.953475, 46.49179 ], [ 3.957963, 46.49048 ], [ 3.952282, 46.478727 ], [ 3.960554, 46.47766 ], [ 3.965148, 46.477997 ], [ 3.97434, 46.47957 ], [ 4.000963, 46.462011 ], [ 4.001541, 46.45875 ], [ 3.997519, 46.45258 ], [ 4.002835, 46.44053 ], [ 3.989353, 46.436951 ], [ 3.995438, 46.42849 ], [ 3.995311, 46.4251 ], [ 3.991706, 46.42308 ], [ 3.984118, 46.41966 ], [ 3.984633, 46.416478 ], [ 3.987989, 46.40765 ], [ 3.977569, 46.397871 ], [ 3.98086, 46.388351 ], [ 3.98187, 46.38516 ], [ 3.991544, 46.370419 ], [ 3.988308, 46.35402 ], [ 3.98739, 46.350751 ], [ 3.987605, 46.34751 ], [ 3.985653, 46.328685 ], [ 3.994357, 46.327655 ], [ 4.005259, 46.32741 ], [ 3.985659, 46.3175 ], [ 3.971745, 46.320726 ], [ 3.947644, 46.319029 ], [ 3.947853, 46.30561 ], [ 3.947858, 46.30367 ], [ 3.931632, 46.29622 ], [ 3.901973, 46.293158 ], [ 3.892627, 46.284857 ], [ 3.899534, 46.275914 ], [ 3.886954, 46.27379 ], [ 3.882358, 46.274707 ], [ 3.875376, 46.272546 ], [ 3.868924, 46.26366 ], [ 3.850553, 46.26209 ], [ 3.845692, 46.26181 ], [ 3.807612, 46.25739 ], [ 3.8027, 46.23851 ], [ 3.798801, 46.23991 ], [ 3.778236, 46.24306 ], [ 3.773322, 46.242469 ], [ 3.76865, 46.23699 ], [ 3.773353, 46.227186 ], [ 3.785038, 46.22044 ], [ 3.793571, 46.207686 ], [ 3.788646, 46.19804 ], [ 3.789791, 46.18749 ], [ 3.806379, 46.165757 ], [ 3.809736, 46.163104 ], [ 3.806301, 46.16134 ], [ 3.791627, 46.15658 ], [ 3.790052, 46.15339 ], [ 3.801251, 46.13142 ], [ 3.793486, 46.112203 ], [ 3.802831, 46.11014 ], [ 3.818358, 46.093007 ], [ 3.821294, 46.090239 ], [ 3.819836, 46.08704 ], [ 3.816589, 46.084564 ], [ 3.818213, 46.07803 ], [ 3.805606, 46.053061 ], [ 3.807536, 46.049778 ], [ 3.815876, 46.0191 ], [ 3.824711, 46.0066 ], [ 3.827342, 46.000213 ], [ 3.832076, 45.99966 ], [ 3.831736, 45.99944 ], [ 3.828199, 45.99707 ], [ 3.82322, 45.988158 ], [ 3.80972, 45.984662 ], [ 3.805153, 45.98329 ], [ 3.781713, 45.972792 ], [ 3.760021, 45.980675 ], [ 3.755204, 45.97982 ], [ 3.75064, 45.97003 ], [ 3.742071, 45.96669 ], [ 3.709612, 45.97414 ], [ 3.701807, 45.965724 ], [ 3.704505, 45.955549 ], [ 3.69416, 45.948166 ], [ 3.693892, 45.93096 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "4", "CODE_DEPT": "04", "NOM_DEPT": "ALPES-DE-HAUTE-PROVENCE", "CODE_CHF": "070", "NOM_CHF": "DIGNE-LES-BAINS", "X_CHF_LIEU": "9590", "Y_CHF_LIEU": "63379", "X_CENTROID": "9596", "Y_CENTROID": "63394", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.636396, 43.788951 ], [ 6.631781, 43.78971 ], [ 6.624163, 43.797637 ], [ 6.623513, 43.804451 ], [ 6.586912, 43.80532 ], [ 6.58621, 43.802451 ], [ 6.581177, 43.79815 ], [ 6.578409, 43.795654 ], [ 6.554071, 43.783435 ], [ 6.551026, 43.78125 ], [ 6.542339, 43.77589 ], [ 6.545273, 43.782523 ], [ 6.538469, 43.795518 ], [ 6.520281, 43.806925 ], [ 6.487059, 43.79225 ], [ 6.469959, 43.797523 ], [ 6.456835, 43.79313 ], [ 6.44893, 43.793615 ], [ 6.438808, 43.797745 ], [ 6.438807, 43.7942 ], [ 6.415852, 43.79005 ], [ 6.412788, 43.762256 ], [ 6.383541, 43.734437 ], [ 6.378913, 43.739372 ], [ 6.376266, 43.7423 ], [ 6.35451, 43.736515 ], [ 6.329213, 43.746226 ], [ 6.312809, 43.7588 ], [ 6.267787, 43.778547 ], [ 6.257113, 43.7976 ], [ 6.24963, 43.80158 ], [ 6.245312, 43.80241 ], [ 6.233044, 43.798984 ], [ 6.224189, 43.79984 ], [ 6.219498, 43.799781 ], [ 6.207321, 43.79529 ], [ 6.188387, 43.77614 ], [ 6.18504, 43.768282 ], [ 6.184159, 43.76561 ], [ 6.182737, 43.762171 ], [ 6.16532, 43.74945 ], [ 6.140606, 43.737611 ], [ 6.136721, 43.73675 ], [ 6.128625, 43.73679 ], [ 6.124387, 43.738339 ], [ 6.11575, 43.74556 ], [ 6.111011, 43.745665 ], [ 6.095298, 43.72961 ], [ 6.090296, 43.728974 ], [ 6.091826, 43.7258 ], [ 6.085981, 43.71666 ], [ 6.070405, 43.704944 ], [ 6.066238, 43.70479 ], [ 6.056553, 43.700084 ], [ 6.051561, 43.697712 ], [ 6.047019, 43.69703 ], [ 6.034615, 43.692711 ], [ 6.038784, 43.679592 ], [ 6.021735, 43.668288 ], [ 6.018883, 43.67112 ], [ 6.011191, 43.675352 ], [ 6.004165, 43.688288 ], [ 5.987772, 43.69542 ], [ 5.986794, 43.698564 ], [ 5.984534, 43.71449 ], [ 5.97993, 43.71548 ], [ 5.96521, 43.7225 ], [ 5.951306, 43.721828 ], [ 5.943609, 43.725944 ], [ 5.938029, 43.74907 ], [ 5.928999, 43.7498 ], [ 5.925662, 43.755964 ], [ 5.922661, 43.757539 ], [ 5.918742, 43.75548 ], [ 5.905002, 43.75278 ], [ 5.903144, 43.735513 ], [ 5.888624, 43.72636 ], [ 5.874983, 43.72299 ], [ 5.855749, 43.723189 ], [ 5.849043, 43.71818 ], [ 5.848607, 43.72164 ], [ 5.835113, 43.743484 ], [ 5.82767, 43.74767 ], [ 5.781343, 43.75566 ], [ 5.778678, 43.752709 ], [ 5.757333, 43.729409 ], [ 5.748017, 43.74148 ], [ 5.716274, 43.756931 ], [ 5.713558, 43.78112 ], [ 5.705321, 43.779587 ], [ 5.695001, 43.78421 ], [ 5.690681, 43.785127 ], [ 5.684298, 43.789453 ], [ 5.674483, 43.80736 ], [ 5.670121, 43.80872 ], [ 5.657024, 43.81851 ], [ 5.654445, 43.825111 ], [ 5.650596, 43.82525 ], [ 5.646917, 43.826104 ], [ 5.643087, 43.826927 ], [ 5.631373, 43.82857 ], [ 5.627694, 43.830792 ], [ 5.599493, 43.82714 ], [ 5.571883, 43.82934 ], [ 5.563903, 43.820867 ], [ 5.551256, 43.81722 ], [ 5.547911, 43.816398 ], [ 5.544566, 43.817233 ], [ 5.548657, 43.84789 ], [ 5.557468, 43.855458 ], [ 5.561328, 43.85746 ], [ 5.572737, 43.863508 ], [ 5.59029, 43.887233 ], [ 5.591367, 43.890674 ], [ 5.60656, 43.91608 ], [ 5.583383, 43.915913 ], [ 5.569475, 43.939544 ], [ 5.567633, 43.94264 ], [ 5.562939, 43.94245 ], [ 5.544992, 43.939055 ], [ 5.541171, 43.940828 ], [ 5.525213, 43.946861 ], [ 5.512674, 43.9454 ], [ 5.511577, 43.94852 ], [ 5.507972, 43.9578 ], [ 5.51317, 43.97336 ], [ 5.514257, 43.976792 ], [ 5.519542, 43.993959 ], [ 5.542776, 44.02435 ], [ 5.544501, 44.06967 ], [ 5.540038, 44.068458 ], [ 5.517337, 44.06347 ], [ 5.503023, 44.06371 ], [ 5.501567, 44.06694 ], [ 5.49816, 44.073267 ], [ 5.498788, 44.11572 ], [ 5.507615, 44.11776 ], [ 5.511089, 44.12396 ], [ 5.542146, 44.13326 ], [ 5.550089, 44.145894 ], [ 5.551315, 44.14924 ], [ 5.551333, 44.149647 ], [ 5.570423, 44.148616 ], [ 5.581188, 44.155153 ], [ 5.568105, 44.168725 ], [ 5.564374, 44.170902 ], [ 5.575671, 44.186316 ], [ 5.579657, 44.18837 ], [ 5.594234, 44.187481 ], [ 5.602053, 44.191502 ], [ 5.605704, 44.19114 ], [ 5.609327, 44.19071 ], [ 5.616955, 44.17862 ], [ 5.629773, 44.17409 ], [ 5.638795, 44.16628 ], [ 5.632026, 44.157375 ], [ 5.631136, 44.150579 ], [ 5.640667, 44.149234 ], [ 5.645321, 44.148185 ], [ 5.67406, 44.14732 ], [ 5.678605, 44.146098 ], [ 5.681266, 44.16007 ], [ 5.682728, 44.163486 ], [ 5.650428, 44.166766 ], [ 5.643897, 44.17053 ], [ 5.652288, 44.186237 ], [ 5.651593, 44.18958 ], [ 5.676037, 44.191433 ], [ 5.688817, 44.188257 ], [ 5.69239, 44.186269 ], [ 5.697942, 44.19195 ], [ 5.714941, 44.19851 ], [ 5.739009, 44.20176 ], [ 5.754537, 44.209827 ], [ 5.776254, 44.205578 ], [ 5.787955, 44.2103 ], [ 5.791914, 44.211863 ], [ 5.81088, 44.210757 ], [ 5.830739, 44.20043 ], [ 5.854398, 44.196367 ], [ 5.859057, 44.19517 ], [ 5.895566, 44.19058 ], [ 5.900313, 44.19088 ], [ 5.909902, 44.191603 ], [ 5.912356, 44.20479 ], [ 5.88447, 44.2102 ], [ 5.876728, 44.21433 ], [ 5.873183, 44.220745 ], [ 5.872682, 44.22421 ], [ 5.869428, 44.2307 ], [ 5.86181, 44.235147 ], [ 5.859308, 44.245408 ], [ 5.835375, 44.25742 ], [ 5.831221, 44.259313 ], [ 5.828455, 44.2609 ], [ 5.826492, 44.26301 ], [ 5.823033, 44.27636 ], [ 5.837276, 44.294185 ], [ 5.836127, 44.29754 ], [ 5.844577, 44.29998 ], [ 5.849039, 44.30066 ], [ 5.872113, 44.29291 ], [ 5.875488, 44.29097 ], [ 5.875074, 44.277116 ], [ 5.880137, 44.271146 ], [ 5.90923, 44.252293 ], [ 5.912233, 44.249511 ], [ 5.921825, 44.24841 ], [ 5.92088, 44.251461 ], [ 5.920629, 44.257539 ], [ 5.924756, 44.26368 ], [ 5.913984, 44.26847 ], [ 5.916192, 44.28167 ], [ 5.913496, 44.288254 ], [ 5.925752, 44.29295 ], [ 5.924474, 44.299312 ], [ 5.923532, 44.30244 ], [ 5.925139, 44.3134 ], [ 5.921115, 44.31517 ], [ 5.90847, 44.31176 ], [ 5.900114, 44.314928 ], [ 5.897085, 44.320962 ], [ 5.905087, 44.32922 ], [ 5.903105, 44.335855 ], [ 5.906611, 44.338131 ], [ 5.911295, 44.337692 ], [ 5.919596, 44.340471 ], [ 5.922564, 44.34715 ], [ 5.926031, 44.34962 ], [ 5.93746, 44.359903 ], [ 5.940727, 44.36937 ], [ 5.941362, 44.372662 ], [ 5.951755, 44.39182 ], [ 5.953543, 44.39502 ], [ 5.967631, 44.40204 ], [ 5.97152, 44.403371 ], [ 5.974754, 44.40512 ], [ 5.977589, 44.407188 ], [ 5.988217, 44.410693 ], [ 5.99214, 44.411676 ], [ 6.019295, 44.41915 ], [ 6.028002, 44.43528 ], [ 6.032485, 44.436823 ], [ 6.053342, 44.44654 ], [ 6.05624, 44.44945 ], [ 6.066996, 44.443706 ], [ 6.07441, 44.44476 ], [ 6.074264, 44.45157 ], [ 6.08181, 44.464012 ], [ 6.076241, 44.468474 ], [ 6.080134, 44.47436 ], [ 6.08288, 44.47695 ], [ 6.10568, 44.474207 ], [ 6.109717, 44.475535 ], [ 6.112523, 44.475537 ], [ 6.115319, 44.475584 ], [ 6.127618, 44.4682 ], [ 6.131767, 44.468145 ], [ 6.149843, 44.462449 ], [ 6.154781, 44.46211 ], [ 6.156216, 44.44546 ], [ 6.156255, 44.44211 ], [ 6.159795, 44.436822 ], [ 6.162352, 44.434424 ], [ 6.170164, 44.437632 ], [ 6.173945, 44.439586 ], [ 6.184779, 44.424075 ], [ 6.202903, 44.41224 ], [ 6.224261, 44.3845 ], [ 6.226634, 44.381396 ], [ 6.244391, 44.387414 ], [ 6.262495, 44.412259 ], [ 6.244368, 44.446183 ], [ 6.240256, 44.44775 ], [ 6.236385, 44.46074 ], [ 6.23277, 44.46288 ], [ 6.233525, 44.46375 ], [ 6.262169, 44.465668 ], [ 6.272062, 44.472691 ], [ 6.289559, 44.47886 ], [ 6.293492, 44.480927 ], [ 6.298017, 44.47479 ], [ 6.322327, 44.46406 ], [ 6.32711, 44.463456 ], [ 6.329482, 44.468908 ], [ 6.33766, 44.470814 ], [ 6.339614, 44.476837 ], [ 6.340235, 44.4799 ], [ 6.347126, 44.49658 ], [ 6.335547, 44.507288 ], [ 6.332396, 44.51 ], [ 6.334821, 44.5114 ], [ 6.347639, 44.51543 ], [ 6.357374, 44.522637 ], [ 6.362, 44.522073 ], [ 6.370458, 44.510371 ], [ 6.394655, 44.49564 ], [ 6.398809, 44.49416 ], [ 6.406375, 44.483308 ], [ 6.408369, 44.48048 ], [ 6.40932, 44.47392 ], [ 6.415902, 44.469137 ], [ 6.438481, 44.47212 ], [ 6.445132, 44.467065 ], [ 6.458982, 44.464333 ], [ 6.468074, 44.452361 ], [ 6.477395, 44.45235 ], [ 6.481649, 44.454023 ], [ 6.498926, 44.449412 ], [ 6.507972, 44.450854 ], [ 6.512446, 44.449982 ], [ 6.521775, 44.44808 ], [ 6.535108, 44.451879 ], [ 6.557482, 44.445996 ], [ 6.581009, 44.447044 ], [ 6.585622, 44.445993 ], [ 6.588864, 44.445554 ], [ 6.603092, 44.44793 ], [ 6.627377, 44.447041 ], [ 6.6323, 44.446915 ], [ 6.637981, 44.476159 ], [ 6.64167, 44.485545 ], [ 6.664676, 44.49865 ], [ 6.668497, 44.5003 ], [ 6.683021, 44.531655 ], [ 6.681811, 44.53822 ], [ 6.6806, 44.54149 ], [ 6.704737, 44.53946 ], [ 6.737826, 44.55351 ], [ 6.754065, 44.570637 ], [ 6.770999, 44.576882 ], [ 6.769022, 44.58712 ], [ 6.780572, 44.593472 ], [ 6.789951, 44.593006 ], [ 6.796104, 44.597851 ], [ 6.799825, 44.60402 ], [ 6.809262, 44.60216 ], [ 6.821323, 44.608112 ], [ 6.845347, 44.61034 ], [ 6.852496, 44.61507 ], [ 6.858864, 44.628087 ], [ 6.882366, 44.631383 ], [ 6.906985, 44.652923 ], [ 6.907604, 44.65639 ], [ 6.915267, 44.659796 ], [ 6.922402, 44.655983 ], [ 6.944011, 44.65366 ], [ 6.948335, 44.654816 ], [ 6.953784, 44.63782 ], [ 6.967177, 44.62291 ], [ 6.954004, 44.61954 ], [ 6.938622, 44.60206 ], [ 6.930577, 44.574623 ], [ 6.918222, 44.56887 ], [ 6.907839, 44.55731 ], [ 6.879202, 44.551879 ], [ 6.869948, 44.53936 ], [ 6.855214, 44.530295 ], [ 6.859817, 44.50584 ], [ 6.861337, 44.50247 ], [ 6.867761, 44.49329 ], [ 6.871026, 44.49078 ], [ 6.875477, 44.48922 ], [ 6.879458, 44.479351 ], [ 6.904245, 44.467876 ], [ 6.913404, 44.451454 ], [ 6.936453, 44.43823 ], [ 6.941299, 44.42924 ], [ 6.927684, 44.424997 ], [ 6.91292, 44.42466 ], [ 6.899048, 44.420832 ], [ 6.895392, 44.41851 ], [ 6.894163, 44.41509 ], [ 6.895943, 44.372661 ], [ 6.887045, 44.364594 ], [ 6.887431, 44.36106 ], [ 6.88343, 44.358954 ], [ 6.87154, 44.352803 ], [ 6.868985, 44.35052 ], [ 6.862963, 44.346571 ], [ 6.859328, 44.344283 ], [ 6.84091, 44.345667 ], [ 6.823444, 44.3338 ], [ 6.809948, 44.330289 ], [ 6.804542, 44.320824 ], [ 6.796834, 44.3167 ], [ 6.795043, 44.31358 ], [ 6.796041, 44.30018 ], [ 6.786444, 44.288764 ], [ 6.790339, 44.272345 ], [ 6.785844, 44.27359 ], [ 6.763087, 44.278428 ], [ 6.756922, 44.262247 ], [ 6.743444, 44.258662 ], [ 6.737559, 44.25327 ], [ 6.728285, 44.252563 ], [ 6.724371, 44.250425 ], [ 6.723518, 44.226169 ], [ 6.714075, 44.21823 ], [ 6.717369, 44.20864 ], [ 6.698476, 44.19015 ], [ 6.702002, 44.180852 ], [ 6.701235, 44.17753 ], [ 6.697893, 44.175053 ], [ 6.687238, 44.168302 ], [ 6.704946, 44.1448 ], [ 6.707956, 44.124389 ], [ 6.719091, 44.118299 ], [ 6.722172, 44.1134 ], [ 6.724109, 44.11108 ], [ 6.740733, 44.098594 ], [ 6.746524, 44.089134 ], [ 6.749821, 44.08661 ], [ 6.752843, 44.081069 ], [ 6.756483, 44.079593 ], [ 6.75423, 44.076525 ], [ 6.747684, 44.063477 ], [ 6.745687, 44.042831 ], [ 6.771137, 44.0265 ], [ 6.788985, 44.021282 ], [ 6.795562, 44.00811 ], [ 6.798087, 44.00536 ], [ 6.838085, 43.98982 ], [ 6.836197, 43.9866 ], [ 6.834713, 43.983286 ], [ 6.837536, 43.980736 ], [ 6.845487, 43.977627 ], [ 6.848069, 43.965228 ], [ 6.847274, 43.961769 ], [ 6.84775, 43.954787 ], [ 6.87181, 43.953306 ], [ 6.881883, 43.93786 ], [ 6.891724, 43.930225 ], [ 6.895139, 43.92782 ], [ 6.899665, 43.926743 ], [ 6.912989, 43.927059 ], [ 6.943245, 43.9007 ], [ 6.942272, 43.897261 ], [ 6.937585, 43.896331 ], [ 6.918679, 43.89357 ], [ 6.914201, 43.893316 ], [ 6.892593, 43.889981 ], [ 6.883435, 43.890893 ], [ 6.875061, 43.89931 ], [ 6.855097, 43.90832 ], [ 6.849883, 43.913976 ], [ 6.835947, 43.91543 ], [ 6.832406, 43.9182 ], [ 6.82787, 43.91728 ], [ 6.801479, 43.910303 ], [ 6.781622, 43.883558 ], [ 6.777189, 43.882261 ], [ 6.748081, 43.871859 ], [ 6.716515, 43.879579 ], [ 6.71217, 43.88076 ], [ 6.671631, 43.88779 ], [ 6.672533, 43.884384 ], [ 6.67836, 43.87912 ], [ 6.696172, 43.87492 ], [ 6.698749, 43.857796 ], [ 6.702826, 43.855963 ], [ 6.698235, 43.85543 ], [ 6.680239, 43.85206 ], [ 6.667906, 43.830613 ], [ 6.700319, 43.824779 ], [ 6.711365, 43.813989 ], [ 6.70983, 43.81066 ], [ 6.706107, 43.808492 ], [ 6.642116, 43.795191 ], [ 6.636039, 43.79018 ], [ 6.636396, 43.788951 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "5", "CODE_DEPT": "05", "NOM_DEPT": "HAUTES-ALPES", "CODE_CHF": "061", "NOM_CHF": "GAP", "X_CHF_LIEU": "9443", "Y_CHF_LIEU": "63891", "X_CENTROID": "9585", "Y_CENTROID": "64014", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.948335, 44.654816 ], [ 6.944011, 44.65366 ], [ 6.922402, 44.655983 ], [ 6.915267, 44.659796 ], [ 6.907604, 44.65639 ], [ 6.906985, 44.652923 ], [ 6.882366, 44.631383 ], [ 6.858864, 44.628087 ], [ 6.852496, 44.61507 ], [ 6.845347, 44.61034 ], [ 6.821323, 44.608112 ], [ 6.809262, 44.60216 ], [ 6.799825, 44.60402 ], [ 6.796104, 44.597851 ], [ 6.789951, 44.593006 ], [ 6.780572, 44.593472 ], [ 6.769022, 44.58712 ], [ 6.770999, 44.576882 ], [ 6.754065, 44.570637 ], [ 6.737826, 44.55351 ], [ 6.704737, 44.53946 ], [ 6.6806, 44.54149 ], [ 6.681811, 44.53822 ], [ 6.683021, 44.531655 ], [ 6.668497, 44.5003 ], [ 6.664676, 44.49865 ], [ 6.64167, 44.485545 ], [ 6.637981, 44.476159 ], [ 6.6323, 44.446915 ], [ 6.627377, 44.447041 ], [ 6.603092, 44.44793 ], [ 6.588864, 44.445554 ], [ 6.585622, 44.445993 ], [ 6.581009, 44.447044 ], [ 6.557482, 44.445996 ], [ 6.535108, 44.451879 ], [ 6.521775, 44.44808 ], [ 6.512446, 44.449982 ], [ 6.507972, 44.450854 ], [ 6.498926, 44.449412 ], [ 6.481649, 44.454023 ], [ 6.477395, 44.45235 ], [ 6.468074, 44.452361 ], [ 6.458982, 44.464333 ], [ 6.445132, 44.467065 ], [ 6.438481, 44.47212 ], [ 6.415902, 44.469137 ], [ 6.40932, 44.47392 ], [ 6.408369, 44.48048 ], [ 6.406375, 44.483308 ], [ 6.398809, 44.49416 ], [ 6.394655, 44.49564 ], [ 6.370458, 44.510371 ], [ 6.362, 44.522073 ], [ 6.357374, 44.522637 ], [ 6.347639, 44.51543 ], [ 6.334821, 44.5114 ], [ 6.332396, 44.51 ], [ 6.335547, 44.507288 ], [ 6.347126, 44.49658 ], [ 6.340235, 44.4799 ], [ 6.339614, 44.476837 ], [ 6.33766, 44.470814 ], [ 6.329482, 44.468908 ], [ 6.32711, 44.463456 ], [ 6.322327, 44.46406 ], [ 6.298017, 44.47479 ], [ 6.293492, 44.480927 ], [ 6.289559, 44.47886 ], [ 6.272062, 44.472691 ], [ 6.262169, 44.465668 ], [ 6.233525, 44.46375 ], [ 6.23277, 44.46288 ], [ 6.236385, 44.46074 ], [ 6.240256, 44.44775 ], [ 6.244368, 44.446183 ], [ 6.262495, 44.412259 ], [ 6.244391, 44.387414 ], [ 6.226634, 44.381396 ], [ 6.224261, 44.3845 ], [ 6.202903, 44.41224 ], [ 6.184779, 44.424075 ], [ 6.173945, 44.439586 ], [ 6.170164, 44.437632 ], [ 6.162352, 44.434424 ], [ 6.159795, 44.436822 ], [ 6.156255, 44.44211 ], [ 6.156216, 44.44546 ], [ 6.154781, 44.46211 ], [ 6.149843, 44.462449 ], [ 6.131767, 44.468145 ], [ 6.127618, 44.4682 ], [ 6.115319, 44.475584 ], [ 6.112523, 44.475537 ], [ 6.109717, 44.475535 ], [ 6.10568, 44.474207 ], [ 6.08288, 44.47695 ], [ 6.080134, 44.47436 ], [ 6.076241, 44.468474 ], [ 6.08181, 44.464012 ], [ 6.074264, 44.45157 ], [ 6.07441, 44.44476 ], [ 6.066996, 44.443706 ], [ 6.05624, 44.44945 ], [ 6.053342, 44.44654 ], [ 6.032485, 44.436823 ], [ 6.028002, 44.43528 ], [ 6.019295, 44.41915 ], [ 5.99214, 44.411676 ], [ 5.988217, 44.410693 ], [ 5.977589, 44.407188 ], [ 5.974754, 44.40512 ], [ 5.97152, 44.403371 ], [ 5.967631, 44.40204 ], [ 5.953543, 44.39502 ], [ 5.951755, 44.39182 ], [ 5.941362, 44.372662 ], [ 5.940727, 44.36937 ], [ 5.93746, 44.359903 ], [ 5.926031, 44.34962 ], [ 5.922564, 44.34715 ], [ 5.919596, 44.340471 ], [ 5.911295, 44.337692 ], [ 5.906611, 44.338131 ], [ 5.903105, 44.335855 ], [ 5.905087, 44.32922 ], [ 5.897085, 44.320962 ], [ 5.900114, 44.314928 ], [ 5.90847, 44.31176 ], [ 5.921115, 44.31517 ], [ 5.925139, 44.3134 ], [ 5.923532, 44.30244 ], [ 5.924474, 44.299312 ], [ 5.925752, 44.29295 ], [ 5.913496, 44.288254 ], [ 5.916192, 44.28167 ], [ 5.913984, 44.26847 ], [ 5.924756, 44.26368 ], [ 5.920629, 44.257539 ], [ 5.92088, 44.251461 ], [ 5.921825, 44.24841 ], [ 5.912233, 44.249511 ], [ 5.90923, 44.252293 ], [ 5.880137, 44.271146 ], [ 5.875074, 44.277116 ], [ 5.875488, 44.29097 ], [ 5.872113, 44.29291 ], [ 5.849039, 44.30066 ], [ 5.844577, 44.29998 ], [ 5.836127, 44.29754 ], [ 5.837276, 44.294185 ], [ 5.823033, 44.27636 ], [ 5.826492, 44.26301 ], [ 5.828455, 44.2609 ], [ 5.831221, 44.259313 ], [ 5.835375, 44.25742 ], [ 5.859308, 44.245408 ], [ 5.86181, 44.235147 ], [ 5.869428, 44.2307 ], [ 5.872682, 44.22421 ], [ 5.873183, 44.220745 ], [ 5.876728, 44.21433 ], [ 5.88447, 44.2102 ], [ 5.912356, 44.20479 ], [ 5.909902, 44.191603 ], [ 5.900313, 44.19088 ], [ 5.895566, 44.19058 ], [ 5.859057, 44.19517 ], [ 5.854398, 44.196367 ], [ 5.830739, 44.20043 ], [ 5.81088, 44.210757 ], [ 5.791914, 44.211863 ], [ 5.787955, 44.2103 ], [ 5.776254, 44.205578 ], [ 5.754537, 44.209827 ], [ 5.739009, 44.20176 ], [ 5.714941, 44.19851 ], [ 5.697942, 44.19195 ], [ 5.69239, 44.186269 ], [ 5.688817, 44.188257 ], [ 5.676037, 44.191433 ], [ 5.685922, 44.197181 ], [ 5.676723, 44.21341 ], [ 5.681133, 44.23069 ], [ 5.682025, 44.23367 ], [ 5.673312, 44.240169 ], [ 5.672644, 44.24567 ], [ 5.674252, 44.25586 ], [ 5.684206, 44.26309 ], [ 5.686653, 44.266069 ], [ 5.68449, 44.268833 ], [ 5.67561, 44.27589 ], [ 5.671683, 44.274225 ], [ 5.646781, 44.26709 ], [ 5.646372, 44.270398 ], [ 5.632861, 44.282845 ], [ 5.632601, 44.289389 ], [ 5.635739, 44.291638 ], [ 5.639778, 44.2965 ], [ 5.633799, 44.30088 ], [ 5.629322, 44.30115 ], [ 5.616057, 44.30938 ], [ 5.608318, 44.30612 ], [ 5.613216, 44.315772 ], [ 5.630209, 44.32785 ], [ 5.628259, 44.33394 ], [ 5.6238, 44.335217 ], [ 5.62037, 44.33295 ], [ 5.588187, 44.33218 ], [ 5.586926, 44.33204 ], [ 5.582972, 44.33229 ], [ 5.571307, 44.333476 ], [ 5.566543, 44.33302 ], [ 5.549105, 44.330588 ], [ 5.539953, 44.332439 ], [ 5.53686, 44.342102 ], [ 5.520927, 44.349259 ], [ 5.50316, 44.344279 ], [ 5.492944, 44.33713 ], [ 5.490082, 44.33996 ], [ 5.47857, 44.351041 ], [ 5.468856, 44.35135 ], [ 5.467049, 44.35451 ], [ 5.462782, 44.367237 ], [ 5.443922, 44.367748 ], [ 5.439297, 44.36795 ], [ 5.434954, 44.36912 ], [ 5.431328, 44.375331 ], [ 5.442622, 44.381268 ], [ 5.441702, 44.391681 ], [ 5.430035, 44.41453 ], [ 5.425382, 44.41561 ], [ 5.418397, 44.42477 ], [ 5.433752, 44.433168 ], [ 5.438582, 44.433556 ], [ 5.472723, 44.420943 ], [ 5.47757, 44.42085 ], [ 5.483329, 44.42609 ], [ 5.486044, 44.428965 ], [ 5.489918, 44.429022 ], [ 5.493615, 44.42822 ], [ 5.495031, 44.43096 ], [ 5.49549, 44.438803 ], [ 5.464832, 44.44865 ], [ 5.463836, 44.452052 ], [ 5.460217, 44.46859 ], [ 5.466822, 44.47352 ], [ 5.461529, 44.482824 ], [ 5.460352, 44.48614 ], [ 5.458909, 44.48852 ], [ 5.457843, 44.498155 ], [ 5.466345, 44.50034 ], [ 5.470847, 44.5 ], [ 5.474925, 44.49426 ], [ 5.483134, 44.49122 ], [ 5.506409, 44.492018 ], [ 5.51103, 44.49151 ], [ 5.546077, 44.48212 ], [ 5.549714, 44.4799 ], [ 5.56043, 44.4743 ], [ 5.564687, 44.475249 ], [ 5.5691, 44.476578 ], [ 5.598968, 44.466268 ], [ 5.603637, 44.4655 ], [ 5.614847, 44.47184 ], [ 5.623729, 44.48406 ], [ 5.626329, 44.497775 ], [ 5.633188, 44.502097 ], [ 5.651244, 44.499322 ], [ 5.659776, 44.501972 ], [ 5.664504, 44.501894 ], [ 5.66305, 44.50495 ], [ 5.646326, 44.520076 ], [ 5.642693, 44.522064 ], [ 5.627653, 44.53436 ], [ 5.614987, 44.532776 ], [ 5.612473, 44.535601 ], [ 5.597249, 44.543274 ], [ 5.60649, 44.566655 ], [ 5.607148, 44.568351 ], [ 5.613898, 44.571821 ], [ 5.621998, 44.58586 ], [ 5.626319, 44.586623 ], [ 5.627477, 44.59497 ], [ 5.63703, 44.60922 ], [ 5.646092, 44.60992 ], [ 5.648367, 44.616218 ], [ 5.649462, 44.61938 ], [ 5.642842, 44.62426 ], [ 5.640301, 44.64782 ], [ 5.641715, 44.651084 ], [ 5.649246, 44.652903 ], [ 5.651551, 44.655217 ], [ 5.659305, 44.651049 ], [ 5.683495, 44.64998 ], [ 5.725505, 44.640087 ], [ 5.749155, 44.65108 ], [ 5.753769, 44.660529 ], [ 5.77112, 44.65428 ], [ 5.785703, 44.653135 ], [ 5.79062, 44.653299 ], [ 5.801017, 44.674828 ], [ 5.809249, 44.678123 ], [ 5.813277, 44.679904 ], [ 5.817189, 44.681885 ], [ 5.829958, 44.69124 ], [ 5.825458, 44.70098 ], [ 5.812675, 44.70501 ], [ 5.808962, 44.70579 ], [ 5.80147, 44.706779 ], [ 5.811319, 44.71402 ], [ 5.81886, 44.73065 ], [ 5.829361, 44.74244 ], [ 5.826526, 44.756203 ], [ 5.827093, 44.75969 ], [ 5.841024, 44.756373 ], [ 5.847986, 44.751527 ], [ 5.867467, 44.751007 ], [ 5.880592, 44.746846 ], [ 5.885456, 44.74729 ], [ 5.893139, 44.75557 ], [ 5.902203, 44.75799 ], [ 5.919572, 44.75279 ], [ 5.937689, 44.763428 ], [ 5.946886, 44.76131 ], [ 5.951122, 44.759621 ], [ 5.952215, 44.768412 ], [ 5.953165, 44.771314 ], [ 5.976427, 44.779737 ], [ 5.980273, 44.781184 ], [ 5.979498, 44.78446 ], [ 5.977782, 44.79099 ], [ 5.951206, 44.80146 ], [ 5.949519, 44.80453 ], [ 5.975607, 44.81658 ], [ 5.979182, 44.818594 ], [ 6.003416, 44.820355 ], [ 6.016206, 44.83529 ], [ 6.030211, 44.8381 ], [ 6.052272, 44.81717 ], [ 6.056502, 44.815814 ], [ 6.093293, 44.83637 ], [ 6.097322, 44.83823 ], [ 6.113151, 44.84553 ], [ 6.130449, 44.862515 ], [ 6.157906, 44.85829 ], [ 6.165014, 44.853587 ], [ 6.169659, 44.852391 ], [ 6.192556, 44.85674 ], [ 6.196382, 44.85898 ], [ 6.229098, 44.852 ], [ 6.248866, 44.85256 ], [ 6.267095, 44.869092 ], [ 6.294563, 44.87398 ], [ 6.304353, 44.872792 ], [ 6.319428, 44.855139 ], [ 6.336319, 44.84837 ], [ 6.352053, 44.852842 ], [ 6.355364, 44.85482 ], [ 6.35047, 44.875131 ], [ 6.351997, 44.88203 ], [ 6.35855, 44.88732 ], [ 6.35466, 44.8971 ], [ 6.357945, 44.90729 ], [ 6.35491, 44.92778 ], [ 6.358172, 44.941575 ], [ 6.353422, 44.94256 ], [ 6.326279, 44.95001 ], [ 6.323254, 44.956575 ], [ 6.328214, 44.96635 ], [ 6.315992, 44.981186 ], [ 6.316204, 44.988209 ], [ 6.322681, 44.99762 ], [ 6.318199, 45.00387 ], [ 6.313282, 45.00386 ], [ 6.256173, 44.996219 ], [ 6.214373, 45.00568 ], [ 6.203138, 45.01245 ], [ 6.202925, 45.022933 ], [ 6.208686, 45.02834 ], [ 6.209563, 45.0423 ], [ 6.218717, 45.062 ], [ 6.22008, 45.065368 ], [ 6.243285, 45.06995 ], [ 6.229263, 45.106807 ], [ 6.245508, 45.119204 ], [ 6.258496, 45.12365 ], [ 6.260566, 45.12685 ], [ 6.276888, 45.114933 ], [ 6.293342, 45.108636 ], [ 6.317031, 45.111934 ], [ 6.332876, 45.11962 ], [ 6.334233, 45.122939 ], [ 6.362713, 45.105032 ], [ 6.374601, 45.082295 ], [ 6.367174, 45.07326 ], [ 6.364878, 45.070171 ], [ 6.396888, 45.061989 ], [ 6.406143, 45.06425 ], [ 6.420353, 45.06122 ], [ 6.43487, 45.063 ], [ 6.453124, 45.05237 ], [ 6.482138, 45.05625 ], [ 6.487082, 45.05641 ], [ 6.488729, 45.070181 ], [ 6.481725, 45.09045 ], [ 6.487117, 45.09613 ], [ 6.507778, 45.105994 ], [ 6.510423, 45.109 ], [ 6.530287, 45.099065 ], [ 6.540052, 45.09953 ], [ 6.561367, 45.10731 ], [ 6.563908, 45.11382 ], [ 6.57357, 45.120596 ], [ 6.576531, 45.1231 ], [ 6.589941, 45.1192 ], [ 6.61353, 45.120957 ], [ 6.626688, 45.111841 ], [ 6.629987, 45.109327 ], [ 6.627005, 45.1026 ], [ 6.644249, 45.085408 ], [ 6.647346, 45.075157 ], [ 6.660508, 45.07023 ], [ 6.662417, 45.06695 ], [ 6.661698, 45.052847 ], [ 6.668215, 45.043447 ], [ 6.665986, 45.0331 ], [ 6.672269, 45.023475 ], [ 6.675737, 45.02093 ], [ 6.725591, 45.020873 ], [ 6.739483, 45.01689 ], [ 6.750323, 44.997723 ], [ 6.737363, 44.99276 ], [ 6.737852, 44.98923 ], [ 6.746425, 44.98618 ], [ 6.764229, 44.96648 ], [ 6.762715, 44.956219 ], [ 6.748995, 44.937862 ], [ 6.757845, 44.935093 ], [ 6.750299, 44.92284 ], [ 6.750462, 44.908969 ], [ 6.751017, 44.90551 ], [ 6.77427, 44.90142 ], [ 6.784785, 44.8896 ], [ 6.799305, 44.88887 ], [ 6.807274, 44.87644 ], [ 6.839718, 44.86073 ], [ 6.853711, 44.85743 ], [ 6.864815, 44.850646 ], [ 6.87927, 44.85005 ], [ 6.883381, 44.84811 ], [ 6.911828, 44.845365 ], [ 6.927466, 44.858623 ], [ 6.935782, 44.861177 ], [ 6.970289, 44.847452 ], [ 7.003335, 44.84031 ], [ 7.010605, 44.82732 ], [ 7.020876, 44.82092 ], [ 7.019277, 44.81397 ], [ 7.002506, 44.79243 ], [ 6.999398, 44.789676 ], [ 7.011426, 44.78368 ], [ 7.02342, 44.768208 ], [ 7.022398, 44.750747 ], [ 7.030783, 44.730601 ], [ 7.042603, 44.719289 ], [ 7.06478, 44.71176 ], [ 7.076003, 44.684672 ], [ 7.074445, 44.681304 ], [ 7.064807, 44.68011 ], [ 7.028777, 44.691127 ], [ 7.000216, 44.689342 ], [ 6.995415, 44.69024 ], [ 6.986232, 44.68833 ], [ 6.96794, 44.677479 ], [ 6.963184, 44.67811 ], [ 6.958268, 44.67234 ], [ 6.957566, 44.662355 ], [ 6.950626, 44.657772 ], [ 6.948335, 44.654816 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "6", "CODE_DEPT": "06", "NOM_DEPT": "ALPES-MARITIMES", "CODE_CHF": "088", "NOM_CHF": "NICE", "X_CHF_LIEU": "10439", "Y_CHF_LIEU": "62985", "X_CENTROID": "10303", "Y_CENTROID": "63240", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.933726, 43.48007 ], [ 6.929232, 43.48092 ], [ 6.915656, 43.48302 ], [ 6.912292, 43.492654 ], [ 6.903919, 43.495072 ], [ 6.899554, 43.496022 ], [ 6.88423, 43.502536 ], [ 6.895211, 43.521932 ], [ 6.890768, 43.527623 ], [ 6.881414, 43.529345 ], [ 6.879135, 43.532454 ], [ 6.880004, 43.53578 ], [ 6.88712, 43.551823 ], [ 6.901986, 43.564253 ], [ 6.906637, 43.56415 ], [ 6.907831, 43.570943 ], [ 6.90031, 43.58315 ], [ 6.911991, 43.59833 ], [ 6.907869, 43.59934 ], [ 6.89447, 43.61102 ], [ 6.890741, 43.60961 ], [ 6.883712, 43.6065 ], [ 6.878763, 43.60666 ], [ 6.864765, 43.605159 ], [ 6.856823, 43.60836 ], [ 6.853158, 43.6064 ], [ 6.838665, 43.6138 ], [ 6.838426, 43.61688 ], [ 6.824612, 43.623192 ], [ 6.813587, 43.6297 ], [ 6.799868, 43.628348 ], [ 6.789749, 43.643367 ], [ 6.787139, 43.646097 ], [ 6.775052, 43.6596 ], [ 6.766017, 43.66051 ], [ 6.761134, 43.665891 ], [ 6.763489, 43.683024 ], [ 6.767122, 43.68957 ], [ 6.774704, 43.693851 ], [ 6.773193, 43.69711 ], [ 6.766196, 43.72003 ], [ 6.75727, 43.727858 ], [ 6.754162, 43.737857 ], [ 6.712452, 43.740342 ], [ 6.713283, 43.743764 ], [ 6.700874, 43.75383 ], [ 6.682462, 43.757585 ], [ 6.657423, 43.74872 ], [ 6.656379, 43.752203 ], [ 6.651067, 43.76575 ], [ 6.64185, 43.768184 ], [ 6.64192, 43.771434 ], [ 6.645036, 43.77722 ], [ 6.637802, 43.78096 ], [ 6.636148, 43.78622 ], [ 6.636396, 43.788951 ], [ 6.636039, 43.79018 ], [ 6.642116, 43.795191 ], [ 6.706107, 43.808492 ], [ 6.70983, 43.81066 ], [ 6.711365, 43.813989 ], [ 6.700319, 43.824779 ], [ 6.667906, 43.830613 ], [ 6.680239, 43.85206 ], [ 6.698235, 43.85543 ], [ 6.702826, 43.855963 ], [ 6.698749, 43.857796 ], [ 6.696172, 43.87492 ], [ 6.67836, 43.87912 ], [ 6.672533, 43.884384 ], [ 6.671631, 43.88779 ], [ 6.71217, 43.88076 ], [ 6.716515, 43.879579 ], [ 6.748081, 43.871859 ], [ 6.777189, 43.882261 ], [ 6.781622, 43.883558 ], [ 6.801479, 43.910303 ], [ 6.82787, 43.91728 ], [ 6.832406, 43.9182 ], [ 6.835947, 43.91543 ], [ 6.849883, 43.913976 ], [ 6.855097, 43.90832 ], [ 6.875061, 43.89931 ], [ 6.883435, 43.890893 ], [ 6.892593, 43.889981 ], [ 6.914201, 43.893316 ], [ 6.918679, 43.89357 ], [ 6.937585, 43.896331 ], [ 6.942272, 43.897261 ], [ 6.943245, 43.9007 ], [ 6.912989, 43.927059 ], [ 6.899665, 43.926743 ], [ 6.895139, 43.92782 ], [ 6.891724, 43.930225 ], [ 6.881883, 43.93786 ], [ 6.87181, 43.953306 ], [ 6.84775, 43.954787 ], [ 6.847274, 43.961769 ], [ 6.848069, 43.965228 ], [ 6.845487, 43.977627 ], [ 6.837536, 43.980736 ], [ 6.834713, 43.983286 ], [ 6.836197, 43.9866 ], [ 6.838085, 43.98982 ], [ 6.798087, 44.00536 ], [ 6.795562, 44.00811 ], [ 6.788985, 44.021282 ], [ 6.771137, 44.0265 ], [ 6.745687, 44.042831 ], [ 6.747684, 44.063477 ], [ 6.75423, 44.076525 ], [ 6.756483, 44.079593 ], [ 6.752843, 44.081069 ], [ 6.749821, 44.08661 ], [ 6.746524, 44.089134 ], [ 6.740733, 44.098594 ], [ 6.724109, 44.11108 ], [ 6.722172, 44.1134 ], [ 6.719091, 44.118299 ], [ 6.707956, 44.124389 ], [ 6.704946, 44.1448 ], [ 6.687238, 44.168302 ], [ 6.697893, 44.175053 ], [ 6.701235, 44.17753 ], [ 6.702002, 44.180852 ], [ 6.698476, 44.19015 ], [ 6.717369, 44.20864 ], [ 6.714075, 44.21823 ], [ 6.723518, 44.226169 ], [ 6.724371, 44.250425 ], [ 6.728285, 44.252563 ], [ 6.737559, 44.25327 ], [ 6.743444, 44.258662 ], [ 6.756922, 44.262247 ], [ 6.763087, 44.278428 ], [ 6.785844, 44.27359 ], [ 6.790339, 44.272345 ], [ 6.786444, 44.288764 ], [ 6.796041, 44.30018 ], [ 6.795043, 44.31358 ], [ 6.796834, 44.3167 ], [ 6.804542, 44.320824 ], [ 6.809948, 44.330289 ], [ 6.823444, 44.3338 ], [ 6.84091, 44.345667 ], [ 6.859328, 44.344283 ], [ 6.862963, 44.346571 ], [ 6.868985, 44.35052 ], [ 6.87154, 44.352803 ], [ 6.88343, 44.358954 ], [ 6.887431, 44.36106 ], [ 6.906448, 44.357571 ], [ 6.918807, 44.35191 ], [ 6.929163, 44.332446 ], [ 6.95721, 44.31279 ], [ 6.960882, 44.295842 ], [ 6.973696, 44.28602 ], [ 6.991838, 44.28138 ], [ 6.995891, 44.274989 ], [ 6.998108, 44.250394 ], [ 7.007013, 44.23783 ], [ 7.014605, 44.23333 ], [ 7.019263, 44.2322 ], [ 7.023877, 44.233446 ], [ 7.038886, 44.224882 ], [ 7.076443, 44.231758 ], [ 7.095704, 44.22126 ], [ 7.11845, 44.21467 ], [ 7.141896, 44.201771 ], [ 7.160278, 44.205726 ], [ 7.177321, 44.19911 ], [ 7.187029, 44.200264 ], [ 7.193171, 44.19063 ], [ 7.193611, 44.187096 ], [ 7.202643, 44.18473 ], [ 7.221238, 44.169144 ], [ 7.233962, 44.172845 ], [ 7.242278, 44.170847 ], [ 7.249911, 44.15804 ], [ 7.257824, 44.154037 ], [ 7.262782, 44.14803 ], [ 7.28433, 44.1421 ], [ 7.292969, 44.144941 ], [ 7.34094, 44.145115 ], [ 7.35898, 44.11706 ], [ 7.368716, 44.117075 ], [ 7.381562, 44.12205 ], [ 7.385892, 44.123672 ], [ 7.411486, 44.11903 ], [ 7.42229, 44.112653 ], [ 7.426949, 44.112879 ], [ 7.426468, 44.11988 ], [ 7.432788, 44.129347 ], [ 7.462122, 44.12739 ], [ 7.501021, 44.14222 ], [ 7.519584, 44.138565 ], [ 7.535212, 44.1463 ], [ 7.554766, 44.14704 ], [ 7.567088, 44.152823 ], [ 7.616041, 44.14977 ], [ 7.627419, 44.160624 ], [ 7.627821, 44.16417 ], [ 7.633196, 44.17356 ], [ 7.640993, 44.177442 ], [ 7.679923, 44.175967 ], [ 7.682914, 44.17 ], [ 7.671472, 44.15488 ], [ 7.678015, 44.14553 ], [ 7.676647, 44.14214 ], [ 7.668199, 44.13395 ], [ 7.67231, 44.12092 ], [ 7.674513, 44.11789 ], [ 7.689477, 44.108728 ], [ 7.698646, 44.09613 ], [ 7.713126, 44.086668 ], [ 7.716127, 44.080029 ], [ 7.712934, 44.062485 ], [ 7.701635, 44.043028 ], [ 7.663268, 44.028605 ], [ 7.661918, 44.018078 ], [ 7.662843, 44.014576 ], [ 7.668848, 43.99761 ], [ 7.652745, 43.976015 ], [ 7.616328, 43.958132 ], [ 7.59239, 43.955644 ], [ 7.576588, 43.94736 ], [ 7.571658, 43.94719 ], [ 7.570632, 43.93097 ], [ 7.558693, 43.916454 ], [ 7.561345, 43.89957 ], [ 7.510237, 43.882123 ], [ 7.509049, 43.878756 ], [ 7.506022, 43.876249 ], [ 7.4989, 43.87237 ], [ 7.499875, 43.86593 ], [ 7.496124, 43.86402 ], [ 7.496644, 43.85087 ], [ 7.507622, 43.839884 ], [ 7.517763, 43.805933 ], [ 7.518724, 43.802513 ], [ 7.530113, 43.787465 ], [ 7.529827, 43.78402 ], [ 7.512339, 43.78028 ], [ 7.507705, 43.774217 ], [ 7.488275, 43.765024 ], [ 7.482765, 43.749947 ], [ 7.458175, 43.75924 ], [ 7.439239, 43.749028 ], [ 7.437353, 43.751637 ], [ 7.433472, 43.749524 ], [ 7.424976, 43.741272 ], [ 7.413384, 43.73459 ], [ 7.412827, 43.731725 ], [ 7.409527, 43.72987 ], [ 7.412456, 43.72771 ], [ 7.415621, 43.725736 ], [ 7.404472, 43.71991 ], [ 7.390464, 43.719698 ], [ 7.383267, 43.72258 ], [ 7.370628, 43.718667 ], [ 7.357745, 43.721302 ], [ 7.348299, 43.71407 ], [ 7.342718, 43.713558 ], [ 7.329392, 43.701473 ], [ 7.341389, 43.684584 ], [ 7.327545, 43.677214 ], [ 7.322208, 43.68646 ], [ 7.323925, 43.69915 ], [ 7.320644, 43.701595 ], [ 7.319556, 43.70463 ], [ 7.312528, 43.703846 ], [ 7.308745, 43.692371 ], [ 7.307765, 43.68892 ], [ 7.300207, 43.685842 ], [ 7.285764, 43.69446 ], [ 7.261628, 43.693895 ], [ 7.247779, 43.690688 ], [ 7.233471, 43.681424 ], [ 7.225992, 43.661179 ], [ 7.209623, 43.64821 ], [ 7.205321, 43.646572 ], [ 7.201811, 43.65184 ], [ 7.199251, 43.65484 ], [ 7.196084, 43.65717 ], [ 7.178242, 43.65605 ], [ 7.173519, 43.65578 ], [ 7.164555, 43.656252 ], [ 7.156281, 43.6527 ], [ 7.145494, 43.641853 ], [ 7.142434, 43.639348 ], [ 7.130087, 43.6178 ], [ 7.126081, 43.586613 ], [ 7.12939, 43.572846 ], [ 7.138079, 43.5648 ], [ 7.1406, 43.551138 ], [ 7.138438, 43.54796 ], [ 7.129338, 43.54492 ], [ 7.120636, 43.546024 ], [ 7.120759, 43.55619 ], [ 7.114054, 43.56566 ], [ 7.101148, 43.57057 ], [ 7.091386, 43.57027 ], [ 7.086497, 43.569821 ], [ 7.074314, 43.565423 ], [ 7.057797, 43.55033 ], [ 7.039733, 43.539364 ], [ 7.035501, 43.53924 ], [ 7.030984, 43.545447 ], [ 7.02243, 43.548872 ], [ 6.993726, 43.54861 ], [ 6.970386, 43.544772 ], [ 6.954819, 43.53669 ], [ 6.951571, 43.534117 ], [ 6.938369, 43.516392 ], [ 6.938894, 43.50961 ], [ 6.951501, 43.50523 ], [ 6.954791, 43.49926 ], [ 6.946847, 43.486851 ], [ 6.933847, 43.48346 ], [ 6.933726, 43.48007 ] ] ], [ [ [ 7.067113, 43.513656 ], [ 7.063221, 43.515513 ], [ 7.044329, 43.515833 ], [ 7.034934, 43.51797 ], [ 7.032544, 43.520947 ], [ 7.045842, 43.52378 ], [ 7.063964, 43.51953 ], [ 7.069581, 43.516518 ], [ 7.067814, 43.51533 ], [ 7.067113, 43.513656 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "7", "CODE_DEPT": "07", "NOM_DEPT": "ARDECHE", "CODE_CHF": "186", "NOM_CHF": "PRIVAS", "X_CHF_LIEU": "8266", "Y_CHF_LIEU": "64052", "X_CENTROID": "8127", "Y_CENTROID": "64068", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.649224, 44.27036 ], [ 4.641729, 44.2742 ], [ 4.637028, 44.283669 ], [ 4.632679, 44.284994 ], [ 4.620478, 44.279944 ], [ 4.616625, 44.277993 ], [ 4.609125, 44.289249 ], [ 4.605465, 44.29104 ], [ 4.602332, 44.29192 ], [ 4.59898, 44.291756 ], [ 4.574274, 44.30075 ], [ 4.569998, 44.299349 ], [ 4.557168, 44.304168 ], [ 4.545631, 44.319708 ], [ 4.547749, 44.322874 ], [ 4.54911, 44.324512 ], [ 4.531152, 44.3241 ], [ 4.524167, 44.328768 ], [ 4.514731, 44.329114 ], [ 4.512014, 44.3354 ], [ 4.506097, 44.340252 ], [ 4.48291, 44.3382 ], [ 4.464761, 44.341675 ], [ 4.459866, 44.341596 ], [ 4.451068, 44.334096 ], [ 4.450793, 44.330705 ], [ 4.448757, 44.29671 ], [ 4.453212, 44.29787 ], [ 4.450048, 44.295226 ], [ 4.440422, 44.28342 ], [ 4.435608, 44.283324 ], [ 4.431983, 44.28968 ], [ 4.40357, 44.288177 ], [ 4.393313, 44.2946 ], [ 4.391594, 44.304759 ], [ 4.400063, 44.324818 ], [ 4.40145, 44.328167 ], [ 4.402347, 44.335007 ], [ 4.391868, 44.346573 ], [ 4.38705, 44.347057 ], [ 4.38381, 44.344352 ], [ 4.370171, 44.34014 ], [ 4.325771, 44.33832 ], [ 4.329257, 44.33238 ], [ 4.318098, 44.32175 ], [ 4.306334, 44.31627 ], [ 4.288375, 44.315019 ], [ 4.289584, 44.29542 ], [ 4.288996, 44.292146 ], [ 4.286338, 44.289386 ], [ 4.273773, 44.271752 ], [ 4.258901, 44.264425 ], [ 4.245138, 44.26807 ], [ 4.238182, 44.273095 ], [ 4.234052, 44.27506 ], [ 4.230778, 44.277176 ], [ 4.216384, 44.289039 ], [ 4.212951, 44.29144 ], [ 4.186579, 44.299735 ], [ 4.183913, 44.30232 ], [ 4.177991, 44.31774 ], [ 4.173247, 44.317577 ], [ 4.161701, 44.31215 ], [ 4.142868, 44.313351 ], [ 4.141665, 44.323959 ], [ 4.126752, 44.337734 ], [ 4.113525, 44.32913 ], [ 4.10942, 44.330843 ], [ 4.106628, 44.332356 ], [ 4.103861, 44.333906 ], [ 4.073842, 44.329026 ], [ 4.060144, 44.32017 ], [ 4.055621, 44.319021 ], [ 4.051452, 44.317324 ], [ 4.048059, 44.31895 ], [ 4.038705, 44.327887 ], [ 4.035706, 44.329851 ], [ 4.047919, 44.334444 ], [ 4.053047, 44.33975 ], [ 4.05116, 44.34621 ], [ 4.053677, 44.358794 ], [ 4.056718, 44.36102 ], [ 4.05298, 44.3787 ], [ 4.046711, 44.38246 ], [ 4.043749, 44.384554 ], [ 4.042393, 44.39407 ], [ 4.059453, 44.393911 ], [ 4.06844, 44.40506 ], [ 4.054795, 44.41479 ], [ 4.037813, 44.420918 ], [ 4.045419, 44.43349 ], [ 4.037103, 44.445952 ], [ 4.023876, 44.446301 ], [ 4.01666, 44.450365 ], [ 4.015082, 44.45348 ], [ 4.002603, 44.458515 ], [ 3.998163, 44.4598 ], [ 3.987125, 44.47487 ], [ 3.986789, 44.50243 ], [ 3.980284, 44.51542 ], [ 3.97579, 44.516742 ], [ 3.978998, 44.52176 ], [ 3.967657, 44.534856 ], [ 3.965692, 44.537682 ], [ 3.964955, 44.541002 ], [ 3.960906, 44.55381 ], [ 3.95849, 44.55689 ], [ 3.948774, 44.572887 ], [ 3.944441, 44.57366 ], [ 3.923567, 44.571885 ], [ 3.921627, 44.574962 ], [ 3.916821, 44.58071 ], [ 3.918466, 44.587368 ], [ 3.90654, 44.59237 ], [ 3.90533, 44.595462 ], [ 3.908084, 44.6077 ], [ 3.906662, 44.61096 ], [ 3.89414, 44.61529 ], [ 3.894403, 44.639018 ], [ 3.895766, 44.642293 ], [ 3.894778, 44.649963 ], [ 3.885373, 44.657457 ], [ 3.871647, 44.679336 ], [ 3.881767, 44.690573 ], [ 3.884563, 44.69344 ], [ 3.883529, 44.696718 ], [ 3.869648, 44.69696 ], [ 3.869246, 44.700396 ], [ 3.870008, 44.707206 ], [ 3.8631, 44.71202 ], [ 3.863763, 44.722326 ], [ 3.877097, 44.73599 ], [ 3.862527, 44.74387 ], [ 3.872496, 44.75531 ], [ 3.89572, 44.752874 ], [ 3.900111, 44.7628 ], [ 3.908988, 44.765461 ], [ 3.913657, 44.76654 ], [ 3.921789, 44.76768 ], [ 3.924918, 44.769624 ], [ 3.924334, 44.770979 ], [ 3.918029, 44.778856 ], [ 3.936818, 44.798093 ], [ 3.944475, 44.821015 ], [ 3.945543, 44.824346 ], [ 3.958782, 44.82839 ], [ 3.963183, 44.829759 ], [ 3.96732, 44.820179 ], [ 3.978357, 44.813905 ], [ 3.981885, 44.81168 ], [ 3.987154, 44.816384 ], [ 3.981451, 44.825961 ], [ 3.98493, 44.83169 ], [ 3.989593, 44.83134 ], [ 3.998603, 44.823575 ], [ 4.009087, 44.834627 ], [ 4.016413, 44.83039 ], [ 4.025664, 44.831837 ], [ 4.028587, 44.834619 ], [ 4.023795, 44.84387 ], [ 4.020047, 44.84586 ], [ 4.025204, 44.851002 ], [ 4.028196, 44.86301 ], [ 4.028735, 44.86617 ], [ 4.03891, 44.87276 ], [ 4.072916, 44.86977 ], [ 4.077563, 44.86981 ], [ 4.084478, 44.869194 ], [ 4.087906, 44.87033 ], [ 4.113166, 44.87856 ], [ 4.117944, 44.87811 ], [ 4.136896, 44.87405 ], [ 4.156637, 44.87398 ], [ 4.16616, 44.88194 ], [ 4.179479, 44.886514 ], [ 4.183014, 44.905224 ], [ 4.188048, 44.91019 ], [ 4.191688, 44.912136 ], [ 4.190046, 44.91419 ], [ 4.213073, 44.93121 ], [ 4.216572, 44.933577 ], [ 4.223854, 44.96288 ], [ 4.231819, 44.96574 ], [ 4.235239, 44.967805 ], [ 4.256587, 44.959876 ], [ 4.27942, 44.966702 ], [ 4.294225, 44.966801 ], [ 4.297662, 44.96895 ], [ 4.314365, 44.973166 ], [ 4.313234, 44.979581 ], [ 4.30998, 44.98093 ], [ 4.307317, 44.98588 ], [ 4.292148, 44.993912 ], [ 4.291981, 45.00429 ], [ 4.297425, 45.01353 ], [ 4.299684, 45.020038 ], [ 4.318086, 45.029934 ], [ 4.351543, 45.02766 ], [ 4.35376, 45.030569 ], [ 4.365133, 45.03556 ], [ 4.379068, 45.03617 ], [ 4.381644, 45.042797 ], [ 4.37873, 45.05286 ], [ 4.370244, 45.056005 ], [ 4.360713, 45.055392 ], [ 4.347737, 45.06525 ], [ 4.346372, 45.07504 ], [ 4.354941, 45.077282 ], [ 4.358616, 45.086252 ], [ 4.362829, 45.08751 ], [ 4.359232, 45.09957 ], [ 4.363868, 45.10042 ], [ 4.371468, 45.104384 ], [ 4.384585, 45.10107 ], [ 4.38784, 45.103623 ], [ 4.399854, 45.1081 ], [ 4.397573, 45.118082 ], [ 4.37257, 45.12807 ], [ 4.376559, 45.14436 ], [ 4.380955, 45.143558 ], [ 4.397828, 45.139484 ], [ 4.411159, 45.14083 ], [ 4.429495, 45.130393 ], [ 4.427843, 45.11751 ], [ 4.436425, 45.109456 ], [ 4.439755, 45.10989 ], [ 4.442014, 45.11169 ], [ 4.438931, 45.12036 ], [ 4.452662, 45.119125 ], [ 4.457286, 45.11889 ], [ 4.457564, 45.12224 ], [ 4.448414, 45.12946 ], [ 4.443565, 45.14218 ], [ 4.443347, 45.14558 ], [ 4.448111, 45.16196 ], [ 4.458157, 45.168872 ], [ 4.459058, 45.172156 ], [ 4.472579, 45.17989 ], [ 4.480555, 45.195459 ], [ 4.478555, 45.198314 ], [ 4.476933, 45.210673 ], [ 4.481328, 45.215919 ], [ 4.488918, 45.22342 ], [ 4.483135, 45.236446 ], [ 4.490899, 45.232209 ], [ 4.505973, 45.233025 ], [ 4.517747, 45.24179 ], [ 4.535936, 45.23662 ], [ 4.546242, 45.243778 ], [ 4.560654, 45.24717 ], [ 4.584802, 45.244075 ], [ 4.588302, 45.246547 ], [ 4.605227, 45.253429 ], [ 4.605305, 45.26367 ], [ 4.602945, 45.265422 ], [ 4.598493, 45.26897 ], [ 4.593657, 45.26978 ], [ 4.591348, 45.272883 ], [ 4.598597, 45.28949 ], [ 4.602724, 45.291 ], [ 4.611889, 45.292024 ], [ 4.621508, 45.29154 ], [ 4.622791, 45.294838 ], [ 4.616857, 45.3001 ], [ 4.61595, 45.3102 ], [ 4.633844, 45.314942 ], [ 4.640382, 45.31719 ], [ 4.643177, 45.318903 ], [ 4.640204, 45.32373 ], [ 4.638553, 45.32619 ], [ 4.675294, 45.34429 ], [ 4.679737, 45.345938 ], [ 4.698023, 45.344986 ], [ 4.701388, 45.34686 ], [ 4.70331, 45.349563 ], [ 4.718831, 45.354162 ], [ 4.723111, 45.354601 ], [ 4.725367, 45.361429 ], [ 4.751443, 45.365906 ], [ 4.755997, 45.365681 ], [ 4.7698, 45.356962 ], [ 4.772551, 45.354297 ], [ 4.773748, 45.34815 ], [ 4.761683, 45.341472 ], [ 4.761049, 45.338384 ], [ 4.760834, 45.33641 ], [ 4.762214, 45.32355 ], [ 4.777746, 45.311739 ], [ 4.781541, 45.309877 ], [ 4.797706, 45.29977 ], [ 4.800462, 45.29737 ], [ 4.808896, 45.29065 ], [ 4.809489, 45.28769 ], [ 4.809775, 45.272533 ], [ 4.809613, 45.2695 ], [ 4.809987, 45.266477 ], [ 4.809896, 45.261326 ], [ 4.808846, 45.258849 ], [ 4.8016, 45.24574 ], [ 4.802319, 45.228133 ], [ 4.803559, 45.224709 ], [ 4.810324, 45.20813 ], [ 4.812208, 45.204953 ], [ 4.805502, 45.196928 ], [ 4.806769, 45.1908 ], [ 4.812187, 45.18153 ], [ 4.810241, 45.17493 ], [ 4.809691, 45.168175 ], [ 4.819523, 45.161233 ], [ 4.824192, 45.160364 ], [ 4.826971, 45.15852 ], [ 4.828713, 45.156129 ], [ 4.828575, 45.15424 ], [ 4.805542, 45.134369 ], [ 4.804132, 45.13127 ], [ 4.803833, 45.12912 ], [ 4.804038, 45.122468 ], [ 4.812375, 45.11434 ], [ 4.814787, 45.111459 ], [ 4.821322, 45.106309 ], [ 4.825024, 45.10399 ], [ 4.827935, 45.101238 ], [ 4.829597, 45.098 ], [ 4.831643, 45.08748 ], [ 4.830462, 45.08402 ], [ 4.827816, 45.07855 ], [ 4.829155, 45.072848 ], [ 4.835642, 45.068347 ], [ 4.853039, 45.06404 ], [ 4.858913, 45.059161 ], [ 4.859747, 45.05594 ], [ 4.856465, 45.0501 ], [ 4.853914, 45.047509 ], [ 4.84455, 45.040541 ], [ 4.841948, 45.03791 ], [ 4.844111, 45.023373 ], [ 4.845408, 45.019956 ], [ 4.836708, 45.00751 ], [ 4.838684, 45.00426 ], [ 4.842493, 45.001983 ], [ 4.851868, 44.99372 ], [ 4.852189, 44.98308 ], [ 4.852566, 44.979535 ], [ 4.853083, 44.9779 ], [ 4.86049, 44.965551 ], [ 4.870828, 44.95867 ], [ 4.874277, 44.956367 ], [ 4.879216, 44.94744 ], [ 4.881366, 44.944603 ], [ 4.885877, 44.939591 ], [ 4.886589, 44.936652 ], [ 4.872362, 44.919916 ], [ 4.871343, 44.91673 ], [ 4.868911, 44.909923 ], [ 4.855085, 44.90001 ], [ 4.854324, 44.896523 ], [ 4.861281, 44.87822 ], [ 4.859694, 44.872001 ], [ 4.856764, 44.86955 ], [ 4.853417, 44.867152 ], [ 4.849984, 44.8648 ], [ 4.84757, 44.861873 ], [ 4.844119, 44.84547 ], [ 4.837147, 44.84131 ], [ 4.832487, 44.84087 ], [ 4.823316, 44.83949 ], [ 4.820281, 44.830192 ], [ 4.822499, 44.82055 ], [ 4.821485, 44.817384 ], [ 4.812834, 44.81553 ], [ 4.808382, 44.81478 ], [ 4.80015, 44.809 ], [ 4.80099, 44.805984 ], [ 4.797232, 44.803983 ], [ 4.795535, 44.79404 ], [ 4.783647, 44.78407 ], [ 4.770658, 44.780375 ], [ 4.766536, 44.778766 ], [ 4.761772, 44.7736 ], [ 4.76104, 44.77122 ], [ 4.762367, 44.76799 ], [ 4.769321, 44.759585 ], [ 4.759507, 44.74848 ], [ 4.76416, 44.73204 ], [ 4.764027, 44.729024 ], [ 4.76422, 44.71503 ], [ 4.771968, 44.706 ], [ 4.781209, 44.682373 ], [ 4.78159, 44.67885 ], [ 4.77792, 44.657761 ], [ 4.779073, 44.654699 ], [ 4.772902, 44.64263 ], [ 4.760718, 44.63335 ], [ 4.758089, 44.630739 ], [ 4.754218, 44.62183 ], [ 4.752426, 44.61893 ], [ 4.742368, 44.605171 ], [ 4.740405, 44.602392 ], [ 4.744202, 44.60089 ], [ 4.741139, 44.591872 ], [ 4.741169, 44.58877 ], [ 4.737462, 44.586672 ], [ 4.732864, 44.585888 ], [ 4.728619, 44.584685 ], [ 4.710872, 44.581999 ], [ 4.706404, 44.576314 ], [ 4.705961, 44.56665 ], [ 4.695739, 44.56307 ], [ 4.6925, 44.54623 ], [ 4.703415, 44.535714 ], [ 4.707933, 44.53442 ], [ 4.704551, 44.52789 ], [ 4.703129, 44.52456 ], [ 4.693101, 44.516703 ], [ 4.687882, 44.502934 ], [ 4.689415, 44.492349 ], [ 4.699537, 44.480083 ], [ 4.700103, 44.472952 ], [ 4.70041, 44.46939 ], [ 4.695289, 44.4458 ], [ 4.689287, 44.44051 ], [ 4.68026, 44.43827 ], [ 4.675978, 44.4367 ], [ 4.663053, 44.40702 ], [ 4.663338, 44.404317 ], [ 4.664373, 44.398944 ], [ 4.663492, 44.39545 ], [ 4.649064, 44.373073 ], [ 4.646837, 44.34828 ], [ 4.64959, 44.334233 ], [ 4.650615, 44.329806 ], [ 4.651542, 44.32632 ], [ 4.653181, 44.294807 ], [ 4.652364, 44.29127 ], [ 4.649224, 44.27036 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "8", "CODE_DEPT": "08", "NOM_DEPT": "ARDENNES", "CODE_CHF": "105", "NOM_CHF": "CHARLEVILLE-MEZIERES", "X_CHF_LIEU": "8239", "Y_CHF_LIEU": "69649", "X_CENTROID": "8186", "Y_CENTROID": "69475", "CODE_REG": "21", "NOM_REGION": "CHAMPAGNE-ARDENNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.950989, 49.236866 ], [ 4.95054, 49.240245 ], [ 4.923869, 49.250602 ], [ 4.933761, 49.261648 ], [ 4.924466, 49.261473 ], [ 4.913375, 49.26472 ], [ 4.908641, 49.26341 ], [ 4.889711, 49.258614 ], [ 4.876159, 49.26302 ], [ 4.882243, 49.25765 ], [ 4.861837, 49.23885 ], [ 4.867323, 49.2299 ], [ 4.866461, 49.22658 ], [ 4.827131, 49.235308 ], [ 4.827381, 49.2381 ], [ 4.82985, 49.243073 ], [ 4.820229, 49.24209 ], [ 4.812108, 49.249401 ], [ 4.806997, 49.2486 ], [ 4.789425, 49.241719 ], [ 4.76425, 49.24452 ], [ 4.744232, 49.24147 ], [ 4.74352, 49.2444 ], [ 4.729119, 49.251555 ], [ 4.72578, 49.253167 ], [ 4.718233, 49.25093 ], [ 4.713246, 49.25049 ], [ 4.703328, 49.25132 ], [ 4.703917, 49.254593 ], [ 4.690096, 49.257485 ], [ 4.685038, 49.256153 ], [ 4.670503, 49.24124 ], [ 4.636983, 49.23265 ], [ 4.619003, 49.23945 ], [ 4.618864, 49.24642 ], [ 4.611822, 49.2558 ], [ 4.611629, 49.25929 ], [ 4.606824, 49.26868 ], [ 4.597212, 49.27112 ], [ 4.591669, 49.280287 ], [ 4.596327, 49.286051 ], [ 4.599907, 49.28849 ], [ 4.577908, 49.295483 ], [ 4.557759, 49.29471 ], [ 4.552575, 49.293752 ], [ 4.53667, 49.28451 ], [ 4.515835, 49.2813 ], [ 4.492719, 49.28083 ], [ 4.48384, 49.28078 ], [ 4.479014, 49.27976 ], [ 4.454543, 49.27601 ], [ 4.45071, 49.274601 ], [ 4.446787, 49.272868 ], [ 4.444511, 49.27601 ], [ 4.408668, 49.286913 ], [ 4.408451, 49.28806 ], [ 4.406725, 49.291287 ], [ 4.396755, 49.29316 ], [ 4.390817, 49.2988 ], [ 4.375619, 49.3238 ], [ 4.371273, 49.32279 ], [ 4.36261, 49.32078 ], [ 4.359348, 49.31965 ], [ 4.353711, 49.316546 ], [ 4.348607, 49.317016 ], [ 4.333585, 49.32643 ], [ 4.308294, 49.326603 ], [ 4.307812, 49.32656 ], [ 4.305355, 49.329494 ], [ 4.290316, 49.346916 ], [ 4.291196, 49.350764 ], [ 4.294051, 49.35267 ], [ 4.27362, 49.35507 ], [ 4.258585, 49.36495 ], [ 4.247956, 49.3808 ], [ 4.242934, 49.38037 ], [ 4.240809, 49.38247 ], [ 4.235997, 49.38164 ], [ 4.213672, 49.38787 ], [ 4.20951, 49.386561 ], [ 4.201308, 49.383793 ], [ 4.198871, 49.38678 ], [ 4.188997, 49.3987 ], [ 4.191434, 49.40104 ], [ 4.167348, 49.40188 ], [ 4.162354, 49.40155 ], [ 4.14317, 49.404196 ], [ 4.13863, 49.40321 ], [ 4.115034, 49.401933 ], [ 4.110667, 49.40193 ], [ 4.106287, 49.401932 ], [ 4.085314, 49.401538 ], [ 4.07891, 49.401586 ], [ 4.074305, 49.40338 ], [ 4.047973, 49.40564 ], [ 4.04913, 49.40901 ], [ 4.04326, 49.4246 ], [ 4.0394, 49.43544 ], [ 4.037579, 49.43808 ], [ 4.047178, 49.445173 ], [ 4.056813, 49.445737 ], [ 4.06141, 49.44673 ], [ 4.066154, 49.44545 ], [ 4.042112, 49.47073 ], [ 4.041379, 49.477403 ], [ 4.041419, 49.48075 ], [ 4.041527, 49.484044 ], [ 4.040928, 49.492651 ], [ 4.040766, 49.495519 ], [ 4.040423, 49.505176 ], [ 4.04086, 49.508381 ], [ 4.056108, 49.508824 ], [ 4.060243, 49.521254 ], [ 4.074145, 49.51859 ], [ 4.075097, 49.521852 ], [ 4.075648, 49.53896 ], [ 4.067545, 49.54314 ], [ 4.051908, 49.545073 ], [ 4.050439, 49.55159 ], [ 4.059686, 49.5545 ], [ 4.07677, 49.570721 ], [ 4.062671, 49.57459 ], [ 4.060391, 49.587978 ], [ 4.064445, 49.594161 ], [ 4.060605, 49.59637 ], [ 4.047558, 49.60065 ], [ 4.031525, 49.61411 ], [ 4.026316, 49.619905 ], [ 4.038598, 49.62526 ], [ 4.042341, 49.63791 ], [ 4.047514, 49.63781 ], [ 4.050555, 49.634931 ], [ 4.071483, 49.63594 ], [ 4.095983, 49.629173 ], [ 4.110419, 49.63265 ], [ 4.11569, 49.63326 ], [ 4.11724, 49.641526 ], [ 4.124871, 49.650613 ], [ 4.122702, 49.660923 ], [ 4.126474, 49.6782 ], [ 4.146699, 49.67785 ], [ 4.146816, 49.689266 ], [ 4.151058, 49.690646 ], [ 4.160116, 49.69305 ], [ 4.164831, 49.693894 ], [ 4.179917, 49.698062 ], [ 4.185269, 49.698872 ], [ 4.184381, 49.70123 ], [ 4.192459, 49.71254 ], [ 4.191381, 49.715644 ], [ 4.202292, 49.72051 ], [ 4.205171, 49.722706 ], [ 4.220371, 49.72599 ], [ 4.225406, 49.72728 ], [ 4.227618, 49.731073 ], [ 4.226128, 49.73424 ], [ 4.230539, 49.74703 ], [ 4.246879, 49.75574 ], [ 4.242039, 49.765469 ], [ 4.224503, 49.77294 ], [ 4.214263, 49.77118 ], [ 4.212018, 49.774218 ], [ 4.206332, 49.77962 ], [ 4.209942, 49.78205 ], [ 4.224917, 49.79022 ], [ 4.227042, 49.79319 ], [ 4.219523, 49.805 ], [ 4.214774, 49.806115 ], [ 4.225337, 49.83498 ], [ 4.23017, 49.836088 ], [ 4.233752, 49.84863 ], [ 4.246034, 49.85426 ], [ 4.249004, 49.85696 ], [ 4.249554, 49.86011 ], [ 4.250089, 49.86324 ], [ 4.251798, 49.8904 ], [ 4.255734, 49.903977 ], [ 4.24633, 49.90226 ], [ 4.236936, 49.90378 ], [ 4.233643, 49.90912 ], [ 4.222142, 49.910427 ], [ 4.217774, 49.91626 ], [ 4.220206, 49.93359 ], [ 4.232061, 49.952462 ], [ 4.232132, 49.95596 ], [ 4.233068, 49.957824 ], [ 4.258202, 49.96399 ], [ 4.290489, 49.964158 ], [ 4.310615, 49.968571 ], [ 4.319254, 49.96439 ], [ 4.335185, 49.96274 ], [ 4.346405, 49.95516 ], [ 4.349362, 49.95223 ], [ 4.380829, 49.95372 ], [ 4.393818, 49.94853 ], [ 4.399174, 49.9484 ], [ 4.419211, 49.94644 ], [ 4.442353, 49.93966 ], [ 4.445804, 49.937168 ], [ 4.479779, 49.947129 ], [ 4.506043, 49.94731 ], [ 4.511319, 49.94681 ], [ 4.524166, 49.95132 ], [ 4.540829, 49.96823 ], [ 4.566154, 49.97146 ], [ 4.57019, 49.97363 ], [ 4.574077, 49.97859 ], [ 4.576036, 49.98112 ], [ 4.595972, 49.98596 ], [ 4.633238, 49.987466 ], [ 4.668017, 49.99635 ], [ 4.689349, 49.995788 ], [ 4.694599, 49.9965 ], [ 4.687522, 50.00162 ], [ 4.685948, 50.00838 ], [ 4.688542, 50.011369 ], [ 4.686633, 50.02778 ], [ 4.690633, 50.033997 ], [ 4.698735, 50.05274 ], [ 4.697028, 50.059288 ], [ 4.686844, 50.0577 ], [ 4.681884, 50.06763 ], [ 4.700055, 50.092646 ], [ 4.708046, 50.09649 ], [ 4.713412, 50.097 ], [ 4.715218, 50.10004 ], [ 4.746798, 50.11031 ], [ 4.751346, 50.11174 ], [ 4.751018, 50.12128 ], [ 4.755962, 50.121637 ], [ 4.765173, 50.1374 ], [ 4.77468, 50.14029 ], [ 4.779678, 50.14134 ], [ 4.802541, 50.151064 ], [ 4.822807, 50.167643 ], [ 4.831696, 50.15511 ], [ 4.874876, 50.15339 ], [ 4.881309, 50.143999 ], [ 4.889952, 50.14037 ], [ 4.895353, 50.13977 ], [ 4.895656, 50.136278 ], [ 4.870796, 50.123112 ], [ 4.872435, 50.09217 ], [ 4.863495, 50.091701 ], [ 4.859797, 50.09827 ], [ 4.850133, 50.10018 ], [ 4.840234, 50.09293 ], [ 4.845305, 50.08378 ], [ 4.840481, 50.08279 ], [ 4.839155, 50.06971 ], [ 4.825639, 50.06646 ], [ 4.820781, 50.065266 ], [ 4.819235, 50.06066 ], [ 4.828004, 50.05693 ], [ 4.828101, 50.04993 ], [ 4.837236, 50.046343 ], [ 4.840269, 50.03996 ], [ 4.822588, 50.02692 ], [ 4.820603, 50.02365 ], [ 4.815688, 49.992624 ], [ 4.805954, 49.9842 ], [ 4.795587, 49.982219 ], [ 4.790553, 49.961898 ], [ 4.790917, 49.958398 ], [ 4.809008, 49.95447 ], [ 4.813847, 49.95427 ], [ 4.849231, 49.94654 ], [ 4.858426, 49.93371 ], [ 4.878692, 49.92192 ], [ 4.885178, 49.912163 ], [ 4.885605, 49.90865 ], [ 4.882877, 49.89845 ], [ 4.861937, 49.86978 ], [ 4.851545, 49.86271 ], [ 4.852398, 49.85211 ], [ 4.855107, 49.84902 ], [ 4.858624, 49.842551 ], [ 4.867279, 49.839085 ], [ 4.873641, 49.818974 ], [ 4.865474, 49.81021 ], [ 4.855102, 49.79457 ], [ 4.857954, 49.7917 ], [ 4.861739, 49.78928 ], [ 4.874959, 49.793198 ], [ 4.883825, 49.790428 ], [ 4.887263, 49.788047 ], [ 4.897637, 49.78892 ], [ 4.906258, 49.7856 ], [ 4.926346, 49.78751 ], [ 4.931438, 49.78671 ], [ 4.939628, 49.79256 ], [ 4.942985, 49.790677 ], [ 4.946674, 49.797143 ], [ 4.955675, 49.80054 ], [ 4.991472, 49.800221 ], [ 5.001782, 49.793672 ], [ 5.010732, 49.78156 ], [ 5.014912, 49.779507 ], [ 5.041812, 49.77053 ], [ 5.046834, 49.770141 ], [ 5.069026, 49.76163 ], [ 5.089717, 49.76479 ], [ 5.096602, 49.75978 ], [ 5.122393, 49.729993 ], [ 5.124874, 49.726947 ], [ 5.123263, 49.720549 ], [ 5.123073, 49.71731 ], [ 5.130784, 49.713047 ], [ 5.141008, 49.71225 ], [ 5.143643, 49.70931 ], [ 5.151701, 49.71767 ], [ 5.160857, 49.71519 ], [ 5.165421, 49.709362 ], [ 5.16475, 49.696115 ], [ 5.166208, 49.69292 ], [ 5.194929, 49.69315 ], [ 5.19966, 49.69232 ], [ 5.208661, 49.69444 ], [ 5.215667, 49.689176 ], [ 5.23114, 49.69036 ], [ 5.246232, 49.68694 ], [ 5.268384, 49.69595 ], [ 5.280511, 49.689138 ], [ 5.281175, 49.68569 ], [ 5.282209, 49.68557 ], [ 5.286558, 49.68182 ], [ 5.31556, 49.666299 ], [ 5.319152, 49.66367 ], [ 5.332622, 49.6535 ], [ 5.320584, 49.64726 ], [ 5.307345, 49.63304 ], [ 5.304913, 49.63006 ], [ 5.311374, 49.614354 ], [ 5.314977, 49.61203 ], [ 5.321965, 49.614188 ], [ 5.340104, 49.618129 ], [ 5.346857, 49.63084 ], [ 5.388626, 49.61831 ], [ 5.393537, 49.617088 ], [ 5.389677, 49.615617 ], [ 5.381689, 49.6057 ], [ 5.379728, 49.59563 ], [ 5.37203, 49.592166 ], [ 5.361514, 49.59206 ], [ 5.357528, 49.58989 ], [ 5.347645, 49.5897 ], [ 5.339981, 49.59419 ], [ 5.312228, 49.565143 ], [ 5.308171, 49.562847 ], [ 5.31177, 49.55929 ], [ 5.307404, 49.557781 ], [ 5.284348, 49.55242 ], [ 5.277031, 49.54416 ], [ 5.271867, 49.54457 ], [ 5.26271, 49.54182 ], [ 5.259298, 49.54436 ], [ 5.251771, 49.55671 ], [ 5.247139, 49.55762 ], [ 5.234681, 49.562235 ], [ 5.234775, 49.56567 ], [ 5.214137, 49.57301 ], [ 5.201334, 49.56814 ], [ 5.196319, 49.56755 ], [ 5.186928, 49.56969 ], [ 5.177683, 49.56715 ], [ 5.168633, 49.56366 ], [ 5.159887, 49.56669 ], [ 5.160299, 49.56957 ], [ 5.152895, 49.576623 ], [ 5.152668, 49.58011 ], [ 5.145609, 49.58919 ], [ 5.119715, 49.59268 ], [ 5.115037, 49.59093 ], [ 5.106024, 49.578524 ], [ 5.113352, 49.5621 ], [ 5.112148, 49.5597 ], [ 5.108388, 49.555298 ], [ 5.104178, 49.55609 ], [ 5.09608, 49.55779 ], [ 5.095677, 49.554358 ], [ 5.090175, 49.54479 ], [ 5.090506, 49.538 ], [ 5.097719, 49.533646 ], [ 5.089874, 49.52109 ], [ 5.085535, 49.520335 ], [ 5.084962, 49.51711 ], [ 5.077415, 49.508733 ], [ 5.062563, 49.50745 ], [ 5.059872, 49.504708 ], [ 5.059979, 49.50119 ], [ 5.074537, 49.486683 ], [ 5.079907, 49.48637 ], [ 5.084529, 49.48056 ], [ 5.083, 49.473807 ], [ 5.082957, 49.47036 ], [ 5.095809, 49.4604 ], [ 5.100672, 49.46126 ], [ 5.102876, 49.46017 ], [ 5.10986, 49.45625 ], [ 5.100887, 49.440834 ], [ 5.106154, 49.4277 ], [ 5.107781, 49.424674 ], [ 5.115029, 49.42058 ], [ 5.109334, 49.41547 ], [ 5.099317, 49.413842 ], [ 5.084472, 49.404586 ], [ 5.088653, 49.39861 ], [ 5.10415, 49.38978 ], [ 5.100617, 49.380497 ], [ 5.088622, 49.36963 ], [ 5.08389, 49.37043 ], [ 5.060209, 49.371517 ], [ 5.054072, 49.36611 ], [ 5.055816, 49.359435 ], [ 5.027099, 49.335615 ], [ 5.028499, 49.332354 ], [ 5.029392, 49.326036 ], [ 5.032377, 49.32393 ], [ 5.038152, 49.316204 ], [ 5.030794, 49.30817 ], [ 5.041741, 49.29669 ], [ 5.051473, 49.29422 ], [ 5.056637, 49.293365 ], [ 5.059407, 49.28975 ], [ 5.05546, 49.28798 ], [ 5.049709, 49.283366 ], [ 5.051181, 49.274052 ], [ 5.036007, 49.27122 ], [ 5.025812, 49.273042 ], [ 5.011029, 49.269287 ], [ 5.006624, 49.26767 ], [ 4.998664, 49.26366 ], [ 4.9999, 49.26045 ], [ 4.996246, 49.257977 ], [ 4.968033, 49.248792 ], [ 4.960253, 49.23996 ], [ 4.950989, 49.236866 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "9", "CODE_DEPT": "09", "NOM_DEPT": "ARIEGE", "CODE_CHF": "122", "NOM_CHF": "FOIX", "X_CHF_LIEU": "5862", "Y_CHF_LIEU": "62083", "X_CENTROID": "5777", "Y_CENTROID": "62035", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.166054, 42.66392 ], [ 2.161322, 42.664241 ], [ 2.152302, 42.662075 ], [ 2.143126, 42.663854 ], [ 2.127885, 42.672039 ], [ 2.10655, 42.664841 ], [ 2.073887, 42.665624 ], [ 2.061034, 42.66184 ], [ 2.047019, 42.66359 ], [ 2.04327, 42.657496 ], [ 2.022788, 42.653364 ], [ 2.018423, 42.65366 ], [ 2.015214, 42.65539 ], [ 2.002095, 42.661076 ], [ 1.997956, 42.660903 ], [ 1.990771, 42.64664 ], [ 1.987816, 42.6443 ], [ 1.976116, 42.62744 ], [ 1.976361, 42.62107 ], [ 1.97328, 42.61838 ], [ 1.950468, 42.616947 ], [ 1.942099, 42.608521 ], [ 1.933621, 42.605578 ], [ 1.924961, 42.608539 ], [ 1.910766, 42.608063 ], [ 1.900303, 42.614906 ], [ 1.898745, 42.61167 ], [ 1.89352, 42.606051 ], [ 1.890215, 42.592989 ], [ 1.873502, 42.588202 ], [ 1.874485, 42.581415 ], [ 1.865377, 42.579925 ], [ 1.838155, 42.583957 ], [ 1.824728, 42.58124 ], [ 1.820712, 42.579504 ], [ 1.799703, 42.57232 ], [ 1.786125, 42.573623 ], [ 1.778394, 42.58208 ], [ 1.764271, 42.58082 ], [ 1.72825, 42.58957 ], [ 1.726265, 42.596348 ], [ 1.73508, 42.6085 ], [ 1.737964, 42.611314 ], [ 1.736569, 42.617834 ], [ 1.732644, 42.615819 ], [ 1.71376, 42.615386 ], [ 1.683181, 42.62449 ], [ 1.660225, 42.62046 ], [ 1.64907, 42.626907 ], [ 1.63517, 42.62927 ], [ 1.602654, 42.626418 ], [ 1.582867, 42.635437 ], [ 1.574887, 42.64803 ], [ 1.570708, 42.648089 ], [ 1.564674, 42.65223 ], [ 1.552802, 42.65395 ], [ 1.549214, 42.65569 ], [ 1.534097, 42.6498 ], [ 1.522151, 42.649183 ], [ 1.50644, 42.64529 ], [ 1.49375, 42.653211 ], [ 1.479741, 42.650854 ], [ 1.470526, 42.63481 ], [ 1.473983, 42.61115 ], [ 1.457841, 42.60379 ], [ 1.438948, 42.604335 ], [ 1.421833, 42.62506 ], [ 1.413033, 42.652646 ], [ 1.389548, 42.66977 ], [ 1.387917, 42.687306 ], [ 1.377013, 42.69411 ], [ 1.35461, 42.699991 ], [ 1.351964, 42.706444 ], [ 1.357819, 42.715886 ], [ 1.357378, 42.71942 ], [ 1.336951, 42.72107 ], [ 1.335268, 42.724037 ], [ 1.325862, 42.72411 ], [ 1.309332, 42.7179 ], [ 1.29526, 42.719063 ], [ 1.282178, 42.71517 ], [ 1.269226, 42.718025 ], [ 1.256345, 42.715226 ], [ 1.242505, 42.72406 ], [ 1.229293, 42.727724 ], [ 1.225892, 42.72522 ], [ 1.217862, 42.72136 ], [ 1.190021, 42.716877 ], [ 1.174266, 42.708992 ], [ 1.165018, 42.709527 ], [ 1.135497, 42.727328 ], [ 1.128703, 42.754623 ], [ 1.106604, 42.771773 ], [ 1.089692, 42.777454 ], [ 1.082026, 42.785907 ], [ 1.078709, 42.788366 ], [ 1.072945, 42.78284 ], [ 1.049296, 42.78164 ], [ 1.037519, 42.786522 ], [ 1.009559, 42.788876 ], [ 1.005585, 42.790799 ], [ 1.001357, 42.789452 ], [ 0.983769, 42.787072 ], [ 0.959768, 42.80564 ], [ 0.947251, 42.801013 ], [ 0.93448, 42.790873 ], [ 0.925827, 42.789672 ], [ 0.884979, 42.81307 ], [ 0.871283, 42.81608 ], [ 0.859991, 42.82244 ], [ 0.858306, 42.825719 ], [ 0.859883, 42.8383 ], [ 0.85666, 42.84052 ], [ 0.848211, 42.86533 ], [ 0.839447, 42.867521 ], [ 0.835258, 42.87359 ], [ 0.842883, 42.889585 ], [ 0.838049, 42.89883 ], [ 0.834232, 42.900791 ], [ 0.826682, 42.9155 ], [ 0.837338, 42.92054 ], [ 0.840735, 42.922675 ], [ 0.843739, 42.925182 ], [ 0.857163, 42.92399 ], [ 0.864822, 42.92743 ], [ 0.873674, 42.92673 ], [ 0.88452, 42.93244 ], [ 0.885379, 42.935725 ], [ 0.875793, 42.95445 ], [ 0.874911, 42.957776 ], [ 0.908073, 42.95831 ], [ 0.912639, 42.9594 ], [ 0.916804, 42.96074 ], [ 0.927664, 42.966687 ], [ 0.931165, 42.96643 ], [ 0.938102, 42.965646 ], [ 0.961393, 42.96831 ], [ 0.964711, 42.970804 ], [ 0.975795, 42.972974 ], [ 0.979101, 42.97443 ], [ 0.980532, 42.977687 ], [ 0.995098, 42.990834 ], [ 1.005529, 43.006087 ], [ 1.018611, 43.008147 ], [ 1.02239, 43.010195 ], [ 1.013484, 43.010022 ], [ 1.007949, 43.018763 ], [ 0.996808, 43.023981 ], [ 0.992966, 43.02338 ], [ 0.989042, 43.023396 ], [ 0.98455, 43.04218 ], [ 0.984119, 43.04539 ], [ 0.990214, 43.041564 ], [ 0.993153, 43.039558 ], [ 0.99437, 43.03985 ], [ 0.993263, 43.04842 ], [ 0.988953, 43.04786 ], [ 0.983483, 43.05626 ], [ 0.985586, 43.06247 ], [ 0.980334, 43.07022 ], [ 0.978285, 43.073009 ], [ 0.999629, 43.0765 ], [ 1.004964, 43.0816 ], [ 0.99167, 43.091173 ], [ 0.992095, 43.098018 ], [ 0.996328, 43.09811 ], [ 1.004142, 43.108616 ], [ 1.000889, 43.11428 ], [ 1.005098, 43.113303 ], [ 1.009501, 43.113484 ], [ 1.025497, 43.10214 ], [ 1.03823, 43.100308 ], [ 1.048314, 43.11731 ], [ 1.050845, 43.11982 ], [ 1.052319, 43.132935 ], [ 1.048409, 43.13815 ], [ 1.051446, 43.14061 ], [ 1.051863, 43.14391 ], [ 1.053544, 43.145454 ], [ 1.062938, 43.13867 ], [ 1.084129, 43.135403 ], [ 1.087977, 43.133825 ], [ 1.088091, 43.140035 ], [ 1.104069, 43.14396 ], [ 1.108471, 43.144228 ], [ 1.11198, 43.145531 ], [ 1.11207, 43.14841 ], [ 1.115991, 43.149875 ], [ 1.124082, 43.15691 ], [ 1.145819, 43.13863 ], [ 1.162565, 43.13204 ], [ 1.174984, 43.140974 ], [ 1.177517, 43.138201 ], [ 1.198395, 43.12542 ], [ 1.199329, 43.122617 ], [ 1.210751, 43.1151 ], [ 1.213204, 43.109236 ], [ 1.210476, 43.106905 ], [ 1.2221, 43.089078 ], [ 1.223571, 43.085926 ], [ 1.241135, 43.087537 ], [ 1.245513, 43.088076 ], [ 1.249571, 43.089042 ], [ 1.261854, 43.09165 ], [ 1.260737, 43.10799 ], [ 1.278927, 43.11026 ], [ 1.281744, 43.112995 ], [ 1.282698, 43.11601 ], [ 1.290166, 43.123439 ], [ 1.302718, 43.12259 ], [ 1.299357, 43.124961 ], [ 1.276705, 43.141992 ], [ 1.273873, 43.148388 ], [ 1.255381, 43.14795 ], [ 1.250818, 43.148097 ], [ 1.237564, 43.14998 ], [ 1.223738, 43.152072 ], [ 1.217172, 43.156579 ], [ 1.216928, 43.16329 ], [ 1.227735, 43.174001 ], [ 1.230324, 43.18739 ], [ 1.239495, 43.189065 ], [ 1.247613, 43.18654 ], [ 1.249383, 43.183306 ], [ 1.253254, 43.183792 ], [ 1.264613, 43.188734 ], [ 1.268142, 43.190779 ], [ 1.266351, 43.19148 ], [ 1.272331, 43.19585 ], [ 1.296283, 43.189284 ], [ 1.302034, 43.193576 ], [ 1.305721, 43.194912 ], [ 1.311658, 43.19165 ], [ 1.314608, 43.189995 ], [ 1.322387, 43.190989 ], [ 1.325853, 43.196126 ], [ 1.329615, 43.19702 ], [ 1.327516, 43.20196 ], [ 1.327822, 43.20456 ], [ 1.352282, 43.21198 ], [ 1.356669, 43.21301 ], [ 1.370204, 43.21067 ], [ 1.377872, 43.21925 ], [ 1.379963, 43.222341 ], [ 1.382925, 43.228152 ], [ 1.377652, 43.23627 ], [ 1.374903, 43.23864 ], [ 1.373053, 43.244883 ], [ 1.365233, 43.242021 ], [ 1.35678, 43.243701 ], [ 1.352581, 43.244617 ], [ 1.348304, 43.24313 ], [ 1.336707, 43.248387 ], [ 1.318422, 43.251154 ], [ 1.329953, 43.257217 ], [ 1.330481, 43.260644 ], [ 1.294111, 43.264926 ], [ 1.294862, 43.268267 ], [ 1.301238, 43.27292 ], [ 1.292531, 43.288366 ], [ 1.301558, 43.28756 ], [ 1.307485, 43.296727 ], [ 1.316667, 43.297392 ], [ 1.323968, 43.3094 ], [ 1.331294, 43.31383 ], [ 1.345491, 43.31549 ], [ 1.373023, 43.31015 ], [ 1.365686, 43.305999 ], [ 1.379301, 43.288857 ], [ 1.401943, 43.277623 ], [ 1.402761, 43.276547 ], [ 1.406262, 43.27419 ], [ 1.425886, 43.25582 ], [ 1.425426, 43.24559 ], [ 1.418659, 43.23654 ], [ 1.41686, 43.226325 ], [ 1.431539, 43.218136 ], [ 1.441798, 43.21587 ], [ 1.444751, 43.214018 ], [ 1.452056, 43.21222 ], [ 1.468744, 43.209566 ], [ 1.471837, 43.215385 ], [ 1.475497, 43.21699 ], [ 1.476565, 43.220347 ], [ 1.48702, 43.226503 ], [ 1.503995, 43.22095 ], [ 1.503881, 43.224867 ], [ 1.504053, 43.228189 ], [ 1.500513, 43.233745 ], [ 1.492447, 43.23684 ], [ 1.495751, 43.23897 ], [ 1.504522, 43.24953 ], [ 1.502879, 43.251637 ], [ 1.49768, 43.25466 ], [ 1.493322, 43.25422 ], [ 1.490239, 43.26011 ], [ 1.492642, 43.262804 ], [ 1.488674, 43.2686 ], [ 1.495033, 43.27689 ], [ 1.49622, 43.29277 ], [ 1.499248, 43.290445 ], [ 1.506599, 43.2872 ], [ 1.511636, 43.29246 ], [ 1.515871, 43.28441 ], [ 1.515703, 43.27804 ], [ 1.517628, 43.271643 ], [ 1.52189, 43.270621 ], [ 1.537449, 43.277077 ], [ 1.541722, 43.276082 ], [ 1.541674, 43.27509 ], [ 1.545386, 43.276797 ], [ 1.557052, 43.263323 ], [ 1.561765, 43.257484 ], [ 1.569141, 43.257366 ], [ 1.572619, 43.26357 ], [ 1.569433, 43.269912 ], [ 1.574813, 43.273429 ], [ 1.578834, 43.27512 ], [ 1.582583, 43.26887 ], [ 1.600931, 43.26622 ], [ 1.606213, 43.260604 ], [ 1.633595, 43.256239 ], [ 1.637144, 43.254008 ], [ 1.636456, 43.24718 ], [ 1.635082, 43.23709 ], [ 1.644398, 43.237564 ], [ 1.655283, 43.244105 ], [ 1.655788, 43.250976 ], [ 1.650608, 43.259827 ], [ 1.671417, 43.2783 ], [ 1.673613, 43.28134 ], [ 1.684706, 43.27552 ], [ 1.68842, 43.273554 ], [ 1.691642, 43.270993 ], [ 1.701035, 43.259015 ], [ 1.700281, 43.24551 ], [ 1.716082, 43.228373 ], [ 1.723908, 43.224435 ], [ 1.720825, 43.221997 ], [ 1.724233, 43.212474 ], [ 1.709977, 43.19984 ], [ 1.709632, 43.19001 ], [ 1.71178, 43.18684 ], [ 1.725887, 43.187682 ], [ 1.739608, 43.184299 ], [ 1.747554, 43.175566 ], [ 1.774918, 43.16154 ], [ 1.779465, 43.16036 ], [ 1.783803, 43.154472 ], [ 1.801395, 43.157017 ], [ 1.817151, 43.150228 ], [ 1.821439, 43.148998 ], [ 1.826188, 43.14568 ], [ 1.848366, 43.147346 ], [ 1.846197, 43.15323 ], [ 1.850054, 43.1576 ], [ 1.85196, 43.160608 ], [ 1.856847, 43.144629 ], [ 1.877961, 43.144833 ], [ 1.880648, 43.14754 ], [ 1.880596, 43.130549 ], [ 1.890103, 43.12347 ], [ 1.892668, 43.11713 ], [ 1.904423, 43.131163 ], [ 1.916269, 43.13343 ], [ 1.927409, 43.129496 ], [ 1.927998, 43.124185 ], [ 1.932339, 43.12386 ], [ 1.948405, 43.1203 ], [ 1.951491, 43.111311 ], [ 1.950633, 43.102388 ], [ 1.955369, 43.088924 ], [ 1.955776, 43.085447 ], [ 1.952205, 43.084054 ], [ 1.949782, 43.08169 ], [ 1.953422, 43.07991 ], [ 1.96308, 43.069587 ], [ 1.961181, 43.0667 ], [ 1.944222, 43.06695 ], [ 1.940394, 43.061586 ], [ 1.945866, 43.0494 ], [ 1.954082, 43.04678 ], [ 1.961083, 43.049564 ], [ 1.975929, 43.042304 ], [ 1.979452, 43.0379 ], [ 1.984554, 43.032941 ], [ 1.985759, 43.029957 ], [ 1.985468, 43.023479 ], [ 1.971869, 43.010586 ], [ 1.969256, 43.007944 ], [ 1.977778, 43.00701 ], [ 1.987058, 43.000576 ], [ 1.987127, 42.994506 ], [ 1.983264, 42.988434 ], [ 1.985769, 42.96848 ], [ 1.991575, 42.963482 ], [ 2.004908, 42.96156 ], [ 1.992859, 42.95372 ], [ 1.988592, 42.953381 ], [ 1.979382, 42.960507 ], [ 1.96166, 42.96201 ], [ 1.951304, 42.95909 ], [ 1.951814, 42.95593 ], [ 1.936227, 42.95189 ], [ 1.933731, 42.939144 ], [ 1.938436, 42.938228 ], [ 1.980574, 42.92958 ], [ 1.98088, 42.926111 ], [ 1.989327, 42.910488 ], [ 1.991129, 42.90749 ], [ 1.986048, 42.902786 ], [ 1.981595, 42.880467 ], [ 1.981922, 42.877197 ], [ 1.985041, 42.870859 ], [ 1.964409, 42.86292 ], [ 1.960244, 42.861377 ], [ 1.947126, 42.856689 ], [ 1.89389, 42.852925 ], [ 1.889042, 42.852704 ], [ 1.880266, 42.85268 ], [ 1.875017, 42.849168 ], [ 1.875018, 42.845939 ], [ 1.875571, 42.839497 ], [ 1.859461, 42.82414 ], [ 1.859379, 42.82081 ], [ 1.897896, 42.806041 ], [ 1.898387, 42.802701 ], [ 1.901467, 42.800637 ], [ 1.924962, 42.776245 ], [ 1.928959, 42.774603 ], [ 1.926075, 42.77218 ], [ 1.909557, 42.768445 ], [ 1.908994, 42.765247 ], [ 1.912998, 42.759308 ], [ 1.92529, 42.755179 ], [ 1.929817, 42.75521 ], [ 1.931555, 42.750934 ], [ 1.943622, 42.746207 ], [ 1.950255, 42.73766 ], [ 1.986832, 42.735222 ], [ 1.991438, 42.7348 ], [ 1.994914, 42.73558 ], [ 1.998506, 42.735944 ], [ 2.001675, 42.73537 ], [ 2.00378, 42.733529 ], [ 2.01532, 42.739274 ], [ 2.019979, 42.740018 ], [ 2.030775, 42.741483 ], [ 2.034932, 42.746826 ], [ 2.043914, 42.74741 ], [ 2.058119, 42.755485 ], [ 2.080464, 42.752244 ], [ 2.084951, 42.751662 ], [ 2.08636, 42.752069 ], [ 2.0878, 42.73957 ], [ 2.096671, 42.73315 ], [ 2.100535, 42.731715 ], [ 2.111063, 42.726839 ], [ 2.113806, 42.7245 ], [ 2.140803, 42.70908 ], [ 2.140607, 42.70582 ], [ 2.147599, 42.70124 ], [ 2.161494, 42.700523 ], [ 2.175521, 42.68275 ], [ 2.165712, 42.66739 ], [ 2.166054, 42.66392 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "10", "CODE_DEPT": "10", "NOM_DEPT": "AUBE", "CODE_CHF": "387", "NOM_CHF": "TROYES", "X_CHF_LIEU": "7799", "Y_CHF_LIEU": "68003", "X_CENTROID": "7861", "Y_CENTROID": "68010", "CODE_REG": "21", "NOM_REGION": "CHAMPAGNE-ARDENNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.293424, 47.92568 ], [ 4.288659, 47.92685 ], [ 4.274316, 47.92352 ], [ 4.259501, 47.925577 ], [ 4.246331, 47.930425 ], [ 4.2239, 47.948499 ], [ 4.227548, 47.962007 ], [ 4.225956, 47.971942 ], [ 4.221154, 47.97122 ], [ 4.201952, 47.972577 ], [ 4.195329, 47.96776 ], [ 4.195372, 47.96431 ], [ 4.204572, 47.96108 ], [ 4.206056, 47.947361 ], [ 4.200398, 47.94183 ], [ 4.185452, 47.94016 ], [ 4.184257, 47.95386 ], [ 4.167337, 47.96001 ], [ 4.162736, 47.95857 ], [ 4.141785, 47.94393 ], [ 4.141839, 47.937112 ], [ 4.137273, 47.937786 ], [ 4.122115, 47.93166 ], [ 4.113712, 47.92816 ], [ 4.094619, 47.92834 ], [ 4.092716, 47.94128 ], [ 4.089798, 47.94397 ], [ 4.060938, 47.94571 ], [ 4.054893, 47.93003 ], [ 4.045912, 47.9269 ], [ 4.033216, 47.932339 ], [ 4.025042, 47.928649 ], [ 4.019887, 47.92868 ], [ 4.005536, 47.94237 ], [ 4.001886, 47.94058 ], [ 3.985625, 47.930516 ], [ 3.981186, 47.930166 ], [ 3.976533, 47.93127 ], [ 3.963109, 47.935455 ], [ 3.949414, 47.93206 ], [ 3.92645, 47.93457 ], [ 3.923708, 47.932432 ], [ 3.918489, 47.92802 ], [ 3.914044, 47.92962 ], [ 3.905178, 47.926483 ], [ 3.895693, 47.92855 ], [ 3.894031, 47.929296 ], [ 3.896827, 47.932289 ], [ 3.902393, 47.93829 ], [ 3.905655, 47.95914 ], [ 3.913529, 47.97208 ], [ 3.903717, 47.99164 ], [ 3.90227, 47.99484 ], [ 3.895731, 47.999833 ], [ 3.885815, 48.000277 ], [ 3.882089, 47.997965 ], [ 3.880447, 47.98144 ], [ 3.8618, 47.976444 ], [ 3.863339, 47.979601 ], [ 3.859899, 47.98401 ], [ 3.850027, 47.98366 ], [ 3.849394, 47.986794 ], [ 3.839811, 48.00389 ], [ 3.844554, 48.003613 ], [ 3.862835, 48.00627 ], [ 3.870812, 48.002864 ], [ 3.870626, 48.00623 ], [ 3.870242, 48.01631 ], [ 3.847997, 48.02939 ], [ 3.843397, 48.03537 ], [ 3.83961, 48.03606 ], [ 3.832152, 48.036235 ], [ 3.829137, 48.03902 ], [ 3.82198, 48.04392 ], [ 3.828647, 48.04807 ], [ 3.826352, 48.063516 ], [ 3.822803, 48.065827 ], [ 3.806636, 48.08239 ], [ 3.798608, 48.08617 ], [ 3.798965, 48.08936 ], [ 3.80565, 48.10052 ], [ 3.803843, 48.10367 ], [ 3.80166, 48.10673 ], [ 3.798242, 48.10911 ], [ 3.791315, 48.117598 ], [ 3.782117, 48.11992 ], [ 3.776493, 48.12867 ], [ 3.768933, 48.13285 ], [ 3.763975, 48.13212 ], [ 3.752958, 48.125957 ], [ 3.74065, 48.131983 ], [ 3.739803, 48.138693 ], [ 3.742117, 48.1417 ], [ 3.754541, 48.15209 ], [ 3.74548, 48.167534 ], [ 3.741053, 48.16934 ], [ 3.716542, 48.17418 ], [ 3.721798, 48.158178 ], [ 3.705728, 48.1452 ], [ 3.698164, 48.148692 ], [ 3.694415, 48.15505 ], [ 3.693632, 48.15174 ], [ 3.691075, 48.145413 ], [ 3.66787, 48.139212 ], [ 3.666663, 48.142638 ], [ 3.65964, 48.159577 ], [ 3.650655, 48.16818 ], [ 3.648805, 48.17093 ], [ 3.64051, 48.184617 ], [ 3.636498, 48.186735 ], [ 3.623548, 48.192 ], [ 3.593967, 48.1787 ], [ 3.589992, 48.180588 ], [ 3.575186, 48.18874 ], [ 3.579608, 48.190672 ], [ 3.609202, 48.21066 ], [ 3.621602, 48.22561 ], [ 3.619329, 48.22813 ], [ 3.608006, 48.231831 ], [ 3.604684, 48.229886 ], [ 3.599994, 48.23551 ], [ 3.624443, 48.25517 ], [ 3.624347, 48.258442 ], [ 3.622873, 48.261375 ], [ 3.615187, 48.27254 ], [ 3.610952, 48.27461 ], [ 3.582509, 48.28284 ], [ 3.587536, 48.29848 ], [ 3.56318, 48.310819 ], [ 3.564072, 48.321081 ], [ 3.559032, 48.320358 ], [ 3.543904, 48.319789 ], [ 3.543961, 48.32276 ], [ 3.545109, 48.33455 ], [ 3.540825, 48.336547 ], [ 3.50441, 48.36549 ], [ 3.495725, 48.36935 ], [ 3.474875, 48.369265 ], [ 3.472982, 48.371899 ], [ 3.470803, 48.37444 ], [ 3.470481, 48.374671 ], [ 3.465281, 48.37451 ], [ 3.450115, 48.372852 ], [ 3.431584, 48.36085 ], [ 3.426582, 48.36169 ], [ 3.414008, 48.37654 ], [ 3.414792, 48.390273 ], [ 3.420872, 48.40902 ], [ 3.421938, 48.412236 ], [ 3.416642, 48.415835 ], [ 3.402286, 48.415408 ], [ 3.411362, 48.41804 ], [ 3.411833, 48.42132 ], [ 3.407194, 48.422678 ], [ 3.392493, 48.425157 ], [ 3.39673, 48.43489 ], [ 3.400909, 48.43688 ], [ 3.405714, 48.45329 ], [ 3.39689, 48.461488 ], [ 3.39732, 48.468171 ], [ 3.384094, 48.47803 ], [ 3.387681, 48.48016 ], [ 3.403747, 48.48599 ], [ 3.407523, 48.487793 ], [ 3.424335, 48.49154 ], [ 3.433434, 48.490391 ], [ 3.434924, 48.49705 ], [ 3.422267, 48.51541 ], [ 3.405398, 48.52802 ], [ 3.408474, 48.529945 ], [ 3.41464, 48.53379 ], [ 3.445941, 48.52879 ], [ 3.450707, 48.52867 ], [ 3.47562, 48.54128 ], [ 3.480919, 48.541431 ], [ 3.483775, 48.54706 ], [ 3.465516, 48.57049 ], [ 3.469023, 48.573054 ], [ 3.480668, 48.579133 ], [ 3.485304, 48.580464 ], [ 3.496646, 48.58992 ], [ 3.515219, 48.590989 ], [ 3.505274, 48.602986 ], [ 3.508636, 48.605598 ], [ 3.556545, 48.61731 ], [ 3.555754, 48.62069 ], [ 3.563076, 48.612739 ], [ 3.565324, 48.60353 ], [ 3.575032, 48.60446 ], [ 3.579892, 48.604859 ], [ 3.581882, 48.588702 ], [ 3.582592, 48.58546 ], [ 3.59248, 48.587004 ], [ 3.602682, 48.57567 ], [ 3.604245, 48.572453 ], [ 3.607694, 48.57417 ], [ 3.61177, 48.5761 ], [ 3.615255, 48.57849 ], [ 3.623843, 48.57911 ], [ 3.629017, 48.57416 ], [ 3.631399, 48.57156 ], [ 3.63263, 48.54552 ], [ 3.643639, 48.53626 ], [ 3.658505, 48.53564 ], [ 3.66131, 48.53466 ], [ 3.664193, 48.53553 ], [ 3.6882, 48.53895 ], [ 3.701306, 48.534281 ], [ 3.706308, 48.534585 ], [ 3.726541, 48.537189 ], [ 3.731761, 48.53754 ], [ 3.759259, 48.53186 ], [ 3.76655, 48.527446 ], [ 3.774481, 48.5298 ], [ 3.782383, 48.52746 ], [ 3.786289, 48.52873 ], [ 3.796397, 48.5281 ], [ 3.821633, 48.517039 ], [ 3.825896, 48.515174 ], [ 3.829732, 48.51714 ], [ 3.834507, 48.51766 ], [ 3.852471, 48.52483 ], [ 3.86544, 48.540046 ], [ 3.866229, 48.543549 ], [ 3.86001, 48.543549 ], [ 3.858832, 48.55683 ], [ 3.863732, 48.569629 ], [ 3.855122, 48.572794 ], [ 3.855214, 48.579262 ], [ 3.878854, 48.57902 ], [ 3.883263, 48.57755 ], [ 3.883945, 48.57776 ], [ 3.897616, 48.575738 ], [ 3.908424, 48.60175 ], [ 3.911396, 48.60185 ], [ 3.91901, 48.60597 ], [ 3.94924, 48.603432 ], [ 3.964055, 48.62714 ], [ 3.966616, 48.62992 ], [ 3.974072, 48.62657 ], [ 3.980532, 48.629473 ], [ 3.977256, 48.63209 ], [ 3.984211, 48.65194 ], [ 3.998629, 48.66116 ], [ 4.001696, 48.66388 ], [ 4.030184, 48.65965 ], [ 4.039499, 48.66168 ], [ 4.044291, 48.660955 ], [ 4.062858, 48.67184 ], [ 4.067612, 48.67785 ], [ 4.065982, 48.6872 ], [ 4.079788, 48.701127 ], [ 4.083978, 48.700037 ], [ 4.088126, 48.698875 ], [ 4.126466, 48.687778 ], [ 4.131091, 48.68615 ], [ 4.153641, 48.70268 ], [ 4.157769, 48.70434 ], [ 4.162185, 48.706155 ], [ 4.177346, 48.70825 ], [ 4.233041, 48.70231 ], [ 4.234701, 48.70529 ], [ 4.243113, 48.716673 ], [ 4.248388, 48.71158 ], [ 4.262377, 48.707152 ], [ 4.297443, 48.71315 ], [ 4.311773, 48.710559 ], [ 4.325579, 48.7002 ], [ 4.327016, 48.696879 ], [ 4.323296, 48.68411 ], [ 4.333205, 48.673664 ], [ 4.324067, 48.66198 ], [ 4.327909, 48.65608 ], [ 4.318484, 48.64956 ], [ 4.323216, 48.64393 ], [ 4.324339, 48.641647 ], [ 4.326398, 48.638772 ], [ 4.329072, 48.63612 ], [ 4.330956, 48.62959 ], [ 4.314918, 48.61622 ], [ 4.318252, 48.613403 ], [ 4.330833, 48.601819 ], [ 4.344703, 48.59837 ], [ 4.349656, 48.59794 ], [ 4.392438, 48.567422 ], [ 4.418399, 48.555473 ], [ 4.42331, 48.55415 ], [ 4.427877, 48.553165 ], [ 4.458127, 48.54784 ], [ 4.463404, 48.54756 ], [ 4.490796, 48.54015 ], [ 4.495281, 48.53872 ], [ 4.507606, 48.54518 ], [ 4.511043, 48.54783 ], [ 4.516867, 48.54445 ], [ 4.520811, 48.544941 ], [ 4.528813, 48.5294 ], [ 4.538806, 48.527398 ], [ 4.543945, 48.52803 ], [ 4.558081, 48.542425 ], [ 4.575926, 48.5492 ], [ 4.581057, 48.54856 ], [ 4.586045, 48.548146 ], [ 4.592975, 48.55234 ], [ 4.636332, 48.5537 ], [ 4.641338, 48.55388 ], [ 4.636207, 48.5497 ], [ 4.635014, 48.54448 ], [ 4.649977, 48.53983 ], [ 4.650985, 48.537005 ], [ 4.670183, 48.53189 ], [ 4.672146, 48.528872 ], [ 4.676345, 48.51953 ], [ 4.669606, 48.510796 ], [ 4.666284, 48.510635 ], [ 4.657667, 48.50323 ], [ 4.659165, 48.49323 ], [ 4.651486, 48.47721 ], [ 4.653469, 48.470557 ], [ 4.648724, 48.47071 ], [ 4.63622, 48.467215 ], [ 4.62683, 48.468082 ], [ 4.630106, 48.465518 ], [ 4.635782, 48.456612 ], [ 4.673885, 48.444132 ], [ 4.675907, 48.44138 ], [ 4.676942, 48.43567 ], [ 4.67796, 48.432421 ], [ 4.688066, 48.425403 ], [ 4.680322, 48.417054 ], [ 4.685262, 48.41681 ], [ 4.694223, 48.41467 ], [ 4.708356, 48.401185 ], [ 4.701249, 48.39537 ], [ 4.703582, 48.393137 ], [ 4.707664, 48.391098 ], [ 4.721621, 48.394397 ], [ 4.74663, 48.392303 ], [ 4.760188, 48.38761 ], [ 4.75458, 48.36655 ], [ 4.774639, 48.35745 ], [ 4.788073, 48.35542 ], [ 4.79289, 48.356093 ], [ 4.818946, 48.34505 ], [ 4.834492, 48.344477 ], [ 4.841471, 48.33946 ], [ 4.837279, 48.337297 ], [ 4.814218, 48.32301 ], [ 4.817381, 48.320442 ], [ 4.825283, 48.3121 ], [ 4.826276, 48.302243 ], [ 4.830865, 48.30309 ], [ 4.850845, 48.296255 ], [ 4.842941, 48.283517 ], [ 4.859395, 48.266025 ], [ 4.846501, 48.25581 ], [ 4.84458, 48.24907 ], [ 4.845763, 48.24706 ], [ 4.843279, 48.24076 ], [ 4.851517, 48.22941 ], [ 4.839374, 48.2242 ], [ 4.835568, 48.222045 ], [ 4.836553, 48.218619 ], [ 4.862435, 48.20861 ], [ 4.862336, 48.19818 ], [ 4.856297, 48.192587 ], [ 4.85609, 48.192464 ], [ 4.853853, 48.18932 ], [ 4.847077, 48.17992 ], [ 4.84882, 48.17667 ], [ 4.838845, 48.16886 ], [ 4.836583, 48.162213 ], [ 4.838385, 48.15215 ], [ 4.850094, 48.14158 ], [ 4.845262, 48.1407 ], [ 4.841084, 48.13464 ], [ 4.828601, 48.129079 ], [ 4.830916, 48.126433 ], [ 4.833349, 48.117511 ], [ 4.834386, 48.105164 ], [ 4.819903, 48.10332 ], [ 4.786885, 48.109269 ], [ 4.782071, 48.110791 ], [ 4.762028, 48.11511 ], [ 4.74089, 48.11566 ], [ 4.731874, 48.119451 ], [ 4.729771, 48.116376 ], [ 4.724477, 48.10697 ], [ 4.704076, 48.09777 ], [ 4.706929, 48.09499 ], [ 4.706273, 48.091733 ], [ 4.69088, 48.08595 ], [ 4.686338, 48.08422 ], [ 4.666381, 48.082637 ], [ 4.657543, 48.079243 ], [ 4.660742, 48.07715 ], [ 4.665953, 48.07672 ], [ 4.691158, 48.07195 ], [ 4.710106, 48.051129 ], [ 4.723155, 48.045763 ], [ 4.721823, 48.042371 ], [ 4.710489, 48.03515 ], [ 4.708903, 48.02178 ], [ 4.704239, 48.020241 ], [ 4.700888, 48.02285 ], [ 4.67296, 48.01502 ], [ 4.647584, 48.02469 ], [ 4.621946, 48.024348 ], [ 4.619447, 48.02642 ], [ 4.616807, 48.031376 ], [ 4.612164, 48.03005 ], [ 4.578157, 48.02857 ], [ 4.563343, 48.0154 ], [ 4.55472, 48.012276 ], [ 4.552644, 48.009189 ], [ 4.5456, 48.004988 ], [ 4.535774, 48.00657 ], [ 4.535514, 48.003131 ], [ 4.542963, 47.990433 ], [ 4.555441, 47.98477 ], [ 4.559969, 47.971423 ], [ 4.55658, 47.96923 ], [ 4.552383, 47.96779 ], [ 4.531442, 47.969899 ], [ 4.516449, 47.966349 ], [ 4.495482, 47.96805 ], [ 4.446962, 47.9562 ], [ 4.438111, 47.959377 ], [ 4.433946, 47.961462 ], [ 4.416466, 47.96828 ], [ 4.392313, 47.962106 ], [ 4.371696, 47.96133 ], [ 4.347354, 47.956339 ], [ 4.312802, 47.962499 ], [ 4.305655, 47.954163 ], [ 4.299289, 47.94861 ], [ 4.300411, 47.94519 ], [ 4.30209, 47.93829 ], [ 4.293424, 47.92568 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "11", "CODE_DEPT": "11", "NOM_DEPT": "AUDE", "CODE_CHF": "069", "NOM_CHF": "CARCASSONNE", "X_CHF_LIEU": "6472", "Y_CHF_LIEU": "62353", "X_CENTROID": "6522", "Y_CENTROID": "62228", "CODE_REG": "91", "NOM_REGION": "LANGUEDOC-ROUSSILLON" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.043511, 42.83815 ], [ 3.03948, 42.84012 ], [ 3.012405, 42.853193 ], [ 2.988876, 42.864578 ], [ 2.98478, 42.8665 ], [ 2.917115, 42.88486 ], [ 2.91436, 42.887448 ], [ 2.906997, 42.895679 ], [ 2.902421, 42.89638 ], [ 2.880505, 42.901363 ], [ 2.865274, 42.918341 ], [ 2.83792, 42.912314 ], [ 2.810132, 42.89842 ], [ 2.8054, 42.89788 ], [ 2.787164, 42.89441 ], [ 2.761908, 42.873325 ], [ 2.755066, 42.85486 ], [ 2.754346, 42.851708 ], [ 2.751927, 42.848735 ], [ 2.740524, 42.83789 ], [ 2.72743, 42.8344 ], [ 2.682011, 42.83072 ], [ 2.665142, 42.83666 ], [ 2.664347, 42.836753 ], [ 2.639901, 42.83826 ], [ 2.635284, 42.83795 ], [ 2.603246, 42.83613 ], [ 2.572403, 42.84337 ], [ 2.567708, 42.843691 ], [ 2.558602, 42.845506 ], [ 2.554148, 42.84627 ], [ 2.518539, 42.84314 ], [ 2.515232, 42.84545 ], [ 2.512073, 42.8477 ], [ 2.500452, 42.85043 ], [ 2.496644, 42.84839 ], [ 2.462198, 42.83856 ], [ 2.459478, 42.83808 ], [ 2.45682, 42.83748 ], [ 2.452145, 42.83694 ], [ 2.401353, 42.843872 ], [ 2.397686, 42.845128 ], [ 2.382167, 42.848466 ], [ 2.370849, 42.84635 ], [ 2.36647, 42.84556 ], [ 2.336096, 42.840709 ], [ 2.32504, 42.8352 ], [ 2.322405, 42.825453 ], [ 2.33204, 42.81834 ], [ 2.33228, 42.80487 ], [ 2.339328, 42.801531 ], [ 2.343923, 42.801227 ], [ 2.344229, 42.780565 ], [ 2.343325, 42.774112 ], [ 2.349394, 42.76951 ], [ 2.352611, 42.76015 ], [ 2.350519, 42.7573 ], [ 2.351796, 42.75222 ], [ 2.352471, 42.749692 ], [ 2.353569, 42.748566 ], [ 2.357134, 42.738418 ], [ 2.355346, 42.72805 ], [ 2.342891, 42.722902 ], [ 2.32249, 42.70811 ], [ 2.318547, 42.706457 ], [ 2.28859, 42.70067 ], [ 2.275384, 42.702928 ], [ 2.264713, 42.709032 ], [ 2.264471, 42.702116 ], [ 2.256682, 42.698268 ], [ 2.240947, 42.67753 ], [ 2.218667, 42.672426 ], [ 2.192168, 42.659057 ], [ 2.191276, 42.656631 ], [ 2.192366, 42.651766 ], [ 2.188063, 42.65205 ], [ 2.176219, 42.648901 ], [ 2.176143, 42.652596 ], [ 2.176088, 42.65301 ], [ 2.173177, 42.65562 ], [ 2.166054, 42.66392 ], [ 2.165712, 42.66739 ], [ 2.175521, 42.68275 ], [ 2.161494, 42.700523 ], [ 2.147599, 42.70124 ], [ 2.140607, 42.70582 ], [ 2.140803, 42.70908 ], [ 2.113806, 42.7245 ], [ 2.111063, 42.726839 ], [ 2.100535, 42.731715 ], [ 2.096671, 42.73315 ], [ 2.0878, 42.73957 ], [ 2.08636, 42.752069 ], [ 2.084951, 42.751662 ], [ 2.080464, 42.752244 ], [ 2.058119, 42.755485 ], [ 2.043914, 42.74741 ], [ 2.034932, 42.746826 ], [ 2.030775, 42.741483 ], [ 2.019979, 42.740018 ], [ 2.01532, 42.739274 ], [ 2.00378, 42.733529 ], [ 2.001675, 42.73537 ], [ 1.998506, 42.735944 ], [ 1.994914, 42.73558 ], [ 1.991438, 42.7348 ], [ 1.986832, 42.735222 ], [ 1.950255, 42.73766 ], [ 1.943622, 42.746207 ], [ 1.931555, 42.750934 ], [ 1.929817, 42.75521 ], [ 1.92529, 42.755179 ], [ 1.912998, 42.759308 ], [ 1.908994, 42.765247 ], [ 1.909557, 42.768445 ], [ 1.926075, 42.77218 ], [ 1.928959, 42.774603 ], [ 1.924962, 42.776245 ], [ 1.901467, 42.800637 ], [ 1.898387, 42.802701 ], [ 1.897896, 42.806041 ], [ 1.859379, 42.82081 ], [ 1.859461, 42.82414 ], [ 1.875571, 42.839497 ], [ 1.875018, 42.845939 ], [ 1.875017, 42.849168 ], [ 1.880266, 42.85268 ], [ 1.889042, 42.852704 ], [ 1.89389, 42.852925 ], [ 1.947126, 42.856689 ], [ 1.960244, 42.861377 ], [ 1.964409, 42.86292 ], [ 1.985041, 42.870859 ], [ 1.981922, 42.877197 ], [ 1.981595, 42.880467 ], [ 1.986048, 42.902786 ], [ 1.991129, 42.90749 ], [ 1.989327, 42.910488 ], [ 1.98088, 42.926111 ], [ 1.980574, 42.92958 ], [ 1.938436, 42.938228 ], [ 1.933731, 42.939144 ], [ 1.936227, 42.95189 ], [ 1.951814, 42.95593 ], [ 1.951304, 42.95909 ], [ 1.96166, 42.96201 ], [ 1.979382, 42.960507 ], [ 1.988592, 42.953381 ], [ 1.992859, 42.95372 ], [ 2.004908, 42.96156 ], [ 1.991575, 42.963482 ], [ 1.985769, 42.96848 ], [ 1.983264, 42.988434 ], [ 1.987127, 42.994506 ], [ 1.987058, 43.000576 ], [ 1.977778, 43.00701 ], [ 1.969256, 43.007944 ], [ 1.971869, 43.010586 ], [ 1.985468, 43.023479 ], [ 1.985759, 43.029957 ], [ 1.984554, 43.032941 ], [ 1.979452, 43.0379 ], [ 1.975929, 43.042304 ], [ 1.961083, 43.049564 ], [ 1.954082, 43.04678 ], [ 1.945866, 43.0494 ], [ 1.940394, 43.061586 ], [ 1.944222, 43.06695 ], [ 1.961181, 43.0667 ], [ 1.96308, 43.069587 ], [ 1.953422, 43.07991 ], [ 1.949782, 43.08169 ], [ 1.952205, 43.084054 ], [ 1.955776, 43.085447 ], [ 1.955369, 43.088924 ], [ 1.950633, 43.102388 ], [ 1.951491, 43.111311 ], [ 1.948405, 43.1203 ], [ 1.932339, 43.12386 ], [ 1.927998, 43.124185 ], [ 1.927409, 43.129496 ], [ 1.916269, 43.13343 ], [ 1.904423, 43.131163 ], [ 1.892668, 43.11713 ], [ 1.890103, 43.12347 ], [ 1.880596, 43.130549 ], [ 1.880648, 43.14754 ], [ 1.877961, 43.144833 ], [ 1.856847, 43.144629 ], [ 1.85196, 43.160608 ], [ 1.850054, 43.1576 ], [ 1.846197, 43.15323 ], [ 1.848366, 43.147346 ], [ 1.826188, 43.14568 ], [ 1.821439, 43.148998 ], [ 1.817151, 43.150228 ], [ 1.801395, 43.157017 ], [ 1.783803, 43.154472 ], [ 1.779465, 43.16036 ], [ 1.774918, 43.16154 ], [ 1.747554, 43.175566 ], [ 1.739608, 43.184299 ], [ 1.725887, 43.187682 ], [ 1.71178, 43.18684 ], [ 1.709632, 43.19001 ], [ 1.709977, 43.19984 ], [ 1.724233, 43.212474 ], [ 1.720825, 43.221997 ], [ 1.723908, 43.224435 ], [ 1.716082, 43.228373 ], [ 1.700281, 43.24551 ], [ 1.701035, 43.259015 ], [ 1.691642, 43.270993 ], [ 1.68842, 43.273554 ], [ 1.698489, 43.27911 ], [ 1.701275, 43.281698 ], [ 1.706646, 43.286036 ], [ 1.714527, 43.2971 ], [ 1.707797, 43.301155 ], [ 1.704015, 43.30282 ], [ 1.707384, 43.305316 ], [ 1.727504, 43.31357 ], [ 1.735952, 43.316018 ], [ 1.724412, 43.329666 ], [ 1.726379, 43.33269 ], [ 1.722905, 43.341533 ], [ 1.735427, 43.3377 ], [ 1.746555, 43.34348 ], [ 1.749223, 43.349462 ], [ 1.768684, 43.33939 ], [ 1.772273, 43.336977 ], [ 1.77653, 43.34256 ], [ 1.784932, 43.34515 ], [ 1.793332, 43.342567 ], [ 1.796973, 43.34056 ], [ 1.813484, 43.3415 ], [ 1.815575, 43.34831 ], [ 1.804994, 43.359764 ], [ 1.804971, 43.390588 ], [ 1.812498, 43.394126 ], [ 1.826108, 43.394661 ], [ 1.821619, 43.39879 ], [ 1.817111, 43.407384 ], [ 1.817266, 43.41065 ], [ 1.826761, 43.417746 ], [ 1.840383, 43.416741 ], [ 1.844511, 43.42261 ], [ 1.84599, 43.430729 ], [ 1.842953, 43.43255 ], [ 1.855178, 43.440517 ], [ 1.856453, 43.44345 ], [ 1.872942, 43.43696 ], [ 1.873987, 43.430259 ], [ 1.897627, 43.414271 ], [ 1.899143, 43.41113 ], [ 1.902433, 43.408813 ], [ 1.895584, 43.39658 ], [ 1.903591, 43.39402 ], [ 1.910708, 43.3974 ], [ 1.91463, 43.400749 ], [ 1.911508, 43.403408 ], [ 1.923508, 43.421558 ], [ 1.932769, 43.423377 ], [ 1.946584, 43.420597 ], [ 1.95817, 43.42561 ], [ 1.960755, 43.42396 ], [ 1.963752, 43.42275 ], [ 1.963038, 43.41991 ], [ 1.965903, 43.414971 ], [ 1.972991, 43.418962 ], [ 1.991106, 43.409343 ], [ 2.012692, 43.415021 ], [ 2.020921, 43.423193 ], [ 2.028795, 43.41962 ], [ 2.038411, 43.425482 ], [ 2.030853, 43.433737 ], [ 2.029133, 43.436898 ], [ 2.033296, 43.43604 ], [ 2.053071, 43.43031 ], [ 2.068725, 43.408896 ], [ 2.072801, 43.395696 ], [ 2.077317, 43.39563 ], [ 2.085693, 43.398082 ], [ 2.091681, 43.39389 ], [ 2.095112, 43.3962 ], [ 2.104399, 43.395602 ], [ 2.108785, 43.39446 ], [ 2.111065, 43.39619 ], [ 2.130495, 43.40122 ], [ 2.133557, 43.40356 ], [ 2.138318, 43.403714 ], [ 2.156305, 43.414894 ], [ 2.170349, 43.415876 ], [ 2.184058, 43.397779 ], [ 2.211099, 43.384565 ], [ 2.215024, 43.382615 ], [ 2.229322, 43.408286 ], [ 2.223344, 43.417789 ], [ 2.222523, 43.42831 ], [ 2.235584, 43.43756 ], [ 2.239358, 43.439747 ], [ 2.241344, 43.44268 ], [ 2.243802, 43.44544 ], [ 2.256687, 43.45364 ], [ 2.258295, 43.460113 ], [ 2.263919, 43.455923 ], [ 2.265415, 43.452919 ], [ 2.268692, 43.450611 ], [ 2.281798, 43.441449 ], [ 2.284875, 43.4433 ], [ 2.299698, 43.446812 ], [ 2.304106, 43.447929 ], [ 2.313931, 43.441064 ], [ 2.348387, 43.432774 ], [ 2.363082, 43.42457 ], [ 2.367331, 43.42318 ], [ 2.371245, 43.423076 ], [ 2.375171, 43.423 ], [ 2.398735, 43.417051 ], [ 2.406846, 43.419255 ], [ 2.404826, 43.42244 ], [ 2.40776, 43.42522 ], [ 2.42759, 43.43449 ], [ 2.451105, 43.43223 ], [ 2.469545, 43.43535 ], [ 2.473695, 43.43651 ], [ 2.477992, 43.43643 ], [ 2.494383, 43.436937 ], [ 2.497332, 43.434287 ], [ 2.518988, 43.423716 ], [ 2.548049, 43.42465 ], [ 2.561483, 43.42096 ], [ 2.565541, 43.42291 ], [ 2.565787, 43.42296 ], [ 2.569787, 43.42123 ], [ 2.583821, 43.412666 ], [ 2.593046, 43.411712 ], [ 2.593749, 43.40835 ], [ 2.586889, 43.39965 ], [ 2.573478, 43.399491 ], [ 2.569031, 43.400247 ], [ 2.566312, 43.39757 ], [ 2.557057, 43.38978 ], [ 2.552399, 43.37642 ], [ 2.555239, 43.366365 ], [ 2.54298, 43.347989 ], [ 2.540081, 43.34523 ], [ 2.551506, 43.33584 ], [ 2.555536, 43.337471 ], [ 2.583539, 43.333912 ], [ 2.590985, 43.3214 ], [ 2.592008, 43.31798 ], [ 2.596442, 43.31456 ], [ 2.599712, 43.31384 ], [ 2.600932, 43.301421 ], [ 2.601175, 43.298256 ], [ 2.617835, 43.287683 ], [ 2.616958, 43.284441 ], [ 2.624621, 43.28762 ], [ 2.631193, 43.29593 ], [ 2.639754, 43.295557 ], [ 2.643911, 43.29451 ], [ 2.659253, 43.292967 ], [ 2.659751, 43.29633 ], [ 2.674858, 43.303711 ], [ 2.677216, 43.31361 ], [ 2.685553, 43.31658 ], [ 2.687773, 43.323 ], [ 2.700735, 43.311207 ], [ 2.699148, 43.30833 ], [ 2.705513, 43.292266 ], [ 2.700303, 43.28281 ], [ 2.702969, 43.27682 ], [ 2.705185, 43.274472 ], [ 2.708919, 43.273655 ], [ 2.717737, 43.275558 ], [ 2.737904, 43.26725 ], [ 2.740772, 43.264578 ], [ 2.750072, 43.25739 ], [ 2.75252, 43.254594 ], [ 2.768509, 43.25726 ], [ 2.772493, 43.25803 ], [ 2.773293, 43.261242 ], [ 2.779998, 43.265241 ], [ 2.783181, 43.266633 ], [ 2.78708, 43.274035 ], [ 2.786968, 43.27444 ], [ 2.786537, 43.2844 ], [ 2.801825, 43.30031 ], [ 2.805735, 43.302361 ], [ 2.809682, 43.30437 ], [ 2.816603, 43.30865 ], [ 2.806109, 43.319211 ], [ 2.818156, 43.32396 ], [ 2.841926, 43.323686 ], [ 2.845974, 43.32562 ], [ 2.868538, 43.330064 ], [ 2.873742, 43.339633 ], [ 2.869575, 43.35645 ], [ 2.855626, 43.37348 ], [ 2.856778, 43.376288 ], [ 2.869181, 43.383636 ], [ 2.870568, 43.381011 ], [ 2.872288, 43.372934 ], [ 2.889793, 43.363723 ], [ 2.889904, 43.357345 ], [ 2.889495, 43.351767 ], [ 2.891178, 43.341802 ], [ 2.885119, 43.333249 ], [ 2.890884, 43.32793 ], [ 2.894929, 43.32626 ], [ 2.910982, 43.32005 ], [ 2.918369, 43.32351 ], [ 2.921249, 43.32608 ], [ 2.942061, 43.313666 ], [ 2.946079, 43.31196 ], [ 2.957536, 43.312476 ], [ 2.961798, 43.31304 ], [ 2.990723, 43.319222 ], [ 2.995281, 43.319555 ], [ 3.004423, 43.319708 ], [ 3.006281, 43.30013 ], [ 3.004816, 43.296769 ], [ 3.005738, 43.286244 ], [ 3.012103, 43.280936 ], [ 3.011118, 43.27762 ], [ 3.036064, 43.281912 ], [ 3.054347, 43.28004 ], [ 3.076978, 43.26293 ], [ 3.086199, 43.26382 ], [ 3.093639, 43.259874 ], [ 3.097452, 43.257928 ], [ 3.101424, 43.25616 ], [ 3.114664, 43.254745 ], [ 3.118897, 43.260731 ], [ 3.141627, 43.25951 ], [ 3.147017, 43.254157 ], [ 3.146508, 43.247384 ], [ 3.159183, 43.243228 ], [ 3.173126, 43.243836 ], [ 3.184023, 43.250124 ], [ 3.193229, 43.2504 ], [ 3.201526, 43.24776 ], [ 3.228989, 43.21916 ], [ 3.240561, 43.212809 ], [ 3.236801, 43.21059 ], [ 3.183535, 43.170042 ], [ 3.152601, 43.141127 ], [ 3.148739, 43.139334 ], [ 3.131174, 43.111474 ], [ 3.117663, 43.102198 ], [ 3.084479, 43.056162 ], [ 3.06484, 43.019814 ], [ 3.067308, 43.013229 ], [ 3.05581, 42.998073 ], [ 3.043813, 42.96364 ], [ 3.042843, 42.960163 ], [ 3.039848, 42.932025 ], [ 3.055225, 42.92409 ], [ 3.059819, 42.917906 ], [ 3.043511, 42.83815 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "12", "CODE_DEPT": "12", "NOM_DEPT": "AVEYRON", "CODE_CHF": "202", "NOM_CHF": "RODEZ", "X_CHF_LIEU": "6660", "Y_CHF_LIEU": "63613", "X_CENTROID": "6744", "Y_CENTROID": "63535", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.358663, 43.91452 ], [ 3.35509, 43.912512 ], [ 3.341916, 43.903707 ], [ 3.342568, 43.89419 ], [ 3.318657, 43.891142 ], [ 3.295145, 43.89498 ], [ 3.285828, 43.893312 ], [ 3.277444, 43.896771 ], [ 3.274142, 43.89853 ], [ 3.262608, 43.891 ], [ 3.261857, 43.88748 ], [ 3.255494, 43.87803 ], [ 3.242077, 43.873934 ], [ 3.235019, 43.86087 ], [ 3.236408, 43.853896 ], [ 3.251333, 43.840067 ], [ 3.249037, 43.82958 ], [ 3.24472, 43.828807 ], [ 3.236311, 43.82744 ], [ 3.231794, 43.826063 ], [ 3.222688, 43.81778 ], [ 3.205308, 43.81296 ], [ 3.18238, 43.81283 ], [ 3.155002, 43.817065 ], [ 3.151466, 43.81479 ], [ 3.150705, 43.813769 ], [ 3.126978, 43.817668 ], [ 3.112567, 43.82707 ], [ 3.085706, 43.835554 ], [ 3.071172, 43.834826 ], [ 3.066312, 43.83527 ], [ 3.058733, 43.827967 ], [ 3.058661, 43.818006 ], [ 3.063813, 43.81263 ], [ 3.050173, 43.804619 ], [ 3.048568, 43.801498 ], [ 3.05838, 43.7861 ], [ 3.057048, 43.7828 ], [ 3.058796, 43.77968 ], [ 3.07351, 43.767594 ], [ 3.065413, 43.755703 ], [ 3.056275, 43.75495 ], [ 3.053162, 43.74478 ], [ 3.057115, 43.73844 ], [ 3.053522, 43.732 ], [ 3.057648, 43.725743 ], [ 3.054971, 43.715972 ], [ 3.069165, 43.706849 ], [ 3.062363, 43.7024 ], [ 3.061872, 43.69601 ], [ 3.060678, 43.692807 ], [ 3.048231, 43.696953 ], [ 3.031387, 43.69243 ], [ 3.022657, 43.69437 ], [ 3.018665, 43.696 ], [ 3.013333, 43.70144 ], [ 2.996006, 43.706493 ], [ 2.982088, 43.70803 ], [ 2.973965, 43.704627 ], [ 2.969351, 43.704023 ], [ 2.957596, 43.699448 ], [ 2.954969, 43.69654 ], [ 2.942225, 43.691774 ], [ 2.934967, 43.694712 ], [ 2.925714, 43.705711 ], [ 2.919189, 43.732351 ], [ 2.921903, 43.73515 ], [ 2.906604, 43.740943 ], [ 2.902605, 43.742272 ], [ 2.870453, 43.739161 ], [ 2.862726, 43.747556 ], [ 2.858564, 43.74914 ], [ 2.858278, 43.74923 ], [ 2.853612, 43.74858 ], [ 2.835755, 43.751109 ], [ 2.823856, 43.761205 ], [ 2.814518, 43.76158 ], [ 2.789149, 43.752549 ], [ 2.781499, 43.736958 ], [ 2.77671, 43.73662 ], [ 2.740543, 43.72896 ], [ 2.713823, 43.74197 ], [ 2.700006, 43.74256 ], [ 2.695398, 43.743158 ], [ 2.68173, 43.74351 ], [ 2.659933, 43.756371 ], [ 2.656754, 43.76271 ], [ 2.632803, 43.778159 ], [ 2.629213, 43.78025 ], [ 2.624269, 43.789819 ], [ 2.613699, 43.796972 ], [ 2.609147, 43.80681 ], [ 2.598972, 43.813639 ], [ 2.599743, 43.817089 ], [ 2.596139, 43.81881 ], [ 2.593359, 43.818271 ], [ 2.590488, 43.818278 ], [ 2.561802, 43.84597 ], [ 2.564387, 43.85097 ], [ 2.56361, 43.863215 ], [ 2.567351, 43.86851 ], [ 2.578587, 43.87319 ], [ 2.57997, 43.876184 ], [ 2.576271, 43.88176 ], [ 2.552007, 43.89157 ], [ 2.550498, 43.89822 ], [ 2.551007, 43.901583 ], [ 2.552838, 43.907791 ], [ 2.553842, 43.921087 ], [ 2.536983, 43.930395 ], [ 2.537229, 43.933825 ], [ 2.508499, 43.94527 ], [ 2.499084, 43.94509 ], [ 2.499348, 43.95052 ], [ 2.503845, 43.95485 ], [ 2.51981, 43.96002 ], [ 2.52088, 43.963112 ], [ 2.523088, 43.97323 ], [ 2.523255, 43.98015 ], [ 2.501798, 43.986633 ], [ 2.498413, 43.99306 ], [ 2.494988, 43.995512 ], [ 2.494652, 43.99831 ], [ 2.491762, 44.003525 ], [ 2.495189, 44.00523 ], [ 2.495398, 44.01121 ], [ 2.491987, 44.01325 ], [ 2.484888, 44.02469 ], [ 2.46993, 44.03032 ], [ 2.46679, 44.03254 ], [ 2.460871, 44.050323 ], [ 2.456246, 44.05107 ], [ 2.41021, 44.055858 ], [ 2.410932, 44.069299 ], [ 2.399704, 44.084026 ], [ 2.389214, 44.09111 ], [ 2.389215, 44.09457 ], [ 2.384438, 44.09396 ], [ 2.357739, 44.10155 ], [ 2.355459, 44.104332 ], [ 2.351988, 44.106373 ], [ 2.348244, 44.108232 ], [ 2.340338, 44.11139 ], [ 2.332443, 44.123024 ], [ 2.32333, 44.124453 ], [ 2.307295, 44.11854 ], [ 2.290639, 44.123572 ], [ 2.297572, 44.135894 ], [ 2.288372, 44.14301 ], [ 2.28488, 44.145335 ], [ 2.261838, 44.144678 ], [ 2.23754, 44.134313 ], [ 2.224895, 44.138644 ], [ 2.191958, 44.139739 ], [ 2.188454, 44.13738 ], [ 2.182698, 44.14133 ], [ 2.193505, 44.14781 ], [ 2.201984, 44.14492 ], [ 2.211048, 44.146619 ], [ 2.216793, 44.151557 ], [ 2.237614, 44.158626 ], [ 2.223858, 44.167026 ], [ 2.205638, 44.1706 ], [ 2.199835, 44.16527 ], [ 2.191033, 44.16346 ], [ 2.182014, 44.17151 ], [ 2.18079, 44.17828 ], [ 2.17194, 44.18054 ], [ 2.15815, 44.17923 ], [ 2.15473, 44.181296 ], [ 2.158773, 44.186971 ], [ 2.152652, 44.19145 ], [ 2.149213, 44.20054 ], [ 2.144534, 44.20048 ], [ 2.135213, 44.20041 ], [ 2.128047, 44.19611 ], [ 2.114064, 44.1958 ], [ 2.109785, 44.19499 ], [ 2.103134, 44.19149 ], [ 2.107798, 44.18287 ], [ 2.104725, 44.180242 ], [ 2.096551, 44.179068 ], [ 2.093014, 44.185178 ], [ 2.075514, 44.18204 ], [ 2.067551, 44.190122 ], [ 2.063174, 44.18924 ], [ 2.051179, 44.18686 ], [ 2.058502, 44.17228 ], [ 2.03111, 44.16875 ], [ 2.027089, 44.16693 ], [ 2.03025, 44.15757 ], [ 2.008016, 44.15273 ], [ 2.003793, 44.15116 ], [ 1.999161, 44.15079 ], [ 1.990171, 44.149453 ], [ 1.997054, 44.15822 ], [ 1.975743, 44.16476 ], [ 1.973623, 44.171353 ], [ 1.980073, 44.176427 ], [ 1.977979, 44.179513 ], [ 1.96062, 44.184138 ], [ 1.946484, 44.18282 ], [ 1.94071, 44.16977 ], [ 1.934353, 44.17464 ], [ 1.931422, 44.187513 ], [ 1.922996, 44.18919 ], [ 1.915747, 44.18554 ], [ 1.911095, 44.185458 ], [ 1.91299, 44.18841 ], [ 1.905812, 44.19214 ], [ 1.902943, 44.204 ], [ 1.890347, 44.20757 ], [ 1.894638, 44.21281 ], [ 1.90835, 44.21245 ], [ 1.932163, 44.242647 ], [ 1.940187, 44.24479 ], [ 1.943065, 44.247586 ], [ 1.957699, 44.241767 ], [ 1.962021, 44.242339 ], [ 1.960638, 44.24882 ], [ 1.970633, 44.276348 ], [ 1.966238, 44.277594 ], [ 1.943413, 44.280015 ], [ 1.940271, 44.28255 ], [ 1.93638, 44.280883 ], [ 1.909854, 44.281415 ], [ 1.901391, 44.279116 ], [ 1.87319, 44.290822 ], [ 1.868779, 44.29204 ], [ 1.880166, 44.303109 ], [ 1.860483, 44.32194 ], [ 1.872421, 44.33263 ], [ 1.880816, 44.334993 ], [ 1.885627, 44.335267 ], [ 1.882083, 44.340074 ], [ 1.884697, 44.343009 ], [ 1.891626, 44.351766 ], [ 1.905909, 44.350856 ], [ 1.910827, 44.356738 ], [ 1.910045, 44.36019 ], [ 1.908239, 44.363419 ], [ 1.896363, 44.36943 ], [ 1.891429, 44.37913 ], [ 1.874402, 44.39144 ], [ 1.868875, 44.397213 ], [ 1.874271, 44.406866 ], [ 1.870881, 44.42065 ], [ 1.87332, 44.423691 ], [ 1.873186, 44.42414 ], [ 1.85067, 44.43731 ], [ 1.848247, 44.447676 ], [ 1.851868, 44.461246 ], [ 1.847655, 44.46751 ], [ 1.845965, 44.470817 ], [ 1.839533, 44.476098 ], [ 1.839964, 44.479604 ], [ 1.861576, 44.48732 ], [ 1.873307, 44.48432 ], [ 1.877448, 44.4841 ], [ 1.881928, 44.483945 ], [ 1.887907, 44.5048 ], [ 1.892546, 44.505578 ], [ 1.905072, 44.501274 ], [ 1.908117, 44.488196 ], [ 1.916454, 44.486324 ], [ 1.919767, 44.48867 ], [ 1.911268, 44.50287 ], [ 1.918913, 44.50437 ], [ 1.928272, 44.50508 ], [ 1.943408, 44.51711 ], [ 1.948186, 44.517304 ], [ 1.957918, 44.519044 ], [ 1.97072, 44.529176 ], [ 1.971753, 44.532553 ], [ 1.973838, 44.53561 ], [ 1.979555, 44.54102 ], [ 1.984239, 44.54726 ], [ 2.004211, 44.55696 ], [ 2.023677, 44.556333 ], [ 2.02803, 44.558001 ], [ 2.028857, 44.55823 ], [ 2.032878, 44.560204 ], [ 2.035452, 44.570211 ], [ 2.055083, 44.58027 ], [ 2.06364, 44.579268 ], [ 2.061247, 44.569389 ], [ 2.064612, 44.56775 ], [ 2.079834, 44.585022 ], [ 2.095353, 44.57801 ], [ 2.098323, 44.57582 ], [ 2.104023, 44.571473 ], [ 2.11629, 44.573102 ], [ 2.126954, 44.578256 ], [ 2.13433, 44.57037 ], [ 2.14808, 44.570651 ], [ 2.152562, 44.571586 ], [ 2.166655, 44.5887 ], [ 2.169552, 44.59132 ], [ 2.169815, 44.59141 ], [ 2.185813, 44.59071 ], [ 2.193314, 44.587763 ], [ 2.198334, 44.593561 ], [ 2.197709, 44.600318 ], [ 2.209251, 44.605731 ], [ 2.207475, 44.615532 ], [ 2.216622, 44.621251 ], [ 2.22057, 44.622035 ], [ 2.21762, 44.624796 ], [ 2.208414, 44.64384 ], [ 2.227115, 44.654033 ], [ 2.250539, 44.652042 ], [ 2.265206, 44.660847 ], [ 2.270054, 44.660582 ], [ 2.274461, 44.66121 ], [ 2.286189, 44.66646 ], [ 2.303361, 44.6632 ], [ 2.320317, 44.66728 ], [ 2.32413, 44.669154 ], [ 2.329813, 44.66653 ], [ 2.332221, 44.66459 ], [ 2.336617, 44.658768 ], [ 2.335043, 44.648837 ], [ 2.350984, 44.64123 ], [ 2.36529, 44.64185 ], [ 2.380878, 44.649671 ], [ 2.392671, 44.644937 ], [ 2.397134, 44.646186 ], [ 2.401279, 44.645416 ], [ 2.404766, 44.647182 ], [ 2.43565, 44.639745 ], [ 2.450108, 44.64808 ], [ 2.46804, 44.642895 ], [ 2.469, 44.649453 ], [ 2.471965, 44.65202 ], [ 2.476306, 44.65033 ], [ 2.484685, 44.65259 ], [ 2.489524, 44.658715 ], [ 2.489176, 44.669256 ], [ 2.500496, 44.68881 ], [ 2.516627, 44.695884 ], [ 2.518885, 44.69903 ], [ 2.520134, 44.702048 ], [ 2.5364, 44.711958 ], [ 2.55623, 44.722231 ], [ 2.549397, 44.728649 ], [ 2.552128, 44.73146 ], [ 2.554142, 44.734 ], [ 2.55424, 44.73915 ], [ 2.553678, 44.75742 ], [ 2.560675, 44.761043 ], [ 2.563364, 44.77124 ], [ 2.564486, 44.77809 ], [ 2.578243, 44.78595 ], [ 2.586564, 44.78399 ], [ 2.590137, 44.78628 ], [ 2.600123, 44.793667 ], [ 2.598425, 44.82077 ], [ 2.609777, 44.827284 ], [ 2.610224, 44.83402 ], [ 2.604162, 44.84309 ], [ 2.618041, 44.852972 ], [ 2.626616, 44.869226 ], [ 2.629077, 44.872259 ], [ 2.653049, 44.86977 ], [ 2.656223, 44.87242 ], [ 2.658611, 44.8858 ], [ 2.679376, 44.90442 ], [ 2.681868, 44.907348 ], [ 2.689464, 44.903768 ], [ 2.702556, 44.90531 ], [ 2.706372, 44.907091 ], [ 2.714067, 44.926073 ], [ 2.716766, 44.928835 ], [ 2.724568, 44.92734 ], [ 2.733919, 44.9384 ], [ 2.737688, 44.940366 ], [ 2.738254, 44.941222 ], [ 2.742087, 44.931975 ], [ 2.755915, 44.932151 ], [ 2.776095, 44.90964 ], [ 2.772244, 44.900025 ], [ 2.775894, 44.89026 ], [ 2.77859, 44.8875 ], [ 2.775611, 44.884879 ], [ 2.767711, 44.86593 ], [ 2.772282, 44.856403 ], [ 2.781647, 44.856971 ], [ 2.784749, 44.863216 ], [ 2.80279, 44.873829 ], [ 2.807588, 44.8741 ], [ 2.814631, 44.869447 ], [ 2.851531, 44.87189 ], [ 2.854931, 44.87431 ], [ 2.859679, 44.874465 ], [ 2.860544, 44.86764 ], [ 2.855424, 44.85473 ], [ 2.863543, 44.84742 ], [ 2.861554, 44.837958 ], [ 2.869874, 44.82958 ], [ 2.879446, 44.8031 ], [ 2.889642, 44.78833 ], [ 2.897866, 44.78511 ], [ 2.906917, 44.78545 ], [ 2.91673, 44.79205 ], [ 2.920191, 44.794314 ], [ 2.931811, 44.78372 ], [ 2.933774, 44.78065 ], [ 2.936373, 44.774086 ], [ 2.931708, 44.764522 ], [ 2.917767, 44.76596 ], [ 2.914118, 44.76372 ], [ 2.914287, 44.760278 ], [ 2.917021, 44.75743 ], [ 2.930116, 44.75357 ], [ 2.93351, 44.747201 ], [ 2.931312, 44.73721 ], [ 2.923264, 44.728648 ], [ 2.929367, 44.716201 ], [ 2.930886, 44.71303 ], [ 2.934201, 44.696226 ], [ 2.941418, 44.687228 ], [ 2.939346, 44.67758 ], [ 2.9475, 44.67433 ], [ 2.955269, 44.662188 ], [ 2.962677, 44.65787 ], [ 2.961872, 44.654466 ], [ 2.967626, 44.650498 ], [ 2.97025, 44.64826 ], [ 2.977213, 44.64471 ], [ 2.981677, 44.644686 ], [ 2.985448, 44.64421 ], [ 2.987819, 44.64119 ], [ 3.013273, 44.620847 ], [ 3.018388, 44.61126 ], [ 3.030708, 44.600741 ], [ 3.031891, 44.598463 ], [ 3.037131, 44.59554 ], [ 3.041086, 44.594202 ], [ 3.055354, 44.58707 ], [ 3.059631, 44.58163 ], [ 3.061845, 44.579 ], [ 3.076196, 44.57255 ], [ 3.076607, 44.5695 ], [ 3.079021, 44.566472 ], [ 3.08347, 44.56032 ], [ 3.07491, 44.533292 ], [ 3.076238, 44.519464 ], [ 3.075465, 44.51598 ], [ 3.068932, 44.502706 ], [ 3.09956, 44.48043 ], [ 3.103506, 44.479535 ], [ 3.117325, 44.47379 ], [ 3.124866, 44.4613 ], [ 3.135486, 44.455519 ], [ 3.136186, 44.44879 ], [ 3.136367, 44.44539 ], [ 3.135077, 44.442016 ], [ 3.142256, 44.433734 ], [ 3.141045, 44.426796 ], [ 3.129938, 44.420337 ], [ 3.126721, 44.41396 ], [ 3.130371, 44.412037 ], [ 3.137244, 44.408266 ], [ 3.137053, 44.391621 ], [ 3.119743, 44.386331 ], [ 3.123395, 44.38021 ], [ 3.122494, 44.370017 ], [ 3.120492, 44.366814 ], [ 3.123591, 44.360771 ], [ 3.131976, 44.357178 ], [ 3.128198, 44.3509 ], [ 3.134194, 44.334528 ], [ 3.150937, 44.329933 ], [ 3.146076, 44.31713 ], [ 3.154266, 44.309225 ], [ 3.125306, 44.28542 ], [ 3.124527, 44.26147 ], [ 3.133898, 44.262382 ], [ 3.138298, 44.26397 ], [ 3.14016, 44.26704 ], [ 3.14617, 44.276031 ], [ 3.154268, 44.27304 ], [ 3.160532, 44.24628 ], [ 3.174415, 44.24526 ], [ 3.187826, 44.24891 ], [ 3.195687, 44.24066 ], [ 3.23054, 44.23034 ], [ 3.221213, 44.207713 ], [ 3.219211, 44.204503 ], [ 3.215799, 44.2021 ], [ 3.212071, 44.19578 ], [ 3.203593, 44.193462 ], [ 3.226313, 44.190592 ], [ 3.230589, 44.189863 ], [ 3.239261, 44.19066 ], [ 3.243235, 44.19257 ], [ 3.264363, 44.200308 ], [ 3.287881, 44.19952 ], [ 3.291616, 44.205676 ], [ 3.301043, 44.206461 ], [ 3.318327, 44.20039 ], [ 3.332084, 44.203509 ], [ 3.355603, 44.20084 ], [ 3.360423, 44.201169 ], [ 3.358391, 44.19447 ], [ 3.372075, 44.180725 ], [ 3.373648, 44.170765 ], [ 3.336682, 44.15813 ], [ 3.332488, 44.14864 ], [ 3.330226, 44.142165 ], [ 3.320354, 44.13595 ], [ 3.32359, 44.127009 ], [ 3.323929, 44.11194 ], [ 3.323849, 44.10892 ], [ 3.319087, 44.108373 ], [ 3.310698, 44.104941 ], [ 3.291562, 44.10483 ], [ 3.263376, 44.092726 ], [ 3.27474, 44.087541 ], [ 3.295925, 44.06954 ], [ 3.305423, 44.06919 ], [ 3.318423, 44.07902 ], [ 3.323059, 44.07985 ], [ 3.325456, 44.077483 ], [ 3.32891, 44.07903 ], [ 3.332517, 44.074501 ], [ 3.337492, 44.05874 ], [ 3.344557, 44.054636 ], [ 3.347875, 44.052402 ], [ 3.351731, 44.05026 ], [ 3.367643, 44.058215 ], [ 3.372685, 44.05247 ], [ 3.386492, 44.055081 ], [ 3.399699, 44.044845 ], [ 3.417944, 44.040016 ], [ 3.440799, 44.02678 ], [ 3.444774, 44.024718 ], [ 3.449727, 44.023276 ], [ 3.450981, 44.022541 ], [ 3.443552, 44.00234 ], [ 3.418529, 43.992295 ], [ 3.406388, 43.97317 ], [ 3.405615, 43.969682 ], [ 3.377571, 43.96695 ], [ 3.375884, 43.956729 ], [ 3.359211, 43.95027 ], [ 3.353982, 43.940756 ], [ 3.351722, 43.937721 ], [ 3.352274, 43.93431 ], [ 3.358663, 43.91452 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "13", "CODE_DEPT": "13", "NOM_DEPT": "BOUCHES-DU-RHONE", "CODE_CHF": "055", "NOM_CHF": "MARSEILLE", "X_CHF_LIEU": "8929", "Y_CHF_LIEU": "62470", "X_CENTROID": "8686", "Y_CENTROID": "62740", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.671875, 43.17927 ], [ 5.646046, 43.18805 ], [ 5.622601, 43.185563 ], [ 5.612854, 43.178078 ], [ 5.610538, 43.167937 ], [ 5.604779, 43.16237 ], [ 5.574389, 43.172577 ], [ 5.558413, 43.185557 ], [ 5.555549, 43.188378 ], [ 5.548151, 43.196869 ], [ 5.548442, 43.206807 ], [ 5.540941, 43.210529 ], [ 5.532034, 43.211684 ], [ 5.513058, 43.20425 ], [ 5.510209, 43.198136 ], [ 5.50472, 43.200343 ], [ 5.458471, 43.210271 ], [ 5.445482, 43.20426 ], [ 5.426896, 43.20842 ], [ 5.419124, 43.20643 ], [ 5.396697, 43.21236 ], [ 5.391961, 43.2121 ], [ 5.364386, 43.20782 ], [ 5.34196, 43.21331 ], [ 5.349102, 43.229787 ], [ 5.359573, 43.236641 ], [ 5.362532, 43.24307 ], [ 5.37073, 43.246359 ], [ 5.372868, 43.259748 ], [ 5.365954, 43.2692 ], [ 5.349456, 43.28172 ], [ 5.354913, 43.291072 ], [ 5.365526, 43.2957 ], [ 5.357338, 43.32206 ], [ 5.337261, 43.341584 ], [ 5.335269, 43.34781 ], [ 5.318518, 43.35446 ], [ 5.317781, 43.357915 ], [ 5.304191, 43.360428 ], [ 5.2826, 43.353749 ], [ 5.279491, 43.351232 ], [ 5.258061, 43.33843 ], [ 5.23728, 43.33164 ], [ 5.224243, 43.328281 ], [ 5.184996, 43.33229 ], [ 5.180496, 43.33163 ], [ 5.172103, 43.332338 ], [ 5.165452, 43.327927 ], [ 5.1474, 43.32644 ], [ 5.134583, 43.329197 ], [ 5.096744, 43.32933 ], [ 5.088465, 43.332536 ], [ 5.081484, 43.32766 ], [ 5.067585, 43.33058 ], [ 5.054341, 43.32665 ], [ 5.036386, 43.330956 ], [ 5.022317, 43.34069 ], [ 5.022418, 43.35412 ], [ 5.002422, 43.37735 ], [ 4.999269, 43.380018 ], [ 4.991497, 43.388224 ], [ 4.990482, 43.394569 ], [ 4.998715, 43.39744 ], [ 4.998102, 43.40077 ], [ 4.995505, 43.403485 ], [ 4.986308, 43.404131 ], [ 4.978808, 43.39923 ], [ 4.972761, 43.42158 ], [ 4.970185, 43.4246 ], [ 4.9252, 43.4322 ], [ 4.912417, 43.42729 ], [ 4.890158, 43.409722 ], [ 4.888997, 43.416482 ], [ 4.896276, 43.42759 ], [ 4.879085, 43.424079 ], [ 4.863772, 43.43769 ], [ 4.861022, 43.448121 ], [ 4.858338, 43.45069 ], [ 4.854889, 43.44908 ], [ 4.855162, 43.44567 ], [ 4.873421, 43.41659 ], [ 4.873714, 43.413058 ], [ 4.871733, 43.409844 ], [ 4.867696, 43.407916 ], [ 4.862877, 43.40815 ], [ 4.858676, 43.409943 ], [ 4.831947, 43.425273 ], [ 4.831433, 43.419991 ], [ 4.85672, 43.40325 ], [ 4.853031, 43.398296 ], [ 4.836466, 43.40554 ], [ 4.838655, 43.402582 ], [ 4.834886, 43.39701 ], [ 4.838453, 43.39472 ], [ 4.860808, 43.38884 ], [ 4.83966, 43.375721 ], [ 4.867902, 43.36599 ], [ 4.880551, 43.358254 ], [ 4.903338, 43.37044 ], [ 4.914874, 43.381661 ], [ 4.914735, 43.37526 ], [ 4.862444, 43.338321 ], [ 4.857128, 43.32868 ], [ 4.847295, 43.326855 ], [ 4.837984, 43.327851 ], [ 4.813158, 43.33914 ], [ 4.771267, 43.34917 ], [ 4.727118, 43.350167 ], [ 4.663632, 43.3464 ], [ 4.605821, 43.353502 ], [ 4.57897, 43.362202 ], [ 4.567104, 43.36893 ], [ 4.558763, 43.37747 ], [ 4.558901, 43.384385 ], [ 4.594584, 43.402797 ], [ 4.595988, 43.40624 ], [ 4.586959, 43.426575 ], [ 4.574367, 43.437458 ], [ 4.553438, 43.446677 ], [ 4.525505, 43.45329 ], [ 4.457127, 43.455781 ], [ 4.424678, 43.448752 ], [ 4.400303, 43.447433 ], [ 4.377024, 43.45262 ], [ 4.235183, 43.46 ], [ 4.230283, 43.460185 ], [ 4.231161, 43.47754 ], [ 4.239777, 43.49373 ], [ 4.237743, 43.496884 ], [ 4.240814, 43.499405 ], [ 4.244686, 43.501268 ], [ 4.293603, 43.51404 ], [ 4.320651, 43.527823 ], [ 4.309193, 43.54657 ], [ 4.315141, 43.551871 ], [ 4.318393, 43.557168 ], [ 4.322314, 43.55171 ], [ 4.3161, 43.546749 ], [ 4.332823, 43.535935 ], [ 4.35391, 43.547408 ], [ 4.37246, 43.54968 ], [ 4.390361, 43.56087 ], [ 4.404608, 43.560523 ], [ 4.408973, 43.561934 ], [ 4.41426, 43.567552 ], [ 4.4094, 43.57628 ], [ 4.424853, 43.58448 ], [ 4.443527, 43.58321 ], [ 4.448317, 43.583184 ], [ 4.452809, 43.584573 ], [ 4.473576, 43.603651 ], [ 4.473776, 43.610442 ], [ 4.466497, 43.61496 ], [ 4.448272, 43.61034 ], [ 4.438799, 43.611406 ], [ 4.428685, 43.619063 ], [ 4.42723, 43.625822 ], [ 4.451605, 43.66423 ], [ 4.477416, 43.672921 ], [ 4.476546, 43.6868 ], [ 4.486421, 43.69885 ], [ 4.49079, 43.7004 ], [ 4.524575, 43.702501 ], [ 4.537599, 43.707052 ], [ 4.559326, 43.699444 ], [ 4.578489, 43.69707 ], [ 4.597812, 43.68675 ], [ 4.626473, 43.68803 ], [ 4.613145, 43.71419 ], [ 4.61194, 43.724724 ], [ 4.627175, 43.754252 ], [ 4.628118, 43.757712 ], [ 4.629507, 43.761121 ], [ 4.650196, 43.780935 ], [ 4.652914, 43.787725 ], [ 4.654449, 43.809007 ], [ 4.64297, 43.83211 ], [ 4.652168, 43.839752 ], [ 4.664997, 43.843842 ], [ 4.666767, 43.84698 ], [ 4.661874, 43.85234 ], [ 4.643675, 43.851852 ], [ 4.646975, 43.85803 ], [ 4.64173, 43.8673 ], [ 4.661583, 43.873589 ], [ 4.662511, 43.870388 ], [ 4.66694, 43.87636 ], [ 4.692706, 43.88459 ], [ 4.705497, 43.894488 ], [ 4.7079, 43.89741 ], [ 4.703196, 43.897035 ], [ 4.698503, 43.89664 ], [ 4.723398, 43.906052 ], [ 4.735506, 43.91651 ], [ 4.739556, 43.92111 ], [ 4.738793, 43.923866 ], [ 4.769047, 43.919914 ], [ 4.773363, 43.919349 ], [ 4.805819, 43.91469 ], [ 4.810454, 43.91401 ], [ 4.854593, 43.910762 ], [ 4.876904, 43.903135 ], [ 4.881295, 43.901502 ], [ 4.907485, 43.88644 ], [ 4.922008, 43.886759 ], [ 4.926581, 43.886165 ], [ 4.930503, 43.88437 ], [ 4.969577, 43.869707 ], [ 4.988513, 43.853538 ], [ 4.9915, 43.85072 ], [ 4.995428, 43.84671 ], [ 4.997651, 43.84485 ], [ 5.033312, 43.823213 ], [ 5.035354, 43.820141 ], [ 5.04187, 43.809388 ], [ 5.042624, 43.8065 ], [ 5.048139, 43.789727 ], [ 5.086392, 43.77385 ], [ 5.090664, 43.77211 ], [ 5.119674, 43.76046 ], [ 5.123784, 43.758753 ], [ 5.135018, 43.75427 ], [ 5.138788, 43.752797 ], [ 5.18623, 43.735651 ], [ 5.231553, 43.747623 ], [ 5.236378, 43.74747 ], [ 5.240966, 43.747322 ], [ 5.245554, 43.747137 ], [ 5.264103, 43.744232 ], [ 5.281813, 43.74057 ], [ 5.28639, 43.74014 ], [ 5.3153, 43.736566 ], [ 5.322493, 43.731786 ], [ 5.325916, 43.729237 ], [ 5.33963, 43.72034 ], [ 5.343699, 43.71877 ], [ 5.366694, 43.71054 ], [ 5.370535, 43.709189 ], [ 5.384307, 43.70314 ], [ 5.388126, 43.70219 ], [ 5.408725, 43.69483 ], [ 5.412543, 43.692971 ], [ 5.440745, 43.68049 ], [ 5.445436, 43.67997 ], [ 5.483312, 43.669205 ], [ 5.487564, 43.668037 ], [ 5.530189, 43.6593 ], [ 5.549617, 43.659802 ], [ 5.57325, 43.661955 ], [ 5.601712, 43.65927 ], [ 5.606437, 43.658725 ], [ 5.61987, 43.66532 ], [ 5.623852, 43.66615 ], [ 5.641181, 43.672138 ], [ 5.65704, 43.685392 ], [ 5.67803, 43.69278 ], [ 5.68289, 43.69271 ], [ 5.712048, 43.69057 ], [ 5.737583, 43.71653 ], [ 5.750437, 43.721561 ], [ 5.753393, 43.724431 ], [ 5.776958, 43.721365 ], [ 5.78368, 43.716628 ], [ 5.784025, 43.703032 ], [ 5.78849, 43.69687 ], [ 5.808917, 43.690561 ], [ 5.813248, 43.68905 ], [ 5.810585, 43.68611 ], [ 5.801513, 43.673879 ], [ 5.799206, 43.659929 ], [ 5.794457, 43.660708 ], [ 5.770163, 43.66047 ], [ 5.718973, 43.649838 ], [ 5.716038, 43.647021 ], [ 5.703071, 43.64365 ], [ 5.681586, 43.61212 ], [ 5.688412, 43.58486 ], [ 5.657371, 43.575665 ], [ 5.669315, 43.564641 ], [ 5.673857, 43.56434 ], [ 5.691893, 43.56324 ], [ 5.70698, 43.55605 ], [ 5.710063, 43.553963 ], [ 5.725661, 43.55112 ], [ 5.71766, 43.535326 ], [ 5.714255, 43.50126 ], [ 5.703216, 43.49531 ], [ 5.698933, 43.48206 ], [ 5.703791, 43.482307 ], [ 5.72801, 43.46589 ], [ 5.750885, 43.434851 ], [ 5.773787, 43.421763 ], [ 5.787862, 43.42041 ], [ 5.788349, 43.420263 ], [ 5.787168, 43.417053 ], [ 5.778369, 43.41001 ], [ 5.749077, 43.401409 ], [ 5.744663, 43.402827 ], [ 5.72205, 43.40867 ], [ 5.702862, 43.408127 ], [ 5.682788, 43.399166 ], [ 5.684662, 43.39593 ], [ 5.694293, 43.365413 ], [ 5.703385, 43.35724 ], [ 5.703233, 43.35373 ], [ 5.688016, 43.340887 ], [ 5.689808, 43.330924 ], [ 5.683491, 43.32184 ], [ 5.670125, 43.318864 ], [ 5.67974, 43.31885 ], [ 5.690692, 43.312629 ], [ 5.695071, 43.31374 ], [ 5.727039, 43.317488 ], [ 5.737105, 43.302067 ], [ 5.758411, 43.283964 ], [ 5.762613, 43.282444 ], [ 5.760788, 43.27032 ], [ 5.760763, 43.267225 ], [ 5.738292, 43.26193 ], [ 5.70169, 43.246946 ], [ 5.704584, 43.241447 ], [ 5.701154, 43.23892 ], [ 5.682372, 43.235304 ], [ 5.678421, 43.215161 ], [ 5.678393, 43.21163 ], [ 5.675956, 43.190643 ], [ 5.673562, 43.181963 ], [ 5.671875, 43.17927 ] ], [ [ 5.014453, 43.555546 ], [ 5.012691, 43.55223 ], [ 5.015638, 43.527614 ], [ 5.002653, 43.51278 ], [ 4.998675, 43.50258 ], [ 5.003477, 43.48536 ], [ 5.000815, 43.474933 ], [ 5.006775, 43.46972 ], [ 5.044516, 43.468394 ], [ 5.053299, 43.46035 ], [ 5.054861, 43.446338 ], [ 5.054155, 43.442832 ], [ 5.060963, 43.422544 ], [ 5.058618, 43.408774 ], [ 5.062131, 43.402417 ], [ 5.080698, 43.399793 ], [ 5.094708, 43.401539 ], [ 5.09943, 43.40206 ], [ 5.118567, 43.40424 ], [ 5.126604, 43.400251 ], [ 5.136299, 43.400421 ], [ 5.171916, 43.418639 ], [ 5.198607, 43.43959 ], [ 5.200041, 43.44639 ], [ 5.216388, 43.447159 ], [ 5.220468, 43.449163 ], [ 5.226715, 43.45385 ], [ 5.228384, 43.46026 ], [ 5.229661, 43.46675 ], [ 5.224678, 43.4756 ], [ 5.223864, 43.47884 ], [ 5.218799, 43.487224 ], [ 5.207307, 43.49185 ], [ 5.203014, 43.491128 ], [ 5.198722, 43.489451 ], [ 5.164353, 43.47001 ], [ 5.154339, 43.458 ], [ 5.14948, 43.457912 ], [ 5.125102, 43.483935 ], [ 5.113545, 43.507147 ], [ 5.117776, 43.512573 ], [ 5.117905, 43.51606 ], [ 5.114249, 43.522245 ], [ 5.105975, 43.525628 ], [ 5.062999, 43.52754 ], [ 5.04528, 43.52322 ], [ 5.02297, 43.556332 ], [ 5.018732, 43.555808 ], [ 5.014453, 43.555546 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "14", "CODE_DEPT": "14", "NOM_DEPT": "CALVADOS", "CODE_CHF": "118", "NOM_CHF": "CAEN", "X_CHF_LIEU": "4543", "Y_CHF_LIEU": "69032", "X_CENTROID": "4544", "Y_CENTROID": "68940", "CODE_REG": "25", "NOM_REGION": "BASSE-NORMANDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.412815, 48.950626 ], [ 0.400154, 48.952755 ], [ 0.404368, 48.96274 ], [ 0.377447, 48.972558 ], [ 0.374945, 48.969597 ], [ 0.356623, 48.94962 ], [ 0.333231, 48.942782 ], [ 0.329514, 48.945218 ], [ 0.319844, 48.94704 ], [ 0.308722, 48.954227 ], [ 0.304392, 48.95315 ], [ 0.282713, 48.94891 ], [ 0.278183, 48.95012 ], [ 0.276222, 48.96538 ], [ 0.271397, 48.96486 ], [ 0.257001, 48.963447 ], [ 0.244401, 48.958552 ], [ 0.242449, 48.95542 ], [ 0.2389, 48.9425 ], [ 0.224621, 48.94029 ], [ 0.222151, 48.943047 ], [ 0.214989, 48.94645 ], [ 0.187316, 48.94107 ], [ 0.184684, 48.93847 ], [ 0.179152, 48.9299 ], [ 0.170789, 48.927 ], [ 0.165756, 48.92588 ], [ 0.150868, 48.92717 ], [ 0.146026, 48.94051 ], [ 0.144625, 48.94337 ], [ 0.136288, 48.9504 ], [ 0.127608, 48.95222 ], [ 0.125316, 48.94992 ], [ 0.101453, 48.936112 ], [ 0.080723, 48.937984 ], [ 0.078168, 48.93532 ], [ 0.065764, 48.926145 ], [ 0.06374, 48.91677 ], [ 0.061767, 48.91375 ], [ 0.058007, 48.9078 ], [ 0.058093, 48.90507 ], [ 0.050136, 48.89928 ], [ 0.023808, 48.89517 ], [ -0.009861, 48.8838 ], [ -0.008969, 48.8809 ], [ -0.006177, 48.87223 ], [ -0.006654, 48.872 ], [ -0.009494, 48.87462 ], [ -0.02257, 48.876846 ], [ -0.031067, 48.873733 ], [ -0.030807, 48.869734 ], [ -0.03408, 48.86691 ], [ -0.059006, 48.853492 ], [ -0.060574, 48.85022 ], [ -0.069593, 48.842663 ], [ -0.075024, 48.84065 ], [ -0.079195, 48.84248 ], [ -0.08833, 48.84408 ], [ -0.106732, 48.83962 ], [ -0.114839, 48.840674 ], [ -0.124776, 48.847426 ], [ -0.127746, 48.83784 ], [ -0.14223, 48.83543 ], [ -0.144833, 48.83246 ], [ -0.126169, 48.81657 ], [ -0.130837, 48.817359 ], [ -0.14839, 48.822514 ], [ -0.151769, 48.82025 ], [ -0.174129, 48.82773 ], [ -0.180463, 48.83635 ], [ -0.198952, 48.84103 ], [ -0.204676, 48.846527 ], [ -0.208, 48.84447 ], [ -0.214942, 48.84073 ], [ -0.227631, 48.843263 ], [ -0.231433, 48.84476 ], [ -0.242242, 48.84928 ], [ -0.253713, 48.849514 ], [ -0.258988, 48.849901 ], [ -0.268018, 48.853183 ], [ -0.283313, 48.85239 ], [ -0.287467, 48.852722 ], [ -0.298548, 48.849159 ], [ -0.301102, 48.85222 ], [ -0.307438, 48.857707 ], [ -0.32852, 48.8576 ], [ -0.330234, 48.85474 ], [ -0.335751, 48.84632 ], [ -0.33373, 48.84351 ], [ -0.32966, 48.835523 ], [ -0.333989, 48.8335 ], [ -0.345416, 48.821833 ], [ -0.34715, 48.822514 ], [ -0.369708, 48.83553 ], [ -0.368887, 48.841806 ], [ -0.359269, 48.843661 ], [ -0.363386, 48.849126 ], [ -0.365815, 48.84871 ], [ -0.383774, 48.84698 ], [ -0.388768, 48.84807 ], [ -0.401276, 48.85894 ], [ -0.404559, 48.86157 ], [ -0.406375, 48.86827 ], [ -0.410852, 48.869961 ], [ -0.425236, 48.86646 ], [ -0.424948, 48.86976 ], [ -0.432673, 48.872694 ], [ -0.464764, 48.87099 ], [ -0.469371, 48.86803 ], [ -0.477606, 48.85936 ], [ -0.49708, 48.85578 ], [ -0.495536, 48.84904 ], [ -0.509979, 48.84597 ], [ -0.512126, 48.84849 ], [ -0.524007, 48.85031 ], [ -0.54965, 48.84627 ], [ -0.560863, 48.83431 ], [ -0.569821, 48.83052 ], [ -0.574716, 48.83111 ], [ -0.580286, 48.836553 ], [ -0.599866, 48.83492 ], [ -0.603179, 48.834514 ], [ -0.606409, 48.83389 ], [ -0.61079, 48.83198 ], [ -0.624501, 48.826973 ], [ -0.645422, 48.82722 ], [ -0.643054, 48.830407 ], [ -0.643436, 48.84095 ], [ -0.652919, 48.83846 ], [ -0.682991, 48.8423 ], [ -0.691249, 48.84623 ], [ -0.7055, 48.83679 ], [ -0.702481, 48.834216 ], [ -0.690819, 48.824385 ], [ -0.682172, 48.82183 ], [ -0.686626, 48.820049 ], [ -0.70847, 48.805706 ], [ -0.711532, 48.802766 ], [ -0.714679, 48.79987 ], [ -0.720012, 48.79936 ], [ -0.743942, 48.79192 ], [ -0.780627, 48.786651 ], [ -0.781431, 48.78347 ], [ -0.784904, 48.781185 ], [ -0.789464, 48.77964 ], [ -0.80823, 48.76011 ], [ -0.812822, 48.75846 ], [ -0.825322, 48.75249 ], [ -0.840936, 48.75223 ], [ -0.837619, 48.7549 ], [ -0.820382, 48.770574 ], [ -0.822003, 48.77224 ], [ -0.82521, 48.769537 ], [ -0.833212, 48.76516 ], [ -0.853875, 48.76388 ], [ -0.857529, 48.76153 ], [ -0.869777, 48.75643 ], [ -0.884687, 48.75712 ], [ -0.892271, 48.76549 ], [ -0.922326, 48.771356 ], [ -0.940336, 48.77857 ], [ -0.942241, 48.78178 ], [ -0.953693, 48.78832 ], [ -0.962351, 48.784613 ], [ -0.967055, 48.786087 ], [ -0.975072, 48.774519 ], [ -0.994239, 48.77715 ], [ -0.999312, 48.776852 ], [ -1.017017, 48.77285 ], [ -1.037394, 48.7828 ], [ -1.042029, 48.78283 ], [ -1.058734, 48.773351 ], [ -1.063501, 48.77507 ], [ -1.084108, 48.77931 ], [ -1.095982, 48.78666 ], [ -1.091833, 48.798734 ], [ -1.094949, 48.80162 ], [ -1.097289, 48.804671 ], [ -1.102298, 48.81427 ], [ -1.105514, 48.815457 ], [ -1.112704, 48.814984 ], [ -1.126652, 48.817358 ], [ -1.128609, 48.81711 ], [ -1.131205, 48.81992 ], [ -1.154292, 48.82314 ], [ -1.159278, 48.828538 ], [ -1.156907, 48.83489 ], [ -1.15708, 48.83637 ], [ -1.147021, 48.83563 ], [ -1.134947, 48.84645 ], [ -1.126199, 48.849 ], [ -1.121156, 48.84822 ], [ -1.120359, 48.85643 ], [ -1.101995, 48.866359 ], [ -1.09473, 48.87742 ], [ -1.09129, 48.87986 ], [ -1.0793, 48.8699 ], [ -1.069667, 48.871174 ], [ -1.064089, 48.87666 ], [ -1.059166, 48.87726 ], [ -1.057922, 48.87987 ], [ -1.05275, 48.88726 ], [ -1.050674, 48.890585 ], [ -1.049194, 48.89403 ], [ -1.021892, 48.90513 ], [ -1.013568, 48.92168 ], [ -1.02122, 48.926282 ], [ -1.052082, 48.923557 ], [ -1.066637, 48.919399 ], [ -1.071119, 48.92028 ], [ -1.075509, 48.92137 ], [ -1.07563, 48.92467 ], [ -1.065538, 48.931908 ], [ -1.064179, 48.941616 ], [ -1.071058, 48.94515 ], [ -1.055016, 48.94979 ], [ -1.058288, 48.95563 ], [ -1.056539, 48.95862 ], [ -1.052055, 48.95758 ], [ -1.044941, 48.96157 ], [ -1.031166, 48.960803 ], [ -1.027063, 48.962372 ], [ -1.020826, 48.95334 ], [ -1.010925, 48.95437 ], [ -1.001978, 48.95182 ], [ -0.997539, 48.950278 ], [ -0.994057, 48.95086 ], [ -0.990474, 48.950847 ], [ -0.986092, 48.952884 ], [ -0.954764, 48.965915 ], [ -0.944262, 48.96699 ], [ -0.941689, 48.96985 ], [ -0.915084, 48.98955 ], [ -0.909472, 48.998588 ], [ -0.908525, 49.00182 ], [ -0.905113, 49.0114 ], [ -0.901754, 49.012587 ], [ -0.8951, 49.011102 ], [ -0.885517, 49.0224 ], [ -0.867436, 49.02702 ], [ -0.862559, 49.02641 ], [ -0.862941, 49.033028 ], [ -0.870261, 49.03791 ], [ -0.885105, 49.04012 ], [ -0.891404, 49.045585 ], [ -0.880508, 49.05299 ], [ -0.876058, 49.05484 ], [ -0.875705, 49.05835 ], [ -0.870789, 49.064616 ], [ -0.869699, 49.06892 ], [ -0.869083, 49.07131 ], [ -0.870349, 49.073588 ], [ -0.870823, 49.077002 ], [ -0.880054, 49.08902 ], [ -0.878176, 49.09231 ], [ -0.877933, 49.10281 ], [ -0.877089, 49.10562 ], [ -0.877293, 49.108535 ], [ -0.878455, 49.1171 ], [ -0.88332, 49.11632 ], [ -0.893182, 49.117257 ], [ -0.924798, 49.101394 ], [ -0.922908, 49.10468 ], [ -0.914368, 49.1136 ], [ -0.904396, 49.115741 ], [ -0.888682, 49.125091 ], [ -0.89063, 49.13074 ], [ -0.895489, 49.132243 ], [ -0.900657, 49.132021 ], [ -0.905686, 49.132857 ], [ -0.903756, 49.136007 ], [ -0.907235, 49.13847 ], [ -0.937614, 49.15006 ], [ -0.931332, 49.15787 ], [ -0.936054, 49.158234 ], [ -0.958777, 49.16139 ], [ -0.956748, 49.164648 ], [ -0.947337, 49.16562 ], [ -0.937743, 49.16276 ], [ -0.92794, 49.165259 ], [ -0.912375, 49.183238 ], [ -0.910471, 49.19293 ], [ -0.887334, 49.201773 ], [ -0.901576, 49.20482 ], [ -0.920925, 49.221585 ], [ -0.924353, 49.22818 ], [ -0.920701, 49.230764 ], [ -0.925287, 49.2316 ], [ -0.931039, 49.226638 ], [ -0.932547, 49.21773 ], [ -0.937402, 49.21654 ], [ -0.959274, 49.198916 ], [ -0.97222, 49.19345 ], [ -0.987315, 49.19434 ], [ -0.988753, 49.19767 ], [ -1.008002, 49.20323 ], [ -1.023564, 49.20336 ], [ -1.024082, 49.20384 ], [ -1.036842, 49.221401 ], [ -1.047026, 49.221572 ], [ -1.053793, 49.22638 ], [ -1.058388, 49.2252 ], [ -1.062107, 49.22741 ], [ -1.074542, 49.23259 ], [ -1.087678, 49.24554 ], [ -1.092615, 49.24399 ], [ -1.095265, 49.24655 ], [ -1.095279, 49.25263 ], [ -1.104845, 49.252897 ], [ -1.112984, 49.26151 ], [ -1.133356, 49.2715 ], [ -1.128905, 49.27657 ], [ -1.12114, 49.27874 ], [ -1.127154, 49.28374 ], [ -1.131559, 49.284796 ], [ -1.136826, 49.293 ], [ -1.139452, 49.3096 ], [ -1.116762, 49.32407 ], [ -1.113308, 49.326691 ], [ -1.118898, 49.35236 ], [ -1.119623, 49.35557 ], [ -1.115399, 49.351509 ], [ -1.116896, 49.361116 ], [ -1.093408, 49.37874 ], [ -1.089835, 49.38112 ], [ -1.073854, 49.38946 ], [ -1.058433, 49.39061 ], [ -1.048768, 49.388332 ], [ -1.024409, 49.39226 ], [ -1.019456, 49.393279 ], [ -0.989825, 49.3972 ], [ -0.985018, 49.39585 ], [ -0.966293, 49.39674 ], [ -0.961539, 49.396433 ], [ -0.930502, 49.3932 ], [ -0.925348, 49.39251 ], [ -0.916462, 49.38644 ], [ -0.912785, 49.38485 ], [ -0.886364, 49.37323 ], [ -0.881651, 49.37159 ], [ -0.865136, 49.36657 ], [ -0.860979, 49.365336 ], [ -0.832263, 49.35867 ], [ -0.827289, 49.35794 ], [ -0.793764, 49.35413 ], [ -0.788978, 49.35349 ], [ -0.750794, 49.34935 ], [ -0.745725, 49.349167 ], [ -0.724522, 49.34701 ], [ -0.719149, 49.34699 ], [ -0.672752, 49.345919 ], [ -0.66755, 49.345969 ], [ -0.649337, 49.346485 ], [ -0.645149, 49.3453 ], [ -0.630396, 49.341549 ], [ -0.625153, 49.340626 ], [ -0.611433, 49.34017 ], [ -0.593496, 49.340853 ], [ -0.572645, 49.34341 ], [ -0.558218, 49.34589 ], [ -0.553247, 49.3461 ], [ -0.511079, 49.3445 ], [ -0.505871, 49.34386 ], [ -0.471589, 49.338039 ], [ -0.466605, 49.33744 ], [ -0.438399, 49.33506 ], [ -0.43362, 49.33504 ], [ -0.402614, 49.333785 ], [ -0.397515, 49.33307 ], [ -0.380078, 49.32856 ], [ -0.375835, 49.32724 ], [ -0.363549, 49.32354 ], [ -0.359523, 49.32218 ], [ -0.343029, 49.31574 ], [ -0.339703, 49.313462 ], [ -0.31365, 49.302511 ], [ -0.309229, 49.30072 ], [ -0.291954, 49.29563 ], [ -0.287498, 49.29455 ], [ -0.283353, 49.293622 ], [ -0.279146, 49.292801 ], [ -0.253851, 49.289995 ], [ -0.230361, 49.283222 ], [ -0.225694, 49.28183 ], [ -0.20626, 49.28623 ], [ -0.174875, 49.28601 ], [ -0.169663, 49.28624 ], [ -0.14424, 49.28883 ], [ -0.139239, 49.289604 ], [ -0.09254, 49.29824 ], [ -0.087169, 49.29791 ], [ -0.082723, 49.301775 ], [ -0.071092, 49.306066 ], [ -0.066155, 49.30703 ], [ -0.044973, 49.3127 ], [ -0.040899, 49.314081 ], [ -0.018065, 49.31986 ], [ -0.013498, 49.32106 ], [ 0.010636, 49.330625 ], [ 0.014308, 49.332569 ], [ 0.028093, 49.33986 ], [ 0.031425, 49.34177 ], [ 0.04982, 49.350856 ], [ 0.053299, 49.35287 ], [ 0.058294, 49.35607 ], [ 0.071983, 49.367919 ], [ 0.075406, 49.365852 ], [ 0.101641, 49.38744 ], [ 0.10539, 49.38988 ], [ 0.12787, 49.402117 ], [ 0.132337, 49.40357 ], [ 0.144745, 49.40624 ], [ 0.148789, 49.407397 ], [ 0.179885, 49.41367 ], [ 0.184686, 49.415361 ], [ 0.222823, 49.427242 ], [ 0.270271, 49.428501 ], [ 0.275543, 49.428665 ], [ 0.280583, 49.42879 ], [ 0.285603, 49.42903 ], [ 0.297224, 49.42986 ], [ 0.29781, 49.409253 ], [ 0.308366, 49.390287 ], [ 0.309068, 49.38688 ], [ 0.306587, 49.383996 ], [ 0.301714, 49.371305 ], [ 0.303456, 49.368016 ], [ 0.308051, 49.358082 ], [ 0.323662, 49.340117 ], [ 0.30706, 49.3188 ], [ 0.30424, 49.317199 ], [ 0.298154, 49.31441 ], [ 0.302649, 49.313683 ], [ 0.316021, 49.311309 ], [ 0.322439, 49.29633 ], [ 0.309988, 49.286386 ], [ 0.308998, 49.28322 ], [ 0.322277, 49.278762 ], [ 0.342181, 49.29351 ], [ 0.361083, 49.296608 ], [ 0.365656, 49.29512 ], [ 0.380112, 49.28776 ], [ 0.383554, 49.28576 ], [ 0.380626, 49.27979 ], [ 0.382787, 49.26402 ], [ 0.377722, 49.26389 ], [ 0.341482, 49.253678 ], [ 0.326531, 49.25289 ], [ 0.321521, 49.251985 ], [ 0.337503, 49.23117 ], [ 0.342009, 49.229286 ], [ 0.367048, 49.216595 ], [ 0.382813, 49.21603 ], [ 0.388402, 49.21194 ], [ 0.393648, 49.20674 ], [ 0.389366, 49.19665 ], [ 0.388119, 49.18981 ], [ 0.391913, 49.17854 ], [ 0.387636, 49.156981 ], [ 0.385822, 49.15405 ], [ 0.387361, 49.15318 ], [ 0.401342, 49.14951 ], [ 0.406567, 49.14951 ], [ 0.413143, 49.14635 ], [ 0.426698, 49.14674 ], [ 0.432367, 49.142202 ], [ 0.429977, 49.139263 ], [ 0.422719, 49.130814 ], [ 0.408273, 49.12858 ], [ 0.409704, 49.12217 ], [ 0.409399, 49.120857 ], [ 0.407959, 49.11788 ], [ 0.399783, 49.10081 ], [ 0.400959, 49.09786 ], [ 0.410106, 49.09766 ], [ 0.411408, 49.09491 ], [ 0.402183, 49.08846 ], [ 0.416455, 49.08738 ], [ 0.417885, 49.08396 ], [ 0.417277, 49.073357 ], [ 0.413397, 49.07538 ], [ 0.389902, 49.0764 ], [ 0.378878, 49.07071 ], [ 0.379166, 49.06745 ], [ 0.380383, 49.06125 ], [ 0.366966, 49.052356 ], [ 0.370827, 49.05017 ], [ 0.375069, 49.052092 ], [ 0.384959, 49.037014 ], [ 0.409538, 49.03283 ], [ 0.414601, 49.032816 ], [ 0.424546, 49.032031 ], [ 0.446052, 49.01901 ], [ 0.44418, 49.01313 ], [ 0.435081, 49.00628 ], [ 0.433737, 49.00333 ], [ 0.433439, 49.00022 ], [ 0.42676, 48.985718 ], [ 0.4256, 48.982652 ], [ 0.432448, 48.978229 ], [ 0.4322, 48.971908 ], [ 0.431508, 48.96876 ], [ 0.412815, 48.950626 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "15", "CODE_DEPT": "15", "NOM_DEPT": "CANTAL", "CODE_CHF": "014", "NOM_CHF": "AURILLAC", "X_CHF_LIEU": "6557", "Y_CHF_LIEU": "64252", "X_CENTROID": "6739", "Y_CENTROID": "64391", "CODE_REG": "83", "NOM_REGION": "AUVERGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.207475, 44.615532 ], [ 2.204864, 44.618394 ], [ 2.176555, 44.63547 ], [ 2.172326, 44.63578 ], [ 2.169419, 44.63798 ], [ 2.169541, 44.6477 ], [ 2.173735, 44.653251 ], [ 2.169023, 44.65883 ], [ 2.16601, 44.66129 ], [ 2.176251, 44.67183 ], [ 2.179152, 44.674449 ], [ 2.158546, 44.697352 ], [ 2.154666, 44.699366 ], [ 2.142949, 44.6937 ], [ 2.138291, 44.69288 ], [ 2.132873, 44.697189 ], [ 2.130064, 44.6993 ], [ 2.133279, 44.709356 ], [ 2.148087, 44.72285 ], [ 2.154692, 44.74974 ], [ 2.153492, 44.75311 ], [ 2.148908, 44.76629 ], [ 2.149147, 44.7697 ], [ 2.150975, 44.770024 ], [ 2.155249, 44.77155 ], [ 2.164663, 44.77259 ], [ 2.168506, 44.781934 ], [ 2.169882, 44.784663 ], [ 2.171633, 44.790258 ], [ 2.169115, 44.792941 ], [ 2.166053, 44.79902 ], [ 2.16629, 44.81207 ], [ 2.144397, 44.823528 ], [ 2.139801, 44.823825 ], [ 2.136778, 44.826242 ], [ 2.127673, 44.840631 ], [ 2.127146, 44.84358 ], [ 2.117213, 44.848255 ], [ 2.097414, 44.87057 ], [ 2.09351, 44.87237 ], [ 2.084512, 44.888373 ], [ 2.085432, 44.898772 ], [ 2.10811, 44.910598 ], [ 2.105115, 44.91332 ], [ 2.102335, 44.919916 ], [ 2.076351, 44.934785 ], [ 2.080703, 44.95158 ], [ 2.079176, 44.954969 ], [ 2.062914, 44.976506 ], [ 2.08473, 44.982991 ], [ 2.089121, 44.984441 ], [ 2.093554, 44.98571 ], [ 2.106208, 44.98151 ], [ 2.133293, 44.98575 ], [ 2.139895, 45.002 ], [ 2.140896, 45.005409 ], [ 2.137833, 45.008132 ], [ 2.116938, 45.02197 ], [ 2.110262, 45.03861 ], [ 2.095159, 45.056039 ], [ 2.09837, 45.059424 ], [ 2.100208, 45.062032 ], [ 2.102112, 45.06216 ], [ 2.133317, 45.08181 ], [ 2.138101, 45.08145 ], [ 2.143403, 45.08631 ], [ 2.161012, 45.085152 ], [ 2.168152, 45.081073 ], [ 2.172776, 45.08128 ], [ 2.17937, 45.09437 ], [ 2.178862, 45.10476 ], [ 2.187932, 45.11671 ], [ 2.181103, 45.133215 ], [ 2.178793, 45.1363 ], [ 2.193102, 45.13566 ], [ 2.20141, 45.13915 ], [ 2.210419, 45.147158 ], [ 2.211364, 45.160464 ], [ 2.225778, 45.16092 ], [ 2.230423, 45.161921 ], [ 2.233009, 45.16731 ], [ 2.201689, 45.18198 ], [ 2.198415, 45.19893 ], [ 2.191141, 45.203443 ], [ 2.192536, 45.21975 ], [ 2.191163, 45.223055 ], [ 2.198876, 45.22183 ], [ 2.203062, 45.22316 ], [ 2.2023, 45.226575 ], [ 2.221133, 45.23755 ], [ 2.225317, 45.24375 ], [ 2.238564, 45.24721 ], [ 2.239008, 45.26047 ], [ 2.244194, 45.266343 ], [ 2.25783, 45.26984 ], [ 2.26155, 45.279768 ], [ 2.261734, 45.28323 ], [ 2.267932, 45.287185 ], [ 2.269695, 45.28989 ], [ 2.273244, 45.28967 ], [ 2.276134, 45.288184 ], [ 2.290328, 45.288473 ], [ 2.305283, 45.30654 ], [ 2.306146, 45.310012 ], [ 2.31693, 45.321415 ], [ 2.335034, 45.326423 ], [ 2.339866, 45.32581 ], [ 2.353415, 45.32979 ], [ 2.358813, 45.335521 ], [ 2.358556, 45.338987 ], [ 2.351509, 45.347654 ], [ 2.364432, 45.35775 ], [ 2.364622, 45.37468 ], [ 2.363485, 45.3803 ], [ 2.368799, 45.386005 ], [ 2.35025, 45.409609 ], [ 2.355135, 45.415031 ], [ 2.361707, 45.414987 ], [ 2.376968, 45.41432 ], [ 2.380991, 45.41354 ], [ 2.393588, 45.40852 ], [ 2.396444, 45.402168 ], [ 2.404119, 45.39802 ], [ 2.418301, 45.397358 ], [ 2.423124, 45.396959 ], [ 2.435245, 45.39019 ], [ 2.437851, 45.387822 ], [ 2.441552, 45.384527 ], [ 2.46839, 45.38281 ], [ 2.476367, 45.371566 ], [ 2.480204, 45.36969 ], [ 2.485575, 45.37879 ], [ 2.508434, 45.38013 ], [ 2.520664, 45.38433 ], [ 2.523372, 45.381546 ], [ 2.52351, 45.38481 ], [ 2.527255, 45.390756 ], [ 2.522233, 45.402603 ], [ 2.517482, 45.40205 ], [ 2.487538, 45.41817 ], [ 2.492279, 45.42402 ], [ 2.496051, 45.44383 ], [ 2.496878, 45.44716 ], [ 2.501585, 45.451517 ], [ 2.499701, 45.460433 ], [ 2.503695, 45.461684 ], [ 2.509307, 45.472397 ], [ 2.508409, 45.478508 ], [ 2.521354, 45.482391 ], [ 2.539263, 45.47925 ], [ 2.543963, 45.478982 ], [ 2.536998, 45.463817 ], [ 2.535771, 45.457499 ], [ 2.561151, 45.464724 ], [ 2.565898, 45.46486 ], [ 2.574355, 45.45663 ], [ 2.591404, 45.45063 ], [ 2.601189, 45.45092 ], [ 2.616335, 45.464152 ], [ 2.622732, 45.464336 ], [ 2.62547, 45.44728 ], [ 2.624533, 45.4439 ], [ 2.638222, 45.44576 ], [ 2.646883, 45.443613 ], [ 2.651365, 45.442745 ], [ 2.660432, 45.434795 ], [ 2.674162, 45.438122 ], [ 2.688464, 45.437694 ], [ 2.690031, 45.43185 ], [ 2.683295, 45.42459 ], [ 2.679942, 45.422696 ], [ 2.681746, 45.409104 ], [ 2.699535, 45.39845 ], [ 2.70457, 45.389 ], [ 2.714525, 45.38147 ], [ 2.728285, 45.389776 ], [ 2.745843, 45.39262 ], [ 2.750028, 45.391286 ], [ 2.762087, 45.38649 ], [ 2.776168, 45.38685 ], [ 2.780556, 45.38563 ], [ 2.785148, 45.384578 ], [ 2.789725, 45.39052 ], [ 2.815354, 45.4004 ], [ 2.828076, 45.390757 ], [ 2.847408, 45.39209 ], [ 2.852379, 45.39234 ], [ 2.857949, 45.383046 ], [ 2.868737, 45.37611 ], [ 2.87353, 45.37537 ], [ 2.880617, 45.3831 ], [ 2.888952, 45.380965 ], [ 2.892968, 45.37924 ], [ 2.905135, 45.36955 ], [ 2.918284, 45.366943 ], [ 2.922728, 45.368108 ], [ 2.920906, 45.36484 ], [ 2.924245, 45.3511 ], [ 2.92452, 45.34642 ], [ 2.932074, 45.32993 ], [ 2.947996, 45.312565 ], [ 2.948625, 45.30913 ], [ 2.967984, 45.306882 ], [ 2.999196, 45.290733 ], [ 3.013611, 45.28828 ], [ 3.018305, 45.28707 ], [ 3.023857, 45.295538 ], [ 3.03224, 45.297796 ], [ 3.036731, 45.2982 ], [ 3.05557, 45.305297 ], [ 3.059399, 45.30683 ], [ 3.056889, 45.309826 ], [ 3.065741, 45.31774 ], [ 3.063179, 45.33137 ], [ 3.07004, 45.33624 ], [ 3.088392, 45.339727 ], [ 3.093847, 45.349087 ], [ 3.096457, 45.352038 ], [ 3.100442, 45.352503 ], [ 3.103498, 45.354373 ], [ 3.111332, 45.350341 ], [ 3.114886, 45.33385 ], [ 3.113417, 45.327089 ], [ 3.099147, 45.32809 ], [ 3.091661, 45.324264 ], [ 3.100696, 45.31613 ], [ 3.113462, 45.31141 ], [ 3.110348, 45.30483 ], [ 3.102748, 45.300608 ], [ 3.097823, 45.300874 ], [ 3.085389, 45.2967 ], [ 3.08654, 45.290033 ], [ 3.101084, 45.291119 ], [ 3.112196, 45.284752 ], [ 3.126815, 45.28538 ], [ 3.1316, 45.28612 ], [ 3.145214, 45.287838 ], [ 3.155859, 45.29477 ], [ 3.160671, 45.295417 ], [ 3.161355, 45.289176 ], [ 3.169023, 45.281502 ], [ 3.164242, 45.26911 ], [ 3.185039, 45.27633 ], [ 3.185611, 45.27957 ], [ 3.209301, 45.28122 ], [ 3.222058, 45.272143 ], [ 3.226852, 45.27194 ], [ 3.228571, 45.265161 ], [ 3.222768, 45.24561 ], [ 3.232795, 45.238535 ], [ 3.235591, 45.22139 ], [ 3.242156, 45.216482 ], [ 3.24693, 45.215598 ], [ 3.251607, 45.216083 ], [ 3.272226, 45.209461 ], [ 3.270971, 45.192257 ], [ 3.262959, 45.18379 ], [ 3.26166, 45.170039 ], [ 3.267973, 45.15406 ], [ 3.281602, 45.151613 ], [ 3.275998, 45.142686 ], [ 3.288033, 45.120424 ], [ 3.29229, 45.122169 ], [ 3.301533, 45.12399 ], [ 3.313723, 45.11814 ], [ 3.313978, 45.118139 ], [ 3.330342, 45.11118 ], [ 3.349481, 45.111425 ], [ 3.351855, 45.104835 ], [ 3.36145, 45.10419 ], [ 3.32858, 45.09484 ], [ 3.324087, 45.096032 ], [ 3.3067, 45.10134 ], [ 3.300765, 45.106552 ], [ 3.2962, 45.106438 ], [ 3.283645, 45.102752 ], [ 3.286627, 45.096765 ], [ 3.285721, 45.093607 ], [ 3.291978, 45.08925 ], [ 3.308955, 45.086117 ], [ 3.312027, 45.08086 ], [ 3.299816, 45.055123 ], [ 3.303179, 45.045129 ], [ 3.298213, 45.03565 ], [ 3.305632, 45.02683 ], [ 3.307443, 45.023625 ], [ 3.311406, 45.021768 ], [ 3.332968, 45.02692 ], [ 3.337174, 45.02535 ], [ 3.327055, 45.010081 ], [ 3.345223, 45.01283 ], [ 3.35479, 45.00222 ], [ 3.368411, 45.004793 ], [ 3.371466, 45.002189 ], [ 3.363227, 44.99016 ], [ 3.34589, 44.985264 ], [ 3.34806, 44.97511 ], [ 3.356642, 44.97219 ], [ 3.361343, 44.97141 ], [ 3.355222, 44.958259 ], [ 3.354528, 44.95482 ], [ 3.35037, 44.95503 ], [ 3.337948, 44.95591 ], [ 3.334081, 44.95385 ], [ 3.31825, 44.94601 ], [ 3.314336, 44.93979 ], [ 3.300883, 44.939367 ], [ 3.285389, 44.926254 ], [ 3.267129, 44.92959 ], [ 3.262554, 44.93524 ], [ 3.265703, 44.941663 ], [ 3.256169, 44.9416 ], [ 3.252172, 44.94078 ], [ 3.248414, 44.939506 ], [ 3.250201, 44.93658 ], [ 3.244565, 44.931717 ], [ 3.249693, 44.916238 ], [ 3.231158, 44.911119 ], [ 3.226428, 44.90998 ], [ 3.228278, 44.90695 ], [ 3.227769, 44.89707 ], [ 3.234928, 44.888584 ], [ 3.225669, 44.882094 ], [ 3.214815, 44.875003 ], [ 3.195963, 44.872084 ], [ 3.190271, 44.862524 ], [ 3.181619, 44.86469 ], [ 3.179882, 44.86781 ], [ 3.164673, 44.875178 ], [ 3.16028, 44.88447 ], [ 3.157551, 44.886641 ], [ 3.151478, 44.893933 ], [ 3.147951, 44.89634 ], [ 3.142848, 44.902282 ], [ 3.128384, 44.903578 ], [ 3.119516, 44.89154 ], [ 3.103126, 44.88463 ], [ 3.104979, 44.86626 ], [ 3.103188, 44.863215 ], [ 3.094845, 44.85548 ], [ 3.100179, 44.843924 ], [ 3.097681, 44.841558 ], [ 3.099159, 44.83291 ], [ 3.096528, 44.83334 ], [ 3.093846, 44.83312 ], [ 3.089341, 44.832787 ], [ 3.072175, 44.836266 ], [ 3.07698, 44.82428 ], [ 3.072702, 44.822751 ], [ 3.064034, 44.820236 ], [ 3.047916, 44.803903 ], [ 3.046242, 44.79729 ], [ 3.048705, 44.79461 ], [ 3.049971, 44.78188 ], [ 3.049475, 44.77862 ], [ 3.044048, 44.773528 ], [ 3.048237, 44.76432 ], [ 3.042243, 44.75938 ], [ 3.037832, 44.75809 ], [ 3.031345, 44.74964 ], [ 3.028747, 44.73319 ], [ 3.027305, 44.73022 ], [ 3.034894, 44.727048 ], [ 3.039129, 44.715001 ], [ 3.034293, 44.71554 ], [ 3.016022, 44.712531 ], [ 3.001628, 44.686838 ], [ 2.999722, 44.67654 ], [ 2.985621, 44.658235 ], [ 2.981677, 44.644686 ], [ 2.977213, 44.64471 ], [ 2.97025, 44.64826 ], [ 2.967626, 44.650498 ], [ 2.961872, 44.654466 ], [ 2.962677, 44.65787 ], [ 2.955269, 44.662188 ], [ 2.9475, 44.67433 ], [ 2.939346, 44.67758 ], [ 2.941418, 44.687228 ], [ 2.934201, 44.696226 ], [ 2.930886, 44.71303 ], [ 2.929367, 44.716201 ], [ 2.923264, 44.728648 ], [ 2.931312, 44.73721 ], [ 2.93351, 44.747201 ], [ 2.930116, 44.75357 ], [ 2.917021, 44.75743 ], [ 2.914287, 44.760278 ], [ 2.914118, 44.76372 ], [ 2.917767, 44.76596 ], [ 2.931708, 44.764522 ], [ 2.936373, 44.774086 ], [ 2.933774, 44.78065 ], [ 2.931811, 44.78372 ], [ 2.920191, 44.794314 ], [ 2.91673, 44.79205 ], [ 2.906917, 44.78545 ], [ 2.897866, 44.78511 ], [ 2.889642, 44.78833 ], [ 2.879446, 44.8031 ], [ 2.869874, 44.82958 ], [ 2.861554, 44.837958 ], [ 2.863543, 44.84742 ], [ 2.855424, 44.85473 ], [ 2.860544, 44.86764 ], [ 2.859679, 44.874465 ], [ 2.854931, 44.87431 ], [ 2.851531, 44.87189 ], [ 2.814631, 44.869447 ], [ 2.807588, 44.8741 ], [ 2.80279, 44.873829 ], [ 2.784749, 44.863216 ], [ 2.781647, 44.856971 ], [ 2.772282, 44.856403 ], [ 2.767711, 44.86593 ], [ 2.775611, 44.884879 ], [ 2.77859, 44.8875 ], [ 2.775894, 44.89026 ], [ 2.772244, 44.900025 ], [ 2.776095, 44.90964 ], [ 2.755915, 44.932151 ], [ 2.742087, 44.931975 ], [ 2.738254, 44.941222 ], [ 2.737688, 44.940366 ], [ 2.733919, 44.9384 ], [ 2.724568, 44.92734 ], [ 2.716766, 44.928835 ], [ 2.714067, 44.926073 ], [ 2.706372, 44.907091 ], [ 2.702556, 44.90531 ], [ 2.689464, 44.903768 ], [ 2.681868, 44.907348 ], [ 2.679376, 44.90442 ], [ 2.658611, 44.8858 ], [ 2.656223, 44.87242 ], [ 2.653049, 44.86977 ], [ 2.629077, 44.872259 ], [ 2.626616, 44.869226 ], [ 2.618041, 44.852972 ], [ 2.604162, 44.84309 ], [ 2.610224, 44.83402 ], [ 2.609777, 44.827284 ], [ 2.598425, 44.82077 ], [ 2.600123, 44.793667 ], [ 2.590137, 44.78628 ], [ 2.586564, 44.78399 ], [ 2.578243, 44.78595 ], [ 2.564486, 44.77809 ], [ 2.563364, 44.77124 ], [ 2.560675, 44.761043 ], [ 2.553678, 44.75742 ], [ 2.55424, 44.73915 ], [ 2.554142, 44.734 ], [ 2.552128, 44.73146 ], [ 2.549397, 44.728649 ], [ 2.55623, 44.722231 ], [ 2.5364, 44.711958 ], [ 2.520134, 44.702048 ], [ 2.518885, 44.69903 ], [ 2.516627, 44.695884 ], [ 2.500496, 44.68881 ], [ 2.489176, 44.669256 ], [ 2.489524, 44.658715 ], [ 2.484685, 44.65259 ], [ 2.476306, 44.65033 ], [ 2.471965, 44.65202 ], [ 2.469, 44.649453 ], [ 2.46804, 44.642895 ], [ 2.450108, 44.64808 ], [ 2.43565, 44.639745 ], [ 2.404766, 44.647182 ], [ 2.401279, 44.645416 ], [ 2.397134, 44.646186 ], [ 2.392671, 44.644937 ], [ 2.380878, 44.649671 ], [ 2.36529, 44.64185 ], [ 2.350984, 44.64123 ], [ 2.335043, 44.648837 ], [ 2.336617, 44.658768 ], [ 2.332221, 44.66459 ], [ 2.329813, 44.66653 ], [ 2.32413, 44.669154 ], [ 2.320317, 44.66728 ], [ 2.303361, 44.6632 ], [ 2.286189, 44.66646 ], [ 2.274461, 44.66121 ], [ 2.270054, 44.660582 ], [ 2.265206, 44.660847 ], [ 2.250539, 44.652042 ], [ 2.227115, 44.654033 ], [ 2.208414, 44.64384 ], [ 2.21762, 44.624796 ], [ 2.22057, 44.622035 ], [ 2.216622, 44.621251 ], [ 2.207475, 44.615532 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "16", "CODE_DEPT": "16", "NOM_DEPT": "CHARENTE", "CODE_CHF": "015", "NOM_CHF": "ANGOULEME", "X_CHF_LIEU": "4788", "Y_CHF_LIEU": "65095", "X_CENTROID": "4823", "Y_CENTROID": "65170", "CODE_REG": "54", "NOM_REGION": "POITOU-CHARENTES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.004331, 45.19163 ], [ 0.000904, 45.193036 ], [ -0.002088, 45.19487 ], [ -0.002278, 45.198402 ], [ 0.005866, 45.22191 ], [ 0.00552, 45.22528 ], [ -0.032667, 45.23439 ], [ -0.040024, 45.24653 ], [ -0.044303, 45.248023 ], [ -0.046963, 45.248617 ], [ -0.049742, 45.24882 ], [ -0.059209, 45.24652 ], [ -0.094084, 45.24674 ], [ -0.099096, 45.246714 ], [ -0.11678, 45.24838 ], [ -0.120405, 45.250231 ], [ -0.115897, 45.251519 ], [ -0.112659, 45.254087 ], [ -0.113189, 45.270419 ], [ -0.108813, 45.28967 ], [ -0.113065, 45.290815 ], [ -0.130151, 45.29453 ], [ -0.145277, 45.28814 ], [ -0.144128, 45.294019 ], [ -0.147598, 45.29938 ], [ -0.150957, 45.301658 ], [ -0.15495, 45.302951 ], [ -0.161743, 45.30653 ], [ -0.178206, 45.30813 ], [ -0.196091, 45.305775 ], [ -0.20153, 45.31109 ], [ -0.228747, 45.321662 ], [ -0.230372, 45.31489 ], [ -0.253443, 45.311223 ], [ -0.258721, 45.305599 ], [ -0.257518, 45.298794 ], [ -0.279476, 45.305848 ], [ -0.283259, 45.308071 ], [ -0.285976, 45.32532 ], [ -0.290604, 45.32667 ], [ -0.279205, 45.33573 ], [ -0.281552, 45.338267 ], [ -0.282663, 45.338911 ], [ -0.277954, 45.34465 ], [ -0.277971, 45.34798 ], [ -0.26401, 45.33962 ], [ -0.247589, 45.34443 ], [ -0.24624, 45.347606 ], [ -0.246806, 45.35774 ], [ -0.271086, 45.35782 ], [ -0.27956, 45.35478 ], [ -0.28184, 45.36418 ], [ -0.290502, 45.36624 ], [ -0.295243, 45.37094 ], [ -0.304287, 45.371872 ], [ -0.31064, 45.37658 ], [ -0.311177, 45.383439 ], [ -0.310175, 45.38681 ], [ -0.302391, 45.38625 ], [ -0.300815, 45.38878 ], [ -0.286344, 45.388695 ], [ -0.278488, 45.392773 ], [ -0.274911, 45.39914 ], [ -0.251398, 45.402196 ], [ -0.248783, 45.4089 ], [ -0.234062, 45.4092 ], [ -0.236733, 45.41861 ], [ -0.246383, 45.417969 ], [ -0.25311, 45.421829 ], [ -0.248543, 45.435002 ], [ -0.251133, 45.43791 ], [ -0.254367, 45.440457 ], [ -0.254553, 45.442975 ], [ -0.265884, 45.449306 ], [ -0.268345, 45.455876 ], [ -0.281544, 45.45734 ], [ -0.2862, 45.45637 ], [ -0.285496, 45.45941 ], [ -0.280903, 45.47423 ], [ -0.267112, 45.471485 ], [ -0.259003, 45.47977 ], [ -0.257562, 45.486426 ], [ -0.246605, 45.49187 ], [ -0.242494, 45.490152 ], [ -0.240519, 45.494517 ], [ -0.246426, 45.50283 ], [ -0.256087, 45.503665 ], [ -0.263732, 45.507904 ], [ -0.255279, 45.51873 ], [ -0.266152, 45.525065 ], [ -0.279222, 45.52125 ], [ -0.283505, 45.51953 ], [ -0.281752, 45.52588 ], [ -0.289545, 45.529717 ], [ -0.303622, 45.52838 ], [ -0.320025, 45.534868 ], [ -0.32169, 45.534827 ], [ -0.321515, 45.54176 ], [ -0.310036, 45.546699 ], [ -0.29671, 45.564404 ], [ -0.301074, 45.565718 ], [ -0.311483, 45.576722 ], [ -0.319819, 45.579838 ], [ -0.323535, 45.58081 ], [ -0.328844, 45.5848 ], [ -0.331766, 45.58749 ], [ -0.341299, 45.58657 ], [ -0.341491, 45.589759 ], [ -0.347009, 45.594822 ], [ -0.359929, 45.59787 ], [ -0.376402, 45.60966 ], [ -0.380534, 45.619299 ], [ -0.380963, 45.622323 ], [ -0.387305, 45.62647 ], [ -0.40152, 45.619901 ], [ -0.405745, 45.619268 ], [ -0.415129, 45.6171 ], [ -0.427868, 45.622463 ], [ -0.431924, 45.62447 ], [ -0.410956, 45.6532 ], [ -0.40893, 45.65619 ], [ -0.395831, 45.65259 ], [ -0.387149, 45.655215 ], [ -0.382382, 45.65544 ], [ -0.382107, 45.658936 ], [ -0.407527, 45.68058 ], [ -0.410541, 45.683378 ], [ -0.42292, 45.685589 ], [ -0.415391, 45.69756 ], [ -0.421203, 45.70668 ], [ -0.420351, 45.70996 ], [ -0.419215, 45.723837 ], [ -0.404318, 45.7327 ], [ -0.403448, 45.73612 ], [ -0.415839, 45.74167 ], [ -0.46001, 45.739276 ], [ -0.4614, 45.74872 ], [ -0.463078, 45.751665 ], [ -0.450041, 45.762485 ], [ -0.449334, 45.766003 ], [ -0.425751, 45.76471 ], [ -0.418248, 45.76897 ], [ -0.404889, 45.770374 ], [ -0.401995, 45.786523 ], [ -0.373964, 45.78256 ], [ -0.369865, 45.78083 ], [ -0.366069, 45.780687 ], [ -0.343578, 45.785791 ], [ -0.339171, 45.787048 ], [ -0.319825, 45.784762 ], [ -0.316008, 45.78555 ], [ -0.312175, 45.78629 ], [ -0.304142, 45.790053 ], [ -0.29716, 45.7989 ], [ -0.299231, 45.802085 ], [ -0.29179, 45.80566 ], [ -0.278449, 45.804088 ], [ -0.275034, 45.806251 ], [ -0.24803, 45.80548 ], [ -0.239973, 45.803469 ], [ -0.242466, 45.79765 ], [ -0.241098, 45.79475 ], [ -0.23656, 45.7947 ], [ -0.232843, 45.789316 ], [ -0.231112, 45.78637 ], [ -0.22408, 45.77801 ], [ -0.221465, 45.775348 ], [ -0.221083, 45.775215 ], [ -0.203343, 45.778009 ], [ -0.187634, 45.78946 ], [ -0.183333, 45.790832 ], [ -0.179858, 45.78865 ], [ -0.157669, 45.788994 ], [ -0.16236, 45.7834 ], [ -0.156058, 45.779513 ], [ -0.150287, 45.786713 ], [ -0.148323, 45.789093 ], [ -0.151193, 45.79921 ], [ -0.136099, 45.82064 ], [ -0.137086, 45.82395 ], [ -0.141039, 45.837 ], [ -0.145858, 45.837169 ], [ -0.138514, 45.84565 ], [ -0.129816, 45.84803 ], [ -0.125127, 45.848568 ], [ -0.118752, 45.864002 ], [ -0.116157, 45.866939 ], [ -0.112861, 45.869328 ], [ -0.128002, 45.87494 ], [ -0.130954, 45.89102 ], [ -0.140027, 45.890124 ], [ -0.145407, 45.894841 ], [ -0.146811, 45.897956 ], [ -0.143335, 45.901504 ], [ -0.139758, 45.90306 ], [ -0.134002, 45.911253 ], [ -0.148847, 45.918 ], [ -0.151135, 45.92662 ], [ -0.143225, 45.929 ], [ -0.140453, 45.93135 ], [ -0.127676, 45.926731 ], [ -0.108875, 45.92881 ], [ -0.104844, 45.926954 ], [ -0.095793, 45.930888 ], [ -0.096632, 45.937075 ], [ -0.088011, 45.94781 ], [ -0.086417, 45.95071 ], [ -0.09101, 45.95105 ], [ -0.094759, 45.96029 ], [ -0.10397, 45.96002 ], [ -0.102937, 45.96966 ], [ -0.066728, 45.98087 ], [ -0.062011, 45.979723 ], [ -0.054852, 45.98789 ], [ -0.05034, 45.98906 ], [ -0.04216, 45.99615 ], [ -0.051674, 46.00192 ], [ -0.045363, 46.01406 ], [ -0.04552, 46.020621 ], [ -0.031191, 46.021862 ], [ -0.022684, 46.02995 ], [ -0.036759, 46.04329 ], [ -0.038172, 46.04988 ], [ -0.039502, 46.053107 ], [ -0.030922, 46.05594 ], [ 0.00147, 46.057235 ], [ 0.004892, 46.059525 ], [ 0.015952, 46.0549 ], [ 0.019144, 46.052844 ], [ 0.037802, 46.06854 ], [ 0.052554, 46.069866 ], [ 0.061213, 46.07258 ], [ 0.052655, 46.08029 ], [ 0.068935, 46.09212 ], [ 0.072972, 46.0939 ], [ 0.092904, 46.090011 ], [ 0.096913, 46.088888 ], [ 0.099559, 46.09151 ], [ 0.094764, 46.100376 ], [ 0.093014, 46.10335 ], [ 0.096715, 46.10537 ], [ 0.10568, 46.097988 ], [ 0.11478, 46.09637 ], [ 0.119132, 46.09761 ], [ 0.131845, 46.1022 ], [ 0.135816, 46.104051 ], [ 0.164726, 46.08731 ], [ 0.167523, 46.084555 ], [ 0.173683, 46.0821 ], [ 0.177537, 46.08321 ], [ 0.192706, 46.094741 ], [ 0.197168, 46.09537 ], [ 0.223643, 46.09252 ], [ 0.22668, 46.09008 ], [ 0.232986, 46.08753 ], [ 0.234946, 46.085381 ], [ 0.242206, 46.080836 ], [ 0.256425, 46.0787 ], [ 0.273541, 46.06724 ], [ 0.276888, 46.061085 ], [ 0.291331, 46.05955 ], [ 0.31087, 46.062545 ], [ 0.314395, 46.06509 ], [ 0.322525, 46.06241 ], [ 0.340403, 46.06448 ], [ 0.345021, 46.06375 ], [ 0.349208, 46.06388 ], [ 0.35306, 46.065061 ], [ 0.381784, 46.063385 ], [ 0.389851, 46.06712 ], [ 0.398446, 46.06466 ], [ 0.402776, 46.06313 ], [ 0.41227, 46.05227 ], [ 0.413287, 46.04909 ], [ 0.446351, 46.051235 ], [ 0.466101, 46.06097 ], [ 0.471089, 46.06677 ], [ 0.480651, 46.06543 ], [ 0.478007, 46.06833 ], [ 0.474218, 46.07445 ], [ 0.475703, 46.08467 ], [ 0.466899, 46.087455 ], [ 0.447431, 46.08704 ], [ 0.445706, 46.09352 ], [ 0.448793, 46.09619 ], [ 0.443259, 46.10157 ], [ 0.446452, 46.103655 ], [ 0.451133, 46.108004 ], [ 0.455705, 46.1069 ], [ 0.46296, 46.11136 ], [ 0.47028, 46.12707 ], [ 0.472303, 46.130136 ], [ 0.486249, 46.12808 ], [ 0.495224, 46.135284 ], [ 0.504155, 46.13298 ], [ 0.508685, 46.13194 ], [ 0.504334, 46.11933 ], [ 0.521014, 46.11261 ], [ 0.536932, 46.095619 ], [ 0.538878, 46.088904 ], [ 0.539973, 46.085558 ], [ 0.553329, 46.09004 ], [ 0.563209, 46.08915 ], [ 0.574107, 46.07813 ], [ 0.590854, 46.08116 ], [ 0.594834, 46.075725 ], [ 0.59568, 46.07266 ], [ 0.607353, 46.07778 ], [ 0.607706, 46.08661 ], [ 0.608968, 46.08974 ], [ 0.613616, 46.08856 ], [ 0.620563, 46.093178 ], [ 0.640102, 46.09169 ], [ 0.648819, 46.094659 ], [ 0.682508, 46.097208 ], [ 0.687453, 46.097255 ], [ 0.676447, 46.11253 ], [ 0.685596, 46.12073 ], [ 0.707183, 46.129 ], [ 0.710923, 46.135026 ], [ 0.711895, 46.13842 ], [ 0.712339, 46.13896 ], [ 0.725123, 46.136321 ], [ 0.729218, 46.135069 ], [ 0.747883, 46.13872 ], [ 0.78519, 46.13106 ], [ 0.80827, 46.136812 ], [ 0.820243, 46.131277 ], [ 0.823433, 46.12859 ], [ 0.818813, 46.12717 ], [ 0.811893, 46.12297 ], [ 0.832307, 46.10434 ], [ 0.832253, 46.09391 ], [ 0.827141, 46.088278 ], [ 0.827127, 46.086025 ], [ 0.819171, 46.0774 ], [ 0.826105, 46.065061 ], [ 0.816632, 46.057565 ], [ 0.817909, 46.04789 ], [ 0.821993, 46.04636 ], [ 0.845226, 46.0365 ], [ 0.849302, 46.03449 ], [ 0.856265, 46.02972 ], [ 0.858456, 46.019618 ], [ 0.866517, 46.01648 ], [ 0.886192, 46.03173 ], [ 0.894327, 46.025632 ], [ 0.894052, 46.022699 ], [ 0.905615, 46.0182 ], [ 0.909946, 46.017543 ], [ 0.923782, 46.008258 ], [ 0.919886, 46.00223 ], [ 0.921525, 45.99615 ], [ 0.934675, 45.99221 ], [ 0.934634, 45.976415 ], [ 0.943377, 45.97307 ], [ 0.940886, 45.95921 ], [ 0.92468, 45.951209 ], [ 0.922516, 45.94594 ], [ 0.92049, 45.94352 ], [ 0.920972, 45.937917 ], [ 0.916094, 45.93717 ], [ 0.906305, 45.93793 ], [ 0.884652, 45.923831 ], [ 0.861148, 45.919803 ], [ 0.847972, 45.92405 ], [ 0.838047, 45.92336 ], [ 0.821962, 45.93157 ], [ 0.812111, 45.93127 ], [ 0.809969, 45.92832 ], [ 0.809017, 45.921742 ], [ 0.815983, 45.917292 ], [ 0.81354, 45.896886 ], [ 0.827373, 45.882748 ], [ 0.823749, 45.88079 ], [ 0.8075, 45.870023 ], [ 0.810678, 45.868238 ], [ 0.818405, 45.869162 ], [ 0.82098, 45.86696 ], [ 0.818349, 45.864053 ], [ 0.795978, 45.82984 ], [ 0.782118, 45.820404 ], [ 0.780808, 45.81709 ], [ 0.783826, 45.810583 ], [ 0.776974, 45.80224 ], [ 0.783779, 45.793475 ], [ 0.770227, 45.788478 ], [ 0.768055, 45.791552 ], [ 0.762003, 45.79694 ], [ 0.752389, 45.797106 ], [ 0.7426, 45.804378 ], [ 0.718721, 45.80558 ], [ 0.710515, 45.8022 ], [ 0.70749, 45.77825 ], [ 0.714765, 45.76922 ], [ 0.711682, 45.76286 ], [ 0.707649, 45.761712 ], [ 0.695379, 45.76212 ], [ 0.691144, 45.76091 ], [ 0.666235, 45.748196 ], [ 0.666527, 45.745238 ], [ 0.665281, 45.739401 ], [ 0.660713, 45.73941 ], [ 0.652867, 45.73938 ], [ 0.647616, 45.730638 ], [ 0.650416, 45.72802 ], [ 0.64553, 45.71892 ], [ 0.633501, 45.7205 ], [ 0.629742, 45.71457 ], [ 0.627671, 45.708 ], [ 0.613217, 45.69402 ], [ 0.605006, 45.694218 ], [ 0.602126, 45.68177 ], [ 0.596594, 45.67687 ], [ 0.600389, 45.671733 ], [ 0.58746, 45.66794 ], [ 0.587634, 45.66129 ], [ 0.567032, 45.65326 ], [ 0.573663, 45.644124 ], [ 0.575447, 45.640928 ], [ 0.564535, 45.6344 ], [ 0.550448, 45.6341 ], [ 0.538448, 45.628737 ], [ 0.537079, 45.631509 ], [ 0.535418, 45.64286 ], [ 0.525833, 45.641785 ], [ 0.512657, 45.63146 ], [ 0.508422, 45.6214 ], [ 0.500403, 45.619564 ], [ 0.501441, 45.615353 ], [ 0.503838, 45.61257 ], [ 0.513312, 45.60543 ], [ 0.516143, 45.599246 ], [ 0.512189, 45.59385 ], [ 0.516324, 45.58806 ], [ 0.498576, 45.56478 ], [ 0.50227, 45.562802 ], [ 0.506549, 45.55434 ], [ 0.499202, 45.545788 ], [ 0.48327, 45.538891 ], [ 0.473715, 45.538407 ], [ 0.46967, 45.53884 ], [ 0.465737, 45.539623 ], [ 0.464307, 45.53359 ], [ 0.457779, 45.52556 ], [ 0.449305, 45.52392 ], [ 0.450893, 45.51865 ], [ 0.446105, 45.514637 ], [ 0.443656, 45.51188 ], [ 0.432763, 45.50165 ], [ 0.431738, 45.485596 ], [ 0.426875, 45.485782 ], [ 0.422921, 45.483781 ], [ 0.419259, 45.48595 ], [ 0.408356, 45.49178 ], [ 0.378384, 45.484128 ], [ 0.378867, 45.480671 ], [ 0.372947, 45.475865 ], [ 0.363133, 45.47515 ], [ 0.356707, 45.46622 ], [ 0.334668, 45.46014 ], [ 0.334363, 45.459819 ], [ 0.333389, 45.45318 ], [ 0.329155, 45.44378 ], [ 0.310781, 45.45876 ], [ 0.302619, 45.45889 ], [ 0.303213, 45.44559 ], [ 0.316234, 45.43598 ], [ 0.303543, 45.43194 ], [ 0.298855, 45.43229 ], [ 0.289959, 45.432617 ], [ 0.278402, 45.42716 ], [ 0.27086, 45.41893 ], [ 0.27155, 45.41608 ], [ 0.267624, 45.40798 ], [ 0.265268, 45.40543 ], [ 0.262875, 45.39686 ], [ 0.253457, 45.380939 ], [ 0.249431, 45.36359 ], [ 0.250217, 45.360614 ], [ 0.256966, 45.353067 ], [ 0.258533, 45.350051 ], [ 0.264588, 45.334748 ], [ 0.264905, 45.33453 ], [ 0.270634, 45.314605 ], [ 0.266609, 45.297749 ], [ 0.262719, 45.29587 ], [ 0.252621, 45.2894 ], [ 0.249597, 45.28859 ], [ 0.246868, 45.28984 ], [ 0.243136, 45.29175 ], [ 0.220912, 45.29022 ], [ 0.220092, 45.287223 ], [ 0.210596, 45.2742 ], [ 0.210296, 45.271274 ], [ 0.204416, 45.263604 ], [ 0.200767, 45.261828 ], [ 0.174862, 45.261437 ], [ 0.176696, 45.25596 ], [ 0.172293, 45.25171 ], [ 0.171342, 45.248329 ], [ 0.174738, 45.23921 ], [ 0.157828, 45.22645 ], [ 0.148209, 45.22456 ], [ 0.145486, 45.214487 ], [ 0.140998, 45.214751 ], [ 0.132319, 45.209 ], [ 0.115844, 45.213572 ], [ 0.114272, 45.214622 ], [ 0.111422, 45.21698 ], [ 0.100037, 45.22607 ], [ 0.092006, 45.227515 ], [ 0.0884, 45.22526 ], [ 0.076064, 45.22027 ], [ 0.066433, 45.22062 ], [ 0.055582, 45.227164 ], [ 0.051213, 45.22538 ], [ 0.036594, 45.211353 ], [ 0.033859, 45.20837 ], [ 0.010324, 45.202732 ], [ 0.004331, 45.19163 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "17", "CODE_DEPT": "17", "NOM_DEPT": "CHARENTE-MARITIME", "CODE_CHF": "300", "NOM_CHF": "LA ROCHELLE", "X_CHF_LIEU": "3797", "Y_CHF_LIEU": "65705", "X_CENTROID": "4165", "Y_CENTROID": "65256", "CODE_REG": "54", "NOM_REGION": "POITOU-CHARENTES" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.0402, 45.10238 ], [ -0.046095, 45.09778 ], [ -0.05373, 45.10109 ], [ -0.057088, 45.098976 ], [ -0.061772, 45.098766 ], [ -0.087832, 45.12143 ], [ -0.092825, 45.121022 ], [ -0.110974, 45.115524 ], [ -0.143512, 45.090354 ], [ -0.15327, 45.08924 ], [ -0.161926, 45.09249 ], [ -0.166877, 45.092747 ], [ -0.191442, 45.09475 ], [ -0.209721, 45.100235 ], [ -0.212445, 45.102238 ], [ -0.221237, 45.10776 ], [ -0.245672, 45.108214 ], [ -0.256783, 45.114793 ], [ -0.273944, 45.134855 ], [ -0.275713, 45.141571 ], [ -0.279962, 45.143248 ], [ -0.307551, 45.149589 ], [ -0.309374, 45.146624 ], [ -0.31363, 45.13765 ], [ -0.316676, 45.140486 ], [ -0.323322, 45.157159 ], [ -0.338768, 45.16624 ], [ -0.362959, 45.170237 ], [ -0.366174, 45.167563 ], [ -0.378517, 45.15678 ], [ -0.383396, 45.143339 ], [ -0.385058, 45.146596 ], [ -0.399471, 45.179378 ], [ -0.40061, 45.182813 ], [ -0.402585, 45.189701 ], [ -0.417435, 45.20388 ], [ -0.419461, 45.206985 ], [ -0.413187, 45.22321 ], [ -0.413635, 45.226568 ], [ -0.406009, 45.238707 ], [ -0.409905, 45.24797 ], [ -0.424028, 45.24856 ], [ -0.41912, 45.261324 ], [ -0.4177, 45.264387 ], [ -0.418508, 45.27361 ], [ -0.433463, 45.28057 ], [ -0.437376, 45.282116 ], [ -0.457654, 45.288358 ], [ -0.462073, 45.28858 ], [ -0.472986, 45.293633 ], [ -0.48602, 45.293579 ], [ -0.490146, 45.291558 ], [ -0.513854, 45.286227 ], [ -0.516876, 45.288782 ], [ -0.548704, 45.293121 ], [ -0.55176, 45.295188 ], [ -0.567662, 45.29742 ], [ -0.570631, 45.30029 ], [ -0.573867, 45.310717 ], [ -0.573978, 45.31424 ], [ -0.568974, 45.331235 ], [ -0.572742, 45.33321 ], [ -0.585303, 45.342899 ], [ -0.594006, 45.331596 ], [ -0.594481, 45.321143 ], [ -0.599195, 45.32134 ], [ -0.607635, 45.324009 ], [ -0.633594, 45.31845 ], [ -0.642088, 45.3151 ], [ -0.650712, 45.3225 ], [ -0.708651, 45.32736 ], [ -0.714861, 45.32774 ], [ -0.716938, 45.33071 ], [ -0.724076, 45.35964 ], [ -0.729237, 45.36548 ], [ -0.741211, 45.39997 ], [ -0.743523, 45.40314 ], [ -0.752889, 45.41903 ], [ -0.753174, 45.422492 ], [ -0.763293, 45.434864 ], [ -0.76517, 45.43819 ], [ -0.771376, 45.446429 ], [ -0.778117, 45.449123 ], [ -0.781005, 45.451477 ], [ -0.787938, 45.45886 ], [ -0.790209, 45.461344 ], [ -0.799701, 45.475384 ], [ -0.808194, 45.472905 ], [ -0.813776, 45.47787 ], [ -0.816628, 45.480588 ], [ -0.823902, 45.48498 ], [ -0.823396, 45.493826 ], [ -0.85598, 45.513555 ], [ -0.876996, 45.51959 ], [ -0.887568, 45.52972 ], [ -0.891777, 45.53121 ], [ -0.899999, 45.530281 ], [ -0.903157, 45.534508 ], [ -0.908587, 45.534563 ], [ -0.91008, 45.535719 ], [ -0.906524, 45.53733 ], [ -0.908429, 45.54124 ], [ -0.91943, 45.55148 ], [ -0.926173, 45.554099 ], [ -0.929503, 45.556183 ], [ -0.938914, 45.556782 ], [ -0.946689, 45.55278 ], [ -0.956022, 45.55463 ], [ -0.967805, 45.56075 ], [ -0.981794, 45.573771 ], [ -0.983941, 45.57686 ], [ -0.990987, 45.579666 ], [ -0.99338, 45.596306 ], [ -1.013377, 45.60232 ], [ -1.009004, 45.60845 ], [ -1.009853, 45.611841 ], [ -1.022532, 45.622081 ], [ -1.040153, 45.618438 ], [ -1.048942, 45.621431 ], [ -1.053223, 45.6276 ], [ -1.057392, 45.626104 ], [ -1.075481, 45.636333 ], [ -1.078309, 45.63894 ], [ -1.082681, 45.6374 ], [ -1.113411, 45.646863 ], [ -1.143769, 45.66409 ], [ -1.14751, 45.666306 ], [ -1.209737, 45.695592 ], [ -1.219659, 45.695428 ], [ -1.227427, 45.6915 ], [ -1.22407, 45.681592 ], [ -1.213619, 45.67409 ], [ -1.219205, 45.672288 ], [ -1.227098, 45.67643 ], [ -1.234387, 45.68947 ], [ -1.235614, 45.69289 ], [ -1.242501, 45.764188 ], [ -1.241024, 45.78555 ], [ -1.232756, 45.789516 ], [ -1.207768, 45.792976 ], [ -1.188226, 45.790096 ], [ -1.157027, 45.801837 ], [ -1.143483, 45.797105 ], [ -1.139181, 45.79904 ], [ -1.132893, 45.803905 ], [ -1.137218, 45.819978 ], [ -1.139535, 45.822841 ], [ -1.149585, 45.830416 ], [ -1.156657, 45.8433 ], [ -1.16516, 45.846723 ], [ -1.16754, 45.853462 ], [ -1.153927, 45.85553 ], [ -1.14988, 45.86125 ], [ -1.120516, 45.85778 ], [ -1.110124, 45.864999 ], [ -1.106044, 45.86706 ], [ -1.099657, 45.87577 ], [ -1.098081, 45.87887 ], [ -1.098398, 45.882269 ], [ -1.084309, 45.89616 ], [ -1.081211, 45.898788 ], [ -1.073835, 45.9157 ], [ -1.074485, 45.92641 ], [ -1.077072, 45.936565 ], [ -1.098732, 45.94437 ], [ -1.092267, 45.949046 ], [ -1.067544, 45.94981 ], [ -1.064622, 45.952603 ], [ -1.078918, 45.961827 ], [ -1.08567, 45.97892 ], [ -1.116244, 46.001557 ], [ -1.113389, 46.00265 ], [ -1.092284, 45.99343 ], [ -1.062098, 45.99547 ], [ -1.055018, 46.000512 ], [ -1.053077, 46.00384 ], [ -1.052828, 46.010815 ], [ -1.06046, 46.023562 ], [ -1.056336, 46.033277 ], [ -1.060713, 46.043273 ], [ -1.065616, 46.049337 ], [ -1.079505, 46.05326 ], [ -1.08452, 46.05314 ], [ -1.089027, 46.0547 ], [ -1.100078, 46.092224 ], [ -1.103187, 46.09498 ], [ -1.114447, 46.101505 ], [ -1.128938, 46.102358 ], [ -1.140676, 46.10794 ], [ -1.12698, 46.1108 ], [ -1.123776, 46.11336 ], [ -1.129537, 46.12634 ], [ -1.148273, 46.12937 ], [ -1.149106, 46.13284 ], [ -1.156641, 46.137281 ], [ -1.17131, 46.139141 ], [ -1.163215, 46.15348 ], [ -1.183144, 46.152791 ], [ -1.201251, 46.147289 ], [ -1.206485, 46.14685 ], [ -1.216389, 46.14809 ], [ -1.226292, 46.150327 ], [ -1.234616, 46.15411 ], [ -1.238466, 46.156573 ], [ -1.239589, 46.16304 ], [ -1.221787, 46.168999 ], [ -1.215858, 46.18219 ], [ -1.203549, 46.187756 ], [ -1.201245, 46.190889 ], [ -1.202341, 46.201796 ], [ -1.20638, 46.203657 ], [ -1.199724, 46.212551 ], [ -1.184514, 46.22071 ], [ -1.175152, 46.22215 ], [ -1.171154, 46.224064 ], [ -1.149222, 46.238104 ], [ -1.146553, 46.241123 ], [ -1.138927, 46.25388 ], [ -1.111345, 46.261157 ], [ -1.126917, 46.30732 ], [ -1.129404, 46.310277 ], [ -1.123946, 46.31469 ], [ -1.121791, 46.3232 ], [ -1.117434, 46.32324 ], [ -1.1141, 46.316999 ], [ -1.095328, 46.31378 ], [ -1.078144, 46.319257 ], [ -1.080064, 46.322326 ], [ -1.073337, 46.326877 ], [ -1.055237, 46.346413 ], [ -1.053688, 46.349578 ], [ -1.05072, 46.34326 ], [ -1.017639, 46.35301 ], [ -0.978339, 46.3512 ], [ -0.966979, 46.362233 ], [ -0.964513, 46.3654 ], [ -0.951491, 46.361103 ], [ -0.927338, 46.370935 ], [ -0.932977, 46.362969 ], [ -0.93423, 46.360113 ], [ -0.93546, 46.356762 ], [ -0.943732, 46.336965 ], [ -0.958784, 46.32337 ], [ -0.933937, 46.31264 ], [ -0.915043, 46.31553 ], [ -0.912086, 46.312749 ], [ -0.895424, 46.31685 ], [ -0.88904, 46.32386 ], [ -0.886848, 46.326704 ], [ -0.870267, 46.322455 ], [ -0.86853, 46.325489 ], [ -0.860811, 46.32547 ], [ -0.863019, 46.31914 ], [ -0.848986, 46.31833 ], [ -0.8449, 46.324612 ], [ -0.846813, 46.33422 ], [ -0.836394, 46.34136 ], [ -0.828389, 46.339133 ], [ -0.82541, 46.336366 ], [ -0.81117, 46.338043 ], [ -0.803746, 46.34246 ], [ -0.797727, 46.33845 ], [ -0.807126, 46.331371 ], [ -0.802811, 46.32529 ], [ -0.792868, 46.32433 ], [ -0.780848, 46.31836 ], [ -0.775833, 46.318467 ], [ -0.753457, 46.306946 ], [ -0.750476, 46.304259 ], [ -0.754669, 46.302444 ], [ -0.745248, 46.27959 ], [ -0.742668, 46.27666 ], [ -0.736065, 46.267727 ], [ -0.754364, 46.251582 ], [ -0.751462, 46.24507 ], [ -0.74701, 46.24324 ], [ -0.702818, 46.22456 ], [ -0.69905, 46.22262 ], [ -0.686332, 46.213702 ], [ -0.686375, 46.20719 ], [ -0.682412, 46.19769 ], [ -0.695072, 46.195992 ], [ -0.696475, 46.192738 ], [ -0.688524, 46.18223 ], [ -0.664928, 46.18181 ], [ -0.65539, 46.169953 ], [ -0.651379, 46.16837 ], [ -0.643554, 46.16502 ], [ -0.634622, 46.16572 ], [ -0.622797, 46.16092 ], [ -0.613016, 46.16152 ], [ -0.604641, 46.158432 ], [ -0.603764, 46.15516 ], [ -0.626849, 46.15216 ], [ -0.628183, 46.143701 ], [ -0.615966, 46.13838 ], [ -0.602388, 46.14251 ], [ -0.583081, 46.13956 ], [ -0.582225, 46.142537 ], [ -0.57933, 46.14826 ], [ -0.566285, 46.143301 ], [ -0.546856, 46.143864 ], [ -0.538043, 46.14072 ], [ -0.533284, 46.139718 ], [ -0.531324, 46.13667 ], [ -0.526793, 46.135557 ], [ -0.526724, 46.132269 ], [ -0.520492, 46.1283 ], [ -0.511059, 46.12817 ], [ -0.514345, 46.12583 ], [ -0.518414, 46.124198 ], [ -0.509761, 46.116795 ], [ -0.516389, 46.112417 ], [ -0.511963, 46.11131 ], [ -0.505467, 46.10719 ], [ -0.491715, 46.10798 ], [ -0.473602, 46.104757 ], [ -0.450867, 46.101981 ], [ -0.443727, 46.097637 ], [ -0.441444, 46.094705 ], [ -0.439449, 46.1036 ], [ -0.425235, 46.1117 ], [ -0.421226, 46.1133 ], [ -0.421421, 46.09334 ], [ -0.405371, 46.086257 ], [ -0.401451, 46.084248 ], [ -0.38644, 46.096874 ], [ -0.37348, 46.09406 ], [ -0.361875, 46.084166 ], [ -0.364418, 46.07853 ], [ -0.362733, 46.075551 ], [ -0.331541, 46.08246 ], [ -0.327183, 46.0813 ], [ -0.308001, 46.078279 ], [ -0.296411, 46.0839 ], [ -0.293282, 46.086593 ], [ -0.288816, 46.085118 ], [ -0.274533, 46.067579 ], [ -0.273131, 46.05731 ], [ -0.2686, 46.056439 ], [ -0.233049, 46.048464 ], [ -0.229108, 46.04792 ], [ -0.210661, 46.045432 ], [ -0.193898, 46.05117 ], [ -0.190974, 46.04361 ], [ -0.189839, 46.02964 ], [ -0.189132, 46.02614 ], [ -0.164509, 46.03576 ], [ -0.168185, 46.026801 ], [ -0.16345, 46.02232 ], [ -0.162963, 46.01902 ], [ -0.164194, 46.012763 ], [ -0.158305, 46.0082 ], [ -0.158512, 46.00504 ], [ -0.144795, 46.00467 ], [ -0.136825, 45.98918 ], [ -0.132598, 45.987606 ], [ -0.135611, 45.978538 ], [ -0.117338, 45.97749 ], [ -0.107459, 45.97055 ], [ -0.102937, 45.96966 ], [ -0.10397, 45.96002 ], [ -0.094759, 45.96029 ], [ -0.09101, 45.95105 ], [ -0.086417, 45.95071 ], [ -0.088011, 45.94781 ], [ -0.096632, 45.937075 ], [ -0.095793, 45.930888 ], [ -0.104844, 45.926954 ], [ -0.108875, 45.92881 ], [ -0.127676, 45.926731 ], [ -0.140453, 45.93135 ], [ -0.143225, 45.929 ], [ -0.151135, 45.92662 ], [ -0.148847, 45.918 ], [ -0.134002, 45.911253 ], [ -0.139758, 45.90306 ], [ -0.143335, 45.901504 ], [ -0.146811, 45.897956 ], [ -0.145407, 45.894841 ], [ -0.140027, 45.890124 ], [ -0.130954, 45.89102 ], [ -0.128002, 45.87494 ], [ -0.112861, 45.869328 ], [ -0.116157, 45.866939 ], [ -0.118752, 45.864002 ], [ -0.125127, 45.848568 ], [ -0.129816, 45.84803 ], [ -0.138514, 45.84565 ], [ -0.145858, 45.837169 ], [ -0.141039, 45.837 ], [ -0.137086, 45.82395 ], [ -0.136099, 45.82064 ], [ -0.151193, 45.79921 ], [ -0.148323, 45.789093 ], [ -0.150287, 45.786713 ], [ -0.156058, 45.779513 ], [ -0.16236, 45.7834 ], [ -0.157669, 45.788994 ], [ -0.179858, 45.78865 ], [ -0.183333, 45.790832 ], [ -0.187634, 45.78946 ], [ -0.203343, 45.778009 ], [ -0.221083, 45.775215 ], [ -0.221465, 45.775348 ], [ -0.22408, 45.77801 ], [ -0.231112, 45.78637 ], [ -0.232843, 45.789316 ], [ -0.23656, 45.7947 ], [ -0.241098, 45.79475 ], [ -0.242466, 45.79765 ], [ -0.239973, 45.803469 ], [ -0.24803, 45.80548 ], [ -0.275034, 45.806251 ], [ -0.278449, 45.804088 ], [ -0.29179, 45.80566 ], [ -0.299231, 45.802085 ], [ -0.29716, 45.7989 ], [ -0.304142, 45.790053 ], [ -0.312175, 45.78629 ], [ -0.316008, 45.78555 ], [ -0.319825, 45.784762 ], [ -0.339171, 45.787048 ], [ -0.343578, 45.785791 ], [ -0.366069, 45.780687 ], [ -0.369865, 45.78083 ], [ -0.373964, 45.78256 ], [ -0.401995, 45.786523 ], [ -0.404889, 45.770374 ], [ -0.418248, 45.76897 ], [ -0.425751, 45.76471 ], [ -0.449334, 45.766003 ], [ -0.450041, 45.762485 ], [ -0.463078, 45.751665 ], [ -0.4614, 45.74872 ], [ -0.46001, 45.739276 ], [ -0.415839, 45.74167 ], [ -0.403448, 45.73612 ], [ -0.404318, 45.7327 ], [ -0.419215, 45.723837 ], [ -0.420351, 45.70996 ], [ -0.421203, 45.70668 ], [ -0.415391, 45.69756 ], [ -0.42292, 45.685589 ], [ -0.410541, 45.683378 ], [ -0.407527, 45.68058 ], [ -0.382107, 45.658936 ], [ -0.382382, 45.65544 ], [ -0.387149, 45.655215 ], [ -0.395831, 45.65259 ], [ -0.40893, 45.65619 ], [ -0.410956, 45.6532 ], [ -0.431924, 45.62447 ], [ -0.427868, 45.622463 ], [ -0.415129, 45.6171 ], [ -0.405745, 45.619268 ], [ -0.40152, 45.619901 ], [ -0.387305, 45.62647 ], [ -0.380963, 45.622323 ], [ -0.380534, 45.619299 ], [ -0.376402, 45.60966 ], [ -0.359929, 45.59787 ], [ -0.347009, 45.594822 ], [ -0.341491, 45.589759 ], [ -0.341299, 45.58657 ], [ -0.331766, 45.58749 ], [ -0.328844, 45.5848 ], [ -0.323535, 45.58081 ], [ -0.319819, 45.579838 ], [ -0.311483, 45.576722 ], [ -0.301074, 45.565718 ], [ -0.29671, 45.564404 ], [ -0.310036, 45.546699 ], [ -0.321515, 45.54176 ], [ -0.32169, 45.534827 ], [ -0.320025, 45.534868 ], [ -0.303622, 45.52838 ], [ -0.289545, 45.529717 ], [ -0.281752, 45.52588 ], [ -0.283505, 45.51953 ], [ -0.279222, 45.52125 ], [ -0.266152, 45.525065 ], [ -0.255279, 45.51873 ], [ -0.263732, 45.507904 ], [ -0.256087, 45.503665 ], [ -0.246426, 45.50283 ], [ -0.240519, 45.494517 ], [ -0.242494, 45.490152 ], [ -0.246605, 45.49187 ], [ -0.257562, 45.486426 ], [ -0.259003, 45.47977 ], [ -0.267112, 45.471485 ], [ -0.280903, 45.47423 ], [ -0.285496, 45.45941 ], [ -0.2862, 45.45637 ], [ -0.281544, 45.45734 ], [ -0.268345, 45.455876 ], [ -0.265884, 45.449306 ], [ -0.254553, 45.442975 ], [ -0.254367, 45.440457 ], [ -0.251133, 45.43791 ], [ -0.248543, 45.435002 ], [ -0.25311, 45.421829 ], [ -0.246383, 45.417969 ], [ -0.236733, 45.41861 ], [ -0.234062, 45.4092 ], [ -0.248783, 45.4089 ], [ -0.251398, 45.402196 ], [ -0.274911, 45.39914 ], [ -0.278488, 45.392773 ], [ -0.286344, 45.388695 ], [ -0.300815, 45.38878 ], [ -0.302391, 45.38625 ], [ -0.310175, 45.38681 ], [ -0.311177, 45.383439 ], [ -0.31064, 45.37658 ], [ -0.304287, 45.371872 ], [ -0.295243, 45.37094 ], [ -0.290502, 45.36624 ], [ -0.28184, 45.36418 ], [ -0.27956, 45.35478 ], [ -0.271086, 45.35782 ], [ -0.246806, 45.35774 ], [ -0.24624, 45.347606 ], [ -0.247589, 45.34443 ], [ -0.26401, 45.33962 ], [ -0.277971, 45.34798 ], [ -0.277954, 45.34465 ], [ -0.282663, 45.338911 ], [ -0.281552, 45.338267 ], [ -0.279205, 45.33573 ], [ -0.290604, 45.32667 ], [ -0.285976, 45.32532 ], [ -0.283259, 45.308071 ], [ -0.279476, 45.305848 ], [ -0.257518, 45.298794 ], [ -0.258721, 45.305599 ], [ -0.253443, 45.311223 ], [ -0.230372, 45.31489 ], [ -0.228747, 45.321662 ], [ -0.20153, 45.31109 ], [ -0.196091, 45.305775 ], [ -0.178206, 45.30813 ], [ -0.161743, 45.30653 ], [ -0.15495, 45.302951 ], [ -0.150957, 45.301658 ], [ -0.147598, 45.29938 ], [ -0.144128, 45.294019 ], [ -0.145277, 45.28814 ], [ -0.130151, 45.29453 ], [ -0.113065, 45.290815 ], [ -0.108813, 45.28967 ], [ -0.113189, 45.270419 ], [ -0.112659, 45.254087 ], [ -0.115897, 45.251519 ], [ -0.120405, 45.250231 ], [ -0.11678, 45.24838 ], [ -0.099096, 45.246714 ], [ -0.094084, 45.24674 ], [ -0.059209, 45.24652 ], [ -0.049742, 45.24882 ], [ -0.046963, 45.248617 ], [ -0.044303, 45.248023 ], [ -0.040024, 45.24653 ], [ -0.032667, 45.23439 ], [ 0.00552, 45.22528 ], [ 0.005866, 45.22191 ], [ -0.002278, 45.198402 ], [ -0.002088, 45.19487 ], [ 0.000904, 45.193036 ], [ 0.004331, 45.19163 ], [ 0.001677, 45.18339 ], [ -0.002052, 45.181171 ], [ -0.019062, 45.165177 ], [ -0.014091, 45.15992 ], [ 0.000368, 45.15843 ], [ 0.003268, 45.15566 ], [ -0.001528, 45.15082 ], [ -0.036728, 45.140567 ], [ -0.035312, 45.137245 ], [ -0.02963, 45.12778 ], [ -0.041524, 45.112683 ], [ -0.0402, 45.10238 ] ] ], [ [ [ -1.301162, 45.89993 ], [ -1.353356, 45.92685 ], [ -1.376032, 45.945653 ], [ -1.386452, 45.95327 ], [ -1.386784, 45.96376 ], [ -1.394565, 45.976816 ], [ -1.387094, 45.99716 ], [ -1.400161, 46.015885 ], [ -1.411422, 46.04312 ], [ -1.406058, 46.047294 ], [ -1.372711, 46.03939 ], [ -1.3693, 46.02955 ], [ -1.361072, 46.02555 ], [ -1.35683, 46.023648 ], [ -1.326431, 46.00457 ], [ -1.323068, 46.002279 ], [ -1.315133, 45.994005 ], [ -1.296489, 45.98922 ], [ -1.246985, 45.98966 ], [ -1.237043, 45.982184 ], [ -1.234437, 45.9722 ], [ -1.235456, 45.968798 ], [ -1.23302, 45.96589 ], [ -1.239668, 45.961038 ], [ -1.239995, 45.954371 ], [ -1.229399, 45.94317 ], [ -1.229072, 45.9332 ], [ -1.23342, 45.92723 ], [ -1.218661, 45.909 ], [ -1.215088, 45.906534 ], [ -1.203275, 45.900012 ], [ -1.18902, 45.88581 ], [ -1.20483, 45.853215 ], [ -1.207707, 45.85034 ], [ -1.197561, 45.830464 ], [ -1.232551, 45.800796 ], [ -1.241321, 45.80385 ], [ -1.245668, 45.81024 ], [ -1.252422, 45.84181 ], [ -1.252876, 45.84535 ], [ -1.258919, 45.86445 ], [ -1.260258, 45.867586 ], [ -1.269096, 45.88018 ], [ -1.296207, 45.9005 ], [ -1.301162, 45.89993 ] ] ], [ [ [ -1.411792, 46.18415 ], [ -1.469685, 46.20316 ], [ -1.474627, 46.20276 ], [ -1.507011, 46.19471 ], [ -1.534358, 46.203576 ], [ -1.54204, 46.216474 ], [ -1.543808, 46.219777 ], [ -1.558825, 46.233761 ], [ -1.561443, 46.243812 ], [ -1.541635, 46.2437 ], [ -1.524338, 46.250851 ], [ -1.512976, 46.2578 ], [ -1.497754, 46.256911 ], [ -1.483687, 46.246941 ], [ -1.47755, 46.23358 ], [ -1.485159, 46.229692 ], [ -1.48982, 46.230744 ], [ -1.491397, 46.23713 ], [ -1.496368, 46.237674 ], [ -1.502456, 46.22509 ], [ -1.507355, 46.22572 ], [ -1.512849, 46.231681 ], [ -1.514974, 46.23491 ], [ -1.515061, 46.23076 ], [ -1.508679, 46.217343 ], [ -1.496107, 46.20792 ], [ -1.485438, 46.2074 ], [ -1.483874, 46.21083 ], [ -1.467656, 46.218738 ], [ -1.457596, 46.22859 ], [ -1.416731, 46.228827 ], [ -1.421022, 46.219524 ], [ -1.444398, 46.214094 ], [ -1.42478, 46.20524 ], [ -1.405421, 46.203256 ], [ -1.400518, 46.203347 ], [ -1.365155, 46.207164 ], [ -1.346362, 46.202131 ], [ -1.342125, 46.20013 ], [ -1.319331, 46.187118 ], [ -1.305229, 46.19024 ], [ -1.295734, 46.18822 ], [ -1.286629, 46.17657 ], [ -1.283824, 46.173727 ], [ -1.276545, 46.161638 ], [ -1.25765, 46.162817 ], [ -1.278824, 46.14411 ], [ -1.283543, 46.14523 ], [ -1.307983, 46.14303 ], [ -1.322358, 46.14533 ], [ -1.353497, 46.15464 ], [ -1.360217, 46.15966 ], [ -1.363484, 46.162234 ], [ -1.38605, 46.17482 ], [ -1.407556, 46.1825 ], [ -1.411792, 46.18415 ] ] ], [ [ [ -1.175595, 46.008004 ], [ -1.177712, 46.008963 ], [ -1.178415, 46.012427 ], [ -1.173734, 46.02407 ], [ -1.166338, 46.025028 ], [ -1.164008, 46.024347 ], [ -1.157395, 46.0218 ], [ -1.155764, 46.018716 ], [ -1.170408, 46.018791 ], [ -1.170214, 46.013847 ], [ -1.173909, 46.00932 ], [ -1.175595, 46.008004 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "18", "CODE_DEPT": "18", "NOM_DEPT": "CHER", "CODE_CHF": "033", "NOM_CHF": "BOURGES", "X_CHF_LIEU": "6541", "Y_CHF_LIEU": "66649", "X_CENTROID": "6613", "Y_CENTROID": "66628", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.281048, 46.420405 ], [ 2.276283, 46.421276 ], [ 2.256961, 46.423133 ], [ 2.253658, 46.425651 ], [ 2.248883, 46.426259 ], [ 2.220649, 46.423584 ], [ 2.197831, 46.428298 ], [ 2.194075, 46.42597 ], [ 2.184897, 46.42315 ], [ 2.180482, 46.4232 ], [ 2.167786, 46.42408 ], [ 2.155265, 46.43459 ], [ 2.151402, 46.4577 ], [ 2.193194, 46.47064 ], [ 2.198198, 46.47687 ], [ 2.20017, 46.480165 ], [ 2.200164, 46.48061 ], [ 2.203705, 46.48628 ], [ 2.194701, 46.50625 ], [ 2.189967, 46.505406 ], [ 2.183065, 46.50993 ], [ 2.182754, 46.513297 ], [ 2.181453, 46.526985 ], [ 2.160161, 46.55405 ], [ 2.1587, 46.557346 ], [ 2.173675, 46.565857 ], [ 2.16798, 46.585653 ], [ 2.167145, 46.588988 ], [ 2.176001, 46.6002 ], [ 2.180742, 46.600297 ], [ 2.184614, 46.60257 ], [ 2.185257, 46.612855 ], [ 2.187352, 46.61605 ], [ 2.181273, 46.62579 ], [ 2.189447, 46.642141 ], [ 2.179982, 46.6429 ], [ 2.175944, 46.64884 ], [ 2.166749, 46.64733 ], [ 2.151695, 46.65931 ], [ 2.13972, 46.6656 ], [ 2.137272, 46.67231 ], [ 2.154034, 46.68882 ], [ 2.155448, 46.69216 ], [ 2.141157, 46.69554 ], [ 2.128758, 46.706431 ], [ 2.119793, 46.70959 ], [ 2.11008, 46.71115 ], [ 2.100843, 46.70849 ], [ 2.092068, 46.71187 ], [ 2.087097, 46.712456 ], [ 2.088115, 46.715751 ], [ 2.092145, 46.72526 ], [ 2.074233, 46.73444 ], [ 2.065751, 46.74249 ], [ 2.070117, 46.752192 ], [ 2.094304, 46.75597 ], [ 2.116105, 46.778533 ], [ 2.105793, 46.79025 ], [ 2.104205, 46.793551 ], [ 2.100792, 46.79614 ], [ 2.071568, 46.809851 ], [ 2.047999, 46.832332 ], [ 2.050804, 46.8362 ], [ 2.069292, 46.83547 ], [ 2.072823, 46.837658 ], [ 2.077817, 46.838005 ], [ 2.092409, 46.852834 ], [ 2.090268, 46.86857 ], [ 2.120998, 46.88019 ], [ 2.126204, 46.879865 ], [ 2.14007, 46.88985 ], [ 2.153136, 46.908457 ], [ 2.154965, 46.91167 ], [ 2.151967, 46.91433 ], [ 2.143641, 46.91732 ], [ 2.110319, 46.91317 ], [ 2.106058, 46.91498 ], [ 2.070685, 46.934023 ], [ 2.070203, 46.954423 ], [ 2.081369, 46.95665 ], [ 2.08457, 46.958635 ], [ 2.089985, 46.96355 ], [ 2.087045, 46.97252 ], [ 2.091833, 46.977997 ], [ 2.094592, 46.98057 ], [ 2.094825, 46.989474 ], [ 2.105175, 46.99534 ], [ 2.108856, 46.997191 ], [ 2.106187, 47.0002 ], [ 2.096889, 47.01241 ], [ 2.094267, 47.014905 ], [ 2.08304, 47.018634 ], [ 2.081354, 47.021754 ], [ 2.064618, 47.027941 ], [ 2.053482, 47.03822 ], [ 2.031413, 47.04235 ], [ 2.02938, 47.045532 ], [ 2.0385, 47.057844 ], [ 2.040447, 47.060958 ], [ 2.044557, 47.066944 ], [ 2.053304, 47.07014 ], [ 2.055653, 47.076723 ], [ 2.048458, 47.09607 ], [ 2.053597, 47.101511 ], [ 2.050699, 47.10435 ], [ 2.031199, 47.1049 ], [ 2.026221, 47.096476 ], [ 2.006573, 47.09521 ], [ 2.004464, 47.10161 ], [ 2.009587, 47.11127 ], [ 2.00024, 47.11392 ], [ 1.999913, 47.11732 ], [ 1.99666, 47.127 ], [ 1.992226, 47.12565 ], [ 1.974874, 47.12104 ], [ 1.96314, 47.12418 ], [ 1.947311, 47.116674 ], [ 1.943597, 47.11505 ], [ 1.937202, 47.11093 ], [ 1.920261, 47.10403 ], [ 1.906385, 47.10811 ], [ 1.892733, 47.103766 ], [ 1.887899, 47.104764 ], [ 1.883068, 47.100512 ], [ 1.878812, 47.10229 ], [ 1.846675, 47.11098 ], [ 1.843601, 47.11348 ], [ 1.828448, 47.121302 ], [ 1.809476, 47.12202 ], [ 1.805415, 47.12016 ], [ 1.795823, 47.12081 ], [ 1.780997, 47.128943 ], [ 1.777883, 47.130107 ], [ 1.774451, 47.130755 ], [ 1.809816, 47.15621 ], [ 1.811046, 47.16327 ], [ 1.813917, 47.16657 ], [ 1.823578, 47.17397 ], [ 1.837527, 47.17678 ], [ 1.842237, 47.17758 ], [ 1.837444, 47.19837 ], [ 1.838892, 47.215759 ], [ 1.839079, 47.219308 ], [ 1.853088, 47.220528 ], [ 1.875333, 47.20708 ], [ 1.905858, 47.217887 ], [ 1.908321, 47.22089 ], [ 1.915639, 47.23418 ], [ 1.912241, 47.240753 ], [ 1.909522, 47.243789 ], [ 1.892391, 47.24875 ], [ 1.895493, 47.2548 ], [ 1.922685, 47.26385 ], [ 1.923006, 47.27359 ], [ 1.941373, 47.290064 ], [ 1.971437, 47.27765 ], [ 1.975822, 47.2759 ], [ 1.975957, 47.27577 ], [ 1.996609, 47.265751 ], [ 2.010461, 47.26841 ], [ 2.020248, 47.267006 ], [ 2.024529, 47.26512 ], [ 2.058927, 47.28037 ], [ 2.088978, 47.28549 ], [ 2.094206, 47.285388 ], [ 2.103938, 47.28571 ], [ 2.111136, 47.281729 ], [ 2.11426, 47.279178 ], [ 2.128373, 47.280176 ], [ 2.132895, 47.28119 ], [ 2.139909, 47.293434 ], [ 2.153429, 47.29787 ], [ 2.157151, 47.30021 ], [ 2.147988, 47.316361 ], [ 2.13502, 47.32174 ], [ 2.128526, 47.33112 ], [ 2.119391, 47.333433 ], [ 2.126704, 47.345417 ], [ 2.114665, 47.36701 ], [ 2.111377, 47.36953 ], [ 2.101881, 47.367644 ], [ 2.097085, 47.36681 ], [ 2.102739, 47.391616 ], [ 2.116926, 47.410801 ], [ 2.115628, 47.41792 ], [ 2.114999, 47.42148 ], [ 2.136692, 47.40632 ], [ 2.188242, 47.4357 ], [ 2.204829, 47.406079 ], [ 2.225176, 47.40753 ], [ 2.230388, 47.40753 ], [ 2.240389, 47.41299 ], [ 2.243692, 47.414827 ], [ 2.246699, 47.4424 ], [ 2.238642, 47.45097 ], [ 2.244993, 47.45995 ], [ 2.238643, 47.47238 ], [ 2.245237, 47.48872 ], [ 2.247745, 47.491732 ], [ 2.243082, 47.492764 ], [ 2.234995, 47.496357 ], [ 2.219441, 47.49544 ], [ 2.201325, 47.488183 ], [ 2.19607, 47.4879 ], [ 2.214491, 47.52043 ], [ 2.197561, 47.54612 ], [ 2.193775, 47.54857 ], [ 2.131382, 47.550696 ], [ 2.125186, 47.55636 ], [ 2.127704, 47.569933 ], [ 2.121466, 47.57964 ], [ 2.119575, 47.58295 ], [ 2.138094, 47.588815 ], [ 2.15629, 47.601046 ], [ 2.197252, 47.607447 ], [ 2.233959, 47.62067 ], [ 2.239214, 47.62098 ], [ 2.284817, 47.628675 ], [ 2.289632, 47.62905 ], [ 2.293606, 47.62262 ], [ 2.303059, 47.61954 ], [ 2.307202, 47.617324 ], [ 2.323488, 47.60856 ], [ 2.343358, 47.60448 ], [ 2.360156, 47.59105 ], [ 2.372689, 47.585442 ], [ 2.379655, 47.590592 ], [ 2.394291, 47.59292 ], [ 2.400349, 47.598576 ], [ 2.43345, 47.60822 ], [ 2.438079, 47.60977 ], [ 2.44743, 47.606577 ], [ 2.456411, 47.593837 ], [ 2.490301, 47.57177 ], [ 2.491358, 47.56829 ], [ 2.506549, 47.56809 ], [ 2.520343, 47.57237 ], [ 2.544971, 47.57467 ], [ 2.564341, 47.571147 ], [ 2.567581, 47.56849 ], [ 2.573916, 47.559625 ], [ 2.592984, 47.55814 ], [ 2.603024, 47.550996 ], [ 2.607079, 47.54915 ], [ 2.616728, 47.538566 ], [ 2.613325, 47.52941 ], [ 2.612018, 47.526389 ], [ 2.655871, 47.510396 ], [ 2.656286, 47.49335 ], [ 2.664608, 47.485757 ], [ 2.669382, 47.48468 ], [ 2.682059, 47.48336 ], [ 2.686362, 47.483189 ], [ 2.714574, 47.48925 ], [ 2.725405, 47.49575 ], [ 2.727407, 47.49889 ], [ 2.72176, 47.504415 ], [ 2.72549, 47.510266 ], [ 2.723602, 47.52338 ], [ 2.728377, 47.532938 ], [ 2.727151, 47.536221 ], [ 2.73182, 47.538095 ], [ 2.742696, 47.526517 ], [ 2.762558, 47.524957 ], [ 2.783529, 47.51519 ], [ 2.794601, 47.500227 ], [ 2.797521, 47.49734 ], [ 2.802623, 47.49678 ], [ 2.806484, 47.494459 ], [ 2.826262, 47.49807 ], [ 2.841217, 47.51181 ], [ 2.870551, 47.51828 ], [ 2.874625, 47.52042 ], [ 2.887256, 47.510615 ], [ 2.889574, 47.507764 ], [ 2.891632, 47.50194 ], [ 2.892395, 47.49898 ], [ 2.89713, 47.488733 ], [ 2.897163, 47.48515 ], [ 2.91778, 47.463787 ], [ 2.919191, 47.46062 ], [ 2.919831, 47.45873 ], [ 2.931885, 47.43681 ], [ 2.931557, 47.43343 ], [ 2.920906, 47.423155 ], [ 2.91962, 47.413657 ], [ 2.919771, 47.41047 ], [ 2.893026, 47.369085 ], [ 2.890555, 47.365995 ], [ 2.88208, 47.357587 ], [ 2.879782, 47.35453 ], [ 2.877113, 47.35156 ], [ 2.870247, 47.342343 ], [ 2.873695, 47.3291 ], [ 2.879024, 47.32028 ], [ 2.89495, 47.31377 ], [ 2.899453, 47.31274 ], [ 2.909119, 47.310584 ], [ 2.912962, 47.30832 ], [ 2.916129, 47.305647 ], [ 2.923336, 47.300844 ], [ 2.92678, 47.29845 ], [ 2.941563, 47.285155 ], [ 2.973547, 47.26994 ], [ 2.981658, 47.262509 ], [ 2.982757, 47.256558 ], [ 2.981806, 47.25352 ], [ 2.979026, 47.229064 ], [ 2.991122, 47.209691 ], [ 2.993844, 47.20668 ], [ 2.995918, 47.203804 ], [ 2.997741, 47.200851 ], [ 3.015206, 47.16243 ], [ 3.015945, 47.159095 ], [ 3.019283, 47.15628 ], [ 3.020588, 47.152981 ], [ 3.017179, 47.13978 ], [ 3.02496, 47.13111 ], [ 3.028283, 47.12844 ], [ 3.029382, 47.11166 ], [ 3.03, 47.108315 ], [ 3.03025, 47.107055 ], [ 3.030102, 47.103508 ], [ 3.031362, 47.092884 ], [ 3.022524, 47.08016 ], [ 3.020041, 47.06679 ], [ 3.022241, 47.063652 ], [ 3.050517, 47.050679 ], [ 3.053966, 47.04825 ], [ 3.060101, 47.04586 ], [ 3.063618, 47.04617 ], [ 3.072676, 47.033282 ], [ 3.074778, 47.02999 ], [ 3.074759, 47.015859 ], [ 3.073675, 47.01237 ], [ 3.065841, 47.00046 ], [ 3.065324, 46.997174 ], [ 3.062751, 46.98026 ], [ 3.075119, 46.96206 ], [ 3.079337, 46.96024 ], [ 3.078275, 46.953427 ], [ 3.068254, 46.941521 ], [ 3.066029, 46.93843 ], [ 3.064553, 46.93573 ], [ 3.050227, 46.909154 ], [ 3.058074, 46.90028 ], [ 3.061145, 46.89738 ], [ 3.062334, 46.892347 ], [ 3.063605, 46.889951 ], [ 3.069402, 46.852258 ], [ 3.056647, 46.84197 ], [ 3.054584, 46.83877 ], [ 3.05694, 46.83391 ], [ 3.058486, 46.831592 ], [ 3.057639, 46.825136 ], [ 3.041154, 46.812673 ], [ 3.039067, 46.80962 ], [ 3.032122, 46.798063 ], [ 3.032068, 46.794911 ], [ 3.027584, 46.79337 ], [ 3.01614, 46.79983 ], [ 2.996604, 46.79696 ], [ 2.979899, 46.80342 ], [ 2.959915, 46.803877 ], [ 2.952503, 46.79268 ], [ 2.944387, 46.792993 ], [ 2.93989, 46.79319 ], [ 2.936099, 46.795393 ], [ 2.912941, 46.790192 ], [ 2.908913, 46.78447 ], [ 2.910924, 46.781348 ], [ 2.898967, 46.775675 ], [ 2.894344, 46.77417 ], [ 2.880422, 46.77003 ], [ 2.875346, 46.760642 ], [ 2.844634, 46.742362 ], [ 2.843818, 46.739228 ], [ 2.845727, 46.726616 ], [ 2.841168, 46.727321 ], [ 2.827485, 46.735333 ], [ 2.822561, 46.735415 ], [ 2.793416, 46.733557 ], [ 2.782748, 46.722462 ], [ 2.77475, 46.718953 ], [ 2.771375, 46.72126 ], [ 2.758521, 46.717659 ], [ 2.755115, 46.72391 ], [ 2.743797, 46.73055 ], [ 2.734528, 46.74622 ], [ 2.730642, 46.74799 ], [ 2.704833, 46.73904 ], [ 2.703898, 46.7256 ], [ 2.698463, 46.72106 ], [ 2.688603, 46.72118 ], [ 2.676175, 46.71084 ], [ 2.677795, 46.704612 ], [ 2.674262, 46.702279 ], [ 2.656179, 46.69735 ], [ 2.648081, 46.68896 ], [ 2.628221, 46.690308 ], [ 2.623478, 46.68931 ], [ 2.621638, 46.679274 ], [ 2.631838, 46.672203 ], [ 2.63156, 46.6688 ], [ 2.623914, 46.65663 ], [ 2.60704, 46.662639 ], [ 2.606155, 46.669299 ], [ 2.570551, 46.65927 ], [ 2.570439, 46.65681 ], [ 2.566995, 46.65248 ], [ 2.588997, 46.6481 ], [ 2.5931, 46.64658 ], [ 2.596325, 46.636723 ], [ 2.584599, 46.62636 ], [ 2.588657, 46.61695 ], [ 2.572922, 46.61045 ], [ 2.568383, 46.609392 ], [ 2.57738, 46.60673 ], [ 2.583888, 46.59459 ], [ 2.598461, 46.59531 ], [ 2.60834, 46.57295 ], [ 2.609356, 46.569613 ], [ 2.605668, 46.563288 ], [ 2.613262, 46.55461 ], [ 2.576552, 46.53852 ], [ 2.570133, 46.533409 ], [ 2.55179, 46.5284 ], [ 2.540403, 46.521921 ], [ 2.536652, 46.519709 ], [ 2.532682, 46.521701 ], [ 2.529408, 46.5278 ], [ 2.520282, 46.529925 ], [ 2.50976, 46.52345 ], [ 2.500235, 46.52215 ], [ 2.496526, 46.531155 ], [ 2.482929, 46.532697 ], [ 2.478655, 46.530724 ], [ 2.446148, 46.521044 ], [ 2.437939, 46.52528 ], [ 2.427808, 46.52598 ], [ 2.414634, 46.520833 ], [ 2.384099, 46.5183 ], [ 2.3683, 46.51843 ], [ 2.363697, 46.51724 ], [ 2.334315, 46.499566 ], [ 2.324969, 46.487742 ], [ 2.32963, 46.48183 ], [ 2.330814, 46.478862 ], [ 2.321409, 46.46891 ], [ 2.316996, 46.468505 ], [ 2.313097, 46.47077 ], [ 2.305465, 46.475433 ], [ 2.284666, 46.45136 ], [ 2.278432, 46.427215 ], [ 2.281048, 46.420405 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "19", "CODE_DEPT": "19", "NOM_DEPT": "CORREZE", "CODE_CHF": "272", "NOM_CHF": "TULLE", "X_CHF_LIEU": "6037", "Y_CHF_LIEU": "64636", "X_CENTROID": "6120", "Y_CENTROID": "64736", "CODE_REG": "74", "NOM_REGION": "LIMOUSIN" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.062914, 44.976506 ], [ 2.058581, 44.97541 ], [ 2.045121, 44.98367 ], [ 2.040848, 44.98198 ], [ 2.008268, 44.976231 ], [ 1.984336, 44.973719 ], [ 1.9566, 44.95901 ], [ 1.95099, 44.953158 ], [ 1.946191, 44.95348 ], [ 1.941333, 44.958208 ], [ 1.94015, 44.97184 ], [ 1.936522, 44.973164 ], [ 1.927179, 44.978801 ], [ 1.907779, 44.978243 ], [ 1.888368, 44.96292 ], [ 1.887091, 44.95634 ], [ 1.851053, 44.94625 ], [ 1.848412, 44.943958 ], [ 1.842772, 44.937083 ], [ 1.838527, 44.93818 ], [ 1.83589, 44.944323 ], [ 1.831572, 44.94342 ], [ 1.829361, 44.933962 ], [ 1.827628, 44.93073 ], [ 1.819741, 44.92722 ], [ 1.810042, 44.92795 ], [ 1.800798, 44.92038 ], [ 1.800167, 44.92029 ], [ 1.801468, 44.92641 ], [ 1.788603, 44.934606 ], [ 1.785701, 44.936906 ], [ 1.784546, 44.93052 ], [ 1.777453, 44.926209 ], [ 1.774608, 44.92354 ], [ 1.774029, 44.92453 ], [ 1.771447, 44.92727 ], [ 1.76701, 44.933045 ], [ 1.750554, 44.93879 ], [ 1.753982, 44.940851 ], [ 1.755329, 44.944135 ], [ 1.748795, 44.95683 ], [ 1.740734, 44.96058 ], [ 1.736182, 44.96053 ], [ 1.726256, 44.967011 ], [ 1.712968, 44.967326 ], [ 1.71088, 44.96709 ], [ 1.708767, 44.96964 ], [ 1.707508, 44.972512 ], [ 1.703377, 44.98657 ], [ 1.700373, 44.98916 ], [ 1.692273, 44.992577 ], [ 1.689269, 44.994604 ], [ 1.684371, 45.00266 ], [ 1.680078, 45.003329 ], [ 1.671411, 45.004307 ], [ 1.653199, 45.018955 ], [ 1.651891, 45.025288 ], [ 1.64737, 45.025837 ], [ 1.63238, 45.03233 ], [ 1.627746, 45.03332 ], [ 1.60956, 45.032305 ], [ 1.608959, 45.02889 ], [ 1.608069, 45.03353 ], [ 1.603883, 45.03535 ], [ 1.57097, 45.03956 ], [ 1.55204, 45.02847 ], [ 1.543942, 45.03125 ], [ 1.540315, 45.04467 ], [ 1.526759, 45.04428 ], [ 1.522661, 45.042659 ], [ 1.5058, 45.039498 ], [ 1.47993, 45.026756 ], [ 1.477131, 45.02692 ], [ 1.477292, 45.020092 ], [ 1.460357, 45.01397 ], [ 1.448262, 45.019313 ], [ 1.444114, 45.02006 ], [ 1.434641, 45.0301 ], [ 1.431329, 45.032701 ], [ 1.411599, 45.05263 ], [ 1.409056, 45.0594 ], [ 1.399564, 45.06118 ], [ 1.401752, 45.06421 ], [ 1.406003, 45.07022 ], [ 1.401222, 45.07609 ], [ 1.398488, 45.0788 ], [ 1.391702, 45.087593 ], [ 1.393265, 45.09735 ], [ 1.389354, 45.09892 ], [ 1.383285, 45.103007 ], [ 1.380056, 45.100798 ], [ 1.378249, 45.10609 ], [ 1.382956, 45.105605 ], [ 1.392448, 45.105877 ], [ 1.408918, 45.11252 ], [ 1.413525, 45.11825 ], [ 1.413094, 45.12491 ], [ 1.409614, 45.1265 ], [ 1.401786, 45.128427 ], [ 1.398389, 45.129747 ], [ 1.393954, 45.13137 ], [ 1.380532, 45.135712 ], [ 1.366379, 45.13236 ], [ 1.351991, 45.134033 ], [ 1.351916, 45.13657 ], [ 1.351983, 45.141643 ], [ 1.347115, 45.141445 ], [ 1.333737, 45.13773 ], [ 1.320997, 45.14245 ], [ 1.308754, 45.137016 ], [ 1.290473, 45.14188 ], [ 1.280205, 45.14927 ], [ 1.254436, 45.158506 ], [ 1.255055, 45.16477 ], [ 1.268222, 45.16508 ], [ 1.277911, 45.17209 ], [ 1.281525, 45.174228 ], [ 1.285709, 45.176048 ], [ 1.2914, 45.18565 ], [ 1.289594, 45.188879 ], [ 1.286019, 45.191265 ], [ 1.272148, 45.201147 ], [ 1.233456, 45.19842 ], [ 1.228376, 45.20436 ], [ 1.231275, 45.214566 ], [ 1.233398, 45.21958 ], [ 1.233608, 45.222195 ], [ 1.238262, 45.223314 ], [ 1.260952, 45.229695 ], [ 1.277687, 45.242085 ], [ 1.276285, 45.2557 ], [ 1.271874, 45.25731 ], [ 1.257397, 45.254983 ], [ 1.239385, 45.260447 ], [ 1.240207, 45.263468 ], [ 1.238364, 45.268114 ], [ 1.22706, 45.271844 ], [ 1.232076, 45.287838 ], [ 1.238945, 45.29172 ], [ 1.241603, 45.301309 ], [ 1.2384, 45.3025 ], [ 1.240886, 45.305423 ], [ 1.235803, 45.32204 ], [ 1.240647, 45.322279 ], [ 1.2599, 45.32065 ], [ 1.274091, 45.32988 ], [ 1.281923, 45.34213 ], [ 1.285155, 45.35205 ], [ 1.302753, 45.358067 ], [ 1.307725, 45.357971 ], [ 1.311868, 45.35955 ], [ 1.319877, 45.367205 ], [ 1.323231, 45.38312 ], [ 1.318722, 45.38428 ], [ 1.29964, 45.39431 ], [ 1.281683, 45.38509 ], [ 1.274016, 45.39287 ], [ 1.277897, 45.39923 ], [ 1.26411, 45.39816 ], [ 1.260222, 45.40025 ], [ 1.258724, 45.41379 ], [ 1.265645, 45.417798 ], [ 1.279872, 45.41513 ], [ 1.289192, 45.4173 ], [ 1.289382, 45.42068 ], [ 1.288271, 45.433529 ], [ 1.272393, 45.437303 ], [ 1.269663, 45.439936 ], [ 1.253152, 45.44422 ], [ 1.25548, 45.45036 ], [ 1.263341, 45.453897 ], [ 1.263869, 45.467308 ], [ 1.269155, 45.47636 ], [ 1.275609, 45.47795 ], [ 1.27885, 45.47709 ], [ 1.286405, 45.48075 ], [ 1.287191, 45.48724 ], [ 1.285317, 45.490281 ], [ 1.345901, 45.46874 ], [ 1.350078, 45.466897 ], [ 1.368894, 45.48956 ], [ 1.375566, 45.49433 ], [ 1.384904, 45.495567 ], [ 1.3896, 45.49616 ], [ 1.391455, 45.50729 ], [ 1.395821, 45.50867 ], [ 1.408944, 45.526335 ], [ 1.417346, 45.529588 ], [ 1.426618, 45.52979 ], [ 1.435222, 45.521876 ], [ 1.439542, 45.52041 ], [ 1.452689, 45.53505 ], [ 1.453415, 45.55222 ], [ 1.473136, 45.55342 ], [ 1.478789, 45.559077 ], [ 1.480434, 45.56594 ], [ 1.488061, 45.56226 ], [ 1.492228, 45.560861 ], [ 1.491524, 45.5523 ], [ 1.492475, 45.54939 ], [ 1.511347, 45.55214 ], [ 1.516971, 45.55755 ], [ 1.517394, 45.564276 ], [ 1.541999, 45.555015 ], [ 1.54682, 45.55446 ], [ 1.558783, 45.550945 ], [ 1.571207, 45.55529 ], [ 1.584891, 45.55608 ], [ 1.590755, 45.572037 ], [ 1.592897, 45.575027 ], [ 1.600404, 45.57942 ], [ 1.625187, 45.578705 ], [ 1.64933, 45.59055 ], [ 1.651973, 45.59315 ], [ 1.658937, 45.59694 ], [ 1.659864, 45.606349 ], [ 1.664765, 45.61169 ], [ 1.668273, 45.614149 ], [ 1.696303, 45.633651 ], [ 1.710733, 45.64134 ], [ 1.724169, 45.63886 ], [ 1.750205, 45.64571 ], [ 1.752899, 45.65208 ], [ 1.753465, 45.65546 ], [ 1.763797, 45.654577 ], [ 1.765424, 45.657648 ], [ 1.77472, 45.65831 ], [ 1.783086, 45.673285 ], [ 1.785834, 45.68266 ], [ 1.794815, 45.680913 ], [ 1.801385, 45.672986 ], [ 1.802214, 45.676219 ], [ 1.815294, 45.679771 ], [ 1.819797, 45.67404 ], [ 1.823414, 45.67191 ], [ 1.826437, 45.665046 ], [ 1.84507, 45.663374 ], [ 1.854027, 45.67058 ], [ 1.874816, 45.664666 ], [ 1.87902, 45.666383 ], [ 1.882191, 45.679824 ], [ 1.901422, 45.67858 ], [ 1.909555, 45.6818 ], [ 1.907303, 45.69176 ], [ 1.898709, 45.694864 ], [ 1.898731, 45.698278 ], [ 1.910664, 45.703788 ], [ 1.918664, 45.712069 ], [ 1.928036, 45.71138 ], [ 1.934638, 45.706305 ], [ 1.944024, 45.70684 ], [ 1.943714, 45.71365 ], [ 1.9562, 45.723716 ], [ 1.980317, 45.722496 ], [ 1.982496, 45.7194 ], [ 1.991336, 45.72249 ], [ 1.99766, 45.73183 ], [ 2.00152, 45.748793 ], [ 2.014127, 45.754487 ], [ 2.038881, 45.755863 ], [ 2.044947, 45.761444 ], [ 2.048767, 45.76373 ], [ 2.053694, 45.763057 ], [ 2.060696, 45.7538 ], [ 2.082889, 45.745972 ], [ 2.083935, 45.73946 ], [ 2.084469, 45.73596 ], [ 2.08469, 45.728048 ], [ 2.097347, 45.733337 ], [ 2.11409, 45.726878 ], [ 2.129914, 45.734502 ], [ 2.143627, 45.72508 ], [ 2.152469, 45.72287 ], [ 2.156851, 45.72131 ], [ 2.160591, 45.729854 ], [ 2.160912, 45.735836 ], [ 2.174253, 45.732035 ], [ 2.184581, 45.720556 ], [ 2.203401, 45.717134 ], [ 2.195961, 45.704519 ], [ 2.19386, 45.701397 ], [ 2.197924, 45.699454 ], [ 2.210924, 45.702562 ], [ 2.211855, 45.70939 ], [ 2.21268, 45.712786 ], [ 2.222647, 45.69783 ], [ 2.232023, 45.69821 ], [ 2.237879, 45.69293 ], [ 2.24665, 45.694288 ], [ 2.257715, 45.688436 ], [ 2.266579, 45.69055 ], [ 2.271074, 45.691648 ], [ 2.271641, 45.66424 ], [ 2.286451, 45.6651 ], [ 2.29798, 45.671512 ], [ 2.306856, 45.674584 ], [ 2.320098, 45.67054 ], [ 2.341309, 45.68422 ], [ 2.348835, 45.69316 ], [ 2.347585, 45.70004 ], [ 2.345206, 45.70667 ], [ 2.348543, 45.70921 ], [ 2.362824, 45.712529 ], [ 2.367805, 45.71312 ], [ 2.37093, 45.71294 ], [ 2.374044, 45.712718 ], [ 2.381776, 45.708627 ], [ 2.410602, 45.70901 ], [ 2.431662, 45.70099 ], [ 2.435856, 45.699275 ], [ 2.444511, 45.707567 ], [ 2.453993, 45.709243 ], [ 2.466775, 45.71935 ], [ 2.471361, 45.719727 ], [ 2.474037, 45.728996 ], [ 2.487671, 45.73686 ], [ 2.492126, 45.73767 ], [ 2.521626, 45.70949 ], [ 2.521281, 45.69582 ], [ 2.52583, 45.69435 ], [ 2.526321, 45.685 ], [ 2.528684, 45.6822 ], [ 2.524542, 45.681215 ], [ 2.514537, 45.67214 ], [ 2.51449, 45.66581 ], [ 2.526007, 45.65567 ], [ 2.518942, 45.64708 ], [ 2.51907, 45.64427 ], [ 2.517926, 45.63991 ], [ 2.513977, 45.639441 ], [ 2.486287, 45.64082 ], [ 2.482026, 45.63521 ], [ 2.478432, 45.607917 ], [ 2.474686, 45.60655 ], [ 2.465476, 45.60105 ], [ 2.463472, 45.59468 ], [ 2.47428, 45.579019 ], [ 2.488221, 45.569016 ], [ 2.496294, 45.556832 ], [ 2.507604, 45.553353 ], [ 2.51588, 45.55388 ], [ 2.516673, 45.55115 ], [ 2.518148, 45.543574 ], [ 2.51498, 45.54099 ], [ 2.517911, 45.53107 ], [ 2.514877, 45.524893 ], [ 2.518362, 45.518911 ], [ 2.509567, 45.50681 ], [ 2.508997, 45.50023 ], [ 2.510569, 45.497743 ], [ 2.51389, 45.49284 ], [ 2.508409, 45.478508 ], [ 2.509307, 45.472397 ], [ 2.503695, 45.461684 ], [ 2.499701, 45.460433 ], [ 2.501585, 45.451517 ], [ 2.496878, 45.44716 ], [ 2.496051, 45.44383 ], [ 2.492279, 45.42402 ], [ 2.487538, 45.41817 ], [ 2.517482, 45.40205 ], [ 2.522233, 45.402603 ], [ 2.527255, 45.390756 ], [ 2.52351, 45.38481 ], [ 2.523372, 45.381546 ], [ 2.520664, 45.38433 ], [ 2.508434, 45.38013 ], [ 2.485575, 45.37879 ], [ 2.480204, 45.36969 ], [ 2.476367, 45.371566 ], [ 2.46839, 45.38281 ], [ 2.441552, 45.384527 ], [ 2.437851, 45.387822 ], [ 2.435245, 45.39019 ], [ 2.423124, 45.396959 ], [ 2.418301, 45.397358 ], [ 2.404119, 45.39802 ], [ 2.396444, 45.402168 ], [ 2.393588, 45.40852 ], [ 2.380991, 45.41354 ], [ 2.376968, 45.41432 ], [ 2.361707, 45.414987 ], [ 2.355135, 45.415031 ], [ 2.35025, 45.409609 ], [ 2.368799, 45.386005 ], [ 2.363485, 45.3803 ], [ 2.364622, 45.37468 ], [ 2.364432, 45.35775 ], [ 2.351509, 45.347654 ], [ 2.358556, 45.338987 ], [ 2.358813, 45.335521 ], [ 2.353415, 45.32979 ], [ 2.339866, 45.32581 ], [ 2.335034, 45.326423 ], [ 2.31693, 45.321415 ], [ 2.306146, 45.310012 ], [ 2.305283, 45.30654 ], [ 2.290328, 45.288473 ], [ 2.276134, 45.288184 ], [ 2.273244, 45.28967 ], [ 2.269695, 45.28989 ], [ 2.267932, 45.287185 ], [ 2.261734, 45.28323 ], [ 2.26155, 45.279768 ], [ 2.25783, 45.26984 ], [ 2.244194, 45.266343 ], [ 2.239008, 45.26047 ], [ 2.238564, 45.24721 ], [ 2.225317, 45.24375 ], [ 2.221133, 45.23755 ], [ 2.2023, 45.226575 ], [ 2.203062, 45.22316 ], [ 2.198876, 45.22183 ], [ 2.191163, 45.223055 ], [ 2.192536, 45.21975 ], [ 2.191141, 45.203443 ], [ 2.198415, 45.19893 ], [ 2.201689, 45.18198 ], [ 2.233009, 45.16731 ], [ 2.230423, 45.161921 ], [ 2.225778, 45.16092 ], [ 2.211364, 45.160464 ], [ 2.210419, 45.147158 ], [ 2.20141, 45.13915 ], [ 2.193102, 45.13566 ], [ 2.178793, 45.1363 ], [ 2.181103, 45.133215 ], [ 2.187932, 45.11671 ], [ 2.178862, 45.10476 ], [ 2.17937, 45.09437 ], [ 2.172776, 45.08128 ], [ 2.168152, 45.081073 ], [ 2.161012, 45.085152 ], [ 2.143403, 45.08631 ], [ 2.138101, 45.08145 ], [ 2.133317, 45.08181 ], [ 2.102112, 45.06216 ], [ 2.100208, 45.062032 ], [ 2.09837, 45.059424 ], [ 2.095159, 45.056039 ], [ 2.110262, 45.03861 ], [ 2.116938, 45.02197 ], [ 2.137833, 45.008132 ], [ 2.140896, 45.005409 ], [ 2.139895, 45.002 ], [ 2.133293, 44.98575 ], [ 2.106208, 44.98151 ], [ 2.093554, 44.98571 ], [ 2.089121, 44.984441 ], [ 2.08473, 44.982991 ], [ 2.062914, 44.976506 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "20", "CODE_DEPT": "21", "NOM_DEPT": "COTE-D'OR", "CODE_CHF": "231", "NOM_CHF": "DIJON", "X_CHF_LIEU": "8542", "Y_CHF_LIEU": "66934", "X_CENTROID": "8336", "Y_CENTROID": "67042", "CODE_REG": "26", "NOM_REGION": "BOURGOGNE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.255236, 46.979888 ], [ 5.242026, 46.981542 ], [ 5.222072, 46.988854 ], [ 5.220619, 46.98618 ], [ 5.212199, 46.98014 ], [ 5.208954, 46.982234 ], [ 5.201518, 46.9832 ], [ 5.198601, 46.9804 ], [ 5.192864, 46.97135 ], [ 5.189358, 46.97283 ], [ 5.181662, 46.974827 ], [ 5.164631, 46.96423 ], [ 5.150454, 46.96637 ], [ 5.145926, 46.96533 ], [ 5.138312, 46.96242 ], [ 5.120174, 46.96319 ], [ 5.118261, 46.96037 ], [ 5.106005, 46.95712 ], [ 5.103195, 46.948796 ], [ 5.100742, 46.94658 ], [ 5.097533, 46.94488 ], [ 5.101101, 46.954464 ], [ 5.074772, 46.96111 ], [ 5.070824, 46.967242 ], [ 5.065934, 46.96701 ], [ 5.06575, 46.96978 ], [ 5.057018, 46.97541 ], [ 5.054491, 46.9775 ], [ 5.049304, 46.981587 ], [ 5.044374, 46.98069 ], [ 5.029188, 46.979646 ], [ 5.018517, 46.97229 ], [ 5.003646, 46.97185 ], [ 4.996557, 46.96409 ], [ 5.00125, 46.959744 ], [ 5.00565, 46.95921 ], [ 5.004412, 46.958113 ], [ 4.999744, 46.95886 ], [ 4.967366, 46.961966 ], [ 4.964474, 46.96457 ], [ 4.955229, 46.9632 ], [ 4.952096, 46.96498 ], [ 4.943033, 46.96501 ], [ 4.914754, 46.96776 ], [ 4.910146, 46.9673 ], [ 4.896423, 46.96613 ], [ 4.89099, 46.957489 ], [ 4.893082, 46.9515 ], [ 4.870766, 46.94817 ], [ 4.866477, 46.94661 ], [ 4.816575, 46.93581 ], [ 4.816165, 46.932989 ], [ 4.80871, 46.930629 ], [ 4.788806, 46.93223 ], [ 4.790831, 46.925487 ], [ 4.779335, 46.91888 ], [ 4.775264, 46.917775 ], [ 4.770888, 46.9178 ], [ 4.76581, 46.918461 ], [ 4.755666, 46.91735 ], [ 4.744315, 46.924435 ], [ 4.740913, 46.92205 ], [ 4.72813, 46.919375 ], [ 4.725702, 46.92156 ], [ 4.718761, 46.919884 ], [ 4.719844, 46.916734 ], [ 4.712712, 46.90651 ], [ 4.708482, 46.90489 ], [ 4.68522, 46.900954 ], [ 4.682495, 46.90333 ], [ 4.666216, 46.91233 ], [ 4.665587, 46.915352 ], [ 4.679344, 46.927129 ], [ 4.678435, 46.93043 ], [ 4.652319, 46.93879 ], [ 4.64986, 46.94136 ], [ 4.644807, 46.940812 ], [ 4.614328, 46.94167 ], [ 4.617528, 46.944025 ], [ 4.613027, 46.94919 ], [ 4.599187, 46.950342 ], [ 4.595184, 46.952387 ], [ 4.589702, 46.957839 ], [ 4.591862, 46.967769 ], [ 4.573661, 46.97339 ], [ 4.570956, 46.97538 ], [ 4.567488, 46.98282 ], [ 4.568085, 46.99113 ], [ 4.56426, 46.9922 ], [ 4.554726, 46.990645 ], [ 4.547687, 46.995323 ], [ 4.556762, 47.006971 ], [ 4.554809, 47.020055 ], [ 4.531749, 47.01249 ], [ 4.506723, 47.013524 ], [ 4.504946, 47.01682 ], [ 4.502063, 47.018763 ], [ 4.498842, 47.02558 ], [ 4.495195, 47.027515 ], [ 4.489643, 47.03201 ], [ 4.471598, 47.030492 ], [ 4.457438, 47.040154 ], [ 4.42728, 47.040413 ], [ 4.406283, 47.05 ], [ 4.403261, 47.05638 ], [ 4.407028, 47.06947 ], [ 4.416154, 47.07723 ], [ 4.411758, 47.07899 ], [ 4.397777, 47.08272 ], [ 4.377814, 47.08149 ], [ 4.370266, 47.07702 ], [ 4.36218, 47.06428 ], [ 4.357443, 47.062992 ], [ 4.34425, 47.07243 ], [ 4.349385, 47.096953 ], [ 4.346937, 47.09981 ], [ 4.338435, 47.10257 ], [ 4.309766, 47.10367 ], [ 4.302058, 47.10722 ], [ 4.300654, 47.109703 ], [ 4.298812, 47.112047 ], [ 4.281407, 47.107838 ], [ 4.263651, 47.11213 ], [ 4.259725, 47.11401 ], [ 4.252329, 47.128362 ], [ 4.25165, 47.13151 ], [ 4.247581, 47.13299 ], [ 4.239994, 47.14216 ], [ 4.241903, 47.14823 ], [ 4.237719, 47.146527 ], [ 4.219316, 47.14567 ], [ 4.21432, 47.15414 ], [ 4.209834, 47.155412 ], [ 4.210078, 47.158615 ], [ 4.209485, 47.168057 ], [ 4.212327, 47.18113 ], [ 4.230876, 47.19704 ], [ 4.22889, 47.20378 ], [ 4.219177, 47.21942 ], [ 4.192241, 47.23541 ], [ 4.186745, 47.24514 ], [ 4.177723, 47.25274 ], [ 4.135149, 47.23736 ], [ 4.133287, 47.2406 ], [ 4.125356, 47.249506 ], [ 4.114587, 47.29261 ], [ 4.131322, 47.304314 ], [ 4.132541, 47.30749 ], [ 4.123776, 47.30424 ], [ 4.11539, 47.30772 ], [ 4.128764, 47.31737 ], [ 4.130407, 47.32057 ], [ 4.123777, 47.32957 ], [ 4.125043, 47.335671 ], [ 4.139693, 47.35199 ], [ 4.143319, 47.35429 ], [ 4.13986, 47.3567 ], [ 4.130918, 47.35428 ], [ 4.119339, 47.33966 ], [ 4.107051, 47.33596 ], [ 4.106086, 47.33926 ], [ 4.107089, 47.34934 ], [ 4.098155, 47.35749 ], [ 4.10567, 47.36602 ], [ 4.106783, 47.37627 ], [ 4.097171, 47.373534 ], [ 4.082395, 47.37555 ], [ 4.078053, 47.38175 ], [ 4.085936, 47.394031 ], [ 4.067769, 47.40051 ], [ 4.065198, 47.40727 ], [ 4.070106, 47.407286 ], [ 4.072978, 47.413652 ], [ 4.084039, 47.42021 ], [ 4.082661, 47.42355 ], [ 4.083221, 47.43353 ], [ 4.080503, 47.43624 ], [ 4.085393, 47.4399 ], [ 4.095401, 47.432898 ], [ 4.098629, 47.430473 ], [ 4.106987, 47.43815 ], [ 4.103834, 47.44419 ], [ 4.108109, 47.44561 ], [ 4.115591, 47.44164 ], [ 4.119427, 47.443553 ], [ 4.128832, 47.470462 ], [ 4.125598, 47.47707 ], [ 4.120568, 47.477816 ], [ 4.118079, 47.4788 ], [ 4.115979, 47.48448 ], [ 4.120923, 47.489696 ], [ 4.118944, 47.49539 ], [ 4.116126, 47.49786 ], [ 4.112404, 47.5035 ], [ 4.116087, 47.50557 ], [ 4.114631, 47.51476 ], [ 4.119533, 47.5147 ], [ 4.13752, 47.51944 ], [ 4.140114, 47.525789 ], [ 4.143225, 47.52832 ], [ 4.150705, 47.5325 ], [ 4.149408, 47.53524 ], [ 4.145917, 47.54045 ], [ 4.153444, 47.54425 ], [ 4.159492, 47.55276 ], [ 4.164177, 47.55357 ], [ 4.168098, 47.55163 ], [ 4.17495, 47.553 ], [ 4.187159, 47.57048 ], [ 4.188284, 47.573174 ], [ 4.186136, 47.581289 ], [ 4.197352, 47.599692 ], [ 4.201036, 47.60197 ], [ 4.210871, 47.60133 ], [ 4.215812, 47.60083 ], [ 4.213621, 47.604 ], [ 4.215349, 47.630798 ], [ 4.224024, 47.633363 ], [ 4.231944, 47.645882 ], [ 4.236943, 47.646604 ], [ 4.246661, 47.661732 ], [ 4.22599, 47.67142 ], [ 4.226613, 47.67821 ], [ 4.250789, 47.67809 ], [ 4.255222, 47.6835 ], [ 4.279384, 47.68157 ], [ 4.284063, 47.682662 ], [ 4.280804, 47.6852 ], [ 4.261835, 47.69424 ], [ 4.265892, 47.70395 ], [ 4.257436, 47.70786 ], [ 4.253546, 47.71426 ], [ 4.239355, 47.71776 ], [ 4.241388, 47.72428 ], [ 4.256314, 47.727 ], [ 4.260371, 47.740621 ], [ 4.275392, 47.73983 ], [ 4.288087, 47.733901 ], [ 4.293038, 47.73285 ], [ 4.308158, 47.749242 ], [ 4.309503, 47.75236 ], [ 4.318003, 47.750635 ], [ 4.331033, 47.756087 ], [ 4.32954, 47.769534 ], [ 4.330507, 47.77296 ], [ 4.335459, 47.77396 ], [ 4.33446, 47.77725 ], [ 4.327231, 47.78566 ], [ 4.338072, 47.79662 ], [ 4.340297, 47.79957 ], [ 4.323647, 47.809639 ], [ 4.319977, 47.811427 ], [ 4.324899, 47.82074 ], [ 4.32163, 47.83384 ], [ 4.328751, 47.84169 ], [ 4.324863, 47.847197 ], [ 4.294777, 47.84667 ], [ 4.271426, 47.84034 ], [ 4.262689, 47.84401 ], [ 4.26444, 47.871501 ], [ 4.247359, 47.87616 ], [ 4.266941, 47.88717 ], [ 4.27068, 47.89359 ], [ 4.273877, 47.89631 ], [ 4.28612, 47.90056 ], [ 4.300067, 47.901094 ], [ 4.308703, 47.90336 ], [ 4.312718, 47.90498 ], [ 4.306787, 47.91038 ], [ 4.305628, 47.9204 ], [ 4.29652, 47.92304 ], [ 4.293424, 47.92568 ], [ 4.30209, 47.93829 ], [ 4.300411, 47.94519 ], [ 4.299289, 47.94861 ], [ 4.305655, 47.954163 ], [ 4.312802, 47.962499 ], [ 4.347354, 47.956339 ], [ 4.371696, 47.96133 ], [ 4.392313, 47.962106 ], [ 4.416466, 47.96828 ], [ 4.433946, 47.961462 ], [ 4.438111, 47.959377 ], [ 4.446962, 47.9562 ], [ 4.495482, 47.96805 ], [ 4.516449, 47.966349 ], [ 4.531442, 47.969899 ], [ 4.552383, 47.96779 ], [ 4.55658, 47.96923 ], [ 4.559969, 47.971423 ], [ 4.555441, 47.98477 ], [ 4.542963, 47.990433 ], [ 4.535514, 48.003131 ], [ 4.535774, 48.00657 ], [ 4.5456, 48.004988 ], [ 4.552644, 48.009189 ], [ 4.55472, 48.012276 ], [ 4.563343, 48.0154 ], [ 4.578157, 48.02857 ], [ 4.612164, 48.03005 ], [ 4.616807, 48.031376 ], [ 4.619447, 48.02642 ], [ 4.621946, 48.024348 ], [ 4.647584, 48.02469 ], [ 4.67296, 48.01502 ], [ 4.700888, 48.02285 ], [ 4.704239, 48.020241 ], [ 4.717126, 48.011368 ], [ 4.719943, 48.008896 ], [ 4.749531, 48.00431 ], [ 4.784607, 48.006727 ], [ 4.78942, 48.00787 ], [ 4.796214, 47.9954 ], [ 4.807631, 47.98884 ], [ 4.795259, 47.98344 ], [ 4.785712, 47.971461 ], [ 4.787781, 47.965254 ], [ 4.796724, 47.96257 ], [ 4.801642, 47.96254 ], [ 4.810959, 47.95987 ], [ 4.819692, 47.96247 ], [ 4.845033, 47.96043 ], [ 4.856121, 47.95328 ], [ 4.863158, 47.94457 ], [ 4.86521, 47.941564 ], [ 4.845857, 47.922903 ], [ 4.829963, 47.91559 ], [ 4.829474, 47.912285 ], [ 4.834024, 47.90679 ], [ 4.853034, 47.897539 ], [ 4.856783, 47.895634 ], [ 4.874586, 47.919522 ], [ 4.894663, 47.9226 ], [ 4.903607, 47.91955 ], [ 4.905961, 47.91647 ], [ 4.916131, 47.896976 ], [ 4.919542, 47.89431 ], [ 4.923381, 47.892401 ], [ 4.928136, 47.88697 ], [ 4.927456, 47.871548 ], [ 4.944541, 47.866387 ], [ 4.954094, 47.86677 ], [ 4.962141, 47.854264 ], [ 4.961536, 47.84076 ], [ 4.973256, 47.8312 ], [ 4.984619, 47.82756 ], [ 4.984281, 47.82461 ], [ 4.984921, 47.82527 ], [ 4.99022, 47.82112 ], [ 4.994125, 47.819748 ], [ 4.992111, 47.81344 ], [ 4.986103, 47.8036 ], [ 4.955366, 47.789719 ], [ 4.947261, 47.78693 ], [ 4.943089, 47.785719 ], [ 4.939148, 47.78389 ], [ 4.917958, 47.77709 ], [ 4.921897, 47.77594 ], [ 4.920816, 47.767837 ], [ 4.9168, 47.76682 ], [ 4.921427, 47.765883 ], [ 4.924775, 47.76062 ], [ 4.939114, 47.76205 ], [ 4.946347, 47.76596 ], [ 4.954454, 47.762716 ], [ 4.958989, 47.76187 ], [ 4.965074, 47.74222 ], [ 4.960496, 47.73281 ], [ 4.964441, 47.734828 ], [ 4.971535, 47.73108 ], [ 4.970801, 47.72782 ], [ 4.964464, 47.72281 ], [ 4.964212, 47.713422 ], [ 4.956914, 47.709051 ], [ 4.953759, 47.706313 ], [ 4.956706, 47.69974 ], [ 4.971371, 47.69023 ], [ 4.96857, 47.68733 ], [ 4.993925, 47.689285 ], [ 5.002099, 47.693539 ], [ 5.00401, 47.700376 ], [ 5.008993, 47.70096 ], [ 5.029154, 47.70993 ], [ 5.033099, 47.70772 ], [ 5.031234, 47.694135 ], [ 5.056238, 47.69481 ], [ 5.046804, 47.67557 ], [ 5.052569, 47.669839 ], [ 5.062024, 47.66718 ], [ 5.067123, 47.667368 ], [ 5.076587, 47.664976 ], [ 5.082662, 47.659447 ], [ 5.102371, 47.65734 ], [ 5.107398, 47.65133 ], [ 5.116859, 47.65202 ], [ 5.117441, 47.650566 ], [ 5.127205, 47.64846 ], [ 5.136233, 47.65195 ], [ 5.155673, 47.66839 ], [ 5.160201, 47.678155 ], [ 5.173442, 47.68082 ], [ 5.178341, 47.68095 ], [ 5.17341, 47.653536 ], [ 5.176227, 47.651385 ], [ 5.188388, 47.649609 ], [ 5.211365, 47.64166 ], [ 5.237409, 47.6203 ], [ 5.236942, 47.61678 ], [ 5.240285, 47.61678 ], [ 5.242875, 47.6182 ], [ 5.246326, 47.620136 ], [ 5.258601, 47.622222 ], [ 5.25601, 47.61922 ], [ 5.239656, 47.597653 ], [ 5.25623, 47.576551 ], [ 5.273261, 47.580551 ], [ 5.277901, 47.581361 ], [ 5.278142, 47.588255 ], [ 5.306357, 47.607277 ], [ 5.316021, 47.607221 ], [ 5.3233, 47.611993 ], [ 5.333294, 47.61063 ], [ 5.337818, 47.60903 ], [ 5.343756, 47.603543 ], [ 5.342324, 47.59669 ], [ 5.355723, 47.59169 ], [ 5.358712, 47.59427 ], [ 5.365786, 47.60279 ], [ 5.374079, 47.604542 ], [ 5.378175, 47.603549 ], [ 5.389121, 47.595238 ], [ 5.396263, 47.595966 ], [ 5.399805, 47.59716 ], [ 5.422559, 47.629463 ], [ 5.425595, 47.63207 ], [ 5.440171, 47.629771 ], [ 5.468523, 47.611129 ], [ 5.471052, 47.60822 ], [ 5.478564, 47.60539 ], [ 5.486492, 47.57861 ], [ 5.48238, 47.56545 ], [ 5.491292, 47.563383 ], [ 5.496668, 47.55059 ], [ 5.49664, 47.54713 ], [ 5.487817, 47.52991 ], [ 5.486404, 47.52697 ], [ 5.471747, 47.52746 ], [ 5.469344, 47.52437 ], [ 5.453722, 47.5067 ], [ 5.451419, 47.504303 ], [ 5.44746, 47.4962 ], [ 5.44311, 47.494932 ], [ 5.436433, 47.49042 ], [ 5.43203, 47.491777 ], [ 5.427781, 47.49652 ], [ 5.399216, 47.499014 ], [ 5.397351, 47.49625 ], [ 5.391142, 47.48816 ], [ 5.388163, 47.48362 ], [ 5.387298, 47.481194 ], [ 5.403346, 47.477351 ], [ 5.407642, 47.47719 ], [ 5.404108, 47.475102 ], [ 5.379534, 47.46614 ], [ 5.370722, 47.464475 ], [ 5.381551, 47.459229 ], [ 5.380928, 47.45358 ], [ 5.379572, 47.45056 ], [ 5.409538, 47.46146 ], [ 5.413959, 47.459966 ], [ 5.418162, 47.450702 ], [ 5.431819, 47.44826 ], [ 5.435629, 47.45029 ], [ 5.441022, 47.44656 ], [ 5.43846, 47.44423 ], [ 5.430425, 47.42136 ], [ 5.442459, 47.40705 ], [ 5.433672, 47.39584 ], [ 5.433256, 47.392522 ], [ 5.449094, 47.38675 ], [ 5.451393, 47.38397 ], [ 5.477992, 47.39423 ], [ 5.496919, 47.38855 ], [ 5.491894, 47.372889 ], [ 5.489222, 47.36987 ], [ 5.488824, 47.35586 ], [ 5.490065, 47.354347 ], [ 5.494704, 47.338099 ], [ 5.48901, 47.32903 ], [ 5.477101, 47.326749 ], [ 5.47373, 47.324317 ], [ 5.47167, 47.318119 ], [ 5.47918, 47.31496 ], [ 5.498495, 47.314221 ], [ 5.509108, 47.30809 ], [ 5.513097, 47.30816 ], [ 5.518539, 47.304187 ], [ 5.516953, 47.30115 ], [ 5.508605, 47.29337 ], [ 5.505365, 47.284071 ], [ 5.501046, 47.28513 ], [ 5.493047, 47.28818 ], [ 5.488559, 47.28502 ], [ 5.488275, 47.282601 ], [ 5.488004, 47.280175 ], [ 5.487558, 47.26656 ], [ 5.483133, 47.26041 ], [ 5.480799, 47.25744 ], [ 5.484335, 47.23806 ], [ 5.48011, 47.23705 ], [ 5.475309, 47.231305 ], [ 5.479136, 47.21851 ], [ 5.474206, 47.21308 ], [ 5.470255, 47.2111 ], [ 5.449262, 47.20322 ], [ 5.446891, 47.200762 ], [ 5.452548, 47.19381 ], [ 5.456227, 47.191629 ], [ 5.458916, 47.18193 ], [ 5.45227, 47.166268 ], [ 5.450873, 47.162857 ], [ 5.448641, 47.159662 ], [ 5.445085, 47.15842 ], [ 5.438298, 47.152017 ], [ 5.439112, 47.148991 ], [ 5.438985, 47.14299 ], [ 5.428918, 47.13696 ], [ 5.424893, 47.13698 ], [ 5.414566, 47.13276 ], [ 5.414128, 47.129753 ], [ 5.409191, 47.12502 ], [ 5.412114, 47.11986 ], [ 5.411215, 47.116853 ], [ 5.400588, 47.10756 ], [ 5.398163, 47.10465 ], [ 5.39781, 47.09465 ], [ 5.391341, 47.08976 ], [ 5.390537, 47.086784 ], [ 5.377627, 47.079322 ], [ 5.363344, 47.07834 ], [ 5.35988, 47.08114 ], [ 5.357909, 47.0786 ], [ 5.345786, 47.076649 ], [ 5.341181, 47.07717 ], [ 5.332533, 47.076593 ], [ 5.323975, 47.07379 ], [ 5.310446, 47.06051 ], [ 5.301895, 47.060904 ], [ 5.29907, 47.05864 ], [ 5.295851, 47.05608 ], [ 5.283484, 47.046318 ], [ 5.275218, 47.027161 ], [ 5.275327, 47.02693 ], [ 5.279764, 47.025333 ], [ 5.317198, 47.015806 ], [ 5.31824, 47.01246 ], [ 5.313647, 47.011302 ], [ 5.303971, 47.01045 ], [ 5.298243, 47.00179 ], [ 5.279146, 46.99915 ], [ 5.27507, 46.99803 ], [ 5.271966, 46.989342 ], [ 5.267767, 46.988388 ], [ 5.255236, 46.979888 ] ] ], [ [ [ 4.181902, 47.150514 ], [ 4.188262, 47.14506 ], [ 4.187801, 47.137938 ], [ 4.172031, 47.11539 ], [ 4.167639, 47.11726 ], [ 4.160185, 47.12145 ], [ 4.150014, 47.11404 ], [ 4.137526, 47.119751 ], [ 4.130814, 47.12866 ], [ 4.126361, 47.13025 ], [ 4.118037, 47.126469 ], [ 4.115967, 47.123338 ], [ 4.108619, 47.131 ], [ 4.116374, 47.134688 ], [ 4.112572, 47.14356 ], [ 4.115724, 47.14602 ], [ 4.120584, 47.145524 ], [ 4.139461, 47.14329 ], [ 4.181902, 47.150514 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "21", "CODE_DEPT": "22", "NOM_DEPT": "COTES-D'ARMOR", "CODE_CHF": "278", "NOM_CHF": "SAINT-BRIEUC", "X_CHF_LIEU": "2749", "Y_CHF_LIEU": "68392", "X_CENTROID": "2666", "Y_CENTROID": "68317", "CODE_REG": "53", "NOM_REGION": "BRETAGNE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.287278, 48.133746 ], [ -2.292218, 48.132757 ], [ -2.306935, 48.13576 ], [ -2.316929, 48.13411 ], [ -2.322439, 48.12462 ], [ -2.330118, 48.120361 ], [ -2.346988, 48.1264 ], [ -2.357527, 48.111315 ], [ -2.36211, 48.113614 ], [ -2.365799, 48.115854 ], [ -2.374551, 48.1309 ], [ -2.374972, 48.13874 ], [ -2.375705, 48.14144 ], [ -2.380299, 48.143152 ], [ -2.399673, 48.15508 ], [ -2.407188, 48.16804 ], [ -2.420924, 48.173254 ], [ -2.447034, 48.172519 ], [ -2.451564, 48.17081 ], [ -2.460856, 48.16327 ], [ -2.485405, 48.164552 ], [ -2.488328, 48.15791 ], [ -2.534346, 48.15694 ], [ -2.533234, 48.15367 ], [ -2.515424, 48.13792 ], [ -2.514928, 48.131234 ], [ -2.520902, 48.122141 ], [ -2.534741, 48.10764 ], [ -2.546657, 48.10107 ], [ -2.551781, 48.09575 ], [ -2.548679, 48.07648 ], [ -2.553719, 48.07602 ], [ -2.564496, 48.069192 ], [ -2.579225, 48.06975 ], [ -2.580891, 48.06653 ], [ -2.582922, 48.06334 ], [ -2.623324, 48.0369 ], [ -2.643247, 48.03728 ], [ -2.64629, 48.040087 ], [ -2.655761, 48.03254 ], [ -2.660751, 48.037055 ], [ -2.657516, 48.0424 ], [ -2.659756, 48.044852 ], [ -2.668668, 48.04678 ], [ -2.667, 48.0567 ], [ -2.671327, 48.062907 ], [ -2.655691, 48.087965 ], [ -2.652594, 48.10721 ], [ -2.651812, 48.11061 ], [ -2.652644, 48.113471 ], [ -2.651993, 48.119971 ], [ -2.656567, 48.12128 ], [ -2.662597, 48.1304 ], [ -2.676227, 48.13182 ], [ -2.679521, 48.129499 ], [ -2.702304, 48.118727 ], [ -2.703982, 48.112429 ], [ -2.709032, 48.112915 ], [ -2.728458, 48.1165 ], [ -2.748166, 48.113871 ], [ -2.751404, 48.116509 ], [ -2.761983, 48.097144 ], [ -2.775249, 48.08704 ], [ -2.778113, 48.10608 ], [ -2.783476, 48.11137 ], [ -2.78195, 48.120327 ], [ -2.784964, 48.122615 ], [ -2.810401, 48.14655 ], [ -2.815509, 48.14654 ], [ -2.849797, 48.141211 ], [ -2.854805, 48.14236 ], [ -2.877949, 48.150917 ], [ -2.888056, 48.1621 ], [ -2.891453, 48.164734 ], [ -2.896018, 48.163341 ], [ -2.943871, 48.171702 ], [ -2.963583, 48.16933 ], [ -2.968085, 48.16788 ], [ -2.979469, 48.16132 ], [ -2.999753, 48.16071 ], [ -2.998049, 48.16731 ], [ -3.011584, 48.175161 ], [ -3.018569, 48.19131 ], [ -3.016147, 48.197994 ], [ -3.020859, 48.196706 ], [ -3.030742, 48.1965 ], [ -3.035975, 48.20235 ], [ -3.054889, 48.20647 ], [ -3.070056, 48.205229 ], [ -3.076967, 48.2099 ], [ -3.081694, 48.21003 ], [ -3.086394, 48.204666 ], [ -3.094792, 48.20304 ], [ -3.09757, 48.205578 ], [ -3.11534, 48.20677 ], [ -3.120273, 48.201 ], [ -3.129925, 48.19867 ], [ -3.136108, 48.189165 ], [ -3.136624, 48.18224 ], [ -3.130223, 48.17687 ], [ -3.132714, 48.17393 ], [ -3.147869, 48.161097 ], [ -3.161117, 48.16468 ], [ -3.173944, 48.159354 ], [ -3.178229, 48.16115 ], [ -3.183202, 48.161224 ], [ -3.192268, 48.16387 ], [ -3.201521, 48.161443 ], [ -3.214832, 48.151905 ], [ -3.211561, 48.142456 ], [ -3.238346, 48.15033 ], [ -3.252814, 48.14914 ], [ -3.2569, 48.147321 ], [ -3.269592, 48.14368 ], [ -3.271025, 48.14053 ], [ -3.275336, 48.142197 ], [ -3.284694, 48.143765 ], [ -3.291728, 48.15252 ], [ -3.300754, 48.155021 ], [ -3.315455, 48.15521 ], [ -3.318249, 48.1488 ], [ -3.322894, 48.14963 ], [ -3.324402, 48.158492 ], [ -3.336929, 48.171567 ], [ -3.341953, 48.17081 ], [ -3.34934, 48.166033 ], [ -3.374356, 48.162777 ], [ -3.389662, 48.15357 ], [ -3.403883, 48.155018 ], [ -3.408702, 48.14893 ], [ -3.417596, 48.14564 ], [ -3.42051, 48.148524 ], [ -3.433656, 48.1541 ], [ -3.437932, 48.16028 ], [ -3.422077, 48.173347 ], [ -3.445105, 48.18693 ], [ -3.446269, 48.18034 ], [ -3.450452, 48.178451 ], [ -3.470217, 48.179019 ], [ -3.480454, 48.18586 ], [ -3.484418, 48.184829 ], [ -3.496707, 48.182888 ], [ -3.501416, 48.181328 ], [ -3.532568, 48.178331 ], [ -3.553306, 48.17965 ], [ -3.55792, 48.180931 ], [ -3.564839, 48.185747 ], [ -3.566669, 48.190033 ], [ -3.543101, 48.193575 ], [ -3.519676, 48.19067 ], [ -3.521292, 48.197176 ], [ -3.522589, 48.203939 ], [ -3.54126, 48.2092 ], [ -3.556032, 48.22727 ], [ -3.556488, 48.230716 ], [ -3.553725, 48.24087 ], [ -3.544423, 48.24357 ], [ -3.539952, 48.24979 ], [ -3.540715, 48.253206 ], [ -3.522177, 48.25525 ], [ -3.526512, 48.2611 ], [ -3.52585, 48.2708 ], [ -3.517898, 48.28226 ], [ -3.522957, 48.28172 ], [ -3.530105, 48.286558 ], [ -3.553028, 48.293016 ], [ -3.552316, 48.299682 ], [ -3.547487, 48.29871 ], [ -3.539615, 48.30157 ], [ -3.528434, 48.31657 ], [ -3.518631, 48.31807 ], [ -3.52279, 48.32006 ], [ -3.529744, 48.320253 ], [ -3.541027, 48.31334 ], [ -3.549958, 48.31572 ], [ -3.556146, 48.34243 ], [ -3.562814, 48.34702 ], [ -3.553282, 48.37016 ], [ -3.554415, 48.37717 ], [ -3.603288, 48.38637 ], [ -3.607682, 48.388327 ], [ -3.603261, 48.39714 ], [ -3.603722, 48.40048 ], [ -3.600208, 48.4023 ], [ -3.598768, 48.422644 ], [ -3.585041, 48.433 ], [ -3.554192, 48.445378 ], [ -3.550496, 48.44783 ], [ -3.552517, 48.450752 ], [ -3.56894, 48.45294 ], [ -3.578885, 48.45952 ], [ -3.578692, 48.46273 ], [ -3.592163, 48.4645 ], [ -3.594945, 48.47043 ], [ -3.599593, 48.4708 ], [ -3.59807, 48.473897 ], [ -3.604904, 48.47825 ], [ -3.601798, 48.484415 ], [ -3.604168, 48.49405 ], [ -3.597677, 48.498591 ], [ -3.592834, 48.50004 ], [ -3.555746, 48.52961 ], [ -3.53928, 48.53825 ], [ -3.553824, 48.54128 ], [ -3.572694, 48.556768 ], [ -3.581724, 48.55397 ], [ -3.599429, 48.55861 ], [ -3.585718, 48.573269 ], [ -3.594583, 48.585749 ], [ -3.599568, 48.5846 ], [ -3.613731, 48.589224 ], [ -3.629298, 48.58836 ], [ -3.636745, 48.593329 ], [ -3.640603, 48.59606 ], [ -3.63988, 48.609114 ], [ -3.64898, 48.61163 ], [ -3.654181, 48.617296 ], [ -3.654996, 48.624011 ], [ -3.663536, 48.6538 ], [ -3.660776, 48.6563 ], [ -3.659144, 48.65921 ], [ -3.655794, 48.6619 ], [ -3.636285, 48.672962 ], [ -3.636223, 48.679763 ], [ -3.622656, 48.68478 ], [ -3.610471, 48.67048 ], [ -3.579907, 48.67072 ], [ -3.576666, 48.672799 ], [ -3.57323, 48.674731 ], [ -3.570849, 48.67715 ], [ -3.567527, 48.68248 ], [ -3.571512, 48.687173 ], [ -3.576781, 48.687658 ], [ -3.582421, 48.69303 ], [ -3.58223, 48.7209 ], [ -3.565525, 48.72884 ], [ -3.555638, 48.727463 ], [ -3.553658, 48.72919 ], [ -3.55202, 48.73244 ], [ -3.549401, 48.74568 ], [ -3.565277, 48.75937 ], [ -3.580931, 48.75826 ], [ -3.585326, 48.77143 ], [ -3.584574, 48.77487 ], [ -3.578672, 48.78814 ], [ -3.568224, 48.795613 ], [ -3.558964, 48.79357 ], [ -3.554765, 48.791462 ], [ -3.537043, 48.80326 ], [ -3.543996, 48.81456 ], [ -3.539439, 48.82407 ], [ -3.534326, 48.82417 ], [ -3.522374, 48.822044 ], [ -3.522641, 48.82864 ], [ -3.511402, 48.83527 ], [ -3.507134, 48.834698 ], [ -3.506506, 48.82826 ], [ -3.49751, 48.82955 ], [ -3.489828, 48.82561 ], [ -3.487924, 48.83225 ], [ -3.479774, 48.83584 ], [ -3.455885, 48.81716 ], [ -3.440325, 48.81907 ], [ -3.431644, 48.816935 ], [ -3.441985, 48.801687 ], [ -3.440556, 48.798308 ], [ -3.389007, 48.80353 ], [ -3.38832, 48.81317 ], [ -3.37089, 48.81799 ], [ -3.366095, 48.81878 ], [ -3.363714, 48.82154 ], [ -3.354268, 48.820396 ], [ -3.340193, 48.82868 ], [ -3.335394, 48.82844 ], [ -3.320151, 48.837158 ], [ -3.295382, 48.83294 ], [ -3.279846, 48.84134 ], [ -3.26956, 48.833907 ], [ -3.264317, 48.83429 ], [ -3.244291, 48.85781 ], [ -3.229731, 48.867396 ], [ -3.220365, 48.86592 ], [ -3.21025, 48.850034 ], [ -3.218747, 48.833877 ], [ -3.214518, 48.835992 ], [ -3.204927, 48.83498 ], [ -3.204076, 48.82819 ], [ -3.209784, 48.8111 ], [ -3.236463, 48.789811 ], [ -3.231366, 48.79023 ], [ -3.220742, 48.78405 ], [ -3.22235, 48.79728 ], [ -3.200366, 48.815979 ], [ -3.196733, 48.818396 ], [ -3.199135, 48.82457 ], [ -3.18979, 48.83697 ], [ -3.178404, 48.84328 ], [ -3.173605, 48.84188 ], [ -3.168111, 48.85179 ], [ -3.152552, 48.85269 ], [ -3.12614, 48.864491 ], [ -3.099976, 48.86802 ], [ -3.078562, 48.87864 ], [ -3.075429, 48.87933 ], [ -3.091327, 48.87052 ], [ -3.094591, 48.86618 ], [ -3.082446, 48.86462 ], [ -3.076111, 48.85838 ], [ -3.078761, 48.85777 ], [ -3.085134, 48.862 ], [ -3.094174, 48.85877 ], [ -3.089684, 48.8572 ], [ -3.083934, 48.84789 ], [ -3.099514, 48.83087 ], [ -3.078831, 48.83089 ], [ -3.097467, 48.80256 ], [ -3.100741, 48.785176 ], [ -3.112482, 48.77809 ], [ -3.116333, 48.77566 ], [ -3.125345, 48.772214 ], [ -3.122322, 48.765766 ], [ -3.120943, 48.759261 ], [ -3.118393, 48.761827 ], [ -3.111677, 48.765762 ], [ -3.102455, 48.76613 ], [ -3.099673, 48.769065 ], [ -3.102467, 48.779278 ], [ -3.094622, 48.78363 ], [ -3.085475, 48.81036 ], [ -3.08275, 48.81334 ], [ -3.065899, 48.82134 ], [ -3.047483, 48.81709 ], [ -3.02184, 48.821044 ], [ -3.012409, 48.818741 ], [ -3.013162, 48.808475 ], [ -3.006439, 48.803113 ], [ -3.008707, 48.80005 ], [ -3.045663, 48.78754 ], [ -3.044231, 48.784256 ], [ -3.014259, 48.78074 ], [ -3.023743, 48.778247 ], [ -3.022475, 48.77211 ], [ -3.01452, 48.76775 ], [ -2.990491, 48.763 ], [ -2.985223, 48.762986 ], [ -2.964352, 48.76314 ], [ -2.955368, 48.76666 ], [ -2.950639, 48.76587 ], [ -2.935677, 48.75646 ], [ -2.940076, 48.74383 ], [ -2.936787, 48.73411 ], [ -2.947904, 48.72721 ], [ -2.94733, 48.723735 ], [ -2.930429, 48.71669 ], [ -2.923258, 48.707445 ], [ -2.890432, 48.69722 ], [ -2.88077, 48.67424 ], [ -2.866802, 48.67235 ], [ -2.858037, 48.67506 ], [ -2.854192, 48.669191 ], [ -2.850298, 48.667254 ], [ -2.846013, 48.66559 ], [ -2.838061, 48.65755 ], [ -2.829383, 48.65579 ], [ -2.825845, 48.64336 ], [ -2.818239, 48.61784 ], [ -2.815727, 48.61165 ], [ -2.82409, 48.59918 ], [ -2.818894, 48.593427 ], [ -2.808791, 48.592082 ], [ -2.791891, 48.584717 ], [ -2.781723, 48.58522 ], [ -2.774171, 48.576533 ], [ -2.772318, 48.57034 ], [ -2.715854, 48.55445 ], [ -2.72332, 48.5457 ], [ -2.718108, 48.53604 ], [ -2.720945, 48.533165 ], [ -2.712566, 48.530808 ], [ -2.713246, 48.5226 ], [ -2.710096, 48.52036 ], [ -2.688137, 48.49607 ], [ -2.679743, 48.491734 ], [ -2.675613, 48.49107 ], [ -2.682992, 48.49617 ], [ -2.676733, 48.509421 ], [ -2.679776, 48.526962 ], [ -2.676851, 48.53342 ], [ -2.66661, 48.533408 ], [ -2.650645, 48.52465 ], [ -2.634931, 48.52472 ], [ -2.630161, 48.52632 ], [ -2.631562, 48.537962 ], [ -2.628061, 48.53989 ], [ -2.624696, 48.54244 ], [ -2.604088, 48.55228 ], [ -2.575347, 48.57589 ], [ -2.54872, 48.59711 ], [ -2.532836, 48.597585 ], [ -2.503488, 48.60575 ], [ -2.498812, 48.60743 ], [ -2.473552, 48.624612 ], [ -2.471383, 48.63481 ], [ -2.48048, 48.6384 ], [ -2.481466, 48.6443 ], [ -2.440638, 48.650998 ], [ -2.421298, 48.64625 ], [ -2.41904, 48.63247 ], [ -2.42093, 48.62919 ], [ -2.413467, 48.63409 ], [ -2.40899, 48.635915 ], [ -2.409649, 48.64149 ], [ -2.399274, 48.64313 ], [ -2.383443, 48.65215 ], [ -2.348606, 48.66103 ], [ -2.330177, 48.673271 ], [ -2.323202, 48.6827 ], [ -2.314163, 48.68257 ], [ -2.309416, 48.67177 ], [ -2.288826, 48.66402 ], [ -2.313598, 48.633542 ], [ -2.325024, 48.62754 ], [ -2.334237, 48.6216 ], [ -2.337472, 48.619726 ], [ -2.332971, 48.619323 ], [ -2.324054, 48.61856 ], [ -2.320317, 48.61363 ], [ -2.311882, 48.61185 ], [ -2.300098, 48.623146 ], [ -2.291082, 48.62516 ], [ -2.286485, 48.626772 ], [ -2.287136, 48.63025 ], [ -2.266618, 48.641771 ], [ -2.251023, 48.64469 ], [ -2.24935, 48.639947 ], [ -2.253578, 48.63357 ], [ -2.245189, 48.624787 ], [ -2.242342, 48.614699 ], [ -2.229431, 48.608497 ], [ -2.221975, 48.59523 ], [ -2.211413, 48.587707 ], [ -2.213362, 48.57386 ], [ -2.209127, 48.573626 ], [ -2.205559, 48.575441 ], [ -2.205425, 48.57887 ], [ -2.192343, 48.59353 ], [ -2.193838, 48.60723 ], [ -2.184907, 48.60461 ], [ -2.186743, 48.581331 ], [ -2.184179, 48.57876 ], [ -2.16711, 48.5772 ], [ -2.164792, 48.58014 ], [ -2.156707, 48.587704 ], [ -2.169694, 48.59716 ], [ -2.150263, 48.616514 ], [ -2.145314, 48.61748 ], [ -2.128852, 48.60475 ], [ -2.123708, 48.60441 ], [ -2.125942, 48.59753 ], [ -2.1249, 48.593415 ], [ -2.094333, 48.57172 ], [ -2.080555, 48.56804 ], [ -2.060069, 48.5701 ], [ -2.047377, 48.56412 ], [ -2.052745, 48.551913 ], [ -2.043228, 48.54206 ], [ -2.038784, 48.542 ], [ -2.033869, 48.551173 ], [ -2.021944, 48.55622 ], [ -2.019503, 48.55909 ], [ -2.010653, 48.564792 ], [ -2.006895, 48.56611 ], [ -2.002588, 48.56737 ], [ -1.992523, 48.5534 ], [ -1.995831, 48.55122 ], [ -1.990653, 48.55117 ], [ -1.985165, 48.54557 ], [ -1.975885, 48.54263 ], [ -1.973978, 48.53598 ], [ -1.975595, 48.532717 ], [ -1.989694, 48.523012 ], [ -1.984063, 48.51745 ], [ -1.983501, 48.50041 ], [ -1.988241, 48.499196 ], [ -1.992993, 48.500528 ], [ -1.999356, 48.494158 ], [ -2.001378, 48.491603 ], [ -1.98109, 48.49831 ], [ -1.976357, 48.49846 ], [ -1.980342, 48.50086 ], [ -1.980073, 48.508021 ], [ -1.969414, 48.51563 ], [ -1.966889, 48.52248 ], [ -1.962484, 48.524108 ], [ -1.950396, 48.52126 ], [ -1.948554, 48.535235 ], [ -1.948037, 48.53881 ], [ -1.935391, 48.54821 ], [ -1.933339, 48.55107 ], [ -1.931336, 48.55056 ], [ -1.924803, 48.54518 ], [ -1.925546, 48.53836 ], [ -1.918771, 48.53314 ], [ -1.911453, 48.516604 ], [ -1.911488, 48.50974 ], [ -1.922607, 48.499449 ], [ -1.910871, 48.48478 ], [ -1.908996, 48.481554 ], [ -1.92213, 48.47732 ], [ -1.926936, 48.476826 ], [ -1.930747, 48.47035 ], [ -1.925583, 48.4643 ], [ -1.925875, 48.45744 ], [ -1.938892, 48.44702 ], [ -1.94173, 48.44853 ], [ -1.948042, 48.44635 ], [ -1.94883, 48.43646 ], [ -1.952001, 48.429874 ], [ -1.938097, 48.419863 ], [ -1.941192, 48.410584 ], [ -1.938171, 48.40783 ], [ -1.940771, 48.401371 ], [ -1.934232, 48.39632 ], [ -1.930066, 48.39433 ], [ -1.93829, 48.38909 ], [ -1.939919, 48.38613 ], [ -1.945718, 48.37742 ], [ -1.946466, 48.36712 ], [ -1.932019, 48.35459 ], [ -1.930318, 48.34813 ], [ -1.947782, 48.34259 ], [ -1.966897, 48.34282 ], [ -1.956632, 48.321857 ], [ -1.955451, 48.3188 ], [ -1.964572, 48.30144 ], [ -1.958045, 48.29312 ], [ -1.967577, 48.29191 ], [ -1.976457, 48.30024 ], [ -1.991436, 48.29819 ], [ -1.996033, 48.296651 ], [ -2.001991, 48.291107 ], [ -2.004284, 48.28113 ], [ -2.014101, 48.279532 ], [ -2.046771, 48.28978 ], [ -2.054287, 48.298556 ], [ -2.077427, 48.291622 ], [ -2.076641, 48.284741 ], [ -2.08501, 48.276285 ], [ -2.11046, 48.27506 ], [ -2.109596, 48.268669 ], [ -2.099637, 48.26289 ], [ -2.108602, 48.254799 ], [ -2.106582, 48.25166 ], [ -2.124054, 48.259305 ], [ -2.150098, 48.25872 ], [ -2.152795, 48.26172 ], [ -2.156662, 48.259563 ], [ -2.177596, 48.25095 ], [ -2.181494, 48.24885 ], [ -2.187172, 48.244 ], [ -2.190271, 48.224213 ], [ -2.183945, 48.21518 ], [ -2.184188, 48.211902 ], [ -2.191935, 48.208224 ], [ -2.20177, 48.208098 ], [ -2.213882, 48.21366 ], [ -2.227979, 48.210916 ], [ -2.218781, 48.20332 ], [ -2.224021, 48.183921 ], [ -2.224738, 48.17061 ], [ -2.230046, 48.164725 ], [ -2.247311, 48.158051 ], [ -2.247684, 48.154626 ], [ -2.240403, 48.14997 ], [ -2.242035, 48.14497 ], [ -2.25222, 48.14536 ], [ -2.264725, 48.15102 ], [ -2.278612, 48.14678 ], [ -2.283248, 48.1453 ], [ -2.283879, 48.14231 ], [ -2.287278, 48.133746 ] ] ], [ [ [ -3.002321, 48.83632 ], [ -3.002946, 48.838068 ], [ -3.009881, 48.838251 ], [ -3.011475, 48.85015 ], [ -3.001406, 48.850773 ], [ -3.0003, 48.852199 ], [ -3.009889, 48.854874 ], [ -3.010852, 48.858126 ], [ -2.994243, 48.86369 ], [ -2.986806, 48.862725 ], [ -2.988831, 48.86013 ], [ -2.993824, 48.85898 ], [ -2.995478, 48.85199 ], [ -2.994244, 48.848517 ], [ -2.997264, 48.84555 ], [ -2.99718, 48.840198 ], [ -3.002321, 48.83632 ] ] ], [ [ [ -3.583878, 48.7941 ], [ -3.586225, 48.800775 ], [ -3.583052, 48.805282 ], [ -3.575124, 48.80525 ], [ -3.570556, 48.807055 ], [ -3.565473, 48.80651 ], [ -3.563515, 48.80334 ], [ -3.569843, 48.79794 ], [ -3.579816, 48.798385 ], [ -3.583878, 48.7941 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "22", "CODE_DEPT": "23", "NOM_DEPT": "CREUSE", "CODE_CHF": "096", "NOM_CHF": "GUERET", "X_CHF_LIEU": "6126", "Y_CHF_LIEU": "65640", "X_CENTROID": "6241", "Y_CENTROID": "65549", "CODE_REG": "74", "NOM_REGION": "LIMOUSIN" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.492126, 45.73767 ], [ 2.487671, 45.73686 ], [ 2.474037, 45.728996 ], [ 2.471361, 45.719727 ], [ 2.466775, 45.71935 ], [ 2.453993, 45.709243 ], [ 2.444511, 45.707567 ], [ 2.435856, 45.699275 ], [ 2.431662, 45.70099 ], [ 2.410602, 45.70901 ], [ 2.381776, 45.708627 ], [ 2.374044, 45.712718 ], [ 2.37093, 45.71294 ], [ 2.367805, 45.71312 ], [ 2.362824, 45.712529 ], [ 2.348543, 45.70921 ], [ 2.345206, 45.70667 ], [ 2.347585, 45.70004 ], [ 2.348835, 45.69316 ], [ 2.341309, 45.68422 ], [ 2.320098, 45.67054 ], [ 2.306856, 45.674584 ], [ 2.29798, 45.671512 ], [ 2.286451, 45.6651 ], [ 2.271641, 45.66424 ], [ 2.271074, 45.691648 ], [ 2.266579, 45.69055 ], [ 2.257715, 45.688436 ], [ 2.24665, 45.694288 ], [ 2.237879, 45.69293 ], [ 2.232023, 45.69821 ], [ 2.222647, 45.69783 ], [ 2.21268, 45.712786 ], [ 2.211855, 45.70939 ], [ 2.210924, 45.702562 ], [ 2.197924, 45.699454 ], [ 2.19386, 45.701397 ], [ 2.195961, 45.704519 ], [ 2.203401, 45.717134 ], [ 2.184581, 45.720556 ], [ 2.174253, 45.732035 ], [ 2.160912, 45.735836 ], [ 2.160591, 45.729854 ], [ 2.156851, 45.72131 ], [ 2.152469, 45.72287 ], [ 2.143627, 45.72508 ], [ 2.129914, 45.734502 ], [ 2.11409, 45.726878 ], [ 2.097347, 45.733337 ], [ 2.08469, 45.728048 ], [ 2.084469, 45.73596 ], [ 2.083935, 45.73946 ], [ 2.082889, 45.745972 ], [ 2.060696, 45.7538 ], [ 2.053694, 45.763057 ], [ 2.048767, 45.76373 ], [ 2.044947, 45.761444 ], [ 2.038881, 45.755863 ], [ 2.014127, 45.754487 ], [ 2.00152, 45.748793 ], [ 1.99766, 45.73183 ], [ 1.991336, 45.72249 ], [ 1.982496, 45.7194 ], [ 1.980317, 45.722496 ], [ 1.9562, 45.723716 ], [ 1.943714, 45.71365 ], [ 1.944024, 45.70684 ], [ 1.934638, 45.706305 ], [ 1.928036, 45.71138 ], [ 1.918664, 45.712069 ], [ 1.910664, 45.703788 ], [ 1.898731, 45.698278 ], [ 1.896599, 45.701409 ], [ 1.881175, 45.70909 ], [ 1.880786, 45.71244 ], [ 1.888536, 45.71637 ], [ 1.89247, 45.71827 ], [ 1.88352, 45.72603 ], [ 1.874752, 45.727228 ], [ 1.886413, 45.745194 ], [ 1.883401, 45.747848 ], [ 1.874175, 45.75554 ], [ 1.877298, 45.75822 ], [ 1.896354, 45.76007 ], [ 1.902149, 45.769546 ], [ 1.897805, 45.767955 ], [ 1.89149, 45.771667 ], [ 1.883805, 45.79471 ], [ 1.861212, 45.8071 ], [ 1.85631, 45.80692 ], [ 1.855481, 45.81026 ], [ 1.843092, 45.81398 ], [ 1.834272, 45.825449 ], [ 1.830678, 45.82303 ], [ 1.828963, 45.8128 ], [ 1.824792, 45.8109 ], [ 1.796208, 45.829508 ], [ 1.786571, 45.82954 ], [ 1.778194, 45.83321 ], [ 1.773224, 45.84291 ], [ 1.779369, 45.85233 ], [ 1.770776, 45.868374 ], [ 1.765811, 45.868987 ], [ 1.756992, 45.86617 ], [ 1.755837, 45.85566 ], [ 1.75168, 45.85484 ], [ 1.73972, 45.851389 ], [ 1.736078, 45.84891 ], [ 1.729643, 45.843513 ], [ 1.719883, 45.841511 ], [ 1.694896, 45.843765 ], [ 1.676873, 45.83764 ], [ 1.667341, 45.838616 ], [ 1.65992, 45.8338 ], [ 1.658734, 45.83701 ], [ 1.652828, 45.845631 ], [ 1.647909, 45.84496 ], [ 1.628475, 45.8476 ], [ 1.624643, 45.84984 ], [ 1.602398, 45.857465 ], [ 1.606992, 45.86648 ], [ 1.603689, 45.879294 ], [ 1.591033, 45.88307 ], [ 1.602085, 45.88968 ], [ 1.611897, 45.890302 ], [ 1.618304, 45.886832 ], [ 1.622337, 45.896266 ], [ 1.632501, 45.89001 ], [ 1.641483, 45.8924 ], [ 1.640017, 45.894327 ], [ 1.64157, 45.896219 ], [ 1.625928, 45.9157 ], [ 1.637132, 45.92598 ], [ 1.62801, 45.9264 ], [ 1.625778, 45.93259 ], [ 1.617812, 45.93011 ], [ 1.604934, 45.93306 ], [ 1.600532, 45.93155 ], [ 1.581065, 45.930664 ], [ 1.577143, 45.91762 ], [ 1.573076, 45.91571 ], [ 1.555829, 45.91946 ], [ 1.547265, 45.91683 ], [ 1.544139, 45.91939 ], [ 1.532402, 45.929845 ], [ 1.513591, 45.931 ], [ 1.508951, 45.94031 ], [ 1.517933, 45.94136 ], [ 1.516824, 45.947565 ], [ 1.518656, 45.9505 ], [ 1.536417, 45.9541 ], [ 1.556429, 45.96405 ], [ 1.566241, 45.963684 ], [ 1.574813, 45.975771 ], [ 1.577299, 45.97804 ], [ 1.57369, 45.986204 ], [ 1.570881, 45.9884 ], [ 1.568388, 45.996837 ], [ 1.564237, 45.997433 ], [ 1.537903, 45.99734 ], [ 1.536575, 46.000609 ], [ 1.532917, 46.01036 ], [ 1.538179, 46.026857 ], [ 1.548244, 46.03347 ], [ 1.535513, 46.050717 ], [ 1.536707, 46.05302 ], [ 1.532444, 46.058603 ], [ 1.542086, 46.074074 ], [ 1.536513, 46.078758 ], [ 1.527149, 46.079492 ], [ 1.525675, 46.089578 ], [ 1.512506, 46.09356 ], [ 1.507847, 46.089246 ], [ 1.500707, 46.09568 ], [ 1.499966, 46.10244 ], [ 1.488492, 46.10816 ], [ 1.493488, 46.11767 ], [ 1.504852, 46.123197 ], [ 1.502153, 46.12954 ], [ 1.494325, 46.13345 ], [ 1.495629, 46.140224 ], [ 1.481769, 46.138715 ], [ 1.470206, 46.14961 ], [ 1.451356, 46.152661 ], [ 1.465051, 46.16248 ], [ 1.458851, 46.17141 ], [ 1.460906, 46.177631 ], [ 1.452574, 46.18115 ], [ 1.448556, 46.17925 ], [ 1.43538, 46.17617 ], [ 1.428212, 46.179273 ], [ 1.418726, 46.17777 ], [ 1.406756, 46.183208 ], [ 1.401736, 46.183263 ], [ 1.395054, 46.195814 ], [ 1.387328, 46.19966 ], [ 1.374521, 46.21817 ], [ 1.379201, 46.2192 ], [ 1.395412, 46.23898 ], [ 1.40437, 46.2416 ], [ 1.413869, 46.24034 ], [ 1.418063, 46.24211 ], [ 1.419417, 46.248709 ], [ 1.407643, 46.25446 ], [ 1.406468, 46.26096 ], [ 1.415204, 46.269132 ], [ 1.424521, 46.26715 ], [ 1.436758, 46.27248 ], [ 1.430576, 46.27746 ], [ 1.417187, 46.279616 ], [ 1.425425, 46.29804 ], [ 1.429761, 46.29951 ], [ 1.442205, 46.303783 ], [ 1.43869, 46.323153 ], [ 1.445731, 46.330635 ], [ 1.444558, 46.333933 ], [ 1.430481, 46.333767 ], [ 1.409687, 46.341909 ], [ 1.411944, 46.344805 ], [ 1.415191, 46.34722 ], [ 1.43659, 46.35613 ], [ 1.437093, 46.36311 ], [ 1.445155, 46.37193 ], [ 1.463704, 46.37628 ], [ 1.479634, 46.393974 ], [ 1.493588, 46.39725 ], [ 1.496954, 46.394636 ], [ 1.497998, 46.39739 ], [ 1.500105, 46.405503 ], [ 1.509319, 46.412775 ], [ 1.510433, 46.41921 ], [ 1.521022, 46.42538 ], [ 1.525351, 46.426654 ], [ 1.534714, 46.4243 ], [ 1.543637, 46.416415 ], [ 1.546253, 46.395923 ], [ 1.555196, 46.395893 ], [ 1.569633, 46.40531 ], [ 1.574357, 46.406383 ], [ 1.577489, 46.409097 ], [ 1.592031, 46.4076 ], [ 1.604991, 46.421153 ], [ 1.609055, 46.42317 ], [ 1.621236, 46.419405 ], [ 1.614415, 46.403373 ], [ 1.627341, 46.389425 ], [ 1.64109, 46.38559 ], [ 1.651332, 46.392981 ], [ 1.65521, 46.395116 ], [ 1.661634, 46.4044 ], [ 1.679335, 46.416426 ], [ 1.683603, 46.41818 ], [ 1.7094, 46.39335 ], [ 1.727841, 46.38896 ], [ 1.72832, 46.39241 ], [ 1.745905, 46.40431 ], [ 1.750549, 46.405593 ], [ 1.748767, 46.412318 ], [ 1.759737, 46.42749 ], [ 1.75527, 46.437209 ], [ 1.758296, 46.43992 ], [ 1.752658, 46.445502 ], [ 1.750092, 46.447743 ], [ 1.74759, 46.45002 ], [ 1.784546, 46.455077 ], [ 1.793694, 46.45385 ], [ 1.798244, 46.45491 ], [ 1.802116, 46.44828 ], [ 1.816986, 46.4385 ], [ 1.818455, 46.431423 ], [ 1.84257, 46.42681 ], [ 1.853747, 46.43347 ], [ 1.878921, 46.432375 ], [ 1.883956, 46.43265 ], [ 1.88768, 46.440989 ], [ 1.895331, 46.43824 ], [ 1.899831, 46.438567 ], [ 1.911556, 46.44309 ], [ 1.919538, 46.43996 ], [ 1.92287, 46.434149 ], [ 1.926119, 46.43191 ], [ 1.976055, 46.4395 ], [ 1.981108, 46.440285 ], [ 1.986597, 46.435786 ], [ 1.990776, 46.435229 ], [ 1.993082, 46.43092 ], [ 2.026334, 46.427216 ], [ 2.029415, 46.42459 ], [ 2.058493, 46.420876 ], [ 2.063459, 46.42135 ], [ 2.072452, 46.420108 ], [ 2.084371, 46.41129 ], [ 2.088749, 46.41034 ], [ 2.088623, 46.41007 ], [ 2.10344, 46.41076 ], [ 2.115972, 46.421534 ], [ 2.140603, 46.421101 ], [ 2.149206, 46.4239 ], [ 2.167786, 46.42408 ], [ 2.180482, 46.4232 ], [ 2.184897, 46.42315 ], [ 2.194075, 46.42597 ], [ 2.197831, 46.428298 ], [ 2.220649, 46.423584 ], [ 2.248883, 46.426259 ], [ 2.253658, 46.425651 ], [ 2.256961, 46.423133 ], [ 2.276283, 46.421276 ], [ 2.281048, 46.420405 ], [ 2.279481, 46.41384 ], [ 2.282033, 46.41082 ], [ 2.278416, 46.40865 ], [ 2.284576, 46.38962 ], [ 2.284789, 46.386309 ], [ 2.286936, 46.38331 ], [ 2.300942, 46.381861 ], [ 2.312479, 46.37606 ], [ 2.331406, 46.37841 ], [ 2.335475, 46.372324 ], [ 2.336464, 46.36904 ], [ 2.337142, 46.365742 ], [ 2.323262, 46.365778 ], [ 2.309602, 46.356592 ], [ 2.307829, 46.347666 ], [ 2.30211, 46.34236 ], [ 2.31162, 46.34097 ], [ 2.314586, 46.33464 ], [ 2.334254, 46.32517 ], [ 2.357932, 46.323367 ], [ 2.36621, 46.31117 ], [ 2.37061, 46.31272 ], [ 2.383785, 46.329129 ], [ 2.38608, 46.33197 ], [ 2.388164, 46.33157 ], [ 2.415901, 46.311351 ], [ 2.420657, 46.31013 ], [ 2.415615, 46.297932 ], [ 2.421374, 46.285327 ], [ 2.426006, 46.28453 ], [ 2.430241, 46.290739 ], [ 2.438446, 46.29366 ], [ 2.443032, 46.294999 ], [ 2.470215, 46.28635 ], [ 2.4803, 46.278831 ], [ 2.47958, 46.27539 ], [ 2.477773, 46.26881 ], [ 2.487941, 46.253354 ], [ 2.48892, 46.250009 ], [ 2.50198, 46.246978 ], [ 2.511509, 46.23952 ], [ 2.516311, 46.23944 ], [ 2.515203, 46.238543 ], [ 2.521757, 46.20277 ], [ 2.528303, 46.19419 ], [ 2.526102, 46.18782 ], [ 2.528499, 46.184939 ], [ 2.541834, 46.17629 ], [ 2.55459, 46.174634 ], [ 2.559155, 46.174409 ], [ 2.565379, 46.143041 ], [ 2.563985, 46.14081 ], [ 2.559208, 46.13873 ], [ 2.559959, 46.13228 ], [ 2.554641, 46.1205 ], [ 2.550523, 46.118958 ], [ 2.549019, 46.112802 ], [ 2.550966, 46.09961 ], [ 2.552621, 46.093401 ], [ 2.550659, 46.08644 ], [ 2.554677, 46.07613 ], [ 2.573497, 46.047006 ], [ 2.599212, 46.03549 ], [ 2.602696, 46.032875 ], [ 2.600116, 46.0303 ], [ 2.601761, 46.02106 ], [ 2.598287, 46.01525 ], [ 2.598839, 46.008656 ], [ 2.593557, 45.99938 ], [ 2.596791, 45.98665 ], [ 2.600091, 45.98405 ], [ 2.610789, 45.972732 ], [ 2.60683, 45.966424 ], [ 2.602149, 45.96552 ], [ 2.565828, 45.95686 ], [ 2.568835, 45.947141 ], [ 2.551637, 45.94127 ], [ 2.553174, 45.93797 ], [ 2.544087, 45.93027 ], [ 2.542608, 45.92342 ], [ 2.54389, 45.91661 ], [ 2.55784, 45.91296 ], [ 2.553196, 45.911393 ], [ 2.549707, 45.9089 ], [ 2.511845, 45.887124 ], [ 2.502119, 45.886082 ], [ 2.50158, 45.875787 ], [ 2.492225, 45.86403 ], [ 2.487571, 45.864216 ], [ 2.47428, 45.87116 ], [ 2.465267, 45.871353 ], [ 2.465349, 45.86821 ], [ 2.443424, 45.86674 ], [ 2.442696, 45.863508 ], [ 2.443406, 45.857 ], [ 2.449666, 45.85222 ], [ 2.447823, 45.84582 ], [ 2.438951, 45.846497 ], [ 2.432688, 45.839001 ], [ 2.426321, 45.8343 ], [ 2.40211, 45.83712 ], [ 2.38802, 45.82738 ], [ 2.389333, 45.82402 ], [ 2.430863, 45.788617 ], [ 2.433456, 45.773024 ], [ 2.434119, 45.769857 ], [ 2.442298, 45.761406 ], [ 2.450513, 45.75943 ], [ 2.454754, 45.76116 ], [ 2.46699, 45.75578 ], [ 2.471269, 45.749497 ], [ 2.485224, 45.74686 ], [ 2.492126, 45.73767 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "23", "CODE_DEPT": "24", "NOM_DEPT": "DORDOGNE", "CODE_CHF": "322", "NOM_CHF": "PERIGUEUX", "X_CHF_LIEU": "5207", "Y_CHF_LIEU": "64564", "X_CENTROID": "5223", "Y_CENTROID": "64475", "CODE_REG": "72", "NOM_REGION": "AQUITAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.448262, 45.019313 ], [ 1.433023, 45.01077 ], [ 1.40913, 45.00673 ], [ 1.414987, 44.993566 ], [ 1.414261, 44.97391 ], [ 1.419568, 44.968397 ], [ 1.41899, 44.95828 ], [ 1.428611, 44.946309 ], [ 1.433462, 44.946044 ], [ 1.4331, 44.937214 ], [ 1.441562, 44.918782 ], [ 1.423629, 44.918268 ], [ 1.410526, 44.908788 ], [ 1.418269, 44.907448 ], [ 1.419672, 44.899003 ], [ 1.421836, 44.89641 ], [ 1.435732, 44.889676 ], [ 1.439857, 44.888951 ], [ 1.442508, 44.881063 ], [ 1.442178, 44.87835 ], [ 1.439858, 44.875245 ], [ 1.431431, 44.87177 ], [ 1.416778, 44.8709 ], [ 1.414009, 44.871655 ], [ 1.411446, 44.87271 ], [ 1.409292, 44.864725 ], [ 1.405462, 44.86314 ], [ 1.402862, 44.85081 ], [ 1.402507, 44.849049 ], [ 1.388593, 44.849992 ], [ 1.378341, 44.84335 ], [ 1.365459, 44.84497 ], [ 1.360801, 44.83889 ], [ 1.364103, 44.811568 ], [ 1.360244, 44.81116 ], [ 1.356551, 44.81025 ], [ 1.352501, 44.808578 ], [ 1.325507, 44.806012 ], [ 1.321845, 44.804111 ], [ 1.301166, 44.797744 ], [ 1.293311, 44.789852 ], [ 1.30262, 44.78896 ], [ 1.303806, 44.785691 ], [ 1.297154, 44.77697 ], [ 1.303951, 44.7725 ], [ 1.308133, 44.7709 ], [ 1.321535, 44.761097 ], [ 1.316051, 44.740375 ], [ 1.312139, 44.74149 ], [ 1.30019, 44.744284 ], [ 1.297181, 44.73806 ], [ 1.299421, 44.731674 ], [ 1.287021, 44.71446 ], [ 1.282721, 44.7151 ], [ 1.270041, 44.72209 ], [ 1.268091, 44.71896 ], [ 1.261542, 44.71018 ], [ 1.244638, 44.70475 ], [ 1.242933, 44.694636 ], [ 1.230001, 44.69115 ], [ 1.224707, 44.68571 ], [ 1.22455, 44.68427 ], [ 1.219796, 44.68332 ], [ 1.180561, 44.682687 ], [ 1.166974, 44.67859 ], [ 1.161061, 44.672964 ], [ 1.146733, 44.670797 ], [ 1.146901, 44.66758 ], [ 1.149825, 44.655027 ], [ 1.146516, 44.65285 ], [ 1.15255, 44.63618 ], [ 1.150893, 44.632856 ], [ 1.146642, 44.63136 ], [ 1.127289, 44.616772 ], [ 1.123622, 44.614828 ], [ 1.107396, 44.603961 ], [ 1.096152, 44.593124 ], [ 1.103467, 44.58097 ], [ 1.099504, 44.580043 ], [ 1.10321, 44.57174 ], [ 1.098607, 44.57189 ], [ 1.085075, 44.57195 ], [ 1.076483, 44.57417 ], [ 1.075141, 44.57732 ], [ 1.077766, 44.583845 ], [ 1.071021, 44.596119 ], [ 1.056876, 44.59771 ], [ 1.046781, 44.604959 ], [ 1.033401, 44.608369 ], [ 1.029019, 44.60966 ], [ 1.012502, 44.61583 ], [ 0.997505, 44.62949 ], [ 0.995923, 44.632821 ], [ 0.977296, 44.642992 ], [ 0.966655, 44.636195 ], [ 0.944179, 44.640355 ], [ 0.939393, 44.63981 ], [ 0.926654, 44.635 ], [ 0.914685, 44.624745 ], [ 0.911162, 44.62317 ], [ 0.907453, 44.62186 ], [ 0.895557, 44.61593 ], [ 0.876301, 44.613963 ], [ 0.869996, 44.59732 ], [ 0.865974, 44.598013 ], [ 0.857727, 44.598106 ], [ 0.853389, 44.59948 ], [ 0.835146, 44.6022 ], [ 0.837936, 44.614922 ], [ 0.82929, 44.612852 ], [ 0.826465, 44.61516 ], [ 0.825021, 44.62122 ], [ 0.817004, 44.62701 ], [ 0.835656, 44.636879 ], [ 0.835063, 44.653294 ], [ 0.843061, 44.656287 ], [ 0.84337, 44.66272 ], [ 0.84865, 44.667221 ], [ 0.852444, 44.668979 ], [ 0.848411, 44.67017 ], [ 0.83544, 44.670422 ], [ 0.825838, 44.6759 ], [ 0.829354, 44.68062 ], [ 0.831074, 44.68317 ], [ 0.82861, 44.68977 ], [ 0.817888, 44.696709 ], [ 0.79947, 44.700775 ], [ 0.788386, 44.695241 ], [ 0.787299, 44.68529 ], [ 0.783217, 44.684113 ], [ 0.763141, 44.689924 ], [ 0.760052, 44.680305 ], [ 0.746133, 44.68175 ], [ 0.729134, 44.67599 ], [ 0.724522, 44.677041 ], [ 0.696058, 44.67701 ], [ 0.692439, 44.676619 ], [ 0.685312, 44.675561 ], [ 0.680587, 44.67628 ], [ 0.657434, 44.67786 ], [ 0.657142, 44.68701 ], [ 0.655629, 44.68998 ], [ 0.65546, 44.693432 ], [ 0.644297, 44.70432 ], [ 0.63036, 44.70657 ], [ 0.627378, 44.704218 ], [ 0.621799, 44.699352 ], [ 0.623614, 44.69315 ], [ 0.620018, 44.691297 ], [ 0.616758, 44.69343 ], [ 0.591392, 44.696938 ], [ 0.58749, 44.698699 ], [ 0.576468, 44.693063 ], [ 0.567171, 44.671513 ], [ 0.562454, 44.6723 ], [ 0.546558, 44.66515 ], [ 0.538778, 44.66844 ], [ 0.534406, 44.67461 ], [ 0.530741, 44.67673 ], [ 0.521659, 44.67858 ], [ 0.516743, 44.67811 ], [ 0.495626, 44.669808 ], [ 0.488043, 44.666907 ], [ 0.47053, 44.66958 ], [ 0.467953, 44.666809 ], [ 0.451989, 44.655588 ], [ 0.447578, 44.654082 ], [ 0.429293, 44.65074 ], [ 0.416954, 44.64521 ], [ 0.39101, 44.654527 ], [ 0.37674, 44.65393 ], [ 0.36662, 44.6612 ], [ 0.355528, 44.65496 ], [ 0.351812, 44.65562 ], [ 0.349598, 44.660847 ], [ 0.350448, 44.674965 ], [ 0.359541, 44.69132 ], [ 0.356731, 44.694158 ], [ 0.341479, 44.70237 ], [ 0.343484, 44.709136 ], [ 0.347871, 44.710395 ], [ 0.347345, 44.720489 ], [ 0.34502, 44.72342 ], [ 0.341042, 44.725526 ], [ 0.336793, 44.735477 ], [ 0.307009, 44.758097 ], [ 0.303376, 44.75898 ], [ 0.297325, 44.76229 ], [ 0.293688, 44.76457 ], [ 0.280226, 44.774397 ], [ 0.274025, 44.783622 ], [ 0.271666, 44.78634 ], [ 0.27435, 44.79568 ], [ 0.274681, 44.79877 ], [ 0.265975, 44.81259 ], [ 0.263979, 44.8229 ], [ 0.263719, 44.826421 ], [ 0.268305, 44.826353 ], [ 0.285758, 44.82302 ], [ 0.29246, 44.83157 ], [ 0.300752, 44.82919 ], [ 0.299577, 44.83546 ], [ 0.315056, 44.84538 ], [ 0.311876, 44.847777 ], [ 0.288047, 44.86318 ], [ 0.284058, 44.864991 ], [ 0.239023, 44.87198 ], [ 0.243751, 44.85955 ], [ 0.241753, 44.8569 ], [ 0.238317, 44.854926 ], [ 0.22209, 44.84448 ], [ 0.217722, 44.84395 ], [ 0.209733, 44.841373 ], [ 0.206411, 44.838902 ], [ 0.192844, 44.820803 ], [ 0.189312, 44.82005 ], [ 0.184076, 44.823481 ], [ 0.182194, 44.82493 ], [ 0.17755, 44.82614 ], [ 0.157907, 44.82632 ], [ 0.148828, 44.82909 ], [ 0.124248, 44.827991 ], [ 0.114803, 44.81986 ], [ 0.114027, 44.819446 ], [ 0.109285, 44.820097 ], [ 0.108644, 44.830333 ], [ 0.095753, 44.83282 ], [ 0.091294, 44.83264 ], [ 0.082667, 44.831013 ], [ 0.075697, 44.81947 ], [ 0.070891, 44.819144 ], [ 0.064887, 44.82454 ], [ 0.050846, 44.82433 ], [ 0.047816, 44.82441 ], [ 0.043329, 44.825728 ], [ 0.037439, 44.83082 ], [ 0.039033, 44.837569 ], [ 0.022247, 44.84942 ], [ 0.008881, 44.845923 ], [ 0.003987, 44.84556 ], [ -0.03421, 44.852114 ], [ -0.032557, 44.855286 ], [ -0.010036, 44.859792 ], [ -0.004807, 44.868592 ], [ -0.001536, 44.87069 ], [ 0.001218, 44.87605 ], [ 0.001093, 44.87627 ], [ 0.012617, 44.8852 ], [ 0.014971, 44.89123 ], [ 0.015948, 44.894307 ], [ 0.01719, 44.894782 ], [ 0.02043, 44.897257 ], [ 0.033907, 44.91496 ], [ 0.022059, 44.92531 ], [ 0.018212, 44.928029 ], [ 0.016192, 44.931192 ], [ 0.005127, 44.94624 ], [ 0.00923, 44.962774 ], [ 0.014522, 44.97207 ], [ 0.013706, 44.978806 ], [ 0.017709, 44.98063 ], [ 0.029545, 44.97648 ], [ 0.036635, 44.991484 ], [ 0.040106, 44.99355 ], [ 0.035641, 45.01434 ], [ 0.039453, 45.02081 ], [ 0.03914, 45.02431 ], [ 0.040691, 45.02214 ], [ 0.042155, 45.025446 ], [ 0.044806, 45.035635 ], [ 0.055929, 45.04207 ], [ 0.073296, 45.07013 ], [ 0.072345, 45.0747 ], [ 0.070631, 45.076106 ], [ 0.067585, 45.0789 ], [ 0.061888, 45.09584 ], [ 0.045793, 45.11346 ], [ 0.031843, 45.11712 ], [ 0.006979, 45.117781 ], [ 0.00251, 45.119003 ], [ -0.025092, 45.11473 ], [ -0.0402, 45.10238 ], [ -0.041524, 45.112683 ], [ -0.02963, 45.12778 ], [ -0.035312, 45.137245 ], [ -0.036728, 45.140567 ], [ -0.001528, 45.15082 ], [ 0.003268, 45.15566 ], [ 0.000368, 45.15843 ], [ -0.014091, 45.15992 ], [ -0.019062, 45.165177 ], [ -0.002052, 45.181171 ], [ 0.001677, 45.18339 ], [ 0.004331, 45.19163 ], [ 0.010324, 45.202732 ], [ 0.033859, 45.20837 ], [ 0.036594, 45.211353 ], [ 0.051213, 45.22538 ], [ 0.055582, 45.227164 ], [ 0.066433, 45.22062 ], [ 0.076064, 45.22027 ], [ 0.0884, 45.22526 ], [ 0.092006, 45.227515 ], [ 0.100037, 45.22607 ], [ 0.111422, 45.21698 ], [ 0.114272, 45.214622 ], [ 0.115844, 45.213572 ], [ 0.132319, 45.209 ], [ 0.140998, 45.214751 ], [ 0.145486, 45.214487 ], [ 0.148209, 45.22456 ], [ 0.157828, 45.22645 ], [ 0.174738, 45.23921 ], [ 0.171342, 45.248329 ], [ 0.172293, 45.25171 ], [ 0.176696, 45.25596 ], [ 0.174862, 45.261437 ], [ 0.200767, 45.261828 ], [ 0.204416, 45.263604 ], [ 0.210296, 45.271274 ], [ 0.210596, 45.2742 ], [ 0.220092, 45.287223 ], [ 0.220912, 45.29022 ], [ 0.243136, 45.29175 ], [ 0.246868, 45.28984 ], [ 0.249597, 45.28859 ], [ 0.252621, 45.2894 ], [ 0.262719, 45.29587 ], [ 0.266609, 45.297749 ], [ 0.270634, 45.314605 ], [ 0.264905, 45.33453 ], [ 0.264588, 45.334748 ], [ 0.258533, 45.350051 ], [ 0.256966, 45.353067 ], [ 0.250217, 45.360614 ], [ 0.249431, 45.36359 ], [ 0.253457, 45.380939 ], [ 0.262875, 45.39686 ], [ 0.265268, 45.40543 ], [ 0.267624, 45.40798 ], [ 0.27155, 45.41608 ], [ 0.27086, 45.41893 ], [ 0.278402, 45.42716 ], [ 0.289959, 45.432617 ], [ 0.298855, 45.43229 ], [ 0.303543, 45.43194 ], [ 0.316234, 45.43598 ], [ 0.303213, 45.44559 ], [ 0.302619, 45.45889 ], [ 0.310781, 45.45876 ], [ 0.329155, 45.44378 ], [ 0.333389, 45.45318 ], [ 0.334363, 45.459819 ], [ 0.334668, 45.46014 ], [ 0.356707, 45.46622 ], [ 0.363133, 45.47515 ], [ 0.372947, 45.475865 ], [ 0.378867, 45.480671 ], [ 0.378384, 45.484128 ], [ 0.408356, 45.49178 ], [ 0.419259, 45.48595 ], [ 0.422921, 45.483781 ], [ 0.426875, 45.485782 ], [ 0.431738, 45.485596 ], [ 0.432763, 45.50165 ], [ 0.443656, 45.51188 ], [ 0.446105, 45.514637 ], [ 0.450893, 45.51865 ], [ 0.449305, 45.52392 ], [ 0.457779, 45.52556 ], [ 0.464307, 45.53359 ], [ 0.465737, 45.539623 ], [ 0.46967, 45.53884 ], [ 0.473715, 45.538407 ], [ 0.48327, 45.538891 ], [ 0.499202, 45.545788 ], [ 0.506549, 45.55434 ], [ 0.50227, 45.562802 ], [ 0.498576, 45.56478 ], [ 0.516324, 45.58806 ], [ 0.512189, 45.59385 ], [ 0.516143, 45.599246 ], [ 0.513312, 45.60543 ], [ 0.503838, 45.61257 ], [ 0.501441, 45.615353 ], [ 0.500403, 45.619564 ], [ 0.508422, 45.6214 ], [ 0.512657, 45.63146 ], [ 0.525833, 45.641785 ], [ 0.535418, 45.64286 ], [ 0.537079, 45.631509 ], [ 0.538448, 45.628737 ], [ 0.550448, 45.6341 ], [ 0.564535, 45.6344 ], [ 0.575447, 45.640928 ], [ 0.573663, 45.644124 ], [ 0.567032, 45.65326 ], [ 0.587634, 45.66129 ], [ 0.58746, 45.66794 ], [ 0.600389, 45.671733 ], [ 0.596594, 45.67687 ], [ 0.602126, 45.68177 ], [ 0.605006, 45.694218 ], [ 0.613217, 45.69402 ], [ 0.627671, 45.708 ], [ 0.629742, 45.71457 ], [ 0.637778, 45.70198 ], [ 0.650294, 45.697586 ], [ 0.653606, 45.69103 ], [ 0.662086, 45.68748 ], [ 0.676533, 45.68841 ], [ 0.681304, 45.687445 ], [ 0.694223, 45.690494 ], [ 0.702599, 45.687846 ], [ 0.713127, 45.694042 ], [ 0.722051, 45.69461 ], [ 0.744137, 45.68826 ], [ 0.760468, 45.670949 ], [ 0.77397, 45.66781 ], [ 0.775643, 45.667746 ], [ 0.763951, 45.6315 ], [ 0.753737, 45.619602 ], [ 0.750613, 45.616873 ], [ 0.767445, 45.60439 ], [ 0.777188, 45.59217 ], [ 0.801392, 45.59593 ], [ 0.805857, 45.594966 ], [ 0.810565, 45.57909 ], [ 0.8115, 45.57587 ], [ 0.839996, 45.581304 ], [ 0.848144, 45.589847 ], [ 0.849461, 45.593259 ], [ 0.858099, 45.6098 ], [ 0.8597, 45.613191 ], [ 0.866884, 45.62097 ], [ 0.869353, 45.62353 ], [ 0.876966, 45.61984 ], [ 0.881222, 45.61059 ], [ 0.890345, 45.60325 ], [ 0.89374, 45.60103 ], [ 0.898605, 45.600323 ], [ 0.904489, 45.60593 ], [ 0.918839, 45.605185 ], [ 0.946322, 45.61296 ], [ 0.959802, 45.608692 ], [ 0.969549, 45.60994 ], [ 0.97569, 45.604493 ], [ 0.989587, 45.607355 ], [ 0.995823, 45.612708 ], [ 1.02011, 45.60974 ], [ 1.032964, 45.59906 ], [ 1.039334, 45.58584 ], [ 1.034704, 45.579661 ], [ 1.037977, 45.569468 ], [ 1.047749, 45.557829 ], [ 1.056478, 45.5546 ], [ 1.061386, 45.5543 ], [ 1.061699, 45.554891 ], [ 1.074201, 45.545612 ], [ 1.081118, 45.533561 ], [ 1.084638, 45.531442 ], [ 1.086024, 45.53474 ], [ 1.104331, 45.53909 ], [ 1.109717, 45.544666 ], [ 1.119312, 45.545962 ], [ 1.128288, 45.54322 ], [ 1.132364, 45.541325 ], [ 1.165365, 45.526367 ], [ 1.164273, 45.522954 ], [ 1.147483, 45.515418 ], [ 1.134423, 45.50488 ], [ 1.12289, 45.48947 ], [ 1.118436, 45.487904 ], [ 1.119623, 45.47779 ], [ 1.131013, 45.472253 ], [ 1.149887, 45.473268 ], [ 1.158185, 45.476674 ], [ 1.162444, 45.47835 ], [ 1.175344, 45.468794 ], [ 1.177031, 45.45872 ], [ 1.185123, 45.4551 ], [ 1.212123, 45.46237 ], [ 1.233962, 45.45501 ], [ 1.237444, 45.438848 ], [ 1.242025, 45.437605 ], [ 1.250141, 45.44149 ], [ 1.253152, 45.44422 ], [ 1.269663, 45.439936 ], [ 1.272393, 45.437303 ], [ 1.288271, 45.433529 ], [ 1.289382, 45.42068 ], [ 1.289192, 45.4173 ], [ 1.279872, 45.41513 ], [ 1.265645, 45.417798 ], [ 1.258724, 45.41379 ], [ 1.260222, 45.40025 ], [ 1.26411, 45.39816 ], [ 1.277897, 45.39923 ], [ 1.274016, 45.39287 ], [ 1.281683, 45.38509 ], [ 1.29964, 45.39431 ], [ 1.318722, 45.38428 ], [ 1.323231, 45.38312 ], [ 1.319877, 45.367205 ], [ 1.311868, 45.35955 ], [ 1.307725, 45.357971 ], [ 1.302753, 45.358067 ], [ 1.285155, 45.35205 ], [ 1.281923, 45.34213 ], [ 1.274091, 45.32988 ], [ 1.2599, 45.32065 ], [ 1.240647, 45.322279 ], [ 1.235803, 45.32204 ], [ 1.240886, 45.305423 ], [ 1.2384, 45.3025 ], [ 1.241603, 45.301309 ], [ 1.238945, 45.29172 ], [ 1.232076, 45.287838 ], [ 1.22706, 45.271844 ], [ 1.238364, 45.268114 ], [ 1.240207, 45.263468 ], [ 1.239385, 45.260447 ], [ 1.257397, 45.254983 ], [ 1.271874, 45.25731 ], [ 1.276285, 45.2557 ], [ 1.277687, 45.242085 ], [ 1.260952, 45.229695 ], [ 1.238262, 45.223314 ], [ 1.233608, 45.222195 ], [ 1.233398, 45.21958 ], [ 1.231275, 45.214566 ], [ 1.228376, 45.20436 ], [ 1.233456, 45.19842 ], [ 1.272148, 45.201147 ], [ 1.286019, 45.191265 ], [ 1.289594, 45.188879 ], [ 1.2914, 45.18565 ], [ 1.285709, 45.176048 ], [ 1.281525, 45.174228 ], [ 1.277911, 45.17209 ], [ 1.268222, 45.16508 ], [ 1.255055, 45.16477 ], [ 1.254436, 45.158506 ], [ 1.280205, 45.14927 ], [ 1.290473, 45.14188 ], [ 1.308754, 45.137016 ], [ 1.320997, 45.14245 ], [ 1.333737, 45.13773 ], [ 1.347115, 45.141445 ], [ 1.351983, 45.141643 ], [ 1.351916, 45.13657 ], [ 1.351991, 45.134033 ], [ 1.366379, 45.13236 ], [ 1.380532, 45.135712 ], [ 1.393954, 45.13137 ], [ 1.398389, 45.129747 ], [ 1.401786, 45.128427 ], [ 1.409614, 45.1265 ], [ 1.413094, 45.12491 ], [ 1.413525, 45.11825 ], [ 1.408918, 45.11252 ], [ 1.392448, 45.105877 ], [ 1.382956, 45.105605 ], [ 1.378249, 45.10609 ], [ 1.380056, 45.100798 ], [ 1.383285, 45.103007 ], [ 1.389354, 45.09892 ], [ 1.393265, 45.09735 ], [ 1.391702, 45.087593 ], [ 1.398488, 45.0788 ], [ 1.401222, 45.07609 ], [ 1.406003, 45.07022 ], [ 1.401752, 45.06421 ], [ 1.399564, 45.06118 ], [ 1.409056, 45.0594 ], [ 1.411599, 45.05263 ], [ 1.431329, 45.032701 ], [ 1.434641, 45.0301 ], [ 1.444114, 45.02006 ], [ 1.448262, 45.019313 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "24", "CODE_DEPT": "25", "NOM_DEPT": "DOUBS", "CODE_CHF": "056", "NOM_CHF": "BESANCON", "X_CHF_LIEU": "9284", "Y_CHF_LIEU": "66868", "X_CENTROID": "9545", "Y_CENTROID": "66793", "CODE_REG": "43", "NOM_REGION": "FRANCHE-COMTE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.138109, 46.55766 ], [ 6.134607, 46.555612 ], [ 6.131093, 46.55357 ], [ 6.127186, 46.55582 ], [ 6.087083, 46.58255 ], [ 6.083865, 46.585034 ], [ 6.048567, 46.60772 ], [ 6.053761, 46.61291 ], [ 6.062491, 46.613515 ], [ 6.058497, 46.61898 ], [ 6.059153, 46.62485 ], [ 6.062602, 46.62709 ], [ 6.081737, 46.63654 ], [ 6.085902, 46.638469 ], [ 6.099197, 46.64334 ], [ 6.103265, 46.65249 ], [ 6.071211, 46.68757 ], [ 6.086126, 46.69611 ], [ 6.099766, 46.701272 ], [ 6.103598, 46.70369 ], [ 6.109355, 46.70701 ], [ 6.11296, 46.70774 ], [ 6.127108, 46.71707 ], [ 6.130623, 46.71941 ], [ 6.131107, 46.71962 ], [ 6.137485, 46.72386 ], [ 6.152262, 46.72945 ], [ 6.155252, 46.731515 ], [ 6.159724, 46.732906 ], [ 6.164171, 46.73432 ], [ 6.16818, 46.7361 ], [ 6.180198, 46.741442 ], [ 6.181715, 46.74809 ], [ 6.183659, 46.75463 ], [ 6.204198, 46.76339 ], [ 6.20333, 46.772681 ], [ 6.201136, 46.77529 ], [ 6.195654, 46.77997 ], [ 6.182748, 46.794304 ], [ 6.163781, 46.80384 ], [ 6.153656, 46.815219 ], [ 6.148831, 46.81599 ], [ 6.15224, 46.81953 ], [ 6.148065, 46.82156 ], [ 6.11332, 46.83622 ], [ 6.105555, 46.8453 ], [ 6.102703, 46.844809 ], [ 6.097614, 46.84422 ], [ 6.093277, 46.84232 ], [ 6.088554, 46.84264 ], [ 6.083771, 46.851355 ], [ 6.072026, 46.856851 ], [ 6.067857, 46.85862 ], [ 6.047095, 46.845638 ], [ 6.045962, 46.848848 ], [ 6.027407, 46.85172 ], [ 6.02468, 46.85649 ], [ 6.028808, 46.860321 ], [ 6.030521, 46.86862 ], [ 6.032267, 46.871421 ], [ 6.030152, 46.87447 ], [ 6.018207, 46.86974 ], [ 6.009696, 46.873095 ], [ 6.010313, 46.89245 ], [ 6.008435, 46.89556 ], [ 5.999368, 46.89679 ], [ 5.98195, 46.90821 ], [ 5.981702, 46.91801 ], [ 5.983877, 46.92098 ], [ 5.994455, 46.93104 ], [ 5.997222, 46.9335 ], [ 5.993638, 46.935755 ], [ 5.965485, 46.947448 ], [ 5.956543, 46.948498 ], [ 5.959531, 46.95093 ], [ 5.979789, 46.963478 ], [ 5.977195, 46.965608 ], [ 5.975184, 46.973309 ], [ 5.973172, 46.97596 ], [ 5.968797, 46.976123 ], [ 5.968915, 46.97684 ], [ 5.968591, 46.980282 ], [ 5.953536, 46.981101 ], [ 5.948985, 46.98117 ], [ 5.945111, 46.98885 ], [ 5.93888, 46.983709 ], [ 5.924782, 46.981068 ], [ 5.915004, 46.98722 ], [ 5.9137, 46.99063 ], [ 5.921548, 47.01448 ], [ 5.917343, 47.014438 ], [ 5.914876, 47.008023 ], [ 5.907692, 46.9996 ], [ 5.893725, 46.99652 ], [ 5.884481, 46.99848 ], [ 5.881568, 47.00509 ], [ 5.876931, 47.005813 ], [ 5.858321, 47.00829 ], [ 5.846944, 47.0031 ], [ 5.84693, 47.005845 ], [ 5.844003, 47.01002 ], [ 5.840657, 47.00851 ], [ 5.839449, 47.01535 ], [ 5.835588, 47.01331 ], [ 5.817347, 47.016634 ], [ 5.816025, 47.02259 ], [ 5.815687, 47.02598 ], [ 5.817225, 47.03928 ], [ 5.81492, 47.045883 ], [ 5.810145, 47.04681 ], [ 5.805278, 47.04573 ], [ 5.800341, 47.04481 ], [ 5.797116, 47.04209 ], [ 5.799216, 47.03178 ], [ 5.791866, 47.02264 ], [ 5.788092, 47.02074 ], [ 5.769926, 47.01766 ], [ 5.764418, 47.012482 ], [ 5.760567, 47.01367 ], [ 5.749513, 47.017243 ], [ 5.746332, 47.01996 ], [ 5.741657, 47.02983 ], [ 5.749742, 47.033877 ], [ 5.751268, 47.03719 ], [ 5.750931, 47.04067 ], [ 5.737384, 47.0508 ], [ 5.742758, 47.05591 ], [ 5.747797, 47.055454 ], [ 5.762794, 47.04611 ], [ 5.784717, 47.05491 ], [ 5.782717, 47.058051 ], [ 5.778609, 47.074771 ], [ 5.776818, 47.07789 ], [ 5.768989, 47.09004 ], [ 5.778052, 47.09749 ], [ 5.787552, 47.09599 ], [ 5.7902, 47.102292 ], [ 5.79159, 47.10518 ], [ 5.801869, 47.11053 ], [ 5.804744, 47.11608 ], [ 5.805567, 47.11947 ], [ 5.816597, 47.13479 ], [ 5.828074, 47.14118 ], [ 5.823646, 47.142587 ], [ 5.813663, 47.14989 ], [ 5.814705, 47.15316 ], [ 5.810483, 47.159051 ], [ 5.811467, 47.169054 ], [ 5.80754, 47.17125 ], [ 5.793167, 47.17457 ], [ 5.7851, 47.170565 ], [ 5.787059, 47.17652 ], [ 5.785197, 47.18853 ], [ 5.781091, 47.189885 ], [ 5.774928, 47.193366 ], [ 5.761384, 47.194186 ], [ 5.757191, 47.1967 ], [ 5.75913, 47.19971 ], [ 5.755693, 47.20538 ], [ 5.737666, 47.201289 ], [ 5.739038, 47.204355 ], [ 5.727009, 47.21763 ], [ 5.7234, 47.21842 ], [ 5.720717, 47.22262 ], [ 5.722763, 47.225421 ], [ 5.714028, 47.23601 ], [ 5.718389, 47.23804 ], [ 5.718946, 47.24147 ], [ 5.701682, 47.262208 ], [ 5.698726, 47.265006 ], [ 5.707877, 47.26803 ], [ 5.71138, 47.27057 ], [ 5.731034, 47.2646 ], [ 5.735196, 47.26344 ], [ 5.741824, 47.264968 ], [ 5.749752, 47.27249 ], [ 5.75426, 47.27291 ], [ 5.757453, 47.27633 ], [ 5.774967, 47.280222 ], [ 5.78254, 47.28869 ], [ 5.790403, 47.289932 ], [ 5.795302, 47.2897 ], [ 5.810675, 47.294785 ], [ 5.815037, 47.29514 ], [ 5.827125, 47.29789 ], [ 5.83122, 47.29871 ], [ 5.840561, 47.299813 ], [ 5.845068, 47.300892 ], [ 5.852381, 47.30794 ], [ 5.853064, 47.31083 ], [ 5.863882, 47.31598 ], [ 5.873147, 47.3146 ], [ 5.878955, 47.319649 ], [ 5.882704, 47.32163 ], [ 5.894814, 47.31183 ], [ 5.902059, 47.315002 ], [ 5.896168, 47.32612 ], [ 5.896712, 47.32907 ], [ 5.904306, 47.333025 ], [ 5.921675, 47.32762 ], [ 5.926441, 47.32707 ], [ 5.930662, 47.328913 ], [ 5.924679, 47.341648 ], [ 5.926704, 47.34476 ], [ 5.938583, 47.34241 ], [ 5.941769, 47.3442 ], [ 5.942949, 47.341304 ], [ 5.960306, 47.33929 ], [ 5.96356, 47.33727 ], [ 5.964007, 47.337201 ], [ 5.978633, 47.328043 ], [ 5.983149, 47.329441 ], [ 5.987159, 47.329824 ], [ 5.988164, 47.32717 ], [ 5.992056, 47.328536 ], [ 5.996651, 47.33987 ], [ 6.008152, 47.335813 ], [ 6.010495, 47.333167 ], [ 6.023555, 47.33235 ], [ 6.027015, 47.33495 ], [ 6.030475, 47.33757 ], [ 6.038896, 47.344913 ], [ 6.048023, 47.34644 ], [ 6.051001, 47.348938 ], [ 6.052159, 47.352277 ], [ 6.054942, 47.35133 ], [ 6.057539, 47.349676 ], [ 6.071943, 47.35051 ], [ 6.081865, 47.357556 ], [ 6.082373, 47.360849 ], [ 6.082016, 47.37171 ], [ 6.100892, 47.37088 ], [ 6.103184, 47.364655 ], [ 6.102487, 47.361322 ], [ 6.103077, 47.36121 ], [ 6.111452, 47.36204 ], [ 6.11706, 47.36612 ], [ 6.119702, 47.36846 ], [ 6.110691, 47.37543 ], [ 6.106643, 47.37699 ], [ 6.111808, 47.37867 ], [ 6.106828, 47.38361 ], [ 6.118479, 47.39348 ], [ 6.117785, 47.39662 ], [ 6.126305, 47.393909 ], [ 6.130007, 47.388017 ], [ 6.147528, 47.38592 ], [ 6.152249, 47.38612 ], [ 6.155959, 47.389874 ], [ 6.160353, 47.388358 ], [ 6.171557, 47.39453 ], [ 6.172705, 47.39778 ], [ 6.179743, 47.40191 ], [ 6.189034, 47.402386 ], [ 6.189249, 47.40556 ], [ 6.185315, 47.40523 ], [ 6.177865, 47.40671 ], [ 6.170974, 47.40934 ], [ 6.170568, 47.41235 ], [ 6.177539, 47.4162 ], [ 6.186566, 47.41421 ], [ 6.194119, 47.417787 ], [ 6.198717, 47.41788 ], [ 6.20225, 47.429906 ], [ 6.206369, 47.431288 ], [ 6.207986, 47.4288 ], [ 6.211616, 47.4258 ], [ 6.22465, 47.422 ], [ 6.229907, 47.41651 ], [ 6.232706, 47.413838 ], [ 6.241571, 47.41074 ], [ 6.243715, 47.413702 ], [ 6.233076, 47.4281 ], [ 6.234959, 47.43114 ], [ 6.246193, 47.426129 ], [ 6.250552, 47.424665 ], [ 6.260835, 47.42849 ], [ 6.261047, 47.43438 ], [ 6.261907, 47.43738 ], [ 6.263406, 47.446072 ], [ 6.280184, 47.44397 ], [ 6.284914, 47.445512 ], [ 6.289211, 47.44758 ], [ 6.285731, 47.449309 ], [ 6.282863, 47.451489 ], [ 6.292276, 47.46285 ], [ 6.294221, 47.465962 ], [ 6.301729, 47.469857 ], [ 6.299621, 47.479855 ], [ 6.299164, 47.48322 ], [ 6.302508, 47.49153 ], [ 6.307378, 47.49032 ], [ 6.311626, 47.48829 ], [ 6.320565, 47.48775 ], [ 6.331201, 47.500389 ], [ 6.331564, 47.50345 ], [ 6.334475, 47.506 ], [ 6.343925, 47.505511 ], [ 6.348676, 47.50556 ], [ 6.363965, 47.512097 ], [ 6.368083, 47.51349 ], [ 6.374837, 47.51115 ], [ 6.378694, 47.511364 ], [ 6.38645, 47.508274 ], [ 6.389787, 47.506159 ], [ 6.396998, 47.518373 ], [ 6.411148, 47.5219 ], [ 6.414662, 47.51943 ], [ 6.416725, 47.521112 ], [ 6.420592, 47.5196 ], [ 6.428573, 47.51692 ], [ 6.45632, 47.514087 ], [ 6.460669, 47.512445 ], [ 6.46359, 47.5097 ], [ 6.471519, 47.48702 ], [ 6.475733, 47.488659 ], [ 6.475829, 47.49525 ], [ 6.497259, 47.507838 ], [ 6.500569, 47.51025 ], [ 6.506233, 47.502125 ], [ 6.517722, 47.49667 ], [ 6.522414, 47.49726 ], [ 6.531543, 47.50341 ], [ 6.532903, 47.506293 ], [ 6.552118, 47.49326 ], [ 6.553836, 47.490311 ], [ 6.558532, 47.496358 ], [ 6.568577, 47.49626 ], [ 6.573512, 47.495494 ], [ 6.576228, 47.49833 ], [ 6.583668, 47.51035 ], [ 6.57902, 47.522753 ], [ 6.579606, 47.52594 ], [ 6.5814, 47.529294 ], [ 6.569138, 47.53135 ], [ 6.581312, 47.54088 ], [ 6.58045, 47.54411 ], [ 6.594465, 47.54235 ], [ 6.602113, 47.538351 ], [ 6.606403, 47.53685 ], [ 6.605545, 47.533794 ], [ 6.613339, 47.530804 ], [ 6.617904, 47.531023 ], [ 6.627005, 47.529848 ], [ 6.644428, 47.534053 ], [ 6.648122, 47.53612 ], [ 6.651061, 47.53902 ], [ 6.654297, 47.54178 ], [ 6.659006, 47.54661 ], [ 6.667733, 47.55488 ], [ 6.670176, 47.5579 ], [ 6.667054, 47.560701 ], [ 6.653689, 47.571221 ], [ 6.659797, 47.57991 ], [ 6.665164, 47.57255 ], [ 6.688866, 47.57081 ], [ 6.686969, 47.5684 ], [ 6.685248, 47.56315 ], [ 6.707803, 47.558 ], [ 6.714589, 47.553158 ], [ 6.71951, 47.55253 ], [ 6.720623, 47.557237 ], [ 6.722269, 47.559455 ], [ 6.725942, 47.560401 ], [ 6.740108, 47.556802 ], [ 6.744932, 47.55079 ], [ 6.748853, 47.54863 ], [ 6.753726, 47.54296 ], [ 6.758113, 47.54157 ], [ 6.765616, 47.53907 ], [ 6.7693, 47.53771 ], [ 6.777111, 47.536955 ], [ 6.781102, 47.53637 ], [ 6.799531, 47.555241 ], [ 6.801329, 47.56181 ], [ 6.807005, 47.5628 ], [ 6.814554, 47.55086 ], [ 6.81666, 47.547922 ], [ 6.830636, 47.54644 ], [ 6.850617, 47.54813 ], [ 6.855715, 47.54794 ], [ 6.85988, 47.54755 ], [ 6.88001, 47.55365 ], [ 6.884008, 47.55517 ], [ 6.887326, 47.55283 ], [ 6.889827, 47.55007 ], [ 6.899593, 47.549818 ], [ 6.906437, 47.54548 ], [ 6.906982, 47.54219 ], [ 6.91027, 47.539646 ], [ 6.915914, 47.5304 ], [ 6.907885, 47.52706 ], [ 6.921146, 47.520273 ], [ 6.925322, 47.51953 ], [ 6.934612, 47.517764 ], [ 6.93758, 47.51742 ], [ 6.940905, 47.51506 ], [ 6.945008, 47.51334 ], [ 6.947186, 47.510407 ], [ 6.944813, 47.49826 ], [ 6.949125, 47.4857 ], [ 6.945373, 47.48729 ], [ 6.942672, 47.48492 ], [ 6.938548, 47.48651 ], [ 6.931237, 47.497752 ], [ 6.922982, 47.50016 ], [ 6.920045, 47.49782 ], [ 6.907611, 47.494555 ], [ 6.913493, 47.48135 ], [ 6.915711, 47.47824 ], [ 6.909833, 47.47494 ], [ 6.907344, 47.472888 ], [ 6.919363, 47.468203 ], [ 6.92987, 47.45853 ], [ 6.932316, 47.455824 ], [ 6.932251, 47.45276 ], [ 6.934951, 47.447019 ], [ 6.936741, 47.43612 ], [ 6.939179, 47.4337 ], [ 6.940003, 47.4097 ], [ 6.937511, 47.40668 ], [ 6.922395, 47.4055 ], [ 6.917294, 47.405462 ], [ 6.909527, 47.39618 ], [ 6.912148, 47.386626 ], [ 6.899724, 47.38222 ], [ 6.894959, 47.38166 ], [ 6.885413, 47.374455 ], [ 6.879952, 47.35895 ], [ 6.879799, 47.352434 ], [ 6.89647, 47.357906 ], [ 6.901015, 47.358763 ], [ 6.920493, 47.355565 ], [ 6.930147, 47.35754 ], [ 6.935257, 47.35758 ], [ 6.984479, 47.36361 ], [ 6.98955, 47.36347 ], [ 6.999339, 47.364873 ], [ 7.011355, 47.371552 ], [ 7.031338, 47.368562 ], [ 7.044112, 47.36273 ], [ 7.048192, 47.36053 ], [ 7.050404, 47.357334 ], [ 7.051706, 47.35033 ], [ 7.060295, 47.34185 ], [ 7.052918, 47.336892 ], [ 7.054788, 47.333735 ], [ 7.043934, 47.32696 ], [ 7.01457, 47.3252 ], [ 7.009734, 47.32436 ], [ 7.015482, 47.3156 ], [ 7.00841, 47.30272 ], [ 6.995778, 47.29681 ], [ 6.980483, 47.296034 ], [ 6.972093, 47.292058 ], [ 6.951849, 47.292227 ], [ 6.94714, 47.290882 ], [ 6.944646, 47.28886 ], [ 6.940919, 47.286632 ], [ 6.950996, 47.26786 ], [ 6.947221, 47.251633 ], [ 6.952923, 47.24618 ], [ 6.955123, 47.24316 ], [ 6.942553, 47.237451 ], [ 6.939468, 47.23111 ], [ 6.929815, 47.22959 ], [ 6.921872, 47.22102 ], [ 6.897364, 47.20963 ], [ 6.893103, 47.207783 ], [ 6.882161, 47.20096 ], [ 6.87197, 47.18561 ], [ 6.865136, 47.18159 ], [ 6.861406, 47.17934 ], [ 6.844374, 47.17207 ], [ 6.843407, 47.168703 ], [ 6.852315, 47.165937 ], [ 6.852956, 47.15993 ], [ 6.826476, 47.14417 ], [ 6.820016, 47.14008 ], [ 6.817468, 47.1375 ], [ 6.802146, 47.129461 ], [ 6.764215, 47.11981 ], [ 6.748738, 47.11107 ], [ 6.744134, 47.109605 ], [ 6.74055, 47.10703 ], [ 6.743571, 47.093715 ], [ 6.710902, 47.08503 ], [ 6.696344, 47.066511 ], [ 6.715974, 47.05103 ], [ 6.697949, 47.03837 ], [ 6.682777, 47.03648 ], [ 6.677932, 47.03522 ], [ 6.65419, 47.02237 ], [ 6.633911, 46.998571 ], [ 6.620909, 46.993076 ], [ 6.606114, 46.991071 ], [ 6.596134, 46.992518 ], [ 6.588013, 46.989436 ], [ 6.584229, 46.9876 ], [ 6.562451, 46.97931 ], [ 6.505959, 46.96613 ], [ 6.499559, 46.97138 ], [ 6.496686, 46.97419 ], [ 6.491348, 46.97064 ], [ 6.475298, 46.95937 ], [ 6.472517, 46.95686 ], [ 6.448683, 46.93546 ], [ 6.44475, 46.933405 ], [ 6.433014, 46.927817 ], [ 6.444981, 46.913914 ], [ 6.447445, 46.911101 ], [ 6.464539, 46.889913 ], [ 6.461724, 46.865647 ], [ 6.461318, 46.86218 ], [ 6.459761, 46.85159 ], [ 6.44377, 46.83335 ], [ 6.435604, 46.813933 ], [ 6.430999, 46.812322 ], [ 6.437754, 46.79983 ], [ 6.441691, 46.797753 ], [ 6.457247, 46.788571 ], [ 6.450819, 46.7752 ], [ 6.428577, 46.75621 ], [ 6.395194, 46.747469 ], [ 6.387937, 46.734561 ], [ 6.374269, 46.730395 ], [ 6.365232, 46.72226 ], [ 6.360237, 46.72308 ], [ 6.357442, 46.71985 ], [ 6.342653, 46.710781 ], [ 6.302496, 46.69636 ], [ 6.298217, 46.694485 ], [ 6.274457, 46.684901 ], [ 6.270491, 46.68319 ], [ 6.260915, 46.67201 ], [ 6.257273, 46.669782 ], [ 6.212793, 46.64063 ], [ 6.175137, 46.61398 ], [ 6.161275, 46.6097 ], [ 6.137714, 46.59638 ], [ 6.113298, 46.578623 ], [ 6.112953, 46.575118 ], [ 6.134502, 46.56015 ], [ 6.138109, 46.55766 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "25", "CODE_DEPT": "26", "NOM_DEPT": "DROME", "CODE_CHF": "362", "NOM_CHF": "VALENCE", "X_CHF_LIEU": "8491", "Y_CHF_LIEU": "64277", "X_CENTROID": "8717", "Y_CENTROID": "64006", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.498788, 44.11572 ], [ 5.493838, 44.115436 ], [ 5.454716, 44.11923 ], [ 5.451161, 44.12113 ], [ 5.447571, 44.136758 ], [ 5.443033, 44.13795 ], [ 5.436695, 44.14207 ], [ 5.435756, 44.152249 ], [ 5.431059, 44.15151 ], [ 5.422917, 44.150039 ], [ 5.415834, 44.154652 ], [ 5.39695, 44.152338 ], [ 5.383241, 44.155285 ], [ 5.383201, 44.158797 ], [ 5.38665, 44.17927 ], [ 5.381281, 44.192382 ], [ 5.383188, 44.19907 ], [ 5.384529, 44.20119 ], [ 5.380358, 44.202911 ], [ 5.37667, 44.20513 ], [ 5.372391, 44.206686 ], [ 5.35579, 44.213599 ], [ 5.335726, 44.20431 ], [ 5.317996, 44.208794 ], [ 5.303624, 44.208799 ], [ 5.303298, 44.20539 ], [ 5.299429, 44.206924 ], [ 5.291804, 44.214647 ], [ 5.280668, 44.219796 ], [ 5.276283, 44.22099 ], [ 5.256509, 44.23006 ], [ 5.252657, 44.23113 ], [ 5.248536, 44.23112 ], [ 5.244512, 44.230707 ], [ 5.240446, 44.23083 ], [ 5.23815, 44.21323 ], [ 5.208775, 44.21442 ], [ 5.175606, 44.22087 ], [ 5.167913, 44.225304 ], [ 5.163507, 44.226355 ], [ 5.150007, 44.235237 ], [ 5.151814, 44.238308 ], [ 5.158751, 44.24287 ], [ 5.161548, 44.245591 ], [ 5.162089, 44.248948 ], [ 5.160531, 44.26562 ], [ 5.147458, 44.26917 ], [ 5.150647, 44.281877 ], [ 5.168429, 44.292243 ], [ 5.170106, 44.298738 ], [ 5.169743, 44.30201 ], [ 5.172827, 44.30821 ], [ 5.168839, 44.314125 ], [ 5.166434, 44.314857 ], [ 5.161976, 44.313387 ], [ 5.153262, 44.31015 ], [ 5.149503, 44.30066 ], [ 5.109641, 44.280367 ], [ 5.086471, 44.283933 ], [ 5.076512, 44.284086 ], [ 5.073922, 44.286944 ], [ 5.060245, 44.307614 ], [ 5.056515, 44.3054 ], [ 5.0295, 44.29789 ], [ 5.024772, 44.296784 ], [ 5.01715, 44.292242 ], [ 5.013072, 44.291074 ], [ 5.002729, 44.28537 ], [ 4.989594, 44.28577 ], [ 4.985462, 44.285517 ], [ 4.971688, 44.279426 ], [ 4.967555, 44.277726 ], [ 4.941528, 44.26941 ], [ 4.932031, 44.26245 ], [ 4.927221, 44.26211 ], [ 4.903477, 44.259478 ], [ 4.901283, 44.26428 ], [ 4.896965, 44.26441 ], [ 4.88025, 44.26177 ], [ 4.876029, 44.260266 ], [ 4.857094, 44.24599 ], [ 4.853171, 44.244366 ], [ 4.825342, 44.22845 ], [ 4.820886, 44.228889 ], [ 4.813448, 44.23242 ], [ 4.812141, 44.242062 ], [ 4.813118, 44.24521 ], [ 4.812513, 44.258019 ], [ 4.803999, 44.26921 ], [ 4.805857, 44.27484 ], [ 4.804479, 44.27762 ], [ 4.802926, 44.280793 ], [ 4.804563, 44.303897 ], [ 4.799988, 44.303549 ], [ 4.780956, 44.31712 ], [ 4.771902, 44.317537 ], [ 4.762995, 44.3251 ], [ 4.758399, 44.32533 ], [ 4.721663, 44.326592 ], [ 4.717089, 44.325907 ], [ 4.713017, 44.320649 ], [ 4.679884, 44.320692 ], [ 4.654887, 44.32835 ], [ 4.650615, 44.329806 ], [ 4.64959, 44.334233 ], [ 4.646837, 44.34828 ], [ 4.649064, 44.373073 ], [ 4.663492, 44.39545 ], [ 4.664373, 44.398944 ], [ 4.663338, 44.404317 ], [ 4.663053, 44.40702 ], [ 4.675978, 44.4367 ], [ 4.68026, 44.43827 ], [ 4.689287, 44.44051 ], [ 4.695289, 44.4458 ], [ 4.70041, 44.46939 ], [ 4.700103, 44.472952 ], [ 4.699537, 44.480083 ], [ 4.689415, 44.492349 ], [ 4.687882, 44.502934 ], [ 4.693101, 44.516703 ], [ 4.703129, 44.52456 ], [ 4.704551, 44.52789 ], [ 4.707933, 44.53442 ], [ 4.703415, 44.535714 ], [ 4.6925, 44.54623 ], [ 4.695739, 44.56307 ], [ 4.705961, 44.56665 ], [ 4.706404, 44.576314 ], [ 4.710872, 44.581999 ], [ 4.728619, 44.584685 ], [ 4.732864, 44.585888 ], [ 4.737462, 44.586672 ], [ 4.741169, 44.58877 ], [ 4.741139, 44.591872 ], [ 4.744202, 44.60089 ], [ 4.740405, 44.602392 ], [ 4.742368, 44.605171 ], [ 4.752426, 44.61893 ], [ 4.754218, 44.62183 ], [ 4.758089, 44.630739 ], [ 4.760718, 44.63335 ], [ 4.772902, 44.64263 ], [ 4.779073, 44.654699 ], [ 4.77792, 44.657761 ], [ 4.78159, 44.67885 ], [ 4.781209, 44.682373 ], [ 4.771968, 44.706 ], [ 4.76422, 44.71503 ], [ 4.764027, 44.729024 ], [ 4.76416, 44.73204 ], [ 4.759507, 44.74848 ], [ 4.769321, 44.759585 ], [ 4.762367, 44.76799 ], [ 4.76104, 44.77122 ], [ 4.761772, 44.7736 ], [ 4.766536, 44.778766 ], [ 4.770658, 44.780375 ], [ 4.783647, 44.78407 ], [ 4.795535, 44.79404 ], [ 4.797232, 44.803983 ], [ 4.80099, 44.805984 ], [ 4.80015, 44.809 ], [ 4.808382, 44.81478 ], [ 4.812834, 44.81553 ], [ 4.821485, 44.817384 ], [ 4.822499, 44.82055 ], [ 4.820281, 44.830192 ], [ 4.823316, 44.83949 ], [ 4.832487, 44.84087 ], [ 4.837147, 44.84131 ], [ 4.844119, 44.84547 ], [ 4.84757, 44.861873 ], [ 4.849984, 44.8648 ], [ 4.853417, 44.867152 ], [ 4.856764, 44.86955 ], [ 4.859694, 44.872001 ], [ 4.861281, 44.87822 ], [ 4.854324, 44.896523 ], [ 4.855085, 44.90001 ], [ 4.868911, 44.909923 ], [ 4.871343, 44.91673 ], [ 4.872362, 44.919916 ], [ 4.886589, 44.936652 ], [ 4.885877, 44.939591 ], [ 4.881366, 44.944603 ], [ 4.879216, 44.94744 ], [ 4.874277, 44.956367 ], [ 4.870828, 44.95867 ], [ 4.86049, 44.965551 ], [ 4.853083, 44.9779 ], [ 4.852566, 44.979535 ], [ 4.852189, 44.98308 ], [ 4.851868, 44.99372 ], [ 4.842493, 45.001983 ], [ 4.838684, 45.00426 ], [ 4.836708, 45.00751 ], [ 4.845408, 45.019956 ], [ 4.844111, 45.023373 ], [ 4.841948, 45.03791 ], [ 4.84455, 45.040541 ], [ 4.853914, 45.047509 ], [ 4.856465, 45.0501 ], [ 4.859747, 45.05594 ], [ 4.858913, 45.059161 ], [ 4.853039, 45.06404 ], [ 4.835642, 45.068347 ], [ 4.829155, 45.072848 ], [ 4.827816, 45.07855 ], [ 4.830462, 45.08402 ], [ 4.831643, 45.08748 ], [ 4.829597, 45.098 ], [ 4.827935, 45.101238 ], [ 4.825024, 45.10399 ], [ 4.821322, 45.106309 ], [ 4.814787, 45.111459 ], [ 4.812375, 45.11434 ], [ 4.804038, 45.122468 ], [ 4.803833, 45.12912 ], [ 4.804132, 45.13127 ], [ 4.805542, 45.134369 ], [ 4.828575, 45.15424 ], [ 4.828713, 45.156129 ], [ 4.826971, 45.15852 ], [ 4.824192, 45.160364 ], [ 4.819523, 45.161233 ], [ 4.809691, 45.168175 ], [ 4.810241, 45.17493 ], [ 4.812187, 45.18153 ], [ 4.806769, 45.1908 ], [ 4.805502, 45.196928 ], [ 4.812208, 45.204953 ], [ 4.810324, 45.20813 ], [ 4.803559, 45.224709 ], [ 4.802319, 45.228133 ], [ 4.8016, 45.24574 ], [ 4.808846, 45.258849 ], [ 4.809896, 45.261326 ], [ 4.809987, 45.266477 ], [ 4.809613, 45.2695 ], [ 4.809775, 45.272533 ], [ 4.809489, 45.28769 ], [ 4.808896, 45.29065 ], [ 4.800462, 45.29737 ], [ 4.805088, 45.29876 ], [ 4.809212, 45.300787 ], [ 4.854363, 45.308 ], [ 4.858799, 45.30895 ], [ 4.858988, 45.301997 ], [ 4.858617, 45.298518 ], [ 4.878779, 45.297713 ], [ 4.899498, 45.30765 ], [ 4.903057, 45.310191 ], [ 4.925238, 45.320404 ], [ 4.928178, 45.32273 ], [ 4.943909, 45.327864 ], [ 4.948148, 45.32858 ], [ 4.95774, 45.329379 ], [ 4.973933, 45.336273 ], [ 4.978246, 45.337954 ], [ 4.990369, 45.343413 ], [ 5.004716, 45.342067 ], [ 5.009652, 45.34223 ], [ 5.018797, 45.3225 ], [ 5.020647, 45.319289 ], [ 5.028752, 45.31713 ], [ 5.032911, 45.318104 ], [ 5.056476, 45.31661 ], [ 5.05911, 45.31362 ], [ 5.066365, 45.298584 ], [ 5.067888, 45.2956 ], [ 5.070509, 45.28577 ], [ 5.073566, 45.283228 ], [ 5.075415, 45.28183 ], [ 5.088531, 45.28625 ], [ 5.10791, 45.28785 ], [ 5.116362, 45.29131 ], [ 5.120994, 45.29733 ], [ 5.13052, 45.297795 ], [ 5.135363, 45.298279 ], [ 5.138789, 45.29644 ], [ 5.130631, 45.283678 ], [ 5.122195, 45.24544 ], [ 5.141072, 45.24525 ], [ 5.153102, 45.2563 ], [ 5.162538, 45.246719 ], [ 5.176541, 45.248402 ], [ 5.191351, 45.22386 ], [ 5.199656, 45.220494 ], [ 5.201713, 45.2174 ], [ 5.182678, 45.217548 ], [ 5.170895, 45.212445 ], [ 5.167415, 45.21013 ], [ 5.168459, 45.19764 ], [ 5.169774, 45.19443 ], [ 5.175783, 45.18127 ], [ 5.188036, 45.16729 ], [ 5.189357, 45.163957 ], [ 5.191216, 45.157165 ], [ 5.184447, 45.148146 ], [ 5.1892, 45.14209 ], [ 5.187561, 45.12853 ], [ 5.187495, 45.122937 ], [ 5.186889, 45.12013 ], [ 5.167161, 45.10023 ], [ 5.162894, 45.09843 ], [ 5.156072, 45.08279 ], [ 5.135416, 45.0779 ], [ 5.134543, 45.074676 ], [ 5.149661, 45.074106 ], [ 5.162641, 45.065568 ], [ 5.170834, 45.06872 ], [ 5.180111, 45.083683 ], [ 5.207811, 45.08421 ], [ 5.212351, 45.08327 ], [ 5.220014, 45.080608 ], [ 5.224169, 45.079912 ], [ 5.227494, 45.07722 ], [ 5.231728, 45.071168 ], [ 5.239853, 45.06773 ], [ 5.244513, 45.06697 ], [ 5.246537, 45.060728 ], [ 5.265166, 45.059387 ], [ 5.266332, 45.056165 ], [ 5.272423, 45.054996 ], [ 5.275255, 45.056524 ], [ 5.276451, 45.059679 ], [ 5.28982, 45.06088 ], [ 5.29162, 45.06389 ], [ 5.30689, 45.05845 ], [ 5.305798, 45.05538 ], [ 5.316422, 45.051703 ], [ 5.320482, 45.05186 ], [ 5.321077, 45.055173 ], [ 5.329014, 45.058691 ], [ 5.333351, 45.059988 ], [ 5.340586, 45.06189 ], [ 5.347807, 45.0474 ], [ 5.352338, 45.04696 ], [ 5.369797, 45.04395 ], [ 5.384095, 45.035979 ], [ 5.39289, 45.037249 ], [ 5.397269, 45.03833 ], [ 5.384813, 45.04896 ], [ 5.385417, 45.055083 ], [ 5.393834, 45.04685 ], [ 5.40765, 45.044867 ], [ 5.422873, 45.053095 ], [ 5.432402, 45.0545 ], [ 5.44593, 45.06859 ], [ 5.447812, 45.07179 ], [ 5.455339, 45.07907 ], [ 5.457488, 45.08167 ], [ 5.46395, 45.08693 ], [ 5.473718, 45.08639 ], [ 5.486388, 45.080783 ], [ 5.494196, 45.07167 ], [ 5.484569, 45.07304 ], [ 5.475777, 45.07029 ], [ 5.466517, 45.05403 ], [ 5.465229, 45.04354 ], [ 5.47773, 45.033439 ], [ 5.479206, 45.024037 ], [ 5.483609, 45.02279 ], [ 5.480436, 45.01308 ], [ 5.49306, 44.99541 ], [ 5.488361, 44.989665 ], [ 5.47919, 44.97003 ], [ 5.477675, 44.966761 ], [ 5.483029, 44.926367 ], [ 5.483565, 44.92301 ], [ 5.480488, 44.898175 ], [ 5.470453, 44.87809 ], [ 5.474919, 44.867889 ], [ 5.464305, 44.82952 ], [ 5.463795, 44.82598 ], [ 5.480397, 44.82272 ], [ 5.484766, 44.82307 ], [ 5.475126, 44.807928 ], [ 5.460202, 44.799992 ], [ 5.46402, 44.793881 ], [ 5.477975, 44.79192 ], [ 5.48156, 44.786013 ], [ 5.548726, 44.770716 ], [ 5.553872, 44.774876 ], [ 5.545874, 44.787879 ], [ 5.548387, 44.7931 ], [ 5.577771, 44.77978 ], [ 5.582047, 44.77787 ], [ 5.586144, 44.764129 ], [ 5.607698, 44.755859 ], [ 5.62238, 44.754035 ], [ 5.626315, 44.753293 ], [ 5.626659, 44.750385 ], [ 5.629065, 44.744797 ], [ 5.639871, 44.73265 ], [ 5.643978, 44.73158 ], [ 5.645942, 44.726577 ], [ 5.647102, 44.724099 ], [ 5.660657, 44.721369 ], [ 5.668003, 44.72468 ], [ 5.691217, 44.722612 ], [ 5.699316, 44.724451 ], [ 5.70406, 44.729299 ], [ 5.717932, 44.71537 ], [ 5.73636, 44.712668 ], [ 5.755312, 44.696965 ], [ 5.774648, 44.6985 ], [ 5.796837, 44.70557 ], [ 5.80147, 44.706779 ], [ 5.808962, 44.70579 ], [ 5.812675, 44.70501 ], [ 5.825458, 44.70098 ], [ 5.829958, 44.69124 ], [ 5.817189, 44.681885 ], [ 5.813277, 44.679904 ], [ 5.809249, 44.678123 ], [ 5.801017, 44.674828 ], [ 5.79062, 44.653299 ], [ 5.785703, 44.653135 ], [ 5.77112, 44.65428 ], [ 5.753769, 44.660529 ], [ 5.749155, 44.65108 ], [ 5.725505, 44.640087 ], [ 5.683495, 44.64998 ], [ 5.659305, 44.651049 ], [ 5.651551, 44.655217 ], [ 5.649246, 44.652903 ], [ 5.641715, 44.651084 ], [ 5.640301, 44.64782 ], [ 5.642842, 44.62426 ], [ 5.649462, 44.61938 ], [ 5.648367, 44.616218 ], [ 5.646092, 44.60992 ], [ 5.63703, 44.60922 ], [ 5.627477, 44.59497 ], [ 5.626319, 44.586623 ], [ 5.621998, 44.58586 ], [ 5.613898, 44.571821 ], [ 5.607148, 44.568351 ], [ 5.60649, 44.566655 ], [ 5.597249, 44.543274 ], [ 5.612473, 44.535601 ], [ 5.614987, 44.532776 ], [ 5.627653, 44.53436 ], [ 5.642693, 44.522064 ], [ 5.646326, 44.520076 ], [ 5.66305, 44.50495 ], [ 5.664504, 44.501894 ], [ 5.659776, 44.501972 ], [ 5.651244, 44.499322 ], [ 5.633188, 44.502097 ], [ 5.626329, 44.497775 ], [ 5.623729, 44.48406 ], [ 5.614847, 44.47184 ], [ 5.603637, 44.4655 ], [ 5.598968, 44.466268 ], [ 5.5691, 44.476578 ], [ 5.564687, 44.475249 ], [ 5.56043, 44.4743 ], [ 5.549714, 44.4799 ], [ 5.546077, 44.48212 ], [ 5.51103, 44.49151 ], [ 5.506409, 44.492018 ], [ 5.483134, 44.49122 ], [ 5.474925, 44.49426 ], [ 5.470847, 44.5 ], [ 5.466345, 44.50034 ], [ 5.457843, 44.498155 ], [ 5.458909, 44.48852 ], [ 5.460352, 44.48614 ], [ 5.461529, 44.482824 ], [ 5.466822, 44.47352 ], [ 5.460217, 44.46859 ], [ 5.463836, 44.452052 ], [ 5.464832, 44.44865 ], [ 5.49549, 44.438803 ], [ 5.495031, 44.43096 ], [ 5.493615, 44.42822 ], [ 5.489918, 44.429022 ], [ 5.486044, 44.428965 ], [ 5.483329, 44.42609 ], [ 5.47757, 44.42085 ], [ 5.472723, 44.420943 ], [ 5.438582, 44.433556 ], [ 5.433752, 44.433168 ], [ 5.418397, 44.42477 ], [ 5.425382, 44.41561 ], [ 5.430035, 44.41453 ], [ 5.441702, 44.391681 ], [ 5.442622, 44.381268 ], [ 5.431328, 44.375331 ], [ 5.434954, 44.36912 ], [ 5.439297, 44.36795 ], [ 5.443922, 44.367748 ], [ 5.462782, 44.367237 ], [ 5.467049, 44.35451 ], [ 5.468856, 44.35135 ], [ 5.47857, 44.351041 ], [ 5.490082, 44.33996 ], [ 5.492944, 44.33713 ], [ 5.50316, 44.344279 ], [ 5.520927, 44.349259 ], [ 5.53686, 44.342102 ], [ 5.539953, 44.332439 ], [ 5.549105, 44.330588 ], [ 5.566543, 44.33302 ], [ 5.571307, 44.333476 ], [ 5.582972, 44.33229 ], [ 5.586926, 44.33204 ], [ 5.588187, 44.33218 ], [ 5.62037, 44.33295 ], [ 5.6238, 44.335217 ], [ 5.628259, 44.33394 ], [ 5.630209, 44.32785 ], [ 5.613216, 44.315772 ], [ 5.608318, 44.30612 ], [ 5.616057, 44.30938 ], [ 5.629322, 44.30115 ], [ 5.633799, 44.30088 ], [ 5.639778, 44.2965 ], [ 5.635739, 44.291638 ], [ 5.632601, 44.289389 ], [ 5.632861, 44.282845 ], [ 5.646372, 44.270398 ], [ 5.646781, 44.26709 ], [ 5.671683, 44.274225 ], [ 5.67561, 44.27589 ], [ 5.68449, 44.268833 ], [ 5.686653, 44.266069 ], [ 5.684206, 44.26309 ], [ 5.674252, 44.25586 ], [ 5.672644, 44.24567 ], [ 5.673312, 44.240169 ], [ 5.682025, 44.23367 ], [ 5.681133, 44.23069 ], [ 5.676723, 44.21341 ], [ 5.685922, 44.197181 ], [ 5.676037, 44.191433 ], [ 5.651593, 44.18958 ], [ 5.652288, 44.186237 ], [ 5.643897, 44.17053 ], [ 5.650428, 44.166766 ], [ 5.682728, 44.163486 ], [ 5.681266, 44.16007 ], [ 5.678605, 44.146098 ], [ 5.67406, 44.14732 ], [ 5.645321, 44.148185 ], [ 5.640667, 44.149234 ], [ 5.631136, 44.150579 ], [ 5.632026, 44.157375 ], [ 5.638795, 44.16628 ], [ 5.629773, 44.17409 ], [ 5.616955, 44.17862 ], [ 5.609327, 44.19071 ], [ 5.605704, 44.19114 ], [ 5.602053, 44.191502 ], [ 5.594234, 44.187481 ], [ 5.579657, 44.18837 ], [ 5.575671, 44.186316 ], [ 5.564374, 44.170902 ], [ 5.568105, 44.168725 ], [ 5.581188, 44.155153 ], [ 5.570423, 44.148616 ], [ 5.551333, 44.149647 ], [ 5.551315, 44.14924 ], [ 5.550089, 44.145894 ], [ 5.542146, 44.13326 ], [ 5.511089, 44.12396 ], [ 5.507615, 44.11776 ], [ 5.498788, 44.11572 ] ], [ [ 4.89291, 44.36483 ], [ 4.892057, 44.36146 ], [ 4.873588, 44.351022 ], [ 4.869527, 44.34508 ], [ 4.87911, 44.34537 ], [ 4.891418, 44.340065 ], [ 4.895328, 44.33806 ], [ 4.882096, 44.32532 ], [ 4.890664, 44.313723 ], [ 4.891209, 44.30711 ], [ 4.889463, 44.304019 ], [ 4.917099, 44.3085 ], [ 4.921836, 44.308797 ], [ 4.983551, 44.29503 ], [ 4.987018, 44.292719 ], [ 4.992205, 44.31262 ], [ 4.997298, 44.31837 ], [ 5.013335, 44.325655 ], [ 5.009006, 44.33377 ], [ 5.021478, 44.344352 ], [ 5.025072, 44.360998 ], [ 5.053313, 44.36483 ], [ 5.066647, 44.37419 ], [ 5.07032, 44.37645 ], [ 5.072028, 44.37851 ], [ 5.070882, 44.383225 ], [ 5.0476, 44.38212 ], [ 5.032759, 44.390896 ], [ 5.018616, 44.392588 ], [ 5.013498, 44.405441 ], [ 5.017716, 44.407138 ], [ 5.01876, 44.415979 ], [ 5.013923, 44.415627 ], [ 5.006196, 44.41172 ], [ 4.98861, 44.4232 ], [ 4.984073, 44.42318 ], [ 4.970846, 44.430129 ], [ 4.959697, 44.42027 ], [ 4.955663, 44.420251 ], [ 4.951931, 44.41915 ], [ 4.948766, 44.41664 ], [ 4.918515, 44.407785 ], [ 4.910162, 44.39515 ], [ 4.911091, 44.384728 ], [ 4.907085, 44.374631 ], [ 4.903708, 44.37276 ], [ 4.893313, 44.367873 ], [ 4.89291, 44.36483 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "26", "CODE_DEPT": "27", "NOM_DEPT": "EURE", "CODE_CHF": "229", "NOM_CHF": "EVREUX", "X_CHF_LIEU": "5648", "Y_CHF_LIEU": "68819", "X_CENTROID": "5537", "Y_CENTROID": "68922", "CODE_REG": "23", "NOM_REGION": "HAUTE-NORMANDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.814819, 48.67017 ], [ 0.810178, 48.67135 ], [ 0.796482, 48.674914 ], [ 0.782205, 48.66652 ], [ 0.780369, 48.666589 ], [ 0.767326, 48.673616 ], [ 0.764138, 48.67572 ], [ 0.76511, 48.6905 ], [ 0.767725, 48.69322 ], [ 0.767302, 48.69582 ], [ 0.763337, 48.69793 ], [ 0.75117, 48.703978 ], [ 0.731016, 48.70383 ], [ 0.728764, 48.706847 ], [ 0.732598, 48.70933 ], [ 0.743593, 48.717 ], [ 0.748398, 48.718448 ], [ 0.758437, 48.72059 ], [ 0.763635, 48.73036 ], [ 0.775034, 48.73736 ], [ 0.77192, 48.74021 ], [ 0.751061, 48.760527 ], [ 0.75678, 48.766465 ], [ 0.755764, 48.770135 ], [ 0.752631, 48.77274 ], [ 0.739437, 48.77753 ], [ 0.730523, 48.78559 ], [ 0.716372, 48.785989 ], [ 0.713196, 48.78856 ], [ 0.708628, 48.79025 ], [ 0.703765, 48.791533 ], [ 0.699117, 48.79286 ], [ 0.690171, 48.79406 ], [ 0.660002, 48.811774 ], [ 0.656093, 48.81357 ], [ 0.647016, 48.814857 ], [ 0.642759, 48.816501 ], [ 0.628768, 48.825159 ], [ 0.624834, 48.82715 ], [ 0.607869, 48.832489 ], [ 0.611184, 48.835084 ], [ 0.633771, 48.85604 ], [ 0.619441, 48.852749 ], [ 0.610658, 48.85606 ], [ 0.6064, 48.862376 ], [ 0.608871, 48.8757 ], [ 0.589631, 48.872603 ], [ 0.585984, 48.8786 ], [ 0.596624, 48.884817 ], [ 0.595643, 48.888028 ], [ 0.590805, 48.888803 ], [ 0.578041, 48.893656 ], [ 0.573844, 48.89177 ], [ 0.553791, 48.87686 ], [ 0.549868, 48.87471 ], [ 0.52088, 48.880798 ], [ 0.515706, 48.88058 ], [ 0.496544, 48.87878 ], [ 0.47437, 48.88706 ], [ 0.459094, 48.8878 ], [ 0.457358, 48.87976 ], [ 0.452557, 48.88003 ], [ 0.443109, 48.88128 ], [ 0.443534, 48.88402 ], [ 0.45004, 48.891016 ], [ 0.436708, 48.88578 ], [ 0.426211, 48.8867 ], [ 0.417946, 48.898471 ], [ 0.386114, 48.910548 ], [ 0.387285, 48.91387 ], [ 0.390826, 48.927107 ], [ 0.395214, 48.928921 ], [ 0.396241, 48.93242 ], [ 0.412815, 48.950626 ], [ 0.431508, 48.96876 ], [ 0.4322, 48.971908 ], [ 0.432448, 48.978229 ], [ 0.4256, 48.982652 ], [ 0.42676, 48.985718 ], [ 0.433439, 49.00022 ], [ 0.433737, 49.00333 ], [ 0.435081, 49.00628 ], [ 0.44418, 49.01313 ], [ 0.446052, 49.01901 ], [ 0.424546, 49.032031 ], [ 0.414601, 49.032816 ], [ 0.409538, 49.03283 ], [ 0.384959, 49.037014 ], [ 0.375069, 49.052092 ], [ 0.370827, 49.05017 ], [ 0.366966, 49.052356 ], [ 0.380383, 49.06125 ], [ 0.379166, 49.06745 ], [ 0.378878, 49.07071 ], [ 0.389902, 49.0764 ], [ 0.413397, 49.07538 ], [ 0.417277, 49.073357 ], [ 0.417885, 49.08396 ], [ 0.416455, 49.08738 ], [ 0.402183, 49.08846 ], [ 0.411408, 49.09491 ], [ 0.410106, 49.09766 ], [ 0.400959, 49.09786 ], [ 0.399783, 49.10081 ], [ 0.407959, 49.11788 ], [ 0.409399, 49.120857 ], [ 0.409704, 49.12217 ], [ 0.408273, 49.12858 ], [ 0.422719, 49.130814 ], [ 0.429977, 49.139263 ], [ 0.432367, 49.142202 ], [ 0.426698, 49.14674 ], [ 0.413143, 49.14635 ], [ 0.406567, 49.14951 ], [ 0.401342, 49.14951 ], [ 0.387361, 49.15318 ], [ 0.385822, 49.15405 ], [ 0.387636, 49.156981 ], [ 0.391913, 49.17854 ], [ 0.388119, 49.18981 ], [ 0.389366, 49.19665 ], [ 0.393648, 49.20674 ], [ 0.388402, 49.21194 ], [ 0.382813, 49.21603 ], [ 0.367048, 49.216595 ], [ 0.342009, 49.229286 ], [ 0.337503, 49.23117 ], [ 0.321521, 49.251985 ], [ 0.326531, 49.25289 ], [ 0.341482, 49.253678 ], [ 0.377722, 49.26389 ], [ 0.382787, 49.26402 ], [ 0.380626, 49.27979 ], [ 0.383554, 49.28576 ], [ 0.380112, 49.28776 ], [ 0.365656, 49.29512 ], [ 0.361083, 49.296608 ], [ 0.342181, 49.29351 ], [ 0.322277, 49.278762 ], [ 0.308998, 49.28322 ], [ 0.309988, 49.286386 ], [ 0.322439, 49.29633 ], [ 0.316021, 49.311309 ], [ 0.302649, 49.313683 ], [ 0.298154, 49.31441 ], [ 0.30424, 49.317199 ], [ 0.30706, 49.3188 ], [ 0.323662, 49.340117 ], [ 0.308051, 49.358082 ], [ 0.303456, 49.368016 ], [ 0.301714, 49.371305 ], [ 0.306587, 49.383996 ], [ 0.309068, 49.38688 ], [ 0.308366, 49.390287 ], [ 0.29781, 49.409253 ], [ 0.297224, 49.42986 ], [ 0.305604, 49.43047 ], [ 0.309792, 49.4308 ], [ 0.335856, 49.43367 ], [ 0.34103, 49.4344 ], [ 0.338834, 49.437682 ], [ 0.338983, 49.440931 ], [ 0.363704, 49.44402 ], [ 0.368796, 49.443966 ], [ 0.382193, 49.44632 ], [ 0.386601, 49.44724 ], [ 0.421222, 49.45573 ], [ 0.426004, 49.4572 ], [ 0.430743, 49.45871 ], [ 0.435335, 49.46041 ], [ 0.469808, 49.475066 ], [ 0.474178, 49.476839 ], [ 0.47886, 49.47902 ], [ 0.493009, 49.484334 ], [ 0.503839, 49.484998 ], [ 0.509162, 49.48423 ], [ 0.522109, 49.47963 ], [ 0.534675, 49.469686 ], [ 0.537695, 49.467131 ], [ 0.538625, 49.46616 ], [ 0.543384, 49.462409 ], [ 0.55787, 49.4505 ], [ 0.560742, 49.4481 ], [ 0.581253, 49.43396 ], [ 0.594568, 49.429617 ], [ 0.599426, 49.42891 ], [ 0.614557, 49.42995 ], [ 0.638579, 49.44216 ], [ 0.642538, 49.444256 ], [ 0.645169, 49.4413 ], [ 0.630653, 49.427406 ], [ 0.629512, 49.42405 ], [ 0.639453, 49.42521 ], [ 0.643721, 49.4193 ], [ 0.657586, 49.41691 ], [ 0.653605, 49.41111 ], [ 0.649834, 49.40888 ], [ 0.65297, 49.4066 ], [ 0.657385, 49.405572 ], [ 0.666042, 49.402466 ], [ 0.670967, 49.40356 ], [ 0.686356, 49.40576 ], [ 0.706393, 49.40357 ], [ 0.70901, 49.41011 ], [ 0.714187, 49.40958 ], [ 0.715509, 49.410856 ], [ 0.738288, 49.40806 ], [ 0.743824, 49.41317 ], [ 0.767621, 49.41898 ], [ 0.783355, 49.410814 ], [ 0.787609, 49.41283 ], [ 0.803021, 49.417575 ], [ 0.800132, 49.42712 ], [ 0.802892, 49.427068 ], [ 0.815203, 49.400721 ], [ 0.818879, 49.39819 ], [ 0.828008, 49.39471 ], [ 0.833067, 49.39365 ], [ 0.856544, 49.393916 ], [ 0.860851, 49.395359 ], [ 0.864153, 49.39282 ], [ 0.873629, 49.3952 ], [ 0.878462, 49.396254 ], [ 0.876661, 49.389802 ], [ 0.884734, 49.38172 ], [ 0.880352, 49.376082 ], [ 0.879015, 49.372786 ], [ 0.888059, 49.373511 ], [ 0.892756, 49.37214 ], [ 0.895508, 49.37826 ], [ 0.913196, 49.38459 ], [ 0.918119, 49.38546 ], [ 0.917497, 49.3794 ], [ 0.917825, 49.376374 ], [ 0.922086, 49.36154 ], [ 0.924328, 49.358871 ], [ 0.921963, 49.352976 ], [ 0.923216, 49.349905 ], [ 0.926813, 49.34876 ], [ 0.93224, 49.34489 ], [ 0.928962, 49.34221 ], [ 0.920066, 49.338592 ], [ 0.885498, 49.34631 ], [ 0.871749, 49.34231 ], [ 0.864208, 49.345612 ], [ 0.85934, 49.34519 ], [ 0.848188, 49.33143 ], [ 0.844484, 49.32622 ], [ 0.862759, 49.325462 ], [ 0.86442, 49.32255 ], [ 0.869477, 49.32335 ], [ 0.892669, 49.316329 ], [ 0.893682, 49.30332 ], [ 0.899933, 49.298039 ], [ 0.909447, 49.29977 ], [ 0.908281, 49.306493 ], [ 0.921014, 49.31198 ], [ 0.925702, 49.313421 ], [ 0.937589, 49.31986 ], [ 0.951232, 49.29743 ], [ 0.960338, 49.294192 ], [ 0.960717, 49.29087 ], [ 0.962659, 49.28555 ], [ 0.955864, 49.281842 ], [ 0.952434, 49.279931 ], [ 0.955538, 49.274436 ], [ 0.955769, 49.27137 ], [ 0.970563, 49.27962 ], [ 0.980858, 49.27011 ], [ 0.985591, 49.26926 ], [ 0.989553, 49.26315 ], [ 0.999613, 49.262036 ], [ 0.994332, 49.2572 ], [ 0.999109, 49.25197 ], [ 1.038408, 49.259697 ], [ 1.038716, 49.25808 ], [ 1.051713, 49.26246 ], [ 1.051614, 49.25926 ], [ 1.05351, 49.26179 ], [ 1.061024, 49.25929 ], [ 1.063577, 49.26156 ], [ 1.052655, 49.27246 ], [ 1.065644, 49.28084 ], [ 1.048481, 49.29782 ], [ 1.067449, 49.304245 ], [ 1.071772, 49.3063 ], [ 1.090166, 49.30979 ], [ 1.094995, 49.30975 ], [ 1.124683, 49.30947 ], [ 1.129593, 49.30985 ], [ 1.133994, 49.30984 ], [ 1.134635, 49.322917 ], [ 1.136896, 49.32584 ], [ 1.144742, 49.332577 ], [ 1.145476, 49.33551 ], [ 1.155046, 49.33529 ], [ 1.160337, 49.340503 ], [ 1.166683, 49.338864 ], [ 1.168589, 49.33597 ], [ 1.178198, 49.34243 ], [ 1.182717, 49.343845 ], [ 1.184847, 49.33807 ], [ 1.185541, 49.337899 ], [ 1.200779, 49.33889 ], [ 1.198912, 49.35217 ], [ 1.200411, 49.355357 ], [ 1.204671, 49.35201 ], [ 1.209571, 49.35239 ], [ 1.212223, 49.349724 ], [ 1.241233, 49.347776 ], [ 1.246099, 49.347524 ], [ 1.272155, 49.34738 ], [ 1.272228, 49.35425 ], [ 1.282152, 49.36165 ], [ 1.286239, 49.36296 ], [ 1.289196, 49.37549 ], [ 1.286147, 49.383954 ], [ 1.28613, 49.38693 ], [ 1.292988, 49.39404 ], [ 1.297471, 49.39467 ], [ 1.308009, 49.39634 ], [ 1.315391, 49.41111 ], [ 1.311022, 49.425848 ], [ 1.309632, 49.42873 ], [ 1.328864, 49.431139 ], [ 1.338046, 49.428937 ], [ 1.335723, 49.43558 ], [ 1.337491, 49.43887 ], [ 1.348854, 49.435765 ], [ 1.349982, 49.43843 ], [ 1.344091, 49.44627 ], [ 1.368674, 49.4511 ], [ 1.386452, 49.46329 ], [ 1.38949, 49.46274 ], [ 1.392158, 49.461636 ], [ 1.383933, 49.449948 ], [ 1.411997, 49.45563 ], [ 1.436079, 49.45502 ], [ 1.449923, 49.45005 ], [ 1.476221, 49.45131 ], [ 1.491322, 49.44749 ], [ 1.498491, 49.4423 ], [ 1.501866, 49.439544 ], [ 1.527546, 49.442052 ], [ 1.5355, 49.433348 ], [ 1.537191, 49.43009 ], [ 1.550283, 49.44044 ], [ 1.576197, 49.440054 ], [ 1.575446, 49.437295 ], [ 1.581915, 49.433649 ], [ 1.585082, 49.43176 ], [ 1.603637, 49.413378 ], [ 1.606957, 49.410854 ], [ 1.623377, 49.41456 ], [ 1.628006, 49.414583 ], [ 1.62791, 49.41144 ], [ 1.644518, 49.40548 ], [ 1.647801, 49.403191 ], [ 1.650699, 49.403026 ], [ 1.659032, 49.39989 ], [ 1.670423, 49.40628 ], [ 1.680561, 49.405827 ], [ 1.682184, 49.402672 ], [ 1.691936, 49.39728 ], [ 1.694284, 49.394865 ], [ 1.705046, 49.40888 ], [ 1.713938, 49.40922 ], [ 1.717574, 49.4037 ], [ 1.735689, 49.40651 ], [ 1.740379, 49.40568 ], [ 1.736382, 49.40353 ], [ 1.720029, 49.39528 ], [ 1.742778, 49.38077 ], [ 1.749902, 49.37146 ], [ 1.759341, 49.36824 ], [ 1.760168, 49.365326 ], [ 1.757629, 49.35703 ], [ 1.774004, 49.335692 ], [ 1.770655, 49.32557 ], [ 1.767545, 49.31928 ], [ 1.774432, 49.30668 ], [ 1.77239, 49.293664 ], [ 1.77535, 49.29117 ], [ 1.784643, 49.29286 ], [ 1.796641, 49.28646 ], [ 1.794084, 49.27649 ], [ 1.80266, 49.273434 ], [ 1.800911, 49.270063 ], [ 1.790289, 49.25369 ], [ 1.790552, 49.246575 ], [ 1.786654, 49.24882 ], [ 1.766896, 49.252035 ], [ 1.768065, 49.25545 ], [ 1.75472, 49.270009 ], [ 1.750536, 49.268023 ], [ 1.735143, 49.269365 ], [ 1.727115, 49.26509 ], [ 1.711646, 49.26452 ], [ 1.708195, 49.26241 ], [ 1.708007, 49.25622 ], [ 1.701428, 49.25179 ], [ 1.699859, 49.248652 ], [ 1.701625, 49.2423 ], [ 1.700984, 49.23395 ], [ 1.704364, 49.2322 ], [ 1.702869, 49.22885 ], [ 1.676291, 49.21219 ], [ 1.673207, 49.205626 ], [ 1.676462, 49.20285 ], [ 1.671348, 49.19304 ], [ 1.670339, 49.189608 ], [ 1.671825, 49.180893 ], [ 1.666334, 49.17572 ], [ 1.669326, 49.169239 ], [ 1.661447, 49.156806 ], [ 1.664304, 49.153951 ], [ 1.662683, 49.1525 ], [ 1.653229, 49.14176 ], [ 1.655991, 49.13039 ], [ 1.652877, 49.128943 ], [ 1.648114, 49.12503 ], [ 1.646559, 49.12164 ], [ 1.627035, 49.105127 ], [ 1.620143, 49.096981 ], [ 1.623322, 49.08608 ], [ 1.619512, 49.08418 ], [ 1.608796, 49.07789 ], [ 1.605928, 49.080694 ], [ 1.599088, 49.084067 ], [ 1.594359, 49.08275 ], [ 1.589843, 49.081684 ], [ 1.572262, 49.07681 ], [ 1.569242, 49.07413 ], [ 1.560832, 49.0704 ], [ 1.546672, 49.072591 ], [ 1.541304, 49.07318 ], [ 1.520998, 49.068132 ], [ 1.519955, 49.071113 ], [ 1.516637, 49.07992 ], [ 1.510269, 49.084285 ], [ 1.51315, 49.077873 ], [ 1.503301, 49.0591 ], [ 1.498032, 49.05866 ], [ 1.486848, 49.05176 ], [ 1.47664, 49.05363 ], [ 1.461614, 49.06337 ], [ 1.44728, 49.05351 ], [ 1.451258, 49.05133 ], [ 1.448209, 49.04485 ], [ 1.456846, 49.03643 ], [ 1.457511, 49.029696 ], [ 1.457762, 49.0263 ], [ 1.468018, 49.02031 ], [ 1.471842, 49.01863 ], [ 1.477096, 49.014801 ], [ 1.474046, 49.00969 ], [ 1.478136, 49.00823 ], [ 1.480401, 49.005562 ], [ 1.48017, 49.00224 ], [ 1.470984, 48.99111 ], [ 1.461702, 48.98886 ], [ 1.468862, 48.97777 ], [ 1.470889, 48.97482 ], [ 1.47826, 48.97925 ], [ 1.493875, 48.979353 ], [ 1.507903, 48.983773 ], [ 1.513493, 48.9785 ], [ 1.518388, 48.978363 ], [ 1.514626, 48.976113 ], [ 1.495147, 48.96608 ], [ 1.501028, 48.9535 ], [ 1.510996, 48.953574 ], [ 1.508641, 48.95044 ], [ 1.501524, 48.941054 ], [ 1.497886, 48.938885 ], [ 1.488865, 48.93688 ], [ 1.475517, 48.94001 ], [ 1.461308, 48.93756 ], [ 1.460016, 48.93419 ], [ 1.457442, 48.92751 ], [ 1.447959, 48.924641 ], [ 1.451638, 48.92211 ], [ 1.460568, 48.90954 ], [ 1.461434, 48.8996 ], [ 1.466411, 48.8997 ], [ 1.470909, 48.894733 ], [ 1.465817, 48.87913 ], [ 1.464201, 48.876118 ], [ 1.457628, 48.871518 ], [ 1.453917, 48.87022 ], [ 1.449832, 48.869573 ], [ 1.445455, 48.867753 ], [ 1.431006, 48.86583 ], [ 1.424008, 48.860996 ], [ 1.419238, 48.86141 ], [ 1.404876, 48.860734 ], [ 1.397999, 48.85648 ], [ 1.397229, 48.8536 ], [ 1.390231, 48.84629 ], [ 1.386001, 48.84467 ], [ 1.359781, 48.8312 ], [ 1.35684, 48.815584 ], [ 1.366436, 48.80449 ], [ 1.367976, 48.802711 ], [ 1.370325, 48.80075 ], [ 1.372743, 48.79789 ], [ 1.376939, 48.78862 ], [ 1.373908, 48.78237 ], [ 1.364022, 48.78289 ], [ 1.356386, 48.779416 ], [ 1.355772, 48.77905 ], [ 1.351444, 48.77731 ], [ 1.331947, 48.762173 ], [ 1.322255, 48.76058 ], [ 1.313623, 48.7641 ], [ 1.311366, 48.76489 ], [ 1.306325, 48.76549 ], [ 1.296969, 48.768229 ], [ 1.27841, 48.76315 ], [ 1.273845, 48.762517 ], [ 1.26812, 48.75789 ], [ 1.263264, 48.75786 ], [ 1.254905, 48.760047 ], [ 1.254072, 48.76621 ], [ 1.246022, 48.76968 ], [ 1.241327, 48.769267 ], [ 1.222613, 48.7673 ], [ 1.22426, 48.764507 ], [ 1.226492, 48.76008 ], [ 1.22295, 48.758217 ], [ 1.218547, 48.76002 ], [ 1.188224, 48.77275 ], [ 1.162975, 48.769311 ], [ 1.15826, 48.7695 ], [ 1.149837, 48.77675 ], [ 1.152118, 48.785741 ], [ 1.147556, 48.78501 ], [ 1.121403, 48.789194 ], [ 1.118939, 48.78615 ], [ 1.122737, 48.769144 ], [ 1.113736, 48.746304 ], [ 1.110197, 48.748614 ], [ 1.087854, 48.75318 ], [ 1.088183, 48.75646 ], [ 1.083981, 48.75492 ], [ 1.072605, 48.749425 ], [ 1.063027, 48.758969 ], [ 1.059135, 48.75678 ], [ 1.035263, 48.73992 ], [ 1.036703, 48.73021 ], [ 1.032593, 48.728467 ], [ 1.02197, 48.73462 ], [ 1.018476, 48.73207 ], [ 1.010955, 48.72813 ], [ 0.98564, 48.72583 ], [ 0.982608, 48.72723 ], [ 0.978288, 48.73096 ], [ 0.973679, 48.72917 ], [ 0.959927, 48.72402 ], [ 0.951191, 48.71549 ], [ 0.921203, 48.709177 ], [ 0.919568, 48.71233 ], [ 0.900159, 48.711832 ], [ 0.890363, 48.71943 ], [ 0.876703, 48.715591 ], [ 0.872837, 48.71336 ], [ 0.862794, 48.687999 ], [ 0.850363, 48.68295 ], [ 0.827667, 48.680724 ], [ 0.823793, 48.67848 ], [ 0.814819, 48.67017 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "27", "CODE_DEPT": "28", "NOM_DEPT": "EURE-ET-LOIR", "CODE_CHF": "085", "NOM_CHF": "CHARTRES", "X_CHF_LIEU": "5882", "Y_CHF_LIEU": "68173", "X_CENTROID": "5793", "Y_CENTROID": "68109", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.520124, 47.98228 ], [ 1.511177, 47.983894 ], [ 1.493715, 47.987398 ], [ 1.490755, 47.9901 ], [ 1.455654, 48.00844 ], [ 1.441396, 48.01163 ], [ 1.432608, 48.00852 ], [ 1.43418, 47.99981 ], [ 1.439511, 47.98318 ], [ 1.437241, 47.9765 ], [ 1.43232, 47.97517 ], [ 1.407203, 47.9706 ], [ 1.386268, 47.98068 ], [ 1.382935, 47.97828 ], [ 1.370016, 47.95375 ], [ 1.349708, 47.963448 ], [ 1.33824, 47.95776 ], [ 1.308631, 47.95376 ], [ 1.30592, 47.95641 ], [ 1.29958, 47.968162 ], [ 1.2654, 47.96286 ], [ 1.260603, 47.96854 ], [ 1.259061, 47.971844 ], [ 1.248007, 47.97857 ], [ 1.242814, 47.97832 ], [ 1.222674, 47.97564 ], [ 1.205215, 47.96864 ], [ 1.191496, 47.97197 ], [ 1.195916, 47.973665 ], [ 1.200477, 47.97911 ], [ 1.193553, 47.98401 ], [ 1.187729, 48.0006 ], [ 1.174145, 48.005212 ], [ 1.16956, 48.006689 ], [ 1.170038, 48.009928 ], [ 1.161862, 48.017857 ], [ 1.167113, 48.026229 ], [ 1.163611, 48.02854 ], [ 1.143932, 48.028737 ], [ 1.141152, 48.0311 ], [ 1.133293, 48.033979 ], [ 1.129047, 48.03451 ], [ 1.12014, 48.04005 ], [ 1.115766, 48.05246 ], [ 1.113228, 48.05549 ], [ 1.106882, 48.060975 ], [ 1.112755, 48.0808 ], [ 1.107549, 48.080987 ], [ 1.071855, 48.07666 ], [ 1.065093, 48.085626 ], [ 1.03392, 48.085758 ], [ 1.029354, 48.08754 ], [ 1.009409, 48.08416 ], [ 0.995686, 48.089291 ], [ 0.99452, 48.099137 ], [ 1.040156, 48.11653 ], [ 1.047091, 48.12165 ], [ 1.039779, 48.13105 ], [ 1.029601, 48.132835 ], [ 1.008922, 48.131713 ], [ 0.995236, 48.126684 ], [ 0.955081, 48.100484 ], [ 0.945411, 48.09791 ], [ 0.945591, 48.100913 ], [ 0.944029, 48.11238 ], [ 0.939072, 48.11232 ], [ 0.929216, 48.11172 ], [ 0.91329, 48.104162 ], [ 0.888905, 48.10227 ], [ 0.883856, 48.10318 ], [ 0.871549, 48.10843 ], [ 0.841217, 48.10306 ], [ 0.843301, 48.10601 ], [ 0.855009, 48.12386 ], [ 0.850372, 48.13308 ], [ 0.914338, 48.13585 ], [ 0.91665, 48.138941 ], [ 0.90961, 48.14353 ], [ 0.911465, 48.146968 ], [ 0.909365, 48.15007 ], [ 0.884466, 48.16184 ], [ 0.860645, 48.16665 ], [ 0.840574, 48.16553 ], [ 0.83656, 48.16762 ], [ 0.833111, 48.16904 ], [ 0.82786, 48.173039 ], [ 0.81124, 48.18472 ], [ 0.797528, 48.188167 ], [ 0.797655, 48.19446 ], [ 0.80674, 48.19745 ], [ 0.80662, 48.20422 ], [ 0.829446, 48.21137 ], [ 0.822102, 48.223557 ], [ 0.787321, 48.26144 ], [ 0.791517, 48.265231 ], [ 0.785981, 48.2712 ], [ 0.794042, 48.284127 ], [ 0.802328, 48.288196 ], [ 0.807066, 48.28973 ], [ 0.797486, 48.291445 ], [ 0.778584, 48.302109 ], [ 0.764576, 48.299991 ], [ 0.760447, 48.298131 ], [ 0.757286, 48.300771 ], [ 0.769615, 48.31513 ], [ 0.769234, 48.32188 ], [ 0.778368, 48.32995 ], [ 0.781343, 48.332691 ], [ 0.785039, 48.337585 ], [ 0.785432, 48.34044 ], [ 0.788027, 48.341322 ], [ 0.813732, 48.348811 ], [ 0.818405, 48.349419 ], [ 0.824902, 48.3448 ], [ 0.827867, 48.342311 ], [ 0.841975, 48.349896 ], [ 0.840028, 48.35291 ], [ 0.853889, 48.349113 ], [ 0.869034, 48.35723 ], [ 0.883707, 48.35672 ], [ 0.894525, 48.367825 ], [ 0.896387, 48.370909 ], [ 0.904504, 48.37263 ], [ 0.907347, 48.3701 ], [ 0.922214, 48.38252 ], [ 0.926529, 48.384112 ], [ 0.929503, 48.39059 ], [ 0.948381, 48.40164 ], [ 0.945291, 48.41811 ], [ 0.973173, 48.43622 ], [ 0.976416, 48.43877 ], [ 0.974317, 48.44199 ], [ 0.963768, 48.44198 ], [ 0.955273, 48.445817 ], [ 0.940331, 48.46017 ], [ 0.937356, 48.47045 ], [ 0.936714, 48.47301 ], [ 0.935709, 48.47551 ], [ 0.953055, 48.48016 ], [ 0.955507, 48.489476 ], [ 0.955397, 48.49266 ], [ 0.951279, 48.49341 ], [ 0.941554, 48.49869 ], [ 0.954658, 48.50467 ], [ 0.96615, 48.520507 ], [ 0.96774, 48.523881 ], [ 0.962768, 48.524228 ], [ 0.931842, 48.534151 ], [ 0.924168, 48.53803 ], [ 0.937141, 48.5486 ], [ 0.925711, 48.55965 ], [ 0.921331, 48.55935 ], [ 0.910268, 48.564135 ], [ 0.905802, 48.56598 ], [ 0.892944, 48.57183 ], [ 0.867284, 48.57395 ], [ 0.849312, 48.58594 ], [ 0.845909, 48.609015 ], [ 0.826926, 48.6103 ], [ 0.822398, 48.60887 ], [ 0.818206, 48.615043 ], [ 0.827771, 48.63113 ], [ 0.831762, 48.63342 ], [ 0.822818, 48.63534 ], [ 0.821978, 48.64474 ], [ 0.823565, 48.65067 ], [ 0.819748, 48.652955 ], [ 0.809946, 48.66423 ], [ 0.814819, 48.67017 ], [ 0.823793, 48.67848 ], [ 0.827667, 48.680724 ], [ 0.850363, 48.68295 ], [ 0.862794, 48.687999 ], [ 0.872837, 48.71336 ], [ 0.876703, 48.715591 ], [ 0.890363, 48.71943 ], [ 0.900159, 48.711832 ], [ 0.919568, 48.71233 ], [ 0.921203, 48.709177 ], [ 0.951191, 48.71549 ], [ 0.959927, 48.72402 ], [ 0.973679, 48.72917 ], [ 0.978288, 48.73096 ], [ 0.982608, 48.72723 ], [ 0.98564, 48.72583 ], [ 1.010955, 48.72813 ], [ 1.018476, 48.73207 ], [ 1.02197, 48.73462 ], [ 1.032593, 48.728467 ], [ 1.036703, 48.73021 ], [ 1.035263, 48.73992 ], [ 1.059135, 48.75678 ], [ 1.063027, 48.758969 ], [ 1.072605, 48.749425 ], [ 1.083981, 48.75492 ], [ 1.088183, 48.75646 ], [ 1.087854, 48.75318 ], [ 1.110197, 48.748614 ], [ 1.113736, 48.746304 ], [ 1.122737, 48.769144 ], [ 1.118939, 48.78615 ], [ 1.121403, 48.789194 ], [ 1.147556, 48.78501 ], [ 1.152118, 48.785741 ], [ 1.149837, 48.77675 ], [ 1.15826, 48.7695 ], [ 1.162975, 48.769311 ], [ 1.188224, 48.77275 ], [ 1.218547, 48.76002 ], [ 1.22295, 48.758217 ], [ 1.226492, 48.76008 ], [ 1.22426, 48.764507 ], [ 1.222613, 48.7673 ], [ 1.241327, 48.769267 ], [ 1.246022, 48.76968 ], [ 1.254072, 48.76621 ], [ 1.254905, 48.760047 ], [ 1.263264, 48.75786 ], [ 1.26812, 48.75789 ], [ 1.273845, 48.762517 ], [ 1.27841, 48.76315 ], [ 1.296969, 48.768229 ], [ 1.306325, 48.76549 ], [ 1.311366, 48.76489 ], [ 1.313623, 48.7641 ], [ 1.322255, 48.76058 ], [ 1.331947, 48.762173 ], [ 1.351444, 48.77731 ], [ 1.355772, 48.77905 ], [ 1.356386, 48.779416 ], [ 1.364022, 48.78289 ], [ 1.373908, 48.78237 ], [ 1.376939, 48.78862 ], [ 1.372743, 48.79789 ], [ 1.370325, 48.80075 ], [ 1.367976, 48.802711 ], [ 1.366436, 48.80449 ], [ 1.35684, 48.815584 ], [ 1.359781, 48.8312 ], [ 1.386001, 48.84467 ], [ 1.390231, 48.84629 ], [ 1.397229, 48.8536 ], [ 1.397999, 48.85648 ], [ 1.404876, 48.860734 ], [ 1.419238, 48.86141 ], [ 1.424008, 48.860996 ], [ 1.431006, 48.86583 ], [ 1.445455, 48.867753 ], [ 1.449832, 48.869573 ], [ 1.453917, 48.87022 ], [ 1.457628, 48.871518 ], [ 1.464201, 48.876118 ], [ 1.465817, 48.87913 ], [ 1.470909, 48.894733 ], [ 1.466411, 48.8997 ], [ 1.461434, 48.8996 ], [ 1.460568, 48.90954 ], [ 1.451638, 48.92211 ], [ 1.447959, 48.924641 ], [ 1.457442, 48.92751 ], [ 1.460016, 48.93419 ], [ 1.461308, 48.93756 ], [ 1.475517, 48.94001 ], [ 1.488865, 48.93688 ], [ 1.497886, 48.938885 ], [ 1.501524, 48.941054 ], [ 1.501797, 48.941057 ], [ 1.511543, 48.933506 ], [ 1.508132, 48.92724 ], [ 1.513925, 48.92181 ], [ 1.522955, 48.924887 ], [ 1.538249, 48.921693 ], [ 1.540523, 48.918483 ], [ 1.541664, 48.915754 ], [ 1.544341, 48.91079 ], [ 1.538521, 48.90668 ], [ 1.558716, 48.891369 ], [ 1.563742, 48.890629 ], [ 1.561309, 48.88784 ], [ 1.546231, 48.87244 ], [ 1.554899, 48.86573 ], [ 1.558839, 48.86425 ], [ 1.559904, 48.86712 ], [ 1.568638, 48.865845 ], [ 1.572072, 48.86392 ], [ 1.582962, 48.8575 ], [ 1.577939, 48.84776 ], [ 1.577269, 48.844361 ], [ 1.58207, 48.84421 ], [ 1.586621, 48.8432 ], [ 1.594894, 48.83914 ], [ 1.594496, 48.835696 ], [ 1.581793, 48.82982 ], [ 1.590483, 48.81733 ], [ 1.582798, 48.81092 ], [ 1.579434, 48.8089 ], [ 1.576732, 48.785167 ], [ 1.587594, 48.773611 ], [ 1.582928, 48.76756 ], [ 1.584907, 48.763298 ], [ 1.605226, 48.76059 ], [ 1.62496, 48.749031 ], [ 1.622705, 48.740154 ], [ 1.620258, 48.736006 ], [ 1.61504, 48.735306 ], [ 1.590011, 48.712875 ], [ 1.594878, 48.709316 ], [ 1.580727, 48.701349 ], [ 1.584038, 48.69902 ], [ 1.582189, 48.696059 ], [ 1.606656, 48.6892 ], [ 1.611295, 48.68846 ], [ 1.608626, 48.682058 ], [ 1.606204, 48.67912 ], [ 1.601707, 48.66644 ], [ 1.602707, 48.6631 ], [ 1.607566, 48.659618 ], [ 1.622748, 48.65032 ], [ 1.643197, 48.651294 ], [ 1.640838, 48.644889 ], [ 1.647055, 48.63968 ], [ 1.651575, 48.638129 ], [ 1.649567, 48.632276 ], [ 1.656909, 48.62809 ], [ 1.657429, 48.62156 ], [ 1.663558, 48.61641 ], [ 1.666354, 48.61371 ], [ 1.681592, 48.61905 ], [ 1.690247, 48.616951 ], [ 1.685197, 48.61328 ], [ 1.687762, 48.611094 ], [ 1.691234, 48.613301 ], [ 1.709778, 48.613386 ], [ 1.717432, 48.610572 ], [ 1.717849, 48.60739 ], [ 1.704474, 48.58816 ], [ 1.701989, 48.585 ], [ 1.706156, 48.58317 ], [ 1.709253, 48.57802 ], [ 1.726923, 48.572844 ], [ 1.744584, 48.574102 ], [ 1.748456, 48.57603 ], [ 1.761507, 48.57166 ], [ 1.764943, 48.56221 ], [ 1.776034, 48.55565 ], [ 1.778178, 48.55263 ], [ 1.782719, 48.553168 ], [ 1.787245, 48.553745 ], [ 1.776301, 48.52681 ], [ 1.776842, 48.51287 ], [ 1.789428, 48.49444 ], [ 1.78664, 48.49147 ], [ 1.793193, 48.4867 ], [ 1.796336, 48.484192 ], [ 1.793066, 48.48163 ], [ 1.803139, 48.46658 ], [ 1.808028, 48.46576 ], [ 1.833171, 48.46734 ], [ 1.837137, 48.46114 ], [ 1.839126, 48.458032 ], [ 1.847344, 48.446632 ], [ 1.857023, 48.446212 ], [ 1.861091, 48.44446 ], [ 1.874392, 48.44029 ], [ 1.879442, 48.44067 ], [ 1.884121, 48.44001 ], [ 1.90452, 48.440263 ], [ 1.91015, 48.44593 ], [ 1.919886, 48.447935 ], [ 1.922149, 48.4576 ], [ 1.928572, 48.455733 ], [ 1.930628, 48.45372 ], [ 1.932512, 48.445548 ], [ 1.93833, 48.441398 ], [ 1.942895, 48.440998 ], [ 1.937301, 48.43544 ], [ 1.939016, 48.42216 ], [ 1.925893, 48.41275 ], [ 1.930424, 48.40395 ], [ 1.957737, 48.40515 ], [ 1.962226, 48.40432 ], [ 1.974978, 48.40174 ], [ 1.977244, 48.39916 ], [ 1.968537, 48.38362 ], [ 1.966722, 48.38042 ], [ 1.977025, 48.379189 ], [ 1.983903, 48.366445 ], [ 1.987356, 48.363811 ], [ 1.975622, 48.35688 ], [ 1.97062, 48.33999 ], [ 1.982344, 48.328317 ], [ 1.975601, 48.32332 ], [ 1.977212, 48.31401 ], [ 1.959227, 48.30869 ], [ 1.961905, 48.302846 ], [ 1.966219, 48.296774 ], [ 1.975456, 48.29402 ], [ 1.978957, 48.28799 ], [ 1.989021, 48.286984 ], [ 1.994085, 48.28659 ], [ 1.994521, 48.2835 ], [ 1.987876, 48.268708 ], [ 1.985726, 48.266242 ], [ 1.981399, 48.26141 ], [ 1.977882, 48.259308 ], [ 1.965943, 48.254462 ], [ 1.962064, 48.24547 ], [ 1.965343, 48.23767 ], [ 1.966607, 48.23506 ], [ 1.964442, 48.23212 ], [ 1.962595, 48.2226 ], [ 1.976462, 48.199861 ], [ 1.97085, 48.194314 ], [ 1.956429, 48.20006 ], [ 1.952285, 48.19387 ], [ 1.969347, 48.18168 ], [ 1.970035, 48.178109 ], [ 1.97055, 48.17105 ], [ 1.96628, 48.172695 ], [ 1.951887, 48.17462 ], [ 1.934758, 48.169364 ], [ 1.927115, 48.17345 ], [ 1.919554, 48.169487 ], [ 1.916563, 48.16706 ], [ 1.907925, 48.15999 ], [ 1.90323, 48.16003 ], [ 1.905183, 48.14694 ], [ 1.915328, 48.146654 ], [ 1.920403, 48.14638 ], [ 1.918712, 48.14358 ], [ 1.912622, 48.12913 ], [ 1.907824, 48.1304 ], [ 1.899468, 48.127564 ], [ 1.897623, 48.124523 ], [ 1.889714, 48.105586 ], [ 1.887624, 48.102722 ], [ 1.881637, 48.098013 ], [ 1.864904, 48.095189 ], [ 1.865166, 48.091781 ], [ 1.864599, 48.085017 ], [ 1.840198, 48.08728 ], [ 1.838124, 48.08078 ], [ 1.833278, 48.081318 ], [ 1.802746, 48.08921 ], [ 1.80004, 48.08412 ], [ 1.7975, 48.077682 ], [ 1.778099, 48.07517 ], [ 1.771543, 48.07004 ], [ 1.767072, 48.07179 ], [ 1.748763, 48.065781 ], [ 1.728803, 48.068888 ], [ 1.708991, 48.06694 ], [ 1.706129, 48.069758 ], [ 1.689474, 48.07754 ], [ 1.687023, 48.0751 ], [ 1.677207, 48.06541 ], [ 1.668431, 48.0668 ], [ 1.660607, 48.07512 ], [ 1.624269, 48.06676 ], [ 1.621686, 48.063877 ], [ 1.623713, 48.060786 ], [ 1.621232, 48.048319 ], [ 1.613878, 48.044156 ], [ 1.599285, 48.04276 ], [ 1.591873, 48.03075 ], [ 1.586955, 48.03052 ], [ 1.585117, 48.033535 ], [ 1.566382, 48.03656 ], [ 1.545307, 48.044589 ], [ 1.540194, 48.03873 ], [ 1.548119, 48.034543 ], [ 1.540795, 48.031032 ], [ 1.525946, 48.033232 ], [ 1.514051, 48.02723 ], [ 1.520888, 48.011108 ], [ 1.520124, 47.98228 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "28", "CODE_DEPT": "29", "NOM_DEPT": "FINISTERE", "CODE_CHF": "232", "NOM_CHF": "QUIMPER", "X_CHF_LIEU": "1713", "Y_CHF_LIEU": "67899", "X_CENTROID": "1770", "Y_CENTROID": "68189", "CODE_REG": "53", "NOM_REGION": "BRETAGNE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.523004, 47.849147 ], [ -3.525229, 47.85229 ], [ -3.541201, 47.8594 ], [ -3.530376, 47.84778 ], [ -3.539292, 47.83566 ], [ -3.542913, 47.822171 ], [ -3.537744, 47.821466 ], [ -3.535212, 47.814627 ], [ -3.527784, 47.80961 ], [ -3.523811, 47.799324 ], [ -3.537454, 47.766 ], [ -3.547341, 47.7646 ], [ -3.568094, 47.76842 ], [ -3.610893, 47.770001 ], [ -3.616153, 47.769748 ], [ -3.645455, 47.77639 ], [ -3.644426, 47.787121 ], [ -3.656606, 47.7809 ], [ -3.681412, 47.778139 ], [ -3.715178, 47.79506 ], [ -3.718815, 47.797637 ], [ -3.720252, 47.800942 ], [ -3.715553, 47.80703 ], [ -3.69589, 47.817605 ], [ -3.671163, 47.823597 ], [ -3.66098, 47.82175 ], [ -3.655723, 47.821433 ], [ -3.651502, 47.82092 ], [ -3.641843, 47.826575 ], [ -3.639574, 47.82902 ], [ -3.652604, 47.823507 ], [ -3.673312, 47.82617 ], [ -3.687821, 47.822 ], [ -3.697043, 47.82461 ], [ -3.709606, 47.813766 ], [ -3.732195, 47.805042 ], [ -3.741431, 47.813363 ], [ -3.749359, 47.844693 ], [ -3.74772, 47.84805 ], [ -3.746702, 47.850807 ], [ -3.75186, 47.84631 ], [ -3.754706, 47.844212 ], [ -3.750637, 47.842189 ], [ -3.754607, 47.83248 ], [ -3.747153, 47.82324 ], [ -3.75115, 47.817129 ], [ -3.741507, 47.80478 ], [ -3.741553, 47.801233 ], [ -3.743624, 47.79801 ], [ -3.756813, 47.792304 ], [ -3.76199, 47.79159 ], [ -3.79873, 47.788934 ], [ -3.808299, 47.79111 ], [ -3.810808, 47.794265 ], [ -3.836096, 47.796475 ], [ -3.850532, 47.793434 ], [ -3.855502, 47.80337 ], [ -3.900025, 47.83762 ], [ -3.890655, 47.853088 ], [ -3.882633, 47.857563 ], [ -3.878635, 47.859857 ], [ -3.883522, 47.85873 ], [ -3.900439, 47.8508 ], [ -3.910202, 47.852496 ], [ -3.913314, 47.855257 ], [ -3.905424, 47.8594 ], [ -3.906365, 47.86281 ], [ -3.912988, 47.868096 ], [ -3.92746, 47.871469 ], [ -3.933874, 47.880874 ], [ -3.942082, 47.88509 ], [ -3.948109, 47.89418 ], [ -3.946011, 47.90451 ], [ -3.953778, 47.896127 ], [ -3.968476, 47.89674 ], [ -3.979158, 47.902261 ], [ -3.982045, 47.89593 ], [ -3.991227, 47.897195 ], [ -3.990482, 47.893689 ], [ -3.98185, 47.889759 ], [ -3.98718, 47.87985 ], [ -3.982897, 47.85571 ], [ -4.03931, 47.84804 ], [ -4.050229, 47.852527 ], [ -4.082314, 47.86157 ], [ -4.080753, 47.862241 ], [ -4.05015, 47.853752 ], [ -4.049939, 47.85509 ], [ -4.069249, 47.864581 ], [ -4.067177, 47.871303 ], [ -4.075756, 47.86846 ], [ -4.080655, 47.870858 ], [ -4.085249, 47.864833 ], [ -4.09497, 47.86312 ], [ -4.11656, 47.8775 ], [ -4.110569, 47.881904 ], [ -4.105616, 47.880831 ], [ -4.1239, 47.88933 ], [ -4.118795, 47.894335 ], [ -4.115963, 47.896856 ], [ -4.130385, 47.89419 ], [ -4.140993, 47.90191 ], [ -4.143471, 47.912315 ], [ -4.139172, 47.922499 ], [ -4.11321, 47.933584 ], [ -4.103379, 47.941482 ], [ -4.084456, 47.936546 ], [ -4.079519, 47.935326 ], [ -4.07303, 47.932854 ], [ -4.069298, 47.932998 ], [ -4.091455, 47.94162 ], [ -4.083641, 47.949444 ], [ -4.096968, 47.944518 ], [ -4.105495, 47.94622 ], [ -4.095694, 47.962097 ], [ -4.095947, 47.965687 ], [ -4.100632, 47.97182 ], [ -4.114006, 47.977315 ], [ -4.107396, 47.970984 ], [ -4.108512, 47.96528 ], [ -4.119092, 47.965215 ], [ -4.113202, 47.959934 ], [ -4.116554, 47.95375 ], [ -4.113119, 47.936409 ], [ -4.138771, 47.92471 ], [ -4.1479, 47.91196 ], [ -4.148459, 47.898284 ], [ -4.163716, 47.89624 ], [ -4.172691, 47.90446 ], [ -4.176131, 47.90714 ], [ -4.167468, 47.89467 ], [ -4.141969, 47.894306 ], [ -4.133075, 47.890918 ], [ -4.115139, 47.869725 ], [ -4.118209, 47.864279 ], [ -4.147015, 47.85682 ], [ -4.151312, 47.854832 ], [ -4.163942, 47.848638 ], [ -4.168415, 47.83972 ], [ -4.169619, 47.84108 ], [ -4.168705, 47.849412 ], [ -4.167245, 47.856785 ], [ -4.172832, 47.875141 ], [ -4.184573, 47.8809 ], [ -4.196976, 47.86382 ], [ -4.201041, 47.86132 ], [ -4.208307, 47.866653 ], [ -4.210266, 47.86565 ], [ -4.193879, 47.85317 ], [ -4.18289, 47.83846 ], [ -4.164725, 47.83337 ], [ -4.162179, 47.826848 ], [ -4.166696, 47.81707 ], [ -4.180976, 47.80273 ], [ -4.194373, 47.79766 ], [ -4.204198, 47.79949 ], [ -4.208335, 47.8016 ], [ -4.21574, 47.812945 ], [ -4.218491, 47.80949 ], [ -4.214046, 47.79664 ], [ -4.226813, 47.79347 ], [ -4.267709, 47.791314 ], [ -4.275584, 47.79476 ], [ -4.272259, 47.7974 ], [ -4.272265, 47.80087 ], [ -4.287089, 47.792575 ], [ -4.300649, 47.80066 ], [ -4.32593, 47.79778 ], [ -4.371396, 47.798079 ], [ -4.373346, 47.81162 ], [ -4.379963, 47.81983 ], [ -4.367795, 47.826148 ], [ -4.353426, 47.828137 ], [ -4.349788, 47.830653 ], [ -4.346631, 47.84255 ], [ -4.347687, 47.84901 ], [ -4.352675, 47.86298 ], [ -4.35976, 47.87908 ], [ -4.357399, 47.88878 ], [ -4.343337, 47.89757 ], [ -4.339481, 47.899706 ], [ -4.366511, 47.89285 ], [ -4.371919, 47.90215 ], [ -4.373812, 47.905223 ], [ -4.395798, 47.9349 ], [ -4.399005, 47.937441 ], [ -4.409277, 47.94509 ], [ -4.41095, 47.94839 ], [ -4.420745, 47.96057 ], [ -4.458889, 47.9833 ], [ -4.46246, 47.985801 ], [ -4.472549, 47.985538 ], [ -4.495157, 47.99969 ], [ -4.529353, 48.00818 ], [ -4.535157, 48.01363 ], [ -4.530862, 48.034449 ], [ -4.495754, 48.038359 ], [ -4.490329, 48.037838 ], [ -4.490639, 48.03916 ], [ -4.52306, 48.04014 ], [ -4.527535, 48.03881 ], [ -4.541024, 48.03699 ], [ -4.534135, 48.03292 ], [ -4.537149, 48.016173 ], [ -4.544322, 48.01158 ], [ -4.549338, 48.01208 ], [ -4.566122, 48.000394 ], [ -4.589377, 48.006993 ], [ -4.597875, 48.0154 ], [ -4.602944, 48.015137 ], [ -4.622126, 48.01818 ], [ -4.629933, 48.026693 ], [ -4.632962, 48.02937 ], [ -4.645876, 48.02342 ], [ -4.656248, 48.023108 ], [ -4.697144, 48.028127 ], [ -4.731814, 48.03668 ], [ -4.734393, 48.039747 ], [ -4.709302, 48.043722 ], [ -4.706123, 48.04652 ], [ -4.713882, 48.05864 ], [ -4.709625, 48.063565 ], [ -4.679107, 48.061478 ], [ -4.664776, 48.070154 ], [ -4.639194, 48.06788 ], [ -4.625493, 48.07061 ], [ -4.621508, 48.068422 ], [ -4.583146, 48.079864 ], [ -4.568407, 48.08179 ], [ -4.548642, 48.07811 ], [ -4.534789, 48.08832 ], [ -4.504283, 48.08945 ], [ -4.488948, 48.087299 ], [ -4.462293, 48.09772 ], [ -4.457335, 48.096531 ], [ -4.432745, 48.09764 ], [ -4.417778, 48.10606 ], [ -4.38304, 48.10623 ], [ -4.378763, 48.107971 ], [ -4.363856, 48.10839 ], [ -4.341438, 48.09915 ], [ -4.33243, 48.08347 ], [ -4.331669, 48.0842 ], [ -4.334666, 48.097219 ], [ -4.326266, 48.097743 ], [ -4.301536, 48.090425 ], [ -4.296938, 48.092193 ], [ -4.297865, 48.09529 ], [ -4.285671, 48.10487 ], [ -4.284294, 48.107888 ], [ -4.28413, 48.12458 ], [ -4.269592, 48.13338 ], [ -4.272005, 48.146757 ], [ -4.272882, 48.15262 ], [ -4.275193, 48.15557 ], [ -4.294315, 48.158578 ], [ -4.296321, 48.165069 ], [ -4.291844, 48.1742 ], [ -4.296165, 48.183739 ], [ -4.304245, 48.19533 ], [ -4.313021, 48.19788 ], [ -4.316363, 48.203839 ], [ -4.321141, 48.203985 ], [ -4.33223, 48.206241 ], [ -4.367453, 48.2057 ], [ -4.376517, 48.216933 ], [ -4.400469, 48.22051 ], [ -4.404469, 48.222599 ], [ -4.423338, 48.227982 ], [ -4.433753, 48.227506 ], [ -4.440917, 48.23254 ], [ -4.460974, 48.2367 ], [ -4.492286, 48.23455 ], [ -4.496898, 48.232833 ], [ -4.501256, 48.22668 ], [ -4.497055, 48.220268 ], [ -4.510951, 48.20988 ], [ -4.522667, 48.190244 ], [ -4.53774, 48.18043 ], [ -4.541544, 48.17019 ], [ -4.551447, 48.16819 ], [ -4.557326, 48.17319 ], [ -4.560034, 48.17623 ], [ -4.55241, 48.180937 ], [ -4.551033, 48.1981 ], [ -4.560166, 48.22497 ], [ -4.568712, 48.23359 ], [ -4.546001, 48.241368 ], [ -4.544349, 48.24805 ], [ -4.552991, 48.2563 ], [ -4.55692, 48.25868 ], [ -4.580977, 48.25223 ], [ -4.596226, 48.25416 ], [ -4.608267, 48.26076 ], [ -4.621499, 48.26024 ], [ -4.61729, 48.27034 ], [ -4.621169, 48.27981 ], [ -4.60673, 48.283908 ], [ -4.601595, 48.28389 ], [ -4.586949, 48.2756 ], [ -4.569431, 48.283053 ], [ -4.566636, 48.28603 ], [ -4.567603, 48.29161 ], [ -4.578756, 48.32207 ], [ -4.555619, 48.337022 ], [ -4.540339, 48.340313 ], [ -4.535447, 48.33617 ], [ -4.543467, 48.32661 ], [ -4.548711, 48.30935 ], [ -4.556766, 48.30488 ], [ -4.555019, 48.29791 ], [ -4.55307, 48.29463 ], [ -4.532534, 48.286121 ], [ -4.508668, 48.30808 ], [ -4.50324, 48.30574 ], [ -4.515641, 48.29479 ], [ -4.506717, 48.282958 ], [ -4.502599, 48.28086 ], [ -4.472585, 48.28681 ], [ -4.459929, 48.29286 ], [ -4.423409, 48.29137 ], [ -4.410335, 48.276635 ], [ -4.38973, 48.27519 ], [ -4.3845, 48.275156 ], [ -4.371685, 48.2779 ], [ -4.367193, 48.27772 ], [ -4.352547, 48.286252 ], [ -4.342825, 48.28615 ], [ -4.338008, 48.285594 ], [ -4.301017, 48.297566 ], [ -4.275011, 48.295865 ], [ -4.263811, 48.291839 ], [ -4.267463, 48.287213 ], [ -4.279934, 48.288297 ], [ -4.287026, 48.2833 ], [ -4.28861, 48.27403 ], [ -4.264995, 48.267794 ], [ -4.261141, 48.265465 ], [ -4.262778, 48.25889 ], [ -4.252897, 48.25691 ], [ -4.246167, 48.251767 ], [ -4.243368, 48.24883 ], [ -4.217728, 48.25659 ], [ -4.212911, 48.243967 ], [ -4.206533, 48.23908 ], [ -4.206601, 48.2455 ], [ -4.190794, 48.24604 ], [ -4.160309, 48.244183 ], [ -4.13671, 48.237031 ], [ -4.115459, 48.2442 ], [ -4.113189, 48.242111 ], [ -4.117634, 48.22189 ], [ -4.117527, 48.2183 ], [ -4.111773, 48.23774 ], [ -4.108927, 48.240498 ], [ -4.099737, 48.25357 ], [ -4.102081, 48.254498 ], [ -4.135437, 48.2423 ], [ -4.145541, 48.244103 ], [ -4.150633, 48.24962 ], [ -4.160315, 48.24721 ], [ -4.202006, 48.250768 ], [ -4.217295, 48.259745 ], [ -4.237241, 48.25582 ], [ -4.242158, 48.25695 ], [ -4.273701, 48.27887 ], [ -4.258338, 48.28093 ], [ -4.235661, 48.28996 ], [ -4.220276, 48.28904 ], [ -4.200455, 48.29338 ], [ -4.195915, 48.291671 ], [ -4.189688, 48.29692 ], [ -4.194124, 48.297779 ], [ -4.234266, 48.29841 ], [ -4.238863, 48.30741 ], [ -4.221139, 48.31395 ], [ -4.226507, 48.31358 ], [ -4.240599, 48.31018 ], [ -4.250469, 48.30279 ], [ -4.273167, 48.310029 ], [ -4.27482, 48.31571 ], [ -4.252411, 48.32382 ], [ -4.255241, 48.32734 ], [ -4.272601, 48.32013 ], [ -4.282835, 48.31929 ], [ -4.294179, 48.31269 ], [ -4.329565, 48.31582 ], [ -4.32945, 48.318782 ], [ -4.310669, 48.33073 ], [ -4.311939, 48.33615 ], [ -4.282496, 48.34303 ], [ -4.277837, 48.344618 ], [ -4.282143, 48.34605 ], [ -4.28421, 48.35078 ], [ -4.270663, 48.35408 ], [ -4.268652, 48.35766 ], [ -4.273335, 48.356045 ], [ -4.292985, 48.35355 ], [ -4.302169, 48.35564 ], [ -4.305939, 48.34377 ], [ -4.325979, 48.34091 ], [ -4.329235, 48.34675 ], [ -4.318481, 48.36217 ], [ -4.323759, 48.35803 ], [ -4.346923, 48.34335 ], [ -4.351771, 48.344774 ], [ -4.344051, 48.354796 ], [ -4.34561, 48.355178 ], [ -4.359558, 48.347425 ], [ -4.363548, 48.345043 ], [ -4.371215, 48.331878 ], [ -4.378613, 48.326762 ], [ -4.409877, 48.32543 ], [ -4.411502, 48.328489 ], [ -4.395863, 48.340801 ], [ -4.396635, 48.341756 ], [ -4.440759, 48.3279 ], [ -4.450675, 48.328924 ], [ -4.434543, 48.36162 ], [ -4.417357, 48.36993 ], [ -4.404822, 48.38154 ], [ -4.367629, 48.395554 ], [ -4.36111, 48.40121 ], [ -4.356197, 48.40265 ], [ -4.352303, 48.40237 ], [ -4.3484, 48.40212 ], [ -4.318693, 48.414631 ], [ -4.31387, 48.41567 ], [ -4.270246, 48.44314 ], [ -4.274149, 48.443868 ], [ -4.278671, 48.439669 ], [ -4.281849, 48.436935 ], [ -4.291534, 48.434721 ], [ -4.313879, 48.420594 ], [ -4.32849, 48.418009 ], [ -4.347639, 48.408598 ], [ -4.36716, 48.406986 ], [ -4.3711, 48.40084 ], [ -4.376029, 48.40019 ], [ -4.379747, 48.39788 ], [ -4.389557, 48.39758 ], [ -4.405552, 48.39055 ], [ -4.423117, 48.39721 ], [ -4.430329, 48.39736 ], [ -4.433647, 48.39635 ], [ -4.437427, 48.38292 ], [ -4.457271, 48.385857 ], [ -4.471386, 48.38141 ], [ -4.481949, 48.38176 ], [ -4.506431, 48.37508 ], [ -4.533866, 48.35887 ], [ -4.548618, 48.36092 ], [ -4.553854, 48.3614 ], [ -4.570949, 48.35045 ], [ -4.607307, 48.33877 ], [ -4.616817, 48.339 ], [ -4.621781, 48.33827 ], [ -4.626704, 48.33753 ], [ -4.63794, 48.344218 ], [ -4.652385, 48.3461 ], [ -4.674345, 48.35402 ], [ -4.678908, 48.35545 ], [ -4.698435, 48.35108 ], [ -4.699714, 48.33762 ], [ -4.712448, 48.331265 ], [ -4.738621, 48.33168 ], [ -4.764509, 48.328232 ], [ -4.773022, 48.33179 ], [ -4.771505, 48.33519 ], [ -4.774583, 48.338029 ], [ -4.772488, 48.34824 ], [ -4.779123, 48.3574 ], [ -4.777273, 48.36048 ], [ -4.771217, 48.36145 ], [ -4.755806, 48.359434 ], [ -4.750646, 48.36013 ], [ -4.749865, 48.364669 ], [ -4.746314, 48.36681 ], [ -4.755563, 48.363843 ], [ -4.775966, 48.36301 ], [ -4.783444, 48.361295 ], [ -4.787291, 48.36253 ], [ -4.785701, 48.366354 ], [ -4.77415, 48.364673 ], [ -4.761416, 48.375157 ], [ -4.760987, 48.37858 ], [ -4.773252, 48.3879 ], [ -4.776351, 48.40696 ], [ -4.785326, 48.407513 ], [ -4.793463, 48.41594 ], [ -4.784643, 48.435457 ], [ -4.775978, 48.44389 ], [ -4.780469, 48.44531 ], [ -4.777375, 48.45156 ], [ -4.765067, 48.465698 ], [ -4.757024, 48.466181 ], [ -4.759487, 48.45978 ], [ -4.748103, 48.47084 ], [ -4.718163, 48.47439 ], [ -4.72164, 48.47538 ], [ -4.7247, 48.47686 ], [ -4.727757, 48.475101 ], [ -4.757783, 48.47048 ], [ -4.767051, 48.47669 ], [ -4.766669, 48.48016 ], [ -4.772723, 48.48549 ], [ -4.777316, 48.498549 ], [ -4.771508, 48.51412 ], [ -4.766439, 48.51654 ], [ -4.763541, 48.519286 ], [ -4.760316, 48.52946 ], [ -4.751466, 48.533201 ], [ -4.748683, 48.54343 ], [ -4.729872, 48.5556 ], [ -4.720355, 48.55809 ], [ -4.706425, 48.55319 ], [ -4.704109, 48.550046 ], [ -4.699935, 48.56958 ], [ -4.689952, 48.57096 ], [ -4.680567, 48.56836 ], [ -4.668866, 48.574275 ], [ -4.663167, 48.568941 ], [ -4.660517, 48.57139 ], [ -4.647143, 48.57213 ], [ -4.628999, 48.57807 ], [ -4.600176, 48.57196 ], [ -4.592368, 48.559838 ], [ -4.595545, 48.55341 ], [ -4.583978, 48.55587 ], [ -4.579685, 48.55528 ], [ -4.577643, 48.560066 ], [ -4.556815, 48.558856 ], [ -4.54183, 48.55596 ], [ -4.53071, 48.54879 ], [ -4.525181, 48.55349 ], [ -4.512507, 48.54913 ], [ -4.507057, 48.55288 ], [ -4.511972, 48.55185 ], [ -4.554336, 48.56205 ], [ -4.584996, 48.562795 ], [ -4.590886, 48.57222 ], [ -4.594371, 48.574748 ], [ -4.609416, 48.576875 ], [ -4.605195, 48.58306 ], [ -4.605345, 48.60054 ], [ -4.598875, 48.60552 ], [ -4.590369, 48.602034 ], [ -4.589687, 48.59518 ], [ -4.563925, 48.59725 ], [ -4.532784, 48.59538 ], [ -4.5289, 48.59292 ], [ -4.519757, 48.58599 ], [ -4.504765, 48.58621 ], [ -4.487957, 48.57404 ], [ -4.478405, 48.57208 ], [ -4.499306, 48.587365 ], [ -4.514267, 48.588822 ], [ -4.539432, 48.599913 ], [ -4.558074, 48.60606 ], [ -4.566393, 48.614472 ], [ -4.563882, 48.62113 ], [ -4.545286, 48.62675 ], [ -4.543364, 48.63326 ], [ -4.528742, 48.63065 ], [ -4.513925, 48.63227 ], [ -4.503074, 48.621933 ], [ -4.467954, 48.62642 ], [ -4.462756, 48.62706 ], [ -4.443949, 48.638917 ], [ -4.402521, 48.637097 ], [ -4.397363, 48.63639 ], [ -4.429006, 48.647623 ], [ -4.433326, 48.65344 ], [ -4.397146, 48.656206 ], [ -4.353749, 48.674825 ], [ -4.349139, 48.676475 ], [ -4.32978, 48.675484 ], [ -4.32702, 48.66933 ], [ -4.313352, 48.67039 ], [ -4.310227, 48.667844 ], [ -4.300849, 48.665249 ], [ -4.296315, 48.66033 ], [ -4.303197, 48.65154 ], [ -4.315032, 48.645416 ], [ -4.31099, 48.643425 ], [ -4.314156, 48.640818 ], [ -4.316152, 48.63775 ], [ -4.311593, 48.635176 ], [ -4.301942, 48.633023 ], [ -4.294016, 48.63628 ], [ -4.293186, 48.64127 ], [ -4.271009, 48.64929 ], [ -4.250349, 48.64963 ], [ -4.245142, 48.649834 ], [ -4.230494, 48.65333 ], [ -4.229702, 48.650268 ], [ -4.219577, 48.648914 ], [ -4.199607, 48.65266 ], [ -4.194485, 48.651999 ], [ -4.217569, 48.6612 ], [ -4.191406, 48.68268 ], [ -4.167145, 48.688261 ], [ -4.162413, 48.689765 ], [ -4.133031, 48.69525 ], [ -4.102175, 48.694072 ], [ -4.095117, 48.691026 ], [ -4.094512, 48.68758 ], [ -4.092403, 48.69083 ], [ -4.081961, 48.69158 ], [ -4.057584, 48.673129 ], [ -4.057122, 48.66962 ], [ -4.055639, 48.67216 ], [ -4.058299, 48.6764 ], [ -4.065692, 48.684966 ], [ -4.060875, 48.68717 ], [ -4.038455, 48.68658 ], [ -4.035777, 48.687651 ], [ -4.056171, 48.68879 ], [ -4.053806, 48.70226 ], [ -4.039427, 48.705198 ], [ -4.035343, 48.711526 ], [ -4.015228, 48.713436 ], [ -4.008163, 48.72259 ], [ -4.006921, 48.725944 ], [ -4.001808, 48.72659 ], [ -4.004735, 48.72095 ], [ -3.998949, 48.71425 ], [ -3.986241, 48.727547 ], [ -3.978134, 48.722966 ], [ -3.969138, 48.727638 ], [ -3.964353, 48.721968 ], [ -3.973629, 48.70389 ], [ -3.973259, 48.69704 ], [ -3.963773, 48.688728 ], [ -3.969351, 48.679335 ], [ -3.953119, 48.67172 ], [ -3.95234, 48.657802 ], [ -3.956145, 48.65128 ], [ -3.957215, 48.64785 ], [ -3.950619, 48.638741 ], [ -3.953861, 48.61828 ], [ -3.93501, 48.59868 ], [ -3.94183, 48.61169 ], [ -3.938912, 48.61453 ], [ -3.94374, 48.61581 ], [ -3.950629, 48.625006 ], [ -3.94655, 48.64195 ], [ -3.950709, 48.651387 ], [ -3.942217, 48.655369 ], [ -3.929798, 48.660175 ], [ -3.921061, 48.6726 ], [ -3.895587, 48.670588 ], [ -3.894779, 48.66726 ], [ -3.904755, 48.65973 ], [ -3.903882, 48.656319 ], [ -3.897599, 48.646833 ], [ -3.88552, 48.64048 ], [ -3.880688, 48.639172 ], [ -3.860141, 48.63169 ], [ -3.858216, 48.62876 ], [ -3.858126, 48.61812 ], [ -3.859482, 48.60957 ], [ -3.866444, 48.605459 ], [ -3.870649, 48.603997 ], [ -3.857434, 48.607452 ], [ -3.849571, 48.60377 ], [ -3.858036, 48.612663 ], [ -3.851675, 48.622095 ], [ -3.832444, 48.62781 ], [ -3.816795, 48.62854 ], [ -3.811288, 48.62892 ], [ -3.847132, 48.63096 ], [ -3.861363, 48.66784 ], [ -3.8552, 48.671451 ], [ -3.850963, 48.66172 ], [ -3.846264, 48.660184 ], [ -3.85274, 48.6878 ], [ -3.837993, 48.70626 ], [ -3.834167, 48.7086 ], [ -3.824788, 48.70657 ], [ -3.814454, 48.71455 ], [ -3.799403, 48.71127 ], [ -3.785042, 48.701348 ], [ -3.779723, 48.701769 ], [ -3.763109, 48.709006 ], [ -3.747877, 48.70777 ], [ -3.722155, 48.705459 ], [ -3.701328, 48.689861 ], [ -3.676629, 48.6881 ], [ -3.653483, 48.694749 ], [ -3.645368, 48.69452 ], [ -3.643467, 48.693404 ], [ -3.652481, 48.683792 ], [ -3.64189, 48.67288 ], [ -3.649361, 48.668197 ], [ -3.653735, 48.66626 ], [ -3.657899, 48.661735 ], [ -3.659144, 48.65921 ], [ -3.660776, 48.6563 ], [ -3.663536, 48.6538 ], [ -3.654996, 48.624011 ], [ -3.654181, 48.617296 ], [ -3.64898, 48.61163 ], [ -3.63988, 48.609114 ], [ -3.640603, 48.59606 ], [ -3.636745, 48.593329 ], [ -3.629298, 48.58836 ], [ -3.613731, 48.589224 ], [ -3.599568, 48.5846 ], [ -3.594583, 48.585749 ], [ -3.585718, 48.573269 ], [ -3.599429, 48.55861 ], [ -3.581724, 48.55397 ], [ -3.572694, 48.556768 ], [ -3.553824, 48.54128 ], [ -3.53928, 48.53825 ], [ -3.555746, 48.52961 ], [ -3.592834, 48.50004 ], [ -3.597677, 48.498591 ], [ -3.604168, 48.49405 ], [ -3.601798, 48.484415 ], [ -3.604904, 48.47825 ], [ -3.59807, 48.473897 ], [ -3.599593, 48.4708 ], [ -3.594945, 48.47043 ], [ -3.592163, 48.4645 ], [ -3.578692, 48.46273 ], [ -3.578885, 48.45952 ], [ -3.56894, 48.45294 ], [ -3.552517, 48.450752 ], [ -3.550496, 48.44783 ], [ -3.554192, 48.445378 ], [ -3.585041, 48.433 ], [ -3.598768, 48.422644 ], [ -3.600208, 48.4023 ], [ -3.603722, 48.40048 ], [ -3.603261, 48.39714 ], [ -3.607682, 48.388327 ], [ -3.603288, 48.38637 ], [ -3.554415, 48.37717 ], [ -3.553282, 48.37016 ], [ -3.562814, 48.34702 ], [ -3.556146, 48.34243 ], [ -3.549958, 48.31572 ], [ -3.541027, 48.31334 ], [ -3.529744, 48.320253 ], [ -3.52279, 48.32006 ], [ -3.518631, 48.31807 ], [ -3.528434, 48.31657 ], [ -3.539615, 48.30157 ], [ -3.547487, 48.29871 ], [ -3.552316, 48.299682 ], [ -3.553028, 48.293016 ], [ -3.530105, 48.286558 ], [ -3.522957, 48.28172 ], [ -3.517898, 48.28226 ], [ -3.52585, 48.2708 ], [ -3.526512, 48.2611 ], [ -3.522177, 48.25525 ], [ -3.540715, 48.253206 ], [ -3.539952, 48.24979 ], [ -3.544423, 48.24357 ], [ -3.553725, 48.24087 ], [ -3.556488, 48.230716 ], [ -3.556032, 48.22727 ], [ -3.54126, 48.2092 ], [ -3.522589, 48.203939 ], [ -3.521292, 48.197176 ], [ -3.519676, 48.19067 ], [ -3.543101, 48.193575 ], [ -3.566669, 48.190033 ], [ -3.564839, 48.185747 ], [ -3.56989, 48.18532 ], [ -3.591673, 48.17683 ], [ -3.620747, 48.17098 ], [ -3.625331, 48.169746 ], [ -3.653281, 48.15622 ], [ -3.671562, 48.151477 ], [ -3.696017, 48.15202 ], [ -3.696177, 48.148607 ], [ -3.712945, 48.14178 ], [ -3.71181, 48.13498 ], [ -3.723829, 48.12439 ], [ -3.720172, 48.118973 ], [ -3.732486, 48.112949 ], [ -3.729698, 48.10283 ], [ -3.732973, 48.096268 ], [ -3.727878, 48.095747 ], [ -3.708042, 48.09815 ], [ -3.695004, 48.09336 ], [ -3.698773, 48.09088 ], [ -3.70381, 48.08468 ], [ -3.70371, 48.06808 ], [ -3.701509, 48.064867 ], [ -3.674599, 48.05492 ], [ -3.660917, 48.01757 ], [ -3.649005, 48.006023 ], [ -3.641041, 47.985793 ], [ -3.621982, 47.982815 ], [ -3.613014, 47.9851 ], [ -3.600203, 47.990129 ], [ -3.590049, 47.98929 ], [ -3.581993, 47.98596 ], [ -3.574363, 47.99059 ], [ -3.554116, 47.99188 ], [ -3.545771, 47.98782 ], [ -3.530788, 47.98621 ], [ -3.517531, 47.97599 ], [ -3.502192, 47.97538 ], [ -3.497449, 47.97673 ], [ -3.485293, 47.96686 ], [ -3.479924, 47.950798 ], [ -3.470864, 47.94826 ], [ -3.468019, 47.94555 ], [ -3.463967, 47.947588 ], [ -3.461307, 47.95761 ], [ -3.441627, 47.960158 ], [ -3.412978, 47.97334 ], [ -3.408436, 47.967258 ], [ -3.40339, 47.967001 ], [ -3.401313, 47.960722 ], [ -3.392807, 47.95407 ], [ -3.393172, 47.95086 ], [ -3.400984, 47.941996 ], [ -3.388025, 47.92704 ], [ -3.391871, 47.9205 ], [ -3.406288, 47.917309 ], [ -3.411356, 47.90481 ], [ -3.402412, 47.88536 ], [ -3.403891, 47.868383 ], [ -3.398383, 47.863104 ], [ -3.40869, 47.863227 ], [ -3.42119, 47.86861 ], [ -3.449854, 47.861328 ], [ -3.44892, 47.848457 ], [ -3.457662, 47.836633 ], [ -3.462754, 47.83693 ], [ -3.472813, 47.83582 ], [ -3.485876, 47.82529 ], [ -3.490984, 47.825064 ], [ -3.508975, 47.83158 ], [ -3.518947, 47.83906 ], [ -3.519274, 47.8487 ], [ -3.523004, 47.849147 ] ] ], [ [ [ -5.102603, 48.436117 ], [ -5.105166, 48.43669 ], [ -5.110482, 48.43626 ], [ -5.115104, 48.437675 ], [ -5.108277, 48.442828 ], [ -5.096772, 48.44719 ], [ -5.093861, 48.451747 ], [ -5.102486, 48.455389 ], [ -5.130485, 48.449199 ], [ -5.138352, 48.44952 ], [ -5.139017, 48.45091 ], [ -5.137878, 48.4525 ], [ -5.131837, 48.458421 ], [ -5.129797, 48.459556 ], [ -5.110304, 48.465651 ], [ -5.104911, 48.47157 ], [ -5.092297, 48.47452 ], [ -5.081802, 48.473407 ], [ -5.076844, 48.47477 ], [ -5.073014, 48.477272 ], [ -5.074816, 48.48181 ], [ -5.072523, 48.482731 ], [ -5.069949, 48.48226 ], [ -5.065053, 48.481124 ], [ -5.060443, 48.47681 ], [ -5.052693, 48.47665 ], [ -5.055543, 48.46671 ], [ -5.048431, 48.464324 ], [ -5.037898, 48.464009 ], [ -5.035702, 48.46307 ], [ -5.035399, 48.461366 ], [ -5.038806, 48.458765 ], [ -5.04919, 48.458032 ], [ -5.059784, 48.450194 ], [ -5.080455, 48.449453 ], [ -5.089432, 48.44086 ], [ -5.099586, 48.439019 ], [ -5.102603, 48.436117 ] ] ], [ [ [ -3.99181, 48.7364 ], [ -3.995883, 48.740508 ], [ -4.006553, 48.74086 ], [ -4.01323, 48.743406 ], [ -4.021748, 48.73945 ], [ -4.034268, 48.742282 ], [ -4.036562, 48.743194 ], [ -4.03781, 48.744755 ], [ -4.037064, 48.746406 ], [ -4.021052, 48.75262 ], [ -4.010361, 48.75262 ], [ -4.007809, 48.75213 ], [ -4.000447, 48.747039 ], [ -3.990899, 48.744367 ], [ -3.988799, 48.739298 ], [ -3.99181, 48.7364 ] ] ], [ [ [ -4.959196, 48.389413 ], [ -4.963527, 48.39111 ], [ -4.966327, 48.39765 ], [ -4.961496, 48.40143 ], [ -4.953596, 48.394917 ], [ -4.95761, 48.39077 ], [ -4.959196, 48.389413 ] ] ], [ [ [ -4.845997, 48.031552 ], [ -4.854769, 48.035053 ], [ -4.858933, 48.0392 ], [ -4.866657, 48.03972 ], [ -4.868208, 48.040899 ], [ -4.866914, 48.04217 ], [ -4.852015, 48.03938 ], [ -4.849512, 48.034789 ], [ -4.845987, 48.03257 ], [ -4.845997, 48.031552 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "29", "CODE_DEPT": "2A", "NOM_DEPT": "CORSE-DU-SUD", "CODE_CHF": "004", "NOM_CHF": "AJACCIO", "X_CHF_LIEU": "11764", "Y_CHF_LIEU": "61089", "X_CENTROID": "11978", "Y_CENTROID": "61036", "CODE_REG": "94", "NOM_REGION": "CORSE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.402269, 41.858707 ], [ 9.40134, 41.855258 ], [ 9.405615, 41.820517 ], [ 9.395405, 41.79726 ], [ 9.399036, 41.787113 ], [ 9.396644, 41.773723 ], [ 9.40669, 41.767795 ], [ 9.404187, 41.720457 ], [ 9.401378, 41.717736 ], [ 9.404344, 41.71503 ], [ 9.399548, 41.694536 ], [ 9.379808, 41.68641 ], [ 9.37325, 41.677329 ], [ 9.383941, 41.667048 ], [ 9.385149, 41.65342 ], [ 9.38287, 41.65001 ], [ 9.368152, 41.63717 ], [ 9.360269, 41.640373 ], [ 9.351247, 41.63957 ], [ 9.346912, 41.633532 ], [ 9.353355, 41.62097 ], [ 9.350589, 41.618579 ], [ 9.323208, 41.61773 ], [ 9.313374, 41.625129 ], [ 9.313614, 41.62861 ], [ 9.305271, 41.625823 ], [ 9.305314, 41.615532 ], [ 9.286701, 41.60577 ], [ 9.283775, 41.595518 ], [ 9.286961, 41.589021 ], [ 9.294481, 41.584814 ], [ 9.298835, 41.586039 ], [ 9.320078, 41.60405 ], [ 9.333619, 41.602162 ], [ 9.34324, 41.59472 ], [ 9.356662, 41.596003 ], [ 9.361264, 41.596049 ], [ 9.367819, 41.593282 ], [ 9.351345, 41.577 ], [ 9.347986, 41.563808 ], [ 9.336623, 41.559062 ], [ 9.33212, 41.559686 ], [ 9.298422, 41.541707 ], [ 9.287077, 41.531065 ], [ 9.27429, 41.52805 ], [ 9.283002, 41.51662 ], [ 9.271516, 41.501857 ], [ 9.276703, 41.496304 ], [ 9.284676, 41.49975 ], [ 9.28651, 41.496707 ], [ 9.287259, 41.48379 ], [ 9.282937, 41.477484 ], [ 9.272049, 41.471138 ], [ 9.271555, 41.464763 ], [ 9.262851, 41.46251 ], [ 9.243115, 41.447701 ], [ 9.225862, 41.44253 ], [ 9.2246, 41.43279 ], [ 9.227671, 41.42637 ], [ 9.224478, 41.41624 ], [ 9.216085, 41.41412 ], [ 9.216774, 41.410876 ], [ 9.218589, 41.407427 ], [ 9.222895, 41.406279 ], [ 9.258989, 41.427417 ], [ 9.263385, 41.426434 ], [ 9.263234, 41.422966 ], [ 9.258217, 41.413296 ], [ 9.25074, 41.409321 ], [ 9.244524, 41.40016 ], [ 9.240734, 41.398129 ], [ 9.223104, 41.377944 ], [ 9.219627, 41.368038 ], [ 9.182812, 41.365997 ], [ 9.16978, 41.383335 ], [ 9.152261, 41.386186 ], [ 9.15566, 41.388643 ], [ 9.139983, 41.39014 ], [ 9.125563, 41.397441 ], [ 9.099378, 41.39283 ], [ 9.091646, 41.400096 ], [ 9.092722, 41.403474 ], [ 9.097376, 41.41327 ], [ 9.106897, 41.42035 ], [ 9.106884, 41.427196 ], [ 9.118701, 41.437708 ], [ 9.11301, 41.441589 ], [ 9.099503, 41.443376 ], [ 9.095534, 41.449469 ], [ 9.080824, 41.442 ], [ 9.072386, 41.44421 ], [ 9.067328, 41.449747 ], [ 9.068437, 41.463037 ], [ 9.077882, 41.474476 ], [ 9.079939, 41.47749 ], [ 9.071007, 41.475982 ], [ 9.055779, 41.462995 ], [ 9.047583, 41.45999 ], [ 9.043022, 41.45999 ], [ 9.03507, 41.46783 ], [ 9.022137, 41.46627 ], [ 9.015584, 41.474946 ], [ 9.002337, 41.47644 ], [ 8.998816, 41.47868 ], [ 8.997088, 41.483615 ], [ 8.994792, 41.485538 ], [ 8.983071, 41.475357 ], [ 8.974871, 41.48333 ], [ 8.966356, 41.48546 ], [ 8.96214, 41.49105 ], [ 8.945062, 41.489847 ], [ 8.940488, 41.490089 ], [ 8.936675, 41.492079 ], [ 8.924253, 41.491323 ], [ 8.91346, 41.506177 ], [ 8.886087, 41.50795 ], [ 8.885119, 41.517982 ], [ 8.878203, 41.52254 ], [ 8.856037, 41.51877 ], [ 8.846536, 41.518159 ], [ 8.842171, 41.52322 ], [ 8.85237, 41.535131 ], [ 8.851584, 41.54222 ], [ 8.840386, 41.545694 ], [ 8.821499, 41.54632 ], [ 8.812014, 41.553851 ], [ 8.808372, 41.555944 ], [ 8.794641, 41.556496 ], [ 8.787374, 41.560273 ], [ 8.789404, 41.566194 ], [ 8.799291, 41.57313 ], [ 8.790251, 41.585029 ], [ 8.781873, 41.58766 ], [ 8.779149, 41.590467 ], [ 8.789267, 41.605495 ], [ 8.792686, 41.629142 ], [ 8.800028, 41.632906 ], [ 8.804489, 41.63849 ], [ 8.817864, 41.63107 ], [ 8.852231, 41.647112 ], [ 8.865757, 41.648033 ], [ 8.869503, 41.646095 ], [ 8.8761, 41.65074 ], [ 8.883196, 41.670527 ], [ 8.912007, 41.67961 ], [ 8.915783, 41.681568 ], [ 8.912302, 41.690968 ], [ 8.889315, 41.689628 ], [ 8.878116, 41.695172 ], [ 8.84219, 41.69762 ], [ 8.828976, 41.70716 ], [ 8.825423, 41.709389 ], [ 8.812779, 41.713537 ], [ 8.786075, 41.703374 ], [ 8.773258, 41.716704 ], [ 8.783939, 41.73189 ], [ 8.784015, 41.73536 ], [ 8.777758, 41.740349 ], [ 8.768761, 41.74068 ], [ 8.714522, 41.722558 ], [ 8.709893, 41.722288 ], [ 8.705529, 41.72352 ], [ 8.706298, 41.733721 ], [ 8.702504, 41.739627 ], [ 8.670291, 41.74272 ], [ 8.661252, 41.740998 ], [ 8.65924, 41.744213 ], [ 8.66307, 41.7503 ], [ 8.671986, 41.752361 ], [ 8.684422, 41.74787 ], [ 8.708499, 41.757862 ], [ 8.712106, 41.76009 ], [ 8.730464, 41.779696 ], [ 8.723744, 41.78868 ], [ 8.713017, 41.795215 ], [ 8.712638, 41.801242 ], [ 8.734522, 41.798054 ], [ 8.753967, 41.811701 ], [ 8.757335, 41.809328 ], [ 8.771294, 41.81124 ], [ 8.779907, 41.833041 ], [ 8.756213, 41.84544 ], [ 8.787239, 41.84994 ], [ 8.789592, 41.853054 ], [ 8.790674, 41.85609 ], [ 8.788534, 41.86828 ], [ 8.782124, 41.87295 ], [ 8.780459, 41.88227 ], [ 8.800192, 41.88964 ], [ 8.802448, 41.896015 ], [ 8.799274, 41.902225 ], [ 8.797666, 41.90537 ], [ 8.778898, 41.9252 ], [ 8.769819, 41.926602 ], [ 8.761164, 41.924309 ], [ 8.75235, 41.932492 ], [ 8.747681, 41.93298 ], [ 8.74089, 41.928657 ], [ 8.739453, 41.91825 ], [ 8.719683, 41.909146 ], [ 8.673406, 41.90528 ], [ 8.641075, 41.909468 ], [ 8.636808, 41.907976 ], [ 8.609261, 41.895592 ], [ 8.612876, 41.901911 ], [ 8.611022, 41.912061 ], [ 8.620701, 41.927685 ], [ 8.621954, 41.937778 ], [ 8.618496, 41.940088 ], [ 8.609461, 41.93984 ], [ 8.593911, 41.963567 ], [ 8.618387, 41.97105 ], [ 8.622871, 41.970487 ], [ 8.644462, 41.967948 ], [ 8.662883, 41.97676 ], [ 8.668423, 41.98214 ], [ 8.669048, 41.984745 ], [ 8.669042, 41.99019 ], [ 8.667411, 41.993066 ], [ 8.659055, 41.992559 ], [ 8.654614, 42.001246 ], [ 8.656559, 42.004015 ], [ 8.658264, 42.010562 ], [ 8.688571, 42.02669 ], [ 8.706992, 42.027769 ], [ 8.719993, 42.032247 ], [ 8.725381, 42.04154 ], [ 8.742971, 42.04308 ], [ 8.746189, 42.04954 ], [ 8.743853, 42.0563 ], [ 8.743931, 42.059452 ], [ 8.740537, 42.06172 ], [ 8.733688, 42.06536 ], [ 8.720526, 42.064162 ], [ 8.717195, 42.077387 ], [ 8.71327, 42.083409 ], [ 8.705993, 42.0868 ], [ 8.70926, 42.096518 ], [ 8.700924, 42.107841 ], [ 8.701201, 42.11119 ], [ 8.689081, 42.113847 ], [ 8.679867, 42.10677 ], [ 8.662682, 42.10383 ], [ 8.650968, 42.116987 ], [ 8.64438, 42.1212 ], [ 8.635584, 42.12008 ], [ 8.633143, 42.12302 ], [ 8.623971, 42.123776 ], [ 8.611144, 42.133393 ], [ 8.584059, 42.130608 ], [ 8.5923, 42.142668 ], [ 8.585238, 42.15088 ], [ 8.576325, 42.152627 ], [ 8.56408, 42.147722 ], [ 8.560186, 42.14584 ], [ 8.562846, 42.152065 ], [ 8.579598, 42.15763 ], [ 8.591733, 42.167706 ], [ 8.584167, 42.171033 ], [ 8.566028, 42.17029 ], [ 8.564966, 42.176331 ], [ 8.582969, 42.178933 ], [ 8.586424, 42.18125 ], [ 8.584858, 42.182744 ], [ 8.582377, 42.183271 ], [ 8.578621, 42.19294 ], [ 8.5804, 42.202969 ], [ 8.570208, 42.20881 ], [ 8.573701, 42.215096 ], [ 8.570492, 42.22136 ], [ 8.572773, 42.227767 ], [ 8.57003, 42.230533 ], [ 8.560865, 42.231167 ], [ 8.552525, 42.228099 ], [ 8.545466, 42.232531 ], [ 8.54506, 42.238625 ], [ 8.563363, 42.23781 ], [ 8.606866, 42.250242 ], [ 8.608807, 42.25342 ], [ 8.635878, 42.252939 ], [ 8.643457, 42.256951 ], [ 8.6843, 42.26288 ], [ 8.688917, 42.263453 ], [ 8.691251, 42.26612 ], [ 8.690553, 42.27492 ], [ 8.691003, 42.27755 ], [ 8.687189, 42.282008 ], [ 8.682676, 42.28202 ], [ 8.675395, 42.284766 ], [ 8.672397, 42.29427 ], [ 8.660499, 42.299 ], [ 8.660471, 42.302349 ], [ 8.639531, 42.30108 ], [ 8.636827, 42.303616 ], [ 8.62767, 42.31076 ], [ 8.60944, 42.30801 ], [ 8.602213, 42.31152 ], [ 8.600082, 42.3183 ], [ 8.623362, 42.32973 ], [ 8.626292, 42.33645 ], [ 8.615678, 42.347464 ], [ 8.602747, 42.351453 ], [ 8.598413, 42.35288 ], [ 8.589438, 42.3515 ], [ 8.565776, 42.33505 ], [ 8.556929, 42.335118 ], [ 8.552554, 42.36489 ], [ 8.548586, 42.366729 ], [ 8.544337, 42.367923 ], [ 8.546088, 42.37446 ], [ 8.550006, 42.375926 ], [ 8.556867, 42.37153 ], [ 8.570213, 42.371319 ], [ 8.57725, 42.375528 ], [ 8.573411, 42.38141 ], [ 8.577985, 42.380562 ], [ 8.601111, 42.370128 ], [ 8.614264, 42.37385 ], [ 8.637097, 42.37283 ], [ 8.658591, 42.360101 ], [ 8.681455, 42.358196 ], [ 8.68348, 42.348031 ], [ 8.687893, 42.34882 ], [ 8.71445, 42.348452 ], [ 8.724757, 42.342175 ], [ 8.728569, 42.340176 ], [ 8.756264, 42.338445 ], [ 8.771169, 42.325407 ], [ 8.775858, 42.32517 ], [ 8.789827, 42.32569 ], [ 8.820246, 42.31711 ], [ 8.857166, 42.330983 ], [ 8.861452, 42.32964 ], [ 8.860741, 42.299152 ], [ 8.877006, 42.292963 ], [ 8.88513, 42.284907 ], [ 8.88282, 42.27508 ], [ 8.881945, 42.271691 ], [ 8.901546, 42.256445 ], [ 8.904768, 42.25387 ], [ 8.909395, 42.254521 ], [ 8.923217, 42.256607 ], [ 8.926624, 42.254191 ], [ 8.928923, 42.25125 ], [ 8.935556, 42.246806 ], [ 8.940115, 42.23721 ], [ 8.947593, 42.2337 ], [ 8.974011, 42.232444 ], [ 8.977408, 42.226755 ], [ 8.979794, 42.223989 ], [ 8.984029, 42.22461 ], [ 8.994525, 42.214496 ], [ 9.005959, 42.211902 ], [ 9.006493, 42.20872 ], [ 9.011125, 42.20837 ], [ 9.023252, 42.203576 ], [ 9.045743, 42.20773 ], [ 9.047977, 42.195904 ], [ 9.048986, 42.192998 ], [ 9.04895, 42.178679 ], [ 9.048123, 42.17571 ], [ 9.052274, 42.16967 ], [ 9.065062, 42.165879 ], [ 9.076168, 42.13615 ], [ 9.072032, 42.130006 ], [ 9.083633, 42.124771 ], [ 9.092096, 42.11673 ], [ 9.105495, 42.115671 ], [ 9.123646, 42.105403 ], [ 9.127745, 42.095747 ], [ 9.133688, 42.090554 ], [ 9.13055, 42.061789 ], [ 9.133566, 42.059397 ], [ 9.131797, 42.05287 ], [ 9.151575, 42.03897 ], [ 9.157677, 42.029724 ], [ 9.159622, 42.026592 ], [ 9.185928, 42.03065 ], [ 9.216496, 42.027759 ], [ 9.221085, 42.027606 ], [ 9.220737, 42.024319 ], [ 9.215612, 41.99495 ], [ 9.220243, 41.98962 ], [ 9.218995, 41.986398 ], [ 9.221897, 41.97352 ], [ 9.226045, 41.97221 ], [ 9.222672, 41.94947 ], [ 9.216813, 41.94063 ], [ 9.226439, 41.933843 ], [ 9.230643, 41.93263 ], [ 9.216597, 41.919734 ], [ 9.21328, 41.91746 ], [ 9.216501, 41.914946 ], [ 9.234749, 41.914995 ], [ 9.249417, 41.906675 ], [ 9.250098, 41.896496 ], [ 9.237199, 41.881995 ], [ 9.236107, 41.875436 ], [ 9.229796, 41.858634 ], [ 9.227497, 41.855589 ], [ 9.230964, 41.853267 ], [ 9.236082, 41.847765 ], [ 9.245264, 41.84877 ], [ 9.270567, 41.840564 ], [ 9.283692, 41.844089 ], [ 9.302048, 41.843426 ], [ 9.308599, 41.838879 ], [ 9.309095, 41.83214 ], [ 9.327056, 41.835808 ], [ 9.372932, 41.864775 ], [ 9.386719, 41.866392 ], [ 9.397891, 41.860019 ], [ 9.402269, 41.858707 ] ] ], [ [ [ 9.262569, 41.36307 ], [ 9.253598, 41.3697 ], [ 9.259125, 41.37258 ], [ 9.265988, 41.372241 ], [ 9.268173, 41.369273 ], [ 9.272667, 41.369148 ], [ 9.272825, 41.36601 ], [ 9.271029, 41.36496 ], [ 9.266923, 41.365476 ], [ 9.26659, 41.363794 ], [ 9.262569, 41.36307 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "30", "CODE_DEPT": "2B", "NOM_DEPT": "HAUTE-CORSE", "CODE_CHF": "033", "NOM_CHF": "BASTIA", "X_CHF_LIEU": "12285", "Y_CHF_LIEU": "61994", "X_CENTROID": "12112", "Y_CENTROID": "61638", "CODE_REG": "94", "NOM_REGION": "CORSE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.402269, 41.858707 ], [ 9.397891, 41.860019 ], [ 9.386719, 41.866392 ], [ 9.372932, 41.864775 ], [ 9.327056, 41.835808 ], [ 9.309095, 41.83214 ], [ 9.308599, 41.838879 ], [ 9.302048, 41.843426 ], [ 9.283692, 41.844089 ], [ 9.270567, 41.840564 ], [ 9.245264, 41.84877 ], [ 9.236082, 41.847765 ], [ 9.230964, 41.853267 ], [ 9.227497, 41.855589 ], [ 9.229796, 41.858634 ], [ 9.236107, 41.875436 ], [ 9.237199, 41.881995 ], [ 9.250098, 41.896496 ], [ 9.249417, 41.906675 ], [ 9.234749, 41.914995 ], [ 9.216501, 41.914946 ], [ 9.21328, 41.91746 ], [ 9.216597, 41.919734 ], [ 9.230643, 41.93263 ], [ 9.226439, 41.933843 ], [ 9.216813, 41.94063 ], [ 9.222672, 41.94947 ], [ 9.226045, 41.97221 ], [ 9.221897, 41.97352 ], [ 9.218995, 41.986398 ], [ 9.220243, 41.98962 ], [ 9.215612, 41.99495 ], [ 9.220737, 42.024319 ], [ 9.221085, 42.027606 ], [ 9.216496, 42.027759 ], [ 9.185928, 42.03065 ], [ 9.159622, 42.026592 ], [ 9.157677, 42.029724 ], [ 9.151575, 42.03897 ], [ 9.131797, 42.05287 ], [ 9.133566, 42.059397 ], [ 9.13055, 42.061789 ], [ 9.133688, 42.090554 ], [ 9.127745, 42.095747 ], [ 9.123646, 42.105403 ], [ 9.105495, 42.115671 ], [ 9.092096, 42.11673 ], [ 9.083633, 42.124771 ], [ 9.072032, 42.130006 ], [ 9.076168, 42.13615 ], [ 9.065062, 42.165879 ], [ 9.052274, 42.16967 ], [ 9.048123, 42.17571 ], [ 9.04895, 42.178679 ], [ 9.048986, 42.192998 ], [ 9.047977, 42.195904 ], [ 9.045743, 42.20773 ], [ 9.023252, 42.203576 ], [ 9.011125, 42.20837 ], [ 9.006493, 42.20872 ], [ 9.005959, 42.211902 ], [ 8.994525, 42.214496 ], [ 8.984029, 42.22461 ], [ 8.979794, 42.223989 ], [ 8.977408, 42.226755 ], [ 8.974011, 42.232444 ], [ 8.947593, 42.2337 ], [ 8.940115, 42.23721 ], [ 8.935556, 42.246806 ], [ 8.928923, 42.25125 ], [ 8.926624, 42.254191 ], [ 8.923217, 42.256607 ], [ 8.909395, 42.254521 ], [ 8.904768, 42.25387 ], [ 8.901546, 42.256445 ], [ 8.881945, 42.271691 ], [ 8.88282, 42.27508 ], [ 8.88513, 42.284907 ], [ 8.877006, 42.292963 ], [ 8.860741, 42.299152 ], [ 8.861452, 42.32964 ], [ 8.857166, 42.330983 ], [ 8.820246, 42.31711 ], [ 8.789827, 42.32569 ], [ 8.775858, 42.32517 ], [ 8.771169, 42.325407 ], [ 8.756264, 42.338445 ], [ 8.728569, 42.340176 ], [ 8.724757, 42.342175 ], [ 8.71445, 42.348452 ], [ 8.687893, 42.34882 ], [ 8.68348, 42.348031 ], [ 8.681455, 42.358196 ], [ 8.658591, 42.360101 ], [ 8.637097, 42.37283 ], [ 8.614264, 42.37385 ], [ 8.601111, 42.370128 ], [ 8.577985, 42.380562 ], [ 8.573411, 42.38141 ], [ 8.595273, 42.382898 ], [ 8.607186, 42.38799 ], [ 8.603886, 42.39782 ], [ 8.607768, 42.40406 ], [ 8.607324, 42.414126 ], [ 8.623291, 42.42044 ], [ 8.632545, 42.41979 ], [ 8.6368, 42.418389 ], [ 8.648883, 42.413928 ], [ 8.656552, 42.417639 ], [ 8.661808, 42.430588 ], [ 8.65121, 42.44137 ], [ 8.667063, 42.44713 ], [ 8.667134, 42.45726 ], [ 8.675359, 42.46563 ], [ 8.679452, 42.46728 ], [ 8.672783, 42.475695 ], [ 8.650443, 42.47707 ], [ 8.664905, 42.49574 ], [ 8.666982, 42.51336 ], [ 8.674092, 42.517326 ], [ 8.68841, 42.517977 ], [ 8.699096, 42.524968 ], [ 8.717823, 42.52545 ], [ 8.717444, 42.52892 ], [ 8.713371, 42.535353 ], [ 8.720072, 42.55583 ], [ 8.711851, 42.572578 ], [ 8.712641, 42.575916 ], [ 8.71577, 42.578597 ], [ 8.723724, 42.5801 ], [ 8.727004, 42.566204 ], [ 8.734129, 42.56376 ], [ 8.737694, 42.566162 ], [ 8.759772, 42.569064 ], [ 8.757775, 42.562312 ], [ 8.768273, 42.556147 ], [ 8.782195, 42.55686 ], [ 8.794045, 42.562123 ], [ 8.796519, 42.56505 ], [ 8.803186, 42.569919 ], [ 8.801673, 42.58338 ], [ 8.809426, 42.592016 ], [ 8.805765, 42.601915 ], [ 8.823567, 42.605443 ], [ 8.831854, 42.602169 ], [ 8.843012, 42.608175 ], [ 8.847486, 42.609219 ], [ 8.850832, 42.611298 ], [ 8.863094, 42.608958 ], [ 8.867395, 42.608406 ], [ 8.875234, 42.6151 ], [ 8.882571, 42.6273 ], [ 8.910273, 42.62948 ], [ 8.919373, 42.637567 ], [ 8.924094, 42.637999 ], [ 8.935425, 42.64074 ], [ 8.944229, 42.63428 ], [ 8.948379, 42.63355 ], [ 8.97558, 42.638853 ], [ 8.980307, 42.639337 ], [ 8.988368, 42.64113 ], [ 9.000254, 42.641752 ], [ 9.00311, 42.64398 ], [ 9.009864, 42.64044 ], [ 9.017582, 42.64256 ], [ 9.029908, 42.652723 ], [ 9.047827, 42.656001 ], [ 9.05885, 42.66214 ], [ 9.055401, 42.678881 ], [ 9.058129, 42.692397 ], [ 9.062212, 42.693924 ], [ 9.066723, 42.692757 ], [ 9.074557, 42.69601 ], [ 9.082795, 42.70464 ], [ 9.086233, 42.71459 ], [ 9.100417, 42.71562 ], [ 9.107897, 42.72453 ], [ 9.12463, 42.730576 ], [ 9.134116, 42.72982 ], [ 9.161563, 42.735894 ], [ 9.197116, 42.72544 ], [ 9.210041, 42.729742 ], [ 9.212789, 42.732559 ], [ 9.22176, 42.73419 ], [ 9.232009, 42.72298 ], [ 9.234004, 42.719914 ], [ 9.238745, 42.71998 ], [ 9.24808, 42.719886 ], [ 9.255888, 42.715939 ], [ 9.256554, 42.705545 ], [ 9.270595, 42.696947 ], [ 9.28695, 42.675864 ], [ 9.295987, 42.676125 ], [ 9.321143, 42.69602 ], [ 9.324862, 42.717723 ], [ 9.329005, 42.71881 ], [ 9.332543, 42.72119 ], [ 9.342756, 42.732827 ], [ 9.343822, 42.739682 ], [ 9.345461, 42.74258 ], [ 9.339857, 42.760647 ], [ 9.338441, 42.763933 ], [ 9.342646, 42.790764 ], [ 9.337935, 42.803934 ], [ 9.330329, 42.81136 ], [ 9.3263, 42.81227 ], [ 9.312045, 42.83396 ], [ 9.335889, 42.86451 ], [ 9.340296, 42.86567 ], [ 9.328267, 42.876026 ], [ 9.328078, 42.886538 ], [ 9.32168, 42.895811 ], [ 9.326389, 42.90118 ], [ 9.351448, 42.91529 ], [ 9.359476, 42.922887 ], [ 9.350609, 42.930693 ], [ 9.357863, 42.94353 ], [ 9.347102, 42.954701 ], [ 9.349903, 42.96087 ], [ 9.347027, 42.96343 ], [ 9.349875, 42.969677 ], [ 9.343578, 42.978359 ], [ 9.343577, 42.99774 ], [ 9.357601, 43.00622 ], [ 9.371358, 43.00522 ], [ 9.383896, 43.00921 ], [ 9.400951, 43.007669 ], [ 9.404635, 43.005636 ], [ 9.409434, 43.005782 ], [ 9.416827, 43.009807 ], [ 9.42574, 43.00913 ], [ 9.460567, 42.985852 ], [ 9.451916, 42.963065 ], [ 9.455224, 42.956478 ], [ 9.456432, 42.95333 ], [ 9.469239, 42.93647 ], [ 9.466182, 42.93372 ], [ 9.470928, 42.92048 ], [ 9.469755, 42.906137 ], [ 9.474493, 42.900103 ], [ 9.475256, 42.88453 ], [ 9.477581, 42.88184 ], [ 9.476916, 42.878528 ], [ 9.480015, 42.860159 ], [ 9.4841, 42.85381 ], [ 9.481716, 42.83644 ], [ 9.487022, 42.826884 ], [ 9.487114, 42.82354 ], [ 9.491458, 42.797526 ], [ 9.469851, 42.76647 ], [ 9.468417, 42.752838 ], [ 9.462914, 42.74343 ], [ 9.461327, 42.74017 ], [ 9.45645, 42.720741 ], [ 9.456258, 42.717586 ], [ 9.456045, 42.71457 ], [ 9.454509, 42.70812 ], [ 9.45487, 42.701459 ], [ 9.446972, 42.685834 ], [ 9.44806, 42.665543 ], [ 9.449197, 42.662245 ], [ 9.450927, 42.659001 ], [ 9.462639, 42.64 ], [ 9.482955, 42.61619 ], [ 9.485803, 42.61336 ], [ 9.515923, 42.58339 ], [ 9.526146, 42.568197 ], [ 9.527541, 42.56496 ], [ 9.534093, 42.526342 ], [ 9.534758, 42.52281 ], [ 9.529569, 42.49903 ], [ 9.529585, 42.49558 ], [ 9.530468, 42.48638 ], [ 9.531423, 42.483371 ], [ 9.53492, 42.473694 ], [ 9.536057, 42.470468 ], [ 9.541639, 42.457993 ], [ 9.540881, 42.44492 ], [ 9.540876, 42.44162 ], [ 9.542202, 42.431296 ], [ 9.543386, 42.427949 ], [ 9.539184, 42.41523 ], [ 9.538228, 42.412013 ], [ 9.53572, 42.39701 ], [ 9.535249, 42.393996 ], [ 9.532308, 42.38205 ], [ 9.532625, 42.37902 ], [ 9.534738, 42.362244 ], [ 9.535137, 42.358856 ], [ 9.53559, 42.355725 ], [ 9.540421, 42.337291 ], [ 9.541532, 42.331469 ], [ 9.542538, 42.32862 ], [ 9.552585, 42.30256 ], [ 9.553671, 42.299236 ], [ 9.55983, 42.28267 ], [ 9.555494, 42.25546 ], [ 9.555098, 42.252028 ], [ 9.55322, 42.24144 ], [ 9.553137, 42.2201 ], [ 9.558744, 42.195748 ], [ 9.554432, 42.160352 ], [ 9.554385, 42.156793 ], [ 9.554876, 42.145356 ], [ 9.556247, 42.142665 ], [ 9.549284, 42.10386 ], [ 9.499644, 42.051416 ], [ 9.496981, 42.048451 ], [ 9.494771, 42.04542 ], [ 9.457181, 42.002201 ], [ 9.441409, 41.98962 ], [ 9.439854, 41.98768 ], [ 9.415285, 41.958404 ], [ 9.411856, 41.941459 ], [ 9.412962, 41.938093 ], [ 9.414772, 41.935099 ], [ 9.416116, 41.928609 ], [ 9.408977, 41.90662 ], [ 9.402379, 41.897762 ], [ 9.397681, 41.87784 ], [ 9.399537, 41.861406 ], [ 9.402269, 41.858707 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "31", "CODE_DEPT": "30", "NOM_DEPT": "GARD", "CODE_CHF": "189", "NOM_CHF": "NIMES", "X_CHF_LIEU": "8093", "Y_CHF_LIEU": "63051", "X_CENTROID": "7946", "Y_CENTROID": "63223", "CODE_REG": "91", "NOM_REGION": "LANGUEDOC-ROUSSILLON" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.230283, 43.460185 ], [ 4.164626, 43.472158 ], [ 4.131594, 43.486202 ], [ 4.120925, 43.498019 ], [ 4.118143, 43.50814 ], [ 4.124355, 43.52109 ], [ 4.13334, 43.523373 ], [ 4.13825, 43.52903 ], [ 4.126266, 43.544115 ], [ 4.10553, 43.55293 ], [ 4.101042, 43.554371 ], [ 4.10274, 43.557143 ], [ 4.108712, 43.56844 ], [ 4.106343, 43.571378 ], [ 4.083496, 43.588354 ], [ 4.074673, 43.58859 ], [ 4.075126, 43.58899 ], [ 4.079447, 43.590302 ], [ 4.088261, 43.59093 ], [ 4.099889, 43.585274 ], [ 4.122875, 43.588359 ], [ 4.150216, 43.58556 ], [ 4.149622, 43.596115 ], [ 4.170054, 43.61081 ], [ 4.192906, 43.641866 ], [ 4.193818, 43.65175 ], [ 4.163626, 43.69014 ], [ 4.164313, 43.69283 ], [ 4.164613, 43.696 ], [ 4.162321, 43.70776 ], [ 4.153883, 43.71501 ], [ 4.15158, 43.71774 ], [ 4.145038, 43.732444 ], [ 4.143857, 43.735489 ], [ 4.133483, 43.74062 ], [ 4.122517, 43.737124 ], [ 4.114162, 43.73767 ], [ 4.111703, 43.74018 ], [ 4.103785, 43.74861 ], [ 4.099236, 43.749592 ], [ 4.095561, 43.75153 ], [ 4.091102, 43.76379 ], [ 4.083862, 43.767709 ], [ 4.067248, 43.764498 ], [ 4.064929, 43.767319 ], [ 4.059831, 43.77232 ], [ 4.051757, 43.774269 ], [ 4.051987, 43.778 ], [ 4.053123, 43.785046 ], [ 4.049778, 43.78757 ], [ 4.031522, 43.79893 ], [ 4.02865, 43.80156 ], [ 4.001341, 43.81305 ], [ 3.998455, 43.81149 ], [ 3.995606, 43.80989 ], [ 3.978808, 43.80287 ], [ 3.974348, 43.801474 ], [ 3.963614, 43.80451 ], [ 3.960123, 43.806046 ], [ 3.962087, 43.816405 ], [ 3.974203, 43.82721 ], [ 3.973738, 43.837118 ], [ 3.979528, 43.84268 ], [ 3.95814, 43.844132 ], [ 3.957748, 43.85043 ], [ 3.958993, 43.85351 ], [ 3.942114, 43.853379 ], [ 3.937902, 43.853577 ], [ 3.933721, 43.85425 ], [ 3.923111, 43.858788 ], [ 3.91773, 43.86833 ], [ 3.918219, 43.878665 ], [ 3.919554, 43.88197 ], [ 3.914357, 43.88765 ], [ 3.900092, 43.87873 ], [ 3.857116, 43.876165 ], [ 3.847961, 43.868749 ], [ 3.834475, 43.868664 ], [ 3.830809, 43.86642 ], [ 3.827923, 43.868948 ], [ 3.822361, 43.874084 ], [ 3.805468, 43.87859 ], [ 3.799542, 43.89082 ], [ 3.82249, 43.914978 ], [ 3.824003, 43.918054 ], [ 3.828287, 43.92406 ], [ 3.823284, 43.939785 ], [ 3.820307, 43.942408 ], [ 3.795518, 43.942277 ], [ 3.787083, 43.95384 ], [ 3.786956, 43.96361 ], [ 3.787337, 43.96687 ], [ 3.731136, 43.970681 ], [ 3.717269, 43.96098 ], [ 3.699443, 43.95823 ], [ 3.684487, 43.95166 ], [ 3.689503, 43.939937 ], [ 3.686397, 43.939498 ], [ 3.683658, 43.94063 ], [ 3.676573, 43.9324 ], [ 3.678652, 43.9261 ], [ 3.67342, 43.91326 ], [ 3.66699, 43.91057 ], [ 3.662454, 43.91127 ], [ 3.644609, 43.913 ], [ 3.645286, 43.90239 ], [ 3.638102, 43.898868 ], [ 3.637759, 43.91491 ], [ 3.623589, 43.916979 ], [ 3.621068, 43.91414 ], [ 3.602208, 43.89539 ], [ 3.600522, 43.88893 ], [ 3.582958, 43.87743 ], [ 3.577363, 43.867888 ], [ 3.583258, 43.85928 ], [ 3.599871, 43.852972 ], [ 3.599475, 43.849635 ], [ 3.581794, 43.846185 ], [ 3.578908, 43.843563 ], [ 3.57437, 43.84491 ], [ 3.561603, 43.855326 ], [ 3.548734, 43.85169 ], [ 3.527026, 43.859035 ], [ 3.521645, 43.86495 ], [ 3.523528, 43.88579 ], [ 3.520677, 43.888422 ], [ 3.507184, 43.896378 ], [ 3.496146, 43.89078 ], [ 3.491584, 43.89129 ], [ 3.482082, 43.890453 ], [ 3.460847, 43.87138 ], [ 3.447119, 43.868868 ], [ 3.435182, 43.86296 ], [ 3.430814, 43.864425 ], [ 3.421606, 43.87232 ], [ 3.431008, 43.87366 ], [ 3.43703, 43.886782 ], [ 3.435778, 43.900367 ], [ 3.423923, 43.91131 ], [ 3.401726, 43.91473 ], [ 3.394416, 43.910775 ], [ 3.381306, 43.91239 ], [ 3.370004, 43.916521 ], [ 3.359876, 43.91153 ], [ 3.358663, 43.91452 ], [ 3.352274, 43.93431 ], [ 3.351722, 43.937721 ], [ 3.353982, 43.940756 ], [ 3.359211, 43.95027 ], [ 3.375884, 43.956729 ], [ 3.377571, 43.96695 ], [ 3.405615, 43.969682 ], [ 3.406388, 43.97317 ], [ 3.418529, 43.992295 ], [ 3.443552, 44.00234 ], [ 3.450981, 44.022541 ], [ 3.449727, 44.023276 ], [ 3.444774, 44.024718 ], [ 3.440799, 44.02678 ], [ 3.417944, 44.040016 ], [ 3.399699, 44.044845 ], [ 3.386492, 44.055081 ], [ 3.372685, 44.05247 ], [ 3.367643, 44.058215 ], [ 3.351731, 44.05026 ], [ 3.347875, 44.052402 ], [ 3.344557, 44.054636 ], [ 3.337492, 44.05874 ], [ 3.332517, 44.074501 ], [ 3.32891, 44.07903 ], [ 3.325456, 44.077483 ], [ 3.323059, 44.07985 ], [ 3.318423, 44.07902 ], [ 3.305423, 44.06919 ], [ 3.295925, 44.06954 ], [ 3.27474, 44.087541 ], [ 3.263376, 44.092726 ], [ 3.291562, 44.10483 ], [ 3.310698, 44.104941 ], [ 3.319087, 44.108373 ], [ 3.323849, 44.10892 ], [ 3.323929, 44.11194 ], [ 3.32359, 44.127009 ], [ 3.320354, 44.13595 ], [ 3.330226, 44.142165 ], [ 3.332488, 44.14864 ], [ 3.336682, 44.15813 ], [ 3.373648, 44.170765 ], [ 3.392517, 44.16869 ], [ 3.396939, 44.162699 ], [ 3.428468, 44.148665 ], [ 3.435184, 44.132762 ], [ 3.438628, 44.130372 ], [ 3.443052, 44.12885 ], [ 3.481027, 44.12425 ], [ 3.50516, 44.1262 ], [ 3.509926, 44.12538 ], [ 3.533113, 44.12086 ], [ 3.544309, 44.11437 ], [ 3.565196, 44.123051 ], [ 3.569987, 44.122324 ], [ 3.574615, 44.121508 ], [ 3.606167, 44.115901 ], [ 3.632838, 44.12122 ], [ 3.63585, 44.138127 ], [ 3.647169, 44.14429 ], [ 3.645569, 44.147539 ], [ 3.632924, 44.152573 ], [ 3.630543, 44.15887 ], [ 3.637706, 44.175434 ], [ 3.644962, 44.179992 ], [ 3.649649, 44.180846 ], [ 3.659917, 44.17429 ], [ 3.667963, 44.177784 ], [ 3.671053, 44.1842 ], [ 3.680307, 44.18295 ], [ 3.685032, 44.182683 ], [ 3.684404, 44.179411 ], [ 3.692424, 44.171376 ], [ 3.707658, 44.164465 ], [ 3.721091, 44.164729 ], [ 3.725624, 44.164249 ], [ 3.73505, 44.15731 ], [ 3.750848, 44.15214 ], [ 3.755264, 44.15141 ], [ 3.759624, 44.15119 ], [ 3.762209, 44.14539 ], [ 3.768909, 44.14262 ], [ 3.773033, 44.141602 ], [ 3.777238, 44.1402 ], [ 3.796995, 44.127389 ], [ 3.810833, 44.128557 ], [ 3.816677, 44.131754 ], [ 3.820249, 44.13245 ], [ 3.828468, 44.136436 ], [ 3.832118, 44.13733 ], [ 3.872731, 44.12867 ], [ 3.894317, 44.14717 ], [ 3.898477, 44.148621 ], [ 3.907391, 44.14785 ], [ 3.910617, 44.150258 ], [ 3.911601, 44.16012 ], [ 3.927275, 44.1613 ], [ 3.923699, 44.18135 ], [ 3.932865, 44.1804 ], [ 3.969452, 44.165047 ], [ 3.974117, 44.16433 ], [ 3.975587, 44.169809 ], [ 3.969842, 44.172461 ], [ 3.96595, 44.171613 ], [ 3.958795, 44.18412 ], [ 3.959222, 44.19088 ], [ 3.938574, 44.19664 ], [ 3.946248, 44.212661 ], [ 3.947255, 44.215983 ], [ 3.950924, 44.21687 ], [ 3.946433, 44.24101 ], [ 3.954741, 44.24958 ], [ 3.966919, 44.249865 ], [ 3.971123, 44.250395 ], [ 3.974753, 44.25972 ], [ 3.969227, 44.264778 ], [ 3.958546, 44.270975 ], [ 3.949688, 44.26943 ], [ 3.946764, 44.266892 ], [ 3.934303, 44.27545 ], [ 3.94003, 44.283873 ], [ 3.939236, 44.287345 ], [ 3.932937, 44.29677 ], [ 3.924943, 44.300825 ], [ 3.922859, 44.305227 ], [ 3.943704, 44.317887 ], [ 3.948083, 44.32706 ], [ 3.948819, 44.32385 ], [ 3.952361, 44.330154 ], [ 3.947017, 44.335359 ], [ 3.937635, 44.33606 ], [ 3.925008, 44.34629 ], [ 3.925013, 44.352713 ], [ 3.911307, 44.37033 ], [ 3.889107, 44.385606 ], [ 3.885817, 44.387973 ], [ 3.888695, 44.392964 ], [ 3.898558, 44.39026 ], [ 3.900416, 44.392617 ], [ 3.901542, 44.395533 ], [ 3.908506, 44.40305 ], [ 3.91645, 44.405052 ], [ 3.948916, 44.402319 ], [ 3.949196, 44.409249 ], [ 3.961269, 44.414662 ], [ 3.971719, 44.426382 ], [ 3.973044, 44.426721 ], [ 3.97269, 44.436798 ], [ 3.97596, 44.44281 ], [ 3.998163, 44.4598 ], [ 4.002603, 44.458515 ], [ 4.015082, 44.45348 ], [ 4.01666, 44.450365 ], [ 4.023876, 44.446301 ], [ 4.037103, 44.445952 ], [ 4.045419, 44.43349 ], [ 4.037813, 44.420918 ], [ 4.054795, 44.41479 ], [ 4.06844, 44.40506 ], [ 4.059453, 44.393911 ], [ 4.042393, 44.39407 ], [ 4.043749, 44.384554 ], [ 4.046711, 44.38246 ], [ 4.05298, 44.3787 ], [ 4.056718, 44.36102 ], [ 4.053677, 44.358794 ], [ 4.05116, 44.34621 ], [ 4.053047, 44.33975 ], [ 4.047919, 44.334444 ], [ 4.035706, 44.329851 ], [ 4.038705, 44.327887 ], [ 4.048059, 44.31895 ], [ 4.051452, 44.317324 ], [ 4.055621, 44.319021 ], [ 4.060144, 44.32017 ], [ 4.073842, 44.329026 ], [ 4.103861, 44.333906 ], [ 4.106628, 44.332356 ], [ 4.10942, 44.330843 ], [ 4.113525, 44.32913 ], [ 4.126752, 44.337734 ], [ 4.141665, 44.323959 ], [ 4.142868, 44.313351 ], [ 4.161701, 44.31215 ], [ 4.173247, 44.317577 ], [ 4.177991, 44.31774 ], [ 4.183913, 44.30232 ], [ 4.186579, 44.299735 ], [ 4.212951, 44.29144 ], [ 4.216384, 44.289039 ], [ 4.230778, 44.277176 ], [ 4.234052, 44.27506 ], [ 4.238182, 44.273095 ], [ 4.245138, 44.26807 ], [ 4.258901, 44.264425 ], [ 4.273773, 44.271752 ], [ 4.286338, 44.289386 ], [ 4.288996, 44.292146 ], [ 4.289584, 44.29542 ], [ 4.288375, 44.315019 ], [ 4.306334, 44.31627 ], [ 4.318098, 44.32175 ], [ 4.329257, 44.33238 ], [ 4.325771, 44.33832 ], [ 4.370171, 44.34014 ], [ 4.38381, 44.344352 ], [ 4.38705, 44.347057 ], [ 4.391868, 44.346573 ], [ 4.402347, 44.335007 ], [ 4.40145, 44.328167 ], [ 4.400063, 44.324818 ], [ 4.391594, 44.304759 ], [ 4.393313, 44.2946 ], [ 4.40357, 44.288177 ], [ 4.431983, 44.28968 ], [ 4.435608, 44.283324 ], [ 4.440422, 44.28342 ], [ 4.450048, 44.295226 ], [ 4.453212, 44.29787 ], [ 4.448757, 44.29671 ], [ 4.450793, 44.330705 ], [ 4.451068, 44.334096 ], [ 4.459866, 44.341596 ], [ 4.464761, 44.341675 ], [ 4.48291, 44.3382 ], [ 4.506097, 44.340252 ], [ 4.512014, 44.3354 ], [ 4.514731, 44.329114 ], [ 4.524167, 44.328768 ], [ 4.531152, 44.3241 ], [ 4.54911, 44.324512 ], [ 4.547749, 44.322874 ], [ 4.545631, 44.319708 ], [ 4.557168, 44.304168 ], [ 4.569998, 44.299349 ], [ 4.574274, 44.30075 ], [ 4.59898, 44.291756 ], [ 4.602332, 44.29192 ], [ 4.605465, 44.29104 ], [ 4.609125, 44.289249 ], [ 4.616625, 44.277993 ], [ 4.620478, 44.279944 ], [ 4.632679, 44.284994 ], [ 4.637028, 44.283669 ], [ 4.641729, 44.2742 ], [ 4.649224, 44.27036 ], [ 4.648551, 44.26747 ], [ 4.651479, 44.259153 ], [ 4.653075, 44.25591 ], [ 4.67736, 44.234975 ], [ 4.672933, 44.2186 ], [ 4.673657, 44.21471 ], [ 4.681893, 44.211741 ], [ 4.699936, 44.216108 ], [ 4.708595, 44.2135 ], [ 4.710297, 44.206836 ], [ 4.70483, 44.201078 ], [ 4.703839, 44.197663 ], [ 4.708316, 44.191724 ], [ 4.717272, 44.18997 ], [ 4.721891, 44.18467 ], [ 4.716251, 44.176043 ], [ 4.717361, 44.169328 ], [ 4.717296, 44.16593 ], [ 4.717117, 44.1625 ], [ 4.71719, 44.159094 ], [ 4.718725, 44.152381 ], [ 4.718133, 44.14068 ], [ 4.705735, 44.1116 ], [ 4.705082, 44.10817 ], [ 4.719627, 44.088781 ], [ 4.71973, 44.085584 ], [ 4.727819, 44.07845 ], [ 4.752939, 44.08798 ], [ 4.757721, 44.087933 ], [ 4.760117, 44.08179 ], [ 4.760035, 44.078344 ], [ 4.762887, 44.07487 ], [ 4.784113, 44.067215 ], [ 4.786807, 44.064353 ], [ 4.78741, 44.054918 ], [ 4.792418, 44.049848 ], [ 4.795865, 44.04791 ], [ 4.799013, 44.04601 ], [ 4.807764, 44.03977 ], [ 4.813646, 44.03404 ], [ 4.82029, 44.01701 ], [ 4.839417, 44.014022 ], [ 4.842997, 44.00399 ], [ 4.843118, 44.00042 ], [ 4.845344, 43.995593 ], [ 4.844996, 43.992142 ], [ 4.840941, 43.98592 ], [ 4.8363, 43.985033 ], [ 4.812967, 43.988006 ], [ 4.810178, 43.977915 ], [ 4.814369, 43.964676 ], [ 4.791981, 43.952271 ], [ 4.778539, 43.93879 ], [ 4.748232, 43.931132 ], [ 4.741431, 43.92664 ], [ 4.738793, 43.923866 ], [ 4.739556, 43.92111 ], [ 4.735506, 43.91651 ], [ 4.723398, 43.906052 ], [ 4.698503, 43.89664 ], [ 4.703196, 43.897035 ], [ 4.7079, 43.89741 ], [ 4.705497, 43.894488 ], [ 4.692706, 43.88459 ], [ 4.66694, 43.87636 ], [ 4.662511, 43.870388 ], [ 4.661583, 43.873589 ], [ 4.64173, 43.8673 ], [ 4.646975, 43.85803 ], [ 4.643675, 43.851852 ], [ 4.661874, 43.85234 ], [ 4.666767, 43.84698 ], [ 4.664997, 43.843842 ], [ 4.652168, 43.839752 ], [ 4.64297, 43.83211 ], [ 4.654449, 43.809007 ], [ 4.652914, 43.787725 ], [ 4.650196, 43.780935 ], [ 4.629507, 43.761121 ], [ 4.628118, 43.757712 ], [ 4.627175, 43.754252 ], [ 4.61194, 43.724724 ], [ 4.613145, 43.71419 ], [ 4.626473, 43.68803 ], [ 4.597812, 43.68675 ], [ 4.578489, 43.69707 ], [ 4.559326, 43.699444 ], [ 4.537599, 43.707052 ], [ 4.524575, 43.702501 ], [ 4.49079, 43.7004 ], [ 4.486421, 43.69885 ], [ 4.476546, 43.6868 ], [ 4.477416, 43.672921 ], [ 4.451605, 43.66423 ], [ 4.42723, 43.625822 ], [ 4.428685, 43.619063 ], [ 4.438799, 43.611406 ], [ 4.448272, 43.61034 ], [ 4.466497, 43.61496 ], [ 4.473776, 43.610442 ], [ 4.473576, 43.603651 ], [ 4.452809, 43.584573 ], [ 4.448317, 43.583184 ], [ 4.443527, 43.58321 ], [ 4.424853, 43.58448 ], [ 4.4094, 43.57628 ], [ 4.41426, 43.567552 ], [ 4.408973, 43.561934 ], [ 4.404608, 43.560523 ], [ 4.390361, 43.56087 ], [ 4.37246, 43.54968 ], [ 4.35391, 43.547408 ], [ 4.332823, 43.535935 ], [ 4.3161, 43.546749 ], [ 4.322314, 43.55171 ], [ 4.318393, 43.557168 ], [ 4.315141, 43.551871 ], [ 4.309193, 43.54657 ], [ 4.320651, 43.527823 ], [ 4.293603, 43.51404 ], [ 4.244686, 43.501268 ], [ 4.240814, 43.499405 ], [ 4.237743, 43.496884 ], [ 4.239777, 43.49373 ], [ 4.231161, 43.47754 ], [ 4.230283, 43.460185 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "32", "CODE_DEPT": "31", "NOM_DEPT": "HAUTE-GARONNE", "CODE_CHF": "555", "NOM_CHF": "TOULOUSE", "X_CHF_LIEU": "5741", "Y_CHF_LIEU": "62796", "X_CENTROID": "5517", "Y_CENTROID": "62527", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.858306, 42.825719 ], [ 0.853758, 42.826744 ], [ 0.835187, 42.828277 ], [ 0.801483, 42.840483 ], [ 0.779279, 42.836148 ], [ 0.739791, 42.848259 ], [ 0.730403, 42.855735 ], [ 0.712922, 42.860293 ], [ 0.708378, 42.8614 ], [ 0.704491, 42.859502 ], [ 0.691821, 42.85523 ], [ 0.677886, 42.85511 ], [ 0.678698, 42.84825 ], [ 0.659217, 42.838678 ], [ 0.659112, 42.835203 ], [ 0.660552, 42.831915 ], [ 0.669588, 42.824537 ], [ 0.664746, 42.81517 ], [ 0.665711, 42.81214 ], [ 0.669986, 42.80363 ], [ 0.660008, 42.7984 ], [ 0.657841, 42.795782 ], [ 0.652294, 42.78765 ], [ 0.65049, 42.785438 ], [ 0.644541, 42.783076 ], [ 0.664194, 42.774772 ], [ 0.641852, 42.75482 ], [ 0.659866, 42.752162 ], [ 0.670131, 42.73265 ], [ 0.676455, 42.727372 ], [ 0.675066, 42.717241 ], [ 0.680501, 42.7076 ], [ 0.67321, 42.69135 ], [ 0.621613, 42.695701 ], [ 0.600493, 42.70339 ], [ 0.59672, 42.70555 ], [ 0.593881, 42.7043 ], [ 0.593069, 42.700937 ], [ 0.587988, 42.695228 ], [ 0.578783, 42.695478 ], [ 0.529614, 42.702684 ], [ 0.526374, 42.702592 ], [ 0.516216, 42.691679 ], [ 0.493291, 42.693096 ], [ 0.482285, 42.69919 ], [ 0.47775, 42.69999 ], [ 0.483742, 42.70892 ], [ 0.451297, 42.733134 ], [ 0.462125, 42.739203 ], [ 0.461558, 42.746044 ], [ 0.460252, 42.749387 ], [ 0.463462, 42.759484 ], [ 0.46214, 42.762638 ], [ 0.455185, 42.77092 ], [ 0.455983, 42.780574 ], [ 0.461998, 42.7894 ], [ 0.463138, 42.790136 ], [ 0.463434, 42.80239 ], [ 0.459851, 42.80498 ], [ 0.457889, 42.80793 ], [ 0.458793, 42.82387 ], [ 0.45921, 42.827199 ], [ 0.464129, 42.839956 ], [ 0.4675, 42.84675 ], [ 0.464761, 42.848158 ], [ 0.460239, 42.851749 ], [ 0.469379, 42.857516 ], [ 0.472676, 42.859303 ], [ 0.472642, 42.862613 ], [ 0.471878, 42.869208 ], [ 0.477357, 42.87824 ], [ 0.481956, 42.877965 ], [ 0.499291, 42.874555 ], [ 0.504028, 42.868782 ], [ 0.508611, 42.869167 ], [ 0.525546, 42.86755 ], [ 0.527716, 42.86485 ], [ 0.53418, 42.861256 ], [ 0.547136, 42.864612 ], [ 0.554041, 42.86009 ], [ 0.558081, 42.861146 ], [ 0.562341, 42.860757 ], [ 0.564129, 42.863325 ], [ 0.575935, 42.870826 ], [ 0.577659, 42.8767 ], [ 0.577041, 42.880091 ], [ 0.579564, 42.882954 ], [ 0.580972, 42.88586 ], [ 0.58566, 42.894347 ], [ 0.586278, 42.89742 ], [ 0.59229, 42.90854 ], [ 0.595495, 42.910069 ], [ 0.597588, 42.918033 ], [ 0.597177, 42.92147 ], [ 0.600187, 42.928015 ], [ 0.604428, 42.931735 ], [ 0.605645, 42.934 ], [ 0.609142, 42.934719 ], [ 0.615362, 42.93681 ], [ 0.618067, 42.93951 ], [ 0.626629, 42.94185 ], [ 0.637432, 42.95262 ], [ 0.641991, 42.952873 ], [ 0.645959, 42.96134 ], [ 0.643533, 42.963748 ], [ 0.636348, 42.96841 ], [ 0.635542, 42.968935 ], [ 0.624127, 42.971841 ], [ 0.620121, 42.97244 ], [ 0.615624, 42.978698 ], [ 0.613894, 42.982025 ], [ 0.615981, 42.98432 ], [ 0.611442, 42.98829 ], [ 0.615095, 42.98915 ], [ 0.625588, 42.991209 ], [ 0.625565, 42.99418 ], [ 0.625023, 43.002317 ], [ 0.622358, 43.004526 ], [ 0.615713, 43.01108 ], [ 0.614458, 43.014167 ], [ 0.616481, 43.020421 ], [ 0.615651, 43.02153 ], [ 0.613138, 43.024476 ], [ 0.608047, 43.034009 ], [ 0.59322, 43.035451 ], [ 0.59411, 43.032322 ], [ 0.592642, 43.026035 ], [ 0.591825, 43.022373 ], [ 0.58878, 43.02277 ], [ 0.585777, 43.023317 ], [ 0.585178, 43.020028 ], [ 0.572103, 43.021282 ], [ 0.564055, 43.018733 ], [ 0.561334, 43.016089 ], [ 0.548181, 43.006712 ], [ 0.545867, 43.003735 ], [ 0.542023, 43.001019 ], [ 0.538173, 43.001606 ], [ 0.52695, 43.008925 ], [ 0.53018, 43.01137 ], [ 0.534755, 43.017112 ], [ 0.53512, 43.037051 ], [ 0.536958, 43.039991 ], [ 0.548393, 43.043995 ], [ 0.562697, 43.036438 ], [ 0.566899, 43.03742 ], [ 0.565503, 43.040874 ], [ 0.563791, 43.04397 ], [ 0.558847, 43.062868 ], [ 0.55496, 43.064255 ], [ 0.561711, 43.072363 ], [ 0.563854, 43.07425 ], [ 0.532194, 43.08413 ], [ 0.532638, 43.09387 ], [ 0.529181, 43.093452 ], [ 0.522355, 43.09257 ], [ 0.50459, 43.095359 ], [ 0.500068, 43.107367 ], [ 0.491205, 43.10868 ], [ 0.48929, 43.115179 ], [ 0.485319, 43.114115 ], [ 0.464706, 43.111346 ], [ 0.452923, 43.11255 ], [ 0.456872, 43.11436 ], [ 0.463839, 43.118804 ], [ 0.45476, 43.12636 ], [ 0.442334, 43.13091 ], [ 0.441291, 43.13117 ], [ 0.44385, 43.13358 ], [ 0.456753, 43.14556 ], [ 0.458872, 43.148519 ], [ 0.462785, 43.15066 ], [ 0.499093, 43.17423 ], [ 0.520954, 43.193457 ], [ 0.505764, 43.19971 ], [ 0.515936, 43.20947 ], [ 0.517385, 43.212382 ], [ 0.521425, 43.21115 ], [ 0.533811, 43.20807 ], [ 0.544991, 43.21306 ], [ 0.551875, 43.209147 ], [ 0.555811, 43.210613 ], [ 0.57023, 43.21735 ], [ 0.573087, 43.21995 ], [ 0.572841, 43.23311 ], [ 0.568198, 43.232582 ], [ 0.55547, 43.236983 ], [ 0.550957, 43.236008 ], [ 0.554112, 43.23853 ], [ 0.566788, 43.2523 ], [ 0.576012, 43.25315 ], [ 0.576265, 43.25591 ], [ 0.576716, 43.258656 ], [ 0.580238, 43.261003 ], [ 0.596798, 43.273477 ], [ 0.6146, 43.27783 ], [ 0.615325, 43.280547 ], [ 0.618933, 43.290418 ], [ 0.635622, 43.295653 ], [ 0.632144, 43.301427 ], [ 0.611353, 43.30984 ], [ 0.606811, 43.31089 ], [ 0.610158, 43.3128 ], [ 0.611852, 43.31565 ], [ 0.616602, 43.31552 ], [ 0.644501, 43.31235 ], [ 0.65681, 43.317273 ], [ 0.659808, 43.319345 ], [ 0.674719, 43.32951 ], [ 0.675321, 43.332306 ], [ 0.690313, 43.349844 ], [ 0.693641, 43.35234 ], [ 0.697166, 43.357334 ], [ 0.69924, 43.359763 ], [ 0.700061, 43.361122 ], [ 0.702998, 43.364496 ], [ 0.716226, 43.378699 ], [ 0.7321, 43.371635 ], [ 0.740799, 43.37946 ], [ 0.744299, 43.38179 ], [ 0.749961, 43.398881 ], [ 0.751705, 43.400979 ], [ 0.75493, 43.404709 ], [ 0.75717, 43.40772 ], [ 0.752092, 43.41699 ], [ 0.770422, 43.41681 ], [ 0.803342, 43.401805 ], [ 0.807297, 43.39972 ], [ 0.807663, 43.40017 ], [ 0.818079, 43.41451 ], [ 0.821119, 43.417059 ], [ 0.840405, 43.41109 ], [ 0.844325, 43.409936 ], [ 0.853479, 43.41373 ], [ 0.857069, 43.41447 ], [ 0.864511, 43.41586 ], [ 0.875921, 43.41079 ], [ 0.880555, 43.410633 ], [ 0.883107, 43.4104 ], [ 0.885639, 43.41003 ], [ 0.897917, 43.406436 ], [ 0.90223, 43.40529 ], [ 0.90473, 43.407828 ], [ 0.917282, 43.40615 ], [ 0.917422, 43.40299 ], [ 0.927776, 43.39822 ], [ 0.927285, 43.39507 ], [ 0.942091, 43.383427 ], [ 0.944659, 43.380605 ], [ 0.9469, 43.38523 ], [ 0.963618, 43.386678 ], [ 0.968903, 43.377454 ], [ 0.96487, 43.37149 ], [ 0.976605, 43.363668 ], [ 0.980537, 43.36305 ], [ 0.989167, 43.365621 ], [ 0.993662, 43.366532 ], [ 0.998763, 43.376283 ], [ 1.002876, 43.37686 ], [ 1.005037, 43.37999 ], [ 0.998926, 43.384385 ], [ 1.001607, 43.391022 ], [ 0.993933, 43.407268 ], [ 0.997091, 43.40981 ], [ 1.004308, 43.41384 ], [ 1.022788, 43.4117 ], [ 1.023514, 43.41499 ], [ 1.028599, 43.42044 ], [ 1.021059, 43.428609 ], [ 1.018914, 43.430658 ], [ 1.021751, 43.432896 ], [ 1.032272, 43.441214 ], [ 1.033454, 43.44419 ], [ 1.03388, 43.44726 ], [ 1.034473, 43.45017 ], [ 1.039075, 43.452497 ], [ 1.037108, 43.45512 ], [ 1.04394, 43.458372 ], [ 1.04167, 43.460815 ], [ 1.038859, 43.463194 ], [ 1.017906, 43.47354 ], [ 1.020032, 43.47638 ], [ 1.03749, 43.48556 ], [ 1.033751, 43.48682 ], [ 1.051077, 43.48947 ], [ 1.05932, 43.504177 ], [ 1.072887, 43.50442 ], [ 1.069796, 43.507 ], [ 1.052928, 43.51839 ], [ 1.055315, 43.524976 ], [ 1.06845, 43.523492 ], [ 1.076593, 43.52668 ], [ 1.073076, 43.52903 ], [ 1.050552, 43.541036 ], [ 1.05963, 43.5393 ], [ 1.074806, 43.54643 ], [ 1.084108, 43.54648 ], [ 1.091417, 43.542501 ], [ 1.097081, 43.533231 ], [ 1.105617, 43.5366 ], [ 1.118141, 43.54553 ], [ 1.114137, 43.553653 ], [ 1.112391, 43.55671 ], [ 1.125451, 43.554299 ], [ 1.152204, 43.55702 ], [ 1.156696, 43.556634 ], [ 1.163369, 43.570859 ], [ 1.162297, 43.573802 ], [ 1.166831, 43.572528 ], [ 1.199343, 43.56918 ], [ 1.201942, 43.575518 ], [ 1.200479, 43.595726 ], [ 1.188439, 43.60562 ], [ 1.185959, 43.608462 ], [ 1.1809, 43.6141 ], [ 1.171418, 43.606896 ], [ 1.158654, 43.60518 ], [ 1.146019, 43.619029 ], [ 1.1426, 43.621311 ], [ 1.146816, 43.632336 ], [ 1.147455, 43.635182 ], [ 1.144935, 43.637614 ], [ 1.138899, 43.64183 ], [ 1.130581, 43.64265 ], [ 1.127421, 43.64076 ], [ 1.115933, 43.6396 ], [ 1.115457, 43.63673 ], [ 1.094498, 43.64243 ], [ 1.08861, 43.64729 ], [ 1.099477, 43.657494 ], [ 1.101383, 43.660561 ], [ 1.093458, 43.664383 ], [ 1.079461, 43.66252 ], [ 1.074826, 43.66171 ], [ 1.062518, 43.67116 ], [ 1.058015, 43.670848 ], [ 1.056834, 43.673842 ], [ 1.049022, 43.67602 ], [ 1.051339, 43.67864 ], [ 1.051577, 43.681849 ], [ 1.065703, 43.70023 ], [ 1.063925, 43.70292 ], [ 1.056108, 43.704756 ], [ 1.052021, 43.706375 ], [ 1.04073, 43.712176 ], [ 1.027388, 43.710432 ], [ 1.024347, 43.712987 ], [ 1.02217, 43.716017 ], [ 1.023419, 43.721873 ], [ 1.011973, 43.727695 ], [ 1.007789, 43.72879 ], [ 0.985922, 43.74382 ], [ 0.98905, 43.74386 ], [ 0.99219, 43.743895 ], [ 0.974622, 43.759295 ], [ 0.966056, 43.759567 ], [ 0.969891, 43.76138 ], [ 0.959099, 43.7718 ], [ 0.953642, 43.78406 ], [ 0.953983, 43.787372 ], [ 0.956063, 43.789329 ], [ 0.980517, 43.78758 ], [ 0.982503, 43.790461 ], [ 0.987578, 43.79559 ], [ 0.995961, 43.79755 ], [ 1.000344, 43.79837 ], [ 1.036771, 43.803028 ], [ 1.044982, 43.799521 ], [ 1.059132, 43.798594 ], [ 1.062046, 43.80136 ], [ 1.082129, 43.815465 ], [ 1.083306, 43.816332 ], [ 1.097104, 43.808139 ], [ 1.105866, 43.806663 ], [ 1.105058, 43.8014 ], [ 1.10768, 43.798782 ], [ 1.115083, 43.797776 ], [ 1.116766, 43.801 ], [ 1.125584, 43.80915 ], [ 1.142279, 43.81561 ], [ 1.144598, 43.822298 ], [ 1.157369, 43.818329 ], [ 1.162996, 43.80882 ], [ 1.175343, 43.80439 ], [ 1.17968, 43.79581 ], [ 1.18319, 43.79407 ], [ 1.215753, 43.79027 ], [ 1.217957, 43.783755 ], [ 1.207038, 43.77735 ], [ 1.210042, 43.77107 ], [ 1.212776, 43.768242 ], [ 1.27741, 43.78895 ], [ 1.267641, 43.79521 ], [ 1.266879, 43.79862 ], [ 1.271046, 43.798075 ], [ 1.27796, 43.80162 ], [ 1.281825, 43.79625 ], [ 1.286109, 43.7972 ], [ 1.29903, 43.799785 ], [ 1.301897, 43.80031 ], [ 1.305066, 43.801166 ], [ 1.311637, 43.80084 ], [ 1.314977, 43.803066 ], [ 1.326313, 43.808515 ], [ 1.343356, 43.81053 ], [ 1.345052, 43.81335 ], [ 1.35152, 43.81709 ], [ 1.360031, 43.81721 ], [ 1.361292, 43.820486 ], [ 1.354419, 43.836432 ], [ 1.331645, 43.83748 ], [ 1.314451, 43.83313 ], [ 1.303039, 43.843916 ], [ 1.293823, 43.8456 ], [ 1.296644, 43.848173 ], [ 1.319412, 43.85807 ], [ 1.323757, 43.85668 ], [ 1.335298, 43.851245 ], [ 1.358857, 43.85248 ], [ 1.36147, 43.858077 ], [ 1.34929, 43.87193 ], [ 1.352803, 43.873951 ], [ 1.355915, 43.882531 ], [ 1.365184, 43.889574 ], [ 1.390999, 43.881577 ], [ 1.404492, 43.884602 ], [ 1.408611, 43.882826 ], [ 1.418123, 43.871875 ], [ 1.430993, 43.86945 ], [ 1.447742, 43.873506 ], [ 1.448923, 43.87032 ], [ 1.467045, 43.89463 ], [ 1.469869, 43.89748 ], [ 1.475043, 43.905574 ], [ 1.477, 43.908293 ], [ 1.487717, 43.901799 ], [ 1.491908, 43.888761 ], [ 1.496655, 43.888583 ], [ 1.5166, 43.902682 ], [ 1.515195, 43.905966 ], [ 1.519355, 43.90495 ], [ 1.523323, 43.9036 ], [ 1.531161, 43.911546 ], [ 1.533792, 43.9211 ], [ 1.551068, 43.917996 ], [ 1.555617, 43.918317 ], [ 1.547523, 43.899722 ], [ 1.550723, 43.889881 ], [ 1.559399, 43.881968 ], [ 1.556407, 43.87578 ], [ 1.564008, 43.87188 ], [ 1.561642, 43.86998 ], [ 1.555312, 43.870834 ], [ 1.555086, 43.86849 ], [ 1.57037, 43.85182 ], [ 1.572585, 43.8488 ], [ 1.576138, 43.847463 ], [ 1.591232, 43.843572 ], [ 1.59317, 43.843138 ], [ 1.588589, 43.817176 ], [ 1.625502, 43.801807 ], [ 1.644788, 43.800257 ], [ 1.646404, 43.79706 ], [ 1.648551, 43.79404 ], [ 1.642091, 43.785095 ], [ 1.643045, 43.778375 ], [ 1.651526, 43.775861 ], [ 1.655786, 43.766887 ], [ 1.651455, 43.754629 ], [ 1.650186, 43.751589 ], [ 1.657976, 43.745017 ], [ 1.659743, 43.742186 ], [ 1.679455, 43.735749 ], [ 1.688782, 43.728464 ], [ 1.693023, 43.7297 ], [ 1.703544, 43.718894 ], [ 1.706446, 43.71622 ], [ 1.702349, 43.710276 ], [ 1.692903, 43.709965 ], [ 1.678907, 43.701391 ], [ 1.665722, 43.705072 ], [ 1.661032, 43.70565 ], [ 1.664454, 43.70362 ], [ 1.663572, 43.697279 ], [ 1.663573, 43.694058 ], [ 1.716092, 43.689389 ], [ 1.720704, 43.688346 ], [ 1.718914, 43.68522 ], [ 1.720379, 43.67515 ], [ 1.730492, 43.66414 ], [ 1.730357, 43.660759 ], [ 1.724309, 43.656774 ], [ 1.702541, 43.65089 ], [ 1.691623, 43.639998 ], [ 1.690614, 43.63316 ], [ 1.687765, 43.630421 ], [ 1.698605, 43.62009 ], [ 1.706268, 43.62138 ], [ 1.719106, 43.618386 ], [ 1.723044, 43.61676 ], [ 1.723742, 43.613797 ], [ 1.74056, 43.60596 ], [ 1.742237, 43.6046 ], [ 1.744731, 43.60436 ], [ 1.745048, 43.603462 ], [ 1.762222, 43.6018 ], [ 1.762697, 43.602738 ], [ 1.76653, 43.601881 ], [ 1.772294, 43.59812 ], [ 1.772591, 43.592348 ], [ 1.775825, 43.590468 ], [ 1.79341, 43.583763 ], [ 1.798684, 43.582535 ], [ 1.802575, 43.581147 ], [ 1.810477, 43.579173 ], [ 1.821662, 43.581194 ], [ 1.826037, 43.580296 ], [ 1.839147, 43.57779 ], [ 1.849452, 43.56754 ], [ 1.85195, 43.5522 ], [ 1.850711, 43.549192 ], [ 1.859818, 43.54661 ], [ 1.86424, 43.54506 ], [ 1.876382, 43.54154 ], [ 1.880414, 43.540315 ], [ 1.876463, 43.53868 ], [ 1.873093, 43.53647 ], [ 1.887719, 43.516941 ], [ 1.889391, 43.516184 ], [ 1.891608, 43.513409 ], [ 1.917079, 43.501474 ], [ 1.92057, 43.50514 ], [ 1.948634, 43.492166 ], [ 1.952509, 43.490449 ], [ 1.957257, 43.493698 ], [ 1.973997, 43.487838 ], [ 1.987799, 43.478826 ], [ 1.996014, 43.481736 ], [ 2.009895, 43.481468 ], [ 2.012578, 43.484246 ], [ 2.012012, 43.5071 ], [ 2.016101, 43.50871 ], [ 2.03489, 43.500013 ], [ 2.042285, 43.510929 ], [ 2.048094, 43.49829 ], [ 2.045463, 43.48777 ], [ 2.04829, 43.48573 ], [ 2.044983, 43.483196 ], [ 2.039032, 43.477708 ], [ 2.025048, 43.475397 ], [ 2.021455, 43.47307 ], [ 2.019322, 43.469938 ], [ 2.014953, 43.44947 ], [ 2.02247, 43.446087 ], [ 2.029133, 43.436898 ], [ 2.030853, 43.433737 ], [ 2.038411, 43.425482 ], [ 2.028795, 43.41962 ], [ 2.020921, 43.423193 ], [ 2.012692, 43.415021 ], [ 1.991106, 43.409343 ], [ 1.972991, 43.418962 ], [ 1.965903, 43.414971 ], [ 1.963038, 43.41991 ], [ 1.963752, 43.42275 ], [ 1.960755, 43.42396 ], [ 1.95817, 43.42561 ], [ 1.946584, 43.420597 ], [ 1.932769, 43.423377 ], [ 1.923508, 43.421558 ], [ 1.911508, 43.403408 ], [ 1.91463, 43.400749 ], [ 1.910708, 43.3974 ], [ 1.903591, 43.39402 ], [ 1.895584, 43.39658 ], [ 1.902433, 43.408813 ], [ 1.899143, 43.41113 ], [ 1.897627, 43.414271 ], [ 1.873987, 43.430259 ], [ 1.872942, 43.43696 ], [ 1.856453, 43.44345 ], [ 1.855178, 43.440517 ], [ 1.842953, 43.43255 ], [ 1.84599, 43.430729 ], [ 1.844511, 43.42261 ], [ 1.840383, 43.416741 ], [ 1.826761, 43.417746 ], [ 1.817266, 43.41065 ], [ 1.817111, 43.407384 ], [ 1.821619, 43.39879 ], [ 1.826108, 43.394661 ], [ 1.812498, 43.394126 ], [ 1.804971, 43.390588 ], [ 1.804994, 43.359764 ], [ 1.815575, 43.34831 ], [ 1.813484, 43.3415 ], [ 1.796973, 43.34056 ], [ 1.793332, 43.342567 ], [ 1.784932, 43.34515 ], [ 1.77653, 43.34256 ], [ 1.772273, 43.336977 ], [ 1.768684, 43.33939 ], [ 1.749223, 43.349462 ], [ 1.746555, 43.34348 ], [ 1.735427, 43.3377 ], [ 1.722905, 43.341533 ], [ 1.726379, 43.33269 ], [ 1.724412, 43.329666 ], [ 1.735952, 43.316018 ], [ 1.727504, 43.31357 ], [ 1.707384, 43.305316 ], [ 1.704015, 43.30282 ], [ 1.707797, 43.301155 ], [ 1.714527, 43.2971 ], [ 1.706646, 43.286036 ], [ 1.701275, 43.281698 ], [ 1.698489, 43.27911 ], [ 1.68842, 43.273554 ], [ 1.684706, 43.27552 ], [ 1.673613, 43.28134 ], [ 1.671417, 43.2783 ], [ 1.650608, 43.259827 ], [ 1.655788, 43.250976 ], [ 1.655283, 43.244105 ], [ 1.644398, 43.237564 ], [ 1.635082, 43.23709 ], [ 1.636456, 43.24718 ], [ 1.637144, 43.254008 ], [ 1.633595, 43.256239 ], [ 1.606213, 43.260604 ], [ 1.600931, 43.26622 ], [ 1.582583, 43.26887 ], [ 1.578834, 43.27512 ], [ 1.574813, 43.273429 ], [ 1.569433, 43.269912 ], [ 1.572619, 43.26357 ], [ 1.569141, 43.257366 ], [ 1.561765, 43.257484 ], [ 1.557052, 43.263323 ], [ 1.545386, 43.276797 ], [ 1.541674, 43.27509 ], [ 1.541722, 43.276082 ], [ 1.537449, 43.277077 ], [ 1.52189, 43.270621 ], [ 1.517628, 43.271643 ], [ 1.515703, 43.27804 ], [ 1.515871, 43.28441 ], [ 1.511636, 43.29246 ], [ 1.506599, 43.2872 ], [ 1.499248, 43.290445 ], [ 1.49622, 43.29277 ], [ 1.495033, 43.27689 ], [ 1.488674, 43.2686 ], [ 1.492642, 43.262804 ], [ 1.490239, 43.26011 ], [ 1.493322, 43.25422 ], [ 1.49768, 43.25466 ], [ 1.502879, 43.251637 ], [ 1.504522, 43.24953 ], [ 1.495751, 43.23897 ], [ 1.492447, 43.23684 ], [ 1.500513, 43.233745 ], [ 1.504053, 43.228189 ], [ 1.503881, 43.224867 ], [ 1.503995, 43.22095 ], [ 1.48702, 43.226503 ], [ 1.476565, 43.220347 ], [ 1.475497, 43.21699 ], [ 1.471837, 43.215385 ], [ 1.468744, 43.209566 ], [ 1.452056, 43.21222 ], [ 1.444751, 43.214018 ], [ 1.441798, 43.21587 ], [ 1.431539, 43.218136 ], [ 1.41686, 43.226325 ], [ 1.418659, 43.23654 ], [ 1.425426, 43.24559 ], [ 1.425886, 43.25582 ], [ 1.406262, 43.27419 ], [ 1.402761, 43.276547 ], [ 1.401943, 43.277623 ], [ 1.379301, 43.288857 ], [ 1.365686, 43.305999 ], [ 1.373023, 43.31015 ], [ 1.345491, 43.31549 ], [ 1.331294, 43.31383 ], [ 1.323968, 43.3094 ], [ 1.316667, 43.297392 ], [ 1.307485, 43.296727 ], [ 1.301558, 43.28756 ], [ 1.292531, 43.288366 ], [ 1.301238, 43.27292 ], [ 1.294862, 43.268267 ], [ 1.294111, 43.264926 ], [ 1.330481, 43.260644 ], [ 1.329953, 43.257217 ], [ 1.318422, 43.251154 ], [ 1.336707, 43.248387 ], [ 1.348304, 43.24313 ], [ 1.352581, 43.244617 ], [ 1.35678, 43.243701 ], [ 1.365233, 43.242021 ], [ 1.373053, 43.244883 ], [ 1.374903, 43.23864 ], [ 1.377652, 43.23627 ], [ 1.382925, 43.228152 ], [ 1.379963, 43.222341 ], [ 1.377872, 43.21925 ], [ 1.370204, 43.21067 ], [ 1.356669, 43.21301 ], [ 1.352282, 43.21198 ], [ 1.327822, 43.20456 ], [ 1.327516, 43.20196 ], [ 1.329615, 43.19702 ], [ 1.325853, 43.196126 ], [ 1.322387, 43.190989 ], [ 1.314608, 43.189995 ], [ 1.311658, 43.19165 ], [ 1.305721, 43.194912 ], [ 1.302034, 43.193576 ], [ 1.296283, 43.189284 ], [ 1.272331, 43.19585 ], [ 1.266351, 43.19148 ], [ 1.268142, 43.190779 ], [ 1.264613, 43.188734 ], [ 1.253254, 43.183792 ], [ 1.249383, 43.183306 ], [ 1.247613, 43.18654 ], [ 1.239495, 43.189065 ], [ 1.230324, 43.18739 ], [ 1.227735, 43.174001 ], [ 1.216928, 43.16329 ], [ 1.217172, 43.156579 ], [ 1.223738, 43.152072 ], [ 1.237564, 43.14998 ], [ 1.250818, 43.148097 ], [ 1.255381, 43.14795 ], [ 1.273873, 43.148388 ], [ 1.276705, 43.141992 ], [ 1.299357, 43.124961 ], [ 1.302718, 43.12259 ], [ 1.290166, 43.123439 ], [ 1.282698, 43.11601 ], [ 1.281744, 43.112995 ], [ 1.278927, 43.11026 ], [ 1.260737, 43.10799 ], [ 1.261854, 43.09165 ], [ 1.249571, 43.089042 ], [ 1.245513, 43.088076 ], [ 1.241135, 43.087537 ], [ 1.223571, 43.085926 ], [ 1.2221, 43.089078 ], [ 1.210476, 43.106905 ], [ 1.213204, 43.109236 ], [ 1.210751, 43.1151 ], [ 1.199329, 43.122617 ], [ 1.198395, 43.12542 ], [ 1.177517, 43.138201 ], [ 1.174984, 43.140974 ], [ 1.162565, 43.13204 ], [ 1.145819, 43.13863 ], [ 1.124082, 43.15691 ], [ 1.115991, 43.149875 ], [ 1.11207, 43.14841 ], [ 1.11198, 43.145531 ], [ 1.108471, 43.144228 ], [ 1.104069, 43.14396 ], [ 1.088091, 43.140035 ], [ 1.087977, 43.133825 ], [ 1.084129, 43.135403 ], [ 1.062938, 43.13867 ], [ 1.053544, 43.145454 ], [ 1.051863, 43.14391 ], [ 1.051446, 43.14061 ], [ 1.048409, 43.13815 ], [ 1.052319, 43.132935 ], [ 1.050845, 43.11982 ], [ 1.048314, 43.11731 ], [ 1.03823, 43.100308 ], [ 1.025497, 43.10214 ], [ 1.009501, 43.113484 ], [ 1.005098, 43.113303 ], [ 1.000889, 43.11428 ], [ 1.004142, 43.108616 ], [ 0.996328, 43.09811 ], [ 0.992095, 43.098018 ], [ 0.99167, 43.091173 ], [ 1.004964, 43.0816 ], [ 0.999629, 43.0765 ], [ 0.978285, 43.073009 ], [ 0.980334, 43.07022 ], [ 0.985586, 43.06247 ], [ 0.983483, 43.05626 ], [ 0.988953, 43.04786 ], [ 0.993263, 43.04842 ], [ 0.99437, 43.03985 ], [ 0.993153, 43.039558 ], [ 0.990214, 43.041564 ], [ 0.984119, 43.04539 ], [ 0.98455, 43.04218 ], [ 0.989042, 43.023396 ], [ 0.992966, 43.02338 ], [ 0.996808, 43.023981 ], [ 1.007949, 43.018763 ], [ 1.013484, 43.010022 ], [ 1.02239, 43.010195 ], [ 1.018611, 43.008147 ], [ 1.005529, 43.006087 ], [ 0.995098, 42.990834 ], [ 0.980532, 42.977687 ], [ 0.979101, 42.97443 ], [ 0.975795, 42.972974 ], [ 0.964711, 42.970804 ], [ 0.961393, 42.96831 ], [ 0.938102, 42.965646 ], [ 0.931165, 42.96643 ], [ 0.927664, 42.966687 ], [ 0.916804, 42.96074 ], [ 0.912639, 42.9594 ], [ 0.908073, 42.95831 ], [ 0.874911, 42.957776 ], [ 0.875793, 42.95445 ], [ 0.885379, 42.935725 ], [ 0.88452, 42.93244 ], [ 0.873674, 42.92673 ], [ 0.864822, 42.92743 ], [ 0.857163, 42.92399 ], [ 0.843739, 42.925182 ], [ 0.840735, 42.922675 ], [ 0.837338, 42.92054 ], [ 0.826682, 42.9155 ], [ 0.834232, 42.900791 ], [ 0.838049, 42.89883 ], [ 0.842883, 42.889585 ], [ 0.835258, 42.87359 ], [ 0.839447, 42.867521 ], [ 0.848211, 42.86533 ], [ 0.85666, 42.84052 ], [ 0.859883, 42.8383 ], [ 0.858306, 42.825719 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "33", "CODE_DEPT": "32", "NOM_DEPT": "GERS", "CODE_CHF": "013", "NOM_CHF": "AUCH", "X_CHF_LIEU": "5054", "Y_CHF_LIEU": "62858", "X_CENTROID": "4946", "Y_CENTROID": "62915", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.606811, 43.31089 ], [ 0.603125, 43.3121 ], [ 0.599695, 43.31365 ], [ 0.595984, 43.315758 ], [ 0.579671, 43.3212 ], [ 0.571099, 43.319836 ], [ 0.566583, 43.320815 ], [ 0.547069, 43.329806 ], [ 0.543299, 43.328587 ], [ 0.539688, 43.32713 ], [ 0.537018, 43.32757 ], [ 0.533036, 43.32959 ], [ 0.514701, 43.333342 ], [ 0.510377, 43.33384 ], [ 0.497721, 43.325993 ], [ 0.49354, 43.32548 ], [ 0.479816, 43.33259 ], [ 0.476404, 43.33223 ], [ 0.472977, 43.332483 ], [ 0.469934, 43.33497 ], [ 0.461134, 43.336562 ], [ 0.457253, 43.337884 ], [ 0.445023, 43.340611 ], [ 0.443605, 43.337553 ], [ 0.442971, 43.327926 ], [ 0.438138, 43.328486 ], [ 0.418738, 43.32808 ], [ 0.395823, 43.334244 ], [ 0.393631, 43.33744 ], [ 0.393953, 43.340409 ], [ 0.398672, 43.35144 ], [ 0.394226, 43.351019 ], [ 0.387506, 43.355321 ], [ 0.378548, 43.35537 ], [ 0.375684, 43.35299 ], [ 0.363876, 43.34957 ], [ 0.346156, 43.34814 ], [ 0.339845, 43.34377 ], [ 0.33135, 43.342654 ], [ 0.33095, 43.34597 ], [ 0.325407, 43.37478 ], [ 0.322128, 43.372589 ], [ 0.311893, 43.36716 ], [ 0.300517, 43.37136 ], [ 0.300552, 43.374844 ], [ 0.298759, 43.38858 ], [ 0.293995, 43.38779 ], [ 0.271197, 43.38262 ], [ 0.266934, 43.38168 ], [ 0.244136, 43.37272 ], [ 0.240272, 43.3707 ], [ 0.231704, 43.367712 ], [ 0.214771, 43.36984 ], [ 0.206345, 43.36778 ], [ 0.203647, 43.37024 ], [ 0.198076, 43.37492 ], [ 0.182031, 43.37118 ], [ 0.176969, 43.37704 ], [ 0.176024, 43.380442 ], [ 0.180075, 43.379125 ], [ 0.179426, 43.38255 ], [ 0.173805, 43.40277 ], [ 0.169555, 43.40181 ], [ 0.157076, 43.39925 ], [ 0.148339, 43.40516 ], [ 0.148276, 43.408683 ], [ 0.134549, 43.42249 ], [ 0.138111, 43.43305 ], [ 0.137459, 43.433992 ], [ 0.161807, 43.44151 ], [ 0.166064, 43.44238 ], [ 0.158148, 43.454315 ], [ 0.155394, 43.457025 ], [ 0.155302, 43.45788 ], [ 0.152138, 43.45988 ], [ 0.148229, 43.465191 ], [ 0.14453, 43.463761 ], [ 0.140635, 43.465044 ], [ 0.133654, 43.468209 ], [ 0.130741, 43.474065 ], [ 0.130044, 43.477395 ], [ 0.127279, 43.490655 ], [ 0.130128, 43.49304 ], [ 0.127468, 43.499 ], [ 0.125196, 43.50165 ], [ 0.112248, 43.51737 ], [ 0.108474, 43.51542 ], [ 0.091886, 43.510248 ], [ 0.082, 43.51736 ], [ 0.080576, 43.52395 ], [ 0.067742, 43.51941 ], [ 0.053621, 43.518767 ], [ 0.039857, 43.5369 ], [ 0.036462, 43.53938 ], [ 0.030055, 43.54457 ], [ 0.015782, 43.54339 ], [ 0.010764, 43.554897 ], [ 0.00946, 43.55783 ], [ 0.008294, 43.56073 ], [ -0.001666, 43.56532 ], [ -0.006586, 43.59283 ], [ -0.00871, 43.595291 ], [ -0.015009, 43.60552 ], [ -0.029866, 43.605067 ], [ -0.033826, 43.604731 ], [ -0.034107, 43.60747 ], [ -0.0383, 43.60614 ], [ -0.043995, 43.611191 ], [ -0.055966, 43.60653 ], [ -0.074213, 43.60618 ], [ -0.075589, 43.5928 ], [ -0.079109, 43.590517 ], [ -0.09313, 43.590695 ], [ -0.097509, 43.589427 ], [ -0.097245, 43.58591 ], [ -0.096783, 43.582406 ], [ -0.10552, 43.5818 ], [ -0.117675, 43.58552 ], [ -0.125567, 43.58349 ], [ -0.128961, 43.58145 ], [ -0.133718, 43.58144 ], [ -0.151007, 43.58546 ], [ -0.157822, 43.58145 ], [ -0.162108, 43.58167 ], [ -0.165057, 43.583931 ], [ -0.17692, 43.596596 ], [ -0.200656, 43.58543 ], [ -0.205011, 43.584 ], [ -0.206209, 43.587271 ], [ -0.210607, 43.593237 ], [ -0.228803, 43.589645 ], [ -0.238912, 43.58304 ], [ -0.242837, 43.58498 ], [ -0.249482, 43.596664 ], [ -0.254007, 43.596709 ], [ -0.254238, 43.600124 ], [ -0.248946, 43.60578 ], [ -0.247204, 43.61596 ], [ -0.274673, 43.61599 ], [ -0.280401, 43.62078 ], [ -0.281223, 43.624095 ], [ -0.280375, 43.627255 ], [ -0.282112, 43.643079 ], [ -0.266968, 43.63694 ], [ -0.263362, 43.638727 ], [ -0.263359, 43.64499 ], [ -0.261803, 43.64795 ], [ -0.259198, 43.653162 ], [ -0.246276, 43.654944 ], [ -0.243276, 43.663958 ], [ -0.23973, 43.671242 ], [ -0.24933, 43.671847 ], [ -0.256714, 43.6758 ], [ -0.254545, 43.682624 ], [ -0.241216, 43.692676 ], [ -0.247381, 43.70924 ], [ -0.226314, 43.71698 ], [ -0.222236, 43.71887 ], [ -0.218276, 43.72088 ], [ -0.194143, 43.73702 ], [ -0.195896, 43.740162 ], [ -0.196408, 43.746866 ], [ -0.218864, 43.750329 ], [ -0.213934, 43.755662 ], [ -0.209199, 43.756315 ], [ -0.207784, 43.759662 ], [ -0.215682, 43.77241 ], [ -0.214828, 43.782627 ], [ -0.222128, 43.78709 ], [ -0.221604, 43.79037 ], [ -0.218647, 43.79659 ], [ -0.226956, 43.807666 ], [ -0.216, 43.81254 ], [ -0.212633, 43.80928 ], [ -0.194708, 43.809211 ], [ -0.196344, 43.82912 ], [ -0.189844, 43.833697 ], [ -0.19342, 43.84001 ], [ -0.194496, 43.843009 ], [ -0.208908, 43.85767 ], [ -0.204298, 43.860257 ], [ -0.195834, 43.8707 ], [ -0.187112, 43.863894 ], [ -0.185723, 43.866889 ], [ -0.187532, 43.86985 ], [ -0.194002, 43.88158 ], [ -0.201257, 43.88527 ], [ -0.20535, 43.88498 ], [ -0.215616, 43.88927 ], [ -0.219239, 43.89122 ], [ -0.231716, 43.890962 ], [ -0.239879, 43.89741 ], [ -0.232826, 43.90154 ], [ -0.227893, 43.91079 ], [ -0.21685, 43.90762 ], [ -0.209669, 43.911734 ], [ -0.203483, 43.91339 ], [ -0.200575, 43.91464 ], [ -0.19871, 43.91782 ], [ -0.179029, 43.93649 ], [ -0.163922, 43.928606 ], [ -0.155915, 43.93233 ], [ -0.153158, 43.93882 ], [ -0.135133, 43.9363 ], [ -0.125325, 43.9436 ], [ -0.106746, 43.928834 ], [ -0.102561, 43.927278 ], [ -0.098748, 43.92889 ], [ -0.095423, 43.931002 ], [ -0.097864, 43.943353 ], [ -0.094468, 43.94579 ], [ -0.073635, 43.94456 ], [ -0.060463, 43.9588 ], [ -0.046915, 43.96123 ], [ -0.036169, 43.98374 ], [ -0.004915, 43.96253 ], [ -0.000961, 43.96061 ], [ 0.005561, 43.955612 ], [ 0.005383, 43.94523 ], [ -0.019936, 43.92927 ], [ 0.015984, 43.912245 ], [ 0.02921, 43.90203 ], [ 0.033178, 43.89998 ], [ 0.036927, 43.90213 ], [ 0.058618, 43.898381 ], [ 0.069083, 43.905345 ], [ 0.075082, 43.914682 ], [ 0.074765, 43.918186 ], [ 0.06974, 43.935252 ], [ 0.055391, 43.95707 ], [ 0.067104, 43.967359 ], [ 0.067536, 43.974242 ], [ 0.069724, 43.97655 ], [ 0.076046, 43.98314 ], [ 0.080372, 43.98172 ], [ 0.093313, 43.98574 ], [ 0.107388, 43.985382 ], [ 0.127415, 43.998581 ], [ 0.126847, 44.001926 ], [ 0.141, 43.993642 ], [ 0.138625, 43.97659 ], [ 0.156784, 43.972809 ], [ 0.161035, 43.97435 ], [ 0.164053, 43.977096 ], [ 0.165747, 43.99445 ], [ 0.18114, 44.002528 ], [ 0.189807, 44.015008 ], [ 0.193466, 44.01369 ], [ 0.201762, 44.014234 ], [ 0.214734, 44.02279 ], [ 0.218721, 44.02113 ], [ 0.229143, 44.02136 ], [ 0.232775, 44.02239 ], [ 0.232995, 44.00939 ], [ 0.250636, 44.004261 ], [ 0.259824, 44.005699 ], [ 0.27114, 44.00102 ], [ 0.273552, 43.998054 ], [ 0.28235, 43.998 ], [ 0.302772, 43.991395 ], [ 0.305493, 43.993992 ], [ 0.318026, 43.997245 ], [ 0.31486, 44.00671 ], [ 0.31548, 44.00997 ], [ 0.32475, 44.00785 ], [ 0.35707, 44.01553 ], [ 0.372908, 44.008429 ], [ 0.382444, 44.008342 ], [ 0.397883, 44.02188 ], [ 0.412024, 44.023499 ], [ 0.418874, 44.02821 ], [ 0.437588, 44.02919 ], [ 0.44245, 44.02876 ], [ 0.447452, 44.041621 ], [ 0.450312, 44.04438 ], [ 0.450621, 44.046404 ], [ 0.45866, 44.052579 ], [ 0.459759, 44.055378 ], [ 0.485403, 44.055439 ], [ 0.485697, 44.058687 ], [ 0.488817, 44.056463 ], [ 0.497471, 44.05758 ], [ 0.503819, 44.05377 ], [ 0.504717, 44.050667 ], [ 0.51158, 44.06274 ], [ 0.522484, 44.056951 ], [ 0.535071, 44.055209 ], [ 0.538427, 44.052952 ], [ 0.54609, 44.05623 ], [ 0.55874, 44.05822 ], [ 0.567315, 44.061234 ], [ 0.576884, 44.07345 ], [ 0.584703, 44.07726 ], [ 0.601222, 44.07801 ], [ 0.599327, 44.07495 ], [ 0.622547, 44.064176 ], [ 0.631509, 44.052863 ], [ 0.632705, 44.04963 ], [ 0.652847, 44.042833 ], [ 0.65417, 44.032849 ], [ 0.662534, 44.024582 ], [ 0.676267, 44.026883 ], [ 0.679586, 44.029348 ], [ 0.682755, 44.04224 ], [ 0.694547, 44.045124 ], [ 0.704967, 44.055725 ], [ 0.707923, 44.05829 ], [ 0.717115, 44.05759 ], [ 0.738933, 44.062491 ], [ 0.741635, 44.0652 ], [ 0.750176, 44.065523 ], [ 0.752327, 44.05944 ], [ 0.753347, 44.05637 ], [ 0.758697, 44.05113 ], [ 0.757886, 44.044459 ], [ 0.756565, 44.04124 ], [ 0.760935, 44.031997 ], [ 0.764048, 44.029639 ], [ 0.797375, 44.04396 ], [ 0.811224, 44.049663 ], [ 0.813507, 44.05228 ], [ 0.822057, 44.055596 ], [ 0.836679, 44.046981 ], [ 0.850634, 44.047679 ], [ 0.853937, 44.04218 ], [ 0.861963, 44.040185 ], [ 0.86534, 44.038325 ], [ 0.860854, 44.03746 ], [ 0.857868, 44.034901 ], [ 0.848912, 44.034104 ], [ 0.841769, 44.025329 ], [ 0.824257, 44.02906 ], [ 0.819879, 44.027696 ], [ 0.81585, 44.02604 ], [ 0.822488, 44.01464 ], [ 0.817424, 44.009073 ], [ 0.823675, 44.00673 ], [ 0.825149, 44.00441 ], [ 0.825979, 44.00096 ], [ 0.824219, 43.99446 ], [ 0.809019, 43.982047 ], [ 0.808342, 43.981179 ], [ 0.805555, 43.97941 ], [ 0.8009, 43.97726 ], [ 0.797205, 43.97512 ], [ 0.792216, 43.96615 ], [ 0.790753, 43.96307 ], [ 0.785137, 43.95809 ], [ 0.783778, 43.954916 ], [ 0.760114, 43.945304 ], [ 0.760549, 43.938669 ], [ 0.767958, 43.92478 ], [ 0.770004, 43.92214 ], [ 0.809298, 43.932302 ], [ 0.818672, 43.927583 ], [ 0.819943, 43.924979 ], [ 0.845156, 43.91536 ], [ 0.849347, 43.91718 ], [ 0.850473, 43.92001 ], [ 0.85214, 43.9227 ], [ 0.856065, 43.92102 ], [ 0.864678, 43.92318 ], [ 0.875289, 43.91283 ], [ 0.883738, 43.910326 ], [ 0.888197, 43.90962 ], [ 0.889231, 43.90425 ], [ 0.901197, 43.900841 ], [ 0.904654, 43.89893 ], [ 0.900571, 43.89653 ], [ 0.883251, 43.88887 ], [ 0.882866, 43.88583 ], [ 0.886033, 43.872245 ], [ 0.900972, 43.863621 ], [ 0.911024, 43.851768 ], [ 0.912698, 43.84849 ], [ 0.908473, 43.8494 ], [ 0.89538, 43.849253 ], [ 0.895239, 43.839897 ], [ 0.920762, 43.83302 ], [ 0.925163, 43.83203 ], [ 0.924206, 43.828939 ], [ 0.914785, 43.818577 ], [ 0.906108, 43.8111 ], [ 0.897205, 43.793232 ], [ 0.897026, 43.78662 ], [ 0.905542, 43.78412 ], [ 0.918354, 43.786473 ], [ 0.924358, 43.79153 ], [ 0.942257, 43.792112 ], [ 0.953983, 43.787372 ], [ 0.953642, 43.78406 ], [ 0.959099, 43.7718 ], [ 0.969891, 43.76138 ], [ 0.966056, 43.759567 ], [ 0.974622, 43.759295 ], [ 0.99219, 43.743895 ], [ 0.98905, 43.74386 ], [ 0.985922, 43.74382 ], [ 1.007789, 43.72879 ], [ 1.011973, 43.727695 ], [ 1.023419, 43.721873 ], [ 1.02217, 43.716017 ], [ 1.024347, 43.712987 ], [ 1.027388, 43.710432 ], [ 1.04073, 43.712176 ], [ 1.052021, 43.706375 ], [ 1.056108, 43.704756 ], [ 1.063925, 43.70292 ], [ 1.065703, 43.70023 ], [ 1.051577, 43.681849 ], [ 1.051339, 43.67864 ], [ 1.049022, 43.67602 ], [ 1.056834, 43.673842 ], [ 1.058015, 43.670848 ], [ 1.062518, 43.67116 ], [ 1.074826, 43.66171 ], [ 1.079461, 43.66252 ], [ 1.093458, 43.664383 ], [ 1.101383, 43.660561 ], [ 1.099477, 43.657494 ], [ 1.08861, 43.64729 ], [ 1.094498, 43.64243 ], [ 1.115457, 43.63673 ], [ 1.115933, 43.6396 ], [ 1.127421, 43.64076 ], [ 1.130581, 43.64265 ], [ 1.138899, 43.64183 ], [ 1.144935, 43.637614 ], [ 1.147455, 43.635182 ], [ 1.146816, 43.632336 ], [ 1.1426, 43.621311 ], [ 1.146019, 43.619029 ], [ 1.158654, 43.60518 ], [ 1.171418, 43.606896 ], [ 1.1809, 43.6141 ], [ 1.185959, 43.608462 ], [ 1.188439, 43.60562 ], [ 1.200479, 43.595726 ], [ 1.201942, 43.575518 ], [ 1.199343, 43.56918 ], [ 1.166831, 43.572528 ], [ 1.162297, 43.573802 ], [ 1.163369, 43.570859 ], [ 1.156696, 43.556634 ], [ 1.152204, 43.55702 ], [ 1.125451, 43.554299 ], [ 1.112391, 43.55671 ], [ 1.114137, 43.553653 ], [ 1.118141, 43.54553 ], [ 1.105617, 43.5366 ], [ 1.097081, 43.533231 ], [ 1.091417, 43.542501 ], [ 1.084108, 43.54648 ], [ 1.074806, 43.54643 ], [ 1.05963, 43.5393 ], [ 1.050552, 43.541036 ], [ 1.073076, 43.52903 ], [ 1.076593, 43.52668 ], [ 1.06845, 43.523492 ], [ 1.055315, 43.524976 ], [ 1.052928, 43.51839 ], [ 1.069796, 43.507 ], [ 1.072887, 43.50442 ], [ 1.05932, 43.504177 ], [ 1.051077, 43.48947 ], [ 1.033751, 43.48682 ], [ 1.03749, 43.48556 ], [ 1.020032, 43.47638 ], [ 1.017906, 43.47354 ], [ 1.038859, 43.463194 ], [ 1.04167, 43.460815 ], [ 1.04394, 43.458372 ], [ 1.037108, 43.45512 ], [ 1.039075, 43.452497 ], [ 1.034473, 43.45017 ], [ 1.03388, 43.44726 ], [ 1.033454, 43.44419 ], [ 1.032272, 43.441214 ], [ 1.021751, 43.432896 ], [ 1.018914, 43.430658 ], [ 1.021059, 43.428609 ], [ 1.028599, 43.42044 ], [ 1.023514, 43.41499 ], [ 1.022788, 43.4117 ], [ 1.004308, 43.41384 ], [ 0.997091, 43.40981 ], [ 0.993933, 43.407268 ], [ 1.001607, 43.391022 ], [ 0.998926, 43.384385 ], [ 1.005037, 43.37999 ], [ 1.002876, 43.37686 ], [ 0.998763, 43.376283 ], [ 0.993662, 43.366532 ], [ 0.989167, 43.365621 ], [ 0.980537, 43.36305 ], [ 0.976605, 43.363668 ], [ 0.96487, 43.37149 ], [ 0.968903, 43.377454 ], [ 0.963618, 43.386678 ], [ 0.9469, 43.38523 ], [ 0.944659, 43.380605 ], [ 0.942091, 43.383427 ], [ 0.927285, 43.39507 ], [ 0.927776, 43.39822 ], [ 0.917422, 43.40299 ], [ 0.917282, 43.40615 ], [ 0.90473, 43.407828 ], [ 0.90223, 43.40529 ], [ 0.897917, 43.406436 ], [ 0.885639, 43.41003 ], [ 0.883107, 43.4104 ], [ 0.880555, 43.410633 ], [ 0.875921, 43.41079 ], [ 0.864511, 43.41586 ], [ 0.857069, 43.41447 ], [ 0.853479, 43.41373 ], [ 0.844325, 43.409936 ], [ 0.840405, 43.41109 ], [ 0.821119, 43.417059 ], [ 0.818079, 43.41451 ], [ 0.807663, 43.40017 ], [ 0.807297, 43.39972 ], [ 0.803342, 43.401805 ], [ 0.770422, 43.41681 ], [ 0.752092, 43.41699 ], [ 0.75717, 43.40772 ], [ 0.75493, 43.404709 ], [ 0.751705, 43.400979 ], [ 0.749961, 43.398881 ], [ 0.744299, 43.38179 ], [ 0.740799, 43.37946 ], [ 0.7321, 43.371635 ], [ 0.716226, 43.378699 ], [ 0.702998, 43.364496 ], [ 0.700061, 43.361122 ], [ 0.69924, 43.359763 ], [ 0.697166, 43.357334 ], [ 0.693641, 43.35234 ], [ 0.690313, 43.349844 ], [ 0.675321, 43.332306 ], [ 0.674719, 43.32951 ], [ 0.659808, 43.319345 ], [ 0.65681, 43.317273 ], [ 0.644501, 43.31235 ], [ 0.616602, 43.31552 ], [ 0.611852, 43.31565 ], [ 0.610158, 43.3128 ], [ 0.606811, 43.31089 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "34", "CODE_DEPT": "33", "NOM_DEPT": "GIRONDE", "CODE_CHF": "063", "NOM_CHF": "BORDEAUX", "X_CHF_LIEU": "4172", "Y_CHF_LIEU": "64218", "X_CENTROID": "4175", "Y_CENTROID": "64203", "CODE_REG": "72", "NOM_REGION": "AQUITAINE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.140689, 44.22641 ], [ -0.144544, 44.22862 ], [ -0.166844, 44.24253 ], [ -0.176352, 44.25882 ], [ -0.190181, 44.268894 ], [ -0.19874, 44.26838 ], [ -0.206465, 44.264203 ], [ -0.226004, 44.264784 ], [ -0.228163, 44.25448 ], [ -0.223807, 44.209365 ], [ -0.223447, 44.205898 ], [ -0.259675, 44.19691 ], [ -0.264191, 44.195748 ], [ -0.273621, 44.194017 ], [ -0.305993, 44.20185 ], [ -0.310572, 44.20306 ], [ -0.368231, 44.20621 ], [ -0.372914, 44.207053 ], [ -0.385436, 44.208893 ], [ -0.389617, 44.209485 ], [ -0.396314, 44.237468 ], [ -0.384245, 44.28282 ], [ -0.383388, 44.28632 ], [ -0.38792, 44.287649 ], [ -0.402291, 44.28719 ], [ -0.429625, 44.301545 ], [ -0.43184, 44.322577 ], [ -0.43661, 44.3228 ], [ -0.479411, 44.325091 ], [ -0.517635, 44.339111 ], [ -0.519075, 44.342282 ], [ -0.528103, 44.36465 ], [ -0.532663, 44.366067 ], [ -0.560007, 44.37463 ], [ -0.570474, 44.38224 ], [ -0.603107, 44.390941 ], [ -0.607275, 44.39225 ], [ -0.641469, 44.40023 ], [ -0.637047, 44.40183 ], [ -0.625643, 44.408052 ], [ -0.627318, 44.429273 ], [ -0.628064, 44.44285 ], [ -0.63573, 44.44685 ], [ -0.639557, 44.448856 ], [ -0.643947, 44.450405 ], [ -0.677006, 44.456354 ], [ -0.682781, 44.45074 ], [ -0.681853, 44.4452 ], [ -0.694507, 44.441322 ], [ -0.698762, 44.44272 ], [ -0.703447, 44.443582 ], [ -0.726968, 44.44754 ], [ -0.774077, 44.440102 ], [ -0.780281, 44.428111 ], [ -0.784941, 44.42914 ], [ -0.794567, 44.42809 ], [ -0.81122, 44.420835 ], [ -0.840281, 44.41841 ], [ -0.909148, 44.43614 ], [ -0.919623, 44.44316 ], [ -0.944148, 44.43709 ], [ -0.948141, 44.435901 ], [ -0.970882, 44.429234 ], [ -1.024305, 44.423247 ], [ -1.029159, 44.4227 ], [ -1.025627, 44.425028 ], [ -1.007738, 44.436515 ], [ -0.992453, 44.461461 ], [ -0.990686, 44.46477 ], [ -0.981033, 44.48479 ], [ -0.988434, 44.50901 ], [ -0.996354, 44.51144 ], [ -1.011142, 44.510376 ], [ -1.030022, 44.50858 ], [ -1.080766, 44.53059 ], [ -1.085166, 44.53219 ], [ -1.087011, 44.529124 ], [ -1.106985, 44.50264 ], [ -1.111609, 44.501446 ], [ -1.199818, 44.47959 ], [ -1.204313, 44.478576 ], [ -1.25389, 44.467604 ], [ -1.250952, 44.506348 ], [ -1.259822, 44.544429 ], [ -1.232352, 44.568782 ], [ -1.213458, 44.597461 ], [ -1.20507, 44.61407 ], [ -1.204778, 44.635188 ], [ -1.204346, 44.638702 ], [ -1.193837, 44.65816 ], [ -1.186043, 44.662233 ], [ -1.16174, 44.663097 ], [ -1.143716, 44.6585 ], [ -1.141916, 44.651878 ], [ -1.153621, 44.646544 ], [ -1.153779, 44.643202 ], [ -1.145872, 44.642832 ], [ -1.139061, 44.64705 ], [ -1.124932, 44.64726 ], [ -1.11836, 44.643563 ], [ -1.118773, 44.64023 ], [ -1.112496, 44.64487 ], [ -1.084311, 44.641212 ], [ -1.066299, 44.646203 ], [ -1.056811, 44.644731 ], [ -1.048876, 44.64835 ], [ -1.044034, 44.648625 ], [ -1.040816, 44.65111 ], [ -1.016365, 44.641512 ], [ -1.018581, 44.647796 ], [ -1.009295, 44.64898 ], [ -1.004681, 44.648192 ], [ -1.006272, 44.654769 ], [ -1.018659, 44.66465 ], [ -1.017862, 44.66799 ], [ -1.020115, 44.67106 ], [ -1.02534, 44.676991 ], [ -1.051925, 44.684755 ], [ -1.06248, 44.691994 ], [ -1.056332, 44.694888 ], [ -1.037418, 44.69232 ], [ -1.037786, 44.695504 ], [ -1.078191, 44.722193 ], [ -1.100564, 44.73941 ], [ -1.117714, 44.74509 ], [ -1.12204, 44.751121 ], [ -1.118511, 44.753389 ], [ -1.116329, 44.756409 ], [ -1.119323, 44.753764 ], [ -1.128249, 44.75143 ], [ -1.132186, 44.75336 ], [ -1.161933, 44.774908 ], [ -1.177624, 44.761569 ], [ -1.174084, 44.751389 ], [ -1.177351, 44.74479 ], [ -1.207736, 44.7167 ], [ -1.219313, 44.709896 ], [ -1.229232, 44.697535 ], [ -1.237442, 44.68067 ], [ -1.238353, 44.67715 ], [ -1.244958, 44.64561 ], [ -1.241877, 44.638918 ], [ -1.244944, 44.62482 ], [ -1.251794, 44.620235 ], [ -1.26076, 44.628129 ], [ -1.261328, 44.649493 ], [ -1.233619, 44.8054 ], [ -1.232986, 44.80894 ], [ -1.214863, 44.917282 ], [ -1.214517, 44.920794 ], [ -1.194636, 45.06483 ], [ -1.194341, 45.068354 ], [ -1.187448, 45.12496 ], [ -1.187115, 45.12851 ], [ -1.169941, 45.246494 ], [ -1.169507, 45.25007 ], [ -1.164967, 45.28157 ], [ -1.16454, 45.28507 ], [ -1.158977, 45.355286 ], [ -1.160302, 45.39044 ], [ -1.160494, 45.40565 ], [ -1.151499, 45.44031 ], [ -1.154857, 45.46414 ], [ -1.155895, 45.46756 ], [ -1.154377, 45.48119 ], [ -1.137142, 45.50997 ], [ -1.120295, 45.522636 ], [ -1.117079, 45.52528 ], [ -1.1003, 45.5428 ], [ -1.093177, 45.559984 ], [ -1.071278, 45.568354 ], [ -1.06672, 45.56975 ], [ -1.0628, 45.56828 ], [ -1.061945, 45.554175 ], [ -1.043822, 45.5429 ], [ -1.041002, 45.539422 ], [ -1.040934, 45.53602 ], [ -1.044327, 45.534163 ], [ -1.054126, 45.53536 ], [ -1.057592, 45.52959 ], [ -1.069896, 45.525422 ], [ -1.068351, 45.515027 ], [ -1.051666, 45.50257 ], [ -1.047731, 45.50048 ], [ -1.02786, 45.49257 ], [ -1.019999, 45.48475 ], [ -1.016856, 45.48241 ], [ -0.982439, 45.46076 ], [ -0.979011, 45.45851 ], [ -0.932489, 45.439639 ], [ -0.904069, 45.41155 ], [ -0.903699, 45.408099 ], [ -0.868284, 45.391369 ], [ -0.864457, 45.389328 ], [ -0.846176, 45.37844 ], [ -0.843365, 45.37571 ], [ -0.810748, 45.35184 ], [ -0.810253, 45.348518 ], [ -0.803319, 45.343967 ], [ -0.784062, 45.312879 ], [ -0.782552, 45.30965 ], [ -0.768074, 45.28733 ], [ -0.767201, 45.28386 ], [ -0.764974, 45.280764 ], [ -0.746968, 45.226823 ], [ -0.742433, 45.227867 ], [ -0.73797, 45.229035 ], [ -0.695018, 45.236153 ], [ -0.69012, 45.236369 ], [ -0.699556, 45.28127 ], [ -0.698893, 45.284755 ], [ -0.714581, 45.324304 ], [ -0.714861, 45.32774 ], [ -0.708651, 45.32736 ], [ -0.650712, 45.3225 ], [ -0.642088, 45.3151 ], [ -0.633594, 45.31845 ], [ -0.607635, 45.324009 ], [ -0.599195, 45.32134 ], [ -0.594481, 45.321143 ], [ -0.594006, 45.331596 ], [ -0.585303, 45.342899 ], [ -0.572742, 45.33321 ], [ -0.568974, 45.331235 ], [ -0.573978, 45.31424 ], [ -0.573867, 45.310717 ], [ -0.570631, 45.30029 ], [ -0.567662, 45.29742 ], [ -0.55176, 45.295188 ], [ -0.548704, 45.293121 ], [ -0.516876, 45.288782 ], [ -0.513854, 45.286227 ], [ -0.490146, 45.291558 ], [ -0.48602, 45.293579 ], [ -0.472986, 45.293633 ], [ -0.462073, 45.28858 ], [ -0.457654, 45.288358 ], [ -0.437376, 45.282116 ], [ -0.433463, 45.28057 ], [ -0.418508, 45.27361 ], [ -0.4177, 45.264387 ], [ -0.41912, 45.261324 ], [ -0.424028, 45.24856 ], [ -0.409905, 45.24797 ], [ -0.406009, 45.238707 ], [ -0.413635, 45.226568 ], [ -0.413187, 45.22321 ], [ -0.419461, 45.206985 ], [ -0.417435, 45.20388 ], [ -0.402585, 45.189701 ], [ -0.40061, 45.182813 ], [ -0.399471, 45.179378 ], [ -0.385058, 45.146596 ], [ -0.383396, 45.143339 ], [ -0.378517, 45.15678 ], [ -0.366174, 45.167563 ], [ -0.362959, 45.170237 ], [ -0.338768, 45.16624 ], [ -0.323322, 45.157159 ], [ -0.316676, 45.140486 ], [ -0.31363, 45.13765 ], [ -0.309374, 45.146624 ], [ -0.307551, 45.149589 ], [ -0.279962, 45.143248 ], [ -0.275713, 45.141571 ], [ -0.273944, 45.134855 ], [ -0.256783, 45.114793 ], [ -0.245672, 45.108214 ], [ -0.221237, 45.10776 ], [ -0.212445, 45.102238 ], [ -0.209721, 45.100235 ], [ -0.191442, 45.09475 ], [ -0.166877, 45.092747 ], [ -0.161926, 45.09249 ], [ -0.15327, 45.08924 ], [ -0.143512, 45.090354 ], [ -0.110974, 45.115524 ], [ -0.092825, 45.121022 ], [ -0.087832, 45.12143 ], [ -0.061772, 45.098766 ], [ -0.057088, 45.098976 ], [ -0.05373, 45.10109 ], [ -0.046095, 45.09778 ], [ -0.0402, 45.10238 ], [ -0.025092, 45.11473 ], [ 0.00251, 45.119003 ], [ 0.006979, 45.117781 ], [ 0.031843, 45.11712 ], [ 0.045793, 45.11346 ], [ 0.061888, 45.09584 ], [ 0.067585, 45.0789 ], [ 0.070631, 45.076106 ], [ 0.072345, 45.0747 ], [ 0.073296, 45.07013 ], [ 0.055929, 45.04207 ], [ 0.044806, 45.035635 ], [ 0.042155, 45.025446 ], [ 0.040691, 45.02214 ], [ 0.03914, 45.02431 ], [ 0.039453, 45.02081 ], [ 0.035641, 45.01434 ], [ 0.040106, 44.99355 ], [ 0.036635, 44.991484 ], [ 0.029545, 44.97648 ], [ 0.017709, 44.98063 ], [ 0.013706, 44.978806 ], [ 0.014522, 44.97207 ], [ 0.00923, 44.962774 ], [ 0.005127, 44.94624 ], [ 0.016192, 44.931192 ], [ 0.018212, 44.928029 ], [ 0.022059, 44.92531 ], [ 0.033907, 44.91496 ], [ 0.02043, 44.897257 ], [ 0.01719, 44.894782 ], [ 0.015948, 44.894307 ], [ 0.014971, 44.89123 ], [ 0.012617, 44.8852 ], [ 0.001093, 44.87627 ], [ 0.001218, 44.87605 ], [ -0.001536, 44.87069 ], [ -0.004807, 44.868592 ], [ -0.010036, 44.859792 ], [ -0.032557, 44.855286 ], [ -0.03421, 44.852114 ], [ 0.003987, 44.84556 ], [ 0.008881, 44.845923 ], [ 0.022247, 44.84942 ], [ 0.039033, 44.837569 ], [ 0.037439, 44.83082 ], [ 0.043329, 44.825728 ], [ 0.047816, 44.82441 ], [ 0.050846, 44.82433 ], [ 0.064887, 44.82454 ], [ 0.070891, 44.819144 ], [ 0.075697, 44.81947 ], [ 0.082667, 44.831013 ], [ 0.091294, 44.83264 ], [ 0.095753, 44.83282 ], [ 0.108644, 44.830333 ], [ 0.109285, 44.820097 ], [ 0.114027, 44.819446 ], [ 0.114803, 44.81986 ], [ 0.124248, 44.827991 ], [ 0.148828, 44.82909 ], [ 0.157907, 44.82632 ], [ 0.17755, 44.82614 ], [ 0.182194, 44.82493 ], [ 0.184076, 44.823481 ], [ 0.189312, 44.82005 ], [ 0.192844, 44.820803 ], [ 0.206411, 44.838902 ], [ 0.209733, 44.841373 ], [ 0.217722, 44.84395 ], [ 0.22209, 44.84448 ], [ 0.238317, 44.854926 ], [ 0.241753, 44.8569 ], [ 0.243751, 44.85955 ], [ 0.239023, 44.87198 ], [ 0.284058, 44.864991 ], [ 0.288047, 44.86318 ], [ 0.311876, 44.847777 ], [ 0.315056, 44.84538 ], [ 0.299577, 44.83546 ], [ 0.300752, 44.82919 ], [ 0.29246, 44.83157 ], [ 0.285758, 44.82302 ], [ 0.268305, 44.826353 ], [ 0.263719, 44.826421 ], [ 0.263979, 44.8229 ], [ 0.265975, 44.81259 ], [ 0.274681, 44.79877 ], [ 0.27435, 44.79568 ], [ 0.271666, 44.78634 ], [ 0.274025, 44.783622 ], [ 0.280226, 44.774397 ], [ 0.293688, 44.76457 ], [ 0.297325, 44.76229 ], [ 0.296565, 44.75916 ], [ 0.271682, 44.75319 ], [ 0.267506, 44.751698 ], [ 0.249122, 44.751225 ], [ 0.235944, 44.76419 ], [ 0.226601, 44.764158 ], [ 0.224972, 44.76104 ], [ 0.218306, 44.75623 ], [ 0.211863, 44.739564 ], [ 0.218632, 44.72663 ], [ 0.201542, 44.72243 ], [ 0.200062, 44.72576 ], [ 0.193916, 44.74257 ], [ 0.18941, 44.74877 ], [ 0.184529, 44.74903 ], [ 0.180434, 44.745498 ], [ 0.178386, 44.742716 ], [ 0.172701, 44.73461 ], [ 0.164495, 44.73569 ], [ 0.161358, 44.73348 ], [ 0.15262, 44.73082 ], [ 0.141197, 44.73751 ], [ 0.139344, 44.72771 ], [ 0.136039, 44.71121 ], [ 0.130843, 44.70558 ], [ 0.128047, 44.70839 ], [ 0.119915, 44.71202 ], [ 0.11051, 44.71064 ], [ 0.105026, 44.701823 ], [ 0.100345, 44.70098 ], [ 0.107043, 44.68542 ], [ 0.115539, 44.68227 ], [ 0.129759, 44.683233 ], [ 0.134422, 44.682417 ], [ 0.133947, 44.679351 ], [ 0.130842, 44.673622 ], [ 0.133519, 44.667908 ], [ 0.142061, 44.66576 ], [ 0.159392, 44.66854 ], [ 0.163123, 44.67041 ], [ 0.167618, 44.668372 ], [ 0.180463, 44.664214 ], [ 0.183025, 44.661189 ], [ 0.181612, 44.65866 ], [ 0.17697, 44.65432 ], [ 0.173909, 44.651696 ], [ 0.168345, 44.64613 ], [ 0.165214, 44.632862 ], [ 0.160289, 44.632717 ], [ 0.146378, 44.635359 ], [ 0.141194, 44.641315 ], [ 0.13842, 44.63903 ], [ 0.139263, 44.627148 ], [ 0.154363, 44.614908 ], [ 0.150858, 44.608647 ], [ 0.146241, 44.608429 ], [ 0.133128, 44.606162 ], [ 0.117433, 44.59422 ], [ 0.11663, 44.593895 ], [ 0.113766, 44.59173 ], [ 0.110282, 44.59008 ], [ 0.105528, 44.58912 ], [ 0.082236, 44.58391 ], [ 0.085548, 44.57763 ], [ 0.082973, 44.567949 ], [ 0.074869, 44.560195 ], [ 0.072357, 44.550318 ], [ 0.068687, 44.54822 ], [ 0.064973, 44.55035 ], [ 0.03787, 44.554037 ], [ 0.032713, 44.55052 ], [ 0.029028, 44.548493 ], [ 0.020984, 44.54146 ], [ 0.016807, 44.54255 ], [ -0.001017, 44.55177 ], [ -0.00109, 44.548408 ], [ 0.017923, 44.53001 ], [ 0.009506, 44.521994 ], [ 0.00482, 44.522038 ], [ 0.001465, 44.520722 ], [ -0.00018, 44.518254 ], [ -0.004197, 44.51732 ], [ -0.015565, 44.504789 ], [ -0.01614, 44.501657 ], [ -0.016043, 44.489705 ], [ -0.013816, 44.46682 ], [ -0.007298, 44.459224 ], [ -0.002912, 44.460254 ], [ 0.004494, 44.456735 ], [ 0.007509, 44.44754 ], [ 0.004788, 44.44501 ], [ -0.002954, 44.442578 ], [ -0.007568, 44.433813 ], [ -0.005018, 44.424379 ], [ -0.011765, 44.420303 ], [ 0.006621, 44.397338 ], [ 0.015794, 44.3916 ], [ 0.018292, 44.38925 ], [ 0.016519, 44.386175 ], [ 0.010834, 44.38133 ], [ 0.021233, 44.375385 ], [ 0.014725, 44.366615 ], [ 0.009942, 44.367052 ], [ -0.001647, 44.37223 ], [ -0.011159, 44.37138 ], [ -0.028821, 44.36019 ], [ -0.032446, 44.360821 ], [ -0.036189, 44.36084 ], [ -0.040758, 44.360123 ], [ -0.059259, 44.35998 ], [ -0.069523, 44.35313 ], [ -0.078819, 44.35369 ], [ -0.080176, 44.350477 ], [ -0.085752, 44.33761 ], [ -0.080414, 44.334319 ], [ -0.077776, 44.332654 ], [ -0.057226, 44.31908 ], [ -0.03762, 44.299513 ], [ -0.034811, 44.29673 ], [ -0.042888, 44.293206 ], [ -0.033608, 44.27401 ], [ -0.049627, 44.267886 ], [ -0.053362, 44.265774 ], [ -0.064197, 44.249132 ], [ -0.066808, 44.246663 ], [ -0.073116, 44.251387 ], [ -0.08848, 44.238471 ], [ -0.104834, 44.231884 ], [ -0.11373, 44.233713 ], [ -0.119197, 44.238809 ], [ -0.123182, 44.240651 ], [ -0.125932, 44.23437 ], [ -0.136872, 44.228289 ], [ -0.140689, 44.22641 ] ] ], [ [ [ -1.029971, 44.64921 ], [ -1.031367, 44.652126 ], [ -1.026048, 44.66128 ], [ -1.014504, 44.652433 ], [ -1.017755, 44.65056 ], [ -1.024494, 44.652439 ], [ -1.028479, 44.65059 ], [ -1.029971, 44.64921 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "35", "CODE_DEPT": "34", "NOM_DEPT": "HERAULT", "CODE_CHF": "172", "NOM_CHF": "MONTPELLIER", "X_CHF_LIEU": "7707", "Y_CHF_LIEU": "62795", "X_CENTROID": "7296", "Y_CENTROID": "62756", "CODE_REG": "91", "NOM_REGION": "LANGUEDOC-ROUSSILLON" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.240561, 43.212809 ], [ 3.228989, 43.21916 ], [ 3.201526, 43.24776 ], [ 3.193229, 43.2504 ], [ 3.184023, 43.250124 ], [ 3.173126, 43.243836 ], [ 3.159183, 43.243228 ], [ 3.146508, 43.247384 ], [ 3.147017, 43.254157 ], [ 3.141627, 43.25951 ], [ 3.118897, 43.260731 ], [ 3.114664, 43.254745 ], [ 3.101424, 43.25616 ], [ 3.097452, 43.257928 ], [ 3.093639, 43.259874 ], [ 3.086199, 43.26382 ], [ 3.076978, 43.26293 ], [ 3.054347, 43.28004 ], [ 3.036064, 43.281912 ], [ 3.011118, 43.27762 ], [ 3.012103, 43.280936 ], [ 3.005738, 43.286244 ], [ 3.004816, 43.296769 ], [ 3.006281, 43.30013 ], [ 3.004423, 43.319708 ], [ 2.995281, 43.319555 ], [ 2.990723, 43.319222 ], [ 2.961798, 43.31304 ], [ 2.957536, 43.312476 ], [ 2.946079, 43.31196 ], [ 2.942061, 43.313666 ], [ 2.921249, 43.32608 ], [ 2.918369, 43.32351 ], [ 2.910982, 43.32005 ], [ 2.894929, 43.32626 ], [ 2.890884, 43.32793 ], [ 2.885119, 43.333249 ], [ 2.891178, 43.341802 ], [ 2.889495, 43.351767 ], [ 2.889904, 43.357345 ], [ 2.889793, 43.363723 ], [ 2.872288, 43.372934 ], [ 2.870568, 43.381011 ], [ 2.869181, 43.383636 ], [ 2.856778, 43.376288 ], [ 2.855626, 43.37348 ], [ 2.869575, 43.35645 ], [ 2.873742, 43.339633 ], [ 2.868538, 43.330064 ], [ 2.845974, 43.32562 ], [ 2.841926, 43.323686 ], [ 2.818156, 43.32396 ], [ 2.806109, 43.319211 ], [ 2.816603, 43.30865 ], [ 2.809682, 43.30437 ], [ 2.805735, 43.302361 ], [ 2.801825, 43.30031 ], [ 2.786537, 43.2844 ], [ 2.786968, 43.27444 ], [ 2.78708, 43.274035 ], [ 2.783181, 43.266633 ], [ 2.779998, 43.265241 ], [ 2.773293, 43.261242 ], [ 2.772493, 43.25803 ], [ 2.768509, 43.25726 ], [ 2.75252, 43.254594 ], [ 2.750072, 43.25739 ], [ 2.740772, 43.264578 ], [ 2.737904, 43.26725 ], [ 2.717737, 43.275558 ], [ 2.708919, 43.273655 ], [ 2.705185, 43.274472 ], [ 2.702969, 43.27682 ], [ 2.700303, 43.28281 ], [ 2.705513, 43.292266 ], [ 2.699148, 43.30833 ], [ 2.700735, 43.311207 ], [ 2.687773, 43.323 ], [ 2.685553, 43.31658 ], [ 2.677216, 43.31361 ], [ 2.674858, 43.303711 ], [ 2.659751, 43.29633 ], [ 2.659253, 43.292967 ], [ 2.643911, 43.29451 ], [ 2.639754, 43.295557 ], [ 2.631193, 43.29593 ], [ 2.624621, 43.28762 ], [ 2.616958, 43.284441 ], [ 2.617835, 43.287683 ], [ 2.601175, 43.298256 ], [ 2.600932, 43.301421 ], [ 2.599712, 43.31384 ], [ 2.596442, 43.31456 ], [ 2.592008, 43.31798 ], [ 2.590985, 43.3214 ], [ 2.583539, 43.333912 ], [ 2.555536, 43.337471 ], [ 2.551506, 43.33584 ], [ 2.540081, 43.34523 ], [ 2.54298, 43.347989 ], [ 2.555239, 43.366365 ], [ 2.552399, 43.37642 ], [ 2.557057, 43.38978 ], [ 2.566312, 43.39757 ], [ 2.569031, 43.400247 ], [ 2.573478, 43.399491 ], [ 2.586889, 43.39965 ], [ 2.593749, 43.40835 ], [ 2.593046, 43.411712 ], [ 2.583821, 43.412666 ], [ 2.569787, 43.42123 ], [ 2.565787, 43.42296 ], [ 2.579276, 43.4233 ], [ 2.597996, 43.43271 ], [ 2.602191, 43.43133 ], [ 2.606371, 43.431994 ], [ 2.606095, 43.43803 ], [ 2.608845, 43.44041 ], [ 2.617661, 43.438531 ], [ 2.641062, 43.45559 ], [ 2.644567, 43.45792 ], [ 2.644608, 43.46127 ], [ 2.641583, 43.46706 ], [ 2.663624, 43.46417 ], [ 2.668, 43.47005 ], [ 2.665094, 43.472677 ], [ 2.657633, 43.480958 ], [ 2.655033, 43.49418 ], [ 2.659896, 43.50346 ], [ 2.658852, 43.516923 ], [ 2.671518, 43.513697 ], [ 2.67602, 43.51346 ], [ 2.667984, 43.522062 ], [ 2.655687, 43.52725 ], [ 2.616643, 43.56538 ], [ 2.617994, 43.56872 ], [ 2.631005, 43.583242 ], [ 2.627227, 43.59319 ], [ 2.62254, 43.592463 ], [ 2.620069, 43.595423 ], [ 2.615603, 43.600518 ], [ 2.627779, 43.611106 ], [ 2.645491, 43.660672 ], [ 2.649787, 43.659444 ], [ 2.653587, 43.649991 ], [ 2.667283, 43.649448 ], [ 2.684695, 43.65381 ], [ 2.687337, 43.65093 ], [ 2.719328, 43.644412 ], [ 2.738722, 43.630334 ], [ 2.746507, 43.617845 ], [ 2.754524, 43.614139 ], [ 2.759078, 43.61489 ], [ 2.781699, 43.625876 ], [ 2.795131, 43.62463 ], [ 2.801592, 43.62954 ], [ 2.804692, 43.63216 ], [ 2.814703, 43.639479 ], [ 2.828424, 43.637432 ], [ 2.844894, 43.644763 ], [ 2.86877, 43.644965 ], [ 2.884296, 43.65713 ], [ 2.90294, 43.654647 ], [ 2.907798, 43.65475 ], [ 2.918495, 43.661993 ], [ 2.919588, 43.68659 ], [ 2.934967, 43.694712 ], [ 2.942225, 43.691774 ], [ 2.954969, 43.69654 ], [ 2.957596, 43.699448 ], [ 2.969351, 43.704023 ], [ 2.973965, 43.704627 ], [ 2.982088, 43.70803 ], [ 2.996006, 43.706493 ], [ 3.013333, 43.70144 ], [ 3.018665, 43.696 ], [ 3.022657, 43.69437 ], [ 3.031387, 43.69243 ], [ 3.048231, 43.696953 ], [ 3.060678, 43.692807 ], [ 3.061872, 43.69601 ], [ 3.062363, 43.7024 ], [ 3.069165, 43.706849 ], [ 3.054971, 43.715972 ], [ 3.057648, 43.725743 ], [ 3.053522, 43.732 ], [ 3.057115, 43.73844 ], [ 3.053162, 43.74478 ], [ 3.056275, 43.75495 ], [ 3.065413, 43.755703 ], [ 3.07351, 43.767594 ], [ 3.058796, 43.77968 ], [ 3.057048, 43.7828 ], [ 3.05838, 43.7861 ], [ 3.048568, 43.801498 ], [ 3.050173, 43.804619 ], [ 3.063813, 43.81263 ], [ 3.058661, 43.818006 ], [ 3.058733, 43.827967 ], [ 3.066312, 43.83527 ], [ 3.071172, 43.834826 ], [ 3.085706, 43.835554 ], [ 3.112567, 43.82707 ], [ 3.126978, 43.817668 ], [ 3.150705, 43.813769 ], [ 3.151466, 43.81479 ], [ 3.155002, 43.817065 ], [ 3.18238, 43.81283 ], [ 3.205308, 43.81296 ], [ 3.222688, 43.81778 ], [ 3.231794, 43.826063 ], [ 3.236311, 43.82744 ], [ 3.24472, 43.828807 ], [ 3.249037, 43.82958 ], [ 3.251333, 43.840067 ], [ 3.236408, 43.853896 ], [ 3.235019, 43.86087 ], [ 3.242077, 43.873934 ], [ 3.255494, 43.87803 ], [ 3.261857, 43.88748 ], [ 3.262608, 43.891 ], [ 3.274142, 43.89853 ], [ 3.277444, 43.896771 ], [ 3.285828, 43.893312 ], [ 3.295145, 43.89498 ], [ 3.318657, 43.891142 ], [ 3.342568, 43.89419 ], [ 3.341916, 43.903707 ], [ 3.35509, 43.912512 ], [ 3.358663, 43.91452 ], [ 3.359876, 43.91153 ], [ 3.370004, 43.916521 ], [ 3.381306, 43.91239 ], [ 3.394416, 43.910775 ], [ 3.401726, 43.91473 ], [ 3.423923, 43.91131 ], [ 3.435778, 43.900367 ], [ 3.43703, 43.886782 ], [ 3.431008, 43.87366 ], [ 3.421606, 43.87232 ], [ 3.430814, 43.864425 ], [ 3.435182, 43.86296 ], [ 3.447119, 43.868868 ], [ 3.460847, 43.87138 ], [ 3.482082, 43.890453 ], [ 3.491584, 43.89129 ], [ 3.496146, 43.89078 ], [ 3.507184, 43.896378 ], [ 3.520677, 43.888422 ], [ 3.523528, 43.88579 ], [ 3.521645, 43.86495 ], [ 3.527026, 43.859035 ], [ 3.548734, 43.85169 ], [ 3.561603, 43.855326 ], [ 3.57437, 43.84491 ], [ 3.578908, 43.843563 ], [ 3.581794, 43.846185 ], [ 3.599475, 43.849635 ], [ 3.599871, 43.852972 ], [ 3.583258, 43.85928 ], [ 3.577363, 43.867888 ], [ 3.582958, 43.87743 ], [ 3.600522, 43.88893 ], [ 3.602208, 43.89539 ], [ 3.621068, 43.91414 ], [ 3.623589, 43.916979 ], [ 3.637759, 43.91491 ], [ 3.638102, 43.898868 ], [ 3.645286, 43.90239 ], [ 3.644609, 43.913 ], [ 3.662454, 43.91127 ], [ 3.66699, 43.91057 ], [ 3.67342, 43.91326 ], [ 3.678652, 43.9261 ], [ 3.676573, 43.9324 ], [ 3.683658, 43.94063 ], [ 3.686397, 43.939498 ], [ 3.689503, 43.939937 ], [ 3.684487, 43.95166 ], [ 3.699443, 43.95823 ], [ 3.717269, 43.96098 ], [ 3.731136, 43.970681 ], [ 3.787337, 43.96687 ], [ 3.786956, 43.96361 ], [ 3.787083, 43.95384 ], [ 3.795518, 43.942277 ], [ 3.820307, 43.942408 ], [ 3.823284, 43.939785 ], [ 3.828287, 43.92406 ], [ 3.824003, 43.918054 ], [ 3.82249, 43.914978 ], [ 3.799542, 43.89082 ], [ 3.805468, 43.87859 ], [ 3.822361, 43.874084 ], [ 3.827923, 43.868948 ], [ 3.830809, 43.86642 ], [ 3.834475, 43.868664 ], [ 3.847961, 43.868749 ], [ 3.857116, 43.876165 ], [ 3.900092, 43.87873 ], [ 3.914357, 43.88765 ], [ 3.919554, 43.88197 ], [ 3.918219, 43.878665 ], [ 3.91773, 43.86833 ], [ 3.923111, 43.858788 ], [ 3.933721, 43.85425 ], [ 3.937902, 43.853577 ], [ 3.942114, 43.853379 ], [ 3.958993, 43.85351 ], [ 3.957748, 43.85043 ], [ 3.95814, 43.844132 ], [ 3.979528, 43.84268 ], [ 3.973738, 43.837118 ], [ 3.974203, 43.82721 ], [ 3.962087, 43.816405 ], [ 3.960123, 43.806046 ], [ 3.963614, 43.80451 ], [ 3.974348, 43.801474 ], [ 3.978808, 43.80287 ], [ 3.995606, 43.80989 ], [ 3.998455, 43.81149 ], [ 4.001341, 43.81305 ], [ 4.02865, 43.80156 ], [ 4.031522, 43.79893 ], [ 4.049778, 43.78757 ], [ 4.053123, 43.785046 ], [ 4.051987, 43.778 ], [ 4.051757, 43.774269 ], [ 4.059831, 43.77232 ], [ 4.064929, 43.767319 ], [ 4.067248, 43.764498 ], [ 4.083862, 43.767709 ], [ 4.091102, 43.76379 ], [ 4.095561, 43.75153 ], [ 4.099236, 43.749592 ], [ 4.103785, 43.74861 ], [ 4.111703, 43.74018 ], [ 4.114162, 43.73767 ], [ 4.122517, 43.737124 ], [ 4.133483, 43.74062 ], [ 4.143857, 43.735489 ], [ 4.145038, 43.732444 ], [ 4.15158, 43.71774 ], [ 4.153883, 43.71501 ], [ 4.162321, 43.70776 ], [ 4.164613, 43.696 ], [ 4.164313, 43.69283 ], [ 4.163626, 43.69014 ], [ 4.193818, 43.65175 ], [ 4.192906, 43.641866 ], [ 4.170054, 43.61081 ], [ 4.149622, 43.596115 ], [ 4.150216, 43.58556 ], [ 4.122875, 43.588359 ], [ 4.099889, 43.585274 ], [ 4.088261, 43.59093 ], [ 4.079447, 43.590302 ], [ 4.075126, 43.58899 ], [ 4.074673, 43.58859 ], [ 4.083496, 43.588354 ], [ 4.106343, 43.571378 ], [ 4.108712, 43.56844 ], [ 4.10274, 43.557143 ], [ 4.101042, 43.554371 ], [ 4.042516, 43.55683 ], [ 4.037657, 43.556336 ], [ 4.004763, 43.550959 ], [ 3.974016, 43.5412 ], [ 3.969386, 43.540231 ], [ 3.912291, 43.51849 ], [ 3.907956, 43.5172 ], [ 3.903821, 43.515261 ], [ 3.85278, 43.487458 ], [ 3.826219, 43.466493 ], [ 3.823545, 43.46355 ], [ 3.794526, 43.44003 ], [ 3.724916, 43.415799 ], [ 3.725368, 43.40164 ], [ 3.689099, 43.39198 ], [ 3.665745, 43.39295 ], [ 3.652847, 43.388098 ], [ 3.61948, 43.36763 ], [ 3.566689, 43.326158 ], [ 3.563656, 43.32348 ], [ 3.539809, 43.302016 ], [ 3.516013, 43.275981 ], [ 3.507807, 43.272431 ], [ 3.443607, 43.282168 ], [ 3.433626, 43.289459 ], [ 3.428965, 43.29021 ], [ 3.424149, 43.29008 ], [ 3.400448, 43.287284 ], [ 3.364786, 43.277371 ], [ 3.36059, 43.27587 ], [ 3.343555, 43.270307 ], [ 3.340277, 43.2677 ], [ 3.311623, 43.254482 ], [ 3.308215, 43.252324 ], [ 3.271341, 43.233398 ], [ 3.267666, 43.23132 ], [ 3.240561, 43.212809 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "36", "CODE_DEPT": "35", "NOM_DEPT": "ILLE-ET-VILAINE", "CODE_CHF": "238", "NOM_CHF": "RENNES", "X_CHF_LIEU": "3518", "Y_CHF_LIEU": "67896", "X_CENTROID": "3555", "Y_CENTROID": "67934", "CODE_REG": "53", "NOM_REGION": "BRETAGNE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.097036, 47.63136 ], [ -2.103189, 47.63486 ], [ -2.103979, 47.6381 ], [ -2.095198, 47.640469 ], [ -2.095004, 47.643752 ], [ -2.112425, 47.64754 ], [ -2.110371, 47.657015 ], [ -2.107446, 47.65979 ], [ -2.103234, 47.66599 ], [ -2.10385, 47.67619 ], [ -2.107481, 47.67771 ], [ -2.122663, 47.68267 ], [ -2.124075, 47.6929 ], [ -2.119132, 47.70971 ], [ -2.129069, 47.71756 ], [ -2.128417, 47.72396 ], [ -2.107391, 47.732748 ], [ -2.109457, 47.73588 ], [ -2.105087, 47.73757 ], [ -2.05986, 47.73831 ], [ -2.062322, 47.75127 ], [ -2.067314, 47.75088 ], [ -2.082389, 47.7505 ], [ -2.088468, 47.762597 ], [ -2.12863, 47.7614 ], [ -2.127329, 47.76455 ], [ -2.125108, 47.770656 ], [ -2.111378, 47.77228 ], [ -2.110098, 47.7786 ], [ -2.105343, 47.779665 ], [ -2.095417, 47.77899 ], [ -2.075998, 47.78918 ], [ -2.072142, 47.798552 ], [ -2.070534, 47.80807 ], [ -2.070464, 47.8114 ], [ -2.066864, 47.813246 ], [ -2.04677, 47.81919 ], [ -2.0452, 47.82226 ], [ -2.036045, 47.83346 ], [ -2.040324, 47.83522 ], [ -2.049442, 47.83786 ], [ -2.05393, 47.85095 ], [ -2.050927, 47.857133 ], [ -2.051378, 47.86018 ], [ -2.054704, 47.86879 ], [ -2.05828, 47.86651 ], [ -2.06932, 47.851884 ], [ -2.095195, 47.843258 ], [ -2.099383, 47.84375 ], [ -2.109451, 47.84884 ], [ -2.10618, 47.8516 ], [ -2.099109, 47.86447 ], [ -2.114176, 47.87883 ], [ -2.114768, 47.88232 ], [ -2.112087, 47.892485 ], [ -2.103623, 47.90039 ], [ -2.093704, 47.902133 ], [ -2.08967, 47.90286 ], [ -2.082017, 47.90892 ], [ -2.083715, 47.911666 ], [ -2.078951, 47.91949 ], [ -2.09806, 47.935717 ], [ -2.104673, 47.95198 ], [ -2.108884, 47.95319 ], [ -2.111211, 47.95908 ], [ -2.11977, 47.96095 ], [ -2.122495, 47.96386 ], [ -2.126572, 47.965615 ], [ -2.138403, 47.979735 ], [ -2.142614, 47.98174 ], [ -2.151741, 47.98361 ], [ -2.176729, 47.98005 ], [ -2.191056, 47.98918 ], [ -2.209813, 47.9948 ], [ -2.214416, 47.99324 ], [ -2.219153, 47.994681 ], [ -2.238197, 47.99933 ], [ -2.287539, 47.9915 ], [ -2.28804, 47.99491 ], [ -2.287311, 48.001734 ], [ -2.276503, 48.00884 ], [ -2.28244, 48.01796 ], [ -2.280539, 48.02114 ], [ -2.280018, 48.024 ], [ -2.273288, 48.031072 ], [ -2.252806, 48.045112 ], [ -2.249688, 48.047713 ], [ -2.242426, 48.0526 ], [ -2.19135, 48.05245 ], [ -2.171431, 48.06319 ], [ -2.171854, 48.07356 ], [ -2.16848, 48.076209 ], [ -2.171766, 48.078166 ], [ -2.181674, 48.083141 ], [ -2.18634, 48.081592 ], [ -2.222408, 48.078995 ], [ -2.234992, 48.07343 ], [ -2.23543, 48.06359 ], [ -2.256118, 48.062866 ], [ -2.256927, 48.069242 ], [ -2.24916, 48.08412 ], [ -2.253629, 48.08981 ], [ -2.253012, 48.094976 ], [ -2.255791, 48.09679 ], [ -2.253986, 48.107197 ], [ -2.287278, 48.133746 ], [ -2.283879, 48.14231 ], [ -2.283248, 48.1453 ], [ -2.278612, 48.14678 ], [ -2.264725, 48.15102 ], [ -2.25222, 48.14536 ], [ -2.242035, 48.14497 ], [ -2.240403, 48.14997 ], [ -2.247684, 48.154626 ], [ -2.247311, 48.158051 ], [ -2.230046, 48.164725 ], [ -2.224738, 48.17061 ], [ -2.224021, 48.183921 ], [ -2.218781, 48.20332 ], [ -2.227979, 48.210916 ], [ -2.213882, 48.21366 ], [ -2.20177, 48.208098 ], [ -2.191935, 48.208224 ], [ -2.184188, 48.211902 ], [ -2.183945, 48.21518 ], [ -2.190271, 48.224213 ], [ -2.187172, 48.244 ], [ -2.181494, 48.24885 ], [ -2.177596, 48.25095 ], [ -2.156662, 48.259563 ], [ -2.152795, 48.26172 ], [ -2.150098, 48.25872 ], [ -2.124054, 48.259305 ], [ -2.106582, 48.25166 ], [ -2.108602, 48.254799 ], [ -2.099637, 48.26289 ], [ -2.109596, 48.268669 ], [ -2.11046, 48.27506 ], [ -2.08501, 48.276285 ], [ -2.076641, 48.284741 ], [ -2.077427, 48.291622 ], [ -2.054287, 48.298556 ], [ -2.046771, 48.28978 ], [ -2.014101, 48.279532 ], [ -2.004284, 48.28113 ], [ -2.001991, 48.291107 ], [ -1.996033, 48.296651 ], [ -1.991436, 48.29819 ], [ -1.976457, 48.30024 ], [ -1.967577, 48.29191 ], [ -1.958045, 48.29312 ], [ -1.964572, 48.30144 ], [ -1.955451, 48.3188 ], [ -1.956632, 48.321857 ], [ -1.966897, 48.34282 ], [ -1.947782, 48.34259 ], [ -1.930318, 48.34813 ], [ -1.932019, 48.35459 ], [ -1.946466, 48.36712 ], [ -1.945718, 48.37742 ], [ -1.939919, 48.38613 ], [ -1.93829, 48.38909 ], [ -1.930066, 48.39433 ], [ -1.934232, 48.39632 ], [ -1.940771, 48.401371 ], [ -1.938171, 48.40783 ], [ -1.941192, 48.410584 ], [ -1.938097, 48.419863 ], [ -1.952001, 48.429874 ], [ -1.94883, 48.43646 ], [ -1.948042, 48.44635 ], [ -1.94173, 48.44853 ], [ -1.938892, 48.44702 ], [ -1.925875, 48.45744 ], [ -1.925583, 48.4643 ], [ -1.930747, 48.47035 ], [ -1.926936, 48.476826 ], [ -1.92213, 48.47732 ], [ -1.908996, 48.481554 ], [ -1.910871, 48.48478 ], [ -1.922607, 48.499449 ], [ -1.911488, 48.50974 ], [ -1.911453, 48.516604 ], [ -1.918771, 48.53314 ], [ -1.925546, 48.53836 ], [ -1.924803, 48.54518 ], [ -1.931336, 48.55056 ], [ -1.933339, 48.55107 ], [ -1.935391, 48.54821 ], [ -1.948037, 48.53881 ], [ -1.962692, 48.536195 ], [ -1.967441, 48.540179 ], [ -1.960992, 48.54934 ], [ -1.96307, 48.555937 ], [ -1.973372, 48.557327 ], [ -1.974857, 48.56781 ], [ -1.984663, 48.580505 ], [ -1.978379, 48.58399 ], [ -1.960586, 48.576005 ], [ -1.955327, 48.5764 ], [ -1.963932, 48.58335 ], [ -1.962082, 48.592635 ], [ -1.971737, 48.59057 ], [ -1.986195, 48.59388 ], [ -1.996143, 48.59233 ], [ -2.000698, 48.59733 ], [ -1.996984, 48.603692 ], [ -2.010716, 48.599356 ], [ -2.006274, 48.612576 ], [ -2.014327, 48.617041 ], [ -2.017127, 48.62737 ], [ -2.025383, 48.636313 ], [ -2.025336, 48.64685 ], [ -2.023301, 48.65002 ], [ -1.999846, 48.658362 ], [ -1.992134, 48.663084 ], [ -1.986287, 48.66896 ], [ -1.983262, 48.68204 ], [ -1.963724, 48.683964 ], [ -1.961394, 48.68079 ], [ -1.946286, 48.68393 ], [ -1.943606, 48.68625 ], [ -1.950988, 48.69032 ], [ -1.933667, 48.69716 ], [ -1.925432, 48.69314 ], [ -1.905293, 48.69032 ], [ -1.8957, 48.693412 ], [ -1.892455, 48.69626 ], [ -1.888423, 48.69856 ], [ -1.872968, 48.696913 ], [ -1.846144, 48.708136 ], [ -1.847318, 48.69425 ], [ -1.838702, 48.68147 ], [ -1.861815, 48.66735 ], [ -1.863727, 48.66056 ], [ -1.864518, 48.65707 ], [ -1.870603, 48.6437 ], [ -1.857094, 48.62462 ], [ -1.847729, 48.618765 ], [ -1.845281, 48.6164 ], [ -1.795953, 48.60659 ], [ -1.790819, 48.606022 ], [ -1.773098, 48.60347 ], [ -1.768553, 48.6034 ], [ -1.767714, 48.60239 ], [ -1.673029, 48.611393 ], [ -1.667887, 48.61042 ], [ -1.642637, 48.613908 ], [ -1.6376, 48.61473 ], [ -1.576214, 48.62555 ], [ -1.571087, 48.62645 ], [ -1.566049, 48.614827 ], [ -1.558303, 48.611232 ], [ -1.554664, 48.60923 ], [ -1.545464, 48.60609 ], [ -1.538887, 48.59746 ], [ -1.542011, 48.58087 ], [ -1.527747, 48.57908 ], [ -1.527773, 48.57577 ], [ -1.521005, 48.56705 ], [ -1.527171, 48.5619 ], [ -1.53311, 48.549439 ], [ -1.519766, 48.539657 ], [ -1.517781, 48.52985 ], [ -1.515309, 48.530294 ], [ -1.498528, 48.511018 ], [ -1.495733, 48.50831 ], [ -1.495588, 48.505047 ], [ -1.489947, 48.48937 ], [ -1.485862, 48.490737 ], [ -1.47467, 48.48588 ], [ -1.466134, 48.487976 ], [ -1.457581, 48.48543 ], [ -1.449399, 48.48677 ], [ -1.435747, 48.477916 ], [ -1.440356, 48.47217 ], [ -1.427752, 48.46235 ], [ -1.404237, 48.46143 ], [ -1.399391, 48.461159 ], [ -1.382967, 48.45687 ], [ -1.374943, 48.45926 ], [ -1.346533, 48.473118 ], [ -1.348477, 48.47989 ], [ -1.341415, 48.48921 ], [ -1.332739, 48.48886 ], [ -1.330412, 48.48596 ], [ -1.326326, 48.49852 ], [ -1.321808, 48.499798 ], [ -1.318768, 48.497286 ], [ -1.30455, 48.498803 ], [ -1.290184, 48.50679 ], [ -1.287629, 48.50953 ], [ -1.283385, 48.50853 ], [ -1.279004, 48.50918 ], [ -1.269542, 48.524356 ], [ -1.269817, 48.53105 ], [ -1.27291, 48.533721 ], [ -1.254221, 48.54327 ], [ -1.249493, 48.5437 ], [ -1.249016, 48.54367 ], [ -1.232492, 48.53764 ], [ -1.208259, 48.53909 ], [ -1.206894, 48.54219 ], [ -1.19316, 48.529248 ], [ -1.188368, 48.528687 ], [ -1.166724, 48.530079 ], [ -1.161961, 48.52425 ], [ -1.145709, 48.517654 ], [ -1.132159, 48.52173 ], [ -1.122244, 48.521362 ], [ -1.117277, 48.52165 ], [ -1.1012, 48.512885 ], [ -1.070165, 48.50849 ], [ -1.06746, 48.50561 ], [ -1.07492, 48.501133 ], [ -1.077392, 48.491095 ], [ -1.073586, 48.474894 ], [ -1.064649, 48.466913 ], [ -1.06716, 48.460332 ], [ -1.065332, 48.45125 ], [ -1.068721, 48.448676 ], [ -1.081436, 48.438573 ], [ -1.078227, 48.42201 ], [ -1.078455, 48.4185 ], [ -1.079735, 48.41738 ], [ -1.079478, 48.4139 ], [ -1.064323, 48.399929 ], [ -1.052793, 48.38093 ], [ -1.05658, 48.379187 ], [ -1.057253, 48.37582 ], [ -1.064838, 48.36724 ], [ -1.059735, 48.36682 ], [ -1.05578, 48.34113 ], [ -1.053602, 48.33813 ], [ -1.04583, 48.329655 ], [ -1.059222, 48.31219 ], [ -1.06096, 48.31109 ], [ -1.065875, 48.30968 ], [ -1.08845, 48.29013 ], [ -1.093643, 48.27288 ], [ -1.099932, 48.26837 ], [ -1.098672, 48.25131 ], [ -1.0806, 48.2195 ], [ -1.08253, 48.21623 ], [ -1.08712, 48.21004 ], [ -1.081888, 48.205148 ], [ -1.07765, 48.20315 ], [ -1.074357, 48.200471 ], [ -1.078229, 48.17997 ], [ -1.079822, 48.17687 ], [ -1.072702, 48.16579 ], [ -1.073926, 48.1593 ], [ -1.068944, 48.159482 ], [ -1.060683, 48.148738 ], [ -1.059299, 48.12549 ], [ -1.057022, 48.12246 ], [ -1.052936, 48.10604 ], [ -1.049133, 48.089596 ], [ -1.04725, 48.086606 ], [ -1.040332, 48.078086 ], [ -1.025492, 48.069845 ], [ -1.021497, 48.0684 ], [ -1.028222, 48.06103 ], [ -1.029935, 48.057763 ], [ -1.033183, 48.051353 ], [ -1.028089, 48.03846 ], [ -1.033554, 48.03261 ], [ -1.021413, 48.01744 ], [ -1.017261, 48.00804 ], [ -1.021712, 47.9954 ], [ -1.030417, 47.992473 ], [ -1.035241, 47.99201 ], [ -1.050316, 47.984634 ], [ -1.06883, 47.982949 ], [ -1.072252, 47.982065 ], [ -1.078714, 47.984409 ], [ -1.083363, 47.9857 ], [ -1.092993, 47.98751 ], [ -1.098003, 47.987018 ], [ -1.107516, 47.988876 ], [ -1.1223, 47.98651 ], [ -1.129886, 47.97122 ], [ -1.148707, 47.968216 ], [ -1.152452, 47.966344 ], [ -1.161289, 47.95295 ], [ -1.159514, 47.939221 ], [ -1.162792, 47.937924 ], [ -1.167151, 47.93417 ], [ -1.163133, 47.928089 ], [ -1.168644, 47.915475 ], [ -1.175715, 47.91095 ], [ -1.176175, 47.897723 ], [ -1.179919, 47.89558 ], [ -1.192156, 47.89102 ], [ -1.197126, 47.885593 ], [ -1.197464, 47.87902 ], [ -1.189163, 47.86771 ], [ -1.191997, 47.86543 ], [ -1.203023, 47.85685 ], [ -1.206104, 47.858387 ], [ -1.213082, 47.857217 ], [ -1.217566, 47.85601 ], [ -1.222126, 47.850366 ], [ -1.214178, 47.84251 ], [ -1.216083, 47.836154 ], [ -1.220867, 47.821723 ], [ -1.223153, 47.819009 ], [ -1.227872, 47.82029 ], [ -1.238252, 47.80999 ], [ -1.240193, 47.802287 ], [ -1.237062, 47.799597 ], [ -1.245882, 47.776718 ], [ -1.251009, 47.777622 ], [ -1.33715, 47.79463 ], [ -1.339993, 47.795214 ], [ -1.364478, 47.79967 ], [ -1.365536, 47.80604 ], [ -1.374824, 47.808827 ], [ -1.381228, 47.82141 ], [ -1.391976, 47.82855 ], [ -1.405523, 47.825 ], [ -1.409149, 47.827406 ], [ -1.411962, 47.82855 ], [ -1.414846, 47.827498 ], [ -1.419285, 47.829044 ], [ -1.427417, 47.832171 ], [ -1.456579, 47.83175 ], [ -1.465114, 47.83486 ], [ -1.479636, 47.83481 ], [ -1.481873, 47.8318 ], [ -1.480687, 47.82869 ], [ -1.474307, 47.824 ], [ -1.468448, 47.8059 ], [ -1.47114, 47.80307 ], [ -1.494999, 47.798505 ], [ -1.503981, 47.80108 ], [ -1.51219, 47.79722 ], [ -1.530422, 47.78478 ], [ -1.556429, 47.78372 ], [ -1.575393, 47.778234 ], [ -1.585308, 47.7789 ], [ -1.594141, 47.77603 ], [ -1.59491, 47.77332 ], [ -1.598107, 47.766525 ], [ -1.601774, 47.764542 ], [ -1.619634, 47.76357 ], [ -1.627131, 47.759827 ], [ -1.626098, 47.75656 ], [ -1.636801, 47.741755 ], [ -1.638131, 47.722209 ], [ -1.641237, 47.721825 ], [ -1.644387, 47.722087 ], [ -1.648814, 47.720306 ], [ -1.661157, 47.7102 ], [ -1.686443, 47.7126 ], [ -1.706147, 47.70895 ], [ -1.71127, 47.700421 ], [ -1.715725, 47.69945 ], [ -1.729713, 47.699342 ], [ -1.732593, 47.70184 ], [ -1.736125, 47.70415 ], [ -1.750249, 47.706751 ], [ -1.771608, 47.69868 ], [ -1.786276, 47.69988 ], [ -1.820055, 47.7056 ], [ -1.828414, 47.70954 ], [ -1.83778, 47.70676 ], [ -1.841527, 47.7055 ], [ -1.853488, 47.70804 ], [ -1.858304, 47.70825 ], [ -1.878257, 47.6952 ], [ -1.883074, 47.69499 ], [ -1.888114, 47.695482 ], [ -1.93644, 47.686523 ], [ -1.956329, 47.671188 ], [ -1.961339, 47.67094 ], [ -1.969284, 47.67424 ], [ -1.969042, 47.68781 ], [ -1.973056, 47.69403 ], [ -1.973401, 47.69415 ], [ -1.977136, 47.691668 ], [ -2.012284, 47.666454 ], [ -2.016926, 47.66683 ], [ -2.035333, 47.66847 ], [ -2.043095, 47.6657 ], [ -2.047426, 47.66379 ], [ -2.052005, 47.6504 ], [ -2.082054, 47.64945 ], [ -2.097036, 47.63136 ] ] ], [ [ [ -2.006895, 48.56611 ], [ -2.010653, 48.564792 ], [ -2.019503, 48.55909 ], [ -2.021944, 48.55622 ], [ -2.033869, 48.551173 ], [ -2.038784, 48.542 ], [ -2.043228, 48.54206 ], [ -2.052745, 48.551913 ], [ -2.047377, 48.56412 ], [ -2.060069, 48.5701 ], [ -2.080555, 48.56804 ], [ -2.094333, 48.57172 ], [ -2.1249, 48.593415 ], [ -2.125942, 48.59753 ], [ -2.123708, 48.60441 ], [ -2.149213, 48.62904 ], [ -2.148225, 48.632404 ], [ -2.134228, 48.635974 ], [ -2.124093, 48.63525 ], [ -2.11315, 48.641416 ], [ -2.086822, 48.63461 ], [ -2.082274, 48.63581 ], [ -2.074563, 48.63959 ], [ -2.054589, 48.63766 ], [ -2.050179, 48.63594 ], [ -2.050969, 48.62611 ], [ -2.035975, 48.625572 ], [ -2.031641, 48.62376 ], [ -2.032611, 48.62042 ], [ -2.029796, 48.61462 ], [ -2.033451, 48.61277 ], [ -2.030745, 48.60696 ], [ -2.030363, 48.603988 ], [ -2.022679, 48.60166 ], [ -2.015906, 48.59028 ], [ -2.013644, 48.58751 ], [ -2.003894, 48.586141 ], [ -1.997032, 48.581157 ], [ -2.010811, 48.57212 ], [ -2.006895, 48.56611 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "37", "CODE_DEPT": "36", "NOM_DEPT": "INDRE", "CODE_CHF": "044", "NOM_CHF": "CHATEAUROUX", "X_CHF_LIEU": "6001", "Y_CHF_LIEU": "66352", "X_CENTROID": "5913", "Y_CENTROID": "66318", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.415191, 46.34722 ], [ 1.411548, 46.3495 ], [ 1.407003, 46.36264 ], [ 1.395144, 46.368644 ], [ 1.396571, 46.371897 ], [ 1.39195, 46.37107 ], [ 1.376609, 46.38334 ], [ 1.373905, 46.38586 ], [ 1.36255, 46.39563 ], [ 1.359389, 46.39772 ], [ 1.344678, 46.401598 ], [ 1.340492, 46.3997 ], [ 1.312648, 46.39371 ], [ 1.321836, 46.386566 ], [ 1.311035, 46.381038 ], [ 1.310512, 46.37437 ], [ 1.28302, 46.37221 ], [ 1.279554, 46.376488 ], [ 1.274572, 46.37642 ], [ 1.26021, 46.37872 ], [ 1.250656, 46.37675 ], [ 1.238165, 46.3662 ], [ 1.21797, 46.368256 ], [ 1.213319, 46.374407 ], [ 1.212952, 46.388002 ], [ 1.208385, 46.38915 ], [ 1.193499, 46.380733 ], [ 1.192893, 46.37741 ], [ 1.18868, 46.37694 ], [ 1.180777, 46.378594 ], [ 1.17728, 46.38395 ], [ 1.1954, 46.40002 ], [ 1.193411, 46.40976 ], [ 1.211268, 46.42992 ], [ 1.213066, 46.43308 ], [ 1.203363, 46.433796 ], [ 1.195477, 46.42962 ], [ 1.185835, 46.429303 ], [ 1.185483, 46.439511 ], [ 1.168524, 46.44635 ], [ 1.16378, 46.44677 ], [ 1.150917, 46.450297 ], [ 1.135514, 46.470889 ], [ 1.152956, 46.472838 ], [ 1.136125, 46.493461 ], [ 1.136833, 46.49678 ], [ 1.145329, 46.50007 ], [ 1.149143, 46.502212 ], [ 1.146903, 46.50518 ], [ 1.12372, 46.52232 ], [ 1.119414, 46.524226 ], [ 1.104139, 46.53343 ], [ 1.090094, 46.53758 ], [ 1.080132, 46.53618 ], [ 1.065509, 46.539252 ], [ 1.020409, 46.53715 ], [ 1.019938, 46.540418 ], [ 1.024705, 46.5497 ], [ 1.014764, 46.567764 ], [ 1.009906, 46.56742 ], [ 0.990589, 46.56604 ], [ 0.982015, 46.57327 ], [ 0.962437, 46.57254 ], [ 0.955598, 46.57761 ], [ 0.941367, 46.580879 ], [ 0.937758, 46.59442 ], [ 0.933284, 46.594569 ], [ 0.916278, 46.597125 ], [ 0.908477, 46.605279 ], [ 0.904896, 46.618175 ], [ 0.893993, 46.628658 ], [ 0.895518, 46.631821 ], [ 0.907628, 46.64672 ], [ 0.915638, 46.650672 ], [ 0.90734, 46.666437 ], [ 0.91184, 46.67259 ], [ 0.907243, 46.678136 ], [ 0.902262, 46.677666 ], [ 0.918155, 46.690485 ], [ 0.927133, 46.6936 ], [ 0.924812, 46.70022 ], [ 0.921587, 46.70272 ], [ 0.910404, 46.71741 ], [ 0.911172, 46.72707 ], [ 0.90283, 46.730405 ], [ 0.898325, 46.7358 ], [ 0.879803, 46.73875 ], [ 0.867469, 46.74822 ], [ 0.884505, 46.75457 ], [ 0.911862, 46.757132 ], [ 0.916607, 46.75644 ], [ 0.930035, 46.755561 ], [ 0.943507, 46.73863 ], [ 0.947225, 46.73662 ], [ 0.961024, 46.74 ], [ 0.979595, 46.756038 ], [ 0.982563, 46.762548 ], [ 1.006777, 46.75848 ], [ 1.01169, 46.757814 ], [ 1.011173, 46.7662 ], [ 1.009519, 46.76876 ], [ 0.999956, 46.781046 ], [ 1.004327, 46.79088 ], [ 0.985332, 46.80165 ], [ 1.00893, 46.814446 ], [ 1.010199, 46.835282 ], [ 1.017929, 46.844251 ], [ 1.022644, 46.84562 ], [ 1.020281, 46.848498 ], [ 1.016925, 46.85445 ], [ 1.025551, 46.87966 ], [ 1.025219, 46.87975 ], [ 1.037503, 46.92823 ], [ 1.037435, 46.94206 ], [ 1.041221, 46.943541 ], [ 1.044912, 46.945117 ], [ 1.058044, 46.94968 ], [ 1.062925, 46.95882 ], [ 1.059915, 46.968642 ], [ 1.059912, 46.972011 ], [ 1.051693, 46.980284 ], [ 1.05633, 46.98967 ], [ 1.056376, 46.996439 ], [ 1.070197, 47.00051 ], [ 1.077615, 47.01584 ], [ 1.105678, 47.028167 ], [ 1.110264, 47.029242 ], [ 1.112761, 47.02676 ], [ 1.115568, 47.024438 ], [ 1.160983, 47.03936 ], [ 1.175977, 47.04122 ], [ 1.181069, 47.04104 ], [ 1.190076, 47.03407 ], [ 1.19304, 47.031711 ], [ 1.202802, 47.027693 ], [ 1.206733, 47.028295 ], [ 1.220634, 47.024908 ], [ 1.229742, 47.01705 ], [ 1.23222, 47.01414 ], [ 1.244251, 47.01995 ], [ 1.248989, 47.02083 ], [ 1.276097, 47.040806 ], [ 1.272536, 47.05041 ], [ 1.289151, 47.06286 ], [ 1.29299, 47.068965 ], [ 1.293769, 47.07225 ], [ 1.312185, 47.073875 ], [ 1.316275, 47.083877 ], [ 1.311277, 47.09362 ], [ 1.3175, 47.10295 ], [ 1.326639, 47.10465 ], [ 1.339469, 47.100467 ], [ 1.351835, 47.1062 ], [ 1.355669, 47.108478 ], [ 1.364901, 47.12461 ], [ 1.363751, 47.135086 ], [ 1.36186, 47.13826 ], [ 1.350896, 47.153714 ], [ 1.343527, 47.173555 ], [ 1.326666, 47.18622 ], [ 1.336774, 47.194223 ], [ 1.351844, 47.1939 ], [ 1.388418, 47.20687 ], [ 1.392843, 47.208693 ], [ 1.40637, 47.215543 ], [ 1.409592, 47.21741 ], [ 1.418308, 47.226188 ], [ 1.421208, 47.22916 ], [ 1.453139, 47.23899 ], [ 1.467986, 47.23903 ], [ 1.473013, 47.23891 ], [ 1.48761, 47.23748 ], [ 1.494832, 47.23311 ], [ 1.503504, 47.23452 ], [ 1.526638, 47.22251 ], [ 1.528062, 47.21925 ], [ 1.534446, 47.223591 ], [ 1.532718, 47.23026 ], [ 1.527011, 47.23978 ], [ 1.526755, 47.252496 ], [ 1.523953, 47.25534 ], [ 1.563081, 47.26143 ], [ 1.587815, 47.25788 ], [ 1.592885, 47.2577 ], [ 1.593136, 47.274416 ], [ 1.602725, 47.275018 ], [ 1.607649, 47.27543 ], [ 1.612089, 47.277139 ], [ 1.619786, 47.272629 ], [ 1.629582, 47.27443 ], [ 1.649461, 47.27148 ], [ 1.651132, 47.261842 ], [ 1.665701, 47.25889 ], [ 1.700438, 47.26408 ], [ 1.712938, 47.27395 ], [ 1.71582, 47.27682 ], [ 1.746692, 47.24987 ], [ 1.750044, 47.24731 ], [ 1.772462, 47.233739 ], [ 1.776111, 47.23138 ], [ 1.786011, 47.231397 ], [ 1.793575, 47.234807 ], [ 1.795821, 47.23782 ], [ 1.811518, 47.232183 ], [ 1.81462, 47.22999 ], [ 1.834519, 47.22055 ], [ 1.839079, 47.219308 ], [ 1.838892, 47.215759 ], [ 1.837444, 47.19837 ], [ 1.842237, 47.17758 ], [ 1.837527, 47.17678 ], [ 1.823578, 47.17397 ], [ 1.813917, 47.16657 ], [ 1.811046, 47.16327 ], [ 1.809816, 47.15621 ], [ 1.774451, 47.130755 ], [ 1.777883, 47.130107 ], [ 1.780997, 47.128943 ], [ 1.795823, 47.12081 ], [ 1.805415, 47.12016 ], [ 1.809476, 47.12202 ], [ 1.828448, 47.121302 ], [ 1.843601, 47.11348 ], [ 1.846675, 47.11098 ], [ 1.878812, 47.10229 ], [ 1.883068, 47.100512 ], [ 1.887899, 47.104764 ], [ 1.892733, 47.103766 ], [ 1.906385, 47.10811 ], [ 1.920261, 47.10403 ], [ 1.937202, 47.11093 ], [ 1.943597, 47.11505 ], [ 1.947311, 47.116674 ], [ 1.96314, 47.12418 ], [ 1.974874, 47.12104 ], [ 1.992226, 47.12565 ], [ 1.99666, 47.127 ], [ 1.999913, 47.11732 ], [ 2.00024, 47.11392 ], [ 2.009587, 47.11127 ], [ 2.004464, 47.10161 ], [ 2.006573, 47.09521 ], [ 2.026221, 47.096476 ], [ 2.031199, 47.1049 ], [ 2.050699, 47.10435 ], [ 2.053597, 47.101511 ], [ 2.048458, 47.09607 ], [ 2.055653, 47.076723 ], [ 2.053304, 47.07014 ], [ 2.044557, 47.066944 ], [ 2.040447, 47.060958 ], [ 2.0385, 47.057844 ], [ 2.02938, 47.045532 ], [ 2.031413, 47.04235 ], [ 2.053482, 47.03822 ], [ 2.064618, 47.027941 ], [ 2.081354, 47.021754 ], [ 2.08304, 47.018634 ], [ 2.094267, 47.014905 ], [ 2.096889, 47.01241 ], [ 2.106187, 47.0002 ], [ 2.108856, 46.997191 ], [ 2.105175, 46.99534 ], [ 2.094825, 46.989474 ], [ 2.094592, 46.98057 ], [ 2.091833, 46.977997 ], [ 2.087045, 46.97252 ], [ 2.089985, 46.96355 ], [ 2.08457, 46.958635 ], [ 2.081369, 46.95665 ], [ 2.070203, 46.954423 ], [ 2.070685, 46.934023 ], [ 2.106058, 46.91498 ], [ 2.110319, 46.91317 ], [ 2.143641, 46.91732 ], [ 2.151967, 46.91433 ], [ 2.154965, 46.91167 ], [ 2.153136, 46.908457 ], [ 2.14007, 46.88985 ], [ 2.126204, 46.879865 ], [ 2.120998, 46.88019 ], [ 2.090268, 46.86857 ], [ 2.092409, 46.852834 ], [ 2.077817, 46.838005 ], [ 2.072823, 46.837658 ], [ 2.069292, 46.83547 ], [ 2.050804, 46.8362 ], [ 2.047999, 46.832332 ], [ 2.071568, 46.809851 ], [ 2.100792, 46.79614 ], [ 2.104205, 46.793551 ], [ 2.105793, 46.79025 ], [ 2.116105, 46.778533 ], [ 2.094304, 46.75597 ], [ 2.070117, 46.752192 ], [ 2.065751, 46.74249 ], [ 2.074233, 46.73444 ], [ 2.092145, 46.72526 ], [ 2.088115, 46.715751 ], [ 2.087097, 46.712456 ], [ 2.092068, 46.71187 ], [ 2.100843, 46.70849 ], [ 2.11008, 46.71115 ], [ 2.119793, 46.70959 ], [ 2.128758, 46.706431 ], [ 2.141157, 46.69554 ], [ 2.155448, 46.69216 ], [ 2.154034, 46.68882 ], [ 2.137272, 46.67231 ], [ 2.13972, 46.6656 ], [ 2.151695, 46.65931 ], [ 2.166749, 46.64733 ], [ 2.175944, 46.64884 ], [ 2.179982, 46.6429 ], [ 2.189447, 46.642141 ], [ 2.181273, 46.62579 ], [ 2.187352, 46.61605 ], [ 2.185257, 46.612855 ], [ 2.184614, 46.60257 ], [ 2.180742, 46.600297 ], [ 2.176001, 46.6002 ], [ 2.167145, 46.588988 ], [ 2.16798, 46.585653 ], [ 2.173675, 46.565857 ], [ 2.1587, 46.557346 ], [ 2.160161, 46.55405 ], [ 2.181453, 46.526985 ], [ 2.182754, 46.513297 ], [ 2.183065, 46.50993 ], [ 2.189967, 46.505406 ], [ 2.194701, 46.50625 ], [ 2.203705, 46.48628 ], [ 2.200164, 46.48061 ], [ 2.20017, 46.480165 ], [ 2.198198, 46.47687 ], [ 2.193194, 46.47064 ], [ 2.151402, 46.4577 ], [ 2.155265, 46.43459 ], [ 2.167786, 46.42408 ], [ 2.149206, 46.4239 ], [ 2.140603, 46.421101 ], [ 2.115972, 46.421534 ], [ 2.10344, 46.41076 ], [ 2.088623, 46.41007 ], [ 2.088749, 46.41034 ], [ 2.084371, 46.41129 ], [ 2.072452, 46.420108 ], [ 2.063459, 46.42135 ], [ 2.058493, 46.420876 ], [ 2.029415, 46.42459 ], [ 2.026334, 46.427216 ], [ 1.993082, 46.43092 ], [ 1.990776, 46.435229 ], [ 1.986597, 46.435786 ], [ 1.981108, 46.440285 ], [ 1.976055, 46.4395 ], [ 1.926119, 46.43191 ], [ 1.92287, 46.434149 ], [ 1.919538, 46.43996 ], [ 1.911556, 46.44309 ], [ 1.899831, 46.438567 ], [ 1.895331, 46.43824 ], [ 1.88768, 46.440989 ], [ 1.883956, 46.43265 ], [ 1.878921, 46.432375 ], [ 1.853747, 46.43347 ], [ 1.84257, 46.42681 ], [ 1.818455, 46.431423 ], [ 1.816986, 46.4385 ], [ 1.802116, 46.44828 ], [ 1.798244, 46.45491 ], [ 1.793694, 46.45385 ], [ 1.784546, 46.455077 ], [ 1.74759, 46.45002 ], [ 1.750092, 46.447743 ], [ 1.752658, 46.445502 ], [ 1.758296, 46.43992 ], [ 1.75527, 46.437209 ], [ 1.759737, 46.42749 ], [ 1.748767, 46.412318 ], [ 1.750549, 46.405593 ], [ 1.745905, 46.40431 ], [ 1.72832, 46.39241 ], [ 1.727841, 46.38896 ], [ 1.7094, 46.39335 ], [ 1.683603, 46.41818 ], [ 1.679335, 46.416426 ], [ 1.661634, 46.4044 ], [ 1.65521, 46.395116 ], [ 1.651332, 46.392981 ], [ 1.64109, 46.38559 ], [ 1.627341, 46.389425 ], [ 1.614415, 46.403373 ], [ 1.621236, 46.419405 ], [ 1.609055, 46.42317 ], [ 1.604991, 46.421153 ], [ 1.592031, 46.4076 ], [ 1.577489, 46.409097 ], [ 1.574357, 46.406383 ], [ 1.569633, 46.40531 ], [ 1.555196, 46.395893 ], [ 1.546253, 46.395923 ], [ 1.543637, 46.416415 ], [ 1.534714, 46.4243 ], [ 1.525351, 46.426654 ], [ 1.521022, 46.42538 ], [ 1.510433, 46.41921 ], [ 1.509319, 46.412775 ], [ 1.500105, 46.405503 ], [ 1.497998, 46.39739 ], [ 1.496954, 46.394636 ], [ 1.493588, 46.39725 ], [ 1.479634, 46.393974 ], [ 1.463704, 46.37628 ], [ 1.445155, 46.37193 ], [ 1.437093, 46.36311 ], [ 1.43659, 46.35613 ], [ 1.415191, 46.34722 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "38", "CODE_DEPT": "37", "NOM_DEPT": "INDRE-ET-LOIRE", "CODE_CHF": "261", "NOM_CHF": "TOURS", "X_CHF_LIEU": "5256", "Y_CHF_LIEU": "67016", "X_CENTROID": "5254", "Y_CENTROID": "66867", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.326666, 47.18622 ], [ 1.343527, 47.173555 ], [ 1.350896, 47.153714 ], [ 1.36186, 47.13826 ], [ 1.363751, 47.135086 ], [ 1.364901, 47.12461 ], [ 1.355669, 47.108478 ], [ 1.351835, 47.1062 ], [ 1.339469, 47.100467 ], [ 1.326639, 47.10465 ], [ 1.3175, 47.10295 ], [ 1.311277, 47.09362 ], [ 1.316275, 47.083877 ], [ 1.312185, 47.073875 ], [ 1.293769, 47.07225 ], [ 1.29299, 47.068965 ], [ 1.289151, 47.06286 ], [ 1.272536, 47.05041 ], [ 1.276097, 47.040806 ], [ 1.248989, 47.02083 ], [ 1.244251, 47.01995 ], [ 1.23222, 47.01414 ], [ 1.229742, 47.01705 ], [ 1.220634, 47.024908 ], [ 1.206733, 47.028295 ], [ 1.202802, 47.027693 ], [ 1.19304, 47.031711 ], [ 1.190076, 47.03407 ], [ 1.181069, 47.04104 ], [ 1.175977, 47.04122 ], [ 1.160983, 47.03936 ], [ 1.115568, 47.024438 ], [ 1.112761, 47.02676 ], [ 1.110264, 47.029242 ], [ 1.105678, 47.028167 ], [ 1.077615, 47.01584 ], [ 1.070197, 47.00051 ], [ 1.056376, 46.996439 ], [ 1.05633, 46.98967 ], [ 1.051693, 46.980284 ], [ 1.059912, 46.972011 ], [ 1.059915, 46.968642 ], [ 1.062925, 46.95882 ], [ 1.058044, 46.94968 ], [ 1.044912, 46.945117 ], [ 1.041221, 46.943541 ], [ 1.037435, 46.94206 ], [ 1.037503, 46.92823 ], [ 1.025219, 46.87975 ], [ 1.025551, 46.87966 ], [ 1.016925, 46.85445 ], [ 1.020281, 46.848498 ], [ 1.022644, 46.84562 ], [ 1.017929, 46.844251 ], [ 1.010199, 46.835282 ], [ 1.00893, 46.814446 ], [ 0.985332, 46.80165 ], [ 1.004327, 46.79088 ], [ 0.999956, 46.781046 ], [ 1.009519, 46.76876 ], [ 1.011173, 46.7662 ], [ 1.01169, 46.757814 ], [ 1.006777, 46.75848 ], [ 0.982563, 46.762548 ], [ 0.979595, 46.756038 ], [ 0.961024, 46.74 ], [ 0.947225, 46.73662 ], [ 0.943507, 46.73863 ], [ 0.930035, 46.755561 ], [ 0.916607, 46.75644 ], [ 0.911862, 46.757132 ], [ 0.884505, 46.75457 ], [ 0.867469, 46.74822 ], [ 0.865602, 46.75104 ], [ 0.859743, 46.75572 ], [ 0.858729, 46.759154 ], [ 0.84484, 46.763019 ], [ 0.829396, 46.77687 ], [ 0.826099, 46.78682 ], [ 0.813354, 46.79168 ], [ 0.815597, 46.805 ], [ 0.810162, 46.814192 ], [ 0.809857, 46.8159 ], [ 0.809041, 46.819215 ], [ 0.807997, 46.829139 ], [ 0.794667, 46.832892 ], [ 0.786885, 46.84123 ], [ 0.796639, 46.84735 ], [ 0.795013, 46.85052 ], [ 0.771389, 46.85095 ], [ 0.766356, 46.85585 ], [ 0.771792, 46.86126 ], [ 0.765645, 46.86512 ], [ 0.753423, 46.860585 ], [ 0.743522, 46.871587 ], [ 0.739267, 46.87285 ], [ 0.729468, 46.88318 ], [ 0.727284, 46.88608 ], [ 0.70467, 46.90289 ], [ 0.703738, 46.909362 ], [ 0.704874, 46.91233 ], [ 0.708918, 46.917725 ], [ 0.703171, 46.925825 ], [ 0.706179, 46.936108 ], [ 0.695983, 46.959369 ], [ 0.695176, 46.96224 ], [ 0.695275, 46.969191 ], [ 0.690172, 46.97498 ], [ 0.660468, 46.978984 ], [ 0.651538, 46.986999 ], [ 0.637794, 46.98525 ], [ 0.63356, 46.986659 ], [ 0.623984, 46.993686 ], [ 0.621888, 46.99942 ], [ 0.623652, 47.00242 ], [ 0.61849, 47.00752 ], [ 0.590556, 47.00673 ], [ 0.585909, 47.00611 ], [ 0.567742, 47.006287 ], [ 0.56695, 47.00254 ], [ 0.567922, 46.999661 ], [ 0.574382, 46.99244 ], [ 0.573146, 46.989475 ], [ 0.573683, 46.98339 ], [ 0.576876, 46.98087 ], [ 0.598804, 46.974924 ], [ 0.601701, 46.958888 ], [ 0.598205, 46.95643 ], [ 0.563306, 46.955777 ], [ 0.554199, 46.95847 ], [ 0.549556, 46.95959 ], [ 0.512902, 46.95586 ], [ 0.50519, 46.95991 ], [ 0.502577, 46.95779 ], [ 0.491285, 46.955322 ], [ 0.486465, 46.95402 ], [ 0.444803, 46.941158 ], [ 0.443882, 46.93811 ], [ 0.43871, 46.92958 ], [ 0.434521, 46.931669 ], [ 0.420738, 46.93639 ], [ 0.405362, 46.936133 ], [ 0.401134, 46.93819 ], [ 0.38782, 46.94371 ], [ 0.38282, 46.94375 ], [ 0.36463, 46.948568 ], [ 0.348074, 46.93637 ], [ 0.343125, 46.936706 ], [ 0.325352, 46.930943 ], [ 0.321021, 46.932626 ], [ 0.310569, 46.93971 ], [ 0.302029, 46.95532 ], [ 0.303022, 46.958359 ], [ 0.306402, 46.96393 ], [ 0.298206, 46.97126 ], [ 0.306589, 46.97893 ], [ 0.291436, 46.99027 ], [ 0.296088, 46.990169 ], [ 0.310728, 46.997312 ], [ 0.308175, 46.99993 ], [ 0.306204, 47.00882 ], [ 0.300585, 47.021102 ], [ 0.309935, 47.028031 ], [ 0.309074, 47.03131 ], [ 0.307895, 47.047271 ], [ 0.298426, 47.053977 ], [ 0.294508, 47.051949 ], [ 0.267677, 47.04405 ], [ 0.264221, 47.04643 ], [ 0.26355, 47.068507 ], [ 0.243872, 47.07095 ], [ 0.235155, 47.06916 ], [ 0.232832, 47.06639 ], [ 0.228056, 47.06133 ], [ 0.208199, 47.053237 ], [ 0.194404, 47.063001 ], [ 0.180337, 47.05946 ], [ 0.175696, 47.06073 ], [ 0.176727, 47.064201 ], [ 0.174011, 47.06722 ], [ 0.177027, 47.07383 ], [ 0.194951, 47.08646 ], [ 0.198043, 47.09294 ], [ 0.185354, 47.10404 ], [ 0.183487, 47.11451 ], [ 0.179245, 47.11336 ], [ 0.167829, 47.108362 ], [ 0.161917, 47.10011 ], [ 0.158612, 47.10274 ], [ 0.134946, 47.10837 ], [ 0.134144, 47.11527 ], [ 0.140683, 47.124594 ], [ 0.137322, 47.122259 ], [ 0.127952, 47.120999 ], [ 0.123966, 47.126936 ], [ 0.110323, 47.12929 ], [ 0.10472, 47.120798 ], [ 0.090198, 47.12186 ], [ 0.082432, 47.117797 ], [ 0.077943, 47.127071 ], [ 0.081435, 47.13328 ], [ 0.07839, 47.14633 ], [ 0.068953, 47.14406 ], [ 0.064921, 47.146084 ], [ 0.05374, 47.16461 ], [ 0.05664, 47.167369 ], [ 0.06352, 47.17639 ], [ 0.066594, 47.189802 ], [ 0.061892, 47.19095 ], [ 0.053807, 47.198856 ], [ 0.068291, 47.214196 ], [ 0.072876, 47.214493 ], [ 0.076842, 47.21937 ], [ 0.072451, 47.219878 ], [ 0.073838, 47.233508 ], [ 0.069096, 47.24333 ], [ 0.076367, 47.251931 ], [ 0.08011, 47.271692 ], [ 0.083193, 47.274147 ], [ 0.087486, 47.27553 ], [ 0.088557, 47.282381 ], [ 0.082382, 47.28687 ], [ 0.100309, 47.308205 ], [ 0.111109, 47.31573 ], [ 0.117889, 47.32884 ], [ 0.117462, 47.332343 ], [ 0.135494, 47.335365 ], [ 0.144439, 47.342819 ], [ 0.147298, 47.345376 ], [ 0.14285, 47.358725 ], [ 0.140405, 47.361808 ], [ 0.15386, 47.363093 ], [ 0.157666, 47.36532 ], [ 0.182143, 47.381943 ], [ 0.168732, 47.386013 ], [ 0.168249, 47.396153 ], [ 0.153864, 47.39873 ], [ 0.156772, 47.401448 ], [ 0.180943, 47.416603 ], [ 0.185149, 47.426217 ], [ 0.184494, 47.429597 ], [ 0.180874, 47.45323 ], [ 0.184247, 47.45576 ], [ 0.19885, 47.47641 ], [ 0.200659, 47.4845 ], [ 0.20415, 47.48661 ], [ 0.220109, 47.501953 ], [ 0.219715, 47.50519 ], [ 0.224843, 47.52728 ], [ 0.207175, 47.52667 ], [ 0.205637, 47.53294 ], [ 0.19312, 47.538037 ], [ 0.200087, 47.54317 ], [ 0.214089, 47.56879 ], [ 0.218936, 47.57359 ], [ 0.230576, 47.57731 ], [ 0.234568, 47.57861 ], [ 0.230576, 47.585003 ], [ 0.230002, 47.608398 ], [ 0.232709, 47.61089 ], [ 0.25456, 47.61203 ], [ 0.259115, 47.612301 ], [ 0.275412, 47.5991 ], [ 0.322104, 47.595237 ], [ 0.339494, 47.583179 ], [ 0.339107, 47.57974 ], [ 0.37466, 47.57051 ], [ 0.378484, 47.56853 ], [ 0.397913, 47.57753 ], [ 0.402577, 47.578512 ], [ 0.3968, 47.59136 ], [ 0.395085, 47.594583 ], [ 0.382414, 47.60998 ], [ 0.373233, 47.61334 ], [ 0.364557, 47.62207 ], [ 0.381437, 47.639677 ], [ 0.382788, 47.643103 ], [ 0.391499, 47.641 ], [ 0.39625, 47.640855 ], [ 0.426615, 47.617726 ], [ 0.431741, 47.618316 ], [ 0.451411, 47.62146 ], [ 0.459238, 47.640594 ], [ 0.461177, 47.643806 ], [ 0.47545, 47.64688 ], [ 0.478496, 47.644182 ], [ 0.493419, 47.64508 ], [ 0.498418, 47.64476 ], [ 0.516741, 47.65622 ], [ 0.525724, 47.653936 ], [ 0.545247, 47.65717 ], [ 0.555785, 47.66397 ], [ 0.559603, 47.66617 ], [ 0.558792, 47.670796 ], [ 0.588942, 47.670053 ], [ 0.612683, 47.682913 ], [ 0.61868, 47.69226 ], [ 0.614431, 47.69421 ], [ 0.628781, 47.70803 ], [ 0.63877, 47.708125 ], [ 0.651962, 47.698476 ], [ 0.645512, 47.6893 ], [ 0.64478, 47.68594 ], [ 0.649237, 47.68436 ], [ 0.654258, 47.68419 ], [ 0.672603, 47.6959 ], [ 0.674774, 47.69901 ], [ 0.707317, 47.68297 ], [ 0.712153, 47.68181 ], [ 0.719417, 47.69 ], [ 0.732608, 47.693098 ], [ 0.735651, 47.69554 ], [ 0.787171, 47.68083 ], [ 0.80259, 47.6794 ], [ 0.81178, 47.682217 ], [ 0.829337, 47.67674 ], [ 0.834169, 47.676934 ], [ 0.840919, 47.68013 ], [ 0.844288, 47.681876 ], [ 0.865296, 47.689338 ], [ 0.867411, 47.68649 ], [ 0.85961, 47.67951 ], [ 0.862011, 47.67683 ], [ 0.860543, 47.67355 ], [ 0.844708, 47.64511 ], [ 0.862295, 47.63317 ], [ 0.859344, 47.626686 ], [ 0.850765, 47.62308 ], [ 0.852747, 47.6129 ], [ 0.85767, 47.611996 ], [ 0.864282, 47.599827 ], [ 0.894062, 47.60389 ], [ 0.899155, 47.603719 ], [ 0.895291, 47.61292 ], [ 0.904079, 47.61597 ], [ 0.916768, 47.630012 ], [ 0.919605, 47.632755 ], [ 0.9326, 47.62878 ], [ 0.937343, 47.628423 ], [ 0.951655, 47.62615 ], [ 0.960922, 47.62797 ], [ 0.96527, 47.62957 ], [ 0.972786, 47.621751 ], [ 0.987056, 47.62053 ], [ 0.991789, 47.62003 ], [ 0.984911, 47.604331 ], [ 0.987657, 47.59117 ], [ 0.995606, 47.5872 ], [ 0.997017, 47.583974 ], [ 1.000398, 47.58396 ], [ 1.003723, 47.584368 ], [ 1.01254, 47.60279 ], [ 1.019281, 47.60768 ], [ 1.028918, 47.608494 ], [ 1.033353, 47.607012 ], [ 1.059904, 47.57649 ], [ 1.062099, 47.56955 ], [ 1.063593, 47.56614 ], [ 1.073175, 47.5712 ], [ 1.077002, 47.57245 ], [ 1.076557, 47.5619 ], [ 1.047554, 47.53686 ], [ 1.045035, 47.53157 ], [ 1.068832, 47.51947 ], [ 1.068855, 47.502995 ], [ 1.080281, 47.49157 ], [ 1.081583, 47.488213 ], [ 1.090288, 47.472842 ], [ 1.093746, 47.47049 ], [ 1.092002, 47.467999 ], [ 1.086006, 47.46447 ], [ 1.08711, 47.46182 ], [ 1.10772, 47.465122 ], [ 1.112883, 47.465917 ], [ 1.128852, 47.450102 ], [ 1.133366, 47.44895 ], [ 1.131913, 47.44569 ], [ 1.114759, 47.42924 ], [ 1.085019, 47.429687 ], [ 1.110523, 47.408628 ], [ 1.113388, 47.39847 ], [ 1.121682, 47.39038 ], [ 1.121851, 47.38365 ], [ 1.118514, 47.381654 ], [ 1.107408, 47.372883 ], [ 1.106881, 47.36716 ], [ 1.122414, 47.35507 ], [ 1.115791, 47.350103 ], [ 1.107242, 47.33439 ], [ 1.106313, 47.331083 ], [ 1.094853, 47.328537 ], [ 1.105988, 47.301614 ], [ 1.108127, 47.29841 ], [ 1.131214, 47.29454 ], [ 1.162064, 47.272205 ], [ 1.173372, 47.28557 ], [ 1.174129, 47.2886 ], [ 1.182432, 47.28493 ], [ 1.197231, 47.284418 ], [ 1.215287, 47.28903 ], [ 1.215691, 47.292394 ], [ 1.219343, 47.293611 ], [ 1.223335, 47.294177 ], [ 1.242562, 47.286627 ], [ 1.243638, 47.28366 ], [ 1.243286, 47.278263 ], [ 1.242151, 47.27573 ], [ 1.264976, 47.25724 ], [ 1.275068, 47.256012 ], [ 1.287979, 47.24099 ], [ 1.301678, 47.22337 ], [ 1.302775, 47.22001 ], [ 1.30451, 47.21697 ], [ 1.322029, 47.193875 ], [ 1.323763, 47.19121 ], [ 1.326666, 47.18622 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "39", "CODE_DEPT": "38", "NOM_DEPT": "ISERE", "CODE_CHF": "185", "NOM_CHF": "GRENOBLE", "X_CHF_LIEU": "9140", "Y_CHF_LIEU": "64578", "X_CENTROID": "9020", "Y_CENTROID": "64659", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.80147, 44.706779 ], [ 5.796837, 44.70557 ], [ 5.774648, 44.6985 ], [ 5.755312, 44.696965 ], [ 5.73636, 44.712668 ], [ 5.717932, 44.71537 ], [ 5.70406, 44.729299 ], [ 5.699316, 44.724451 ], [ 5.691217, 44.722612 ], [ 5.668003, 44.72468 ], [ 5.660657, 44.721369 ], [ 5.647102, 44.724099 ], [ 5.645942, 44.726577 ], [ 5.643978, 44.73158 ], [ 5.639871, 44.73265 ], [ 5.629065, 44.744797 ], [ 5.626659, 44.750385 ], [ 5.626315, 44.753293 ], [ 5.62238, 44.754035 ], [ 5.607698, 44.755859 ], [ 5.586144, 44.764129 ], [ 5.582047, 44.77787 ], [ 5.577771, 44.77978 ], [ 5.548387, 44.7931 ], [ 5.545874, 44.787879 ], [ 5.553872, 44.774876 ], [ 5.548726, 44.770716 ], [ 5.48156, 44.786013 ], [ 5.477975, 44.79192 ], [ 5.46402, 44.793881 ], [ 5.460202, 44.799992 ], [ 5.475126, 44.807928 ], [ 5.484766, 44.82307 ], [ 5.480397, 44.82272 ], [ 5.463795, 44.82598 ], [ 5.464305, 44.82952 ], [ 5.474919, 44.867889 ], [ 5.470453, 44.87809 ], [ 5.480488, 44.898175 ], [ 5.483565, 44.92301 ], [ 5.483029, 44.926367 ], [ 5.477675, 44.966761 ], [ 5.47919, 44.97003 ], [ 5.488361, 44.989665 ], [ 5.49306, 44.99541 ], [ 5.480436, 45.01308 ], [ 5.483609, 45.02279 ], [ 5.479206, 45.024037 ], [ 5.47773, 45.033439 ], [ 5.465229, 45.04354 ], [ 5.466517, 45.05403 ], [ 5.475777, 45.07029 ], [ 5.484569, 45.07304 ], [ 5.494196, 45.07167 ], [ 5.486388, 45.080783 ], [ 5.473718, 45.08639 ], [ 5.46395, 45.08693 ], [ 5.457488, 45.08167 ], [ 5.455339, 45.07907 ], [ 5.447812, 45.07179 ], [ 5.44593, 45.06859 ], [ 5.432402, 45.0545 ], [ 5.422873, 45.053095 ], [ 5.40765, 45.044867 ], [ 5.393834, 45.04685 ], [ 5.385417, 45.055083 ], [ 5.384813, 45.04896 ], [ 5.397269, 45.03833 ], [ 5.39289, 45.037249 ], [ 5.384095, 45.035979 ], [ 5.369797, 45.04395 ], [ 5.352338, 45.04696 ], [ 5.347807, 45.0474 ], [ 5.340586, 45.06189 ], [ 5.333351, 45.059988 ], [ 5.329014, 45.058691 ], [ 5.321077, 45.055173 ], [ 5.320482, 45.05186 ], [ 5.316422, 45.051703 ], [ 5.305798, 45.05538 ], [ 5.30689, 45.05845 ], [ 5.29162, 45.06389 ], [ 5.28982, 45.06088 ], [ 5.276451, 45.059679 ], [ 5.275255, 45.056524 ], [ 5.272423, 45.054996 ], [ 5.266332, 45.056165 ], [ 5.265166, 45.059387 ], [ 5.246537, 45.060728 ], [ 5.244513, 45.06697 ], [ 5.239853, 45.06773 ], [ 5.231728, 45.071168 ], [ 5.227494, 45.07722 ], [ 5.224169, 45.079912 ], [ 5.220014, 45.080608 ], [ 5.212351, 45.08327 ], [ 5.207811, 45.08421 ], [ 5.180111, 45.083683 ], [ 5.170834, 45.06872 ], [ 5.162641, 45.065568 ], [ 5.149661, 45.074106 ], [ 5.134543, 45.074676 ], [ 5.135416, 45.0779 ], [ 5.156072, 45.08279 ], [ 5.162894, 45.09843 ], [ 5.167161, 45.10023 ], [ 5.186889, 45.12013 ], [ 5.187495, 45.122937 ], [ 5.187561, 45.12853 ], [ 5.1892, 45.14209 ], [ 5.184447, 45.148146 ], [ 5.191216, 45.157165 ], [ 5.189357, 45.163957 ], [ 5.188036, 45.16729 ], [ 5.175783, 45.18127 ], [ 5.169774, 45.19443 ], [ 5.168459, 45.19764 ], [ 5.167415, 45.21013 ], [ 5.170895, 45.212445 ], [ 5.182678, 45.217548 ], [ 5.201713, 45.2174 ], [ 5.199656, 45.220494 ], [ 5.191351, 45.22386 ], [ 5.176541, 45.248402 ], [ 5.162538, 45.246719 ], [ 5.153102, 45.2563 ], [ 5.141072, 45.24525 ], [ 5.122195, 45.24544 ], [ 5.130631, 45.283678 ], [ 5.138789, 45.29644 ], [ 5.135363, 45.298279 ], [ 5.13052, 45.297795 ], [ 5.120994, 45.29733 ], [ 5.116362, 45.29131 ], [ 5.10791, 45.28785 ], [ 5.088531, 45.28625 ], [ 5.075415, 45.28183 ], [ 5.073566, 45.283228 ], [ 5.070509, 45.28577 ], [ 5.067888, 45.2956 ], [ 5.066365, 45.298584 ], [ 5.05911, 45.31362 ], [ 5.056476, 45.31661 ], [ 5.032911, 45.318104 ], [ 5.028752, 45.31713 ], [ 5.020647, 45.319289 ], [ 5.018797, 45.3225 ], [ 5.009652, 45.34223 ], [ 5.004716, 45.342067 ], [ 4.990369, 45.343413 ], [ 4.978246, 45.337954 ], [ 4.973933, 45.336273 ], [ 4.95774, 45.329379 ], [ 4.948148, 45.32858 ], [ 4.943909, 45.327864 ], [ 4.928178, 45.32273 ], [ 4.925238, 45.320404 ], [ 4.903057, 45.310191 ], [ 4.899498, 45.30765 ], [ 4.878779, 45.297713 ], [ 4.858617, 45.298518 ], [ 4.858988, 45.301997 ], [ 4.858799, 45.30895 ], [ 4.854363, 45.308 ], [ 4.809212, 45.300787 ], [ 4.805088, 45.29876 ], [ 4.800462, 45.29737 ], [ 4.797706, 45.29977 ], [ 4.781541, 45.309877 ], [ 4.777746, 45.311739 ], [ 4.762214, 45.32355 ], [ 4.760834, 45.33641 ], [ 4.761049, 45.338384 ], [ 4.761683, 45.341472 ], [ 4.773748, 45.34815 ], [ 4.772551, 45.354297 ], [ 4.7698, 45.356962 ], [ 4.755997, 45.365681 ], [ 4.757023, 45.37146 ], [ 4.756426, 45.3748 ], [ 4.758848, 45.38472 ], [ 4.75485, 45.39779 ], [ 4.752409, 45.40023 ], [ 4.744783, 45.407368 ], [ 4.743146, 45.42042 ], [ 4.756688, 45.430069 ], [ 4.759953, 45.4326 ], [ 4.759948, 45.43849 ], [ 4.758645, 45.44139 ], [ 4.755536, 45.447047 ], [ 4.754932, 45.451028 ], [ 4.756936, 45.455707 ], [ 4.772288, 45.45556 ], [ 4.775918, 45.45421 ], [ 4.779476, 45.45504 ], [ 4.781318, 45.457782 ], [ 4.780067, 45.466664 ], [ 4.779996, 45.46965 ], [ 4.794931, 45.477065 ], [ 4.799126, 45.478502 ], [ 4.801278, 45.47935 ], [ 4.8136, 45.48419 ], [ 4.824478, 45.49494 ], [ 4.837207, 45.49916 ], [ 4.841456, 45.500603 ], [ 4.845381, 45.503844 ], [ 4.848693, 45.50637 ], [ 4.861328, 45.516849 ], [ 4.864208, 45.51942 ], [ 4.871814, 45.527636 ], [ 4.87277, 45.53091 ], [ 4.863055, 45.53775 ], [ 4.83654, 45.54482 ], [ 4.832431, 45.546921 ], [ 4.820698, 45.55853 ], [ 4.819066, 45.560784 ], [ 4.81601, 45.56535 ], [ 4.814331, 45.56811 ], [ 4.808442, 45.57235 ], [ 4.778305, 45.583981 ], [ 4.777132, 45.58739 ], [ 4.806022, 45.589007 ], [ 4.810818, 45.589722 ], [ 4.828533, 45.58773 ], [ 4.84462, 45.581562 ], [ 4.848644, 45.579919 ], [ 4.857586, 45.57652 ], [ 4.859784, 45.590833 ], [ 4.867189, 45.595466 ], [ 4.876687, 45.596695 ], [ 4.882762, 45.60179 ], [ 4.887708, 45.601581 ], [ 4.891364, 45.60155 ], [ 4.912981, 45.60698 ], [ 4.927079, 45.60572 ], [ 4.929941, 45.606467 ], [ 4.932731, 45.607347 ], [ 4.971512, 45.6127 ], [ 4.993871, 45.604875 ], [ 4.998331, 45.603282 ], [ 4.998873, 45.60372 ], [ 5.001745, 45.61396 ], [ 4.99231, 45.61573 ], [ 4.989447, 45.618573 ], [ 5.002707, 45.622463 ], [ 5.033762, 45.61412 ], [ 5.040266, 45.618563 ], [ 5.044126, 45.620547 ], [ 5.036484, 45.629522 ], [ 5.038303, 45.64337 ], [ 5.058066, 45.65334 ], [ 5.056684, 45.655575 ], [ 5.054025, 45.66005 ], [ 5.079511, 45.67613 ], [ 5.089164, 45.6772 ], [ 5.091109, 45.680388 ], [ 5.107072, 45.68822 ], [ 5.104281, 45.698294 ], [ 5.130745, 45.705183 ], [ 5.143568, 45.70131 ], [ 5.152058, 45.70408 ], [ 5.155332, 45.701662 ], [ 5.156647, 45.70506 ], [ 5.159244, 45.71525 ], [ 5.155242, 45.717167 ], [ 5.142938, 45.72221 ], [ 5.133749, 45.73339 ], [ 5.130361, 45.7356 ], [ 5.094527, 45.739453 ], [ 5.089879, 45.75263 ], [ 5.091591, 45.762848 ], [ 5.09354, 45.766036 ], [ 5.088802, 45.76702 ], [ 5.069344, 45.76641 ], [ 5.059605, 45.782074 ], [ 5.060075, 45.78534 ], [ 5.059069, 45.791857 ], [ 5.063732, 45.790871 ], [ 5.086697, 45.785242 ], [ 5.090735, 45.78716 ], [ 5.101067, 45.81338 ], [ 5.109059, 45.798321 ], [ 5.113621, 45.79941 ], [ 5.112341, 45.80601 ], [ 5.116455, 45.8112 ], [ 5.121251, 45.811622 ], [ 5.139582, 45.806 ], [ 5.144202, 45.80457 ], [ 5.157854, 45.803218 ], [ 5.172728, 45.79497 ], [ 5.177082, 45.79339 ], [ 5.184895, 45.78418 ], [ 5.18732, 45.781021 ], [ 5.188117, 45.77451 ], [ 5.195541, 45.771151 ], [ 5.200198, 45.77142 ], [ 5.224334, 45.76884 ], [ 5.236253, 45.7752 ], [ 5.240203, 45.77737 ], [ 5.251647, 45.7827 ], [ 5.255627, 45.78431 ], [ 5.263118, 45.787706 ], [ 5.266895, 45.78937 ], [ 5.278328, 45.803985 ], [ 5.288808, 45.81103 ], [ 5.290627, 45.814186 ], [ 5.291011, 45.821277 ], [ 5.299254, 45.83419 ], [ 5.302491, 45.848133 ], [ 5.314118, 45.85826 ], [ 5.330497, 45.864784 ], [ 5.334517, 45.8708 ], [ 5.335545, 45.87404 ], [ 5.338765, 45.878504 ], [ 5.340914, 45.880514 ], [ 5.354928, 45.88278 ], [ 5.374821, 45.87234 ], [ 5.37802, 45.86966 ], [ 5.381008, 45.86718 ], [ 5.404377, 45.85687 ], [ 5.414546, 45.85089 ], [ 5.416317, 45.848044 ], [ 5.417908, 45.841118 ], [ 5.430269, 45.83496 ], [ 5.433658, 45.8323 ], [ 5.435634, 45.829773 ], [ 5.436129, 45.826383 ], [ 5.422726, 45.82372 ], [ 5.422513, 45.80713 ], [ 5.435753, 45.79743 ], [ 5.439151, 45.795056 ], [ 5.444401, 45.789132 ], [ 5.447078, 45.786191 ], [ 5.450481, 45.784234 ], [ 5.460403, 45.778306 ], [ 5.483998, 45.75328 ], [ 5.494597, 45.7466 ], [ 5.498152, 45.744385 ], [ 5.514251, 45.733378 ], [ 5.517509, 45.73119 ], [ 5.524538, 45.718336 ], [ 5.527275, 45.71546 ], [ 5.545542, 45.71359 ], [ 5.549373, 45.711894 ], [ 5.552641, 45.7097 ], [ 5.556418, 45.70043 ], [ 5.570146, 45.69675 ], [ 5.575188, 45.69099 ], [ 5.574246, 45.687588 ], [ 5.565766, 45.68492 ], [ 5.556579, 45.696685 ], [ 5.5523, 45.6984 ], [ 5.545775, 45.69463 ], [ 5.547252, 45.68456 ], [ 5.550315, 45.68185 ], [ 5.551755, 45.673496 ], [ 5.555279, 45.671605 ], [ 5.563144, 45.674111 ], [ 5.567337, 45.673078 ], [ 5.579384, 45.66793 ], [ 5.578845, 45.66464 ], [ 5.581829, 45.661944 ], [ 5.601936, 45.652616 ], [ 5.604439, 45.63618 ], [ 5.614911, 45.625412 ], [ 5.621712, 45.61637 ], [ 5.623748, 45.61327 ], [ 5.622591, 45.609989 ], [ 5.624088, 45.60338 ], [ 5.637656, 45.589626 ], [ 5.640001, 45.58713 ], [ 5.645896, 45.58294 ], [ 5.646909, 45.57702 ], [ 5.671145, 45.561328 ], [ 5.67121, 45.55468 ], [ 5.675183, 45.55277 ], [ 5.673318, 45.549987 ], [ 5.681071, 45.54139 ], [ 5.676788, 45.54164 ], [ 5.673337, 45.54346 ], [ 5.67211, 45.54009 ], [ 5.677133, 45.53099 ], [ 5.691109, 45.527893 ], [ 5.69125, 45.52181 ], [ 5.695685, 45.519963 ], [ 5.701047, 45.51769 ], [ 5.712079, 45.500593 ], [ 5.713964, 45.497484 ], [ 5.719338, 45.48635 ], [ 5.719744, 45.483396 ], [ 5.733757, 45.474568 ], [ 5.736531, 45.47186 ], [ 5.732183, 45.452721 ], [ 5.739125, 45.440857 ], [ 5.739988, 45.43758 ], [ 5.753097, 45.43507 ], [ 5.757658, 45.434925 ], [ 5.760698, 45.43636 ], [ 5.763387, 45.43922 ], [ 5.782462, 45.441105 ], [ 5.796363, 45.43807 ], [ 5.811361, 45.425382 ], [ 5.829773, 45.421099 ], [ 5.834628, 45.4202 ], [ 5.835269, 45.42023 ], [ 5.854303, 45.41592 ], [ 5.859585, 45.409908 ], [ 5.879282, 45.40687 ], [ 5.890609, 45.399858 ], [ 5.891188, 45.39279 ], [ 5.891003, 45.389242 ], [ 5.894443, 45.38801 ], [ 5.91089, 45.394152 ], [ 5.923503, 45.41293 ], [ 5.906359, 45.409993 ], [ 5.903168, 45.4231 ], [ 5.904884, 45.43 ], [ 5.904455, 45.432308 ], [ 5.913134, 45.435534 ], [ 5.920589, 45.444413 ], [ 5.925239, 45.4649 ], [ 5.917251, 45.47324 ], [ 5.91537, 45.47645 ], [ 5.915827, 45.47661 ], [ 5.971015, 45.4914 ], [ 5.979432, 45.487803 ], [ 5.990198, 45.476244 ], [ 6.009027, 45.471992 ], [ 6.009951, 45.46518 ], [ 6.011361, 45.458827 ], [ 6.007789, 45.454111 ], [ 6.045157, 45.43952 ], [ 6.049236, 45.437807 ], [ 6.054414, 45.44074 ], [ 6.067078, 45.444052 ], [ 6.076276, 45.44325 ], [ 6.085559, 45.443059 ], [ 6.090016, 45.444008 ], [ 6.094287, 45.442322 ], [ 6.094585, 45.43549 ], [ 6.094509, 45.432052 ], [ 6.098749, 45.432349 ], [ 6.102561, 45.43368 ], [ 6.121315, 45.438284 ], [ 6.130143, 45.43503 ], [ 6.146025, 45.413288 ], [ 6.175458, 45.394101 ], [ 6.190269, 45.368 ], [ 6.175046, 45.35955 ], [ 6.170009, 45.359542 ], [ 6.176652, 45.35523 ], [ 6.190649, 45.3539 ], [ 6.194759, 45.352251 ], [ 6.191427, 45.33961 ], [ 6.187807, 45.333065 ], [ 6.185237, 45.33035 ], [ 6.184451, 45.31796 ], [ 6.179716, 45.317804 ], [ 6.15778, 45.312315 ], [ 6.152869, 45.303632 ], [ 6.141243, 45.298786 ], [ 6.142406, 45.295401 ], [ 6.130815, 45.284534 ], [ 6.139436, 45.25834 ], [ 6.125696, 45.24427 ], [ 6.12714, 45.2409 ], [ 6.128797, 45.230423 ], [ 6.139861, 45.2233 ], [ 6.13968, 45.213059 ], [ 6.159013, 45.202349 ], [ 6.161919, 45.188407 ], [ 6.160589, 45.181804 ], [ 6.146321, 45.16399 ], [ 6.14379, 45.154559 ], [ 6.16117, 45.151103 ], [ 6.164686, 45.15316 ], [ 6.169033, 45.154124 ], [ 6.17683, 45.1629 ], [ 6.180992, 45.16486 ], [ 6.207805, 45.156639 ], [ 6.222062, 45.14258 ], [ 6.249773, 45.149197 ], [ 6.26149, 45.14289 ], [ 6.265355, 45.13668 ], [ 6.260566, 45.12685 ], [ 6.258496, 45.12365 ], [ 6.245508, 45.119204 ], [ 6.229263, 45.106807 ], [ 6.243285, 45.06995 ], [ 6.22008, 45.065368 ], [ 6.218717, 45.062 ], [ 6.209563, 45.0423 ], [ 6.208686, 45.02834 ], [ 6.202925, 45.022933 ], [ 6.203138, 45.01245 ], [ 6.214373, 45.00568 ], [ 6.256173, 44.996219 ], [ 6.313282, 45.00386 ], [ 6.318199, 45.00387 ], [ 6.322681, 44.99762 ], [ 6.316204, 44.988209 ], [ 6.315992, 44.981186 ], [ 6.328214, 44.96635 ], [ 6.323254, 44.956575 ], [ 6.326279, 44.95001 ], [ 6.353422, 44.94256 ], [ 6.358172, 44.941575 ], [ 6.35491, 44.92778 ], [ 6.357945, 44.90729 ], [ 6.35466, 44.8971 ], [ 6.35855, 44.88732 ], [ 6.351997, 44.88203 ], [ 6.35047, 44.875131 ], [ 6.355364, 44.85482 ], [ 6.352053, 44.852842 ], [ 6.336319, 44.84837 ], [ 6.319428, 44.855139 ], [ 6.304353, 44.872792 ], [ 6.294563, 44.87398 ], [ 6.267095, 44.869092 ], [ 6.248866, 44.85256 ], [ 6.229098, 44.852 ], [ 6.196382, 44.85898 ], [ 6.192556, 44.85674 ], [ 6.169659, 44.852391 ], [ 6.165014, 44.853587 ], [ 6.157906, 44.85829 ], [ 6.130449, 44.862515 ], [ 6.113151, 44.84553 ], [ 6.097322, 44.83823 ], [ 6.093293, 44.83637 ], [ 6.056502, 44.815814 ], [ 6.052272, 44.81717 ], [ 6.030211, 44.8381 ], [ 6.016206, 44.83529 ], [ 6.003416, 44.820355 ], [ 5.979182, 44.818594 ], [ 5.975607, 44.81658 ], [ 5.949519, 44.80453 ], [ 5.951206, 44.80146 ], [ 5.977782, 44.79099 ], [ 5.979498, 44.78446 ], [ 5.980273, 44.781184 ], [ 5.976427, 44.779737 ], [ 5.953165, 44.771314 ], [ 5.952215, 44.768412 ], [ 5.951122, 44.759621 ], [ 5.946886, 44.76131 ], [ 5.937689, 44.763428 ], [ 5.919572, 44.75279 ], [ 5.902203, 44.75799 ], [ 5.893139, 44.75557 ], [ 5.885456, 44.74729 ], [ 5.880592, 44.746846 ], [ 5.867467, 44.751007 ], [ 5.847986, 44.751527 ], [ 5.841024, 44.756373 ], [ 5.827093, 44.75969 ], [ 5.826526, 44.756203 ], [ 5.829361, 44.74244 ], [ 5.81886, 44.73065 ], [ 5.811319, 44.71402 ], [ 5.80147, 44.706779 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "40", "CODE_DEPT": "39", "NOM_DEPT": "JURA", "CODE_CHF": "300", "NOM_CHF": "LONS-LE-SAUNIER", "X_CHF_LIEU": "8951", "Y_CHF_LIEU": "66225", "X_CENTROID": "9059", "Y_CENTROID": "66288", "CODE_REG": "43", "NOM_REGION": "FRANCHE-COMTE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.064008, 46.41623 ], [ 6.060575, 46.417509 ], [ 6.056984, 46.41619 ], [ 6.052807, 46.411409 ], [ 6.03102, 46.388101 ], [ 6.013384, 46.375997 ], [ 5.984117, 46.362656 ], [ 5.975139, 46.35029 ], [ 5.944004, 46.31221 ], [ 5.941531, 46.30926 ], [ 5.937319, 46.30977 ], [ 5.925908, 46.31377 ], [ 5.92187, 46.31194 ], [ 5.909198, 46.283945 ], [ 5.894627, 46.286614 ], [ 5.891985, 46.2836 ], [ 5.869187, 46.26498 ], [ 5.867694, 46.26822 ], [ 5.86085, 46.268771 ], [ 5.850659, 46.2617 ], [ 5.826262, 46.261715 ], [ 5.81828, 46.26287 ], [ 5.813575, 46.2636 ], [ 5.766045, 46.26833 ], [ 5.761568, 46.26715 ], [ 5.733675, 46.26377 ], [ 5.72966, 46.261928 ], [ 5.725181, 46.26069 ], [ 5.721538, 46.263177 ], [ 5.71596, 46.28037 ], [ 5.718978, 46.294287 ], [ 5.714553, 46.30807 ], [ 5.684582, 46.310934 ], [ 5.683316, 46.315874 ], [ 5.68023, 46.318433 ], [ 5.668481, 46.3239 ], [ 5.645285, 46.324791 ], [ 5.649798, 46.334192 ], [ 5.649207, 46.3373 ], [ 5.646092, 46.34281 ], [ 5.637458, 46.336442 ], [ 5.635057, 46.33331 ], [ 5.612518, 46.32656 ], [ 5.605673, 46.31364 ], [ 5.604641, 46.30944 ], [ 5.60215, 46.30681 ], [ 5.597891, 46.2979 ], [ 5.587251, 46.292509 ], [ 5.582606, 46.29324 ], [ 5.564674, 46.29277 ], [ 5.561577, 46.286576 ], [ 5.559458, 46.283515 ], [ 5.539301, 46.268903 ], [ 5.51137, 46.26436 ], [ 5.507498, 46.265481 ], [ 5.502609, 46.270211 ], [ 5.499595, 46.268205 ], [ 5.475362, 46.265221 ], [ 5.471308, 46.26721 ], [ 5.457672, 46.27685 ], [ 5.459001, 46.290531 ], [ 5.466531, 46.29324 ], [ 5.473218, 46.30893 ], [ 5.475305, 46.315385 ], [ 5.471469, 46.31653 ], [ 5.46518, 46.323542 ], [ 5.460892, 46.32247 ], [ 5.454476, 46.317998 ], [ 5.437146, 46.315127 ], [ 5.435942, 46.318468 ], [ 5.423534, 46.34773 ], [ 5.41024, 46.309105 ], [ 5.406583, 46.30991 ], [ 5.404054, 46.31477 ], [ 5.404041, 46.31567 ], [ 5.404352, 46.31918 ], [ 5.401686, 46.332799 ], [ 5.402729, 46.33612 ], [ 5.373462, 46.35224 ], [ 5.374637, 46.355329 ], [ 5.375761, 46.35843 ], [ 5.376474, 46.361669 ], [ 5.363472, 46.37002 ], [ 5.365075, 46.37308 ], [ 5.375164, 46.37971 ], [ 5.377881, 46.382324 ], [ 5.370296, 46.38603 ], [ 5.367105, 46.388692 ], [ 5.36352, 46.390388 ], [ 5.348116, 46.39942 ], [ 5.334092, 46.39972 ], [ 5.309146, 46.41026 ], [ 5.298806, 46.41553 ], [ 5.307817, 46.41486 ], [ 5.312333, 46.41602 ], [ 5.308145, 46.42047 ], [ 5.321727, 46.42895 ], [ 5.310561, 46.44677 ], [ 5.313215, 46.4525 ], [ 5.321799, 46.453601 ], [ 5.323147, 46.45648 ], [ 5.323351, 46.46251 ], [ 5.37379, 46.460451 ], [ 5.376345, 46.463127 ], [ 5.385312, 46.470544 ], [ 5.39358, 46.467596 ], [ 5.398099, 46.466601 ], [ 5.413803, 46.472045 ], [ 5.41843, 46.477298 ], [ 5.420044, 46.48018 ], [ 5.419959, 46.4809 ], [ 5.421173, 46.500302 ], [ 5.407571, 46.50041 ], [ 5.395657, 46.50569 ], [ 5.392428, 46.50821 ], [ 5.382494, 46.51557 ], [ 5.362852, 46.51791 ], [ 5.359459, 46.52364 ], [ 5.360073, 46.52424 ], [ 5.361582, 46.54823 ], [ 5.362579, 46.551642 ], [ 5.357651, 46.560563 ], [ 5.364888, 46.564513 ], [ 5.36788, 46.56695 ], [ 5.364614, 46.57504 ], [ 5.362124, 46.57727 ], [ 5.370666, 46.58053 ], [ 5.375536, 46.58016 ], [ 5.400427, 46.580232 ], [ 5.404691, 46.58211 ], [ 5.411943, 46.59863 ], [ 5.400092, 46.60937 ], [ 5.398593, 46.612719 ], [ 5.408583, 46.614554 ], [ 5.41379, 46.61464 ], [ 5.429678, 46.625847 ], [ 5.43349, 46.627757 ], [ 5.440623, 46.634902 ], [ 5.440601, 46.63791 ], [ 5.415008, 46.654146 ], [ 5.422912, 46.65831 ], [ 5.427103, 46.660161 ], [ 5.424814, 46.661344 ], [ 5.424647, 46.66464 ], [ 5.420175, 46.670009 ], [ 5.42209, 46.673032 ], [ 5.398501, 46.68268 ], [ 5.395359, 46.68505 ], [ 5.406696, 46.6954 ], [ 5.408349, 46.69844 ], [ 5.406642, 46.703931 ], [ 5.395012, 46.712507 ], [ 5.395908, 46.7156 ], [ 5.390789, 46.72636 ], [ 5.393641, 46.72863 ], [ 5.365725, 46.73107 ], [ 5.362002, 46.733117 ], [ 5.36676, 46.752396 ], [ 5.371518, 46.75152 ], [ 5.390112, 46.7672 ], [ 5.390248, 46.770592 ], [ 5.383425, 46.77553 ], [ 5.37375, 46.77707 ], [ 5.370807, 46.78352 ], [ 5.355051, 46.79094 ], [ 5.346456, 46.790222 ], [ 5.341506, 46.790692 ], [ 5.332496, 46.797713 ], [ 5.331173, 46.81027 ], [ 5.328584, 46.812916 ], [ 5.333584, 46.817814 ], [ 5.335836, 46.820732 ], [ 5.344929, 46.82101 ], [ 5.351119, 46.816088 ], [ 5.371185, 46.825152 ], [ 5.375268, 46.82699 ], [ 5.378666, 46.827574 ], [ 5.382143, 46.82784 ], [ 5.386981, 46.826825 ], [ 5.405169, 46.8324 ], [ 5.410217, 46.83258 ], [ 5.413464, 46.828263 ], [ 5.416653, 46.826782 ], [ 5.463195, 46.82858 ], [ 5.459748, 46.83418 ], [ 5.464207, 46.84017 ], [ 5.457796, 46.84527 ], [ 5.459286, 46.85524 ], [ 5.454209, 46.85592 ], [ 5.445188, 46.85941 ], [ 5.442352, 46.854479 ], [ 5.431176, 46.8606 ], [ 5.428179, 46.860238 ], [ 5.425168, 46.85986 ], [ 5.420118, 46.860579 ], [ 5.404005, 46.86888 ], [ 5.400587, 46.88273 ], [ 5.403681, 46.889389 ], [ 5.392627, 46.891384 ], [ 5.391603, 46.894072 ], [ 5.387129, 46.893039 ], [ 5.382801, 46.891741 ], [ 5.377783, 46.88999 ], [ 5.360337, 46.88434 ], [ 5.35077, 46.892129 ], [ 5.341274, 46.8901 ], [ 5.335521, 46.884666 ], [ 5.328758, 46.889316 ], [ 5.328806, 46.895927 ], [ 5.313989, 46.90866 ], [ 5.312069, 46.911703 ], [ 5.31075, 46.91807 ], [ 5.310031, 46.92125 ], [ 5.308512, 46.926925 ], [ 5.307367, 46.93646 ], [ 5.292306, 46.9407 ], [ 5.287444, 46.94079 ], [ 5.275311, 46.9353 ], [ 5.270919, 46.92936 ], [ 5.262014, 46.927387 ], [ 5.26267, 46.930815 ], [ 5.26267, 46.937733 ], [ 5.251317, 46.94458 ], [ 5.26227, 46.950171 ], [ 5.263045, 46.953605 ], [ 5.255236, 46.979888 ], [ 5.267767, 46.988388 ], [ 5.271966, 46.989342 ], [ 5.27507, 46.99803 ], [ 5.279146, 46.99915 ], [ 5.298243, 47.00179 ], [ 5.303971, 47.01045 ], [ 5.313647, 47.011302 ], [ 5.31824, 47.01246 ], [ 5.317198, 47.015806 ], [ 5.279764, 47.025333 ], [ 5.275327, 47.02693 ], [ 5.275218, 47.027161 ], [ 5.283484, 47.046318 ], [ 5.295851, 47.05608 ], [ 5.29907, 47.05864 ], [ 5.301895, 47.060904 ], [ 5.310446, 47.06051 ], [ 5.323975, 47.07379 ], [ 5.332533, 47.076593 ], [ 5.341181, 47.07717 ], [ 5.345786, 47.076649 ], [ 5.357909, 47.0786 ], [ 5.35988, 47.08114 ], [ 5.363344, 47.07834 ], [ 5.377627, 47.079322 ], [ 5.390537, 47.086784 ], [ 5.391341, 47.08976 ], [ 5.39781, 47.09465 ], [ 5.398163, 47.10465 ], [ 5.400588, 47.10756 ], [ 5.411215, 47.116853 ], [ 5.412114, 47.11986 ], [ 5.409191, 47.12502 ], [ 5.414128, 47.129753 ], [ 5.414566, 47.13276 ], [ 5.424893, 47.13698 ], [ 5.428918, 47.13696 ], [ 5.438985, 47.14299 ], [ 5.439112, 47.148991 ], [ 5.438298, 47.152017 ], [ 5.445085, 47.15842 ], [ 5.448641, 47.159662 ], [ 5.450873, 47.162857 ], [ 5.45227, 47.166268 ], [ 5.458916, 47.18193 ], [ 5.456227, 47.191629 ], [ 5.452548, 47.19381 ], [ 5.446891, 47.200762 ], [ 5.449262, 47.20322 ], [ 5.470255, 47.2111 ], [ 5.474206, 47.21308 ], [ 5.479136, 47.21851 ], [ 5.475309, 47.231305 ], [ 5.48011, 47.23705 ], [ 5.484335, 47.23806 ], [ 5.480799, 47.25744 ], [ 5.483133, 47.26041 ], [ 5.487558, 47.26656 ], [ 5.488004, 47.280175 ], [ 5.488275, 47.282601 ], [ 5.488559, 47.28502 ], [ 5.493047, 47.28818 ], [ 5.501046, 47.28513 ], [ 5.505365, 47.284071 ], [ 5.508605, 47.29337 ], [ 5.516953, 47.30115 ], [ 5.518539, 47.304187 ], [ 5.522116, 47.305352 ], [ 5.533517, 47.28627 ], [ 5.55606, 47.279047 ], [ 5.555199, 47.269005 ], [ 5.568857, 47.26959 ], [ 5.56976, 47.263576 ], [ 5.573459, 47.261512 ], [ 5.573451, 47.25555 ], [ 5.580744, 47.25286 ], [ 5.583791, 47.25515 ], [ 5.60132, 47.26061 ], [ 5.610811, 47.25906 ], [ 5.62332, 47.25403 ], [ 5.637434, 47.25615 ], [ 5.642305, 47.25619 ], [ 5.646765, 47.258898 ], [ 5.652677, 47.262339 ], [ 5.653365, 47.265008 ], [ 5.66334, 47.26604 ], [ 5.672097, 47.27422 ], [ 5.676645, 47.275723 ], [ 5.683462, 47.274152 ], [ 5.684065, 47.271642 ], [ 5.691668, 47.272295 ], [ 5.697562, 47.267915 ], [ 5.698726, 47.265006 ], [ 5.701682, 47.262208 ], [ 5.718946, 47.24147 ], [ 5.718389, 47.23804 ], [ 5.714028, 47.23601 ], [ 5.722763, 47.225421 ], [ 5.720717, 47.22262 ], [ 5.7234, 47.21842 ], [ 5.727009, 47.21763 ], [ 5.739038, 47.204355 ], [ 5.737666, 47.201289 ], [ 5.755693, 47.20538 ], [ 5.75913, 47.19971 ], [ 5.757191, 47.1967 ], [ 5.761384, 47.194186 ], [ 5.774928, 47.193366 ], [ 5.781091, 47.189885 ], [ 5.785197, 47.18853 ], [ 5.787059, 47.17652 ], [ 5.7851, 47.170565 ], [ 5.793167, 47.17457 ], [ 5.80754, 47.17125 ], [ 5.811467, 47.169054 ], [ 5.810483, 47.159051 ], [ 5.814705, 47.15316 ], [ 5.813663, 47.14989 ], [ 5.823646, 47.142587 ], [ 5.828074, 47.14118 ], [ 5.816597, 47.13479 ], [ 5.805567, 47.11947 ], [ 5.804744, 47.11608 ], [ 5.801869, 47.11053 ], [ 5.79159, 47.10518 ], [ 5.7902, 47.102292 ], [ 5.787552, 47.09599 ], [ 5.778052, 47.09749 ], [ 5.768989, 47.09004 ], [ 5.776818, 47.07789 ], [ 5.778609, 47.074771 ], [ 5.782717, 47.058051 ], [ 5.784717, 47.05491 ], [ 5.762794, 47.04611 ], [ 5.747797, 47.055454 ], [ 5.742758, 47.05591 ], [ 5.737384, 47.0508 ], [ 5.750931, 47.04067 ], [ 5.751268, 47.03719 ], [ 5.749742, 47.033877 ], [ 5.741657, 47.02983 ], [ 5.746332, 47.01996 ], [ 5.749513, 47.017243 ], [ 5.760567, 47.01367 ], [ 5.764418, 47.012482 ], [ 5.769926, 47.01766 ], [ 5.788092, 47.02074 ], [ 5.791866, 47.02264 ], [ 5.799216, 47.03178 ], [ 5.797116, 47.04209 ], [ 5.800341, 47.04481 ], [ 5.805278, 47.04573 ], [ 5.810145, 47.04681 ], [ 5.81492, 47.045883 ], [ 5.817225, 47.03928 ], [ 5.815687, 47.02598 ], [ 5.816025, 47.02259 ], [ 5.817347, 47.016634 ], [ 5.835588, 47.01331 ], [ 5.839449, 47.01535 ], [ 5.840657, 47.00851 ], [ 5.844003, 47.01002 ], [ 5.84693, 47.005845 ], [ 5.846944, 47.0031 ], [ 5.858321, 47.00829 ], [ 5.876931, 47.005813 ], [ 5.881568, 47.00509 ], [ 5.884481, 46.99848 ], [ 5.893725, 46.99652 ], [ 5.907692, 46.9996 ], [ 5.914876, 47.008023 ], [ 5.917343, 47.014438 ], [ 5.921548, 47.01448 ], [ 5.9137, 46.99063 ], [ 5.915004, 46.98722 ], [ 5.924782, 46.981068 ], [ 5.93888, 46.983709 ], [ 5.945111, 46.98885 ], [ 5.948985, 46.98117 ], [ 5.953536, 46.981101 ], [ 5.968591, 46.980282 ], [ 5.968915, 46.97684 ], [ 5.968797, 46.976123 ], [ 5.973172, 46.97596 ], [ 5.975184, 46.973309 ], [ 5.977195, 46.965608 ], [ 5.979789, 46.963478 ], [ 5.959531, 46.95093 ], [ 5.956543, 46.948498 ], [ 5.965485, 46.947448 ], [ 5.993638, 46.935755 ], [ 5.997222, 46.9335 ], [ 5.994455, 46.93104 ], [ 5.983877, 46.92098 ], [ 5.981702, 46.91801 ], [ 5.98195, 46.90821 ], [ 5.999368, 46.89679 ], [ 6.008435, 46.89556 ], [ 6.010313, 46.89245 ], [ 6.009696, 46.873095 ], [ 6.018207, 46.86974 ], [ 6.030152, 46.87447 ], [ 6.032267, 46.871421 ], [ 6.030521, 46.86862 ], [ 6.028808, 46.860321 ], [ 6.02468, 46.85649 ], [ 6.027407, 46.85172 ], [ 6.045962, 46.848848 ], [ 6.047095, 46.845638 ], [ 6.067857, 46.85862 ], [ 6.072026, 46.856851 ], [ 6.083771, 46.851355 ], [ 6.088554, 46.84264 ], [ 6.093277, 46.84232 ], [ 6.097614, 46.84422 ], [ 6.102703, 46.844809 ], [ 6.105555, 46.8453 ], [ 6.11332, 46.83622 ], [ 6.148065, 46.82156 ], [ 6.15224, 46.81953 ], [ 6.148831, 46.81599 ], [ 6.153656, 46.815219 ], [ 6.163781, 46.80384 ], [ 6.182748, 46.794304 ], [ 6.195654, 46.77997 ], [ 6.201136, 46.77529 ], [ 6.20333, 46.772681 ], [ 6.204198, 46.76339 ], [ 6.183659, 46.75463 ], [ 6.181715, 46.74809 ], [ 6.180198, 46.741442 ], [ 6.16818, 46.7361 ], [ 6.164171, 46.73432 ], [ 6.159724, 46.732906 ], [ 6.155252, 46.731515 ], [ 6.152262, 46.72945 ], [ 6.137485, 46.72386 ], [ 6.131107, 46.71962 ], [ 6.130623, 46.71941 ], [ 6.127108, 46.71707 ], [ 6.11296, 46.70774 ], [ 6.109355, 46.70701 ], [ 6.103598, 46.70369 ], [ 6.099766, 46.701272 ], [ 6.086126, 46.69611 ], [ 6.071211, 46.68757 ], [ 6.103265, 46.65249 ], [ 6.099197, 46.64334 ], [ 6.085902, 46.638469 ], [ 6.081737, 46.63654 ], [ 6.062602, 46.62709 ], [ 6.059153, 46.62485 ], [ 6.058497, 46.61898 ], [ 6.062491, 46.613515 ], [ 6.053761, 46.61291 ], [ 6.048567, 46.60772 ], [ 6.083865, 46.585034 ], [ 6.087083, 46.58255 ], [ 6.127186, 46.55582 ], [ 6.131093, 46.55357 ], [ 6.134607, 46.555612 ], [ 6.138109, 46.55766 ], [ 6.155487, 46.54556 ], [ 6.146652, 46.53031 ], [ 6.137178, 46.529723 ], [ 6.124071, 46.51952 ], [ 6.12083, 46.516942 ], [ 6.097317, 46.482454 ], [ 6.073784, 46.46441 ], [ 6.074869, 46.454278 ], [ 6.084833, 46.446494 ], [ 6.086247, 46.443149 ], [ 6.066153, 46.41939 ], [ 6.064008, 46.41623 ] ] ], [ [ [ 5.444408, 46.84535 ], [ 5.443001, 46.84588 ], [ 5.440782, 46.846162 ], [ 5.442092, 46.84842 ], [ 5.440846, 46.848458 ], [ 5.43983, 46.84893 ], [ 5.440312, 46.850586 ], [ 5.441095, 46.851651 ], [ 5.441712, 46.85194 ], [ 5.441975, 46.85194 ], [ 5.441991, 46.85113 ], [ 5.443689, 46.85095 ], [ 5.442904, 46.849838 ], [ 5.446155, 46.84943 ], [ 5.447391, 46.848013 ], [ 5.448702, 46.847976 ], [ 5.447832, 46.84673 ], [ 5.448476, 46.84645 ], [ 5.447838, 46.8457 ], [ 5.446746, 46.84595 ], [ 5.445922, 46.84544 ], [ 5.445157, 46.845637 ], [ 5.444408, 46.84535 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "41", "CODE_DEPT": "40", "NOM_DEPT": "LANDES", "CODE_CHF": "192", "NOM_CHF": "MONT-DE-MARSAN", "X_CHF_LIEU": "4187", "Y_CHF_LIEU": "63163", "X_CENTROID": "3964", "Y_CENTROID": "63257", "CODE_REG": "72", "NOM_REGION": "AQUITAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.242837, 43.58498 ], [ -0.247068, 43.58269 ], [ -0.251662, 43.58266 ], [ -0.25677, 43.5882 ], [ -0.283325, 43.58416 ], [ -0.287162, 43.5746 ], [ -0.294296, 43.567911 ], [ -0.301204, 43.5713 ], [ -0.302204, 43.565653 ], [ -0.303828, 43.562443 ], [ -0.310386, 43.558065 ], [ -0.336562, 43.55122 ], [ -0.348836, 43.556173 ], [ -0.351868, 43.55869 ], [ -0.353597, 43.56179 ], [ -0.367723, 43.56277 ], [ -0.37489, 43.567344 ], [ -0.389034, 43.56818 ], [ -0.397269, 43.565646 ], [ -0.400679, 43.563215 ], [ -0.40333, 43.56573 ], [ -0.406042, 43.56823 ], [ -0.433971, 43.554557 ], [ -0.437718, 43.552817 ], [ -0.446453, 43.55207 ], [ -0.449713, 43.54987 ], [ -0.459394, 43.561143 ], [ -0.459281, 43.56749 ], [ -0.45139, 43.56602 ], [ -0.431717, 43.583547 ], [ -0.431779, 43.586436 ], [ -0.440974, 43.590602 ], [ -0.441407, 43.59348 ], [ -0.449232, 43.59627 ], [ -0.461857, 43.5876 ], [ -0.465249, 43.589605 ], [ -0.504696, 43.57187 ], [ -0.507656, 43.56923 ], [ -0.507312, 43.568467 ], [ -0.521267, 43.559505 ], [ -0.525431, 43.55775 ], [ -0.548448, 43.54483 ], [ -0.552764, 43.543158 ], [ -0.557174, 43.5428 ], [ -0.558901, 43.54608 ], [ -0.561737, 43.55268 ], [ -0.567072, 43.55822 ], [ -0.600039, 43.538654 ], [ -0.614366, 43.537718 ], [ -0.615241, 43.54119 ], [ -0.614894, 43.544726 ], [ -0.61932, 43.5456 ], [ -0.63128, 43.550474 ], [ -0.633751, 43.5541 ], [ -0.638251, 43.553393 ], [ -0.655611, 43.556845 ], [ -0.657889, 43.55975 ], [ -0.641047, 43.57481 ], [ -0.645501, 43.574532 ], [ -0.661363, 43.568774 ], [ -0.688861, 43.55697 ], [ -0.697133, 43.55965 ], [ -0.700472, 43.562061 ], [ -0.707505, 43.557804 ], [ -0.709861, 43.547888 ], [ -0.70821, 43.541306 ], [ -0.712614, 43.54201 ], [ -0.721203, 43.541383 ], [ -0.728545, 43.54517 ], [ -0.73274, 43.552949 ], [ -0.734087, 43.55575 ], [ -0.738083, 43.55778 ], [ -0.770305, 43.579168 ], [ -0.774672, 43.57832 ], [ -0.782303, 43.57547 ], [ -0.781756, 43.565861 ], [ -0.794167, 43.56396 ], [ -0.795699, 43.56147 ], [ -0.803351, 43.55619 ], [ -0.820938, 43.561192 ], [ -0.837584, 43.55468 ], [ -0.842315, 43.554113 ], [ -0.842813, 43.543421 ], [ -0.860091, 43.542555 ], [ -0.863964, 43.544165 ], [ -0.867742, 43.544733 ], [ -0.871468, 43.545447 ], [ -0.893691, 43.550273 ], [ -0.907683, 43.54968 ], [ -0.911988, 43.54833 ], [ -0.919177, 43.54406 ], [ -0.923683, 43.53462 ], [ -0.928007, 43.53339 ], [ -0.935661, 43.53721 ], [ -0.939764, 43.538538 ], [ -0.949635, 43.532251 ], [ -0.962172, 43.535226 ], [ -0.9882, 43.5402 ], [ -1.001151, 43.536966 ], [ -0.989906, 43.531605 ], [ -0.989143, 43.51831 ], [ -0.992759, 43.512285 ], [ -0.993771, 43.50904 ], [ -0.992383, 43.504029 ], [ -1.017977, 43.50597 ], [ -1.023681, 43.501709 ], [ -1.026914, 43.50404 ], [ -1.028963, 43.50714 ], [ -1.04607, 43.51156 ], [ -1.068997, 43.50845 ], [ -1.077715, 43.521231 ], [ -1.081084, 43.523 ], [ -1.083223, 43.516519 ], [ -1.089581, 43.511928 ], [ -1.10733, 43.51432 ], [ -1.11628, 43.50343 ], [ -1.128596, 43.500349 ], [ -1.13298, 43.499705 ], [ -1.137624, 43.499401 ], [ -1.140709, 43.489652 ], [ -1.145124, 43.48859 ], [ -1.14851, 43.490922 ], [ -1.153755, 43.496207 ], [ -1.165674, 43.491272 ], [ -1.169662, 43.493029 ], [ -1.169836, 43.497121 ], [ -1.16492, 43.50836 ], [ -1.16017, 43.50857 ], [ -1.137291, 43.509721 ], [ -1.130839, 43.51416 ], [ -1.133883, 43.52032 ], [ -1.154083, 43.529314 ], [ -1.159516, 43.538665 ], [ -1.169708, 43.54531 ], [ -1.174184, 43.54605 ], [ -1.191399, 43.546862 ], [ -1.195616, 43.54609 ], [ -1.198334, 43.544125 ], [ -1.203884, 43.540261 ], [ -1.207378, 43.5379 ], [ -1.217605, 43.53062 ], [ -1.250529, 43.51684 ], [ -1.253742, 43.51575 ], [ -1.259852, 43.51317 ], [ -1.263935, 43.51147 ], [ -1.291381, 43.49839 ], [ -1.322411, 43.504947 ], [ -1.334037, 43.50367 ], [ -1.334926, 43.50315 ], [ -1.339491, 43.50245 ], [ -1.36965, 43.495024 ], [ -1.409764, 43.49679 ], [ -1.414216, 43.497209 ], [ -1.417658, 43.496907 ], [ -1.430715, 43.51421 ], [ -1.461756, 43.518331 ], [ -1.465627, 43.516523 ], [ -1.463336, 43.533081 ], [ -1.47943, 43.53916 ], [ -1.497632, 43.528942 ], [ -1.501414, 43.52695 ], [ -1.520215, 43.52898 ], [ -1.524867, 43.529701 ], [ -1.495584, 43.56762 ], [ -1.493309, 43.57054 ], [ -1.484595, 43.58322 ], [ -1.482502, 43.58642 ], [ -1.468952, 43.60727 ], [ -1.466913, 43.61022 ], [ -1.446685, 43.647486 ], [ -1.445676, 43.654638 ], [ -1.445591, 43.658021 ], [ -1.440562, 43.680253 ], [ -1.440529, 43.683499 ], [ -1.428448, 43.737958 ], [ -1.427606, 43.741363 ], [ -1.416042, 43.78189 ], [ -1.414567, 43.785181 ], [ -1.412666, 43.79472 ], [ -1.41179, 43.79788 ], [ -1.400856, 43.832819 ], [ -1.399856, 43.83633 ], [ -1.390421, 43.856449 ], [ -1.383673, 43.884382 ], [ -1.352736, 43.997971 ], [ -1.351446, 44.001358 ], [ -1.327377, 44.086222 ], [ -1.325915, 44.089524 ], [ -1.317321, 44.125559 ], [ -1.316381, 44.12884 ], [ -1.287863, 44.26717 ], [ -1.287089, 44.27072 ], [ -1.280696, 44.30434 ], [ -1.280059, 44.307711 ], [ -1.275291, 44.332354 ], [ -1.274754, 44.33589 ], [ -1.254491, 44.46405 ], [ -1.25389, 44.467604 ], [ -1.204313, 44.478576 ], [ -1.199818, 44.47959 ], [ -1.111609, 44.501446 ], [ -1.106985, 44.50264 ], [ -1.087011, 44.529124 ], [ -1.085166, 44.53219 ], [ -1.080766, 44.53059 ], [ -1.030022, 44.50858 ], [ -1.011142, 44.510376 ], [ -0.996354, 44.51144 ], [ -0.988434, 44.50901 ], [ -0.981033, 44.48479 ], [ -0.990686, 44.46477 ], [ -0.992453, 44.461461 ], [ -1.007738, 44.436515 ], [ -1.025627, 44.425028 ], [ -1.029159, 44.4227 ], [ -1.024305, 44.423247 ], [ -0.970882, 44.429234 ], [ -0.948141, 44.435901 ], [ -0.944148, 44.43709 ], [ -0.919623, 44.44316 ], [ -0.909148, 44.43614 ], [ -0.840281, 44.41841 ], [ -0.81122, 44.420835 ], [ -0.794567, 44.42809 ], [ -0.784941, 44.42914 ], [ -0.780281, 44.428111 ], [ -0.774077, 44.440102 ], [ -0.726968, 44.44754 ], [ -0.703447, 44.443582 ], [ -0.698762, 44.44272 ], [ -0.694507, 44.441322 ], [ -0.681853, 44.4452 ], [ -0.682781, 44.45074 ], [ -0.677006, 44.456354 ], [ -0.643947, 44.450405 ], [ -0.639557, 44.448856 ], [ -0.63573, 44.44685 ], [ -0.628064, 44.44285 ], [ -0.627318, 44.429273 ], [ -0.625643, 44.408052 ], [ -0.637047, 44.40183 ], [ -0.641469, 44.40023 ], [ -0.607275, 44.39225 ], [ -0.603107, 44.390941 ], [ -0.570474, 44.38224 ], [ -0.560007, 44.37463 ], [ -0.532663, 44.366067 ], [ -0.528103, 44.36465 ], [ -0.519075, 44.342282 ], [ -0.517635, 44.339111 ], [ -0.479411, 44.325091 ], [ -0.43661, 44.3228 ], [ -0.43184, 44.322577 ], [ -0.429625, 44.301545 ], [ -0.402291, 44.28719 ], [ -0.38792, 44.287649 ], [ -0.383388, 44.28632 ], [ -0.384245, 44.28282 ], [ -0.396314, 44.237468 ], [ -0.389617, 44.209485 ], [ -0.385436, 44.208893 ], [ -0.372914, 44.207053 ], [ -0.368231, 44.20621 ], [ -0.310572, 44.20306 ], [ -0.305993, 44.20185 ], [ -0.273621, 44.194017 ], [ -0.264191, 44.195748 ], [ -0.259675, 44.19691 ], [ -0.223447, 44.205898 ], [ -0.223807, 44.209365 ], [ -0.228163, 44.25448 ], [ -0.226004, 44.264784 ], [ -0.206465, 44.264203 ], [ -0.19874, 44.26838 ], [ -0.190181, 44.268894 ], [ -0.176352, 44.25882 ], [ -0.166844, 44.24253 ], [ -0.144544, 44.22862 ], [ -0.140689, 44.22641 ], [ -0.129643, 44.20261 ], [ -0.129202, 44.156 ], [ -0.129155, 44.15241 ], [ -0.114737, 44.15141 ], [ -0.106561, 44.154944 ], [ -0.08775, 44.155989 ], [ -0.064434, 44.151914 ], [ -0.059859, 44.150826 ], [ -0.055166, 44.1508 ], [ -0.00379, 44.149918 ], [ -0.003539, 44.1499 ], [ 0.032018, 44.13352 ], [ 0.034594, 44.130652 ], [ 0.130969, 44.124482 ], [ 0.135797, 44.124194 ], [ 0.131824, 44.11919 ], [ 0.135858, 44.113559 ], [ 0.136803, 44.11043 ], [ 0.124151, 44.10502 ], [ 0.100821, 44.08677 ], [ 0.102105, 44.08339 ], [ 0.094951, 44.06836 ], [ 0.087468, 44.063972 ], [ 0.076223, 44.030736 ], [ 0.0698, 44.02578 ], [ 0.060223, 44.02488 ], [ 0.061593, 44.02154 ], [ 0.062234, 44.018077 ], [ 0.061182, 44.014743 ], [ 0.062955, 44.001183 ], [ 0.076046, 43.98314 ], [ 0.069724, 43.97655 ], [ 0.067536, 43.974242 ], [ 0.067104, 43.967359 ], [ 0.055391, 43.95707 ], [ 0.06974, 43.935252 ], [ 0.074765, 43.918186 ], [ 0.075082, 43.914682 ], [ 0.069083, 43.905345 ], [ 0.058618, 43.898381 ], [ 0.036927, 43.90213 ], [ 0.033178, 43.89998 ], [ 0.02921, 43.90203 ], [ 0.015984, 43.912245 ], [ -0.019936, 43.92927 ], [ 0.005383, 43.94523 ], [ 0.005561, 43.955612 ], [ -0.000961, 43.96061 ], [ -0.004915, 43.96253 ], [ -0.036169, 43.98374 ], [ -0.046915, 43.96123 ], [ -0.060463, 43.9588 ], [ -0.073635, 43.94456 ], [ -0.094468, 43.94579 ], [ -0.097864, 43.943353 ], [ -0.095423, 43.931002 ], [ -0.098748, 43.92889 ], [ -0.102561, 43.927278 ], [ -0.106746, 43.928834 ], [ -0.125325, 43.9436 ], [ -0.135133, 43.9363 ], [ -0.153158, 43.93882 ], [ -0.155915, 43.93233 ], [ -0.163922, 43.928606 ], [ -0.179029, 43.93649 ], [ -0.19871, 43.91782 ], [ -0.200575, 43.91464 ], [ -0.203483, 43.91339 ], [ -0.209669, 43.911734 ], [ -0.21685, 43.90762 ], [ -0.227893, 43.91079 ], [ -0.232826, 43.90154 ], [ -0.239879, 43.89741 ], [ -0.231716, 43.890962 ], [ -0.219239, 43.89122 ], [ -0.215616, 43.88927 ], [ -0.20535, 43.88498 ], [ -0.201257, 43.88527 ], [ -0.194002, 43.88158 ], [ -0.187532, 43.86985 ], [ -0.185723, 43.866889 ], [ -0.187112, 43.863894 ], [ -0.195834, 43.8707 ], [ -0.204298, 43.860257 ], [ -0.208908, 43.85767 ], [ -0.194496, 43.843009 ], [ -0.19342, 43.84001 ], [ -0.189844, 43.833697 ], [ -0.196344, 43.82912 ], [ -0.194708, 43.809211 ], [ -0.212633, 43.80928 ], [ -0.216, 43.81254 ], [ -0.226956, 43.807666 ], [ -0.218647, 43.79659 ], [ -0.221604, 43.79037 ], [ -0.222128, 43.78709 ], [ -0.214828, 43.782627 ], [ -0.215682, 43.77241 ], [ -0.207784, 43.759662 ], [ -0.209199, 43.756315 ], [ -0.213934, 43.755662 ], [ -0.218864, 43.750329 ], [ -0.196408, 43.746866 ], [ -0.195896, 43.740162 ], [ -0.194143, 43.73702 ], [ -0.218276, 43.72088 ], [ -0.222236, 43.71887 ], [ -0.226314, 43.71698 ], [ -0.247381, 43.70924 ], [ -0.241216, 43.692676 ], [ -0.254545, 43.682624 ], [ -0.256714, 43.6758 ], [ -0.24933, 43.671847 ], [ -0.23973, 43.671242 ], [ -0.243276, 43.663958 ], [ -0.246276, 43.654944 ], [ -0.259198, 43.653162 ], [ -0.261803, 43.64795 ], [ -0.263359, 43.64499 ], [ -0.263362, 43.638727 ], [ -0.266968, 43.63694 ], [ -0.282112, 43.643079 ], [ -0.280375, 43.627255 ], [ -0.281223, 43.624095 ], [ -0.280401, 43.62078 ], [ -0.274673, 43.61599 ], [ -0.247204, 43.61596 ], [ -0.248946, 43.60578 ], [ -0.254238, 43.600124 ], [ -0.254007, 43.596709 ], [ -0.249482, 43.596664 ], [ -0.242837, 43.58498 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "42", "CODE_DEPT": "41", "NOM_DEPT": "LOIR-ET-CHER", "CODE_CHF": "018", "NOM_CHF": "BLOIS", "X_CHF_LIEU": "5742", "Y_CHF_LIEU": "67227", "X_CENTROID": "5820", "Y_CENTROID": "67251", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.326666, 47.18622 ], [ 1.323763, 47.19121 ], [ 1.322029, 47.193875 ], [ 1.30451, 47.21697 ], [ 1.302775, 47.22001 ], [ 1.301678, 47.22337 ], [ 1.287979, 47.24099 ], [ 1.275068, 47.256012 ], [ 1.264976, 47.25724 ], [ 1.242151, 47.27573 ], [ 1.243286, 47.278263 ], [ 1.243638, 47.28366 ], [ 1.242562, 47.286627 ], [ 1.223335, 47.294177 ], [ 1.219343, 47.293611 ], [ 1.215691, 47.292394 ], [ 1.215287, 47.28903 ], [ 1.197231, 47.284418 ], [ 1.182432, 47.28493 ], [ 1.174129, 47.2886 ], [ 1.173372, 47.28557 ], [ 1.162064, 47.272205 ], [ 1.131214, 47.29454 ], [ 1.108127, 47.29841 ], [ 1.105988, 47.301614 ], [ 1.094853, 47.328537 ], [ 1.106313, 47.331083 ], [ 1.107242, 47.33439 ], [ 1.115791, 47.350103 ], [ 1.122414, 47.35507 ], [ 1.106881, 47.36716 ], [ 1.107408, 47.372883 ], [ 1.118514, 47.381654 ], [ 1.121851, 47.38365 ], [ 1.121682, 47.39038 ], [ 1.113388, 47.39847 ], [ 1.110523, 47.408628 ], [ 1.085019, 47.429687 ], [ 1.114759, 47.42924 ], [ 1.131913, 47.44569 ], [ 1.133366, 47.44895 ], [ 1.128852, 47.450102 ], [ 1.112883, 47.465917 ], [ 1.10772, 47.465122 ], [ 1.08711, 47.46182 ], [ 1.086006, 47.46447 ], [ 1.092002, 47.467999 ], [ 1.093746, 47.47049 ], [ 1.090288, 47.472842 ], [ 1.081583, 47.488213 ], [ 1.080281, 47.49157 ], [ 1.068855, 47.502995 ], [ 1.068832, 47.51947 ], [ 1.045035, 47.53157 ], [ 1.047554, 47.53686 ], [ 1.076557, 47.5619 ], [ 1.077002, 47.57245 ], [ 1.073175, 47.5712 ], [ 1.063593, 47.56614 ], [ 1.062099, 47.56955 ], [ 1.059904, 47.57649 ], [ 1.033353, 47.607012 ], [ 1.028918, 47.608494 ], [ 1.019281, 47.60768 ], [ 1.01254, 47.60279 ], [ 1.003723, 47.584368 ], [ 1.000398, 47.58396 ], [ 0.997017, 47.583974 ], [ 0.995606, 47.5872 ], [ 0.987657, 47.59117 ], [ 0.984911, 47.604331 ], [ 0.991789, 47.62003 ], [ 0.987056, 47.62053 ], [ 0.972786, 47.621751 ], [ 0.96527, 47.62957 ], [ 0.960922, 47.62797 ], [ 0.951655, 47.62615 ], [ 0.937343, 47.628423 ], [ 0.9326, 47.62878 ], [ 0.919605, 47.632755 ], [ 0.916768, 47.630012 ], [ 0.904079, 47.61597 ], [ 0.895291, 47.61292 ], [ 0.899155, 47.603719 ], [ 0.894062, 47.60389 ], [ 0.864282, 47.599827 ], [ 0.85767, 47.611996 ], [ 0.852747, 47.6129 ], [ 0.850765, 47.62308 ], [ 0.859344, 47.626686 ], [ 0.862295, 47.63317 ], [ 0.844708, 47.64511 ], [ 0.860543, 47.67355 ], [ 0.862011, 47.67683 ], [ 0.85961, 47.67951 ], [ 0.867411, 47.68649 ], [ 0.865296, 47.689338 ], [ 0.844288, 47.681876 ], [ 0.840919, 47.68013 ], [ 0.834169, 47.676934 ], [ 0.829337, 47.67674 ], [ 0.81178, 47.682217 ], [ 0.80259, 47.6794 ], [ 0.787171, 47.68083 ], [ 0.735651, 47.69554 ], [ 0.732608, 47.693098 ], [ 0.719417, 47.69 ], [ 0.712153, 47.68181 ], [ 0.707317, 47.68297 ], [ 0.674774, 47.69901 ], [ 0.672603, 47.6959 ], [ 0.654258, 47.68419 ], [ 0.649237, 47.68436 ], [ 0.64478, 47.68594 ], [ 0.645512, 47.6893 ], [ 0.651962, 47.698476 ], [ 0.63877, 47.708125 ], [ 0.628781, 47.70803 ], [ 0.614431, 47.69421 ], [ 0.611211, 47.691663 ], [ 0.60454, 47.686681 ], [ 0.595902, 47.689251 ], [ 0.592798, 47.70218 ], [ 0.580315, 47.712378 ], [ 0.580508, 47.71283 ], [ 0.594084, 47.723035 ], [ 0.608728, 47.725299 ], [ 0.611604, 47.72814 ], [ 0.610668, 47.732038 ], [ 0.61795, 47.736635 ], [ 0.6199, 47.746174 ], [ 0.626331, 47.75136 ], [ 0.646097, 47.75305 ], [ 0.650273, 47.754928 ], [ 0.6512, 47.75512 ], [ 0.670962, 47.767308 ], [ 0.674985, 47.76877 ], [ 0.692446, 47.76435 ], [ 0.697354, 47.764192 ], [ 0.702633, 47.76967 ], [ 0.691748, 47.78353 ], [ 0.702679, 47.78965 ], [ 0.711896, 47.78721 ], [ 0.712824, 47.79049 ], [ 0.730115, 47.805476 ], [ 0.73379, 47.807699 ], [ 0.740279, 47.81256 ], [ 0.747692, 47.827838 ], [ 0.756337, 47.830822 ], [ 0.758989, 47.83358 ], [ 0.768413, 47.83111 ], [ 0.774046, 47.8406 ], [ 0.773852, 47.85065 ], [ 0.770099, 47.852747 ], [ 0.759165, 47.85923 ], [ 0.76353, 47.86516 ], [ 0.757341, 47.884682 ], [ 0.759813, 47.89809 ], [ 0.763737, 47.899975 ], [ 0.768069, 47.901399 ], [ 0.786998, 47.911751 ], [ 0.794073, 47.907436 ], [ 0.797868, 47.89796 ], [ 0.813238, 47.889483 ], [ 0.816836, 47.891827 ], [ 0.815816, 47.895158 ], [ 0.810811, 47.91816 ], [ 0.816349, 47.934277 ], [ 0.845193, 47.94119 ], [ 0.848378, 47.94393 ], [ 0.845574, 47.9539 ], [ 0.842824, 47.956598 ], [ 0.836839, 47.968938 ], [ 0.829036, 47.97258 ], [ 0.824356, 47.98174 ], [ 0.820383, 47.98803 ], [ 0.830555, 47.99605 ], [ 0.835775, 48.00914 ], [ 0.840591, 48.01901 ], [ 0.838332, 48.03261 ], [ 0.813335, 48.03145 ], [ 0.807136, 48.03659 ], [ 0.797551, 48.03725 ], [ 0.794879, 48.046931 ], [ 0.793995, 48.06944 ], [ 0.838376, 48.0713 ], [ 0.843023, 48.07264 ], [ 0.84501, 48.092771 ], [ 0.830283, 48.09114 ], [ 0.816151, 48.094634 ], [ 0.817906, 48.09768 ], [ 0.837246, 48.100919 ], [ 0.841217, 48.10306 ], [ 0.871549, 48.10843 ], [ 0.883856, 48.10318 ], [ 0.888905, 48.10227 ], [ 0.91329, 48.104162 ], [ 0.929216, 48.11172 ], [ 0.939072, 48.11232 ], [ 0.944029, 48.11238 ], [ 0.945591, 48.100913 ], [ 0.945411, 48.09791 ], [ 0.955081, 48.100484 ], [ 0.995236, 48.126684 ], [ 1.008922, 48.131713 ], [ 1.029601, 48.132835 ], [ 1.039779, 48.13105 ], [ 1.047091, 48.12165 ], [ 1.040156, 48.11653 ], [ 0.99452, 48.099137 ], [ 0.995686, 48.089291 ], [ 1.009409, 48.08416 ], [ 1.029354, 48.08754 ], [ 1.03392, 48.085758 ], [ 1.065093, 48.085626 ], [ 1.071855, 48.07666 ], [ 1.107549, 48.080987 ], [ 1.112755, 48.0808 ], [ 1.106882, 48.060975 ], [ 1.113228, 48.05549 ], [ 1.115766, 48.05246 ], [ 1.12014, 48.04005 ], [ 1.129047, 48.03451 ], [ 1.133293, 48.033979 ], [ 1.141152, 48.0311 ], [ 1.143932, 48.028737 ], [ 1.163611, 48.02854 ], [ 1.167113, 48.026229 ], [ 1.161862, 48.017857 ], [ 1.170038, 48.009928 ], [ 1.16956, 48.006689 ], [ 1.174145, 48.005212 ], [ 1.187729, 48.0006 ], [ 1.193553, 47.98401 ], [ 1.200477, 47.97911 ], [ 1.195916, 47.973665 ], [ 1.191496, 47.97197 ], [ 1.205215, 47.96864 ], [ 1.222674, 47.97564 ], [ 1.242814, 47.97832 ], [ 1.248007, 47.97857 ], [ 1.259061, 47.971844 ], [ 1.260603, 47.96854 ], [ 1.2654, 47.96286 ], [ 1.29958, 47.968162 ], [ 1.30592, 47.95641 ], [ 1.308631, 47.95376 ], [ 1.33824, 47.95776 ], [ 1.349708, 47.963448 ], [ 1.370016, 47.95375 ], [ 1.382935, 47.97828 ], [ 1.386268, 47.98068 ], [ 1.407203, 47.9706 ], [ 1.43232, 47.97517 ], [ 1.437241, 47.9765 ], [ 1.439511, 47.98318 ], [ 1.43418, 47.99981 ], [ 1.432608, 48.00852 ], [ 1.441396, 48.01163 ], [ 1.455654, 48.00844 ], [ 1.490755, 47.9901 ], [ 1.493715, 47.987398 ], [ 1.511177, 47.983894 ], [ 1.520124, 47.98228 ], [ 1.551414, 47.98964 ], [ 1.560687, 47.987876 ], [ 1.564819, 47.98977 ], [ 1.564452, 47.97312 ], [ 1.547853, 47.961535 ], [ 1.547007, 47.958204 ], [ 1.555956, 47.95532 ], [ 1.55221, 47.953137 ], [ 1.533467, 47.949196 ], [ 1.526238, 47.944642 ], [ 1.522628, 47.931869 ], [ 1.525424, 47.92911 ], [ 1.553575, 47.92076 ], [ 1.57582, 47.90618 ], [ 1.579184, 47.903529 ], [ 1.577301, 47.89739 ], [ 1.581427, 47.891747 ], [ 1.579064, 47.889009 ], [ 1.588642, 47.87759 ], [ 1.583443, 47.871851 ], [ 1.583626, 47.86849 ], [ 1.548849, 47.84338 ], [ 1.535838, 47.83852 ], [ 1.534145, 47.83158 ], [ 1.531379, 47.82861 ], [ 1.527922, 47.822632 ], [ 1.527172, 47.81932 ], [ 1.540854, 47.817015 ], [ 1.566758, 47.79904 ], [ 1.570241, 47.79672 ], [ 1.567251, 47.78869 ], [ 1.571251, 47.78696 ], [ 1.550856, 47.772211 ], [ 1.547817, 47.76954 ], [ 1.59798, 47.73974 ], [ 1.587321, 47.73208 ], [ 1.583133, 47.729973 ], [ 1.582867, 47.72644 ], [ 1.619393, 47.73947 ], [ 1.627599, 47.75607 ], [ 1.629262, 47.75941 ], [ 1.652215, 47.749207 ], [ 1.655696, 47.74719 ], [ 1.673132, 47.73948 ], [ 1.693807, 47.73879 ], [ 1.712265, 47.732617 ], [ 1.713066, 47.7221 ], [ 1.725656, 47.70271 ], [ 1.728065, 47.699565 ], [ 1.723804, 47.697646 ], [ 1.719378, 47.695923 ], [ 1.721493, 47.692796 ], [ 1.728091, 47.687853 ], [ 1.740037, 47.66185 ], [ 1.746726, 47.656755 ], [ 1.776475, 47.65287 ], [ 1.780571, 47.650848 ], [ 1.778699, 47.644149 ], [ 1.78966, 47.637205 ], [ 1.794452, 47.63612 ], [ 1.802572, 47.64049 ], [ 1.804482, 47.64738 ], [ 1.811415, 47.652507 ], [ 1.845386, 47.65936 ], [ 1.843748, 47.68327 ], [ 1.849532, 47.688292 ], [ 1.854454, 47.689412 ], [ 1.86291, 47.68861 ], [ 1.865859, 47.675948 ], [ 1.890772, 47.677763 ], [ 1.899064, 47.67383 ], [ 1.909007, 47.67509 ], [ 1.913991, 47.67449 ], [ 1.927563, 47.67822 ], [ 1.937186, 47.677582 ], [ 1.94207, 47.661828 ], [ 1.956351, 47.661992 ], [ 1.964992, 47.65891 ], [ 1.977227, 47.6643 ], [ 1.981894, 47.665539 ], [ 1.99523, 47.66426 ], [ 2.00053, 47.67368 ], [ 2.008923, 47.677456 ], [ 2.064654, 47.674863 ], [ 2.069925, 47.680621 ], [ 2.07455, 47.68215 ], [ 2.103849, 47.67736 ], [ 2.107753, 47.67106 ], [ 2.112621, 47.67 ], [ 2.127918, 47.67826 ], [ 2.137839, 47.67718 ], [ 2.149203, 47.670747 ], [ 2.169602, 47.67102 ], [ 2.198824, 47.67743 ], [ 2.203685, 47.678548 ], [ 2.20609, 47.67639 ], [ 2.20677, 47.66293 ], [ 2.220507, 47.664809 ], [ 2.240709, 47.64126 ], [ 2.239214, 47.62098 ], [ 2.233959, 47.62067 ], [ 2.197252, 47.607447 ], [ 2.15629, 47.601046 ], [ 2.138094, 47.588815 ], [ 2.119575, 47.58295 ], [ 2.121466, 47.57964 ], [ 2.127704, 47.569933 ], [ 2.125186, 47.55636 ], [ 2.131382, 47.550696 ], [ 2.193775, 47.54857 ], [ 2.197561, 47.54612 ], [ 2.214491, 47.52043 ], [ 2.19607, 47.4879 ], [ 2.201325, 47.488183 ], [ 2.219441, 47.49544 ], [ 2.234995, 47.496357 ], [ 2.243082, 47.492764 ], [ 2.247745, 47.491732 ], [ 2.245237, 47.48872 ], [ 2.238643, 47.47238 ], [ 2.244993, 47.45995 ], [ 2.238642, 47.45097 ], [ 2.246699, 47.4424 ], [ 2.243692, 47.414827 ], [ 2.240389, 47.41299 ], [ 2.230388, 47.40753 ], [ 2.225176, 47.40753 ], [ 2.204829, 47.406079 ], [ 2.188242, 47.4357 ], [ 2.136692, 47.40632 ], [ 2.114999, 47.42148 ], [ 2.115628, 47.41792 ], [ 2.116926, 47.410801 ], [ 2.102739, 47.391616 ], [ 2.097085, 47.36681 ], [ 2.101881, 47.367644 ], [ 2.111377, 47.36953 ], [ 2.114665, 47.36701 ], [ 2.126704, 47.345417 ], [ 2.119391, 47.333433 ], [ 2.128526, 47.33112 ], [ 2.13502, 47.32174 ], [ 2.147988, 47.316361 ], [ 2.157151, 47.30021 ], [ 2.153429, 47.29787 ], [ 2.139909, 47.293434 ], [ 2.132895, 47.28119 ], [ 2.128373, 47.280176 ], [ 2.11426, 47.279178 ], [ 2.111136, 47.281729 ], [ 2.103938, 47.28571 ], [ 2.094206, 47.285388 ], [ 2.088978, 47.28549 ], [ 2.058927, 47.28037 ], [ 2.024529, 47.26512 ], [ 2.020248, 47.267006 ], [ 2.010461, 47.26841 ], [ 1.996609, 47.265751 ], [ 1.975957, 47.27577 ], [ 1.975822, 47.2759 ], [ 1.971437, 47.27765 ], [ 1.941373, 47.290064 ], [ 1.923006, 47.27359 ], [ 1.922685, 47.26385 ], [ 1.895493, 47.2548 ], [ 1.892391, 47.24875 ], [ 1.909522, 47.243789 ], [ 1.912241, 47.240753 ], [ 1.915639, 47.23418 ], [ 1.908321, 47.22089 ], [ 1.905858, 47.217887 ], [ 1.875333, 47.20708 ], [ 1.853088, 47.220528 ], [ 1.839079, 47.219308 ], [ 1.834519, 47.22055 ], [ 1.81462, 47.22999 ], [ 1.811518, 47.232183 ], [ 1.795821, 47.23782 ], [ 1.793575, 47.234807 ], [ 1.786011, 47.231397 ], [ 1.776111, 47.23138 ], [ 1.772462, 47.233739 ], [ 1.750044, 47.24731 ], [ 1.746692, 47.24987 ], [ 1.71582, 47.27682 ], [ 1.712938, 47.27395 ], [ 1.700438, 47.26408 ], [ 1.665701, 47.25889 ], [ 1.651132, 47.261842 ], [ 1.649461, 47.27148 ], [ 1.629582, 47.27443 ], [ 1.619786, 47.272629 ], [ 1.612089, 47.277139 ], [ 1.607649, 47.27543 ], [ 1.602725, 47.275018 ], [ 1.593136, 47.274416 ], [ 1.592885, 47.2577 ], [ 1.587815, 47.25788 ], [ 1.563081, 47.26143 ], [ 1.523953, 47.25534 ], [ 1.526755, 47.252496 ], [ 1.527011, 47.23978 ], [ 1.532718, 47.23026 ], [ 1.534446, 47.223591 ], [ 1.528062, 47.21925 ], [ 1.526638, 47.22251 ], [ 1.503504, 47.23452 ], [ 1.494832, 47.23311 ], [ 1.48761, 47.23748 ], [ 1.473013, 47.23891 ], [ 1.467986, 47.23903 ], [ 1.453139, 47.23899 ], [ 1.421208, 47.22916 ], [ 1.418308, 47.226188 ], [ 1.409592, 47.21741 ], [ 1.40637, 47.215543 ], [ 1.392843, 47.208693 ], [ 1.388418, 47.20687 ], [ 1.351844, 47.1939 ], [ 1.336774, 47.194223 ], [ 1.326666, 47.18622 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "43", "CODE_DEPT": "42", "NOM_DEPT": "LOIRE", "CODE_CHF": "218", "NOM_CHF": "SAINT-ETIENNE", "X_CHF_LIEU": "8086", "Y_CHF_LIEU": "64825", "X_CENTROID": "7906", "Y_CENTROID": "65148", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.755997, 45.365681 ], [ 4.751443, 45.365906 ], [ 4.725367, 45.361429 ], [ 4.723111, 45.354601 ], [ 4.718831, 45.354162 ], [ 4.70331, 45.349563 ], [ 4.701388, 45.34686 ], [ 4.698023, 45.344986 ], [ 4.679737, 45.345938 ], [ 4.675294, 45.34429 ], [ 4.638553, 45.32619 ], [ 4.640204, 45.32373 ], [ 4.643177, 45.318903 ], [ 4.640382, 45.31719 ], [ 4.633844, 45.314942 ], [ 4.61595, 45.3102 ], [ 4.616857, 45.3001 ], [ 4.622791, 45.294838 ], [ 4.621508, 45.29154 ], [ 4.611889, 45.292024 ], [ 4.602724, 45.291 ], [ 4.598597, 45.28949 ], [ 4.591348, 45.272883 ], [ 4.593657, 45.26978 ], [ 4.598493, 45.26897 ], [ 4.602945, 45.265422 ], [ 4.605305, 45.26367 ], [ 4.605227, 45.253429 ], [ 4.588302, 45.246547 ], [ 4.584802, 45.244075 ], [ 4.560654, 45.24717 ], [ 4.546242, 45.243778 ], [ 4.535936, 45.23662 ], [ 4.517747, 45.24179 ], [ 4.505973, 45.233025 ], [ 4.490899, 45.232209 ], [ 4.483135, 45.236446 ], [ 4.479248, 45.237912 ], [ 4.474656, 45.23876 ], [ 4.46811, 45.247245 ], [ 4.4569, 45.25345 ], [ 4.454041, 45.25626 ], [ 4.445481, 45.259544 ], [ 4.434076, 45.274704 ], [ 4.419655, 45.275401 ], [ 4.415655, 45.2736 ], [ 4.39131, 45.26354 ], [ 4.387182, 45.257536 ], [ 4.374922, 45.261956 ], [ 4.371186, 45.259886 ], [ 4.350182, 45.2777 ], [ 4.359604, 45.28536 ], [ 4.361268, 45.291869 ], [ 4.369175, 45.29898 ], [ 4.366258, 45.30128 ], [ 4.352304, 45.304163 ], [ 4.331653, 45.31848 ], [ 4.36338, 45.337485 ], [ 4.368006, 45.33711 ], [ 4.359801, 45.34938 ], [ 4.34053, 45.36431 ], [ 4.336435, 45.36616 ], [ 4.312929, 45.370013 ], [ 4.308199, 45.37099 ], [ 4.303818, 45.362834 ], [ 4.295644, 45.364036 ], [ 4.289755, 45.35907 ], [ 4.271631, 45.35976 ], [ 4.270101, 45.362663 ], [ 4.270802, 45.374921 ], [ 4.257172, 45.37169 ], [ 4.244341, 45.38528 ], [ 4.239555, 45.384997 ], [ 4.236695, 45.38683 ], [ 4.22656, 45.389724 ], [ 4.222207, 45.38819 ], [ 4.200862, 45.38221 ], [ 4.180821, 45.3917 ], [ 4.162102, 45.388907 ], [ 4.157679, 45.38762 ], [ 4.144443, 45.384108 ], [ 4.147892, 45.381543 ], [ 4.156688, 45.36947 ], [ 4.149893, 45.36523 ], [ 4.120395, 45.368376 ], [ 4.109111, 45.3618 ], [ 4.107809, 45.354804 ], [ 4.101586, 45.35788 ], [ 4.098516, 45.359578 ], [ 4.080171, 45.35552 ], [ 4.073682, 45.338963 ], [ 4.070804, 45.336055 ], [ 4.062761, 45.339427 ], [ 4.054874, 45.3518 ], [ 4.041548, 45.35493 ], [ 4.037552, 45.35296 ], [ 4.025162, 45.34806 ], [ 4.020571, 45.328194 ], [ 4.014976, 45.33082 ], [ 4.014606, 45.333633 ], [ 4.012813, 45.33685 ], [ 4.002483, 45.35599 ], [ 3.997708, 45.356064 ], [ 3.987124, 45.364983 ], [ 3.985593, 45.371579 ], [ 3.978268, 45.375696 ], [ 3.97343, 45.375216 ], [ 3.961027, 45.370271 ], [ 3.947613, 45.37405 ], [ 3.938752, 45.371396 ], [ 3.934501, 45.361697 ], [ 3.918387, 45.354365 ], [ 3.91933, 45.341804 ], [ 3.909899, 45.33512 ], [ 3.906268, 45.33325 ], [ 3.905179, 45.336184 ], [ 3.902781, 45.338697 ], [ 3.902488, 45.34186 ], [ 3.897408, 45.35708 ], [ 3.892146, 45.36985 ], [ 3.894516, 45.383762 ], [ 3.890368, 45.393665 ], [ 3.899085, 45.40631 ], [ 3.898541, 45.409818 ], [ 3.907081, 45.412955 ], [ 3.911124, 45.419352 ], [ 3.913895, 45.42225 ], [ 3.918432, 45.42133 ], [ 3.937312, 45.429987 ], [ 3.959804, 45.43416 ], [ 3.963258, 45.436431 ], [ 3.96329, 45.437511 ], [ 3.96286, 45.44078 ], [ 3.960143, 45.443446 ], [ 3.971058, 45.44726 ], [ 3.975106, 45.44827 ], [ 3.969091, 45.45332 ], [ 3.973126, 45.459399 ], [ 3.966383, 45.468283 ], [ 3.967553, 45.47155 ], [ 3.971637, 45.47743 ], [ 3.983336, 45.483219 ], [ 3.985629, 45.48618 ], [ 3.983321, 45.48887 ], [ 3.984007, 45.49506 ], [ 3.972738, 45.50013 ], [ 3.969342, 45.50143 ], [ 3.96484, 45.50322 ], [ 3.962229, 45.50555 ], [ 3.958555, 45.51379 ], [ 3.94643, 45.543404 ], [ 3.954474, 45.555827 ], [ 3.944619, 45.56275 ], [ 3.941931, 45.568999 ], [ 3.939503, 45.57179 ], [ 3.935595, 45.577238 ], [ 3.932168, 45.579365 ], [ 3.909481, 45.59411 ], [ 3.908775, 45.597243 ], [ 3.904504, 45.598862 ], [ 3.881466, 45.60297 ], [ 3.86909, 45.61305 ], [ 3.861186, 45.61473 ], [ 3.860428, 45.61798 ], [ 3.858678, 45.624337 ], [ 3.835863, 45.627138 ], [ 3.82364, 45.63202 ], [ 3.820703, 45.637408 ], [ 3.81931, 45.64043 ], [ 3.817721, 45.6467 ], [ 3.805428, 45.656051 ], [ 3.802989, 45.658734 ], [ 3.794532, 45.67347 ], [ 3.792084, 45.67652 ], [ 3.777585, 45.690566 ], [ 3.775857, 45.700178 ], [ 3.78238, 45.71165 ], [ 3.779998, 45.714062 ], [ 3.777015, 45.71953 ], [ 3.780919, 45.724673 ], [ 3.776168, 45.72512 ], [ 3.76804, 45.72867 ], [ 3.755838, 45.74661 ], [ 3.745951, 45.741173 ], [ 3.730822, 45.753484 ], [ 3.727106, 45.75558 ], [ 3.729002, 45.75789 ], [ 3.730436, 45.760357 ], [ 3.733108, 45.76194 ], [ 3.737972, 45.767782 ], [ 3.728469, 45.776012 ], [ 3.700393, 45.783556 ], [ 3.693391, 45.78863 ], [ 3.695115, 45.7947 ], [ 3.712631, 45.80129 ], [ 3.726892, 45.83027 ], [ 3.719124, 45.85007 ], [ 3.720762, 45.851129 ], [ 3.726607, 45.85957 ], [ 3.72853, 45.862687 ], [ 3.720282, 45.861741 ], [ 3.7172, 45.867641 ], [ 3.715524, 45.870587 ], [ 3.734084, 45.87127 ], [ 3.750312, 45.88437 ], [ 3.754371, 45.88603 ], [ 3.752984, 45.88933 ], [ 3.740233, 45.907764 ], [ 3.728991, 45.91415 ], [ 3.726359, 45.917066 ], [ 3.72135, 45.922745 ], [ 3.694018, 45.93073 ], [ 3.693892, 45.93096 ], [ 3.69416, 45.948166 ], [ 3.704505, 45.955549 ], [ 3.701807, 45.965724 ], [ 3.709612, 45.97414 ], [ 3.742071, 45.96669 ], [ 3.75064, 45.97003 ], [ 3.755204, 45.97982 ], [ 3.760021, 45.980675 ], [ 3.781713, 45.972792 ], [ 3.805153, 45.98329 ], [ 3.80972, 45.984662 ], [ 3.82322, 45.988158 ], [ 3.828199, 45.99707 ], [ 3.831736, 45.99944 ], [ 3.832076, 45.99966 ], [ 3.827342, 46.000213 ], [ 3.824711, 46.0066 ], [ 3.815876, 46.0191 ], [ 3.807536, 46.049778 ], [ 3.805606, 46.053061 ], [ 3.818213, 46.07803 ], [ 3.816589, 46.084564 ], [ 3.819836, 46.08704 ], [ 3.821294, 46.090239 ], [ 3.818358, 46.093007 ], [ 3.802831, 46.11014 ], [ 3.793486, 46.112203 ], [ 3.801251, 46.13142 ], [ 3.790052, 46.15339 ], [ 3.791627, 46.15658 ], [ 3.806301, 46.16134 ], [ 3.809736, 46.163104 ], [ 3.806379, 46.165757 ], [ 3.789791, 46.18749 ], [ 3.788646, 46.19804 ], [ 3.793571, 46.207686 ], [ 3.785038, 46.22044 ], [ 3.773353, 46.227186 ], [ 3.76865, 46.23699 ], [ 3.773322, 46.242469 ], [ 3.778236, 46.24306 ], [ 3.798801, 46.23991 ], [ 3.8027, 46.23851 ], [ 3.807612, 46.25739 ], [ 3.845692, 46.26181 ], [ 3.850553, 46.26209 ], [ 3.868924, 46.26366 ], [ 3.875376, 46.272546 ], [ 3.882358, 46.274707 ], [ 3.886954, 46.27379 ], [ 3.899534, 46.275914 ], [ 3.903775, 46.274008 ], [ 3.906644, 46.263791 ], [ 3.90876, 46.260622 ], [ 3.907418, 46.24389 ], [ 3.897392, 46.237145 ], [ 3.897328, 46.22691 ], [ 3.890132, 46.214491 ], [ 3.905496, 46.20923 ], [ 3.909456, 46.20793 ], [ 3.917106, 46.203884 ], [ 3.936212, 46.2062 ], [ 3.960314, 46.203401 ], [ 3.965168, 46.20286 ], [ 3.97257, 46.19973 ], [ 3.971497, 46.189672 ], [ 3.980798, 46.18189 ], [ 3.985073, 46.172301 ], [ 3.988528, 46.169857 ], [ 4.018044, 46.17202 ], [ 4.027488, 46.16959 ], [ 4.031149, 46.17197 ], [ 4.046013, 46.179222 ], [ 4.050073, 46.180688 ], [ 4.056681, 46.185859 ], [ 4.059972, 46.188458 ], [ 4.067331, 46.186813 ], [ 4.078635, 46.190606 ], [ 4.082922, 46.19102 ], [ 4.099435, 46.197107 ], [ 4.103832, 46.19844 ], [ 4.132853, 46.180686 ], [ 4.133393, 46.177321 ], [ 4.133847, 46.177317 ], [ 4.138591, 46.176666 ], [ 4.143322, 46.176 ], [ 4.178133, 46.173687 ], [ 4.186752, 46.176633 ], [ 4.184851, 46.179868 ], [ 4.18493, 46.19012 ], [ 4.189229, 46.18864 ], [ 4.206215, 46.19449 ], [ 4.215845, 46.18722 ], [ 4.219558, 46.1851 ], [ 4.223365, 46.180189 ], [ 4.224993, 46.17763 ], [ 4.226578, 46.17837 ], [ 4.232491, 46.17955 ], [ 4.240916, 46.186897 ], [ 4.255016, 46.18713 ], [ 4.258146, 46.184546 ], [ 4.261911, 46.17517 ], [ 4.253409, 46.167343 ], [ 4.24866, 46.16711 ], [ 4.253192, 46.157817 ], [ 4.277541, 46.15661 ], [ 4.282432, 46.156816 ], [ 4.290281, 46.16932 ], [ 4.298212, 46.17305 ], [ 4.30287, 46.174325 ], [ 4.309176, 46.17292 ], [ 4.311831, 46.1712 ], [ 4.31641, 46.171305 ], [ 4.326397, 46.18171 ], [ 4.326643, 46.184894 ], [ 4.334903, 46.181744 ], [ 4.346643, 46.18726 ], [ 4.358511, 46.18268 ], [ 4.36632, 46.185423 ], [ 4.370806, 46.184333 ], [ 4.373498, 46.187246 ], [ 4.363353, 46.19856 ], [ 4.374769, 46.20951 ], [ 4.388416, 46.21308 ], [ 4.38808, 46.21979 ], [ 4.406746, 46.21962 ], [ 4.419863, 46.210066 ], [ 4.421756, 46.20702 ], [ 4.422965, 46.203137 ], [ 4.401312, 46.19688 ], [ 4.395468, 46.1925 ], [ 4.402903, 46.18454 ], [ 4.406358, 46.18224 ], [ 4.410541, 46.18153 ], [ 4.414315, 46.18007 ], [ 4.435171, 46.169958 ], [ 4.438591, 46.167879 ], [ 4.417098, 46.13926 ], [ 4.417362, 46.13592 ], [ 4.408245, 46.137061 ], [ 4.385438, 46.147645 ], [ 4.381809, 46.14966 ], [ 4.377187, 46.149808 ], [ 4.361588, 46.138459 ], [ 4.356622, 46.138275 ], [ 4.332742, 46.135505 ], [ 4.329682, 46.13323 ], [ 4.322116, 46.12998 ], [ 4.319714, 46.11682 ], [ 4.312806, 46.112249 ], [ 4.309295, 46.110002 ], [ 4.305996, 46.100331 ], [ 4.311328, 46.09485 ], [ 4.310007, 46.085029 ], [ 4.310407, 46.08172 ], [ 4.304989, 46.079196 ], [ 4.301426, 46.078463 ], [ 4.300045, 46.06605 ], [ 4.297331, 46.063451 ], [ 4.285097, 46.05368 ], [ 4.266223, 46.051978 ], [ 4.257097, 46.05392 ], [ 4.253426, 46.05179 ], [ 4.251078, 46.04918 ], [ 4.260961, 46.039113 ], [ 4.260555, 46.03605 ], [ 4.26982, 46.033529 ], [ 4.275984, 46.023896 ], [ 4.28002, 46.02177 ], [ 4.287736, 46.018359 ], [ 4.300616, 46.02077 ], [ 4.305067, 46.021475 ], [ 4.305846, 46.02159 ], [ 4.30825, 46.011252 ], [ 4.310332, 46.008013 ], [ 4.312008, 46.00513 ], [ 4.301162, 45.99192 ], [ 4.300096, 45.988894 ], [ 4.289001, 45.995658 ], [ 4.274439, 45.992365 ], [ 4.269628, 45.992716 ], [ 4.26467, 45.998517 ], [ 4.251152, 45.9956 ], [ 4.246046, 45.99612 ], [ 4.248043, 45.986724 ], [ 4.258975, 45.98117 ], [ 4.272447, 45.979968 ], [ 4.275742, 45.9778 ], [ 4.288823, 45.973172 ], [ 4.300575, 45.958322 ], [ 4.293912, 45.9534 ], [ 4.312396, 45.942289 ], [ 4.32205, 45.941123 ], [ 4.33654, 45.93183 ], [ 4.34602, 45.929943 ], [ 4.337581, 45.918335 ], [ 4.341656, 45.91666 ], [ 4.346215, 45.915765 ], [ 4.327391, 45.905639 ], [ 4.323221, 45.90389 ], [ 4.326224, 45.89737 ], [ 4.336936, 45.89016 ], [ 4.340314, 45.880026 ], [ 4.342469, 45.876903 ], [ 4.361094, 45.86617 ], [ 4.389622, 45.864616 ], [ 4.394471, 45.865168 ], [ 4.39614, 45.85982 ], [ 4.390615, 45.85028 ], [ 4.383083, 45.845972 ], [ 4.387014, 45.83982 ], [ 4.390601, 45.837476 ], [ 4.383698, 45.83399 ], [ 4.380569, 45.825315 ], [ 4.376035, 45.82482 ], [ 4.382465, 45.82027 ], [ 4.380282, 45.81745 ], [ 4.38784, 45.803007 ], [ 4.383692, 45.804995 ], [ 4.375618, 45.80445 ], [ 4.37399, 45.801141 ], [ 4.37645, 45.784107 ], [ 4.358288, 45.778915 ], [ 4.349101, 45.77117 ], [ 4.360331, 45.754213 ], [ 4.359161, 45.751102 ], [ 4.373271, 45.749445 ], [ 4.385803, 45.75466 ], [ 4.390677, 45.755077 ], [ 4.401178, 45.74657 ], [ 4.402925, 45.74392 ], [ 4.391247, 45.737877 ], [ 4.384784, 45.72119 ], [ 4.375139, 45.71338 ], [ 4.369701, 45.700396 ], [ 4.365516, 45.69852 ], [ 4.36994, 45.692918 ], [ 4.373447, 45.69078 ], [ 4.365891, 45.682997 ], [ 4.368732, 45.6737 ], [ 4.36592, 45.671153 ], [ 4.387908, 45.663797 ], [ 4.392551, 45.66248 ], [ 4.395888, 45.65524 ], [ 4.39261, 45.653616 ], [ 4.404997, 45.639196 ], [ 4.40886, 45.63712 ], [ 4.410284, 45.632051 ], [ 4.418074, 45.629449 ], [ 4.422444, 45.629664 ], [ 4.437475, 45.624196 ], [ 4.441489, 45.62305 ], [ 4.450037, 45.607355 ], [ 4.460841, 45.601 ], [ 4.472496, 45.597345 ], [ 4.474517, 45.59471 ], [ 4.46818, 45.58844 ], [ 4.467814, 45.58575 ], [ 4.500541, 45.585473 ], [ 4.504569, 45.58362 ], [ 4.50522, 45.576882 ], [ 4.514431, 45.57652 ], [ 4.521878, 45.572641 ], [ 4.542608, 45.57977 ], [ 4.547261, 45.58016 ], [ 4.555531, 45.579142 ], [ 4.566766, 45.58368 ], [ 4.5706, 45.582256 ], [ 4.583861, 45.57323 ], [ 4.58711, 45.57072 ], [ 4.602862, 45.57041 ], [ 4.610735, 45.57391 ], [ 4.614858, 45.57548 ], [ 4.625701, 45.56825 ], [ 4.635566, 45.548374 ], [ 4.642481, 45.543365 ], [ 4.644591, 45.54016 ], [ 4.652094, 45.54209 ], [ 4.659832, 45.543227 ], [ 4.646599, 45.55558 ], [ 4.648858, 45.5617 ], [ 4.649274, 45.56491 ], [ 4.658587, 45.56377 ], [ 4.676305, 45.56877 ], [ 4.688126, 45.55776 ], [ 4.685176, 45.554756 ], [ 4.668371, 45.545874 ], [ 4.666491, 45.543047 ], [ 4.665332, 45.542839 ], [ 4.664346, 45.539458 ], [ 4.650706, 45.52987 ], [ 4.654295, 45.499392 ], [ 4.650603, 45.49711 ], [ 4.65775, 45.48559 ], [ 4.662186, 45.48661 ], [ 4.668818, 45.48234 ], [ 4.670697, 45.476281 ], [ 4.677448, 45.48065 ], [ 4.681929, 45.479806 ], [ 4.699815, 45.47813 ], [ 4.718576, 45.491941 ], [ 4.721828, 45.494395 ], [ 4.738429, 45.487168 ], [ 4.742368, 45.47397 ], [ 4.737785, 45.47272 ], [ 4.754109, 45.458183 ], [ 4.756936, 45.455707 ], [ 4.754932, 45.451028 ], [ 4.755536, 45.447047 ], [ 4.758645, 45.44139 ], [ 4.759948, 45.43849 ], [ 4.759953, 45.4326 ], [ 4.756688, 45.430069 ], [ 4.743146, 45.42042 ], [ 4.744783, 45.407368 ], [ 4.752409, 45.40023 ], [ 4.75485, 45.39779 ], [ 4.758848, 45.38472 ], [ 4.756426, 45.3748 ], [ 4.757023, 45.37146 ], [ 4.755997, 45.365681 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "44", "CODE_DEPT": "43", "NOM_DEPT": "HAUTE-LOIRE", "CODE_CHF": "157", "NOM_CHF": "LE PUY-EN-VELAY", "X_CHF_LIEU": "7696", "Y_CHF_LIEU": "64386", "X_CENTROID": "7634", "Y_CENTROID": "64479", "CODE_REG": "83", "NOM_REGION": "AUVERGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.862527, 44.74387 ], [ 3.858308, 44.74553 ], [ 3.839419, 44.74712 ], [ 3.829915, 44.754638 ], [ 3.832974, 44.75725 ], [ 3.841072, 44.76562 ], [ 3.841852, 44.772132 ], [ 3.833253, 44.77528 ], [ 3.819372, 44.772561 ], [ 3.817335, 44.769812 ], [ 3.810631, 44.76588 ], [ 3.80699, 44.767583 ], [ 3.804675, 44.77364 ], [ 3.797349, 44.786488 ], [ 3.771952, 44.80232 ], [ 3.764135, 44.800381 ], [ 3.759954, 44.806334 ], [ 3.761687, 44.812876 ], [ 3.759833, 44.81606 ], [ 3.755779, 44.817536 ], [ 3.743866, 44.8378 ], [ 3.73538, 44.840119 ], [ 3.735968, 44.83672 ], [ 3.719429, 44.831796 ], [ 3.701809, 44.836267 ], [ 3.694679, 44.831675 ], [ 3.666365, 44.828778 ], [ 3.663663, 44.831414 ], [ 3.657417, 44.836124 ], [ 3.6616, 44.83776 ], [ 3.669728, 44.841282 ], [ 3.67364, 44.85412 ], [ 3.671245, 44.85703 ], [ 3.664392, 44.860969 ], [ 3.660137, 44.87051 ], [ 3.644297, 44.87713 ], [ 3.640654, 44.87857 ], [ 3.632535, 44.87731 ], [ 3.629866, 44.87983 ], [ 3.614235, 44.874817 ], [ 3.608282, 44.879334 ], [ 3.603369, 44.879379 ], [ 3.595024, 44.87579 ], [ 3.59783, 44.858709 ], [ 3.586884, 44.836052 ], [ 3.589724, 44.82939 ], [ 3.582453, 44.826117 ], [ 3.56877, 44.834183 ], [ 3.555337, 44.82567 ], [ 3.541089, 44.82805 ], [ 3.5122, 44.824816 ], [ 3.507375, 44.82423 ], [ 3.493094, 44.811514 ], [ 3.490994, 44.808481 ], [ 3.486967, 44.80647 ], [ 3.478242, 44.80968 ], [ 3.47001, 44.82194 ], [ 3.45617, 44.831228 ], [ 3.457593, 44.841324 ], [ 3.445198, 44.851764 ], [ 3.4418, 44.85423 ], [ 3.436572, 44.87699 ], [ 3.435711, 44.880244 ], [ 3.421511, 44.89482 ], [ 3.417812, 44.90504 ], [ 3.419257, 44.908435 ], [ 3.413026, 44.91567 ], [ 3.41038, 44.91779 ], [ 3.415119, 44.9263 ], [ 3.412835, 44.944843 ], [ 3.410817, 44.948001 ], [ 3.403222, 44.95686 ], [ 3.390906, 44.95277 ], [ 3.377783, 44.95659 ], [ 3.371664, 44.968929 ], [ 3.372711, 44.975723 ], [ 3.368997, 44.97418 ], [ 3.361343, 44.97141 ], [ 3.356642, 44.97219 ], [ 3.34806, 44.97511 ], [ 3.34589, 44.985264 ], [ 3.363227, 44.99016 ], [ 3.371466, 45.002189 ], [ 3.368411, 45.004793 ], [ 3.35479, 45.00222 ], [ 3.345223, 45.01283 ], [ 3.327055, 45.010081 ], [ 3.337174, 45.02535 ], [ 3.332968, 45.02692 ], [ 3.311406, 45.021768 ], [ 3.307443, 45.023625 ], [ 3.305632, 45.02683 ], [ 3.298213, 45.03565 ], [ 3.303179, 45.045129 ], [ 3.299816, 45.055123 ], [ 3.312027, 45.08086 ], [ 3.308955, 45.086117 ], [ 3.291978, 45.08925 ], [ 3.285721, 45.093607 ], [ 3.286627, 45.096765 ], [ 3.283645, 45.102752 ], [ 3.2962, 45.106438 ], [ 3.300765, 45.106552 ], [ 3.3067, 45.10134 ], [ 3.324087, 45.096032 ], [ 3.32858, 45.09484 ], [ 3.36145, 45.10419 ], [ 3.351855, 45.104835 ], [ 3.349481, 45.111425 ], [ 3.330342, 45.11118 ], [ 3.313978, 45.118139 ], [ 3.313723, 45.11814 ], [ 3.301533, 45.12399 ], [ 3.29229, 45.122169 ], [ 3.288033, 45.120424 ], [ 3.275998, 45.142686 ], [ 3.281602, 45.151613 ], [ 3.267973, 45.15406 ], [ 3.26166, 45.170039 ], [ 3.262959, 45.18379 ], [ 3.270971, 45.192257 ], [ 3.272226, 45.209461 ], [ 3.251607, 45.216083 ], [ 3.24693, 45.215598 ], [ 3.242156, 45.216482 ], [ 3.235591, 45.22139 ], [ 3.232795, 45.238535 ], [ 3.222768, 45.24561 ], [ 3.228571, 45.265161 ], [ 3.226852, 45.27194 ], [ 3.222058, 45.272143 ], [ 3.209301, 45.28122 ], [ 3.185611, 45.27957 ], [ 3.185039, 45.27633 ], [ 3.164242, 45.26911 ], [ 3.169023, 45.281502 ], [ 3.161355, 45.289176 ], [ 3.160671, 45.295417 ], [ 3.155859, 45.29477 ], [ 3.145214, 45.287838 ], [ 3.1316, 45.28612 ], [ 3.126815, 45.28538 ], [ 3.112196, 45.284752 ], [ 3.101084, 45.291119 ], [ 3.08654, 45.290033 ], [ 3.085389, 45.2967 ], [ 3.097823, 45.300874 ], [ 3.102748, 45.300608 ], [ 3.110348, 45.30483 ], [ 3.113462, 45.31141 ], [ 3.100696, 45.31613 ], [ 3.091661, 45.324264 ], [ 3.099147, 45.32809 ], [ 3.113417, 45.327089 ], [ 3.114886, 45.33385 ], [ 3.111332, 45.350341 ], [ 3.103498, 45.354373 ], [ 3.130809, 45.351346 ], [ 3.138964, 45.35449 ], [ 3.146604, 45.350777 ], [ 3.151254, 45.351131 ], [ 3.181128, 45.35231 ], [ 3.177483, 45.35466 ], [ 3.179586, 45.3612 ], [ 3.192882, 45.36487 ], [ 3.199492, 45.369938 ], [ 3.209061, 45.370245 ], [ 3.211477, 45.367206 ], [ 3.215856, 45.370007 ], [ 3.218652, 45.369488 ], [ 3.222804, 45.38218 ], [ 3.235505, 45.39138 ], [ 3.236171, 45.394629 ], [ 3.242594, 45.390555 ], [ 3.255856, 45.3898 ], [ 3.26018, 45.39075 ], [ 3.283054, 45.3979 ], [ 3.287523, 45.399606 ], [ 3.290615, 45.4017 ], [ 3.291755, 45.40461 ], [ 3.295401, 45.41487 ], [ 3.295765, 45.41839 ], [ 3.299828, 45.42024 ], [ 3.308909, 45.41839 ], [ 3.324317, 45.405377 ], [ 3.32594, 45.398744 ], [ 3.330264, 45.39721 ], [ 3.341972, 45.41808 ], [ 3.340854, 45.42136 ], [ 3.352437, 45.421104 ], [ 3.355951, 45.422705 ], [ 3.363668, 45.413855 ], [ 3.367373, 45.41149 ], [ 3.38001, 45.401158 ], [ 3.389278, 45.40322 ], [ 3.398039, 45.40028 ], [ 3.406548, 45.403299 ], [ 3.418577, 45.400004 ], [ 3.420231, 45.397179 ], [ 3.427435, 45.40165 ], [ 3.451273, 45.401461 ], [ 3.455852, 45.400335 ], [ 3.460601, 45.401171 ], [ 3.463556, 45.407571 ], [ 3.479403, 45.42029 ], [ 3.496769, 45.426239 ], [ 3.501257, 45.427633 ], [ 3.506861, 45.411048 ], [ 3.518551, 45.40478 ], [ 3.521799, 45.402128 ], [ 3.548129, 45.39802 ], [ 3.55582, 45.393878 ], [ 3.564485, 45.396347 ], [ 3.569313, 45.402293 ], [ 3.579076, 45.38602 ], [ 3.581125, 45.38277 ], [ 3.586739, 45.37717 ], [ 3.588084, 45.373876 ], [ 3.586165, 45.37117 ], [ 3.590793, 45.35709 ], [ 3.59499, 45.355335 ], [ 3.617814, 45.33816 ], [ 3.627347, 45.3389 ], [ 3.640876, 45.348436 ], [ 3.645366, 45.3579 ], [ 3.66318, 45.36297 ], [ 3.667354, 45.376556 ], [ 3.672631, 45.381829 ], [ 3.681775, 45.382539 ], [ 3.684735, 45.380035 ], [ 3.694962, 45.373264 ], [ 3.704165, 45.37159 ], [ 3.698737, 45.36259 ], [ 3.701783, 45.360002 ], [ 3.706467, 45.360702 ], [ 3.714686, 45.36015 ], [ 3.718668, 45.3609 ], [ 3.722903, 45.35951 ], [ 3.732048, 45.35943 ], [ 3.742091, 45.353025 ], [ 3.755922, 45.353887 ], [ 3.758875, 45.35596 ], [ 3.77153, 45.350295 ], [ 3.780233, 45.351613 ], [ 3.789194, 45.358529 ], [ 3.787159, 45.371799 ], [ 3.791406, 45.38477 ], [ 3.796166, 45.38517 ], [ 3.805971, 45.391629 ], [ 3.817942, 45.386121 ], [ 3.822802, 45.380322 ], [ 3.836299, 45.383095 ], [ 3.837311, 45.366302 ], [ 3.845234, 45.369836 ], [ 3.856716, 45.359654 ], [ 3.874532, 45.355419 ], [ 3.893419, 45.35522 ], [ 3.897408, 45.35708 ], [ 3.902488, 45.34186 ], [ 3.902781, 45.338697 ], [ 3.905179, 45.336184 ], [ 3.906268, 45.33325 ], [ 3.909899, 45.33512 ], [ 3.91933, 45.341804 ], [ 3.918387, 45.354365 ], [ 3.934501, 45.361697 ], [ 3.938752, 45.371396 ], [ 3.947613, 45.37405 ], [ 3.961027, 45.370271 ], [ 3.97343, 45.375216 ], [ 3.978268, 45.375696 ], [ 3.985593, 45.371579 ], [ 3.987124, 45.364983 ], [ 3.997708, 45.356064 ], [ 4.002483, 45.35599 ], [ 4.012813, 45.33685 ], [ 4.014606, 45.333633 ], [ 4.014976, 45.33082 ], [ 4.020571, 45.328194 ], [ 4.025162, 45.34806 ], [ 4.037552, 45.35296 ], [ 4.041548, 45.35493 ], [ 4.054874, 45.3518 ], [ 4.062761, 45.339427 ], [ 4.070804, 45.336055 ], [ 4.073682, 45.338963 ], [ 4.080171, 45.35552 ], [ 4.098516, 45.359578 ], [ 4.101586, 45.35788 ], [ 4.107809, 45.354804 ], [ 4.109111, 45.3618 ], [ 4.120395, 45.368376 ], [ 4.149893, 45.36523 ], [ 4.156688, 45.36947 ], [ 4.147892, 45.381543 ], [ 4.144443, 45.384108 ], [ 4.157679, 45.38762 ], [ 4.162102, 45.388907 ], [ 4.180821, 45.3917 ], [ 4.200862, 45.38221 ], [ 4.222207, 45.38819 ], [ 4.22656, 45.389724 ], [ 4.236695, 45.38683 ], [ 4.239555, 45.384997 ], [ 4.244341, 45.38528 ], [ 4.257172, 45.37169 ], [ 4.270802, 45.374921 ], [ 4.270101, 45.362663 ], [ 4.271631, 45.35976 ], [ 4.289755, 45.35907 ], [ 4.295644, 45.364036 ], [ 4.303818, 45.362834 ], [ 4.308199, 45.37099 ], [ 4.312929, 45.370013 ], [ 4.336435, 45.36616 ], [ 4.34053, 45.36431 ], [ 4.359801, 45.34938 ], [ 4.368006, 45.33711 ], [ 4.36338, 45.337485 ], [ 4.331653, 45.31848 ], [ 4.352304, 45.304163 ], [ 4.366258, 45.30128 ], [ 4.369175, 45.29898 ], [ 4.361268, 45.291869 ], [ 4.359604, 45.28536 ], [ 4.350182, 45.2777 ], [ 4.371186, 45.259886 ], [ 4.374922, 45.261956 ], [ 4.387182, 45.257536 ], [ 4.39131, 45.26354 ], [ 4.415655, 45.2736 ], [ 4.419655, 45.275401 ], [ 4.434076, 45.274704 ], [ 4.445481, 45.259544 ], [ 4.454041, 45.25626 ], [ 4.4569, 45.25345 ], [ 4.46811, 45.247245 ], [ 4.474656, 45.23876 ], [ 4.479248, 45.237912 ], [ 4.483135, 45.236446 ], [ 4.488918, 45.22342 ], [ 4.481328, 45.215919 ], [ 4.476933, 45.210673 ], [ 4.478555, 45.198314 ], [ 4.480555, 45.195459 ], [ 4.472579, 45.17989 ], [ 4.459058, 45.172156 ], [ 4.458157, 45.168872 ], [ 4.448111, 45.16196 ], [ 4.443347, 45.14558 ], [ 4.443565, 45.14218 ], [ 4.448414, 45.12946 ], [ 4.457564, 45.12224 ], [ 4.457286, 45.11889 ], [ 4.452662, 45.119125 ], [ 4.438931, 45.12036 ], [ 4.442014, 45.11169 ], [ 4.439755, 45.10989 ], [ 4.436425, 45.109456 ], [ 4.427843, 45.11751 ], [ 4.429495, 45.130393 ], [ 4.411159, 45.14083 ], [ 4.397828, 45.139484 ], [ 4.380955, 45.143558 ], [ 4.376559, 45.14436 ], [ 4.37257, 45.12807 ], [ 4.397573, 45.118082 ], [ 4.399854, 45.1081 ], [ 4.38784, 45.103623 ], [ 4.384585, 45.10107 ], [ 4.371468, 45.104384 ], [ 4.363868, 45.10042 ], [ 4.359232, 45.09957 ], [ 4.362829, 45.08751 ], [ 4.358616, 45.086252 ], [ 4.354941, 45.077282 ], [ 4.346372, 45.07504 ], [ 4.347737, 45.06525 ], [ 4.360713, 45.055392 ], [ 4.370244, 45.056005 ], [ 4.37873, 45.05286 ], [ 4.381644, 45.042797 ], [ 4.379068, 45.03617 ], [ 4.365133, 45.03556 ], [ 4.35376, 45.030569 ], [ 4.351543, 45.02766 ], [ 4.318086, 45.029934 ], [ 4.299684, 45.020038 ], [ 4.297425, 45.01353 ], [ 4.291981, 45.00429 ], [ 4.292148, 44.993912 ], [ 4.307317, 44.98588 ], [ 4.30998, 44.98093 ], [ 4.313234, 44.979581 ], [ 4.314365, 44.973166 ], [ 4.297662, 44.96895 ], [ 4.294225, 44.966801 ], [ 4.27942, 44.966702 ], [ 4.256587, 44.959876 ], [ 4.235239, 44.967805 ], [ 4.231819, 44.96574 ], [ 4.223854, 44.96288 ], [ 4.216572, 44.933577 ], [ 4.213073, 44.93121 ], [ 4.190046, 44.91419 ], [ 4.191688, 44.912136 ], [ 4.188048, 44.91019 ], [ 4.183014, 44.905224 ], [ 4.179479, 44.886514 ], [ 4.16616, 44.88194 ], [ 4.156637, 44.87398 ], [ 4.136896, 44.87405 ], [ 4.117944, 44.87811 ], [ 4.113166, 44.87856 ], [ 4.087906, 44.87033 ], [ 4.084478, 44.869194 ], [ 4.077563, 44.86981 ], [ 4.072916, 44.86977 ], [ 4.03891, 44.87276 ], [ 4.028735, 44.86617 ], [ 4.028196, 44.86301 ], [ 4.025204, 44.851002 ], [ 4.020047, 44.84586 ], [ 4.023795, 44.84387 ], [ 4.028587, 44.834619 ], [ 4.025664, 44.831837 ], [ 4.016413, 44.83039 ], [ 4.009087, 44.834627 ], [ 3.998603, 44.823575 ], [ 3.989593, 44.83134 ], [ 3.98493, 44.83169 ], [ 3.981451, 44.825961 ], [ 3.987154, 44.816384 ], [ 3.981885, 44.81168 ], [ 3.978357, 44.813905 ], [ 3.96732, 44.820179 ], [ 3.963183, 44.829759 ], [ 3.958782, 44.82839 ], [ 3.945543, 44.824346 ], [ 3.944475, 44.821015 ], [ 3.936818, 44.798093 ], [ 3.918029, 44.778856 ], [ 3.924334, 44.770979 ], [ 3.924918, 44.769624 ], [ 3.921789, 44.76768 ], [ 3.913657, 44.76654 ], [ 3.908988, 44.765461 ], [ 3.900111, 44.7628 ], [ 3.89572, 44.752874 ], [ 3.872496, 44.75531 ], [ 3.862527, 44.74387 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "45", "CODE_DEPT": "44", "NOM_DEPT": "LOIRE-ATLANTIQUE", "CODE_CHF": "109", "NOM_CHF": "NANTES", "X_CHF_LIEU": "3555", "Y_CHF_LIEU": "66895", "X_CENTROID": "3468", "Y_CENTROID": "67061", "CODE_REG": "52", "NOM_REGION": "PAYS-DE-LA-LOIRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.148571, 47.029554 ], [ -1.196769, 47.039766 ], [ -1.209355, 47.04962 ], [ -1.21686, 47.05349 ], [ -1.229934, 47.06376 ], [ -1.248522, 47.06856 ], [ -1.267884, 47.084269 ], [ -1.272681, 47.08317 ], [ -1.274855, 47.0803 ], [ -1.286754, 47.0764 ], [ -1.290343, 47.07042 ], [ -1.290826, 47.06721 ], [ -1.287282, 47.058313 ], [ -1.299588, 47.04404 ], [ -1.298726, 47.03471 ], [ -1.303526, 47.03438 ], [ -1.317961, 47.034303 ], [ -1.336458, 47.044069 ], [ -1.345721, 47.04573 ], [ -1.347471, 47.039471 ], [ -1.362682, 47.03983 ], [ -1.375944, 47.02966 ], [ -1.366917, 47.017366 ], [ -1.365391, 47.007144 ], [ -1.364064, 47.003777 ], [ -1.375472, 46.98889 ], [ -1.359059, 46.98113 ], [ -1.360369, 46.971094 ], [ -1.367089, 46.96623 ], [ -1.36616, 46.95669 ], [ -1.373372, 46.95208 ], [ -1.377802, 46.953769 ], [ -1.390452, 46.94803 ], [ -1.415448, 46.94435 ], [ -1.458268, 46.925838 ], [ -1.462548, 46.92666 ], [ -1.471736, 46.933189 ], [ -1.470196, 46.93622 ], [ -1.458498, 46.95623 ], [ -1.472347, 46.97079 ], [ -1.475681, 46.98113 ], [ -1.472223, 46.98741 ], [ -1.462634, 46.99002 ], [ -1.462869, 46.996532 ], [ -1.465618, 46.99933 ], [ -1.474979, 47.02161 ], [ -1.47313, 47.03112 ], [ -1.480637, 47.035431 ], [ -1.48279, 47.03833 ], [ -1.495824, 47.041505 ], [ -1.499845, 47.040689 ], [ -1.504315, 47.03909 ], [ -1.519996, 47.02567 ], [ -1.534341, 47.023431 ], [ -1.554425, 47.014983 ], [ -1.543644, 47.003775 ], [ -1.550895, 46.991422 ], [ -1.551626, 46.98494 ], [ -1.554272, 46.97865 ], [ -1.542958, 46.96165 ], [ -1.544151, 46.95829 ], [ -1.519976, 46.937781 ], [ -1.526616, 46.92525 ], [ -1.545933, 46.925477 ], [ -1.543341, 46.92252 ], [ -1.526956, 46.90574 ], [ -1.504373, 46.89292 ], [ -1.500595, 46.8834 ], [ -1.526798, 46.873833 ], [ -1.536755, 46.875263 ], [ -1.546259, 46.873021 ], [ -1.548511, 46.86008 ], [ -1.57794, 46.86509 ], [ -1.600872, 46.872968 ], [ -1.609602, 46.87123 ], [ -1.613571, 46.87321 ], [ -1.640486, 46.87849 ], [ -1.650611, 46.878914 ], [ -1.664178, 46.874703 ], [ -1.668471, 46.87659 ], [ -1.690948, 46.89007 ], [ -1.715256, 46.884724 ], [ -1.729528, 46.88771 ], [ -1.732279, 46.89028 ], [ -1.738078, 46.90541 ], [ -1.736259, 46.911526 ], [ -1.737883, 46.91399 ], [ -1.745423, 46.918905 ], [ -1.742287, 46.920974 ], [ -1.750245, 46.93049 ], [ -1.755205, 46.92969 ], [ -1.779732, 46.92533 ], [ -1.787902, 46.929422 ], [ -1.797702, 46.92798 ], [ -1.832106, 46.93209 ], [ -1.829087, 46.934702 ], [ -1.825555, 46.94764 ], [ -1.827145, 46.95098 ], [ -1.846398, 46.954154 ], [ -1.871782, 46.9531 ], [ -1.890506, 46.958676 ], [ -1.915735, 46.97558 ], [ -1.9177, 46.992375 ], [ -1.938925, 46.99351 ], [ -1.943608, 46.99512 ], [ -1.972218, 47.028584 ], [ -1.97631, 47.02875 ], [ -1.980414, 47.028906 ], [ -2.003548, 47.06024 ], [ -2.015895, 47.06652 ], [ -2.020004, 47.06868 ], [ -2.033174, 47.07411 ], [ -2.051288, 47.091114 ], [ -2.053683, 47.09425 ], [ -2.101531, 47.10638 ], [ -2.10506, 47.1121 ], [ -2.12005, 47.1102 ], [ -2.145464, 47.11187 ], [ -2.173538, 47.11961 ], [ -2.177283, 47.12199 ], [ -2.213079, 47.12472 ], [ -2.243827, 47.13516 ], [ -2.23241, 47.1423 ], [ -2.228864, 47.144869 ], [ -2.225884, 47.15149 ], [ -2.212932, 47.156091 ], [ -2.174622, 47.1588 ], [ -2.171707, 47.161633 ], [ -2.166599, 47.16739 ], [ -2.160357, 47.19402 ], [ -2.158227, 47.19707 ], [ -2.159684, 47.21101 ], [ -2.178815, 47.23531 ], [ -2.170221, 47.24359 ], [ -2.168511, 47.2678 ], [ -2.148235, 47.26963 ], [ -2.134293, 47.274079 ], [ -2.129201, 47.27461 ], [ -2.06213, 47.28206 ], [ -2.047618, 47.28604 ], [ -2.045758, 47.28939 ], [ -2.042359, 47.29173 ], [ -2.01495, 47.28587 ], [ -2.010494, 47.28458 ], [ -2.010489, 47.29433 ], [ -2.010328, 47.29757 ], [ -2.010274, 47.314743 ], [ -2.015395, 47.315315 ], [ -2.032801, 47.30433 ], [ -2.038534, 47.313545 ], [ -2.043583, 47.313921 ], [ -2.071841, 47.30555 ], [ -2.108057, 47.30606 ], [ -2.113125, 47.30567 ], [ -2.142467, 47.30003 ], [ -2.16909, 47.289917 ], [ -2.181594, 47.29857 ], [ -2.183004, 47.29518 ], [ -2.184784, 47.282178 ], [ -2.193561, 47.278754 ], [ -2.198338, 47.272504 ], [ -2.221793, 47.26589 ], [ -2.228735, 47.257007 ], [ -2.248828, 47.254185 ], [ -2.270119, 47.23957 ], [ -2.294585, 47.234688 ], [ -2.302972, 47.237246 ], [ -2.336953, 47.25337 ], [ -2.346292, 47.265571 ], [ -2.35757, 47.272846 ], [ -2.361998, 47.27457 ], [ -2.39582, 47.281556 ], [ -2.423752, 47.27414 ], [ -2.421239, 47.25911 ], [ -2.449756, 47.2636 ], [ -2.457384, 47.268223 ], [ -2.491706, 47.275327 ], [ -2.503819, 47.280952 ], [ -2.54653, 47.29194 ], [ -2.542924, 47.29812 ], [ -2.518151, 47.30025 ], [ -2.513806, 47.298381 ], [ -2.511633, 47.302022 ], [ -2.513391, 47.30312 ], [ -2.50146, 47.31768 ], [ -2.501156, 47.32468 ], [ -2.50719, 47.34181 ], [ -2.522675, 47.359893 ], [ -2.525945, 47.362625 ], [ -2.556645, 47.37357 ], [ -2.555762, 47.376967 ], [ -2.533175, 47.38427 ], [ -2.502924, 47.402531 ], [ -2.498252, 47.40389 ], [ -2.470758, 47.416955 ], [ -2.463262, 47.4128 ], [ -2.434028, 47.413049 ], [ -2.433068, 47.416423 ], [ -2.454718, 47.425235 ], [ -2.447147, 47.43733 ], [ -2.458489, 47.44812 ], [ -2.452868, 47.460964 ], [ -2.44035, 47.465819 ], [ -2.427617, 47.475789 ], [ -2.423027, 47.477122 ], [ -2.420088, 47.4669 ], [ -2.410409, 47.45883 ], [ -2.395334, 47.45657 ], [ -2.377584, 47.46276 ], [ -2.36721, 47.46319 ], [ -2.355923, 47.455979 ], [ -2.316133, 47.46251 ], [ -2.313426, 47.483065 ], [ -2.30048, 47.498136 ], [ -2.29705, 47.512014 ], [ -2.298099, 47.515476 ], [ -2.29745, 47.515506 ], [ -2.279494, 47.510881 ], [ -2.259526, 47.51175 ], [ -2.255948, 47.50935 ], [ -2.261677, 47.50047 ], [ -2.248656, 47.4953 ], [ -2.244284, 47.49361 ], [ -2.216832, 47.507059 ], [ -2.203241, 47.5105 ], [ -2.198455, 47.51113 ], [ -2.185606, 47.509068 ], [ -2.189112, 47.49938 ], [ -2.186385, 47.49323 ], [ -2.166233, 47.49088 ], [ -2.157796, 47.49475 ], [ -2.155255, 47.497805 ], [ -2.153629, 47.50827 ], [ -2.155171, 47.518728 ], [ -2.148712, 47.52356 ], [ -2.14396, 47.524961 ], [ -2.098852, 47.533449 ], [ -2.097167, 47.54022 ], [ -2.103892, 47.54911 ], [ -2.0975, 47.569237 ], [ -2.096731, 47.57263 ], [ -2.103211, 47.575166 ], [ -2.105064, 47.57754 ], [ -2.100458, 47.578858 ], [ -2.102524, 47.5953 ], [ -2.086481, 47.603255 ], [ -2.0853, 47.606536 ], [ -2.084146, 47.609959 ], [ -2.086555, 47.623745 ], [ -2.097036, 47.63136 ], [ -2.082054, 47.64945 ], [ -2.052005, 47.6504 ], [ -2.047426, 47.66379 ], [ -2.043095, 47.6657 ], [ -2.035333, 47.66847 ], [ -2.016926, 47.66683 ], [ -2.012284, 47.666454 ], [ -1.977136, 47.691668 ], [ -1.973401, 47.69415 ], [ -1.973056, 47.69403 ], [ -1.969042, 47.68781 ], [ -1.969284, 47.67424 ], [ -1.961339, 47.67094 ], [ -1.956329, 47.671188 ], [ -1.93644, 47.686523 ], [ -1.888114, 47.695482 ], [ -1.883074, 47.69499 ], [ -1.878257, 47.6952 ], [ -1.858304, 47.70825 ], [ -1.853488, 47.70804 ], [ -1.841527, 47.7055 ], [ -1.83778, 47.70676 ], [ -1.828414, 47.70954 ], [ -1.820055, 47.7056 ], [ -1.786276, 47.69988 ], [ -1.771608, 47.69868 ], [ -1.750249, 47.706751 ], [ -1.736125, 47.70415 ], [ -1.732593, 47.70184 ], [ -1.729713, 47.699342 ], [ -1.715725, 47.69945 ], [ -1.71127, 47.700421 ], [ -1.706147, 47.70895 ], [ -1.686443, 47.7126 ], [ -1.661157, 47.7102 ], [ -1.648814, 47.720306 ], [ -1.644387, 47.722087 ], [ -1.641237, 47.721825 ], [ -1.638131, 47.722209 ], [ -1.636801, 47.741755 ], [ -1.626098, 47.75656 ], [ -1.627131, 47.759827 ], [ -1.619634, 47.76357 ], [ -1.601774, 47.764542 ], [ -1.598107, 47.766525 ], [ -1.59491, 47.77332 ], [ -1.594141, 47.77603 ], [ -1.585308, 47.7789 ], [ -1.575393, 47.778234 ], [ -1.556429, 47.78372 ], [ -1.530422, 47.78478 ], [ -1.51219, 47.79722 ], [ -1.503981, 47.80108 ], [ -1.494999, 47.798505 ], [ -1.47114, 47.80307 ], [ -1.468448, 47.8059 ], [ -1.474307, 47.824 ], [ -1.480687, 47.82869 ], [ -1.481873, 47.8318 ], [ -1.479636, 47.83481 ], [ -1.465114, 47.83486 ], [ -1.456579, 47.83175 ], [ -1.427417, 47.832171 ], [ -1.419285, 47.829044 ], [ -1.414846, 47.827498 ], [ -1.411962, 47.82855 ], [ -1.409149, 47.827406 ], [ -1.405523, 47.825 ], [ -1.391976, 47.82855 ], [ -1.381228, 47.82141 ], [ -1.374824, 47.808827 ], [ -1.365536, 47.80604 ], [ -1.364478, 47.79967 ], [ -1.339993, 47.795214 ], [ -1.33715, 47.79463 ], [ -1.251009, 47.777622 ], [ -1.245882, 47.776718 ], [ -1.247316, 47.763028 ], [ -1.236525, 47.75578 ], [ -1.241724, 47.74286 ], [ -1.255719, 47.742569 ], [ -1.255316, 47.739203 ], [ -1.254406, 47.73267 ], [ -1.234119, 47.72336 ], [ -1.215419, 47.71882 ], [ -1.195666, 47.72172 ], [ -1.19545, 47.71203 ], [ -1.180204, 47.69679 ], [ -1.17493, 47.69456 ], [ -1.177913, 47.68801 ], [ -1.175483, 47.681359 ], [ -1.181369, 47.66861 ], [ -1.172985, 47.66037 ], [ -1.162948, 47.66049 ], [ -1.156466, 47.64547 ], [ -1.157909, 47.639163 ], [ -1.157394, 47.63599 ], [ -1.154156, 47.633618 ], [ -1.137678, 47.62215 ], [ -1.137894, 47.618927 ], [ -1.123665, 47.61921 ], [ -1.103175, 47.62059 ], [ -1.075035, 47.60613 ], [ -1.030451, 47.59937 ], [ -1.025255, 47.59902 ], [ -1.021577, 47.59672 ], [ -1.009226, 47.59105 ], [ -1.008165, 47.58776 ], [ -1.020182, 47.57714 ], [ -1.032991, 47.571965 ], [ -1.037088, 47.57049 ], [ -1.042198, 47.56323 ], [ -1.055643, 47.56528 ], [ -1.060517, 47.56597 ], [ -1.099905, 47.565729 ], [ -1.104863, 47.56527 ], [ -1.123516, 47.56952 ], [ -1.172934, 47.57282 ], [ -1.173253, 47.569228 ], [ -1.178346, 47.54802 ], [ -1.154392, 47.542337 ], [ -1.154454, 47.538856 ], [ -1.168004, 47.529123 ], [ -1.156214, 47.51015 ], [ -1.146997, 47.50709 ], [ -1.142822, 47.505071 ], [ -1.107533, 47.50095 ], [ -1.077012, 47.50328 ], [ -1.072631, 47.501481 ], [ -1.049296, 47.50528 ], [ -1.044458, 47.505501 ], [ -1.025803, 47.500127 ], [ -1.011586, 47.489874 ], [ -0.970663, 47.492295 ], [ -0.96548, 47.4918 ], [ -0.96091, 47.48379 ], [ -0.958993, 47.48123 ], [ -0.962337, 47.47918 ], [ -0.967867, 47.46805 ], [ -0.954011, 47.45323 ], [ -0.952818, 47.43581 ], [ -0.947628, 47.42975 ], [ -0.948347, 47.42274 ], [ -0.943182, 47.41861 ], [ -0.925506, 47.40194 ], [ -0.923456, 47.39877 ], [ -0.927155, 47.39636 ], [ -0.935856, 47.38778 ], [ -0.945808, 47.38703 ], [ -0.949385, 47.38442 ], [ -0.957845, 47.3802 ], [ -0.962253, 47.37843 ], [ -0.966359, 47.376361 ], [ -0.969338, 47.3743 ], [ -0.976234, 47.371029 ], [ -0.981172, 47.37088 ], [ -0.990563, 47.37262 ], [ -1.012695, 47.36571 ], [ -1.032118, 47.365001 ], [ -1.036884, 47.36469 ], [ -1.063981, 47.37019 ], [ -1.07853, 47.3708 ], [ -1.101857, 47.36664 ], [ -1.106842, 47.36589 ], [ -1.111954, 47.36594 ], [ -1.11428, 47.367041 ], [ -1.144951, 47.367996 ], [ -1.170101, 47.364653 ], [ -1.183138, 47.3542 ], [ -1.187253, 47.35254 ], [ -1.205598, 47.348976 ], [ -1.228373, 47.349978 ], [ -1.232283, 47.34792 ], [ -1.236679, 47.345979 ], [ -1.256452, 47.34125 ], [ -1.282624, 47.340957 ], [ -1.287817, 47.34056 ], [ -1.306548, 47.33448 ], [ -1.310318, 47.33205 ], [ -1.322745, 47.32088 ], [ -1.337293, 47.317469 ], [ -1.354204, 47.30416 ], [ -1.339313, 47.300976 ], [ -1.319029, 47.30321 ], [ -1.3138, 47.302964 ], [ -1.294757, 47.301354 ], [ -1.282664, 47.2958 ], [ -1.28022, 47.2929 ], [ -1.27672, 47.288055 ], [ -1.276402, 47.2696 ], [ -1.255337, 47.25317 ], [ -1.254061, 47.25009 ], [ -1.235477, 47.241102 ], [ -1.231267, 47.239579 ], [ -1.213985, 47.245907 ], [ -1.209506, 47.25178 ], [ -1.204918, 47.25304 ], [ -1.195861, 47.252181 ], [ -1.185046, 47.242529 ], [ -1.181106, 47.2409 ], [ -1.188046, 47.22311 ], [ -1.188466, 47.220003 ], [ -1.177609, 47.216185 ], [ -1.174481, 47.214404 ], [ -1.175243, 47.21162 ], [ -1.180764, 47.20741 ], [ -1.174632, 47.19846 ], [ -1.176734, 47.192659 ], [ -1.165361, 47.188066 ], [ -1.161776, 47.18583 ], [ -1.167714, 47.17355 ], [ -1.169555, 47.170515 ], [ -1.172048, 47.16789 ], [ -1.188363, 47.158232 ], [ -1.191065, 47.15542 ], [ -1.209088, 47.14454 ], [ -1.218849, 47.144322 ], [ -1.23822, 47.134904 ], [ -1.235255, 47.132488 ], [ -1.230987, 47.1313 ], [ -1.23218, 47.12799 ], [ -1.226626, 47.118667 ], [ -1.232328, 47.109875 ], [ -1.246738, 47.10053 ], [ -1.249652, 47.09763 ], [ -1.240897, 47.094585 ], [ -1.228114, 47.099769 ], [ -1.179363, 47.09529 ], [ -1.175073, 47.093584 ], [ -1.170549, 47.09295 ], [ -1.167958, 47.09052 ], [ -1.161898, 47.07957 ], [ -1.148528, 47.069621 ], [ -1.120108, 47.06414 ], [ -1.115539, 47.062697 ], [ -1.120792, 47.053584 ], [ -1.11789, 47.04028 ], [ -1.143996, 47.030927 ], [ -1.148571, 47.029554 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "46", "CODE_DEPT": "45", "NOM_DEPT": "LOIRET", "CODE_CHF": "234", "NOM_CHF": "ORLEANS", "X_CHF_LIEU": "6181", "Y_CHF_LIEU": "67563", "X_CENTROID": "6510", "Y_CENTROID": "67570", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.874625, 47.52042 ], [ 2.870551, 47.51828 ], [ 2.841217, 47.51181 ], [ 2.826262, 47.49807 ], [ 2.806484, 47.494459 ], [ 2.802623, 47.49678 ], [ 2.797521, 47.49734 ], [ 2.794601, 47.500227 ], [ 2.783529, 47.51519 ], [ 2.762558, 47.524957 ], [ 2.742696, 47.526517 ], [ 2.73182, 47.538095 ], [ 2.727151, 47.536221 ], [ 2.728377, 47.532938 ], [ 2.723602, 47.52338 ], [ 2.72549, 47.510266 ], [ 2.72176, 47.504415 ], [ 2.727407, 47.49889 ], [ 2.725405, 47.49575 ], [ 2.714574, 47.48925 ], [ 2.686362, 47.483189 ], [ 2.682059, 47.48336 ], [ 2.669382, 47.48468 ], [ 2.664608, 47.485757 ], [ 2.656286, 47.49335 ], [ 2.655871, 47.510396 ], [ 2.612018, 47.526389 ], [ 2.613325, 47.52941 ], [ 2.616728, 47.538566 ], [ 2.607079, 47.54915 ], [ 2.603024, 47.550996 ], [ 2.592984, 47.55814 ], [ 2.573916, 47.559625 ], [ 2.567581, 47.56849 ], [ 2.564341, 47.571147 ], [ 2.544971, 47.57467 ], [ 2.520343, 47.57237 ], [ 2.506549, 47.56809 ], [ 2.491358, 47.56829 ], [ 2.490301, 47.57177 ], [ 2.456411, 47.593837 ], [ 2.44743, 47.606577 ], [ 2.438079, 47.60977 ], [ 2.43345, 47.60822 ], [ 2.400349, 47.598576 ], [ 2.394291, 47.59292 ], [ 2.379655, 47.590592 ], [ 2.372689, 47.585442 ], [ 2.360156, 47.59105 ], [ 2.343358, 47.60448 ], [ 2.323488, 47.60856 ], [ 2.307202, 47.617324 ], [ 2.303059, 47.61954 ], [ 2.293606, 47.62262 ], [ 2.289632, 47.62905 ], [ 2.284817, 47.628675 ], [ 2.239214, 47.62098 ], [ 2.240709, 47.64126 ], [ 2.220507, 47.664809 ], [ 2.20677, 47.66293 ], [ 2.20609, 47.67639 ], [ 2.203685, 47.678548 ], [ 2.198824, 47.67743 ], [ 2.169602, 47.67102 ], [ 2.149203, 47.670747 ], [ 2.137839, 47.67718 ], [ 2.127918, 47.67826 ], [ 2.112621, 47.67 ], [ 2.107753, 47.67106 ], [ 2.103849, 47.67736 ], [ 2.07455, 47.68215 ], [ 2.069925, 47.680621 ], [ 2.064654, 47.674863 ], [ 2.008923, 47.677456 ], [ 2.00053, 47.67368 ], [ 1.99523, 47.66426 ], [ 1.981894, 47.665539 ], [ 1.977227, 47.6643 ], [ 1.964992, 47.65891 ], [ 1.956351, 47.661992 ], [ 1.94207, 47.661828 ], [ 1.937186, 47.677582 ], [ 1.927563, 47.67822 ], [ 1.913991, 47.67449 ], [ 1.909007, 47.67509 ], [ 1.899064, 47.67383 ], [ 1.890772, 47.677763 ], [ 1.865859, 47.675948 ], [ 1.86291, 47.68861 ], [ 1.854454, 47.689412 ], [ 1.849532, 47.688292 ], [ 1.843748, 47.68327 ], [ 1.845386, 47.65936 ], [ 1.811415, 47.652507 ], [ 1.804482, 47.64738 ], [ 1.802572, 47.64049 ], [ 1.794452, 47.63612 ], [ 1.78966, 47.637205 ], [ 1.778699, 47.644149 ], [ 1.780571, 47.650848 ], [ 1.776475, 47.65287 ], [ 1.746726, 47.656755 ], [ 1.740037, 47.66185 ], [ 1.728091, 47.687853 ], [ 1.721493, 47.692796 ], [ 1.719378, 47.695923 ], [ 1.723804, 47.697646 ], [ 1.728065, 47.699565 ], [ 1.725656, 47.70271 ], [ 1.713066, 47.7221 ], [ 1.712265, 47.732617 ], [ 1.693807, 47.73879 ], [ 1.673132, 47.73948 ], [ 1.655696, 47.74719 ], [ 1.652215, 47.749207 ], [ 1.629262, 47.75941 ], [ 1.627599, 47.75607 ], [ 1.619393, 47.73947 ], [ 1.582867, 47.72644 ], [ 1.583133, 47.729973 ], [ 1.587321, 47.73208 ], [ 1.59798, 47.73974 ], [ 1.547817, 47.76954 ], [ 1.550856, 47.772211 ], [ 1.571251, 47.78696 ], [ 1.567251, 47.78869 ], [ 1.570241, 47.79672 ], [ 1.566758, 47.79904 ], [ 1.540854, 47.817015 ], [ 1.527172, 47.81932 ], [ 1.527922, 47.822632 ], [ 1.531379, 47.82861 ], [ 1.534145, 47.83158 ], [ 1.535838, 47.83852 ], [ 1.548849, 47.84338 ], [ 1.583626, 47.86849 ], [ 1.583443, 47.871851 ], [ 1.588642, 47.87759 ], [ 1.579064, 47.889009 ], [ 1.581427, 47.891747 ], [ 1.577301, 47.89739 ], [ 1.579184, 47.903529 ], [ 1.57582, 47.90618 ], [ 1.553575, 47.92076 ], [ 1.525424, 47.92911 ], [ 1.522628, 47.931869 ], [ 1.526238, 47.944642 ], [ 1.533467, 47.949196 ], [ 1.55221, 47.953137 ], [ 1.555956, 47.95532 ], [ 1.547007, 47.958204 ], [ 1.547853, 47.961535 ], [ 1.564452, 47.97312 ], [ 1.564819, 47.98977 ], [ 1.560687, 47.987876 ], [ 1.551414, 47.98964 ], [ 1.520124, 47.98228 ], [ 1.520888, 48.011108 ], [ 1.514051, 48.02723 ], [ 1.525946, 48.033232 ], [ 1.540795, 48.031032 ], [ 1.548119, 48.034543 ], [ 1.540194, 48.03873 ], [ 1.545307, 48.044589 ], [ 1.566382, 48.03656 ], [ 1.585117, 48.033535 ], [ 1.586955, 48.03052 ], [ 1.591873, 48.03075 ], [ 1.599285, 48.04276 ], [ 1.613878, 48.044156 ], [ 1.621232, 48.048319 ], [ 1.623713, 48.060786 ], [ 1.621686, 48.063877 ], [ 1.624269, 48.06676 ], [ 1.660607, 48.07512 ], [ 1.668431, 48.0668 ], [ 1.677207, 48.06541 ], [ 1.687023, 48.0751 ], [ 1.689474, 48.07754 ], [ 1.706129, 48.069758 ], [ 1.708991, 48.06694 ], [ 1.728803, 48.068888 ], [ 1.748763, 48.065781 ], [ 1.767072, 48.07179 ], [ 1.771543, 48.07004 ], [ 1.778099, 48.07517 ], [ 1.7975, 48.077682 ], [ 1.80004, 48.08412 ], [ 1.802746, 48.08921 ], [ 1.833278, 48.081318 ], [ 1.838124, 48.08078 ], [ 1.840198, 48.08728 ], [ 1.864599, 48.085017 ], [ 1.865166, 48.091781 ], [ 1.864904, 48.095189 ], [ 1.881637, 48.098013 ], [ 1.887624, 48.102722 ], [ 1.889714, 48.105586 ], [ 1.897623, 48.124523 ], [ 1.899468, 48.127564 ], [ 1.907824, 48.1304 ], [ 1.912622, 48.12913 ], [ 1.918712, 48.14358 ], [ 1.920403, 48.14638 ], [ 1.915328, 48.146654 ], [ 1.905183, 48.14694 ], [ 1.90323, 48.16003 ], [ 1.907925, 48.15999 ], [ 1.916563, 48.16706 ], [ 1.919554, 48.169487 ], [ 1.927115, 48.17345 ], [ 1.934758, 48.169364 ], [ 1.951887, 48.17462 ], [ 1.96628, 48.172695 ], [ 1.97055, 48.17105 ], [ 1.970035, 48.178109 ], [ 1.969347, 48.18168 ], [ 1.952285, 48.19387 ], [ 1.956429, 48.20006 ], [ 1.97085, 48.194314 ], [ 1.976462, 48.199861 ], [ 1.962595, 48.2226 ], [ 1.964442, 48.23212 ], [ 1.966607, 48.23506 ], [ 1.965343, 48.23767 ], [ 1.962064, 48.24547 ], [ 1.965943, 48.254462 ], [ 1.977882, 48.259308 ], [ 1.981399, 48.26141 ], [ 1.985726, 48.266242 ], [ 1.987876, 48.268708 ], [ 1.994521, 48.2835 ], [ 1.994085, 48.28659 ], [ 2.009276, 48.28532 ], [ 2.028994, 48.288632 ], [ 2.043236, 48.286166 ], [ 2.051468, 48.29021 ], [ 2.052708, 48.295474 ], [ 2.087542, 48.29451 ], [ 2.099895, 48.304714 ], [ 2.108709, 48.30746 ], [ 2.113717, 48.30725 ], [ 2.111702, 48.300367 ], [ 2.1106, 48.296949 ], [ 2.141159, 48.29928 ], [ 2.161589, 48.29844 ], [ 2.16239, 48.301511 ], [ 2.155435, 48.30546 ], [ 2.153878, 48.30841 ], [ 2.152668, 48.31482 ], [ 2.166995, 48.313033 ], [ 2.170835, 48.31504 ], [ 2.177842, 48.31293 ], [ 2.181484, 48.31379 ], [ 2.182947, 48.32382 ], [ 2.20709, 48.34494 ], [ 2.21469, 48.33667 ], [ 2.231822, 48.32977 ], [ 2.24631, 48.329968 ], [ 2.239599, 48.319128 ], [ 2.238047, 48.31637 ], [ 2.248218, 48.31542 ], [ 2.245229, 48.301852 ], [ 2.245157, 48.2984 ], [ 2.2501, 48.29975 ], [ 2.254851, 48.301418 ], [ 2.265536, 48.31267 ], [ 2.269118, 48.31505 ], [ 2.296706, 48.30885 ], [ 2.300208, 48.311242 ], [ 2.312424, 48.33012 ], [ 2.317182, 48.331567 ], [ 2.326154, 48.33064 ], [ 2.32931, 48.332833 ], [ 2.340362, 48.318796 ], [ 2.355802, 48.310433 ], [ 2.369945, 48.30867 ], [ 2.398936, 48.31526 ], [ 2.402664, 48.32072 ], [ 2.417749, 48.302206 ], [ 2.420762, 48.299251 ], [ 2.423098, 48.29278 ], [ 2.418346, 48.27989 ], [ 2.420109, 48.2667 ], [ 2.421716, 48.26388 ], [ 2.435639, 48.254848 ], [ 2.440144, 48.2532 ], [ 2.444509, 48.254485 ], [ 2.4518, 48.250425 ], [ 2.465405, 48.25326 ], [ 2.46909, 48.255282 ], [ 2.476787, 48.25083 ], [ 2.480612, 48.24139 ], [ 2.484178, 48.23897 ], [ 2.501745, 48.23871 ], [ 2.506192, 48.23854 ], [ 2.507345, 48.228985 ], [ 2.51535, 48.22693 ], [ 2.514119, 48.214382 ], [ 2.517404, 48.214378 ], [ 2.519932, 48.201377 ], [ 2.523011, 48.19876 ], [ 2.520296, 48.193919 ], [ 2.515406, 48.19301 ], [ 2.508843, 48.180923 ], [ 2.514911, 48.16484 ], [ 2.506327, 48.15644 ], [ 2.502032, 48.158444 ], [ 2.483238, 48.164518 ], [ 2.480872, 48.16161 ], [ 2.47185, 48.154597 ], [ 2.474045, 48.15161 ], [ 2.461097, 48.138207 ], [ 2.444256, 48.13147 ], [ 2.442692, 48.12549 ], [ 2.455859, 48.123389 ], [ 2.458954, 48.125608 ], [ 2.477562, 48.1291 ], [ 2.517284, 48.1259 ], [ 2.52221, 48.125215 ], [ 2.521724, 48.128417 ], [ 2.534395, 48.13806 ], [ 2.537505, 48.14052 ], [ 2.565815, 48.14109 ], [ 2.570563, 48.140816 ], [ 2.577868, 48.13178 ], [ 2.599014, 48.1316 ], [ 2.634454, 48.13833 ], [ 2.639666, 48.13895 ], [ 2.661585, 48.123439 ], [ 2.664748, 48.120542 ], [ 2.66757, 48.120667 ], [ 2.675484, 48.12517 ], [ 2.706547, 48.124819 ], [ 2.722461, 48.13741 ], [ 2.750335, 48.14487 ], [ 2.755198, 48.14565 ], [ 2.754255, 48.151905 ], [ 2.738384, 48.16342 ], [ 2.736406, 48.16631 ], [ 2.754682, 48.16139 ], [ 2.77668, 48.165726 ], [ 2.780977, 48.167363 ], [ 2.79024, 48.1653 ], [ 2.798959, 48.168025 ], [ 2.810918, 48.164067 ], [ 2.810418, 48.16082 ], [ 2.800412, 48.15361 ], [ 2.797907, 48.140551 ], [ 2.799465, 48.137396 ], [ 2.802391, 48.131462 ], [ 2.816334, 48.13043 ], [ 2.82088, 48.12966 ], [ 2.823316, 48.13278 ], [ 2.838308, 48.135908 ], [ 2.864438, 48.152902 ], [ 2.866823, 48.15604 ], [ 2.870991, 48.15647 ], [ 2.895207, 48.15895 ], [ 2.900047, 48.15943 ], [ 2.931137, 48.162813 ], [ 2.936314, 48.163392 ], [ 2.951969, 48.16436 ], [ 2.959952, 48.15538 ], [ 2.963612, 48.15287 ], [ 2.978176, 48.15058 ], [ 2.987615, 48.15228 ], [ 2.994044, 48.1431 ], [ 3.002138, 48.14166 ], [ 3.003886, 48.14486 ], [ 3.01323, 48.14348 ], [ 3.019049, 48.13778 ], [ 3.023122, 48.13567 ], [ 3.027273, 48.1307 ], [ 3.015884, 48.11571 ], [ 3.0351, 48.11563 ], [ 3.041212, 48.09648 ], [ 3.042902, 48.093376 ], [ 3.050194, 48.09124 ], [ 3.049882, 48.088253 ], [ 3.050471, 48.07233 ], [ 3.060278, 48.064699 ], [ 3.078932, 48.06024 ], [ 3.090345, 48.053944 ], [ 3.095365, 48.05398 ], [ 3.090536, 48.04822 ], [ 3.09762, 48.039558 ], [ 3.119731, 48.03247 ], [ 3.124263, 48.03113 ], [ 3.120648, 48.028603 ], [ 3.102176, 48.022456 ], [ 3.10115, 48.019028 ], [ 3.10657, 48.013183 ], [ 3.120845, 48.009363 ], [ 3.121123, 47.995936 ], [ 3.126676, 47.991268 ], [ 3.122989, 47.985198 ], [ 3.128498, 47.979513 ], [ 3.128119, 47.97251 ], [ 3.113425, 47.963348 ], [ 3.105272, 47.946941 ], [ 3.10076, 47.94799 ], [ 3.088683, 47.94318 ], [ 3.08394, 47.942431 ], [ 3.078743, 47.93327 ], [ 3.065214, 47.930519 ], [ 3.063161, 47.92733 ], [ 3.053812, 47.92445 ], [ 3.048244, 47.911331 ], [ 3.030666, 47.90784 ], [ 3.011818, 47.904825 ], [ 3.01543, 47.8985 ], [ 3.007226, 47.895295 ], [ 3.011491, 47.875099 ], [ 2.994904, 47.86735 ], [ 3.018188, 47.861193 ], [ 3.023297, 47.861021 ], [ 3.026906, 47.85892 ], [ 3.033824, 47.843874 ], [ 3.030665, 47.83748 ], [ 3.013874, 47.83184 ], [ 3.013992, 47.825032 ], [ 3.019403, 47.81945 ], [ 3.015473, 47.813539 ], [ 3.019882, 47.81304 ], [ 3.024344, 47.81308 ], [ 3.024263, 47.80966 ], [ 3.027584, 47.799766 ], [ 3.023798, 47.786375 ], [ 3.018803, 47.78647 ], [ 2.988902, 47.786125 ], [ 2.98045, 47.782523 ], [ 2.977353, 47.779958 ], [ 2.954511, 47.77426 ], [ 2.947189, 47.76579 ], [ 2.937484, 47.7663 ], [ 2.935592, 47.763247 ], [ 2.93056, 47.76283 ], [ 2.912915, 47.769388 ], [ 2.908379, 47.768017 ], [ 2.899667, 47.76492 ], [ 2.856477, 47.761736 ], [ 2.853882, 47.75868 ], [ 2.858407, 47.748679 ], [ 2.852539, 47.728151 ], [ 2.84865, 47.7258 ], [ 2.851135, 47.71967 ], [ 2.848969, 47.71685 ], [ 2.861175, 47.710943 ], [ 2.877733, 47.71885 ], [ 2.883507, 47.71345 ], [ 2.879661, 47.70378 ], [ 2.884065, 47.702075 ], [ 2.888655, 47.70057 ], [ 2.893098, 47.69888 ], [ 2.92416, 47.682496 ], [ 2.918155, 47.6698 ], [ 2.928231, 47.658439 ], [ 2.937223, 47.659056 ], [ 2.941581, 47.657537 ], [ 2.951156, 47.6479 ], [ 2.954234, 47.64569 ], [ 2.939684, 47.63836 ], [ 2.936158, 47.636427 ], [ 2.934061, 47.630152 ], [ 2.932321, 47.62705 ], [ 2.943619, 47.607763 ], [ 2.940355, 47.59821 ], [ 2.945698, 47.59225 ], [ 2.959327, 47.587517 ], [ 2.96487, 47.57446 ], [ 2.974821, 47.572714 ], [ 2.976538, 47.56943 ], [ 2.971791, 47.56792 ], [ 2.958658, 47.55738 ], [ 2.953843, 47.55861 ], [ 2.914297, 47.56597 ], [ 2.912958, 47.56364 ], [ 2.909374, 47.559612 ], [ 2.905814, 47.55747 ], [ 2.883392, 47.55272 ], [ 2.878366, 47.55267 ], [ 2.868583, 47.546008 ], [ 2.85663, 47.55141 ], [ 2.845187, 47.544935 ], [ 2.846885, 47.54153 ], [ 2.874625, 47.52042 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "47", "CODE_DEPT": "46", "NOM_DEPT": "LOT", "CODE_CHF": "042", "NOM_CHF": "CAHORS", "X_CHF_LIEU": "5759", "Y_CHF_LIEU": "63732", "X_CENTROID": "5893", "Y_CENTROID": "63926", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.882083, 44.340074 ], [ 1.85629, 44.332742 ], [ 1.849722, 44.335005 ], [ 1.847231, 44.337806 ], [ 1.842695, 44.33697 ], [ 1.833702, 44.33513 ], [ 1.826465, 44.32359 ], [ 1.813143, 44.327982 ], [ 1.807251, 44.33324 ], [ 1.805975, 44.336637 ], [ 1.801818, 44.3357 ], [ 1.793744, 44.333749 ], [ 1.79125, 44.327762 ], [ 1.783485, 44.327847 ], [ 1.787993, 44.32172 ], [ 1.78237, 44.316122 ], [ 1.773271, 44.314203 ], [ 1.759546, 44.323177 ], [ 1.740904, 44.326297 ], [ 1.73309, 44.317897 ], [ 1.706266, 44.312508 ], [ 1.702321, 44.314505 ], [ 1.698485, 44.31283 ], [ 1.675551, 44.29785 ], [ 1.671104, 44.29826 ], [ 1.670328, 44.293399 ], [ 1.669676, 44.290735 ], [ 1.665366, 44.291187 ], [ 1.659487, 44.28326 ], [ 1.655897, 44.28512 ], [ 1.651059, 44.296711 ], [ 1.646736, 44.295064 ], [ 1.637352, 44.297001 ], [ 1.634017, 44.294934 ], [ 1.650018, 44.28304 ], [ 1.644042, 44.27354 ], [ 1.636036, 44.2699 ], [ 1.615631, 44.2784 ], [ 1.616652, 44.29767 ], [ 1.612038, 44.296711 ], [ 1.602525, 44.29617 ], [ 1.596701, 44.301522 ], [ 1.587527, 44.301432 ], [ 1.583253, 44.29988 ], [ 1.573875, 44.300958 ], [ 1.570705, 44.298396 ], [ 1.575434, 44.285305 ], [ 1.564456, 44.278851 ], [ 1.576671, 44.26947 ], [ 1.58079, 44.259581 ], [ 1.585916, 44.250942 ], [ 1.582443, 44.24556 ], [ 1.578933, 44.24369 ], [ 1.57292, 44.2353 ], [ 1.546054, 44.23018 ], [ 1.541735, 44.22871 ], [ 1.530026, 44.23459 ], [ 1.526928, 44.237212 ], [ 1.518156, 44.25233 ], [ 1.524087, 44.26122 ], [ 1.511915, 44.271094 ], [ 1.508952, 44.273709 ], [ 1.504077, 44.273265 ], [ 1.489859, 44.27216 ], [ 1.481934, 44.280839 ], [ 1.473534, 44.284216 ], [ 1.463113, 44.26918 ], [ 1.454513, 44.26613 ], [ 1.452071, 44.255988 ], [ 1.430319, 44.24309 ], [ 1.425752, 44.242029 ], [ 1.423051, 44.242774 ], [ 1.419793, 44.240602 ], [ 1.394161, 44.228986 ], [ 1.389259, 44.22875 ], [ 1.370509, 44.217636 ], [ 1.35715, 44.203023 ], [ 1.337985, 44.22666 ], [ 1.316172, 44.23097 ], [ 1.303104, 44.2283 ], [ 1.285965, 44.23448 ], [ 1.281318, 44.23534 ], [ 1.283518, 44.23793 ], [ 1.284393, 44.252516 ], [ 1.288709, 44.253943 ], [ 1.302983, 44.262511 ], [ 1.30288, 44.269315 ], [ 1.294544, 44.271923 ], [ 1.304016, 44.294191 ], [ 1.299992, 44.295011 ], [ 1.282704, 44.29009 ], [ 1.272716, 44.28264 ], [ 1.258367, 44.28299 ], [ 1.255351, 44.285687 ], [ 1.253224, 44.28274 ], [ 1.250491, 44.26974 ], [ 1.24419, 44.26604 ], [ 1.242612, 44.26925 ], [ 1.238265, 44.275294 ], [ 1.225198, 44.27918 ], [ 1.213001, 44.270934 ], [ 1.203287, 44.28248 ], [ 1.195068, 44.282012 ], [ 1.188983, 44.286918 ], [ 1.184412, 44.2868 ], [ 1.180887, 44.28885 ], [ 1.17746, 44.294831 ], [ 1.178986, 44.310559 ], [ 1.175529, 44.3085 ], [ 1.168975, 44.304108 ], [ 1.15957, 44.30992 ], [ 1.151415, 44.30739 ], [ 1.135027, 44.31689 ], [ 1.130534, 44.316985 ], [ 1.122866, 44.31566 ], [ 1.120364, 44.3181 ], [ 1.10939, 44.324871 ], [ 1.114707, 44.33775 ], [ 1.100694, 44.347087 ], [ 1.083658, 44.35139 ], [ 1.081223, 44.35439 ], [ 1.085842, 44.35546 ], [ 1.093797, 44.36784 ], [ 1.130922, 44.372159 ], [ 1.134424, 44.37446 ], [ 1.132599, 44.384514 ], [ 1.132478, 44.393876 ], [ 1.106685, 44.39235 ], [ 1.10233, 44.391893 ], [ 1.098001, 44.3903 ], [ 1.082963, 44.38159 ], [ 1.064084, 44.37851 ], [ 1.059579, 44.3909 ], [ 1.051168, 44.392269 ], [ 1.058599, 44.3997 ], [ 1.061688, 44.401928 ], [ 1.059949, 44.405022 ], [ 1.06145, 44.41474 ], [ 1.057488, 44.427679 ], [ 1.051011, 44.43041 ], [ 1.047182, 44.43103 ], [ 1.045005, 44.43401 ], [ 1.031175, 44.433092 ], [ 1.031241, 44.43951 ], [ 1.021679, 44.4466 ], [ 1.02099, 44.45624 ], [ 1.025025, 44.465633 ], [ 1.022472, 44.4721 ], [ 1.023009, 44.47544 ], [ 1.012236, 44.47851 ], [ 1.009025, 44.48005 ], [ 1.014987, 44.489721 ], [ 1.016272, 44.50364 ], [ 0.999969, 44.5252 ], [ 0.989453, 44.5324 ], [ 0.98846, 44.53943 ], [ 0.98152, 44.544441 ], [ 0.993167, 44.549408 ], [ 1.006567, 44.54762 ], [ 1.011873, 44.539265 ], [ 1.013166, 44.53614 ], [ 1.036748, 44.55605 ], [ 1.040809, 44.557693 ], [ 1.042312, 44.55793 ], [ 1.053195, 44.56377 ], [ 1.06723, 44.565525 ], [ 1.073639, 44.57408 ], [ 1.075141, 44.57732 ], [ 1.076483, 44.57417 ], [ 1.085075, 44.57195 ], [ 1.098607, 44.57189 ], [ 1.10321, 44.57174 ], [ 1.099504, 44.580043 ], [ 1.103467, 44.58097 ], [ 1.096152, 44.593124 ], [ 1.107396, 44.603961 ], [ 1.123622, 44.614828 ], [ 1.127289, 44.616772 ], [ 1.146642, 44.63136 ], [ 1.150893, 44.632856 ], [ 1.15255, 44.63618 ], [ 1.146516, 44.65285 ], [ 1.149825, 44.655027 ], [ 1.146901, 44.66758 ], [ 1.146733, 44.670797 ], [ 1.161061, 44.672964 ], [ 1.166974, 44.67859 ], [ 1.180561, 44.682687 ], [ 1.219796, 44.68332 ], [ 1.22455, 44.68427 ], [ 1.224707, 44.68571 ], [ 1.230001, 44.69115 ], [ 1.242933, 44.694636 ], [ 1.244638, 44.70475 ], [ 1.261542, 44.71018 ], [ 1.268091, 44.71896 ], [ 1.270041, 44.72209 ], [ 1.282721, 44.7151 ], [ 1.287021, 44.71446 ], [ 1.299421, 44.731674 ], [ 1.297181, 44.73806 ], [ 1.30019, 44.744284 ], [ 1.312139, 44.74149 ], [ 1.316051, 44.740375 ], [ 1.321535, 44.761097 ], [ 1.308133, 44.7709 ], [ 1.303951, 44.7725 ], [ 1.297154, 44.77697 ], [ 1.303806, 44.785691 ], [ 1.30262, 44.78896 ], [ 1.293311, 44.789852 ], [ 1.301166, 44.797744 ], [ 1.321845, 44.804111 ], [ 1.325507, 44.806012 ], [ 1.352501, 44.808578 ], [ 1.356551, 44.81025 ], [ 1.360244, 44.81116 ], [ 1.364103, 44.811568 ], [ 1.360801, 44.83889 ], [ 1.365459, 44.84497 ], [ 1.378341, 44.84335 ], [ 1.388593, 44.849992 ], [ 1.402507, 44.849049 ], [ 1.402862, 44.85081 ], [ 1.405462, 44.86314 ], [ 1.409292, 44.864725 ], [ 1.411446, 44.87271 ], [ 1.414009, 44.871655 ], [ 1.416778, 44.8709 ], [ 1.431431, 44.87177 ], [ 1.439858, 44.875245 ], [ 1.442178, 44.87835 ], [ 1.442508, 44.881063 ], [ 1.439857, 44.888951 ], [ 1.435732, 44.889676 ], [ 1.421836, 44.89641 ], [ 1.419672, 44.899003 ], [ 1.418269, 44.907448 ], [ 1.410526, 44.908788 ], [ 1.423629, 44.918268 ], [ 1.441562, 44.918782 ], [ 1.4331, 44.937214 ], [ 1.433462, 44.946044 ], [ 1.428611, 44.946309 ], [ 1.41899, 44.95828 ], [ 1.419568, 44.968397 ], [ 1.414261, 44.97391 ], [ 1.414987, 44.993566 ], [ 1.40913, 45.00673 ], [ 1.433023, 45.01077 ], [ 1.448262, 45.019313 ], [ 1.460357, 45.01397 ], [ 1.477292, 45.020092 ], [ 1.477131, 45.02692 ], [ 1.47993, 45.026756 ], [ 1.5058, 45.039498 ], [ 1.522661, 45.042659 ], [ 1.526759, 45.04428 ], [ 1.540315, 45.04467 ], [ 1.543942, 45.03125 ], [ 1.55204, 45.02847 ], [ 1.57097, 45.03956 ], [ 1.603883, 45.03535 ], [ 1.608069, 45.03353 ], [ 1.608959, 45.02889 ], [ 1.60956, 45.032305 ], [ 1.627746, 45.03332 ], [ 1.63238, 45.03233 ], [ 1.64737, 45.025837 ], [ 1.651891, 45.025288 ], [ 1.653199, 45.018955 ], [ 1.671411, 45.004307 ], [ 1.680078, 45.003329 ], [ 1.684371, 45.00266 ], [ 1.689269, 44.994604 ], [ 1.692273, 44.992577 ], [ 1.700373, 44.98916 ], [ 1.703377, 44.98657 ], [ 1.707508, 44.972512 ], [ 1.708767, 44.96964 ], [ 1.71088, 44.96709 ], [ 1.712968, 44.967326 ], [ 1.726256, 44.967011 ], [ 1.736182, 44.96053 ], [ 1.740734, 44.96058 ], [ 1.748795, 44.95683 ], [ 1.755329, 44.944135 ], [ 1.753982, 44.940851 ], [ 1.750554, 44.93879 ], [ 1.76701, 44.933045 ], [ 1.771447, 44.92727 ], [ 1.774029, 44.92453 ], [ 1.774608, 44.92354 ], [ 1.777453, 44.926209 ], [ 1.784546, 44.93052 ], [ 1.785701, 44.936906 ], [ 1.788603, 44.934606 ], [ 1.801468, 44.92641 ], [ 1.800167, 44.92029 ], [ 1.800798, 44.92038 ], [ 1.810042, 44.92795 ], [ 1.819741, 44.92722 ], [ 1.827628, 44.93073 ], [ 1.829361, 44.933962 ], [ 1.831572, 44.94342 ], [ 1.83589, 44.944323 ], [ 1.838527, 44.93818 ], [ 1.842772, 44.937083 ], [ 1.848412, 44.943958 ], [ 1.851053, 44.94625 ], [ 1.887091, 44.95634 ], [ 1.888368, 44.96292 ], [ 1.907779, 44.978243 ], [ 1.927179, 44.978801 ], [ 1.936522, 44.973164 ], [ 1.94015, 44.97184 ], [ 1.941333, 44.958208 ], [ 1.946191, 44.95348 ], [ 1.95099, 44.953158 ], [ 1.9566, 44.95901 ], [ 1.984336, 44.973719 ], [ 2.008268, 44.976231 ], [ 2.040848, 44.98198 ], [ 2.045121, 44.98367 ], [ 2.058581, 44.97541 ], [ 2.062914, 44.976506 ], [ 2.079176, 44.954969 ], [ 2.080703, 44.95158 ], [ 2.076351, 44.934785 ], [ 2.102335, 44.919916 ], [ 2.105115, 44.91332 ], [ 2.10811, 44.910598 ], [ 2.085432, 44.898772 ], [ 2.084512, 44.888373 ], [ 2.09351, 44.87237 ], [ 2.097414, 44.87057 ], [ 2.117213, 44.848255 ], [ 2.127146, 44.84358 ], [ 2.127673, 44.840631 ], [ 2.136778, 44.826242 ], [ 2.139801, 44.823825 ], [ 2.144397, 44.823528 ], [ 2.16629, 44.81207 ], [ 2.166053, 44.79902 ], [ 2.169115, 44.792941 ], [ 2.171633, 44.790258 ], [ 2.169882, 44.784663 ], [ 2.168506, 44.781934 ], [ 2.164663, 44.77259 ], [ 2.155249, 44.77155 ], [ 2.150975, 44.770024 ], [ 2.149147, 44.7697 ], [ 2.148908, 44.76629 ], [ 2.153492, 44.75311 ], [ 2.154692, 44.74974 ], [ 2.148087, 44.72285 ], [ 2.133279, 44.709356 ], [ 2.130064, 44.6993 ], [ 2.132873, 44.697189 ], [ 2.138291, 44.69288 ], [ 2.142949, 44.6937 ], [ 2.154666, 44.699366 ], [ 2.158546, 44.697352 ], [ 2.179152, 44.674449 ], [ 2.176251, 44.67183 ], [ 2.16601, 44.66129 ], [ 2.169023, 44.65883 ], [ 2.173735, 44.653251 ], [ 2.169541, 44.6477 ], [ 2.169419, 44.63798 ], [ 2.172326, 44.63578 ], [ 2.176555, 44.63547 ], [ 2.204864, 44.618394 ], [ 2.207475, 44.615532 ], [ 2.209251, 44.605731 ], [ 2.197709, 44.600318 ], [ 2.198334, 44.593561 ], [ 2.193314, 44.587763 ], [ 2.185813, 44.59071 ], [ 2.169815, 44.59141 ], [ 2.169552, 44.59132 ], [ 2.166655, 44.5887 ], [ 2.152562, 44.571586 ], [ 2.14808, 44.570651 ], [ 2.13433, 44.57037 ], [ 2.126954, 44.578256 ], [ 2.11629, 44.573102 ], [ 2.104023, 44.571473 ], [ 2.098323, 44.57582 ], [ 2.095353, 44.57801 ], [ 2.079834, 44.585022 ], [ 2.064612, 44.56775 ], [ 2.061247, 44.569389 ], [ 2.06364, 44.579268 ], [ 2.055083, 44.58027 ], [ 2.035452, 44.570211 ], [ 2.032878, 44.560204 ], [ 2.028857, 44.55823 ], [ 2.02803, 44.558001 ], [ 2.023677, 44.556333 ], [ 2.004211, 44.55696 ], [ 1.984239, 44.54726 ], [ 1.979555, 44.54102 ], [ 1.973838, 44.53561 ], [ 1.971753, 44.532553 ], [ 1.97072, 44.529176 ], [ 1.957918, 44.519044 ], [ 1.948186, 44.517304 ], [ 1.943408, 44.51711 ], [ 1.928272, 44.50508 ], [ 1.918913, 44.50437 ], [ 1.911268, 44.50287 ], [ 1.919767, 44.48867 ], [ 1.916454, 44.486324 ], [ 1.908117, 44.488196 ], [ 1.905072, 44.501274 ], [ 1.892546, 44.505578 ], [ 1.887907, 44.5048 ], [ 1.881928, 44.483945 ], [ 1.877448, 44.4841 ], [ 1.873307, 44.48432 ], [ 1.861576, 44.48732 ], [ 1.839964, 44.479604 ], [ 1.839533, 44.476098 ], [ 1.845965, 44.470817 ], [ 1.847655, 44.46751 ], [ 1.851868, 44.461246 ], [ 1.848247, 44.447676 ], [ 1.85067, 44.43731 ], [ 1.873186, 44.42414 ], [ 1.87332, 44.423691 ], [ 1.870881, 44.42065 ], [ 1.874271, 44.406866 ], [ 1.868875, 44.397213 ], [ 1.874402, 44.39144 ], [ 1.891429, 44.37913 ], [ 1.896363, 44.36943 ], [ 1.908239, 44.363419 ], [ 1.910045, 44.36019 ], [ 1.910827, 44.356738 ], [ 1.905909, 44.350856 ], [ 1.891626, 44.351766 ], [ 1.884697, 44.343009 ], [ 1.882083, 44.340074 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "48", "CODE_DEPT": "47", "NOM_DEPT": "LOT-ET-GARONNE", "CODE_CHF": "001", "NOM_CHF": "AGEN", "X_CHF_LIEU": "5097", "Y_CHF_LIEU": "63477", "X_CENTROID": "4976", "Y_CENTROID": "63664", "CODE_REG": "72", "NOM_REGION": "AQUITAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.741635, 44.0652 ], [ 0.738933, 44.062491 ], [ 0.717115, 44.05759 ], [ 0.707923, 44.05829 ], [ 0.704967, 44.055725 ], [ 0.694547, 44.045124 ], [ 0.682755, 44.04224 ], [ 0.679586, 44.029348 ], [ 0.676267, 44.026883 ], [ 0.662534, 44.024582 ], [ 0.65417, 44.032849 ], [ 0.652847, 44.042833 ], [ 0.632705, 44.04963 ], [ 0.631509, 44.052863 ], [ 0.622547, 44.064176 ], [ 0.599327, 44.07495 ], [ 0.601222, 44.07801 ], [ 0.584703, 44.07726 ], [ 0.576884, 44.07345 ], [ 0.567315, 44.061234 ], [ 0.55874, 44.05822 ], [ 0.54609, 44.05623 ], [ 0.538427, 44.052952 ], [ 0.535071, 44.055209 ], [ 0.522484, 44.056951 ], [ 0.51158, 44.06274 ], [ 0.504717, 44.050667 ], [ 0.503819, 44.05377 ], [ 0.497471, 44.05758 ], [ 0.488817, 44.056463 ], [ 0.485697, 44.058687 ], [ 0.485403, 44.055439 ], [ 0.459759, 44.055378 ], [ 0.45866, 44.052579 ], [ 0.450621, 44.046404 ], [ 0.450312, 44.04438 ], [ 0.447452, 44.041621 ], [ 0.44245, 44.02876 ], [ 0.437588, 44.02919 ], [ 0.418874, 44.02821 ], [ 0.412024, 44.023499 ], [ 0.397883, 44.02188 ], [ 0.382444, 44.008342 ], [ 0.372908, 44.008429 ], [ 0.35707, 44.01553 ], [ 0.32475, 44.00785 ], [ 0.31548, 44.00997 ], [ 0.31486, 44.00671 ], [ 0.318026, 43.997245 ], [ 0.305493, 43.993992 ], [ 0.302772, 43.991395 ], [ 0.28235, 43.998 ], [ 0.273552, 43.998054 ], [ 0.27114, 44.00102 ], [ 0.259824, 44.005699 ], [ 0.250636, 44.004261 ], [ 0.232995, 44.00939 ], [ 0.232775, 44.02239 ], [ 0.229143, 44.02136 ], [ 0.218721, 44.02113 ], [ 0.214734, 44.02279 ], [ 0.201762, 44.014234 ], [ 0.193466, 44.01369 ], [ 0.189807, 44.015008 ], [ 0.18114, 44.002528 ], [ 0.165747, 43.99445 ], [ 0.164053, 43.977096 ], [ 0.161035, 43.97435 ], [ 0.156784, 43.972809 ], [ 0.138625, 43.97659 ], [ 0.141, 43.993642 ], [ 0.126847, 44.001926 ], [ 0.127415, 43.998581 ], [ 0.107388, 43.985382 ], [ 0.093313, 43.98574 ], [ 0.080372, 43.98172 ], [ 0.076046, 43.98314 ], [ 0.062955, 44.001183 ], [ 0.061182, 44.014743 ], [ 0.062234, 44.018077 ], [ 0.061593, 44.02154 ], [ 0.060223, 44.02488 ], [ 0.0698, 44.02578 ], [ 0.076223, 44.030736 ], [ 0.087468, 44.063972 ], [ 0.094951, 44.06836 ], [ 0.102105, 44.08339 ], [ 0.100821, 44.08677 ], [ 0.124151, 44.10502 ], [ 0.136803, 44.11043 ], [ 0.135858, 44.113559 ], [ 0.131824, 44.11919 ], [ 0.135797, 44.124194 ], [ 0.130969, 44.124482 ], [ 0.034594, 44.130652 ], [ 0.032018, 44.13352 ], [ -0.003539, 44.1499 ], [ -0.00379, 44.149918 ], [ -0.055166, 44.1508 ], [ -0.059859, 44.150826 ], [ -0.064434, 44.151914 ], [ -0.08775, 44.155989 ], [ -0.106561, 44.154944 ], [ -0.114737, 44.15141 ], [ -0.129155, 44.15241 ], [ -0.129202, 44.156 ], [ -0.129643, 44.20261 ], [ -0.140689, 44.22641 ], [ -0.136872, 44.228289 ], [ -0.125932, 44.23437 ], [ -0.123182, 44.240651 ], [ -0.119197, 44.238809 ], [ -0.11373, 44.233713 ], [ -0.104834, 44.231884 ], [ -0.08848, 44.238471 ], [ -0.073116, 44.251387 ], [ -0.066808, 44.246663 ], [ -0.064197, 44.249132 ], [ -0.053362, 44.265774 ], [ -0.049627, 44.267886 ], [ -0.033608, 44.27401 ], [ -0.042888, 44.293206 ], [ -0.034811, 44.29673 ], [ -0.03762, 44.299513 ], [ -0.057226, 44.31908 ], [ -0.077776, 44.332654 ], [ -0.080414, 44.334319 ], [ -0.085752, 44.33761 ], [ -0.080176, 44.350477 ], [ -0.078819, 44.35369 ], [ -0.069523, 44.35313 ], [ -0.059259, 44.35998 ], [ -0.040758, 44.360123 ], [ -0.036189, 44.36084 ], [ -0.032446, 44.360821 ], [ -0.028821, 44.36019 ], [ -0.011159, 44.37138 ], [ -0.001647, 44.37223 ], [ 0.009942, 44.367052 ], [ 0.014725, 44.366615 ], [ 0.021233, 44.375385 ], [ 0.010834, 44.38133 ], [ 0.016519, 44.386175 ], [ 0.018292, 44.38925 ], [ 0.015794, 44.3916 ], [ 0.006621, 44.397338 ], [ -0.011765, 44.420303 ], [ -0.005018, 44.424379 ], [ -0.007568, 44.433813 ], [ -0.002954, 44.442578 ], [ 0.004788, 44.44501 ], [ 0.007509, 44.44754 ], [ 0.004494, 44.456735 ], [ -0.002912, 44.460254 ], [ -0.007298, 44.459224 ], [ -0.013816, 44.46682 ], [ -0.016043, 44.489705 ], [ -0.01614, 44.501657 ], [ -0.015565, 44.504789 ], [ -0.004197, 44.51732 ], [ -0.00018, 44.518254 ], [ 0.001465, 44.520722 ], [ 0.00482, 44.522038 ], [ 0.009506, 44.521994 ], [ 0.017923, 44.53001 ], [ -0.00109, 44.548408 ], [ -0.001017, 44.55177 ], [ 0.016807, 44.54255 ], [ 0.020984, 44.54146 ], [ 0.029028, 44.548493 ], [ 0.032713, 44.55052 ], [ 0.03787, 44.554037 ], [ 0.064973, 44.55035 ], [ 0.068687, 44.54822 ], [ 0.072357, 44.550318 ], [ 0.074869, 44.560195 ], [ 0.082973, 44.567949 ], [ 0.085548, 44.57763 ], [ 0.082236, 44.58391 ], [ 0.105528, 44.58912 ], [ 0.110282, 44.59008 ], [ 0.113766, 44.59173 ], [ 0.11663, 44.593895 ], [ 0.117433, 44.59422 ], [ 0.133128, 44.606162 ], [ 0.146241, 44.608429 ], [ 0.150858, 44.608647 ], [ 0.154363, 44.614908 ], [ 0.139263, 44.627148 ], [ 0.13842, 44.63903 ], [ 0.141194, 44.641315 ], [ 0.146378, 44.635359 ], [ 0.160289, 44.632717 ], [ 0.165214, 44.632862 ], [ 0.168345, 44.64613 ], [ 0.173909, 44.651696 ], [ 0.17697, 44.65432 ], [ 0.181612, 44.65866 ], [ 0.183025, 44.661189 ], [ 0.180463, 44.664214 ], [ 0.167618, 44.668372 ], [ 0.163123, 44.67041 ], [ 0.159392, 44.66854 ], [ 0.142061, 44.66576 ], [ 0.133519, 44.667908 ], [ 0.130842, 44.673622 ], [ 0.133947, 44.679351 ], [ 0.134422, 44.682417 ], [ 0.129759, 44.683233 ], [ 0.115539, 44.68227 ], [ 0.107043, 44.68542 ], [ 0.100345, 44.70098 ], [ 0.105026, 44.701823 ], [ 0.11051, 44.71064 ], [ 0.119915, 44.71202 ], [ 0.128047, 44.70839 ], [ 0.130843, 44.70558 ], [ 0.136039, 44.71121 ], [ 0.139344, 44.72771 ], [ 0.141197, 44.73751 ], [ 0.15262, 44.73082 ], [ 0.161358, 44.73348 ], [ 0.164495, 44.73569 ], [ 0.172701, 44.73461 ], [ 0.178386, 44.742716 ], [ 0.180434, 44.745498 ], [ 0.184529, 44.74903 ], [ 0.18941, 44.74877 ], [ 0.193916, 44.74257 ], [ 0.200062, 44.72576 ], [ 0.201542, 44.72243 ], [ 0.218632, 44.72663 ], [ 0.211863, 44.739564 ], [ 0.218306, 44.75623 ], [ 0.224972, 44.76104 ], [ 0.226601, 44.764158 ], [ 0.235944, 44.76419 ], [ 0.249122, 44.751225 ], [ 0.267506, 44.751698 ], [ 0.271682, 44.75319 ], [ 0.296565, 44.75916 ], [ 0.297325, 44.76229 ], [ 0.303376, 44.75898 ], [ 0.307009, 44.758097 ], [ 0.336793, 44.735477 ], [ 0.341042, 44.725526 ], [ 0.34502, 44.72342 ], [ 0.347345, 44.720489 ], [ 0.347871, 44.710395 ], [ 0.343484, 44.709136 ], [ 0.341479, 44.70237 ], [ 0.356731, 44.694158 ], [ 0.359541, 44.69132 ], [ 0.350448, 44.674965 ], [ 0.349598, 44.660847 ], [ 0.351812, 44.65562 ], [ 0.355528, 44.65496 ], [ 0.36662, 44.6612 ], [ 0.37674, 44.65393 ], [ 0.39101, 44.654527 ], [ 0.416954, 44.64521 ], [ 0.429293, 44.65074 ], [ 0.447578, 44.654082 ], [ 0.451989, 44.655588 ], [ 0.467953, 44.666809 ], [ 0.47053, 44.66958 ], [ 0.488043, 44.666907 ], [ 0.495626, 44.669808 ], [ 0.516743, 44.67811 ], [ 0.521659, 44.67858 ], [ 0.530741, 44.67673 ], [ 0.534406, 44.67461 ], [ 0.538778, 44.66844 ], [ 0.546558, 44.66515 ], [ 0.562454, 44.6723 ], [ 0.567171, 44.671513 ], [ 0.576468, 44.693063 ], [ 0.58749, 44.698699 ], [ 0.591392, 44.696938 ], [ 0.616758, 44.69343 ], [ 0.620018, 44.691297 ], [ 0.623614, 44.69315 ], [ 0.621799, 44.699352 ], [ 0.627378, 44.704218 ], [ 0.63036, 44.70657 ], [ 0.644297, 44.70432 ], [ 0.65546, 44.693432 ], [ 0.655629, 44.68998 ], [ 0.657142, 44.68701 ], [ 0.657434, 44.67786 ], [ 0.680587, 44.67628 ], [ 0.685312, 44.675561 ], [ 0.692439, 44.676619 ], [ 0.696058, 44.67701 ], [ 0.724522, 44.677041 ], [ 0.729134, 44.67599 ], [ 0.746133, 44.68175 ], [ 0.760052, 44.680305 ], [ 0.763141, 44.689924 ], [ 0.783217, 44.684113 ], [ 0.787299, 44.68529 ], [ 0.788386, 44.695241 ], [ 0.79947, 44.700775 ], [ 0.817888, 44.696709 ], [ 0.82861, 44.68977 ], [ 0.831074, 44.68317 ], [ 0.829354, 44.68062 ], [ 0.825838, 44.6759 ], [ 0.83544, 44.670422 ], [ 0.848411, 44.67017 ], [ 0.852444, 44.668979 ], [ 0.84865, 44.667221 ], [ 0.84337, 44.66272 ], [ 0.843061, 44.656287 ], [ 0.835063, 44.653294 ], [ 0.835656, 44.636879 ], [ 0.817004, 44.62701 ], [ 0.825021, 44.62122 ], [ 0.826465, 44.61516 ], [ 0.82929, 44.612852 ], [ 0.837936, 44.614922 ], [ 0.835146, 44.6022 ], [ 0.853389, 44.59948 ], [ 0.857727, 44.598106 ], [ 0.865974, 44.598013 ], [ 0.869996, 44.59732 ], [ 0.876301, 44.613963 ], [ 0.895557, 44.61593 ], [ 0.907453, 44.62186 ], [ 0.911162, 44.62317 ], [ 0.914685, 44.624745 ], [ 0.926654, 44.635 ], [ 0.939393, 44.63981 ], [ 0.944179, 44.640355 ], [ 0.966655, 44.636195 ], [ 0.977296, 44.642992 ], [ 0.995923, 44.632821 ], [ 0.997505, 44.62949 ], [ 1.012502, 44.61583 ], [ 1.029019, 44.60966 ], [ 1.033401, 44.608369 ], [ 1.046781, 44.604959 ], [ 1.056876, 44.59771 ], [ 1.071021, 44.596119 ], [ 1.077766, 44.583845 ], [ 1.075141, 44.57732 ], [ 1.073639, 44.57408 ], [ 1.06723, 44.565525 ], [ 1.053195, 44.56377 ], [ 1.042312, 44.55793 ], [ 1.040809, 44.557693 ], [ 1.036748, 44.55605 ], [ 1.013166, 44.53614 ], [ 1.011873, 44.539265 ], [ 1.006567, 44.54762 ], [ 0.993167, 44.549408 ], [ 0.98152, 44.544441 ], [ 0.98846, 44.53943 ], [ 0.989453, 44.5324 ], [ 0.999969, 44.5252 ], [ 1.016272, 44.50364 ], [ 1.014987, 44.489721 ], [ 1.009025, 44.48005 ], [ 1.012236, 44.47851 ], [ 1.023009, 44.47544 ], [ 1.022472, 44.4721 ], [ 1.025025, 44.465633 ], [ 1.02099, 44.45624 ], [ 1.021679, 44.4466 ], [ 1.031241, 44.43951 ], [ 1.031175, 44.433092 ], [ 1.045005, 44.43401 ], [ 1.047182, 44.43103 ], [ 1.051011, 44.43041 ], [ 1.057488, 44.427679 ], [ 1.06145, 44.41474 ], [ 1.059949, 44.405022 ], [ 1.061688, 44.401928 ], [ 1.058599, 44.3997 ], [ 1.051168, 44.392269 ], [ 1.059579, 44.3909 ], [ 1.064084, 44.37851 ], [ 1.060473, 44.36626 ], [ 1.04722, 44.36257 ], [ 1.024678, 44.366855 ], [ 1.022266, 44.36406 ], [ 1.004384, 44.3657 ], [ 0.996705, 44.36915 ], [ 0.993497, 44.36652 ], [ 0.978586, 44.358049 ], [ 0.969794, 44.36102 ], [ 0.950506, 44.359519 ], [ 0.944146, 44.35426 ], [ 0.942382, 44.34442 ], [ 0.941254, 44.344399 ], [ 0.940563, 44.34785 ], [ 0.937285, 44.36861 ], [ 0.923647, 44.37801 ], [ 0.919845, 44.38442 ], [ 0.915224, 44.384097 ], [ 0.910846, 44.38296 ], [ 0.906666, 44.382224 ], [ 0.895341, 44.37918 ], [ 0.893959, 44.37312 ], [ 0.891334, 44.37046 ], [ 0.88732, 44.364646 ], [ 0.893363, 44.35607 ], [ 0.892011, 44.349914 ], [ 0.896113, 44.346228 ], [ 0.894805, 44.343286 ], [ 0.883328, 44.328379 ], [ 0.879503, 44.327342 ], [ 0.873272, 44.323574 ], [ 0.874884, 44.32072 ], [ 0.869445, 44.309255 ], [ 0.8838, 44.30769 ], [ 0.891142, 44.298742 ], [ 0.895067, 44.296701 ], [ 0.912026, 44.300914 ], [ 0.91643, 44.302204 ], [ 0.921475, 44.294196 ], [ 0.923515, 44.29157 ], [ 0.946024, 44.27511 ], [ 0.950788, 44.275072 ], [ 0.948841, 44.27207 ], [ 0.940855, 44.26422 ], [ 0.927782, 44.26741 ], [ 0.932795, 44.251252 ], [ 0.91909, 44.23827 ], [ 0.92851, 44.233064 ], [ 0.929239, 44.23025 ], [ 0.903111, 44.19005 ], [ 0.898525, 44.190904 ], [ 0.860992, 44.192979 ], [ 0.859687, 44.19274 ], [ 0.857793, 44.189864 ], [ 0.853675, 44.18425 ], [ 0.853632, 44.174782 ], [ 0.863912, 44.173569 ], [ 0.870138, 44.169 ], [ 0.882074, 44.17363 ], [ 0.890008, 44.17022 ], [ 0.889794, 44.16688 ], [ 0.888106, 44.163836 ], [ 0.888351, 44.14881 ], [ 0.894084, 44.14023 ], [ 0.892066, 44.13733 ], [ 0.883987, 44.140094 ], [ 0.880236, 44.131711 ], [ 0.869092, 44.126516 ], [ 0.857814, 44.127575 ], [ 0.855079, 44.13049 ], [ 0.820491, 44.14314 ], [ 0.796556, 44.14512 ], [ 0.787733, 44.14276 ], [ 0.795082, 44.133498 ], [ 0.797565, 44.130387 ], [ 0.793165, 44.118458 ], [ 0.798588, 44.110104 ], [ 0.795242, 44.11227 ], [ 0.78192, 44.112919 ], [ 0.775041, 44.11688 ], [ 0.773071, 44.113883 ], [ 0.754273, 44.10475 ], [ 0.748003, 44.093292 ], [ 0.747761, 44.08648 ], [ 0.739874, 44.0781 ], [ 0.737992, 44.071404 ], [ 0.741635, 44.0652 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "49", "CODE_DEPT": "48", "NOM_DEPT": "LOZERE", "CODE_CHF": "095", "NOM_CHF": "MENDE", "X_CHF_LIEU": "7397", "Y_CHF_LIEU": "63800", "X_CENTROID": "7397", "Y_CENTROID": "63799", "CODE_REG": "91", "NOM_REGION": "LANGUEDOC-ROUSSILLON" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.998163, 44.4598 ], [ 3.97596, 44.44281 ], [ 3.97269, 44.436798 ], [ 3.973044, 44.426721 ], [ 3.971719, 44.426382 ], [ 3.961269, 44.414662 ], [ 3.949196, 44.409249 ], [ 3.948916, 44.402319 ], [ 3.91645, 44.405052 ], [ 3.908506, 44.40305 ], [ 3.901542, 44.395533 ], [ 3.900416, 44.392617 ], [ 3.898558, 44.39026 ], [ 3.888695, 44.392964 ], [ 3.885817, 44.387973 ], [ 3.889107, 44.385606 ], [ 3.911307, 44.37033 ], [ 3.925013, 44.352713 ], [ 3.925008, 44.34629 ], [ 3.937635, 44.33606 ], [ 3.947017, 44.335359 ], [ 3.952361, 44.330154 ], [ 3.948819, 44.32385 ], [ 3.948083, 44.32706 ], [ 3.943704, 44.317887 ], [ 3.922859, 44.305227 ], [ 3.924943, 44.300825 ], [ 3.932937, 44.29677 ], [ 3.939236, 44.287345 ], [ 3.94003, 44.283873 ], [ 3.934303, 44.27545 ], [ 3.946764, 44.266892 ], [ 3.949688, 44.26943 ], [ 3.958546, 44.270975 ], [ 3.969227, 44.264778 ], [ 3.974753, 44.25972 ], [ 3.971123, 44.250395 ], [ 3.966919, 44.249865 ], [ 3.954741, 44.24958 ], [ 3.946433, 44.24101 ], [ 3.950924, 44.21687 ], [ 3.947255, 44.215983 ], [ 3.946248, 44.212661 ], [ 3.938574, 44.19664 ], [ 3.959222, 44.19088 ], [ 3.958795, 44.18412 ], [ 3.96595, 44.171613 ], [ 3.969842, 44.172461 ], [ 3.975587, 44.169809 ], [ 3.974117, 44.16433 ], [ 3.969452, 44.165047 ], [ 3.932865, 44.1804 ], [ 3.923699, 44.18135 ], [ 3.927275, 44.1613 ], [ 3.911601, 44.16012 ], [ 3.910617, 44.150258 ], [ 3.907391, 44.14785 ], [ 3.898477, 44.148621 ], [ 3.894317, 44.14717 ], [ 3.872731, 44.12867 ], [ 3.832118, 44.13733 ], [ 3.828468, 44.136436 ], [ 3.820249, 44.13245 ], [ 3.816677, 44.131754 ], [ 3.810833, 44.128557 ], [ 3.796995, 44.127389 ], [ 3.777238, 44.1402 ], [ 3.773033, 44.141602 ], [ 3.768909, 44.14262 ], [ 3.762209, 44.14539 ], [ 3.759624, 44.15119 ], [ 3.755264, 44.15141 ], [ 3.750848, 44.15214 ], [ 3.73505, 44.15731 ], [ 3.725624, 44.164249 ], [ 3.721091, 44.164729 ], [ 3.707658, 44.164465 ], [ 3.692424, 44.171376 ], [ 3.684404, 44.179411 ], [ 3.685032, 44.182683 ], [ 3.680307, 44.18295 ], [ 3.671053, 44.1842 ], [ 3.667963, 44.177784 ], [ 3.659917, 44.17429 ], [ 3.649649, 44.180846 ], [ 3.644962, 44.179992 ], [ 3.637706, 44.175434 ], [ 3.630543, 44.15887 ], [ 3.632924, 44.152573 ], [ 3.645569, 44.147539 ], [ 3.647169, 44.14429 ], [ 3.63585, 44.138127 ], [ 3.632838, 44.12122 ], [ 3.606167, 44.115901 ], [ 3.574615, 44.121508 ], [ 3.569987, 44.122324 ], [ 3.565196, 44.123051 ], [ 3.544309, 44.11437 ], [ 3.533113, 44.12086 ], [ 3.509926, 44.12538 ], [ 3.50516, 44.1262 ], [ 3.481027, 44.12425 ], [ 3.443052, 44.12885 ], [ 3.438628, 44.130372 ], [ 3.435184, 44.132762 ], [ 3.428468, 44.148665 ], [ 3.396939, 44.162699 ], [ 3.392517, 44.16869 ], [ 3.373648, 44.170765 ], [ 3.372075, 44.180725 ], [ 3.358391, 44.19447 ], [ 3.360423, 44.201169 ], [ 3.355603, 44.20084 ], [ 3.332084, 44.203509 ], [ 3.318327, 44.20039 ], [ 3.301043, 44.206461 ], [ 3.291616, 44.205676 ], [ 3.287881, 44.19952 ], [ 3.264363, 44.200308 ], [ 3.243235, 44.19257 ], [ 3.239261, 44.19066 ], [ 3.230589, 44.189863 ], [ 3.226313, 44.190592 ], [ 3.203593, 44.193462 ], [ 3.212071, 44.19578 ], [ 3.215799, 44.2021 ], [ 3.219211, 44.204503 ], [ 3.221213, 44.207713 ], [ 3.23054, 44.23034 ], [ 3.195687, 44.24066 ], [ 3.187826, 44.24891 ], [ 3.174415, 44.24526 ], [ 3.160532, 44.24628 ], [ 3.154268, 44.27304 ], [ 3.14617, 44.276031 ], [ 3.14016, 44.26704 ], [ 3.138298, 44.26397 ], [ 3.133898, 44.262382 ], [ 3.124527, 44.26147 ], [ 3.125306, 44.28542 ], [ 3.154266, 44.309225 ], [ 3.146076, 44.31713 ], [ 3.150937, 44.329933 ], [ 3.134194, 44.334528 ], [ 3.128198, 44.3509 ], [ 3.131976, 44.357178 ], [ 3.123591, 44.360771 ], [ 3.120492, 44.366814 ], [ 3.122494, 44.370017 ], [ 3.123395, 44.38021 ], [ 3.119743, 44.386331 ], [ 3.137053, 44.391621 ], [ 3.137244, 44.408266 ], [ 3.130371, 44.412037 ], [ 3.126721, 44.41396 ], [ 3.129938, 44.420337 ], [ 3.141045, 44.426796 ], [ 3.142256, 44.433734 ], [ 3.135077, 44.442016 ], [ 3.136367, 44.44539 ], [ 3.136186, 44.44879 ], [ 3.135486, 44.455519 ], [ 3.124866, 44.4613 ], [ 3.117325, 44.47379 ], [ 3.103506, 44.479535 ], [ 3.09956, 44.48043 ], [ 3.068932, 44.502706 ], [ 3.075465, 44.51598 ], [ 3.076238, 44.519464 ], [ 3.07491, 44.533292 ], [ 3.08347, 44.56032 ], [ 3.079021, 44.566472 ], [ 3.076607, 44.5695 ], [ 3.076196, 44.57255 ], [ 3.061845, 44.579 ], [ 3.059631, 44.58163 ], [ 3.055354, 44.58707 ], [ 3.041086, 44.594202 ], [ 3.037131, 44.59554 ], [ 3.031891, 44.598463 ], [ 3.030708, 44.600741 ], [ 3.018388, 44.61126 ], [ 3.013273, 44.620847 ], [ 2.987819, 44.64119 ], [ 2.985448, 44.64421 ], [ 2.981677, 44.644686 ], [ 2.985621, 44.658235 ], [ 2.999722, 44.67654 ], [ 3.001628, 44.686838 ], [ 3.016022, 44.712531 ], [ 3.034293, 44.71554 ], [ 3.039129, 44.715001 ], [ 3.034894, 44.727048 ], [ 3.027305, 44.73022 ], [ 3.028747, 44.73319 ], [ 3.031345, 44.74964 ], [ 3.037832, 44.75809 ], [ 3.042243, 44.75938 ], [ 3.048237, 44.76432 ], [ 3.044048, 44.773528 ], [ 3.049475, 44.77862 ], [ 3.049971, 44.78188 ], [ 3.048705, 44.79461 ], [ 3.046242, 44.79729 ], [ 3.047916, 44.803903 ], [ 3.064034, 44.820236 ], [ 3.072702, 44.822751 ], [ 3.07698, 44.82428 ], [ 3.072175, 44.836266 ], [ 3.089341, 44.832787 ], [ 3.093846, 44.83312 ], [ 3.096528, 44.83334 ], [ 3.099159, 44.83291 ], [ 3.097681, 44.841558 ], [ 3.100179, 44.843924 ], [ 3.094845, 44.85548 ], [ 3.103188, 44.863215 ], [ 3.104979, 44.86626 ], [ 3.103126, 44.88463 ], [ 3.119516, 44.89154 ], [ 3.128384, 44.903578 ], [ 3.142848, 44.902282 ], [ 3.147951, 44.89634 ], [ 3.151478, 44.893933 ], [ 3.157551, 44.886641 ], [ 3.16028, 44.88447 ], [ 3.164673, 44.875178 ], [ 3.179882, 44.86781 ], [ 3.181619, 44.86469 ], [ 3.190271, 44.862524 ], [ 3.195963, 44.872084 ], [ 3.214815, 44.875003 ], [ 3.225669, 44.882094 ], [ 3.234928, 44.888584 ], [ 3.227769, 44.89707 ], [ 3.228278, 44.90695 ], [ 3.226428, 44.90998 ], [ 3.231158, 44.911119 ], [ 3.249693, 44.916238 ], [ 3.244565, 44.931717 ], [ 3.250201, 44.93658 ], [ 3.248414, 44.939506 ], [ 3.252172, 44.94078 ], [ 3.256169, 44.9416 ], [ 3.265703, 44.941663 ], [ 3.262554, 44.93524 ], [ 3.267129, 44.92959 ], [ 3.285389, 44.926254 ], [ 3.300883, 44.939367 ], [ 3.314336, 44.93979 ], [ 3.31825, 44.94601 ], [ 3.334081, 44.95385 ], [ 3.337948, 44.95591 ], [ 3.35037, 44.95503 ], [ 3.354528, 44.95482 ], [ 3.355222, 44.958259 ], [ 3.361343, 44.97141 ], [ 3.368997, 44.97418 ], [ 3.372711, 44.975723 ], [ 3.371664, 44.968929 ], [ 3.377783, 44.95659 ], [ 3.390906, 44.95277 ], [ 3.403222, 44.95686 ], [ 3.410817, 44.948001 ], [ 3.412835, 44.944843 ], [ 3.415119, 44.9263 ], [ 3.41038, 44.91779 ], [ 3.413026, 44.91567 ], [ 3.419257, 44.908435 ], [ 3.417812, 44.90504 ], [ 3.421511, 44.89482 ], [ 3.435711, 44.880244 ], [ 3.436572, 44.87699 ], [ 3.4418, 44.85423 ], [ 3.445198, 44.851764 ], [ 3.457593, 44.841324 ], [ 3.45617, 44.831228 ], [ 3.47001, 44.82194 ], [ 3.478242, 44.80968 ], [ 3.486967, 44.80647 ], [ 3.490994, 44.808481 ], [ 3.493094, 44.811514 ], [ 3.507375, 44.82423 ], [ 3.5122, 44.824816 ], [ 3.541089, 44.82805 ], [ 3.555337, 44.82567 ], [ 3.56877, 44.834183 ], [ 3.582453, 44.826117 ], [ 3.589724, 44.82939 ], [ 3.586884, 44.836052 ], [ 3.59783, 44.858709 ], [ 3.595024, 44.87579 ], [ 3.603369, 44.879379 ], [ 3.608282, 44.879334 ], [ 3.614235, 44.874817 ], [ 3.629866, 44.87983 ], [ 3.632535, 44.87731 ], [ 3.640654, 44.87857 ], [ 3.644297, 44.87713 ], [ 3.660137, 44.87051 ], [ 3.664392, 44.860969 ], [ 3.671245, 44.85703 ], [ 3.67364, 44.85412 ], [ 3.669728, 44.841282 ], [ 3.6616, 44.83776 ], [ 3.657417, 44.836124 ], [ 3.663663, 44.831414 ], [ 3.666365, 44.828778 ], [ 3.694679, 44.831675 ], [ 3.701809, 44.836267 ], [ 3.719429, 44.831796 ], [ 3.735968, 44.83672 ], [ 3.73538, 44.840119 ], [ 3.743866, 44.8378 ], [ 3.755779, 44.817536 ], [ 3.759833, 44.81606 ], [ 3.761687, 44.812876 ], [ 3.759954, 44.806334 ], [ 3.764135, 44.800381 ], [ 3.771952, 44.80232 ], [ 3.797349, 44.786488 ], [ 3.804675, 44.77364 ], [ 3.80699, 44.767583 ], [ 3.810631, 44.76588 ], [ 3.817335, 44.769812 ], [ 3.819372, 44.772561 ], [ 3.833253, 44.77528 ], [ 3.841852, 44.772132 ], [ 3.841072, 44.76562 ], [ 3.832974, 44.75725 ], [ 3.829915, 44.754638 ], [ 3.839419, 44.74712 ], [ 3.858308, 44.74553 ], [ 3.862527, 44.74387 ], [ 3.877097, 44.73599 ], [ 3.863763, 44.722326 ], [ 3.8631, 44.71202 ], [ 3.870008, 44.707206 ], [ 3.869246, 44.700396 ], [ 3.869648, 44.69696 ], [ 3.883529, 44.696718 ], [ 3.884563, 44.69344 ], [ 3.881767, 44.690573 ], [ 3.871647, 44.679336 ], [ 3.885373, 44.657457 ], [ 3.894778, 44.649963 ], [ 3.895766, 44.642293 ], [ 3.894403, 44.639018 ], [ 3.89414, 44.61529 ], [ 3.906662, 44.61096 ], [ 3.908084, 44.6077 ], [ 3.90533, 44.595462 ], [ 3.90654, 44.59237 ], [ 3.918466, 44.587368 ], [ 3.916821, 44.58071 ], [ 3.921627, 44.574962 ], [ 3.923567, 44.571885 ], [ 3.944441, 44.57366 ], [ 3.948774, 44.572887 ], [ 3.95849, 44.55689 ], [ 3.960906, 44.55381 ], [ 3.964955, 44.541002 ], [ 3.965692, 44.537682 ], [ 3.967657, 44.534856 ], [ 3.978998, 44.52176 ], [ 3.97579, 44.516742 ], [ 3.980284, 44.51542 ], [ 3.986789, 44.50243 ], [ 3.987125, 44.47487 ], [ 3.998163, 44.4598 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "50", "CODE_DEPT": "49", "NOM_DEPT": "MAINE-ET-LOIRE", "CODE_CHF": "007", "NOM_CHF": "ANGERS", "X_CHF_LIEU": "4322", "Y_CHF_LIEU": "67140", "X_CENTROID": "4312", "Y_CENTROID": "67050", "CODE_REG": "52", "NOM_REGION": "PAYS-DE-LA-LOIRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.102121, 47.064806 ], [ -0.10698, 47.06354 ], [ -0.128896, 47.054236 ], [ -0.133284, 47.055549 ], [ -0.138001, 47.064342 ], [ -0.149809, 47.06965 ], [ -0.158811, 47.068883 ], [ -0.165984, 47.064596 ], [ -0.17037, 47.066071 ], [ -0.174754, 47.06752 ], [ -0.178554, 47.069792 ], [ -0.166736, 47.08099 ], [ -0.140891, 47.09676 ], [ -0.141253, 47.10365 ], [ -0.146212, 47.1027 ], [ -0.15615, 47.101591 ], [ -0.18524, 47.10842 ], [ -0.186682, 47.10534 ], [ -0.190185, 47.099648 ], [ -0.206269, 47.093193 ], [ -0.209135, 47.09591 ], [ -0.24043, 47.10508 ], [ -0.258181, 47.10028 ], [ -0.262876, 47.10548 ], [ -0.266009, 47.10295 ], [ -0.29251, 47.10061 ], [ -0.312636, 47.09205 ], [ -0.317233, 47.09127 ], [ -0.340141, 47.08727 ], [ -0.342066, 47.090237 ], [ -0.354651, 47.09465 ], [ -0.359108, 47.093536 ], [ -0.363689, 47.09253 ], [ -0.381939, 47.088554 ], [ -0.387062, 47.09239 ], [ -0.391846, 47.09188 ], [ -0.40078, 47.07077 ], [ -0.408634, 47.066493 ], [ -0.426487, 47.07224 ], [ -0.445454, 47.067681 ], [ -0.460572, 47.06835 ], [ -0.480383, 47.053638 ], [ -0.483854, 47.066538 ], [ -0.464423, 47.07614 ], [ -0.463353, 47.08187 ], [ -0.467753, 47.08341 ], [ -0.491782, 47.08285 ], [ -0.51513, 47.077937 ], [ -0.519492, 47.076037 ], [ -0.559717, 47.061701 ], [ -0.556127, 47.05925 ], [ -0.556072, 47.045618 ], [ -0.543463, 47.03511 ], [ -0.547013, 47.02875 ], [ -0.561548, 47.029506 ], [ -0.566774, 47.019836 ], [ -0.580099, 47.014899 ], [ -0.587252, 47.00613 ], [ -0.59574, 47.000642 ], [ -0.595492, 46.99791 ], [ -0.600671, 46.997541 ], [ -0.620177, 46.99336 ], [ -0.625115, 46.99334 ], [ -0.632918, 46.99693 ], [ -0.646938, 46.99426 ], [ -0.673301, 47.001866 ], [ -0.680368, 46.99324 ], [ -0.680185, 46.987658 ], [ -0.684779, 46.987998 ], [ -0.689724, 46.992716 ], [ -0.698466, 46.99456 ], [ -0.702174, 46.992164 ], [ -0.714462, 46.98599 ], [ -0.7338, 46.99708 ], [ -0.751304, 46.99227 ], [ -0.761383, 46.99305 ], [ -0.772827, 47.00336 ], [ -0.78685, 47.005107 ], [ -0.789958, 47.00245 ], [ -0.808398, 46.991895 ], [ -0.805024, 46.98945 ], [ -0.809678, 46.98819 ], [ -0.816647, 46.99306 ], [ -0.821638, 46.992845 ], [ -0.834302, 46.987512 ], [ -0.84772, 46.98615 ], [ -0.855169, 46.977938 ], [ -0.854241, 46.971586 ], [ -0.858915, 46.97047 ], [ -0.882077, 46.976295 ], [ -0.891961, 46.975827 ], [ -0.893938, 46.97896 ], [ -0.901294, 46.99144 ], [ -0.914903, 46.99544 ], [ -0.934878, 47.00756 ], [ -0.93682, 47.004376 ], [ -0.959132, 46.99812 ], [ -0.977324, 47.014336 ], [ -0.986265, 47.012964 ], [ -1.002264, 47.02129 ], [ -1.005048, 47.01849 ], [ -1.01611, 47.003644 ], [ -1.020849, 47.004984 ], [ -1.05132, 47.005892 ], [ -1.064663, 47.01069 ], [ -1.074205, 47.00947 ], [ -1.083305, 47.01268 ], [ -1.087586, 47.01316 ], [ -1.09057, 47.01532 ], [ -1.095473, 47.014782 ], [ -1.127501, 47.021456 ], [ -1.131994, 47.02297 ], [ -1.148571, 47.029554 ], [ -1.143996, 47.030927 ], [ -1.11789, 47.04028 ], [ -1.120792, 47.053584 ], [ -1.115539, 47.062697 ], [ -1.120108, 47.06414 ], [ -1.148528, 47.069621 ], [ -1.161898, 47.07957 ], [ -1.167958, 47.09052 ], [ -1.170549, 47.09295 ], [ -1.175073, 47.093584 ], [ -1.179363, 47.09529 ], [ -1.228114, 47.099769 ], [ -1.240897, 47.094585 ], [ -1.249652, 47.09763 ], [ -1.246738, 47.10053 ], [ -1.232328, 47.109875 ], [ -1.226626, 47.118667 ], [ -1.23218, 47.12799 ], [ -1.230987, 47.1313 ], [ -1.235255, 47.132488 ], [ -1.23822, 47.134904 ], [ -1.218849, 47.144322 ], [ -1.209088, 47.14454 ], [ -1.191065, 47.15542 ], [ -1.188363, 47.158232 ], [ -1.172048, 47.16789 ], [ -1.169555, 47.170515 ], [ -1.167714, 47.17355 ], [ -1.161776, 47.18583 ], [ -1.165361, 47.188066 ], [ -1.176734, 47.192659 ], [ -1.174632, 47.19846 ], [ -1.180764, 47.20741 ], [ -1.175243, 47.21162 ], [ -1.174481, 47.214404 ], [ -1.177609, 47.216185 ], [ -1.188466, 47.220003 ], [ -1.188046, 47.22311 ], [ -1.181106, 47.2409 ], [ -1.185046, 47.242529 ], [ -1.195861, 47.252181 ], [ -1.204918, 47.25304 ], [ -1.209506, 47.25178 ], [ -1.213985, 47.245907 ], [ -1.231267, 47.239579 ], [ -1.235477, 47.241102 ], [ -1.254061, 47.25009 ], [ -1.255337, 47.25317 ], [ -1.276402, 47.2696 ], [ -1.27672, 47.288055 ], [ -1.28022, 47.2929 ], [ -1.282664, 47.2958 ], [ -1.294757, 47.301354 ], [ -1.3138, 47.302964 ], [ -1.319029, 47.30321 ], [ -1.339313, 47.300976 ], [ -1.354204, 47.30416 ], [ -1.337293, 47.317469 ], [ -1.322745, 47.32088 ], [ -1.310318, 47.33205 ], [ -1.306548, 47.33448 ], [ -1.287817, 47.34056 ], [ -1.282624, 47.340957 ], [ -1.256452, 47.34125 ], [ -1.236679, 47.345979 ], [ -1.232283, 47.34792 ], [ -1.228373, 47.349978 ], [ -1.205598, 47.348976 ], [ -1.187253, 47.35254 ], [ -1.183138, 47.3542 ], [ -1.170101, 47.364653 ], [ -1.144951, 47.367996 ], [ -1.11428, 47.367041 ], [ -1.111954, 47.36594 ], [ -1.106842, 47.36589 ], [ -1.101857, 47.36664 ], [ -1.07853, 47.3708 ], [ -1.063981, 47.37019 ], [ -1.036884, 47.36469 ], [ -1.032118, 47.365001 ], [ -1.012695, 47.36571 ], [ -0.990563, 47.37262 ], [ -0.981172, 47.37088 ], [ -0.976234, 47.371029 ], [ -0.969338, 47.3743 ], [ -0.966359, 47.376361 ], [ -0.962253, 47.37843 ], [ -0.957845, 47.3802 ], [ -0.949385, 47.38442 ], [ -0.945808, 47.38703 ], [ -0.935856, 47.38778 ], [ -0.927155, 47.39636 ], [ -0.923456, 47.39877 ], [ -0.925506, 47.40194 ], [ -0.943182, 47.41861 ], [ -0.948347, 47.42274 ], [ -0.947628, 47.42975 ], [ -0.952818, 47.43581 ], [ -0.954011, 47.45323 ], [ -0.967867, 47.46805 ], [ -0.962337, 47.47918 ], [ -0.958993, 47.48123 ], [ -0.96091, 47.48379 ], [ -0.96548, 47.4918 ], [ -0.970663, 47.492295 ], [ -1.011586, 47.489874 ], [ -1.025803, 47.500127 ], [ -1.044458, 47.505501 ], [ -1.049296, 47.50528 ], [ -1.072631, 47.501481 ], [ -1.077012, 47.50328 ], [ -1.107533, 47.50095 ], [ -1.142822, 47.505071 ], [ -1.146997, 47.50709 ], [ -1.156214, 47.51015 ], [ -1.168004, 47.529123 ], [ -1.154454, 47.538856 ], [ -1.154392, 47.542337 ], [ -1.178346, 47.54802 ], [ -1.173253, 47.569228 ], [ -1.172934, 47.57282 ], [ -1.123516, 47.56952 ], [ -1.104863, 47.56527 ], [ -1.099905, 47.565729 ], [ -1.060517, 47.56597 ], [ -1.055643, 47.56528 ], [ -1.042198, 47.56323 ], [ -1.037088, 47.57049 ], [ -1.032991, 47.571965 ], [ -1.020182, 47.57714 ], [ -1.008165, 47.58776 ], [ -1.009226, 47.59105 ], [ -1.021577, 47.59672 ], [ -1.025255, 47.59902 ], [ -1.030451, 47.59937 ], [ -1.075035, 47.60613 ], [ -1.103175, 47.62059 ], [ -1.123665, 47.61921 ], [ -1.137894, 47.618927 ], [ -1.137678, 47.62215 ], [ -1.154156, 47.633618 ], [ -1.157394, 47.63599 ], [ -1.157909, 47.639163 ], [ -1.156466, 47.64547 ], [ -1.162948, 47.66049 ], [ -1.172985, 47.66037 ], [ -1.181369, 47.66861 ], [ -1.175483, 47.681359 ], [ -1.177913, 47.68801 ], [ -1.17493, 47.69456 ], [ -1.180204, 47.69679 ], [ -1.19545, 47.71203 ], [ -1.195666, 47.72172 ], [ -1.215419, 47.71882 ], [ -1.234119, 47.72336 ], [ -1.254406, 47.73267 ], [ -1.255316, 47.739203 ], [ -1.255719, 47.742569 ], [ -1.241724, 47.74286 ], [ -1.236525, 47.75578 ], [ -1.247316, 47.763028 ], [ -1.245882, 47.776718 ], [ -1.237062, 47.799597 ], [ -1.240193, 47.802287 ], [ -1.238252, 47.80999 ], [ -1.215047, 47.80252 ], [ -1.209308, 47.796777 ], [ -1.199356, 47.795251 ], [ -1.193039, 47.786212 ], [ -1.177831, 47.784646 ], [ -1.165022, 47.778875 ], [ -1.140507, 47.77469 ], [ -1.137437, 47.77664 ], [ -1.139246, 47.7822 ], [ -1.13972, 47.78502 ], [ -1.09285, 47.7812 ], [ -1.080839, 47.7747 ], [ -1.075591, 47.77444 ], [ -1.075037, 47.77419 ], [ -1.047709, 47.773645 ], [ -1.043471, 47.77241 ], [ -1.033695, 47.77114 ], [ -1.020898, 47.77479 ], [ -1.015442, 47.76929 ], [ -1.006341, 47.76808 ], [ -0.999831, 47.76435 ], [ -0.990877, 47.76401 ], [ -0.986653, 47.762935 ], [ -0.982688, 47.76193 ], [ -0.978457, 47.762 ], [ -0.952266, 47.76999 ], [ -0.958546, 47.77912 ], [ -0.972097, 47.78315 ], [ -0.961986, 47.79352 ], [ -0.959761, 47.79633 ], [ -0.950554, 47.79553 ], [ -0.936498, 47.786855 ], [ -0.931138, 47.790325 ], [ -0.931935, 47.79351 ], [ -0.894399, 47.77125 ], [ -0.893041, 47.76786 ], [ -0.89317, 47.764506 ], [ -0.864606, 47.759136 ], [ -0.859867, 47.7581 ], [ -0.843281, 47.75364 ], [ -0.839295, 47.752282 ], [ -0.8354, 47.76962 ], [ -0.816068, 47.77123 ], [ -0.811744, 47.765357 ], [ -0.792946, 47.761507 ], [ -0.786308, 47.75292 ], [ -0.783388, 47.750193 ], [ -0.764392, 47.754013 ], [ -0.759625, 47.752932 ], [ -0.749702, 47.74161 ], [ -0.735166, 47.739497 ], [ -0.731594, 47.741891 ], [ -0.718459, 47.740885 ], [ -0.709257, 47.74377 ], [ -0.689884, 47.73969 ], [ -0.669841, 47.740754 ], [ -0.653787, 47.73338 ], [ -0.649406, 47.734554 ], [ -0.646242, 47.736906 ], [ -0.616059, 47.73597 ], [ -0.610818, 47.735689 ], [ -0.587755, 47.75593 ], [ -0.584648, 47.7584 ], [ -0.573109, 47.753704 ], [ -0.564982, 47.756835 ], [ -0.560372, 47.757435 ], [ -0.537758, 47.75149 ], [ -0.532922, 47.75069 ], [ -0.51835, 47.767697 ], [ -0.521709, 47.78069 ], [ -0.5221, 47.78398 ], [ -0.519889, 47.78652 ], [ -0.511455, 47.78553 ], [ -0.507134, 47.78507 ], [ -0.480245, 47.777 ], [ -0.45681, 47.760044 ], [ -0.453929, 47.75724 ], [ -0.429175, 47.76722 ], [ -0.414949, 47.76522 ], [ -0.410032, 47.76522 ], [ -0.414219, 47.775078 ], [ -0.409624, 47.77803 ], [ -0.38398, 47.76716 ], [ -0.381704, 47.76057 ], [ -0.376992, 47.760212 ], [ -0.379706, 47.751206 ], [ -0.375467, 47.74566 ], [ -0.37253, 47.743144 ], [ -0.373778, 47.73987 ], [ -0.358295, 47.731968 ], [ -0.364226, 47.71933 ], [ -0.365826, 47.71612 ], [ -0.35113, 47.71444 ], [ -0.333663, 47.72094 ], [ -0.314076, 47.71791 ], [ -0.309075, 47.71734 ], [ -0.29153, 47.717705 ], [ -0.287627, 47.71913 ], [ -0.256663, 47.7081 ], [ -0.236766, 47.704631 ], [ -0.205739, 47.72261 ], [ -0.202373, 47.725242 ], [ -0.193568, 47.723339 ], [ -0.184536, 47.716064 ], [ -0.175301, 47.716315 ], [ -0.173406, 47.713412 ], [ -0.18346, 47.71213 ], [ -0.184352, 47.705395 ], [ -0.203437, 47.693883 ], [ -0.217688, 47.692798 ], [ -0.215838, 47.682922 ], [ -0.199473, 47.665634 ], [ -0.196659, 47.662739 ], [ -0.196697, 47.650036 ], [ -0.193158, 47.64793 ], [ -0.163713, 47.645961 ], [ -0.158952, 47.647045 ], [ -0.147524, 47.63613 ], [ -0.138798, 47.63417 ], [ -0.134502, 47.632489 ], [ -0.127846, 47.63671 ], [ -0.1141, 47.635476 ], [ -0.113835, 47.64532 ], [ -0.105482, 47.65708 ], [ -0.09905, 47.66179 ], [ -0.094554, 47.660605 ], [ -0.09248, 47.65426 ], [ -0.092424, 47.65101 ], [ -0.074508, 47.657487 ], [ -0.052378, 47.64868 ], [ -0.026745, 47.646349 ], [ -0.020286, 47.63702 ], [ -0.017114, 47.63914 ], [ -0.004508, 47.647688 ], [ -0.001037, 47.645238 ], [ 0.012965, 47.62869 ], [ 0.009393, 47.626815 ], [ 0.009923, 47.623775 ], [ 0.034202, 47.61842 ], [ 0.052261, 47.60622 ], [ 0.06224, 47.60448 ], [ 0.071017, 47.60812 ], [ 0.095772, 47.603325 ], [ 0.110628, 47.6059 ], [ 0.115651, 47.605628 ], [ 0.120352, 47.596 ], [ 0.134245, 47.59442 ], [ 0.144174, 47.583055 ], [ 0.148488, 47.5813 ], [ 0.161129, 47.592413 ], [ 0.176229, 47.59441 ], [ 0.183976, 47.599011 ], [ 0.185834, 47.616547 ], [ 0.197801, 47.61545 ], [ 0.201909, 47.615582 ], [ 0.204544, 47.605972 ], [ 0.209402, 47.60552 ], [ 0.212617, 47.611785 ], [ 0.226382, 47.61064 ], [ 0.230002, 47.608398 ], [ 0.230576, 47.585003 ], [ 0.234568, 47.57861 ], [ 0.230576, 47.57731 ], [ 0.218936, 47.57359 ], [ 0.214089, 47.56879 ], [ 0.200087, 47.54317 ], [ 0.19312, 47.538037 ], [ 0.205637, 47.53294 ], [ 0.207175, 47.52667 ], [ 0.224843, 47.52728 ], [ 0.219715, 47.50519 ], [ 0.220109, 47.501953 ], [ 0.20415, 47.48661 ], [ 0.200659, 47.4845 ], [ 0.19885, 47.47641 ], [ 0.184247, 47.45576 ], [ 0.180874, 47.45323 ], [ 0.184494, 47.429597 ], [ 0.185149, 47.426217 ], [ 0.180943, 47.416603 ], [ 0.156772, 47.401448 ], [ 0.153864, 47.39873 ], [ 0.168249, 47.396153 ], [ 0.168732, 47.386013 ], [ 0.182143, 47.381943 ], [ 0.157666, 47.36532 ], [ 0.15386, 47.363093 ], [ 0.140405, 47.361808 ], [ 0.14285, 47.358725 ], [ 0.147298, 47.345376 ], [ 0.144439, 47.342819 ], [ 0.135494, 47.335365 ], [ 0.117462, 47.332343 ], [ 0.117889, 47.32884 ], [ 0.111109, 47.31573 ], [ 0.100309, 47.308205 ], [ 0.082382, 47.28687 ], [ 0.088557, 47.282381 ], [ 0.087486, 47.27553 ], [ 0.083193, 47.274147 ], [ 0.08011, 47.271692 ], [ 0.076367, 47.251931 ], [ 0.069096, 47.24333 ], [ 0.073838, 47.233508 ], [ 0.072451, 47.219878 ], [ 0.076842, 47.21937 ], [ 0.072876, 47.214493 ], [ 0.068291, 47.214196 ], [ 0.053807, 47.198856 ], [ 0.061892, 47.19095 ], [ 0.066594, 47.189802 ], [ 0.06352, 47.17639 ], [ 0.05664, 47.167369 ], [ 0.05374, 47.16461 ], [ 0.051052, 47.16713 ], [ 0.036642, 47.16036 ], [ 0.033624, 47.16289 ], [ 0.019015, 47.175758 ], [ 0.01534, 47.173168 ], [ -0.011722, 47.15624 ], [ -0.033736, 47.12756 ], [ -0.03444, 47.12063 ], [ -0.036549, 47.11752 ], [ -0.039508, 47.11475 ], [ -0.037498, 47.10814 ], [ -0.028063, 47.106027 ], [ -0.02707, 47.102674 ], [ -0.035315, 47.08672 ], [ -0.039917, 47.08761 ], [ -0.044239, 47.093151 ], [ -0.067762, 47.09338 ], [ -0.068733, 47.09653 ], [ -0.085541, 47.100434 ], [ -0.088887, 47.09827 ], [ -0.098055, 47.09135 ], [ -0.099978, 47.088083 ], [ -0.100648, 47.08459 ], [ -0.102121, 47.064806 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "51", "CODE_DEPT": "50", "NOM_DEPT": "MANCHE", "CODE_CHF": "502", "NOM_CHF": "SAINT-LO", "X_CHF_LIEU": "4014", "Y_CHF_LIEU": "68982", "X_CENTROID": "3839", "Y_CENTROID": "68953", "CODE_REG": "25", "NOM_REGION": "BASSE-NORMANDIE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.070165, 48.50849 ], [ -1.1012, 48.512885 ], [ -1.117277, 48.52165 ], [ -1.122244, 48.521362 ], [ -1.132159, 48.52173 ], [ -1.145709, 48.517654 ], [ -1.161961, 48.52425 ], [ -1.166724, 48.530079 ], [ -1.188368, 48.528687 ], [ -1.19316, 48.529248 ], [ -1.206894, 48.54219 ], [ -1.208259, 48.53909 ], [ -1.232492, 48.53764 ], [ -1.249016, 48.54367 ], [ -1.249493, 48.5437 ], [ -1.254221, 48.54327 ], [ -1.27291, 48.533721 ], [ -1.269817, 48.53105 ], [ -1.269542, 48.524356 ], [ -1.279004, 48.50918 ], [ -1.283385, 48.50853 ], [ -1.287629, 48.50953 ], [ -1.290184, 48.50679 ], [ -1.30455, 48.498803 ], [ -1.318768, 48.497286 ], [ -1.321808, 48.499798 ], [ -1.326326, 48.49852 ], [ -1.330412, 48.48596 ], [ -1.332739, 48.48886 ], [ -1.341415, 48.48921 ], [ -1.348477, 48.47989 ], [ -1.346533, 48.473118 ], [ -1.374943, 48.45926 ], [ -1.382967, 48.45687 ], [ -1.399391, 48.461159 ], [ -1.404237, 48.46143 ], [ -1.427752, 48.46235 ], [ -1.440356, 48.47217 ], [ -1.435747, 48.477916 ], [ -1.449399, 48.48677 ], [ -1.457581, 48.48543 ], [ -1.466134, 48.487976 ], [ -1.47467, 48.48588 ], [ -1.485862, 48.490737 ], [ -1.489947, 48.48937 ], [ -1.495588, 48.505047 ], [ -1.495733, 48.50831 ], [ -1.498528, 48.511018 ], [ -1.515309, 48.530294 ], [ -1.517781, 48.52985 ], [ -1.519766, 48.539657 ], [ -1.53311, 48.549439 ], [ -1.527171, 48.5619 ], [ -1.521005, 48.56705 ], [ -1.527773, 48.57577 ], [ -1.527747, 48.57908 ], [ -1.542011, 48.58087 ], [ -1.538887, 48.59746 ], [ -1.545464, 48.60609 ], [ -1.554664, 48.60923 ], [ -1.558303, 48.611232 ], [ -1.566049, 48.614827 ], [ -1.571087, 48.62645 ], [ -1.553792, 48.62949 ], [ -1.549446, 48.630158 ], [ -1.520247, 48.627613 ], [ -1.516621, 48.62151 ], [ -1.515647, 48.61826 ], [ -1.512305, 48.616211 ], [ -1.511937, 48.61321 ], [ -1.508061, 48.61869 ], [ -1.480794, 48.61939 ], [ -1.475995, 48.61905 ], [ -1.453439, 48.62417 ], [ -1.448692, 48.623481 ], [ -1.430117, 48.63457 ], [ -1.427017, 48.64083 ], [ -1.422596, 48.6424 ], [ -1.420876, 48.639256 ], [ -1.391553, 48.64393 ], [ -1.371804, 48.64154 ], [ -1.361667, 48.63408 ], [ -1.352426, 48.631329 ], [ -1.347353, 48.63144 ], [ -1.345475, 48.63273 ], [ -1.348359, 48.631937 ], [ -1.351354, 48.63248 ], [ -1.364427, 48.64695 ], [ -1.369988, 48.64648 ], [ -1.377601, 48.650693 ], [ -1.392769, 48.65063 ], [ -1.400675, 48.659104 ], [ -1.380209, 48.682794 ], [ -1.376541, 48.6848 ], [ -1.374995, 48.687787 ], [ -1.372288, 48.693796 ], [ -1.375536, 48.69148 ], [ -1.394562, 48.677941 ], [ -1.399004, 48.676084 ], [ -1.431561, 48.66588 ], [ -1.439354, 48.657073 ], [ -1.444374, 48.65615 ], [ -1.449256, 48.6694 ], [ -1.457399, 48.673651 ], [ -1.48655, 48.68632 ], [ -1.496102, 48.6838 ], [ -1.504902, 48.687396 ], [ -1.506943, 48.690544 ], [ -1.517312, 48.71335 ], [ -1.518701, 48.71666 ], [ -1.529156, 48.729982 ], [ -1.53324, 48.73138 ], [ -1.552711, 48.73243 ], [ -1.556378, 48.734647 ], [ -1.57088, 48.743939 ], [ -1.574582, 48.754158 ], [ -1.570844, 48.767 ], [ -1.570309, 48.77038 ], [ -1.569352, 48.78823 ], [ -1.572764, 48.815939 ], [ -1.575568, 48.82239 ], [ -1.585923, 48.82983 ], [ -1.609851, 48.833008 ], [ -1.607401, 48.836778 ], [ -1.594983, 48.84251 ], [ -1.591833, 48.84517 ], [ -1.58456, 48.849377 ], [ -1.579525, 48.85886 ], [ -1.577962, 48.86204 ], [ -1.572787, 48.881609 ], [ -1.572119, 48.88489 ], [ -1.571132, 48.8906 ], [ -1.561525, 48.92764 ], [ -1.557702, 48.93158 ], [ -1.559572, 48.91269 ], [ -1.553785, 48.8978 ], [ -1.551397, 48.89799 ], [ -1.551386, 48.90879 ], [ -1.543453, 48.931386 ], [ -1.550169, 48.940319 ], [ -1.562205, 48.94082 ], [ -1.562437, 48.94705 ], [ -1.561831, 48.95121 ], [ -1.561456, 48.96828 ], [ -1.562258, 48.97803 ], [ -1.561999, 48.98131 ], [ -1.559253, 48.99866 ], [ -1.556631, 48.99982 ], [ -1.552134, 48.99068 ], [ -1.550058, 48.99199 ], [ -1.55156, 48.998192 ], [ -1.556967, 49.011281 ], [ -1.55607, 49.024924 ], [ -1.534801, 49.03402 ], [ -1.518343, 49.025451 ], [ -1.513915, 49.02351 ], [ -1.510284, 49.021124 ], [ -1.505913, 49.01936 ], [ -1.504679, 49.02014 ], [ -1.508524, 49.026405 ], [ -1.538189, 49.03955 ], [ -1.542564, 49.04132 ], [ -1.555303, 49.03678 ], [ -1.559912, 49.03825 ], [ -1.569816, 49.03016 ], [ -1.576883, 49.01711 ], [ -1.576108, 49.006778 ], [ -1.581948, 49.004528 ], [ -1.595358, 49.027181 ], [ -1.607322, 49.06765 ], [ -1.606272, 49.06864 ], [ -1.599231, 49.05633 ], [ -1.598095, 49.06022 ], [ -1.6006, 49.07331 ], [ -1.610165, 49.083581 ], [ -1.605427, 49.111881 ], [ -1.594853, 49.13032 ], [ -1.585285, 49.13107 ], [ -1.580298, 49.13148 ], [ -1.594782, 49.14081 ], [ -1.596134, 49.14413 ], [ -1.604218, 49.18854 ], [ -1.605505, 49.19189 ], [ -1.605572, 49.205286 ], [ -1.61192, 49.21805 ], [ -1.572085, 49.222132 ], [ -1.567259, 49.220883 ], [ -1.567629, 49.221185 ], [ -1.587432, 49.23286 ], [ -1.613567, 49.234796 ], [ -1.6228, 49.226256 ], [ -1.624932, 49.21597 ], [ -1.632059, 49.21481 ], [ -1.648982, 49.232534 ], [ -1.650697, 49.23585 ], [ -1.65928, 49.25553 ], [ -1.660664, 49.25883 ], [ -1.66574, 49.26628 ], [ -1.667599, 49.268719 ], [ -1.675794, 49.28034 ], [ -1.661433, 49.280754 ], [ -1.664166, 49.28586 ], [ -1.684741, 49.28883 ], [ -1.690647, 49.294579 ], [ -1.692944, 49.29773 ], [ -1.698584, 49.30569 ], [ -1.699953, 49.30847 ], [ -1.708234, 49.3245 ], [ -1.682834, 49.33077 ], [ -1.702657, 49.331933 ], [ -1.721197, 49.32644 ], [ -1.745723, 49.34801 ], [ -1.74914, 49.35054 ], [ -1.75249, 49.35309 ], [ -1.757904, 49.357522 ], [ -1.760222, 49.35993 ], [ -1.77999, 49.372093 ], [ -1.778986, 49.3739 ], [ -1.763286, 49.37219 ], [ -1.769985, 49.376631 ], [ -1.780348, 49.37773 ], [ -1.793443, 49.37172 ], [ -1.80894, 49.373907 ], [ -1.8105, 49.37731 ], [ -1.822957, 49.398995 ], [ -1.823033, 49.415408 ], [ -1.823064, 49.43561 ], [ -1.823429, 49.438625 ], [ -1.833949, 49.465192 ], [ -1.836419, 49.46824 ], [ -1.846017, 49.47479 ], [ -1.845318, 49.491265 ], [ -1.845644, 49.49443 ], [ -1.849683, 49.50675 ], [ -1.855867, 49.51117 ], [ -1.860493, 49.51213 ], [ -1.870951, 49.51333 ], [ -1.882401, 49.52045 ], [ -1.886622, 49.537329 ], [ -1.881127, 49.54284 ], [ -1.863029, 49.55044 ], [ -1.857916, 49.55139 ], [ -1.854536, 49.55634 ], [ -1.843455, 49.568999 ], [ -1.841157, 49.571639 ], [ -1.84158, 49.579788 ], [ -1.841839, 49.582821 ], [ -1.842243, 49.59722 ], [ -1.844195, 49.61363 ], [ -1.860529, 49.650265 ], [ -1.864844, 49.65233 ], [ -1.870463, 49.65602 ], [ -1.873562, 49.657683 ], [ -1.887468, 49.65968 ], [ -1.894341, 49.66397 ], [ -1.898261, 49.6658 ], [ -1.919443, 49.66653 ], [ -1.945515, 49.677526 ], [ -1.937622, 49.6866 ], [ -1.935886, 49.6899 ], [ -1.94671, 49.70539 ], [ -1.943888, 49.72244 ], [ -1.936063, 49.7261 ], [ -1.910356, 49.722616 ], [ -1.891362, 49.7106 ], [ -1.890333, 49.707236 ], [ -1.880731, 49.70597 ], [ -1.875839, 49.70678 ], [ -1.861135, 49.71492 ], [ -1.85203, 49.71598 ], [ -1.849802, 49.713126 ], [ -1.839749, 49.7112 ], [ -1.827099, 49.692775 ], [ -1.818792, 49.690035 ], [ -1.814473, 49.68882 ], [ -1.79494, 49.68753 ], [ -1.767209, 49.68015 ], [ -1.762675, 49.67868 ], [ -1.719858, 49.67966 ], [ -1.70879, 49.6729 ], [ -1.704438, 49.67082 ], [ -1.694778, 49.67029 ], [ -1.68604, 49.673324 ], [ -1.679176, 49.66895 ], [ -1.683579, 49.6675 ], [ -1.67968, 49.66172 ], [ -1.670779, 49.65778 ], [ -1.654778, 49.657027 ], [ -1.64938, 49.65683 ], [ -1.629516, 49.65994 ], [ -1.625563, 49.65856 ], [ -1.628991, 49.65246 ], [ -1.623596, 49.64675 ], [ -1.608396, 49.6459 ], [ -1.602854, 49.64579 ], [ -1.6031, 49.655773 ], [ -1.595719, 49.654477 ], [ -1.588753, 49.65271 ], [ -1.569005, 49.656682 ], [ -1.553883, 49.654082 ], [ -1.548801, 49.65461 ], [ -1.531088, 49.6553 ], [ -1.505924, 49.66254 ], [ -1.502227, 49.66464 ], [ -1.491636, 49.67004 ], [ -1.488012, 49.668251 ], [ -1.483499, 49.678003 ], [ -1.475625, 49.68249 ], [ -1.472808, 49.69549 ], [ -1.452667, 49.69187 ], [ -1.431857, 49.70051 ], [ -1.426995, 49.70189 ], [ -1.391547, 49.70613 ], [ -1.365451, 49.705859 ], [ -1.351406, 49.702736 ], [ -1.346798, 49.70141 ], [ -1.328948, 49.7005 ], [ -1.32481, 49.69882 ], [ -1.304892, 49.69458 ], [ -1.29985, 49.69352 ], [ -1.268552, 49.69465 ], [ -1.270748, 49.68157 ], [ -1.265525, 49.6758 ], [ -1.261931, 49.673275 ], [ -1.257301, 49.66946 ], [ -1.256473, 49.66683 ], [ -1.239988, 49.650754 ], [ -1.243241, 49.6482 ], [ -1.230154, 49.625495 ], [ -1.228886, 49.61164 ], [ -1.235476, 49.60793 ], [ -1.250156, 49.61212 ], [ -1.255504, 49.61231 ], [ -1.271874, 49.57059 ], [ -1.276676, 49.57374 ], [ -1.271306, 49.583376 ], [ -1.280386, 49.586359 ], [ -1.285581, 49.587067 ], [ -1.297331, 49.581251 ], [ -1.300378, 49.57863 ], [ -1.307363, 49.56325 ], [ -1.307799, 49.560036 ], [ -1.309562, 49.548408 ], [ -1.307773, 49.54572 ], [ -1.304859, 49.53752 ], [ -1.302622, 49.53509 ], [ -1.290846, 49.52127 ], [ -1.289678, 49.51821 ], [ -1.28099, 49.510674 ], [ -1.278419, 49.50802 ], [ -1.273592, 49.503492 ], [ -1.256987, 49.484896 ], [ -1.254042, 49.481867 ], [ -1.234004, 49.46535 ], [ -1.230736, 49.46256 ], [ -1.225604, 49.457914 ], [ -1.223118, 49.45555 ], [ -1.215123, 49.4493 ], [ -1.212361, 49.44728 ], [ -1.199823, 49.437767 ], [ -1.196795, 49.435334 ], [ -1.191718, 49.43146 ], [ -1.189345, 49.42944 ], [ -1.170925, 49.4121 ], [ -1.16207, 49.39182 ], [ -1.165032, 49.385128 ], [ -1.179204, 49.37525 ], [ -1.1768, 49.36839 ], [ -1.177537, 49.364902 ], [ -1.163876, 49.36657 ], [ -1.137164, 49.35728 ], [ -1.136049, 49.35404 ], [ -1.119623, 49.35557 ], [ -1.118898, 49.35236 ], [ -1.113308, 49.326691 ], [ -1.116762, 49.32407 ], [ -1.139452, 49.3096 ], [ -1.136826, 49.293 ], [ -1.131559, 49.284796 ], [ -1.127154, 49.28374 ], [ -1.12114, 49.27874 ], [ -1.128905, 49.27657 ], [ -1.133356, 49.2715 ], [ -1.112984, 49.26151 ], [ -1.104845, 49.252897 ], [ -1.095279, 49.25263 ], [ -1.095265, 49.24655 ], [ -1.092615, 49.24399 ], [ -1.087678, 49.24554 ], [ -1.074542, 49.23259 ], [ -1.062107, 49.22741 ], [ -1.058388, 49.2252 ], [ -1.053793, 49.22638 ], [ -1.047026, 49.221572 ], [ -1.036842, 49.221401 ], [ -1.024082, 49.20384 ], [ -1.023564, 49.20336 ], [ -1.008002, 49.20323 ], [ -0.988753, 49.19767 ], [ -0.987315, 49.19434 ], [ -0.97222, 49.19345 ], [ -0.959274, 49.198916 ], [ -0.937402, 49.21654 ], [ -0.932547, 49.21773 ], [ -0.931039, 49.226638 ], [ -0.925287, 49.2316 ], [ -0.920701, 49.230764 ], [ -0.924353, 49.22818 ], [ -0.920925, 49.221585 ], [ -0.901576, 49.20482 ], [ -0.887334, 49.201773 ], [ -0.910471, 49.19293 ], [ -0.912375, 49.183238 ], [ -0.92794, 49.165259 ], [ -0.937743, 49.16276 ], [ -0.947337, 49.16562 ], [ -0.956748, 49.164648 ], [ -0.958777, 49.16139 ], [ -0.936054, 49.158234 ], [ -0.931332, 49.15787 ], [ -0.937614, 49.15006 ], [ -0.907235, 49.13847 ], [ -0.903756, 49.136007 ], [ -0.905686, 49.132857 ], [ -0.900657, 49.132021 ], [ -0.895489, 49.132243 ], [ -0.89063, 49.13074 ], [ -0.888682, 49.125091 ], [ -0.904396, 49.115741 ], [ -0.914368, 49.1136 ], [ -0.922908, 49.10468 ], [ -0.924798, 49.101394 ], [ -0.893182, 49.117257 ], [ -0.88332, 49.11632 ], [ -0.878455, 49.1171 ], [ -0.877293, 49.108535 ], [ -0.877089, 49.10562 ], [ -0.877933, 49.10281 ], [ -0.878176, 49.09231 ], [ -0.880054, 49.08902 ], [ -0.870823, 49.077002 ], [ -0.870349, 49.073588 ], [ -0.869083, 49.07131 ], [ -0.869699, 49.06892 ], [ -0.870789, 49.064616 ], [ -0.875705, 49.05835 ], [ -0.876058, 49.05484 ], [ -0.880508, 49.05299 ], [ -0.891404, 49.045585 ], [ -0.885105, 49.04012 ], [ -0.870261, 49.03791 ], [ -0.862941, 49.033028 ], [ -0.862559, 49.02641 ], [ -0.867436, 49.02702 ], [ -0.885517, 49.0224 ], [ -0.8951, 49.011102 ], [ -0.901754, 49.012587 ], [ -0.905113, 49.0114 ], [ -0.908525, 49.00182 ], [ -0.909472, 48.998588 ], [ -0.915084, 48.98955 ], [ -0.941689, 48.96985 ], [ -0.944262, 48.96699 ], [ -0.954764, 48.965915 ], [ -0.986092, 48.952884 ], [ -0.990474, 48.950847 ], [ -0.994057, 48.95086 ], [ -0.997539, 48.950278 ], [ -1.001978, 48.95182 ], [ -1.010925, 48.95437 ], [ -1.020826, 48.95334 ], [ -1.027063, 48.962372 ], [ -1.031166, 48.960803 ], [ -1.044941, 48.96157 ], [ -1.052055, 48.95758 ], [ -1.056539, 48.95862 ], [ -1.058288, 48.95563 ], [ -1.055016, 48.94979 ], [ -1.071058, 48.94515 ], [ -1.064179, 48.941616 ], [ -1.065538, 48.931908 ], [ -1.07563, 48.92467 ], [ -1.075509, 48.92137 ], [ -1.071119, 48.92028 ], [ -1.066637, 48.919399 ], [ -1.052082, 48.923557 ], [ -1.02122, 48.926282 ], [ -1.013568, 48.92168 ], [ -1.021892, 48.90513 ], [ -1.049194, 48.89403 ], [ -1.050674, 48.890585 ], [ -1.05275, 48.88726 ], [ -1.057922, 48.87987 ], [ -1.059166, 48.87726 ], [ -1.064089, 48.87666 ], [ -1.069667, 48.871174 ], [ -1.0793, 48.8699 ], [ -1.09129, 48.87986 ], [ -1.09473, 48.87742 ], [ -1.101995, 48.866359 ], [ -1.120359, 48.85643 ], [ -1.121156, 48.84822 ], [ -1.126199, 48.849 ], [ -1.134947, 48.84645 ], [ -1.147021, 48.83563 ], [ -1.15708, 48.83637 ], [ -1.156907, 48.83489 ], [ -1.159278, 48.828538 ], [ -1.154292, 48.82314 ], [ -1.131205, 48.81992 ], [ -1.128609, 48.81711 ], [ -1.126652, 48.817358 ], [ -1.112704, 48.814984 ], [ -1.105514, 48.815457 ], [ -1.102298, 48.81427 ], [ -1.097289, 48.804671 ], [ -1.094949, 48.80162 ], [ -1.091833, 48.798734 ], [ -1.095982, 48.78666 ], [ -1.084108, 48.77931 ], [ -1.063501, 48.77507 ], [ -1.058734, 48.773351 ], [ -1.042029, 48.78283 ], [ -1.037394, 48.7828 ], [ -1.017017, 48.77285 ], [ -0.999312, 48.776852 ], [ -0.994239, 48.77715 ], [ -0.975072, 48.774519 ], [ -0.967055, 48.786087 ], [ -0.962351, 48.784613 ], [ -0.953693, 48.78832 ], [ -0.942241, 48.78178 ], [ -0.940336, 48.77857 ], [ -0.922326, 48.771356 ], [ -0.892271, 48.76549 ], [ -0.884687, 48.75712 ], [ -0.869777, 48.75643 ], [ -0.857529, 48.76153 ], [ -0.853875, 48.76388 ], [ -0.833212, 48.76516 ], [ -0.82521, 48.769537 ], [ -0.822003, 48.77224 ], [ -0.820382, 48.770574 ], [ -0.837619, 48.7549 ], [ -0.840936, 48.75223 ], [ -0.851775, 48.745576 ], [ -0.847051, 48.72971 ], [ -0.842413, 48.728463 ], [ -0.831817, 48.72967 ], [ -0.828977, 48.73252 ], [ -0.818932, 48.731414 ], [ -0.807277, 48.724475 ], [ -0.799661, 48.71203 ], [ -0.796916, 48.70907 ], [ -0.782499, 48.702761 ], [ -0.778546, 48.701346 ], [ -0.771771, 48.69738 ], [ -0.769037, 48.694939 ], [ -0.764464, 48.69339 ], [ -0.736816, 48.686229 ], [ -0.736267, 48.679501 ], [ -0.741063, 48.68077 ], [ -0.756696, 48.672754 ], [ -0.761733, 48.663212 ], [ -0.773294, 48.6567 ], [ -0.772818, 48.65331 ], [ -0.771271, 48.650141 ], [ -0.762478, 48.631634 ], [ -0.743561, 48.627566 ], [ -0.739977, 48.621708 ], [ -0.744902, 48.621446 ], [ -0.753004, 48.61964 ], [ -0.751665, 48.603429 ], [ -0.758265, 48.59475 ], [ -0.763014, 48.59339 ], [ -0.769516, 48.58829 ], [ -0.774519, 48.57541 ], [ -0.773342, 48.56849 ], [ -0.775712, 48.561837 ], [ -0.790567, 48.55207 ], [ -0.805633, 48.549751 ], [ -0.808914, 48.54787 ], [ -0.855947, 48.512185 ], [ -0.85602, 48.50874 ], [ -0.860363, 48.50146 ], [ -0.864503, 48.49989 ], [ -0.896033, 48.49487 ], [ -0.899357, 48.49748 ], [ -0.909357, 48.497279 ], [ -0.918084, 48.50072 ], [ -0.923879, 48.513139 ], [ -0.944042, 48.51464 ], [ -0.953884, 48.51679 ], [ -0.96223, 48.51277 ], [ -0.963867, 48.50269 ], [ -0.973776, 48.49483 ], [ -1.002975, 48.48907 ], [ -1.011839, 48.492995 ], [ -1.060748, 48.515392 ], [ -1.062997, 48.51309 ], [ -1.070165, 48.50849 ] ] ], [ [ [ -1.510898, 48.63503 ], [ -1.512867, 48.63564 ], [ -1.51236, 48.636697 ], [ -1.510871, 48.63693 ], [ -1.509807, 48.635785 ], [ -1.510898, 48.63503 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "52", "CODE_DEPT": "51", "NOM_DEPT": "MARNE", "CODE_CHF": "108", "NOM_CHF": "CHALONS-EN-CHAMPAGNE", "X_CHF_LIEU": "7999", "Y_CHF_LIEU": "68738", "X_CENTROID": "7907", "Y_CENTROID": "68728", "CODE_REG": "21", "NOM_REGION": "CHAMPAGNE-ARDENNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.670183, 48.53189 ], [ 4.650985, 48.537005 ], [ 4.649977, 48.53983 ], [ 4.635014, 48.54448 ], [ 4.636207, 48.5497 ], [ 4.641338, 48.55388 ], [ 4.636332, 48.5537 ], [ 4.592975, 48.55234 ], [ 4.586045, 48.548146 ], [ 4.581057, 48.54856 ], [ 4.575926, 48.5492 ], [ 4.558081, 48.542425 ], [ 4.543945, 48.52803 ], [ 4.538806, 48.527398 ], [ 4.528813, 48.5294 ], [ 4.520811, 48.544941 ], [ 4.516867, 48.54445 ], [ 4.511043, 48.54783 ], [ 4.507606, 48.54518 ], [ 4.495281, 48.53872 ], [ 4.490796, 48.54015 ], [ 4.463404, 48.54756 ], [ 4.458127, 48.54784 ], [ 4.427877, 48.553165 ], [ 4.42331, 48.55415 ], [ 4.418399, 48.555473 ], [ 4.392438, 48.567422 ], [ 4.349656, 48.59794 ], [ 4.344703, 48.59837 ], [ 4.330833, 48.601819 ], [ 4.318252, 48.613403 ], [ 4.314918, 48.61622 ], [ 4.330956, 48.62959 ], [ 4.329072, 48.63612 ], [ 4.326398, 48.638772 ], [ 4.324339, 48.641647 ], [ 4.323216, 48.64393 ], [ 4.318484, 48.64956 ], [ 4.327909, 48.65608 ], [ 4.324067, 48.66198 ], [ 4.333205, 48.673664 ], [ 4.323296, 48.68411 ], [ 4.327016, 48.696879 ], [ 4.325579, 48.7002 ], [ 4.311773, 48.710559 ], [ 4.297443, 48.71315 ], [ 4.262377, 48.707152 ], [ 4.248388, 48.71158 ], [ 4.243113, 48.716673 ], [ 4.234701, 48.70529 ], [ 4.233041, 48.70231 ], [ 4.177346, 48.70825 ], [ 4.162185, 48.706155 ], [ 4.157769, 48.70434 ], [ 4.153641, 48.70268 ], [ 4.131091, 48.68615 ], [ 4.126466, 48.687778 ], [ 4.088126, 48.698875 ], [ 4.083978, 48.700037 ], [ 4.079788, 48.701127 ], [ 4.065982, 48.6872 ], [ 4.067612, 48.67785 ], [ 4.062858, 48.67184 ], [ 4.044291, 48.660955 ], [ 4.039499, 48.66168 ], [ 4.030184, 48.65965 ], [ 4.001696, 48.66388 ], [ 3.998629, 48.66116 ], [ 3.984211, 48.65194 ], [ 3.977256, 48.63209 ], [ 3.980532, 48.629473 ], [ 3.974072, 48.62657 ], [ 3.966616, 48.62992 ], [ 3.964055, 48.62714 ], [ 3.94924, 48.603432 ], [ 3.91901, 48.60597 ], [ 3.911396, 48.60185 ], [ 3.908424, 48.60175 ], [ 3.897616, 48.575738 ], [ 3.883945, 48.57776 ], [ 3.883263, 48.57755 ], [ 3.878854, 48.57902 ], [ 3.855214, 48.579262 ], [ 3.855122, 48.572794 ], [ 3.863732, 48.569629 ], [ 3.858832, 48.55683 ], [ 3.86001, 48.543549 ], [ 3.866229, 48.543549 ], [ 3.86544, 48.540046 ], [ 3.852471, 48.52483 ], [ 3.834507, 48.51766 ], [ 3.829732, 48.51714 ], [ 3.825896, 48.515174 ], [ 3.821633, 48.517039 ], [ 3.796397, 48.5281 ], [ 3.786289, 48.52873 ], [ 3.782383, 48.52746 ], [ 3.774481, 48.5298 ], [ 3.76655, 48.527446 ], [ 3.759259, 48.53186 ], [ 3.731761, 48.53754 ], [ 3.726541, 48.537189 ], [ 3.706308, 48.534585 ], [ 3.701306, 48.534281 ], [ 3.6882, 48.53895 ], [ 3.664193, 48.53553 ], [ 3.66131, 48.53466 ], [ 3.658505, 48.53564 ], [ 3.643639, 48.53626 ], [ 3.63263, 48.54552 ], [ 3.631399, 48.57156 ], [ 3.629017, 48.57416 ], [ 3.623843, 48.57911 ], [ 3.615255, 48.57849 ], [ 3.61177, 48.5761 ], [ 3.607694, 48.57417 ], [ 3.604245, 48.572453 ], [ 3.602682, 48.57567 ], [ 3.59248, 48.587004 ], [ 3.582592, 48.58546 ], [ 3.581882, 48.588702 ], [ 3.579892, 48.604859 ], [ 3.575032, 48.60446 ], [ 3.565324, 48.60353 ], [ 3.563076, 48.612739 ], [ 3.555754, 48.62069 ], [ 3.540941, 48.63019 ], [ 3.521163, 48.6337 ], [ 3.522656, 48.63909 ], [ 3.533236, 48.64651 ], [ 3.528071, 48.645758 ], [ 3.512619, 48.643982 ], [ 3.492289, 48.64724 ], [ 3.476594, 48.637961 ], [ 3.451091, 48.63465 ], [ 3.458809, 48.65128 ], [ 3.442561, 48.66436 ], [ 3.446181, 48.666898 ], [ 3.442698, 48.67251 ], [ 3.456628, 48.68287 ], [ 3.470957, 48.68723 ], [ 3.472543, 48.69737 ], [ 3.47762, 48.69833 ], [ 3.464601, 48.707277 ], [ 3.467159, 48.72285 ], [ 3.466954, 48.72581 ], [ 3.46675, 48.72877 ], [ 3.467051, 48.732092 ], [ 3.467396, 48.73863 ], [ 3.442735, 48.73781 ], [ 3.43681, 48.74321 ], [ 3.437315, 48.749861 ], [ 3.436595, 48.75318 ], [ 3.432915, 48.75555 ], [ 3.40936, 48.75278 ], [ 3.399831, 48.755326 ], [ 3.397144, 48.76144 ], [ 3.409984, 48.78372 ], [ 3.414979, 48.78374 ], [ 3.428538, 48.78082 ], [ 3.442195, 48.78485 ], [ 3.442604, 48.78814 ], [ 3.440934, 48.80152 ], [ 3.421146, 48.80249 ], [ 3.407443, 48.80695 ], [ 3.416612, 48.81783 ], [ 3.420847, 48.816025 ], [ 3.434609, 48.812028 ], [ 3.449507, 48.812081 ], [ 3.470215, 48.820698 ], [ 3.474847, 48.81937 ], [ 3.477905, 48.81417 ], [ 3.480923, 48.81219 ], [ 3.483786, 48.81395 ], [ 3.487202, 48.81519 ], [ 3.485241, 48.825503 ], [ 3.491285, 48.83514 ], [ 3.486806, 48.848601 ], [ 3.485187, 48.85191 ], [ 3.486791, 48.857307 ], [ 3.484515, 48.86024 ], [ 3.481315, 48.86647 ], [ 3.485612, 48.866746 ], [ 3.489643, 48.8678 ], [ 3.494059, 48.8691 ], [ 3.502997, 48.87149 ], [ 3.502839, 48.874895 ], [ 3.508888, 48.89112 ], [ 3.520911, 48.90559 ], [ 3.523973, 48.907485 ], [ 3.528576, 48.91214 ], [ 3.547421, 48.91502 ], [ 3.566684, 48.913496 ], [ 3.57243, 48.918612 ], [ 3.574443, 48.939025 ], [ 3.588352, 48.94372 ], [ 3.593373, 48.944644 ], [ 3.601246, 48.946682 ], [ 3.594094, 48.95762 ], [ 3.591475, 48.960246 ], [ 3.602925, 48.96545 ], [ 3.616661, 48.96516 ], [ 3.621206, 48.96603 ], [ 3.625814, 48.98575 ], [ 3.637845, 49.000843 ], [ 3.639825, 49.003998 ], [ 3.660412, 49.0043 ], [ 3.665159, 49.00563 ], [ 3.668852, 49.00798 ], [ 3.677678, 49.01602 ], [ 3.66354, 49.037311 ], [ 3.65839, 49.037753 ], [ 3.64997, 49.04142 ], [ 3.615771, 49.03642 ], [ 3.614684, 49.033552 ], [ 3.586674, 49.03583 ], [ 3.585204, 49.03887 ], [ 3.587706, 49.05935 ], [ 3.590739, 49.06013 ], [ 3.600591, 49.06256 ], [ 3.604007, 49.06915 ], [ 3.607391, 49.071858 ], [ 3.632115, 49.072405 ], [ 3.638573, 49.077865 ], [ 3.639054, 49.08131 ], [ 3.63224, 49.08609 ], [ 3.62255, 49.10449 ], [ 3.620078, 49.107328 ], [ 3.613414, 49.115904 ], [ 3.601545, 49.117645 ], [ 3.600018, 49.12069 ], [ 3.610441, 49.127518 ], [ 3.612047, 49.137004 ], [ 3.619769, 49.14105 ], [ 3.619819, 49.147538 ], [ 3.621107, 49.14977 ], [ 3.624456, 49.151353 ], [ 3.654771, 49.148791 ], [ 3.679251, 49.15302 ], [ 3.683835, 49.15449 ], [ 3.695606, 49.151143 ], [ 3.697999, 49.14871 ], [ 3.703297, 49.143204 ], [ 3.712178, 49.146191 ], [ 3.717014, 49.14704 ], [ 3.734837, 49.15513 ], [ 3.739564, 49.15689 ], [ 3.744432, 49.15697 ], [ 3.748676, 49.15853 ], [ 3.751148, 49.1777 ], [ 3.740643, 49.17866 ], [ 3.725822, 49.17501 ], [ 3.70649, 49.18032 ], [ 3.69754, 49.19191 ], [ 3.703936, 49.19729 ], [ 3.704655, 49.20067 ], [ 3.700577, 49.20145 ], [ 3.697477, 49.206641 ], [ 3.681937, 49.198746 ], [ 3.67667, 49.20726 ], [ 3.662545, 49.20898 ], [ 3.654814, 49.212922 ], [ 3.654839, 49.219233 ], [ 3.651479, 49.22156 ], [ 3.666006, 49.22311 ], [ 3.677019, 49.237082 ], [ 3.67504, 49.24009 ], [ 3.670256, 49.24074 ], [ 3.655255, 49.26285 ], [ 3.660449, 49.26837 ], [ 3.665133, 49.26943 ], [ 3.66059, 49.270796 ], [ 3.651676, 49.27863 ], [ 3.658994, 49.28677 ], [ 3.655943, 49.29108 ], [ 3.64038, 49.29846 ], [ 3.63834, 49.30135 ], [ 3.642556, 49.303248 ], [ 3.64492, 49.313115 ], [ 3.647596, 49.31596 ], [ 3.666467, 49.32172 ], [ 3.669161, 49.32475 ], [ 3.683021, 49.32557 ], [ 3.687315, 49.32683 ], [ 3.69306, 49.32861 ], [ 3.707044, 49.333353 ], [ 3.71235, 49.33407 ], [ 3.731413, 49.33493 ], [ 3.736196, 49.33555 ], [ 3.742022, 49.33895 ], [ 3.741252, 49.344699 ], [ 3.741087, 49.34759 ], [ 3.746475, 49.34815 ], [ 3.757818, 49.347608 ], [ 3.773533, 49.354187 ], [ 3.777535, 49.35582 ], [ 3.779802, 49.352853 ], [ 3.789367, 49.354714 ], [ 3.793198, 49.35689 ], [ 3.803095, 49.358822 ], [ 3.818508, 49.357011 ], [ 3.823765, 49.35699 ], [ 3.828389, 49.351891 ], [ 3.83278, 49.35026 ], [ 3.85131, 49.34494 ], [ 3.857908, 49.353672 ], [ 3.848856, 49.36139 ], [ 3.847477, 49.364596 ], [ 3.853577, 49.366413 ], [ 3.856059, 49.36835 ], [ 3.859844, 49.381525 ], [ 3.87455, 49.383999 ], [ 3.891038, 49.39155 ], [ 3.895741, 49.39278 ], [ 3.910328, 49.395268 ], [ 3.92132, 49.405361 ], [ 3.92482, 49.40772 ], [ 3.933172, 49.40113 ], [ 3.93472, 49.39841 ], [ 3.961309, 49.37734 ], [ 3.981515, 49.379241 ], [ 3.986644, 49.37892 ], [ 4.008214, 49.367416 ], [ 4.011882, 49.361462 ], [ 4.012729, 49.358308 ], [ 4.02145, 49.36018 ], [ 4.035496, 49.359904 ], [ 4.037098, 49.384126 ], [ 4.044698, 49.4031 ], [ 4.047973, 49.40564 ], [ 4.074305, 49.40338 ], [ 4.07891, 49.401586 ], [ 4.085314, 49.401538 ], [ 4.106287, 49.401932 ], [ 4.110667, 49.40193 ], [ 4.115034, 49.401933 ], [ 4.13863, 49.40321 ], [ 4.14317, 49.404196 ], [ 4.162354, 49.40155 ], [ 4.167348, 49.40188 ], [ 4.191434, 49.40104 ], [ 4.188997, 49.3987 ], [ 4.198871, 49.38678 ], [ 4.201308, 49.383793 ], [ 4.20951, 49.386561 ], [ 4.213672, 49.38787 ], [ 4.235997, 49.38164 ], [ 4.240809, 49.38247 ], [ 4.242934, 49.38037 ], [ 4.247956, 49.3808 ], [ 4.258585, 49.36495 ], [ 4.27362, 49.35507 ], [ 4.294051, 49.35267 ], [ 4.291196, 49.350764 ], [ 4.290316, 49.346916 ], [ 4.305355, 49.329494 ], [ 4.307812, 49.32656 ], [ 4.308294, 49.326603 ], [ 4.333585, 49.32643 ], [ 4.348607, 49.317016 ], [ 4.353711, 49.316546 ], [ 4.359348, 49.31965 ], [ 4.36261, 49.32078 ], [ 4.371273, 49.32279 ], [ 4.375619, 49.3238 ], [ 4.390817, 49.2988 ], [ 4.396755, 49.29316 ], [ 4.406725, 49.291287 ], [ 4.408451, 49.28806 ], [ 4.408668, 49.286913 ], [ 4.444511, 49.27601 ], [ 4.446787, 49.272868 ], [ 4.45071, 49.274601 ], [ 4.454543, 49.27601 ], [ 4.479014, 49.27976 ], [ 4.48384, 49.28078 ], [ 4.492719, 49.28083 ], [ 4.515835, 49.2813 ], [ 4.53667, 49.28451 ], [ 4.552575, 49.293752 ], [ 4.557759, 49.29471 ], [ 4.577908, 49.295483 ], [ 4.599907, 49.28849 ], [ 4.596327, 49.286051 ], [ 4.591669, 49.280287 ], [ 4.597212, 49.27112 ], [ 4.606824, 49.26868 ], [ 4.611629, 49.25929 ], [ 4.611822, 49.2558 ], [ 4.618864, 49.24642 ], [ 4.619003, 49.23945 ], [ 4.636983, 49.23265 ], [ 4.670503, 49.24124 ], [ 4.685038, 49.256153 ], [ 4.690096, 49.257485 ], [ 4.703917, 49.254593 ], [ 4.703328, 49.25132 ], [ 4.713246, 49.25049 ], [ 4.718233, 49.25093 ], [ 4.72578, 49.253167 ], [ 4.729119, 49.251555 ], [ 4.74352, 49.2444 ], [ 4.744232, 49.24147 ], [ 4.76425, 49.24452 ], [ 4.789425, 49.241719 ], [ 4.806997, 49.2486 ], [ 4.812108, 49.249401 ], [ 4.820229, 49.24209 ], [ 4.82985, 49.243073 ], [ 4.827381, 49.2381 ], [ 4.827131, 49.235308 ], [ 4.866461, 49.22658 ], [ 4.867323, 49.2299 ], [ 4.861837, 49.23885 ], [ 4.882243, 49.25765 ], [ 4.876159, 49.26302 ], [ 4.889711, 49.258614 ], [ 4.908641, 49.26341 ], [ 4.913375, 49.26472 ], [ 4.924466, 49.261473 ], [ 4.933761, 49.261648 ], [ 4.923869, 49.250602 ], [ 4.95054, 49.240245 ], [ 4.950989, 49.236866 ], [ 4.970838, 49.23554 ], [ 4.975569, 49.222788 ], [ 4.977581, 49.219751 ], [ 4.988955, 49.213484 ], [ 4.991859, 49.210838 ], [ 4.990533, 49.207415 ], [ 4.978532, 49.20045 ], [ 4.953973, 49.19408 ], [ 4.942378, 49.18677 ], [ 4.941676, 49.183805 ], [ 4.952939, 49.17105 ], [ 4.954392, 49.168122 ], [ 4.964624, 49.15441 ], [ 4.965324, 49.15119 ], [ 4.974853, 49.132849 ], [ 4.978523, 49.12845 ], [ 4.98064, 49.126485 ], [ 4.984722, 49.122496 ], [ 4.987983, 49.119636 ], [ 4.996343, 49.106502 ], [ 4.997767, 49.09228 ], [ 4.996638, 49.088913 ], [ 5.003861, 49.06568 ], [ 5.005744, 49.05987 ], [ 5.000361, 49.050536 ], [ 4.968234, 49.024281 ], [ 4.965432, 49.02144 ], [ 4.966715, 49.021 ], [ 5.01001, 49.03469 ], [ 5.032916, 49.02574 ], [ 5.035267, 49.02256 ], [ 5.035641, 49.02057 ], [ 5.037505, 49.01057 ], [ 5.031576, 49.00129 ], [ 5.03062, 48.994998 ], [ 5.009278, 48.993135 ], [ 4.995417, 48.982465 ], [ 5.000441, 48.9834 ], [ 5.029939, 48.97864 ], [ 5.037757, 48.97412 ], [ 5.030943, 48.95432 ], [ 5.027718, 48.952194 ], [ 5.014132, 48.94559 ], [ 5.014887, 48.94251 ], [ 5.012848, 48.93675 ], [ 4.996952, 48.93704 ], [ 4.97332, 48.92887 ], [ 4.957261, 48.92803 ], [ 4.954079, 48.930911 ], [ 4.949578, 48.9303 ], [ 4.936209, 48.92214 ], [ 4.932159, 48.912682 ], [ 4.917043, 48.90321 ], [ 4.915801, 48.899847 ], [ 4.913592, 48.89768 ], [ 4.920098, 48.89466 ], [ 4.923063, 48.888495 ], [ 4.916497, 48.875413 ], [ 4.913098, 48.872733 ], [ 4.912256, 48.86946 ], [ 4.923236, 48.862891 ], [ 4.928577, 48.851029 ], [ 4.937384, 48.84811 ], [ 4.935493, 48.8405 ], [ 4.930968, 48.8394 ], [ 4.902918, 48.82774 ], [ 4.90027, 48.82463 ], [ 4.888761, 48.81721 ], [ 4.890378, 48.814107 ], [ 4.896351, 48.80903 ], [ 4.89003, 48.80036 ], [ 4.892929, 48.797694 ], [ 4.893365, 48.79696 ], [ 4.898034, 48.796138 ], [ 4.920462, 48.790984 ], [ 4.924802, 48.79238 ], [ 4.934376, 48.790589 ], [ 4.935478, 48.78432 ], [ 4.949258, 48.770537 ], [ 4.953825, 48.768195 ], [ 4.978949, 48.7517 ], [ 4.980624, 48.7485 ], [ 4.981359, 48.74564 ], [ 4.989575, 48.74204 ], [ 5.00922, 48.74139 ], [ 5.006168, 48.721442 ], [ 5.016002, 48.70952 ], [ 5.012702, 48.707153 ], [ 4.999273, 48.710392 ], [ 5.006402, 48.69885 ], [ 5.003295, 48.69617 ], [ 4.990665, 48.690724 ], [ 4.988428, 48.68443 ], [ 4.983953, 48.6861 ], [ 4.953906, 48.687122 ], [ 4.943394, 48.6807 ], [ 4.938677, 48.67477 ], [ 4.935845, 48.677555 ], [ 4.911002, 48.68885 ], [ 4.907662, 48.68634 ], [ 4.896822, 48.679325 ], [ 4.873943, 48.67252 ], [ 4.867776, 48.667206 ], [ 4.863555, 48.66805 ], [ 4.854931, 48.666947 ], [ 4.851014, 48.66757 ], [ 4.84669, 48.67208 ], [ 4.842237, 48.6733 ], [ 4.823314, 48.6741 ], [ 4.81997, 48.679902 ], [ 4.815489, 48.67958 ], [ 4.798326, 48.6775 ], [ 4.796902, 48.674395 ], [ 4.7914, 48.66964 ], [ 4.781666, 48.67021 ], [ 4.780413, 48.6673 ], [ 4.772425, 48.656462 ], [ 4.771876, 48.65188 ], [ 4.772621, 48.651816 ], [ 4.777424, 48.652906 ], [ 4.812533, 48.65467 ], [ 4.841402, 48.6492 ], [ 4.839057, 48.645834 ], [ 4.849539, 48.640867 ], [ 4.851305, 48.63819 ], [ 4.850022, 48.622271 ], [ 4.852769, 48.61589 ], [ 4.857671, 48.61523 ], [ 4.85438, 48.61272 ], [ 4.829662, 48.612481 ], [ 4.807034, 48.599655 ], [ 4.802295, 48.598323 ], [ 4.768136, 48.59344 ], [ 4.770422, 48.57642 ], [ 4.775919, 48.566985 ], [ 4.79375, 48.56707 ], [ 4.784793, 48.554867 ], [ 4.796077, 48.532517 ], [ 4.79918, 48.52979 ], [ 4.794317, 48.5294 ], [ 4.786045, 48.53115 ], [ 4.724836, 48.54141 ], [ 4.719578, 48.54141 ], [ 4.68471, 48.535371 ], [ 4.674932, 48.53763 ], [ 4.670183, 48.53189 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "53", "CODE_DEPT": "52", "NOM_DEPT": "HAUTE-MARNE", "CODE_CHF": "121", "NOM_CHF": "CHAUMONT", "X_CHF_LIEU": "8591", "Y_CHF_LIEU": "67811", "X_CENTROID": "8656", "Y_CENTROID": "67811", "CODE_REG": "21", "NOM_REGION": "CHAMPAGNE-ARDENNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.374079, 47.604542 ], [ 5.365786, 47.60279 ], [ 5.358712, 47.59427 ], [ 5.355723, 47.59169 ], [ 5.342324, 47.59669 ], [ 5.343756, 47.603543 ], [ 5.337818, 47.60903 ], [ 5.333294, 47.61063 ], [ 5.3233, 47.611993 ], [ 5.316021, 47.607221 ], [ 5.306357, 47.607277 ], [ 5.278142, 47.588255 ], [ 5.277901, 47.581361 ], [ 5.273261, 47.580551 ], [ 5.25623, 47.576551 ], [ 5.239656, 47.597653 ], [ 5.25601, 47.61922 ], [ 5.258601, 47.622222 ], [ 5.246326, 47.620136 ], [ 5.242875, 47.6182 ], [ 5.240285, 47.61678 ], [ 5.236942, 47.61678 ], [ 5.237409, 47.6203 ], [ 5.211365, 47.64166 ], [ 5.188388, 47.649609 ], [ 5.176227, 47.651385 ], [ 5.17341, 47.653536 ], [ 5.178341, 47.68095 ], [ 5.173442, 47.68082 ], [ 5.160201, 47.678155 ], [ 5.155673, 47.66839 ], [ 5.136233, 47.65195 ], [ 5.127205, 47.64846 ], [ 5.117441, 47.650566 ], [ 5.116859, 47.65202 ], [ 5.107398, 47.65133 ], [ 5.102371, 47.65734 ], [ 5.082662, 47.659447 ], [ 5.076587, 47.664976 ], [ 5.067123, 47.667368 ], [ 5.062024, 47.66718 ], [ 5.052569, 47.669839 ], [ 5.046804, 47.67557 ], [ 5.056238, 47.69481 ], [ 5.031234, 47.694135 ], [ 5.033099, 47.70772 ], [ 5.029154, 47.70993 ], [ 5.008993, 47.70096 ], [ 5.00401, 47.700376 ], [ 5.002099, 47.693539 ], [ 4.993925, 47.689285 ], [ 4.96857, 47.68733 ], [ 4.971371, 47.69023 ], [ 4.956706, 47.69974 ], [ 4.953759, 47.706313 ], [ 4.956914, 47.709051 ], [ 4.964212, 47.713422 ], [ 4.964464, 47.72281 ], [ 4.970801, 47.72782 ], [ 4.971535, 47.73108 ], [ 4.964441, 47.734828 ], [ 4.960496, 47.73281 ], [ 4.965074, 47.74222 ], [ 4.958989, 47.76187 ], [ 4.954454, 47.762716 ], [ 4.946347, 47.76596 ], [ 4.939114, 47.76205 ], [ 4.924775, 47.76062 ], [ 4.921427, 47.765883 ], [ 4.9168, 47.76682 ], [ 4.920816, 47.767837 ], [ 4.921897, 47.77594 ], [ 4.917958, 47.77709 ], [ 4.939148, 47.78389 ], [ 4.943089, 47.785719 ], [ 4.947261, 47.78693 ], [ 4.955366, 47.789719 ], [ 4.986103, 47.8036 ], [ 4.992111, 47.81344 ], [ 4.994125, 47.819748 ], [ 4.99022, 47.82112 ], [ 4.984921, 47.82527 ], [ 4.984281, 47.82461 ], [ 4.984619, 47.82756 ], [ 4.973256, 47.8312 ], [ 4.961536, 47.84076 ], [ 4.962141, 47.854264 ], [ 4.954094, 47.86677 ], [ 4.944541, 47.866387 ], [ 4.927456, 47.871548 ], [ 4.928136, 47.88697 ], [ 4.923381, 47.892401 ], [ 4.919542, 47.89431 ], [ 4.916131, 47.896976 ], [ 4.905961, 47.91647 ], [ 4.903607, 47.91955 ], [ 4.894663, 47.9226 ], [ 4.874586, 47.919522 ], [ 4.856783, 47.895634 ], [ 4.853034, 47.897539 ], [ 4.834024, 47.90679 ], [ 4.829474, 47.912285 ], [ 4.829963, 47.91559 ], [ 4.845857, 47.922903 ], [ 4.86521, 47.941564 ], [ 4.863158, 47.94457 ], [ 4.856121, 47.95328 ], [ 4.845033, 47.96043 ], [ 4.819692, 47.96247 ], [ 4.810959, 47.95987 ], [ 4.801642, 47.96254 ], [ 4.796724, 47.96257 ], [ 4.787781, 47.965254 ], [ 4.785712, 47.971461 ], [ 4.795259, 47.98344 ], [ 4.807631, 47.98884 ], [ 4.796214, 47.9954 ], [ 4.78942, 48.00787 ], [ 4.784607, 48.006727 ], [ 4.749531, 48.00431 ], [ 4.719943, 48.008896 ], [ 4.717126, 48.011368 ], [ 4.704239, 48.020241 ], [ 4.708903, 48.02178 ], [ 4.710489, 48.03515 ], [ 4.721823, 48.042371 ], [ 4.723155, 48.045763 ], [ 4.710106, 48.051129 ], [ 4.691158, 48.07195 ], [ 4.665953, 48.07672 ], [ 4.660742, 48.07715 ], [ 4.657543, 48.079243 ], [ 4.666381, 48.082637 ], [ 4.686338, 48.08422 ], [ 4.69088, 48.08595 ], [ 4.706273, 48.091733 ], [ 4.706929, 48.09499 ], [ 4.704076, 48.09777 ], [ 4.724477, 48.10697 ], [ 4.729771, 48.116376 ], [ 4.731874, 48.119451 ], [ 4.74089, 48.11566 ], [ 4.762028, 48.11511 ], [ 4.782071, 48.110791 ], [ 4.786885, 48.109269 ], [ 4.819903, 48.10332 ], [ 4.834386, 48.105164 ], [ 4.833349, 48.117511 ], [ 4.830916, 48.126433 ], [ 4.828601, 48.129079 ], [ 4.841084, 48.13464 ], [ 4.845262, 48.1407 ], [ 4.850094, 48.14158 ], [ 4.838385, 48.15215 ], [ 4.836583, 48.162213 ], [ 4.838845, 48.16886 ], [ 4.84882, 48.17667 ], [ 4.847077, 48.17992 ], [ 4.853853, 48.18932 ], [ 4.85609, 48.192464 ], [ 4.856297, 48.192587 ], [ 4.862336, 48.19818 ], [ 4.862435, 48.20861 ], [ 4.836553, 48.218619 ], [ 4.835568, 48.222045 ], [ 4.839374, 48.2242 ], [ 4.851517, 48.22941 ], [ 4.843279, 48.24076 ], [ 4.845763, 48.24706 ], [ 4.84458, 48.24907 ], [ 4.846501, 48.25581 ], [ 4.859395, 48.266025 ], [ 4.842941, 48.283517 ], [ 4.850845, 48.296255 ], [ 4.830865, 48.30309 ], [ 4.826276, 48.302243 ], [ 4.825283, 48.3121 ], [ 4.817381, 48.320442 ], [ 4.814218, 48.32301 ], [ 4.837279, 48.337297 ], [ 4.841471, 48.33946 ], [ 4.834492, 48.344477 ], [ 4.818946, 48.34505 ], [ 4.79289, 48.356093 ], [ 4.788073, 48.35542 ], [ 4.774639, 48.35745 ], [ 4.75458, 48.36655 ], [ 4.760188, 48.38761 ], [ 4.74663, 48.392303 ], [ 4.721621, 48.394397 ], [ 4.707664, 48.391098 ], [ 4.703582, 48.393137 ], [ 4.701249, 48.39537 ], [ 4.708356, 48.401185 ], [ 4.694223, 48.41467 ], [ 4.685262, 48.41681 ], [ 4.680322, 48.417054 ], [ 4.688066, 48.425403 ], [ 4.67796, 48.432421 ], [ 4.676942, 48.43567 ], [ 4.675907, 48.44138 ], [ 4.673885, 48.444132 ], [ 4.635782, 48.456612 ], [ 4.630106, 48.465518 ], [ 4.62683, 48.468082 ], [ 4.63622, 48.467215 ], [ 4.648724, 48.47071 ], [ 4.653469, 48.470557 ], [ 4.651486, 48.47721 ], [ 4.659165, 48.49323 ], [ 4.657667, 48.50323 ], [ 4.666284, 48.510635 ], [ 4.669606, 48.510796 ], [ 4.676345, 48.51953 ], [ 4.672146, 48.528872 ], [ 4.670183, 48.53189 ], [ 4.674932, 48.53763 ], [ 4.68471, 48.535371 ], [ 4.719578, 48.54141 ], [ 4.724836, 48.54141 ], [ 4.786045, 48.53115 ], [ 4.794317, 48.5294 ], [ 4.79918, 48.52979 ], [ 4.796077, 48.532517 ], [ 4.784793, 48.554867 ], [ 4.79375, 48.56707 ], [ 4.775919, 48.566985 ], [ 4.770422, 48.57642 ], [ 4.768136, 48.59344 ], [ 4.802295, 48.598323 ], [ 4.807034, 48.599655 ], [ 4.829662, 48.612481 ], [ 4.85438, 48.61272 ], [ 4.857671, 48.61523 ], [ 4.852769, 48.61589 ], [ 4.850022, 48.622271 ], [ 4.851305, 48.63819 ], [ 4.849539, 48.640867 ], [ 4.839057, 48.645834 ], [ 4.841402, 48.6492 ], [ 4.812533, 48.65467 ], [ 4.777424, 48.652906 ], [ 4.772621, 48.651816 ], [ 4.771876, 48.65188 ], [ 4.772425, 48.656462 ], [ 4.780413, 48.6673 ], [ 4.781666, 48.67021 ], [ 4.7914, 48.66964 ], [ 4.796902, 48.674395 ], [ 4.798326, 48.6775 ], [ 4.815489, 48.67958 ], [ 4.81997, 48.679902 ], [ 4.823314, 48.6741 ], [ 4.842237, 48.6733 ], [ 4.84669, 48.67208 ], [ 4.851014, 48.66757 ], [ 4.854931, 48.666947 ], [ 4.863555, 48.66805 ], [ 4.867776, 48.667206 ], [ 4.873943, 48.67252 ], [ 4.896822, 48.679325 ], [ 4.907662, 48.68634 ], [ 4.911002, 48.68885 ], [ 4.935845, 48.677555 ], [ 4.938677, 48.67477 ], [ 4.943394, 48.6807 ], [ 4.953906, 48.687122 ], [ 4.983953, 48.6861 ], [ 4.988428, 48.68443 ], [ 5.003256, 48.68204 ], [ 5.007434, 48.680069 ], [ 5.008261, 48.67048 ], [ 5.011053, 48.66783 ], [ 4.996128, 48.66047 ], [ 4.992812, 48.658271 ], [ 4.993755, 48.65522 ], [ 4.994686, 48.64616 ], [ 5.004196, 48.6346 ], [ 4.996262, 48.61879 ], [ 5.006401, 48.61139 ], [ 5.033402, 48.61376 ], [ 5.051809, 48.632966 ], [ 5.056671, 48.63233 ], [ 5.05939, 48.61519 ], [ 5.068597, 48.59919 ], [ 5.070286, 48.595925 ], [ 5.094681, 48.59297 ], [ 5.114686, 48.59458 ], [ 5.119453, 48.595716 ], [ 5.117875, 48.58689 ], [ 5.123434, 48.58214 ], [ 5.127067, 48.5801 ], [ 5.131277, 48.572586 ], [ 5.134455, 48.57069 ], [ 5.140569, 48.565697 ], [ 5.143528, 48.563133 ], [ 5.152213, 48.56034 ], [ 5.160367, 48.564133 ], [ 5.165068, 48.565343 ], [ 5.172768, 48.557149 ], [ 5.192655, 48.548397 ], [ 5.197028, 48.546678 ], [ 5.194712, 48.540557 ], [ 5.207077, 48.53747 ], [ 5.211558, 48.53191 ], [ 5.212253, 48.52879 ], [ 5.217139, 48.52771 ], [ 5.221951, 48.52648 ], [ 5.229125, 48.530773 ], [ 5.272637, 48.514317 ], [ 5.287443, 48.513709 ], [ 5.289147, 48.51053 ], [ 5.292344, 48.50931 ], [ 5.295728, 48.508329 ], [ 5.302655, 48.513091 ], [ 5.30559, 48.51576 ], [ 5.317018, 48.50891 ], [ 5.327505, 48.509 ], [ 5.346954, 48.48505 ], [ 5.34947, 48.481989 ], [ 5.363594, 48.477271 ], [ 5.368678, 48.47625 ], [ 5.369382, 48.47655 ], [ 5.377321, 48.47191 ], [ 5.398074, 48.473187 ], [ 5.40115, 48.470299 ], [ 5.403623, 48.46785 ], [ 5.406055, 48.465393 ], [ 5.403949, 48.455175 ], [ 5.409502, 48.44554 ], [ 5.429225, 48.43441 ], [ 5.439576, 48.4342 ], [ 5.444199, 48.42803 ], [ 5.44593, 48.42484 ], [ 5.455491, 48.42252 ], [ 5.464657, 48.42535 ], [ 5.468366, 48.423682 ], [ 5.470062, 48.42093 ], [ 5.465177, 48.419995 ], [ 5.447148, 48.41499 ], [ 5.409779, 48.39262 ], [ 5.397763, 48.39259 ], [ 5.393838, 48.39157 ], [ 5.408839, 48.38303 ], [ 5.438413, 48.380864 ], [ 5.442884, 48.37939 ], [ 5.421257, 48.36335 ], [ 5.418555, 48.36069 ], [ 5.42237, 48.35175 ], [ 5.417157, 48.342622 ], [ 5.424574, 48.334216 ], [ 5.426048, 48.33106 ], [ 5.443838, 48.33683 ], [ 5.459888, 48.34948 ], [ 5.472422, 48.351535 ], [ 5.474496, 48.35457 ], [ 5.499385, 48.35455 ], [ 5.507063, 48.350159 ], [ 5.522169, 48.34862 ], [ 5.526527, 48.346856 ], [ 5.523022, 48.34051 ], [ 5.531164, 48.32816 ], [ 5.533514, 48.3251 ], [ 5.588128, 48.27732 ], [ 5.588425, 48.27376 ], [ 5.608996, 48.288858 ], [ 5.611652, 48.29181 ], [ 5.649556, 48.27029 ], [ 5.653809, 48.268524 ], [ 5.651579, 48.25797 ], [ 5.64946, 48.2547 ], [ 5.642055, 48.245749 ], [ 5.640901, 48.24235 ], [ 5.672188, 48.231009 ], [ 5.676344, 48.229016 ], [ 5.683443, 48.23294 ], [ 5.687792, 48.23418 ], [ 5.706542, 48.22194 ], [ 5.710844, 48.21994 ], [ 5.722288, 48.20595 ], [ 5.72451, 48.203075 ], [ 5.726909, 48.200508 ], [ 5.730055, 48.19832 ], [ 5.730983, 48.1897 ], [ 5.69977, 48.18967 ], [ 5.680173, 48.178674 ], [ 5.682299, 48.17548 ], [ 5.686525, 48.164079 ], [ 5.684222, 48.158234 ], [ 5.685843, 48.150941 ], [ 5.675079, 48.139247 ], [ 5.676706, 48.136311 ], [ 5.666767, 48.130206 ], [ 5.662513, 48.12879 ], [ 5.661573, 48.12561 ], [ 5.656558, 48.12055 ], [ 5.669706, 48.11224 ], [ 5.672119, 48.10944 ], [ 5.658664, 48.106017 ], [ 5.649393, 48.10505 ], [ 5.645839, 48.10252 ], [ 5.639085, 48.09728 ], [ 5.632878, 48.08437 ], [ 5.655767, 48.071364 ], [ 5.655564, 48.081237 ], [ 5.659139, 48.083668 ], [ 5.692078, 48.07555 ], [ 5.696278, 48.077566 ], [ 5.70029, 48.06744 ], [ 5.713371, 48.061623 ], [ 5.721281, 48.052725 ], [ 5.720627, 48.05202 ], [ 5.721596, 48.04526 ], [ 5.740804, 48.049012 ], [ 5.764225, 48.03154 ], [ 5.768818, 48.030033 ], [ 5.77682, 48.03364 ], [ 5.776273, 48.02525 ], [ 5.776419, 48.022407 ], [ 5.787321, 48.007417 ], [ 5.786418, 48.00402 ], [ 5.794917, 47.993694 ], [ 5.793592, 47.99071 ], [ 5.782448, 47.980041 ], [ 5.778492, 47.97801 ], [ 5.788412, 47.952696 ], [ 5.802464, 47.949714 ], [ 5.805268, 47.946973 ], [ 5.815285, 47.95692 ], [ 5.829489, 47.958036 ], [ 5.839732, 47.9648 ], [ 5.839894, 47.968087 ], [ 5.845841, 47.975696 ], [ 5.848679, 47.96961 ], [ 5.853561, 47.96988 ], [ 5.854239, 47.966037 ], [ 5.849925, 47.964359 ], [ 5.856384, 47.948371 ], [ 5.86448, 47.94588 ], [ 5.884687, 47.929263 ], [ 5.884726, 47.92605 ], [ 5.888909, 47.91304 ], [ 5.890458, 47.909759 ], [ 5.889189, 47.90737 ], [ 5.886494, 47.90263 ], [ 5.883191, 47.90026 ], [ 5.851353, 47.9059 ], [ 5.848194, 47.903435 ], [ 5.845094, 47.89709 ], [ 5.842544, 47.89423 ], [ 5.82186, 47.86911 ], [ 5.824676, 47.8594 ], [ 5.827301, 47.85467 ], [ 5.828521, 47.85195 ], [ 5.823562, 47.85229 ], [ 5.805625, 47.84732 ], [ 5.801098, 47.84698 ], [ 5.796619, 47.84982 ], [ 5.798883, 47.85571 ], [ 5.789061, 47.8552 ], [ 5.761192, 47.859343 ], [ 5.758832, 47.85667 ], [ 5.753406, 47.85165 ], [ 5.744204, 47.848855 ], [ 5.748488, 47.82977 ], [ 5.746056, 47.823596 ], [ 5.743349, 47.82115 ], [ 5.731428, 47.81763 ], [ 5.728007, 47.81845 ], [ 5.718716, 47.821082 ], [ 5.713646, 47.82157 ], [ 5.708478, 47.82197 ], [ 5.693678, 47.82175 ], [ 5.685751, 47.81278 ], [ 5.676612, 47.77916 ], [ 5.680107, 47.77774 ], [ 5.682247, 47.77539 ], [ 5.67997, 47.769968 ], [ 5.703353, 47.769574 ], [ 5.708914, 47.764664 ], [ 5.707806, 47.76152 ], [ 5.706342, 47.751116 ], [ 5.70942, 47.74495 ], [ 5.692378, 47.73693 ], [ 5.689648, 47.7339 ], [ 5.692494, 47.727885 ], [ 5.695895, 47.72518 ], [ 5.692512, 47.724 ], [ 5.685198, 47.722694 ], [ 5.687023, 47.72023 ], [ 5.684206, 47.71228 ], [ 5.69322, 47.70396 ], [ 5.694993, 47.69364 ], [ 5.693806, 47.69022 ], [ 5.692038, 47.687162 ], [ 5.675428, 47.682563 ], [ 5.667652, 47.685479 ], [ 5.663716, 47.684911 ], [ 5.659723, 47.68453 ], [ 5.659334, 47.681543 ], [ 5.653261, 47.677161 ], [ 5.648861, 47.675549 ], [ 5.629558, 47.67674 ], [ 5.61539, 47.67334 ], [ 5.606094, 47.675205 ], [ 5.60234, 47.67506 ], [ 5.596814, 47.671647 ], [ 5.585265, 47.69057 ], [ 5.583657, 47.70088 ], [ 5.575159, 47.70473 ], [ 5.571029, 47.706798 ], [ 5.567389, 47.70712 ], [ 5.565433, 47.7039 ], [ 5.530594, 47.67401 ], [ 5.510298, 47.67423 ], [ 5.506626, 47.67666 ], [ 5.502301, 47.67741 ], [ 5.48277, 47.684644 ], [ 5.478994, 47.6823 ], [ 5.46934, 47.67483 ], [ 5.444413, 47.67089 ], [ 5.434217, 47.67126 ], [ 5.421267, 47.67644 ], [ 5.406486, 47.67362 ], [ 5.398975, 47.653075 ], [ 5.401686, 47.64844 ], [ 5.405616, 47.64813 ], [ 5.4032, 47.64509 ], [ 5.387812, 47.636212 ], [ 5.37492, 47.621355 ], [ 5.374079, 47.604542 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "54", "CODE_DEPT": "53", "NOM_DEPT": "MAYENNE", "CODE_CHF": "130", "NOM_CHF": "LAVAL", "X_CHF_LIEU": "4193", "Y_CHF_LIEU": "67814", "X_CENTROID": "4280", "Y_CENTROID": "67892", "CODE_REG": "52", "NOM_REGION": "PAYS-DE-LA-LOIRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.381704, 47.76057 ], [ -0.38398, 47.76716 ], [ -0.409624, 47.77803 ], [ -0.414219, 47.775078 ], [ -0.410032, 47.76522 ], [ -0.414949, 47.76522 ], [ -0.429175, 47.76722 ], [ -0.453929, 47.75724 ], [ -0.45681, 47.760044 ], [ -0.480245, 47.777 ], [ -0.507134, 47.78507 ], [ -0.511455, 47.78553 ], [ -0.519889, 47.78652 ], [ -0.5221, 47.78398 ], [ -0.521709, 47.78069 ], [ -0.51835, 47.767697 ], [ -0.532922, 47.75069 ], [ -0.537758, 47.75149 ], [ -0.560372, 47.757435 ], [ -0.564982, 47.756835 ], [ -0.573109, 47.753704 ], [ -0.584648, 47.7584 ], [ -0.587755, 47.75593 ], [ -0.610818, 47.735689 ], [ -0.616059, 47.73597 ], [ -0.646242, 47.736906 ], [ -0.649406, 47.734554 ], [ -0.653787, 47.73338 ], [ -0.669841, 47.740754 ], [ -0.689884, 47.73969 ], [ -0.709257, 47.74377 ], [ -0.718459, 47.740885 ], [ -0.731594, 47.741891 ], [ -0.735166, 47.739497 ], [ -0.749702, 47.74161 ], [ -0.759625, 47.752932 ], [ -0.764392, 47.754013 ], [ -0.783388, 47.750193 ], [ -0.786308, 47.75292 ], [ -0.792946, 47.761507 ], [ -0.811744, 47.765357 ], [ -0.816068, 47.77123 ], [ -0.8354, 47.76962 ], [ -0.839295, 47.752282 ], [ -0.843281, 47.75364 ], [ -0.859867, 47.7581 ], [ -0.864606, 47.759136 ], [ -0.89317, 47.764506 ], [ -0.893041, 47.76786 ], [ -0.894399, 47.77125 ], [ -0.931935, 47.79351 ], [ -0.931138, 47.790325 ], [ -0.936498, 47.786855 ], [ -0.950554, 47.79553 ], [ -0.959761, 47.79633 ], [ -0.961986, 47.79352 ], [ -0.972097, 47.78315 ], [ -0.958546, 47.77912 ], [ -0.952266, 47.76999 ], [ -0.978457, 47.762 ], [ -0.982688, 47.76193 ], [ -0.986653, 47.762935 ], [ -0.990877, 47.76401 ], [ -0.999831, 47.76435 ], [ -1.006341, 47.76808 ], [ -1.015442, 47.76929 ], [ -1.020898, 47.77479 ], [ -1.033695, 47.77114 ], [ -1.043471, 47.77241 ], [ -1.047709, 47.773645 ], [ -1.075037, 47.77419 ], [ -1.075591, 47.77444 ], [ -1.080839, 47.7747 ], [ -1.09285, 47.7812 ], [ -1.13972, 47.78502 ], [ -1.139246, 47.7822 ], [ -1.137437, 47.77664 ], [ -1.140507, 47.77469 ], [ -1.165022, 47.778875 ], [ -1.177831, 47.784646 ], [ -1.193039, 47.786212 ], [ -1.199356, 47.795251 ], [ -1.209308, 47.796777 ], [ -1.215047, 47.80252 ], [ -1.238252, 47.80999 ], [ -1.227872, 47.82029 ], [ -1.223153, 47.819009 ], [ -1.220867, 47.821723 ], [ -1.216083, 47.836154 ], [ -1.214178, 47.84251 ], [ -1.222126, 47.850366 ], [ -1.217566, 47.85601 ], [ -1.213082, 47.857217 ], [ -1.206104, 47.858387 ], [ -1.203023, 47.85685 ], [ -1.191997, 47.86543 ], [ -1.189163, 47.86771 ], [ -1.197464, 47.87902 ], [ -1.197126, 47.885593 ], [ -1.192156, 47.89102 ], [ -1.179919, 47.89558 ], [ -1.176175, 47.897723 ], [ -1.175715, 47.91095 ], [ -1.168644, 47.915475 ], [ -1.163133, 47.928089 ], [ -1.167151, 47.93417 ], [ -1.162792, 47.937924 ], [ -1.159514, 47.939221 ], [ -1.161289, 47.95295 ], [ -1.152452, 47.966344 ], [ -1.148707, 47.968216 ], [ -1.129886, 47.97122 ], [ -1.1223, 47.98651 ], [ -1.107516, 47.988876 ], [ -1.098003, 47.987018 ], [ -1.092993, 47.98751 ], [ -1.083363, 47.9857 ], [ -1.078714, 47.984409 ], [ -1.072252, 47.982065 ], [ -1.06883, 47.982949 ], [ -1.050316, 47.984634 ], [ -1.035241, 47.99201 ], [ -1.030417, 47.992473 ], [ -1.021712, 47.9954 ], [ -1.017261, 48.00804 ], [ -1.021413, 48.01744 ], [ -1.033554, 48.03261 ], [ -1.028089, 48.03846 ], [ -1.033183, 48.051353 ], [ -1.029935, 48.057763 ], [ -1.028222, 48.06103 ], [ -1.021497, 48.0684 ], [ -1.025492, 48.069845 ], [ -1.040332, 48.078086 ], [ -1.04725, 48.086606 ], [ -1.049133, 48.089596 ], [ -1.052936, 48.10604 ], [ -1.057022, 48.12246 ], [ -1.059299, 48.12549 ], [ -1.060683, 48.148738 ], [ -1.068944, 48.159482 ], [ -1.073926, 48.1593 ], [ -1.072702, 48.16579 ], [ -1.079822, 48.17687 ], [ -1.078229, 48.17997 ], [ -1.074357, 48.200471 ], [ -1.07765, 48.20315 ], [ -1.081888, 48.205148 ], [ -1.08712, 48.21004 ], [ -1.08253, 48.21623 ], [ -1.0806, 48.2195 ], [ -1.098672, 48.25131 ], [ -1.099932, 48.26837 ], [ -1.093643, 48.27288 ], [ -1.08845, 48.29013 ], [ -1.065875, 48.30968 ], [ -1.06096, 48.31109 ], [ -1.059222, 48.31219 ], [ -1.04583, 48.329655 ], [ -1.053602, 48.33813 ], [ -1.05578, 48.34113 ], [ -1.059735, 48.36682 ], [ -1.064838, 48.36724 ], [ -1.057253, 48.37582 ], [ -1.05658, 48.379187 ], [ -1.052793, 48.38093 ], [ -1.064323, 48.399929 ], [ -1.079478, 48.4139 ], [ -1.079735, 48.41738 ], [ -1.078455, 48.4185 ], [ -1.078227, 48.42201 ], [ -1.081436, 48.438573 ], [ -1.068721, 48.448676 ], [ -1.065332, 48.45125 ], [ -1.06716, 48.460332 ], [ -1.064649, 48.466913 ], [ -1.073586, 48.474894 ], [ -1.077392, 48.491095 ], [ -1.07492, 48.501133 ], [ -1.06746, 48.50561 ], [ -1.070165, 48.50849 ], [ -1.062997, 48.51309 ], [ -1.060748, 48.515392 ], [ -1.011839, 48.492995 ], [ -1.002975, 48.48907 ], [ -0.973776, 48.49483 ], [ -0.963867, 48.50269 ], [ -0.96223, 48.51277 ], [ -0.953884, 48.51679 ], [ -0.944042, 48.51464 ], [ -0.923879, 48.513139 ], [ -0.918084, 48.50072 ], [ -0.909357, 48.497279 ], [ -0.899357, 48.49748 ], [ -0.896033, 48.49487 ], [ -0.864503, 48.49989 ], [ -0.860363, 48.50146 ], [ -0.845826, 48.49783 ], [ -0.826973, 48.477186 ], [ -0.821988, 48.47608 ], [ -0.81808, 48.47412 ], [ -0.818601, 48.468431 ], [ -0.815108, 48.45746 ], [ -0.812743, 48.45492 ], [ -0.793424, 48.465267 ], [ -0.777874, 48.46541 ], [ -0.773966, 48.44271 ], [ -0.760817, 48.436412 ], [ -0.756483, 48.436937 ], [ -0.715918, 48.4509 ], [ -0.735258, 48.462402 ], [ -0.730066, 48.47205 ], [ -0.725251, 48.47347 ], [ -0.716955, 48.47032 ], [ -0.703268, 48.472888 ], [ -0.702106, 48.46966 ], [ -0.692663, 48.46827 ], [ -0.687991, 48.46944 ], [ -0.68361, 48.47069 ], [ -0.68367, 48.47694 ], [ -0.669079, 48.483289 ], [ -0.66884, 48.486458 ], [ -0.658168, 48.474845 ], [ -0.653977, 48.45746 ], [ -0.653906, 48.453912 ], [ -0.654215, 48.44454 ], [ -0.613629, 48.46061 ], [ -0.598929, 48.47074 ], [ -0.594311, 48.47252 ], [ -0.593207, 48.47084 ], [ -0.575807, 48.470079 ], [ -0.571639, 48.46893 ], [ -0.567457, 48.474545 ], [ -0.564255, 48.47686 ], [ -0.562328, 48.473799 ], [ -0.553157, 48.47297 ], [ -0.53787, 48.488884 ], [ -0.534907, 48.49155 ], [ -0.518632, 48.497552 ], [ -0.512798, 48.50653 ], [ -0.509294, 48.50884 ], [ -0.492665, 48.50212 ], [ -0.48293, 48.50263 ], [ -0.478198, 48.50157 ], [ -0.466117, 48.51252 ], [ -0.455856, 48.51269 ], [ -0.450728, 48.51282 ], [ -0.446883, 48.51494 ], [ -0.428467, 48.51021 ], [ -0.424473, 48.50819 ], [ -0.425449, 48.50736 ], [ -0.400875, 48.50789 ], [ -0.397657, 48.51051 ], [ -0.393346, 48.50107 ], [ -0.389253, 48.49937 ], [ -0.375751, 48.4961 ], [ -0.371083, 48.495556 ], [ -0.365814, 48.48755 ], [ -0.353152, 48.483774 ], [ -0.353789, 48.496496 ], [ -0.336825, 48.50242 ], [ -0.334973, 48.50908 ], [ -0.320239, 48.522929 ], [ -0.312305, 48.52027 ], [ -0.308956, 48.51833 ], [ -0.290094, 48.516871 ], [ -0.285881, 48.515169 ], [ -0.285283, 48.50865 ], [ -0.27155, 48.50745 ], [ -0.26839, 48.52067 ], [ -0.250837, 48.528081 ], [ -0.243057, 48.537062 ], [ -0.260578, 48.54913 ], [ -0.257472, 48.551956 ], [ -0.249293, 48.556078 ], [ -0.246473, 48.56572 ], [ -0.242639, 48.568 ], [ -0.230695, 48.56195 ], [ -0.215792, 48.55979 ], [ -0.207346, 48.56252 ], [ -0.199584, 48.558236 ], [ -0.195862, 48.55591 ], [ -0.191725, 48.55168 ], [ -0.189492, 48.548622 ], [ -0.179251, 48.541649 ], [ -0.144604, 48.52775 ], [ -0.145388, 48.52116 ], [ -0.166668, 48.514706 ], [ -0.172087, 48.502137 ], [ -0.167477, 48.50297 ], [ -0.155678, 48.49331 ], [ -0.155447, 48.490138 ], [ -0.155064, 48.48716 ], [ -0.15017, 48.478953 ], [ -0.153516, 48.47695 ], [ -0.148132, 48.47161 ], [ -0.148946, 48.45879 ], [ -0.142193, 48.4543 ], [ -0.137842, 48.45282 ], [ -0.118485, 48.448233 ], [ -0.108255, 48.448024 ], [ -0.08034, 48.44971 ], [ -0.067327, 48.45723 ], [ -0.062548, 48.456514 ], [ -0.053345, 48.45351 ], [ -0.049827, 48.44723 ], [ -0.054087, 48.43391 ], [ -0.055219, 48.43059 ], [ -0.05758, 48.429084 ], [ -0.053658, 48.3935 ], [ -0.053479, 48.390188 ], [ -0.057247, 48.384779 ], [ -0.054531, 48.382003 ], [ -0.060081, 48.377503 ], [ -0.069332, 48.377848 ], [ -0.078791, 48.3702 ], [ -0.092307, 48.37461 ], [ -0.112164, 48.374246 ], [ -0.117513, 48.368262 ], [ -0.136317, 48.362723 ], [ -0.132777, 48.34571 ], [ -0.12222, 48.33831 ], [ -0.126558, 48.33926 ], [ -0.148068, 48.344142 ], [ -0.152716, 48.343046 ], [ -0.157998, 48.334522 ], [ -0.155774, 48.31747 ], [ -0.154882, 48.31408 ], [ -0.151639, 48.314018 ], [ -0.148392, 48.313897 ], [ -0.142301, 48.30842 ], [ -0.138609, 48.29495 ], [ -0.149338, 48.28368 ], [ -0.15104, 48.2774 ], [ -0.149973, 48.276253 ], [ -0.15234, 48.2732 ], [ -0.16458, 48.25916 ], [ -0.160959, 48.238806 ], [ -0.157622, 48.23619 ], [ -0.145406, 48.2219 ], [ -0.148927, 48.219703 ], [ -0.152524, 48.21383 ], [ -0.146837, 48.20501 ], [ -0.151311, 48.203674 ], [ -0.164727, 48.199614 ], [ -0.178705, 48.190386 ], [ -0.181799, 48.18832 ], [ -0.185908, 48.183438 ], [ -0.189927, 48.18131 ], [ -0.222508, 48.171953 ], [ -0.246636, 48.16015 ], [ -0.250213, 48.157918 ], [ -0.248305, 48.15491 ], [ -0.238886, 48.1488 ], [ -0.253808, 48.136529 ], [ -0.249608, 48.134961 ], [ -0.243429, 48.1327 ], [ -0.241139, 48.126954 ], [ -0.222963, 48.12272 ], [ -0.223729, 48.119848 ], [ -0.216316, 48.1132 ], [ -0.216521, 48.109706 ], [ -0.234647, 48.09782 ], [ -0.236383, 48.08753 ], [ -0.232358, 48.081714 ], [ -0.22338, 48.07841 ], [ -0.225994, 48.07168 ], [ -0.226776, 48.068421 ], [ -0.230942, 48.05898 ], [ -0.235426, 48.06046 ], [ -0.274233, 48.06446 ], [ -0.286069, 48.0584 ], [ -0.282795, 48.05629 ], [ -0.316466, 48.04586 ], [ -0.330357, 48.05038 ], [ -0.334153, 48.04859 ], [ -0.340504, 48.044065 ], [ -0.334475, 48.032374 ], [ -0.338154, 48.012139 ], [ -0.308993, 48.005604 ], [ -0.308526, 48.00565 ], [ -0.312453, 48.00107 ], [ -0.312033, 47.99435 ], [ -0.299537, 47.97663 ], [ -0.300459, 47.96666 ], [ -0.293238, 47.96204 ], [ -0.288351, 47.9613 ], [ -0.284638, 47.95917 ], [ -0.280183, 47.957819 ], [ -0.294033, 47.94549 ], [ -0.311674, 47.940308 ], [ -0.31392, 47.93828 ], [ -0.319993, 47.9353 ], [ -0.325124, 47.9361 ], [ -0.338703, 47.9325 ], [ -0.38484, 47.93084 ], [ -0.388983, 47.929185 ], [ -0.397652, 47.91827 ], [ -0.412853, 47.915837 ], [ -0.409521, 47.913196 ], [ -0.404047, 47.90035 ], [ -0.41104, 47.89536 ], [ -0.406808, 47.893691 ], [ -0.392576, 47.89233 ], [ -0.391195, 47.88916 ], [ -0.386293, 47.88852 ], [ -0.376839, 47.88727 ], [ -0.37087, 47.87511 ], [ -0.37161, 47.87179 ], [ -0.377995, 47.86672 ], [ -0.374966, 47.85761 ], [ -0.41203, 47.85763 ], [ -0.413312, 47.854866 ], [ -0.41099, 47.846637 ], [ -0.425496, 47.84934 ], [ -0.432478, 47.84078 ], [ -0.447914, 47.832035 ], [ -0.444321, 47.82986 ], [ -0.43408, 47.80905 ], [ -0.430168, 47.80707 ], [ -0.416994, 47.802672 ], [ -0.388201, 47.805319 ], [ -0.387144, 47.804268 ], [ -0.385203, 47.801288 ], [ -0.38008, 47.782338 ], [ -0.378805, 47.779096 ], [ -0.375843, 47.7659 ], [ -0.381704, 47.76057 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "55", "CODE_DEPT": "54", "NOM_DEPT": "MEURTHE-ET-MOSELLE", "CODE_CHF": "395", "NOM_CHF": "NANCY", "X_CHF_LIEU": "9342", "Y_CHF_LIEU": "68483", "X_CENTROID": "9324", "Y_CENTROID": "68587", "CODE_REG": "41", "NOM_REGION": "LORRAINE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.123165, 48.51359 ], [ 7.088409, 48.51003 ], [ 7.083761, 48.50849 ], [ 7.078427, 48.50736 ], [ 7.058079, 48.49912 ], [ 7.05366, 48.497718 ], [ 7.050706, 48.49544 ], [ 7.028723, 48.49209 ], [ 7.007433, 48.4818 ], [ 6.986537, 48.48015 ], [ 6.981908, 48.47843 ], [ 6.977808, 48.476702 ], [ 6.965827, 48.47144 ], [ 6.93055, 48.442644 ], [ 6.921954, 48.43939 ], [ 6.918228, 48.43553 ], [ 6.914972, 48.4329 ], [ 6.892421, 48.41919 ], [ 6.88266, 48.41712 ], [ 6.869862, 48.42248 ], [ 6.864557, 48.43553 ], [ 6.855054, 48.433116 ], [ 6.8532, 48.42999 ], [ 6.849189, 48.42383 ], [ 6.827695, 48.4156 ], [ 6.826331, 48.41248 ], [ 6.815027, 48.39507 ], [ 6.797637, 48.402021 ], [ 6.785782, 48.39613 ], [ 6.785524, 48.401932 ], [ 6.780436, 48.402283 ], [ 6.775474, 48.40138 ], [ 6.765889, 48.40164 ], [ 6.760057, 48.41105 ], [ 6.739562, 48.41201 ], [ 6.738843, 48.415402 ], [ 6.734617, 48.417048 ], [ 6.724907, 48.41616 ], [ 6.712979, 48.4214 ], [ 6.698644, 48.41286 ], [ 6.694155, 48.41443 ], [ 6.685584, 48.418006 ], [ 6.682938, 48.424456 ], [ 6.679525, 48.42171 ], [ 6.676469, 48.423468 ], [ 6.66941, 48.426055 ], [ 6.659226, 48.42613 ], [ 6.644798, 48.428616 ], [ 6.647149, 48.43168 ], [ 6.644486, 48.441666 ], [ 6.636392, 48.450272 ], [ 6.638711, 48.46048 ], [ 6.635397, 48.470502 ], [ 6.63083, 48.472029 ], [ 6.620728, 48.47244 ], [ 6.607558, 48.46723 ], [ 6.597506, 48.46697 ], [ 6.596062, 48.46468 ], [ 6.594471, 48.46241 ], [ 6.584766, 48.45988 ], [ 6.568563, 48.438238 ], [ 6.583871, 48.417225 ], [ 6.578736, 48.415534 ], [ 6.544568, 48.42762 ], [ 6.540543, 48.42794 ], [ 6.534394, 48.43146 ], [ 6.530202, 48.4295 ], [ 6.518029, 48.423511 ], [ 6.513622, 48.421553 ], [ 6.501792, 48.41456 ], [ 6.496649, 48.41494 ], [ 6.486985, 48.41628 ], [ 6.482636, 48.414966 ], [ 6.471325, 48.409201 ], [ 6.466929, 48.41043 ], [ 6.456866, 48.41702 ], [ 6.448213, 48.414405 ], [ 6.443482, 48.413021 ], [ 6.424666, 48.40823 ], [ 6.412688, 48.39332 ], [ 6.402911, 48.392256 ], [ 6.400678, 48.39536 ], [ 6.395929, 48.39469 ], [ 6.387395, 48.392143 ], [ 6.384241, 48.39461 ], [ 6.384043, 48.39952 ], [ 6.39045, 48.4045 ], [ 6.376792, 48.411896 ], [ 6.363617, 48.407867 ], [ 6.362428, 48.40745 ], [ 6.358962, 48.404865 ], [ 6.353963, 48.403881 ], [ 6.336509, 48.40459 ], [ 6.331346, 48.40486 ], [ 6.30818, 48.41195 ], [ 6.303381, 48.42854 ], [ 6.297438, 48.43367 ], [ 6.285143, 48.42942 ], [ 6.279505, 48.42405 ], [ 6.270298, 48.426101 ], [ 6.268672, 48.422805 ], [ 6.260443, 48.4064 ], [ 6.255765, 48.40641 ], [ 6.242664, 48.404052 ], [ 6.233339, 48.397113 ], [ 6.232097, 48.40023 ], [ 6.221955, 48.400664 ], [ 6.201743, 48.399375 ], [ 6.200161, 48.39804 ], [ 6.17842, 48.39761 ], [ 6.1788, 48.400542 ], [ 6.18273, 48.408954 ], [ 6.178927, 48.410461 ], [ 6.177176, 48.40745 ], [ 6.163188, 48.40579 ], [ 6.149421, 48.40827 ], [ 6.147421, 48.40783 ], [ 6.152327, 48.381648 ], [ 6.14879, 48.37923 ], [ 6.132707, 48.362684 ], [ 6.125088, 48.367261 ], [ 6.122831, 48.364754 ], [ 6.11705, 48.353841 ], [ 6.112344, 48.3549 ], [ 6.102617, 48.35628 ], [ 6.093755, 48.363852 ], [ 6.098286, 48.36485 ], [ 6.091215, 48.382258 ], [ 6.087498, 48.3834 ], [ 6.076707, 48.37985 ], [ 6.073746, 48.37752 ], [ 6.079825, 48.36364 ], [ 6.075185, 48.362156 ], [ 6.071492, 48.359767 ], [ 6.066434, 48.35945 ], [ 6.061359, 48.35975 ], [ 6.058422, 48.362 ], [ 6.047337, 48.365613 ], [ 6.046914, 48.36227 ], [ 6.032763, 48.361026 ], [ 6.024946, 48.35689 ], [ 6.020291, 48.36145 ], [ 6.01525, 48.360951 ], [ 6.005127, 48.360416 ], [ 5.992951, 48.35442 ], [ 5.988254, 48.35497 ], [ 5.982558, 48.35004 ], [ 5.973706, 48.35187 ], [ 5.96481, 48.35006 ], [ 5.960272, 48.351021 ], [ 5.955419, 48.356481 ], [ 5.954123, 48.359386 ], [ 5.956472, 48.36729 ], [ 5.95189, 48.36678 ], [ 5.952599, 48.37267 ], [ 5.944654, 48.37582 ], [ 5.947487, 48.37862 ], [ 5.954939, 48.387374 ], [ 5.952035, 48.390066 ], [ 5.949585, 48.3965 ], [ 5.94698, 48.39826 ], [ 5.941116, 48.40074 ], [ 5.937153, 48.40217 ], [ 5.92769, 48.393686 ], [ 5.925022, 48.396039 ], [ 5.920503, 48.40107 ], [ 5.918091, 48.404141 ], [ 5.91004, 48.40476 ], [ 5.909567, 48.41893 ], [ 5.91439, 48.424938 ], [ 5.924594, 48.424552 ], [ 5.931327, 48.433946 ], [ 5.926762, 48.4353 ], [ 5.898036, 48.43595 ], [ 5.907931, 48.42799 ], [ 5.896968, 48.40848 ], [ 5.878184, 48.40301 ], [ 5.870039, 48.406133 ], [ 5.865014, 48.40697 ], [ 5.855383, 48.409377 ], [ 5.856315, 48.41184 ], [ 5.85934, 48.4165 ], [ 5.882079, 48.43337 ], [ 5.884003, 48.43638 ], [ 5.885263, 48.437885 ], [ 5.897314, 48.44861 ], [ 5.886837, 48.456175 ], [ 5.888609, 48.46945 ], [ 5.9043, 48.48293 ], [ 5.898792, 48.48544 ], [ 5.901508, 48.4885 ], [ 5.905902, 48.49498 ], [ 5.901013, 48.49401 ], [ 5.876608, 48.49748 ], [ 5.865923, 48.5042 ], [ 5.862241, 48.50649 ], [ 5.83778, 48.50481 ], [ 5.836407, 48.500708 ], [ 5.831799, 48.50016 ], [ 5.824376, 48.49639 ], [ 5.810772, 48.4983 ], [ 5.809221, 48.495125 ], [ 5.792136, 48.48864 ], [ 5.787024, 48.48291 ], [ 5.783684, 48.485546 ], [ 5.778599, 48.486187 ], [ 5.774739, 48.48846 ], [ 5.765155, 48.49649 ], [ 5.76487, 48.49983 ], [ 5.762777, 48.51614 ], [ 5.760971, 48.52147 ], [ 5.761889, 48.524752 ], [ 5.766914, 48.534203 ], [ 5.77559, 48.537322 ], [ 5.776375, 48.54062 ], [ 5.772728, 48.541899 ], [ 5.762875, 48.5463 ], [ 5.757625, 48.54675 ], [ 5.744353, 48.552431 ], [ 5.728643, 48.55354 ], [ 5.725255, 48.55565 ], [ 5.715484, 48.5623 ], [ 5.71413, 48.56494 ], [ 5.714943, 48.5733 ], [ 5.713341, 48.57668 ], [ 5.717988, 48.591209 ], [ 5.722763, 48.592243 ], [ 5.741515, 48.596664 ], [ 5.754818, 48.6063 ], [ 5.764234, 48.60778 ], [ 5.769398, 48.60842 ], [ 5.789908, 48.60719 ], [ 5.793323, 48.60887 ], [ 5.798026, 48.61356 ], [ 5.7975, 48.61667 ], [ 5.803519, 48.625138 ], [ 5.799433, 48.62693 ], [ 5.790067, 48.62798 ], [ 5.764339, 48.619024 ], [ 5.760452, 48.621 ], [ 5.758376, 48.62129 ], [ 5.759203, 48.6246 ], [ 5.760946, 48.63114 ], [ 5.756326, 48.637004 ], [ 5.752287, 48.641544 ], [ 5.749915, 48.64447 ], [ 5.74451, 48.656898 ], [ 5.747463, 48.659845 ], [ 5.748918, 48.666849 ], [ 5.746144, 48.66966 ], [ 5.755881, 48.69197 ], [ 5.757173, 48.69456 ], [ 5.764601, 48.701083 ], [ 5.760421, 48.702764 ], [ 5.751104, 48.71381 ], [ 5.733023, 48.72381 ], [ 5.732055, 48.724557 ], [ 5.728777, 48.72663 ], [ 5.719037, 48.73291 ], [ 5.724748, 48.73805 ], [ 5.714041, 48.744623 ], [ 5.719113, 48.748216 ], [ 5.732567, 48.75018 ], [ 5.743127, 48.757178 ], [ 5.736559, 48.762477 ], [ 5.740039, 48.77224 ], [ 5.766159, 48.78905 ], [ 5.776455, 48.790066 ], [ 5.776984, 48.793356 ], [ 5.778491, 48.7999 ], [ 5.774231, 48.7987 ], [ 5.762412, 48.79391 ], [ 5.759356, 48.79586 ], [ 5.758209, 48.80123 ], [ 5.762901, 48.802628 ], [ 5.774308, 48.813208 ], [ 5.78135, 48.83537 ], [ 5.777993, 48.837851 ], [ 5.775159, 48.85708 ], [ 5.771704, 48.85776 ], [ 5.769401, 48.85959 ], [ 5.768135, 48.86297 ], [ 5.765203, 48.872991 ], [ 5.773466, 48.874725 ], [ 5.777443, 48.87614 ], [ 5.782274, 48.876672 ], [ 5.786585, 48.8782 ], [ 5.787991, 48.887895 ], [ 5.770036, 48.895124 ], [ 5.757243, 48.90996 ], [ 5.756831, 48.91299 ], [ 5.753148, 48.91305 ], [ 5.750108, 48.91418 ], [ 5.747025, 48.91526 ], [ 5.751909, 48.921124 ], [ 5.776647, 48.92516 ], [ 5.79958, 48.94632 ], [ 5.81282, 48.94358 ], [ 5.817226, 48.94245 ], [ 5.831351, 48.94397 ], [ 5.842413, 48.95217 ], [ 5.84727, 48.951793 ], [ 5.848573, 48.954866 ], [ 5.849168, 48.96123 ], [ 5.8304, 48.97619 ], [ 5.817812, 48.98024 ], [ 5.812928, 48.98067 ], [ 5.804394, 48.98389 ], [ 5.802736, 48.987116 ], [ 5.821367, 49.00341 ], [ 5.817407, 49.00806 ], [ 5.814064, 49.005431 ], [ 5.815, 49.00857 ], [ 5.829622, 49.02741 ], [ 5.829903, 49.030558 ], [ 5.853476, 49.04045 ], [ 5.851206, 49.043469 ], [ 5.838473, 49.05315 ], [ 5.836058, 49.06606 ], [ 5.831265, 49.06454 ], [ 5.805944, 49.06346 ], [ 5.805771, 49.06658 ], [ 5.808172, 49.07577 ], [ 5.810402, 49.078782 ], [ 5.819334, 49.08637 ], [ 5.823213, 49.08868 ], [ 5.817853, 49.11104 ], [ 5.812824, 49.11129 ], [ 5.807797, 49.11134 ], [ 5.802818, 49.11228 ], [ 5.777362, 49.11164 ], [ 5.778497, 49.10905 ], [ 5.772557, 49.10535 ], [ 5.768537, 49.10678 ], [ 5.755118, 49.11419 ], [ 5.748301, 49.12312 ], [ 5.754527, 49.132202 ], [ 5.771796, 49.13979 ], [ 5.767645, 49.140124 ], [ 5.755974, 49.142389 ], [ 5.757448, 49.14561 ], [ 5.759572, 49.14868 ], [ 5.758935, 49.15215 ], [ 5.749182, 49.15496 ], [ 5.7464, 49.161482 ], [ 5.764739, 49.194059 ], [ 5.765774, 49.1975 ], [ 5.761112, 49.20146 ], [ 5.757366, 49.20098 ], [ 5.750386, 49.19854 ], [ 5.745193, 49.1982 ], [ 5.730304, 49.19517 ], [ 5.723192, 49.199306 ], [ 5.726491, 49.20175 ], [ 5.719916, 49.217164 ], [ 5.728719, 49.22498 ], [ 5.73345, 49.226132 ], [ 5.740556, 49.230117 ], [ 5.737341, 49.232448 ], [ 5.725272, 49.24478 ], [ 5.720933, 49.247707 ], [ 5.728497, 49.25668 ], [ 5.725312, 49.266381 ], [ 5.724722, 49.26978 ], [ 5.760905, 49.27961 ], [ 5.768283, 49.299781 ], [ 5.7638, 49.31137 ], [ 5.7629, 49.314332 ], [ 5.759984, 49.315379 ], [ 5.756975, 49.314422 ], [ 5.753468, 49.31188 ], [ 5.749166, 49.30989 ], [ 5.732039, 49.31093 ], [ 5.720819, 49.33008 ], [ 5.737194, 49.33887 ], [ 5.739328, 49.34586 ], [ 5.737916, 49.349089 ], [ 5.737564, 49.35568 ], [ 5.731571, 49.361087 ], [ 5.726699, 49.36218 ], [ 5.712225, 49.36346 ], [ 5.714375, 49.36925 ], [ 5.707787, 49.38411 ], [ 5.704749, 49.386855 ], [ 5.687281, 49.393747 ], [ 5.694297, 49.39986 ], [ 5.69213, 49.402156 ], [ 5.691872, 49.40539 ], [ 5.6918, 49.41509 ], [ 5.682024, 49.414504 ], [ 5.676869, 49.41902 ], [ 5.633554, 49.43787 ], [ 5.630124, 49.435248 ], [ 5.616183, 49.430362 ], [ 5.61691, 49.423511 ], [ 5.607205, 49.422435 ], [ 5.606563, 49.419013 ], [ 5.598517, 49.4232 ], [ 5.584345, 49.41881 ], [ 5.570027, 49.42248 ], [ 5.568345, 49.420001 ], [ 5.563085, 49.41928 ], [ 5.552529, 49.41824 ], [ 5.531254, 49.407743 ], [ 5.49917, 49.40745 ], [ 5.496634, 49.39438 ], [ 5.485008, 49.38329 ], [ 5.480988, 49.38248 ], [ 5.473871, 49.38917 ], [ 5.476893, 49.39529 ], [ 5.462875, 49.39689 ], [ 5.446816, 49.40399 ], [ 5.447164, 49.40407 ], [ 5.452186, 49.40507 ], [ 5.471776, 49.40924 ], [ 5.478992, 49.40426 ], [ 5.493942, 49.40707 ], [ 5.506772, 49.4215 ], [ 5.498186, 49.424384 ], [ 5.494264, 49.422261 ], [ 5.471244, 49.42804 ], [ 5.479012, 49.432736 ], [ 5.485193, 49.445388 ], [ 5.482348, 49.448162 ], [ 5.467361, 49.45001 ], [ 5.464134, 49.4526 ], [ 5.468359, 49.458735 ], [ 5.471172, 49.46157 ], [ 5.467072, 49.46296 ], [ 5.464264, 49.471165 ], [ 5.463647, 49.4822 ], [ 5.473769, 49.482598 ], [ 5.476665, 49.48513 ], [ 5.482492, 49.49376 ], [ 5.47917, 49.49558 ], [ 5.470911, 49.497214 ], [ 5.484815, 49.506686 ], [ 5.526401, 49.51139 ], [ 5.531456, 49.51252 ], [ 5.533447, 49.513412 ], [ 5.542475, 49.51697 ], [ 5.553983, 49.527872 ], [ 5.569193, 49.52734 ], [ 5.593826, 49.52136 ], [ 5.607102, 49.50699 ], [ 5.610984, 49.50593 ], [ 5.61742, 49.51435 ], [ 5.621111, 49.520649 ], [ 5.617958, 49.530347 ], [ 5.628092, 49.538059 ], [ 5.632798, 49.53956 ], [ 5.632922, 49.54306 ], [ 5.645203, 49.54969 ], [ 5.660806, 49.552354 ], [ 5.669231, 49.54851 ], [ 5.679833, 49.548293 ], [ 5.698123, 49.54234 ], [ 5.701263, 49.53952 ], [ 5.721682, 49.541013 ], [ 5.730061, 49.544475 ], [ 5.742718, 49.539271 ], [ 5.757155, 49.542568 ], [ 5.758513, 49.5591 ], [ 5.772744, 49.56255 ], [ 5.815257, 49.54494 ], [ 5.810482, 49.54354 ], [ 5.815282, 49.53933 ], [ 5.817199, 49.537 ], [ 5.836173, 49.54178 ], [ 5.844181, 49.52967 ], [ 5.835261, 49.52652 ], [ 5.836046, 49.519957 ], [ 5.864012, 49.50125 ], [ 5.888261, 49.497338 ], [ 5.893402, 49.49692 ], [ 5.898435, 49.48431 ], [ 5.897027, 49.481138 ], [ 5.904673, 49.48453 ], [ 5.912982, 49.482078 ], [ 5.917527, 49.48262 ], [ 5.925328, 49.48484 ], [ 5.929609, 49.48535 ], [ 5.935571, 49.47829 ], [ 5.939797, 49.47738 ], [ 5.934477, 49.47171 ], [ 5.941863, 49.452446 ], [ 5.930767, 49.446554 ], [ 5.940797, 49.4338 ], [ 5.942283, 49.430355 ], [ 5.937777, 49.42873 ], [ 5.928285, 49.42647 ], [ 5.919719, 49.41814 ], [ 5.915632, 49.409513 ], [ 5.91184, 49.40753 ], [ 5.91579, 49.405965 ], [ 5.919901, 49.40458 ], [ 5.929677, 49.40148 ], [ 5.935039, 49.38094 ], [ 5.924782, 49.37305 ], [ 5.933406, 49.369443 ], [ 5.941007, 49.36071 ], [ 5.95104, 49.362034 ], [ 5.956124, 49.361595 ], [ 5.963582, 49.34662 ], [ 5.973406, 49.345321 ], [ 5.978376, 49.34486 ], [ 5.973218, 49.34445 ], [ 5.962819, 49.34486 ], [ 5.943394, 49.34029 ], [ 5.943314, 49.336946 ], [ 5.949495, 49.32806 ], [ 5.969991, 49.318536 ], [ 5.985221, 49.30517 ], [ 5.988107, 49.307492 ], [ 5.997125, 49.31424 ], [ 6.005021, 49.30972 ], [ 6.002952, 49.28907 ], [ 6.001631, 49.285747 ], [ 6.000446, 49.27553 ], [ 6.009838, 49.27247 ], [ 6.007822, 49.27043 ], [ 6.009836, 49.26608 ], [ 6.007922, 49.25941 ], [ 6.029172, 49.250036 ], [ 6.025889, 49.24349 ], [ 6.027876, 49.23331 ], [ 6.030761, 49.23308 ], [ 6.014515, 49.221875 ], [ 6.009565, 49.221792 ], [ 5.999638, 49.210956 ], [ 6.003519, 49.20897 ], [ 5.995509, 49.20749 ], [ 5.987627, 49.209617 ], [ 5.98441, 49.207412 ], [ 5.986235, 49.201438 ], [ 5.978771, 49.19486 ], [ 5.979529, 49.19299 ], [ 5.982116, 49.18715 ], [ 5.985181, 49.184838 ], [ 6.005027, 49.182715 ], [ 6.017339, 49.17189 ], [ 6.031132, 49.16749 ], [ 6.027936, 49.16492 ], [ 6.019092, 49.161958 ], [ 6.010886, 49.15368 ], [ 6.006477, 49.15334 ], [ 5.999566, 49.15575 ], [ 5.990328, 49.15445 ], [ 5.994304, 49.14873 ], [ 5.982262, 49.14397 ], [ 5.984418, 49.14116 ], [ 5.986154, 49.137966 ], [ 5.993989, 49.13356 ], [ 5.990612, 49.12754 ], [ 6.002144, 49.116469 ], [ 6.004983, 49.1139 ], [ 6.002705, 49.11078 ], [ 5.993738, 49.10787 ], [ 5.972667, 49.10822 ], [ 5.967699, 49.108336 ], [ 5.947825, 49.10878 ], [ 5.931603, 49.109104 ], [ 5.927818, 49.0996 ], [ 5.925645, 49.092901 ], [ 5.941603, 49.08054 ], [ 5.93473, 49.0755 ], [ 5.935207, 49.07208 ], [ 5.936821, 49.06889 ], [ 5.95037, 49.064908 ], [ 5.951719, 49.061663 ], [ 5.955657, 49.05003 ], [ 5.957792, 49.047378 ], [ 5.966914, 49.04651 ], [ 5.972448, 49.04156 ], [ 5.981175, 49.043389 ], [ 5.98541, 49.04205 ], [ 5.992056, 49.03981 ], [ 5.994968, 49.038097 ], [ 6.001616, 49.03519 ], [ 6.005445, 49.034425 ], [ 6.012649, 49.03735 ], [ 6.019487, 49.02456 ], [ 6.030663, 49.01701 ], [ 6.040883, 49.01491 ], [ 6.044965, 49.008935 ], [ 6.0432, 49.001925 ], [ 6.043815, 48.98909 ], [ 6.033896, 48.98478 ], [ 6.041341, 48.98046 ], [ 6.043435, 48.97748 ], [ 6.06144, 48.978873 ], [ 6.064765, 48.98101 ], [ 6.073834, 48.979015 ], [ 6.071029, 48.972725 ], [ 6.077312, 48.967785 ], [ 6.079195, 48.96474 ], [ 6.081323, 48.96305 ], [ 6.094718, 48.96789 ], [ 6.099614, 48.96885 ], [ 6.114238, 48.967227 ], [ 6.124748, 48.95607 ], [ 6.123214, 48.949418 ], [ 6.128252, 48.94936 ], [ 6.125142, 48.9399 ], [ 6.141559, 48.93305 ], [ 6.146544, 48.93258 ], [ 6.149731, 48.93332 ], [ 6.150023, 48.939285 ], [ 6.161467, 48.943699 ], [ 6.165301, 48.942041 ], [ 6.170431, 48.94216 ], [ 6.175165, 48.936236 ], [ 6.200807, 48.93713 ], [ 6.205897, 48.93769 ], [ 6.205768, 48.939588 ], [ 6.220643, 48.93823 ], [ 6.225117, 48.9293 ], [ 6.234795, 48.92789 ], [ 6.237097, 48.92493 ], [ 6.247297, 48.92488 ], [ 6.258243, 48.93173 ], [ 6.262562, 48.933509 ], [ 6.271237, 48.93331 ], [ 6.277034, 48.927966 ], [ 6.283947, 48.92842 ], [ 6.287794, 48.92769 ], [ 6.2884, 48.916323 ], [ 6.306997, 48.9195 ], [ 6.311181, 48.92107 ], [ 6.310847, 48.91175 ], [ 6.324395, 48.90751 ], [ 6.327517, 48.904873 ], [ 6.325839, 48.89593 ], [ 6.321088, 48.89463 ], [ 6.311501, 48.8922 ], [ 6.297384, 48.88247 ], [ 6.308444, 48.87826 ], [ 6.308081, 48.87534 ], [ 6.310919, 48.87276 ], [ 6.312126, 48.86642 ], [ 6.305417, 48.86369 ], [ 6.297463, 48.86648 ], [ 6.299103, 48.85533 ], [ 6.300111, 48.85252 ], [ 6.295087, 48.85179 ], [ 6.285472, 48.849429 ], [ 6.288014, 48.84367 ], [ 6.307404, 48.83376 ], [ 6.31625, 48.83692 ], [ 6.329999, 48.83571 ], [ 6.334824, 48.83461 ], [ 6.339647, 48.83349 ], [ 6.331992, 48.825728 ], [ 6.318345, 48.829357 ], [ 6.301116, 48.824253 ], [ 6.30468, 48.82241 ], [ 6.308785, 48.82115 ], [ 6.331522, 48.82327 ], [ 6.333754, 48.82046 ], [ 6.336054, 48.81294 ], [ 6.339339, 48.81103 ], [ 6.353939, 48.812989 ], [ 6.357369, 48.81058 ], [ 6.347483, 48.803934 ], [ 6.354861, 48.79534 ], [ 6.355453, 48.79204 ], [ 6.358564, 48.779633 ], [ 6.366691, 48.78293 ], [ 6.370878, 48.7847 ], [ 6.383904, 48.780763 ], [ 6.388744, 48.78061 ], [ 6.394874, 48.77476 ], [ 6.42867, 48.78767 ], [ 6.43311, 48.7891 ], [ 6.44207, 48.78098 ], [ 6.451275, 48.77908 ], [ 6.454219, 48.769234 ], [ 6.453603, 48.765894 ], [ 6.461365, 48.767326 ], [ 6.485482, 48.76587 ], [ 6.490392, 48.76496 ], [ 6.507983, 48.754369 ], [ 6.506608, 48.74849 ], [ 6.511382, 48.74884 ], [ 6.519434, 48.75275 ], [ 6.53421, 48.749598 ], [ 6.538634, 48.75139 ], [ 6.543982, 48.753756 ], [ 6.547622, 48.75462 ], [ 6.562184, 48.75611 ], [ 6.564859, 48.749425 ], [ 6.584287, 48.73317 ], [ 6.589493, 48.73248 ], [ 6.59851, 48.71876 ], [ 6.598966, 48.71569 ], [ 6.616654, 48.71471 ], [ 6.629055, 48.71107 ], [ 6.637589, 48.70312 ], [ 6.642411, 48.702432 ], [ 6.657733, 48.70774 ], [ 6.661575, 48.70608 ], [ 6.674735, 48.69183 ], [ 6.670752, 48.686436 ], [ 6.670491, 48.673046 ], [ 6.666421, 48.67104 ], [ 6.668962, 48.667339 ], [ 6.688766, 48.68213 ], [ 6.694358, 48.673136 ], [ 6.704312, 48.672395 ], [ 6.708674, 48.67064 ], [ 6.722859, 48.66709 ], [ 6.726081, 48.664422 ], [ 6.738556, 48.667588 ], [ 6.752396, 48.66722 ], [ 6.75513, 48.66988 ], [ 6.759914, 48.669672 ], [ 6.760279, 48.65812 ], [ 6.762831, 48.65542 ], [ 6.763951, 48.6521 ], [ 6.777492, 48.653474 ], [ 6.776732, 48.65049 ], [ 6.774114, 48.647917 ], [ 6.780104, 48.644674 ], [ 6.782626, 48.642721 ], [ 6.813799, 48.64682 ], [ 6.834472, 48.64371 ], [ 6.839311, 48.63743 ], [ 6.842629, 48.63248 ], [ 6.842835, 48.629725 ], [ 6.847891, 48.62384 ], [ 6.857471, 48.620939 ], [ 6.893295, 48.625005 ], [ 6.901083, 48.621589 ], [ 6.905394, 48.61983 ], [ 6.917507, 48.624318 ], [ 6.918856, 48.63053 ], [ 6.925352, 48.63472 ], [ 6.930007, 48.63555 ], [ 6.942476, 48.618 ], [ 6.939742, 48.61506 ], [ 6.957241, 48.60974 ], [ 6.961836, 48.60872 ], [ 6.987682, 48.61211 ], [ 6.991258, 48.609493 ], [ 6.993192, 48.60991 ], [ 7.005991, 48.60944 ], [ 7.008742, 48.611841 ], [ 7.015156, 48.60409 ], [ 6.995388, 48.593854 ], [ 7.019187, 48.580901 ], [ 7.029071, 48.58022 ], [ 7.034245, 48.580418 ], [ 7.044708, 48.56228 ], [ 7.057114, 48.55146 ], [ 7.082511, 48.541696 ], [ 7.062191, 48.540132 ], [ 7.057235, 48.53919 ], [ 7.074798, 48.537232 ], [ 7.07936, 48.53642 ], [ 7.07538, 48.53477 ], [ 7.065385, 48.5243 ], [ 7.068664, 48.52252 ], [ 7.077105, 48.51634 ], [ 7.08063, 48.51267 ], [ 7.083459, 48.51558 ], [ 7.103796, 48.517641 ], [ 7.123165, 48.51359 ] ] ], [ [ [ 5.42599, 49.48614 ], [ 5.433874, 49.49086 ], [ 5.43974, 49.500453 ], [ 5.442003, 49.503618 ], [ 5.465225, 49.48689 ], [ 5.456238, 49.484258 ], [ 5.455555, 49.48094 ], [ 5.451653, 49.48333 ], [ 5.42599, 49.48614 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "56", "CODE_DEPT": "55", "NOM_DEPT": "MEUSE", "CODE_CHF": "029", "NOM_CHF": "BAR-LE-DUC", "X_CHF_LIEU": "8592", "Y_CHF_LIEU": "68545", "X_CENTROID": "8742", "Y_CENTROID": "68792", "CODE_REG": "41", "NOM_REGION": "LORRAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.765155, 48.49649 ], [ 5.760795, 48.49445 ], [ 5.746109, 48.47625 ], [ 5.74243, 48.474498 ], [ 5.740613, 48.46537 ], [ 5.735324, 48.46516 ], [ 5.715639, 48.460378 ], [ 5.695076, 48.463449 ], [ 5.689593, 48.467381 ], [ 5.684919, 48.46836 ], [ 5.676378, 48.47153 ], [ 5.656871, 48.47126 ], [ 5.653333, 48.46901 ], [ 5.644529, 48.47187 ], [ 5.641988, 48.472203 ], [ 5.639804, 48.46915 ], [ 5.651446, 48.45818 ], [ 5.649849, 48.454962 ], [ 5.644971, 48.454044 ], [ 5.626986, 48.44888 ], [ 5.623837, 48.44596 ], [ 5.61883, 48.43049 ], [ 5.615055, 48.44051 ], [ 5.610061, 48.441568 ], [ 5.589323, 48.44213 ], [ 5.580391, 48.43848 ], [ 5.576649, 48.43197 ], [ 5.566636, 48.434108 ], [ 5.567996, 48.4373 ], [ 5.560827, 48.44147 ], [ 5.556327, 48.4399 ], [ 5.534464, 48.432297 ], [ 5.515417, 48.42998 ], [ 5.509929, 48.41702 ], [ 5.513904, 48.4108 ], [ 5.509008, 48.40991 ], [ 5.470062, 48.42093 ], [ 5.468366, 48.423682 ], [ 5.464657, 48.42535 ], [ 5.455491, 48.42252 ], [ 5.44593, 48.42484 ], [ 5.444199, 48.42803 ], [ 5.439576, 48.4342 ], [ 5.429225, 48.43441 ], [ 5.409502, 48.44554 ], [ 5.403949, 48.455175 ], [ 5.406055, 48.465393 ], [ 5.403623, 48.46785 ], [ 5.40115, 48.470299 ], [ 5.398074, 48.473187 ], [ 5.377321, 48.47191 ], [ 5.369382, 48.47655 ], [ 5.368678, 48.47625 ], [ 5.363594, 48.477271 ], [ 5.34947, 48.481989 ], [ 5.346954, 48.48505 ], [ 5.327505, 48.509 ], [ 5.317018, 48.50891 ], [ 5.30559, 48.51576 ], [ 5.302655, 48.513091 ], [ 5.295728, 48.508329 ], [ 5.292344, 48.50931 ], [ 5.289147, 48.51053 ], [ 5.287443, 48.513709 ], [ 5.272637, 48.514317 ], [ 5.229125, 48.530773 ], [ 5.221951, 48.52648 ], [ 5.217139, 48.52771 ], [ 5.212253, 48.52879 ], [ 5.211558, 48.53191 ], [ 5.207077, 48.53747 ], [ 5.194712, 48.540557 ], [ 5.197028, 48.546678 ], [ 5.192655, 48.548397 ], [ 5.172768, 48.557149 ], [ 5.165068, 48.565343 ], [ 5.160367, 48.564133 ], [ 5.152213, 48.56034 ], [ 5.143528, 48.563133 ], [ 5.140569, 48.565697 ], [ 5.134455, 48.57069 ], [ 5.131277, 48.572586 ], [ 5.127067, 48.5801 ], [ 5.123434, 48.58214 ], [ 5.117875, 48.58689 ], [ 5.119453, 48.595716 ], [ 5.114686, 48.59458 ], [ 5.094681, 48.59297 ], [ 5.070286, 48.595925 ], [ 5.068597, 48.59919 ], [ 5.05939, 48.61519 ], [ 5.056671, 48.63233 ], [ 5.051809, 48.632966 ], [ 5.033402, 48.61376 ], [ 5.006401, 48.61139 ], [ 4.996262, 48.61879 ], [ 5.004196, 48.6346 ], [ 4.994686, 48.64616 ], [ 4.993755, 48.65522 ], [ 4.992812, 48.658271 ], [ 4.996128, 48.66047 ], [ 5.011053, 48.66783 ], [ 5.008261, 48.67048 ], [ 5.007434, 48.680069 ], [ 5.003256, 48.68204 ], [ 4.988428, 48.68443 ], [ 4.990665, 48.690724 ], [ 5.003295, 48.69617 ], [ 5.006402, 48.69885 ], [ 4.999273, 48.710392 ], [ 5.012702, 48.707153 ], [ 5.016002, 48.70952 ], [ 5.006168, 48.721442 ], [ 5.00922, 48.74139 ], [ 4.989575, 48.74204 ], [ 4.981359, 48.74564 ], [ 4.980624, 48.7485 ], [ 4.978949, 48.7517 ], [ 4.953825, 48.768195 ], [ 4.949258, 48.770537 ], [ 4.935478, 48.78432 ], [ 4.934376, 48.790589 ], [ 4.924802, 48.79238 ], [ 4.920462, 48.790984 ], [ 4.898034, 48.796138 ], [ 4.893365, 48.79696 ], [ 4.892929, 48.797694 ], [ 4.89003, 48.80036 ], [ 4.896351, 48.80903 ], [ 4.890378, 48.814107 ], [ 4.888761, 48.81721 ], [ 4.90027, 48.82463 ], [ 4.902918, 48.82774 ], [ 4.930968, 48.8394 ], [ 4.935493, 48.8405 ], [ 4.937384, 48.84811 ], [ 4.928577, 48.851029 ], [ 4.923236, 48.862891 ], [ 4.912256, 48.86946 ], [ 4.913098, 48.872733 ], [ 4.916497, 48.875413 ], [ 4.923063, 48.888495 ], [ 4.920098, 48.89466 ], [ 4.913592, 48.89768 ], [ 4.915801, 48.899847 ], [ 4.917043, 48.90321 ], [ 4.932159, 48.912682 ], [ 4.936209, 48.92214 ], [ 4.949578, 48.9303 ], [ 4.954079, 48.930911 ], [ 4.957261, 48.92803 ], [ 4.97332, 48.92887 ], [ 4.996952, 48.93704 ], [ 5.012848, 48.93675 ], [ 5.014887, 48.94251 ], [ 5.014132, 48.94559 ], [ 5.027718, 48.952194 ], [ 5.030943, 48.95432 ], [ 5.037757, 48.97412 ], [ 5.029939, 48.97864 ], [ 5.000441, 48.9834 ], [ 4.995417, 48.982465 ], [ 5.009278, 48.993135 ], [ 5.03062, 48.994998 ], [ 5.031576, 49.00129 ], [ 5.037505, 49.01057 ], [ 5.035641, 49.02057 ], [ 5.035267, 49.02256 ], [ 5.032916, 49.02574 ], [ 5.01001, 49.03469 ], [ 4.966715, 49.021 ], [ 4.965432, 49.02144 ], [ 4.968234, 49.024281 ], [ 5.000361, 49.050536 ], [ 5.005744, 49.05987 ], [ 5.003861, 49.06568 ], [ 4.996638, 49.088913 ], [ 4.997767, 49.09228 ], [ 4.996343, 49.106502 ], [ 4.987983, 49.119636 ], [ 4.984722, 49.122496 ], [ 4.98064, 49.126485 ], [ 4.978523, 49.12845 ], [ 4.974853, 49.132849 ], [ 4.965324, 49.15119 ], [ 4.964624, 49.15441 ], [ 4.954392, 49.168122 ], [ 4.952939, 49.17105 ], [ 4.941676, 49.183805 ], [ 4.942378, 49.18677 ], [ 4.953973, 49.19408 ], [ 4.978532, 49.20045 ], [ 4.990533, 49.207415 ], [ 4.991859, 49.210838 ], [ 4.988955, 49.213484 ], [ 4.977581, 49.219751 ], [ 4.975569, 49.222788 ], [ 4.970838, 49.23554 ], [ 4.950989, 49.236866 ], [ 4.960253, 49.23996 ], [ 4.968033, 49.248792 ], [ 4.996246, 49.257977 ], [ 4.9999, 49.26045 ], [ 4.998664, 49.26366 ], [ 5.006624, 49.26767 ], [ 5.011029, 49.269287 ], [ 5.025812, 49.273042 ], [ 5.036007, 49.27122 ], [ 5.051181, 49.274052 ], [ 5.049709, 49.283366 ], [ 5.05546, 49.28798 ], [ 5.059407, 49.28975 ], [ 5.056637, 49.293365 ], [ 5.051473, 49.29422 ], [ 5.041741, 49.29669 ], [ 5.030794, 49.30817 ], [ 5.038152, 49.316204 ], [ 5.032377, 49.32393 ], [ 5.029392, 49.326036 ], [ 5.028499, 49.332354 ], [ 5.027099, 49.335615 ], [ 5.055816, 49.359435 ], [ 5.054072, 49.36611 ], [ 5.060209, 49.371517 ], [ 5.08389, 49.37043 ], [ 5.088622, 49.36963 ], [ 5.100617, 49.380497 ], [ 5.10415, 49.38978 ], [ 5.088653, 49.39861 ], [ 5.084472, 49.404586 ], [ 5.099317, 49.413842 ], [ 5.109334, 49.41547 ], [ 5.115029, 49.42058 ], [ 5.107781, 49.424674 ], [ 5.106154, 49.4277 ], [ 5.100887, 49.440834 ], [ 5.10986, 49.45625 ], [ 5.102876, 49.46017 ], [ 5.100672, 49.46126 ], [ 5.095809, 49.4604 ], [ 5.082957, 49.47036 ], [ 5.083, 49.473807 ], [ 5.084529, 49.48056 ], [ 5.079907, 49.48637 ], [ 5.074537, 49.486683 ], [ 5.059979, 49.50119 ], [ 5.059872, 49.504708 ], [ 5.062563, 49.50745 ], [ 5.077415, 49.508733 ], [ 5.084962, 49.51711 ], [ 5.085535, 49.520335 ], [ 5.089874, 49.52109 ], [ 5.097719, 49.533646 ], [ 5.090506, 49.538 ], [ 5.090175, 49.54479 ], [ 5.095677, 49.554358 ], [ 5.09608, 49.55779 ], [ 5.104178, 49.55609 ], [ 5.108388, 49.555298 ], [ 5.112148, 49.5597 ], [ 5.113352, 49.5621 ], [ 5.106024, 49.578524 ], [ 5.115037, 49.59093 ], [ 5.119715, 49.59268 ], [ 5.145609, 49.58919 ], [ 5.152668, 49.58011 ], [ 5.152895, 49.576623 ], [ 5.160299, 49.56957 ], [ 5.159887, 49.56669 ], [ 5.168633, 49.56366 ], [ 5.177683, 49.56715 ], [ 5.186928, 49.56969 ], [ 5.196319, 49.56755 ], [ 5.201334, 49.56814 ], [ 5.214137, 49.57301 ], [ 5.234775, 49.56567 ], [ 5.234681, 49.562235 ], [ 5.247139, 49.55762 ], [ 5.251771, 49.55671 ], [ 5.259298, 49.54436 ], [ 5.26271, 49.54182 ], [ 5.271867, 49.54457 ], [ 5.277031, 49.54416 ], [ 5.284348, 49.55242 ], [ 5.307404, 49.557781 ], [ 5.31177, 49.55929 ], [ 5.308171, 49.562847 ], [ 5.312228, 49.565143 ], [ 5.339981, 49.59419 ], [ 5.347645, 49.5897 ], [ 5.357528, 49.58989 ], [ 5.361514, 49.59206 ], [ 5.37203, 49.592166 ], [ 5.379728, 49.59563 ], [ 5.381689, 49.6057 ], [ 5.389677, 49.615617 ], [ 5.393537, 49.617088 ], [ 5.428929, 49.5954 ], [ 5.430972, 49.592384 ], [ 5.428995, 49.5892 ], [ 5.439331, 49.5698 ], [ 5.453857, 49.565967 ], [ 5.446263, 49.553389 ], [ 5.441353, 49.552139 ], [ 5.442549, 49.550272 ], [ 5.465261, 49.53631 ], [ 5.46403, 49.526199 ], [ 5.447197, 49.51788 ], [ 5.463425, 49.50897 ], [ 5.466285, 49.49893 ], [ 5.470911, 49.497214 ], [ 5.47917, 49.49558 ], [ 5.482492, 49.49376 ], [ 5.476665, 49.48513 ], [ 5.473769, 49.482598 ], [ 5.463647, 49.4822 ], [ 5.464264, 49.471165 ], [ 5.467072, 49.46296 ], [ 5.471172, 49.46157 ], [ 5.468359, 49.458735 ], [ 5.464134, 49.4526 ], [ 5.467361, 49.45001 ], [ 5.482348, 49.448162 ], [ 5.485193, 49.445388 ], [ 5.479012, 49.432736 ], [ 5.471244, 49.42804 ], [ 5.494264, 49.422261 ], [ 5.498186, 49.424384 ], [ 5.506772, 49.4215 ], [ 5.493942, 49.40707 ], [ 5.478992, 49.40426 ], [ 5.471776, 49.40924 ], [ 5.452186, 49.40507 ], [ 5.447164, 49.40407 ], [ 5.446816, 49.40399 ], [ 5.462875, 49.39689 ], [ 5.476893, 49.39529 ], [ 5.473871, 49.38917 ], [ 5.480988, 49.38248 ], [ 5.485008, 49.38329 ], [ 5.496634, 49.39438 ], [ 5.49917, 49.40745 ], [ 5.531254, 49.407743 ], [ 5.552529, 49.41824 ], [ 5.563085, 49.41928 ], [ 5.568345, 49.420001 ], [ 5.570027, 49.42248 ], [ 5.584345, 49.41881 ], [ 5.598517, 49.4232 ], [ 5.606563, 49.419013 ], [ 5.607205, 49.422435 ], [ 5.61691, 49.423511 ], [ 5.616183, 49.430362 ], [ 5.630124, 49.435248 ], [ 5.633554, 49.43787 ], [ 5.676869, 49.41902 ], [ 5.682024, 49.414504 ], [ 5.6918, 49.41509 ], [ 5.691872, 49.40539 ], [ 5.69213, 49.402156 ], [ 5.694297, 49.39986 ], [ 5.687281, 49.393747 ], [ 5.704749, 49.386855 ], [ 5.707787, 49.38411 ], [ 5.714375, 49.36925 ], [ 5.712225, 49.36346 ], [ 5.726699, 49.36218 ], [ 5.731571, 49.361087 ], [ 5.737564, 49.35568 ], [ 5.737916, 49.349089 ], [ 5.739328, 49.34586 ], [ 5.737194, 49.33887 ], [ 5.720819, 49.33008 ], [ 5.732039, 49.31093 ], [ 5.749166, 49.30989 ], [ 5.753468, 49.31188 ], [ 5.756975, 49.314422 ], [ 5.759984, 49.315379 ], [ 5.7629, 49.314332 ], [ 5.7638, 49.31137 ], [ 5.768283, 49.299781 ], [ 5.760905, 49.27961 ], [ 5.724722, 49.26978 ], [ 5.725312, 49.266381 ], [ 5.728497, 49.25668 ], [ 5.720933, 49.247707 ], [ 5.725272, 49.24478 ], [ 5.737341, 49.232448 ], [ 5.740556, 49.230117 ], [ 5.73345, 49.226132 ], [ 5.728719, 49.22498 ], [ 5.719916, 49.217164 ], [ 5.726491, 49.20175 ], [ 5.723192, 49.199306 ], [ 5.730304, 49.19517 ], [ 5.745193, 49.1982 ], [ 5.750386, 49.19854 ], [ 5.757366, 49.20098 ], [ 5.761112, 49.20146 ], [ 5.765774, 49.1975 ], [ 5.764739, 49.194059 ], [ 5.7464, 49.161482 ], [ 5.749182, 49.15496 ], [ 5.758935, 49.15215 ], [ 5.759572, 49.14868 ], [ 5.757448, 49.14561 ], [ 5.755974, 49.142389 ], [ 5.767645, 49.140124 ], [ 5.771796, 49.13979 ], [ 5.754527, 49.132202 ], [ 5.748301, 49.12312 ], [ 5.755118, 49.11419 ], [ 5.768537, 49.10678 ], [ 5.772557, 49.10535 ], [ 5.778497, 49.10905 ], [ 5.777362, 49.11164 ], [ 5.802818, 49.11228 ], [ 5.807797, 49.11134 ], [ 5.812824, 49.11129 ], [ 5.817853, 49.11104 ], [ 5.823213, 49.08868 ], [ 5.819334, 49.08637 ], [ 5.810402, 49.078782 ], [ 5.808172, 49.07577 ], [ 5.805771, 49.06658 ], [ 5.805944, 49.06346 ], [ 5.831265, 49.06454 ], [ 5.836058, 49.06606 ], [ 5.838473, 49.05315 ], [ 5.851206, 49.043469 ], [ 5.853476, 49.04045 ], [ 5.829903, 49.030558 ], [ 5.829622, 49.02741 ], [ 5.815, 49.00857 ], [ 5.814064, 49.005431 ], [ 5.817407, 49.00806 ], [ 5.821367, 49.00341 ], [ 5.802736, 48.987116 ], [ 5.804394, 48.98389 ], [ 5.812928, 48.98067 ], [ 5.817812, 48.98024 ], [ 5.8304, 48.97619 ], [ 5.849168, 48.96123 ], [ 5.848573, 48.954866 ], [ 5.84727, 48.951793 ], [ 5.842413, 48.95217 ], [ 5.831351, 48.94397 ], [ 5.817226, 48.94245 ], [ 5.81282, 48.94358 ], [ 5.79958, 48.94632 ], [ 5.776647, 48.92516 ], [ 5.751909, 48.921124 ], [ 5.747025, 48.91526 ], [ 5.750108, 48.91418 ], [ 5.753148, 48.91305 ], [ 5.756831, 48.91299 ], [ 5.757243, 48.90996 ], [ 5.770036, 48.895124 ], [ 5.787991, 48.887895 ], [ 5.786585, 48.8782 ], [ 5.782274, 48.876672 ], [ 5.777443, 48.87614 ], [ 5.773466, 48.874725 ], [ 5.765203, 48.872991 ], [ 5.768135, 48.86297 ], [ 5.769401, 48.85959 ], [ 5.771704, 48.85776 ], [ 5.775159, 48.85708 ], [ 5.777993, 48.837851 ], [ 5.78135, 48.83537 ], [ 5.774308, 48.813208 ], [ 5.762901, 48.802628 ], [ 5.758209, 48.80123 ], [ 5.759356, 48.79586 ], [ 5.762412, 48.79391 ], [ 5.774231, 48.7987 ], [ 5.778491, 48.7999 ], [ 5.776984, 48.793356 ], [ 5.776455, 48.790066 ], [ 5.766159, 48.78905 ], [ 5.740039, 48.77224 ], [ 5.736559, 48.762477 ], [ 5.743127, 48.757178 ], [ 5.732567, 48.75018 ], [ 5.719113, 48.748216 ], [ 5.714041, 48.744623 ], [ 5.724748, 48.73805 ], [ 5.719037, 48.73291 ], [ 5.728777, 48.72663 ], [ 5.732055, 48.724557 ], [ 5.733023, 48.72381 ], [ 5.751104, 48.71381 ], [ 5.760421, 48.702764 ], [ 5.764601, 48.701083 ], [ 5.757173, 48.69456 ], [ 5.755881, 48.69197 ], [ 5.746144, 48.66966 ], [ 5.748918, 48.666849 ], [ 5.747463, 48.659845 ], [ 5.74451, 48.656898 ], [ 5.749915, 48.64447 ], [ 5.752287, 48.641544 ], [ 5.756326, 48.637004 ], [ 5.760946, 48.63114 ], [ 5.759203, 48.6246 ], [ 5.758376, 48.62129 ], [ 5.760452, 48.621 ], [ 5.764339, 48.619024 ], [ 5.790067, 48.62798 ], [ 5.799433, 48.62693 ], [ 5.803519, 48.625138 ], [ 5.7975, 48.61667 ], [ 5.798026, 48.61356 ], [ 5.793323, 48.60887 ], [ 5.789908, 48.60719 ], [ 5.769398, 48.60842 ], [ 5.764234, 48.60778 ], [ 5.754818, 48.6063 ], [ 5.741515, 48.596664 ], [ 5.722763, 48.592243 ], [ 5.717988, 48.591209 ], [ 5.713341, 48.57668 ], [ 5.714943, 48.5733 ], [ 5.71413, 48.56494 ], [ 5.715484, 48.5623 ], [ 5.725255, 48.55565 ], [ 5.728643, 48.55354 ], [ 5.744353, 48.552431 ], [ 5.757625, 48.54675 ], [ 5.762875, 48.5463 ], [ 5.772728, 48.541899 ], [ 5.776375, 48.54062 ], [ 5.77559, 48.537322 ], [ 5.766914, 48.534203 ], [ 5.761889, 48.524752 ], [ 5.760971, 48.52147 ], [ 5.762777, 48.51614 ], [ 5.76487, 48.49983 ], [ 5.765155, 48.49649 ] ], [ [ 5.42599, 49.48614 ], [ 5.451653, 49.48333 ], [ 5.455555, 49.48094 ], [ 5.456238, 49.484258 ], [ 5.465225, 49.48689 ], [ 5.442003, 49.503618 ], [ 5.43974, 49.500453 ], [ 5.433874, 49.49086 ], [ 5.42599, 49.48614 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "57", "CODE_DEPT": "56", "NOM_DEPT": "MORBIHAN", "CODE_CHF": "260", "NOM_CHF": "VANNES", "X_CHF_LIEU": "2678", "Y_CHF_LIEU": "67440", "X_CENTROID": "2663", "Y_CENTROID": "67663", "CODE_REG": "53", "NOM_REGION": "BRETAGNE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.458489, 47.44812 ], [ -2.468694, 47.44905 ], [ -2.481557, 47.443075 ], [ -2.493777, 47.44938 ], [ -2.497395, 47.45961 ], [ -2.489698, 47.472495 ], [ -2.49957, 47.48877 ], [ -2.494972, 47.494678 ], [ -2.484709, 47.49482 ], [ -2.464253, 47.48513 ], [ -2.448211, 47.493341 ], [ -2.427578, 47.494152 ], [ -2.42294, 47.49253 ], [ -2.420456, 47.49521 ], [ -2.438729, 47.496447 ], [ -2.441534, 47.49902 ], [ -2.46388, 47.50948 ], [ -2.466831, 47.51189 ], [ -2.495759, 47.51631 ], [ -2.499913, 47.51809 ], [ -2.502609, 47.52099 ], [ -2.52068, 47.5261 ], [ -2.535333, 47.525828 ], [ -2.544239, 47.52268 ], [ -2.545112, 47.519163 ], [ -2.556992, 47.51299 ], [ -2.577103, 47.51693 ], [ -2.598006, 47.51695 ], [ -2.623327, 47.50505 ], [ -2.632431, 47.50751 ], [ -2.633557, 47.511 ], [ -2.639799, 47.515993 ], [ -2.658646, 47.517984 ], [ -2.663121, 47.51923 ], [ -2.679118, 47.49452 ], [ -2.711772, 47.504504 ], [ -2.727034, 47.505974 ], [ -2.750088, 47.498528 ], [ -2.780511, 47.49512 ], [ -2.791259, 47.48763 ], [ -2.799895, 47.48708 ], [ -2.80464, 47.48848 ], [ -2.809881, 47.4883 ], [ -2.819352, 47.488575 ], [ -2.847098, 47.49825 ], [ -2.852326, 47.51862 ], [ -2.869388, 47.53043 ], [ -2.872909, 47.533 ], [ -2.886834, 47.537568 ], [ -2.897373, 47.53668 ], [ -2.901166, 47.53771 ], [ -2.900984, 47.541 ], [ -2.910415, 47.543595 ], [ -2.913523, 47.54614 ], [ -2.911144, 47.55643 ], [ -2.908172, 47.55933 ], [ -2.903388, 47.560695 ], [ -2.87795, 47.559175 ], [ -2.869401, 47.550436 ], [ -2.859781, 47.54976 ], [ -2.861502, 47.53958 ], [ -2.853405, 47.53733 ], [ -2.849627, 47.539345 ], [ -2.846089, 47.545498 ], [ -2.830702, 47.545719 ], [ -2.82396, 47.54245 ], [ -2.817, 47.55405 ], [ -2.808345, 47.5511 ], [ -2.802595, 47.541861 ], [ -2.787762, 47.54963 ], [ -2.774172, 47.53984 ], [ -2.75914, 47.53728 ], [ -2.745192, 47.54167 ], [ -2.734749, 47.541604 ], [ -2.728778, 47.54695 ], [ -2.730289, 47.550344 ], [ -2.727757, 47.5619 ], [ -2.718798, 47.569627 ], [ -2.715216, 47.57926 ], [ -2.719365, 47.58885 ], [ -2.718591, 47.59581 ], [ -2.722752, 47.60201 ], [ -2.73862, 47.60314 ], [ -2.769724, 47.61633 ], [ -2.774697, 47.621697 ], [ -2.765331, 47.62211 ], [ -2.740928, 47.615161 ], [ -2.743493, 47.62732 ], [ -2.746323, 47.624597 ], [ -2.753812, 47.62731 ], [ -2.757374, 47.63693 ], [ -2.778346, 47.62974 ], [ -2.777483, 47.62646 ], [ -2.780067, 47.62345 ], [ -2.791483, 47.6177 ], [ -2.811212, 47.62125 ], [ -2.830144, 47.616383 ], [ -2.859252, 47.62228 ], [ -2.866641, 47.61786 ], [ -2.858048, 47.61522 ], [ -2.865807, 47.60676 ], [ -2.861333, 47.60067 ], [ -2.869903, 47.598385 ], [ -2.883425, 47.602893 ], [ -2.888307, 47.60372 ], [ -2.890974, 47.578944 ], [ -2.903282, 47.58408 ], [ -2.910766, 47.59226 ], [ -2.916293, 47.58663 ], [ -2.924126, 47.58676 ], [ -2.919483, 47.59637 ], [ -2.926744, 47.597827 ], [ -2.930471, 47.60434 ], [ -2.939929, 47.593635 ], [ -2.947675, 47.60685 ], [ -2.948285, 47.62081 ], [ -2.940896, 47.625432 ], [ -2.9357, 47.625291 ], [ -2.943379, 47.62913 ], [ -2.956806, 47.62693 ], [ -2.961258, 47.63593 ], [ -2.957925, 47.638248 ], [ -2.96278, 47.63867 ], [ -2.973764, 47.655148 ], [ -2.975514, 47.65777 ], [ -2.977542, 47.66024 ], [ -2.982027, 47.65581 ], [ -2.956512, 47.61844 ], [ -2.966919, 47.60694 ], [ -2.972093, 47.606543 ], [ -2.95736, 47.59677 ], [ -2.962818, 47.59104 ], [ -2.962734, 47.58469 ], [ -2.947008, 47.57564 ], [ -2.937184, 47.567553 ], [ -2.933497, 47.56043 ], [ -2.932742, 47.557236 ], [ -2.937259, 47.55552 ], [ -2.956663, 47.55972 ], [ -2.970619, 47.558585 ], [ -2.973721, 47.57224 ], [ -2.990342, 47.580195 ], [ -2.989331, 47.583668 ], [ -2.995742, 47.58811 ], [ -2.993135, 47.57121 ], [ -3.001932, 47.56795 ], [ -3.009322, 47.572221 ], [ -3.02302, 47.591455 ], [ -3.024005, 47.59131 ], [ -3.026705, 47.5884 ], [ -3.023741, 47.57173 ], [ -3.040635, 47.58309 ], [ -3.046974, 47.578514 ], [ -3.051979, 47.577938 ], [ -3.0548, 47.571409 ], [ -3.070055, 47.571355 ], [ -3.093946, 47.56597 ], [ -3.102456, 47.5739 ], [ -3.095391, 47.57862 ], [ -3.103164, 47.58276 ], [ -3.126464, 47.59509 ], [ -3.129706, 47.585095 ], [ -3.127968, 47.578334 ], [ -3.12002, 47.57407 ], [ -3.126395, 47.564639 ], [ -3.128281, 47.561434 ], [ -3.132344, 47.530758 ], [ -3.126231, 47.514088 ], [ -3.118405, 47.50999 ], [ -3.119632, 47.50314 ], [ -3.116874, 47.49639 ], [ -3.098112, 47.484453 ], [ -3.087621, 47.47234 ], [ -3.102521, 47.472792 ], [ -3.116602, 47.47715 ], [ -3.131873, 47.47641 ], [ -3.135992, 47.47888 ], [ -3.142481, 47.48412 ], [ -3.149312, 47.50077 ], [ -3.151776, 47.50388 ], [ -3.153576, 47.52077 ], [ -3.159455, 47.52645 ], [ -3.142673, 47.533635 ], [ -3.134875, 47.546398 ], [ -3.137325, 47.556453 ], [ -3.138442, 47.55978 ], [ -3.140604, 47.581 ], [ -3.156038, 47.6035 ], [ -3.15828, 47.606719 ], [ -3.196712, 47.62402 ], [ -3.210093, 47.64292 ], [ -3.204461, 47.6487 ], [ -3.208216, 47.662342 ], [ -3.205878, 47.66545 ], [ -3.20752, 47.66864 ], [ -3.186002, 47.682229 ], [ -3.166, 47.681753 ], [ -3.159969, 47.687163 ], [ -3.151085, 47.68931 ], [ -3.151236, 47.6927 ], [ -3.168982, 47.6949 ], [ -3.176776, 47.69431 ], [ -3.195839, 47.688858 ], [ -3.20979, 47.693136 ], [ -3.203675, 47.68163 ], [ -3.214047, 47.67017 ], [ -3.21148, 47.652977 ], [ -3.216734, 47.64819 ], [ -3.272793, 47.679546 ], [ -3.305419, 47.690627 ], [ -3.310338, 47.691842 ], [ -3.336325, 47.695003 ], [ -3.34466, 47.695137 ], [ -3.351467, 47.692329 ], [ -3.355873, 47.68779 ], [ -3.360388, 47.69009 ], [ -3.355863, 47.694311 ], [ -3.351659, 47.6992 ], [ -3.343809, 47.6972 ], [ -3.326245, 47.699992 ], [ -3.312518, 47.695002 ], [ -3.307885, 47.693266 ], [ -3.290004, 47.68761 ], [ -3.280593, 47.688426 ], [ -3.285867, 47.697867 ], [ -3.287864, 47.70096 ], [ -3.306696, 47.703768 ], [ -3.312555, 47.707822 ], [ -3.336301, 47.7076 ], [ -3.340914, 47.708705 ], [ -3.353835, 47.704201 ], [ -3.359706, 47.70911 ], [ -3.346789, 47.71399 ], [ -3.342698, 47.71592 ], [ -3.347396, 47.72524 ], [ -3.344075, 47.731613 ], [ -3.334062, 47.73137 ], [ -3.321599, 47.73642 ], [ -3.315048, 47.74482 ], [ -3.306356, 47.74862 ], [ -3.296612, 47.7683 ], [ -3.286357, 47.769351 ], [ -3.28249, 47.77935 ], [ -3.291163, 47.78743 ], [ -3.283859, 47.79397 ], [ -3.294363, 47.79351 ], [ -3.290919, 47.774288 ], [ -3.312855, 47.7605 ], [ -3.325089, 47.75888 ], [ -3.325834, 47.74872 ], [ -3.333625, 47.744217 ], [ -3.338439, 47.743052 ], [ -3.346595, 47.746221 ], [ -3.351028, 47.75631 ], [ -3.362135, 47.767102 ], [ -3.359902, 47.770266 ], [ -3.367955, 47.77454 ], [ -3.389853, 47.80602 ], [ -3.38629, 47.81573 ], [ -3.38802, 47.823083 ], [ -3.388816, 47.828583 ], [ -3.392376, 47.8224 ], [ -3.387783, 47.81655 ], [ -3.39055, 47.81036 ], [ -3.403915, 47.80859 ], [ -3.391446, 47.803662 ], [ -3.381466, 47.79156 ], [ -3.382253, 47.78461 ], [ -3.370442, 47.77383 ], [ -3.372095, 47.770523 ], [ -3.353981, 47.754362 ], [ -3.352041, 47.74765 ], [ -3.357882, 47.73134 ], [ -3.366687, 47.72853 ], [ -3.367403, 47.725124 ], [ -3.369571, 47.71496 ], [ -3.382551, 47.704494 ], [ -3.391638, 47.70151 ], [ -3.411909, 47.702325 ], [ -3.416112, 47.70035 ], [ -3.429482, 47.703499 ], [ -3.44694, 47.69676 ], [ -3.456736, 47.697786 ], [ -3.493302, 47.72567 ], [ -3.500025, 47.73456 ], [ -3.501593, 47.737859 ], [ -3.507058, 47.74783 ], [ -3.526263, 47.764535 ], [ -3.528987, 47.774931 ], [ -3.529675, 47.778451 ], [ -3.519744, 47.801023 ], [ -3.522424, 47.80745 ], [ -3.533286, 47.81521 ], [ -3.539954, 47.8284 ], [ -3.538146, 47.835505 ], [ -3.523874, 47.84564 ], [ -3.523004, 47.849147 ], [ -3.519274, 47.8487 ], [ -3.518947, 47.83906 ], [ -3.508975, 47.83158 ], [ -3.490984, 47.825064 ], [ -3.485876, 47.82529 ], [ -3.472813, 47.83582 ], [ -3.462754, 47.83693 ], [ -3.457662, 47.836633 ], [ -3.44892, 47.848457 ], [ -3.449854, 47.861328 ], [ -3.42119, 47.86861 ], [ -3.40869, 47.863227 ], [ -3.398383, 47.863104 ], [ -3.403891, 47.868383 ], [ -3.402412, 47.88536 ], [ -3.411356, 47.90481 ], [ -3.406288, 47.917309 ], [ -3.391871, 47.9205 ], [ -3.388025, 47.92704 ], [ -3.400984, 47.941996 ], [ -3.393172, 47.95086 ], [ -3.392807, 47.95407 ], [ -3.401313, 47.960722 ], [ -3.40339, 47.967001 ], [ -3.408436, 47.967258 ], [ -3.412978, 47.97334 ], [ -3.441627, 47.960158 ], [ -3.461307, 47.95761 ], [ -3.463967, 47.947588 ], [ -3.468019, 47.94555 ], [ -3.470864, 47.94826 ], [ -3.479924, 47.950798 ], [ -3.485293, 47.96686 ], [ -3.497449, 47.97673 ], [ -3.502192, 47.97538 ], [ -3.517531, 47.97599 ], [ -3.530788, 47.98621 ], [ -3.545771, 47.98782 ], [ -3.554116, 47.99188 ], [ -3.574363, 47.99059 ], [ -3.581993, 47.98596 ], [ -3.590049, 47.98929 ], [ -3.600203, 47.990129 ], [ -3.613014, 47.9851 ], [ -3.621982, 47.982815 ], [ -3.641041, 47.985793 ], [ -3.649005, 48.006023 ], [ -3.660917, 48.01757 ], [ -3.674599, 48.05492 ], [ -3.701509, 48.064867 ], [ -3.70371, 48.06808 ], [ -3.70381, 48.08468 ], [ -3.698773, 48.09088 ], [ -3.695004, 48.09336 ], [ -3.708042, 48.09815 ], [ -3.727878, 48.095747 ], [ -3.732973, 48.096268 ], [ -3.729698, 48.10283 ], [ -3.732486, 48.112949 ], [ -3.720172, 48.118973 ], [ -3.723829, 48.12439 ], [ -3.71181, 48.13498 ], [ -3.712945, 48.14178 ], [ -3.696177, 48.148607 ], [ -3.696017, 48.15202 ], [ -3.671562, 48.151477 ], [ -3.653281, 48.15622 ], [ -3.625331, 48.169746 ], [ -3.620747, 48.17098 ], [ -3.591673, 48.17683 ], [ -3.56989, 48.18532 ], [ -3.564839, 48.185747 ], [ -3.55792, 48.180931 ], [ -3.553306, 48.17965 ], [ -3.532568, 48.178331 ], [ -3.501416, 48.181328 ], [ -3.496707, 48.182888 ], [ -3.484418, 48.184829 ], [ -3.480454, 48.18586 ], [ -3.470217, 48.179019 ], [ -3.450452, 48.178451 ], [ -3.446269, 48.18034 ], [ -3.445105, 48.18693 ], [ -3.422077, 48.173347 ], [ -3.437932, 48.16028 ], [ -3.433656, 48.1541 ], [ -3.42051, 48.148524 ], [ -3.417596, 48.14564 ], [ -3.408702, 48.14893 ], [ -3.403883, 48.155018 ], [ -3.389662, 48.15357 ], [ -3.374356, 48.162777 ], [ -3.34934, 48.166033 ], [ -3.341953, 48.17081 ], [ -3.336929, 48.171567 ], [ -3.324402, 48.158492 ], [ -3.322894, 48.14963 ], [ -3.318249, 48.1488 ], [ -3.315455, 48.15521 ], [ -3.300754, 48.155021 ], [ -3.291728, 48.15252 ], [ -3.284694, 48.143765 ], [ -3.275336, 48.142197 ], [ -3.271025, 48.14053 ], [ -3.269592, 48.14368 ], [ -3.2569, 48.147321 ], [ -3.252814, 48.14914 ], [ -3.238346, 48.15033 ], [ -3.211561, 48.142456 ], [ -3.214832, 48.151905 ], [ -3.201521, 48.161443 ], [ -3.192268, 48.16387 ], [ -3.183202, 48.161224 ], [ -3.178229, 48.16115 ], [ -3.173944, 48.159354 ], [ -3.161117, 48.16468 ], [ -3.147869, 48.161097 ], [ -3.132714, 48.17393 ], [ -3.130223, 48.17687 ], [ -3.136624, 48.18224 ], [ -3.136108, 48.189165 ], [ -3.129925, 48.19867 ], [ -3.120273, 48.201 ], [ -3.11534, 48.20677 ], [ -3.09757, 48.205578 ], [ -3.094792, 48.20304 ], [ -3.086394, 48.204666 ], [ -3.081694, 48.21003 ], [ -3.076967, 48.2099 ], [ -3.070056, 48.205229 ], [ -3.054889, 48.20647 ], [ -3.035975, 48.20235 ], [ -3.030742, 48.1965 ], [ -3.020859, 48.196706 ], [ -3.016147, 48.197994 ], [ -3.018569, 48.19131 ], [ -3.011584, 48.175161 ], [ -2.998049, 48.16731 ], [ -2.999753, 48.16071 ], [ -2.979469, 48.16132 ], [ -2.968085, 48.16788 ], [ -2.963583, 48.16933 ], [ -2.943871, 48.171702 ], [ -2.896018, 48.163341 ], [ -2.891453, 48.164734 ], [ -2.888056, 48.1621 ], [ -2.877949, 48.150917 ], [ -2.854805, 48.14236 ], [ -2.849797, 48.141211 ], [ -2.815509, 48.14654 ], [ -2.810401, 48.14655 ], [ -2.784964, 48.122615 ], [ -2.78195, 48.120327 ], [ -2.783476, 48.11137 ], [ -2.778113, 48.10608 ], [ -2.775249, 48.08704 ], [ -2.761983, 48.097144 ], [ -2.751404, 48.116509 ], [ -2.748166, 48.113871 ], [ -2.728458, 48.1165 ], [ -2.709032, 48.112915 ], [ -2.703982, 48.112429 ], [ -2.702304, 48.118727 ], [ -2.679521, 48.129499 ], [ -2.676227, 48.13182 ], [ -2.662597, 48.1304 ], [ -2.656567, 48.12128 ], [ -2.651993, 48.119971 ], [ -2.652644, 48.113471 ], [ -2.651812, 48.11061 ], [ -2.652594, 48.10721 ], [ -2.655691, 48.087965 ], [ -2.671327, 48.062907 ], [ -2.667, 48.0567 ], [ -2.668668, 48.04678 ], [ -2.659756, 48.044852 ], [ -2.657516, 48.0424 ], [ -2.660751, 48.037055 ], [ -2.655761, 48.03254 ], [ -2.64629, 48.040087 ], [ -2.643247, 48.03728 ], [ -2.623324, 48.0369 ], [ -2.582922, 48.06334 ], [ -2.580891, 48.06653 ], [ -2.579225, 48.06975 ], [ -2.564496, 48.069192 ], [ -2.553719, 48.07602 ], [ -2.548679, 48.07648 ], [ -2.551781, 48.09575 ], [ -2.546657, 48.10107 ], [ -2.534741, 48.10764 ], [ -2.520902, 48.122141 ], [ -2.514928, 48.131234 ], [ -2.515424, 48.13792 ], [ -2.533234, 48.15367 ], [ -2.534346, 48.15694 ], [ -2.488328, 48.15791 ], [ -2.485405, 48.164552 ], [ -2.460856, 48.16327 ], [ -2.451564, 48.17081 ], [ -2.447034, 48.172519 ], [ -2.420924, 48.173254 ], [ -2.407188, 48.16804 ], [ -2.399673, 48.15508 ], [ -2.380299, 48.143152 ], [ -2.375705, 48.14144 ], [ -2.374972, 48.13874 ], [ -2.374551, 48.1309 ], [ -2.365799, 48.115854 ], [ -2.36211, 48.113614 ], [ -2.357527, 48.111315 ], [ -2.346988, 48.1264 ], [ -2.330118, 48.120361 ], [ -2.322439, 48.12462 ], [ -2.316929, 48.13411 ], [ -2.306935, 48.13576 ], [ -2.292218, 48.132757 ], [ -2.287278, 48.133746 ], [ -2.253986, 48.107197 ], [ -2.255791, 48.09679 ], [ -2.253012, 48.094976 ], [ -2.253629, 48.08981 ], [ -2.24916, 48.08412 ], [ -2.256927, 48.069242 ], [ -2.256118, 48.062866 ], [ -2.23543, 48.06359 ], [ -2.234992, 48.07343 ], [ -2.222408, 48.078995 ], [ -2.18634, 48.081592 ], [ -2.181674, 48.083141 ], [ -2.171766, 48.078166 ], [ -2.16848, 48.076209 ], [ -2.171854, 48.07356 ], [ -2.171431, 48.06319 ], [ -2.19135, 48.05245 ], [ -2.242426, 48.0526 ], [ -2.249688, 48.047713 ], [ -2.252806, 48.045112 ], [ -2.273288, 48.031072 ], [ -2.280018, 48.024 ], [ -2.280539, 48.02114 ], [ -2.28244, 48.01796 ], [ -2.276503, 48.00884 ], [ -2.287311, 48.001734 ], [ -2.28804, 47.99491 ], [ -2.287539, 47.9915 ], [ -2.238197, 47.99933 ], [ -2.219153, 47.994681 ], [ -2.214416, 47.99324 ], [ -2.209813, 47.9948 ], [ -2.191056, 47.98918 ], [ -2.176729, 47.98005 ], [ -2.151741, 47.98361 ], [ -2.142614, 47.98174 ], [ -2.138403, 47.979735 ], [ -2.126572, 47.965615 ], [ -2.122495, 47.96386 ], [ -2.11977, 47.96095 ], [ -2.111211, 47.95908 ], [ -2.108884, 47.95319 ], [ -2.104673, 47.95198 ], [ -2.09806, 47.935717 ], [ -2.078951, 47.91949 ], [ -2.083715, 47.911666 ], [ -2.082017, 47.90892 ], [ -2.08967, 47.90286 ], [ -2.093704, 47.902133 ], [ -2.103623, 47.90039 ], [ -2.112087, 47.892485 ], [ -2.114768, 47.88232 ], [ -2.114176, 47.87883 ], [ -2.099109, 47.86447 ], [ -2.10618, 47.8516 ], [ -2.109451, 47.84884 ], [ -2.099383, 47.84375 ], [ -2.095195, 47.843258 ], [ -2.06932, 47.851884 ], [ -2.05828, 47.86651 ], [ -2.054704, 47.86879 ], [ -2.051378, 47.86018 ], [ -2.050927, 47.857133 ], [ -2.05393, 47.85095 ], [ -2.049442, 47.83786 ], [ -2.040324, 47.83522 ], [ -2.036045, 47.83346 ], [ -2.0452, 47.82226 ], [ -2.04677, 47.81919 ], [ -2.066864, 47.813246 ], [ -2.070464, 47.8114 ], [ -2.070534, 47.80807 ], [ -2.072142, 47.798552 ], [ -2.075998, 47.78918 ], [ -2.095417, 47.77899 ], [ -2.105343, 47.779665 ], [ -2.110098, 47.7786 ], [ -2.111378, 47.77228 ], [ -2.125108, 47.770656 ], [ -2.127329, 47.76455 ], [ -2.12863, 47.7614 ], [ -2.088468, 47.762597 ], [ -2.082389, 47.7505 ], [ -2.067314, 47.75088 ], [ -2.062322, 47.75127 ], [ -2.05986, 47.73831 ], [ -2.105087, 47.73757 ], [ -2.109457, 47.73588 ], [ -2.107391, 47.732748 ], [ -2.128417, 47.72396 ], [ -2.129069, 47.71756 ], [ -2.119132, 47.70971 ], [ -2.124075, 47.6929 ], [ -2.122663, 47.68267 ], [ -2.107481, 47.67771 ], [ -2.10385, 47.67619 ], [ -2.103234, 47.66599 ], [ -2.107446, 47.65979 ], [ -2.110371, 47.657015 ], [ -2.112425, 47.64754 ], [ -2.095004, 47.643752 ], [ -2.095198, 47.640469 ], [ -2.103979, 47.6381 ], [ -2.103189, 47.63486 ], [ -2.097036, 47.63136 ], [ -2.086555, 47.623745 ], [ -2.084146, 47.609959 ], [ -2.0853, 47.606536 ], [ -2.086481, 47.603255 ], [ -2.102524, 47.5953 ], [ -2.100458, 47.578858 ], [ -2.105064, 47.57754 ], [ -2.103211, 47.575166 ], [ -2.096731, 47.57263 ], [ -2.0975, 47.569237 ], [ -2.103892, 47.54911 ], [ -2.097167, 47.54022 ], [ -2.098852, 47.533449 ], [ -2.14396, 47.524961 ], [ -2.148712, 47.52356 ], [ -2.155171, 47.518728 ], [ -2.153629, 47.50827 ], [ -2.155255, 47.497805 ], [ -2.157796, 47.49475 ], [ -2.166233, 47.49088 ], [ -2.186385, 47.49323 ], [ -2.189112, 47.49938 ], [ -2.185606, 47.509068 ], [ -2.198455, 47.51113 ], [ -2.203241, 47.5105 ], [ -2.216832, 47.507059 ], [ -2.244284, 47.49361 ], [ -2.248656, 47.4953 ], [ -2.261677, 47.50047 ], [ -2.255948, 47.50935 ], [ -2.259526, 47.51175 ], [ -2.279494, 47.510881 ], [ -2.29745, 47.515506 ], [ -2.298099, 47.515476 ], [ -2.29705, 47.512014 ], [ -2.30048, 47.498136 ], [ -2.313426, 47.483065 ], [ -2.316133, 47.46251 ], [ -2.355923, 47.455979 ], [ -2.36721, 47.46319 ], [ -2.377584, 47.46276 ], [ -2.395334, 47.45657 ], [ -2.410409, 47.45883 ], [ -2.420088, 47.4669 ], [ -2.423027, 47.477122 ], [ -2.427617, 47.475789 ], [ -2.44035, 47.465819 ], [ -2.452868, 47.460964 ], [ -2.458489, 47.44812 ] ] ], [ [ [ -3.243707, 47.38696 ], [ -3.233801, 47.37909 ], [ -3.219513, 47.37637 ], [ -3.218725, 47.369479 ], [ -3.215431, 47.37201 ], [ -3.205428, 47.372069 ], [ -3.194052, 47.36589 ], [ -3.155845, 47.36083 ], [ -3.141984, 47.33163 ], [ -3.124187, 47.32629 ], [ -3.121282, 47.323411 ], [ -3.116104, 47.323766 ], [ -3.099541, 47.31581 ], [ -3.068419, 47.316268 ], [ -3.059785, 47.308603 ], [ -3.077575, 47.287067 ], [ -3.090227, 47.281048 ], [ -3.113883, 47.288009 ], [ -3.118963, 47.288797 ], [ -3.134439, 47.287663 ], [ -3.153145, 47.29351 ], [ -3.15807, 47.292359 ], [ -3.173567, 47.30073 ], [ -3.187089, 47.29563 ], [ -3.202025, 47.29703 ], [ -3.216736, 47.29432 ], [ -3.237325, 47.304138 ], [ -3.246508, 47.31265 ], [ -3.239201, 47.32139 ], [ -3.235445, 47.32382 ], [ -3.251836, 47.336805 ], [ -3.260949, 47.35692 ], [ -3.259308, 47.36744 ], [ -3.251751, 47.37193 ], [ -3.24861, 47.385798 ], [ -3.243707, 47.38696 ] ] ], [ [ [ -3.421794, 47.62 ], [ -3.427389, 47.623746 ], [ -3.43258, 47.62436 ], [ -3.438506, 47.62775 ], [ -3.446994, 47.62359 ], [ -3.462408, 47.621267 ], [ -3.473157, 47.6264 ], [ -3.483301, 47.628407 ], [ -3.486074, 47.631323 ], [ -3.493356, 47.63329 ], [ -3.505973, 47.639779 ], [ -3.513689, 47.646925 ], [ -3.511145, 47.65137 ], [ -3.498153, 47.653338 ], [ -3.495109, 47.653254 ], [ -3.464792, 47.648175 ], [ -3.447714, 47.643666 ], [ -3.437168, 47.64387 ], [ -3.429711, 47.64209 ], [ -3.416594, 47.63338 ], [ -3.421312, 47.62176 ], [ -3.421794, 47.62 ] ] ], [ [ [ -2.948152, 47.37334 ], [ -2.955677, 47.37803 ], [ -2.958185, 47.38289 ], [ -2.973536, 47.38561 ], [ -2.984453, 47.393374 ], [ -2.991791, 47.39479 ], [ -2.992648, 47.398287 ], [ -2.990239, 47.40052 ], [ -2.969309, 47.393603 ], [ -2.953707, 47.39151 ], [ -2.94148, 47.393216 ], [ -2.950713, 47.38765 ], [ -2.953572, 47.38288 ], [ -2.949234, 47.378655 ], [ -2.948443, 47.37512 ], [ -2.948152, 47.37334 ] ] ], [ [ [ -2.859561, 47.55989 ], [ -2.861501, 47.5687 ], [ -2.852306, 47.599396 ], [ -2.847033, 47.599868 ], [ -2.840082, 47.60499 ], [ -2.838436, 47.60423 ], [ -2.840674, 47.597489 ], [ -2.839499, 47.59395 ], [ -2.826044, 47.58975 ], [ -2.837811, 47.588525 ], [ -2.845562, 47.589247 ], [ -2.847884, 47.58828 ], [ -2.849508, 47.58667 ], [ -2.854217, 47.5733 ], [ -2.851517, 47.56644 ], [ -2.858295, 47.564643 ], [ -2.859561, 47.55989 ] ] ], [ [ [ -2.880513, 47.331253 ], [ -2.886577, 47.33436 ], [ -2.888781, 47.337505 ], [ -2.88986, 47.34599 ], [ -2.883698, 47.343089 ], [ -2.881138, 47.34325 ], [ -2.87352, 47.34329 ], [ -2.866691, 47.34848 ], [ -2.864127, 47.34848 ], [ -2.861929, 47.34186 ], [ -2.862297, 47.34013 ], [ -2.865114, 47.337233 ], [ -2.880513, 47.331253 ] ] ], [ [ [ -2.80961, 47.57826 ], [ -2.811918, 47.579124 ], [ -2.812992, 47.58421 ], [ -2.808397, 47.58586 ], [ -2.809073, 47.592073 ], [ -2.796705, 47.598574 ], [ -2.794327, 47.603458 ], [ -2.787506, 47.596802 ], [ -2.797822, 47.58946 ], [ -2.807719, 47.57951 ], [ -2.80961, 47.57826 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "58", "CODE_DEPT": "57", "NOM_DEPT": "MOSELLE", "CODE_CHF": "463", "NOM_CHF": "METZ", "X_CHF_LIEU": "9318", "Y_CHF_LIEU": "68957", "X_CENTROID": "9677", "Y_CENTROID": "68881", "CODE_REG": "41", "NOM_REGION": "LORRAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.635286, 49.05417 ], [ 7.639294, 49.048116 ], [ 7.628348, 49.03678 ], [ 7.626239, 49.033722 ], [ 7.617915, 49.030386 ], [ 7.61065, 49.02201 ], [ 7.606889, 49.019911 ], [ 7.608195, 49.010413 ], [ 7.588722, 48.99103 ], [ 7.591159, 48.988098 ], [ 7.592336, 48.98485 ], [ 7.589173, 48.98205 ], [ 7.582392, 48.97266 ], [ 7.583559, 48.96604 ], [ 7.579926, 48.96161 ], [ 7.553536, 48.94239 ], [ 7.556685, 48.936198 ], [ 7.536256, 48.933506 ], [ 7.527765, 48.94197 ], [ 7.513191, 48.94325 ], [ 7.508411, 48.94364 ], [ 7.487019, 48.950061 ], [ 7.477995, 48.961495 ], [ 7.45365, 48.964879 ], [ 7.451631, 48.96797 ], [ 7.447472, 48.966046 ], [ 7.404511, 48.9582 ], [ 7.392312, 48.95272 ], [ 7.379918, 48.951197 ], [ 7.375698, 48.95142 ], [ 7.368109, 48.95355 ], [ 7.363903, 48.95525 ], [ 7.355124, 48.954443 ], [ 7.350815, 48.95279 ], [ 7.343367, 48.94843 ], [ 7.333561, 48.948246 ], [ 7.326853, 48.94338 ], [ 7.322678, 48.945298 ], [ 7.30646, 48.953357 ], [ 7.305475, 48.956643 ], [ 7.290203, 48.956516 ], [ 7.290433, 48.967089 ], [ 7.293927, 48.97262 ], [ 7.238142, 48.9877 ], [ 7.214241, 48.98116 ], [ 7.209311, 48.980088 ], [ 7.206959, 48.98296 ], [ 7.195847, 48.99377 ], [ 7.186213, 48.99376 ], [ 7.183774, 48.99644 ], [ 7.17359, 49.00611 ], [ 7.169316, 49.005042 ], [ 7.161607, 49.00193 ], [ 7.160682, 49.00524 ], [ 7.130174, 49.00541 ], [ 7.122364, 49.02322 ], [ 7.122979, 49.02648 ], [ 7.116375, 49.031083 ], [ 7.119477, 49.03722 ], [ 7.116612, 49.03976 ], [ 7.106358, 49.04535 ], [ 7.106797, 49.04864 ], [ 7.101874, 49.06121 ], [ 7.113838, 49.06471 ], [ 7.117294, 49.06681 ], [ 7.099342, 49.07789 ], [ 7.089116, 49.07039 ], [ 7.074754, 49.07213 ], [ 7.071032, 49.06975 ], [ 7.0686, 49.06339 ], [ 7.072338, 49.057247 ], [ 7.073994, 49.054787 ], [ 7.07866, 49.050361 ], [ 7.057835, 49.033158 ], [ 7.054913, 49.03063 ], [ 7.047917, 49.01591 ], [ 7.054464, 49.01139 ], [ 7.052581, 49.00849 ], [ 7.046848, 48.99991 ], [ 7.033682, 48.98985 ], [ 7.038662, 48.97666 ], [ 7.027888, 48.96948 ], [ 7.032219, 48.956049 ], [ 7.0288, 48.956038 ], [ 7.025378, 48.95615 ], [ 7.021751, 48.956995 ], [ 7.018077, 48.95776 ], [ 6.992743, 48.96027 ], [ 6.988544, 48.95883 ], [ 6.987805, 48.95276 ], [ 6.986481, 48.949764 ], [ 6.986381, 48.946859 ], [ 6.981781, 48.94194 ], [ 6.977854, 48.932782 ], [ 6.965828, 48.92652 ], [ 6.960851, 48.92557 ], [ 6.948243, 48.931394 ], [ 6.946783, 48.93466 ], [ 6.944402, 48.9348 ], [ 6.941442, 48.92459 ], [ 6.955073, 48.920039 ], [ 6.963487, 48.90728 ], [ 6.957465, 48.89421 ], [ 6.972319, 48.890754 ], [ 6.982702, 48.891543 ], [ 6.987974, 48.891368 ], [ 7.02655, 48.879711 ], [ 7.05501, 48.86492 ], [ 7.051672, 48.863771 ], [ 7.050544, 48.85893 ], [ 7.079252, 48.863896 ], [ 7.089153, 48.86309 ], [ 7.094146, 48.86288 ], [ 7.098772, 48.85421 ], [ 7.092468, 48.84988 ], [ 7.08838, 48.848392 ], [ 7.085183, 48.84747 ], [ 7.0817, 48.84759 ], [ 7.057126, 48.84741 ], [ 7.052063, 48.84688 ], [ 7.052897, 48.83867 ], [ 7.054315, 48.83602 ], [ 7.049695, 48.82345 ], [ 7.047117, 48.82064 ], [ 7.049769, 48.81773 ], [ 7.052435, 48.81484 ], [ 7.080902, 48.81356 ], [ 7.08504, 48.811908 ], [ 7.087958, 48.80617 ], [ 7.070561, 48.80128 ], [ 7.066783, 48.79933 ], [ 7.07513, 48.78805 ], [ 7.079244, 48.78629 ], [ 7.085536, 48.79162 ], [ 7.099603, 48.795613 ], [ 7.104562, 48.79645 ], [ 7.108504, 48.797865 ], [ 7.11715, 48.79894 ], [ 7.12201, 48.79971 ], [ 7.126562, 48.80107 ], [ 7.121704, 48.807055 ], [ 7.129735, 48.81565 ], [ 7.139809, 48.817497 ], [ 7.143224, 48.820135 ], [ 7.147387, 48.82224 ], [ 7.142117, 48.83555 ], [ 7.148854, 48.8446 ], [ 7.173508, 48.842019 ], [ 7.180837, 48.84901 ], [ 7.184904, 48.850374 ], [ 7.194087, 48.83902 ], [ 7.187199, 48.83428 ], [ 7.198574, 48.82782 ], [ 7.203428, 48.82696 ], [ 7.211982, 48.82613 ], [ 7.216079, 48.8208 ], [ 7.219991, 48.819087 ], [ 7.217749, 48.828109 ], [ 7.227, 48.82848 ], [ 7.245313, 48.81734 ], [ 7.254469, 48.81991 ], [ 7.258105, 48.822174 ], [ 7.260133, 48.82029 ], [ 7.262461, 48.81857 ], [ 7.25826, 48.81757 ], [ 7.245235, 48.81003 ], [ 7.249213, 48.80781 ], [ 7.257857, 48.80412 ], [ 7.260851, 48.79755 ], [ 7.26406, 48.799121 ], [ 7.270146, 48.802506 ], [ 7.27423, 48.80044 ], [ 7.290899, 48.79391 ], [ 7.290695, 48.786296 ], [ 7.308377, 48.767536 ], [ 7.31334, 48.76724 ], [ 7.311008, 48.764081 ], [ 7.292018, 48.75221 ], [ 7.286137, 48.73152 ], [ 7.268353, 48.714201 ], [ 7.264726, 48.70046 ], [ 7.262073, 48.697798 ], [ 7.242262, 48.69211 ], [ 7.245176, 48.689637 ], [ 7.257236, 48.67285 ], [ 7.261696, 48.6715 ], [ 7.266276, 48.662301 ], [ 7.271164, 48.66238 ], [ 7.304356, 48.66021 ], [ 7.290602, 48.64556 ], [ 7.272375, 48.633446 ], [ 7.276136, 48.62426 ], [ 7.256898, 48.599923 ], [ 7.261855, 48.594421 ], [ 7.265139, 48.59172 ], [ 7.260833, 48.590044 ], [ 7.256282, 48.58868 ], [ 7.253572, 48.58624 ], [ 7.241234, 48.57374 ], [ 7.221387, 48.558066 ], [ 7.220273, 48.554683 ], [ 7.206436, 48.55254 ], [ 7.201361, 48.552704 ], [ 7.193254, 48.54924 ], [ 7.189533, 48.540042 ], [ 7.187101, 48.537272 ], [ 7.170802, 48.531386 ], [ 7.168499, 48.528693 ], [ 7.16791, 48.5276 ], [ 7.162675, 48.52811 ], [ 7.1527, 48.530426 ], [ 7.137943, 48.52835 ], [ 7.115674, 48.5368 ], [ 7.091701, 48.5298 ], [ 7.07936, 48.53642 ], [ 7.074798, 48.537232 ], [ 7.057235, 48.53919 ], [ 7.062191, 48.540132 ], [ 7.082511, 48.541696 ], [ 7.057114, 48.55146 ], [ 7.044708, 48.56228 ], [ 7.034245, 48.580418 ], [ 7.029071, 48.58022 ], [ 7.019187, 48.580901 ], [ 6.995388, 48.593854 ], [ 7.015156, 48.60409 ], [ 7.008742, 48.611841 ], [ 7.005991, 48.60944 ], [ 6.993192, 48.60991 ], [ 6.991258, 48.609493 ], [ 6.987682, 48.61211 ], [ 6.961836, 48.60872 ], [ 6.957241, 48.60974 ], [ 6.939742, 48.61506 ], [ 6.942476, 48.618 ], [ 6.930007, 48.63555 ], [ 6.925352, 48.63472 ], [ 6.918856, 48.63053 ], [ 6.917507, 48.624318 ], [ 6.905394, 48.61983 ], [ 6.901083, 48.621589 ], [ 6.893295, 48.625005 ], [ 6.857471, 48.620939 ], [ 6.847891, 48.62384 ], [ 6.842835, 48.629725 ], [ 6.842629, 48.63248 ], [ 6.839311, 48.63743 ], [ 6.834472, 48.64371 ], [ 6.813799, 48.64682 ], [ 6.782626, 48.642721 ], [ 6.780104, 48.644674 ], [ 6.774114, 48.647917 ], [ 6.776732, 48.65049 ], [ 6.777492, 48.653474 ], [ 6.763951, 48.6521 ], [ 6.762831, 48.65542 ], [ 6.760279, 48.65812 ], [ 6.759914, 48.669672 ], [ 6.75513, 48.66988 ], [ 6.752396, 48.66722 ], [ 6.738556, 48.667588 ], [ 6.726081, 48.664422 ], [ 6.722859, 48.66709 ], [ 6.708674, 48.67064 ], [ 6.704312, 48.672395 ], [ 6.694358, 48.673136 ], [ 6.688766, 48.68213 ], [ 6.668962, 48.667339 ], [ 6.666421, 48.67104 ], [ 6.670491, 48.673046 ], [ 6.670752, 48.686436 ], [ 6.674735, 48.69183 ], [ 6.661575, 48.70608 ], [ 6.657733, 48.70774 ], [ 6.642411, 48.702432 ], [ 6.637589, 48.70312 ], [ 6.629055, 48.71107 ], [ 6.616654, 48.71471 ], [ 6.598966, 48.71569 ], [ 6.59851, 48.71876 ], [ 6.589493, 48.73248 ], [ 6.584287, 48.73317 ], [ 6.564859, 48.749425 ], [ 6.562184, 48.75611 ], [ 6.547622, 48.75462 ], [ 6.543982, 48.753756 ], [ 6.538634, 48.75139 ], [ 6.53421, 48.749598 ], [ 6.519434, 48.75275 ], [ 6.511382, 48.74884 ], [ 6.506608, 48.74849 ], [ 6.507983, 48.754369 ], [ 6.490392, 48.76496 ], [ 6.485482, 48.76587 ], [ 6.461365, 48.767326 ], [ 6.453603, 48.765894 ], [ 6.454219, 48.769234 ], [ 6.451275, 48.77908 ], [ 6.44207, 48.78098 ], [ 6.43311, 48.7891 ], [ 6.42867, 48.78767 ], [ 6.394874, 48.77476 ], [ 6.388744, 48.78061 ], [ 6.383904, 48.780763 ], [ 6.370878, 48.7847 ], [ 6.366691, 48.78293 ], [ 6.358564, 48.779633 ], [ 6.355453, 48.79204 ], [ 6.354861, 48.79534 ], [ 6.347483, 48.803934 ], [ 6.357369, 48.81058 ], [ 6.353939, 48.812989 ], [ 6.339339, 48.81103 ], [ 6.336054, 48.81294 ], [ 6.333754, 48.82046 ], [ 6.331522, 48.82327 ], [ 6.308785, 48.82115 ], [ 6.30468, 48.82241 ], [ 6.301116, 48.824253 ], [ 6.318345, 48.829357 ], [ 6.331992, 48.825728 ], [ 6.339647, 48.83349 ], [ 6.334824, 48.83461 ], [ 6.329999, 48.83571 ], [ 6.31625, 48.83692 ], [ 6.307404, 48.83376 ], [ 6.288014, 48.84367 ], [ 6.285472, 48.849429 ], [ 6.295087, 48.85179 ], [ 6.300111, 48.85252 ], [ 6.299103, 48.85533 ], [ 6.297463, 48.86648 ], [ 6.305417, 48.86369 ], [ 6.312126, 48.86642 ], [ 6.310919, 48.87276 ], [ 6.308081, 48.87534 ], [ 6.308444, 48.87826 ], [ 6.297384, 48.88247 ], [ 6.311501, 48.8922 ], [ 6.321088, 48.89463 ], [ 6.325839, 48.89593 ], [ 6.327517, 48.904873 ], [ 6.324395, 48.90751 ], [ 6.310847, 48.91175 ], [ 6.311181, 48.92107 ], [ 6.306997, 48.9195 ], [ 6.2884, 48.916323 ], [ 6.287794, 48.92769 ], [ 6.283947, 48.92842 ], [ 6.277034, 48.927966 ], [ 6.271237, 48.93331 ], [ 6.262562, 48.933509 ], [ 6.258243, 48.93173 ], [ 6.247297, 48.92488 ], [ 6.237097, 48.92493 ], [ 6.234795, 48.92789 ], [ 6.225117, 48.9293 ], [ 6.220643, 48.93823 ], [ 6.205768, 48.939588 ], [ 6.205897, 48.93769 ], [ 6.200807, 48.93713 ], [ 6.175165, 48.936236 ], [ 6.170431, 48.94216 ], [ 6.165301, 48.942041 ], [ 6.161467, 48.943699 ], [ 6.150023, 48.939285 ], [ 6.149731, 48.93332 ], [ 6.146544, 48.93258 ], [ 6.141559, 48.93305 ], [ 6.125142, 48.9399 ], [ 6.128252, 48.94936 ], [ 6.123214, 48.949418 ], [ 6.124748, 48.95607 ], [ 6.114238, 48.967227 ], [ 6.099614, 48.96885 ], [ 6.094718, 48.96789 ], [ 6.081323, 48.96305 ], [ 6.079195, 48.96474 ], [ 6.077312, 48.967785 ], [ 6.071029, 48.972725 ], [ 6.073834, 48.979015 ], [ 6.064765, 48.98101 ], [ 6.06144, 48.978873 ], [ 6.043435, 48.97748 ], [ 6.041341, 48.98046 ], [ 6.033896, 48.98478 ], [ 6.043815, 48.98909 ], [ 6.0432, 49.001925 ], [ 6.044965, 49.008935 ], [ 6.040883, 49.01491 ], [ 6.030663, 49.01701 ], [ 6.019487, 49.02456 ], [ 6.012649, 49.03735 ], [ 6.005445, 49.034425 ], [ 6.001616, 49.03519 ], [ 5.994968, 49.038097 ], [ 5.992056, 49.03981 ], [ 5.98541, 49.04205 ], [ 5.981175, 49.043389 ], [ 5.972448, 49.04156 ], [ 5.966914, 49.04651 ], [ 5.957792, 49.047378 ], [ 5.955657, 49.05003 ], [ 5.951719, 49.061663 ], [ 5.95037, 49.064908 ], [ 5.936821, 49.06889 ], [ 5.935207, 49.07208 ], [ 5.93473, 49.0755 ], [ 5.941603, 49.08054 ], [ 5.925645, 49.092901 ], [ 5.927818, 49.0996 ], [ 5.931603, 49.109104 ], [ 5.947825, 49.10878 ], [ 5.967699, 49.108336 ], [ 5.972667, 49.10822 ], [ 5.993738, 49.10787 ], [ 6.002705, 49.11078 ], [ 6.004983, 49.1139 ], [ 6.002144, 49.116469 ], [ 5.990612, 49.12754 ], [ 5.993989, 49.13356 ], [ 5.986154, 49.137966 ], [ 5.984418, 49.14116 ], [ 5.982262, 49.14397 ], [ 5.994304, 49.14873 ], [ 5.990328, 49.15445 ], [ 5.999566, 49.15575 ], [ 6.006477, 49.15334 ], [ 6.010886, 49.15368 ], [ 6.019092, 49.161958 ], [ 6.027936, 49.16492 ], [ 6.031132, 49.16749 ], [ 6.017339, 49.17189 ], [ 6.005027, 49.182715 ], [ 5.985181, 49.184838 ], [ 5.982116, 49.18715 ], [ 5.979529, 49.19299 ], [ 5.978771, 49.19486 ], [ 5.986235, 49.201438 ], [ 5.98441, 49.207412 ], [ 5.987627, 49.209617 ], [ 5.995509, 49.20749 ], [ 6.003519, 49.20897 ], [ 5.999638, 49.210956 ], [ 6.009565, 49.221792 ], [ 6.014515, 49.221875 ], [ 6.030761, 49.23308 ], [ 6.027876, 49.23331 ], [ 6.025889, 49.24349 ], [ 6.029172, 49.250036 ], [ 6.007922, 49.25941 ], [ 6.009836, 49.26608 ], [ 6.007822, 49.27043 ], [ 6.009838, 49.27247 ], [ 6.000446, 49.27553 ], [ 6.001631, 49.285747 ], [ 6.002952, 49.28907 ], [ 6.005021, 49.30972 ], [ 5.997125, 49.31424 ], [ 5.988107, 49.307492 ], [ 5.985221, 49.30517 ], [ 5.969991, 49.318536 ], [ 5.949495, 49.32806 ], [ 5.943314, 49.336946 ], [ 5.943394, 49.34029 ], [ 5.962819, 49.34486 ], [ 5.973218, 49.34445 ], [ 5.978376, 49.34486 ], [ 5.973406, 49.345321 ], [ 5.963582, 49.34662 ], [ 5.956124, 49.361595 ], [ 5.95104, 49.362034 ], [ 5.941007, 49.36071 ], [ 5.933406, 49.369443 ], [ 5.924782, 49.37305 ], [ 5.935039, 49.38094 ], [ 5.929677, 49.40148 ], [ 5.919901, 49.40458 ], [ 5.91579, 49.405965 ], [ 5.91184, 49.40753 ], [ 5.915632, 49.409513 ], [ 5.919719, 49.41814 ], [ 5.928285, 49.42647 ], [ 5.937777, 49.42873 ], [ 5.942283, 49.430355 ], [ 5.940797, 49.4338 ], [ 5.930767, 49.446554 ], [ 5.941863, 49.452446 ], [ 5.934477, 49.47171 ], [ 5.939797, 49.47738 ], [ 5.935571, 49.47829 ], [ 5.929609, 49.48535 ], [ 5.925328, 49.48484 ], [ 5.917527, 49.48262 ], [ 5.912982, 49.482078 ], [ 5.904673, 49.48453 ], [ 5.897027, 49.481138 ], [ 5.898435, 49.48431 ], [ 5.893402, 49.49692 ], [ 5.911798, 49.501631 ], [ 5.931451, 49.498774 ], [ 5.9362, 49.49995 ], [ 5.945434, 49.49964 ], [ 5.951237, 49.49489 ], [ 5.955345, 49.49333 ], [ 5.970201, 49.490222 ], [ 5.974236, 49.46641 ], [ 5.985665, 49.45955 ], [ 5.979316, 49.454049 ], [ 5.982054, 49.451067 ], [ 6.001039, 49.45558 ], [ 6.025686, 49.45355 ], [ 6.027222, 49.45034 ], [ 6.037181, 49.44868 ], [ 6.042151, 49.447809 ], [ 6.056344, 49.465405 ], [ 6.076592, 49.46361 ], [ 6.086264, 49.45576 ], [ 6.095623, 49.452849 ], [ 6.100813, 49.452887 ], [ 6.099041, 49.463321 ], [ 6.102919, 49.469734 ], [ 6.122159, 49.4745 ], [ 6.129603, 49.491138 ], [ 6.139986, 49.48955 ], [ 6.144612, 49.48774 ], [ 6.157537, 49.49316 ], [ 6.156764, 49.502837 ], [ 6.175179, 49.508733 ], [ 6.179634, 49.50706 ], [ 6.211439, 49.506311 ], [ 6.216733, 49.506819 ], [ 6.217001, 49.509987 ], [ 6.226394, 49.51 ], [ 6.235639, 49.50807 ], [ 6.242694, 49.51218 ], [ 6.276154, 49.503536 ], [ 6.279483, 49.49748 ], [ 6.280569, 49.49416 ], [ 6.294515, 49.487026 ], [ 6.299231, 49.48821 ], [ 6.295625, 49.48172 ], [ 6.319861, 49.477096 ], [ 6.331354, 49.469962 ], [ 6.333778, 49.46689 ], [ 6.343426, 49.46838 ], [ 6.34711, 49.46603 ], [ 6.351248, 49.46704 ], [ 6.360963, 49.461299 ], [ 6.364391, 49.45949 ], [ 6.368857, 49.45982 ], [ 6.367599, 49.466539 ], [ 6.4032, 49.46596 ], [ 6.422407, 49.476014 ], [ 6.431843, 49.47446 ], [ 6.436886, 49.46894 ], [ 6.440433, 49.466669 ], [ 6.45394, 49.463891 ], [ 6.468186, 49.46473 ], [ 6.481532, 49.454923 ], [ 6.484899, 49.45247 ], [ 6.500555, 49.449723 ], [ 6.530296, 49.435292 ], [ 6.535419, 49.434161 ], [ 6.554641, 49.41905 ], [ 6.538352, 49.41101 ], [ 6.540528, 49.40114 ], [ 6.551364, 49.39714 ], [ 6.55234, 49.394095 ], [ 6.5846, 49.384433 ], [ 6.585932, 49.3709 ], [ 6.596177, 49.369234 ], [ 6.59857, 49.36305 ], [ 6.587068, 49.351599 ], [ 6.574899, 49.358051 ], [ 6.569627, 49.357703 ], [ 6.564998, 49.356103 ], [ 6.56538, 49.34929 ], [ 6.577573, 49.338419 ], [ 6.578704, 49.335083 ], [ 6.592112, 49.33364 ], [ 6.590861, 49.32498 ], [ 6.588885, 49.3221 ], [ 6.615992, 49.302684 ], [ 6.628629, 49.29863 ], [ 6.631762, 49.29603 ], [ 6.640485, 49.29369 ], [ 6.652022, 49.28425 ], [ 6.65323, 49.28112 ], [ 6.667846, 49.28044 ], [ 6.660753, 49.26072 ], [ 6.66153, 49.25733 ], [ 6.665016, 49.254724 ], [ 6.680232, 49.254287 ], [ 6.688785, 49.246223 ], [ 6.685103, 49.24374 ], [ 6.692921, 49.217549 ], [ 6.697286, 49.21557 ], [ 6.722115, 49.21942 ], [ 6.730623, 49.206712 ], [ 6.712838, 49.189558 ], [ 6.71753, 49.17976 ], [ 6.719747, 49.17659 ], [ 6.726909, 49.17178 ], [ 6.730153, 49.16917 ], [ 6.743225, 49.164298 ], [ 6.747885, 49.16592 ], [ 6.773788, 49.167645 ], [ 6.784134, 49.16815 ], [ 6.829632, 49.15267 ], [ 6.834463, 49.15138 ], [ 6.840668, 49.1542 ], [ 6.843841, 49.15552 ], [ 6.847701, 49.15741 ], [ 6.84531, 49.160142 ], [ 6.844708, 49.172916 ], [ 6.858744, 49.17575 ], [ 6.860935, 49.17862 ], [ 6.861287, 49.18204 ], [ 6.85014, 49.19352 ], [ 6.851165, 49.20046 ], [ 6.841082, 49.208586 ], [ 6.840444, 49.21423 ], [ 6.858445, 49.22163 ], [ 6.879987, 49.21259 ], [ 6.884808, 49.21111 ], [ 6.894288, 49.2102 ], [ 6.924296, 49.22308 ], [ 6.934805, 49.22213 ], [ 6.940357, 49.216549 ], [ 6.943567, 49.21377 ], [ 6.95021, 49.20864 ], [ 6.953543, 49.206062 ], [ 6.957561, 49.20381 ], [ 6.976575, 49.20864 ], [ 6.996648, 49.19746 ], [ 6.998807, 49.194287 ], [ 7.008091, 49.19374 ], [ 7.013078, 49.18863 ], [ 7.01544, 49.19127 ], [ 7.020264, 49.192727 ], [ 7.033706, 49.188262 ], [ 7.028266, 49.17131 ], [ 7.046368, 49.1319 ], [ 7.045659, 49.12845 ], [ 7.045846, 49.118382 ], [ 7.057568, 49.11254 ], [ 7.067036, 49.115227 ], [ 7.071995, 49.124747 ], [ 7.085937, 49.12915 ], [ 7.089676, 49.131502 ], [ 7.08047, 49.142474 ], [ 7.082145, 49.153436 ], [ 7.103087, 49.15461 ], [ 7.110839, 49.15042 ], [ 7.103631, 49.14538 ], [ 7.104239, 49.13868 ], [ 7.124926, 49.1412 ], [ 7.130931, 49.135628 ], [ 7.131685, 49.13218 ], [ 7.135634, 49.12975 ], [ 7.158799, 49.12077 ], [ 7.164081, 49.126922 ], [ 7.184878, 49.12963 ], [ 7.196066, 49.12208 ], [ 7.198332, 49.115178 ], [ 7.201847, 49.117594 ], [ 7.21111, 49.1249 ], [ 7.245446, 49.12971 ], [ 7.249111, 49.127395 ], [ 7.279325, 49.12327 ], [ 7.283683, 49.11758 ], [ 7.2934, 49.11516 ], [ 7.302035, 49.12151 ], [ 7.304114, 49.12408 ], [ 7.313686, 49.136539 ], [ 7.325955, 49.14345 ], [ 7.362775, 49.14518 ], [ 7.362421, 49.14848 ], [ 7.366178, 49.172012 ], [ 7.376353, 49.174272 ], [ 7.381506, 49.175273 ], [ 7.445344, 49.184718 ], [ 7.446641, 49.18287 ], [ 7.434909, 49.1779 ], [ 7.443693, 49.17111 ], [ 7.433547, 49.167775 ], [ 7.4386, 49.16441 ], [ 7.450558, 49.168209 ], [ 7.456798, 49.164133 ], [ 7.475833, 49.168766 ], [ 7.491343, 49.168512 ], [ 7.495109, 49.15843 ], [ 7.503565, 49.150531 ], [ 7.489804, 49.14002 ], [ 7.489583, 49.136528 ], [ 7.498562, 49.13356 ], [ 7.504947, 49.124138 ], [ 7.51783, 49.118773 ], [ 7.521466, 49.10888 ], [ 7.52386, 49.105821 ], [ 7.531179, 49.09713 ], [ 7.55886, 49.082379 ], [ 7.568486, 49.079906 ], [ 7.604695, 49.08175 ], [ 7.630777, 49.07074 ], [ 7.632308, 49.057032 ], [ 7.635286, 49.05417 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "59", "CODE_DEPT": "58", "NOM_DEPT": "NIEVRE", "CODE_CHF": "194", "NOM_CHF": "NEVERS", "X_CHF_LIEU": "7119", "Y_CHF_LIEU": "66547", "X_CENTROID": "7382", "Y_CENTROID": "66684", "CODE_REG": "26", "NOM_REGION": "BOURGOGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.629424, 46.749459 ], [ 3.626404, 46.752267 ], [ 3.601826, 46.75213 ], [ 3.596399, 46.76499 ], [ 3.592562, 46.762801 ], [ 3.578083, 46.74927 ], [ 3.595819, 46.725291 ], [ 3.580594, 46.71698 ], [ 3.576978, 46.72291 ], [ 3.573043, 46.720994 ], [ 3.568891, 46.71591 ], [ 3.564076, 46.71611 ], [ 3.547722, 46.722415 ], [ 3.54791, 46.718956 ], [ 3.5489, 46.70555 ], [ 3.559853, 46.68998 ], [ 3.554262, 46.684601 ], [ 3.550406, 46.682395 ], [ 3.542815, 46.67946 ], [ 3.534364, 46.68752 ], [ 3.529451, 46.688203 ], [ 3.520472, 46.68524 ], [ 3.486834, 46.660559 ], [ 3.486669, 46.65381 ], [ 3.483132, 46.651678 ], [ 3.474191, 46.653535 ], [ 3.45571, 46.651466 ], [ 3.45409, 46.654841 ], [ 3.443455, 46.662338 ], [ 3.4474, 46.67139 ], [ 3.452928, 46.677 ], [ 3.452896, 46.687333 ], [ 3.445923, 46.69225 ], [ 3.436015, 46.69355 ], [ 3.430011, 46.69883 ], [ 3.434214, 46.71222 ], [ 3.414609, 46.711105 ], [ 3.390052, 46.714892 ], [ 3.385292, 46.713764 ], [ 3.366416, 46.69068 ], [ 3.356914, 46.688419 ], [ 3.352532, 46.686596 ], [ 3.337856, 46.685253 ], [ 3.318052, 46.68844 ], [ 3.304499, 46.702842 ], [ 3.298052, 46.715879 ], [ 3.283373, 46.71515 ], [ 3.282979, 46.714971 ], [ 3.278417, 46.716324 ], [ 3.268544, 46.715924 ], [ 3.259773, 46.70766 ], [ 3.234217, 46.69737 ], [ 3.229528, 46.69646 ], [ 3.226936, 46.69 ], [ 3.204426, 46.678752 ], [ 3.199366, 46.6795 ], [ 3.167414, 46.690968 ], [ 3.149247, 46.708218 ], [ 3.146988, 46.710211 ], [ 3.143329, 46.71274 ], [ 3.129056, 46.727493 ], [ 3.104673, 46.73318 ], [ 3.100537, 46.734293 ], [ 3.083478, 46.73777 ], [ 3.079605, 46.739964 ], [ 3.04955, 46.75772 ], [ 3.037546, 46.77283 ], [ 3.036264, 46.775966 ], [ 3.032068, 46.794911 ], [ 3.032122, 46.798063 ], [ 3.039067, 46.80962 ], [ 3.041154, 46.812673 ], [ 3.057639, 46.825136 ], [ 3.058486, 46.831592 ], [ 3.05694, 46.83391 ], [ 3.054584, 46.83877 ], [ 3.056647, 46.84197 ], [ 3.069402, 46.852258 ], [ 3.063605, 46.889951 ], [ 3.062334, 46.892347 ], [ 3.061145, 46.89738 ], [ 3.058074, 46.90028 ], [ 3.050227, 46.909154 ], [ 3.064553, 46.93573 ], [ 3.066029, 46.93843 ], [ 3.068254, 46.941521 ], [ 3.078275, 46.953427 ], [ 3.079337, 46.96024 ], [ 3.075119, 46.96206 ], [ 3.062751, 46.98026 ], [ 3.065324, 46.997174 ], [ 3.065841, 47.00046 ], [ 3.073675, 47.01237 ], [ 3.074759, 47.015859 ], [ 3.074778, 47.02999 ], [ 3.072676, 47.033282 ], [ 3.063618, 47.04617 ], [ 3.060101, 47.04586 ], [ 3.053966, 47.04825 ], [ 3.050517, 47.050679 ], [ 3.022241, 47.063652 ], [ 3.020041, 47.06679 ], [ 3.022524, 47.08016 ], [ 3.031362, 47.092884 ], [ 3.030102, 47.103508 ], [ 3.03025, 47.107055 ], [ 3.03, 47.108315 ], [ 3.029382, 47.11166 ], [ 3.028283, 47.12844 ], [ 3.02496, 47.13111 ], [ 3.017179, 47.13978 ], [ 3.020588, 47.152981 ], [ 3.019283, 47.15628 ], [ 3.015945, 47.159095 ], [ 3.015206, 47.16243 ], [ 2.997741, 47.200851 ], [ 2.995918, 47.203804 ], [ 2.993844, 47.20668 ], [ 2.991122, 47.209691 ], [ 2.979026, 47.229064 ], [ 2.981806, 47.25352 ], [ 2.982757, 47.256558 ], [ 2.981658, 47.262509 ], [ 2.973547, 47.26994 ], [ 2.941563, 47.285155 ], [ 2.92678, 47.29845 ], [ 2.923336, 47.300844 ], [ 2.916129, 47.305647 ], [ 2.912962, 47.30832 ], [ 2.909119, 47.310584 ], [ 2.899453, 47.31274 ], [ 2.89495, 47.31377 ], [ 2.879024, 47.32028 ], [ 2.873695, 47.3291 ], [ 2.870247, 47.342343 ], [ 2.877113, 47.35156 ], [ 2.879782, 47.35453 ], [ 2.88208, 47.357587 ], [ 2.890555, 47.365995 ], [ 2.893026, 47.369085 ], [ 2.919771, 47.41047 ], [ 2.91962, 47.413657 ], [ 2.920906, 47.423155 ], [ 2.931557, 47.43343 ], [ 2.931885, 47.43681 ], [ 2.919831, 47.45873 ], [ 2.919191, 47.46062 ], [ 2.91778, 47.463787 ], [ 2.897163, 47.48515 ], [ 2.89713, 47.488733 ], [ 2.892395, 47.49898 ], [ 2.891632, 47.50194 ], [ 2.889574, 47.507764 ], [ 2.887256, 47.510615 ], [ 2.874625, 47.52042 ], [ 2.846885, 47.54153 ], [ 2.845187, 47.544935 ], [ 2.85663, 47.55141 ], [ 2.868583, 47.546008 ], [ 2.878366, 47.55267 ], [ 2.883392, 47.55272 ], [ 2.905814, 47.55747 ], [ 2.909374, 47.559612 ], [ 2.912958, 47.56364 ], [ 2.914297, 47.56597 ], [ 2.953843, 47.55861 ], [ 2.958658, 47.55738 ], [ 2.971791, 47.56792 ], [ 2.976538, 47.56943 ], [ 2.991328, 47.568027 ], [ 3.017047, 47.55783 ], [ 3.026689, 47.558708 ], [ 3.030852, 47.56057 ], [ 3.038488, 47.56506 ], [ 3.058681, 47.568759 ], [ 3.068241, 47.57706 ], [ 3.071969, 47.57956 ], [ 3.088025, 47.58699 ], [ 3.107221, 47.58554 ], [ 3.111581, 47.5839 ], [ 3.117534, 47.580678 ], [ 3.120284, 47.578893 ], [ 3.123524, 47.57615 ], [ 3.11636, 47.56704 ], [ 3.122224, 47.542894 ], [ 3.123027, 47.539428 ], [ 3.136654, 47.540124 ], [ 3.149412, 47.529504 ], [ 3.162247, 47.524005 ], [ 3.165191, 47.517502 ], [ 3.178884, 47.51947 ], [ 3.18614, 47.52359 ], [ 3.204517, 47.523192 ], [ 3.233674, 47.49285 ], [ 3.235027, 47.48964 ], [ 3.250321, 47.48841 ], [ 3.259236, 47.49191 ], [ 3.274682, 47.49196 ], [ 3.285252, 47.503939 ], [ 3.287427, 47.500864 ], [ 3.296228, 47.492596 ], [ 3.306115, 47.49367 ], [ 3.33567, 47.481462 ], [ 3.338044, 47.47252 ], [ 3.346456, 47.46969 ], [ 3.345704, 47.476617 ], [ 3.365715, 47.48653 ], [ 3.380385, 47.487833 ], [ 3.391056, 47.499653 ], [ 3.391332, 47.50656 ], [ 3.400355, 47.508578 ], [ 3.405484, 47.50869 ], [ 3.408787, 47.508027 ], [ 3.41224, 47.50787 ], [ 3.43223, 47.50733 ], [ 3.446589, 47.51028 ], [ 3.449538, 47.503871 ], [ 3.457679, 47.500472 ], [ 3.462467, 47.501183 ], [ 3.483515, 47.493032 ], [ 3.488277, 47.49383 ], [ 3.494746, 47.52129 ], [ 3.491375, 47.55647 ], [ 3.492033, 47.55999 ], [ 3.495344, 47.559972 ], [ 3.498358, 47.560878 ], [ 3.510307, 47.5505 ], [ 3.514192, 47.527224 ], [ 3.521363, 47.52255 ], [ 3.526056, 47.52143 ], [ 3.538233, 47.516592 ], [ 3.541425, 47.51425 ], [ 3.552142, 47.50341 ], [ 3.570725, 47.499523 ], [ 3.575459, 47.49869 ], [ 3.580478, 47.49487 ], [ 3.575259, 47.48629 ], [ 3.57569, 47.48317 ], [ 3.57613, 47.48213 ], [ 3.581675, 47.46445 ], [ 3.583276, 47.4615 ], [ 3.587873, 47.461882 ], [ 3.593202, 47.457714 ], [ 3.600971, 47.465182 ], [ 3.60535, 47.4662 ], [ 3.615236, 47.465828 ], [ 3.616422, 47.45934 ], [ 3.623783, 47.455385 ], [ 3.628686, 47.4547 ], [ 3.634157, 47.456076 ], [ 3.655583, 47.44881 ], [ 3.674397, 47.44953 ], [ 3.677363, 47.44686 ], [ 3.679358, 47.447242 ], [ 3.673439, 47.43561 ], [ 3.679809, 47.432548 ], [ 3.683925, 47.43387 ], [ 3.687996, 47.43166 ], [ 3.701553, 47.426486 ], [ 3.712403, 47.41442 ], [ 3.71491, 47.409463 ], [ 3.714782, 47.40683 ], [ 3.720317, 47.4013 ], [ 3.73389, 47.397065 ], [ 3.772571, 47.40308 ], [ 3.774605, 47.4062 ], [ 3.783303, 47.405169 ], [ 3.784123, 47.39328 ], [ 3.785631, 47.39032 ], [ 3.790461, 47.38973 ], [ 3.800243, 47.38965 ], [ 3.813743, 47.38037 ], [ 3.828057, 47.38205 ], [ 3.829261, 47.385333 ], [ 3.822621, 47.40091 ], [ 3.829087, 47.40576 ], [ 3.83893, 47.40605 ], [ 3.842009, 47.40872 ], [ 3.851737, 47.427572 ], [ 3.851308, 47.435588 ], [ 3.855194, 47.43388 ], [ 3.864383, 47.43433 ], [ 3.875517, 47.42881 ], [ 3.879911, 47.429811 ], [ 3.880587, 47.42654 ], [ 3.890213, 47.419812 ], [ 3.893397, 47.41029 ], [ 3.87946, 47.39991 ], [ 3.861455, 47.39337 ], [ 3.87141, 47.36717 ], [ 3.887463, 47.365881 ], [ 3.889564, 47.36875 ], [ 3.908792, 47.38206 ], [ 3.937927, 47.379826 ], [ 3.950594, 47.39305 ], [ 3.960513, 47.38579 ], [ 3.961353, 47.38232 ], [ 3.971393, 47.3746 ], [ 3.963999, 47.36586 ], [ 3.972954, 47.335 ], [ 3.982474, 47.322595 ], [ 3.987562, 47.32279 ], [ 4.000593, 47.31229 ], [ 4.020165, 47.31261 ], [ 4.027648, 47.31628 ], [ 4.030765, 47.32625 ], [ 4.039859, 47.327435 ], [ 4.047974, 47.339525 ], [ 4.067422, 47.33847 ], [ 4.076938, 47.340736 ], [ 4.101162, 47.33813 ], [ 4.106086, 47.33926 ], [ 4.107051, 47.33596 ], [ 4.119339, 47.33966 ], [ 4.130918, 47.35428 ], [ 4.13986, 47.3567 ], [ 4.143319, 47.35429 ], [ 4.139693, 47.35199 ], [ 4.125043, 47.335671 ], [ 4.123777, 47.32957 ], [ 4.130407, 47.32057 ], [ 4.128764, 47.31737 ], [ 4.11539, 47.30772 ], [ 4.123776, 47.30424 ], [ 4.132541, 47.30749 ], [ 4.131322, 47.304314 ], [ 4.114587, 47.29261 ], [ 4.125356, 47.249506 ], [ 4.133287, 47.2406 ], [ 4.135149, 47.23736 ], [ 4.177723, 47.25274 ], [ 4.186745, 47.24514 ], [ 4.192241, 47.23541 ], [ 4.219177, 47.21942 ], [ 4.22889, 47.20378 ], [ 4.230876, 47.19704 ], [ 4.212327, 47.18113 ], [ 4.209485, 47.168057 ], [ 4.210078, 47.158615 ], [ 4.209834, 47.155412 ], [ 4.205254, 47.15425 ], [ 4.194293, 47.148649 ], [ 4.186084, 47.152236 ], [ 4.181902, 47.150514 ], [ 4.139461, 47.14329 ], [ 4.120584, 47.145524 ], [ 4.115724, 47.14602 ], [ 4.112572, 47.14356 ], [ 4.116374, 47.134688 ], [ 4.108619, 47.131 ], [ 4.115967, 47.123338 ], [ 4.113981, 47.119143 ], [ 4.108988, 47.11946 ], [ 4.097676, 47.12619 ], [ 4.092706, 47.125721 ], [ 4.094833, 47.122612 ], [ 4.089786, 47.11704 ], [ 4.065407, 47.12084 ], [ 4.058772, 47.117491 ], [ 4.054995, 47.11522 ], [ 4.048656, 47.110047 ], [ 4.052594, 47.096965 ], [ 4.040302, 47.08653 ], [ 4.038853, 47.07974 ], [ 4.042109, 47.07702 ], [ 4.051451, 47.07416 ], [ 4.071006, 47.05808 ], [ 4.058189, 47.03941 ], [ 4.058279, 47.03257 ], [ 4.060912, 47.022489 ], [ 4.054465, 47.01327 ], [ 4.041746, 47.007752 ], [ 4.036583, 47.002072 ], [ 4.033377, 46.999607 ], [ 4.000752, 46.98621 ], [ 3.995999, 46.986744 ], [ 3.995001, 46.983322 ], [ 3.995097, 46.976397 ], [ 4.008715, 46.97225 ], [ 4.027712, 46.982721 ], [ 4.037144, 46.98469 ], [ 4.053855, 46.95978 ], [ 4.051063, 46.9535 ], [ 4.039773, 46.946965 ], [ 4.045065, 46.937741 ], [ 4.045302, 46.934372 ], [ 4.036827, 46.92633 ], [ 4.037067, 46.91969 ], [ 4.043618, 46.90432 ], [ 4.044687, 46.901169 ], [ 4.05919, 46.89978 ], [ 4.07139, 46.894251 ], [ 4.074981, 46.89189 ], [ 4.095196, 46.872416 ], [ 4.100104, 46.86256 ], [ 4.100887, 46.859107 ], [ 4.052059, 46.840438 ], [ 4.048389, 46.83795 ], [ 4.043109, 46.8336 ], [ 4.04595, 46.83124 ], [ 4.058347, 46.81908 ], [ 4.058444, 46.81598 ], [ 4.060935, 46.795162 ], [ 4.061995, 46.79171 ], [ 4.062545, 46.788322 ], [ 4.056286, 46.779267 ], [ 4.046503, 46.778356 ], [ 4.043832, 46.781253 ], [ 4.038172, 46.78686 ], [ 4.018742, 46.777012 ], [ 3.999789, 46.777701 ], [ 3.968523, 46.768649 ], [ 3.966737, 46.765485 ], [ 3.963222, 46.76603 ], [ 3.96223, 46.762587 ], [ 3.952834, 46.75434 ], [ 3.933395, 46.750714 ], [ 3.928165, 46.74138 ], [ 3.895651, 46.73319 ], [ 3.889191, 46.728229 ], [ 3.884282, 46.72829 ], [ 3.876358, 46.73227 ], [ 3.875024, 46.72916 ], [ 3.853508, 46.724934 ], [ 3.844924, 46.72199 ], [ 3.837252, 46.710169 ], [ 3.826552, 46.70383 ], [ 3.822214, 46.705145 ], [ 3.794654, 46.70203 ], [ 3.789893, 46.718483 ], [ 3.77978, 46.729915 ], [ 3.783666, 46.73605 ], [ 3.779252, 46.73782 ], [ 3.738633, 46.75196 ], [ 3.703968, 46.74684 ], [ 3.699403, 46.74535 ], [ 3.661101, 46.73774 ], [ 3.647852, 46.74264 ], [ 3.644177, 46.740886 ], [ 3.634065, 46.74422 ], [ 3.629424, 46.749459 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "60", "CODE_DEPT": "59", "NOM_DEPT": "NORD", "CODE_CHF": "350", "NOM_CHF": "LILLE", "X_CHF_LIEU": "7040", "Y_CHF_LIEU": "70594", "X_CENTROID": "7157", "Y_CENTROID": "70390", "CODE_REG": "31", "NOM_REGION": "NORD-PAS-DE-CALAIS" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.140895, 49.97876 ], [ 4.136382, 49.97751 ], [ 4.104938, 49.97157 ], [ 4.099815, 49.97233 ], [ 4.089691, 49.970476 ], [ 4.082589, 49.97383 ], [ 4.079933, 49.97995 ], [ 4.074968, 49.981 ], [ 4.044796, 49.98584 ], [ 4.031122, 49.98207 ], [ 4.027393, 49.98298 ], [ 4.021563, 49.986119 ], [ 4.011405, 49.98605 ], [ 4.005734, 49.9952 ], [ 3.985562, 49.99476 ], [ 3.980801, 49.993576 ], [ 3.980144, 50.00356 ], [ 3.995236, 50.028447 ], [ 3.991313, 50.038189 ], [ 3.989547, 50.04135 ], [ 3.982309, 50.04428 ], [ 3.949834, 50.026885 ], [ 3.948308, 50.02955 ], [ 3.943012, 50.029659 ], [ 3.922871, 50.02626 ], [ 3.919783, 50.02361 ], [ 3.887292, 50.00969 ], [ 3.887395, 50.01317 ], [ 3.886697, 50.023514 ], [ 3.878323, 50.027886 ], [ 3.883321, 50.02902 ], [ 3.882319, 50.03237 ], [ 3.868771, 50.03761 ], [ 3.848124, 50.04053 ], [ 3.837059, 50.047809 ], [ 3.832229, 50.04678 ], [ 3.815827, 50.03904 ], [ 3.811, 50.04064 ], [ 3.793588, 50.048296 ], [ 3.77793, 50.045989 ], [ 3.77523, 50.04908 ], [ 3.770963, 50.05104 ], [ 3.745752, 50.053572 ], [ 3.742636, 50.0561 ], [ 3.72121, 50.06413 ], [ 3.715185, 50.06927 ], [ 3.710359, 50.066491 ], [ 3.705575, 50.06564 ], [ 3.669883, 50.055088 ], [ 3.665721, 50.054697 ], [ 3.658176, 50.0484 ], [ 3.657538, 50.04003 ], [ 3.662095, 50.03873 ], [ 3.657569, 50.03273 ], [ 3.643079, 50.036989 ], [ 3.63009, 50.03202 ], [ 3.625097, 50.03078 ], [ 3.621489, 50.02882 ], [ 3.614124, 50.02506 ], [ 3.608747, 50.0301 ], [ 3.607741, 50.033469 ], [ 3.594225, 50.043918 ], [ 3.57924, 50.0471 ], [ 3.575596, 50.04925 ], [ 3.567799, 50.052971 ], [ 3.55644, 50.0539 ], [ 3.551277, 50.05377 ], [ 3.541758, 50.051975 ], [ 3.52989, 50.038887 ], [ 3.508157, 50.035512 ], [ 3.507062, 50.03336 ], [ 3.505235, 50.03054 ], [ 3.490106, 50.01896 ], [ 3.484913, 50.019609 ], [ 3.427792, 50.022085 ], [ 3.42847, 50.02478 ], [ 3.424921, 50.02727 ], [ 3.41538, 50.026754 ], [ 3.398474, 50.03458 ], [ 3.392479, 50.031132 ], [ 3.387166, 50.03106 ], [ 3.374224, 50.03641 ], [ 3.353107, 50.03571 ], [ 3.350214, 50.03286 ], [ 3.351671, 50.02973 ], [ 3.343616, 50.02627 ], [ 3.337102, 50.017401 ], [ 3.327669, 50.01585 ], [ 3.309304, 50.019352 ], [ 3.304894, 50.01846 ], [ 3.300484, 50.01759 ], [ 3.290837, 50.01513 ], [ 3.280355, 50.01521 ], [ 3.273525, 50.02027 ], [ 3.277936, 50.021475 ], [ 3.270716, 50.02947 ], [ 3.267164, 50.03012 ], [ 3.263541, 50.03064 ], [ 3.258791, 50.03141 ], [ 3.255846, 50.02544 ], [ 3.246725, 50.02769 ], [ 3.244843, 50.030617 ], [ 3.244078, 50.03089 ], [ 3.233971, 50.02838 ], [ 3.229336, 50.03018 ], [ 3.203548, 50.017876 ], [ 3.172707, 50.01199 ], [ 3.171212, 50.01512 ], [ 3.166994, 50.02098 ], [ 3.162556, 50.01932 ], [ 3.147359, 50.01876 ], [ 3.148926, 50.02527 ], [ 3.123578, 50.02448 ], [ 3.121506, 50.02698 ], [ 3.114299, 50.03354 ], [ 3.113001, 50.03922 ], [ 3.095776, 50.04572 ], [ 3.090254, 50.053741 ], [ 3.084626, 50.05849 ], [ 3.085835, 50.06422 ], [ 3.093709, 50.06685 ], [ 3.098108, 50.068437 ], [ 3.094889, 50.071035 ], [ 3.087669, 50.07557 ], [ 3.088853, 50.082176 ], [ 3.103729, 50.080961 ], [ 3.114055, 50.09238 ], [ 3.113084, 50.095556 ], [ 3.109628, 50.104783 ], [ 3.104601, 50.10463 ], [ 3.105585, 50.10803 ], [ 3.104294, 50.11138 ], [ 3.103755, 50.114613 ], [ 3.093601, 50.12164 ], [ 3.095967, 50.12452 ], [ 3.130662, 50.13914 ], [ 3.135333, 50.140743 ], [ 3.135538, 50.14421 ], [ 3.130229, 50.14456 ], [ 3.115494, 50.148244 ], [ 3.112266, 50.15477 ], [ 3.100959, 50.161969 ], [ 3.115648, 50.16664 ], [ 3.137514, 50.16694 ], [ 3.151507, 50.18027 ], [ 3.156377, 50.18157 ], [ 3.15517, 50.18466 ], [ 3.147055, 50.18825 ], [ 3.142896, 50.19649 ], [ 3.138996, 50.19748 ], [ 3.131195, 50.199495 ], [ 3.132574, 50.20258 ], [ 3.135974, 50.208 ], [ 3.142792, 50.21924 ], [ 3.147956, 50.21915 ], [ 3.178885, 50.219073 ], [ 3.180625, 50.22424 ], [ 3.184117, 50.226231 ], [ 3.186851, 50.23493 ], [ 3.18238, 50.23364 ], [ 3.174272, 50.240954 ], [ 3.169753, 50.24209 ], [ 3.147167, 50.24622 ], [ 3.149535, 50.260884 ], [ 3.154141, 50.2602 ], [ 3.150799, 50.26214 ], [ 3.138159, 50.26525 ], [ 3.132839, 50.26624 ], [ 3.127684, 50.26638 ], [ 3.107559, 50.26857 ], [ 3.102434, 50.269337 ], [ 3.077477, 50.27436 ], [ 3.062161, 50.27182 ], [ 3.061811, 50.27209 ], [ 3.057623, 50.27316 ], [ 3.054641, 50.27533 ], [ 3.050776, 50.277171 ], [ 3.036395, 50.26941 ], [ 3.02981, 50.26719 ], [ 3.018644, 50.264394 ], [ 3.015395, 50.26615 ], [ 3.012244, 50.26798 ], [ 3.015274, 50.28378 ], [ 3.036142, 50.28755 ], [ 3.044308, 50.283109 ], [ 3.055097, 50.2823 ], [ 3.052454, 50.28759 ], [ 3.055204, 50.28976 ], [ 3.051618, 50.29197 ], [ 3.047612, 50.293846 ], [ 3.050529, 50.29609 ], [ 3.058413, 50.30227 ], [ 3.065485, 50.30731 ], [ 3.080685, 50.30911 ], [ 3.084867, 50.31123 ], [ 3.082137, 50.313778 ], [ 3.079182, 50.316213 ], [ 3.074598, 50.31711 ], [ 3.060366, 50.32892 ], [ 3.061114, 50.33278 ], [ 3.058157, 50.335402 ], [ 3.046692, 50.34581 ], [ 3.042777, 50.34486 ], [ 3.038806, 50.34402 ], [ 3.035188, 50.34633 ], [ 3.013459, 50.35941 ], [ 3.010385, 50.35878 ], [ 3.00734, 50.359486 ], [ 3.008267, 50.3625 ], [ 3.002793, 50.370887 ], [ 3.001685, 50.3739 ], [ 2.993935, 50.38177 ], [ 2.990422, 50.39495 ], [ 2.983904, 50.40024 ], [ 2.980518, 50.40288 ], [ 2.991727, 50.4017 ], [ 2.995463, 50.39994 ], [ 3.014959, 50.4031 ], [ 3.027533, 50.40852 ], [ 3.029516, 50.41154 ], [ 3.037445, 50.41999 ], [ 3.038979, 50.42318 ], [ 3.062224, 50.42562 ], [ 3.065917, 50.423558 ], [ 3.071442, 50.42531 ], [ 3.069662, 50.428592 ], [ 3.078492, 50.44097 ], [ 3.081786, 50.44373 ], [ 3.077219, 50.44499 ], [ 3.067817, 50.44685 ], [ 3.066525, 50.458531 ], [ 3.062966, 50.456962 ], [ 3.058817, 50.456183 ], [ 3.053992, 50.454884 ], [ 3.041611, 50.44451 ], [ 3.038558, 50.442143 ], [ 3.029859, 50.44468 ], [ 3.016292, 50.44192 ], [ 3.016715, 50.445271 ], [ 3.016703, 50.45198 ], [ 3.008268, 50.45586 ], [ 3.017172, 50.465765 ], [ 3.019563, 50.46833 ], [ 3.017258, 50.470352 ], [ 3.017441, 50.47284 ], [ 3.021001, 50.475423 ], [ 3.024325, 50.48406 ], [ 3.010848, 50.49027 ], [ 3.008344, 50.49277 ], [ 3.00439, 50.495011 ], [ 2.99423, 50.49666 ], [ 2.989854, 50.498861 ], [ 2.96471, 50.51278 ], [ 2.950676, 50.511903 ], [ 2.946244, 50.51042 ], [ 2.926865, 50.50781 ], [ 2.922758, 50.505749 ], [ 2.910143, 50.49983 ], [ 2.904831, 50.503456 ], [ 2.901641, 50.50101 ], [ 2.882077, 50.50775 ], [ 2.881294, 50.51769 ], [ 2.889207, 50.52994 ], [ 2.887046, 50.53298 ], [ 2.886965, 50.53766 ], [ 2.882504, 50.53597 ], [ 2.878465, 50.534651 ], [ 2.862058, 50.52977 ], [ 2.857089, 50.529234 ], [ 2.852162, 50.5286 ], [ 2.846701, 50.52791 ], [ 2.824771, 50.52561 ], [ 2.81437, 50.52813 ], [ 2.810636, 50.52882 ], [ 2.803772, 50.52691 ], [ 2.798854, 50.52792 ], [ 2.801323, 50.53732 ], [ 2.796583, 50.54632 ], [ 2.794472, 50.549206 ], [ 2.808764, 50.55082 ], [ 2.813165, 50.54931 ], [ 2.815076, 50.56599 ], [ 2.808235, 50.57885 ], [ 2.793326, 50.58123 ], [ 2.789076, 50.58306 ], [ 2.792065, 50.586288 ], [ 2.808041, 50.60755 ], [ 2.82454, 50.61594 ], [ 2.828412, 50.61824 ], [ 2.831382, 50.62002 ], [ 2.841416, 50.627662 ], [ 2.857106, 50.627313 ], [ 2.862341, 50.62726 ], [ 2.866202, 50.629046 ], [ 2.869738, 50.6311 ], [ 2.86681, 50.6338 ], [ 2.845502, 50.652274 ], [ 2.842615, 50.65488 ], [ 2.830892, 50.660718 ], [ 2.821276, 50.661278 ], [ 2.818177, 50.66327 ], [ 2.809188, 50.66937 ], [ 2.80598, 50.6665 ], [ 2.796618, 50.66296 ], [ 2.769677, 50.663617 ], [ 2.759527, 50.651402 ], [ 2.759178, 50.65068 ], [ 2.788444, 50.63595 ], [ 2.792447, 50.63366 ], [ 2.784663, 50.629183 ], [ 2.764665, 50.633382 ], [ 2.760314, 50.63147 ], [ 2.750512, 50.61355 ], [ 2.751518, 50.60689 ], [ 2.747182, 50.60525 ], [ 2.726066, 50.613847 ], [ 2.718588, 50.62936 ], [ 2.698103, 50.62915 ], [ 2.684208, 50.63311 ], [ 2.683002, 50.636413 ], [ 2.673575, 50.634334 ], [ 2.669852, 50.625332 ], [ 2.644364, 50.62256 ], [ 2.630516, 50.617952 ], [ 2.616283, 50.6271 ], [ 2.613497, 50.63349 ], [ 2.593574, 50.631603 ], [ 2.592547, 50.6347 ], [ 2.584993, 50.63692 ], [ 2.582335, 50.63418 ], [ 2.568492, 50.632523 ], [ 2.564301, 50.62443 ], [ 2.561693, 50.62746 ], [ 2.551557, 50.62651 ], [ 2.541783, 50.62923 ], [ 2.534119, 50.64167 ], [ 2.528875, 50.64257 ], [ 2.506806, 50.633424 ], [ 2.501953, 50.63196 ], [ 2.491542, 50.63172 ], [ 2.473183, 50.6386 ], [ 2.470104, 50.64149 ], [ 2.450822, 50.653445 ], [ 2.44606, 50.6551 ], [ 2.430188, 50.6568 ], [ 2.421532, 50.66552 ], [ 2.416134, 50.665832 ], [ 2.414511, 50.669432 ], [ 2.409622, 50.67093 ], [ 2.401762, 50.679916 ], [ 2.378528, 50.67193 ], [ 2.371374, 50.677092 ], [ 2.368168, 50.67936 ], [ 2.363525, 50.68464 ], [ 2.367167, 50.687067 ], [ 2.386124, 50.69858 ], [ 2.366375, 50.7095 ], [ 2.366373, 50.709677 ], [ 2.362256, 50.71111 ], [ 2.353433, 50.717992 ], [ 2.350813, 50.72054 ], [ 2.350509, 50.72655 ], [ 2.339683, 50.73067 ], [ 2.342195, 50.740698 ], [ 2.363636, 50.751568 ], [ 2.382123, 50.75499 ], [ 2.411478, 50.766734 ], [ 2.407129, 50.767171 ], [ 2.404331, 50.771635 ], [ 2.40068, 50.77399 ], [ 2.386543, 50.777525 ], [ 2.381448, 50.77868 ], [ 2.374318, 50.783027 ], [ 2.365724, 50.77547 ], [ 2.360333, 50.77539 ], [ 2.340563, 50.780906 ], [ 2.319058, 50.78244 ], [ 2.31261, 50.78721 ], [ 2.309115, 50.78505 ], [ 2.288578, 50.777039 ], [ 2.288277, 50.7803 ], [ 2.287618, 50.78681 ], [ 2.273686, 50.783234 ], [ 2.254833, 50.78803 ], [ 2.251044, 50.78963 ], [ 2.242758, 50.79652 ], [ 2.239846, 50.79903 ], [ 2.226713, 50.80782 ], [ 2.22266, 50.80987 ], [ 2.21343, 50.81055 ], [ 2.211363, 50.81953 ], [ 2.212661, 50.82256 ], [ 2.207562, 50.82789 ], [ 2.208621, 50.837058 ], [ 2.206205, 50.84023 ], [ 2.202647, 50.842941 ], [ 2.203616, 50.84971 ], [ 2.190113, 50.86793 ], [ 2.19034, 50.87137 ], [ 2.18877, 50.874647 ], [ 2.166938, 50.908442 ], [ 2.16555, 50.911653 ], [ 2.164601, 50.91492 ], [ 2.151317, 50.93257 ], [ 2.145509, 50.94511 ], [ 2.141819, 50.94747 ], [ 2.135655, 50.96309 ], [ 2.128009, 50.96739 ], [ 2.125134, 50.970134 ], [ 2.122685, 50.97288 ], [ 2.121666, 50.979107 ], [ 2.10927, 50.98417 ], [ 2.110463, 50.98741 ], [ 2.106566, 50.989943 ], [ 2.089192, 51.00349 ], [ 2.067712, 51.0065 ], [ 2.083572, 51.00839 ], [ 2.103662, 51.00518 ], [ 2.117312, 50.99467 ], [ 2.120473, 50.99192 ], [ 2.112877, 51.00504 ], [ 2.146495, 51.02689 ], [ 2.175015, 51.01554 ], [ 2.170886, 51.0133 ], [ 2.179919, 51.011309 ], [ 2.184275, 51.024899 ], [ 2.191054, 51.03047 ], [ 2.190033, 51.03722 ], [ 2.175106, 51.04176 ], [ 2.190397, 51.04113 ], [ 2.208475, 51.03241 ], [ 2.234957, 51.037247 ], [ 2.240201, 51.03858 ], [ 2.259275, 51.043537 ], [ 2.264227, 51.044445 ], [ 2.296897, 51.05023 ], [ 2.302421, 51.05101 ], [ 2.35041, 51.06024 ], [ 2.3676, 51.05149 ], [ 2.383895, 51.04901 ], [ 2.427124, 51.056229 ], [ 2.432332, 51.05754 ], [ 2.46192, 51.06529 ], [ 2.466931, 51.066449 ], [ 2.470114, 51.06704 ], [ 2.473281, 51.067669 ], [ 2.488896, 51.071823 ], [ 2.494106, 51.073208 ], [ 2.541447, 51.08776 ], [ 2.546031, 51.0894 ], [ 2.557367, 51.07337 ], [ 2.559218, 51.070054 ], [ 2.561481, 51.06683 ], [ 2.566089, 51.046043 ], [ 2.567001, 51.042674 ], [ 2.575724, 51.01401 ], [ 2.572476, 51.01309 ], [ 2.574804, 51.00361 ], [ 2.582346, 50.99758 ], [ 2.606478, 50.98891 ], [ 2.629709, 50.94933 ], [ 2.617791, 50.93514 ], [ 2.609007, 50.931025 ], [ 2.594754, 50.920753 ], [ 2.590013, 50.9191 ], [ 2.592097, 50.915945 ], [ 2.602718, 50.91505 ], [ 2.607418, 50.90932 ], [ 2.604717, 50.90635 ], [ 2.608896, 50.89629 ], [ 2.607309, 50.87259 ], [ 2.612033, 50.86683 ], [ 2.602139, 50.855935 ], [ 2.59917, 50.85329 ], [ 2.599113, 50.84982 ], [ 2.614633, 50.847667 ], [ 2.616995, 50.84089 ], [ 2.624824, 50.836062 ], [ 2.634983, 50.81276 ], [ 2.658365, 50.81458 ], [ 2.662318, 50.81629 ], [ 2.670175, 50.82104 ], [ 2.682146, 50.81393 ], [ 2.719826, 50.812052 ], [ 2.723565, 50.809503 ], [ 2.725014, 50.795725 ], [ 2.735823, 50.783636 ], [ 2.738556, 50.780591 ], [ 2.752129, 50.77742 ], [ 2.754308, 50.7746 ], [ 2.760956, 50.76926 ], [ 2.759503, 50.762527 ], [ 2.782033, 50.74769 ], [ 2.791225, 50.727528 ], [ 2.809139, 50.71931 ], [ 2.813275, 50.716948 ], [ 2.848568, 50.72176 ], [ 2.86741, 50.705783 ], [ 2.870173, 50.702914 ], [ 2.884268, 50.7059 ], [ 2.897134, 50.69585 ], [ 2.90043, 50.69329 ], [ 2.909936, 50.69436 ], [ 2.909077, 50.70086 ], [ 2.917296, 50.70352 ], [ 2.922327, 50.7028 ], [ 2.930072, 50.71174 ], [ 2.937172, 50.73006 ], [ 2.943586, 50.73379 ], [ 2.937651, 50.74257 ], [ 2.940137, 50.74536 ], [ 2.952081, 50.75185 ], [ 2.971968, 50.750275 ], [ 2.979787, 50.75468 ], [ 2.983294, 50.75719 ], [ 3.009904, 50.76806 ], [ 3.015254, 50.773624 ], [ 3.029982, 50.77043 ], [ 3.035274, 50.77015 ], [ 3.040683, 50.77557 ], [ 3.053763, 50.78015 ], [ 3.058745, 50.78071 ], [ 3.085734, 50.772887 ], [ 3.090194, 50.77439 ], [ 3.102702, 50.78094 ], [ 3.112211, 50.793036 ], [ 3.125773, 50.78777 ], [ 3.147109, 50.7899 ], [ 3.158357, 50.77504 ], [ 3.161603, 50.77226 ], [ 3.174469, 50.75711 ], [ 3.184298, 50.74905 ], [ 3.192547, 50.738923 ], [ 3.196344, 50.73705 ], [ 3.199132, 50.73405 ], [ 3.193002, 50.728442 ], [ 3.195467, 50.72249 ], [ 3.210326, 50.713016 ], [ 3.247511, 50.710327 ], [ 3.257956, 50.70243 ], [ 3.259532, 50.69569 ], [ 3.253688, 50.691138 ], [ 3.261831, 50.675965 ], [ 3.243893, 50.66976 ], [ 3.242114, 50.66668 ], [ 3.24437, 50.654571 ], [ 3.245075, 50.65143 ], [ 3.24882, 50.649456 ], [ 3.247623, 50.63855 ], [ 3.250659, 50.63614 ], [ 3.256616, 50.63107 ], [ 3.258704, 50.628176 ], [ 3.256132, 50.621953 ], [ 3.270677, 50.60878 ], [ 3.270969, 50.60551 ], [ 3.27831, 50.5942 ], [ 3.276637, 50.58483 ], [ 3.276169, 50.58168 ], [ 3.281692, 50.57622 ], [ 3.27806, 50.566755 ], [ 3.284599, 50.56183 ], [ 3.280712, 50.5597 ], [ 3.276055, 50.55827 ], [ 3.281236, 50.55255 ], [ 3.2796, 50.539547 ], [ 3.287029, 50.530869 ], [ 3.286531, 50.527576 ], [ 3.32095, 50.51726 ], [ 3.328858, 50.508128 ], [ 3.331755, 50.507743 ], [ 3.334712, 50.5079 ], [ 3.360271, 50.5037 ], [ 3.372971, 50.49298 ], [ 3.377262, 50.49099 ], [ 3.400258, 50.498564 ], [ 3.405551, 50.498781 ], [ 3.43563, 50.509127 ], [ 3.439442, 50.507228 ], [ 3.444757, 50.506536 ], [ 3.450083, 50.507226 ], [ 3.456075, 50.5207 ], [ 3.475, 50.53295 ], [ 3.506485, 50.528416 ], [ 3.517988, 50.52145 ], [ 3.51369, 50.5114 ], [ 3.497804, 50.4978 ], [ 3.501589, 50.48785 ], [ 3.506667, 50.489153 ], [ 3.526219, 50.4953 ], [ 3.558634, 50.49842 ], [ 3.568602, 50.500114 ], [ 3.578961, 50.49285 ], [ 3.583316, 50.491015 ], [ 3.607937, 50.49653 ], [ 3.629448, 50.4814 ], [ 3.640294, 50.46585 ], [ 3.643649, 50.463167 ], [ 3.65395, 50.462601 ], [ 3.660986, 50.45759 ], [ 3.660365, 50.44451 ], [ 3.667626, 50.43974 ], [ 3.668833, 50.43645 ], [ 3.671893, 50.4129 ], [ 3.673437, 50.40965 ], [ 3.672952, 50.38906 ], [ 3.668431, 50.382751 ], [ 3.665304, 50.379895 ], [ 3.658408, 50.37321 ], [ 3.657797, 50.370536 ], [ 3.666545, 50.36218 ], [ 3.664978, 50.34876 ], [ 3.676144, 50.338007 ], [ 3.673676, 50.33493 ], [ 3.680066, 50.32923 ], [ 3.684925, 50.327562 ], [ 3.694183, 50.315425 ], [ 3.708085, 50.304859 ], [ 3.710431, 50.30317 ], [ 3.716778, 50.30787 ], [ 3.714352, 50.31678 ], [ 3.726565, 50.31082 ], [ 3.73174, 50.3119 ], [ 3.729811, 50.32687 ], [ 3.734504, 50.33233 ], [ 3.738629, 50.34582 ], [ 3.747527, 50.349788 ], [ 3.758248, 50.34887 ], [ 3.763554, 50.34808 ], [ 3.765482, 50.35124 ], [ 3.781047, 50.35328 ], [ 3.79658, 50.35137 ], [ 3.805725, 50.35462 ], [ 3.810935, 50.35399 ], [ 3.813953, 50.34794 ], [ 3.811659, 50.344885 ], [ 3.821792, 50.34595 ], [ 3.82999, 50.353032 ], [ 3.84015, 50.353861 ], [ 3.854478, 50.35053 ], [ 3.857562, 50.3479 ], [ 3.870706, 50.3387 ], [ 3.885758, 50.33948 ], [ 3.888876, 50.333282 ], [ 3.88606, 50.32706 ], [ 3.915284, 50.33065 ], [ 3.919801, 50.33218 ], [ 3.961807, 50.34808 ], [ 3.967141, 50.34745 ], [ 3.96736, 50.34057 ], [ 3.972104, 50.3465 ], [ 3.982059, 50.343978 ], [ 3.98687, 50.342459 ], [ 3.993217, 50.347705 ], [ 4.013692, 50.351337 ], [ 4.02522, 50.35789 ], [ 4.037613, 50.342904 ], [ 4.05219, 50.338785 ], [ 4.077086, 50.32075 ], [ 4.078661, 50.31043 ], [ 4.078833, 50.30926 ], [ 4.098934, 50.312258 ], [ 4.108291, 50.30414 ], [ 4.11803, 50.302649 ], [ 4.12539, 50.2831 ], [ 4.124121, 50.273275 ], [ 4.1341, 50.27402 ], [ 4.138373, 50.261524 ], [ 4.134956, 50.25909 ], [ 4.153771, 50.25676 ], [ 4.163658, 50.257292 ], [ 4.166825, 50.26706 ], [ 4.152045, 50.27693 ], [ 4.160433, 50.28587 ], [ 4.170685, 50.28557 ], [ 4.179618, 50.27676 ], [ 4.209977, 50.27007 ], [ 4.22082, 50.2543 ], [ 4.204554, 50.24057 ], [ 4.199062, 50.24045 ], [ 4.183381, 50.23215 ], [ 4.16644, 50.215094 ], [ 4.150867, 50.21342 ], [ 4.16042, 50.19485 ], [ 4.156247, 50.19284 ], [ 4.156582, 50.186063 ], [ 4.150045, 50.17659 ], [ 4.15506, 50.167136 ], [ 4.153214, 50.160373 ], [ 4.140636, 50.15371 ], [ 4.129467, 50.13803 ], [ 4.126925, 50.13492 ], [ 4.146143, 50.128959 ], [ 4.163119, 50.13506 ], [ 4.195247, 50.1346 ], [ 4.203384, 50.115316 ], [ 4.197658, 50.10944 ], [ 4.204636, 50.10453 ], [ 4.205375, 50.097989 ], [ 4.227539, 50.07968 ], [ 4.23076, 50.07321 ], [ 4.22816, 50.066702 ], [ 4.201024, 50.0569 ], [ 4.190622, 50.049422 ], [ 4.175988, 50.0458 ], [ 4.171064, 50.047 ], [ 4.164072, 50.04866 ], [ 4.160782, 50.04752 ], [ 4.135626, 50.018567 ], [ 4.135425, 50.015183 ], [ 4.147204, 50.00403 ], [ 4.162406, 49.99655 ], [ 4.156285, 49.98721 ], [ 4.145596, 49.98025 ], [ 4.140895, 49.97876 ] ] ], [ [ [ 3.003746, 50.15016 ], [ 3.007826, 50.14868 ], [ 3.014941, 50.15242 ], [ 3.019176, 50.15371 ], [ 3.022362, 50.15195 ], [ 3.026289, 50.151016 ], [ 3.035919, 50.15156 ], [ 3.039068, 50.15671 ], [ 3.040398, 50.1597 ], [ 3.056215, 50.166048 ], [ 3.060737, 50.17094 ], [ 3.062726, 50.17378 ], [ 3.085555, 50.170979 ], [ 3.090058, 50.171757 ], [ 3.092256, 50.165442 ], [ 3.095886, 50.16313 ], [ 3.092079, 50.160674 ], [ 3.067794, 50.14749 ], [ 3.072024, 50.13422 ], [ 3.072368, 50.130818 ], [ 3.067294, 50.128738 ], [ 3.062491, 50.130429 ], [ 3.052154, 50.13241 ], [ 3.037036, 50.13058 ], [ 3.034799, 50.12765 ], [ 3.024637, 50.116387 ], [ 3.010628, 50.112806 ], [ 3.007835, 50.11563 ], [ 3.000531, 50.12011 ], [ 3.002389, 50.12996 ], [ 2.994718, 50.13815 ], [ 3.003746, 50.15016 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "61", "CODE_DEPT": "60", "NOM_DEPT": "OISE", "CODE_CHF": "057", "NOM_CHF": "BEAUVAIS", "X_CHF_LIEU": "6337", "Y_CHF_LIEU": "69264", "X_CENTROID": "6582", "Y_CENTROID": "69235", "CODE_REG": "22", "NOM_REGION": "PICARDIE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.071884, 49.117554 ], [ 3.069347, 49.11485 ], [ 3.056321, 49.101918 ], [ 3.056752, 49.09578 ], [ 3.064684, 49.08817 ], [ 3.066076, 49.08522 ], [ 3.061684, 49.08647 ], [ 3.034416, 49.08861 ], [ 3.0305, 49.08689 ], [ 3.012773, 49.09062 ], [ 3.003956, 49.088741 ], [ 2.999206, 49.088534 ], [ 2.989885, 49.08157 ], [ 2.988135, 49.072376 ], [ 2.983235, 49.07188 ], [ 2.974612, 49.074838 ], [ 2.974159, 49.0778 ], [ 2.971429, 49.088972 ], [ 2.967335, 49.090652 ], [ 2.954853, 49.08595 ], [ 2.94583, 49.08808 ], [ 2.944317, 49.081814 ], [ 2.937888, 49.077998 ], [ 2.933807, 49.08001 ], [ 2.923982, 49.07829 ], [ 2.900947, 49.08535 ], [ 2.899159, 49.08252 ], [ 2.895105, 49.077052 ], [ 2.890202, 49.07847 ], [ 2.872029, 49.071248 ], [ 2.856089, 49.070034 ], [ 2.854288, 49.073152 ], [ 2.844946, 49.08488 ], [ 2.83522, 49.083 ], [ 2.821258, 49.08681 ], [ 2.809254, 49.097536 ], [ 2.80477, 49.09576 ], [ 2.79173, 49.09014 ], [ 2.787956, 49.08917 ], [ 2.783988, 49.08864 ], [ 2.788214, 49.08287 ], [ 2.768337, 49.08326 ], [ 2.772712, 49.081378 ], [ 2.785275, 49.07544 ], [ 2.760833, 49.063004 ], [ 2.756038, 49.061528 ], [ 2.735013, 49.060459 ], [ 2.733096, 49.063359 ], [ 2.724357, 49.08046 ], [ 2.720824, 49.07564 ], [ 2.703081, 49.064736 ], [ 2.698321, 49.06443 ], [ 2.690023, 49.067562 ], [ 2.691155, 49.07062 ], [ 2.693519, 49.073452 ], [ 2.67832, 49.08573 ], [ 2.676384, 49.088872 ], [ 2.650967, 49.10025 ], [ 2.640674, 49.099713 ], [ 2.633273, 49.108376 ], [ 2.631694, 49.105117 ], [ 2.619365, 49.09447 ], [ 2.614781, 49.09409 ], [ 2.610339, 49.094943 ], [ 2.609132, 49.091558 ], [ 2.590524, 49.07965 ], [ 2.586578, 49.080127 ], [ 2.582606, 49.08048 ], [ 2.580161, 49.08326 ], [ 2.576746, 49.092429 ], [ 2.559479, 49.09762 ], [ 2.554091, 49.11754 ], [ 2.542285, 49.118854 ], [ 2.542654, 49.122065 ], [ 2.537924, 49.12103 ], [ 2.532668, 49.11593 ], [ 2.531063, 49.0996 ], [ 2.526067, 49.10089 ], [ 2.489931, 49.10636 ], [ 2.501596, 49.11948 ], [ 2.499227, 49.12227 ], [ 2.494845, 49.12351 ], [ 2.477004, 49.12797 ], [ 2.477603, 49.13107 ], [ 2.473884, 49.132987 ], [ 2.461309, 49.13661 ], [ 2.458813, 49.139483 ], [ 2.435399, 49.13394 ], [ 2.436577, 49.13646 ], [ 2.438907, 49.1415 ], [ 2.439898, 49.14365 ], [ 2.440903, 49.145803 ], [ 2.410447, 49.15208 ], [ 2.394792, 49.14981 ], [ 2.3732, 49.15925 ], [ 2.369839, 49.15718 ], [ 2.358039, 49.14815 ], [ 2.354227, 49.150485 ], [ 2.321777, 49.18444 ], [ 2.317953, 49.185233 ], [ 2.310593, 49.184876 ], [ 2.306913, 49.185179 ], [ 2.301197, 49.183887 ], [ 2.299925, 49.180589 ], [ 2.28887, 49.169681 ], [ 2.286413, 49.15992 ], [ 2.281365, 49.15913 ], [ 2.266531, 49.156295 ], [ 2.262132, 49.158102 ], [ 2.259401, 49.15544 ], [ 2.241583, 49.151573 ], [ 2.225833, 49.1516 ], [ 2.21636, 49.154378 ], [ 2.219639, 49.15692 ], [ 2.234054, 49.165695 ], [ 2.220277, 49.179201 ], [ 2.215478, 49.17823 ], [ 2.207218, 49.17489 ], [ 2.187374, 49.173229 ], [ 2.183442, 49.17382 ], [ 2.176584, 49.17654 ], [ 2.178986, 49.17382 ], [ 2.172135, 49.166607 ], [ 2.16393, 49.1661 ], [ 2.161839, 49.16823 ], [ 2.157738, 49.17251 ], [ 2.163401, 49.17762 ], [ 2.157181, 49.182282 ], [ 2.153026, 49.183925 ], [ 2.143261, 49.18555 ], [ 2.139762, 49.18313 ], [ 2.13028, 49.19075 ], [ 2.11591, 49.18799 ], [ 2.095875, 49.19006 ], [ 2.093329, 49.19285 ], [ 2.09024, 49.20545 ], [ 2.080769, 49.207203 ], [ 2.08089, 49.21045 ], [ 2.076699, 49.20844 ], [ 2.069874, 49.203344 ], [ 2.050488, 49.19878 ], [ 2.038368, 49.19241 ], [ 2.038236, 49.19213 ], [ 2.035163, 49.189908 ], [ 2.021784, 49.18868 ], [ 2.018235, 49.186355 ], [ 1.999445, 49.175573 ], [ 1.990193, 49.17676 ], [ 1.974086, 49.183316 ], [ 1.971263, 49.181107 ], [ 1.962698, 49.1746 ], [ 1.958097, 49.17287 ], [ 1.937433, 49.170761 ], [ 1.933925, 49.17335 ], [ 1.882568, 49.1625 ], [ 1.882617, 49.16594 ], [ 1.876765, 49.175309 ], [ 1.874497, 49.17429 ], [ 1.869788, 49.17265 ], [ 1.849074, 49.170489 ], [ 1.838268, 49.16619 ], [ 1.834069, 49.16512 ], [ 1.83664, 49.171547 ], [ 1.831251, 49.17698 ], [ 1.816999, 49.17587 ], [ 1.797776, 49.185147 ], [ 1.794378, 49.183189 ], [ 1.793582, 49.18028 ], [ 1.789302, 49.181493 ], [ 1.776924, 49.185225 ], [ 1.776379, 49.185094 ], [ 1.773149, 49.18247 ], [ 1.756131, 49.174879 ], [ 1.742695, 49.1798 ], [ 1.742878, 49.18299 ], [ 1.73895, 49.19219 ], [ 1.725913, 49.19401 ], [ 1.72571, 49.197273 ], [ 1.715583, 49.20285 ], [ 1.715608, 49.206238 ], [ 1.73398, 49.21199 ], [ 1.735795, 49.22194 ], [ 1.740453, 49.22344 ], [ 1.736324, 49.225573 ], [ 1.710812, 49.23738 ], [ 1.704364, 49.2322 ], [ 1.700984, 49.23395 ], [ 1.701625, 49.2423 ], [ 1.699859, 49.248652 ], [ 1.701428, 49.25179 ], [ 1.708007, 49.25622 ], [ 1.708195, 49.26241 ], [ 1.711646, 49.26452 ], [ 1.727115, 49.26509 ], [ 1.735143, 49.269365 ], [ 1.750536, 49.268023 ], [ 1.75472, 49.270009 ], [ 1.768065, 49.25545 ], [ 1.766896, 49.252035 ], [ 1.786654, 49.24882 ], [ 1.790552, 49.246575 ], [ 1.790289, 49.25369 ], [ 1.800911, 49.270063 ], [ 1.80266, 49.273434 ], [ 1.794084, 49.27649 ], [ 1.796641, 49.28646 ], [ 1.784643, 49.29286 ], [ 1.77535, 49.29117 ], [ 1.77239, 49.293664 ], [ 1.774432, 49.30668 ], [ 1.767545, 49.31928 ], [ 1.770655, 49.32557 ], [ 1.774004, 49.335692 ], [ 1.757629, 49.35703 ], [ 1.760168, 49.365326 ], [ 1.759341, 49.36824 ], [ 1.749902, 49.37146 ], [ 1.742778, 49.38077 ], [ 1.720029, 49.39528 ], [ 1.736382, 49.40353 ], [ 1.740379, 49.40568 ], [ 1.735689, 49.40651 ], [ 1.717574, 49.4037 ], [ 1.713938, 49.40922 ], [ 1.72201, 49.42149 ], [ 1.726078, 49.438065 ], [ 1.733389, 49.44122 ], [ 1.736373, 49.44713 ], [ 1.739918, 49.4493 ], [ 1.748842, 49.45144 ], [ 1.749925, 49.45679 ], [ 1.747434, 49.45945 ], [ 1.760619, 49.46452 ], [ 1.765371, 49.465925 ], [ 1.775771, 49.47344 ], [ 1.775438, 49.48686 ], [ 1.778449, 49.489626 ], [ 1.788633, 49.490141 ], [ 1.78755, 49.50623 ], [ 1.783584, 49.507609 ], [ 1.768074, 49.512028 ], [ 1.755399, 49.50646 ], [ 1.744868, 49.49173 ], [ 1.740506, 49.497983 ], [ 1.72546, 49.49978 ], [ 1.719227, 49.50292 ], [ 1.717972, 49.50674 ], [ 1.71992, 49.508904 ], [ 1.738792, 49.52058 ], [ 1.745519, 49.53916 ], [ 1.744888, 49.53952 ], [ 1.731211, 49.541354 ], [ 1.724905, 49.54554 ], [ 1.72916, 49.55503 ], [ 1.729834, 49.56129 ], [ 1.726288, 49.56386 ], [ 1.720397, 49.569598 ], [ 1.717848, 49.57262 ], [ 1.710406, 49.57725 ], [ 1.697693, 49.57222 ], [ 1.694593, 49.58054 ], [ 1.709641, 49.58021 ], [ 1.7204, 49.58556 ], [ 1.721618, 49.58881 ], [ 1.720146, 49.589656 ], [ 1.693725, 49.60107 ], [ 1.715943, 49.61395 ], [ 1.721685, 49.623321 ], [ 1.71873, 49.62976 ], [ 1.717252, 49.632981 ], [ 1.707252, 49.63776 ], [ 1.70442, 49.63976 ], [ 1.701361, 49.641952 ], [ 1.698685, 49.64435 ], [ 1.708078, 49.646149 ], [ 1.713754, 49.654908 ], [ 1.721554, 49.65857 ], [ 1.722778, 49.66165 ], [ 1.724131, 49.671805 ], [ 1.747082, 49.680078 ], [ 1.752184, 49.68097 ], [ 1.751309, 49.68392 ], [ 1.750299, 49.69582 ], [ 1.746515, 49.69757 ], [ 1.743109, 49.70033 ], [ 1.732928, 49.69855 ], [ 1.717096, 49.68456 ], [ 1.707758, 49.681374 ], [ 1.68862, 49.69371 ], [ 1.715453, 49.71033 ], [ 1.715109, 49.71354 ], [ 1.715538, 49.73288 ], [ 1.725303, 49.73157 ], [ 1.742891, 49.73855 ], [ 1.745455, 49.738572 ], [ 1.74026, 49.75025 ], [ 1.74272, 49.75285 ], [ 1.749886, 49.76211 ], [ 1.763625, 49.75727 ], [ 1.784845, 49.7579 ], [ 1.792246, 49.755812 ], [ 1.790529, 49.75335 ], [ 1.794776, 49.75146 ], [ 1.809602, 49.75384 ], [ 1.818059, 49.74194 ], [ 1.820456, 49.73905 ], [ 1.836526, 49.740248 ], [ 1.840662, 49.733926 ], [ 1.825215, 49.724396 ], [ 1.820558, 49.72255 ], [ 1.822305, 49.719551 ], [ 1.832154, 49.71917 ], [ 1.839607, 49.71506 ], [ 1.837961, 49.70878 ], [ 1.845561, 49.70421 ], [ 1.848986, 49.70164 ], [ 1.863471, 49.70385 ], [ 1.876809, 49.69965 ], [ 1.881046, 49.69786 ], [ 1.890205, 49.69906 ], [ 1.894761, 49.699796 ], [ 1.915707, 49.71363 ], [ 1.929088, 49.71792 ], [ 1.933066, 49.71988 ], [ 1.947314, 49.70371 ], [ 1.949092, 49.7008 ], [ 1.967105, 49.71783 ], [ 1.97147, 49.719941 ], [ 1.977685, 49.71135 ], [ 1.992926, 49.71005 ], [ 2.001826, 49.71338 ], [ 2.014066, 49.708198 ], [ 2.023351, 49.711005 ], [ 2.02847, 49.710713 ], [ 2.02882, 49.710536 ], [ 2.034015, 49.710623 ], [ 2.037942, 49.70439 ], [ 2.058855, 49.6951 ], [ 2.059015, 49.68862 ], [ 2.048708, 49.688004 ], [ 2.050939, 49.68644 ], [ 2.066362, 49.68451 ], [ 2.083263, 49.692043 ], [ 2.087716, 49.69012 ], [ 2.095049, 49.69293 ], [ 2.110949, 49.693848 ], [ 2.118952, 49.68925 ], [ 2.124042, 49.688039 ], [ 2.138188, 49.69105 ], [ 2.144646, 49.69586 ], [ 2.147203, 49.69869 ], [ 2.155584, 49.7021 ], [ 2.185361, 49.70271 ], [ 2.190164, 49.70388 ], [ 2.192036, 49.7029 ], [ 2.204975, 49.69855 ], [ 2.223633, 49.70236 ], [ 2.228579, 49.702342 ], [ 2.232463, 49.70208 ], [ 2.247169, 49.70164 ], [ 2.255913, 49.69578 ], [ 2.260268, 49.695404 ], [ 2.287811, 49.68714 ], [ 2.290579, 49.68426 ], [ 2.300514, 49.681894 ], [ 2.314607, 49.68641 ], [ 2.315517, 49.68981 ], [ 2.327508, 49.68275 ], [ 2.332295, 49.680994 ], [ 2.335226, 49.67171 ], [ 2.350234, 49.663092 ], [ 2.355011, 49.664088 ], [ 2.358328, 49.66566 ], [ 2.362066, 49.66674 ], [ 2.369307, 49.65772 ], [ 2.37391, 49.656037 ], [ 2.388916, 49.65592 ], [ 2.397808, 49.658925 ], [ 2.402178, 49.66052 ], [ 2.412372, 49.661234 ], [ 2.445587, 49.65298 ], [ 2.449166, 49.64713 ], [ 2.452897, 49.64114 ], [ 2.456753, 49.635111 ], [ 2.465564, 49.63799 ], [ 2.46896, 49.63603 ], [ 2.473367, 49.635319 ], [ 2.466812, 49.62704 ], [ 2.474051, 49.62264 ], [ 2.478123, 49.62079 ], [ 2.501306, 49.63781 ], [ 2.505507, 49.63973 ], [ 2.505375, 49.63625 ], [ 2.517447, 49.629598 ], [ 2.520903, 49.62694 ], [ 2.523867, 49.62808 ], [ 2.526593, 49.62944 ], [ 2.546494, 49.61614 ], [ 2.566469, 49.619035 ], [ 2.561697, 49.6109 ], [ 2.559162, 49.60822 ], [ 2.568938, 49.60013 ], [ 2.571632, 49.59708 ], [ 2.578709, 49.59728 ], [ 2.581595, 49.599318 ], [ 2.587559, 49.607417 ], [ 2.595904, 49.610105 ], [ 2.592678, 49.612323 ], [ 2.606249, 49.608153 ], [ 2.620704, 49.61133 ], [ 2.625948, 49.61095 ], [ 2.627046, 49.61013 ], [ 2.624482, 49.607213 ], [ 2.630769, 49.5983 ], [ 2.627794, 49.5853 ], [ 2.631943, 49.57912 ], [ 2.645208, 49.57363 ], [ 2.649629, 49.571764 ], [ 2.665993, 49.579826 ], [ 2.670723, 49.58142 ], [ 2.669194, 49.59991 ], [ 2.674102, 49.60002 ], [ 2.673979, 49.60195 ], [ 2.687078, 49.61467 ], [ 2.687363, 49.61783 ], [ 2.68783, 49.62304 ], [ 2.688934, 49.625655 ], [ 2.693622, 49.62586 ], [ 2.698296, 49.62625 ], [ 2.717068, 49.62366 ], [ 2.720402, 49.62106 ], [ 2.72521, 49.62473 ], [ 2.744352, 49.6252 ], [ 2.752944, 49.622109 ], [ 2.757555, 49.62097 ], [ 2.759687, 49.617728 ], [ 2.771722, 49.614184 ], [ 2.775992, 49.614875 ], [ 2.7905, 49.61494 ], [ 2.794973, 49.616831 ], [ 2.798614, 49.61938 ], [ 2.797412, 49.62623 ], [ 2.796333, 49.62964 ], [ 2.790333, 49.642128 ], [ 2.797732, 49.65726 ], [ 2.802349, 49.658754 ], [ 2.799495, 49.65948 ], [ 2.800429, 49.661366 ], [ 2.839634, 49.66077 ], [ 2.84335, 49.65853 ], [ 2.850149, 49.66237 ], [ 2.846658, 49.66783 ], [ 2.845141, 49.67062 ], [ 2.847449, 49.67214 ], [ 2.860329, 49.68078 ], [ 2.856765, 49.68275 ], [ 2.860636, 49.684885 ], [ 2.875527, 49.683769 ], [ 2.884609, 49.672545 ], [ 2.888795, 49.67069 ], [ 2.888424, 49.68202 ], [ 2.886762, 49.68842 ], [ 2.869074, 49.69972 ], [ 2.866199, 49.70249 ], [ 2.88318, 49.71037 ], [ 2.881704, 49.71366 ], [ 2.883796, 49.713833 ], [ 2.889739, 49.701519 ], [ 2.892294, 49.69868 ], [ 2.906863, 49.701264 ], [ 2.909734, 49.70719 ], [ 2.913415, 49.70951 ], [ 2.934781, 49.67663 ], [ 2.938476, 49.678785 ], [ 2.946497, 49.67509 ], [ 2.95329, 49.66654 ], [ 2.953004, 49.6759 ], [ 2.956076, 49.678307 ], [ 2.948747, 49.68282 ], [ 2.950191, 49.69274 ], [ 2.969691, 49.69656 ], [ 2.977431, 49.70466 ], [ 2.982405, 49.70392 ], [ 2.989983, 49.705514 ], [ 2.992366, 49.70765 ], [ 3.004392, 49.70181 ], [ 3.005222, 49.69531 ], [ 3.008325, 49.69272 ], [ 3.013408, 49.69252 ], [ 3.023736, 49.68153 ], [ 3.028305, 49.68006 ], [ 3.033486, 49.68308 ], [ 3.040503, 49.694985 ], [ 3.050281, 49.693643 ], [ 3.055323, 49.69401 ], [ 3.057579, 49.70415 ], [ 3.053997, 49.71048 ], [ 3.052435, 49.71377 ], [ 3.07844, 49.71099 ], [ 3.08332, 49.71249 ], [ 3.0792, 49.69166 ], [ 3.090193, 49.696837 ], [ 3.092566, 49.69962 ], [ 3.097274, 49.70587 ], [ 3.113319, 49.70622 ], [ 3.118652, 49.70583 ], [ 3.125917, 49.696499 ], [ 3.116282, 49.68111 ], [ 3.125, 49.67274 ], [ 3.127083, 49.66953 ], [ 3.123629, 49.66118 ], [ 3.112828, 49.66571 ], [ 3.108299, 49.66467 ], [ 3.107594, 49.65862 ], [ 3.099382, 49.656556 ], [ 3.09645, 49.65064 ], [ 3.10594, 49.64891 ], [ 3.112675, 49.6402 ], [ 3.110476, 49.634234 ], [ 3.112766, 49.63133 ], [ 3.109219, 49.6289 ], [ 3.096579, 49.62347 ], [ 3.093575, 49.622549 ], [ 3.099238, 49.61807 ], [ 3.102, 49.61579 ], [ 3.119137, 49.60449 ], [ 3.122533, 49.60203 ], [ 3.124178, 49.59626 ], [ 3.135088, 49.58137 ], [ 3.138052, 49.57859 ], [ 3.138985, 49.57585 ], [ 3.126982, 49.57291 ], [ 3.126302, 49.56607 ], [ 3.131731, 49.56022 ], [ 3.13148, 49.54338 ], [ 3.125924, 49.5418 ], [ 3.127901, 49.531384 ], [ 3.122465, 49.521683 ], [ 3.096325, 49.5179 ], [ 3.10247, 49.505138 ], [ 3.107214, 49.50367 ], [ 3.116497, 49.495212 ], [ 3.121281, 49.49368 ], [ 3.123306, 49.4808 ], [ 3.110055, 49.47665 ], [ 3.105299, 49.47129 ], [ 3.107085, 49.46823 ], [ 3.124931, 49.46279 ], [ 3.129742, 49.46205 ], [ 3.150778, 49.455269 ], [ 3.155214, 49.454185 ], [ 3.162893, 49.4496 ], [ 3.166193, 49.44692 ], [ 3.161892, 49.4426 ], [ 3.165126, 49.44085 ], [ 3.160518, 49.43936 ], [ 3.12159, 49.431745 ], [ 3.110497, 49.43848 ], [ 3.100285, 49.439278 ], [ 3.094759, 49.42484 ], [ 3.095073, 49.423041 ], [ 3.095304, 49.42123 ], [ 3.095987, 49.41791 ], [ 3.095633, 49.39798 ], [ 3.090827, 49.398246 ], [ 3.094371, 49.37853 ], [ 3.081094, 49.374334 ], [ 3.076804, 49.36871 ], [ 3.076881, 49.35548 ], [ 3.072728, 49.34789 ], [ 3.068641, 49.347304 ], [ 3.048062, 49.3368 ], [ 3.036335, 49.32574 ], [ 3.034824, 49.328981 ], [ 3.012697, 49.337219 ], [ 3.008859, 49.337857 ], [ 3.001788, 49.34015 ], [ 2.998267, 49.337471 ], [ 2.96426, 49.32138 ], [ 2.967232, 49.31895 ], [ 2.978566, 49.30941 ], [ 2.973468, 49.30457 ], [ 2.97006, 49.30261 ], [ 2.988812, 49.29672 ], [ 2.994407, 49.2883 ], [ 3.009304, 49.291113 ], [ 3.018346, 49.288074 ], [ 3.014208, 49.28181 ], [ 3.019265, 49.28142 ], [ 3.030165, 49.287604 ], [ 3.036277, 49.282703 ], [ 3.027533, 49.274903 ], [ 3.027586, 49.271523 ], [ 3.030826, 49.26683 ], [ 3.026756, 49.260573 ], [ 3.032901, 49.24729 ], [ 3.033311, 49.24379 ], [ 3.033311, 49.24334 ], [ 3.039066, 49.2274 ], [ 3.022988, 49.219284 ], [ 3.009196, 49.222917 ], [ 3.01267, 49.22901 ], [ 3.00162, 49.235657 ], [ 2.996211, 49.235315 ], [ 2.964349, 49.23191 ], [ 2.958739, 49.226606 ], [ 2.967366, 49.21533 ], [ 2.969496, 49.20994 ], [ 2.967579, 49.20332 ], [ 2.97115, 49.19708 ], [ 2.971814, 49.187529 ], [ 2.976519, 49.1859 ], [ 2.981375, 49.18447 ], [ 2.984871, 49.186965 ], [ 2.991687, 49.191982 ], [ 3.015991, 49.18 ], [ 3.021733, 49.17057 ], [ 3.027107, 49.17003 ], [ 3.037898, 49.16921 ], [ 3.035753, 49.180685 ], [ 3.035069, 49.18362 ], [ 3.029789, 49.183887 ], [ 3.025431, 49.190209 ], [ 3.0062, 49.187083 ], [ 3.00048, 49.19673 ], [ 2.998614, 49.21043 ], [ 3.001523, 49.21332 ], [ 3.006148, 49.215033 ], [ 3.016537, 49.21631 ], [ 3.030821, 49.21218 ], [ 3.034837, 49.20578 ], [ 3.043415, 49.20905 ], [ 3.05214, 49.206625 ], [ 3.061165, 49.204077 ], [ 3.060085, 49.19525 ], [ 3.063237, 49.19278 ], [ 3.077849, 49.194798 ], [ 3.085004, 49.182755 ], [ 3.083737, 49.16281 ], [ 3.094297, 49.15717 ], [ 3.086688, 49.173 ], [ 3.10245, 49.19731 ], [ 3.114563, 49.190768 ], [ 3.113552, 49.167556 ], [ 3.126879, 49.16219 ], [ 3.137366, 49.16177 ], [ 3.142289, 49.157411 ], [ 3.126777, 49.14851 ], [ 3.127057, 49.145066 ], [ 3.107105, 49.14612 ], [ 3.113521, 49.1411 ], [ 3.116887, 49.13867 ], [ 3.113415, 49.13626 ], [ 3.105274, 49.13555 ], [ 3.093913, 49.1421 ], [ 3.093026, 49.12898 ], [ 3.087084, 49.12321 ], [ 3.077028, 49.122065 ], [ 3.071884, 49.117554 ] ] ], [ [ [ 2.99023, 49.21067 ], [ 2.988514, 49.211356 ], [ 2.987417, 49.210915 ], [ 2.988597, 49.21239 ], [ 2.987855, 49.21253 ], [ 2.987087, 49.212264 ], [ 2.985454, 49.213082 ], [ 2.986304, 49.21511 ], [ 2.985082, 49.21624 ], [ 2.982406, 49.2163 ], [ 2.982488, 49.21688 ], [ 2.984698, 49.21817 ], [ 2.989446, 49.219492 ], [ 2.988457, 49.22211 ], [ 2.992451, 49.2232 ], [ 2.993755, 49.22253 ], [ 2.997749, 49.22358 ], [ 3.000412, 49.222666 ], [ 3.002566, 49.21969 ], [ 3.002759, 49.21884 ], [ 2.998298, 49.21909 ], [ 2.998161, 49.21895 ], [ 2.99779, 49.21679 ], [ 2.999698, 49.215384 ], [ 2.997887, 49.21396 ], [ 2.99694, 49.21401 ], [ 2.995746, 49.21258 ], [ 2.995321, 49.21132 ], [ 2.994511, 49.21236 ], [ 2.99237, 49.2121 ], [ 2.991739, 49.21094 ], [ 2.99023, 49.21067 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "62", "CODE_DEPT": "61", "NOM_DEPT": "ORNE", "CODE_CHF": "001", "NOM_CHF": "ALENCON", "X_CHF_LIEU": "4849", "Y_CHF_LIEU": "68183", "X_CENTROID": "4884", "Y_CENTROID": "68397", "CODE_REG": "25", "NOM_REGION": "BASSE-NORMANDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.797655, 48.19446 ], [ 0.793203, 48.19307 ], [ 0.759209, 48.18009 ], [ 0.755327, 48.18211 ], [ 0.751105, 48.183916 ], [ 0.73863, 48.18919 ], [ 0.732119, 48.19816 ], [ 0.723637, 48.19814 ], [ 0.72026, 48.202768 ], [ 0.72035, 48.20628 ], [ 0.687394, 48.24078 ], [ 0.683916, 48.254 ], [ 0.679097, 48.25508 ], [ 0.652469, 48.26339 ], [ 0.642751, 48.26154 ], [ 0.631907, 48.254761 ], [ 0.631421, 48.251466 ], [ 0.63848, 48.235611 ], [ 0.635062, 48.235515 ], [ 0.631908, 48.23462 ], [ 0.630203, 48.24078 ], [ 0.622457, 48.244921 ], [ 0.613135, 48.24273 ], [ 0.593727, 48.24455 ], [ 0.579192, 48.244412 ], [ 0.574411, 48.244917 ], [ 0.546795, 48.250162 ], [ 0.537336, 48.24924 ], [ 0.537331, 48.252801 ], [ 0.53656, 48.25978 ], [ 0.530307, 48.2655 ], [ 0.525809, 48.26595 ], [ 0.512572, 48.26759 ], [ 0.494423, 48.283488 ], [ 0.497806, 48.289797 ], [ 0.505824, 48.293658 ], [ 0.491583, 48.30716 ], [ 0.475989, 48.30005 ], [ 0.46327, 48.30528 ], [ 0.442805, 48.30464 ], [ 0.438486, 48.306046 ], [ 0.429965, 48.30868 ], [ 0.427652, 48.31486 ], [ 0.426281, 48.31752 ], [ 0.415531, 48.32149 ], [ 0.408565, 48.316323 ], [ 0.395362, 48.32129 ], [ 0.383907, 48.33288 ], [ 0.380633, 48.34306 ], [ 0.384251, 48.34307 ], [ 0.387484, 48.34731 ], [ 0.387348, 48.350595 ], [ 0.380557, 48.36928 ], [ 0.380868, 48.37279 ], [ 0.378659, 48.38323 ], [ 0.37678, 48.3854 ], [ 0.373864, 48.38697 ], [ 0.375708, 48.390098 ], [ 0.372679, 48.41013 ], [ 0.379512, 48.414919 ], [ 0.381725, 48.42479 ], [ 0.376012, 48.43031 ], [ 0.373314, 48.43287 ], [ 0.367808, 48.43774 ], [ 0.367697, 48.44131 ], [ 0.363205, 48.45156 ], [ 0.35289, 48.45969 ], [ 0.350087, 48.45865 ], [ 0.345224, 48.45927 ], [ 0.340997, 48.460977 ], [ 0.33683, 48.46282 ], [ 0.324524, 48.471903 ], [ 0.314738, 48.473194 ], [ 0.30963, 48.473286 ], [ 0.297909, 48.479816 ], [ 0.283555, 48.48145 ], [ 0.278804, 48.48089 ], [ 0.266806, 48.48458 ], [ 0.262725, 48.482862 ], [ 0.26165, 48.47934 ], [ 0.258785, 48.47664 ], [ 0.225463, 48.47286 ], [ 0.221658, 48.47314 ], [ 0.217968, 48.473801 ], [ 0.213565, 48.47283 ], [ 0.194949, 48.463745 ], [ 0.191952, 48.46234 ], [ 0.186797, 48.46281 ], [ 0.172327, 48.46383 ], [ 0.170289, 48.4572 ], [ 0.173647, 48.45088 ], [ 0.169081, 48.44948 ], [ 0.152522, 48.45663 ], [ 0.143925, 48.454948 ], [ 0.145863, 48.45217 ], [ 0.154882, 48.4453 ], [ 0.158318, 48.443078 ], [ 0.153319, 48.43794 ], [ 0.148697, 48.43711 ], [ 0.125777, 48.43417 ], [ 0.121836, 48.435978 ], [ 0.117659, 48.436164 ], [ 0.111593, 48.43232 ], [ 0.109346, 48.42302 ], [ 0.099434, 48.41096 ], [ 0.083677, 48.411027 ], [ 0.083781, 48.41013 ], [ 0.079721, 48.408733 ], [ 0.067362, 48.40606 ], [ 0.064199, 48.40338 ], [ 0.054482, 48.39148 ], [ 0.062524, 48.383028 ], [ 0.039682, 48.38041 ], [ 0.035453, 48.38038 ], [ 0.023083, 48.38021 ], [ 0.01868, 48.38158 ], [ 0.005246, 48.38964 ], [ 0.00337, 48.395996 ], [ -0.001245, 48.39727 ], [ -0.02017, 48.39393 ], [ -0.022101, 48.38779 ], [ -0.051402, 48.37816 ], [ -0.049672, 48.37513 ], [ -0.054531, 48.382003 ], [ -0.057247, 48.384779 ], [ -0.053479, 48.390188 ], [ -0.053658, 48.3935 ], [ -0.05758, 48.429084 ], [ -0.055219, 48.43059 ], [ -0.054087, 48.43391 ], [ -0.049827, 48.44723 ], [ -0.053345, 48.45351 ], [ -0.062548, 48.456514 ], [ -0.067327, 48.45723 ], [ -0.08034, 48.44971 ], [ -0.108255, 48.448024 ], [ -0.118485, 48.448233 ], [ -0.137842, 48.45282 ], [ -0.142193, 48.4543 ], [ -0.148946, 48.45879 ], [ -0.148132, 48.47161 ], [ -0.153516, 48.47695 ], [ -0.15017, 48.478953 ], [ -0.155064, 48.48716 ], [ -0.155447, 48.490138 ], [ -0.155678, 48.49331 ], [ -0.167477, 48.50297 ], [ -0.172087, 48.502137 ], [ -0.166668, 48.514706 ], [ -0.145388, 48.52116 ], [ -0.144604, 48.52775 ], [ -0.179251, 48.541649 ], [ -0.189492, 48.548622 ], [ -0.191725, 48.55168 ], [ -0.195862, 48.55591 ], [ -0.199584, 48.558236 ], [ -0.207346, 48.56252 ], [ -0.215792, 48.55979 ], [ -0.230695, 48.56195 ], [ -0.242639, 48.568 ], [ -0.246473, 48.56572 ], [ -0.249293, 48.556078 ], [ -0.257472, 48.551956 ], [ -0.260578, 48.54913 ], [ -0.243057, 48.537062 ], [ -0.250837, 48.528081 ], [ -0.26839, 48.52067 ], [ -0.27155, 48.50745 ], [ -0.285283, 48.50865 ], [ -0.285881, 48.515169 ], [ -0.290094, 48.516871 ], [ -0.308956, 48.51833 ], [ -0.312305, 48.52027 ], [ -0.320239, 48.522929 ], [ -0.334973, 48.50908 ], [ -0.336825, 48.50242 ], [ -0.353789, 48.496496 ], [ -0.353152, 48.483774 ], [ -0.365814, 48.48755 ], [ -0.371083, 48.495556 ], [ -0.375751, 48.4961 ], [ -0.389253, 48.49937 ], [ -0.393346, 48.50107 ], [ -0.397657, 48.51051 ], [ -0.400875, 48.50789 ], [ -0.425449, 48.50736 ], [ -0.424473, 48.50819 ], [ -0.428467, 48.51021 ], [ -0.446883, 48.51494 ], [ -0.450728, 48.51282 ], [ -0.455856, 48.51269 ], [ -0.466117, 48.51252 ], [ -0.478198, 48.50157 ], [ -0.48293, 48.50263 ], [ -0.492665, 48.50212 ], [ -0.509294, 48.50884 ], [ -0.512798, 48.50653 ], [ -0.518632, 48.497552 ], [ -0.534907, 48.49155 ], [ -0.53787, 48.488884 ], [ -0.553157, 48.47297 ], [ -0.562328, 48.473799 ], [ -0.564255, 48.47686 ], [ -0.567457, 48.474545 ], [ -0.571639, 48.46893 ], [ -0.575807, 48.470079 ], [ -0.593207, 48.47084 ], [ -0.594311, 48.47252 ], [ -0.598929, 48.47074 ], [ -0.613629, 48.46061 ], [ -0.654215, 48.44454 ], [ -0.653906, 48.453912 ], [ -0.653977, 48.45746 ], [ -0.658168, 48.474845 ], [ -0.66884, 48.486458 ], [ -0.669079, 48.483289 ], [ -0.68367, 48.47694 ], [ -0.68361, 48.47069 ], [ -0.687991, 48.46944 ], [ -0.692663, 48.46827 ], [ -0.702106, 48.46966 ], [ -0.703268, 48.472888 ], [ -0.716955, 48.47032 ], [ -0.725251, 48.47347 ], [ -0.730066, 48.47205 ], [ -0.735258, 48.462402 ], [ -0.715918, 48.4509 ], [ -0.756483, 48.436937 ], [ -0.760817, 48.436412 ], [ -0.773966, 48.44271 ], [ -0.777874, 48.46541 ], [ -0.793424, 48.465267 ], [ -0.812743, 48.45492 ], [ -0.815108, 48.45746 ], [ -0.818601, 48.468431 ], [ -0.81808, 48.47412 ], [ -0.821988, 48.47608 ], [ -0.826973, 48.477186 ], [ -0.845826, 48.49783 ], [ -0.860363, 48.50146 ], [ -0.85602, 48.50874 ], [ -0.855947, 48.512185 ], [ -0.808914, 48.54787 ], [ -0.805633, 48.549751 ], [ -0.790567, 48.55207 ], [ -0.775712, 48.561837 ], [ -0.773342, 48.56849 ], [ -0.774519, 48.57541 ], [ -0.769516, 48.58829 ], [ -0.763014, 48.59339 ], [ -0.758265, 48.59475 ], [ -0.751665, 48.603429 ], [ -0.753004, 48.61964 ], [ -0.744902, 48.621446 ], [ -0.739977, 48.621708 ], [ -0.743561, 48.627566 ], [ -0.762478, 48.631634 ], [ -0.771271, 48.650141 ], [ -0.772818, 48.65331 ], [ -0.773294, 48.6567 ], [ -0.761733, 48.663212 ], [ -0.756696, 48.672754 ], [ -0.741063, 48.68077 ], [ -0.736267, 48.679501 ], [ -0.736816, 48.686229 ], [ -0.764464, 48.69339 ], [ -0.769037, 48.694939 ], [ -0.771771, 48.69738 ], [ -0.778546, 48.701346 ], [ -0.782499, 48.702761 ], [ -0.796916, 48.70907 ], [ -0.799661, 48.71203 ], [ -0.807277, 48.724475 ], [ -0.818932, 48.731414 ], [ -0.828977, 48.73252 ], [ -0.831817, 48.72967 ], [ -0.842413, 48.728463 ], [ -0.847051, 48.72971 ], [ -0.851775, 48.745576 ], [ -0.840936, 48.75223 ], [ -0.825322, 48.75249 ], [ -0.812822, 48.75846 ], [ -0.80823, 48.76011 ], [ -0.789464, 48.77964 ], [ -0.784904, 48.781185 ], [ -0.781431, 48.78347 ], [ -0.780627, 48.786651 ], [ -0.743942, 48.79192 ], [ -0.720012, 48.79936 ], [ -0.714679, 48.79987 ], [ -0.711532, 48.802766 ], [ -0.70847, 48.805706 ], [ -0.686626, 48.820049 ], [ -0.682172, 48.82183 ], [ -0.690819, 48.824385 ], [ -0.702481, 48.834216 ], [ -0.7055, 48.83679 ], [ -0.691249, 48.84623 ], [ -0.682991, 48.8423 ], [ -0.652919, 48.83846 ], [ -0.643436, 48.84095 ], [ -0.643054, 48.830407 ], [ -0.645422, 48.82722 ], [ -0.624501, 48.826973 ], [ -0.61079, 48.83198 ], [ -0.606409, 48.83389 ], [ -0.603179, 48.834514 ], [ -0.599866, 48.83492 ], [ -0.580286, 48.836553 ], [ -0.574716, 48.83111 ], [ -0.569821, 48.83052 ], [ -0.560863, 48.83431 ], [ -0.54965, 48.84627 ], [ -0.524007, 48.85031 ], [ -0.512126, 48.84849 ], [ -0.509979, 48.84597 ], [ -0.495536, 48.84904 ], [ -0.49708, 48.85578 ], [ -0.477606, 48.85936 ], [ -0.469371, 48.86803 ], [ -0.464764, 48.87099 ], [ -0.432673, 48.872694 ], [ -0.424948, 48.86976 ], [ -0.425236, 48.86646 ], [ -0.410852, 48.869961 ], [ -0.406375, 48.86827 ], [ -0.404559, 48.86157 ], [ -0.401276, 48.85894 ], [ -0.388768, 48.84807 ], [ -0.383774, 48.84698 ], [ -0.365815, 48.84871 ], [ -0.363386, 48.849126 ], [ -0.359269, 48.843661 ], [ -0.368887, 48.841806 ], [ -0.369708, 48.83553 ], [ -0.34715, 48.822514 ], [ -0.345416, 48.821833 ], [ -0.333989, 48.8335 ], [ -0.32966, 48.835523 ], [ -0.33373, 48.84351 ], [ -0.335751, 48.84632 ], [ -0.330234, 48.85474 ], [ -0.32852, 48.8576 ], [ -0.307438, 48.857707 ], [ -0.301102, 48.85222 ], [ -0.298548, 48.849159 ], [ -0.287467, 48.852722 ], [ -0.283313, 48.85239 ], [ -0.268018, 48.853183 ], [ -0.258988, 48.849901 ], [ -0.253713, 48.849514 ], [ -0.242242, 48.84928 ], [ -0.231433, 48.84476 ], [ -0.227631, 48.843263 ], [ -0.214942, 48.84073 ], [ -0.208, 48.84447 ], [ -0.204676, 48.846527 ], [ -0.198952, 48.84103 ], [ -0.180463, 48.83635 ], [ -0.174129, 48.82773 ], [ -0.151769, 48.82025 ], [ -0.14839, 48.822514 ], [ -0.130837, 48.817359 ], [ -0.126169, 48.81657 ], [ -0.144833, 48.83246 ], [ -0.14223, 48.83543 ], [ -0.127746, 48.83784 ], [ -0.124776, 48.847426 ], [ -0.114839, 48.840674 ], [ -0.106732, 48.83962 ], [ -0.08833, 48.84408 ], [ -0.079195, 48.84248 ], [ -0.075024, 48.84065 ], [ -0.069593, 48.842663 ], [ -0.060574, 48.85022 ], [ -0.059006, 48.853492 ], [ -0.03408, 48.86691 ], [ -0.030807, 48.869734 ], [ -0.031067, 48.873733 ], [ -0.02257, 48.876846 ], [ -0.009494, 48.87462 ], [ -0.006654, 48.872 ], [ -0.006177, 48.87223 ], [ -0.008969, 48.8809 ], [ -0.009861, 48.8838 ], [ 0.023808, 48.89517 ], [ 0.050136, 48.89928 ], [ 0.058093, 48.90507 ], [ 0.058007, 48.9078 ], [ 0.061767, 48.91375 ], [ 0.06374, 48.91677 ], [ 0.065764, 48.926145 ], [ 0.078168, 48.93532 ], [ 0.080723, 48.937984 ], [ 0.101453, 48.936112 ], [ 0.125316, 48.94992 ], [ 0.127608, 48.95222 ], [ 0.136288, 48.9504 ], [ 0.144625, 48.94337 ], [ 0.146026, 48.94051 ], [ 0.150868, 48.92717 ], [ 0.165756, 48.92588 ], [ 0.170789, 48.927 ], [ 0.179152, 48.9299 ], [ 0.184684, 48.93847 ], [ 0.187316, 48.94107 ], [ 0.214989, 48.94645 ], [ 0.222151, 48.943047 ], [ 0.224621, 48.94029 ], [ 0.2389, 48.9425 ], [ 0.242449, 48.95542 ], [ 0.244401, 48.958552 ], [ 0.257001, 48.963447 ], [ 0.271397, 48.96486 ], [ 0.276222, 48.96538 ], [ 0.278183, 48.95012 ], [ 0.282713, 48.94891 ], [ 0.304392, 48.95315 ], [ 0.308722, 48.954227 ], [ 0.319844, 48.94704 ], [ 0.329514, 48.945218 ], [ 0.333231, 48.942782 ], [ 0.356623, 48.94962 ], [ 0.374945, 48.969597 ], [ 0.377447, 48.972558 ], [ 0.404368, 48.96274 ], [ 0.400154, 48.952755 ], [ 0.412815, 48.950626 ], [ 0.396241, 48.93242 ], [ 0.395214, 48.928921 ], [ 0.390826, 48.927107 ], [ 0.387285, 48.91387 ], [ 0.386114, 48.910548 ], [ 0.417946, 48.898471 ], [ 0.426211, 48.8867 ], [ 0.436708, 48.88578 ], [ 0.45004, 48.891016 ], [ 0.443534, 48.88402 ], [ 0.443109, 48.88128 ], [ 0.452557, 48.88003 ], [ 0.457358, 48.87976 ], [ 0.459094, 48.8878 ], [ 0.47437, 48.88706 ], [ 0.496544, 48.87878 ], [ 0.515706, 48.88058 ], [ 0.52088, 48.880798 ], [ 0.549868, 48.87471 ], [ 0.553791, 48.87686 ], [ 0.573844, 48.89177 ], [ 0.578041, 48.893656 ], [ 0.590805, 48.888803 ], [ 0.595643, 48.888028 ], [ 0.596624, 48.884817 ], [ 0.585984, 48.8786 ], [ 0.589631, 48.872603 ], [ 0.608871, 48.8757 ], [ 0.6064, 48.862376 ], [ 0.610658, 48.85606 ], [ 0.619441, 48.852749 ], [ 0.633771, 48.85604 ], [ 0.611184, 48.835084 ], [ 0.607869, 48.832489 ], [ 0.624834, 48.82715 ], [ 0.628768, 48.825159 ], [ 0.642759, 48.816501 ], [ 0.647016, 48.814857 ], [ 0.656093, 48.81357 ], [ 0.660002, 48.811774 ], [ 0.690171, 48.79406 ], [ 0.699117, 48.79286 ], [ 0.703765, 48.791533 ], [ 0.708628, 48.79025 ], [ 0.713196, 48.78856 ], [ 0.716372, 48.785989 ], [ 0.730523, 48.78559 ], [ 0.739437, 48.77753 ], [ 0.752631, 48.77274 ], [ 0.755764, 48.770135 ], [ 0.75678, 48.766465 ], [ 0.751061, 48.760527 ], [ 0.77192, 48.74021 ], [ 0.775034, 48.73736 ], [ 0.763635, 48.73036 ], [ 0.758437, 48.72059 ], [ 0.748398, 48.718448 ], [ 0.743593, 48.717 ], [ 0.732598, 48.70933 ], [ 0.728764, 48.706847 ], [ 0.731016, 48.70383 ], [ 0.75117, 48.703978 ], [ 0.763337, 48.69793 ], [ 0.767302, 48.69582 ], [ 0.767725, 48.69322 ], [ 0.76511, 48.6905 ], [ 0.764138, 48.67572 ], [ 0.767326, 48.673616 ], [ 0.780369, 48.666589 ], [ 0.782205, 48.66652 ], [ 0.796482, 48.674914 ], [ 0.810178, 48.67135 ], [ 0.814819, 48.67017 ], [ 0.809946, 48.66423 ], [ 0.819748, 48.652955 ], [ 0.823565, 48.65067 ], [ 0.821978, 48.64474 ], [ 0.822818, 48.63534 ], [ 0.831762, 48.63342 ], [ 0.827771, 48.63113 ], [ 0.818206, 48.615043 ], [ 0.822398, 48.60887 ], [ 0.826926, 48.6103 ], [ 0.845909, 48.609015 ], [ 0.849312, 48.58594 ], [ 0.867284, 48.57395 ], [ 0.892944, 48.57183 ], [ 0.905802, 48.56598 ], [ 0.910268, 48.564135 ], [ 0.921331, 48.55935 ], [ 0.925711, 48.55965 ], [ 0.937141, 48.5486 ], [ 0.924168, 48.53803 ], [ 0.931842, 48.534151 ], [ 0.962768, 48.524228 ], [ 0.96774, 48.523881 ], [ 0.96615, 48.520507 ], [ 0.954658, 48.50467 ], [ 0.941554, 48.49869 ], [ 0.951279, 48.49341 ], [ 0.955397, 48.49266 ], [ 0.955507, 48.489476 ], [ 0.953055, 48.48016 ], [ 0.935709, 48.47551 ], [ 0.936714, 48.47301 ], [ 0.937356, 48.47045 ], [ 0.940331, 48.46017 ], [ 0.955273, 48.445817 ], [ 0.963768, 48.44198 ], [ 0.974317, 48.44199 ], [ 0.976416, 48.43877 ], [ 0.973173, 48.43622 ], [ 0.945291, 48.41811 ], [ 0.948381, 48.40164 ], [ 0.929503, 48.39059 ], [ 0.926529, 48.384112 ], [ 0.922214, 48.38252 ], [ 0.907347, 48.3701 ], [ 0.904504, 48.37263 ], [ 0.896387, 48.370909 ], [ 0.894525, 48.367825 ], [ 0.883707, 48.35672 ], [ 0.869034, 48.35723 ], [ 0.853889, 48.349113 ], [ 0.840028, 48.35291 ], [ 0.841975, 48.349896 ], [ 0.827867, 48.342311 ], [ 0.824902, 48.3448 ], [ 0.818405, 48.349419 ], [ 0.813732, 48.348811 ], [ 0.788027, 48.341322 ], [ 0.785432, 48.34044 ], [ 0.785039, 48.337585 ], [ 0.781343, 48.332691 ], [ 0.778368, 48.32995 ], [ 0.769234, 48.32188 ], [ 0.769615, 48.31513 ], [ 0.757286, 48.300771 ], [ 0.760447, 48.298131 ], [ 0.764576, 48.299991 ], [ 0.778584, 48.302109 ], [ 0.797486, 48.291445 ], [ 0.807066, 48.28973 ], [ 0.802328, 48.288196 ], [ 0.794042, 48.284127 ], [ 0.785981, 48.2712 ], [ 0.791517, 48.265231 ], [ 0.787321, 48.26144 ], [ 0.822102, 48.223557 ], [ 0.829446, 48.21137 ], [ 0.80662, 48.20422 ], [ 0.80674, 48.19745 ], [ 0.797655, 48.19446 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "63", "CODE_DEPT": "62", "NOM_DEPT": "PAS-DE-CALAIS", "CODE_CHF": "041", "NOM_CHF": "ARRAS", "X_CHF_LIEU": "6843", "Y_CHF_LIEU": "70212", "X_CENTROID": "6494", "Y_CENTROID": "70442", "CODE_REG": "31", "NOM_REGION": "NORD-PAS-DE-CALAIS" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.090254, 50.053741 ], [ 3.087305, 50.0509 ], [ 3.074492, 50.0453 ], [ 3.071427, 50.047906 ], [ 3.06154, 50.04938 ], [ 3.057637, 50.05122 ], [ 3.030412, 50.057479 ], [ 3.026241, 50.05678 ], [ 3.024914, 50.054148 ], [ 3.02193, 50.05684 ], [ 3.01197, 50.058039 ], [ 3.006835, 50.054609 ], [ 3.002692, 50.05298 ], [ 2.993849, 50.050415 ], [ 2.988758, 50.0493 ], [ 2.971536, 50.04137 ], [ 2.969176, 50.046692 ], [ 2.961795, 50.05014 ], [ 2.957679, 50.05113 ], [ 2.949406, 50.05304 ], [ 2.944091, 50.0527 ], [ 2.940021, 50.05047 ], [ 2.938699, 50.047337 ], [ 2.934866, 50.04524 ], [ 2.930726, 50.04403 ], [ 2.920175, 50.048592 ], [ 2.919557, 50.042089 ], [ 2.917016, 50.03554 ], [ 2.896167, 50.03656 ], [ 2.882694, 50.0312 ], [ 2.879144, 50.02915 ], [ 2.875747, 50.027 ], [ 2.878569, 50.02452 ], [ 2.871189, 50.021076 ], [ 2.856377, 50.02358 ], [ 2.855422, 50.02607 ], [ 2.853071, 50.02916 ], [ 2.859918, 50.03366 ], [ 2.869954, 50.034951 ], [ 2.876374, 50.04424 ], [ 2.864729, 50.05992 ], [ 2.860778, 50.060646 ], [ 2.856704, 50.060992 ], [ 2.854922, 50.064277 ], [ 2.855414, 50.07799 ], [ 2.85018, 50.07808 ], [ 2.837806, 50.07201 ], [ 2.831235, 50.06317 ], [ 2.82771, 50.06563 ], [ 2.8105, 50.05987 ], [ 2.807198, 50.06246 ], [ 2.804223, 50.05971 ], [ 2.795705, 50.05127 ], [ 2.79451, 50.05005 ], [ 2.780917, 50.04835 ], [ 2.775739, 50.0428 ], [ 2.752195, 50.04032 ], [ 2.748877, 50.042918 ], [ 2.742339, 50.04801 ], [ 2.745871, 50.05013 ], [ 2.763746, 50.060597 ], [ 2.7609, 50.069384 ], [ 2.764392, 50.071825 ], [ 2.774462, 50.079226 ], [ 2.77886, 50.08847 ], [ 2.781836, 50.09111 ], [ 2.778142, 50.09943 ], [ 2.778492, 50.102405 ], [ 2.780898, 50.111156 ], [ 2.77794, 50.11376 ], [ 2.763849, 50.11051 ], [ 2.749537, 50.112803 ], [ 2.74715, 50.11551 ], [ 2.72993, 50.12586 ], [ 2.725191, 50.126365 ], [ 2.707128, 50.12643 ], [ 2.71352, 50.11019 ], [ 2.703494, 50.107689 ], [ 2.697575, 50.102573 ], [ 2.715239, 50.09011 ], [ 2.718994, 50.08764 ], [ 2.715684, 50.08536 ], [ 2.703859, 50.08099 ], [ 2.701148, 50.08391 ], [ 2.691593, 50.09203 ], [ 2.682389, 50.095045 ], [ 2.672081, 50.09363 ], [ 2.669203, 50.0961 ], [ 2.656525, 50.100283 ], [ 2.653888, 50.09803 ], [ 2.647546, 50.09441 ], [ 2.644387, 50.096988 ], [ 2.635779, 50.10002 ], [ 2.630646, 50.10511 ], [ 2.630728, 50.10728 ], [ 2.626761, 50.10933 ], [ 2.611729, 50.1101 ], [ 2.592904, 50.106555 ], [ 2.590719, 50.10911 ], [ 2.575671, 50.11333 ], [ 2.573, 50.11546 ], [ 2.569355, 50.1204 ], [ 2.569643, 50.1226 ], [ 2.583003, 50.13214 ], [ 2.586635, 50.137365 ], [ 2.582367, 50.13804 ], [ 2.577454, 50.139103 ], [ 2.56837, 50.13596 ], [ 2.564676, 50.13824 ], [ 2.551329, 50.141704 ], [ 2.546349, 50.13609 ], [ 2.548176, 50.12382 ], [ 2.545311, 50.12092 ], [ 2.532332, 50.11508 ], [ 2.514949, 50.140821 ], [ 2.510031, 50.140747 ], [ 2.491086, 50.137662 ], [ 2.475975, 50.13686 ], [ 2.472807, 50.13516 ], [ 2.4694, 50.133645 ], [ 2.464991, 50.131731 ], [ 2.455049, 50.13118 ], [ 2.454672, 50.12855 ], [ 2.449995, 50.1244 ], [ 2.44742, 50.11975 ], [ 2.446132, 50.11744 ], [ 2.44424, 50.1142 ], [ 2.429658, 50.088185 ], [ 2.424694, 50.087668 ], [ 2.417504, 50.09138 ], [ 2.414508, 50.10065 ], [ 2.409489, 50.1012 ], [ 2.39739, 50.1065 ], [ 2.394888, 50.110193 ], [ 2.37546, 50.10926 ], [ 2.379793, 50.11919 ], [ 2.385485, 50.13942 ], [ 2.391722, 50.144852 ], [ 2.389892, 50.15519 ], [ 2.398866, 50.15642 ], [ 2.401777, 50.16201 ], [ 2.403268, 50.1648 ], [ 2.410836, 50.1632 ], [ 2.41453, 50.16417 ], [ 2.415553, 50.16998 ], [ 2.414846, 50.17311 ], [ 2.417858, 50.17386 ], [ 2.420855, 50.17464 ], [ 2.435006, 50.17962 ], [ 2.445443, 50.17925 ], [ 2.450821, 50.17852 ], [ 2.469649, 50.18738 ], [ 2.473887, 50.18865 ], [ 2.481204, 50.19124 ], [ 2.485371, 50.19134 ], [ 2.49209, 50.19369 ], [ 2.49569, 50.19456 ], [ 2.495053, 50.19955 ], [ 2.492589, 50.2025 ], [ 2.488928, 50.204861 ], [ 2.485204, 50.2078 ], [ 2.480374, 50.208121 ], [ 2.464414, 50.21423 ], [ 2.459599, 50.219552 ], [ 2.456774, 50.221929 ], [ 2.452066, 50.23021 ], [ 2.446938, 50.229347 ], [ 2.436855, 50.227263 ], [ 2.432034, 50.22777 ], [ 2.4174, 50.228295 ], [ 2.407013, 50.2343 ], [ 2.402588, 50.23322 ], [ 2.389474, 50.22476 ], [ 2.384861, 50.22541 ], [ 2.383136, 50.22576 ], [ 2.373296, 50.217769 ], [ 2.370989, 50.210888 ], [ 2.36782, 50.20802 ], [ 2.364877, 50.20728 ], [ 2.361731, 50.207078 ], [ 2.336655, 50.23499 ], [ 2.334836, 50.23706 ], [ 2.332878, 50.23908 ], [ 2.32887, 50.237219 ], [ 2.314767, 50.23442 ], [ 2.31625, 50.23139 ], [ 2.320808, 50.23284 ], [ 2.331301, 50.22172 ], [ 2.327132, 50.213098 ], [ 2.325191, 50.21593 ], [ 2.318389, 50.21915 ], [ 2.301693, 50.212957 ], [ 2.296925, 50.21371 ], [ 2.290685, 50.21858 ], [ 2.287735, 50.22135 ], [ 2.269351, 50.227649 ], [ 2.253431, 50.21468 ], [ 2.239739, 50.21317 ], [ 2.230807, 50.21063 ], [ 2.227382, 50.20861 ], [ 2.224421, 50.21736 ], [ 2.213785, 50.21736 ], [ 2.204867, 50.21395 ], [ 2.199908, 50.215175 ], [ 2.19949, 50.21241 ], [ 2.187737, 50.20968 ], [ 2.183477, 50.21002 ], [ 2.178498, 50.207293 ], [ 2.173297, 50.20789 ], [ 2.14976, 50.19043 ], [ 2.146971, 50.19327 ], [ 2.141667, 50.20246 ], [ 2.135692, 50.20745 ], [ 2.12193, 50.21029 ], [ 2.114559, 50.202862 ], [ 2.110291, 50.20449 ], [ 2.096639, 50.20663 ], [ 2.085714, 50.20102 ], [ 2.08483, 50.20422 ], [ 2.083606, 50.21697 ], [ 2.080371, 50.219413 ], [ 2.068487, 50.227091 ], [ 2.067945, 50.232978 ], [ 2.063816, 50.234456 ], [ 2.064081, 50.23752 ], [ 2.077822, 50.24873 ], [ 2.075299, 50.25116 ], [ 2.064405, 50.25562 ], [ 2.059045, 50.25537 ], [ 2.048668, 50.256771 ], [ 2.037773, 50.26406 ], [ 2.034272, 50.26619 ], [ 2.026236, 50.26955 ], [ 2.01185, 50.26797 ], [ 2.003229, 50.27038 ], [ 2.000611, 50.27243 ], [ 1.994128, 50.27572 ], [ 1.969736, 50.282455 ], [ 1.959874, 50.29049 ], [ 1.955702, 50.289557 ], [ 1.949353, 50.2862 ], [ 1.945648, 50.287747 ], [ 1.934163, 50.29938 ], [ 1.959846, 50.311618 ], [ 1.963934, 50.31805 ], [ 1.964332, 50.32122 ], [ 1.946195, 50.33149 ], [ 1.941134, 50.330674 ], [ 1.919498, 50.31259 ], [ 1.898883, 50.31333 ], [ 1.898602, 50.31592 ], [ 1.893294, 50.31817 ], [ 1.888094, 50.31806 ], [ 1.875354, 50.32273 ], [ 1.869131, 50.33447 ], [ 1.852133, 50.34107 ], [ 1.851698, 50.34291 ], [ 1.846308, 50.34361 ], [ 1.821907, 50.35029 ], [ 1.81855, 50.35223 ], [ 1.804679, 50.35961 ], [ 1.800413, 50.35955 ], [ 1.791952, 50.35946 ], [ 1.786838, 50.359656 ], [ 1.761849, 50.361608 ], [ 1.755055, 50.35705 ], [ 1.740339, 50.35452 ], [ 1.730052, 50.34782 ], [ 1.725573, 50.34572 ], [ 1.703836, 50.34304 ], [ 1.694837, 50.33888 ], [ 1.69253, 50.34291 ], [ 1.690565, 50.33969 ], [ 1.667566, 50.33074 ], [ 1.662287, 50.331458 ], [ 1.66431, 50.334533 ], [ 1.651627, 50.33981 ], [ 1.646499, 50.340077 ], [ 1.641544, 50.35215 ], [ 1.631789, 50.36152 ], [ 1.633358, 50.36424 ], [ 1.623055, 50.37143 ], [ 1.617782, 50.372227 ], [ 1.613351, 50.370489 ], [ 1.600635, 50.375949 ], [ 1.580943, 50.378678 ], [ 1.573413, 50.38727 ], [ 1.571513, 50.390377 ], [ 1.555965, 50.39875 ], [ 1.568914, 50.439935 ], [ 1.573471, 50.4677 ], [ 1.574189, 50.47116 ], [ 1.576258, 50.48754 ], [ 1.578151, 50.51921 ], [ 1.585536, 50.53601 ], [ 1.590797, 50.53675 ], [ 1.595956, 50.53056 ], [ 1.610679, 50.525762 ], [ 1.630697, 50.51362 ], [ 1.63487, 50.51133 ], [ 1.637225, 50.509647 ], [ 1.640627, 50.508786 ], [ 1.655632, 50.507783 ], [ 1.660189, 50.50634 ], [ 1.661916, 50.50652 ], [ 1.661612, 50.50736 ], [ 1.647457, 50.51128 ], [ 1.635626, 50.51358 ], [ 1.613803, 50.53763 ], [ 1.609281, 50.53966 ], [ 1.580884, 50.564105 ], [ 1.576899, 50.57743 ], [ 1.578796, 50.58064 ], [ 1.578041, 50.60334 ], [ 1.578329, 50.60662 ], [ 1.576175, 50.636336 ], [ 1.578647, 50.63925 ], [ 1.572075, 50.66092 ], [ 1.572168, 50.664106 ], [ 1.562514, 50.689053 ], [ 1.562605, 50.69228 ], [ 1.561442, 50.69935 ], [ 1.570984, 50.71213 ], [ 1.567627, 50.722238 ], [ 1.584842, 50.727918 ], [ 1.586783, 50.72479 ], [ 1.591143, 50.72659 ], [ 1.599415, 50.72455 ], [ 1.593564, 50.73354 ], [ 1.5957, 50.74664 ], [ 1.594676, 50.74986 ], [ 1.605048, 50.7655 ], [ 1.604096, 50.80318 ], [ 1.609219, 50.804337 ], [ 1.599884, 50.805946 ], [ 1.59543, 50.81476 ], [ 1.594044, 50.817725 ], [ 1.58994, 50.82865 ], [ 1.588712, 50.831501 ], [ 1.578546, 50.855164 ], [ 1.581354, 50.86909 ], [ 1.585456, 50.87146 ], [ 1.612931, 50.87268 ], [ 1.631553, 50.87619 ], [ 1.636224, 50.877037 ], [ 1.666962, 50.8922 ], [ 1.689409, 50.91251 ], [ 1.692683, 50.915377 ], [ 1.70248, 50.92175 ], [ 1.705862, 50.9238 ], [ 1.725274, 50.93628 ], [ 1.744412, 50.94364 ], [ 1.779646, 50.95451 ], [ 1.823042, 50.961484 ], [ 1.828446, 50.9624 ], [ 1.839031, 50.96478 ], [ 1.846962, 50.96335 ], [ 1.86769, 50.97388 ], [ 1.889653, 50.97273 ], [ 1.907155, 50.981283 ], [ 1.912384, 50.9826 ], [ 1.942352, 50.98805 ], [ 1.967848, 50.98879 ], [ 1.972904, 50.98963 ], [ 1.993557, 50.99374 ], [ 2.041204, 50.99727 ], [ 2.051657, 51.00446 ], [ 2.06212, 51.00599 ], [ 2.067712, 51.0065 ], [ 2.089192, 51.00349 ], [ 2.106566, 50.989943 ], [ 2.110463, 50.98741 ], [ 2.10927, 50.98417 ], [ 2.121666, 50.979107 ], [ 2.122685, 50.97288 ], [ 2.125134, 50.970134 ], [ 2.128009, 50.96739 ], [ 2.135655, 50.96309 ], [ 2.141819, 50.94747 ], [ 2.145509, 50.94511 ], [ 2.151317, 50.93257 ], [ 2.164601, 50.91492 ], [ 2.16555, 50.911653 ], [ 2.166938, 50.908442 ], [ 2.18877, 50.874647 ], [ 2.19034, 50.87137 ], [ 2.190113, 50.86793 ], [ 2.203616, 50.84971 ], [ 2.202647, 50.842941 ], [ 2.206205, 50.84023 ], [ 2.208621, 50.837058 ], [ 2.207562, 50.82789 ], [ 2.212661, 50.82256 ], [ 2.211363, 50.81953 ], [ 2.21343, 50.81055 ], [ 2.22266, 50.80987 ], [ 2.226713, 50.80782 ], [ 2.239846, 50.79903 ], [ 2.242758, 50.79652 ], [ 2.251044, 50.78963 ], [ 2.254833, 50.78803 ], [ 2.273686, 50.783234 ], [ 2.287618, 50.78681 ], [ 2.288277, 50.7803 ], [ 2.288578, 50.777039 ], [ 2.309115, 50.78505 ], [ 2.31261, 50.78721 ], [ 2.319058, 50.78244 ], [ 2.340563, 50.780906 ], [ 2.360333, 50.77539 ], [ 2.365724, 50.77547 ], [ 2.374318, 50.783027 ], [ 2.381448, 50.77868 ], [ 2.386543, 50.777525 ], [ 2.40068, 50.77399 ], [ 2.404331, 50.771635 ], [ 2.407129, 50.767171 ], [ 2.411478, 50.766734 ], [ 2.382123, 50.75499 ], [ 2.363636, 50.751568 ], [ 2.342195, 50.740698 ], [ 2.339683, 50.73067 ], [ 2.350509, 50.72655 ], [ 2.350813, 50.72054 ], [ 2.353433, 50.717992 ], [ 2.362256, 50.71111 ], [ 2.366373, 50.709677 ], [ 2.366375, 50.7095 ], [ 2.386124, 50.69858 ], [ 2.367167, 50.687067 ], [ 2.363525, 50.68464 ], [ 2.368168, 50.67936 ], [ 2.371374, 50.677092 ], [ 2.378528, 50.67193 ], [ 2.401762, 50.679916 ], [ 2.409622, 50.67093 ], [ 2.414511, 50.669432 ], [ 2.416134, 50.665832 ], [ 2.421532, 50.66552 ], [ 2.430188, 50.6568 ], [ 2.44606, 50.6551 ], [ 2.450822, 50.653445 ], [ 2.470104, 50.64149 ], [ 2.473183, 50.6386 ], [ 2.491542, 50.63172 ], [ 2.501953, 50.63196 ], [ 2.506806, 50.633424 ], [ 2.528875, 50.64257 ], [ 2.534119, 50.64167 ], [ 2.541783, 50.62923 ], [ 2.551557, 50.62651 ], [ 2.561693, 50.62746 ], [ 2.564301, 50.62443 ], [ 2.568492, 50.632523 ], [ 2.582335, 50.63418 ], [ 2.584993, 50.63692 ], [ 2.592547, 50.6347 ], [ 2.593574, 50.631603 ], [ 2.613497, 50.63349 ], [ 2.616283, 50.6271 ], [ 2.630516, 50.617952 ], [ 2.644364, 50.62256 ], [ 2.669852, 50.625332 ], [ 2.673575, 50.634334 ], [ 2.683002, 50.636413 ], [ 2.684208, 50.63311 ], [ 2.698103, 50.62915 ], [ 2.718588, 50.62936 ], [ 2.726066, 50.613847 ], [ 2.747182, 50.60525 ], [ 2.751518, 50.60689 ], [ 2.750512, 50.61355 ], [ 2.760314, 50.63147 ], [ 2.764665, 50.633382 ], [ 2.784663, 50.629183 ], [ 2.792447, 50.63366 ], [ 2.788444, 50.63595 ], [ 2.759178, 50.65068 ], [ 2.759527, 50.651402 ], [ 2.769677, 50.663617 ], [ 2.796618, 50.66296 ], [ 2.80598, 50.6665 ], [ 2.809188, 50.66937 ], [ 2.818177, 50.66327 ], [ 2.821276, 50.661278 ], [ 2.830892, 50.660718 ], [ 2.842615, 50.65488 ], [ 2.845502, 50.652274 ], [ 2.86681, 50.6338 ], [ 2.869738, 50.6311 ], [ 2.866202, 50.629046 ], [ 2.862341, 50.62726 ], [ 2.857106, 50.627313 ], [ 2.841416, 50.627662 ], [ 2.831382, 50.62002 ], [ 2.828412, 50.61824 ], [ 2.82454, 50.61594 ], [ 2.808041, 50.60755 ], [ 2.792065, 50.586288 ], [ 2.789076, 50.58306 ], [ 2.793326, 50.58123 ], [ 2.808235, 50.57885 ], [ 2.815076, 50.56599 ], [ 2.813165, 50.54931 ], [ 2.808764, 50.55082 ], [ 2.794472, 50.549206 ], [ 2.796583, 50.54632 ], [ 2.801323, 50.53732 ], [ 2.798854, 50.52792 ], [ 2.803772, 50.52691 ], [ 2.810636, 50.52882 ], [ 2.81437, 50.52813 ], [ 2.824771, 50.52561 ], [ 2.846701, 50.52791 ], [ 2.852162, 50.5286 ], [ 2.857089, 50.529234 ], [ 2.862058, 50.52977 ], [ 2.878465, 50.534651 ], [ 2.882504, 50.53597 ], [ 2.886965, 50.53766 ], [ 2.887046, 50.53298 ], [ 2.889207, 50.52994 ], [ 2.881294, 50.51769 ], [ 2.882077, 50.50775 ], [ 2.901641, 50.50101 ], [ 2.904831, 50.503456 ], [ 2.910143, 50.49983 ], [ 2.922758, 50.505749 ], [ 2.926865, 50.50781 ], [ 2.946244, 50.51042 ], [ 2.950676, 50.511903 ], [ 2.96471, 50.51278 ], [ 2.989854, 50.498861 ], [ 2.99423, 50.49666 ], [ 3.00439, 50.495011 ], [ 3.008344, 50.49277 ], [ 3.010848, 50.49027 ], [ 3.024325, 50.48406 ], [ 3.021001, 50.475423 ], [ 3.017441, 50.47284 ], [ 3.017258, 50.470352 ], [ 3.019563, 50.46833 ], [ 3.017172, 50.465765 ], [ 3.008268, 50.45586 ], [ 3.016703, 50.45198 ], [ 3.016715, 50.445271 ], [ 3.016292, 50.44192 ], [ 3.029859, 50.44468 ], [ 3.038558, 50.442143 ], [ 3.041611, 50.44451 ], [ 3.053992, 50.454884 ], [ 3.058817, 50.456183 ], [ 3.062966, 50.456962 ], [ 3.066525, 50.458531 ], [ 3.067817, 50.44685 ], [ 3.077219, 50.44499 ], [ 3.081786, 50.44373 ], [ 3.078492, 50.44097 ], [ 3.069662, 50.428592 ], [ 3.071442, 50.42531 ], [ 3.065917, 50.423558 ], [ 3.062224, 50.42562 ], [ 3.038979, 50.42318 ], [ 3.037445, 50.41999 ], [ 3.029516, 50.41154 ], [ 3.027533, 50.40852 ], [ 3.014959, 50.4031 ], [ 2.995463, 50.39994 ], [ 2.991727, 50.4017 ], [ 2.980518, 50.40288 ], [ 2.983904, 50.40024 ], [ 2.990422, 50.39495 ], [ 2.993935, 50.38177 ], [ 3.001685, 50.3739 ], [ 3.002793, 50.370887 ], [ 3.008267, 50.3625 ], [ 3.00734, 50.359486 ], [ 3.010385, 50.35878 ], [ 3.013459, 50.35941 ], [ 3.035188, 50.34633 ], [ 3.038806, 50.34402 ], [ 3.042777, 50.34486 ], [ 3.046692, 50.34581 ], [ 3.058157, 50.335402 ], [ 3.061114, 50.33278 ], [ 3.060366, 50.32892 ], [ 3.074598, 50.31711 ], [ 3.079182, 50.316213 ], [ 3.082137, 50.313778 ], [ 3.084867, 50.31123 ], [ 3.080685, 50.30911 ], [ 3.065485, 50.30731 ], [ 3.058413, 50.30227 ], [ 3.050529, 50.29609 ], [ 3.047612, 50.293846 ], [ 3.051618, 50.29197 ], [ 3.055204, 50.28976 ], [ 3.052454, 50.28759 ], [ 3.055097, 50.2823 ], [ 3.044308, 50.283109 ], [ 3.036142, 50.28755 ], [ 3.015274, 50.28378 ], [ 3.012244, 50.26798 ], [ 3.015395, 50.26615 ], [ 3.018644, 50.264394 ], [ 3.02981, 50.26719 ], [ 3.036395, 50.26941 ], [ 3.050776, 50.277171 ], [ 3.054641, 50.27533 ], [ 3.057623, 50.27316 ], [ 3.061811, 50.27209 ], [ 3.062161, 50.27182 ], [ 3.077477, 50.27436 ], [ 3.102434, 50.269337 ], [ 3.107559, 50.26857 ], [ 3.127684, 50.26638 ], [ 3.132839, 50.26624 ], [ 3.138159, 50.26525 ], [ 3.150799, 50.26214 ], [ 3.154141, 50.2602 ], [ 3.149535, 50.260884 ], [ 3.147167, 50.24622 ], [ 3.169753, 50.24209 ], [ 3.174272, 50.240954 ], [ 3.18238, 50.23364 ], [ 3.186851, 50.23493 ], [ 3.184117, 50.226231 ], [ 3.180625, 50.22424 ], [ 3.178885, 50.219073 ], [ 3.147956, 50.21915 ], [ 3.142792, 50.21924 ], [ 3.135974, 50.208 ], [ 3.132574, 50.20258 ], [ 3.131195, 50.199495 ], [ 3.138996, 50.19748 ], [ 3.142896, 50.19649 ], [ 3.147055, 50.18825 ], [ 3.15517, 50.18466 ], [ 3.156377, 50.18157 ], [ 3.151507, 50.18027 ], [ 3.137514, 50.16694 ], [ 3.115648, 50.16664 ], [ 3.100959, 50.161969 ], [ 3.112266, 50.15477 ], [ 3.115494, 50.148244 ], [ 3.130229, 50.14456 ], [ 3.135538, 50.14421 ], [ 3.135333, 50.140743 ], [ 3.130662, 50.13914 ], [ 3.095967, 50.12452 ], [ 3.093601, 50.12164 ], [ 3.103755, 50.114613 ], [ 3.104294, 50.11138 ], [ 3.105585, 50.10803 ], [ 3.104601, 50.10463 ], [ 3.109628, 50.104783 ], [ 3.113084, 50.095556 ], [ 3.114055, 50.09238 ], [ 3.103729, 50.080961 ], [ 3.088853, 50.082176 ], [ 3.087669, 50.07557 ], [ 3.094889, 50.071035 ], [ 3.098108, 50.068437 ], [ 3.093709, 50.06685 ], [ 3.085835, 50.06422 ], [ 3.084626, 50.05849 ], [ 3.090254, 50.053741 ] ], [ [ 3.003746, 50.15016 ], [ 2.994718, 50.13815 ], [ 3.002389, 50.12996 ], [ 3.000531, 50.12011 ], [ 3.007835, 50.11563 ], [ 3.010628, 50.112806 ], [ 3.024637, 50.116387 ], [ 3.034799, 50.12765 ], [ 3.037036, 50.13058 ], [ 3.052154, 50.13241 ], [ 3.062491, 50.130429 ], [ 3.067294, 50.128738 ], [ 3.072368, 50.130818 ], [ 3.072024, 50.13422 ], [ 3.067794, 50.14749 ], [ 3.092079, 50.160674 ], [ 3.095886, 50.16313 ], [ 3.092256, 50.165442 ], [ 3.090058, 50.171757 ], [ 3.085555, 50.170979 ], [ 3.062726, 50.17378 ], [ 3.060737, 50.17094 ], [ 3.056215, 50.166048 ], [ 3.040398, 50.1597 ], [ 3.039068, 50.15671 ], [ 3.035919, 50.15156 ], [ 3.026289, 50.151016 ], [ 3.022362, 50.15195 ], [ 3.019176, 50.15371 ], [ 3.014941, 50.15242 ], [ 3.007826, 50.14868 ], [ 3.003746, 50.15016 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "64", "CODE_DEPT": "63", "NOM_DEPT": "PUY-DE-DOME", "CODE_CHF": "113", "NOM_CHF": "CLERMONT-FERRAND", "X_CHF_LIEU": "7067", "Y_CHF_LIEU": "65200", "X_CENTROID": "7109", "Y_CENTROID": "65140", "CODE_REG": "83", "NOM_REGION": "AUVERGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.103498, 45.354373 ], [ 3.100442, 45.352503 ], [ 3.096457, 45.352038 ], [ 3.093847, 45.349087 ], [ 3.088392, 45.339727 ], [ 3.07004, 45.33624 ], [ 3.063179, 45.33137 ], [ 3.065741, 45.31774 ], [ 3.056889, 45.309826 ], [ 3.059399, 45.30683 ], [ 3.05557, 45.305297 ], [ 3.036731, 45.2982 ], [ 3.03224, 45.297796 ], [ 3.023857, 45.295538 ], [ 3.018305, 45.28707 ], [ 3.013611, 45.28828 ], [ 2.999196, 45.290733 ], [ 2.967984, 45.306882 ], [ 2.948625, 45.30913 ], [ 2.947996, 45.312565 ], [ 2.932074, 45.32993 ], [ 2.92452, 45.34642 ], [ 2.924245, 45.3511 ], [ 2.920906, 45.36484 ], [ 2.922728, 45.368108 ], [ 2.918284, 45.366943 ], [ 2.905135, 45.36955 ], [ 2.892968, 45.37924 ], [ 2.888952, 45.380965 ], [ 2.880617, 45.3831 ], [ 2.87353, 45.37537 ], [ 2.868737, 45.37611 ], [ 2.857949, 45.383046 ], [ 2.852379, 45.39234 ], [ 2.847408, 45.39209 ], [ 2.828076, 45.390757 ], [ 2.815354, 45.4004 ], [ 2.789725, 45.39052 ], [ 2.785148, 45.384578 ], [ 2.780556, 45.38563 ], [ 2.776168, 45.38685 ], [ 2.762087, 45.38649 ], [ 2.750028, 45.391286 ], [ 2.745843, 45.39262 ], [ 2.728285, 45.389776 ], [ 2.714525, 45.38147 ], [ 2.70457, 45.389 ], [ 2.699535, 45.39845 ], [ 2.681746, 45.409104 ], [ 2.679942, 45.422696 ], [ 2.683295, 45.42459 ], [ 2.690031, 45.43185 ], [ 2.688464, 45.437694 ], [ 2.674162, 45.438122 ], [ 2.660432, 45.434795 ], [ 2.651365, 45.442745 ], [ 2.646883, 45.443613 ], [ 2.638222, 45.44576 ], [ 2.624533, 45.4439 ], [ 2.62547, 45.44728 ], [ 2.622732, 45.464336 ], [ 2.616335, 45.464152 ], [ 2.601189, 45.45092 ], [ 2.591404, 45.45063 ], [ 2.574355, 45.45663 ], [ 2.565898, 45.46486 ], [ 2.561151, 45.464724 ], [ 2.535771, 45.457499 ], [ 2.536998, 45.463817 ], [ 2.543963, 45.478982 ], [ 2.539263, 45.47925 ], [ 2.521354, 45.482391 ], [ 2.508409, 45.478508 ], [ 2.51389, 45.49284 ], [ 2.510569, 45.497743 ], [ 2.508997, 45.50023 ], [ 2.509567, 45.50681 ], [ 2.518362, 45.518911 ], [ 2.514877, 45.524893 ], [ 2.517911, 45.53107 ], [ 2.51498, 45.54099 ], [ 2.518148, 45.543574 ], [ 2.516673, 45.55115 ], [ 2.51588, 45.55388 ], [ 2.507604, 45.553353 ], [ 2.496294, 45.556832 ], [ 2.488221, 45.569016 ], [ 2.47428, 45.579019 ], [ 2.463472, 45.59468 ], [ 2.465476, 45.60105 ], [ 2.474686, 45.60655 ], [ 2.478432, 45.607917 ], [ 2.482026, 45.63521 ], [ 2.486287, 45.64082 ], [ 2.513977, 45.639441 ], [ 2.517926, 45.63991 ], [ 2.51907, 45.64427 ], [ 2.518942, 45.64708 ], [ 2.526007, 45.65567 ], [ 2.51449, 45.66581 ], [ 2.514537, 45.67214 ], [ 2.524542, 45.681215 ], [ 2.528684, 45.6822 ], [ 2.526321, 45.685 ], [ 2.52583, 45.69435 ], [ 2.521281, 45.69582 ], [ 2.521626, 45.70949 ], [ 2.492126, 45.73767 ], [ 2.485224, 45.74686 ], [ 2.471269, 45.749497 ], [ 2.46699, 45.75578 ], [ 2.454754, 45.76116 ], [ 2.450513, 45.75943 ], [ 2.442298, 45.761406 ], [ 2.434119, 45.769857 ], [ 2.433456, 45.773024 ], [ 2.430863, 45.788617 ], [ 2.389333, 45.82402 ], [ 2.38802, 45.82738 ], [ 2.40211, 45.83712 ], [ 2.426321, 45.8343 ], [ 2.432688, 45.839001 ], [ 2.438951, 45.846497 ], [ 2.447823, 45.84582 ], [ 2.449666, 45.85222 ], [ 2.443406, 45.857 ], [ 2.442696, 45.863508 ], [ 2.443424, 45.86674 ], [ 2.465349, 45.86821 ], [ 2.465267, 45.871353 ], [ 2.47428, 45.87116 ], [ 2.487571, 45.864216 ], [ 2.492225, 45.86403 ], [ 2.50158, 45.875787 ], [ 2.502119, 45.886082 ], [ 2.511845, 45.887124 ], [ 2.549707, 45.9089 ], [ 2.553196, 45.911393 ], [ 2.55784, 45.91296 ], [ 2.54389, 45.91661 ], [ 2.542608, 45.92342 ], [ 2.544087, 45.93027 ], [ 2.553174, 45.93797 ], [ 2.551637, 45.94127 ], [ 2.568835, 45.947141 ], [ 2.565828, 45.95686 ], [ 2.602149, 45.96552 ], [ 2.60683, 45.966424 ], [ 2.610789, 45.972732 ], [ 2.600091, 45.98405 ], [ 2.596791, 45.98665 ], [ 2.593557, 45.99938 ], [ 2.598839, 46.008656 ], [ 2.598287, 46.01525 ], [ 2.601761, 46.02106 ], [ 2.600116, 46.0303 ], [ 2.602696, 46.032875 ], [ 2.599212, 46.03549 ], [ 2.573497, 46.047006 ], [ 2.554677, 46.07613 ], [ 2.550659, 46.08644 ], [ 2.552621, 46.093401 ], [ 2.550966, 46.09961 ], [ 2.549019, 46.112802 ], [ 2.550523, 46.118958 ], [ 2.554641, 46.1205 ], [ 2.559959, 46.13228 ], [ 2.559208, 46.13873 ], [ 2.563985, 46.14081 ], [ 2.565379, 46.143041 ], [ 2.574549, 46.139933 ], [ 2.587726, 46.129275 ], [ 2.591384, 46.12678 ], [ 2.598423, 46.129358 ], [ 2.601883, 46.1309 ], [ 2.619412, 46.12462 ], [ 2.623711, 46.1228 ], [ 2.637202, 46.119385 ], [ 2.646827, 46.120748 ], [ 2.654375, 46.12526 ], [ 2.6619, 46.137759 ], [ 2.664111, 46.140458 ], [ 2.668672, 46.15326 ], [ 2.674938, 46.15853 ], [ 2.676724, 46.17206 ], [ 2.68505, 46.17571 ], [ 2.699216, 46.1785 ], [ 2.702702, 46.181007 ], [ 2.71947, 46.17996 ], [ 2.723105, 46.181518 ], [ 2.722605, 46.18809 ], [ 2.730098, 46.196285 ], [ 2.721645, 46.208547 ], [ 2.730277, 46.2204 ], [ 2.732598, 46.223413 ], [ 2.746418, 46.21988 ], [ 2.759837, 46.21 ], [ 2.769665, 46.21074 ], [ 2.783931, 46.20146 ], [ 2.786782, 46.19865 ], [ 2.805593, 46.196421 ], [ 2.810405, 46.196213 ], [ 2.817313, 46.20502 ], [ 2.823309, 46.219961 ], [ 2.817677, 46.23211 ], [ 2.819163, 46.241792 ], [ 2.855298, 46.25519 ], [ 2.85976, 46.25659 ], [ 2.866004, 46.251059 ], [ 2.886301, 46.253135 ], [ 2.905702, 46.248713 ], [ 2.925898, 46.24938 ], [ 2.941248, 46.242082 ], [ 2.945972, 46.24168 ], [ 2.932266, 46.23232 ], [ 2.939127, 46.22375 ], [ 2.936354, 46.2209 ], [ 2.932737, 46.218683 ], [ 2.923866, 46.217102 ], [ 2.915817, 46.212792 ], [ 2.912136, 46.202523 ], [ 2.919911, 46.18947 ], [ 2.919052, 46.18241 ], [ 2.915582, 46.17982 ], [ 2.910762, 46.178659 ], [ 2.913332, 46.176446 ], [ 2.915695, 46.17413 ], [ 2.948325, 46.169174 ], [ 2.95212, 46.17133 ], [ 2.96161, 46.13184 ], [ 2.964396, 46.129063 ], [ 2.968686, 46.12383 ], [ 2.971744, 46.12169 ], [ 2.980121, 46.12452 ], [ 2.994263, 46.123197 ], [ 3.00896, 46.11452 ], [ 3.014279, 46.105277 ], [ 3.021631, 46.101683 ], [ 3.026111, 46.102933 ], [ 3.035161, 46.105479 ], [ 3.039111, 46.107486 ], [ 3.050446, 46.1008 ], [ 3.090942, 46.111725 ], [ 3.099678, 46.095653 ], [ 3.098327, 46.08532 ], [ 3.100845, 46.0823 ], [ 3.108918, 46.081443 ], [ 3.113059, 46.081448 ], [ 3.116072, 46.080356 ], [ 3.118319, 46.07858 ], [ 3.121821, 46.076424 ], [ 3.127839, 46.07149 ], [ 3.174579, 46.06595 ], [ 3.179342, 46.066577 ], [ 3.179455, 46.07346 ], [ 3.214511, 46.074945 ], [ 3.221868, 46.067393 ], [ 3.228259, 46.070487 ], [ 3.232525, 46.06972 ], [ 3.230469, 46.06687 ], [ 3.237284, 46.063247 ], [ 3.241718, 46.062454 ], [ 3.253201, 46.06435 ], [ 3.256571, 46.065798 ], [ 3.275767, 46.062935 ], [ 3.284372, 46.06596 ], [ 3.297921, 46.06435 ], [ 3.302392, 46.06577 ], [ 3.305497, 46.06118 ], [ 3.314361, 46.061601 ], [ 3.317011, 46.059126 ], [ 3.332797, 46.05355 ], [ 3.331634, 46.047269 ], [ 3.332054, 46.044098 ], [ 3.336269, 46.04605 ], [ 3.369134, 46.054484 ], [ 3.382902, 46.06457 ], [ 3.402685, 46.066805 ], [ 3.419742, 46.07438 ], [ 3.422215, 46.07129 ], [ 3.434954, 46.060824 ], [ 3.444781, 46.060291 ], [ 3.453593, 46.06379 ], [ 3.45719, 46.062303 ], [ 3.457308, 46.059394 ], [ 3.460638, 46.057058 ], [ 3.460557, 46.05048 ], [ 3.471773, 46.04022 ], [ 3.467123, 46.03934 ], [ 3.463125, 46.037461 ], [ 3.467401, 46.02788 ], [ 3.464145, 46.008173 ], [ 3.468679, 46.00941 ], [ 3.473174, 46.010738 ], [ 3.486673, 46.01432 ], [ 3.520433, 46.01443 ], [ 3.520709, 46.02037 ], [ 3.538337, 46.02133 ], [ 3.544922, 46.014036 ], [ 3.548701, 46.015845 ], [ 3.553012, 46.01526 ], [ 3.554569, 46.01839 ], [ 3.577777, 46.017844 ], [ 3.584021, 46.02279 ], [ 3.588341, 46.02418 ], [ 3.598457, 46.01774 ], [ 3.613056, 46.00084 ], [ 3.613497, 45.99749 ], [ 3.625873, 45.983702 ], [ 3.630235, 45.96417 ], [ 3.631994, 45.96106 ], [ 3.63916, 45.965428 ], [ 3.66186, 45.961012 ], [ 3.666639, 45.96115 ], [ 3.678016, 45.95595 ], [ 3.680677, 45.94357 ], [ 3.682524, 45.94054 ], [ 3.691148, 45.933452 ], [ 3.693892, 45.93096 ], [ 3.694018, 45.93073 ], [ 3.72135, 45.922745 ], [ 3.726359, 45.917066 ], [ 3.728991, 45.91415 ], [ 3.740233, 45.907764 ], [ 3.752984, 45.88933 ], [ 3.754371, 45.88603 ], [ 3.750312, 45.88437 ], [ 3.734084, 45.87127 ], [ 3.715524, 45.870587 ], [ 3.7172, 45.867641 ], [ 3.720282, 45.861741 ], [ 3.72853, 45.862687 ], [ 3.726607, 45.85957 ], [ 3.720762, 45.851129 ], [ 3.719124, 45.85007 ], [ 3.726892, 45.83027 ], [ 3.712631, 45.80129 ], [ 3.695115, 45.7947 ], [ 3.693391, 45.78863 ], [ 3.700393, 45.783556 ], [ 3.728469, 45.776012 ], [ 3.737972, 45.767782 ], [ 3.733108, 45.76194 ], [ 3.730436, 45.760357 ], [ 3.729002, 45.75789 ], [ 3.727106, 45.75558 ], [ 3.730822, 45.753484 ], [ 3.745951, 45.741173 ], [ 3.755838, 45.74661 ], [ 3.76804, 45.72867 ], [ 3.776168, 45.72512 ], [ 3.780919, 45.724673 ], [ 3.777015, 45.71953 ], [ 3.779998, 45.714062 ], [ 3.78238, 45.71165 ], [ 3.775857, 45.700178 ], [ 3.777585, 45.690566 ], [ 3.792084, 45.67652 ], [ 3.794532, 45.67347 ], [ 3.802989, 45.658734 ], [ 3.805428, 45.656051 ], [ 3.817721, 45.6467 ], [ 3.81931, 45.64043 ], [ 3.820703, 45.637408 ], [ 3.82364, 45.63202 ], [ 3.835863, 45.627138 ], [ 3.858678, 45.624337 ], [ 3.860428, 45.61798 ], [ 3.861186, 45.61473 ], [ 3.86909, 45.61305 ], [ 3.881466, 45.60297 ], [ 3.904504, 45.598862 ], [ 3.908775, 45.597243 ], [ 3.909481, 45.59411 ], [ 3.932168, 45.579365 ], [ 3.935595, 45.577238 ], [ 3.939503, 45.57179 ], [ 3.941931, 45.568999 ], [ 3.944619, 45.56275 ], [ 3.954474, 45.555827 ], [ 3.94643, 45.543404 ], [ 3.958555, 45.51379 ], [ 3.962229, 45.50555 ], [ 3.96484, 45.50322 ], [ 3.969342, 45.50143 ], [ 3.972738, 45.50013 ], [ 3.984007, 45.49506 ], [ 3.983321, 45.48887 ], [ 3.985629, 45.48618 ], [ 3.983336, 45.483219 ], [ 3.971637, 45.47743 ], [ 3.967553, 45.47155 ], [ 3.966383, 45.468283 ], [ 3.973126, 45.459399 ], [ 3.969091, 45.45332 ], [ 3.975106, 45.44827 ], [ 3.971058, 45.44726 ], [ 3.960143, 45.443446 ], [ 3.96286, 45.44078 ], [ 3.96329, 45.437511 ], [ 3.963258, 45.436431 ], [ 3.959804, 45.43416 ], [ 3.937312, 45.429987 ], [ 3.918432, 45.42133 ], [ 3.913895, 45.42225 ], [ 3.911124, 45.419352 ], [ 3.907081, 45.412955 ], [ 3.898541, 45.409818 ], [ 3.899085, 45.40631 ], [ 3.890368, 45.393665 ], [ 3.894516, 45.383762 ], [ 3.892146, 45.36985 ], [ 3.897408, 45.35708 ], [ 3.893419, 45.35522 ], [ 3.874532, 45.355419 ], [ 3.856716, 45.359654 ], [ 3.845234, 45.369836 ], [ 3.837311, 45.366302 ], [ 3.836299, 45.383095 ], [ 3.822802, 45.380322 ], [ 3.817942, 45.386121 ], [ 3.805971, 45.391629 ], [ 3.796166, 45.38517 ], [ 3.791406, 45.38477 ], [ 3.787159, 45.371799 ], [ 3.789194, 45.358529 ], [ 3.780233, 45.351613 ], [ 3.77153, 45.350295 ], [ 3.758875, 45.35596 ], [ 3.755922, 45.353887 ], [ 3.742091, 45.353025 ], [ 3.732048, 45.35943 ], [ 3.722903, 45.35951 ], [ 3.718668, 45.3609 ], [ 3.714686, 45.36015 ], [ 3.706467, 45.360702 ], [ 3.701783, 45.360002 ], [ 3.698737, 45.36259 ], [ 3.704165, 45.37159 ], [ 3.694962, 45.373264 ], [ 3.684735, 45.380035 ], [ 3.681775, 45.382539 ], [ 3.672631, 45.381829 ], [ 3.667354, 45.376556 ], [ 3.66318, 45.36297 ], [ 3.645366, 45.3579 ], [ 3.640876, 45.348436 ], [ 3.627347, 45.3389 ], [ 3.617814, 45.33816 ], [ 3.59499, 45.355335 ], [ 3.590793, 45.35709 ], [ 3.586165, 45.37117 ], [ 3.588084, 45.373876 ], [ 3.586739, 45.37717 ], [ 3.581125, 45.38277 ], [ 3.579076, 45.38602 ], [ 3.569313, 45.402293 ], [ 3.564485, 45.396347 ], [ 3.55582, 45.393878 ], [ 3.548129, 45.39802 ], [ 3.521799, 45.402128 ], [ 3.518551, 45.40478 ], [ 3.506861, 45.411048 ], [ 3.501257, 45.427633 ], [ 3.496769, 45.426239 ], [ 3.479403, 45.42029 ], [ 3.463556, 45.407571 ], [ 3.460601, 45.401171 ], [ 3.455852, 45.400335 ], [ 3.451273, 45.401461 ], [ 3.427435, 45.40165 ], [ 3.420231, 45.397179 ], [ 3.418577, 45.400004 ], [ 3.406548, 45.403299 ], [ 3.398039, 45.40028 ], [ 3.389278, 45.40322 ], [ 3.38001, 45.401158 ], [ 3.367373, 45.41149 ], [ 3.363668, 45.413855 ], [ 3.355951, 45.422705 ], [ 3.352437, 45.421104 ], [ 3.340854, 45.42136 ], [ 3.341972, 45.41808 ], [ 3.330264, 45.39721 ], [ 3.32594, 45.398744 ], [ 3.324317, 45.405377 ], [ 3.308909, 45.41839 ], [ 3.299828, 45.42024 ], [ 3.295765, 45.41839 ], [ 3.295401, 45.41487 ], [ 3.291755, 45.40461 ], [ 3.290615, 45.4017 ], [ 3.287523, 45.399606 ], [ 3.283054, 45.3979 ], [ 3.26018, 45.39075 ], [ 3.255856, 45.3898 ], [ 3.242594, 45.390555 ], [ 3.236171, 45.394629 ], [ 3.235505, 45.39138 ], [ 3.222804, 45.38218 ], [ 3.218652, 45.369488 ], [ 3.215856, 45.370007 ], [ 3.211477, 45.367206 ], [ 3.209061, 45.370245 ], [ 3.199492, 45.369938 ], [ 3.192882, 45.36487 ], [ 3.179586, 45.3612 ], [ 3.177483, 45.35466 ], [ 3.181128, 45.35231 ], [ 3.151254, 45.351131 ], [ 3.146604, 45.350777 ], [ 3.138964, 45.35449 ], [ 3.130809, 45.351346 ], [ 3.103498, 45.354373 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "65", "CODE_DEPT": "64", "NOM_DEPT": "PYRENEES-ATLANTIQUES", "CODE_CHF": "445", "NOM_CHF": "PAU", "X_CHF_LIEU": "4264", "Y_CHF_LIEU": "62504", "X_CENTROID": "3945", "Y_CENTROID": "62469", "CODE_REG": "72", "NOM_REGION": "AQUITAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.313443, 42.849375 ], [ -0.315497, 42.846153 ], [ -0.326287, 42.83487 ], [ -0.335323, 42.837195 ], [ -0.349198, 42.83519 ], [ -0.364969, 42.81738 ], [ -0.388866, 42.800541 ], [ -0.410797, 42.806667 ], [ -0.441449, 42.796876 ], [ -0.49492, 42.81863 ], [ -0.501298, 42.827889 ], [ -0.509922, 42.825113 ], [ -0.524149, 42.811289 ], [ -0.526911, 42.794565 ], [ -0.544393, 42.79064 ], [ -0.553722, 42.77912 ], [ -0.563019, 42.78049 ], [ -0.567747, 42.780873 ], [ -0.570273, 42.79077 ], [ -0.565586, 42.796831 ], [ -0.566164, 42.803662 ], [ -0.573618, 42.807401 ], [ -0.591622, 42.80359 ], [ -0.600281, 42.806428 ], [ -0.602347, 42.830086 ], [ -0.621643, 42.83965 ], [ -0.636157, 42.85325 ], [ -0.640546, 42.853586 ], [ -0.656061, 42.85922 ], [ -0.662673, 42.870738 ], [ -0.679442, 42.88293 ], [ -0.69775, 42.87959 ], [ -0.722561, 42.88968 ], [ -0.731417, 42.897933 ], [ -0.734972, 42.91169 ], [ -0.725877, 42.91959 ], [ -0.732967, 42.935529 ], [ -0.730891, 42.93869 ], [ -0.737123, 42.947152 ], [ -0.740469, 42.94887 ], [ -0.743279, 42.951583 ], [ -0.752805, 42.966961 ], [ -0.766504, 42.968544 ], [ -0.783837, 42.96456 ], [ -0.788663, 42.96412 ], [ -0.811885, 42.95129 ], [ -0.835877, 42.95341 ], [ -0.864704, 42.950974 ], [ -0.882969, 42.95558 ], [ -0.8975, 42.95584 ], [ -0.897582, 42.95942 ], [ -0.910014, 42.9638 ], [ -0.923917, 42.954572 ], [ -0.943103, 42.953869 ], [ -0.969921, 42.96187 ], [ -0.997284, 42.976233 ], [ -1.007051, 42.98855 ], [ -1.010466, 42.991095 ], [ -1.014744, 42.992818 ], [ -1.07233, 42.99845 ], [ -1.08449, 43.004031 ], [ -1.083574, 43.010883 ], [ -1.09738, 43.01314 ], [ -1.112416, 43.021635 ], [ -1.139251, 43.00847 ], [ -1.144497, 43.014045 ], [ -1.1456, 43.024485 ], [ -1.169244, 43.036099 ], [ -1.173541, 43.037625 ], [ -1.175113, 43.034403 ], [ -1.183728, 43.03418 ], [ -1.209938, 43.048492 ], [ -1.212409, 43.051394 ], [ -1.230798, 43.054816 ], [ -1.243829, 43.044593 ], [ -1.247508, 43.04236 ], [ -1.26161, 43.043593 ], [ -1.272182, 43.055216 ], [ -1.308474, 43.071008 ], [ -1.293568, 43.099752 ], [ -1.273029, 43.115738 ], [ -1.270189, 43.11857 ], [ -1.320145, 43.112768 ], [ -1.327877, 43.108971 ], [ -1.33225, 43.10778 ], [ -1.345197, 43.093069 ], [ -1.341514, 43.079381 ], [ -1.344857, 43.05126 ], [ -1.350976, 43.034142 ], [ -1.356565, 43.028952 ], [ -1.365888, 43.030799 ], [ -1.439726, 43.04595 ], [ -1.453267, 43.06038 ], [ -1.456043, 43.06325 ], [ -1.471281, 43.080941 ], [ -1.470674, 43.091209 ], [ -1.427253, 43.117281 ], [ -1.427077, 43.12077 ], [ -1.414498, 43.13044 ], [ -1.411524, 43.140457 ], [ -1.413699, 43.15024 ], [ -1.407506, 43.15535 ], [ -1.402886, 43.15608 ], [ -1.400027, 43.179935 ], [ -1.384954, 43.188125 ], [ -1.383697, 43.222311 ], [ -1.378322, 43.231673 ], [ -1.378586, 43.23515 ], [ -1.379716, 43.238509 ], [ -1.385578, 43.25499 ], [ -1.413206, 43.27342 ], [ -1.433076, 43.266764 ], [ -1.44608, 43.268806 ], [ -1.468961, 43.273699 ], [ -1.48451, 43.28178 ], [ -1.493953, 43.282365 ], [ -1.505856, 43.293276 ], [ -1.524593, 43.29311 ], [ -1.529292, 43.293413 ], [ -1.561732, 43.2884 ], [ -1.559528, 43.275039 ], [ -1.57347, 43.252598 ], [ -1.607092, 43.253276 ], [ -1.61821, 43.259875 ], [ -1.624382, 43.2695 ], [ -1.629765, 43.286782 ], [ -1.623152, 43.303664 ], [ -1.630919, 43.307278 ], [ -1.635301, 43.308829 ], [ -1.635609, 43.308816 ], [ -1.644551, 43.306782 ], [ -1.655737, 43.312807 ], [ -1.669614, 43.314254 ], [ -1.682256, 43.309903 ], [ -1.699794, 43.30963 ], [ -1.704278, 43.30863 ], [ -1.713446, 43.300932 ], [ -1.731214, 43.298677 ], [ -1.73935, 43.31478 ], [ -1.738246, 43.32836 ], [ -1.75039, 43.33281 ], [ -1.754943, 43.342497 ], [ -1.759025, 43.344228 ], [ -1.76284, 43.343916 ], [ -1.767025, 43.34256 ], [ -1.786007, 43.350463 ], [ -1.78505, 43.353966 ], [ -1.772005, 43.364204 ], [ -1.779209, 43.371078 ], [ -1.76183, 43.376937 ], [ -1.752257, 43.384892 ], [ -1.733809, 43.382052 ], [ -1.729376, 43.38314 ], [ -1.686478, 43.396379 ], [ -1.682892, 43.39195 ], [ -1.680377, 43.3899 ], [ -1.669409, 43.388141 ], [ -1.661977, 43.392346 ], [ -1.662032, 43.40217 ], [ -1.644317, 43.40672 ], [ -1.621164, 43.42301 ], [ -1.609472, 43.427525 ], [ -1.607457, 43.43062 ], [ -1.600529, 43.43475 ], [ -1.594341, 43.44753 ], [ -1.578024, 43.46381 ], [ -1.570117, 43.47577 ], [ -1.569808, 43.482458 ], [ -1.54982, 43.49433 ], [ -1.547318, 43.497121 ], [ -1.524867, 43.529701 ], [ -1.520215, 43.52898 ], [ -1.501414, 43.52695 ], [ -1.497632, 43.528942 ], [ -1.47943, 43.53916 ], [ -1.463336, 43.533081 ], [ -1.465627, 43.516523 ], [ -1.461756, 43.518331 ], [ -1.430715, 43.51421 ], [ -1.417658, 43.496907 ], [ -1.414216, 43.497209 ], [ -1.409764, 43.49679 ], [ -1.36965, 43.495024 ], [ -1.339491, 43.50245 ], [ -1.334926, 43.50315 ], [ -1.334037, 43.50367 ], [ -1.322411, 43.504947 ], [ -1.291381, 43.49839 ], [ -1.263935, 43.51147 ], [ -1.259852, 43.51317 ], [ -1.253742, 43.51575 ], [ -1.250529, 43.51684 ], [ -1.217605, 43.53062 ], [ -1.207378, 43.5379 ], [ -1.203884, 43.540261 ], [ -1.198334, 43.544125 ], [ -1.195616, 43.54609 ], [ -1.191399, 43.546862 ], [ -1.174184, 43.54605 ], [ -1.169708, 43.54531 ], [ -1.159516, 43.538665 ], [ -1.154083, 43.529314 ], [ -1.133883, 43.52032 ], [ -1.130839, 43.51416 ], [ -1.137291, 43.509721 ], [ -1.16017, 43.50857 ], [ -1.16492, 43.50836 ], [ -1.169836, 43.497121 ], [ -1.169662, 43.493029 ], [ -1.165674, 43.491272 ], [ -1.153755, 43.496207 ], [ -1.14851, 43.490922 ], [ -1.145124, 43.48859 ], [ -1.140709, 43.489652 ], [ -1.137624, 43.499401 ], [ -1.13298, 43.499705 ], [ -1.128596, 43.500349 ], [ -1.11628, 43.50343 ], [ -1.10733, 43.51432 ], [ -1.089581, 43.511928 ], [ -1.083223, 43.516519 ], [ -1.081084, 43.523 ], [ -1.077715, 43.521231 ], [ -1.068997, 43.50845 ], [ -1.04607, 43.51156 ], [ -1.028963, 43.50714 ], [ -1.026914, 43.50404 ], [ -1.023681, 43.501709 ], [ -1.017977, 43.50597 ], [ -0.992383, 43.504029 ], [ -0.993771, 43.50904 ], [ -0.992759, 43.512285 ], [ -0.989143, 43.51831 ], [ -0.989906, 43.531605 ], [ -1.001151, 43.536966 ], [ -0.9882, 43.5402 ], [ -0.962172, 43.535226 ], [ -0.949635, 43.532251 ], [ -0.939764, 43.538538 ], [ -0.935661, 43.53721 ], [ -0.928007, 43.53339 ], [ -0.923683, 43.53462 ], [ -0.919177, 43.54406 ], [ -0.911988, 43.54833 ], [ -0.907683, 43.54968 ], [ -0.893691, 43.550273 ], [ -0.871468, 43.545447 ], [ -0.867742, 43.544733 ], [ -0.863964, 43.544165 ], [ -0.860091, 43.542555 ], [ -0.842813, 43.543421 ], [ -0.842315, 43.554113 ], [ -0.837584, 43.55468 ], [ -0.820938, 43.561192 ], [ -0.803351, 43.55619 ], [ -0.795699, 43.56147 ], [ -0.794167, 43.56396 ], [ -0.781756, 43.565861 ], [ -0.782303, 43.57547 ], [ -0.774672, 43.57832 ], [ -0.770305, 43.579168 ], [ -0.738083, 43.55778 ], [ -0.734087, 43.55575 ], [ -0.73274, 43.552949 ], [ -0.728545, 43.54517 ], [ -0.721203, 43.541383 ], [ -0.712614, 43.54201 ], [ -0.70821, 43.541306 ], [ -0.709861, 43.547888 ], [ -0.707505, 43.557804 ], [ -0.700472, 43.562061 ], [ -0.697133, 43.55965 ], [ -0.688861, 43.55697 ], [ -0.661363, 43.568774 ], [ -0.645501, 43.574532 ], [ -0.641047, 43.57481 ], [ -0.657889, 43.55975 ], [ -0.655611, 43.556845 ], [ -0.638251, 43.553393 ], [ -0.633751, 43.5541 ], [ -0.63128, 43.550474 ], [ -0.61932, 43.5456 ], [ -0.614894, 43.544726 ], [ -0.615241, 43.54119 ], [ -0.614366, 43.537718 ], [ -0.600039, 43.538654 ], [ -0.567072, 43.55822 ], [ -0.561737, 43.55268 ], [ -0.558901, 43.54608 ], [ -0.557174, 43.5428 ], [ -0.552764, 43.543158 ], [ -0.548448, 43.54483 ], [ -0.525431, 43.55775 ], [ -0.521267, 43.559505 ], [ -0.507312, 43.568467 ], [ -0.507656, 43.56923 ], [ -0.504696, 43.57187 ], [ -0.465249, 43.589605 ], [ -0.461857, 43.5876 ], [ -0.449232, 43.59627 ], [ -0.441407, 43.59348 ], [ -0.440974, 43.590602 ], [ -0.431779, 43.586436 ], [ -0.431717, 43.583547 ], [ -0.45139, 43.56602 ], [ -0.459281, 43.56749 ], [ -0.459394, 43.561143 ], [ -0.449713, 43.54987 ], [ -0.446453, 43.55207 ], [ -0.437718, 43.552817 ], [ -0.433971, 43.554557 ], [ -0.406042, 43.56823 ], [ -0.40333, 43.56573 ], [ -0.400679, 43.563215 ], [ -0.397269, 43.565646 ], [ -0.389034, 43.56818 ], [ -0.37489, 43.567344 ], [ -0.367723, 43.56277 ], [ -0.353597, 43.56179 ], [ -0.351868, 43.55869 ], [ -0.348836, 43.556173 ], [ -0.336562, 43.55122 ], [ -0.310386, 43.558065 ], [ -0.303828, 43.562443 ], [ -0.302204, 43.565653 ], [ -0.301204, 43.5713 ], [ -0.294296, 43.567911 ], [ -0.287162, 43.5746 ], [ -0.283325, 43.58416 ], [ -0.25677, 43.5882 ], [ -0.251662, 43.58266 ], [ -0.247068, 43.58269 ], [ -0.242837, 43.58498 ], [ -0.238912, 43.58304 ], [ -0.228803, 43.589645 ], [ -0.210607, 43.593237 ], [ -0.206209, 43.587271 ], [ -0.205011, 43.584 ], [ -0.200656, 43.58543 ], [ -0.17692, 43.596596 ], [ -0.165057, 43.583931 ], [ -0.162108, 43.58167 ], [ -0.157822, 43.58145 ], [ -0.151007, 43.58546 ], [ -0.133718, 43.58144 ], [ -0.128961, 43.58145 ], [ -0.125567, 43.58349 ], [ -0.117675, 43.58552 ], [ -0.10552, 43.5818 ], [ -0.096783, 43.582406 ], [ -0.091968, 43.570063 ], [ -0.093557, 43.563706 ], [ -0.090087, 43.559969 ], [ -0.094943, 43.548071 ], [ -0.091411, 43.542481 ], [ -0.087008, 43.542552 ], [ -0.069606, 43.54674 ], [ -0.057929, 43.53622 ], [ -0.056176, 43.533034 ], [ -0.049232, 43.52975 ], [ -0.048168, 43.52719 ], [ -0.0437, 43.522986 ], [ -0.043649, 43.52014 ], [ -0.040132, 43.5126 ], [ -0.044093, 43.506588 ], [ -0.044886, 43.5038 ], [ -0.046746, 43.498293 ], [ -0.049195, 43.492011 ], [ -0.036451, 43.48885 ], [ -0.030784, 43.474017 ], [ -0.02639, 43.474851 ], [ -0.020185, 43.47253 ], [ -0.018906, 43.47006 ], [ -0.019443, 43.466869 ], [ -0.032107, 43.466039 ], [ -0.061553, 43.462582 ], [ -0.065754, 43.463489 ], [ -0.061978, 43.45362 ], [ -0.064851, 43.44702 ], [ -0.066819, 43.443831 ], [ -0.069629, 43.434208 ], [ -0.053331, 43.42252 ], [ -0.067273, 43.410416 ], [ -0.042983, 43.41021 ], [ -0.042459, 43.413376 ], [ -0.038142, 43.418863 ], [ -0.034239, 43.4308 ], [ -0.028231, 43.43189 ], [ -0.02481, 43.43004 ], [ -0.022528, 43.432688 ], [ -0.016534, 43.443947 ], [ -0.007073, 43.44401 ], [ -0.002483, 43.445085 ], [ -0.003263, 43.434943 ], [ -0.004794, 43.43162 ], [ -0.001211, 43.42925 ], [ 0.009655, 43.422202 ], [ 0.007811, 43.4192 ], [ -0.003807, 43.39805 ], [ -0.000391, 43.39624 ], [ -0.00297, 43.395267 ], [ -0.004291, 43.39337 ], [ 0.002651, 43.392821 ], [ -0.001203, 43.38742 ], [ 0.001295, 43.38497 ], [ -0.00059, 43.381828 ], [ -0.004653, 43.375711 ], [ 0.000487, 43.37038 ], [ 0.004757, 43.371813 ], [ 0.00741, 43.365881 ], [ 0.005349, 43.36304 ], [ 0.02875, 43.346655 ], [ 0.025541, 43.340229 ], [ 0.024182, 43.33862 ], [ 0.020525, 43.336337 ], [ 0.012768, 43.327535 ], [ 0.008515, 43.326076 ], [ -0.003208, 43.331449 ], [ -0.025371, 43.329616 ], [ -0.026224, 43.3273 ], [ -0.027991, 43.32267 ], [ -0.031664, 43.31258 ], [ -0.034256, 43.30958 ], [ -0.037224, 43.306958 ], [ -0.044586, 43.302799 ], [ -0.04401, 43.289338 ], [ -0.040786, 43.283578 ], [ -0.028313, 43.280714 ], [ -0.023975, 43.28021 ], [ -0.025978, 43.277071 ], [ -0.018534, 43.272787 ], [ -0.018439, 43.269315 ], [ -0.025019, 43.26019 ], [ -0.025297, 43.253289 ], [ -0.044814, 43.23384 ], [ -0.046754, 43.223726 ], [ -0.048038, 43.22053 ], [ -0.053677, 43.21846 ], [ -0.061765, 43.22151 ], [ -0.065681, 43.223163 ], [ -0.073972, 43.22238 ], [ -0.072342, 43.21209 ], [ -0.067874, 43.17712 ], [ -0.072545, 43.17684 ], [ -0.091251, 43.177037 ], [ -0.101822, 43.16705 ], [ -0.111709, 43.17823 ], [ -0.116234, 43.17913 ], [ -0.125306, 43.167414 ], [ -0.126899, 43.164586 ], [ -0.126421, 43.158488 ], [ -0.134809, 43.151718 ], [ -0.139471, 43.14837 ], [ -0.138922, 43.14527 ], [ -0.146314, 43.12819 ], [ -0.15059, 43.12705 ], [ -0.166479, 43.121402 ], [ -0.176483, 43.110926 ], [ -0.193583, 43.11466 ], [ -0.191928, 43.1047 ], [ -0.197504, 43.0998 ], [ -0.18734, 43.088552 ], [ -0.199012, 43.065981 ], [ -0.196559, 43.059366 ], [ -0.181008, 43.052032 ], [ -0.185734, 43.05182 ], [ -0.223952, 43.03369 ], [ -0.227697, 43.03594 ], [ -0.241058, 43.039645 ], [ -0.26014, 43.03767 ], [ -0.256413, 43.02486 ], [ -0.261461, 43.01233 ], [ -0.264716, 43.01001 ], [ -0.268857, 43.00819 ], [ -0.287669, 43.005556 ], [ -0.292254, 42.99215 ], [ -0.289622, 42.96112 ], [ -0.283829, 42.95578 ], [ -0.27927, 42.942346 ], [ -0.279243, 42.939053 ], [ -0.284941, 42.930202 ], [ -0.297785, 42.93098 ], [ -0.313024, 42.918566 ], [ -0.322251, 42.917389 ], [ -0.326875, 42.916868 ], [ -0.324323, 42.90333 ], [ -0.316002, 42.895045 ], [ -0.315883, 42.88482 ], [ -0.307294, 42.86898 ], [ -0.311468, 42.852487 ], [ -0.313443, 42.849375 ] ], [ [ -0.10728, 43.370741 ], [ -0.106752, 43.3676 ], [ -0.10333, 43.35858 ], [ -0.094255, 43.35779 ], [ -0.09023, 43.35935 ], [ -0.086853, 43.3371 ], [ -0.087271, 43.33384 ], [ -0.091731, 43.33354 ], [ -0.108476, 43.337801 ], [ -0.114802, 43.322035 ], [ -0.109926, 43.312803 ], [ -0.09645, 43.313028 ], [ -0.080269, 43.307612 ], [ -0.075832, 43.30694 ], [ -0.075042, 43.30714 ], [ -0.070119, 43.31585 ], [ -0.069483, 43.31919 ], [ -0.068281, 43.32232 ], [ -0.067389, 43.32873 ], [ -0.064339, 43.337926 ], [ -0.06517, 43.341027 ], [ -0.063935, 43.34402 ], [ -0.062575, 43.34698 ], [ -0.063012, 43.35008 ], [ -0.077803, 43.36507 ], [ -0.078793, 43.365137 ], [ -0.082359, 43.366755 ], [ -0.085342, 43.371522 ], [ -0.093096, 43.373885 ], [ -0.09693, 43.374036 ], [ -0.10728, 43.370741 ] ], [ [ -0.137352, 43.28575 ], [ -0.137243, 43.281477 ], [ -0.138442, 43.278156 ], [ -0.140603, 43.27167 ], [ -0.125298, 43.249783 ], [ -0.1241, 43.24632 ], [ -0.11839, 43.241377 ], [ -0.109441, 43.242571 ], [ -0.104915, 43.242917 ], [ -0.103075, 43.24282 ], [ -0.104273, 43.245844 ], [ -0.094273, 43.25526 ], [ -0.086347, 43.256053 ], [ -0.079746, 43.26483 ], [ -0.079662, 43.271566 ], [ -0.084744, 43.277209 ], [ -0.095498, 43.287731 ], [ -0.090984, 43.297763 ], [ -0.089287, 43.301062 ], [ -0.09391, 43.30131 ], [ -0.113765, 43.30902 ], [ -0.122218, 43.30143 ], [ -0.125899, 43.299298 ], [ -0.129744, 43.28974 ], [ -0.137352, 43.28575 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "66", "CODE_DEPT": "65", "NOM_DEPT": "HAUTES-PYRENEES", "CODE_CHF": "440", "NOM_CHF": "TARBES", "X_CHF_LIEU": "4622", "Y_CHF_LIEU": "62414", "X_CENTROID": "4689", "Y_CENTROID": "62209", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.47775, 42.69999 ], [ 0.473064, 42.700042 ], [ 0.462497, 42.693738 ], [ 0.425725, 42.690808 ], [ 0.39593, 42.69962 ], [ 0.39263, 42.713118 ], [ 0.387936, 42.712508 ], [ 0.37417, 42.715077 ], [ 0.3601, 42.724303 ], [ 0.358876, 42.720881 ], [ 0.344952, 42.71132 ], [ 0.32771, 42.705318 ], [ 0.320685, 42.68515 ], [ 0.295536, 42.675038 ], [ 0.265931, 42.692503 ], [ 0.266898, 42.70282 ], [ 0.259883, 42.71582 ], [ 0.223739, 42.718496 ], [ 0.209351, 42.72696 ], [ 0.205992, 42.7293 ], [ 0.175303, 42.73579 ], [ 0.159244, 42.723732 ], [ 0.136567, 42.72233 ], [ 0.132698, 42.715898 ], [ 0.115185, 42.710821 ], [ 0.105713, 42.71066 ], [ 0.088644, 42.716788 ], [ 0.079512, 42.714712 ], [ 0.069003, 42.70338 ], [ 0.05673, 42.6981 ], [ 0.047504, 42.696262 ], [ 0.029445, 42.700936 ], [ 0.024933, 42.7021 ], [ 0.01558, 42.70084 ], [ 0.013543, 42.693952 ], [ 0.00264, 42.68705 ], [ -0.011239, 42.684692 ], [ -0.015979, 42.68532 ], [ -0.057542, 42.693456 ], [ -0.063505, 42.698765 ], [ -0.068457, 42.71586 ], [ -0.105645, 42.722178 ], [ -0.123126, 42.750473 ], [ -0.140701, 42.7673 ], [ -0.149168, 42.770515 ], [ -0.147566, 42.773856 ], [ -0.154798, 42.782435 ], [ -0.15861, 42.795695 ], [ -0.173664, 42.788078 ], [ -0.182863, 42.786725 ], [ -0.198251, 42.794816 ], [ -0.212047, 42.797023 ], [ -0.236449, 42.807745 ], [ -0.237807, 42.814354 ], [ -0.238794, 42.817798 ], [ -0.243358, 42.82314 ], [ -0.246646, 42.82071 ], [ -0.255807, 42.820136 ], [ -0.274993, 42.829757 ], [ -0.278465, 42.835807 ], [ -0.305081, 42.84129 ], [ -0.313443, 42.849375 ], [ -0.311468, 42.852487 ], [ -0.307294, 42.86898 ], [ -0.315883, 42.88482 ], [ -0.316002, 42.895045 ], [ -0.324323, 42.90333 ], [ -0.326875, 42.916868 ], [ -0.322251, 42.917389 ], [ -0.313024, 42.918566 ], [ -0.297785, 42.93098 ], [ -0.284941, 42.930202 ], [ -0.279243, 42.939053 ], [ -0.27927, 42.942346 ], [ -0.283829, 42.95578 ], [ -0.289622, 42.96112 ], [ -0.292254, 42.99215 ], [ -0.287669, 43.005556 ], [ -0.268857, 43.00819 ], [ -0.264716, 43.01001 ], [ -0.261461, 43.01233 ], [ -0.256413, 43.02486 ], [ -0.26014, 43.03767 ], [ -0.241058, 43.039645 ], [ -0.227697, 43.03594 ], [ -0.223952, 43.03369 ], [ -0.185734, 43.05182 ], [ -0.181008, 43.052032 ], [ -0.196559, 43.059366 ], [ -0.199012, 43.065981 ], [ -0.18734, 43.088552 ], [ -0.197504, 43.0998 ], [ -0.191928, 43.1047 ], [ -0.193583, 43.11466 ], [ -0.176483, 43.110926 ], [ -0.166479, 43.121402 ], [ -0.15059, 43.12705 ], [ -0.146314, 43.12819 ], [ -0.138922, 43.14527 ], [ -0.139471, 43.14837 ], [ -0.134809, 43.151718 ], [ -0.126421, 43.158488 ], [ -0.126899, 43.164586 ], [ -0.125306, 43.167414 ], [ -0.116234, 43.17913 ], [ -0.111709, 43.17823 ], [ -0.101822, 43.16705 ], [ -0.091251, 43.177037 ], [ -0.072545, 43.17684 ], [ -0.067874, 43.17712 ], [ -0.072342, 43.21209 ], [ -0.073972, 43.22238 ], [ -0.065681, 43.223163 ], [ -0.061765, 43.22151 ], [ -0.053677, 43.21846 ], [ -0.048038, 43.22053 ], [ -0.046754, 43.223726 ], [ -0.044814, 43.23384 ], [ -0.025297, 43.253289 ], [ -0.025019, 43.26019 ], [ -0.018439, 43.269315 ], [ -0.018534, 43.272787 ], [ -0.025978, 43.277071 ], [ -0.023975, 43.28021 ], [ -0.028313, 43.280714 ], [ -0.040786, 43.283578 ], [ -0.04401, 43.289338 ], [ -0.044586, 43.302799 ], [ -0.037224, 43.306958 ], [ -0.034256, 43.30958 ], [ -0.031664, 43.31258 ], [ -0.027991, 43.32267 ], [ -0.026224, 43.3273 ], [ -0.025371, 43.329616 ], [ -0.003208, 43.331449 ], [ 0.008515, 43.326076 ], [ 0.012768, 43.327535 ], [ 0.020525, 43.336337 ], [ 0.024182, 43.33862 ], [ 0.025541, 43.340229 ], [ 0.02875, 43.346655 ], [ 0.005349, 43.36304 ], [ 0.00741, 43.365881 ], [ 0.004757, 43.371813 ], [ 0.000487, 43.37038 ], [ -0.004653, 43.375711 ], [ -0.00059, 43.381828 ], [ 0.001295, 43.38497 ], [ -0.001203, 43.38742 ], [ 0.002651, 43.392821 ], [ -0.004291, 43.39337 ], [ -0.00297, 43.395267 ], [ -0.000391, 43.39624 ], [ -0.003807, 43.39805 ], [ 0.007811, 43.4192 ], [ 0.009655, 43.422202 ], [ -0.001211, 43.42925 ], [ -0.004794, 43.43162 ], [ -0.003263, 43.434943 ], [ -0.002483, 43.445085 ], [ -0.007073, 43.44401 ], [ -0.016534, 43.443947 ], [ -0.022528, 43.432688 ], [ -0.02481, 43.43004 ], [ -0.028231, 43.43189 ], [ -0.034239, 43.4308 ], [ -0.038142, 43.418863 ], [ -0.042459, 43.413376 ], [ -0.042983, 43.41021 ], [ -0.067273, 43.410416 ], [ -0.053331, 43.42252 ], [ -0.069629, 43.434208 ], [ -0.066819, 43.443831 ], [ -0.064851, 43.44702 ], [ -0.061978, 43.45362 ], [ -0.065754, 43.463489 ], [ -0.061553, 43.462582 ], [ -0.032107, 43.466039 ], [ -0.019443, 43.466869 ], [ -0.018906, 43.47006 ], [ -0.020185, 43.47253 ], [ -0.02639, 43.474851 ], [ -0.030784, 43.474017 ], [ -0.036451, 43.48885 ], [ -0.049195, 43.492011 ], [ -0.046746, 43.498293 ], [ -0.044886, 43.5038 ], [ -0.044093, 43.506588 ], [ -0.040132, 43.5126 ], [ -0.043649, 43.52014 ], [ -0.0437, 43.522986 ], [ -0.048168, 43.52719 ], [ -0.049232, 43.52975 ], [ -0.056176, 43.533034 ], [ -0.057929, 43.53622 ], [ -0.069606, 43.54674 ], [ -0.087008, 43.542552 ], [ -0.091411, 43.542481 ], [ -0.094943, 43.548071 ], [ -0.090087, 43.559969 ], [ -0.093557, 43.563706 ], [ -0.091968, 43.570063 ], [ -0.096783, 43.582406 ], [ -0.097245, 43.58591 ], [ -0.097509, 43.589427 ], [ -0.09313, 43.590695 ], [ -0.079109, 43.590517 ], [ -0.075589, 43.5928 ], [ -0.074213, 43.60618 ], [ -0.055966, 43.60653 ], [ -0.043995, 43.611191 ], [ -0.0383, 43.60614 ], [ -0.034107, 43.60747 ], [ -0.033826, 43.604731 ], [ -0.029866, 43.605067 ], [ -0.015009, 43.60552 ], [ -0.00871, 43.595291 ], [ -0.006586, 43.59283 ], [ -0.001666, 43.56532 ], [ 0.008294, 43.56073 ], [ 0.00946, 43.55783 ], [ 0.010764, 43.554897 ], [ 0.015782, 43.54339 ], [ 0.030055, 43.54457 ], [ 0.036462, 43.53938 ], [ 0.039857, 43.5369 ], [ 0.053621, 43.518767 ], [ 0.067742, 43.51941 ], [ 0.080576, 43.52395 ], [ 0.082, 43.51736 ], [ 0.091886, 43.510248 ], [ 0.108474, 43.51542 ], [ 0.112248, 43.51737 ], [ 0.125196, 43.50165 ], [ 0.127468, 43.499 ], [ 0.130128, 43.49304 ], [ 0.127279, 43.490655 ], [ 0.130044, 43.477395 ], [ 0.130741, 43.474065 ], [ 0.133654, 43.468209 ], [ 0.140635, 43.465044 ], [ 0.14453, 43.463761 ], [ 0.148229, 43.465191 ], [ 0.152138, 43.45988 ], [ 0.155302, 43.45788 ], [ 0.155394, 43.457025 ], [ 0.158148, 43.454315 ], [ 0.166064, 43.44238 ], [ 0.161807, 43.44151 ], [ 0.137459, 43.433992 ], [ 0.138111, 43.43305 ], [ 0.134549, 43.42249 ], [ 0.148276, 43.408683 ], [ 0.148339, 43.40516 ], [ 0.157076, 43.39925 ], [ 0.169555, 43.40181 ], [ 0.173805, 43.40277 ], [ 0.179426, 43.38255 ], [ 0.180075, 43.379125 ], [ 0.176024, 43.380442 ], [ 0.176969, 43.37704 ], [ 0.182031, 43.37118 ], [ 0.198076, 43.37492 ], [ 0.203647, 43.37024 ], [ 0.206345, 43.36778 ], [ 0.214771, 43.36984 ], [ 0.231704, 43.367712 ], [ 0.240272, 43.3707 ], [ 0.244136, 43.37272 ], [ 0.266934, 43.38168 ], [ 0.271197, 43.38262 ], [ 0.293995, 43.38779 ], [ 0.298759, 43.38858 ], [ 0.300552, 43.374844 ], [ 0.300517, 43.37136 ], [ 0.311893, 43.36716 ], [ 0.322128, 43.372589 ], [ 0.325407, 43.37478 ], [ 0.33095, 43.34597 ], [ 0.33135, 43.342654 ], [ 0.339845, 43.34377 ], [ 0.346156, 43.34814 ], [ 0.363876, 43.34957 ], [ 0.375684, 43.35299 ], [ 0.378548, 43.35537 ], [ 0.387506, 43.355321 ], [ 0.394226, 43.351019 ], [ 0.398672, 43.35144 ], [ 0.393953, 43.340409 ], [ 0.393631, 43.33744 ], [ 0.395823, 43.334244 ], [ 0.418738, 43.32808 ], [ 0.438138, 43.328486 ], [ 0.442971, 43.327926 ], [ 0.443605, 43.337553 ], [ 0.445023, 43.340611 ], [ 0.457253, 43.337884 ], [ 0.461134, 43.336562 ], [ 0.469934, 43.33497 ], [ 0.472977, 43.332483 ], [ 0.476404, 43.33223 ], [ 0.479816, 43.33259 ], [ 0.49354, 43.32548 ], [ 0.497721, 43.325993 ], [ 0.510377, 43.33384 ], [ 0.514701, 43.333342 ], [ 0.533036, 43.32959 ], [ 0.537018, 43.32757 ], [ 0.539688, 43.32713 ], [ 0.543299, 43.328587 ], [ 0.547069, 43.329806 ], [ 0.566583, 43.320815 ], [ 0.571099, 43.319836 ], [ 0.579671, 43.3212 ], [ 0.595984, 43.315758 ], [ 0.599695, 43.31365 ], [ 0.603125, 43.3121 ], [ 0.606811, 43.31089 ], [ 0.611353, 43.30984 ], [ 0.632144, 43.301427 ], [ 0.635622, 43.295653 ], [ 0.618933, 43.290418 ], [ 0.615325, 43.280547 ], [ 0.6146, 43.27783 ], [ 0.596798, 43.273477 ], [ 0.580238, 43.261003 ], [ 0.576716, 43.258656 ], [ 0.576265, 43.25591 ], [ 0.576012, 43.25315 ], [ 0.566788, 43.2523 ], [ 0.554112, 43.23853 ], [ 0.550957, 43.236008 ], [ 0.55547, 43.236983 ], [ 0.568198, 43.232582 ], [ 0.572841, 43.23311 ], [ 0.573087, 43.21995 ], [ 0.57023, 43.21735 ], [ 0.555811, 43.210613 ], [ 0.551875, 43.209147 ], [ 0.544991, 43.21306 ], [ 0.533811, 43.20807 ], [ 0.521425, 43.21115 ], [ 0.517385, 43.212382 ], [ 0.515936, 43.20947 ], [ 0.505764, 43.19971 ], [ 0.520954, 43.193457 ], [ 0.499093, 43.17423 ], [ 0.462785, 43.15066 ], [ 0.458872, 43.148519 ], [ 0.456753, 43.14556 ], [ 0.44385, 43.13358 ], [ 0.441291, 43.13117 ], [ 0.442334, 43.13091 ], [ 0.45476, 43.12636 ], [ 0.463839, 43.118804 ], [ 0.456872, 43.11436 ], [ 0.452923, 43.11255 ], [ 0.464706, 43.111346 ], [ 0.485319, 43.114115 ], [ 0.48929, 43.115179 ], [ 0.491205, 43.10868 ], [ 0.500068, 43.107367 ], [ 0.50459, 43.095359 ], [ 0.522355, 43.09257 ], [ 0.529181, 43.093452 ], [ 0.532638, 43.09387 ], [ 0.532194, 43.08413 ], [ 0.563854, 43.07425 ], [ 0.561711, 43.072363 ], [ 0.55496, 43.064255 ], [ 0.558847, 43.062868 ], [ 0.563791, 43.04397 ], [ 0.565503, 43.040874 ], [ 0.566899, 43.03742 ], [ 0.562697, 43.036438 ], [ 0.548393, 43.043995 ], [ 0.536958, 43.039991 ], [ 0.53512, 43.037051 ], [ 0.534755, 43.017112 ], [ 0.53018, 43.01137 ], [ 0.52695, 43.008925 ], [ 0.538173, 43.001606 ], [ 0.542023, 43.001019 ], [ 0.545867, 43.003735 ], [ 0.548181, 43.006712 ], [ 0.561334, 43.016089 ], [ 0.564055, 43.018733 ], [ 0.572103, 43.021282 ], [ 0.585178, 43.020028 ], [ 0.585777, 43.023317 ], [ 0.58878, 43.02277 ], [ 0.591825, 43.022373 ], [ 0.592642, 43.026035 ], [ 0.59411, 43.032322 ], [ 0.59322, 43.035451 ], [ 0.608047, 43.034009 ], [ 0.613138, 43.024476 ], [ 0.615651, 43.02153 ], [ 0.616481, 43.020421 ], [ 0.614458, 43.014167 ], [ 0.615713, 43.01108 ], [ 0.622358, 43.004526 ], [ 0.625023, 43.002317 ], [ 0.625565, 42.99418 ], [ 0.625588, 42.991209 ], [ 0.615095, 42.98915 ], [ 0.611442, 42.98829 ], [ 0.615981, 42.98432 ], [ 0.613894, 42.982025 ], [ 0.615624, 42.978698 ], [ 0.620121, 42.97244 ], [ 0.624127, 42.971841 ], [ 0.635542, 42.968935 ], [ 0.636348, 42.96841 ], [ 0.643533, 42.963748 ], [ 0.645959, 42.96134 ], [ 0.641991, 42.952873 ], [ 0.637432, 42.95262 ], [ 0.626629, 42.94185 ], [ 0.618067, 42.93951 ], [ 0.615362, 42.93681 ], [ 0.609142, 42.934719 ], [ 0.605645, 42.934 ], [ 0.604428, 42.931735 ], [ 0.600187, 42.928015 ], [ 0.597177, 42.92147 ], [ 0.597588, 42.918033 ], [ 0.595495, 42.910069 ], [ 0.59229, 42.90854 ], [ 0.586278, 42.89742 ], [ 0.58566, 42.894347 ], [ 0.580972, 42.88586 ], [ 0.579564, 42.882954 ], [ 0.577041, 42.880091 ], [ 0.577659, 42.8767 ], [ 0.575935, 42.870826 ], [ 0.564129, 42.863325 ], [ 0.562341, 42.860757 ], [ 0.558081, 42.861146 ], [ 0.554041, 42.86009 ], [ 0.547136, 42.864612 ], [ 0.53418, 42.861256 ], [ 0.527716, 42.86485 ], [ 0.525546, 42.86755 ], [ 0.508611, 42.869167 ], [ 0.504028, 42.868782 ], [ 0.499291, 42.874555 ], [ 0.481956, 42.877965 ], [ 0.477357, 42.87824 ], [ 0.471878, 42.869208 ], [ 0.472642, 42.862613 ], [ 0.472676, 42.859303 ], [ 0.469379, 42.857516 ], [ 0.460239, 42.851749 ], [ 0.464761, 42.848158 ], [ 0.4675, 42.84675 ], [ 0.464129, 42.839956 ], [ 0.45921, 42.827199 ], [ 0.458793, 42.82387 ], [ 0.457889, 42.80793 ], [ 0.459851, 42.80498 ], [ 0.463434, 42.80239 ], [ 0.463138, 42.790136 ], [ 0.461998, 42.7894 ], [ 0.455983, 42.780574 ], [ 0.455185, 42.77092 ], [ 0.46214, 42.762638 ], [ 0.463462, 42.759484 ], [ 0.460252, 42.749387 ], [ 0.461558, 42.746044 ], [ 0.462125, 42.739203 ], [ 0.451297, 42.733134 ], [ 0.483742, 42.70892 ], [ 0.47775, 42.69999 ] ] ], [ [ [ -0.137352, 43.28575 ], [ -0.129744, 43.28974 ], [ -0.125899, 43.299298 ], [ -0.122218, 43.30143 ], [ -0.113765, 43.30902 ], [ -0.09391, 43.30131 ], [ -0.089287, 43.301062 ], [ -0.090984, 43.297763 ], [ -0.095498, 43.287731 ], [ -0.084744, 43.277209 ], [ -0.079662, 43.271566 ], [ -0.079746, 43.26483 ], [ -0.086347, 43.256053 ], [ -0.094273, 43.25526 ], [ -0.104273, 43.245844 ], [ -0.103075, 43.24282 ], [ -0.104915, 43.242917 ], [ -0.109441, 43.242571 ], [ -0.11839, 43.241377 ], [ -0.1241, 43.24632 ], [ -0.125298, 43.249783 ], [ -0.140603, 43.27167 ], [ -0.138442, 43.278156 ], [ -0.137243, 43.281477 ], [ -0.137352, 43.28575 ] ] ], [ [ [ -0.10728, 43.370741 ], [ -0.09693, 43.374036 ], [ -0.093096, 43.373885 ], [ -0.085342, 43.371522 ], [ -0.082359, 43.366755 ], [ -0.078793, 43.365137 ], [ -0.077803, 43.36507 ], [ -0.063012, 43.35008 ], [ -0.062575, 43.34698 ], [ -0.063935, 43.34402 ], [ -0.06517, 43.341027 ], [ -0.064339, 43.337926 ], [ -0.067389, 43.32873 ], [ -0.068281, 43.32232 ], [ -0.069483, 43.31919 ], [ -0.070119, 43.31585 ], [ -0.075042, 43.30714 ], [ -0.075832, 43.30694 ], [ -0.080269, 43.307612 ], [ -0.09645, 43.313028 ], [ -0.109926, 43.312803 ], [ -0.114802, 43.322035 ], [ -0.108476, 43.337801 ], [ -0.091731, 43.33354 ], [ -0.087271, 43.33384 ], [ -0.086853, 43.3371 ], [ -0.09023, 43.35935 ], [ -0.094255, 43.35779 ], [ -0.10333, 43.35858 ], [ -0.106752, 43.3676 ], [ -0.10728, 43.370741 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "67", "CODE_DEPT": "66", "NOM_DEPT": "PYRENEES-ORIENTALES", "CODE_CHF": "136", "NOM_CHF": "PERPIGNAN", "X_CHF_LIEU": "6913", "Y_CHF_LIEU": "61775", "X_CENTROID": "6607", "Y_CENTROID": "61668", "CODE_REG": "91", "NOM_REGION": "LANGUEDOC-ROUSSILLON" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.17407, 42.435191 ], [ 3.123712, 42.43531 ], [ 3.12083, 42.438006 ], [ 3.11693, 42.43603 ], [ 3.108092, 42.433588 ], [ 3.099123, 42.425543 ], [ 3.081231, 42.42821 ], [ 3.047755, 42.45708 ], [ 3.040447, 42.47369 ], [ 3.035906, 42.473745 ], [ 3.011546, 42.46709 ], [ 3.000923, 42.47299 ], [ 2.996212, 42.47332 ], [ 2.986753, 42.473067 ], [ 2.975863, 42.4671 ], [ 2.966575, 42.46701 ], [ 2.947088, 42.481801 ], [ 2.943981, 42.47944 ], [ 2.932851, 42.474368 ], [ 2.930098, 42.47156 ], [ 2.919348, 42.456848 ], [ 2.888228, 42.46086 ], [ 2.883811, 42.460105 ], [ 2.869106, 42.466902 ], [ 2.861352, 42.455198 ], [ 2.848554, 42.456583 ], [ 2.844459, 42.458015 ], [ 2.839868, 42.458988 ], [ 2.830469, 42.443207 ], [ 2.814056, 42.437238 ], [ 2.798364, 42.419906 ], [ 2.794124, 42.41828 ], [ 2.772117, 42.41229 ], [ 2.760617, 42.418435 ], [ 2.756587, 42.424844 ], [ 2.751866, 42.42537 ], [ 2.747692, 42.425299 ], [ 2.727371, 42.42262 ], [ 2.723961, 42.422724 ], [ 2.719585, 42.422 ], [ 2.691401, 42.40621 ], [ 2.673944, 42.4047 ], [ 2.670543, 42.38838 ], [ 2.652876, 42.38444 ], [ 2.65632, 42.382295 ], [ 2.659111, 42.379688 ], [ 2.662355, 42.36592 ], [ 2.675295, 42.355741 ], [ 2.675439, 42.345117 ], [ 2.672644, 42.342224 ], [ 2.66331, 42.341 ], [ 2.616356, 42.345972 ], [ 2.589681, 42.353881 ], [ 2.587526, 42.35706 ], [ 2.56187, 42.357114 ], [ 2.555202, 42.35268 ], [ 2.551632, 42.342645 ], [ 2.542191, 42.335199 ], [ 2.537951, 42.333698 ], [ 2.533265, 42.33349 ], [ 2.498432, 42.34262 ], [ 2.484885, 42.34008 ], [ 2.477796, 42.34441 ], [ 2.4763, 42.347712 ], [ 2.472717, 42.35003 ], [ 2.466899, 42.3595 ], [ 2.452936, 42.36883 ], [ 2.436367, 42.375093 ], [ 2.433343, 42.391957 ], [ 2.410338, 42.39216 ], [ 2.384097, 42.400223 ], [ 2.356268, 42.40428 ], [ 2.348138, 42.407901 ], [ 2.344862, 42.414443 ], [ 2.326867, 42.41705 ], [ 2.318743, 42.425012 ], [ 2.310598, 42.428447 ], [ 2.293944, 42.422981 ], [ 2.257083, 42.438488 ], [ 2.244429, 42.42881 ], [ 2.226329, 42.425783 ], [ 2.20135, 42.416664 ], [ 2.156949, 42.423378 ], [ 2.137359, 42.415662 ], [ 2.133169, 42.414342 ], [ 2.126581, 42.41036 ], [ 2.118632, 42.39609 ], [ 2.114897, 42.394506 ], [ 2.11366, 42.381696 ], [ 2.093464, 42.375234 ], [ 2.089548, 42.373717 ], [ 2.085933, 42.363745 ], [ 2.076724, 42.36438 ], [ 2.059883, 42.358628 ], [ 2.023496, 42.355227 ], [ 2.012785, 42.349402 ], [ 1.989063, 42.36103 ], [ 1.969772, 42.376653 ], [ 1.960959, 42.392999 ], [ 1.956481, 42.416992 ], [ 1.958286, 42.423959 ], [ 1.945314, 42.428083 ], [ 1.941143, 42.43396 ], [ 1.942895, 42.444429 ], [ 1.937441, 42.452645 ], [ 1.933845, 42.454165 ], [ 1.9183, 42.44665 ], [ 1.904571, 42.44861 ], [ 1.900273, 42.449976 ], [ 1.887127, 42.44994 ], [ 1.877658, 42.46134 ], [ 1.864965, 42.465383 ], [ 1.856231, 42.46373 ], [ 1.844678, 42.47386 ], [ 1.843362, 42.47715 ], [ 1.831512, 42.48309 ], [ 1.813199, 42.48473 ], [ 1.805248, 42.488653 ], [ 1.767644, 42.486751 ], [ 1.746603, 42.49482 ], [ 1.73246, 42.493244 ], [ 1.726603, 42.50279 ], [ 1.724011, 42.520249 ], [ 1.733407, 42.532507 ], [ 1.740135, 42.556467 ], [ 1.750786, 42.56342 ], [ 1.764873, 42.565027 ], [ 1.769603, 42.564506 ], [ 1.782868, 42.57173 ], [ 1.786125, 42.573623 ], [ 1.799703, 42.57232 ], [ 1.820712, 42.579504 ], [ 1.824728, 42.58124 ], [ 1.838155, 42.583957 ], [ 1.865377, 42.579925 ], [ 1.874485, 42.581415 ], [ 1.873502, 42.588202 ], [ 1.890215, 42.592989 ], [ 1.89352, 42.606051 ], [ 1.898745, 42.61167 ], [ 1.900303, 42.614906 ], [ 1.910766, 42.608063 ], [ 1.924961, 42.608539 ], [ 1.933621, 42.605578 ], [ 1.942099, 42.608521 ], [ 1.950468, 42.616947 ], [ 1.97328, 42.61838 ], [ 1.976361, 42.62107 ], [ 1.976116, 42.62744 ], [ 1.987816, 42.6443 ], [ 1.990771, 42.64664 ], [ 1.997956, 42.660903 ], [ 2.002095, 42.661076 ], [ 2.015214, 42.65539 ], [ 2.018423, 42.65366 ], [ 2.022788, 42.653364 ], [ 2.04327, 42.657496 ], [ 2.047019, 42.66359 ], [ 2.061034, 42.66184 ], [ 2.073887, 42.665624 ], [ 2.10655, 42.664841 ], [ 2.127885, 42.672039 ], [ 2.143126, 42.663854 ], [ 2.152302, 42.662075 ], [ 2.161322, 42.664241 ], [ 2.166054, 42.66392 ], [ 2.173177, 42.65562 ], [ 2.176088, 42.65301 ], [ 2.176143, 42.652596 ], [ 2.176219, 42.648901 ], [ 2.188063, 42.65205 ], [ 2.192366, 42.651766 ], [ 2.191276, 42.656631 ], [ 2.192168, 42.659057 ], [ 2.218667, 42.672426 ], [ 2.240947, 42.67753 ], [ 2.256682, 42.698268 ], [ 2.264471, 42.702116 ], [ 2.264713, 42.709032 ], [ 2.275384, 42.702928 ], [ 2.28859, 42.70067 ], [ 2.318547, 42.706457 ], [ 2.32249, 42.70811 ], [ 2.342891, 42.722902 ], [ 2.355346, 42.72805 ], [ 2.357134, 42.738418 ], [ 2.353569, 42.748566 ], [ 2.352471, 42.749692 ], [ 2.351796, 42.75222 ], [ 2.350519, 42.7573 ], [ 2.352611, 42.76015 ], [ 2.349394, 42.76951 ], [ 2.343325, 42.774112 ], [ 2.344229, 42.780565 ], [ 2.343923, 42.801227 ], [ 2.339328, 42.801531 ], [ 2.33228, 42.80487 ], [ 2.33204, 42.81834 ], [ 2.322405, 42.825453 ], [ 2.32504, 42.8352 ], [ 2.336096, 42.840709 ], [ 2.36647, 42.84556 ], [ 2.370849, 42.84635 ], [ 2.382167, 42.848466 ], [ 2.397686, 42.845128 ], [ 2.401353, 42.843872 ], [ 2.452145, 42.83694 ], [ 2.45682, 42.83748 ], [ 2.459478, 42.83808 ], [ 2.462198, 42.83856 ], [ 2.496644, 42.84839 ], [ 2.500452, 42.85043 ], [ 2.512073, 42.8477 ], [ 2.515232, 42.84545 ], [ 2.518539, 42.84314 ], [ 2.554148, 42.84627 ], [ 2.558602, 42.845506 ], [ 2.567708, 42.843691 ], [ 2.572403, 42.84337 ], [ 2.603246, 42.83613 ], [ 2.635284, 42.83795 ], [ 2.639901, 42.83826 ], [ 2.664347, 42.836753 ], [ 2.665142, 42.83666 ], [ 2.682011, 42.83072 ], [ 2.72743, 42.8344 ], [ 2.740524, 42.83789 ], [ 2.751927, 42.848735 ], [ 2.754346, 42.851708 ], [ 2.755066, 42.85486 ], [ 2.761908, 42.873325 ], [ 2.787164, 42.89441 ], [ 2.8054, 42.89788 ], [ 2.810132, 42.89842 ], [ 2.83792, 42.912314 ], [ 2.865274, 42.918341 ], [ 2.880505, 42.901363 ], [ 2.902421, 42.89638 ], [ 2.906997, 42.895679 ], [ 2.91436, 42.887448 ], [ 2.917115, 42.88486 ], [ 2.98478, 42.8665 ], [ 2.988876, 42.864578 ], [ 3.012405, 42.853193 ], [ 3.03948, 42.84012 ], [ 3.043511, 42.83815 ], [ 3.038732, 42.78179 ], [ 3.039267, 42.778275 ], [ 3.038904, 42.746858 ], [ 3.038853, 42.743352 ], [ 3.039842, 42.72662 ], [ 3.040279, 42.72327 ], [ 3.035475, 42.644227 ], [ 3.035728, 42.640766 ], [ 3.04235, 42.60352 ], [ 3.043114, 42.600082 ], [ 3.044268, 42.596872 ], [ 3.045056, 42.593725 ], [ 3.049268, 42.552154 ], [ 3.055299, 42.539422 ], [ 3.05825, 42.536732 ], [ 3.072081, 42.535187 ], [ 3.07637, 42.533754 ], [ 3.094697, 42.52455 ], [ 3.099107, 42.523613 ], [ 3.107907, 42.52454 ], [ 3.133595, 42.51727 ], [ 3.135447, 42.514161 ], [ 3.12679, 42.50609 ], [ 3.126782, 42.502549 ], [ 3.133977, 42.498369 ], [ 3.132924, 42.494981 ], [ 3.129255, 42.489188 ], [ 3.131913, 42.4827 ], [ 3.153637, 42.477488 ], [ 3.160651, 42.462268 ], [ 3.15727, 42.459972 ], [ 3.164907, 42.456194 ], [ 3.164961, 42.449497 ], [ 3.17533, 42.438478 ], [ 3.17407, 42.435191 ] ], [ [ 1.980578, 42.49478 ], [ 1.977965, 42.48859 ], [ 1.962663, 42.476833 ], [ 1.960056, 42.470452 ], [ 1.959803, 42.453261 ], [ 1.976787, 42.44903 ], [ 1.980854, 42.44761 ], [ 2.004724, 42.447236 ], [ 2.009407, 42.448115 ], [ 2.012837, 42.452696 ], [ 2.006447, 42.456583 ], [ 2.002789, 42.45822 ], [ 1.991899, 42.463836 ], [ 1.98661, 42.472712 ], [ 1.993973, 42.48447 ], [ 1.998385, 42.484978 ], [ 1.995604, 42.4878 ], [ 1.989823, 42.493339 ], [ 1.980578, 42.49478 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "68", "CODE_DEPT": "67", "NOM_DEPT": "BAS-RHIN", "CODE_CHF": "482", "NOM_CHF": "STRASBOURG", "X_CHF_LIEU": "10499", "Y_CHF_LIEU": "68420", "X_CENTROID": "10349", "Y_CENTROID": "68508", "CODE_REG": "42", "NOM_REGION": "ALSACE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.577859, 48.12139 ], [ 7.572792, 48.12133 ], [ 7.537615, 48.123653 ], [ 7.518595, 48.127764 ], [ 7.517421, 48.13057 ], [ 7.515351, 48.13313 ], [ 7.520334, 48.1495 ], [ 7.474998, 48.15948 ], [ 7.47014, 48.160174 ], [ 7.470667, 48.163381 ], [ 7.472763, 48.182228 ], [ 7.475189, 48.185092 ], [ 7.473539, 48.197736 ], [ 7.476943, 48.20354 ], [ 7.472434, 48.20473 ], [ 7.450586, 48.21168 ], [ 7.444787, 48.21678 ], [ 7.435466, 48.21786 ], [ 7.4178, 48.22269 ], [ 7.414318, 48.224911 ], [ 7.409073, 48.22445 ], [ 7.398737, 48.2323 ], [ 7.351512, 48.24745 ], [ 7.325376, 48.24545 ], [ 7.312801, 48.255661 ], [ 7.314287, 48.26244 ], [ 7.322898, 48.26327 ], [ 7.328684, 48.26782 ], [ 7.33139, 48.2702 ], [ 7.333983, 48.272511 ], [ 7.308792, 48.26851 ], [ 7.29386, 48.27077 ], [ 7.299949, 48.28285 ], [ 7.290493, 48.29074 ], [ 7.290799, 48.293838 ], [ 7.286358, 48.295009 ], [ 7.28222, 48.2966 ], [ 7.280565, 48.29983 ], [ 7.274333, 48.30508 ], [ 7.259555, 48.3052 ], [ 7.254595, 48.306004 ], [ 7.245237, 48.30334 ], [ 7.218359, 48.31089 ], [ 7.203354, 48.30989 ], [ 7.198282, 48.310477 ], [ 7.196704, 48.313722 ], [ 7.190289, 48.32289 ], [ 7.180957, 48.32548 ], [ 7.179213, 48.32869 ], [ 7.183497, 48.33839 ], [ 7.169537, 48.342307 ], [ 7.166545, 48.33934 ], [ 7.147917, 48.33327 ], [ 7.144831, 48.332165 ], [ 7.141319, 48.33202 ], [ 7.136446, 48.33241 ], [ 7.117124, 48.334133 ], [ 7.105971, 48.34411 ], [ 7.101462, 48.34503 ], [ 7.075964, 48.352585 ], [ 7.079827, 48.35481 ], [ 7.085662, 48.36014 ], [ 7.088402, 48.36305 ], [ 7.100822, 48.37374 ], [ 7.106642, 48.376065 ], [ 7.108321, 48.37902 ], [ 7.103692, 48.38799 ], [ 7.092947, 48.394169 ], [ 7.088645, 48.39572 ], [ 7.084985, 48.39788 ], [ 7.087244, 48.401015 ], [ 7.095804, 48.404953 ], [ 7.09342, 48.41118 ], [ 7.097112, 48.423457 ], [ 7.095687, 48.426533 ], [ 7.105324, 48.43709 ], [ 7.109384, 48.438797 ], [ 7.108093, 48.44029 ], [ 7.106218, 48.44402 ], [ 7.104289, 48.45416 ], [ 7.116817, 48.47333 ], [ 7.118811, 48.483719 ], [ 7.114032, 48.485326 ], [ 7.093663, 48.48928 ], [ 7.093726, 48.492352 ], [ 7.091003, 48.500878 ], [ 7.094251, 48.5062 ], [ 7.096288, 48.50312 ], [ 7.125615, 48.49959 ], [ 7.123165, 48.51359 ], [ 7.103796, 48.517641 ], [ 7.083459, 48.51558 ], [ 7.08063, 48.51267 ], [ 7.077105, 48.51634 ], [ 7.068664, 48.52252 ], [ 7.065385, 48.5243 ], [ 7.07538, 48.53477 ], [ 7.07936, 48.53642 ], [ 7.091701, 48.5298 ], [ 7.115674, 48.5368 ], [ 7.137943, 48.52835 ], [ 7.1527, 48.530426 ], [ 7.162675, 48.52811 ], [ 7.16791, 48.5276 ], [ 7.168499, 48.528693 ], [ 7.170802, 48.531386 ], [ 7.187101, 48.537272 ], [ 7.189533, 48.540042 ], [ 7.193254, 48.54924 ], [ 7.201361, 48.552704 ], [ 7.206436, 48.55254 ], [ 7.220273, 48.554683 ], [ 7.221387, 48.558066 ], [ 7.241234, 48.57374 ], [ 7.253572, 48.58624 ], [ 7.256282, 48.58868 ], [ 7.260833, 48.590044 ], [ 7.265139, 48.59172 ], [ 7.261855, 48.594421 ], [ 7.256898, 48.599923 ], [ 7.276136, 48.62426 ], [ 7.272375, 48.633446 ], [ 7.290602, 48.64556 ], [ 7.304356, 48.66021 ], [ 7.271164, 48.66238 ], [ 7.266276, 48.662301 ], [ 7.261696, 48.6715 ], [ 7.257236, 48.67285 ], [ 7.245176, 48.689637 ], [ 7.242262, 48.69211 ], [ 7.262073, 48.697798 ], [ 7.264726, 48.70046 ], [ 7.268353, 48.714201 ], [ 7.286137, 48.73152 ], [ 7.292018, 48.75221 ], [ 7.311008, 48.764081 ], [ 7.31334, 48.76724 ], [ 7.308377, 48.767536 ], [ 7.290695, 48.786296 ], [ 7.290899, 48.79391 ], [ 7.27423, 48.80044 ], [ 7.270146, 48.802506 ], [ 7.26406, 48.799121 ], [ 7.260851, 48.79755 ], [ 7.257857, 48.80412 ], [ 7.249213, 48.80781 ], [ 7.245235, 48.81003 ], [ 7.25826, 48.81757 ], [ 7.262461, 48.81857 ], [ 7.260133, 48.82029 ], [ 7.258105, 48.822174 ], [ 7.254469, 48.81991 ], [ 7.245313, 48.81734 ], [ 7.227, 48.82848 ], [ 7.217749, 48.828109 ], [ 7.219991, 48.819087 ], [ 7.216079, 48.8208 ], [ 7.211982, 48.82613 ], [ 7.203428, 48.82696 ], [ 7.198574, 48.82782 ], [ 7.187199, 48.83428 ], [ 7.194087, 48.83902 ], [ 7.184904, 48.850374 ], [ 7.180837, 48.84901 ], [ 7.173508, 48.842019 ], [ 7.148854, 48.8446 ], [ 7.142117, 48.83555 ], [ 7.147387, 48.82224 ], [ 7.143224, 48.820135 ], [ 7.139809, 48.817497 ], [ 7.129735, 48.81565 ], [ 7.121704, 48.807055 ], [ 7.126562, 48.80107 ], [ 7.12201, 48.79971 ], [ 7.11715, 48.79894 ], [ 7.108504, 48.797865 ], [ 7.104562, 48.79645 ], [ 7.099603, 48.795613 ], [ 7.085536, 48.79162 ], [ 7.079244, 48.78629 ], [ 7.07513, 48.78805 ], [ 7.066783, 48.79933 ], [ 7.070561, 48.80128 ], [ 7.087958, 48.80617 ], [ 7.08504, 48.811908 ], [ 7.080902, 48.81356 ], [ 7.052435, 48.81484 ], [ 7.049769, 48.81773 ], [ 7.047117, 48.82064 ], [ 7.049695, 48.82345 ], [ 7.054315, 48.83602 ], [ 7.052897, 48.83867 ], [ 7.052063, 48.84688 ], [ 7.057126, 48.84741 ], [ 7.0817, 48.84759 ], [ 7.085183, 48.84747 ], [ 7.08838, 48.848392 ], [ 7.092468, 48.84988 ], [ 7.098772, 48.85421 ], [ 7.094146, 48.86288 ], [ 7.089153, 48.86309 ], [ 7.079252, 48.863896 ], [ 7.050544, 48.85893 ], [ 7.051672, 48.863771 ], [ 7.05501, 48.86492 ], [ 7.02655, 48.879711 ], [ 6.987974, 48.891368 ], [ 6.982702, 48.891543 ], [ 6.972319, 48.890754 ], [ 6.957465, 48.89421 ], [ 6.963487, 48.90728 ], [ 6.955073, 48.920039 ], [ 6.941442, 48.92459 ], [ 6.944402, 48.9348 ], [ 6.946783, 48.93466 ], [ 6.948243, 48.931394 ], [ 6.960851, 48.92557 ], [ 6.965828, 48.92652 ], [ 6.977854, 48.932782 ], [ 6.981781, 48.94194 ], [ 6.986381, 48.946859 ], [ 6.986481, 48.949764 ], [ 6.987805, 48.95276 ], [ 6.988544, 48.95883 ], [ 6.992743, 48.96027 ], [ 7.018077, 48.95776 ], [ 7.021751, 48.956995 ], [ 7.025378, 48.95615 ], [ 7.0288, 48.956038 ], [ 7.032219, 48.956049 ], [ 7.027888, 48.96948 ], [ 7.038662, 48.97666 ], [ 7.033682, 48.98985 ], [ 7.046848, 48.99991 ], [ 7.052581, 49.00849 ], [ 7.054464, 49.01139 ], [ 7.047917, 49.01591 ], [ 7.054913, 49.03063 ], [ 7.057835, 49.033158 ], [ 7.07866, 49.050361 ], [ 7.073994, 49.054787 ], [ 7.072338, 49.057247 ], [ 7.0686, 49.06339 ], [ 7.071032, 49.06975 ], [ 7.074754, 49.07213 ], [ 7.089116, 49.07039 ], [ 7.099342, 49.07789 ], [ 7.117294, 49.06681 ], [ 7.113838, 49.06471 ], [ 7.101874, 49.06121 ], [ 7.106797, 49.04864 ], [ 7.106358, 49.04535 ], [ 7.116612, 49.03976 ], [ 7.119477, 49.03722 ], [ 7.116375, 49.031083 ], [ 7.122979, 49.02648 ], [ 7.122364, 49.02322 ], [ 7.130174, 49.00541 ], [ 7.160682, 49.00524 ], [ 7.161607, 49.00193 ], [ 7.169316, 49.005042 ], [ 7.17359, 49.00611 ], [ 7.183774, 48.99644 ], [ 7.186213, 48.99376 ], [ 7.195847, 48.99377 ], [ 7.206959, 48.98296 ], [ 7.209311, 48.980088 ], [ 7.214241, 48.98116 ], [ 7.238142, 48.9877 ], [ 7.293927, 48.97262 ], [ 7.290433, 48.967089 ], [ 7.290203, 48.956516 ], [ 7.305475, 48.956643 ], [ 7.30646, 48.953357 ], [ 7.322678, 48.945298 ], [ 7.326853, 48.94338 ], [ 7.333561, 48.948246 ], [ 7.343367, 48.94843 ], [ 7.350815, 48.95279 ], [ 7.355124, 48.954443 ], [ 7.363903, 48.95525 ], [ 7.368109, 48.95355 ], [ 7.375698, 48.95142 ], [ 7.379918, 48.951197 ], [ 7.392312, 48.95272 ], [ 7.404511, 48.9582 ], [ 7.447472, 48.966046 ], [ 7.451631, 48.96797 ], [ 7.45365, 48.964879 ], [ 7.477995, 48.961495 ], [ 7.487019, 48.950061 ], [ 7.508411, 48.94364 ], [ 7.513191, 48.94325 ], [ 7.527765, 48.94197 ], [ 7.536256, 48.933506 ], [ 7.556685, 48.936198 ], [ 7.553536, 48.94239 ], [ 7.579926, 48.96161 ], [ 7.583559, 48.96604 ], [ 7.582392, 48.97266 ], [ 7.589173, 48.98205 ], [ 7.592336, 48.98485 ], [ 7.591159, 48.988098 ], [ 7.588722, 48.99103 ], [ 7.608195, 49.010413 ], [ 7.606889, 49.019911 ], [ 7.61065, 49.02201 ], [ 7.617915, 49.030386 ], [ 7.626239, 49.033722 ], [ 7.628348, 49.03678 ], [ 7.639294, 49.048116 ], [ 7.635286, 49.05417 ], [ 7.671084, 49.04597 ], [ 7.691726, 49.04922 ], [ 7.697077, 49.04975 ], [ 7.695848, 49.056301 ], [ 7.720646, 49.05273 ], [ 7.730602, 49.05446 ], [ 7.73223, 49.04436 ], [ 7.737335, 49.04474 ], [ 7.766454, 49.046681 ], [ 7.778385, 49.057637 ], [ 7.788754, 49.058593 ], [ 7.799934, 49.06416 ], [ 7.832946, 49.047714 ], [ 7.847331, 49.0437 ], [ 7.852164, 49.03809 ], [ 7.85549, 49.035417 ], [ 7.85963, 49.03529 ], [ 7.867408, 49.03349 ], [ 7.870725, 49.036276 ], [ 7.890091, 49.04795 ], [ 7.915271, 49.04191 ], [ 7.920273, 49.043209 ], [ 7.93704, 49.05623 ], [ 7.965415, 49.040484 ], [ 7.976319, 49.0283 ], [ 7.997338, 49.02802 ], [ 8.020574, 49.01937 ], [ 8.051136, 49.012758 ], [ 8.068136, 48.99931 ], [ 8.086945, 48.99056 ], [ 8.091376, 48.98926 ], [ 8.128979, 48.98306 ], [ 8.132862, 48.98107 ], [ 8.147114, 48.977487 ], [ 8.162481, 48.97742 ], [ 8.193517, 48.97647 ], [ 8.202866, 48.96936 ], [ 8.221431, 48.97524 ], [ 8.230295, 48.9673 ], [ 8.201638, 48.95915 ], [ 8.18931, 48.94822 ], [ 8.187147, 48.94506 ], [ 8.184989, 48.94194 ], [ 8.168506, 48.924505 ], [ 8.165528, 48.92179 ], [ 8.141568, 48.89607 ], [ 8.123191, 48.86812 ], [ 8.121444, 48.864942 ], [ 8.108217, 48.835263 ], [ 8.107299, 48.828408 ], [ 8.106525, 48.825115 ], [ 8.087016, 48.80201 ], [ 8.083462, 48.799432 ], [ 8.062413, 48.78919 ], [ 8.041571, 48.79073 ], [ 8.031856, 48.78815 ], [ 8.017477, 48.76275 ], [ 7.982994, 48.761088 ], [ 7.978115, 48.76025 ], [ 7.96876, 48.75305 ], [ 7.967702, 48.72979 ], [ 7.966976, 48.72631 ], [ 7.924601, 48.69054 ], [ 7.921391, 48.68796 ], [ 7.896251, 48.66721 ], [ 7.893, 48.664595 ], [ 7.845044, 48.645532 ], [ 7.835923, 48.633674 ], [ 7.834842, 48.63022 ], [ 7.830464, 48.620063 ], [ 7.805009, 48.59319 ], [ 7.800177, 48.58317 ], [ 7.805468, 48.558838 ], [ 7.805162, 48.5135 ], [ 7.793974, 48.501669 ], [ 7.771475, 48.492437 ], [ 7.76841, 48.48989 ], [ 7.766162, 48.463973 ], [ 7.763982, 48.45384 ], [ 7.753419, 48.43461 ], [ 7.751579, 48.431347 ], [ 7.733547, 48.398685 ], [ 7.730966, 48.3822 ], [ 7.735052, 48.365845 ], [ 7.736099, 48.362594 ], [ 7.737219, 48.359422 ], [ 7.743503, 48.34033 ], [ 7.744637, 48.33687 ], [ 7.744002, 48.32639 ], [ 7.738099, 48.32058 ], [ 7.705078, 48.30964 ], [ 7.693937, 48.30212 ], [ 7.680779, 48.25732 ], [ 7.679569, 48.25418 ], [ 7.678301, 48.250851 ], [ 7.666151, 48.221101 ], [ 7.64185, 48.204 ], [ 7.637131, 48.19587 ], [ 7.635273, 48.192681 ], [ 7.613793, 48.169665 ], [ 7.5995, 48.155631 ], [ 7.598898, 48.13543 ], [ 7.580143, 48.124441 ], [ 7.577859, 48.12139 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "69", "CODE_DEPT": "68", "NOM_DEPT": "HAUT-RHIN", "CODE_CHF": "066", "NOM_CHF": "COLMAR", "X_CHF_LIEU": "10241", "Y_CHF_LIEU": "67845", "X_CENTROID": "10194", "Y_CENTROID": "67595", "CODE_REG": "42", "NOM_REGION": "ALSACE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.577859, 48.12139 ], [ 7.577109, 48.11848 ], [ 7.579775, 48.106843 ], [ 7.575989, 48.093902 ], [ 7.569675, 48.08421 ], [ 7.573386, 48.05963 ], [ 7.56859, 48.03634 ], [ 7.575301, 48.02753 ], [ 7.578458, 48.02489 ], [ 7.605851, 48.003353 ], [ 7.608583, 48.00032 ], [ 7.622157, 47.97366 ], [ 7.606746, 47.95129 ], [ 7.603343, 47.94856 ], [ 7.599898, 47.94614 ], [ 7.582634, 47.92989 ], [ 7.580516, 47.923853 ], [ 7.580987, 47.92077 ], [ 7.58346, 47.90143 ], [ 7.582515, 47.89826 ], [ 7.556153, 47.877574 ], [ 7.555642, 47.87053 ], [ 7.556106, 47.86719 ], [ 7.563369, 47.85117 ], [ 7.562403, 47.841018 ], [ 7.545848, 47.81265 ], [ 7.544378, 47.809554 ], [ 7.54106, 47.803453 ], [ 7.530228, 47.78344 ], [ 7.53157, 47.76937 ], [ 7.533371, 47.76603 ], [ 7.538212, 47.757261 ], [ 7.539848, 47.75434 ], [ 7.548326, 47.73873 ], [ 7.5472, 47.728838 ], [ 7.538458, 47.717052 ], [ 7.534946, 47.714718 ], [ 7.51721, 47.70486 ], [ 7.513752, 47.70282 ], [ 7.512127, 47.696092 ], [ 7.519798, 47.68342 ], [ 7.521764, 47.66301 ], [ 7.524674, 47.66019 ], [ 7.53729, 47.649597 ], [ 7.56457, 47.634568 ], [ 7.567355, 47.63174 ], [ 7.569511, 47.628722 ], [ 7.574324, 47.615802 ], [ 7.593036, 47.600821 ], [ 7.592744, 47.59759 ], [ 7.584266, 47.57571 ], [ 7.574802, 47.57614 ], [ 7.565025, 47.57632 ], [ 7.557757, 47.571568 ], [ 7.551769, 47.563381 ], [ 7.547566, 47.56173 ], [ 7.517363, 47.54577 ], [ 7.507876, 47.544756 ], [ 7.504503, 47.54297 ], [ 7.499111, 47.53824 ], [ 7.499031, 47.535234 ], [ 7.502447, 47.52884 ], [ 7.520963, 47.53339 ], [ 7.530015, 47.52632 ], [ 7.523452, 47.51704 ], [ 7.508542, 47.51558 ], [ 7.500923, 47.518499 ], [ 7.497798, 47.521226 ], [ 7.498597, 47.51775 ], [ 7.50873, 47.50991 ], [ 7.50952, 47.499566 ], [ 7.489963, 47.48374 ], [ 7.480658, 47.48079 ], [ 7.470657, 47.48159 ], [ 7.464232, 47.48699 ], [ 7.454619, 47.489427 ], [ 7.438881, 47.49629 ], [ 7.434763, 47.497966 ], [ 7.421954, 47.48352 ], [ 7.421225, 47.48017 ], [ 7.43116, 47.48146 ], [ 7.453485, 47.473576 ], [ 7.44463, 47.461914 ], [ 7.430067, 47.459278 ], [ 7.422547, 47.447753 ], [ 7.403802, 47.43769 ], [ 7.400344, 47.43539 ], [ 7.386298, 47.43197 ], [ 7.356149, 47.434239 ], [ 7.338911, 47.440572 ], [ 7.328807, 47.44084 ], [ 7.324561, 47.438952 ], [ 7.303976, 47.43825 ], [ 7.245487, 47.420194 ], [ 7.24434, 47.42734 ], [ 7.236761, 47.43028 ], [ 7.235902, 47.436879 ], [ 7.227924, 47.439657 ], [ 7.210452, 47.43612 ], [ 7.206223, 47.434891 ], [ 7.196512, 47.435747 ], [ 7.172162, 47.445503 ], [ 7.178251, 47.45814 ], [ 7.177993, 47.46811 ], [ 7.18773, 47.483462 ], [ 7.197923, 47.49016 ], [ 7.202313, 47.4917 ], [ 7.198165, 47.49358 ], [ 7.163992, 47.49011 ], [ 7.130346, 47.503027 ], [ 7.142173, 47.52502 ], [ 7.137885, 47.53066 ], [ 7.136668, 47.533675 ], [ 7.13281, 47.539202 ], [ 7.131577, 47.540291 ], [ 7.128022, 47.54183 ], [ 7.118633, 47.547311 ], [ 7.114064, 47.547969 ], [ 7.106216, 47.551337 ], [ 7.107618, 47.55364 ], [ 7.107532, 47.558583 ], [ 7.108259, 47.5618 ], [ 7.102383, 47.5706 ], [ 7.094361, 47.57349 ], [ 7.09288, 47.57694 ], [ 7.088724, 47.58354 ], [ 7.086324, 47.58491 ], [ 7.086787, 47.58765 ], [ 7.085388, 47.59305 ], [ 7.081668, 47.59476 ], [ 7.078391, 47.59686 ], [ 7.074772, 47.59885 ], [ 7.074506, 47.59886 ], [ 7.041412, 47.599821 ], [ 7.02538, 47.59238 ], [ 7.024362, 47.589127 ], [ 7.019563, 47.588382 ], [ 7.019479, 47.593982 ], [ 7.009213, 47.599391 ], [ 7.006716, 47.60145 ], [ 7.011233, 47.6057 ], [ 7.007647, 47.60747 ], [ 7.006179, 47.61933 ], [ 7.007601, 47.621573 ], [ 7.006925, 47.626418 ], [ 7.010525, 47.630152 ], [ 7.016567, 47.645049 ], [ 7.017172, 47.648129 ], [ 7.019805, 47.65068 ], [ 7.034478, 47.64946 ], [ 7.039244, 47.65039 ], [ 7.037741, 47.653449 ], [ 7.035237, 47.659655 ], [ 7.045282, 47.67037 ], [ 7.04166, 47.67241 ], [ 7.037637, 47.67515 ], [ 7.039997, 47.6781 ], [ 7.045893, 47.68334 ], [ 7.038634, 47.687945 ], [ 7.036342, 47.692224 ], [ 7.038652, 47.692586 ], [ 7.035736, 47.694967 ], [ 7.027565, 47.70537 ], [ 7.029376, 47.70866 ], [ 7.037418, 47.721558 ], [ 7.035193, 47.7241 ], [ 7.032079, 47.72619 ], [ 7.0294, 47.72838 ], [ 7.020601, 47.73444 ], [ 7.018794, 47.7374 ], [ 7.015778, 47.74346 ], [ 7.011685, 47.741631 ], [ 6.998425, 47.745825 ], [ 6.993444, 47.746743 ], [ 6.974542, 47.75147 ], [ 6.938479, 47.77082 ], [ 6.923452, 47.77006 ], [ 6.922358, 47.77209 ], [ 6.91897, 47.774 ], [ 6.907546, 47.777715 ], [ 6.902092, 47.77645 ], [ 6.891696, 47.77834 ], [ 6.88743, 47.779961 ], [ 6.864959, 47.784607 ], [ 6.862197, 47.78744 ], [ 6.842967, 47.81367 ], [ 6.84618, 47.822945 ], [ 6.891175, 47.83352 ], [ 6.896086, 47.83297 ], [ 6.897089, 47.83479 ], [ 6.907205, 47.84604 ], [ 6.916958, 47.847597 ], [ 6.920048, 47.850287 ], [ 6.918805, 47.85286 ], [ 6.918906, 47.858039 ], [ 6.914944, 47.86005 ], [ 6.90804, 47.864664 ], [ 6.907135, 47.87129 ], [ 6.907124, 47.88116 ], [ 6.898328, 47.88869 ], [ 6.918458, 47.898414 ], [ 6.917036, 47.90165 ], [ 6.927478, 47.90875 ], [ 6.926308, 47.91541 ], [ 6.912346, 47.91838 ], [ 6.924738, 47.92915 ], [ 6.920791, 47.945939 ], [ 6.923823, 47.95247 ], [ 6.925559, 47.95925 ], [ 6.931043, 47.97115 ], [ 6.941063, 47.97778 ], [ 6.943766, 47.980383 ], [ 6.943033, 47.99199 ], [ 6.94353, 47.99867 ], [ 6.951891, 48.00241 ], [ 6.961425, 48.00046 ], [ 6.976517, 48.009239 ], [ 6.981539, 48.00942 ], [ 6.989372, 48.018211 ], [ 7.002566, 48.02325 ], [ 7.011704, 48.035355 ], [ 7.016021, 48.03719 ], [ 7.013018, 48.04011 ], [ 7.009749, 48.04289 ], [ 7.012283, 48.04583 ], [ 7.018614, 48.05506 ], [ 7.023359, 48.05648 ], [ 7.024436, 48.063384 ], [ 7.034358, 48.075389 ], [ 7.05165, 48.08261 ], [ 7.06841, 48.10328 ], [ 7.070402, 48.10644 ], [ 7.076708, 48.108486 ], [ 7.083691, 48.12207 ], [ 7.084163, 48.12922 ], [ 7.068587, 48.130752 ], [ 7.059047, 48.13918 ], [ 7.078438, 48.16401 ], [ 7.077558, 48.170925 ], [ 7.082138, 48.17477 ], [ 7.083342, 48.17745 ], [ 7.086997, 48.183753 ], [ 7.102708, 48.19191 ], [ 7.10629, 48.19431 ], [ 7.108345, 48.19751 ], [ 7.105556, 48.200462 ], [ 7.108503, 48.20317 ], [ 7.116387, 48.20713 ], [ 7.126811, 48.22509 ], [ 7.132651, 48.24283 ], [ 7.143334, 48.258446 ], [ 7.153763, 48.26527 ], [ 7.157746, 48.26753 ], [ 7.158499, 48.26835 ], [ 7.159414, 48.27463 ], [ 7.174226, 48.287813 ], [ 7.172441, 48.29749 ], [ 7.176243, 48.299121 ], [ 7.193611, 48.302029 ], [ 7.198282, 48.310477 ], [ 7.203354, 48.30989 ], [ 7.218359, 48.31089 ], [ 7.245237, 48.30334 ], [ 7.254595, 48.306004 ], [ 7.259555, 48.3052 ], [ 7.274333, 48.30508 ], [ 7.280565, 48.29983 ], [ 7.28222, 48.2966 ], [ 7.286358, 48.295009 ], [ 7.290799, 48.293838 ], [ 7.290493, 48.29074 ], [ 7.299949, 48.28285 ], [ 7.29386, 48.27077 ], [ 7.308792, 48.26851 ], [ 7.333983, 48.272511 ], [ 7.33139, 48.2702 ], [ 7.328684, 48.26782 ], [ 7.322898, 48.26327 ], [ 7.314287, 48.26244 ], [ 7.312801, 48.255661 ], [ 7.325376, 48.24545 ], [ 7.351512, 48.24745 ], [ 7.398737, 48.2323 ], [ 7.409073, 48.22445 ], [ 7.414318, 48.224911 ], [ 7.4178, 48.22269 ], [ 7.435466, 48.21786 ], [ 7.444787, 48.21678 ], [ 7.450586, 48.21168 ], [ 7.472434, 48.20473 ], [ 7.476943, 48.20354 ], [ 7.473539, 48.197736 ], [ 7.475189, 48.185092 ], [ 7.472763, 48.182228 ], [ 7.470667, 48.163381 ], [ 7.47014, 48.160174 ], [ 7.474998, 48.15948 ], [ 7.520334, 48.1495 ], [ 7.515351, 48.13313 ], [ 7.517421, 48.13057 ], [ 7.518595, 48.127764 ], [ 7.537615, 48.123653 ], [ 7.572792, 48.12133 ], [ 7.577859, 48.12139 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "70", "CODE_DEPT": "69", "NOM_DEPT": "RHONE", "CODE_CHF": "123", "NOM_CHF": "LYON", "X_CHF_LIEU": "8431", "Y_CHF_LIEU": "65193", "X_CENTROID": "8273", "Y_CENTROID": "65314", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.101067, 45.81338 ], [ 5.090735, 45.78716 ], [ 5.086697, 45.785242 ], [ 5.063732, 45.790871 ], [ 5.059069, 45.791857 ], [ 5.060075, 45.78534 ], [ 5.059605, 45.782074 ], [ 5.069344, 45.76641 ], [ 5.088802, 45.76702 ], [ 5.09354, 45.766036 ], [ 5.091591, 45.762848 ], [ 5.089879, 45.75263 ], [ 5.094527, 45.739453 ], [ 5.130361, 45.7356 ], [ 5.133749, 45.73339 ], [ 5.142938, 45.72221 ], [ 5.155242, 45.717167 ], [ 5.159244, 45.71525 ], [ 5.156647, 45.70506 ], [ 5.155332, 45.701662 ], [ 5.152058, 45.70408 ], [ 5.143568, 45.70131 ], [ 5.130745, 45.705183 ], [ 5.104281, 45.698294 ], [ 5.107072, 45.68822 ], [ 5.091109, 45.680388 ], [ 5.089164, 45.6772 ], [ 5.079511, 45.67613 ], [ 5.054025, 45.66005 ], [ 5.056684, 45.655575 ], [ 5.058066, 45.65334 ], [ 5.038303, 45.64337 ], [ 5.036484, 45.629522 ], [ 5.044126, 45.620547 ], [ 5.040266, 45.618563 ], [ 5.033762, 45.61412 ], [ 5.002707, 45.622463 ], [ 4.989447, 45.618573 ], [ 4.99231, 45.61573 ], [ 5.001745, 45.61396 ], [ 4.998873, 45.60372 ], [ 4.998331, 45.603282 ], [ 4.993871, 45.604875 ], [ 4.971512, 45.6127 ], [ 4.932731, 45.607347 ], [ 4.929941, 45.606467 ], [ 4.927079, 45.60572 ], [ 4.912981, 45.60698 ], [ 4.891364, 45.60155 ], [ 4.887708, 45.601581 ], [ 4.882762, 45.60179 ], [ 4.876687, 45.596695 ], [ 4.867189, 45.595466 ], [ 4.859784, 45.590833 ], [ 4.857586, 45.57652 ], [ 4.848644, 45.579919 ], [ 4.84462, 45.581562 ], [ 4.828533, 45.58773 ], [ 4.810818, 45.589722 ], [ 4.806022, 45.589007 ], [ 4.777132, 45.58739 ], [ 4.778305, 45.583981 ], [ 4.808442, 45.57235 ], [ 4.814331, 45.56811 ], [ 4.81601, 45.56535 ], [ 4.819066, 45.560784 ], [ 4.820698, 45.55853 ], [ 4.832431, 45.546921 ], [ 4.83654, 45.54482 ], [ 4.863055, 45.53775 ], [ 4.87277, 45.53091 ], [ 4.871814, 45.527636 ], [ 4.864208, 45.51942 ], [ 4.861328, 45.516849 ], [ 4.848693, 45.50637 ], [ 4.845381, 45.503844 ], [ 4.841456, 45.500603 ], [ 4.837207, 45.49916 ], [ 4.824478, 45.49494 ], [ 4.8136, 45.48419 ], [ 4.801278, 45.47935 ], [ 4.799126, 45.478502 ], [ 4.794931, 45.477065 ], [ 4.779996, 45.46965 ], [ 4.780067, 45.466664 ], [ 4.781318, 45.457782 ], [ 4.779476, 45.45504 ], [ 4.775918, 45.45421 ], [ 4.772288, 45.45556 ], [ 4.756936, 45.455707 ], [ 4.754109, 45.458183 ], [ 4.737785, 45.47272 ], [ 4.742368, 45.47397 ], [ 4.738429, 45.487168 ], [ 4.721828, 45.494395 ], [ 4.718576, 45.491941 ], [ 4.699815, 45.47813 ], [ 4.681929, 45.479806 ], [ 4.677448, 45.48065 ], [ 4.670697, 45.476281 ], [ 4.668818, 45.48234 ], [ 4.662186, 45.48661 ], [ 4.65775, 45.48559 ], [ 4.650603, 45.49711 ], [ 4.654295, 45.499392 ], [ 4.650706, 45.52987 ], [ 4.664346, 45.539458 ], [ 4.665332, 45.542839 ], [ 4.666491, 45.543047 ], [ 4.668371, 45.545874 ], [ 4.685176, 45.554756 ], [ 4.688126, 45.55776 ], [ 4.676305, 45.56877 ], [ 4.658587, 45.56377 ], [ 4.649274, 45.56491 ], [ 4.648858, 45.5617 ], [ 4.646599, 45.55558 ], [ 4.659832, 45.543227 ], [ 4.652094, 45.54209 ], [ 4.644591, 45.54016 ], [ 4.642481, 45.543365 ], [ 4.635566, 45.548374 ], [ 4.625701, 45.56825 ], [ 4.614858, 45.57548 ], [ 4.610735, 45.57391 ], [ 4.602862, 45.57041 ], [ 4.58711, 45.57072 ], [ 4.583861, 45.57323 ], [ 4.5706, 45.582256 ], [ 4.566766, 45.58368 ], [ 4.555531, 45.579142 ], [ 4.547261, 45.58016 ], [ 4.542608, 45.57977 ], [ 4.521878, 45.572641 ], [ 4.514431, 45.57652 ], [ 4.50522, 45.576882 ], [ 4.504569, 45.58362 ], [ 4.500541, 45.585473 ], [ 4.467814, 45.58575 ], [ 4.46818, 45.58844 ], [ 4.474517, 45.59471 ], [ 4.472496, 45.597345 ], [ 4.460841, 45.601 ], [ 4.450037, 45.607355 ], [ 4.441489, 45.62305 ], [ 4.437475, 45.624196 ], [ 4.422444, 45.629664 ], [ 4.418074, 45.629449 ], [ 4.410284, 45.632051 ], [ 4.40886, 45.63712 ], [ 4.404997, 45.639196 ], [ 4.39261, 45.653616 ], [ 4.395888, 45.65524 ], [ 4.392551, 45.66248 ], [ 4.387908, 45.663797 ], [ 4.36592, 45.671153 ], [ 4.368732, 45.6737 ], [ 4.365891, 45.682997 ], [ 4.373447, 45.69078 ], [ 4.36994, 45.692918 ], [ 4.365516, 45.69852 ], [ 4.369701, 45.700396 ], [ 4.375139, 45.71338 ], [ 4.384784, 45.72119 ], [ 4.391247, 45.737877 ], [ 4.402925, 45.74392 ], [ 4.401178, 45.74657 ], [ 4.390677, 45.755077 ], [ 4.385803, 45.75466 ], [ 4.373271, 45.749445 ], [ 4.359161, 45.751102 ], [ 4.360331, 45.754213 ], [ 4.349101, 45.77117 ], [ 4.358288, 45.778915 ], [ 4.37645, 45.784107 ], [ 4.37399, 45.801141 ], [ 4.375618, 45.80445 ], [ 4.383692, 45.804995 ], [ 4.38784, 45.803007 ], [ 4.380282, 45.81745 ], [ 4.382465, 45.82027 ], [ 4.376035, 45.82482 ], [ 4.380569, 45.825315 ], [ 4.383698, 45.83399 ], [ 4.390601, 45.837476 ], [ 4.387014, 45.83982 ], [ 4.383083, 45.845972 ], [ 4.390615, 45.85028 ], [ 4.39614, 45.85982 ], [ 4.394471, 45.865168 ], [ 4.389622, 45.864616 ], [ 4.361094, 45.86617 ], [ 4.342469, 45.876903 ], [ 4.340314, 45.880026 ], [ 4.336936, 45.89016 ], [ 4.326224, 45.89737 ], [ 4.323221, 45.90389 ], [ 4.327391, 45.905639 ], [ 4.346215, 45.915765 ], [ 4.341656, 45.91666 ], [ 4.337581, 45.918335 ], [ 4.34602, 45.929943 ], [ 4.33654, 45.93183 ], [ 4.32205, 45.941123 ], [ 4.312396, 45.942289 ], [ 4.293912, 45.9534 ], [ 4.300575, 45.958322 ], [ 4.288823, 45.973172 ], [ 4.275742, 45.9778 ], [ 4.272447, 45.979968 ], [ 4.258975, 45.98117 ], [ 4.248043, 45.986724 ], [ 4.246046, 45.99612 ], [ 4.251152, 45.9956 ], [ 4.26467, 45.998517 ], [ 4.269628, 45.992716 ], [ 4.274439, 45.992365 ], [ 4.289001, 45.995658 ], [ 4.300096, 45.988894 ], [ 4.301162, 45.99192 ], [ 4.312008, 46.00513 ], [ 4.310332, 46.008013 ], [ 4.30825, 46.011252 ], [ 4.305846, 46.02159 ], [ 4.305067, 46.021475 ], [ 4.300616, 46.02077 ], [ 4.287736, 46.018359 ], [ 4.28002, 46.02177 ], [ 4.275984, 46.023896 ], [ 4.26982, 46.033529 ], [ 4.260555, 46.03605 ], [ 4.260961, 46.039113 ], [ 4.251078, 46.04918 ], [ 4.253426, 46.05179 ], [ 4.257097, 46.05392 ], [ 4.266223, 46.051978 ], [ 4.285097, 46.05368 ], [ 4.297331, 46.063451 ], [ 4.300045, 46.06605 ], [ 4.301426, 46.078463 ], [ 4.304989, 46.079196 ], [ 4.310407, 46.08172 ], [ 4.310007, 46.085029 ], [ 4.311328, 46.09485 ], [ 4.305996, 46.100331 ], [ 4.309295, 46.110002 ], [ 4.312806, 46.112249 ], [ 4.319714, 46.11682 ], [ 4.322116, 46.12998 ], [ 4.329682, 46.13323 ], [ 4.332742, 46.135505 ], [ 4.356622, 46.138275 ], [ 4.361588, 46.138459 ], [ 4.377187, 46.149808 ], [ 4.381809, 46.14966 ], [ 4.385438, 46.147645 ], [ 4.408245, 46.137061 ], [ 4.417362, 46.13592 ], [ 4.417098, 46.13926 ], [ 4.438591, 46.167879 ], [ 4.435171, 46.169958 ], [ 4.414315, 46.18007 ], [ 4.410541, 46.18153 ], [ 4.406358, 46.18224 ], [ 4.402903, 46.18454 ], [ 4.395468, 46.1925 ], [ 4.401312, 46.19688 ], [ 4.422965, 46.203137 ], [ 4.421756, 46.20702 ], [ 4.419863, 46.210066 ], [ 4.406746, 46.21962 ], [ 4.38808, 46.21979 ], [ 4.386217, 46.225674 ], [ 4.385568, 46.246162 ], [ 4.388286, 46.24791 ], [ 4.396835, 46.266523 ], [ 4.396451, 46.271841 ], [ 4.396364, 46.274544 ], [ 4.398757, 46.284322 ], [ 4.407092, 46.292739 ], [ 4.405814, 46.296061 ], [ 4.410616, 46.29534 ], [ 4.424387, 46.2963 ], [ 4.427039, 46.30283 ], [ 4.437717, 46.296284 ], [ 4.439452, 46.29306 ], [ 4.453248, 46.29644 ], [ 4.462188, 46.29402 ], [ 4.475428, 46.2844 ], [ 4.483775, 46.287065 ], [ 4.488465, 46.28799 ], [ 4.501484, 46.270072 ], [ 4.504001, 46.267139 ], [ 4.542343, 46.27197 ], [ 4.54645, 46.27392 ], [ 4.54809, 46.28323 ], [ 4.555437, 46.29126 ], [ 4.557841, 46.293993 ], [ 4.570273, 46.293029 ], [ 4.572161, 46.28998 ], [ 4.572725, 46.277045 ], [ 4.582672, 46.270215 ], [ 4.586527, 46.26836 ], [ 4.614456, 46.2664 ], [ 4.618565, 46.264793 ], [ 4.620162, 46.277956 ], [ 4.617019, 46.28062 ], [ 4.635777, 46.291918 ], [ 4.638725, 46.30142 ], [ 4.653189, 46.303177 ], [ 4.664478, 46.29662 ], [ 4.679741, 46.304518 ], [ 4.693436, 46.30232 ], [ 4.69295, 46.297099 ], [ 4.693884, 46.29454 ], [ 4.703249, 46.284841 ], [ 4.70748, 46.2847 ], [ 4.710054, 46.278947 ], [ 4.707417, 46.269764 ], [ 4.700696, 46.267477 ], [ 4.694068, 46.271512 ], [ 4.68457, 46.26593 ], [ 4.680571, 46.267218 ], [ 4.681228, 46.257301 ], [ 4.690873, 46.24965 ], [ 4.705377, 46.250961 ], [ 4.708899, 46.248584 ], [ 4.720694, 46.24426 ], [ 4.736181, 46.233202 ], [ 4.733016, 46.22751 ], [ 4.720018, 46.2285 ], [ 4.731773, 46.21322 ], [ 4.735682, 46.2117 ], [ 4.721501, 46.20013 ], [ 4.721489, 46.19684 ], [ 4.720362, 46.193577 ], [ 4.724376, 46.18431 ], [ 4.733118, 46.177792 ], [ 4.75959, 46.173603 ], [ 4.763197, 46.1757 ], [ 4.771584, 46.17564 ], [ 4.775494, 46.177093 ], [ 4.780213, 46.176677 ], [ 4.782319, 46.171636 ], [ 4.784274, 46.16837 ], [ 4.791741, 46.16361 ], [ 4.799993, 46.15949 ], [ 4.80255, 46.156437 ], [ 4.802787, 46.153407 ], [ 4.795944, 46.139158 ], [ 4.793172, 46.136382 ], [ 4.787486, 46.13089 ], [ 4.784254, 46.1283 ], [ 4.772069, 46.117627 ], [ 4.771191, 46.1117 ], [ 4.767114, 46.106527 ], [ 4.762596, 46.102544 ], [ 4.760178, 46.100645 ], [ 4.757137, 46.09827 ], [ 4.748023, 46.091357 ], [ 4.749615, 46.08242 ], [ 4.756261, 46.078971 ], [ 4.761062, 46.07046 ], [ 4.761755, 46.067438 ], [ 4.759083, 46.061202 ], [ 4.75632, 46.05855 ], [ 4.739617, 46.047487 ], [ 4.745657, 46.03524 ], [ 4.746774, 46.03255 ], [ 4.746389, 46.026946 ], [ 4.743942, 46.020309 ], [ 4.74889, 46.00719 ], [ 4.748988, 46.003757 ], [ 4.748491, 46.00278 ], [ 4.749567, 45.99637 ], [ 4.754611, 45.97381 ], [ 4.750169, 45.96449 ], [ 4.748462, 45.96241 ], [ 4.744998, 45.959882 ], [ 4.730275, 45.95041 ], [ 4.731896, 45.9408 ], [ 4.739899, 45.937875 ], [ 4.744455, 45.937427 ], [ 4.756784, 45.93463 ], [ 4.761121, 45.934998 ], [ 4.769154, 45.93832 ], [ 4.777994, 45.93784 ], [ 4.786921, 45.926478 ], [ 4.788994, 45.92355 ], [ 4.803178, 45.921968 ], [ 4.80776, 45.920805 ], [ 4.809782, 45.918314 ], [ 4.810675, 45.909752 ], [ 4.80955, 45.90653 ], [ 4.804099, 45.89807 ], [ 4.805177, 45.89633 ], [ 4.844452, 45.911557 ], [ 4.849116, 45.912868 ], [ 4.853105, 45.90716 ], [ 4.870683, 45.903127 ], [ 4.872016, 45.896782 ], [ 4.872087, 45.893538 ], [ 4.877315, 45.89668 ], [ 4.880699, 45.89717 ], [ 4.883222, 45.88343 ], [ 4.883827, 45.87999 ], [ 4.904376, 45.874524 ], [ 4.909017, 45.87411 ], [ 4.901239, 45.86059 ], [ 4.900569, 45.8576 ], [ 4.91595, 45.845415 ], [ 4.918781, 45.83565 ], [ 4.921116, 45.83274 ], [ 4.919766, 45.82949 ], [ 4.918589, 45.809357 ], [ 4.924522, 45.804041 ], [ 4.946837, 45.809405 ], [ 4.951516, 45.808766 ], [ 4.966931, 45.80904 ], [ 4.970375, 45.80738 ], [ 4.98034, 45.80584 ], [ 4.992917, 45.8078 ], [ 4.996959, 45.809142 ], [ 5.001206, 45.81012 ], [ 5.012298, 45.80523 ], [ 5.016691, 45.80561 ], [ 5.020714, 45.80713 ], [ 5.037812, 45.80835 ], [ 5.045296, 45.81182 ], [ 5.054278, 45.811582 ], [ 5.058158, 45.809926 ], [ 5.087546, 45.8118 ], [ 5.092558, 45.811834 ], [ 5.096801, 45.81264 ], [ 5.101067, 45.81338 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "71", "CODE_DEPT": "70", "NOM_DEPT": "HAUTE-SAONE", "CODE_CHF": "550", "NOM_CHF": "VESOUL", "X_CHF_LIEU": "9369", "Y_CHF_LIEU": "67293", "X_CENTROID": "9316", "Y_CENTROID": "67312", "CODE_REG": "43", "NOM_REGION": "FRANCHE-COMTE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.698726, 47.265006 ], [ 5.697562, 47.267915 ], [ 5.691668, 47.272295 ], [ 5.684065, 47.271642 ], [ 5.683462, 47.274152 ], [ 5.676645, 47.275723 ], [ 5.672097, 47.27422 ], [ 5.66334, 47.26604 ], [ 5.653365, 47.265008 ], [ 5.652677, 47.262339 ], [ 5.646765, 47.258898 ], [ 5.642305, 47.25619 ], [ 5.637434, 47.25615 ], [ 5.62332, 47.25403 ], [ 5.610811, 47.25906 ], [ 5.60132, 47.26061 ], [ 5.583791, 47.25515 ], [ 5.580744, 47.25286 ], [ 5.573451, 47.25555 ], [ 5.573459, 47.261512 ], [ 5.56976, 47.263576 ], [ 5.568857, 47.26959 ], [ 5.555199, 47.269005 ], [ 5.55606, 47.279047 ], [ 5.533517, 47.28627 ], [ 5.522116, 47.305352 ], [ 5.518539, 47.304187 ], [ 5.513097, 47.30816 ], [ 5.509108, 47.30809 ], [ 5.498495, 47.314221 ], [ 5.47918, 47.31496 ], [ 5.47167, 47.318119 ], [ 5.47373, 47.324317 ], [ 5.477101, 47.326749 ], [ 5.48901, 47.32903 ], [ 5.494704, 47.338099 ], [ 5.490065, 47.354347 ], [ 5.488824, 47.35586 ], [ 5.489222, 47.36987 ], [ 5.491894, 47.372889 ], [ 5.496919, 47.38855 ], [ 5.477992, 47.39423 ], [ 5.451393, 47.38397 ], [ 5.449094, 47.38675 ], [ 5.433256, 47.392522 ], [ 5.433672, 47.39584 ], [ 5.442459, 47.40705 ], [ 5.430425, 47.42136 ], [ 5.43846, 47.44423 ], [ 5.441022, 47.44656 ], [ 5.435629, 47.45029 ], [ 5.431819, 47.44826 ], [ 5.418162, 47.450702 ], [ 5.413959, 47.459966 ], [ 5.409538, 47.46146 ], [ 5.379572, 47.45056 ], [ 5.380928, 47.45358 ], [ 5.381551, 47.459229 ], [ 5.370722, 47.464475 ], [ 5.379534, 47.46614 ], [ 5.404108, 47.475102 ], [ 5.407642, 47.47719 ], [ 5.403346, 47.477351 ], [ 5.387298, 47.481194 ], [ 5.388163, 47.48362 ], [ 5.391142, 47.48816 ], [ 5.397351, 47.49625 ], [ 5.399216, 47.499014 ], [ 5.427781, 47.49652 ], [ 5.43203, 47.491777 ], [ 5.436433, 47.49042 ], [ 5.44311, 47.494932 ], [ 5.44746, 47.4962 ], [ 5.451419, 47.504303 ], [ 5.453722, 47.5067 ], [ 5.469344, 47.52437 ], [ 5.471747, 47.52746 ], [ 5.486404, 47.52697 ], [ 5.487817, 47.52991 ], [ 5.49664, 47.54713 ], [ 5.496668, 47.55059 ], [ 5.491292, 47.563383 ], [ 5.48238, 47.56545 ], [ 5.486492, 47.57861 ], [ 5.478564, 47.60539 ], [ 5.471052, 47.60822 ], [ 5.468523, 47.611129 ], [ 5.440171, 47.629771 ], [ 5.425595, 47.63207 ], [ 5.422559, 47.629463 ], [ 5.399805, 47.59716 ], [ 5.396263, 47.595966 ], [ 5.389121, 47.595238 ], [ 5.378175, 47.603549 ], [ 5.374079, 47.604542 ], [ 5.37492, 47.621355 ], [ 5.387812, 47.636212 ], [ 5.4032, 47.64509 ], [ 5.405616, 47.64813 ], [ 5.401686, 47.64844 ], [ 5.398975, 47.653075 ], [ 5.406486, 47.67362 ], [ 5.421267, 47.67644 ], [ 5.434217, 47.67126 ], [ 5.444413, 47.67089 ], [ 5.46934, 47.67483 ], [ 5.478994, 47.6823 ], [ 5.48277, 47.684644 ], [ 5.502301, 47.67741 ], [ 5.506626, 47.67666 ], [ 5.510298, 47.67423 ], [ 5.530594, 47.67401 ], [ 5.565433, 47.7039 ], [ 5.567389, 47.70712 ], [ 5.571029, 47.706798 ], [ 5.575159, 47.70473 ], [ 5.583657, 47.70088 ], [ 5.585265, 47.69057 ], [ 5.596814, 47.671647 ], [ 5.60234, 47.67506 ], [ 5.606094, 47.675205 ], [ 5.61539, 47.67334 ], [ 5.629558, 47.67674 ], [ 5.648861, 47.675549 ], [ 5.653261, 47.677161 ], [ 5.659334, 47.681543 ], [ 5.659723, 47.68453 ], [ 5.663716, 47.684911 ], [ 5.667652, 47.685479 ], [ 5.675428, 47.682563 ], [ 5.692038, 47.687162 ], [ 5.693806, 47.69022 ], [ 5.694993, 47.69364 ], [ 5.69322, 47.70396 ], [ 5.684206, 47.71228 ], [ 5.687023, 47.72023 ], [ 5.685198, 47.722694 ], [ 5.692512, 47.724 ], [ 5.695895, 47.72518 ], [ 5.692494, 47.727885 ], [ 5.689648, 47.7339 ], [ 5.692378, 47.73693 ], [ 5.70942, 47.74495 ], [ 5.706342, 47.751116 ], [ 5.707806, 47.76152 ], [ 5.708914, 47.764664 ], [ 5.703353, 47.769574 ], [ 5.67997, 47.769968 ], [ 5.682247, 47.77539 ], [ 5.680107, 47.77774 ], [ 5.676612, 47.77916 ], [ 5.685751, 47.81278 ], [ 5.693678, 47.82175 ], [ 5.708478, 47.82197 ], [ 5.713646, 47.82157 ], [ 5.718716, 47.821082 ], [ 5.728007, 47.81845 ], [ 5.731428, 47.81763 ], [ 5.743349, 47.82115 ], [ 5.746056, 47.823596 ], [ 5.748488, 47.82977 ], [ 5.744204, 47.848855 ], [ 5.753406, 47.85165 ], [ 5.758832, 47.85667 ], [ 5.761192, 47.859343 ], [ 5.789061, 47.8552 ], [ 5.798883, 47.85571 ], [ 5.796619, 47.84982 ], [ 5.801098, 47.84698 ], [ 5.805625, 47.84732 ], [ 5.823562, 47.85229 ], [ 5.828521, 47.85195 ], [ 5.827301, 47.85467 ], [ 5.824676, 47.8594 ], [ 5.82186, 47.86911 ], [ 5.842544, 47.89423 ], [ 5.845094, 47.89709 ], [ 5.848194, 47.903435 ], [ 5.851353, 47.9059 ], [ 5.883191, 47.90026 ], [ 5.886494, 47.90263 ], [ 5.889189, 47.90737 ], [ 5.890458, 47.909759 ], [ 5.888909, 47.91304 ], [ 5.884726, 47.92605 ], [ 5.896863, 47.931638 ], [ 5.89341, 47.93786 ], [ 5.902823, 47.94554 ], [ 5.907548, 47.94665 ], [ 5.912835, 47.94675 ], [ 5.918043, 47.94736 ], [ 5.919171, 47.967864 ], [ 5.92133, 47.971026 ], [ 5.92739, 47.9744 ], [ 5.943047, 47.979813 ], [ 5.947534, 47.97971 ], [ 5.950301, 47.97351 ], [ 5.957968, 47.96959 ], [ 5.959703, 47.96655 ], [ 5.941548, 47.95232 ], [ 5.937566, 47.950629 ], [ 5.932628, 47.937928 ], [ 5.942523, 47.93631 ], [ 5.947635, 47.93618 ], [ 5.956055, 47.938664 ], [ 5.964594, 47.946113 ], [ 5.968902, 47.947409 ], [ 5.970446, 47.953917 ], [ 5.970778, 47.957205 ], [ 6.002262, 47.95609 ], [ 6.008771, 47.961399 ], [ 6.009432, 47.96785 ], [ 6.023004, 47.97797 ], [ 6.022306, 47.98761 ], [ 6.036864, 48.00145 ], [ 6.068036, 48.01351 ], [ 6.072221, 48.01555 ], [ 6.080853, 48.0128 ], [ 6.085549, 48.01345 ], [ 6.104598, 48.01351 ], [ 6.109235, 48.01247 ], [ 6.114302, 48.01807 ], [ 6.127381, 48.022228 ], [ 6.131397, 48.02408 ], [ 6.152409, 48.009447 ], [ 6.156058, 48.006944 ], [ 6.152863, 47.996114 ], [ 6.159124, 47.99129 ], [ 6.163943, 47.97561 ], [ 6.161293, 47.97279 ], [ 6.149584, 47.9685 ], [ 6.155256, 47.96443 ], [ 6.16079, 47.9612 ], [ 6.161247, 47.958296 ], [ 6.171045, 47.95264 ], [ 6.179247, 47.95459 ], [ 6.182056, 47.95693 ], [ 6.207056, 47.945733 ], [ 6.208138, 47.942344 ], [ 6.204514, 47.932292 ], [ 6.209344, 47.93105 ], [ 6.214423, 47.930382 ], [ 6.219609, 47.93566 ], [ 6.233409, 47.933599 ], [ 6.237987, 47.93284 ], [ 6.24611, 47.93943 ], [ 6.250767, 47.93908 ], [ 6.259912, 47.94437 ], [ 6.262957, 47.94614 ], [ 6.274023, 47.951659 ], [ 6.277334, 47.95381 ], [ 6.292827, 47.955646 ], [ 6.306804, 47.95078 ], [ 6.322461, 47.95008 ], [ 6.360997, 47.96025 ], [ 6.364993, 47.962572 ], [ 6.378691, 47.95866 ], [ 6.388353, 47.960018 ], [ 6.404507, 47.952832 ], [ 6.407328, 47.94644 ], [ 6.40842, 47.9432 ], [ 6.431921, 47.94381 ], [ 6.448609, 47.922719 ], [ 6.460947, 47.91751 ], [ 6.457047, 47.90783 ], [ 6.475807, 47.888451 ], [ 6.478262, 47.88544 ], [ 6.503444, 47.89625 ], [ 6.537052, 47.90226 ], [ 6.542014, 47.902534 ], [ 6.555909, 47.91996 ], [ 6.558255, 47.92297 ], [ 6.568708, 47.934499 ], [ 6.596358, 47.94331 ], [ 6.601244, 47.944379 ], [ 6.605983, 47.944468 ], [ 6.610445, 47.93891 ], [ 6.612502, 47.93604 ], [ 6.629286, 47.928183 ], [ 6.640878, 47.91702 ], [ 6.639864, 47.91005 ], [ 6.645203, 47.904085 ], [ 6.669324, 47.89329 ], [ 6.683084, 47.89042 ], [ 6.686832, 47.88826 ], [ 6.689377, 47.8873 ], [ 6.691325, 47.88584 ], [ 6.699113, 47.88228 ], [ 6.703674, 47.881424 ], [ 6.710113, 47.87582 ], [ 6.730734, 47.866448 ], [ 6.735247, 47.864926 ], [ 6.737294, 47.86547 ], [ 6.738164, 47.86205 ], [ 6.784952, 47.84957 ], [ 6.790661, 47.844226 ], [ 6.791102, 47.83783 ], [ 6.788987, 47.83483 ], [ 6.791946, 47.83016 ], [ 6.820459, 47.8158 ], [ 6.823539, 47.81305 ], [ 6.824672, 47.809647 ], [ 6.807186, 47.79243 ], [ 6.786246, 47.78229 ], [ 6.774581, 47.76673 ], [ 6.771134, 47.764492 ], [ 6.757638, 47.74788 ], [ 6.758938, 47.74206 ], [ 6.759587, 47.739156 ], [ 6.760447, 47.735813 ], [ 6.759074, 47.72281 ], [ 6.771583, 47.71257 ], [ 6.770079, 47.7034 ], [ 6.779242, 47.69294 ], [ 6.780151, 47.689771 ], [ 6.778645, 47.67587 ], [ 6.777237, 47.665986 ], [ 6.784508, 47.65434 ], [ 6.787491, 47.65166 ], [ 6.790704, 47.64789 ], [ 6.798335, 47.644 ], [ 6.799868, 47.63763 ], [ 6.792461, 47.63003 ], [ 6.791077, 47.62688 ], [ 6.780405, 47.625261 ], [ 6.778741, 47.622098 ], [ 6.777868, 47.615412 ], [ 6.785643, 47.61136 ], [ 6.788234, 47.60487 ], [ 6.789341, 47.60469 ], [ 6.793286, 47.59928 ], [ 6.791302, 47.59629 ], [ 6.802327, 47.58966 ], [ 6.804107, 47.583046 ], [ 6.816938, 47.578076 ], [ 6.820109, 47.57549 ], [ 6.821011, 47.57433 ], [ 6.821724, 47.573314 ], [ 6.817753, 47.571786 ], [ 6.809823, 47.5687 ], [ 6.807005, 47.5628 ], [ 6.801329, 47.56181 ], [ 6.799531, 47.555241 ], [ 6.781102, 47.53637 ], [ 6.777111, 47.536955 ], [ 6.7693, 47.53771 ], [ 6.765616, 47.53907 ], [ 6.758113, 47.54157 ], [ 6.753726, 47.54296 ], [ 6.748853, 47.54863 ], [ 6.744932, 47.55079 ], [ 6.740108, 47.556802 ], [ 6.725942, 47.560401 ], [ 6.722269, 47.559455 ], [ 6.720623, 47.557237 ], [ 6.71951, 47.55253 ], [ 6.714589, 47.553158 ], [ 6.707803, 47.558 ], [ 6.685248, 47.56315 ], [ 6.686969, 47.5684 ], [ 6.688866, 47.57081 ], [ 6.665164, 47.57255 ], [ 6.659797, 47.57991 ], [ 6.653689, 47.571221 ], [ 6.667054, 47.560701 ], [ 6.670176, 47.5579 ], [ 6.667733, 47.55488 ], [ 6.659006, 47.54661 ], [ 6.654297, 47.54178 ], [ 6.651061, 47.53902 ], [ 6.648122, 47.53612 ], [ 6.644428, 47.534053 ], [ 6.627005, 47.529848 ], [ 6.617904, 47.531023 ], [ 6.613339, 47.530804 ], [ 6.605545, 47.533794 ], [ 6.606403, 47.53685 ], [ 6.602113, 47.538351 ], [ 6.594465, 47.54235 ], [ 6.58045, 47.54411 ], [ 6.581312, 47.54088 ], [ 6.569138, 47.53135 ], [ 6.5814, 47.529294 ], [ 6.579606, 47.52594 ], [ 6.57902, 47.522753 ], [ 6.583668, 47.51035 ], [ 6.576228, 47.49833 ], [ 6.573512, 47.495494 ], [ 6.568577, 47.49626 ], [ 6.558532, 47.496358 ], [ 6.553836, 47.490311 ], [ 6.552118, 47.49326 ], [ 6.532903, 47.506293 ], [ 6.531543, 47.50341 ], [ 6.522414, 47.49726 ], [ 6.517722, 47.49667 ], [ 6.506233, 47.502125 ], [ 6.500569, 47.51025 ], [ 6.497259, 47.507838 ], [ 6.475829, 47.49525 ], [ 6.475733, 47.488659 ], [ 6.471519, 47.48702 ], [ 6.46359, 47.5097 ], [ 6.460669, 47.512445 ], [ 6.45632, 47.514087 ], [ 6.428573, 47.51692 ], [ 6.420592, 47.5196 ], [ 6.416725, 47.521112 ], [ 6.414662, 47.51943 ], [ 6.411148, 47.5219 ], [ 6.396998, 47.518373 ], [ 6.389787, 47.506159 ], [ 6.38645, 47.508274 ], [ 6.378694, 47.511364 ], [ 6.374837, 47.51115 ], [ 6.368083, 47.51349 ], [ 6.363965, 47.512097 ], [ 6.348676, 47.50556 ], [ 6.343925, 47.505511 ], [ 6.334475, 47.506 ], [ 6.331564, 47.50345 ], [ 6.331201, 47.500389 ], [ 6.320565, 47.48775 ], [ 6.311626, 47.48829 ], [ 6.307378, 47.49032 ], [ 6.302508, 47.49153 ], [ 6.299164, 47.48322 ], [ 6.299621, 47.479855 ], [ 6.301729, 47.469857 ], [ 6.294221, 47.465962 ], [ 6.292276, 47.46285 ], [ 6.282863, 47.451489 ], [ 6.285731, 47.449309 ], [ 6.289211, 47.44758 ], [ 6.284914, 47.445512 ], [ 6.280184, 47.44397 ], [ 6.263406, 47.446072 ], [ 6.261907, 47.43738 ], [ 6.261047, 47.43438 ], [ 6.260835, 47.42849 ], [ 6.250552, 47.424665 ], [ 6.246193, 47.426129 ], [ 6.234959, 47.43114 ], [ 6.233076, 47.4281 ], [ 6.243715, 47.413702 ], [ 6.241571, 47.41074 ], [ 6.232706, 47.413838 ], [ 6.229907, 47.41651 ], [ 6.22465, 47.422 ], [ 6.211616, 47.4258 ], [ 6.207986, 47.4288 ], [ 6.206369, 47.431288 ], [ 6.20225, 47.429906 ], [ 6.198717, 47.41788 ], [ 6.194119, 47.417787 ], [ 6.186566, 47.41421 ], [ 6.177539, 47.4162 ], [ 6.170568, 47.41235 ], [ 6.170974, 47.40934 ], [ 6.177865, 47.40671 ], [ 6.185315, 47.40523 ], [ 6.189249, 47.40556 ], [ 6.189034, 47.402386 ], [ 6.179743, 47.40191 ], [ 6.172705, 47.39778 ], [ 6.171557, 47.39453 ], [ 6.160353, 47.388358 ], [ 6.155959, 47.389874 ], [ 6.152249, 47.38612 ], [ 6.147528, 47.38592 ], [ 6.130007, 47.388017 ], [ 6.126305, 47.393909 ], [ 6.117785, 47.39662 ], [ 6.118479, 47.39348 ], [ 6.106828, 47.38361 ], [ 6.111808, 47.37867 ], [ 6.106643, 47.37699 ], [ 6.110691, 47.37543 ], [ 6.119702, 47.36846 ], [ 6.11706, 47.36612 ], [ 6.111452, 47.36204 ], [ 6.103077, 47.36121 ], [ 6.102487, 47.361322 ], [ 6.103184, 47.364655 ], [ 6.100892, 47.37088 ], [ 6.082016, 47.37171 ], [ 6.082373, 47.360849 ], [ 6.081865, 47.357556 ], [ 6.071943, 47.35051 ], [ 6.057539, 47.349676 ], [ 6.054942, 47.35133 ], [ 6.052159, 47.352277 ], [ 6.051001, 47.348938 ], [ 6.048023, 47.34644 ], [ 6.038896, 47.344913 ], [ 6.030475, 47.33757 ], [ 6.027015, 47.33495 ], [ 6.023555, 47.33235 ], [ 6.010495, 47.333167 ], [ 6.008152, 47.335813 ], [ 5.996651, 47.33987 ], [ 5.992056, 47.328536 ], [ 5.988164, 47.32717 ], [ 5.987159, 47.329824 ], [ 5.983149, 47.329441 ], [ 5.978633, 47.328043 ], [ 5.964007, 47.337201 ], [ 5.96356, 47.33727 ], [ 5.960306, 47.33929 ], [ 5.942949, 47.341304 ], [ 5.941769, 47.3442 ], [ 5.938583, 47.34241 ], [ 5.926704, 47.34476 ], [ 5.924679, 47.341648 ], [ 5.930662, 47.328913 ], [ 5.926441, 47.32707 ], [ 5.921675, 47.32762 ], [ 5.904306, 47.333025 ], [ 5.896712, 47.32907 ], [ 5.896168, 47.32612 ], [ 5.902059, 47.315002 ], [ 5.894814, 47.31183 ], [ 5.882704, 47.32163 ], [ 5.878955, 47.319649 ], [ 5.873147, 47.3146 ], [ 5.863882, 47.31598 ], [ 5.853064, 47.31083 ], [ 5.852381, 47.30794 ], [ 5.845068, 47.300892 ], [ 5.840561, 47.299813 ], [ 5.83122, 47.29871 ], [ 5.827125, 47.29789 ], [ 5.815037, 47.29514 ], [ 5.810675, 47.294785 ], [ 5.795302, 47.2897 ], [ 5.790403, 47.289932 ], [ 5.78254, 47.28869 ], [ 5.774967, 47.280222 ], [ 5.757453, 47.27633 ], [ 5.75426, 47.27291 ], [ 5.749752, 47.27249 ], [ 5.741824, 47.264968 ], [ 5.735196, 47.26344 ], [ 5.731034, 47.2646 ], [ 5.71138, 47.27057 ], [ 5.707877, 47.26803 ], [ 5.698726, 47.265006 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "72", "CODE_DEPT": "71", "NOM_DEPT": "SAONE-ET-LOIRE", "CODE_CHF": "270", "NOM_CHF": "MACON", "X_CHF_LIEU": "8409", "Y_CHF_LIEU": "65800", "X_CENTROID": "8179", "Y_CENTROID": "66172", "CODE_REG": "26", "NOM_REGION": "BOURGOGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.38808, 46.21979 ], [ 4.388416, 46.21308 ], [ 4.374769, 46.20951 ], [ 4.363353, 46.19856 ], [ 4.373498, 46.187246 ], [ 4.370806, 46.184333 ], [ 4.36632, 46.185423 ], [ 4.358511, 46.18268 ], [ 4.346643, 46.18726 ], [ 4.334903, 46.181744 ], [ 4.326643, 46.184894 ], [ 4.326397, 46.18171 ], [ 4.31641, 46.171305 ], [ 4.311831, 46.1712 ], [ 4.309176, 46.17292 ], [ 4.30287, 46.174325 ], [ 4.298212, 46.17305 ], [ 4.290281, 46.16932 ], [ 4.282432, 46.156816 ], [ 4.277541, 46.15661 ], [ 4.253192, 46.157817 ], [ 4.24866, 46.16711 ], [ 4.253409, 46.167343 ], [ 4.261911, 46.17517 ], [ 4.258146, 46.184546 ], [ 4.255016, 46.18713 ], [ 4.240916, 46.186897 ], [ 4.232491, 46.17955 ], [ 4.226578, 46.17837 ], [ 4.224993, 46.17763 ], [ 4.223365, 46.180189 ], [ 4.219558, 46.1851 ], [ 4.215845, 46.18722 ], [ 4.206215, 46.19449 ], [ 4.189229, 46.18864 ], [ 4.18493, 46.19012 ], [ 4.184851, 46.179868 ], [ 4.186752, 46.176633 ], [ 4.178133, 46.173687 ], [ 4.143322, 46.176 ], [ 4.138591, 46.176666 ], [ 4.133847, 46.177317 ], [ 4.133393, 46.177321 ], [ 4.132853, 46.180686 ], [ 4.103832, 46.19844 ], [ 4.099435, 46.197107 ], [ 4.082922, 46.19102 ], [ 4.078635, 46.190606 ], [ 4.067331, 46.186813 ], [ 4.059972, 46.188458 ], [ 4.056681, 46.185859 ], [ 4.050073, 46.180688 ], [ 4.046013, 46.179222 ], [ 4.031149, 46.17197 ], [ 4.027488, 46.16959 ], [ 4.018044, 46.17202 ], [ 3.988528, 46.169857 ], [ 3.985073, 46.172301 ], [ 3.980798, 46.18189 ], [ 3.971497, 46.189672 ], [ 3.97257, 46.19973 ], [ 3.965168, 46.20286 ], [ 3.960314, 46.203401 ], [ 3.936212, 46.2062 ], [ 3.917106, 46.203884 ], [ 3.909456, 46.20793 ], [ 3.905496, 46.20923 ], [ 3.890132, 46.214491 ], [ 3.897328, 46.22691 ], [ 3.897392, 46.237145 ], [ 3.907418, 46.24389 ], [ 3.90876, 46.260622 ], [ 3.906644, 46.263791 ], [ 3.903775, 46.274008 ], [ 3.899534, 46.275914 ], [ 3.892627, 46.284857 ], [ 3.901973, 46.293158 ], [ 3.931632, 46.29622 ], [ 3.947858, 46.30367 ], [ 3.947853, 46.30561 ], [ 3.947644, 46.319029 ], [ 3.971745, 46.320726 ], [ 3.985659, 46.3175 ], [ 4.005259, 46.32741 ], [ 3.994357, 46.327655 ], [ 3.985653, 46.328685 ], [ 3.987605, 46.34751 ], [ 3.98739, 46.350751 ], [ 3.988308, 46.35402 ], [ 3.991544, 46.370419 ], [ 3.98187, 46.38516 ], [ 3.98086, 46.388351 ], [ 3.977569, 46.397871 ], [ 3.987989, 46.40765 ], [ 3.984633, 46.416478 ], [ 3.984118, 46.41966 ], [ 3.991706, 46.42308 ], [ 3.995311, 46.4251 ], [ 3.995438, 46.42849 ], [ 3.989353, 46.436951 ], [ 4.002835, 46.44053 ], [ 3.997519, 46.45258 ], [ 4.001541, 46.45875 ], [ 4.000963, 46.462011 ], [ 3.97434, 46.47957 ], [ 3.965148, 46.477997 ], [ 3.960554, 46.47766 ], [ 3.952282, 46.478727 ], [ 3.957963, 46.49048 ], [ 3.953475, 46.49179 ], [ 3.934151, 46.490952 ], [ 3.916492, 46.496102 ], [ 3.911475, 46.495494 ], [ 3.90295, 46.491725 ], [ 3.898791, 46.48541 ], [ 3.897341, 46.482053 ], [ 3.887973, 46.48236 ], [ 3.865262, 46.489648 ], [ 3.860414, 46.49556 ], [ 3.863828, 46.51268 ], [ 3.855143, 46.51532 ], [ 3.845819, 46.51294 ], [ 3.845038, 46.513086 ], [ 3.840126, 46.518454 ], [ 3.846291, 46.524009 ], [ 3.837014, 46.53161 ], [ 3.811746, 46.52059 ], [ 3.807423, 46.51938 ], [ 3.794429, 46.527344 ], [ 3.780666, 46.528366 ], [ 3.777916, 46.53126 ], [ 3.770248, 46.538954 ], [ 3.755776, 46.53615 ], [ 3.741847, 46.539547 ], [ 3.732679, 46.547747 ], [ 3.73427, 46.554364 ], [ 3.737008, 46.55607 ], [ 3.741006, 46.56022 ], [ 3.743285, 46.566462 ], [ 3.740437, 46.57593 ], [ 3.740264, 46.578593 ], [ 3.739016, 46.58386 ], [ 3.737848, 46.58728 ], [ 3.734557, 46.60378 ], [ 3.719594, 46.60544 ], [ 3.713444, 46.61072 ], [ 3.723234, 46.622771 ], [ 3.716206, 46.630973 ], [ 3.712708, 46.63333 ], [ 3.704613, 46.6452 ], [ 3.703416, 46.64763 ], [ 3.699613, 46.65191 ], [ 3.699364, 46.654886 ], [ 3.698335, 46.65826 ], [ 3.692296, 46.6636 ], [ 3.670584, 46.67209 ], [ 3.671974, 46.68191 ], [ 3.655468, 46.68775 ], [ 3.654644, 46.69107 ], [ 3.651138, 46.704235 ], [ 3.637642, 46.70748 ], [ 3.637681, 46.724192 ], [ 3.622802, 46.7409 ], [ 3.628874, 46.74613 ], [ 3.629424, 46.749459 ], [ 3.634065, 46.74422 ], [ 3.644177, 46.740886 ], [ 3.647852, 46.74264 ], [ 3.661101, 46.73774 ], [ 3.699403, 46.74535 ], [ 3.703968, 46.74684 ], [ 3.738633, 46.75196 ], [ 3.779252, 46.73782 ], [ 3.783666, 46.73605 ], [ 3.77978, 46.729915 ], [ 3.789893, 46.718483 ], [ 3.794654, 46.70203 ], [ 3.822214, 46.705145 ], [ 3.826552, 46.70383 ], [ 3.837252, 46.710169 ], [ 3.844924, 46.72199 ], [ 3.853508, 46.724934 ], [ 3.875024, 46.72916 ], [ 3.876358, 46.73227 ], [ 3.884282, 46.72829 ], [ 3.889191, 46.728229 ], [ 3.895651, 46.73319 ], [ 3.928165, 46.74138 ], [ 3.933395, 46.750714 ], [ 3.952834, 46.75434 ], [ 3.96223, 46.762587 ], [ 3.963222, 46.76603 ], [ 3.966737, 46.765485 ], [ 3.968523, 46.768649 ], [ 3.999789, 46.777701 ], [ 4.018742, 46.777012 ], [ 4.038172, 46.78686 ], [ 4.043832, 46.781253 ], [ 4.046503, 46.778356 ], [ 4.056286, 46.779267 ], [ 4.062545, 46.788322 ], [ 4.061995, 46.79171 ], [ 4.060935, 46.795162 ], [ 4.058444, 46.81598 ], [ 4.058347, 46.81908 ], [ 4.04595, 46.83124 ], [ 4.043109, 46.8336 ], [ 4.048389, 46.83795 ], [ 4.052059, 46.840438 ], [ 4.100887, 46.859107 ], [ 4.100104, 46.86256 ], [ 4.095196, 46.872416 ], [ 4.074981, 46.89189 ], [ 4.07139, 46.894251 ], [ 4.05919, 46.89978 ], [ 4.044687, 46.901169 ], [ 4.043618, 46.90432 ], [ 4.037067, 46.91969 ], [ 4.036827, 46.92633 ], [ 4.045302, 46.934372 ], [ 4.045065, 46.937741 ], [ 4.039773, 46.946965 ], [ 4.051063, 46.9535 ], [ 4.053855, 46.95978 ], [ 4.037144, 46.98469 ], [ 4.027712, 46.982721 ], [ 4.008715, 46.97225 ], [ 3.995097, 46.976397 ], [ 3.995001, 46.983322 ], [ 3.995999, 46.986744 ], [ 4.000752, 46.98621 ], [ 4.033377, 46.999607 ], [ 4.036583, 47.002072 ], [ 4.041746, 47.007752 ], [ 4.054465, 47.01327 ], [ 4.060912, 47.022489 ], [ 4.058279, 47.03257 ], [ 4.058189, 47.03941 ], [ 4.071006, 47.05808 ], [ 4.051451, 47.07416 ], [ 4.042109, 47.07702 ], [ 4.038853, 47.07974 ], [ 4.040302, 47.08653 ], [ 4.052594, 47.096965 ], [ 4.048656, 47.110047 ], [ 4.054995, 47.11522 ], [ 4.058772, 47.117491 ], [ 4.065407, 47.12084 ], [ 4.089786, 47.11704 ], [ 4.094833, 47.122612 ], [ 4.092706, 47.125721 ], [ 4.097676, 47.12619 ], [ 4.108988, 47.11946 ], [ 4.113981, 47.119143 ], [ 4.115967, 47.123338 ], [ 4.118037, 47.126469 ], [ 4.126361, 47.13025 ], [ 4.130814, 47.12866 ], [ 4.137526, 47.119751 ], [ 4.150014, 47.11404 ], [ 4.160185, 47.12145 ], [ 4.167639, 47.11726 ], [ 4.172031, 47.11539 ], [ 4.187801, 47.137938 ], [ 4.188262, 47.14506 ], [ 4.181902, 47.150514 ], [ 4.186084, 47.152236 ], [ 4.194293, 47.148649 ], [ 4.205254, 47.15425 ], [ 4.209834, 47.155412 ], [ 4.21432, 47.15414 ], [ 4.219316, 47.14567 ], [ 4.237719, 47.146527 ], [ 4.241903, 47.14823 ], [ 4.239994, 47.14216 ], [ 4.247581, 47.13299 ], [ 4.25165, 47.13151 ], [ 4.252329, 47.128362 ], [ 4.259725, 47.11401 ], [ 4.263651, 47.11213 ], [ 4.281407, 47.107838 ], [ 4.298812, 47.112047 ], [ 4.300654, 47.109703 ], [ 4.302058, 47.10722 ], [ 4.309766, 47.10367 ], [ 4.338435, 47.10257 ], [ 4.346937, 47.09981 ], [ 4.349385, 47.096953 ], [ 4.34425, 47.07243 ], [ 4.357443, 47.062992 ], [ 4.36218, 47.06428 ], [ 4.370266, 47.07702 ], [ 4.377814, 47.08149 ], [ 4.397777, 47.08272 ], [ 4.411758, 47.07899 ], [ 4.416154, 47.07723 ], [ 4.407028, 47.06947 ], [ 4.403261, 47.05638 ], [ 4.406283, 47.05 ], [ 4.42728, 47.040413 ], [ 4.457438, 47.040154 ], [ 4.471598, 47.030492 ], [ 4.489643, 47.03201 ], [ 4.495195, 47.027515 ], [ 4.498842, 47.02558 ], [ 4.502063, 47.018763 ], [ 4.504946, 47.01682 ], [ 4.506723, 47.013524 ], [ 4.531749, 47.01249 ], [ 4.554809, 47.020055 ], [ 4.556762, 47.006971 ], [ 4.547687, 46.995323 ], [ 4.554726, 46.990645 ], [ 4.56426, 46.9922 ], [ 4.568085, 46.99113 ], [ 4.567488, 46.98282 ], [ 4.570956, 46.97538 ], [ 4.573661, 46.97339 ], [ 4.591862, 46.967769 ], [ 4.589702, 46.957839 ], [ 4.595184, 46.952387 ], [ 4.599187, 46.950342 ], [ 4.613027, 46.94919 ], [ 4.617528, 46.944025 ], [ 4.614328, 46.94167 ], [ 4.644807, 46.940812 ], [ 4.64986, 46.94136 ], [ 4.652319, 46.93879 ], [ 4.678435, 46.93043 ], [ 4.679344, 46.927129 ], [ 4.665587, 46.915352 ], [ 4.666216, 46.91233 ], [ 4.682495, 46.90333 ], [ 4.68522, 46.900954 ], [ 4.708482, 46.90489 ], [ 4.712712, 46.90651 ], [ 4.719844, 46.916734 ], [ 4.718761, 46.919884 ], [ 4.725702, 46.92156 ], [ 4.72813, 46.919375 ], [ 4.740913, 46.92205 ], [ 4.744315, 46.924435 ], [ 4.755666, 46.91735 ], [ 4.76581, 46.918461 ], [ 4.770888, 46.9178 ], [ 4.775264, 46.917775 ], [ 4.779335, 46.91888 ], [ 4.790831, 46.925487 ], [ 4.788806, 46.93223 ], [ 4.80871, 46.930629 ], [ 4.816165, 46.932989 ], [ 4.816575, 46.93581 ], [ 4.866477, 46.94661 ], [ 4.870766, 46.94817 ], [ 4.893082, 46.9515 ], [ 4.89099, 46.957489 ], [ 4.896423, 46.96613 ], [ 4.910146, 46.9673 ], [ 4.914754, 46.96776 ], [ 4.943033, 46.96501 ], [ 4.952096, 46.96498 ], [ 4.955229, 46.9632 ], [ 4.964474, 46.96457 ], [ 4.967366, 46.961966 ], [ 4.999744, 46.95886 ], [ 5.004412, 46.958113 ], [ 5.00565, 46.95921 ], [ 5.00125, 46.959744 ], [ 4.996557, 46.96409 ], [ 5.003646, 46.97185 ], [ 5.018517, 46.97229 ], [ 5.029188, 46.979646 ], [ 5.044374, 46.98069 ], [ 5.049304, 46.981587 ], [ 5.054491, 46.9775 ], [ 5.057018, 46.97541 ], [ 5.06575, 46.96978 ], [ 5.065934, 46.96701 ], [ 5.070824, 46.967242 ], [ 5.074772, 46.96111 ], [ 5.101101, 46.954464 ], [ 5.097533, 46.94488 ], [ 5.100742, 46.94658 ], [ 5.103195, 46.948796 ], [ 5.106005, 46.95712 ], [ 5.118261, 46.96037 ], [ 5.120174, 46.96319 ], [ 5.138312, 46.96242 ], [ 5.145926, 46.96533 ], [ 5.150454, 46.96637 ], [ 5.164631, 46.96423 ], [ 5.181662, 46.974827 ], [ 5.189358, 46.97283 ], [ 5.192864, 46.97135 ], [ 5.198601, 46.9804 ], [ 5.201518, 46.9832 ], [ 5.208954, 46.982234 ], [ 5.212199, 46.98014 ], [ 5.220619, 46.98618 ], [ 5.222072, 46.988854 ], [ 5.242026, 46.981542 ], [ 5.255236, 46.979888 ], [ 5.263045, 46.953605 ], [ 5.26227, 46.950171 ], [ 5.251317, 46.94458 ], [ 5.26267, 46.937733 ], [ 5.26267, 46.930815 ], [ 5.262014, 46.927387 ], [ 5.270919, 46.92936 ], [ 5.275311, 46.9353 ], [ 5.287444, 46.94079 ], [ 5.292306, 46.9407 ], [ 5.307367, 46.93646 ], [ 5.308512, 46.926925 ], [ 5.310031, 46.92125 ], [ 5.31075, 46.91807 ], [ 5.312069, 46.911703 ], [ 5.313989, 46.90866 ], [ 5.328806, 46.895927 ], [ 5.328758, 46.889316 ], [ 5.335521, 46.884666 ], [ 5.341274, 46.8901 ], [ 5.35077, 46.892129 ], [ 5.360337, 46.88434 ], [ 5.377783, 46.88999 ], [ 5.382801, 46.891741 ], [ 5.387129, 46.893039 ], [ 5.391603, 46.894072 ], [ 5.392627, 46.891384 ], [ 5.403681, 46.889389 ], [ 5.400587, 46.88273 ], [ 5.404005, 46.86888 ], [ 5.420118, 46.860579 ], [ 5.425168, 46.85986 ], [ 5.428179, 46.860238 ], [ 5.431176, 46.8606 ], [ 5.442352, 46.854479 ], [ 5.445188, 46.85941 ], [ 5.454209, 46.85592 ], [ 5.459286, 46.85524 ], [ 5.457796, 46.84527 ], [ 5.464207, 46.84017 ], [ 5.459748, 46.83418 ], [ 5.463195, 46.82858 ], [ 5.416653, 46.826782 ], [ 5.413464, 46.828263 ], [ 5.410217, 46.83258 ], [ 5.405169, 46.8324 ], [ 5.386981, 46.826825 ], [ 5.382143, 46.82784 ], [ 5.378666, 46.827574 ], [ 5.375268, 46.82699 ], [ 5.371185, 46.825152 ], [ 5.351119, 46.816088 ], [ 5.344929, 46.82101 ], [ 5.335836, 46.820732 ], [ 5.333584, 46.817814 ], [ 5.328584, 46.812916 ], [ 5.331173, 46.81027 ], [ 5.332496, 46.797713 ], [ 5.341506, 46.790692 ], [ 5.346456, 46.790222 ], [ 5.355051, 46.79094 ], [ 5.370807, 46.78352 ], [ 5.37375, 46.77707 ], [ 5.383425, 46.77553 ], [ 5.390248, 46.770592 ], [ 5.390112, 46.7672 ], [ 5.371518, 46.75152 ], [ 5.36676, 46.752396 ], [ 5.362002, 46.733117 ], [ 5.365725, 46.73107 ], [ 5.393641, 46.72863 ], [ 5.390789, 46.72636 ], [ 5.395908, 46.7156 ], [ 5.395012, 46.712507 ], [ 5.406642, 46.703931 ], [ 5.408349, 46.69844 ], [ 5.406696, 46.6954 ], [ 5.395359, 46.68505 ], [ 5.398501, 46.68268 ], [ 5.42209, 46.673032 ], [ 5.420175, 46.670009 ], [ 5.424647, 46.66464 ], [ 5.424814, 46.661344 ], [ 5.427103, 46.660161 ], [ 5.422912, 46.65831 ], [ 5.415008, 46.654146 ], [ 5.440601, 46.63791 ], [ 5.440623, 46.634902 ], [ 5.43349, 46.627757 ], [ 5.429678, 46.625847 ], [ 5.41379, 46.61464 ], [ 5.408583, 46.614554 ], [ 5.398593, 46.612719 ], [ 5.400092, 46.60937 ], [ 5.411943, 46.59863 ], [ 5.404691, 46.58211 ], [ 5.400427, 46.580232 ], [ 5.375536, 46.58016 ], [ 5.370666, 46.58053 ], [ 5.362124, 46.57727 ], [ 5.364614, 46.57504 ], [ 5.36788, 46.56695 ], [ 5.364888, 46.564513 ], [ 5.357651, 46.560563 ], [ 5.362579, 46.551642 ], [ 5.361582, 46.54823 ], [ 5.360073, 46.52424 ], [ 5.359459, 46.52364 ], [ 5.362852, 46.51791 ], [ 5.382494, 46.51557 ], [ 5.392428, 46.50821 ], [ 5.395657, 46.50569 ], [ 5.407571, 46.50041 ], [ 5.421173, 46.500302 ], [ 5.419959, 46.4809 ], [ 5.420044, 46.48018 ], [ 5.41843, 46.477298 ], [ 5.413803, 46.472045 ], [ 5.398099, 46.466601 ], [ 5.39358, 46.467596 ], [ 5.385312, 46.470544 ], [ 5.376345, 46.463127 ], [ 5.37379, 46.460451 ], [ 5.323351, 46.46251 ], [ 5.323147, 46.45648 ], [ 5.321799, 46.453601 ], [ 5.313215, 46.4525 ], [ 5.310561, 46.44677 ], [ 5.273677, 46.44859 ], [ 5.269653, 46.450226 ], [ 5.256271, 46.45188 ], [ 5.248004, 46.45937 ], [ 5.243864, 46.46046 ], [ 5.236259, 46.45778 ], [ 5.233384, 46.46045 ], [ 5.224698, 46.46835 ], [ 5.215064, 46.46836 ], [ 5.21528, 46.47176 ], [ 5.213031, 46.481541 ], [ 5.206685, 46.486177 ], [ 5.209481, 46.492105 ], [ 5.200343, 46.50257 ], [ 5.203565, 46.504803 ], [ 5.201221, 46.50782 ], [ 5.181672, 46.50998 ], [ 5.165839, 46.517675 ], [ 5.164303, 46.50462 ], [ 5.141168, 46.508484 ], [ 5.13403, 46.50145 ], [ 5.129066, 46.50092 ], [ 5.112817, 46.49296 ], [ 5.095259, 46.49798 ], [ 5.071449, 46.48582 ], [ 5.054751, 46.48428 ], [ 5.0509, 46.48625 ], [ 5.014233, 46.50045 ], [ 5.012448, 46.50297 ], [ 5.010594, 46.51107 ], [ 5.006369, 46.509703 ], [ 4.980216, 46.515203 ], [ 4.970038, 46.51409 ], [ 4.962656, 46.50655 ], [ 4.952797, 46.50447 ], [ 4.947369, 46.50843 ], [ 4.947245, 46.51445 ], [ 4.934745, 46.51332 ], [ 4.933592, 46.51245 ], [ 4.931736, 46.509791 ], [ 4.929616, 46.50408 ], [ 4.928837, 46.501589 ], [ 4.927682, 46.499168 ], [ 4.925241, 46.49615 ], [ 4.915896, 46.48819 ], [ 4.914522, 46.481374 ], [ 4.91453, 46.480113 ], [ 4.915024, 46.47711 ], [ 4.914448, 46.46216 ], [ 4.912497, 46.459323 ], [ 4.894444, 46.445374 ], [ 4.892887, 46.44257 ], [ 4.891797, 46.438555 ], [ 4.891523, 46.430291 ], [ 4.891532, 46.42752 ], [ 4.891047, 46.424056 ], [ 4.889934, 46.417121 ], [ 4.887496, 46.402732 ], [ 4.88495, 46.399883 ], [ 4.873919, 46.38499 ], [ 4.86776, 46.37806 ], [ 4.865691, 46.37576 ], [ 4.86312, 46.37326 ], [ 4.85853, 46.36802 ], [ 4.856454, 46.365123 ], [ 4.850912, 46.352864 ], [ 4.85239, 46.34617 ], [ 4.852652, 46.34279 ], [ 4.853156, 46.329247 ], [ 4.851423, 46.32608 ], [ 4.849389, 46.32322 ], [ 4.841217, 46.311805 ], [ 4.839228, 46.308684 ], [ 4.832926, 46.29944 ], [ 4.826332, 46.27591 ], [ 4.824739, 46.272934 ], [ 4.816488, 46.2654 ], [ 4.811341, 46.260583 ], [ 4.810817, 46.25455 ], [ 4.810798, 46.251233 ], [ 4.808184, 46.238106 ], [ 4.800741, 46.229658 ], [ 4.797847, 46.224543 ], [ 4.79551, 46.22014 ], [ 4.79428, 46.217051 ], [ 4.792735, 46.20751 ], [ 4.792327, 46.200968 ], [ 4.780203, 46.18675 ], [ 4.780213, 46.176677 ], [ 4.775494, 46.177093 ], [ 4.771584, 46.17564 ], [ 4.763197, 46.1757 ], [ 4.75959, 46.173603 ], [ 4.733118, 46.177792 ], [ 4.724376, 46.18431 ], [ 4.720362, 46.193577 ], [ 4.721489, 46.19684 ], [ 4.721501, 46.20013 ], [ 4.735682, 46.2117 ], [ 4.731773, 46.21322 ], [ 4.720018, 46.2285 ], [ 4.733016, 46.22751 ], [ 4.736181, 46.233202 ], [ 4.720694, 46.24426 ], [ 4.708899, 46.248584 ], [ 4.705377, 46.250961 ], [ 4.690873, 46.24965 ], [ 4.681228, 46.257301 ], [ 4.680571, 46.267218 ], [ 4.68457, 46.26593 ], [ 4.694068, 46.271512 ], [ 4.700696, 46.267477 ], [ 4.707417, 46.269764 ], [ 4.710054, 46.278947 ], [ 4.70748, 46.2847 ], [ 4.703249, 46.284841 ], [ 4.693884, 46.29454 ], [ 4.69295, 46.297099 ], [ 4.693436, 46.30232 ], [ 4.679741, 46.304518 ], [ 4.664478, 46.29662 ], [ 4.653189, 46.303177 ], [ 4.638725, 46.30142 ], [ 4.635777, 46.291918 ], [ 4.617019, 46.28062 ], [ 4.620162, 46.277956 ], [ 4.618565, 46.264793 ], [ 4.614456, 46.2664 ], [ 4.586527, 46.26836 ], [ 4.582672, 46.270215 ], [ 4.572725, 46.277045 ], [ 4.572161, 46.28998 ], [ 4.570273, 46.293029 ], [ 4.557841, 46.293993 ], [ 4.555437, 46.29126 ], [ 4.54809, 46.28323 ], [ 4.54645, 46.27392 ], [ 4.542343, 46.27197 ], [ 4.504001, 46.267139 ], [ 4.501484, 46.270072 ], [ 4.488465, 46.28799 ], [ 4.483775, 46.287065 ], [ 4.475428, 46.2844 ], [ 4.462188, 46.29402 ], [ 4.453248, 46.29644 ], [ 4.439452, 46.29306 ], [ 4.437717, 46.296284 ], [ 4.427039, 46.30283 ], [ 4.424387, 46.2963 ], [ 4.410616, 46.29534 ], [ 4.405814, 46.296061 ], [ 4.407092, 46.292739 ], [ 4.398757, 46.284322 ], [ 4.396364, 46.274544 ], [ 4.396451, 46.271841 ], [ 4.396835, 46.266523 ], [ 4.388286, 46.24791 ], [ 4.385568, 46.246162 ], [ 4.386217, 46.225674 ], [ 4.38808, 46.21979 ] ], [ [ 5.444408, 46.84535 ], [ 5.445157, 46.845637 ], [ 5.445922, 46.84544 ], [ 5.446746, 46.84595 ], [ 5.447838, 46.8457 ], [ 5.448476, 46.84645 ], [ 5.447832, 46.84673 ], [ 5.448702, 46.847976 ], [ 5.447391, 46.848013 ], [ 5.446155, 46.84943 ], [ 5.442904, 46.849838 ], [ 5.443689, 46.85095 ], [ 5.441991, 46.85113 ], [ 5.441975, 46.85194 ], [ 5.441712, 46.85194 ], [ 5.441095, 46.851651 ], [ 5.440312, 46.850586 ], [ 5.43983, 46.84893 ], [ 5.440846, 46.848458 ], [ 5.442092, 46.84842 ], [ 5.440782, 46.846162 ], [ 5.443001, 46.84588 ], [ 5.444408, 46.84535 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "73", "CODE_DEPT": "72", "NOM_DEPT": "SARTHE", "CODE_CHF": "181", "NOM_CHF": "LE MANS", "X_CHF_LIEU": "4909", "Y_CHF_LIEU": "67707", "X_CENTROID": "4928", "Y_CENTROID": "67696", "CODE_REG": "52", "NOM_REGION": "PAYS-DE-LA-LOIRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.614431, 47.69421 ], [ 0.61868, 47.69226 ], [ 0.612683, 47.682913 ], [ 0.588942, 47.670053 ], [ 0.558792, 47.670796 ], [ 0.559603, 47.66617 ], [ 0.555785, 47.66397 ], [ 0.545247, 47.65717 ], [ 0.525724, 47.653936 ], [ 0.516741, 47.65622 ], [ 0.498418, 47.64476 ], [ 0.493419, 47.64508 ], [ 0.478496, 47.644182 ], [ 0.47545, 47.64688 ], [ 0.461177, 47.643806 ], [ 0.459238, 47.640594 ], [ 0.451411, 47.62146 ], [ 0.431741, 47.618316 ], [ 0.426615, 47.617726 ], [ 0.39625, 47.640855 ], [ 0.391499, 47.641 ], [ 0.382788, 47.643103 ], [ 0.381437, 47.639677 ], [ 0.364557, 47.62207 ], [ 0.373233, 47.61334 ], [ 0.382414, 47.60998 ], [ 0.395085, 47.594583 ], [ 0.3968, 47.59136 ], [ 0.402577, 47.578512 ], [ 0.397913, 47.57753 ], [ 0.378484, 47.56853 ], [ 0.37466, 47.57051 ], [ 0.339107, 47.57974 ], [ 0.339494, 47.583179 ], [ 0.322104, 47.595237 ], [ 0.275412, 47.5991 ], [ 0.259115, 47.612301 ], [ 0.25456, 47.61203 ], [ 0.232709, 47.61089 ], [ 0.230002, 47.608398 ], [ 0.226382, 47.61064 ], [ 0.212617, 47.611785 ], [ 0.209402, 47.60552 ], [ 0.204544, 47.605972 ], [ 0.201909, 47.615582 ], [ 0.197801, 47.61545 ], [ 0.185834, 47.616547 ], [ 0.183976, 47.599011 ], [ 0.176229, 47.59441 ], [ 0.161129, 47.592413 ], [ 0.148488, 47.5813 ], [ 0.144174, 47.583055 ], [ 0.134245, 47.59442 ], [ 0.120352, 47.596 ], [ 0.115651, 47.605628 ], [ 0.110628, 47.6059 ], [ 0.095772, 47.603325 ], [ 0.071017, 47.60812 ], [ 0.06224, 47.60448 ], [ 0.052261, 47.60622 ], [ 0.034202, 47.61842 ], [ 0.009923, 47.623775 ], [ 0.009393, 47.626815 ], [ 0.012965, 47.62869 ], [ -0.001037, 47.645238 ], [ -0.004508, 47.647688 ], [ -0.017114, 47.63914 ], [ -0.020286, 47.63702 ], [ -0.026745, 47.646349 ], [ -0.052378, 47.64868 ], [ -0.074508, 47.657487 ], [ -0.092424, 47.65101 ], [ -0.09248, 47.65426 ], [ -0.094554, 47.660605 ], [ -0.09905, 47.66179 ], [ -0.105482, 47.65708 ], [ -0.113835, 47.64532 ], [ -0.1141, 47.635476 ], [ -0.127846, 47.63671 ], [ -0.134502, 47.632489 ], [ -0.138798, 47.63417 ], [ -0.147524, 47.63613 ], [ -0.158952, 47.647045 ], [ -0.163713, 47.645961 ], [ -0.193158, 47.64793 ], [ -0.196697, 47.650036 ], [ -0.196659, 47.662739 ], [ -0.199473, 47.665634 ], [ -0.215838, 47.682922 ], [ -0.217688, 47.692798 ], [ -0.203437, 47.693883 ], [ -0.184352, 47.705395 ], [ -0.18346, 47.71213 ], [ -0.173406, 47.713412 ], [ -0.175301, 47.716315 ], [ -0.184536, 47.716064 ], [ -0.193568, 47.723339 ], [ -0.202373, 47.725242 ], [ -0.205739, 47.72261 ], [ -0.236766, 47.704631 ], [ -0.256663, 47.7081 ], [ -0.287627, 47.71913 ], [ -0.29153, 47.717705 ], [ -0.309075, 47.71734 ], [ -0.314076, 47.71791 ], [ -0.333663, 47.72094 ], [ -0.35113, 47.71444 ], [ -0.365826, 47.71612 ], [ -0.364226, 47.71933 ], [ -0.358295, 47.731968 ], [ -0.373778, 47.73987 ], [ -0.37253, 47.743144 ], [ -0.375467, 47.74566 ], [ -0.379706, 47.751206 ], [ -0.376992, 47.760212 ], [ -0.381704, 47.76057 ], [ -0.375843, 47.7659 ], [ -0.378805, 47.779096 ], [ -0.38008, 47.782338 ], [ -0.385203, 47.801288 ], [ -0.387144, 47.804268 ], [ -0.388201, 47.805319 ], [ -0.416994, 47.802672 ], [ -0.430168, 47.80707 ], [ -0.43408, 47.80905 ], [ -0.444321, 47.82986 ], [ -0.447914, 47.832035 ], [ -0.432478, 47.84078 ], [ -0.425496, 47.84934 ], [ -0.41099, 47.846637 ], [ -0.413312, 47.854866 ], [ -0.41203, 47.85763 ], [ -0.374966, 47.85761 ], [ -0.377995, 47.86672 ], [ -0.37161, 47.87179 ], [ -0.37087, 47.87511 ], [ -0.376839, 47.88727 ], [ -0.386293, 47.88852 ], [ -0.391195, 47.88916 ], [ -0.392576, 47.89233 ], [ -0.406808, 47.893691 ], [ -0.41104, 47.89536 ], [ -0.404047, 47.90035 ], [ -0.409521, 47.913196 ], [ -0.412853, 47.915837 ], [ -0.397652, 47.91827 ], [ -0.388983, 47.929185 ], [ -0.38484, 47.93084 ], [ -0.338703, 47.9325 ], [ -0.325124, 47.9361 ], [ -0.319993, 47.9353 ], [ -0.31392, 47.93828 ], [ -0.311674, 47.940308 ], [ -0.294033, 47.94549 ], [ -0.280183, 47.957819 ], [ -0.284638, 47.95917 ], [ -0.288351, 47.9613 ], [ -0.293238, 47.96204 ], [ -0.300459, 47.96666 ], [ -0.299537, 47.97663 ], [ -0.312033, 47.99435 ], [ -0.312453, 48.00107 ], [ -0.308526, 48.00565 ], [ -0.308993, 48.005604 ], [ -0.338154, 48.012139 ], [ -0.334475, 48.032374 ], [ -0.340504, 48.044065 ], [ -0.334153, 48.04859 ], [ -0.330357, 48.05038 ], [ -0.316466, 48.04586 ], [ -0.282795, 48.05629 ], [ -0.286069, 48.0584 ], [ -0.274233, 48.06446 ], [ -0.235426, 48.06046 ], [ -0.230942, 48.05898 ], [ -0.226776, 48.068421 ], [ -0.225994, 48.07168 ], [ -0.22338, 48.07841 ], [ -0.232358, 48.081714 ], [ -0.236383, 48.08753 ], [ -0.234647, 48.09782 ], [ -0.216521, 48.109706 ], [ -0.216316, 48.1132 ], [ -0.223729, 48.119848 ], [ -0.222963, 48.12272 ], [ -0.241139, 48.126954 ], [ -0.243429, 48.1327 ], [ -0.249608, 48.134961 ], [ -0.253808, 48.136529 ], [ -0.238886, 48.1488 ], [ -0.248305, 48.15491 ], [ -0.250213, 48.157918 ], [ -0.246636, 48.16015 ], [ -0.222508, 48.171953 ], [ -0.189927, 48.18131 ], [ -0.185908, 48.183438 ], [ -0.181799, 48.18832 ], [ -0.178705, 48.190386 ], [ -0.164727, 48.199614 ], [ -0.151311, 48.203674 ], [ -0.146837, 48.20501 ], [ -0.152524, 48.21383 ], [ -0.148927, 48.219703 ], [ -0.145406, 48.2219 ], [ -0.157622, 48.23619 ], [ -0.160959, 48.238806 ], [ -0.16458, 48.25916 ], [ -0.15234, 48.2732 ], [ -0.149973, 48.276253 ], [ -0.15104, 48.2774 ], [ -0.149338, 48.28368 ], [ -0.138609, 48.29495 ], [ -0.142301, 48.30842 ], [ -0.148392, 48.313897 ], [ -0.151639, 48.314018 ], [ -0.154882, 48.31408 ], [ -0.155774, 48.31747 ], [ -0.157998, 48.334522 ], [ -0.152716, 48.343046 ], [ -0.148068, 48.344142 ], [ -0.126558, 48.33926 ], [ -0.12222, 48.33831 ], [ -0.132777, 48.34571 ], [ -0.136317, 48.362723 ], [ -0.117513, 48.368262 ], [ -0.112164, 48.374246 ], [ -0.092307, 48.37461 ], [ -0.078791, 48.3702 ], [ -0.069332, 48.377848 ], [ -0.060081, 48.377503 ], [ -0.054531, 48.382003 ], [ -0.049672, 48.37513 ], [ -0.051402, 48.37816 ], [ -0.022101, 48.38779 ], [ -0.02017, 48.39393 ], [ -0.001245, 48.39727 ], [ 0.00337, 48.395996 ], [ 0.005246, 48.38964 ], [ 0.01868, 48.38158 ], [ 0.023083, 48.38021 ], [ 0.035453, 48.38038 ], [ 0.039682, 48.38041 ], [ 0.062524, 48.383028 ], [ 0.054482, 48.39148 ], [ 0.064199, 48.40338 ], [ 0.067362, 48.40606 ], [ 0.079721, 48.408733 ], [ 0.083781, 48.41013 ], [ 0.083677, 48.411027 ], [ 0.099434, 48.41096 ], [ 0.109346, 48.42302 ], [ 0.111593, 48.43232 ], [ 0.117659, 48.436164 ], [ 0.121836, 48.435978 ], [ 0.125777, 48.43417 ], [ 0.148697, 48.43711 ], [ 0.153319, 48.43794 ], [ 0.158318, 48.443078 ], [ 0.154882, 48.4453 ], [ 0.145863, 48.45217 ], [ 0.143925, 48.454948 ], [ 0.152522, 48.45663 ], [ 0.169081, 48.44948 ], [ 0.173647, 48.45088 ], [ 0.170289, 48.4572 ], [ 0.172327, 48.46383 ], [ 0.186797, 48.46281 ], [ 0.191952, 48.46234 ], [ 0.194949, 48.463745 ], [ 0.213565, 48.47283 ], [ 0.217968, 48.473801 ], [ 0.221658, 48.47314 ], [ 0.225463, 48.47286 ], [ 0.258785, 48.47664 ], [ 0.26165, 48.47934 ], [ 0.262725, 48.482862 ], [ 0.266806, 48.48458 ], [ 0.278804, 48.48089 ], [ 0.283555, 48.48145 ], [ 0.297909, 48.479816 ], [ 0.30963, 48.473286 ], [ 0.314738, 48.473194 ], [ 0.324524, 48.471903 ], [ 0.33683, 48.46282 ], [ 0.340997, 48.460977 ], [ 0.345224, 48.45927 ], [ 0.350087, 48.45865 ], [ 0.35289, 48.45969 ], [ 0.363205, 48.45156 ], [ 0.367697, 48.44131 ], [ 0.367808, 48.43774 ], [ 0.373314, 48.43287 ], [ 0.376012, 48.43031 ], [ 0.381725, 48.42479 ], [ 0.379512, 48.414919 ], [ 0.372679, 48.41013 ], [ 0.375708, 48.390098 ], [ 0.373864, 48.38697 ], [ 0.37678, 48.3854 ], [ 0.378659, 48.38323 ], [ 0.380868, 48.37279 ], [ 0.380557, 48.36928 ], [ 0.387348, 48.350595 ], [ 0.387484, 48.34731 ], [ 0.384251, 48.34307 ], [ 0.380633, 48.34306 ], [ 0.383907, 48.33288 ], [ 0.395362, 48.32129 ], [ 0.408565, 48.316323 ], [ 0.415531, 48.32149 ], [ 0.426281, 48.31752 ], [ 0.427652, 48.31486 ], [ 0.429965, 48.30868 ], [ 0.438486, 48.306046 ], [ 0.442805, 48.30464 ], [ 0.46327, 48.30528 ], [ 0.475989, 48.30005 ], [ 0.491583, 48.30716 ], [ 0.505824, 48.293658 ], [ 0.497806, 48.289797 ], [ 0.494423, 48.283488 ], [ 0.512572, 48.26759 ], [ 0.525809, 48.26595 ], [ 0.530307, 48.2655 ], [ 0.53656, 48.25978 ], [ 0.537331, 48.252801 ], [ 0.537336, 48.24924 ], [ 0.546795, 48.250162 ], [ 0.574411, 48.244917 ], [ 0.579192, 48.244412 ], [ 0.593727, 48.24455 ], [ 0.613135, 48.24273 ], [ 0.622457, 48.244921 ], [ 0.630203, 48.24078 ], [ 0.631908, 48.23462 ], [ 0.635062, 48.235515 ], [ 0.63848, 48.235611 ], [ 0.631421, 48.251466 ], [ 0.631907, 48.254761 ], [ 0.642751, 48.26154 ], [ 0.652469, 48.26339 ], [ 0.679097, 48.25508 ], [ 0.683916, 48.254 ], [ 0.687394, 48.24078 ], [ 0.72035, 48.20628 ], [ 0.72026, 48.202768 ], [ 0.723637, 48.19814 ], [ 0.732119, 48.19816 ], [ 0.73863, 48.18919 ], [ 0.751105, 48.183916 ], [ 0.755327, 48.18211 ], [ 0.759209, 48.18009 ], [ 0.793203, 48.19307 ], [ 0.797655, 48.19446 ], [ 0.797528, 48.188167 ], [ 0.81124, 48.18472 ], [ 0.82786, 48.173039 ], [ 0.833111, 48.16904 ], [ 0.83656, 48.16762 ], [ 0.840574, 48.16553 ], [ 0.860645, 48.16665 ], [ 0.884466, 48.16184 ], [ 0.909365, 48.15007 ], [ 0.911465, 48.146968 ], [ 0.90961, 48.14353 ], [ 0.91665, 48.138941 ], [ 0.914338, 48.13585 ], [ 0.850372, 48.13308 ], [ 0.855009, 48.12386 ], [ 0.843301, 48.10601 ], [ 0.841217, 48.10306 ], [ 0.837246, 48.100919 ], [ 0.817906, 48.09768 ], [ 0.816151, 48.094634 ], [ 0.830283, 48.09114 ], [ 0.84501, 48.092771 ], [ 0.843023, 48.07264 ], [ 0.838376, 48.0713 ], [ 0.793995, 48.06944 ], [ 0.794879, 48.046931 ], [ 0.797551, 48.03725 ], [ 0.807136, 48.03659 ], [ 0.813335, 48.03145 ], [ 0.838332, 48.03261 ], [ 0.840591, 48.01901 ], [ 0.835775, 48.00914 ], [ 0.830555, 47.99605 ], [ 0.820383, 47.98803 ], [ 0.824356, 47.98174 ], [ 0.829036, 47.97258 ], [ 0.836839, 47.968938 ], [ 0.842824, 47.956598 ], [ 0.845574, 47.9539 ], [ 0.848378, 47.94393 ], [ 0.845193, 47.94119 ], [ 0.816349, 47.934277 ], [ 0.810811, 47.91816 ], [ 0.815816, 47.895158 ], [ 0.816836, 47.891827 ], [ 0.813238, 47.889483 ], [ 0.797868, 47.89796 ], [ 0.794073, 47.907436 ], [ 0.786998, 47.911751 ], [ 0.768069, 47.901399 ], [ 0.763737, 47.899975 ], [ 0.759813, 47.89809 ], [ 0.757341, 47.884682 ], [ 0.76353, 47.86516 ], [ 0.759165, 47.85923 ], [ 0.770099, 47.852747 ], [ 0.773852, 47.85065 ], [ 0.774046, 47.8406 ], [ 0.768413, 47.83111 ], [ 0.758989, 47.83358 ], [ 0.756337, 47.830822 ], [ 0.747692, 47.827838 ], [ 0.740279, 47.81256 ], [ 0.73379, 47.807699 ], [ 0.730115, 47.805476 ], [ 0.712824, 47.79049 ], [ 0.711896, 47.78721 ], [ 0.702679, 47.78965 ], [ 0.691748, 47.78353 ], [ 0.702633, 47.76967 ], [ 0.697354, 47.764192 ], [ 0.692446, 47.76435 ], [ 0.674985, 47.76877 ], [ 0.670962, 47.767308 ], [ 0.6512, 47.75512 ], [ 0.650273, 47.754928 ], [ 0.646097, 47.75305 ], [ 0.626331, 47.75136 ], [ 0.6199, 47.746174 ], [ 0.61795, 47.736635 ], [ 0.610668, 47.732038 ], [ 0.611604, 47.72814 ], [ 0.608728, 47.725299 ], [ 0.594084, 47.723035 ], [ 0.580508, 47.71283 ], [ 0.580315, 47.712378 ], [ 0.592798, 47.70218 ], [ 0.595902, 47.689251 ], [ 0.60454, 47.686681 ], [ 0.611211, 47.691663 ], [ 0.614431, 47.69421 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "74", "CODE_DEPT": "73", "NOM_DEPT": "SAVOIE", "CODE_CHF": "065", "NOM_CHF": "CHAMBERY", "X_CHF_LIEU": "9277", "Y_CHF_LIEU": "65005", "X_CENTROID": "9689", "Y_CENTROID": "64923", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.629987, 45.109327 ], [ 6.626688, 45.111841 ], [ 6.61353, 45.120957 ], [ 6.589941, 45.1192 ], [ 6.576531, 45.1231 ], [ 6.57357, 45.120596 ], [ 6.563908, 45.11382 ], [ 6.561367, 45.10731 ], [ 6.540052, 45.09953 ], [ 6.530287, 45.099065 ], [ 6.510423, 45.109 ], [ 6.507778, 45.105994 ], [ 6.487117, 45.09613 ], [ 6.481725, 45.09045 ], [ 6.488729, 45.070181 ], [ 6.487082, 45.05641 ], [ 6.482138, 45.05625 ], [ 6.453124, 45.05237 ], [ 6.43487, 45.063 ], [ 6.420353, 45.06122 ], [ 6.406143, 45.06425 ], [ 6.396888, 45.061989 ], [ 6.364878, 45.070171 ], [ 6.367174, 45.07326 ], [ 6.374601, 45.082295 ], [ 6.362713, 45.105032 ], [ 6.334233, 45.122939 ], [ 6.332876, 45.11962 ], [ 6.317031, 45.111934 ], [ 6.293342, 45.108636 ], [ 6.276888, 45.114933 ], [ 6.260566, 45.12685 ], [ 6.265355, 45.13668 ], [ 6.26149, 45.14289 ], [ 6.249773, 45.149197 ], [ 6.222062, 45.14258 ], [ 6.207805, 45.156639 ], [ 6.180992, 45.16486 ], [ 6.17683, 45.1629 ], [ 6.169033, 45.154124 ], [ 6.164686, 45.15316 ], [ 6.16117, 45.151103 ], [ 6.14379, 45.154559 ], [ 6.146321, 45.16399 ], [ 6.160589, 45.181804 ], [ 6.161919, 45.188407 ], [ 6.159013, 45.202349 ], [ 6.13968, 45.213059 ], [ 6.139861, 45.2233 ], [ 6.128797, 45.230423 ], [ 6.12714, 45.2409 ], [ 6.125696, 45.24427 ], [ 6.139436, 45.25834 ], [ 6.130815, 45.284534 ], [ 6.142406, 45.295401 ], [ 6.141243, 45.298786 ], [ 6.152869, 45.303632 ], [ 6.15778, 45.312315 ], [ 6.179716, 45.317804 ], [ 6.184451, 45.31796 ], [ 6.185237, 45.33035 ], [ 6.187807, 45.333065 ], [ 6.191427, 45.33961 ], [ 6.194759, 45.352251 ], [ 6.190649, 45.3539 ], [ 6.176652, 45.35523 ], [ 6.170009, 45.359542 ], [ 6.175046, 45.35955 ], [ 6.190269, 45.368 ], [ 6.175458, 45.394101 ], [ 6.146025, 45.413288 ], [ 6.130143, 45.43503 ], [ 6.121315, 45.438284 ], [ 6.102561, 45.43368 ], [ 6.098749, 45.432349 ], [ 6.094509, 45.432052 ], [ 6.094585, 45.43549 ], [ 6.094287, 45.442322 ], [ 6.090016, 45.444008 ], [ 6.085559, 45.443059 ], [ 6.076276, 45.44325 ], [ 6.067078, 45.444052 ], [ 6.054414, 45.44074 ], [ 6.049236, 45.437807 ], [ 6.045157, 45.43952 ], [ 6.007789, 45.454111 ], [ 6.011361, 45.458827 ], [ 6.009951, 45.46518 ], [ 6.009027, 45.471992 ], [ 5.990198, 45.476244 ], [ 5.979432, 45.487803 ], [ 5.971015, 45.4914 ], [ 5.915827, 45.47661 ], [ 5.91537, 45.47645 ], [ 5.917251, 45.47324 ], [ 5.925239, 45.4649 ], [ 5.920589, 45.444413 ], [ 5.913134, 45.435534 ], [ 5.904455, 45.432308 ], [ 5.904884, 45.43 ], [ 5.903168, 45.4231 ], [ 5.906359, 45.409993 ], [ 5.923503, 45.41293 ], [ 5.91089, 45.394152 ], [ 5.894443, 45.38801 ], [ 5.891003, 45.389242 ], [ 5.891188, 45.39279 ], [ 5.890609, 45.399858 ], [ 5.879282, 45.40687 ], [ 5.859585, 45.409908 ], [ 5.854303, 45.41592 ], [ 5.835269, 45.42023 ], [ 5.834628, 45.4202 ], [ 5.829773, 45.421099 ], [ 5.811361, 45.425382 ], [ 5.796363, 45.43807 ], [ 5.782462, 45.441105 ], [ 5.763387, 45.43922 ], [ 5.760698, 45.43636 ], [ 5.757658, 45.434925 ], [ 5.753097, 45.43507 ], [ 5.739988, 45.43758 ], [ 5.739125, 45.440857 ], [ 5.732183, 45.452721 ], [ 5.736531, 45.47186 ], [ 5.733757, 45.474568 ], [ 5.719744, 45.483396 ], [ 5.719338, 45.48635 ], [ 5.713964, 45.497484 ], [ 5.712079, 45.500593 ], [ 5.701047, 45.51769 ], [ 5.695685, 45.519963 ], [ 5.69125, 45.52181 ], [ 5.691109, 45.527893 ], [ 5.677133, 45.53099 ], [ 5.67211, 45.54009 ], [ 5.673337, 45.54346 ], [ 5.676788, 45.54164 ], [ 5.681071, 45.54139 ], [ 5.673318, 45.549987 ], [ 5.675183, 45.55277 ], [ 5.67121, 45.55468 ], [ 5.671145, 45.561328 ], [ 5.646909, 45.57702 ], [ 5.645896, 45.58294 ], [ 5.640001, 45.58713 ], [ 5.637656, 45.589626 ], [ 5.624088, 45.60338 ], [ 5.622591, 45.609989 ], [ 5.623748, 45.61327 ], [ 5.627389, 45.611 ], [ 5.635454, 45.61404 ], [ 5.636372, 45.617397 ], [ 5.638412, 45.623025 ], [ 5.646456, 45.624764 ], [ 5.648328, 45.627405 ], [ 5.652818, 45.636679 ], [ 5.676337, 45.638059 ], [ 5.684695, 45.64143 ], [ 5.687901, 45.643964 ], [ 5.68945, 45.65048 ], [ 5.687844, 45.65364 ], [ 5.684166, 45.660199 ], [ 5.68564, 45.667012 ], [ 5.709199, 45.684927 ], [ 5.706277, 45.6951 ], [ 5.703726, 45.69815 ], [ 5.699897, 45.706901 ], [ 5.700599, 45.709948 ], [ 5.723288, 45.708167 ], [ 5.727741, 45.70927 ], [ 5.731321, 45.710153 ], [ 5.744182, 45.706263 ], [ 5.753456, 45.7068 ], [ 5.776366, 45.72792 ], [ 5.771226, 45.73755 ], [ 5.769679, 45.740816 ], [ 5.776639, 45.74258 ], [ 5.780427, 45.74292 ], [ 5.783592, 45.745204 ], [ 5.779509, 45.758712 ], [ 5.782612, 45.768944 ], [ 5.783047, 45.772465 ], [ 5.780056, 45.77802 ], [ 5.781383, 45.78084 ], [ 5.784591, 45.797224 ], [ 5.785319, 45.820075 ], [ 5.786934, 45.823224 ], [ 5.79213, 45.8281 ], [ 5.79585, 45.8298 ], [ 5.801109, 45.845796 ], [ 5.805399, 45.857881 ], [ 5.807525, 45.86064 ], [ 5.813809, 45.87385 ], [ 5.815154, 45.877201 ], [ 5.824882, 45.900386 ], [ 5.826317, 45.903693 ], [ 5.828998, 45.91696 ], [ 5.821881, 45.929241 ], [ 5.826116, 45.935262 ], [ 5.829631, 45.93758 ], [ 5.840286, 45.932321 ], [ 5.862078, 45.9322 ], [ 5.864867, 45.922258 ], [ 5.865804, 45.918936 ], [ 5.862625, 45.916638 ], [ 5.865741, 45.904079 ], [ 5.866816, 45.89869 ], [ 5.875603, 45.866983 ], [ 5.876087, 45.86341 ], [ 5.877123, 45.84816 ], [ 5.873424, 45.839042 ], [ 5.877809, 45.833884 ], [ 5.881238, 45.831409 ], [ 5.884466, 45.82633 ], [ 5.903836, 45.825558 ], [ 5.904711, 45.81182 ], [ 5.911823, 45.807168 ], [ 5.913953, 45.80406 ], [ 5.923117, 45.8051 ], [ 5.933251, 45.8113 ], [ 5.934122, 45.814602 ], [ 5.947964, 45.81052 ], [ 5.957776, 45.81207 ], [ 5.962785, 45.812735 ], [ 5.957448, 45.79802 ], [ 5.958068, 45.79492 ], [ 5.976022, 45.795815 ], [ 5.98055, 45.79617 ], [ 5.982179, 45.783163 ], [ 5.97306, 45.7719 ], [ 5.974033, 45.76869 ], [ 5.990146, 45.76451 ], [ 5.994261, 45.763216 ], [ 5.99667, 45.760404 ], [ 5.993197, 45.75094 ], [ 5.993806, 45.74769 ], [ 6.007549, 45.750715 ], [ 6.038005, 45.740878 ], [ 6.042253, 45.739259 ], [ 6.05508, 45.749194 ], [ 6.077005, 45.740947 ], [ 6.09133, 45.743934 ], [ 6.096133, 45.74282 ], [ 6.097173, 45.733599 ], [ 6.101762, 45.734194 ], [ 6.102219, 45.76022 ], [ 6.103134, 45.763445 ], [ 6.126279, 45.7515 ], [ 6.134623, 45.75518 ], [ 6.137611, 45.761328 ], [ 6.161318, 45.75643 ], [ 6.166234, 45.755725 ], [ 6.165841, 45.749535 ], [ 6.173941, 45.74713 ], [ 6.178384, 45.747155 ], [ 6.180328, 45.735753 ], [ 6.182875, 45.73327 ], [ 6.195548, 45.732331 ], [ 6.192971, 45.723148 ], [ 6.191921, 45.720114 ], [ 6.192367, 45.694642 ], [ 6.196181, 45.692767 ], [ 6.200252, 45.698663 ], [ 6.212644, 45.702537 ], [ 6.214292, 45.708988 ], [ 6.224754, 45.7053 ], [ 6.228203, 45.704002 ], [ 6.231654, 45.70276 ], [ 6.229745, 45.68262 ], [ 6.243726, 45.685117 ], [ 6.258115, 45.683593 ], [ 6.260673, 45.686628 ], [ 6.280343, 45.684822 ], [ 6.303372, 45.691485 ], [ 6.307949, 45.69296 ], [ 6.327378, 45.692915 ], [ 6.344215, 45.720599 ], [ 6.346179, 45.72371 ], [ 6.351084, 45.729264 ], [ 6.351108, 45.72944 ], [ 6.347677, 45.73717 ], [ 6.367189, 45.75069 ], [ 6.370442, 45.75293 ], [ 6.373861, 45.75937 ], [ 6.372507, 45.765876 ], [ 6.363309, 45.767953 ], [ 6.393263, 45.7849 ], [ 6.395768, 45.78772 ], [ 6.414943, 45.796749 ], [ 6.420117, 45.802262 ], [ 6.424559, 45.803858 ], [ 6.430076, 45.817156 ], [ 6.440621, 45.82894 ], [ 6.44419, 45.831382 ], [ 6.449187, 45.836448 ], [ 6.447603, 45.842256 ], [ 6.445068, 45.84482 ], [ 6.44632, 45.847929 ], [ 6.454178, 45.85539 ], [ 6.450756, 45.861323 ], [ 6.459298, 45.86484 ], [ 6.471838, 45.88429 ], [ 6.495368, 45.89103 ], [ 6.507915, 45.906245 ], [ 6.511064, 45.909058 ], [ 6.515993, 45.90314 ], [ 6.532823, 45.897 ], [ 6.556582, 45.89326 ], [ 6.559095, 45.88681 ], [ 6.567366, 45.88317 ], [ 6.570688, 45.88065 ], [ 6.572783, 45.877738 ], [ 6.569046, 45.87563 ], [ 6.568024, 45.862826 ], [ 6.563039, 45.86316 ], [ 6.554069, 45.86011 ], [ 6.535327, 45.86198 ], [ 6.544175, 45.8495 ], [ 6.552719, 45.826342 ], [ 6.562056, 45.81819 ], [ 6.565557, 45.81571 ], [ 6.569102, 45.81791 ], [ 6.5777, 45.81571 ], [ 6.584893, 45.80063 ], [ 6.594801, 45.79365 ], [ 6.599175, 45.79236 ], [ 6.601684, 45.79507 ], [ 6.63286, 45.798632 ], [ 6.637001, 45.80007 ], [ 6.654914, 45.799659 ], [ 6.659355, 45.80015 ], [ 6.676741, 45.780037 ], [ 6.690589, 45.77057 ], [ 6.68919, 45.76042 ], [ 6.687012, 45.754037 ], [ 6.698694, 45.74348 ], [ 6.689691, 45.728212 ], [ 6.707658, 45.72453 ], [ 6.711951, 45.72292 ], [ 6.740457, 45.74627 ], [ 6.742899, 45.753042 ], [ 6.757547, 45.76714 ], [ 6.781592, 45.77027 ], [ 6.797511, 45.778469 ], [ 6.802517, 45.77837 ], [ 6.807236, 45.747416 ], [ 6.815909, 45.738928 ], [ 6.809395, 45.725878 ], [ 6.827512, 45.70515 ], [ 6.840253, 45.69999 ], [ 6.845514, 45.69405 ], [ 6.846121, 45.690569 ], [ 6.872044, 45.680304 ], [ 6.901363, 45.67912 ], [ 6.905411, 45.67707 ], [ 6.906332, 45.670085 ], [ 6.902143, 45.663748 ], [ 6.914955, 45.66091 ], [ 6.916154, 45.654778 ], [ 6.914833, 45.65174 ], [ 6.933225, 45.64662 ], [ 6.966743, 45.65386 ], [ 6.976747, 45.646197 ], [ 6.999126, 45.63817 ], [ 6.997339, 45.631401 ], [ 6.985208, 45.620165 ], [ 6.978895, 45.58864 ], [ 6.994946, 45.57136 ], [ 6.990544, 45.5614 ], [ 6.995077, 45.54398 ], [ 6.992015, 45.533529 ], [ 7.004775, 45.51854 ], [ 7.000779, 45.508305 ], [ 6.999974, 45.504791 ], [ 7.02166, 45.496874 ], [ 7.051051, 45.49625 ], [ 7.056115, 45.490639 ], [ 7.048163, 45.48233 ], [ 7.046239, 45.479148 ], [ 7.049574, 45.47268 ], [ 7.078324, 45.47328 ], [ 7.10181, 45.46852 ], [ 7.100943, 45.455051 ], [ 7.110218, 45.44707 ], [ 7.114687, 45.437551 ], [ 7.113516, 45.43419 ], [ 7.150285, 45.423046 ], [ 7.184202, 45.403453 ], [ 7.177592, 45.390111 ], [ 7.163693, 45.38018 ], [ 7.159861, 45.359581 ], [ 7.135646, 45.347837 ], [ 7.13268, 45.330625 ], [ 7.124126, 45.32732 ], [ 7.114352, 45.328948 ], [ 7.110695, 45.326512 ], [ 7.111696, 45.31618 ], [ 7.117734, 45.31055 ], [ 7.122003, 45.29677 ], [ 7.135251, 45.281804 ], [ 7.13094, 45.27189 ], [ 7.135106, 45.254561 ], [ 7.126119, 45.24612 ], [ 7.111395, 45.244634 ], [ 7.083564, 45.22468 ], [ 7.075911, 45.212142 ], [ 7.066401, 45.21134 ], [ 7.054389, 45.222618 ], [ 7.05118, 45.22534 ], [ 7.041505, 45.224582 ], [ 7.025445, 45.216831 ], [ 7.001326, 45.217419 ], [ 6.990072, 45.21078 ], [ 6.966272, 45.206472 ], [ 6.964836, 45.196678 ], [ 6.953926, 45.18973 ], [ 6.953579, 45.18286 ], [ 6.947093, 45.17802 ], [ 6.942909, 45.176188 ], [ 6.945159, 45.17303 ], [ 6.892974, 45.165654 ], [ 6.886166, 45.15627 ], [ 6.895383, 45.140093 ], [ 6.854264, 45.128622 ], [ 6.796843, 45.152967 ], [ 6.791896, 45.15328 ], [ 6.769526, 45.159338 ], [ 6.747221, 45.14081 ], [ 6.738745, 45.13748 ], [ 6.711286, 45.14476 ], [ 6.706565, 45.14367 ], [ 6.678693, 45.137628 ], [ 6.670986, 45.124812 ], [ 6.65002, 45.115712 ], [ 6.63515, 45.115306 ], [ 6.629987, 45.109327 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "75", "CODE_DEPT": "74", "NOM_DEPT": "HAUTE-SAVOIE", "CODE_CHF": "010", "NOM_CHF": "ANNECY", "X_CHF_LIEU": "9426", "Y_CHF_LIEU": "65380", "X_CENTROID": "9650", "Y_CENTROID": "65540", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.802517, 45.77837 ], [ 6.797511, 45.778469 ], [ 6.781592, 45.77027 ], [ 6.757547, 45.76714 ], [ 6.742899, 45.753042 ], [ 6.740457, 45.74627 ], [ 6.711951, 45.72292 ], [ 6.707658, 45.72453 ], [ 6.689691, 45.728212 ], [ 6.698694, 45.74348 ], [ 6.687012, 45.754037 ], [ 6.68919, 45.76042 ], [ 6.690589, 45.77057 ], [ 6.676741, 45.780037 ], [ 6.659355, 45.80015 ], [ 6.654914, 45.799659 ], [ 6.637001, 45.80007 ], [ 6.63286, 45.798632 ], [ 6.601684, 45.79507 ], [ 6.599175, 45.79236 ], [ 6.594801, 45.79365 ], [ 6.584893, 45.80063 ], [ 6.5777, 45.81571 ], [ 6.569102, 45.81791 ], [ 6.565557, 45.81571 ], [ 6.562056, 45.81819 ], [ 6.552719, 45.826342 ], [ 6.544175, 45.8495 ], [ 6.535327, 45.86198 ], [ 6.554069, 45.86011 ], [ 6.563039, 45.86316 ], [ 6.568024, 45.862826 ], [ 6.569046, 45.87563 ], [ 6.572783, 45.877738 ], [ 6.570688, 45.88065 ], [ 6.567366, 45.88317 ], [ 6.559095, 45.88681 ], [ 6.556582, 45.89326 ], [ 6.532823, 45.897 ], [ 6.515993, 45.90314 ], [ 6.511064, 45.909058 ], [ 6.507915, 45.906245 ], [ 6.495368, 45.89103 ], [ 6.471838, 45.88429 ], [ 6.459298, 45.86484 ], [ 6.450756, 45.861323 ], [ 6.454178, 45.85539 ], [ 6.44632, 45.847929 ], [ 6.445068, 45.84482 ], [ 6.447603, 45.842256 ], [ 6.449187, 45.836448 ], [ 6.44419, 45.831382 ], [ 6.440621, 45.82894 ], [ 6.430076, 45.817156 ], [ 6.424559, 45.803858 ], [ 6.420117, 45.802262 ], [ 6.414943, 45.796749 ], [ 6.395768, 45.78772 ], [ 6.393263, 45.7849 ], [ 6.363309, 45.767953 ], [ 6.372507, 45.765876 ], [ 6.373861, 45.75937 ], [ 6.370442, 45.75293 ], [ 6.367189, 45.75069 ], [ 6.347677, 45.73717 ], [ 6.351108, 45.72944 ], [ 6.351084, 45.729264 ], [ 6.346179, 45.72371 ], [ 6.344215, 45.720599 ], [ 6.327378, 45.692915 ], [ 6.307949, 45.69296 ], [ 6.303372, 45.691485 ], [ 6.280343, 45.684822 ], [ 6.260673, 45.686628 ], [ 6.258115, 45.683593 ], [ 6.243726, 45.685117 ], [ 6.229745, 45.68262 ], [ 6.231654, 45.70276 ], [ 6.228203, 45.704002 ], [ 6.224754, 45.7053 ], [ 6.214292, 45.708988 ], [ 6.212644, 45.702537 ], [ 6.200252, 45.698663 ], [ 6.196181, 45.692767 ], [ 6.192367, 45.694642 ], [ 6.191921, 45.720114 ], [ 6.192971, 45.723148 ], [ 6.195548, 45.732331 ], [ 6.182875, 45.73327 ], [ 6.180328, 45.735753 ], [ 6.178384, 45.747155 ], [ 6.173941, 45.74713 ], [ 6.165841, 45.749535 ], [ 6.166234, 45.755725 ], [ 6.161318, 45.75643 ], [ 6.137611, 45.761328 ], [ 6.134623, 45.75518 ], [ 6.126279, 45.7515 ], [ 6.103134, 45.763445 ], [ 6.102219, 45.76022 ], [ 6.101762, 45.734194 ], [ 6.097173, 45.733599 ], [ 6.096133, 45.74282 ], [ 6.09133, 45.743934 ], [ 6.077005, 45.740947 ], [ 6.05508, 45.749194 ], [ 6.042253, 45.739259 ], [ 6.038005, 45.740878 ], [ 6.007549, 45.750715 ], [ 5.993806, 45.74769 ], [ 5.993197, 45.75094 ], [ 5.99667, 45.760404 ], [ 5.994261, 45.763216 ], [ 5.990146, 45.76451 ], [ 5.974033, 45.76869 ], [ 5.97306, 45.7719 ], [ 5.982179, 45.783163 ], [ 5.98055, 45.79617 ], [ 5.976022, 45.795815 ], [ 5.958068, 45.79492 ], [ 5.957448, 45.79802 ], [ 5.962785, 45.812735 ], [ 5.957776, 45.81207 ], [ 5.947964, 45.81052 ], [ 5.934122, 45.814602 ], [ 5.933251, 45.8113 ], [ 5.923117, 45.8051 ], [ 5.913953, 45.80406 ], [ 5.911823, 45.807168 ], [ 5.904711, 45.81182 ], [ 5.903836, 45.825558 ], [ 5.884466, 45.82633 ], [ 5.881238, 45.831409 ], [ 5.877809, 45.833884 ], [ 5.873424, 45.839042 ], [ 5.877123, 45.84816 ], [ 5.876087, 45.86341 ], [ 5.875603, 45.866983 ], [ 5.866816, 45.89869 ], [ 5.865741, 45.904079 ], [ 5.862625, 45.916638 ], [ 5.865804, 45.918936 ], [ 5.864867, 45.922258 ], [ 5.862078, 45.9322 ], [ 5.840286, 45.932321 ], [ 5.829631, 45.93758 ], [ 5.825235, 45.938483 ], [ 5.8288, 45.94049 ], [ 5.834832, 45.9523 ], [ 5.832784, 45.96171 ], [ 5.833912, 45.96857 ], [ 5.834026, 45.97203 ], [ 5.809968, 45.98983 ], [ 5.810189, 45.99339 ], [ 5.809541, 46.00525 ], [ 5.810555, 46.00815 ], [ 5.806792, 46.01297 ], [ 5.805472, 46.01574 ], [ 5.812299, 46.0238 ], [ 5.810502, 46.029894 ], [ 5.809339, 46.03295 ], [ 5.808012, 46.041156 ], [ 5.806997, 46.04383 ], [ 5.812553, 46.051513 ], [ 5.813614, 46.0543 ], [ 5.810988, 46.058878 ], [ 5.808074, 46.06086 ], [ 5.811532, 46.077597 ], [ 5.819203, 46.087562 ], [ 5.821693, 46.089897 ], [ 5.820731, 46.102932 ], [ 5.829654, 46.105665 ], [ 5.838211, 46.10255 ], [ 5.852738, 46.089201 ], [ 5.855987, 46.08667 ], [ 5.866262, 46.08554 ], [ 5.885654, 46.08541 ], [ 5.892996, 46.09377 ], [ 5.886227, 46.10962 ], [ 5.890789, 46.11581 ], [ 5.893026, 46.118917 ], [ 5.896829, 46.11977 ], [ 5.906798, 46.12254 ], [ 5.920403, 46.131039 ], [ 5.927926, 46.128 ], [ 5.936956, 46.12865 ], [ 5.95273, 46.130365 ], [ 5.956063, 46.132089 ], [ 5.957292, 46.12795 ], [ 5.960622, 46.130105 ], [ 5.973524, 46.13189 ], [ 5.980364, 46.13587 ], [ 5.982528, 46.13896 ], [ 5.993515, 46.14385 ], [ 6.017932, 46.14229 ], [ 6.035353, 46.136161 ], [ 6.047817, 46.14094 ], [ 6.047841, 46.14441 ], [ 6.052099, 46.15056 ], [ 6.091658, 46.15078 ], [ 6.097824, 46.145387 ], [ 6.126625, 46.14046 ], [ 6.131101, 46.14052 ], [ 6.135412, 46.141327 ], [ 6.13829, 46.14382 ], [ 6.146555, 46.145957 ], [ 6.148376, 46.14922 ], [ 6.175299, 46.158261 ], [ 6.188334, 46.168097 ], [ 6.186311, 46.174796 ], [ 6.186108, 46.17822 ], [ 6.209952, 46.192606 ], [ 6.214252, 46.193791 ], [ 6.226392, 46.20204 ], [ 6.230116, 46.20356 ], [ 6.233843, 46.206006 ], [ 6.248983, 46.2061 ], [ 6.276374, 46.21524 ], [ 6.290518, 46.223324 ], [ 6.294471, 46.224931 ], [ 6.309154, 46.24249 ], [ 6.306376, 46.25198 ], [ 6.308534, 46.25502 ], [ 6.303604, 46.25536 ], [ 6.294917, 46.257814 ], [ 6.294883, 46.26459 ], [ 6.291442, 46.26204 ], [ 6.2782, 46.251618 ], [ 6.26922, 46.24852 ], [ 6.2645, 46.24975 ], [ 6.261336, 46.25246 ], [ 6.238823, 46.275322 ], [ 6.238651, 46.282303 ], [ 6.251104, 46.28822 ], [ 6.251881, 46.29167 ], [ 6.245576, 46.30328 ], [ 6.241373, 46.304558 ], [ 6.250225, 46.308 ], [ 6.258155, 46.324753 ], [ 6.269367, 46.33669 ], [ 6.277334, 46.34912 ], [ 6.287331, 46.356946 ], [ 6.291412, 46.35899 ], [ 6.303395, 46.36622 ], [ 6.311512, 46.36761 ], [ 6.315959, 46.368807 ], [ 6.32689, 46.371066 ], [ 6.345247, 46.369555 ], [ 6.349113, 46.3674 ], [ 6.359372, 46.35003 ], [ 6.362591, 46.34777 ], [ 6.390778, 46.341 ], [ 6.39922, 46.34973 ], [ 6.404349, 46.351213 ], [ 6.413939, 46.359281 ], [ 6.438449, 46.36234 ], [ 6.442914, 46.36398 ], [ 6.447545, 46.365561 ], [ 6.474921, 46.375519 ], [ 6.481418, 46.38101 ], [ 6.48601, 46.3946 ], [ 6.513072, 46.40479 ], [ 6.517967, 46.40453 ], [ 6.544206, 46.39505 ], [ 6.568242, 46.398235 ], [ 6.573185, 46.399316 ], [ 6.61402, 46.40328 ], [ 6.616792, 46.403422 ], [ 6.619571, 46.403478 ], [ 6.624282, 46.404374 ], [ 6.638672, 46.405412 ], [ 6.643614, 46.40565 ], [ 6.711861, 46.40761 ], [ 6.717014, 46.40788 ], [ 6.757506, 46.402605 ], [ 6.761223, 46.40019 ], [ 6.790015, 46.393154 ], [ 6.805192, 46.394064 ], [ 6.801821, 46.38832 ], [ 6.806129, 46.380041 ], [ 6.800903, 46.375131 ], [ 6.791873, 46.367201 ], [ 6.782236, 46.366638 ], [ 6.771278, 46.360141 ], [ 6.772193, 46.350185 ], [ 6.774674, 46.347281 ], [ 6.786918, 46.332541 ], [ 6.796401, 46.33079 ], [ 6.801136, 46.321033 ], [ 6.822673, 46.31268 ], [ 6.831572, 46.30044 ], [ 6.845967, 46.29094 ], [ 6.850886, 46.29025 ], [ 6.855357, 46.291866 ], [ 6.863737, 46.27978 ], [ 6.852748, 46.25317 ], [ 6.840407, 46.24713 ], [ 6.834025, 46.23766 ], [ 6.822211, 46.231265 ], [ 6.821128, 46.2243 ], [ 6.803564, 46.203131 ], [ 6.806982, 46.196463 ], [ 6.810784, 46.1802 ], [ 6.807337, 46.177843 ], [ 6.793523, 46.16426 ], [ 6.790422, 46.154311 ], [ 6.797237, 46.138271 ], [ 6.812353, 46.13203 ], [ 6.815212, 46.12932 ], [ 6.834736, 46.13224 ], [ 6.852683, 46.1267 ], [ 6.897142, 46.123 ], [ 6.893169, 46.105755 ], [ 6.885097, 46.096818 ], [ 6.890051, 46.07657 ], [ 6.880577, 46.068627 ], [ 6.873114, 46.05556 ], [ 6.872633, 46.05205 ], [ 6.887971, 46.0439 ], [ 6.909534, 46.052 ], [ 6.922089, 46.0628 ], [ 6.936209, 46.06427 ], [ 6.937976, 46.054241 ], [ 6.951127, 46.049645 ], [ 6.960682, 46.03364 ], [ 6.962904, 46.030534 ], [ 6.981157, 46.018759 ], [ 6.986806, 46.005107 ], [ 7.009037, 45.99714 ], [ 7.02013, 45.98131 ], [ 7.012909, 45.972564 ], [ 7.012762, 45.965762 ], [ 7.036102, 45.952561 ], [ 7.04214, 45.928288 ], [ 7.042049, 45.92477 ], [ 7.038827, 45.92205 ], [ 7.021333, 45.91479 ], [ 7.008919, 45.90344 ], [ 7.006282, 45.900387 ], [ 7.004187, 45.886315 ], [ 7.002929, 45.882852 ], [ 6.996492, 45.873143 ], [ 6.992852, 45.87065 ], [ 6.954902, 45.860524 ], [ 6.937725, 45.847501 ], [ 6.908472, 45.842693 ], [ 6.879522, 45.847974 ], [ 6.873663, 45.84243 ], [ 6.869982, 45.828395 ], [ 6.862576, 45.82909 ], [ 6.861388, 45.83257 ], [ 6.857232, 45.834547 ], [ 6.853841, 45.83715 ], [ 6.840125, 45.840035 ], [ 6.821585, 45.836995 ], [ 6.804669, 45.81671 ], [ 6.807072, 45.813784 ], [ 6.812006, 45.80796 ], [ 6.811691, 45.797418 ], [ 6.803877, 45.78858 ], [ 6.802517, 45.77837 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "76", "CODE_DEPT": "75", "NOM_DEPT": "PARIS", "CODE_CHF": "101", "NOM_CHF": "PARIS--1ER-ARRONDISSEMENT", "X_CHF_LIEU": "6516", "Y_CHF_LIEU": "68623", "X_CENTROID": "6517", "Y_CENTROID": "68620", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.416367, 48.849247 ], [ 2.415892, 48.84664 ], [ 2.416502, 48.8347 ], [ 2.422967, 48.842714 ], [ 2.427461, 48.84164 ], [ 2.437059, 48.84117 ], [ 2.442857, 48.84555 ], [ 2.447579, 48.8449 ], [ 2.464673, 48.841532 ], [ 2.467314, 48.83912 ], [ 2.46962, 48.836077 ], [ 2.464996, 48.82999 ], [ 2.466188, 48.826672 ], [ 2.461194, 48.818277 ], [ 2.456645, 48.81701 ], [ 2.419933, 48.82393 ], [ 2.403242, 48.82916 ], [ 2.393998, 48.82757 ], [ 2.389917, 48.82592 ], [ 2.368823, 48.81755 ], [ 2.364442, 48.81608 ], [ 2.360036, 48.81561 ], [ 2.355593, 48.81587 ], [ 2.352648, 48.818314 ], [ 2.344084, 48.81596 ], [ 2.332032, 48.81694 ], [ 2.328164, 48.81907 ], [ 2.313783, 48.82211 ], [ 2.309534, 48.823082 ], [ 2.301049, 48.825075 ], [ 2.297141, 48.825987 ], [ 2.289538, 48.82818 ], [ 2.285347, 48.829803 ], [ 2.271895, 48.828363 ], [ 2.263029, 48.834011 ], [ 2.262759, 48.83383 ], [ 2.257612, 48.834607 ], [ 2.248056, 48.84632 ], [ 2.223956, 48.85322 ], [ 2.225787, 48.85934 ], [ 2.230058, 48.867314 ], [ 2.23278, 48.86951 ], [ 2.236482, 48.87085 ], [ 2.245659, 48.87635 ], [ 2.255282, 48.874641 ], [ 2.260275, 48.880221 ], [ 2.280002, 48.878534 ], [ 2.280497, 48.881181 ], [ 2.284306, 48.885772 ], [ 2.299983, 48.892268 ], [ 2.303792, 48.894053 ], [ 2.315925, 48.89866 ], [ 2.31983, 48.900414 ], [ 2.324885, 48.90087 ], [ 2.329983, 48.901163 ], [ 2.334361, 48.901233 ], [ 2.351873, 48.90153 ], [ 2.361188, 48.90161 ], [ 2.365854, 48.90161 ], [ 2.370286, 48.90165 ], [ 2.389444, 48.901193 ], [ 2.397957, 48.89286 ], [ 2.398651, 48.889414 ], [ 2.400339, 48.88375 ], [ 2.407535, 48.880528 ], [ 2.410694, 48.87847 ], [ 2.413277, 48.873119 ], [ 2.414556, 48.858817 ], [ 2.415427, 48.855268 ], [ 2.416367, 48.849247 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "77", "CODE_DEPT": "76", "NOM_DEPT": "SEINE-MARITIME", "CODE_CHF": "540", "NOM_CHF": "ROUEN", "X_CHF_LIEU": "5623", "Y_CHF_LIEU": "69287", "X_CENTROID": "5574", "Y_CENTROID": "69524", "CODE_REG": "23", "NOM_REGION": "HAUTE-NORMANDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.713938, 49.40922 ], [ 1.705046, 49.40888 ], [ 1.694284, 49.394865 ], [ 1.691936, 49.39728 ], [ 1.682184, 49.402672 ], [ 1.680561, 49.405827 ], [ 1.670423, 49.40628 ], [ 1.659032, 49.39989 ], [ 1.650699, 49.403026 ], [ 1.647801, 49.403191 ], [ 1.644518, 49.40548 ], [ 1.62791, 49.41144 ], [ 1.628006, 49.414583 ], [ 1.623377, 49.41456 ], [ 1.606957, 49.410854 ], [ 1.603637, 49.413378 ], [ 1.585082, 49.43176 ], [ 1.581915, 49.433649 ], [ 1.575446, 49.437295 ], [ 1.576197, 49.440054 ], [ 1.550283, 49.44044 ], [ 1.537191, 49.43009 ], [ 1.5355, 49.433348 ], [ 1.527546, 49.442052 ], [ 1.501866, 49.439544 ], [ 1.498491, 49.4423 ], [ 1.491322, 49.44749 ], [ 1.476221, 49.45131 ], [ 1.449923, 49.45005 ], [ 1.436079, 49.45502 ], [ 1.411997, 49.45563 ], [ 1.383933, 49.449948 ], [ 1.392158, 49.461636 ], [ 1.38949, 49.46274 ], [ 1.386452, 49.46329 ], [ 1.368674, 49.4511 ], [ 1.344091, 49.44627 ], [ 1.349982, 49.43843 ], [ 1.348854, 49.435765 ], [ 1.337491, 49.43887 ], [ 1.335723, 49.43558 ], [ 1.338046, 49.428937 ], [ 1.328864, 49.431139 ], [ 1.309632, 49.42873 ], [ 1.311022, 49.425848 ], [ 1.315391, 49.41111 ], [ 1.308009, 49.39634 ], [ 1.297471, 49.39467 ], [ 1.292988, 49.39404 ], [ 1.28613, 49.38693 ], [ 1.286147, 49.383954 ], [ 1.289196, 49.37549 ], [ 1.286239, 49.36296 ], [ 1.282152, 49.36165 ], [ 1.272228, 49.35425 ], [ 1.272155, 49.34738 ], [ 1.246099, 49.347524 ], [ 1.241233, 49.347776 ], [ 1.212223, 49.349724 ], [ 1.209571, 49.35239 ], [ 1.204671, 49.35201 ], [ 1.200411, 49.355357 ], [ 1.198912, 49.35217 ], [ 1.200779, 49.33889 ], [ 1.185541, 49.337899 ], [ 1.184847, 49.33807 ], [ 1.182717, 49.343845 ], [ 1.178198, 49.34243 ], [ 1.168589, 49.33597 ], [ 1.166683, 49.338864 ], [ 1.160337, 49.340503 ], [ 1.155046, 49.33529 ], [ 1.145476, 49.33551 ], [ 1.144742, 49.332577 ], [ 1.136896, 49.32584 ], [ 1.134635, 49.322917 ], [ 1.133994, 49.30984 ], [ 1.129593, 49.30985 ], [ 1.124683, 49.30947 ], [ 1.094995, 49.30975 ], [ 1.090166, 49.30979 ], [ 1.071772, 49.3063 ], [ 1.067449, 49.304245 ], [ 1.048481, 49.29782 ], [ 1.065644, 49.28084 ], [ 1.052655, 49.27246 ], [ 1.063577, 49.26156 ], [ 1.061024, 49.25929 ], [ 1.05351, 49.26179 ], [ 1.051614, 49.25926 ], [ 1.051713, 49.26246 ], [ 1.038716, 49.25808 ], [ 1.038408, 49.259697 ], [ 0.999109, 49.25197 ], [ 0.994332, 49.2572 ], [ 0.999613, 49.262036 ], [ 0.989553, 49.26315 ], [ 0.985591, 49.26926 ], [ 0.980858, 49.27011 ], [ 0.970563, 49.27962 ], [ 0.955769, 49.27137 ], [ 0.955538, 49.274436 ], [ 0.952434, 49.279931 ], [ 0.955864, 49.281842 ], [ 0.962659, 49.28555 ], [ 0.960717, 49.29087 ], [ 0.960338, 49.294192 ], [ 0.951232, 49.29743 ], [ 0.937589, 49.31986 ], [ 0.925702, 49.313421 ], [ 0.921014, 49.31198 ], [ 0.908281, 49.306493 ], [ 0.909447, 49.29977 ], [ 0.899933, 49.298039 ], [ 0.893682, 49.30332 ], [ 0.892669, 49.316329 ], [ 0.869477, 49.32335 ], [ 0.86442, 49.32255 ], [ 0.862759, 49.325462 ], [ 0.844484, 49.32622 ], [ 0.848188, 49.33143 ], [ 0.85934, 49.34519 ], [ 0.864208, 49.345612 ], [ 0.871749, 49.34231 ], [ 0.885498, 49.34631 ], [ 0.920066, 49.338592 ], [ 0.928962, 49.34221 ], [ 0.93224, 49.34489 ], [ 0.926813, 49.34876 ], [ 0.923216, 49.349905 ], [ 0.921963, 49.352976 ], [ 0.924328, 49.358871 ], [ 0.922086, 49.36154 ], [ 0.917825, 49.376374 ], [ 0.917497, 49.3794 ], [ 0.918119, 49.38546 ], [ 0.913196, 49.38459 ], [ 0.895508, 49.37826 ], [ 0.892756, 49.37214 ], [ 0.888059, 49.373511 ], [ 0.879015, 49.372786 ], [ 0.880352, 49.376082 ], [ 0.884734, 49.38172 ], [ 0.876661, 49.389802 ], [ 0.878462, 49.396254 ], [ 0.873629, 49.3952 ], [ 0.864153, 49.39282 ], [ 0.860851, 49.395359 ], [ 0.856544, 49.393916 ], [ 0.833067, 49.39365 ], [ 0.828008, 49.39471 ], [ 0.818879, 49.39819 ], [ 0.815203, 49.400721 ], [ 0.802892, 49.427068 ], [ 0.800132, 49.42712 ], [ 0.803021, 49.417575 ], [ 0.787609, 49.41283 ], [ 0.783355, 49.410814 ], [ 0.767621, 49.41898 ], [ 0.743824, 49.41317 ], [ 0.738288, 49.40806 ], [ 0.715509, 49.410856 ], [ 0.714187, 49.40958 ], [ 0.70901, 49.41011 ], [ 0.706393, 49.40357 ], [ 0.686356, 49.40576 ], [ 0.670967, 49.40356 ], [ 0.666042, 49.402466 ], [ 0.657385, 49.405572 ], [ 0.65297, 49.4066 ], [ 0.649834, 49.40888 ], [ 0.653605, 49.41111 ], [ 0.657586, 49.41691 ], [ 0.643721, 49.4193 ], [ 0.639453, 49.42521 ], [ 0.629512, 49.42405 ], [ 0.630653, 49.427406 ], [ 0.645169, 49.4413 ], [ 0.642538, 49.444256 ], [ 0.638579, 49.44216 ], [ 0.614557, 49.42995 ], [ 0.599426, 49.42891 ], [ 0.594568, 49.429617 ], [ 0.581253, 49.43396 ], [ 0.560742, 49.4481 ], [ 0.55787, 49.4505 ], [ 0.543384, 49.462409 ], [ 0.538625, 49.46616 ], [ 0.537695, 49.467131 ], [ 0.534675, 49.469686 ], [ 0.522109, 49.47963 ], [ 0.509162, 49.48423 ], [ 0.503839, 49.484998 ], [ 0.493009, 49.484334 ], [ 0.47886, 49.47902 ], [ 0.474178, 49.476839 ], [ 0.469808, 49.475066 ], [ 0.435335, 49.46041 ], [ 0.430743, 49.45871 ], [ 0.426004, 49.4572 ], [ 0.421222, 49.45573 ], [ 0.386601, 49.44724 ], [ 0.382193, 49.44632 ], [ 0.368796, 49.443966 ], [ 0.363704, 49.44402 ], [ 0.338983, 49.440931 ], [ 0.297345, 49.43913 ], [ 0.285713, 49.44447 ], [ 0.287626, 49.447948 ], [ 0.3087, 49.44905 ], [ 0.31183, 49.449594 ], [ 0.303271, 49.45052 ], [ 0.287893, 49.45125 ], [ 0.274945, 49.446728 ], [ 0.269987, 49.447642 ], [ 0.257973, 49.44918 ], [ 0.253845, 49.449507 ], [ 0.237788, 49.45209 ], [ 0.195024, 49.45486 ], [ 0.171701, 49.46002 ], [ 0.156336, 49.45818 ], [ 0.145183, 49.46547 ], [ 0.114342, 49.470644 ], [ 0.09308, 49.48131 ], [ 0.093312, 49.49453 ], [ 0.088123, 49.500586 ], [ 0.083366, 49.50217 ], [ 0.069789, 49.50632 ], [ 0.066273, 49.51541 ], [ 0.066916, 49.51867 ], [ 0.075547, 49.53717 ], [ 0.078026, 49.53999 ], [ 0.108648, 49.58592 ], [ 0.111463, 49.58899 ], [ 0.126703, 49.60683 ], [ 0.128783, 49.60996 ], [ 0.140654, 49.62589 ], [ 0.142587, 49.629209 ], [ 0.15393, 49.64781 ], [ 0.151799, 49.657507 ], [ 0.158992, 49.66592 ], [ 0.159931, 49.669206 ], [ 0.164907, 49.68619 ], [ 0.1751, 49.6941 ], [ 0.179394, 49.696157 ], [ 0.182167, 49.699179 ], [ 0.205158, 49.71298 ], [ 0.220071, 49.71693 ], [ 0.225343, 49.71764 ], [ 0.241163, 49.720239 ], [ 0.259697, 49.72762 ], [ 0.264879, 49.72875 ], [ 0.270224, 49.73072 ], [ 0.290015, 49.737824 ], [ 0.29379, 49.739607 ], [ 0.299454, 49.74006 ], [ 0.316104, 49.74079 ], [ 0.320424, 49.741464 ], [ 0.334415, 49.74611 ], [ 0.338901, 49.74789 ], [ 0.351317, 49.75327 ], [ 0.355324, 49.755199 ], [ 0.366921, 49.767119 ], [ 0.38715, 49.771878 ], [ 0.424136, 49.78437 ], [ 0.428468, 49.78628 ], [ 0.479088, 49.806282 ], [ 0.483546, 49.80826 ], [ 0.507522, 49.819882 ], [ 0.51259, 49.81964 ], [ 0.520306, 49.823532 ], [ 0.524244, 49.82541 ], [ 0.534402, 49.83373 ], [ 0.557663, 49.84364 ], [ 0.56234, 49.845528 ], [ 0.581406, 49.85205 ], [ 0.602412, 49.85438 ], [ 0.606981, 49.85625 ], [ 0.640399, 49.863815 ], [ 0.645528, 49.86415 ], [ 0.650624, 49.86491 ], [ 0.655782, 49.865513 ], [ 0.668522, 49.86727 ], [ 0.709745, 49.87294 ], [ 0.718799, 49.869483 ], [ 0.745112, 49.87126 ], [ 0.750404, 49.87138 ], [ 0.76389, 49.871746 ], [ 0.795854, 49.87701 ], [ 0.800985, 49.87831 ], [ 0.834184, 49.88969 ], [ 0.839541, 49.889338 ], [ 0.893722, 49.89902 ], [ 0.89844, 49.900331 ], [ 0.924739, 49.905354 ], [ 0.929789, 49.906743 ], [ 0.96144, 49.919712 ], [ 0.972258, 49.91924 ], [ 1.021849, 49.916274 ], [ 1.025735, 49.91655 ], [ 1.035178, 49.91887 ], [ 1.039774, 49.92025 ], [ 1.06981, 49.92678 ], [ 1.085877, 49.93557 ], [ 1.110602, 49.93893 ], [ 1.115246, 49.94057 ], [ 1.143184, 49.94988 ], [ 1.147616, 49.95169 ], [ 1.164733, 49.9578 ], [ 1.168719, 49.959651 ], [ 1.189936, 49.96695 ], [ 1.194522, 49.96804 ], [ 1.202426, 49.97179 ], [ 1.205261, 49.977542 ], [ 1.208678, 49.97982 ], [ 1.230982, 49.987512 ], [ 1.235089, 49.98961 ], [ 1.256331, 50.002107 ], [ 1.259655, 50.004355 ], [ 1.266964, 50.009121 ], [ 1.270733, 50.01143 ], [ 1.33435, 50.04797 ], [ 1.338735, 50.04997 ], [ 1.342387, 50.05176 ], [ 1.369126, 50.06372 ], [ 1.379705, 50.065015 ], [ 1.404428, 50.05723 ], [ 1.40926, 50.05707 ], [ 1.419826, 50.06641 ], [ 1.421862, 50.069131 ], [ 1.431667, 50.07115 ], [ 1.450671, 50.06723 ], [ 1.453325, 50.06438 ], [ 1.456458, 50.063714 ], [ 1.459146, 50.062499 ], [ 1.452288, 50.041617 ], [ 1.45886, 50.03696 ], [ 1.473212, 50.033686 ], [ 1.475827, 50.03069 ], [ 1.48632, 50.023 ], [ 1.493091, 50.01845 ], [ 1.497761, 50.019436 ], [ 1.514481, 50.01265 ], [ 1.523615, 50.001981 ], [ 1.525236, 49.99895 ], [ 1.52695, 49.99658 ], [ 1.55751, 49.98041 ], [ 1.561275, 49.97833 ], [ 1.570107, 49.97536 ], [ 1.57439, 49.97365 ], [ 1.577978, 49.96386 ], [ 1.603803, 49.943395 ], [ 1.608454, 49.94181 ], [ 1.624556, 49.93428 ], [ 1.643494, 49.9303 ], [ 1.647729, 49.92857 ], [ 1.652181, 49.927065 ], [ 1.678451, 49.91813 ], [ 1.678647, 49.91323 ], [ 1.690784, 49.901682 ], [ 1.691652, 49.898735 ], [ 1.693304, 49.895608 ], [ 1.69702, 49.89333 ], [ 1.706178, 49.89144 ], [ 1.71209, 49.8864 ], [ 1.713912, 49.87702 ], [ 1.711815, 49.87417 ], [ 1.712859, 49.87083 ], [ 1.718728, 49.86571 ], [ 1.720039, 49.86167 ], [ 1.719039, 49.848352 ], [ 1.72535, 49.84322 ], [ 1.726224, 49.839945 ], [ 1.725711, 49.836561 ], [ 1.733854, 49.8135 ], [ 1.742319, 49.80639 ], [ 1.744387, 49.80357 ], [ 1.749904, 49.79486 ], [ 1.752718, 49.79215 ], [ 1.758369, 49.78351 ], [ 1.759249, 49.7804 ], [ 1.773681, 49.77636 ], [ 1.779601, 49.77073 ], [ 1.780929, 49.767426 ], [ 1.78333, 49.764467 ], [ 1.784845, 49.7579 ], [ 1.763625, 49.75727 ], [ 1.749886, 49.76211 ], [ 1.74272, 49.75285 ], [ 1.74026, 49.75025 ], [ 1.745455, 49.738572 ], [ 1.742891, 49.73855 ], [ 1.725303, 49.73157 ], [ 1.715538, 49.73288 ], [ 1.715109, 49.71354 ], [ 1.715453, 49.71033 ], [ 1.68862, 49.69371 ], [ 1.707758, 49.681374 ], [ 1.717096, 49.68456 ], [ 1.732928, 49.69855 ], [ 1.743109, 49.70033 ], [ 1.746515, 49.69757 ], [ 1.750299, 49.69582 ], [ 1.751309, 49.68392 ], [ 1.752184, 49.68097 ], [ 1.747082, 49.680078 ], [ 1.724131, 49.671805 ], [ 1.722778, 49.66165 ], [ 1.721554, 49.65857 ], [ 1.713754, 49.654908 ], [ 1.708078, 49.646149 ], [ 1.698685, 49.64435 ], [ 1.701361, 49.641952 ], [ 1.70442, 49.63976 ], [ 1.707252, 49.63776 ], [ 1.717252, 49.632981 ], [ 1.71873, 49.62976 ], [ 1.721685, 49.623321 ], [ 1.715943, 49.61395 ], [ 1.693725, 49.60107 ], [ 1.720146, 49.589656 ], [ 1.721618, 49.58881 ], [ 1.7204, 49.58556 ], [ 1.709641, 49.58021 ], [ 1.694593, 49.58054 ], [ 1.697693, 49.57222 ], [ 1.710406, 49.57725 ], [ 1.717848, 49.57262 ], [ 1.720397, 49.569598 ], [ 1.726288, 49.56386 ], [ 1.729834, 49.56129 ], [ 1.72916, 49.55503 ], [ 1.724905, 49.54554 ], [ 1.731211, 49.541354 ], [ 1.744888, 49.53952 ], [ 1.745519, 49.53916 ], [ 1.738792, 49.52058 ], [ 1.71992, 49.508904 ], [ 1.717972, 49.50674 ], [ 1.719227, 49.50292 ], [ 1.72546, 49.49978 ], [ 1.740506, 49.497983 ], [ 1.744868, 49.49173 ], [ 1.755399, 49.50646 ], [ 1.768074, 49.512028 ], [ 1.783584, 49.507609 ], [ 1.78755, 49.50623 ], [ 1.788633, 49.490141 ], [ 1.778449, 49.489626 ], [ 1.775438, 49.48686 ], [ 1.775771, 49.47344 ], [ 1.765371, 49.465925 ], [ 1.760619, 49.46452 ], [ 1.747434, 49.45945 ], [ 1.749925, 49.45679 ], [ 1.748842, 49.45144 ], [ 1.739918, 49.4493 ], [ 1.736373, 49.44713 ], [ 1.733389, 49.44122 ], [ 1.726078, 49.438065 ], [ 1.72201, 49.42149 ], [ 1.713938, 49.40922 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "78", "CODE_DEPT": "77", "NOM_DEPT": "SEINE-ET-MARNE", "CODE_CHF": "288", "NOM_CHF": "MELUN", "X_CHF_LIEU": "6748", "Y_CHF_LIEU": "68266", "X_CENTROID": "6951", "Y_CENTROID": "68362", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.936314, 48.163392 ], [ 2.931137, 48.162813 ], [ 2.900047, 48.15943 ], [ 2.895207, 48.15895 ], [ 2.870991, 48.15647 ], [ 2.866823, 48.15604 ], [ 2.864438, 48.152902 ], [ 2.838308, 48.135908 ], [ 2.823316, 48.13278 ], [ 2.82088, 48.12966 ], [ 2.816334, 48.13043 ], [ 2.802391, 48.131462 ], [ 2.799465, 48.137396 ], [ 2.797907, 48.140551 ], [ 2.800412, 48.15361 ], [ 2.810418, 48.16082 ], [ 2.810918, 48.164067 ], [ 2.798959, 48.168025 ], [ 2.79024, 48.1653 ], [ 2.780977, 48.167363 ], [ 2.77668, 48.165726 ], [ 2.754682, 48.16139 ], [ 2.736406, 48.16631 ], [ 2.738384, 48.16342 ], [ 2.754255, 48.151905 ], [ 2.755198, 48.14565 ], [ 2.750335, 48.14487 ], [ 2.722461, 48.13741 ], [ 2.706547, 48.124819 ], [ 2.675484, 48.12517 ], [ 2.66757, 48.120667 ], [ 2.664748, 48.120542 ], [ 2.661585, 48.123439 ], [ 2.639666, 48.13895 ], [ 2.634454, 48.13833 ], [ 2.599014, 48.1316 ], [ 2.577868, 48.13178 ], [ 2.570563, 48.140816 ], [ 2.565815, 48.14109 ], [ 2.537505, 48.14052 ], [ 2.534395, 48.13806 ], [ 2.521724, 48.128417 ], [ 2.52221, 48.125215 ], [ 2.517284, 48.1259 ], [ 2.477562, 48.1291 ], [ 2.458954, 48.125608 ], [ 2.455859, 48.123389 ], [ 2.442692, 48.12549 ], [ 2.444256, 48.13147 ], [ 2.461097, 48.138207 ], [ 2.474045, 48.15161 ], [ 2.47185, 48.154597 ], [ 2.480872, 48.16161 ], [ 2.483238, 48.164518 ], [ 2.502032, 48.158444 ], [ 2.506327, 48.15644 ], [ 2.514911, 48.16484 ], [ 2.508843, 48.180923 ], [ 2.515406, 48.19301 ], [ 2.520296, 48.193919 ], [ 2.523011, 48.19876 ], [ 2.519932, 48.201377 ], [ 2.517404, 48.214378 ], [ 2.514119, 48.214382 ], [ 2.51535, 48.22693 ], [ 2.507345, 48.228985 ], [ 2.506192, 48.23854 ], [ 2.501745, 48.23871 ], [ 2.484178, 48.23897 ], [ 2.480612, 48.24139 ], [ 2.476787, 48.25083 ], [ 2.46909, 48.255282 ], [ 2.465405, 48.25326 ], [ 2.4518, 48.250425 ], [ 2.444509, 48.254485 ], [ 2.440144, 48.2532 ], [ 2.435639, 48.254848 ], [ 2.421716, 48.26388 ], [ 2.420109, 48.2667 ], [ 2.418346, 48.27989 ], [ 2.423098, 48.29278 ], [ 2.420762, 48.299251 ], [ 2.417749, 48.302206 ], [ 2.402664, 48.32072 ], [ 2.395402, 48.325757 ], [ 2.394016, 48.33253 ], [ 2.392372, 48.33587 ], [ 2.401297, 48.33302 ], [ 2.410141, 48.336079 ], [ 2.429878, 48.33657 ], [ 2.433827, 48.33454 ], [ 2.43034, 48.347506 ], [ 2.441143, 48.3572 ], [ 2.433247, 48.35961 ], [ 2.429832, 48.36202 ], [ 2.433195, 48.3644 ], [ 2.440984, 48.36838 ], [ 2.450638, 48.36716 ], [ 2.44984, 48.37371 ], [ 2.482461, 48.38246 ], [ 2.473832, 48.39039 ], [ 2.486035, 48.39683 ], [ 2.50648, 48.394911 ], [ 2.521784, 48.40404 ], [ 2.54706, 48.40142 ], [ 2.543782, 48.403913 ], [ 2.517311, 48.42768 ], [ 2.505029, 48.429866 ], [ 2.505037, 48.44484 ], [ 2.504411, 48.44808 ], [ 2.505804, 48.451011 ], [ 2.501263, 48.45635 ], [ 2.498523, 48.45719 ], [ 2.499641, 48.45905 ], [ 2.502797, 48.4601 ], [ 2.505938, 48.461159 ], [ 2.502473, 48.484247 ], [ 2.510364, 48.488445 ], [ 2.509908, 48.49085 ], [ 2.512086, 48.49541 ], [ 2.513823, 48.50953 ], [ 2.509083, 48.509626 ], [ 2.506859, 48.515779 ], [ 2.49761, 48.51724 ], [ 2.509452, 48.54262 ], [ 2.499315, 48.54291 ], [ 2.518054, 48.561802 ], [ 2.519648, 48.56834 ], [ 2.531595, 48.573659 ], [ 2.526677, 48.573414 ], [ 2.521772, 48.573224 ], [ 2.522051, 48.57675 ], [ 2.518277, 48.58326 ], [ 2.539227, 48.593685 ], [ 2.54145, 48.596887 ], [ 2.543285, 48.605818 ], [ 2.542513, 48.608801 ], [ 2.539681, 48.611489 ], [ 2.526154, 48.614773 ], [ 2.525227, 48.621201 ], [ 2.516511, 48.62915 ], [ 2.520278, 48.63127 ], [ 2.540056, 48.63365 ], [ 2.547965, 48.64966 ], [ 2.544445, 48.65171 ], [ 2.533752, 48.6573 ], [ 2.544822, 48.66927 ], [ 2.547461, 48.67192 ], [ 2.556959, 48.672883 ], [ 2.565205, 48.66936 ], [ 2.579195, 48.677514 ], [ 2.584074, 48.67715 ], [ 2.584646, 48.68034 ], [ 2.580376, 48.68948 ], [ 2.57166, 48.692023 ], [ 2.572261, 48.694966 ], [ 2.577677, 48.69901 ], [ 2.574345, 48.701 ], [ 2.571587, 48.70266 ], [ 2.568804, 48.70722 ], [ 2.568137, 48.708974 ], [ 2.570969, 48.71173 ], [ 2.580406, 48.72299 ], [ 2.594679, 48.731805 ], [ 2.594109, 48.73523 ], [ 2.587757, 48.74408 ], [ 2.599551, 48.75074 ], [ 2.597544, 48.760569 ], [ 2.614817, 48.761121 ], [ 2.60644, 48.773307 ], [ 2.591044, 48.77233 ], [ 2.587516, 48.77805 ], [ 2.598816, 48.793366 ], [ 2.591542, 48.79737 ], [ 2.593058, 48.80031 ], [ 2.596498, 48.80607 ], [ 2.59228, 48.807437 ], [ 2.595795, 48.81427 ], [ 2.595334, 48.817457 ], [ 2.591136, 48.826634 ], [ 2.586672, 48.827887 ], [ 2.586281, 48.83425 ], [ 2.584171, 48.837429 ], [ 2.573836, 48.85338 ], [ 2.582522, 48.8562 ], [ 2.586866, 48.86183 ], [ 2.587332, 48.865 ], [ 2.582285, 48.8654 ], [ 2.567967, 48.86594 ], [ 2.570615, 48.87878 ], [ 2.563216, 48.8831 ], [ 2.559406, 48.885338 ], [ 2.587229, 48.89854 ], [ 2.591024, 48.906953 ], [ 2.592724, 48.90753 ], [ 2.58878, 48.90949 ], [ 2.592342, 48.925024 ], [ 2.596169, 48.92603 ], [ 2.602598, 48.929357 ], [ 2.602682, 48.93276 ], [ 2.597808, 48.938144 ], [ 2.593811, 48.946593 ], [ 2.591905, 48.94935 ], [ 2.590118, 48.952623 ], [ 2.566237, 48.97551 ], [ 2.576511, 48.980354 ], [ 2.579819, 48.98686 ], [ 2.575843, 49.00029 ], [ 2.571528, 49.001531 ], [ 2.565792, 49.0124 ], [ 2.561242, 49.012185 ], [ 2.553061, 49.009817 ], [ 2.550672, 49.01263 ], [ 2.538421, 49.01446 ], [ 2.535372, 49.02057 ], [ 2.535425, 49.02379 ], [ 2.545077, 49.022421 ], [ 2.563288, 49.02743 ], [ 2.568943, 49.03635 ], [ 2.56934, 49.03959 ], [ 2.579624, 49.046501 ], [ 2.589495, 49.04717 ], [ 2.594474, 49.04714 ], [ 2.573213, 49.059283 ], [ 2.590524, 49.07965 ], [ 2.609132, 49.091558 ], [ 2.610339, 49.094943 ], [ 2.614781, 49.09409 ], [ 2.619365, 49.09447 ], [ 2.631694, 49.105117 ], [ 2.633273, 49.108376 ], [ 2.640674, 49.099713 ], [ 2.650967, 49.10025 ], [ 2.676384, 49.088872 ], [ 2.67832, 49.08573 ], [ 2.693519, 49.073452 ], [ 2.691155, 49.07062 ], [ 2.690023, 49.067562 ], [ 2.698321, 49.06443 ], [ 2.703081, 49.064736 ], [ 2.720824, 49.07564 ], [ 2.724357, 49.08046 ], [ 2.733096, 49.063359 ], [ 2.735013, 49.060459 ], [ 2.756038, 49.061528 ], [ 2.760833, 49.063004 ], [ 2.785275, 49.07544 ], [ 2.772712, 49.081378 ], [ 2.768337, 49.08326 ], [ 2.788214, 49.08287 ], [ 2.783988, 49.08864 ], [ 2.787956, 49.08917 ], [ 2.79173, 49.09014 ], [ 2.80477, 49.09576 ], [ 2.809254, 49.097536 ], [ 2.821258, 49.08681 ], [ 2.83522, 49.083 ], [ 2.844946, 49.08488 ], [ 2.854288, 49.073152 ], [ 2.856089, 49.070034 ], [ 2.872029, 49.071248 ], [ 2.890202, 49.07847 ], [ 2.895105, 49.077052 ], [ 2.899159, 49.08252 ], [ 2.900947, 49.08535 ], [ 2.923982, 49.07829 ], [ 2.933807, 49.08001 ], [ 2.937888, 49.077998 ], [ 2.944317, 49.081814 ], [ 2.94583, 49.08808 ], [ 2.954853, 49.08595 ], [ 2.967335, 49.090652 ], [ 2.971429, 49.088972 ], [ 2.974159, 49.0778 ], [ 2.974612, 49.074838 ], [ 2.983235, 49.07188 ], [ 2.988135, 49.072376 ], [ 2.989885, 49.08157 ], [ 2.999206, 49.088534 ], [ 3.003956, 49.088741 ], [ 3.012773, 49.09062 ], [ 3.0305, 49.08689 ], [ 3.034416, 49.08861 ], [ 3.061684, 49.08647 ], [ 3.066076, 49.08522 ], [ 3.064684, 49.08817 ], [ 3.056752, 49.09578 ], [ 3.056321, 49.101918 ], [ 3.069347, 49.11485 ], [ 3.071884, 49.117554 ], [ 3.079808, 49.1129 ], [ 3.115282, 49.10688 ], [ 3.121614, 49.10908 ], [ 3.124129, 49.107235 ], [ 3.138602, 49.1064 ], [ 3.145738, 49.10177 ], [ 3.160231, 49.09929 ], [ 3.16523, 49.09966 ], [ 3.155087, 49.082428 ], [ 3.158681, 49.08041 ], [ 3.167882, 49.0769 ], [ 3.180064, 49.065489 ], [ 3.181708, 49.06217 ], [ 3.180866, 49.05615 ], [ 3.190667, 49.049972 ], [ 3.190614, 49.046717 ], [ 3.181112, 49.04428 ], [ 3.176541, 49.03141 ], [ 3.163424, 49.02626 ], [ 3.163008, 49.019944 ], [ 3.171569, 49.012496 ], [ 3.198993, 49.00579 ], [ 3.208947, 48.99671 ], [ 3.209318, 48.993786 ], [ 3.223297, 48.990452 ], [ 3.224841, 48.987329 ], [ 3.229177, 48.98842 ], [ 3.231216, 48.976751 ], [ 3.245993, 48.976065 ], [ 3.254925, 48.96463 ], [ 3.255523, 48.96132 ], [ 3.259065, 48.95126 ], [ 3.262904, 48.948935 ], [ 3.261229, 48.9471 ], [ 3.259827, 48.945174 ], [ 3.265161, 48.939065 ], [ 3.26948, 48.937455 ], [ 3.283772, 48.94016 ], [ 3.300969, 48.94665 ], [ 3.30475, 48.94877 ], [ 3.31222, 48.935418 ], [ 3.312797, 48.92478 ], [ 3.313076, 48.921216 ], [ 3.317005, 48.91885 ], [ 3.330199, 48.90796 ], [ 3.361726, 48.91956 ], [ 3.367427, 48.9288 ], [ 3.37561, 48.90922 ], [ 3.369828, 48.89614 ], [ 3.382479, 48.885942 ], [ 3.38328, 48.87249 ], [ 3.387958, 48.87097 ], [ 3.400635, 48.876027 ], [ 3.405856, 48.87588 ], [ 3.401029, 48.86872 ], [ 3.398898, 48.86642 ], [ 3.408514, 48.86371 ], [ 3.423063, 48.86757 ], [ 3.433142, 48.86001 ], [ 3.448478, 48.85872 ], [ 3.452232, 48.8563 ], [ 3.44578, 48.8461 ], [ 3.445361, 48.843232 ], [ 3.459253, 48.841066 ], [ 3.461955, 48.83847 ], [ 3.470198, 48.850547 ], [ 3.480156, 48.8516 ], [ 3.485187, 48.85191 ], [ 3.486806, 48.848601 ], [ 3.491285, 48.83514 ], [ 3.485241, 48.825503 ], [ 3.487202, 48.81519 ], [ 3.483786, 48.81395 ], [ 3.480923, 48.81219 ], [ 3.477905, 48.81417 ], [ 3.474847, 48.81937 ], [ 3.470215, 48.820698 ], [ 3.449507, 48.812081 ], [ 3.434609, 48.812028 ], [ 3.420847, 48.816025 ], [ 3.416612, 48.81783 ], [ 3.407443, 48.80695 ], [ 3.421146, 48.80249 ], [ 3.440934, 48.80152 ], [ 3.442604, 48.78814 ], [ 3.442195, 48.78485 ], [ 3.428538, 48.78082 ], [ 3.414979, 48.78374 ], [ 3.409984, 48.78372 ], [ 3.397144, 48.76144 ], [ 3.399831, 48.755326 ], [ 3.40936, 48.75278 ], [ 3.432915, 48.75555 ], [ 3.436595, 48.75318 ], [ 3.437315, 48.749861 ], [ 3.43681, 48.74321 ], [ 3.442735, 48.73781 ], [ 3.467396, 48.73863 ], [ 3.467051, 48.732092 ], [ 3.46675, 48.72877 ], [ 3.466954, 48.72581 ], [ 3.467159, 48.72285 ], [ 3.464601, 48.707277 ], [ 3.47762, 48.69833 ], [ 3.472543, 48.69737 ], [ 3.470957, 48.68723 ], [ 3.456628, 48.68287 ], [ 3.442698, 48.67251 ], [ 3.446181, 48.666898 ], [ 3.442561, 48.66436 ], [ 3.458809, 48.65128 ], [ 3.451091, 48.63465 ], [ 3.476594, 48.637961 ], [ 3.492289, 48.64724 ], [ 3.512619, 48.643982 ], [ 3.528071, 48.645758 ], [ 3.533236, 48.64651 ], [ 3.522656, 48.63909 ], [ 3.521163, 48.6337 ], [ 3.540941, 48.63019 ], [ 3.555754, 48.62069 ], [ 3.556545, 48.61731 ], [ 3.508636, 48.605598 ], [ 3.505274, 48.602986 ], [ 3.515219, 48.590989 ], [ 3.496646, 48.58992 ], [ 3.485304, 48.580464 ], [ 3.480668, 48.579133 ], [ 3.469023, 48.573054 ], [ 3.465516, 48.57049 ], [ 3.483775, 48.54706 ], [ 3.480919, 48.541431 ], [ 3.47562, 48.54128 ], [ 3.450707, 48.52867 ], [ 3.445941, 48.52879 ], [ 3.41464, 48.53379 ], [ 3.408474, 48.529945 ], [ 3.405398, 48.52802 ], [ 3.422267, 48.51541 ], [ 3.434924, 48.49705 ], [ 3.433434, 48.490391 ], [ 3.424335, 48.49154 ], [ 3.407523, 48.487793 ], [ 3.403747, 48.48599 ], [ 3.387681, 48.48016 ], [ 3.384094, 48.47803 ], [ 3.39732, 48.468171 ], [ 3.39689, 48.461488 ], [ 3.405714, 48.45329 ], [ 3.400909, 48.43688 ], [ 3.39673, 48.43489 ], [ 3.392493, 48.425157 ], [ 3.407194, 48.422678 ], [ 3.411833, 48.42132 ], [ 3.411362, 48.41804 ], [ 3.402286, 48.415408 ], [ 3.416642, 48.415835 ], [ 3.421938, 48.412236 ], [ 3.420872, 48.40902 ], [ 3.414792, 48.390273 ], [ 3.409931, 48.39054 ], [ 3.400207, 48.390881 ], [ 3.385095, 48.398713 ], [ 3.375408, 48.39869 ], [ 3.374142, 48.39549 ], [ 3.366319, 48.391485 ], [ 3.361191, 48.37257 ], [ 3.356091, 48.37516 ], [ 3.356559, 48.378452 ], [ 3.351685, 48.378619 ], [ 3.346315, 48.373246 ], [ 3.336538, 48.37318 ], [ 3.330117, 48.372123 ], [ 3.325478, 48.37309 ], [ 3.311856, 48.376023 ], [ 3.31069, 48.37291 ], [ 3.306018, 48.37289 ], [ 3.283175, 48.381385 ], [ 3.281618, 48.37816 ], [ 3.272179, 48.378325 ], [ 3.267473, 48.37713 ], [ 3.259611, 48.36859 ], [ 3.251021, 48.365101 ], [ 3.246859, 48.36729 ], [ 3.226483, 48.37024 ], [ 3.222216, 48.370008 ], [ 3.214496, 48.36759 ], [ 3.211304, 48.366267 ], [ 3.20445, 48.3642 ], [ 3.199658, 48.364461 ], [ 3.193763, 48.369392 ], [ 3.184941, 48.368129 ], [ 3.183373, 48.37146 ], [ 3.171808, 48.37768 ], [ 3.170015, 48.3747 ], [ 3.14485, 48.367303 ], [ 3.139869, 48.372599 ], [ 3.135759, 48.37088 ], [ 3.122467, 48.36863 ], [ 3.118385, 48.36668 ], [ 3.103418, 48.349514 ], [ 3.099602, 48.3516 ], [ 3.101066, 48.354788 ], [ 3.080611, 48.36083 ], [ 3.066702, 48.35772 ], [ 3.062057, 48.357442 ], [ 3.049451, 48.36003 ], [ 3.046276, 48.35731 ], [ 3.036773, 48.33779 ], [ 3.04226, 48.33219 ], [ 3.040571, 48.328931 ], [ 3.015685, 48.307317 ], [ 3.0171, 48.304537 ], [ 3.027469, 48.300639 ], [ 3.020051, 48.29638 ], [ 3.026761, 48.28802 ], [ 3.029739, 48.285424 ], [ 3.026961, 48.28246 ], [ 3.02476, 48.275645 ], [ 3.029261, 48.274204 ], [ 3.043708, 48.27184 ], [ 3.04757, 48.2497 ], [ 3.032696, 48.24874 ], [ 3.012819, 48.2221 ], [ 3.00599, 48.20942 ], [ 2.997119, 48.20635 ], [ 2.988961, 48.20902 ], [ 2.984587, 48.207453 ], [ 2.971666, 48.203411 ], [ 2.970958, 48.194188 ], [ 2.955416, 48.19252 ], [ 2.951461, 48.19049 ], [ 2.934749, 48.17882 ], [ 2.934241, 48.175727 ], [ 2.936314, 48.163392 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "79", "CODE_DEPT": "78", "NOM_DEPT": "YVELINES", "CODE_CHF": "646", "NOM_CHF": "VERSAILLES", "X_CHF_LIEU": "6364", "Y_CHF_LIEU": "68564", "X_CENTROID": "6149", "Y_CENTROID": "68578", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.922149, 48.4576 ], [ 1.919886, 48.447935 ], [ 1.91015, 48.44593 ], [ 1.90452, 48.440263 ], [ 1.884121, 48.44001 ], [ 1.879442, 48.44067 ], [ 1.874392, 48.44029 ], [ 1.861091, 48.44446 ], [ 1.857023, 48.446212 ], [ 1.847344, 48.446632 ], [ 1.839126, 48.458032 ], [ 1.837137, 48.46114 ], [ 1.833171, 48.46734 ], [ 1.808028, 48.46576 ], [ 1.803139, 48.46658 ], [ 1.793066, 48.48163 ], [ 1.796336, 48.484192 ], [ 1.793193, 48.4867 ], [ 1.78664, 48.49147 ], [ 1.789428, 48.49444 ], [ 1.776842, 48.51287 ], [ 1.776301, 48.52681 ], [ 1.787245, 48.553745 ], [ 1.782719, 48.553168 ], [ 1.778178, 48.55263 ], [ 1.776034, 48.55565 ], [ 1.764943, 48.56221 ], [ 1.761507, 48.57166 ], [ 1.748456, 48.57603 ], [ 1.744584, 48.574102 ], [ 1.726923, 48.572844 ], [ 1.709253, 48.57802 ], [ 1.706156, 48.58317 ], [ 1.701989, 48.585 ], [ 1.704474, 48.58816 ], [ 1.717849, 48.60739 ], [ 1.717432, 48.610572 ], [ 1.709778, 48.613386 ], [ 1.691234, 48.613301 ], [ 1.687762, 48.611094 ], [ 1.685197, 48.61328 ], [ 1.690247, 48.616951 ], [ 1.681592, 48.61905 ], [ 1.666354, 48.61371 ], [ 1.663558, 48.61641 ], [ 1.657429, 48.62156 ], [ 1.656909, 48.62809 ], [ 1.649567, 48.632276 ], [ 1.651575, 48.638129 ], [ 1.647055, 48.63968 ], [ 1.640838, 48.644889 ], [ 1.643197, 48.651294 ], [ 1.622748, 48.65032 ], [ 1.607566, 48.659618 ], [ 1.602707, 48.6631 ], [ 1.601707, 48.66644 ], [ 1.606204, 48.67912 ], [ 1.608626, 48.682058 ], [ 1.611295, 48.68846 ], [ 1.606656, 48.6892 ], [ 1.582189, 48.696059 ], [ 1.584038, 48.69902 ], [ 1.580727, 48.701349 ], [ 1.594878, 48.709316 ], [ 1.590011, 48.712875 ], [ 1.61504, 48.735306 ], [ 1.620258, 48.736006 ], [ 1.622705, 48.740154 ], [ 1.62496, 48.749031 ], [ 1.605226, 48.76059 ], [ 1.584907, 48.763298 ], [ 1.582928, 48.76756 ], [ 1.587594, 48.773611 ], [ 1.576732, 48.785167 ], [ 1.579434, 48.8089 ], [ 1.582798, 48.81092 ], [ 1.590483, 48.81733 ], [ 1.581793, 48.82982 ], [ 1.594496, 48.835696 ], [ 1.594894, 48.83914 ], [ 1.586621, 48.8432 ], [ 1.58207, 48.84421 ], [ 1.577269, 48.844361 ], [ 1.577939, 48.84776 ], [ 1.582962, 48.8575 ], [ 1.572072, 48.86392 ], [ 1.568638, 48.865845 ], [ 1.559904, 48.86712 ], [ 1.558839, 48.86425 ], [ 1.554899, 48.86573 ], [ 1.546231, 48.87244 ], [ 1.561309, 48.88784 ], [ 1.563742, 48.890629 ], [ 1.558716, 48.891369 ], [ 1.538521, 48.90668 ], [ 1.544341, 48.91079 ], [ 1.541664, 48.915754 ], [ 1.540523, 48.918483 ], [ 1.538249, 48.921693 ], [ 1.522955, 48.924887 ], [ 1.513925, 48.92181 ], [ 1.508132, 48.92724 ], [ 1.511543, 48.933506 ], [ 1.501797, 48.941057 ], [ 1.501524, 48.941054 ], [ 1.508641, 48.95044 ], [ 1.510996, 48.953574 ], [ 1.501028, 48.9535 ], [ 1.495147, 48.96608 ], [ 1.514626, 48.976113 ], [ 1.518388, 48.978363 ], [ 1.513493, 48.9785 ], [ 1.507903, 48.983773 ], [ 1.493875, 48.979353 ], [ 1.47826, 48.97925 ], [ 1.470889, 48.97482 ], [ 1.468862, 48.97777 ], [ 1.461702, 48.98886 ], [ 1.470984, 48.99111 ], [ 1.48017, 49.00224 ], [ 1.480401, 49.005562 ], [ 1.478136, 49.00823 ], [ 1.474046, 49.00969 ], [ 1.477096, 49.014801 ], [ 1.471842, 49.01863 ], [ 1.468018, 49.02031 ], [ 1.457762, 49.0263 ], [ 1.457511, 49.029696 ], [ 1.456846, 49.03643 ], [ 1.448209, 49.04485 ], [ 1.451258, 49.05133 ], [ 1.44728, 49.05351 ], [ 1.461614, 49.06337 ], [ 1.47664, 49.05363 ], [ 1.486848, 49.05176 ], [ 1.498032, 49.05866 ], [ 1.503301, 49.0591 ], [ 1.51315, 49.077873 ], [ 1.510269, 49.084285 ], [ 1.516637, 49.07992 ], [ 1.519955, 49.071113 ], [ 1.520998, 49.068132 ], [ 1.541304, 49.07318 ], [ 1.546672, 49.072591 ], [ 1.560832, 49.0704 ], [ 1.569242, 49.07413 ], [ 1.572262, 49.07681 ], [ 1.589843, 49.081684 ], [ 1.594359, 49.08275 ], [ 1.599088, 49.084067 ], [ 1.605928, 49.080694 ], [ 1.608796, 49.07789 ], [ 1.612163, 49.0733 ], [ 1.614301, 49.07118 ], [ 1.620154, 49.073924 ], [ 1.641721, 49.08092 ], [ 1.646598, 49.08132 ], [ 1.670822, 49.078911 ], [ 1.683574, 49.0738 ], [ 1.687592, 49.071847 ], [ 1.691372, 49.07013 ], [ 1.696857, 49.06536 ], [ 1.693668, 49.05668 ], [ 1.719925, 49.0473 ], [ 1.723457, 49.04498 ], [ 1.729224, 49.04859 ], [ 1.732066, 49.05042 ], [ 1.735638, 49.04868 ], [ 1.745981, 49.04812 ], [ 1.751177, 49.04823 ], [ 1.755356, 49.061067 ], [ 1.759422, 49.06328 ], [ 1.770733, 49.05778 ], [ 1.784687, 49.05735 ], [ 1.789382, 49.057862 ], [ 1.7943, 49.058199 ], [ 1.797862, 49.06922 ], [ 1.796547, 49.072232 ], [ 1.811698, 49.07405 ], [ 1.815394, 49.07641 ], [ 1.823601, 49.07667 ], [ 1.836704, 49.07162 ], [ 1.840643, 49.069339 ], [ 1.841442, 49.064787 ], [ 1.861522, 49.05901 ], [ 1.865469, 49.057472 ], [ 1.863854, 49.05437 ], [ 1.851334, 49.03336 ], [ 1.859318, 49.02977 ], [ 1.862414, 49.020159 ], [ 1.859255, 49.013969 ], [ 1.861713, 49.01412 ], [ 1.877382, 49.0191 ], [ 1.881898, 49.01954 ], [ 1.881715, 49.026141 ], [ 1.883463, 49.03262 ], [ 1.908523, 49.048024 ], [ 1.911215, 49.046843 ], [ 1.914082, 49.04583 ], [ 1.912474, 49.041612 ], [ 1.935202, 49.02456 ], [ 1.937802, 49.02178 ], [ 1.945651, 49.025137 ], [ 1.954948, 49.024535 ], [ 1.957081, 49.021801 ], [ 1.967144, 49.023201 ], [ 1.976186, 49.01957 ], [ 1.986761, 49.01998 ], [ 1.991882, 49.02101 ], [ 2.001651, 49.01281 ], [ 2.004889, 49.010076 ], [ 2.007631, 49.00824 ], [ 2.010479, 49.00584 ], [ 2.023614, 48.997901 ], [ 2.026445, 49.000703 ], [ 2.046502, 49.00185 ], [ 2.064429, 49.008208 ], [ 2.067402, 49.00632 ], [ 2.071694, 49.001709 ], [ 2.083654, 49.01178 ], [ 2.086064, 49.01465 ], [ 2.105785, 49.00948 ], [ 2.121257, 49.01849 ], [ 2.126795, 49.008687 ], [ 2.122018, 48.99852 ], [ 2.127453, 48.989052 ], [ 2.1619, 48.983165 ], [ 2.166354, 48.981478 ], [ 2.17802, 48.96685 ], [ 2.178155, 48.96351 ], [ 2.178105, 48.95977 ], [ 2.175501, 48.95519 ], [ 2.173141, 48.9533 ], [ 2.201086, 48.950186 ], [ 2.205858, 48.94974 ], [ 2.20663, 48.94119 ], [ 2.201901, 48.93713 ], [ 2.198927, 48.935252 ], [ 2.202626, 48.920996 ], [ 2.199191, 48.91897 ], [ 2.201798, 48.91362 ], [ 2.198638, 48.91148 ], [ 2.200616, 48.9088 ], [ 2.196361, 48.906951 ], [ 2.174289, 48.899067 ], [ 2.169241, 48.89574 ], [ 2.166658, 48.892656 ], [ 2.157976, 48.88047 ], [ 2.155696, 48.87725 ], [ 2.150383, 48.87111 ], [ 2.153155, 48.86915 ], [ 2.153669, 48.864415 ], [ 2.150549, 48.85846 ], [ 2.157847, 48.85049 ], [ 2.159584, 48.847557 ], [ 2.149748, 48.84657 ], [ 2.145874, 48.84017 ], [ 2.145876, 48.8367 ], [ 2.147655, 48.83121 ], [ 2.148626, 48.82848 ], [ 2.150808, 48.822474 ], [ 2.150436, 48.819396 ], [ 2.15043, 48.81895 ], [ 2.157309, 48.81465 ], [ 2.161221, 48.81272 ], [ 2.172757, 48.81522 ], [ 2.17674, 48.81399 ], [ 2.185087, 48.800075 ], [ 2.183049, 48.79724 ], [ 2.202513, 48.79834 ], [ 2.205307, 48.79546 ], [ 2.209114, 48.7868 ], [ 2.223876, 48.78449 ], [ 2.22637, 48.78151 ], [ 2.228836, 48.77489 ], [ 2.227483, 48.77163 ], [ 2.207269, 48.770318 ], [ 2.200844, 48.77488 ], [ 2.190663, 48.775037 ], [ 2.186958, 48.77264 ], [ 2.191919, 48.76686 ], [ 2.189379, 48.75345 ], [ 2.184595, 48.754929 ], [ 2.17545, 48.75773 ], [ 2.161902, 48.752595 ], [ 2.151397, 48.752818 ], [ 2.138971, 48.7466 ], [ 2.138893, 48.74312 ], [ 2.13498, 48.73714 ], [ 2.130229, 48.737438 ], [ 2.122662, 48.74107 ], [ 2.104654, 48.73798 ], [ 2.10057, 48.73586 ], [ 2.110657, 48.724053 ], [ 2.107738, 48.71747 ], [ 2.110333, 48.714381 ], [ 2.107798, 48.711565 ], [ 2.097183, 48.70052 ], [ 2.097853, 48.69403 ], [ 2.093351, 48.69581 ], [ 2.089331, 48.698041 ], [ 2.082079, 48.68545 ], [ 2.077905, 48.686394 ], [ 2.069888, 48.68879 ], [ 2.066512, 48.6869 ], [ 2.062865, 48.6872 ], [ 2.055659, 48.686787 ], [ 2.050596, 48.68729 ], [ 2.042245, 48.68035 ], [ 2.037155, 48.68013 ], [ 2.033591, 48.6775 ], [ 2.028902, 48.663742 ], [ 2.028553, 48.660618 ], [ 2.022358, 48.65785 ], [ 2.013269, 48.659574 ], [ 2.011658, 48.65358 ], [ 2.01669, 48.64444 ], [ 2.020277, 48.64209 ], [ 2.034908, 48.641464 ], [ 2.036063, 48.631803 ], [ 2.04148, 48.62654 ], [ 2.042083, 48.62618 ], [ 2.045683, 48.62372 ], [ 2.057726, 48.617295 ], [ 2.054815, 48.60796 ], [ 2.04969, 48.60783 ], [ 2.035013, 48.604852 ], [ 2.033047, 48.5982 ], [ 2.032411, 48.59517 ], [ 2.036348, 48.5898 ], [ 2.032866, 48.587446 ], [ 2.016821, 48.567424 ], [ 2.017574, 48.557597 ], [ 2.012795, 48.556595 ], [ 1.98299, 48.55683 ], [ 1.979664, 48.554336 ], [ 1.962685, 48.560487 ], [ 1.957646, 48.55964 ], [ 1.937604, 48.562218 ], [ 1.934125, 48.54865 ], [ 1.962171, 48.53509 ], [ 1.976168, 48.534236 ], [ 1.977246, 48.52759 ], [ 1.967476, 48.52574 ], [ 1.964238, 48.52785 ], [ 1.953016, 48.523454 ], [ 1.951471, 48.520112 ], [ 1.934279, 48.495776 ], [ 1.933108, 48.481424 ], [ 1.928094, 48.48046 ], [ 1.919729, 48.4766 ], [ 1.916248, 48.47023 ], [ 1.916634, 48.4633 ], [ 1.922149, 48.4576 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "80", "CODE_DEPT": "79", "NOM_DEPT": "DEUX-SEVRES", "CODE_CHF": "191", "NOM_CHF": "NIORT", "X_CHF_LIEU": "4337", "Y_CHF_LIEU": "65864", "X_CENTROID": "4459", "Y_CENTROID": "66115", "CODE_REG": "54", "NOM_REGION": "POITOU-CHARENTES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.102937, 45.96966 ], [ -0.107459, 45.97055 ], [ -0.117338, 45.97749 ], [ -0.135611, 45.978538 ], [ -0.132598, 45.987606 ], [ -0.136825, 45.98918 ], [ -0.144795, 46.00467 ], [ -0.158512, 46.00504 ], [ -0.158305, 46.0082 ], [ -0.164194, 46.012763 ], [ -0.162963, 46.01902 ], [ -0.16345, 46.02232 ], [ -0.168185, 46.026801 ], [ -0.164509, 46.03576 ], [ -0.189132, 46.02614 ], [ -0.189839, 46.02964 ], [ -0.190974, 46.04361 ], [ -0.193898, 46.05117 ], [ -0.210661, 46.045432 ], [ -0.229108, 46.04792 ], [ -0.233049, 46.048464 ], [ -0.2686, 46.056439 ], [ -0.273131, 46.05731 ], [ -0.274533, 46.067579 ], [ -0.288816, 46.085118 ], [ -0.293282, 46.086593 ], [ -0.296411, 46.0839 ], [ -0.308001, 46.078279 ], [ -0.327183, 46.0813 ], [ -0.331541, 46.08246 ], [ -0.362733, 46.075551 ], [ -0.364418, 46.07853 ], [ -0.361875, 46.084166 ], [ -0.37348, 46.09406 ], [ -0.38644, 46.096874 ], [ -0.401451, 46.084248 ], [ -0.405371, 46.086257 ], [ -0.421421, 46.09334 ], [ -0.421226, 46.1133 ], [ -0.425235, 46.1117 ], [ -0.439449, 46.1036 ], [ -0.441444, 46.094705 ], [ -0.443727, 46.097637 ], [ -0.450867, 46.101981 ], [ -0.473602, 46.104757 ], [ -0.491715, 46.10798 ], [ -0.505467, 46.10719 ], [ -0.511963, 46.11131 ], [ -0.516389, 46.112417 ], [ -0.509761, 46.116795 ], [ -0.518414, 46.124198 ], [ -0.514345, 46.12583 ], [ -0.511059, 46.12817 ], [ -0.520492, 46.1283 ], [ -0.526724, 46.132269 ], [ -0.526793, 46.135557 ], [ -0.531324, 46.13667 ], [ -0.533284, 46.139718 ], [ -0.538043, 46.14072 ], [ -0.546856, 46.143864 ], [ -0.566285, 46.143301 ], [ -0.57933, 46.14826 ], [ -0.582225, 46.142537 ], [ -0.583081, 46.13956 ], [ -0.602388, 46.14251 ], [ -0.615966, 46.13838 ], [ -0.628183, 46.143701 ], [ -0.626849, 46.15216 ], [ -0.603764, 46.15516 ], [ -0.604641, 46.158432 ], [ -0.613016, 46.16152 ], [ -0.622797, 46.16092 ], [ -0.634622, 46.16572 ], [ -0.643554, 46.16502 ], [ -0.651379, 46.16837 ], [ -0.65539, 46.169953 ], [ -0.664928, 46.18181 ], [ -0.688524, 46.18223 ], [ -0.696475, 46.192738 ], [ -0.695072, 46.195992 ], [ -0.682412, 46.19769 ], [ -0.686375, 46.20719 ], [ -0.686332, 46.213702 ], [ -0.69905, 46.22262 ], [ -0.702818, 46.22456 ], [ -0.74701, 46.24324 ], [ -0.751462, 46.24507 ], [ -0.754364, 46.251582 ], [ -0.736065, 46.267727 ], [ -0.742668, 46.27666 ], [ -0.745248, 46.27959 ], [ -0.754669, 46.302444 ], [ -0.750476, 46.304259 ], [ -0.726249, 46.303206 ], [ -0.718202, 46.30519 ], [ -0.719803, 46.314577 ], [ -0.716357, 46.31689 ], [ -0.707104, 46.318002 ], [ -0.70053, 46.322759 ], [ -0.697338, 46.325189 ], [ -0.676169, 46.31806 ], [ -0.672273, 46.316219 ], [ -0.655579, 46.3158 ], [ -0.652074, 46.317473 ], [ -0.647445, 46.3177 ], [ -0.643541, 46.31945 ], [ -0.636797, 46.324659 ], [ -0.637249, 46.334578 ], [ -0.619408, 46.33971 ], [ -0.608049, 46.34665 ], [ -0.602849, 46.359586 ], [ -0.578438, 46.356019 ], [ -0.559595, 46.36094 ], [ -0.557285, 46.364046 ], [ -0.540585, 46.38381 ], [ -0.5378, 46.38646 ], [ -0.541296, 46.38894 ], [ -0.54963, 46.3927 ], [ -0.569019, 46.39457 ], [ -0.572378, 46.40071 ], [ -0.581989, 46.40223 ], [ -0.601255, 46.41263 ], [ -0.611005, 46.413052 ], [ -0.619035, 46.39361 ], [ -0.620883, 46.39046 ], [ -0.637872, 46.3975 ], [ -0.632655, 46.403305 ], [ -0.640021, 46.415862 ], [ -0.634986, 46.429111 ], [ -0.636841, 46.43231 ], [ -0.620234, 46.439216 ], [ -0.61809, 46.448956 ], [ -0.610978, 46.45144 ], [ -0.608213, 46.454208 ], [ -0.616219, 46.46283 ], [ -0.617997, 46.47311 ], [ -0.628563, 46.479938 ], [ -0.625533, 46.49676 ], [ -0.632839, 46.501418 ], [ -0.634351, 46.504714 ], [ -0.64436, 46.51089 ], [ -0.638679, 46.519278 ], [ -0.642232, 46.52476 ], [ -0.628198, 46.528166 ], [ -0.608657, 46.52813 ], [ -0.602129, 46.53328 ], [ -0.602901, 46.53962 ], [ -0.603098, 46.542805 ], [ -0.608309, 46.56249 ], [ -0.6132, 46.562352 ], [ -0.617953, 46.5615 ], [ -0.622828, 46.57428 ], [ -0.624699, 46.57745 ], [ -0.613427, 46.58761 ], [ -0.618935, 46.592971 ], [ -0.616699, 46.59887 ], [ -0.627151, 46.6056 ], [ -0.617714, 46.61846 ], [ -0.613965, 46.620125 ], [ -0.633062, 46.636331 ], [ -0.643094, 46.637815 ], [ -0.657073, 46.633954 ], [ -0.658671, 46.640402 ], [ -0.650795, 46.644141 ], [ -0.647809, 46.656784 ], [ -0.640573, 46.661124 ], [ -0.636989, 46.663329 ], [ -0.654026, 46.67448 ], [ -0.657737, 46.67669 ], [ -0.678752, 46.686685 ], [ -0.660358, 46.69867 ], [ -0.655832, 46.700335 ], [ -0.673111, 46.720822 ], [ -0.684401, 46.72765 ], [ -0.688669, 46.725848 ], [ -0.698074, 46.735938 ], [ -0.695491, 46.74537 ], [ -0.698238, 46.751617 ], [ -0.707732, 46.74968 ], [ -0.716599, 46.752971 ], [ -0.719752, 46.75573 ], [ -0.726564, 46.76876 ], [ -0.725162, 46.78292 ], [ -0.720612, 46.78928 ], [ -0.718528, 46.79888 ], [ -0.703625, 46.80746 ], [ -0.6991, 46.808855 ], [ -0.701034, 46.8116 ], [ -0.71004, 46.82157 ], [ -0.714991, 46.82157 ], [ -0.729631, 46.821551 ], [ -0.738594, 46.82889 ], [ -0.757951, 46.83132 ], [ -0.761555, 46.833852 ], [ -0.773173, 46.840358 ], [ -0.777826, 46.84097 ], [ -0.786763, 46.851918 ], [ -0.788296, 46.854301 ], [ -0.793735, 46.857854 ], [ -0.795076, 46.86104 ], [ -0.819018, 46.881121 ], [ -0.83246, 46.88474 ], [ -0.818284, 46.902572 ], [ -0.820341, 46.908976 ], [ -0.813814, 46.91398 ], [ -0.809903, 46.91971 ], [ -0.824358, 46.921706 ], [ -0.830606, 46.93114 ], [ -0.85264, 46.93825 ], [ -0.851841, 46.9442 ], [ -0.876134, 46.945243 ], [ -0.881, 46.94647 ], [ -0.882299, 46.94988 ], [ -0.865305, 46.95284 ], [ -0.868023, 46.959361 ], [ -0.87779, 46.959141 ], [ -0.883243, 46.96852 ], [ -0.898223, 46.96807 ], [ -0.902217, 46.970315 ], [ -0.896251, 46.97468 ], [ -0.891961, 46.975827 ], [ -0.882077, 46.976295 ], [ -0.858915, 46.97047 ], [ -0.854241, 46.971586 ], [ -0.855169, 46.977938 ], [ -0.84772, 46.98615 ], [ -0.834302, 46.987512 ], [ -0.821638, 46.992845 ], [ -0.816647, 46.99306 ], [ -0.809678, 46.98819 ], [ -0.805024, 46.98945 ], [ -0.808398, 46.991895 ], [ -0.789958, 47.00245 ], [ -0.78685, 47.005107 ], [ -0.772827, 47.00336 ], [ -0.761383, 46.99305 ], [ -0.751304, 46.99227 ], [ -0.7338, 46.99708 ], [ -0.714462, 46.98599 ], [ -0.702174, 46.992164 ], [ -0.698466, 46.99456 ], [ -0.689724, 46.992716 ], [ -0.684779, 46.987998 ], [ -0.680185, 46.987658 ], [ -0.680368, 46.99324 ], [ -0.673301, 47.001866 ], [ -0.646938, 46.99426 ], [ -0.632918, 46.99693 ], [ -0.625115, 46.99334 ], [ -0.620177, 46.99336 ], [ -0.600671, 46.997541 ], [ -0.595492, 46.99791 ], [ -0.59574, 47.000642 ], [ -0.587252, 47.00613 ], [ -0.580099, 47.014899 ], [ -0.566774, 47.019836 ], [ -0.561548, 47.029506 ], [ -0.547013, 47.02875 ], [ -0.543463, 47.03511 ], [ -0.556072, 47.045618 ], [ -0.556127, 47.05925 ], [ -0.559717, 47.061701 ], [ -0.519492, 47.076037 ], [ -0.51513, 47.077937 ], [ -0.491782, 47.08285 ], [ -0.467753, 47.08341 ], [ -0.463353, 47.08187 ], [ -0.464423, 47.07614 ], [ -0.483854, 47.066538 ], [ -0.480383, 47.053638 ], [ -0.460572, 47.06835 ], [ -0.445454, 47.067681 ], [ -0.426487, 47.07224 ], [ -0.408634, 47.066493 ], [ -0.40078, 47.07077 ], [ -0.391846, 47.09188 ], [ -0.387062, 47.09239 ], [ -0.381939, 47.088554 ], [ -0.363689, 47.09253 ], [ -0.359108, 47.093536 ], [ -0.354651, 47.09465 ], [ -0.342066, 47.090237 ], [ -0.340141, 47.08727 ], [ -0.317233, 47.09127 ], [ -0.312636, 47.09205 ], [ -0.29251, 47.10061 ], [ -0.266009, 47.10295 ], [ -0.262876, 47.10548 ], [ -0.258181, 47.10028 ], [ -0.24043, 47.10508 ], [ -0.209135, 47.09591 ], [ -0.206269, 47.093193 ], [ -0.190185, 47.099648 ], [ -0.186682, 47.10534 ], [ -0.18524, 47.10842 ], [ -0.15615, 47.101591 ], [ -0.146212, 47.1027 ], [ -0.141253, 47.10365 ], [ -0.140891, 47.09676 ], [ -0.166736, 47.08099 ], [ -0.178554, 47.069792 ], [ -0.174754, 47.06752 ], [ -0.17037, 47.066071 ], [ -0.165984, 47.064596 ], [ -0.158811, 47.068883 ], [ -0.149809, 47.06965 ], [ -0.138001, 47.064342 ], [ -0.133284, 47.055549 ], [ -0.128896, 47.054236 ], [ -0.10698, 47.06354 ], [ -0.102121, 47.064806 ], [ -0.092179, 47.04135 ], [ -0.091414, 47.03789 ], [ -0.09026, 47.0327 ], [ -0.088966, 47.02759 ], [ -0.088267, 47.025046 ], [ -0.081256, 47.01302 ], [ -0.082627, 47.01004 ], [ -0.093051, 47.0085 ], [ -0.092379, 47.005294 ], [ -0.084947, 46.98863 ], [ -0.086481, 46.9853 ], [ -0.06031, 46.99443 ], [ -0.055331, 46.99464 ], [ -0.038714, 46.98928 ], [ -0.033901, 46.983537 ], [ -0.033124, 46.980251 ], [ -0.043471, 46.96926 ], [ -0.046251, 46.966516 ], [ -0.04483, 46.95952 ], [ -0.033932, 46.951992 ], [ -0.031346, 46.945284 ], [ -0.030741, 46.941777 ], [ -0.022143, 46.93811 ], [ -0.015046, 46.925268 ], [ -0.01387, 46.92187 ], [ -0.010303, 46.91142 ], [ -0.009123, 46.90792 ], [ -0.023214, 46.894689 ], [ -0.02304, 46.888062 ], [ -0.031594, 46.87675 ], [ -0.035644, 46.87494 ], [ -0.032214, 46.87234 ], [ -0.022418, 46.874095 ], [ -0.008089, 46.870425 ], [ 0.001665, 46.86249 ], [ 0.010103, 46.8586 ], [ 0.023744, 46.85394 ], [ 0.033758, 46.854076 ], [ 0.019124, 46.837669 ], [ 0.016607, 46.83496 ], [ 0.014988, 46.83457 ], [ 0.002082, 46.845 ], [ -0.007806, 46.84665 ], [ -0.025776, 46.840614 ], [ -0.035501, 46.832564 ], [ -0.04569, 46.8321 ], [ -0.045392, 46.824 ], [ -0.049092, 46.82304 ], [ -0.045274, 46.82074 ], [ -0.017515, 46.814665 ], [ -0.006895, 46.82197 ], [ -0.004126, 46.819376 ], [ 0.006922, 46.81351 ], [ 0.00403, 46.80766 ], [ -0.00706, 46.80176 ], [ -0.009554, 46.798934 ], [ -0.022661, 46.78952 ], [ -0.017718, 46.778014 ], [ -0.021874, 46.77635 ], [ -0.015765, 46.75706 ], [ -0.012665, 46.754349 ], [ -0.001918, 46.761281 ], [ 0.028176, 46.738979 ], [ 0.033065, 46.738492 ], [ 0.038065, 46.731179 ], [ 0.03675, 46.728622 ], [ 0.031902, 46.72717 ], [ 0.022859, 46.72768 ], [ 0.0073, 46.71992 ], [ 0.003784, 46.717647 ], [ -0.000478, 46.71582 ], [ 0.002659, 46.705751 ], [ 0.000092, 46.699331 ], [ -0.018356, 46.694297 ], [ -0.009606, 46.68267 ], [ -0.028872, 46.67222 ], [ -0.031657, 46.669347 ], [ -0.032044, 46.669255 ], [ -0.037853, 46.663803 ], [ -0.034129, 46.654314 ], [ -0.064752, 46.63276 ], [ -0.065814, 46.622825 ], [ -0.060919, 46.62276 ], [ -0.028191, 46.628529 ], [ -0.017205, 46.639407 ], [ -0.0049, 46.644704 ], [ 0.000427, 46.6397 ], [ -0.010066, 46.61655 ], [ 0.003187, 46.611459 ], [ 0.022855, 46.61453 ], [ 0.021688, 46.61124 ], [ 0.025803, 46.605092 ], [ 0.023996, 46.59511 ], [ 0.042719, 46.59117 ], [ 0.038232, 46.58956 ], [ 0.030598, 46.58503 ], [ 0.020517, 46.584644 ], [ -0.003315, 46.571731 ], [ -0.01011, 46.555441 ], [ 0.007113, 46.54534 ], [ -0.004934, 46.52722 ], [ -0.006269, 46.52398 ], [ -0.031351, 46.52498 ], [ -0.03118, 46.5083 ], [ -0.038793, 46.49971 ], [ -0.039234, 46.493107 ], [ -0.032175, 46.488644 ], [ -0.042535, 46.48235 ], [ -0.04326, 46.472436 ], [ -0.040101, 46.47006 ], [ -0.013593, 46.47442 ], [ -0.012533, 46.471277 ], [ -0.010466, 46.468331 ], [ -0.017852, 46.456403 ], [ -0.019244, 46.45328 ], [ -0.010582, 46.44989 ], [ -0.012776, 46.425881 ], [ -0.020218, 46.40588 ], [ -0.012697, 46.40202 ], [ -0.007707, 46.39253 ], [ -0.007997, 46.38906 ], [ 0.000448, 46.392249 ], [ 0.014669, 46.39083 ], [ 0.02244, 46.3792 ], [ 0.029944, 46.37503 ], [ 0.03422, 46.373497 ], [ 0.016604, 46.35947 ], [ 0.013848, 46.35701 ], [ 0.031407, 46.34621 ], [ 0.02302, 46.342513 ], [ 0.017389, 46.329345 ], [ 0.015099, 46.326257 ], [ 0.029354, 46.32867 ], [ 0.047162, 46.3224 ], [ 0.078218, 46.304943 ], [ 0.096931, 46.32056 ], [ 0.095524, 46.327444 ], [ 0.101365, 46.33309 ], [ 0.117942, 46.34089 ], [ 0.123317, 46.346792 ], [ 0.137598, 46.349395 ], [ 0.156198, 46.34327 ], [ 0.175249, 46.331376 ], [ 0.177369, 46.32811 ], [ 0.16595, 46.31705 ], [ 0.169492, 46.31068 ], [ 0.165, 46.305514 ], [ 0.152946, 46.304051 ], [ 0.170331, 46.284156 ], [ 0.17232, 46.278601 ], [ 0.162055, 46.26755 ], [ 0.133602, 46.266793 ], [ 0.128837, 46.26723 ], [ 0.130082, 46.264055 ], [ 0.137458, 46.244985 ], [ 0.139473, 46.240215 ], [ 0.142697, 46.23045 ], [ 0.13588, 46.22573 ], [ 0.131318, 46.226836 ], [ 0.11804, 46.213182 ], [ 0.113432, 46.21221 ], [ 0.109509, 46.18913 ], [ 0.107702, 46.18599 ], [ 0.139626, 46.1796 ], [ 0.148112, 46.17257 ], [ 0.153841, 46.160416 ], [ 0.155111, 46.157168 ], [ 0.167667, 46.15608 ], [ 0.171881, 46.15583 ], [ 0.17692, 46.15012 ], [ 0.186802, 46.14931 ], [ 0.198304, 46.159936 ], [ 0.213326, 46.159044 ], [ 0.218932, 46.15537 ], [ 0.21631, 46.14213 ], [ 0.200552, 46.12986 ], [ 0.198477, 46.126835 ], [ 0.20303, 46.12573 ], [ 0.204103, 46.12274 ], [ 0.199993, 46.117439 ], [ 0.188854, 46.11131 ], [ 0.190716, 46.104793 ], [ 0.193879, 46.09689 ], [ 0.197168, 46.09537 ], [ 0.192706, 46.094741 ], [ 0.177537, 46.08321 ], [ 0.173683, 46.0821 ], [ 0.167523, 46.084555 ], [ 0.164726, 46.08731 ], [ 0.135816, 46.104051 ], [ 0.131845, 46.1022 ], [ 0.119132, 46.09761 ], [ 0.11478, 46.09637 ], [ 0.10568, 46.097988 ], [ 0.096715, 46.10537 ], [ 0.093014, 46.10335 ], [ 0.094764, 46.100376 ], [ 0.099559, 46.09151 ], [ 0.096913, 46.088888 ], [ 0.092904, 46.090011 ], [ 0.072972, 46.0939 ], [ 0.068935, 46.09212 ], [ 0.052655, 46.08029 ], [ 0.061213, 46.07258 ], [ 0.052554, 46.069866 ], [ 0.037802, 46.06854 ], [ 0.019144, 46.052844 ], [ 0.015952, 46.0549 ], [ 0.004892, 46.059525 ], [ 0.00147, 46.057235 ], [ -0.030922, 46.05594 ], [ -0.039502, 46.053107 ], [ -0.038172, 46.04988 ], [ -0.036759, 46.04329 ], [ -0.022684, 46.02995 ], [ -0.031191, 46.021862 ], [ -0.04552, 46.020621 ], [ -0.045363, 46.01406 ], [ -0.051674, 46.00192 ], [ -0.04216, 45.99615 ], [ -0.05034, 45.98906 ], [ -0.054852, 45.98789 ], [ -0.062011, 45.979723 ], [ -0.066728, 45.98087 ], [ -0.102937, 45.96966 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "81", "CODE_DEPT": "80", "NOM_DEPT": "SOMME", "CODE_CHF": "021", "NOM_CHF": "AMIENS", "X_CHF_LIEU": "6494", "Y_CHF_LIEU": "69772", "X_CENTROID": "6481", "Y_CENTROID": "69846", "CODE_REG": "22", "NOM_REGION": "PICARDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.118652, 49.70583 ], [ 3.113319, 49.70622 ], [ 3.097274, 49.70587 ], [ 3.092566, 49.69962 ], [ 3.090193, 49.696837 ], [ 3.0792, 49.69166 ], [ 3.08332, 49.71249 ], [ 3.07844, 49.71099 ], [ 3.052435, 49.71377 ], [ 3.053997, 49.71048 ], [ 3.057579, 49.70415 ], [ 3.055323, 49.69401 ], [ 3.050281, 49.693643 ], [ 3.040503, 49.694985 ], [ 3.033486, 49.68308 ], [ 3.028305, 49.68006 ], [ 3.023736, 49.68153 ], [ 3.013408, 49.69252 ], [ 3.008325, 49.69272 ], [ 3.005222, 49.69531 ], [ 3.004392, 49.70181 ], [ 2.992366, 49.70765 ], [ 2.989983, 49.705514 ], [ 2.982405, 49.70392 ], [ 2.977431, 49.70466 ], [ 2.969691, 49.69656 ], [ 2.950191, 49.69274 ], [ 2.948747, 49.68282 ], [ 2.956076, 49.678307 ], [ 2.953004, 49.6759 ], [ 2.95329, 49.66654 ], [ 2.946497, 49.67509 ], [ 2.938476, 49.678785 ], [ 2.934781, 49.67663 ], [ 2.913415, 49.70951 ], [ 2.909734, 49.70719 ], [ 2.906863, 49.701264 ], [ 2.892294, 49.69868 ], [ 2.889739, 49.701519 ], [ 2.883796, 49.713833 ], [ 2.881704, 49.71366 ], [ 2.88318, 49.71037 ], [ 2.866199, 49.70249 ], [ 2.869074, 49.69972 ], [ 2.886762, 49.68842 ], [ 2.888424, 49.68202 ], [ 2.888795, 49.67069 ], [ 2.884609, 49.672545 ], [ 2.875527, 49.683769 ], [ 2.860636, 49.684885 ], [ 2.856765, 49.68275 ], [ 2.860329, 49.68078 ], [ 2.847449, 49.67214 ], [ 2.845141, 49.67062 ], [ 2.846658, 49.66783 ], [ 2.850149, 49.66237 ], [ 2.84335, 49.65853 ], [ 2.839634, 49.66077 ], [ 2.800429, 49.661366 ], [ 2.799495, 49.65948 ], [ 2.802349, 49.658754 ], [ 2.797732, 49.65726 ], [ 2.790333, 49.642128 ], [ 2.796333, 49.62964 ], [ 2.797412, 49.62623 ], [ 2.798614, 49.61938 ], [ 2.794973, 49.616831 ], [ 2.7905, 49.61494 ], [ 2.775992, 49.614875 ], [ 2.771722, 49.614184 ], [ 2.759687, 49.617728 ], [ 2.757555, 49.62097 ], [ 2.752944, 49.622109 ], [ 2.744352, 49.6252 ], [ 2.72521, 49.62473 ], [ 2.720402, 49.62106 ], [ 2.717068, 49.62366 ], [ 2.698296, 49.62625 ], [ 2.693622, 49.62586 ], [ 2.688934, 49.625655 ], [ 2.68783, 49.62304 ], [ 2.687363, 49.61783 ], [ 2.687078, 49.61467 ], [ 2.673979, 49.60195 ], [ 2.674102, 49.60002 ], [ 2.669194, 49.59991 ], [ 2.670723, 49.58142 ], [ 2.665993, 49.579826 ], [ 2.649629, 49.571764 ], [ 2.645208, 49.57363 ], [ 2.631943, 49.57912 ], [ 2.627794, 49.5853 ], [ 2.630769, 49.5983 ], [ 2.624482, 49.607213 ], [ 2.627046, 49.61013 ], [ 2.625948, 49.61095 ], [ 2.620704, 49.61133 ], [ 2.606249, 49.608153 ], [ 2.592678, 49.612323 ], [ 2.595904, 49.610105 ], [ 2.587559, 49.607417 ], [ 2.581595, 49.599318 ], [ 2.578709, 49.59728 ], [ 2.571632, 49.59708 ], [ 2.568938, 49.60013 ], [ 2.559162, 49.60822 ], [ 2.561697, 49.6109 ], [ 2.566469, 49.619035 ], [ 2.546494, 49.61614 ], [ 2.526593, 49.62944 ], [ 2.523867, 49.62808 ], [ 2.520903, 49.62694 ], [ 2.517447, 49.629598 ], [ 2.505375, 49.63625 ], [ 2.505507, 49.63973 ], [ 2.501306, 49.63781 ], [ 2.478123, 49.62079 ], [ 2.474051, 49.62264 ], [ 2.466812, 49.62704 ], [ 2.473367, 49.635319 ], [ 2.46896, 49.63603 ], [ 2.465564, 49.63799 ], [ 2.456753, 49.635111 ], [ 2.452897, 49.64114 ], [ 2.449166, 49.64713 ], [ 2.445587, 49.65298 ], [ 2.412372, 49.661234 ], [ 2.402178, 49.66052 ], [ 2.397808, 49.658925 ], [ 2.388916, 49.65592 ], [ 2.37391, 49.656037 ], [ 2.369307, 49.65772 ], [ 2.362066, 49.66674 ], [ 2.358328, 49.66566 ], [ 2.355011, 49.664088 ], [ 2.350234, 49.663092 ], [ 2.335226, 49.67171 ], [ 2.332295, 49.680994 ], [ 2.327508, 49.68275 ], [ 2.315517, 49.68981 ], [ 2.314607, 49.68641 ], [ 2.300514, 49.681894 ], [ 2.290579, 49.68426 ], [ 2.287811, 49.68714 ], [ 2.260268, 49.695404 ], [ 2.255913, 49.69578 ], [ 2.247169, 49.70164 ], [ 2.232463, 49.70208 ], [ 2.228579, 49.702342 ], [ 2.223633, 49.70236 ], [ 2.204975, 49.69855 ], [ 2.192036, 49.7029 ], [ 2.190164, 49.70388 ], [ 2.185361, 49.70271 ], [ 2.155584, 49.7021 ], [ 2.147203, 49.69869 ], [ 2.144646, 49.69586 ], [ 2.138188, 49.69105 ], [ 2.124042, 49.688039 ], [ 2.118952, 49.68925 ], [ 2.110949, 49.693848 ], [ 2.095049, 49.69293 ], [ 2.087716, 49.69012 ], [ 2.083263, 49.692043 ], [ 2.066362, 49.68451 ], [ 2.050939, 49.68644 ], [ 2.048708, 49.688004 ], [ 2.059015, 49.68862 ], [ 2.058855, 49.6951 ], [ 2.037942, 49.70439 ], [ 2.034015, 49.710623 ], [ 2.02882, 49.710536 ], [ 2.02847, 49.710713 ], [ 2.023351, 49.711005 ], [ 2.014066, 49.708198 ], [ 2.001826, 49.71338 ], [ 1.992926, 49.71005 ], [ 1.977685, 49.71135 ], [ 1.97147, 49.719941 ], [ 1.967105, 49.71783 ], [ 1.949092, 49.7008 ], [ 1.947314, 49.70371 ], [ 1.933066, 49.71988 ], [ 1.929088, 49.71792 ], [ 1.915707, 49.71363 ], [ 1.894761, 49.699796 ], [ 1.890205, 49.69906 ], [ 1.881046, 49.69786 ], [ 1.876809, 49.69965 ], [ 1.863471, 49.70385 ], [ 1.848986, 49.70164 ], [ 1.845561, 49.70421 ], [ 1.837961, 49.70878 ], [ 1.839607, 49.71506 ], [ 1.832154, 49.71917 ], [ 1.822305, 49.719551 ], [ 1.820558, 49.72255 ], [ 1.825215, 49.724396 ], [ 1.840662, 49.733926 ], [ 1.836526, 49.740248 ], [ 1.820456, 49.73905 ], [ 1.818059, 49.74194 ], [ 1.809602, 49.75384 ], [ 1.794776, 49.75146 ], [ 1.790529, 49.75335 ], [ 1.792246, 49.755812 ], [ 1.784845, 49.7579 ], [ 1.78333, 49.764467 ], [ 1.780929, 49.767426 ], [ 1.779601, 49.77073 ], [ 1.773681, 49.77636 ], [ 1.759249, 49.7804 ], [ 1.758369, 49.78351 ], [ 1.752718, 49.79215 ], [ 1.749904, 49.79486 ], [ 1.744387, 49.80357 ], [ 1.742319, 49.80639 ], [ 1.733854, 49.8135 ], [ 1.725711, 49.836561 ], [ 1.726224, 49.839945 ], [ 1.72535, 49.84322 ], [ 1.719039, 49.848352 ], [ 1.720039, 49.86167 ], [ 1.718728, 49.86571 ], [ 1.712859, 49.87083 ], [ 1.711815, 49.87417 ], [ 1.713912, 49.87702 ], [ 1.71209, 49.8864 ], [ 1.706178, 49.89144 ], [ 1.69702, 49.89333 ], [ 1.693304, 49.895608 ], [ 1.691652, 49.898735 ], [ 1.690784, 49.901682 ], [ 1.678647, 49.91323 ], [ 1.678451, 49.91813 ], [ 1.652181, 49.927065 ], [ 1.647729, 49.92857 ], [ 1.643494, 49.9303 ], [ 1.624556, 49.93428 ], [ 1.608454, 49.94181 ], [ 1.603803, 49.943395 ], [ 1.577978, 49.96386 ], [ 1.57439, 49.97365 ], [ 1.570107, 49.97536 ], [ 1.561275, 49.97833 ], [ 1.55751, 49.98041 ], [ 1.52695, 49.99658 ], [ 1.525236, 49.99895 ], [ 1.523615, 50.001981 ], [ 1.514481, 50.01265 ], [ 1.497761, 50.019436 ], [ 1.493091, 50.01845 ], [ 1.48632, 50.023 ], [ 1.475827, 50.03069 ], [ 1.473212, 50.033686 ], [ 1.45886, 50.03696 ], [ 1.452288, 50.041617 ], [ 1.459146, 50.062499 ], [ 1.456458, 50.063714 ], [ 1.453325, 50.06438 ], [ 1.450671, 50.06723 ], [ 1.431667, 50.07115 ], [ 1.421862, 50.069131 ], [ 1.419826, 50.06641 ], [ 1.40926, 50.05707 ], [ 1.404428, 50.05723 ], [ 1.379705, 50.065015 ], [ 1.392618, 50.075461 ], [ 1.413951, 50.08517 ], [ 1.417617, 50.087581 ], [ 1.421354, 50.08908 ], [ 1.451257, 50.10708 ], [ 1.453752, 50.109977 ], [ 1.46652, 50.13583 ], [ 1.468043, 50.13908 ], [ 1.483097, 50.17267 ], [ 1.505551, 50.19657 ], [ 1.545748, 50.214139 ], [ 1.556144, 50.216211 ], [ 1.563635, 50.21315 ], [ 1.559372, 50.210977 ], [ 1.572128, 50.199315 ], [ 1.574236, 50.19602 ], [ 1.587442, 50.19003 ], [ 1.591259, 50.187582 ], [ 1.596264, 50.18617 ], [ 1.616781, 50.19044 ], [ 1.631019, 50.18899 ], [ 1.661372, 50.179563 ], [ 1.665954, 50.17765 ], [ 1.674962, 50.17543 ], [ 1.680548, 50.180597 ], [ 1.683249, 50.18323 ], [ 1.675657, 50.19007 ], [ 1.673107, 50.192345 ], [ 1.664845, 50.211232 ], [ 1.66146, 50.21382 ], [ 1.644008, 50.21644 ], [ 1.639635, 50.21719 ], [ 1.624798, 50.21463 ], [ 1.617027, 50.21935 ], [ 1.595119, 50.243155 ], [ 1.592228, 50.256458 ], [ 1.564968, 50.25601 ], [ 1.550048, 50.26047 ], [ 1.538298, 50.28026 ], [ 1.541985, 50.305 ], [ 1.546808, 50.327952 ], [ 1.55446, 50.3586 ], [ 1.567351, 50.36335 ], [ 1.580868, 50.358878 ], [ 1.602444, 50.35982 ], [ 1.625986, 50.364336 ], [ 1.636957, 50.35362 ], [ 1.641544, 50.35215 ], [ 1.646499, 50.340077 ], [ 1.651627, 50.33981 ], [ 1.66431, 50.334533 ], [ 1.662287, 50.331458 ], [ 1.667566, 50.33074 ], [ 1.690565, 50.33969 ], [ 1.69253, 50.34291 ], [ 1.694837, 50.33888 ], [ 1.703836, 50.34304 ], [ 1.725573, 50.34572 ], [ 1.730052, 50.34782 ], [ 1.740339, 50.35452 ], [ 1.755055, 50.35705 ], [ 1.761849, 50.361608 ], [ 1.786838, 50.359656 ], [ 1.791952, 50.35946 ], [ 1.800413, 50.35955 ], [ 1.804679, 50.35961 ], [ 1.81855, 50.35223 ], [ 1.821907, 50.35029 ], [ 1.846308, 50.34361 ], [ 1.851698, 50.34291 ], [ 1.852133, 50.34107 ], [ 1.869131, 50.33447 ], [ 1.875354, 50.32273 ], [ 1.888094, 50.31806 ], [ 1.893294, 50.31817 ], [ 1.898602, 50.31592 ], [ 1.898883, 50.31333 ], [ 1.919498, 50.31259 ], [ 1.941134, 50.330674 ], [ 1.946195, 50.33149 ], [ 1.964332, 50.32122 ], [ 1.963934, 50.31805 ], [ 1.959846, 50.311618 ], [ 1.934163, 50.29938 ], [ 1.945648, 50.287747 ], [ 1.949353, 50.2862 ], [ 1.955702, 50.289557 ], [ 1.959874, 50.29049 ], [ 1.969736, 50.282455 ], [ 1.994128, 50.27572 ], [ 2.000611, 50.27243 ], [ 2.003229, 50.27038 ], [ 2.01185, 50.26797 ], [ 2.026236, 50.26955 ], [ 2.034272, 50.26619 ], [ 2.037773, 50.26406 ], [ 2.048668, 50.256771 ], [ 2.059045, 50.25537 ], [ 2.064405, 50.25562 ], [ 2.075299, 50.25116 ], [ 2.077822, 50.24873 ], [ 2.064081, 50.23752 ], [ 2.063816, 50.234456 ], [ 2.067945, 50.232978 ], [ 2.068487, 50.227091 ], [ 2.080371, 50.219413 ], [ 2.083606, 50.21697 ], [ 2.08483, 50.20422 ], [ 2.085714, 50.20102 ], [ 2.096639, 50.20663 ], [ 2.110291, 50.20449 ], [ 2.114559, 50.202862 ], [ 2.12193, 50.21029 ], [ 2.135692, 50.20745 ], [ 2.141667, 50.20246 ], [ 2.146971, 50.19327 ], [ 2.14976, 50.19043 ], [ 2.173297, 50.20789 ], [ 2.178498, 50.207293 ], [ 2.183477, 50.21002 ], [ 2.187737, 50.20968 ], [ 2.19949, 50.21241 ], [ 2.199908, 50.215175 ], [ 2.204867, 50.21395 ], [ 2.213785, 50.21736 ], [ 2.224421, 50.21736 ], [ 2.227382, 50.20861 ], [ 2.230807, 50.21063 ], [ 2.239739, 50.21317 ], [ 2.253431, 50.21468 ], [ 2.269351, 50.227649 ], [ 2.287735, 50.22135 ], [ 2.290685, 50.21858 ], [ 2.296925, 50.21371 ], [ 2.301693, 50.212957 ], [ 2.318389, 50.21915 ], [ 2.325191, 50.21593 ], [ 2.327132, 50.213098 ], [ 2.331301, 50.22172 ], [ 2.320808, 50.23284 ], [ 2.31625, 50.23139 ], [ 2.314767, 50.23442 ], [ 2.32887, 50.237219 ], [ 2.332878, 50.23908 ], [ 2.334836, 50.23706 ], [ 2.336655, 50.23499 ], [ 2.361731, 50.207078 ], [ 2.364877, 50.20728 ], [ 2.36782, 50.20802 ], [ 2.370989, 50.210888 ], [ 2.373296, 50.217769 ], [ 2.383136, 50.22576 ], [ 2.384861, 50.22541 ], [ 2.389474, 50.22476 ], [ 2.402588, 50.23322 ], [ 2.407013, 50.2343 ], [ 2.4174, 50.228295 ], [ 2.432034, 50.22777 ], [ 2.436855, 50.227263 ], [ 2.446938, 50.229347 ], [ 2.452066, 50.23021 ], [ 2.456774, 50.221929 ], [ 2.459599, 50.219552 ], [ 2.464414, 50.21423 ], [ 2.480374, 50.208121 ], [ 2.485204, 50.2078 ], [ 2.488928, 50.204861 ], [ 2.492589, 50.2025 ], [ 2.495053, 50.19955 ], [ 2.49569, 50.19456 ], [ 2.49209, 50.19369 ], [ 2.485371, 50.19134 ], [ 2.481204, 50.19124 ], [ 2.473887, 50.18865 ], [ 2.469649, 50.18738 ], [ 2.450821, 50.17852 ], [ 2.445443, 50.17925 ], [ 2.435006, 50.17962 ], [ 2.420855, 50.17464 ], [ 2.417858, 50.17386 ], [ 2.414846, 50.17311 ], [ 2.415553, 50.16998 ], [ 2.41453, 50.16417 ], [ 2.410836, 50.1632 ], [ 2.403268, 50.1648 ], [ 2.401777, 50.16201 ], [ 2.398866, 50.15642 ], [ 2.389892, 50.15519 ], [ 2.391722, 50.144852 ], [ 2.385485, 50.13942 ], [ 2.379793, 50.11919 ], [ 2.37546, 50.10926 ], [ 2.394888, 50.110193 ], [ 2.39739, 50.1065 ], [ 2.409489, 50.1012 ], [ 2.414508, 50.10065 ], [ 2.417504, 50.09138 ], [ 2.424694, 50.087668 ], [ 2.429658, 50.088185 ], [ 2.44424, 50.1142 ], [ 2.446132, 50.11744 ], [ 2.44742, 50.11975 ], [ 2.449995, 50.1244 ], [ 2.454672, 50.12855 ], [ 2.455049, 50.13118 ], [ 2.464991, 50.131731 ], [ 2.4694, 50.133645 ], [ 2.472807, 50.13516 ], [ 2.475975, 50.13686 ], [ 2.491086, 50.137662 ], [ 2.510031, 50.140747 ], [ 2.514949, 50.140821 ], [ 2.532332, 50.11508 ], [ 2.545311, 50.12092 ], [ 2.548176, 50.12382 ], [ 2.546349, 50.13609 ], [ 2.551329, 50.141704 ], [ 2.564676, 50.13824 ], [ 2.56837, 50.13596 ], [ 2.577454, 50.139103 ], [ 2.582367, 50.13804 ], [ 2.586635, 50.137365 ], [ 2.583003, 50.13214 ], [ 2.569643, 50.1226 ], [ 2.569355, 50.1204 ], [ 2.573, 50.11546 ], [ 2.575671, 50.11333 ], [ 2.590719, 50.10911 ], [ 2.592904, 50.106555 ], [ 2.611729, 50.1101 ], [ 2.626761, 50.10933 ], [ 2.630728, 50.10728 ], [ 2.630646, 50.10511 ], [ 2.635779, 50.10002 ], [ 2.644387, 50.096988 ], [ 2.647546, 50.09441 ], [ 2.653888, 50.09803 ], [ 2.656525, 50.100283 ], [ 2.669203, 50.0961 ], [ 2.672081, 50.09363 ], [ 2.682389, 50.095045 ], [ 2.691593, 50.09203 ], [ 2.701148, 50.08391 ], [ 2.703859, 50.08099 ], [ 2.715684, 50.08536 ], [ 2.718994, 50.08764 ], [ 2.715239, 50.09011 ], [ 2.697575, 50.102573 ], [ 2.703494, 50.107689 ], [ 2.71352, 50.11019 ], [ 2.707128, 50.12643 ], [ 2.725191, 50.126365 ], [ 2.72993, 50.12586 ], [ 2.74715, 50.11551 ], [ 2.749537, 50.112803 ], [ 2.763849, 50.11051 ], [ 2.77794, 50.11376 ], [ 2.780898, 50.111156 ], [ 2.778492, 50.102405 ], [ 2.778142, 50.09943 ], [ 2.781836, 50.09111 ], [ 2.77886, 50.08847 ], [ 2.774462, 50.079226 ], [ 2.764392, 50.071825 ], [ 2.7609, 50.069384 ], [ 2.763746, 50.060597 ], [ 2.745871, 50.05013 ], [ 2.742339, 50.04801 ], [ 2.748877, 50.042918 ], [ 2.752195, 50.04032 ], [ 2.775739, 50.0428 ], [ 2.780917, 50.04835 ], [ 2.79451, 50.05005 ], [ 2.795705, 50.05127 ], [ 2.804223, 50.05971 ], [ 2.807198, 50.06246 ], [ 2.8105, 50.05987 ], [ 2.82771, 50.06563 ], [ 2.831235, 50.06317 ], [ 2.837806, 50.07201 ], [ 2.85018, 50.07808 ], [ 2.855414, 50.07799 ], [ 2.854922, 50.064277 ], [ 2.856704, 50.060992 ], [ 2.860778, 50.060646 ], [ 2.864729, 50.05992 ], [ 2.876374, 50.04424 ], [ 2.869954, 50.034951 ], [ 2.859918, 50.03366 ], [ 2.853071, 50.02916 ], [ 2.855422, 50.02607 ], [ 2.856377, 50.02358 ], [ 2.871189, 50.021076 ], [ 2.878569, 50.02452 ], [ 2.875747, 50.027 ], [ 2.879144, 50.02915 ], [ 2.882694, 50.0312 ], [ 2.896167, 50.03656 ], [ 2.917016, 50.03554 ], [ 2.919557, 50.042089 ], [ 2.920175, 50.048592 ], [ 2.930726, 50.04403 ], [ 2.934866, 50.04524 ], [ 2.938699, 50.047337 ], [ 2.940021, 50.05047 ], [ 2.944091, 50.0527 ], [ 2.949406, 50.05304 ], [ 2.957679, 50.05113 ], [ 2.961795, 50.05014 ], [ 2.969176, 50.046692 ], [ 2.971536, 50.04137 ], [ 2.988758, 50.0493 ], [ 2.993849, 50.050415 ], [ 3.002692, 50.05298 ], [ 3.006835, 50.054609 ], [ 3.01197, 50.058039 ], [ 3.02193, 50.05684 ], [ 3.024914, 50.054148 ], [ 3.026241, 50.05678 ], [ 3.030412, 50.057479 ], [ 3.057637, 50.05122 ], [ 3.06154, 50.04938 ], [ 3.071427, 50.047906 ], [ 3.074492, 50.0453 ], [ 3.087305, 50.0509 ], [ 3.090254, 50.053741 ], [ 3.095776, 50.04572 ], [ 3.113001, 50.03922 ], [ 3.114299, 50.03354 ], [ 3.121506, 50.02698 ], [ 3.123578, 50.02448 ], [ 3.148926, 50.02527 ], [ 3.147359, 50.01876 ], [ 3.162556, 50.01932 ], [ 3.166994, 50.02098 ], [ 3.171212, 50.01512 ], [ 3.172707, 50.01199 ], [ 3.171404, 50.009985 ], [ 3.159159, 49.99394 ], [ 3.155683, 49.991754 ], [ 3.165045, 49.99164 ], [ 3.177706, 49.98661 ], [ 3.187671, 49.98787 ], [ 3.192523, 49.98888 ], [ 3.198541, 49.98501 ], [ 3.202722, 49.98549 ], [ 3.192717, 49.977536 ], [ 3.170413, 49.968003 ], [ 3.163644, 49.96336 ], [ 3.16214, 49.954361 ], [ 3.161614, 49.95111 ], [ 3.166553, 49.95023 ], [ 3.164916, 49.94754 ], [ 3.160361, 49.94655 ], [ 3.137879, 49.93586 ], [ 3.124664, 49.921393 ], [ 3.123668, 49.918017 ], [ 3.11762, 49.91396 ], [ 3.120118, 49.91122 ], [ 3.122607, 49.89941 ], [ 3.117858, 49.89026 ], [ 3.119134, 49.88302 ], [ 3.087836, 49.86569 ], [ 3.083196, 49.86657 ], [ 3.084962, 49.87576 ], [ 3.082604, 49.87849 ], [ 3.077501, 49.878367 ], [ 3.073939, 49.875988 ], [ 3.070905, 49.8734 ], [ 3.079469, 49.865411 ], [ 3.083057, 49.84937 ], [ 3.084399, 49.84625 ], [ 3.081738, 49.841378 ], [ 3.077623, 49.839683 ], [ 3.073663, 49.83889 ], [ 3.069341, 49.83698 ], [ 3.057068, 49.83078 ], [ 3.059037, 49.827646 ], [ 3.060006, 49.825175 ], [ 3.060722, 49.820099 ], [ 3.079039, 49.82122 ], [ 3.082605, 49.819241 ], [ 3.085004, 49.81765 ], [ 3.082321, 49.815244 ], [ 3.080299, 49.80991 ], [ 3.086135, 49.80449 ], [ 3.084245, 49.794884 ], [ 3.085933, 49.79175 ], [ 3.081379, 49.79053 ], [ 3.061329, 49.78138 ], [ 3.067381, 49.77337 ], [ 3.065338, 49.77048 ], [ 3.073808, 49.7664 ], [ 3.095114, 49.76615 ], [ 3.100454, 49.76593 ], [ 3.094682, 49.75727 ], [ 3.096772, 49.74806 ], [ 3.09936, 49.7384 ], [ 3.100671, 49.735222 ], [ 3.113653, 49.72548 ], [ 3.120398, 49.70573 ], [ 3.118652, 49.70583 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "82", "CODE_DEPT": "81", "NOM_DEPT": "TARN", "CODE_CHF": "004", "NOM_CHF": "ALBI", "X_CHF_LIEU": "6313", "Y_CHF_LIEU": "63147", "X_CENTROID": "6328", "Y_CENTROID": "62988", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.565787, 43.42296 ], [ 2.565541, 43.42291 ], [ 2.561483, 43.42096 ], [ 2.548049, 43.42465 ], [ 2.518988, 43.423716 ], [ 2.497332, 43.434287 ], [ 2.494383, 43.436937 ], [ 2.477992, 43.43643 ], [ 2.473695, 43.43651 ], [ 2.469545, 43.43535 ], [ 2.451105, 43.43223 ], [ 2.42759, 43.43449 ], [ 2.40776, 43.42522 ], [ 2.404826, 43.42244 ], [ 2.406846, 43.419255 ], [ 2.398735, 43.417051 ], [ 2.375171, 43.423 ], [ 2.371245, 43.423076 ], [ 2.367331, 43.42318 ], [ 2.363082, 43.42457 ], [ 2.348387, 43.432774 ], [ 2.313931, 43.441064 ], [ 2.304106, 43.447929 ], [ 2.299698, 43.446812 ], [ 2.284875, 43.4433 ], [ 2.281798, 43.441449 ], [ 2.268692, 43.450611 ], [ 2.265415, 43.452919 ], [ 2.263919, 43.455923 ], [ 2.258295, 43.460113 ], [ 2.256687, 43.45364 ], [ 2.243802, 43.44544 ], [ 2.241344, 43.44268 ], [ 2.239358, 43.439747 ], [ 2.235584, 43.43756 ], [ 2.222523, 43.42831 ], [ 2.223344, 43.417789 ], [ 2.229322, 43.408286 ], [ 2.215024, 43.382615 ], [ 2.211099, 43.384565 ], [ 2.184058, 43.397779 ], [ 2.170349, 43.415876 ], [ 2.156305, 43.414894 ], [ 2.138318, 43.403714 ], [ 2.133557, 43.40356 ], [ 2.130495, 43.40122 ], [ 2.111065, 43.39619 ], [ 2.108785, 43.39446 ], [ 2.104399, 43.395602 ], [ 2.095112, 43.3962 ], [ 2.091681, 43.39389 ], [ 2.085693, 43.398082 ], [ 2.077317, 43.39563 ], [ 2.072801, 43.395696 ], [ 2.068725, 43.408896 ], [ 2.053071, 43.43031 ], [ 2.033296, 43.43604 ], [ 2.029133, 43.436898 ], [ 2.02247, 43.446087 ], [ 2.014953, 43.44947 ], [ 2.019322, 43.469938 ], [ 2.021455, 43.47307 ], [ 2.025048, 43.475397 ], [ 2.039032, 43.477708 ], [ 2.044983, 43.483196 ], [ 2.04829, 43.48573 ], [ 2.045463, 43.48777 ], [ 2.048094, 43.49829 ], [ 2.042285, 43.510929 ], [ 2.03489, 43.500013 ], [ 2.016101, 43.50871 ], [ 2.012012, 43.5071 ], [ 2.012578, 43.484246 ], [ 2.009895, 43.481468 ], [ 1.996014, 43.481736 ], [ 1.987799, 43.478826 ], [ 1.973997, 43.487838 ], [ 1.957257, 43.493698 ], [ 1.952509, 43.490449 ], [ 1.948634, 43.492166 ], [ 1.92057, 43.50514 ], [ 1.917079, 43.501474 ], [ 1.891608, 43.513409 ], [ 1.889391, 43.516184 ], [ 1.887719, 43.516941 ], [ 1.873093, 43.53647 ], [ 1.876463, 43.53868 ], [ 1.880414, 43.540315 ], [ 1.876382, 43.54154 ], [ 1.86424, 43.54506 ], [ 1.859818, 43.54661 ], [ 1.850711, 43.549192 ], [ 1.85195, 43.5522 ], [ 1.849452, 43.56754 ], [ 1.839147, 43.57779 ], [ 1.826037, 43.580296 ], [ 1.821662, 43.581194 ], [ 1.810477, 43.579173 ], [ 1.802575, 43.581147 ], [ 1.798684, 43.582535 ], [ 1.79341, 43.583763 ], [ 1.775825, 43.590468 ], [ 1.772591, 43.592348 ], [ 1.772294, 43.59812 ], [ 1.76653, 43.601881 ], [ 1.762697, 43.602738 ], [ 1.762222, 43.6018 ], [ 1.745048, 43.603462 ], [ 1.744731, 43.60436 ], [ 1.742237, 43.6046 ], [ 1.74056, 43.60596 ], [ 1.723742, 43.613797 ], [ 1.723044, 43.61676 ], [ 1.719106, 43.618386 ], [ 1.706268, 43.62138 ], [ 1.698605, 43.62009 ], [ 1.687765, 43.630421 ], [ 1.690614, 43.63316 ], [ 1.691623, 43.639998 ], [ 1.702541, 43.65089 ], [ 1.724309, 43.656774 ], [ 1.730357, 43.660759 ], [ 1.730492, 43.66414 ], [ 1.720379, 43.67515 ], [ 1.718914, 43.68522 ], [ 1.720704, 43.688346 ], [ 1.716092, 43.689389 ], [ 1.663573, 43.694058 ], [ 1.663572, 43.697279 ], [ 1.664454, 43.70362 ], [ 1.661032, 43.70565 ], [ 1.665722, 43.705072 ], [ 1.678907, 43.701391 ], [ 1.692903, 43.709965 ], [ 1.702349, 43.710276 ], [ 1.706446, 43.71622 ], [ 1.703544, 43.718894 ], [ 1.693023, 43.7297 ], [ 1.688782, 43.728464 ], [ 1.679455, 43.735749 ], [ 1.659743, 43.742186 ], [ 1.657976, 43.745017 ], [ 1.650186, 43.751589 ], [ 1.651455, 43.754629 ], [ 1.655786, 43.766887 ], [ 1.651526, 43.775861 ], [ 1.643045, 43.778375 ], [ 1.642091, 43.785095 ], [ 1.648551, 43.79404 ], [ 1.646404, 43.79706 ], [ 1.644788, 43.800257 ], [ 1.625502, 43.801807 ], [ 1.588589, 43.817176 ], [ 1.59317, 43.843138 ], [ 1.591232, 43.843572 ], [ 1.576138, 43.847463 ], [ 1.572585, 43.8488 ], [ 1.57037, 43.85182 ], [ 1.555086, 43.86849 ], [ 1.555312, 43.870834 ], [ 1.561642, 43.86998 ], [ 1.564008, 43.87188 ], [ 1.556407, 43.87578 ], [ 1.559399, 43.881968 ], [ 1.550723, 43.889881 ], [ 1.547523, 43.899722 ], [ 1.555617, 43.918317 ], [ 1.565019, 43.917307 ], [ 1.56963, 43.918142 ], [ 1.573536, 43.919786 ], [ 1.573867, 43.932481 ], [ 1.572858, 43.93497 ], [ 1.57752, 43.938812 ], [ 1.57311, 43.939834 ], [ 1.565952, 43.944088 ], [ 1.538736, 43.947346 ], [ 1.539563, 43.953973 ], [ 1.535268, 43.95967 ], [ 1.543666, 43.95675 ], [ 1.5502, 43.959984 ], [ 1.552291, 43.96304 ], [ 1.566416, 43.96531 ], [ 1.589318, 43.9604 ], [ 1.618384, 43.959129 ], [ 1.622719, 43.9607 ], [ 1.621945, 43.96386 ], [ 1.618637, 43.97283 ], [ 1.627258, 43.983373 ], [ 1.634649, 43.99173 ], [ 1.637097, 43.994685 ], [ 1.64981, 43.992268 ], [ 1.654319, 43.99299 ], [ 1.657586, 43.99879 ], [ 1.651181, 44.011278 ], [ 1.660102, 44.01271 ], [ 1.664533, 44.01149 ], [ 1.66922, 44.01109 ], [ 1.672877, 44.017385 ], [ 1.689731, 44.02326 ], [ 1.700894, 44.04193 ], [ 1.704208, 44.04436 ], [ 1.693526, 44.060111 ], [ 1.680416, 44.064571 ], [ 1.666838, 44.064929 ], [ 1.66396, 44.07157 ], [ 1.669095, 44.0885 ], [ 1.656676, 44.094033 ], [ 1.653121, 44.096447 ], [ 1.654375, 44.099406 ], [ 1.652824, 44.10848 ], [ 1.658716, 44.116643 ], [ 1.661999, 44.11412 ], [ 1.671048, 44.116127 ], [ 1.689593, 44.11277 ], [ 1.703121, 44.116214 ], [ 1.722151, 44.115097 ], [ 1.722089, 44.1184 ], [ 1.733508, 44.11229 ], [ 1.746638, 44.11464 ], [ 1.765889, 44.105552 ], [ 1.773229, 44.09713 ], [ 1.777958, 44.096767 ], [ 1.781724, 44.09765 ], [ 1.792808, 44.099803 ], [ 1.787708, 44.10874 ], [ 1.80385, 44.12358 ], [ 1.805673, 44.126598 ], [ 1.809295, 44.124351 ], [ 1.825328, 44.10797 ], [ 1.834477, 44.10596 ], [ 1.83743, 44.103256 ], [ 1.836598, 44.1061 ], [ 1.840519, 44.11415 ], [ 1.838957, 44.117207 ], [ 1.830068, 44.132028 ], [ 1.836775, 44.143891 ], [ 1.841019, 44.14417 ], [ 1.846177, 44.135808 ], [ 1.850339, 44.13517 ], [ 1.864961, 44.14342 ], [ 1.882758, 44.138527 ], [ 1.891553, 44.1413 ], [ 1.903269, 44.13076 ], [ 1.914388, 44.136189 ], [ 1.918422, 44.140298 ], [ 1.91477, 44.1424 ], [ 1.894931, 44.15597 ], [ 1.909789, 44.163562 ], [ 1.919064, 44.16308 ], [ 1.922417, 44.16105 ], [ 1.932682, 44.15575 ], [ 1.941394, 44.14786 ], [ 1.955454, 44.148758 ], [ 1.968628, 44.14474 ], [ 1.983368, 44.15232 ], [ 1.990171, 44.149453 ], [ 1.999161, 44.15079 ], [ 2.003793, 44.15116 ], [ 2.008016, 44.15273 ], [ 2.03025, 44.15757 ], [ 2.027089, 44.16693 ], [ 2.03111, 44.16875 ], [ 2.058502, 44.17228 ], [ 2.051179, 44.18686 ], [ 2.063174, 44.18924 ], [ 2.067551, 44.190122 ], [ 2.075514, 44.18204 ], [ 2.093014, 44.185178 ], [ 2.096551, 44.179068 ], [ 2.104725, 44.180242 ], [ 2.107798, 44.18287 ], [ 2.103134, 44.19149 ], [ 2.109785, 44.19499 ], [ 2.114064, 44.1958 ], [ 2.128047, 44.19611 ], [ 2.135213, 44.20041 ], [ 2.144534, 44.20048 ], [ 2.149213, 44.20054 ], [ 2.152652, 44.19145 ], [ 2.158773, 44.186971 ], [ 2.15473, 44.181296 ], [ 2.15815, 44.17923 ], [ 2.17194, 44.18054 ], [ 2.18079, 44.17828 ], [ 2.182014, 44.17151 ], [ 2.191033, 44.16346 ], [ 2.199835, 44.16527 ], [ 2.205638, 44.1706 ], [ 2.223858, 44.167026 ], [ 2.237614, 44.158626 ], [ 2.216793, 44.151557 ], [ 2.211048, 44.146619 ], [ 2.201984, 44.14492 ], [ 2.193505, 44.14781 ], [ 2.182698, 44.14133 ], [ 2.188454, 44.13738 ], [ 2.191958, 44.139739 ], [ 2.224895, 44.138644 ], [ 2.23754, 44.134313 ], [ 2.261838, 44.144678 ], [ 2.28488, 44.145335 ], [ 2.288372, 44.14301 ], [ 2.297572, 44.135894 ], [ 2.290639, 44.123572 ], [ 2.307295, 44.11854 ], [ 2.32333, 44.124453 ], [ 2.332443, 44.123024 ], [ 2.340338, 44.11139 ], [ 2.348244, 44.108232 ], [ 2.351988, 44.106373 ], [ 2.355459, 44.104332 ], [ 2.357739, 44.10155 ], [ 2.384438, 44.09396 ], [ 2.389215, 44.09457 ], [ 2.389214, 44.09111 ], [ 2.399704, 44.084026 ], [ 2.410932, 44.069299 ], [ 2.41021, 44.055858 ], [ 2.456246, 44.05107 ], [ 2.460871, 44.050323 ], [ 2.46679, 44.03254 ], [ 2.46993, 44.03032 ], [ 2.484888, 44.02469 ], [ 2.491987, 44.01325 ], [ 2.495398, 44.01121 ], [ 2.495189, 44.00523 ], [ 2.491762, 44.003525 ], [ 2.494652, 43.99831 ], [ 2.494988, 43.995512 ], [ 2.498413, 43.99306 ], [ 2.501798, 43.986633 ], [ 2.523255, 43.98015 ], [ 2.523088, 43.97323 ], [ 2.52088, 43.963112 ], [ 2.51981, 43.96002 ], [ 2.503845, 43.95485 ], [ 2.499348, 43.95052 ], [ 2.499084, 43.94509 ], [ 2.508499, 43.94527 ], [ 2.537229, 43.933825 ], [ 2.536983, 43.930395 ], [ 2.553842, 43.921087 ], [ 2.552838, 43.907791 ], [ 2.551007, 43.901583 ], [ 2.550498, 43.89822 ], [ 2.552007, 43.89157 ], [ 2.576271, 43.88176 ], [ 2.57997, 43.876184 ], [ 2.578587, 43.87319 ], [ 2.567351, 43.86851 ], [ 2.56361, 43.863215 ], [ 2.564387, 43.85097 ], [ 2.561802, 43.84597 ], [ 2.590488, 43.818278 ], [ 2.593359, 43.818271 ], [ 2.596139, 43.81881 ], [ 2.599743, 43.817089 ], [ 2.598972, 43.813639 ], [ 2.609147, 43.80681 ], [ 2.613699, 43.796972 ], [ 2.624269, 43.789819 ], [ 2.629213, 43.78025 ], [ 2.632803, 43.778159 ], [ 2.656754, 43.76271 ], [ 2.659933, 43.756371 ], [ 2.68173, 43.74351 ], [ 2.695398, 43.743158 ], [ 2.700006, 43.74256 ], [ 2.713823, 43.74197 ], [ 2.740543, 43.72896 ], [ 2.77671, 43.73662 ], [ 2.781499, 43.736958 ], [ 2.789149, 43.752549 ], [ 2.814518, 43.76158 ], [ 2.823856, 43.761205 ], [ 2.835755, 43.751109 ], [ 2.853612, 43.74858 ], [ 2.858278, 43.74923 ], [ 2.858564, 43.74914 ], [ 2.862726, 43.747556 ], [ 2.870453, 43.739161 ], [ 2.902605, 43.742272 ], [ 2.906604, 43.740943 ], [ 2.921903, 43.73515 ], [ 2.919189, 43.732351 ], [ 2.925714, 43.705711 ], [ 2.934967, 43.694712 ], [ 2.919588, 43.68659 ], [ 2.918495, 43.661993 ], [ 2.907798, 43.65475 ], [ 2.90294, 43.654647 ], [ 2.884296, 43.65713 ], [ 2.86877, 43.644965 ], [ 2.844894, 43.644763 ], [ 2.828424, 43.637432 ], [ 2.814703, 43.639479 ], [ 2.804692, 43.63216 ], [ 2.801592, 43.62954 ], [ 2.795131, 43.62463 ], [ 2.781699, 43.625876 ], [ 2.759078, 43.61489 ], [ 2.754524, 43.614139 ], [ 2.746507, 43.617845 ], [ 2.738722, 43.630334 ], [ 2.719328, 43.644412 ], [ 2.687337, 43.65093 ], [ 2.684695, 43.65381 ], [ 2.667283, 43.649448 ], [ 2.653587, 43.649991 ], [ 2.649787, 43.659444 ], [ 2.645491, 43.660672 ], [ 2.627779, 43.611106 ], [ 2.615603, 43.600518 ], [ 2.620069, 43.595423 ], [ 2.62254, 43.592463 ], [ 2.627227, 43.59319 ], [ 2.631005, 43.583242 ], [ 2.617994, 43.56872 ], [ 2.616643, 43.56538 ], [ 2.655687, 43.52725 ], [ 2.667984, 43.522062 ], [ 2.67602, 43.51346 ], [ 2.671518, 43.513697 ], [ 2.658852, 43.516923 ], [ 2.659896, 43.50346 ], [ 2.655033, 43.49418 ], [ 2.657633, 43.480958 ], [ 2.665094, 43.472677 ], [ 2.668, 43.47005 ], [ 2.663624, 43.46417 ], [ 2.641583, 43.46706 ], [ 2.644608, 43.46127 ], [ 2.644567, 43.45792 ], [ 2.641062, 43.45559 ], [ 2.617661, 43.438531 ], [ 2.608845, 43.44041 ], [ 2.606095, 43.43803 ], [ 2.606371, 43.431994 ], [ 2.602191, 43.43133 ], [ 2.597996, 43.43271 ], [ 2.579276, 43.4233 ], [ 2.565787, 43.42296 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "83", "CODE_DEPT": "82", "NOM_DEPT": "TARN-ET-GARONNE", "CODE_CHF": "121", "NOM_CHF": "MONTAUBAN", "X_CHF_LIEU": "5681", "Y_CHF_LIEU": "63256", "X_CENTROID": "5624", "Y_CENTROID": "63333", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.555617, 43.918317 ], [ 1.551068, 43.917996 ], [ 1.533792, 43.9211 ], [ 1.531161, 43.911546 ], [ 1.523323, 43.9036 ], [ 1.519355, 43.90495 ], [ 1.515195, 43.905966 ], [ 1.5166, 43.902682 ], [ 1.496655, 43.888583 ], [ 1.491908, 43.888761 ], [ 1.487717, 43.901799 ], [ 1.477, 43.908293 ], [ 1.475043, 43.905574 ], [ 1.469869, 43.89748 ], [ 1.467045, 43.89463 ], [ 1.448923, 43.87032 ], [ 1.447742, 43.873506 ], [ 1.430993, 43.86945 ], [ 1.418123, 43.871875 ], [ 1.408611, 43.882826 ], [ 1.404492, 43.884602 ], [ 1.390999, 43.881577 ], [ 1.365184, 43.889574 ], [ 1.355915, 43.882531 ], [ 1.352803, 43.873951 ], [ 1.34929, 43.87193 ], [ 1.36147, 43.858077 ], [ 1.358857, 43.85248 ], [ 1.335298, 43.851245 ], [ 1.323757, 43.85668 ], [ 1.319412, 43.85807 ], [ 1.296644, 43.848173 ], [ 1.293823, 43.8456 ], [ 1.303039, 43.843916 ], [ 1.314451, 43.83313 ], [ 1.331645, 43.83748 ], [ 1.354419, 43.836432 ], [ 1.361292, 43.820486 ], [ 1.360031, 43.81721 ], [ 1.35152, 43.81709 ], [ 1.345052, 43.81335 ], [ 1.343356, 43.81053 ], [ 1.326313, 43.808515 ], [ 1.314977, 43.803066 ], [ 1.311637, 43.80084 ], [ 1.305066, 43.801166 ], [ 1.301897, 43.80031 ], [ 1.29903, 43.799785 ], [ 1.286109, 43.7972 ], [ 1.281825, 43.79625 ], [ 1.27796, 43.80162 ], [ 1.271046, 43.798075 ], [ 1.266879, 43.79862 ], [ 1.267641, 43.79521 ], [ 1.27741, 43.78895 ], [ 1.212776, 43.768242 ], [ 1.210042, 43.77107 ], [ 1.207038, 43.77735 ], [ 1.217957, 43.783755 ], [ 1.215753, 43.79027 ], [ 1.18319, 43.79407 ], [ 1.17968, 43.79581 ], [ 1.175343, 43.80439 ], [ 1.162996, 43.80882 ], [ 1.157369, 43.818329 ], [ 1.144598, 43.822298 ], [ 1.142279, 43.81561 ], [ 1.125584, 43.80915 ], [ 1.116766, 43.801 ], [ 1.115083, 43.797776 ], [ 1.10768, 43.798782 ], [ 1.105058, 43.8014 ], [ 1.105866, 43.806663 ], [ 1.097104, 43.808139 ], [ 1.083306, 43.816332 ], [ 1.082129, 43.815465 ], [ 1.062046, 43.80136 ], [ 1.059132, 43.798594 ], [ 1.044982, 43.799521 ], [ 1.036771, 43.803028 ], [ 1.000344, 43.79837 ], [ 0.995961, 43.79755 ], [ 0.987578, 43.79559 ], [ 0.982503, 43.790461 ], [ 0.980517, 43.78758 ], [ 0.956063, 43.789329 ], [ 0.953983, 43.787372 ], [ 0.942257, 43.792112 ], [ 0.924358, 43.79153 ], [ 0.918354, 43.786473 ], [ 0.905542, 43.78412 ], [ 0.897026, 43.78662 ], [ 0.897205, 43.793232 ], [ 0.906108, 43.8111 ], [ 0.914785, 43.818577 ], [ 0.924206, 43.828939 ], [ 0.925163, 43.83203 ], [ 0.920762, 43.83302 ], [ 0.895239, 43.839897 ], [ 0.89538, 43.849253 ], [ 0.908473, 43.8494 ], [ 0.912698, 43.84849 ], [ 0.911024, 43.851768 ], [ 0.900972, 43.863621 ], [ 0.886033, 43.872245 ], [ 0.882866, 43.88583 ], [ 0.883251, 43.88887 ], [ 0.900571, 43.89653 ], [ 0.904654, 43.89893 ], [ 0.901197, 43.900841 ], [ 0.889231, 43.90425 ], [ 0.888197, 43.90962 ], [ 0.883738, 43.910326 ], [ 0.875289, 43.91283 ], [ 0.864678, 43.92318 ], [ 0.856065, 43.92102 ], [ 0.85214, 43.9227 ], [ 0.850473, 43.92001 ], [ 0.849347, 43.91718 ], [ 0.845156, 43.91536 ], [ 0.819943, 43.924979 ], [ 0.818672, 43.927583 ], [ 0.809298, 43.932302 ], [ 0.770004, 43.92214 ], [ 0.767958, 43.92478 ], [ 0.760549, 43.938669 ], [ 0.760114, 43.945304 ], [ 0.783778, 43.954916 ], [ 0.785137, 43.95809 ], [ 0.790753, 43.96307 ], [ 0.792216, 43.96615 ], [ 0.797205, 43.97512 ], [ 0.8009, 43.97726 ], [ 0.805555, 43.97941 ], [ 0.808342, 43.981179 ], [ 0.809019, 43.982047 ], [ 0.824219, 43.99446 ], [ 0.825979, 44.00096 ], [ 0.825149, 44.00441 ], [ 0.823675, 44.00673 ], [ 0.817424, 44.009073 ], [ 0.822488, 44.01464 ], [ 0.81585, 44.02604 ], [ 0.819879, 44.027696 ], [ 0.824257, 44.02906 ], [ 0.841769, 44.025329 ], [ 0.848912, 44.034104 ], [ 0.857868, 44.034901 ], [ 0.860854, 44.03746 ], [ 0.86534, 44.038325 ], [ 0.861963, 44.040185 ], [ 0.853937, 44.04218 ], [ 0.850634, 44.047679 ], [ 0.836679, 44.046981 ], [ 0.822057, 44.055596 ], [ 0.813507, 44.05228 ], [ 0.811224, 44.049663 ], [ 0.797375, 44.04396 ], [ 0.764048, 44.029639 ], [ 0.760935, 44.031997 ], [ 0.756565, 44.04124 ], [ 0.757886, 44.044459 ], [ 0.758697, 44.05113 ], [ 0.753347, 44.05637 ], [ 0.752327, 44.05944 ], [ 0.750176, 44.065523 ], [ 0.741635, 44.0652 ], [ 0.737992, 44.071404 ], [ 0.739874, 44.0781 ], [ 0.747761, 44.08648 ], [ 0.748003, 44.093292 ], [ 0.754273, 44.10475 ], [ 0.773071, 44.113883 ], [ 0.775041, 44.11688 ], [ 0.78192, 44.112919 ], [ 0.795242, 44.11227 ], [ 0.798588, 44.110104 ], [ 0.793165, 44.118458 ], [ 0.797565, 44.130387 ], [ 0.795082, 44.133498 ], [ 0.787733, 44.14276 ], [ 0.796556, 44.14512 ], [ 0.820491, 44.14314 ], [ 0.855079, 44.13049 ], [ 0.857814, 44.127575 ], [ 0.869092, 44.126516 ], [ 0.880236, 44.131711 ], [ 0.883987, 44.140094 ], [ 0.892066, 44.13733 ], [ 0.894084, 44.14023 ], [ 0.888351, 44.14881 ], [ 0.888106, 44.163836 ], [ 0.889794, 44.16688 ], [ 0.890008, 44.17022 ], [ 0.882074, 44.17363 ], [ 0.870138, 44.169 ], [ 0.863912, 44.173569 ], [ 0.853632, 44.174782 ], [ 0.853675, 44.18425 ], [ 0.857793, 44.189864 ], [ 0.859687, 44.19274 ], [ 0.860992, 44.192979 ], [ 0.898525, 44.190904 ], [ 0.903111, 44.19005 ], [ 0.929239, 44.23025 ], [ 0.92851, 44.233064 ], [ 0.91909, 44.23827 ], [ 0.932795, 44.251252 ], [ 0.927782, 44.26741 ], [ 0.940855, 44.26422 ], [ 0.948841, 44.27207 ], [ 0.950788, 44.275072 ], [ 0.946024, 44.27511 ], [ 0.923515, 44.29157 ], [ 0.921475, 44.294196 ], [ 0.91643, 44.302204 ], [ 0.912026, 44.300914 ], [ 0.895067, 44.296701 ], [ 0.891142, 44.298742 ], [ 0.8838, 44.30769 ], [ 0.869445, 44.309255 ], [ 0.874884, 44.32072 ], [ 0.873272, 44.323574 ], [ 0.879503, 44.327342 ], [ 0.883328, 44.328379 ], [ 0.894805, 44.343286 ], [ 0.896113, 44.346228 ], [ 0.892011, 44.349914 ], [ 0.893363, 44.35607 ], [ 0.88732, 44.364646 ], [ 0.891334, 44.37046 ], [ 0.893959, 44.37312 ], [ 0.895341, 44.37918 ], [ 0.906666, 44.382224 ], [ 0.910846, 44.38296 ], [ 0.915224, 44.384097 ], [ 0.919845, 44.38442 ], [ 0.923647, 44.37801 ], [ 0.937285, 44.36861 ], [ 0.940563, 44.34785 ], [ 0.941254, 44.344399 ], [ 0.942382, 44.34442 ], [ 0.944146, 44.35426 ], [ 0.950506, 44.359519 ], [ 0.969794, 44.36102 ], [ 0.978586, 44.358049 ], [ 0.993497, 44.36652 ], [ 0.996705, 44.36915 ], [ 1.004384, 44.3657 ], [ 1.022266, 44.36406 ], [ 1.024678, 44.366855 ], [ 1.04722, 44.36257 ], [ 1.060473, 44.36626 ], [ 1.064084, 44.37851 ], [ 1.082963, 44.38159 ], [ 1.098001, 44.3903 ], [ 1.10233, 44.391893 ], [ 1.106685, 44.39235 ], [ 1.132478, 44.393876 ], [ 1.132599, 44.384514 ], [ 1.134424, 44.37446 ], [ 1.130922, 44.372159 ], [ 1.093797, 44.36784 ], [ 1.085842, 44.35546 ], [ 1.081223, 44.35439 ], [ 1.083658, 44.35139 ], [ 1.100694, 44.347087 ], [ 1.114707, 44.33775 ], [ 1.10939, 44.324871 ], [ 1.120364, 44.3181 ], [ 1.122866, 44.31566 ], [ 1.130534, 44.316985 ], [ 1.135027, 44.31689 ], [ 1.151415, 44.30739 ], [ 1.15957, 44.30992 ], [ 1.168975, 44.304108 ], [ 1.175529, 44.3085 ], [ 1.178986, 44.310559 ], [ 1.17746, 44.294831 ], [ 1.180887, 44.28885 ], [ 1.184412, 44.2868 ], [ 1.188983, 44.286918 ], [ 1.195068, 44.282012 ], [ 1.203287, 44.28248 ], [ 1.213001, 44.270934 ], [ 1.225198, 44.27918 ], [ 1.238265, 44.275294 ], [ 1.242612, 44.26925 ], [ 1.24419, 44.26604 ], [ 1.250491, 44.26974 ], [ 1.253224, 44.28274 ], [ 1.255351, 44.285687 ], [ 1.258367, 44.28299 ], [ 1.272716, 44.28264 ], [ 1.282704, 44.29009 ], [ 1.299992, 44.295011 ], [ 1.304016, 44.294191 ], [ 1.294544, 44.271923 ], [ 1.30288, 44.269315 ], [ 1.302983, 44.262511 ], [ 1.288709, 44.253943 ], [ 1.284393, 44.252516 ], [ 1.283518, 44.23793 ], [ 1.281318, 44.23534 ], [ 1.285965, 44.23448 ], [ 1.303104, 44.2283 ], [ 1.316172, 44.23097 ], [ 1.337985, 44.22666 ], [ 1.35715, 44.203023 ], [ 1.370509, 44.217636 ], [ 1.389259, 44.22875 ], [ 1.394161, 44.228986 ], [ 1.419793, 44.240602 ], [ 1.423051, 44.242774 ], [ 1.425752, 44.242029 ], [ 1.430319, 44.24309 ], [ 1.452071, 44.255988 ], [ 1.454513, 44.26613 ], [ 1.463113, 44.26918 ], [ 1.473534, 44.284216 ], [ 1.481934, 44.280839 ], [ 1.489859, 44.27216 ], [ 1.504077, 44.273265 ], [ 1.508952, 44.273709 ], [ 1.511915, 44.271094 ], [ 1.524087, 44.26122 ], [ 1.518156, 44.25233 ], [ 1.526928, 44.237212 ], [ 1.530026, 44.23459 ], [ 1.541735, 44.22871 ], [ 1.546054, 44.23018 ], [ 1.57292, 44.2353 ], [ 1.578933, 44.24369 ], [ 1.582443, 44.24556 ], [ 1.585916, 44.250942 ], [ 1.58079, 44.259581 ], [ 1.576671, 44.26947 ], [ 1.564456, 44.278851 ], [ 1.575434, 44.285305 ], [ 1.570705, 44.298396 ], [ 1.573875, 44.300958 ], [ 1.583253, 44.29988 ], [ 1.587527, 44.301432 ], [ 1.596701, 44.301522 ], [ 1.602525, 44.29617 ], [ 1.612038, 44.296711 ], [ 1.616652, 44.29767 ], [ 1.615631, 44.2784 ], [ 1.636036, 44.2699 ], [ 1.644042, 44.27354 ], [ 1.650018, 44.28304 ], [ 1.634017, 44.294934 ], [ 1.637352, 44.297001 ], [ 1.646736, 44.295064 ], [ 1.651059, 44.296711 ], [ 1.655897, 44.28512 ], [ 1.659487, 44.28326 ], [ 1.665366, 44.291187 ], [ 1.669676, 44.290735 ], [ 1.670328, 44.293399 ], [ 1.671104, 44.29826 ], [ 1.675551, 44.29785 ], [ 1.698485, 44.31283 ], [ 1.702321, 44.314505 ], [ 1.706266, 44.312508 ], [ 1.73309, 44.317897 ], [ 1.740904, 44.326297 ], [ 1.759546, 44.323177 ], [ 1.773271, 44.314203 ], [ 1.78237, 44.316122 ], [ 1.787993, 44.32172 ], [ 1.783485, 44.327847 ], [ 1.79125, 44.327762 ], [ 1.793744, 44.333749 ], [ 1.801818, 44.3357 ], [ 1.805975, 44.336637 ], [ 1.807251, 44.33324 ], [ 1.813143, 44.327982 ], [ 1.826465, 44.32359 ], [ 1.833702, 44.33513 ], [ 1.842695, 44.33697 ], [ 1.847231, 44.337806 ], [ 1.849722, 44.335005 ], [ 1.85629, 44.332742 ], [ 1.882083, 44.340074 ], [ 1.885627, 44.335267 ], [ 1.880816, 44.334993 ], [ 1.872421, 44.33263 ], [ 1.860483, 44.32194 ], [ 1.880166, 44.303109 ], [ 1.868779, 44.29204 ], [ 1.87319, 44.290822 ], [ 1.901391, 44.279116 ], [ 1.909854, 44.281415 ], [ 1.93638, 44.280883 ], [ 1.940271, 44.28255 ], [ 1.943413, 44.280015 ], [ 1.966238, 44.277594 ], [ 1.970633, 44.276348 ], [ 1.960638, 44.24882 ], [ 1.962021, 44.242339 ], [ 1.957699, 44.241767 ], [ 1.943065, 44.247586 ], [ 1.940187, 44.24479 ], [ 1.932163, 44.242647 ], [ 1.90835, 44.21245 ], [ 1.894638, 44.21281 ], [ 1.890347, 44.20757 ], [ 1.902943, 44.204 ], [ 1.905812, 44.19214 ], [ 1.91299, 44.18841 ], [ 1.911095, 44.185458 ], [ 1.915747, 44.18554 ], [ 1.922996, 44.18919 ], [ 1.931422, 44.187513 ], [ 1.934353, 44.17464 ], [ 1.94071, 44.16977 ], [ 1.946484, 44.18282 ], [ 1.96062, 44.184138 ], [ 1.977979, 44.179513 ], [ 1.980073, 44.176427 ], [ 1.973623, 44.171353 ], [ 1.975743, 44.16476 ], [ 1.997054, 44.15822 ], [ 1.990171, 44.149453 ], [ 1.983368, 44.15232 ], [ 1.968628, 44.14474 ], [ 1.955454, 44.148758 ], [ 1.941394, 44.14786 ], [ 1.932682, 44.15575 ], [ 1.922417, 44.16105 ], [ 1.919064, 44.16308 ], [ 1.909789, 44.163562 ], [ 1.894931, 44.15597 ], [ 1.91477, 44.1424 ], [ 1.918422, 44.140298 ], [ 1.914388, 44.136189 ], [ 1.903269, 44.13076 ], [ 1.891553, 44.1413 ], [ 1.882758, 44.138527 ], [ 1.864961, 44.14342 ], [ 1.850339, 44.13517 ], [ 1.846177, 44.135808 ], [ 1.841019, 44.14417 ], [ 1.836775, 44.143891 ], [ 1.830068, 44.132028 ], [ 1.838957, 44.117207 ], [ 1.840519, 44.11415 ], [ 1.836598, 44.1061 ], [ 1.83743, 44.103256 ], [ 1.834477, 44.10596 ], [ 1.825328, 44.10797 ], [ 1.809295, 44.124351 ], [ 1.805673, 44.126598 ], [ 1.80385, 44.12358 ], [ 1.787708, 44.10874 ], [ 1.792808, 44.099803 ], [ 1.781724, 44.09765 ], [ 1.777958, 44.096767 ], [ 1.773229, 44.09713 ], [ 1.765889, 44.105552 ], [ 1.746638, 44.11464 ], [ 1.733508, 44.11229 ], [ 1.722089, 44.1184 ], [ 1.722151, 44.115097 ], [ 1.703121, 44.116214 ], [ 1.689593, 44.11277 ], [ 1.671048, 44.116127 ], [ 1.661999, 44.11412 ], [ 1.658716, 44.116643 ], [ 1.652824, 44.10848 ], [ 1.654375, 44.099406 ], [ 1.653121, 44.096447 ], [ 1.656676, 44.094033 ], [ 1.669095, 44.0885 ], [ 1.66396, 44.07157 ], [ 1.666838, 44.064929 ], [ 1.680416, 44.064571 ], [ 1.693526, 44.060111 ], [ 1.704208, 44.04436 ], [ 1.700894, 44.04193 ], [ 1.689731, 44.02326 ], [ 1.672877, 44.017385 ], [ 1.66922, 44.01109 ], [ 1.664533, 44.01149 ], [ 1.660102, 44.01271 ], [ 1.651181, 44.011278 ], [ 1.657586, 43.99879 ], [ 1.654319, 43.99299 ], [ 1.64981, 43.992268 ], [ 1.637097, 43.994685 ], [ 1.634649, 43.99173 ], [ 1.627258, 43.983373 ], [ 1.618637, 43.97283 ], [ 1.621945, 43.96386 ], [ 1.622719, 43.9607 ], [ 1.618384, 43.959129 ], [ 1.589318, 43.9604 ], [ 1.566416, 43.96531 ], [ 1.552291, 43.96304 ], [ 1.5502, 43.959984 ], [ 1.543666, 43.95675 ], [ 1.535268, 43.95967 ], [ 1.539563, 43.953973 ], [ 1.538736, 43.947346 ], [ 1.565952, 43.944088 ], [ 1.57311, 43.939834 ], [ 1.57752, 43.938812 ], [ 1.572858, 43.93497 ], [ 1.573867, 43.932481 ], [ 1.573536, 43.919786 ], [ 1.56963, 43.918142 ], [ 1.565019, 43.917307 ], [ 1.555617, 43.918317 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "84", "CODE_DEPT": "83", "NOM_DEPT": "VAR", "CODE_CHF": "137", "NOM_CHF": "TOULON", "X_CHF_LIEU": "9386", "Y_CHF_LIEU": "62294", "X_CENTROID": "9626", "Y_CENTROID": "62658", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.933726, 43.48007 ], [ 6.924581, 43.47205 ], [ 6.92131, 43.451306 ], [ 6.894866, 43.436938 ], [ 6.893798, 43.43028 ], [ 6.890097, 43.428012 ], [ 6.874789, 43.42625 ], [ 6.864121, 43.43283 ], [ 6.858407, 43.427795 ], [ 6.8575, 43.41428 ], [ 6.854202, 43.411903 ], [ 6.841518, 43.416227 ], [ 6.836735, 43.416396 ], [ 6.827512, 43.417606 ], [ 6.787761, 43.408952 ], [ 6.766054, 43.42159 ], [ 6.763676, 43.42453 ], [ 6.759109, 43.42366 ], [ 6.746774, 43.418683 ], [ 6.735328, 43.407767 ], [ 6.729116, 43.39484 ], [ 6.730766, 43.388281 ], [ 6.714532, 43.36808 ], [ 6.718038, 43.358341 ], [ 6.713815, 43.345878 ], [ 6.686824, 43.341579 ], [ 6.682171, 43.340981 ], [ 6.668772, 43.331305 ], [ 6.665875, 43.321074 ], [ 6.668219, 43.3143 ], [ 6.632801, 43.305711 ], [ 6.625814, 43.3007 ], [ 6.62073, 43.295922 ], [ 6.585295, 43.27922 ], [ 6.585382, 43.2725 ], [ 6.586694, 43.269224 ], [ 6.584916, 43.266788 ], [ 6.590809, 43.26348 ], [ 6.594155, 43.26219 ], [ 6.619595, 43.2641 ], [ 6.623616, 43.26534 ], [ 6.643543, 43.27397 ], [ 6.663851, 43.26539 ], [ 6.675978, 43.278369 ], [ 6.696529, 43.264601 ], [ 6.688909, 43.252 ], [ 6.681031, 43.24844 ], [ 6.677776, 43.24588 ], [ 6.665308, 43.24237 ], [ 6.662453, 43.22514 ], [ 6.665254, 43.211466 ], [ 6.677862, 43.197962 ], [ 6.659517, 43.195156 ], [ 6.644396, 43.18684 ], [ 6.640826, 43.18038 ], [ 6.644069, 43.170755 ], [ 6.647, 43.16944 ], [ 6.64659, 43.167806 ], [ 6.645069, 43.16749 ], [ 6.633894, 43.171521 ], [ 6.616284, 43.16259 ], [ 6.598473, 43.18292 ], [ 6.556951, 43.188178 ], [ 6.552277, 43.187423 ], [ 6.537324, 43.178938 ], [ 6.535731, 43.165979 ], [ 6.521828, 43.1641 ], [ 6.494056, 43.150898 ], [ 6.490166, 43.15287 ], [ 6.465464, 43.15682 ], [ 6.452186, 43.154417 ], [ 6.448245, 43.15266 ], [ 6.440647, 43.144846 ], [ 6.429318, 43.150555 ], [ 6.405947, 43.14833 ], [ 6.368112, 43.13564 ], [ 6.36391, 43.12575 ], [ 6.360394, 43.11623 ], [ 6.36638, 43.092627 ], [ 6.363991, 43.08956 ], [ 6.354469, 43.08888 ], [ 6.326106, 43.092466 ], [ 6.312936, 43.106798 ], [ 6.294076, 43.108718 ], [ 6.28631, 43.111296 ], [ 6.286518, 43.114521 ], [ 6.276057, 43.12009 ], [ 6.271819, 43.12099 ], [ 6.258864, 43.120069 ], [ 6.238769, 43.113222 ], [ 6.234334, 43.11301 ], [ 6.201047, 43.115429 ], [ 6.180415, 43.106454 ], [ 6.162001, 43.09032 ], [ 6.153594, 43.073748 ], [ 6.149596, 43.052857 ], [ 6.152821, 43.03906 ], [ 6.163394, 43.030895 ], [ 6.149844, 43.027422 ], [ 6.133858, 43.034441 ], [ 6.120455, 43.032536 ], [ 6.116722, 43.034759 ], [ 6.099998, 43.028564 ], [ 6.093452, 43.03716 ], [ 6.101109, 43.04107 ], [ 6.119959, 43.039958 ], [ 6.130489, 43.04679 ], [ 6.132424, 43.057147 ], [ 6.12708, 43.07433 ], [ 6.113569, 43.0836 ], [ 6.108785, 43.083918 ], [ 6.08151, 43.087357 ], [ 6.051102, 43.07918 ], [ 6.037018, 43.0787 ], [ 6.032563, 43.07759 ], [ 6.019387, 43.080368 ], [ 6.021986, 43.09557 ], [ 5.997932, 43.104711 ], [ 5.993279, 43.104994 ], [ 5.97906, 43.10654 ], [ 5.929023, 43.104996 ], [ 5.931487, 43.115082 ], [ 5.920388, 43.12104 ], [ 5.91136, 43.11965 ], [ 5.905189, 43.114687 ], [ 5.891964, 43.117023 ], [ 5.887337, 43.116148 ], [ 5.885618, 43.117148 ], [ 5.88496, 43.104205 ], [ 5.907216, 43.10028 ], [ 5.906443, 43.093682 ], [ 5.895977, 43.082597 ], [ 5.903883, 43.078901 ], [ 5.915412, 43.084026 ], [ 5.92805, 43.080686 ], [ 5.941315, 43.0827 ], [ 5.948441, 43.078203 ], [ 5.950055, 43.07494 ], [ 5.945829, 43.069103 ], [ 5.932012, 43.071146 ], [ 5.913907, 43.067065 ], [ 5.903569, 43.07337 ], [ 5.896593, 43.07774 ], [ 5.887468, 43.07645 ], [ 5.872799, 43.067594 ], [ 5.860028, 43.049367 ], [ 5.847225, 43.04929 ], [ 5.843581, 43.047049 ], [ 5.829989, 43.049883 ], [ 5.814742, 43.06289 ], [ 5.797819, 43.069038 ], [ 5.79584, 43.072275 ], [ 5.804867, 43.08022 ], [ 5.810012, 43.093632 ], [ 5.807881, 43.100338 ], [ 5.812705, 43.106332 ], [ 5.810253, 43.113002 ], [ 5.807265, 43.11572 ], [ 5.793786, 43.113907 ], [ 5.7711, 43.1168 ], [ 5.779776, 43.132189 ], [ 5.770334, 43.13901 ], [ 5.750781, 43.13127 ], [ 5.748323, 43.134093 ], [ 5.730274, 43.13546 ], [ 5.725912, 43.136526 ], [ 5.718975, 43.14553 ], [ 5.695909, 43.145092 ], [ 5.684359, 43.156009 ], [ 5.684189, 43.1595 ], [ 5.693446, 43.16741 ], [ 5.692399, 43.174222 ], [ 5.685827, 43.17913 ], [ 5.676397, 43.178122 ], [ 5.671875, 43.17927 ], [ 5.673562, 43.181963 ], [ 5.675956, 43.190643 ], [ 5.678393, 43.21163 ], [ 5.678421, 43.215161 ], [ 5.682372, 43.235304 ], [ 5.701154, 43.23892 ], [ 5.704584, 43.241447 ], [ 5.70169, 43.246946 ], [ 5.738292, 43.26193 ], [ 5.760763, 43.267225 ], [ 5.760788, 43.27032 ], [ 5.762613, 43.282444 ], [ 5.758411, 43.283964 ], [ 5.737105, 43.302067 ], [ 5.727039, 43.317488 ], [ 5.695071, 43.31374 ], [ 5.690692, 43.312629 ], [ 5.67974, 43.31885 ], [ 5.670125, 43.318864 ], [ 5.683491, 43.32184 ], [ 5.689808, 43.330924 ], [ 5.688016, 43.340887 ], [ 5.703233, 43.35373 ], [ 5.703385, 43.35724 ], [ 5.694293, 43.365413 ], [ 5.684662, 43.39593 ], [ 5.682788, 43.399166 ], [ 5.702862, 43.408127 ], [ 5.72205, 43.40867 ], [ 5.744663, 43.402827 ], [ 5.749077, 43.401409 ], [ 5.778369, 43.41001 ], [ 5.787168, 43.417053 ], [ 5.788349, 43.420263 ], [ 5.787862, 43.42041 ], [ 5.773787, 43.421763 ], [ 5.750885, 43.434851 ], [ 5.72801, 43.46589 ], [ 5.703791, 43.482307 ], [ 5.698933, 43.48206 ], [ 5.703216, 43.49531 ], [ 5.714255, 43.50126 ], [ 5.71766, 43.535326 ], [ 5.725661, 43.55112 ], [ 5.710063, 43.553963 ], [ 5.70698, 43.55605 ], [ 5.691893, 43.56324 ], [ 5.673857, 43.56434 ], [ 5.669315, 43.564641 ], [ 5.657371, 43.575665 ], [ 5.688412, 43.58486 ], [ 5.681586, 43.61212 ], [ 5.703071, 43.64365 ], [ 5.716038, 43.647021 ], [ 5.718973, 43.649838 ], [ 5.770163, 43.66047 ], [ 5.794457, 43.660708 ], [ 5.799206, 43.659929 ], [ 5.801513, 43.673879 ], [ 5.810585, 43.68611 ], [ 5.813248, 43.68905 ], [ 5.808917, 43.690561 ], [ 5.78849, 43.69687 ], [ 5.784025, 43.703032 ], [ 5.78368, 43.716628 ], [ 5.776958, 43.721365 ], [ 5.753393, 43.724431 ], [ 5.755339, 43.72693 ], [ 5.757333, 43.729409 ], [ 5.778678, 43.752709 ], [ 5.781343, 43.75566 ], [ 5.82767, 43.74767 ], [ 5.835113, 43.743484 ], [ 5.848607, 43.72164 ], [ 5.849043, 43.71818 ], [ 5.855749, 43.723189 ], [ 5.874983, 43.72299 ], [ 5.888624, 43.72636 ], [ 5.903144, 43.735513 ], [ 5.905002, 43.75278 ], [ 5.918742, 43.75548 ], [ 5.922661, 43.757539 ], [ 5.925662, 43.755964 ], [ 5.928999, 43.7498 ], [ 5.938029, 43.74907 ], [ 5.943609, 43.725944 ], [ 5.951306, 43.721828 ], [ 5.96521, 43.7225 ], [ 5.97993, 43.71548 ], [ 5.984534, 43.71449 ], [ 5.986794, 43.698564 ], [ 5.987772, 43.69542 ], [ 6.004165, 43.688288 ], [ 6.011191, 43.675352 ], [ 6.018883, 43.67112 ], [ 6.021735, 43.668288 ], [ 6.038784, 43.679592 ], [ 6.034615, 43.692711 ], [ 6.047019, 43.69703 ], [ 6.051561, 43.697712 ], [ 6.056553, 43.700084 ], [ 6.066238, 43.70479 ], [ 6.070405, 43.704944 ], [ 6.085981, 43.71666 ], [ 6.091826, 43.7258 ], [ 6.090296, 43.728974 ], [ 6.095298, 43.72961 ], [ 6.111011, 43.745665 ], [ 6.11575, 43.74556 ], [ 6.124387, 43.738339 ], [ 6.128625, 43.73679 ], [ 6.136721, 43.73675 ], [ 6.140606, 43.737611 ], [ 6.16532, 43.74945 ], [ 6.182737, 43.762171 ], [ 6.184159, 43.76561 ], [ 6.18504, 43.768282 ], [ 6.188387, 43.77614 ], [ 6.207321, 43.79529 ], [ 6.219498, 43.799781 ], [ 6.224189, 43.79984 ], [ 6.233044, 43.798984 ], [ 6.245312, 43.80241 ], [ 6.24963, 43.80158 ], [ 6.257113, 43.7976 ], [ 6.267787, 43.778547 ], [ 6.312809, 43.7588 ], [ 6.329213, 43.746226 ], [ 6.35451, 43.736515 ], [ 6.376266, 43.7423 ], [ 6.378913, 43.739372 ], [ 6.383541, 43.734437 ], [ 6.412788, 43.762256 ], [ 6.415852, 43.79005 ], [ 6.438807, 43.7942 ], [ 6.438808, 43.797745 ], [ 6.44893, 43.793615 ], [ 6.456835, 43.79313 ], [ 6.469959, 43.797523 ], [ 6.487059, 43.79225 ], [ 6.520281, 43.806925 ], [ 6.538469, 43.795518 ], [ 6.545273, 43.782523 ], [ 6.542339, 43.77589 ], [ 6.551026, 43.78125 ], [ 6.554071, 43.783435 ], [ 6.578409, 43.795654 ], [ 6.581177, 43.79815 ], [ 6.58621, 43.802451 ], [ 6.586912, 43.80532 ], [ 6.623513, 43.804451 ], [ 6.624163, 43.797637 ], [ 6.631781, 43.78971 ], [ 6.636396, 43.788951 ], [ 6.636148, 43.78622 ], [ 6.637802, 43.78096 ], [ 6.645036, 43.77722 ], [ 6.64192, 43.771434 ], [ 6.64185, 43.768184 ], [ 6.651067, 43.76575 ], [ 6.656379, 43.752203 ], [ 6.657423, 43.74872 ], [ 6.682462, 43.757585 ], [ 6.700874, 43.75383 ], [ 6.713283, 43.743764 ], [ 6.712452, 43.740342 ], [ 6.754162, 43.737857 ], [ 6.75727, 43.727858 ], [ 6.766196, 43.72003 ], [ 6.773193, 43.69711 ], [ 6.774704, 43.693851 ], [ 6.767122, 43.68957 ], [ 6.763489, 43.683024 ], [ 6.761134, 43.665891 ], [ 6.766017, 43.66051 ], [ 6.775052, 43.6596 ], [ 6.787139, 43.646097 ], [ 6.789749, 43.643367 ], [ 6.799868, 43.628348 ], [ 6.813587, 43.6297 ], [ 6.824612, 43.623192 ], [ 6.838426, 43.61688 ], [ 6.838665, 43.6138 ], [ 6.853158, 43.6064 ], [ 6.856823, 43.60836 ], [ 6.864765, 43.605159 ], [ 6.878763, 43.60666 ], [ 6.883712, 43.6065 ], [ 6.890741, 43.60961 ], [ 6.89447, 43.61102 ], [ 6.907869, 43.59934 ], [ 6.911991, 43.59833 ], [ 6.90031, 43.58315 ], [ 6.907831, 43.570943 ], [ 6.906637, 43.56415 ], [ 6.901986, 43.564253 ], [ 6.88712, 43.551823 ], [ 6.880004, 43.53578 ], [ 6.879135, 43.532454 ], [ 6.881414, 43.529345 ], [ 6.890768, 43.527623 ], [ 6.895211, 43.521932 ], [ 6.88423, 43.502536 ], [ 6.899554, 43.496022 ], [ 6.903919, 43.495072 ], [ 6.912292, 43.492654 ], [ 6.915656, 43.48302 ], [ 6.929232, 43.48092 ], [ 6.933726, 43.48007 ] ] ], [ [ [ 6.198263, 42.982033 ], [ 6.196415, 42.983204 ], [ 6.19528, 42.988395 ], [ 6.191609, 42.99076 ], [ 6.1763, 42.996 ], [ 6.163015, 42.99925 ], [ 6.163453, 43.00077 ], [ 6.172399, 43.00626 ], [ 6.17933, 43.00786 ], [ 6.199031, 43.00172 ], [ 6.21098, 43.002905 ], [ 6.214421, 43.00523 ], [ 6.218038, 43.011839 ], [ 6.229773, 43.01048 ], [ 6.233982, 43.012261 ], [ 6.239612, 43.023883 ], [ 6.242019, 43.023279 ], [ 6.244071, 43.02004 ], [ 6.247721, 43.01775 ], [ 6.251653, 43.0041 ], [ 6.249463, 42.999183 ], [ 6.247704, 42.99799 ], [ 6.238313, 42.997153 ], [ 6.228222, 42.992983 ], [ 6.214866, 42.98984 ], [ 6.207668, 42.98295 ], [ 6.198263, 42.982033 ] ] ], [ [ [ 6.472761, 43.020037 ], [ 6.472229, 43.018326 ], [ 6.459776, 43.013992 ], [ 6.451052, 43.016856 ], [ 6.44352, 43.00779 ], [ 6.437651, 43.004997 ], [ 6.433113, 43.00873 ], [ 6.434805, 43.01555 ], [ 6.433698, 43.01715 ], [ 6.434826, 43.020445 ], [ 6.439714, 43.024457 ], [ 6.458014, 43.02845 ], [ 6.463223, 43.0382 ], [ 6.470504, 43.045209 ], [ 6.472538, 43.04618 ], [ 6.474595, 43.04712 ], [ 6.504976, 43.052608 ], [ 6.508841, 43.04853 ], [ 6.508485, 43.045282 ], [ 6.502137, 43.042806 ], [ 6.490071, 43.04219 ], [ 6.486049, 43.040223 ], [ 6.479925, 43.030635 ], [ 6.473687, 43.02525 ], [ 6.472761, 43.020037 ] ] ], [ [ [ 6.397098, 42.9928 ], [ 6.387298, 42.997801 ], [ 6.372874, 42.996922 ], [ 6.370849, 43.00154 ], [ 6.381625, 43.008403 ], [ 6.382863, 43.01174 ], [ 6.392092, 43.01307 ], [ 6.407759, 43.017903 ], [ 6.411792, 43.016389 ], [ 6.412815, 43.011271 ], [ 6.418952, 43.011751 ], [ 6.417089, 43.006994 ], [ 6.405284, 42.995846 ], [ 6.398567, 42.99422 ], [ 6.397098, 42.9928 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "85", "CODE_DEPT": "84", "NOM_DEPT": "VAUCLUSE", "CODE_CHF": "007", "NOM_CHF": "AVIGNON", "X_CHF_LIEU": "8451", "Y_CHF_LIEU": "63182", "X_CENTROID": "8753", "Y_CENTROID": "63240", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.753393, 43.724431 ], [ 5.750437, 43.721561 ], [ 5.737583, 43.71653 ], [ 5.712048, 43.69057 ], [ 5.68289, 43.69271 ], [ 5.67803, 43.69278 ], [ 5.65704, 43.685392 ], [ 5.641181, 43.672138 ], [ 5.623852, 43.66615 ], [ 5.61987, 43.66532 ], [ 5.606437, 43.658725 ], [ 5.601712, 43.65927 ], [ 5.57325, 43.661955 ], [ 5.549617, 43.659802 ], [ 5.530189, 43.6593 ], [ 5.487564, 43.668037 ], [ 5.483312, 43.669205 ], [ 5.445436, 43.67997 ], [ 5.440745, 43.68049 ], [ 5.412543, 43.692971 ], [ 5.408725, 43.69483 ], [ 5.388126, 43.70219 ], [ 5.384307, 43.70314 ], [ 5.370535, 43.709189 ], [ 5.366694, 43.71054 ], [ 5.343699, 43.71877 ], [ 5.33963, 43.72034 ], [ 5.325916, 43.729237 ], [ 5.322493, 43.731786 ], [ 5.3153, 43.736566 ], [ 5.28639, 43.74014 ], [ 5.281813, 43.74057 ], [ 5.264103, 43.744232 ], [ 5.245554, 43.747137 ], [ 5.240966, 43.747322 ], [ 5.236378, 43.74747 ], [ 5.231553, 43.747623 ], [ 5.18623, 43.735651 ], [ 5.138788, 43.752797 ], [ 5.135018, 43.75427 ], [ 5.123784, 43.758753 ], [ 5.119674, 43.76046 ], [ 5.090664, 43.77211 ], [ 5.086392, 43.77385 ], [ 5.048139, 43.789727 ], [ 5.042624, 43.8065 ], [ 5.04187, 43.809388 ], [ 5.035354, 43.820141 ], [ 5.033312, 43.823213 ], [ 4.997651, 43.84485 ], [ 4.995428, 43.84671 ], [ 4.9915, 43.85072 ], [ 4.988513, 43.853538 ], [ 4.969577, 43.869707 ], [ 4.930503, 43.88437 ], [ 4.926581, 43.886165 ], [ 4.922008, 43.886759 ], [ 4.907485, 43.88644 ], [ 4.881295, 43.901502 ], [ 4.876904, 43.903135 ], [ 4.854593, 43.910762 ], [ 4.810454, 43.91401 ], [ 4.805819, 43.91469 ], [ 4.773363, 43.919349 ], [ 4.769047, 43.919914 ], [ 4.738793, 43.923866 ], [ 4.741431, 43.92664 ], [ 4.748232, 43.931132 ], [ 4.778539, 43.93879 ], [ 4.791981, 43.952271 ], [ 4.814369, 43.964676 ], [ 4.810178, 43.977915 ], [ 4.812967, 43.988006 ], [ 4.8363, 43.985033 ], [ 4.840941, 43.98592 ], [ 4.844996, 43.992142 ], [ 4.845344, 43.995593 ], [ 4.843118, 44.00042 ], [ 4.842997, 44.00399 ], [ 4.839417, 44.014022 ], [ 4.82029, 44.01701 ], [ 4.813646, 44.03404 ], [ 4.807764, 44.03977 ], [ 4.799013, 44.04601 ], [ 4.795865, 44.04791 ], [ 4.792418, 44.049848 ], [ 4.78741, 44.054918 ], [ 4.786807, 44.064353 ], [ 4.784113, 44.067215 ], [ 4.762887, 44.07487 ], [ 4.760035, 44.078344 ], [ 4.760117, 44.08179 ], [ 4.757721, 44.087933 ], [ 4.752939, 44.08798 ], [ 4.727819, 44.07845 ], [ 4.71973, 44.085584 ], [ 4.719627, 44.088781 ], [ 4.705082, 44.10817 ], [ 4.705735, 44.1116 ], [ 4.718133, 44.14068 ], [ 4.718725, 44.152381 ], [ 4.71719, 44.159094 ], [ 4.717117, 44.1625 ], [ 4.717296, 44.16593 ], [ 4.717361, 44.169328 ], [ 4.716251, 44.176043 ], [ 4.721891, 44.18467 ], [ 4.717272, 44.18997 ], [ 4.708316, 44.191724 ], [ 4.703839, 44.197663 ], [ 4.70483, 44.201078 ], [ 4.710297, 44.206836 ], [ 4.708595, 44.2135 ], [ 4.699936, 44.216108 ], [ 4.681893, 44.211741 ], [ 4.673657, 44.21471 ], [ 4.672933, 44.2186 ], [ 4.67736, 44.234975 ], [ 4.653075, 44.25591 ], [ 4.651479, 44.259153 ], [ 4.648551, 44.26747 ], [ 4.649224, 44.27036 ], [ 4.652364, 44.29127 ], [ 4.653181, 44.294807 ], [ 4.651542, 44.32632 ], [ 4.650615, 44.329806 ], [ 4.654887, 44.32835 ], [ 4.679884, 44.320692 ], [ 4.713017, 44.320649 ], [ 4.717089, 44.325907 ], [ 4.721663, 44.326592 ], [ 4.758399, 44.32533 ], [ 4.762995, 44.3251 ], [ 4.771902, 44.317537 ], [ 4.780956, 44.31712 ], [ 4.799988, 44.303549 ], [ 4.804563, 44.303897 ], [ 4.802926, 44.280793 ], [ 4.804479, 44.27762 ], [ 4.805857, 44.27484 ], [ 4.803999, 44.26921 ], [ 4.812513, 44.258019 ], [ 4.813118, 44.24521 ], [ 4.812141, 44.242062 ], [ 4.813448, 44.23242 ], [ 4.820886, 44.228889 ], [ 4.825342, 44.22845 ], [ 4.853171, 44.244366 ], [ 4.857094, 44.24599 ], [ 4.876029, 44.260266 ], [ 4.88025, 44.26177 ], [ 4.896965, 44.26441 ], [ 4.901283, 44.26428 ], [ 4.903477, 44.259478 ], [ 4.927221, 44.26211 ], [ 4.932031, 44.26245 ], [ 4.941528, 44.26941 ], [ 4.967555, 44.277726 ], [ 4.971688, 44.279426 ], [ 4.985462, 44.285517 ], [ 4.989594, 44.28577 ], [ 5.002729, 44.28537 ], [ 5.013072, 44.291074 ], [ 5.01715, 44.292242 ], [ 5.024772, 44.296784 ], [ 5.0295, 44.29789 ], [ 5.056515, 44.3054 ], [ 5.060245, 44.307614 ], [ 5.073922, 44.286944 ], [ 5.076512, 44.284086 ], [ 5.086471, 44.283933 ], [ 5.109641, 44.280367 ], [ 5.149503, 44.30066 ], [ 5.153262, 44.31015 ], [ 5.161976, 44.313387 ], [ 5.166434, 44.314857 ], [ 5.168839, 44.314125 ], [ 5.172827, 44.30821 ], [ 5.169743, 44.30201 ], [ 5.170106, 44.298738 ], [ 5.168429, 44.292243 ], [ 5.150647, 44.281877 ], [ 5.147458, 44.26917 ], [ 5.160531, 44.26562 ], [ 5.162089, 44.248948 ], [ 5.161548, 44.245591 ], [ 5.158751, 44.24287 ], [ 5.151814, 44.238308 ], [ 5.150007, 44.235237 ], [ 5.163507, 44.226355 ], [ 5.167913, 44.225304 ], [ 5.175606, 44.22087 ], [ 5.208775, 44.21442 ], [ 5.23815, 44.21323 ], [ 5.240446, 44.23083 ], [ 5.244512, 44.230707 ], [ 5.248536, 44.23112 ], [ 5.252657, 44.23113 ], [ 5.256509, 44.23006 ], [ 5.276283, 44.22099 ], [ 5.280668, 44.219796 ], [ 5.291804, 44.214647 ], [ 5.299429, 44.206924 ], [ 5.303298, 44.20539 ], [ 5.303624, 44.208799 ], [ 5.317996, 44.208794 ], [ 5.335726, 44.20431 ], [ 5.35579, 44.213599 ], [ 5.372391, 44.206686 ], [ 5.37667, 44.20513 ], [ 5.380358, 44.202911 ], [ 5.384529, 44.20119 ], [ 5.383188, 44.19907 ], [ 5.381281, 44.192382 ], [ 5.38665, 44.17927 ], [ 5.383201, 44.158797 ], [ 5.383241, 44.155285 ], [ 5.39695, 44.152338 ], [ 5.415834, 44.154652 ], [ 5.422917, 44.150039 ], [ 5.431059, 44.15151 ], [ 5.435756, 44.152249 ], [ 5.436695, 44.14207 ], [ 5.443033, 44.13795 ], [ 5.447571, 44.136758 ], [ 5.451161, 44.12113 ], [ 5.454716, 44.11923 ], [ 5.493838, 44.115436 ], [ 5.498788, 44.11572 ], [ 5.49816, 44.073267 ], [ 5.501567, 44.06694 ], [ 5.503023, 44.06371 ], [ 5.517337, 44.06347 ], [ 5.540038, 44.068458 ], [ 5.544501, 44.06967 ], [ 5.542776, 44.02435 ], [ 5.519542, 43.993959 ], [ 5.514257, 43.976792 ], [ 5.51317, 43.97336 ], [ 5.507972, 43.9578 ], [ 5.511577, 43.94852 ], [ 5.512674, 43.9454 ], [ 5.525213, 43.946861 ], [ 5.541171, 43.940828 ], [ 5.544992, 43.939055 ], [ 5.562939, 43.94245 ], [ 5.567633, 43.94264 ], [ 5.569475, 43.939544 ], [ 5.583383, 43.915913 ], [ 5.60656, 43.91608 ], [ 5.591367, 43.890674 ], [ 5.59029, 43.887233 ], [ 5.572737, 43.863508 ], [ 5.561328, 43.85746 ], [ 5.557468, 43.855458 ], [ 5.548657, 43.84789 ], [ 5.544566, 43.817233 ], [ 5.547911, 43.816398 ], [ 5.551256, 43.81722 ], [ 5.563903, 43.820867 ], [ 5.571883, 43.82934 ], [ 5.599493, 43.82714 ], [ 5.627694, 43.830792 ], [ 5.631373, 43.82857 ], [ 5.643087, 43.826927 ], [ 5.646917, 43.826104 ], [ 5.650596, 43.82525 ], [ 5.654445, 43.825111 ], [ 5.657024, 43.81851 ], [ 5.670121, 43.80872 ], [ 5.674483, 43.80736 ], [ 5.684298, 43.789453 ], [ 5.690681, 43.785127 ], [ 5.695001, 43.78421 ], [ 5.705321, 43.779587 ], [ 5.713558, 43.78112 ], [ 5.716274, 43.756931 ], [ 5.748017, 43.74148 ], [ 5.757333, 43.729409 ], [ 5.755339, 43.72693 ], [ 5.753393, 43.724431 ] ] ], [ [ [ 4.89291, 44.36483 ], [ 4.893313, 44.367873 ], [ 4.903708, 44.37276 ], [ 4.907085, 44.374631 ], [ 4.911091, 44.384728 ], [ 4.910162, 44.39515 ], [ 4.918515, 44.407785 ], [ 4.948766, 44.41664 ], [ 4.951931, 44.41915 ], [ 4.955663, 44.420251 ], [ 4.959697, 44.42027 ], [ 4.970846, 44.430129 ], [ 4.984073, 44.42318 ], [ 4.98861, 44.4232 ], [ 5.006196, 44.41172 ], [ 5.013923, 44.415627 ], [ 5.01876, 44.415979 ], [ 5.017716, 44.407138 ], [ 5.013498, 44.405441 ], [ 5.018616, 44.392588 ], [ 5.032759, 44.390896 ], [ 5.0476, 44.38212 ], [ 5.070882, 44.383225 ], [ 5.072028, 44.37851 ], [ 5.07032, 44.37645 ], [ 5.066647, 44.37419 ], [ 5.053313, 44.36483 ], [ 5.025072, 44.360998 ], [ 5.021478, 44.344352 ], [ 5.009006, 44.33377 ], [ 5.013335, 44.325655 ], [ 4.997298, 44.31837 ], [ 4.992205, 44.31262 ], [ 4.987018, 44.292719 ], [ 4.983551, 44.29503 ], [ 4.921836, 44.308797 ], [ 4.917099, 44.3085 ], [ 4.889463, 44.304019 ], [ 4.891209, 44.30711 ], [ 4.890664, 44.313723 ], [ 4.882096, 44.32532 ], [ 4.895328, 44.33806 ], [ 4.891418, 44.340065 ], [ 4.87911, 44.34537 ], [ 4.869527, 44.34508 ], [ 4.873588, 44.351022 ], [ 4.892057, 44.36146 ], [ 4.89291, 44.36483 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "86", "CODE_DEPT": "85", "NOM_DEPT": "VENDEE", "CODE_CHF": "191", "NOM_CHF": "LA ROCHE-SUR-YON", "X_CHF_LIEU": "3616", "Y_CHF_LIEU": "66283", "X_CENTROID": "3724", "Y_CENTROID": "66280", "CODE_REG": "52", "NOM_REGION": "PAYS-DE-LA-LOIRE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.129404, 46.310277 ], [ -1.14485, 46.314576 ], [ -1.14801, 46.316598 ], [ -1.159802, 46.32243 ], [ -1.163774, 46.32434 ], [ -1.169668, 46.31954 ], [ -1.19737, 46.315393 ], [ -1.202044, 46.316086 ], [ -1.195946, 46.300567 ], [ -1.207092, 46.286142 ], [ -1.207608, 46.28287 ], [ -1.211879, 46.280906 ], [ -1.206537, 46.27149 ], [ -1.210155, 46.26983 ], [ -1.223728, 46.27486 ], [ -1.265424, 46.2999 ], [ -1.299067, 46.322537 ], [ -1.303407, 46.320624 ], [ -1.295244, 46.29708 ], [ -1.278243, 46.28881 ], [ -1.283298, 46.28825 ], [ -1.297512, 46.2915 ], [ -1.300917, 46.29427 ], [ -1.324029, 46.328085 ], [ -1.341475, 46.341048 ], [ -1.350964, 46.343779 ], [ -1.355165, 46.345837 ], [ -1.364669, 46.347926 ], [ -1.371781, 46.34599 ], [ -1.355758, 46.34201 ], [ -1.353404, 46.339429 ], [ -1.372921, 46.34315 ], [ -1.398041, 46.34089 ], [ -1.421946, 46.346637 ], [ -1.440193, 46.341039 ], [ -1.465388, 46.34276 ], [ -1.471553, 46.34807 ], [ -1.479711, 46.368461 ], [ -1.481596, 46.37174 ], [ -1.505168, 46.39939 ], [ -1.537968, 46.409242 ], [ -1.543127, 46.408883 ], [ -1.550666, 46.405462 ], [ -1.564277, 46.40685 ], [ -1.619316, 46.413011 ], [ -1.651348, 46.422831 ], [ -1.649013, 46.42588 ], [ -1.648817, 46.429411 ], [ -1.706677, 46.449995 ], [ -1.714284, 46.45903 ], [ -1.724147, 46.459277 ], [ -1.75946, 46.4774 ], [ -1.761022, 46.48064 ], [ -1.769978, 46.48896 ], [ -1.78275, 46.4943 ], [ -1.792481, 46.493406 ], [ -1.799923, 46.48907 ], [ -1.812599, 46.494319 ], [ -1.818351, 46.5146 ], [ -1.818474, 46.518059 ], [ -1.846336, 46.58133 ], [ -1.847696, 46.584699 ], [ -1.856094, 46.6084 ], [ -1.870706, 46.617787 ], [ -1.875722, 46.627587 ], [ -1.898379, 46.64126 ], [ -1.91975, 46.66867 ], [ -1.922682, 46.671525 ], [ -1.941714, 46.6917 ], [ -1.954849, 46.694687 ], [ -1.95974, 46.69397 ], [ -1.968936, 46.69416 ], [ -1.977774, 46.70302 ], [ -1.982924, 46.72026 ], [ -2.054992, 46.772112 ], [ -2.058248, 46.77492 ], [ -2.138629, 46.816391 ], [ -2.141989, 46.81897 ], [ -2.146519, 46.857634 ], [ -2.154597, 46.88816 ], [ -2.12029, 46.892216 ], [ -2.109842, 46.899484 ], [ -2.118898, 46.90212 ], [ -2.116728, 46.90895 ], [ -2.090021, 46.93013 ], [ -2.074534, 46.93785 ], [ -2.071213, 46.93517 ], [ -2.072749, 46.94184 ], [ -2.057905, 46.951572 ], [ -2.045238, 46.96689 ], [ -2.044643, 46.9804 ], [ -2.028141, 47.009568 ], [ -1.983312, 47.025994 ], [ -1.980414, 47.028906 ], [ -1.97631, 47.02875 ], [ -1.972218, 47.028584 ], [ -1.943608, 46.99512 ], [ -1.938925, 46.99351 ], [ -1.9177, 46.992375 ], [ -1.915735, 46.97558 ], [ -1.890506, 46.958676 ], [ -1.871782, 46.9531 ], [ -1.846398, 46.954154 ], [ -1.827145, 46.95098 ], [ -1.825555, 46.94764 ], [ -1.829087, 46.934702 ], [ -1.832106, 46.93209 ], [ -1.797702, 46.92798 ], [ -1.787902, 46.929422 ], [ -1.779732, 46.92533 ], [ -1.755205, 46.92969 ], [ -1.750245, 46.93049 ], [ -1.742287, 46.920974 ], [ -1.745423, 46.918905 ], [ -1.737883, 46.91399 ], [ -1.736259, 46.911526 ], [ -1.738078, 46.90541 ], [ -1.732279, 46.89028 ], [ -1.729528, 46.88771 ], [ -1.715256, 46.884724 ], [ -1.690948, 46.89007 ], [ -1.668471, 46.87659 ], [ -1.664178, 46.874703 ], [ -1.650611, 46.878914 ], [ -1.640486, 46.87849 ], [ -1.613571, 46.87321 ], [ -1.609602, 46.87123 ], [ -1.600872, 46.872968 ], [ -1.57794, 46.86509 ], [ -1.548511, 46.86008 ], [ -1.546259, 46.873021 ], [ -1.536755, 46.875263 ], [ -1.526798, 46.873833 ], [ -1.500595, 46.8834 ], [ -1.504373, 46.89292 ], [ -1.526956, 46.90574 ], [ -1.543341, 46.92252 ], [ -1.545933, 46.925477 ], [ -1.526616, 46.92525 ], [ -1.519976, 46.937781 ], [ -1.544151, 46.95829 ], [ -1.542958, 46.96165 ], [ -1.554272, 46.97865 ], [ -1.551626, 46.98494 ], [ -1.550895, 46.991422 ], [ -1.543644, 47.003775 ], [ -1.554425, 47.014983 ], [ -1.534341, 47.023431 ], [ -1.519996, 47.02567 ], [ -1.504315, 47.03909 ], [ -1.499845, 47.040689 ], [ -1.495824, 47.041505 ], [ -1.48279, 47.03833 ], [ -1.480637, 47.035431 ], [ -1.47313, 47.03112 ], [ -1.474979, 47.02161 ], [ -1.465618, 46.99933 ], [ -1.462869, 46.996532 ], [ -1.462634, 46.99002 ], [ -1.472223, 46.98741 ], [ -1.475681, 46.98113 ], [ -1.472347, 46.97079 ], [ -1.458498, 46.95623 ], [ -1.470196, 46.93622 ], [ -1.471736, 46.933189 ], [ -1.462548, 46.92666 ], [ -1.458268, 46.925838 ], [ -1.415448, 46.94435 ], [ -1.390452, 46.94803 ], [ -1.377802, 46.953769 ], [ -1.373372, 46.95208 ], [ -1.36616, 46.95669 ], [ -1.367089, 46.96623 ], [ -1.360369, 46.971094 ], [ -1.359059, 46.98113 ], [ -1.375472, 46.98889 ], [ -1.364064, 47.003777 ], [ -1.365391, 47.007144 ], [ -1.366917, 47.017366 ], [ -1.375944, 47.02966 ], [ -1.362682, 47.03983 ], [ -1.347471, 47.039471 ], [ -1.345721, 47.04573 ], [ -1.336458, 47.044069 ], [ -1.317961, 47.034303 ], [ -1.303526, 47.03438 ], [ -1.298726, 47.03471 ], [ -1.299588, 47.04404 ], [ -1.287282, 47.058313 ], [ -1.290826, 47.06721 ], [ -1.290343, 47.07042 ], [ -1.286754, 47.0764 ], [ -1.274855, 47.0803 ], [ -1.272681, 47.08317 ], [ -1.267884, 47.084269 ], [ -1.248522, 47.06856 ], [ -1.229934, 47.06376 ], [ -1.21686, 47.05349 ], [ -1.209355, 47.04962 ], [ -1.196769, 47.039766 ], [ -1.148571, 47.029554 ], [ -1.131994, 47.02297 ], [ -1.127501, 47.021456 ], [ -1.095473, 47.014782 ], [ -1.09057, 47.01532 ], [ -1.087586, 47.01316 ], [ -1.083305, 47.01268 ], [ -1.074205, 47.00947 ], [ -1.064663, 47.01069 ], [ -1.05132, 47.005892 ], [ -1.020849, 47.004984 ], [ -1.01611, 47.003644 ], [ -1.005048, 47.01849 ], [ -1.002264, 47.02129 ], [ -0.986265, 47.012964 ], [ -0.977324, 47.014336 ], [ -0.959132, 46.99812 ], [ -0.93682, 47.004376 ], [ -0.934878, 47.00756 ], [ -0.914903, 46.99544 ], [ -0.901294, 46.99144 ], [ -0.893938, 46.97896 ], [ -0.891961, 46.975827 ], [ -0.896251, 46.97468 ], [ -0.902217, 46.970315 ], [ -0.898223, 46.96807 ], [ -0.883243, 46.96852 ], [ -0.87779, 46.959141 ], [ -0.868023, 46.959361 ], [ -0.865305, 46.95284 ], [ -0.882299, 46.94988 ], [ -0.881, 46.94647 ], [ -0.876134, 46.945243 ], [ -0.851841, 46.9442 ], [ -0.85264, 46.93825 ], [ -0.830606, 46.93114 ], [ -0.824358, 46.921706 ], [ -0.809903, 46.91971 ], [ -0.813814, 46.91398 ], [ -0.820341, 46.908976 ], [ -0.818284, 46.902572 ], [ -0.83246, 46.88474 ], [ -0.819018, 46.881121 ], [ -0.795076, 46.86104 ], [ -0.793735, 46.857854 ], [ -0.788296, 46.854301 ], [ -0.786763, 46.851918 ], [ -0.777826, 46.84097 ], [ -0.773173, 46.840358 ], [ -0.761555, 46.833852 ], [ -0.757951, 46.83132 ], [ -0.738594, 46.82889 ], [ -0.729631, 46.821551 ], [ -0.714991, 46.82157 ], [ -0.71004, 46.82157 ], [ -0.701034, 46.8116 ], [ -0.6991, 46.808855 ], [ -0.703625, 46.80746 ], [ -0.718528, 46.79888 ], [ -0.720612, 46.78928 ], [ -0.725162, 46.78292 ], [ -0.726564, 46.76876 ], [ -0.719752, 46.75573 ], [ -0.716599, 46.752971 ], [ -0.707732, 46.74968 ], [ -0.698238, 46.751617 ], [ -0.695491, 46.74537 ], [ -0.698074, 46.735938 ], [ -0.688669, 46.725848 ], [ -0.684401, 46.72765 ], [ -0.673111, 46.720822 ], [ -0.655832, 46.700335 ], [ -0.660358, 46.69867 ], [ -0.678752, 46.686685 ], [ -0.657737, 46.67669 ], [ -0.654026, 46.67448 ], [ -0.636989, 46.663329 ], [ -0.640573, 46.661124 ], [ -0.647809, 46.656784 ], [ -0.650795, 46.644141 ], [ -0.658671, 46.640402 ], [ -0.657073, 46.633954 ], [ -0.643094, 46.637815 ], [ -0.633062, 46.636331 ], [ -0.613965, 46.620125 ], [ -0.617714, 46.61846 ], [ -0.627151, 46.6056 ], [ -0.616699, 46.59887 ], [ -0.618935, 46.592971 ], [ -0.613427, 46.58761 ], [ -0.624699, 46.57745 ], [ -0.622828, 46.57428 ], [ -0.617953, 46.5615 ], [ -0.6132, 46.562352 ], [ -0.608309, 46.56249 ], [ -0.603098, 46.542805 ], [ -0.602901, 46.53962 ], [ -0.602129, 46.53328 ], [ -0.608657, 46.52813 ], [ -0.628198, 46.528166 ], [ -0.642232, 46.52476 ], [ -0.638679, 46.519278 ], [ -0.64436, 46.51089 ], [ -0.634351, 46.504714 ], [ -0.632839, 46.501418 ], [ -0.625533, 46.49676 ], [ -0.628563, 46.479938 ], [ -0.617997, 46.47311 ], [ -0.616219, 46.46283 ], [ -0.608213, 46.454208 ], [ -0.610978, 46.45144 ], [ -0.61809, 46.448956 ], [ -0.620234, 46.439216 ], [ -0.636841, 46.43231 ], [ -0.634986, 46.429111 ], [ -0.640021, 46.415862 ], [ -0.632655, 46.403305 ], [ -0.637872, 46.3975 ], [ -0.620883, 46.39046 ], [ -0.619035, 46.39361 ], [ -0.611005, 46.413052 ], [ -0.601255, 46.41263 ], [ -0.581989, 46.40223 ], [ -0.572378, 46.40071 ], [ -0.569019, 46.39457 ], [ -0.54963, 46.3927 ], [ -0.541296, 46.38894 ], [ -0.5378, 46.38646 ], [ -0.540585, 46.38381 ], [ -0.557285, 46.364046 ], [ -0.559595, 46.36094 ], [ -0.578438, 46.356019 ], [ -0.602849, 46.359586 ], [ -0.608049, 46.34665 ], [ -0.619408, 46.33971 ], [ -0.637249, 46.334578 ], [ -0.636797, 46.324659 ], [ -0.643541, 46.31945 ], [ -0.647445, 46.3177 ], [ -0.652074, 46.317473 ], [ -0.655579, 46.3158 ], [ -0.672273, 46.316219 ], [ -0.676169, 46.31806 ], [ -0.697338, 46.325189 ], [ -0.70053, 46.322759 ], [ -0.707104, 46.318002 ], [ -0.716357, 46.31689 ], [ -0.719803, 46.314577 ], [ -0.718202, 46.30519 ], [ -0.726249, 46.303206 ], [ -0.750476, 46.304259 ], [ -0.753457, 46.306946 ], [ -0.775833, 46.318467 ], [ -0.780848, 46.31836 ], [ -0.792868, 46.32433 ], [ -0.802811, 46.32529 ], [ -0.807126, 46.331371 ], [ -0.797727, 46.33845 ], [ -0.803746, 46.34246 ], [ -0.81117, 46.338043 ], [ -0.82541, 46.336366 ], [ -0.828389, 46.339133 ], [ -0.836394, 46.34136 ], [ -0.846813, 46.33422 ], [ -0.8449, 46.324612 ], [ -0.848986, 46.31833 ], [ -0.863019, 46.31914 ], [ -0.860811, 46.32547 ], [ -0.86853, 46.325489 ], [ -0.870267, 46.322455 ], [ -0.886848, 46.326704 ], [ -0.88904, 46.32386 ], [ -0.895424, 46.31685 ], [ -0.912086, 46.312749 ], [ -0.915043, 46.31553 ], [ -0.933937, 46.31264 ], [ -0.958784, 46.32337 ], [ -0.943732, 46.336965 ], [ -0.93546, 46.356762 ], [ -0.93423, 46.360113 ], [ -0.932977, 46.362969 ], [ -0.927338, 46.370935 ], [ -0.951491, 46.361103 ], [ -0.964513, 46.3654 ], [ -0.966979, 46.362233 ], [ -0.978339, 46.3512 ], [ -1.017639, 46.35301 ], [ -1.05072, 46.34326 ], [ -1.053688, 46.349578 ], [ -1.055237, 46.346413 ], [ -1.073337, 46.326877 ], [ -1.080064, 46.322326 ], [ -1.078144, 46.319257 ], [ -1.095328, 46.31378 ], [ -1.1141, 46.316999 ], [ -1.117434, 46.32324 ], [ -1.121791, 46.3232 ], [ -1.123946, 46.31469 ], [ -1.129404, 46.310277 ] ] ], [ [ [ -2.301813, 46.989743 ], [ -2.301866, 46.99672 ], [ -2.29304, 47.00947 ], [ -2.301975, 47.02494 ], [ -2.276196, 47.027689 ], [ -2.260655, 47.02774 ], [ -2.255562, 47.027071 ], [ -2.23947, 47.01832 ], [ -2.224866, 47.01479 ], [ -2.220012, 47.008663 ], [ -2.219389, 46.99786 ], [ -2.223402, 46.99218 ], [ -2.242135, 46.99565 ], [ -2.246804, 46.994029 ], [ -2.234451, 46.99339 ], [ -2.234263, 46.97813 ], [ -2.232543, 46.975079 ], [ -2.222546, 46.97462 ], [ -2.19175, 46.962822 ], [ -2.187332, 46.96115 ], [ -2.160233, 46.95119 ], [ -2.149786, 46.939054 ], [ -2.150312, 46.90037 ], [ -2.152163, 46.897 ], [ -2.162589, 46.90473 ], [ -2.179251, 46.93434 ], [ -2.194495, 46.948613 ], [ -2.198075, 46.951177 ], [ -2.201718, 46.9537 ], [ -2.221958, 46.964732 ], [ -2.242603, 46.964913 ], [ -2.255007, 46.95869 ], [ -2.267264, 46.963959 ], [ -2.284562, 46.98178 ], [ -2.297644, 46.987579 ], [ -2.301813, 46.989743 ] ] ], [ [ [ -2.304793, 46.709424 ], [ -2.297019, 46.705046 ], [ -2.285959, 46.695341 ], [ -2.283506, 46.69224 ], [ -2.282903, 46.690491 ], [ -2.286363, 46.689664 ], [ -2.290098, 46.692054 ], [ -2.312454, 46.695216 ], [ -2.316916, 46.691093 ], [ -2.330215, 46.686026 ], [ -2.332654, 46.68549 ], [ -2.33331, 46.68723 ], [ -2.343371, 46.6927 ], [ -2.350769, 46.69165 ], [ -2.364988, 46.69538 ], [ -2.371376, 46.700809 ], [ -2.380857, 46.699714 ], [ -2.382384, 46.704796 ], [ -2.392909, 46.70998 ], [ -2.394348, 46.71152 ], [ -2.397488, 46.71617 ], [ -2.3982, 46.71805 ], [ -2.398815, 46.7233 ], [ -2.397846, 46.72491 ], [ -2.395634, 46.725887 ], [ -2.388471, 46.7279 ], [ -2.383211, 46.73163 ], [ -2.3808, 46.732469 ], [ -2.373113, 46.732775 ], [ -2.348115, 46.728321 ], [ -2.339132, 46.720004 ], [ -2.318904, 46.719266 ], [ -2.31084, 46.71236 ], [ -2.306086, 46.71097 ], [ -2.304793, 46.709424 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "87", "CODE_DEPT": "86", "NOM_DEPT": "VIENNE", "CODE_CHF": "194", "NOM_CHF": "POITIERS", "X_CHF_LIEU": "4959", "Y_CHF_LIEU": "66123", "X_CENTROID": "5055", "Y_CENTROID": "66102", "CODE_REG": "54", "NOM_REGION": "POITOU-CHARENTES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.823433, 46.12859 ], [ 0.820243, 46.131277 ], [ 0.80827, 46.136812 ], [ 0.78519, 46.13106 ], [ 0.747883, 46.13872 ], [ 0.729218, 46.135069 ], [ 0.725123, 46.136321 ], [ 0.712339, 46.13896 ], [ 0.711895, 46.13842 ], [ 0.710923, 46.135026 ], [ 0.707183, 46.129 ], [ 0.685596, 46.12073 ], [ 0.676447, 46.11253 ], [ 0.687453, 46.097255 ], [ 0.682508, 46.097208 ], [ 0.648819, 46.094659 ], [ 0.640102, 46.09169 ], [ 0.620563, 46.093178 ], [ 0.613616, 46.08856 ], [ 0.608968, 46.08974 ], [ 0.607706, 46.08661 ], [ 0.607353, 46.07778 ], [ 0.59568, 46.07266 ], [ 0.594834, 46.075725 ], [ 0.590854, 46.08116 ], [ 0.574107, 46.07813 ], [ 0.563209, 46.08915 ], [ 0.553329, 46.09004 ], [ 0.539973, 46.085558 ], [ 0.538878, 46.088904 ], [ 0.536932, 46.095619 ], [ 0.521014, 46.11261 ], [ 0.504334, 46.11933 ], [ 0.508685, 46.13194 ], [ 0.504155, 46.13298 ], [ 0.495224, 46.135284 ], [ 0.486249, 46.12808 ], [ 0.472303, 46.130136 ], [ 0.47028, 46.12707 ], [ 0.46296, 46.11136 ], [ 0.455705, 46.1069 ], [ 0.451133, 46.108004 ], [ 0.446452, 46.103655 ], [ 0.443259, 46.10157 ], [ 0.448793, 46.09619 ], [ 0.445706, 46.09352 ], [ 0.447431, 46.08704 ], [ 0.466899, 46.087455 ], [ 0.475703, 46.08467 ], [ 0.474218, 46.07445 ], [ 0.478007, 46.06833 ], [ 0.480651, 46.06543 ], [ 0.471089, 46.06677 ], [ 0.466101, 46.06097 ], [ 0.446351, 46.051235 ], [ 0.413287, 46.04909 ], [ 0.41227, 46.05227 ], [ 0.402776, 46.06313 ], [ 0.398446, 46.06466 ], [ 0.389851, 46.06712 ], [ 0.381784, 46.063385 ], [ 0.35306, 46.065061 ], [ 0.349208, 46.06388 ], [ 0.345021, 46.06375 ], [ 0.340403, 46.06448 ], [ 0.322525, 46.06241 ], [ 0.314395, 46.06509 ], [ 0.31087, 46.062545 ], [ 0.291331, 46.05955 ], [ 0.276888, 46.061085 ], [ 0.273541, 46.06724 ], [ 0.256425, 46.0787 ], [ 0.242206, 46.080836 ], [ 0.234946, 46.085381 ], [ 0.232986, 46.08753 ], [ 0.22668, 46.09008 ], [ 0.223643, 46.09252 ], [ 0.197168, 46.09537 ], [ 0.193879, 46.09689 ], [ 0.190716, 46.104793 ], [ 0.188854, 46.11131 ], [ 0.199993, 46.117439 ], [ 0.204103, 46.12274 ], [ 0.20303, 46.12573 ], [ 0.198477, 46.126835 ], [ 0.200552, 46.12986 ], [ 0.21631, 46.14213 ], [ 0.218932, 46.15537 ], [ 0.213326, 46.159044 ], [ 0.198304, 46.159936 ], [ 0.186802, 46.14931 ], [ 0.17692, 46.15012 ], [ 0.171881, 46.15583 ], [ 0.167667, 46.15608 ], [ 0.155111, 46.157168 ], [ 0.153841, 46.160416 ], [ 0.148112, 46.17257 ], [ 0.139626, 46.1796 ], [ 0.107702, 46.18599 ], [ 0.109509, 46.18913 ], [ 0.113432, 46.21221 ], [ 0.11804, 46.213182 ], [ 0.131318, 46.226836 ], [ 0.13588, 46.22573 ], [ 0.142697, 46.23045 ], [ 0.139473, 46.240215 ], [ 0.137458, 46.244985 ], [ 0.130082, 46.264055 ], [ 0.128837, 46.26723 ], [ 0.133602, 46.266793 ], [ 0.162055, 46.26755 ], [ 0.17232, 46.278601 ], [ 0.170331, 46.284156 ], [ 0.152946, 46.304051 ], [ 0.165, 46.305514 ], [ 0.169492, 46.31068 ], [ 0.16595, 46.31705 ], [ 0.177369, 46.32811 ], [ 0.175249, 46.331376 ], [ 0.156198, 46.34327 ], [ 0.137598, 46.349395 ], [ 0.123317, 46.346792 ], [ 0.117942, 46.34089 ], [ 0.101365, 46.33309 ], [ 0.095524, 46.327444 ], [ 0.096931, 46.32056 ], [ 0.078218, 46.304943 ], [ 0.047162, 46.3224 ], [ 0.029354, 46.32867 ], [ 0.015099, 46.326257 ], [ 0.017389, 46.329345 ], [ 0.02302, 46.342513 ], [ 0.031407, 46.34621 ], [ 0.013848, 46.35701 ], [ 0.016604, 46.35947 ], [ 0.03422, 46.373497 ], [ 0.029944, 46.37503 ], [ 0.02244, 46.3792 ], [ 0.014669, 46.39083 ], [ 0.000448, 46.392249 ], [ -0.007997, 46.38906 ], [ -0.007707, 46.39253 ], [ -0.012697, 46.40202 ], [ -0.020218, 46.40588 ], [ -0.012776, 46.425881 ], [ -0.010582, 46.44989 ], [ -0.019244, 46.45328 ], [ -0.017852, 46.456403 ], [ -0.010466, 46.468331 ], [ -0.012533, 46.471277 ], [ -0.013593, 46.47442 ], [ -0.040101, 46.47006 ], [ -0.04326, 46.472436 ], [ -0.042535, 46.48235 ], [ -0.032175, 46.488644 ], [ -0.039234, 46.493107 ], [ -0.038793, 46.49971 ], [ -0.03118, 46.5083 ], [ -0.031351, 46.52498 ], [ -0.006269, 46.52398 ], [ -0.004934, 46.52722 ], [ 0.007113, 46.54534 ], [ -0.01011, 46.555441 ], [ -0.003315, 46.571731 ], [ 0.020517, 46.584644 ], [ 0.030598, 46.58503 ], [ 0.038232, 46.58956 ], [ 0.042719, 46.59117 ], [ 0.023996, 46.59511 ], [ 0.025803, 46.605092 ], [ 0.021688, 46.61124 ], [ 0.022855, 46.61453 ], [ 0.003187, 46.611459 ], [ -0.010066, 46.61655 ], [ 0.000427, 46.6397 ], [ -0.0049, 46.644704 ], [ -0.017205, 46.639407 ], [ -0.028191, 46.628529 ], [ -0.060919, 46.62276 ], [ -0.065814, 46.622825 ], [ -0.064752, 46.63276 ], [ -0.034129, 46.654314 ], [ -0.037853, 46.663803 ], [ -0.032044, 46.669255 ], [ -0.031657, 46.669347 ], [ -0.028872, 46.67222 ], [ -0.009606, 46.68267 ], [ -0.018356, 46.694297 ], [ 0.000092, 46.699331 ], [ 0.002659, 46.705751 ], [ -0.000478, 46.71582 ], [ 0.003784, 46.717647 ], [ 0.0073, 46.71992 ], [ 0.022859, 46.72768 ], [ 0.031902, 46.72717 ], [ 0.03675, 46.728622 ], [ 0.038065, 46.731179 ], [ 0.033065, 46.738492 ], [ 0.028176, 46.738979 ], [ -0.001918, 46.761281 ], [ -0.012665, 46.754349 ], [ -0.015765, 46.75706 ], [ -0.021874, 46.77635 ], [ -0.017718, 46.778014 ], [ -0.022661, 46.78952 ], [ -0.009554, 46.798934 ], [ -0.00706, 46.80176 ], [ 0.00403, 46.80766 ], [ 0.006922, 46.81351 ], [ -0.004126, 46.819376 ], [ -0.006895, 46.82197 ], [ -0.017515, 46.814665 ], [ -0.045274, 46.82074 ], [ -0.049092, 46.82304 ], [ -0.045392, 46.824 ], [ -0.04569, 46.8321 ], [ -0.035501, 46.832564 ], [ -0.025776, 46.840614 ], [ -0.007806, 46.84665 ], [ 0.002082, 46.845 ], [ 0.014988, 46.83457 ], [ 0.016607, 46.83496 ], [ 0.019124, 46.837669 ], [ 0.033758, 46.854076 ], [ 0.023744, 46.85394 ], [ 0.010103, 46.8586 ], [ 0.001665, 46.86249 ], [ -0.008089, 46.870425 ], [ -0.022418, 46.874095 ], [ -0.032214, 46.87234 ], [ -0.035644, 46.87494 ], [ -0.031594, 46.87675 ], [ -0.02304, 46.888062 ], [ -0.023214, 46.894689 ], [ -0.009123, 46.90792 ], [ -0.010303, 46.91142 ], [ -0.01387, 46.92187 ], [ -0.015046, 46.925268 ], [ -0.022143, 46.93811 ], [ -0.030741, 46.941777 ], [ -0.031346, 46.945284 ], [ -0.033932, 46.951992 ], [ -0.04483, 46.95952 ], [ -0.046251, 46.966516 ], [ -0.043471, 46.96926 ], [ -0.033124, 46.980251 ], [ -0.033901, 46.983537 ], [ -0.038714, 46.98928 ], [ -0.055331, 46.99464 ], [ -0.06031, 46.99443 ], [ -0.086481, 46.9853 ], [ -0.084947, 46.98863 ], [ -0.092379, 47.005294 ], [ -0.093051, 47.0085 ], [ -0.082627, 47.01004 ], [ -0.081256, 47.01302 ], [ -0.088267, 47.025046 ], [ -0.088966, 47.02759 ], [ -0.09026, 47.0327 ], [ -0.091414, 47.03789 ], [ -0.092179, 47.04135 ], [ -0.102121, 47.064806 ], [ -0.100648, 47.08459 ], [ -0.099978, 47.088083 ], [ -0.098055, 47.09135 ], [ -0.088887, 47.09827 ], [ -0.085541, 47.100434 ], [ -0.068733, 47.09653 ], [ -0.067762, 47.09338 ], [ -0.044239, 47.093151 ], [ -0.039917, 47.08761 ], [ -0.035315, 47.08672 ], [ -0.02707, 47.102674 ], [ -0.028063, 47.106027 ], [ -0.037498, 47.10814 ], [ -0.039508, 47.11475 ], [ -0.036549, 47.11752 ], [ -0.03444, 47.12063 ], [ -0.033736, 47.12756 ], [ -0.011722, 47.15624 ], [ 0.01534, 47.173168 ], [ 0.019015, 47.175758 ], [ 0.033624, 47.16289 ], [ 0.036642, 47.16036 ], [ 0.051052, 47.16713 ], [ 0.05374, 47.16461 ], [ 0.064921, 47.146084 ], [ 0.068953, 47.14406 ], [ 0.07839, 47.14633 ], [ 0.081435, 47.13328 ], [ 0.077943, 47.127071 ], [ 0.082432, 47.117797 ], [ 0.090198, 47.12186 ], [ 0.10472, 47.120798 ], [ 0.110323, 47.12929 ], [ 0.123966, 47.126936 ], [ 0.127952, 47.120999 ], [ 0.137322, 47.122259 ], [ 0.140683, 47.124594 ], [ 0.134144, 47.11527 ], [ 0.134946, 47.10837 ], [ 0.158612, 47.10274 ], [ 0.161917, 47.10011 ], [ 0.167829, 47.108362 ], [ 0.179245, 47.11336 ], [ 0.183487, 47.11451 ], [ 0.185354, 47.10404 ], [ 0.198043, 47.09294 ], [ 0.194951, 47.08646 ], [ 0.177027, 47.07383 ], [ 0.174011, 47.06722 ], [ 0.176727, 47.064201 ], [ 0.175696, 47.06073 ], [ 0.180337, 47.05946 ], [ 0.194404, 47.063001 ], [ 0.208199, 47.053237 ], [ 0.228056, 47.06133 ], [ 0.232832, 47.06639 ], [ 0.235155, 47.06916 ], [ 0.243872, 47.07095 ], [ 0.26355, 47.068507 ], [ 0.264221, 47.04643 ], [ 0.267677, 47.04405 ], [ 0.294508, 47.051949 ], [ 0.298426, 47.053977 ], [ 0.307895, 47.047271 ], [ 0.309074, 47.03131 ], [ 0.309935, 47.028031 ], [ 0.300585, 47.021102 ], [ 0.306204, 47.00882 ], [ 0.308175, 46.99993 ], [ 0.310728, 46.997312 ], [ 0.296088, 46.990169 ], [ 0.291436, 46.99027 ], [ 0.306589, 46.97893 ], [ 0.298206, 46.97126 ], [ 0.306402, 46.96393 ], [ 0.303022, 46.958359 ], [ 0.302029, 46.95532 ], [ 0.310569, 46.93971 ], [ 0.321021, 46.932626 ], [ 0.325352, 46.930943 ], [ 0.343125, 46.936706 ], [ 0.348074, 46.93637 ], [ 0.36463, 46.948568 ], [ 0.38282, 46.94375 ], [ 0.38782, 46.94371 ], [ 0.401134, 46.93819 ], [ 0.405362, 46.936133 ], [ 0.420738, 46.93639 ], [ 0.434521, 46.931669 ], [ 0.43871, 46.92958 ], [ 0.443882, 46.93811 ], [ 0.444803, 46.941158 ], [ 0.486465, 46.95402 ], [ 0.491285, 46.955322 ], [ 0.502577, 46.95779 ], [ 0.50519, 46.95991 ], [ 0.512902, 46.95586 ], [ 0.549556, 46.95959 ], [ 0.554199, 46.95847 ], [ 0.563306, 46.955777 ], [ 0.598205, 46.95643 ], [ 0.601701, 46.958888 ], [ 0.598804, 46.974924 ], [ 0.576876, 46.98087 ], [ 0.573683, 46.98339 ], [ 0.573146, 46.989475 ], [ 0.574382, 46.99244 ], [ 0.567922, 46.999661 ], [ 0.56695, 47.00254 ], [ 0.567742, 47.006287 ], [ 0.585909, 47.00611 ], [ 0.590556, 47.00673 ], [ 0.61849, 47.00752 ], [ 0.623652, 47.00242 ], [ 0.621888, 46.99942 ], [ 0.623984, 46.993686 ], [ 0.63356, 46.986659 ], [ 0.637794, 46.98525 ], [ 0.651538, 46.986999 ], [ 0.660468, 46.978984 ], [ 0.690172, 46.97498 ], [ 0.695275, 46.969191 ], [ 0.695176, 46.96224 ], [ 0.695983, 46.959369 ], [ 0.706179, 46.936108 ], [ 0.703171, 46.925825 ], [ 0.708918, 46.917725 ], [ 0.704874, 46.91233 ], [ 0.703738, 46.909362 ], [ 0.70467, 46.90289 ], [ 0.727284, 46.88608 ], [ 0.729468, 46.88318 ], [ 0.739267, 46.87285 ], [ 0.743522, 46.871587 ], [ 0.753423, 46.860585 ], [ 0.765645, 46.86512 ], [ 0.771792, 46.86126 ], [ 0.766356, 46.85585 ], [ 0.771389, 46.85095 ], [ 0.795013, 46.85052 ], [ 0.796639, 46.84735 ], [ 0.786885, 46.84123 ], [ 0.794667, 46.832892 ], [ 0.807997, 46.829139 ], [ 0.809041, 46.819215 ], [ 0.809857, 46.8159 ], [ 0.810162, 46.814192 ], [ 0.815597, 46.805 ], [ 0.813354, 46.79168 ], [ 0.826099, 46.78682 ], [ 0.829396, 46.77687 ], [ 0.84484, 46.763019 ], [ 0.858729, 46.759154 ], [ 0.859743, 46.75572 ], [ 0.865602, 46.75104 ], [ 0.867469, 46.74822 ], [ 0.879803, 46.73875 ], [ 0.898325, 46.7358 ], [ 0.90283, 46.730405 ], [ 0.911172, 46.72707 ], [ 0.910404, 46.71741 ], [ 0.921587, 46.70272 ], [ 0.924812, 46.70022 ], [ 0.927133, 46.6936 ], [ 0.918155, 46.690485 ], [ 0.902262, 46.677666 ], [ 0.907243, 46.678136 ], [ 0.91184, 46.67259 ], [ 0.90734, 46.666437 ], [ 0.915638, 46.650672 ], [ 0.907628, 46.64672 ], [ 0.895518, 46.631821 ], [ 0.893993, 46.628658 ], [ 0.904896, 46.618175 ], [ 0.908477, 46.605279 ], [ 0.916278, 46.597125 ], [ 0.933284, 46.594569 ], [ 0.937758, 46.59442 ], [ 0.941367, 46.580879 ], [ 0.955598, 46.57761 ], [ 0.962437, 46.57254 ], [ 0.982015, 46.57327 ], [ 0.990589, 46.56604 ], [ 1.009906, 46.56742 ], [ 1.014764, 46.567764 ], [ 1.024705, 46.5497 ], [ 1.019938, 46.540418 ], [ 1.020409, 46.53715 ], [ 1.065509, 46.539252 ], [ 1.080132, 46.53618 ], [ 1.090094, 46.53758 ], [ 1.104139, 46.53343 ], [ 1.119414, 46.524226 ], [ 1.12372, 46.52232 ], [ 1.146903, 46.50518 ], [ 1.149143, 46.502212 ], [ 1.145329, 46.50007 ], [ 1.136833, 46.49678 ], [ 1.136125, 46.493461 ], [ 1.152956, 46.472838 ], [ 1.135514, 46.470889 ], [ 1.150917, 46.450297 ], [ 1.16378, 46.44677 ], [ 1.168524, 46.44635 ], [ 1.185483, 46.439511 ], [ 1.185835, 46.429303 ], [ 1.195477, 46.42962 ], [ 1.203363, 46.433796 ], [ 1.213066, 46.43308 ], [ 1.211268, 46.42992 ], [ 1.193411, 46.40976 ], [ 1.1954, 46.40002 ], [ 1.17728, 46.38395 ], [ 1.173138, 46.38522 ], [ 1.157006, 46.38923 ], [ 1.155318, 46.38604 ], [ 1.148515, 46.37707 ], [ 1.149083, 46.370275 ], [ 1.128579, 46.362221 ], [ 1.129862, 46.358937 ], [ 1.127761, 46.34886 ], [ 1.109444, 46.35383 ], [ 1.101408, 46.362367 ], [ 1.077291, 46.35855 ], [ 1.072731, 46.35947 ], [ 1.050157, 46.362781 ], [ 1.050965, 46.35948 ], [ 1.027163, 46.34344 ], [ 1.026141, 46.340038 ], [ 1.028543, 46.3333 ], [ 1.021178, 46.3133 ], [ 1.009903, 46.30666 ], [ 1.009553, 46.29661 ], [ 1.003748, 46.29117 ], [ 1.005887, 46.28097 ], [ 1.003381, 46.28023 ], [ 0.999812, 46.28261 ], [ 0.990064, 46.28378 ], [ 0.986247, 46.281592 ], [ 0.97255, 46.28553 ], [ 0.952797, 46.285635 ], [ 0.935318, 46.29125 ], [ 0.934185, 46.28133 ], [ 0.929197, 46.280956 ], [ 0.901248, 46.28751 ], [ 0.8897, 46.268548 ], [ 0.861633, 46.26182 ], [ 0.863365, 46.258715 ], [ 0.857724, 46.249538 ], [ 0.848308, 46.24826 ], [ 0.843549, 46.238884 ], [ 0.851894, 46.23596 ], [ 0.851551, 46.23245 ], [ 0.843527, 46.22921 ], [ 0.808399, 46.228006 ], [ 0.799361, 46.2155 ], [ 0.794748, 46.214049 ], [ 0.796455, 46.21129 ], [ 0.801413, 46.207386 ], [ 0.800223, 46.20148 ], [ 0.803917, 46.199291 ], [ 0.813334, 46.197689 ], [ 0.821161, 46.185507 ], [ 0.833299, 46.18064 ], [ 0.828706, 46.172166 ], [ 0.831415, 46.170218 ], [ 0.838205, 46.16573 ], [ 0.832417, 46.156346 ], [ 0.835748, 46.14618 ], [ 0.845853, 46.138369 ], [ 0.840116, 46.13367 ], [ 0.837012, 46.130886 ], [ 0.823433, 46.12859 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "88", "CODE_DEPT": "87", "NOM_DEPT": "HAUTE-VIENNE", "CODE_CHF": "085", "NOM_CHF": "LIMOGES", "X_CHF_LIEU": "5650", "Y_CHF_LIEU": "65275", "X_CENTROID": "5631", "Y_CENTROID": "65339", "CODE_REG": "74", "NOM_REGION": "LIMOUSIN" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.253152, 45.44422 ], [ 1.250141, 45.44149 ], [ 1.242025, 45.437605 ], [ 1.237444, 45.438848 ], [ 1.233962, 45.45501 ], [ 1.212123, 45.46237 ], [ 1.185123, 45.4551 ], [ 1.177031, 45.45872 ], [ 1.175344, 45.468794 ], [ 1.162444, 45.47835 ], [ 1.158185, 45.476674 ], [ 1.149887, 45.473268 ], [ 1.131013, 45.472253 ], [ 1.119623, 45.47779 ], [ 1.118436, 45.487904 ], [ 1.12289, 45.48947 ], [ 1.134423, 45.50488 ], [ 1.147483, 45.515418 ], [ 1.164273, 45.522954 ], [ 1.165365, 45.526367 ], [ 1.132364, 45.541325 ], [ 1.128288, 45.54322 ], [ 1.119312, 45.545962 ], [ 1.109717, 45.544666 ], [ 1.104331, 45.53909 ], [ 1.086024, 45.53474 ], [ 1.084638, 45.531442 ], [ 1.081118, 45.533561 ], [ 1.074201, 45.545612 ], [ 1.061699, 45.554891 ], [ 1.061386, 45.5543 ], [ 1.056478, 45.5546 ], [ 1.047749, 45.557829 ], [ 1.037977, 45.569468 ], [ 1.034704, 45.579661 ], [ 1.039334, 45.58584 ], [ 1.032964, 45.59906 ], [ 1.02011, 45.60974 ], [ 0.995823, 45.612708 ], [ 0.989587, 45.607355 ], [ 0.97569, 45.604493 ], [ 0.969549, 45.60994 ], [ 0.959802, 45.608692 ], [ 0.946322, 45.61296 ], [ 0.918839, 45.605185 ], [ 0.904489, 45.60593 ], [ 0.898605, 45.600323 ], [ 0.89374, 45.60103 ], [ 0.890345, 45.60325 ], [ 0.881222, 45.61059 ], [ 0.876966, 45.61984 ], [ 0.869353, 45.62353 ], [ 0.866884, 45.62097 ], [ 0.8597, 45.613191 ], [ 0.858099, 45.6098 ], [ 0.849461, 45.593259 ], [ 0.848144, 45.589847 ], [ 0.839996, 45.581304 ], [ 0.8115, 45.57587 ], [ 0.810565, 45.57909 ], [ 0.805857, 45.594966 ], [ 0.801392, 45.59593 ], [ 0.777188, 45.59217 ], [ 0.767445, 45.60439 ], [ 0.750613, 45.616873 ], [ 0.753737, 45.619602 ], [ 0.763951, 45.6315 ], [ 0.775643, 45.667746 ], [ 0.77397, 45.66781 ], [ 0.760468, 45.670949 ], [ 0.744137, 45.68826 ], [ 0.722051, 45.69461 ], [ 0.713127, 45.694042 ], [ 0.702599, 45.687846 ], [ 0.694223, 45.690494 ], [ 0.681304, 45.687445 ], [ 0.676533, 45.68841 ], [ 0.662086, 45.68748 ], [ 0.653606, 45.69103 ], [ 0.650294, 45.697586 ], [ 0.637778, 45.70198 ], [ 0.629742, 45.71457 ], [ 0.633501, 45.7205 ], [ 0.64553, 45.71892 ], [ 0.650416, 45.72802 ], [ 0.647616, 45.730638 ], [ 0.652867, 45.73938 ], [ 0.660713, 45.73941 ], [ 0.665281, 45.739401 ], [ 0.666527, 45.745238 ], [ 0.666235, 45.748196 ], [ 0.691144, 45.76091 ], [ 0.695379, 45.76212 ], [ 0.707649, 45.761712 ], [ 0.711682, 45.76286 ], [ 0.714765, 45.76922 ], [ 0.70749, 45.77825 ], [ 0.710515, 45.8022 ], [ 0.718721, 45.80558 ], [ 0.7426, 45.804378 ], [ 0.752389, 45.797106 ], [ 0.762003, 45.79694 ], [ 0.768055, 45.791552 ], [ 0.770227, 45.788478 ], [ 0.783779, 45.793475 ], [ 0.776974, 45.80224 ], [ 0.783826, 45.810583 ], [ 0.780808, 45.81709 ], [ 0.782118, 45.820404 ], [ 0.795978, 45.82984 ], [ 0.818349, 45.864053 ], [ 0.82098, 45.86696 ], [ 0.818405, 45.869162 ], [ 0.810678, 45.868238 ], [ 0.8075, 45.870023 ], [ 0.823749, 45.88079 ], [ 0.827373, 45.882748 ], [ 0.81354, 45.896886 ], [ 0.815983, 45.917292 ], [ 0.809017, 45.921742 ], [ 0.809969, 45.92832 ], [ 0.812111, 45.93127 ], [ 0.821962, 45.93157 ], [ 0.838047, 45.92336 ], [ 0.847972, 45.92405 ], [ 0.861148, 45.919803 ], [ 0.884652, 45.923831 ], [ 0.906305, 45.93793 ], [ 0.916094, 45.93717 ], [ 0.920972, 45.937917 ], [ 0.92049, 45.94352 ], [ 0.922516, 45.94594 ], [ 0.92468, 45.951209 ], [ 0.940886, 45.95921 ], [ 0.943377, 45.97307 ], [ 0.934634, 45.976415 ], [ 0.934675, 45.99221 ], [ 0.921525, 45.99615 ], [ 0.919886, 46.00223 ], [ 0.923782, 46.008258 ], [ 0.909946, 46.017543 ], [ 0.905615, 46.0182 ], [ 0.894052, 46.022699 ], [ 0.894327, 46.025632 ], [ 0.886192, 46.03173 ], [ 0.866517, 46.01648 ], [ 0.858456, 46.019618 ], [ 0.856265, 46.02972 ], [ 0.849302, 46.03449 ], [ 0.845226, 46.0365 ], [ 0.821993, 46.04636 ], [ 0.817909, 46.04789 ], [ 0.816632, 46.057565 ], [ 0.826105, 46.065061 ], [ 0.819171, 46.0774 ], [ 0.827127, 46.086025 ], [ 0.827141, 46.088278 ], [ 0.832253, 46.09391 ], [ 0.832307, 46.10434 ], [ 0.811893, 46.12297 ], [ 0.818813, 46.12717 ], [ 0.823433, 46.12859 ], [ 0.837012, 46.130886 ], [ 0.840116, 46.13367 ], [ 0.845853, 46.138369 ], [ 0.835748, 46.14618 ], [ 0.832417, 46.156346 ], [ 0.838205, 46.16573 ], [ 0.831415, 46.170218 ], [ 0.828706, 46.172166 ], [ 0.833299, 46.18064 ], [ 0.821161, 46.185507 ], [ 0.813334, 46.197689 ], [ 0.803917, 46.199291 ], [ 0.800223, 46.20148 ], [ 0.801413, 46.207386 ], [ 0.796455, 46.21129 ], [ 0.794748, 46.214049 ], [ 0.799361, 46.2155 ], [ 0.808399, 46.228006 ], [ 0.843527, 46.22921 ], [ 0.851551, 46.23245 ], [ 0.851894, 46.23596 ], [ 0.843549, 46.238884 ], [ 0.848308, 46.24826 ], [ 0.857724, 46.249538 ], [ 0.863365, 46.258715 ], [ 0.861633, 46.26182 ], [ 0.8897, 46.268548 ], [ 0.901248, 46.28751 ], [ 0.929197, 46.280956 ], [ 0.934185, 46.28133 ], [ 0.935318, 46.29125 ], [ 0.952797, 46.285635 ], [ 0.97255, 46.28553 ], [ 0.986247, 46.281592 ], [ 0.990064, 46.28378 ], [ 0.999812, 46.28261 ], [ 1.003381, 46.28023 ], [ 1.005887, 46.28097 ], [ 1.003748, 46.29117 ], [ 1.009553, 46.29661 ], [ 1.009903, 46.30666 ], [ 1.021178, 46.3133 ], [ 1.028543, 46.3333 ], [ 1.026141, 46.340038 ], [ 1.027163, 46.34344 ], [ 1.050965, 46.35948 ], [ 1.050157, 46.362781 ], [ 1.072731, 46.35947 ], [ 1.077291, 46.35855 ], [ 1.101408, 46.362367 ], [ 1.109444, 46.35383 ], [ 1.127761, 46.34886 ], [ 1.129862, 46.358937 ], [ 1.128579, 46.362221 ], [ 1.149083, 46.370275 ], [ 1.148515, 46.37707 ], [ 1.155318, 46.38604 ], [ 1.157006, 46.38923 ], [ 1.173138, 46.38522 ], [ 1.17728, 46.38395 ], [ 1.180777, 46.378594 ], [ 1.18868, 46.37694 ], [ 1.192893, 46.37741 ], [ 1.193499, 46.380733 ], [ 1.208385, 46.38915 ], [ 1.212952, 46.388002 ], [ 1.213319, 46.374407 ], [ 1.21797, 46.368256 ], [ 1.238165, 46.3662 ], [ 1.250656, 46.37675 ], [ 1.26021, 46.37872 ], [ 1.274572, 46.37642 ], [ 1.279554, 46.376488 ], [ 1.28302, 46.37221 ], [ 1.310512, 46.37437 ], [ 1.311035, 46.381038 ], [ 1.321836, 46.386566 ], [ 1.312648, 46.39371 ], [ 1.340492, 46.3997 ], [ 1.344678, 46.401598 ], [ 1.359389, 46.39772 ], [ 1.36255, 46.39563 ], [ 1.373905, 46.38586 ], [ 1.376609, 46.38334 ], [ 1.39195, 46.37107 ], [ 1.396571, 46.371897 ], [ 1.395144, 46.368644 ], [ 1.407003, 46.36264 ], [ 1.411548, 46.3495 ], [ 1.415191, 46.34722 ], [ 1.411944, 46.344805 ], [ 1.409687, 46.341909 ], [ 1.430481, 46.333767 ], [ 1.444558, 46.333933 ], [ 1.445731, 46.330635 ], [ 1.43869, 46.323153 ], [ 1.442205, 46.303783 ], [ 1.429761, 46.29951 ], [ 1.425425, 46.29804 ], [ 1.417187, 46.279616 ], [ 1.430576, 46.27746 ], [ 1.436758, 46.27248 ], [ 1.424521, 46.26715 ], [ 1.415204, 46.269132 ], [ 1.406468, 46.26096 ], [ 1.407643, 46.25446 ], [ 1.419417, 46.248709 ], [ 1.418063, 46.24211 ], [ 1.413869, 46.24034 ], [ 1.40437, 46.2416 ], [ 1.395412, 46.23898 ], [ 1.379201, 46.2192 ], [ 1.374521, 46.21817 ], [ 1.387328, 46.19966 ], [ 1.395054, 46.195814 ], [ 1.401736, 46.183263 ], [ 1.406756, 46.183208 ], [ 1.418726, 46.17777 ], [ 1.428212, 46.179273 ], [ 1.43538, 46.17617 ], [ 1.448556, 46.17925 ], [ 1.452574, 46.18115 ], [ 1.460906, 46.177631 ], [ 1.458851, 46.17141 ], [ 1.465051, 46.16248 ], [ 1.451356, 46.152661 ], [ 1.470206, 46.14961 ], [ 1.481769, 46.138715 ], [ 1.495629, 46.140224 ], [ 1.494325, 46.13345 ], [ 1.502153, 46.12954 ], [ 1.504852, 46.123197 ], [ 1.493488, 46.11767 ], [ 1.488492, 46.10816 ], [ 1.499966, 46.10244 ], [ 1.500707, 46.09568 ], [ 1.507847, 46.089246 ], [ 1.512506, 46.09356 ], [ 1.525675, 46.089578 ], [ 1.527149, 46.079492 ], [ 1.536513, 46.078758 ], [ 1.542086, 46.074074 ], [ 1.532444, 46.058603 ], [ 1.536707, 46.05302 ], [ 1.535513, 46.050717 ], [ 1.548244, 46.03347 ], [ 1.538179, 46.026857 ], [ 1.532917, 46.01036 ], [ 1.536575, 46.000609 ], [ 1.537903, 45.99734 ], [ 1.564237, 45.997433 ], [ 1.568388, 45.996837 ], [ 1.570881, 45.9884 ], [ 1.57369, 45.986204 ], [ 1.577299, 45.97804 ], [ 1.574813, 45.975771 ], [ 1.566241, 45.963684 ], [ 1.556429, 45.96405 ], [ 1.536417, 45.9541 ], [ 1.518656, 45.9505 ], [ 1.516824, 45.947565 ], [ 1.517933, 45.94136 ], [ 1.508951, 45.94031 ], [ 1.513591, 45.931 ], [ 1.532402, 45.929845 ], [ 1.544139, 45.91939 ], [ 1.547265, 45.91683 ], [ 1.555829, 45.91946 ], [ 1.573076, 45.91571 ], [ 1.577143, 45.91762 ], [ 1.581065, 45.930664 ], [ 1.600532, 45.93155 ], [ 1.604934, 45.93306 ], [ 1.617812, 45.93011 ], [ 1.625778, 45.93259 ], [ 1.62801, 45.9264 ], [ 1.637132, 45.92598 ], [ 1.625928, 45.9157 ], [ 1.64157, 45.896219 ], [ 1.640017, 45.894327 ], [ 1.641483, 45.8924 ], [ 1.632501, 45.89001 ], [ 1.622337, 45.896266 ], [ 1.618304, 45.886832 ], [ 1.611897, 45.890302 ], [ 1.602085, 45.88968 ], [ 1.591033, 45.88307 ], [ 1.603689, 45.879294 ], [ 1.606992, 45.86648 ], [ 1.602398, 45.857465 ], [ 1.624643, 45.84984 ], [ 1.628475, 45.8476 ], [ 1.647909, 45.84496 ], [ 1.652828, 45.845631 ], [ 1.658734, 45.83701 ], [ 1.65992, 45.8338 ], [ 1.667341, 45.838616 ], [ 1.676873, 45.83764 ], [ 1.694896, 45.843765 ], [ 1.719883, 45.841511 ], [ 1.729643, 45.843513 ], [ 1.736078, 45.84891 ], [ 1.73972, 45.851389 ], [ 1.75168, 45.85484 ], [ 1.755837, 45.85566 ], [ 1.756992, 45.86617 ], [ 1.765811, 45.868987 ], [ 1.770776, 45.868374 ], [ 1.779369, 45.85233 ], [ 1.773224, 45.84291 ], [ 1.778194, 45.83321 ], [ 1.786571, 45.82954 ], [ 1.796208, 45.829508 ], [ 1.824792, 45.8109 ], [ 1.828963, 45.8128 ], [ 1.830678, 45.82303 ], [ 1.834272, 45.825449 ], [ 1.843092, 45.81398 ], [ 1.855481, 45.81026 ], [ 1.85631, 45.80692 ], [ 1.861212, 45.8071 ], [ 1.883805, 45.79471 ], [ 1.89149, 45.771667 ], [ 1.897805, 45.767955 ], [ 1.902149, 45.769546 ], [ 1.896354, 45.76007 ], [ 1.877298, 45.75822 ], [ 1.874175, 45.75554 ], [ 1.883401, 45.747848 ], [ 1.886413, 45.745194 ], [ 1.874752, 45.727228 ], [ 1.88352, 45.72603 ], [ 1.89247, 45.71827 ], [ 1.888536, 45.71637 ], [ 1.880786, 45.71244 ], [ 1.881175, 45.70909 ], [ 1.896599, 45.701409 ], [ 1.898731, 45.698278 ], [ 1.898709, 45.694864 ], [ 1.907303, 45.69176 ], [ 1.909555, 45.6818 ], [ 1.901422, 45.67858 ], [ 1.882191, 45.679824 ], [ 1.87902, 45.666383 ], [ 1.874816, 45.664666 ], [ 1.854027, 45.67058 ], [ 1.84507, 45.663374 ], [ 1.826437, 45.665046 ], [ 1.823414, 45.67191 ], [ 1.819797, 45.67404 ], [ 1.815294, 45.679771 ], [ 1.802214, 45.676219 ], [ 1.801385, 45.672986 ], [ 1.794815, 45.680913 ], [ 1.785834, 45.68266 ], [ 1.783086, 45.673285 ], [ 1.77472, 45.65831 ], [ 1.765424, 45.657648 ], [ 1.763797, 45.654577 ], [ 1.753465, 45.65546 ], [ 1.752899, 45.65208 ], [ 1.750205, 45.64571 ], [ 1.724169, 45.63886 ], [ 1.710733, 45.64134 ], [ 1.696303, 45.633651 ], [ 1.668273, 45.614149 ], [ 1.664765, 45.61169 ], [ 1.659864, 45.606349 ], [ 1.658937, 45.59694 ], [ 1.651973, 45.59315 ], [ 1.64933, 45.59055 ], [ 1.625187, 45.578705 ], [ 1.600404, 45.57942 ], [ 1.592897, 45.575027 ], [ 1.590755, 45.572037 ], [ 1.584891, 45.55608 ], [ 1.571207, 45.55529 ], [ 1.558783, 45.550945 ], [ 1.54682, 45.55446 ], [ 1.541999, 45.555015 ], [ 1.517394, 45.564276 ], [ 1.516971, 45.55755 ], [ 1.511347, 45.55214 ], [ 1.492475, 45.54939 ], [ 1.491524, 45.5523 ], [ 1.492228, 45.560861 ], [ 1.488061, 45.56226 ], [ 1.480434, 45.56594 ], [ 1.478789, 45.559077 ], [ 1.473136, 45.55342 ], [ 1.453415, 45.55222 ], [ 1.452689, 45.53505 ], [ 1.439542, 45.52041 ], [ 1.435222, 45.521876 ], [ 1.426618, 45.52979 ], [ 1.417346, 45.529588 ], [ 1.408944, 45.526335 ], [ 1.395821, 45.50867 ], [ 1.391455, 45.50729 ], [ 1.3896, 45.49616 ], [ 1.384904, 45.495567 ], [ 1.375566, 45.49433 ], [ 1.368894, 45.48956 ], [ 1.350078, 45.466897 ], [ 1.345901, 45.46874 ], [ 1.285317, 45.490281 ], [ 1.287191, 45.48724 ], [ 1.286405, 45.48075 ], [ 1.27885, 45.47709 ], [ 1.275609, 45.47795 ], [ 1.269155, 45.47636 ], [ 1.263869, 45.467308 ], [ 1.263341, 45.453897 ], [ 1.25548, 45.45036 ], [ 1.253152, 45.44422 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "89", "CODE_DEPT": "88", "NOM_DEPT": "VOSGES", "CODE_CHF": "160", "NOM_CHF": "EPINAL", "X_CHF_LIEU": "9565", "Y_CHF_LIEU": "67915", "X_CENTROID": "9511", "Y_CENTROID": "67938", "CODE_REG": "41", "NOM_REGION": "LORRAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.823539, 47.81305 ], [ 6.820459, 47.8158 ], [ 6.791946, 47.83016 ], [ 6.788987, 47.83483 ], [ 6.791102, 47.83783 ], [ 6.790661, 47.844226 ], [ 6.784952, 47.84957 ], [ 6.738164, 47.86205 ], [ 6.737294, 47.86547 ], [ 6.735247, 47.864926 ], [ 6.730734, 47.866448 ], [ 6.710113, 47.87582 ], [ 6.703674, 47.881424 ], [ 6.699113, 47.88228 ], [ 6.691325, 47.88584 ], [ 6.689377, 47.8873 ], [ 6.686832, 47.88826 ], [ 6.683084, 47.89042 ], [ 6.669324, 47.89329 ], [ 6.645203, 47.904085 ], [ 6.639864, 47.91005 ], [ 6.640878, 47.91702 ], [ 6.629286, 47.928183 ], [ 6.612502, 47.93604 ], [ 6.610445, 47.93891 ], [ 6.605983, 47.944468 ], [ 6.601244, 47.944379 ], [ 6.596358, 47.94331 ], [ 6.568708, 47.934499 ], [ 6.558255, 47.92297 ], [ 6.555909, 47.91996 ], [ 6.542014, 47.902534 ], [ 6.537052, 47.90226 ], [ 6.503444, 47.89625 ], [ 6.478262, 47.88544 ], [ 6.475807, 47.888451 ], [ 6.457047, 47.90783 ], [ 6.460947, 47.91751 ], [ 6.448609, 47.922719 ], [ 6.431921, 47.94381 ], [ 6.40842, 47.9432 ], [ 6.407328, 47.94644 ], [ 6.404507, 47.952832 ], [ 6.388353, 47.960018 ], [ 6.378691, 47.95866 ], [ 6.364993, 47.962572 ], [ 6.360997, 47.96025 ], [ 6.322461, 47.95008 ], [ 6.306804, 47.95078 ], [ 6.292827, 47.955646 ], [ 6.277334, 47.95381 ], [ 6.274023, 47.951659 ], [ 6.262957, 47.94614 ], [ 6.259912, 47.94437 ], [ 6.250767, 47.93908 ], [ 6.24611, 47.93943 ], [ 6.237987, 47.93284 ], [ 6.233409, 47.933599 ], [ 6.219609, 47.93566 ], [ 6.214423, 47.930382 ], [ 6.209344, 47.93105 ], [ 6.204514, 47.932292 ], [ 6.208138, 47.942344 ], [ 6.207056, 47.945733 ], [ 6.182056, 47.95693 ], [ 6.179247, 47.95459 ], [ 6.171045, 47.95264 ], [ 6.161247, 47.958296 ], [ 6.16079, 47.9612 ], [ 6.155256, 47.96443 ], [ 6.149584, 47.9685 ], [ 6.161293, 47.97279 ], [ 6.163943, 47.97561 ], [ 6.159124, 47.99129 ], [ 6.152863, 47.996114 ], [ 6.156058, 48.006944 ], [ 6.152409, 48.009447 ], [ 6.131397, 48.02408 ], [ 6.127381, 48.022228 ], [ 6.114302, 48.01807 ], [ 6.109235, 48.01247 ], [ 6.104598, 48.01351 ], [ 6.085549, 48.01345 ], [ 6.080853, 48.0128 ], [ 6.072221, 48.01555 ], [ 6.068036, 48.01351 ], [ 6.036864, 48.00145 ], [ 6.022306, 47.98761 ], [ 6.023004, 47.97797 ], [ 6.009432, 47.96785 ], [ 6.008771, 47.961399 ], [ 6.002262, 47.95609 ], [ 5.970778, 47.957205 ], [ 5.970446, 47.953917 ], [ 5.968902, 47.947409 ], [ 5.964594, 47.946113 ], [ 5.956055, 47.938664 ], [ 5.947635, 47.93618 ], [ 5.942523, 47.93631 ], [ 5.932628, 47.937928 ], [ 5.937566, 47.950629 ], [ 5.941548, 47.95232 ], [ 5.959703, 47.96655 ], [ 5.957968, 47.96959 ], [ 5.950301, 47.97351 ], [ 5.947534, 47.97971 ], [ 5.943047, 47.979813 ], [ 5.92739, 47.9744 ], [ 5.92133, 47.971026 ], [ 5.919171, 47.967864 ], [ 5.918043, 47.94736 ], [ 5.912835, 47.94675 ], [ 5.907548, 47.94665 ], [ 5.902823, 47.94554 ], [ 5.89341, 47.93786 ], [ 5.896863, 47.931638 ], [ 5.884726, 47.92605 ], [ 5.884687, 47.929263 ], [ 5.86448, 47.94588 ], [ 5.856384, 47.948371 ], [ 5.849925, 47.964359 ], [ 5.854239, 47.966037 ], [ 5.853561, 47.96988 ], [ 5.848679, 47.96961 ], [ 5.845841, 47.975696 ], [ 5.839894, 47.968087 ], [ 5.839732, 47.9648 ], [ 5.829489, 47.958036 ], [ 5.815285, 47.95692 ], [ 5.805268, 47.946973 ], [ 5.802464, 47.949714 ], [ 5.788412, 47.952696 ], [ 5.778492, 47.97801 ], [ 5.782448, 47.980041 ], [ 5.793592, 47.99071 ], [ 5.794917, 47.993694 ], [ 5.786418, 48.00402 ], [ 5.787321, 48.007417 ], [ 5.776419, 48.022407 ], [ 5.776273, 48.02525 ], [ 5.77682, 48.03364 ], [ 5.768818, 48.030033 ], [ 5.764225, 48.03154 ], [ 5.740804, 48.049012 ], [ 5.721596, 48.04526 ], [ 5.720627, 48.05202 ], [ 5.721281, 48.052725 ], [ 5.713371, 48.061623 ], [ 5.70029, 48.06744 ], [ 5.696278, 48.077566 ], [ 5.692078, 48.07555 ], [ 5.659139, 48.083668 ], [ 5.655564, 48.081237 ], [ 5.655767, 48.071364 ], [ 5.632878, 48.08437 ], [ 5.639085, 48.09728 ], [ 5.645839, 48.10252 ], [ 5.649393, 48.10505 ], [ 5.658664, 48.106017 ], [ 5.672119, 48.10944 ], [ 5.669706, 48.11224 ], [ 5.656558, 48.12055 ], [ 5.661573, 48.12561 ], [ 5.662513, 48.12879 ], [ 5.666767, 48.130206 ], [ 5.676706, 48.136311 ], [ 5.675079, 48.139247 ], [ 5.685843, 48.150941 ], [ 5.684222, 48.158234 ], [ 5.686525, 48.164079 ], [ 5.682299, 48.17548 ], [ 5.680173, 48.178674 ], [ 5.69977, 48.18967 ], [ 5.730983, 48.1897 ], [ 5.730055, 48.19832 ], [ 5.726909, 48.200508 ], [ 5.72451, 48.203075 ], [ 5.722288, 48.20595 ], [ 5.710844, 48.21994 ], [ 5.706542, 48.22194 ], [ 5.687792, 48.23418 ], [ 5.683443, 48.23294 ], [ 5.676344, 48.229016 ], [ 5.672188, 48.231009 ], [ 5.640901, 48.24235 ], [ 5.642055, 48.245749 ], [ 5.64946, 48.2547 ], [ 5.651579, 48.25797 ], [ 5.653809, 48.268524 ], [ 5.649556, 48.27029 ], [ 5.611652, 48.29181 ], [ 5.608996, 48.288858 ], [ 5.588425, 48.27376 ], [ 5.588128, 48.27732 ], [ 5.533514, 48.3251 ], [ 5.531164, 48.32816 ], [ 5.523022, 48.34051 ], [ 5.526527, 48.346856 ], [ 5.522169, 48.34862 ], [ 5.507063, 48.350159 ], [ 5.499385, 48.35455 ], [ 5.474496, 48.35457 ], [ 5.472422, 48.351535 ], [ 5.459888, 48.34948 ], [ 5.443838, 48.33683 ], [ 5.426048, 48.33106 ], [ 5.424574, 48.334216 ], [ 5.417157, 48.342622 ], [ 5.42237, 48.35175 ], [ 5.418555, 48.36069 ], [ 5.421257, 48.36335 ], [ 5.442884, 48.37939 ], [ 5.438413, 48.380864 ], [ 5.408839, 48.38303 ], [ 5.393838, 48.39157 ], [ 5.397763, 48.39259 ], [ 5.409779, 48.39262 ], [ 5.447148, 48.41499 ], [ 5.465177, 48.419995 ], [ 5.470062, 48.42093 ], [ 5.509008, 48.40991 ], [ 5.513904, 48.4108 ], [ 5.509929, 48.41702 ], [ 5.515417, 48.42998 ], [ 5.534464, 48.432297 ], [ 5.556327, 48.4399 ], [ 5.560827, 48.44147 ], [ 5.567996, 48.4373 ], [ 5.566636, 48.434108 ], [ 5.576649, 48.43197 ], [ 5.580391, 48.43848 ], [ 5.589323, 48.44213 ], [ 5.610061, 48.441568 ], [ 5.615055, 48.44051 ], [ 5.61883, 48.43049 ], [ 5.623837, 48.44596 ], [ 5.626986, 48.44888 ], [ 5.644971, 48.454044 ], [ 5.649849, 48.454962 ], [ 5.651446, 48.45818 ], [ 5.639804, 48.46915 ], [ 5.641988, 48.472203 ], [ 5.644529, 48.47187 ], [ 5.653333, 48.46901 ], [ 5.656871, 48.47126 ], [ 5.676378, 48.47153 ], [ 5.684919, 48.46836 ], [ 5.689593, 48.467381 ], [ 5.695076, 48.463449 ], [ 5.715639, 48.460378 ], [ 5.735324, 48.46516 ], [ 5.740613, 48.46537 ], [ 5.74243, 48.474498 ], [ 5.746109, 48.47625 ], [ 5.760795, 48.49445 ], [ 5.765155, 48.49649 ], [ 5.774739, 48.48846 ], [ 5.778599, 48.486187 ], [ 5.783684, 48.485546 ], [ 5.787024, 48.48291 ], [ 5.792136, 48.48864 ], [ 5.809221, 48.495125 ], [ 5.810772, 48.4983 ], [ 5.824376, 48.49639 ], [ 5.831799, 48.50016 ], [ 5.836407, 48.500708 ], [ 5.83778, 48.50481 ], [ 5.862241, 48.50649 ], [ 5.865923, 48.5042 ], [ 5.876608, 48.49748 ], [ 5.901013, 48.49401 ], [ 5.905902, 48.49498 ], [ 5.901508, 48.4885 ], [ 5.898792, 48.48544 ], [ 5.9043, 48.48293 ], [ 5.888609, 48.46945 ], [ 5.886837, 48.456175 ], [ 5.897314, 48.44861 ], [ 5.885263, 48.437885 ], [ 5.884003, 48.43638 ], [ 5.882079, 48.43337 ], [ 5.85934, 48.4165 ], [ 5.856315, 48.41184 ], [ 5.855383, 48.409377 ], [ 5.865014, 48.40697 ], [ 5.870039, 48.406133 ], [ 5.878184, 48.40301 ], [ 5.896968, 48.40848 ], [ 5.907931, 48.42799 ], [ 5.898036, 48.43595 ], [ 5.926762, 48.4353 ], [ 5.931327, 48.433946 ], [ 5.924594, 48.424552 ], [ 5.91439, 48.424938 ], [ 5.909567, 48.41893 ], [ 5.91004, 48.40476 ], [ 5.918091, 48.404141 ], [ 5.920503, 48.40107 ], [ 5.925022, 48.396039 ], [ 5.92769, 48.393686 ], [ 5.937153, 48.40217 ], [ 5.941116, 48.40074 ], [ 5.94698, 48.39826 ], [ 5.949585, 48.3965 ], [ 5.952035, 48.390066 ], [ 5.954939, 48.387374 ], [ 5.947487, 48.37862 ], [ 5.944654, 48.37582 ], [ 5.952599, 48.37267 ], [ 5.95189, 48.36678 ], [ 5.956472, 48.36729 ], [ 5.954123, 48.359386 ], [ 5.955419, 48.356481 ], [ 5.960272, 48.351021 ], [ 5.96481, 48.35006 ], [ 5.973706, 48.35187 ], [ 5.982558, 48.35004 ], [ 5.988254, 48.35497 ], [ 5.992951, 48.35442 ], [ 6.005127, 48.360416 ], [ 6.01525, 48.360951 ], [ 6.020291, 48.36145 ], [ 6.024946, 48.35689 ], [ 6.032763, 48.361026 ], [ 6.046914, 48.36227 ], [ 6.047337, 48.365613 ], [ 6.058422, 48.362 ], [ 6.061359, 48.35975 ], [ 6.066434, 48.35945 ], [ 6.071492, 48.359767 ], [ 6.075185, 48.362156 ], [ 6.079825, 48.36364 ], [ 6.073746, 48.37752 ], [ 6.076707, 48.37985 ], [ 6.087498, 48.3834 ], [ 6.091215, 48.382258 ], [ 6.098286, 48.36485 ], [ 6.093755, 48.363852 ], [ 6.102617, 48.35628 ], [ 6.112344, 48.3549 ], [ 6.11705, 48.353841 ], [ 6.122831, 48.364754 ], [ 6.125088, 48.367261 ], [ 6.132707, 48.362684 ], [ 6.14879, 48.37923 ], [ 6.152327, 48.381648 ], [ 6.147421, 48.40783 ], [ 6.149421, 48.40827 ], [ 6.163188, 48.40579 ], [ 6.177176, 48.40745 ], [ 6.178927, 48.410461 ], [ 6.18273, 48.408954 ], [ 6.1788, 48.400542 ], [ 6.17842, 48.39761 ], [ 6.200161, 48.39804 ], [ 6.201743, 48.399375 ], [ 6.221955, 48.400664 ], [ 6.232097, 48.40023 ], [ 6.233339, 48.397113 ], [ 6.242664, 48.404052 ], [ 6.255765, 48.40641 ], [ 6.260443, 48.4064 ], [ 6.268672, 48.422805 ], [ 6.270298, 48.426101 ], [ 6.279505, 48.42405 ], [ 6.285143, 48.42942 ], [ 6.297438, 48.43367 ], [ 6.303381, 48.42854 ], [ 6.30818, 48.41195 ], [ 6.331346, 48.40486 ], [ 6.336509, 48.40459 ], [ 6.353963, 48.403881 ], [ 6.358962, 48.404865 ], [ 6.362428, 48.40745 ], [ 6.363617, 48.407867 ], [ 6.376792, 48.411896 ], [ 6.39045, 48.4045 ], [ 6.384043, 48.39952 ], [ 6.384241, 48.39461 ], [ 6.387395, 48.392143 ], [ 6.395929, 48.39469 ], [ 6.400678, 48.39536 ], [ 6.402911, 48.392256 ], [ 6.412688, 48.39332 ], [ 6.424666, 48.40823 ], [ 6.443482, 48.413021 ], [ 6.448213, 48.414405 ], [ 6.456866, 48.41702 ], [ 6.466929, 48.41043 ], [ 6.471325, 48.409201 ], [ 6.482636, 48.414966 ], [ 6.486985, 48.41628 ], [ 6.496649, 48.41494 ], [ 6.501792, 48.41456 ], [ 6.513622, 48.421553 ], [ 6.518029, 48.423511 ], [ 6.530202, 48.4295 ], [ 6.534394, 48.43146 ], [ 6.540543, 48.42794 ], [ 6.544568, 48.42762 ], [ 6.578736, 48.415534 ], [ 6.583871, 48.417225 ], [ 6.568563, 48.438238 ], [ 6.584766, 48.45988 ], [ 6.594471, 48.46241 ], [ 6.596062, 48.46468 ], [ 6.597506, 48.46697 ], [ 6.607558, 48.46723 ], [ 6.620728, 48.47244 ], [ 6.63083, 48.472029 ], [ 6.635397, 48.470502 ], [ 6.638711, 48.46048 ], [ 6.636392, 48.450272 ], [ 6.644486, 48.441666 ], [ 6.647149, 48.43168 ], [ 6.644798, 48.428616 ], [ 6.659226, 48.42613 ], [ 6.66941, 48.426055 ], [ 6.676469, 48.423468 ], [ 6.679525, 48.42171 ], [ 6.682938, 48.424456 ], [ 6.685584, 48.418006 ], [ 6.694155, 48.41443 ], [ 6.698644, 48.41286 ], [ 6.712979, 48.4214 ], [ 6.724907, 48.41616 ], [ 6.734617, 48.417048 ], [ 6.738843, 48.415402 ], [ 6.739562, 48.41201 ], [ 6.760057, 48.41105 ], [ 6.765889, 48.40164 ], [ 6.775474, 48.40138 ], [ 6.780436, 48.402283 ], [ 6.785524, 48.401932 ], [ 6.785782, 48.39613 ], [ 6.797637, 48.402021 ], [ 6.815027, 48.39507 ], [ 6.826331, 48.41248 ], [ 6.827695, 48.4156 ], [ 6.849189, 48.42383 ], [ 6.8532, 48.42999 ], [ 6.855054, 48.433116 ], [ 6.864557, 48.43553 ], [ 6.869862, 48.42248 ], [ 6.88266, 48.41712 ], [ 6.892421, 48.41919 ], [ 6.914972, 48.4329 ], [ 6.918228, 48.43553 ], [ 6.921954, 48.43939 ], [ 6.93055, 48.442644 ], [ 6.965827, 48.47144 ], [ 6.977808, 48.476702 ], [ 6.981908, 48.47843 ], [ 6.986537, 48.48015 ], [ 7.007433, 48.4818 ], [ 7.028723, 48.49209 ], [ 7.050706, 48.49544 ], [ 7.05366, 48.497718 ], [ 7.058079, 48.49912 ], [ 7.078427, 48.50736 ], [ 7.083761, 48.50849 ], [ 7.088409, 48.51003 ], [ 7.123165, 48.51359 ], [ 7.125615, 48.49959 ], [ 7.096288, 48.50312 ], [ 7.094251, 48.5062 ], [ 7.091003, 48.500878 ], [ 7.093726, 48.492352 ], [ 7.093663, 48.48928 ], [ 7.114032, 48.485326 ], [ 7.118811, 48.483719 ], [ 7.116817, 48.47333 ], [ 7.104289, 48.45416 ], [ 7.106218, 48.44402 ], [ 7.108093, 48.44029 ], [ 7.109384, 48.438797 ], [ 7.105324, 48.43709 ], [ 7.095687, 48.426533 ], [ 7.097112, 48.423457 ], [ 7.09342, 48.41118 ], [ 7.095804, 48.404953 ], [ 7.087244, 48.401015 ], [ 7.084985, 48.39788 ], [ 7.088645, 48.39572 ], [ 7.092947, 48.394169 ], [ 7.103692, 48.38799 ], [ 7.108321, 48.37902 ], [ 7.106642, 48.376065 ], [ 7.100822, 48.37374 ], [ 7.088402, 48.36305 ], [ 7.085662, 48.36014 ], [ 7.079827, 48.35481 ], [ 7.075964, 48.352585 ], [ 7.101462, 48.34503 ], [ 7.105971, 48.34411 ], [ 7.117124, 48.334133 ], [ 7.136446, 48.33241 ], [ 7.141319, 48.33202 ], [ 7.144831, 48.332165 ], [ 7.147917, 48.33327 ], [ 7.166545, 48.33934 ], [ 7.169537, 48.342307 ], [ 7.183497, 48.33839 ], [ 7.179213, 48.32869 ], [ 7.180957, 48.32548 ], [ 7.190289, 48.32289 ], [ 7.196704, 48.313722 ], [ 7.198282, 48.310477 ], [ 7.193611, 48.302029 ], [ 7.176243, 48.299121 ], [ 7.172441, 48.29749 ], [ 7.174226, 48.287813 ], [ 7.159414, 48.27463 ], [ 7.158499, 48.26835 ], [ 7.157746, 48.26753 ], [ 7.153763, 48.26527 ], [ 7.143334, 48.258446 ], [ 7.132651, 48.24283 ], [ 7.126811, 48.22509 ], [ 7.116387, 48.20713 ], [ 7.108503, 48.20317 ], [ 7.105556, 48.200462 ], [ 7.108345, 48.19751 ], [ 7.10629, 48.19431 ], [ 7.102708, 48.19191 ], [ 7.086997, 48.183753 ], [ 7.083342, 48.17745 ], [ 7.082138, 48.17477 ], [ 7.077558, 48.170925 ], [ 7.078438, 48.16401 ], [ 7.059047, 48.13918 ], [ 7.068587, 48.130752 ], [ 7.084163, 48.12922 ], [ 7.083691, 48.12207 ], [ 7.076708, 48.108486 ], [ 7.070402, 48.10644 ], [ 7.06841, 48.10328 ], [ 7.05165, 48.08261 ], [ 7.034358, 48.075389 ], [ 7.024436, 48.063384 ], [ 7.023359, 48.05648 ], [ 7.018614, 48.05506 ], [ 7.012283, 48.04583 ], [ 7.009749, 48.04289 ], [ 7.013018, 48.04011 ], [ 7.016021, 48.03719 ], [ 7.011704, 48.035355 ], [ 7.002566, 48.02325 ], [ 6.989372, 48.018211 ], [ 6.981539, 48.00942 ], [ 6.976517, 48.009239 ], [ 6.961425, 48.00046 ], [ 6.951891, 48.00241 ], [ 6.94353, 47.99867 ], [ 6.943033, 47.99199 ], [ 6.943766, 47.980383 ], [ 6.941063, 47.97778 ], [ 6.931043, 47.97115 ], [ 6.925559, 47.95925 ], [ 6.923823, 47.95247 ], [ 6.920791, 47.945939 ], [ 6.924738, 47.92915 ], [ 6.912346, 47.91838 ], [ 6.926308, 47.91541 ], [ 6.927478, 47.90875 ], [ 6.917036, 47.90165 ], [ 6.918458, 47.898414 ], [ 6.898328, 47.88869 ], [ 6.907124, 47.88116 ], [ 6.907135, 47.87129 ], [ 6.90804, 47.864664 ], [ 6.914944, 47.86005 ], [ 6.918906, 47.858039 ], [ 6.918805, 47.85286 ], [ 6.920048, 47.850287 ], [ 6.916958, 47.847597 ], [ 6.907205, 47.84604 ], [ 6.897089, 47.83479 ], [ 6.896086, 47.83297 ], [ 6.891175, 47.83352 ], [ 6.84618, 47.822945 ], [ 6.84183, 47.82478 ], [ 6.823539, 47.81305 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "90", "CODE_DEPT": "89", "NOM_DEPT": "YONNE", "CODE_CHF": "024", "NOM_CHF": "AUXERRE", "X_CHF_LIEU": "7424", "Y_CHF_LIEU": "67442", "X_CENTROID": "7422", "Y_CENTROID": "67489", "CODE_REG": "26", "NOM_REGION": "BOURGOGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.106086, 47.33926 ], [ 4.101162, 47.33813 ], [ 4.076938, 47.340736 ], [ 4.067422, 47.33847 ], [ 4.047974, 47.339525 ], [ 4.039859, 47.327435 ], [ 4.030765, 47.32625 ], [ 4.027648, 47.31628 ], [ 4.020165, 47.31261 ], [ 4.000593, 47.31229 ], [ 3.987562, 47.32279 ], [ 3.982474, 47.322595 ], [ 3.972954, 47.335 ], [ 3.963999, 47.36586 ], [ 3.971393, 47.3746 ], [ 3.961353, 47.38232 ], [ 3.960513, 47.38579 ], [ 3.950594, 47.39305 ], [ 3.937927, 47.379826 ], [ 3.908792, 47.38206 ], [ 3.889564, 47.36875 ], [ 3.887463, 47.365881 ], [ 3.87141, 47.36717 ], [ 3.861455, 47.39337 ], [ 3.87946, 47.39991 ], [ 3.893397, 47.41029 ], [ 3.890213, 47.419812 ], [ 3.880587, 47.42654 ], [ 3.879911, 47.429811 ], [ 3.875517, 47.42881 ], [ 3.864383, 47.43433 ], [ 3.855194, 47.43388 ], [ 3.851308, 47.435588 ], [ 3.851737, 47.427572 ], [ 3.842009, 47.40872 ], [ 3.83893, 47.40605 ], [ 3.829087, 47.40576 ], [ 3.822621, 47.40091 ], [ 3.829261, 47.385333 ], [ 3.828057, 47.38205 ], [ 3.813743, 47.38037 ], [ 3.800243, 47.38965 ], [ 3.790461, 47.38973 ], [ 3.785631, 47.39032 ], [ 3.784123, 47.39328 ], [ 3.783303, 47.405169 ], [ 3.774605, 47.4062 ], [ 3.772571, 47.40308 ], [ 3.73389, 47.397065 ], [ 3.720317, 47.4013 ], [ 3.714782, 47.40683 ], [ 3.71491, 47.409463 ], [ 3.712403, 47.41442 ], [ 3.701553, 47.426486 ], [ 3.687996, 47.43166 ], [ 3.683925, 47.43387 ], [ 3.679809, 47.432548 ], [ 3.673439, 47.43561 ], [ 3.679358, 47.447242 ], [ 3.677363, 47.44686 ], [ 3.674397, 47.44953 ], [ 3.655583, 47.44881 ], [ 3.634157, 47.456076 ], [ 3.628686, 47.4547 ], [ 3.623783, 47.455385 ], [ 3.616422, 47.45934 ], [ 3.615236, 47.465828 ], [ 3.60535, 47.4662 ], [ 3.600971, 47.465182 ], [ 3.593202, 47.457714 ], [ 3.587873, 47.461882 ], [ 3.583276, 47.4615 ], [ 3.581675, 47.46445 ], [ 3.57613, 47.48213 ], [ 3.57569, 47.48317 ], [ 3.575259, 47.48629 ], [ 3.580478, 47.49487 ], [ 3.575459, 47.49869 ], [ 3.570725, 47.499523 ], [ 3.552142, 47.50341 ], [ 3.541425, 47.51425 ], [ 3.538233, 47.516592 ], [ 3.526056, 47.52143 ], [ 3.521363, 47.52255 ], [ 3.514192, 47.527224 ], [ 3.510307, 47.5505 ], [ 3.498358, 47.560878 ], [ 3.495344, 47.559972 ], [ 3.492033, 47.55999 ], [ 3.491375, 47.55647 ], [ 3.494746, 47.52129 ], [ 3.488277, 47.49383 ], [ 3.483515, 47.493032 ], [ 3.462467, 47.501183 ], [ 3.457679, 47.500472 ], [ 3.449538, 47.503871 ], [ 3.446589, 47.51028 ], [ 3.43223, 47.50733 ], [ 3.41224, 47.50787 ], [ 3.408787, 47.508027 ], [ 3.405484, 47.50869 ], [ 3.400355, 47.508578 ], [ 3.391332, 47.50656 ], [ 3.391056, 47.499653 ], [ 3.380385, 47.487833 ], [ 3.365715, 47.48653 ], [ 3.345704, 47.476617 ], [ 3.346456, 47.46969 ], [ 3.338044, 47.47252 ], [ 3.33567, 47.481462 ], [ 3.306115, 47.49367 ], [ 3.296228, 47.492596 ], [ 3.287427, 47.500864 ], [ 3.285252, 47.503939 ], [ 3.274682, 47.49196 ], [ 3.259236, 47.49191 ], [ 3.250321, 47.48841 ], [ 3.235027, 47.48964 ], [ 3.233674, 47.49285 ], [ 3.204517, 47.523192 ], [ 3.18614, 47.52359 ], [ 3.178884, 47.51947 ], [ 3.165191, 47.517502 ], [ 3.162247, 47.524005 ], [ 3.149412, 47.529504 ], [ 3.136654, 47.540124 ], [ 3.123027, 47.539428 ], [ 3.122224, 47.542894 ], [ 3.11636, 47.56704 ], [ 3.123524, 47.57615 ], [ 3.120284, 47.578893 ], [ 3.117534, 47.580678 ], [ 3.111581, 47.5839 ], [ 3.107221, 47.58554 ], [ 3.088025, 47.58699 ], [ 3.071969, 47.57956 ], [ 3.068241, 47.57706 ], [ 3.058681, 47.568759 ], [ 3.038488, 47.56506 ], [ 3.030852, 47.56057 ], [ 3.026689, 47.558708 ], [ 3.017047, 47.55783 ], [ 2.991328, 47.568027 ], [ 2.976538, 47.56943 ], [ 2.974821, 47.572714 ], [ 2.96487, 47.57446 ], [ 2.959327, 47.587517 ], [ 2.945698, 47.59225 ], [ 2.940355, 47.59821 ], [ 2.943619, 47.607763 ], [ 2.932321, 47.62705 ], [ 2.934061, 47.630152 ], [ 2.936158, 47.636427 ], [ 2.939684, 47.63836 ], [ 2.954234, 47.64569 ], [ 2.951156, 47.6479 ], [ 2.941581, 47.657537 ], [ 2.937223, 47.659056 ], [ 2.928231, 47.658439 ], [ 2.918155, 47.6698 ], [ 2.92416, 47.682496 ], [ 2.893098, 47.69888 ], [ 2.888655, 47.70057 ], [ 2.884065, 47.702075 ], [ 2.879661, 47.70378 ], [ 2.883507, 47.71345 ], [ 2.877733, 47.71885 ], [ 2.861175, 47.710943 ], [ 2.848969, 47.71685 ], [ 2.851135, 47.71967 ], [ 2.84865, 47.7258 ], [ 2.852539, 47.728151 ], [ 2.858407, 47.748679 ], [ 2.853882, 47.75868 ], [ 2.856477, 47.761736 ], [ 2.899667, 47.76492 ], [ 2.908379, 47.768017 ], [ 2.912915, 47.769388 ], [ 2.93056, 47.76283 ], [ 2.935592, 47.763247 ], [ 2.937484, 47.7663 ], [ 2.947189, 47.76579 ], [ 2.954511, 47.77426 ], [ 2.977353, 47.779958 ], [ 2.98045, 47.782523 ], [ 2.988902, 47.786125 ], [ 3.018803, 47.78647 ], [ 3.023798, 47.786375 ], [ 3.027584, 47.799766 ], [ 3.024263, 47.80966 ], [ 3.024344, 47.81308 ], [ 3.019882, 47.81304 ], [ 3.015473, 47.813539 ], [ 3.019403, 47.81945 ], [ 3.013992, 47.825032 ], [ 3.013874, 47.83184 ], [ 3.030665, 47.83748 ], [ 3.033824, 47.843874 ], [ 3.026906, 47.85892 ], [ 3.023297, 47.861021 ], [ 3.018188, 47.861193 ], [ 2.994904, 47.86735 ], [ 3.011491, 47.875099 ], [ 3.007226, 47.895295 ], [ 3.01543, 47.8985 ], [ 3.011818, 47.904825 ], [ 3.030666, 47.90784 ], [ 3.048244, 47.911331 ], [ 3.053812, 47.92445 ], [ 3.063161, 47.92733 ], [ 3.065214, 47.930519 ], [ 3.078743, 47.93327 ], [ 3.08394, 47.942431 ], [ 3.088683, 47.94318 ], [ 3.10076, 47.94799 ], [ 3.105272, 47.946941 ], [ 3.113425, 47.963348 ], [ 3.128119, 47.97251 ], [ 3.128498, 47.979513 ], [ 3.122989, 47.985198 ], [ 3.126676, 47.991268 ], [ 3.121123, 47.995936 ], [ 3.120845, 48.009363 ], [ 3.10657, 48.013183 ], [ 3.10115, 48.019028 ], [ 3.102176, 48.022456 ], [ 3.120648, 48.028603 ], [ 3.124263, 48.03113 ], [ 3.119731, 48.03247 ], [ 3.09762, 48.039558 ], [ 3.090536, 48.04822 ], [ 3.095365, 48.05398 ], [ 3.090345, 48.053944 ], [ 3.078932, 48.06024 ], [ 3.060278, 48.064699 ], [ 3.050471, 48.07233 ], [ 3.049882, 48.088253 ], [ 3.050194, 48.09124 ], [ 3.042902, 48.093376 ], [ 3.041212, 48.09648 ], [ 3.0351, 48.11563 ], [ 3.015884, 48.11571 ], [ 3.027273, 48.1307 ], [ 3.023122, 48.13567 ], [ 3.019049, 48.13778 ], [ 3.01323, 48.14348 ], [ 3.003886, 48.14486 ], [ 3.002138, 48.14166 ], [ 2.994044, 48.1431 ], [ 2.987615, 48.15228 ], [ 2.978176, 48.15058 ], [ 2.963612, 48.15287 ], [ 2.959952, 48.15538 ], [ 2.951969, 48.16436 ], [ 2.936314, 48.163392 ], [ 2.934241, 48.175727 ], [ 2.934749, 48.17882 ], [ 2.951461, 48.19049 ], [ 2.955416, 48.19252 ], [ 2.970958, 48.194188 ], [ 2.971666, 48.203411 ], [ 2.984587, 48.207453 ], [ 2.988961, 48.20902 ], [ 2.997119, 48.20635 ], [ 3.00599, 48.20942 ], [ 3.012819, 48.2221 ], [ 3.032696, 48.24874 ], [ 3.04757, 48.2497 ], [ 3.043708, 48.27184 ], [ 3.029261, 48.274204 ], [ 3.02476, 48.275645 ], [ 3.026961, 48.28246 ], [ 3.029739, 48.285424 ], [ 3.026761, 48.28802 ], [ 3.020051, 48.29638 ], [ 3.027469, 48.300639 ], [ 3.0171, 48.304537 ], [ 3.015685, 48.307317 ], [ 3.040571, 48.328931 ], [ 3.04226, 48.33219 ], [ 3.036773, 48.33779 ], [ 3.046276, 48.35731 ], [ 3.049451, 48.36003 ], [ 3.062057, 48.357442 ], [ 3.066702, 48.35772 ], [ 3.080611, 48.36083 ], [ 3.101066, 48.354788 ], [ 3.099602, 48.3516 ], [ 3.103418, 48.349514 ], [ 3.118385, 48.36668 ], [ 3.122467, 48.36863 ], [ 3.135759, 48.37088 ], [ 3.139869, 48.372599 ], [ 3.14485, 48.367303 ], [ 3.170015, 48.3747 ], [ 3.171808, 48.37768 ], [ 3.183373, 48.37146 ], [ 3.184941, 48.368129 ], [ 3.193763, 48.369392 ], [ 3.199658, 48.364461 ], [ 3.20445, 48.3642 ], [ 3.211304, 48.366267 ], [ 3.214496, 48.36759 ], [ 3.222216, 48.370008 ], [ 3.226483, 48.37024 ], [ 3.246859, 48.36729 ], [ 3.251021, 48.365101 ], [ 3.259611, 48.36859 ], [ 3.267473, 48.37713 ], [ 3.272179, 48.378325 ], [ 3.281618, 48.37816 ], [ 3.283175, 48.381385 ], [ 3.306018, 48.37289 ], [ 3.31069, 48.37291 ], [ 3.311856, 48.376023 ], [ 3.325478, 48.37309 ], [ 3.330117, 48.372123 ], [ 3.336538, 48.37318 ], [ 3.346315, 48.373246 ], [ 3.351685, 48.378619 ], [ 3.356559, 48.378452 ], [ 3.356091, 48.37516 ], [ 3.361191, 48.37257 ], [ 3.366319, 48.391485 ], [ 3.374142, 48.39549 ], [ 3.375408, 48.39869 ], [ 3.385095, 48.398713 ], [ 3.400207, 48.390881 ], [ 3.409931, 48.39054 ], [ 3.414792, 48.390273 ], [ 3.414008, 48.37654 ], [ 3.426582, 48.36169 ], [ 3.431584, 48.36085 ], [ 3.450115, 48.372852 ], [ 3.465281, 48.37451 ], [ 3.470481, 48.374671 ], [ 3.470803, 48.37444 ], [ 3.472982, 48.371899 ], [ 3.474875, 48.369265 ], [ 3.495725, 48.36935 ], [ 3.50441, 48.36549 ], [ 3.540825, 48.336547 ], [ 3.545109, 48.33455 ], [ 3.543961, 48.32276 ], [ 3.543904, 48.319789 ], [ 3.559032, 48.320358 ], [ 3.564072, 48.321081 ], [ 3.56318, 48.310819 ], [ 3.587536, 48.29848 ], [ 3.582509, 48.28284 ], [ 3.610952, 48.27461 ], [ 3.615187, 48.27254 ], [ 3.622873, 48.261375 ], [ 3.624347, 48.258442 ], [ 3.624443, 48.25517 ], [ 3.599994, 48.23551 ], [ 3.604684, 48.229886 ], [ 3.608006, 48.231831 ], [ 3.619329, 48.22813 ], [ 3.621602, 48.22561 ], [ 3.609202, 48.21066 ], [ 3.579608, 48.190672 ], [ 3.575186, 48.18874 ], [ 3.589992, 48.180588 ], [ 3.593967, 48.1787 ], [ 3.623548, 48.192 ], [ 3.636498, 48.186735 ], [ 3.64051, 48.184617 ], [ 3.648805, 48.17093 ], [ 3.650655, 48.16818 ], [ 3.65964, 48.159577 ], [ 3.666663, 48.142638 ], [ 3.66787, 48.139212 ], [ 3.691075, 48.145413 ], [ 3.693632, 48.15174 ], [ 3.694415, 48.15505 ], [ 3.698164, 48.148692 ], [ 3.705728, 48.1452 ], [ 3.721798, 48.158178 ], [ 3.716542, 48.17418 ], [ 3.741053, 48.16934 ], [ 3.74548, 48.167534 ], [ 3.754541, 48.15209 ], [ 3.742117, 48.1417 ], [ 3.739803, 48.138693 ], [ 3.74065, 48.131983 ], [ 3.752958, 48.125957 ], [ 3.763975, 48.13212 ], [ 3.768933, 48.13285 ], [ 3.776493, 48.12867 ], [ 3.782117, 48.11992 ], [ 3.791315, 48.117598 ], [ 3.798242, 48.10911 ], [ 3.80166, 48.10673 ], [ 3.803843, 48.10367 ], [ 3.80565, 48.10052 ], [ 3.798965, 48.08936 ], [ 3.798608, 48.08617 ], [ 3.806636, 48.08239 ], [ 3.822803, 48.065827 ], [ 3.826352, 48.063516 ], [ 3.828647, 48.04807 ], [ 3.82198, 48.04392 ], [ 3.829137, 48.03902 ], [ 3.832152, 48.036235 ], [ 3.83961, 48.03606 ], [ 3.843397, 48.03537 ], [ 3.847997, 48.02939 ], [ 3.870242, 48.01631 ], [ 3.870626, 48.00623 ], [ 3.870812, 48.002864 ], [ 3.862835, 48.00627 ], [ 3.844554, 48.003613 ], [ 3.839811, 48.00389 ], [ 3.849394, 47.986794 ], [ 3.850027, 47.98366 ], [ 3.859899, 47.98401 ], [ 3.863339, 47.979601 ], [ 3.8618, 47.976444 ], [ 3.880447, 47.98144 ], [ 3.882089, 47.997965 ], [ 3.885815, 48.000277 ], [ 3.895731, 47.999833 ], [ 3.90227, 47.99484 ], [ 3.903717, 47.99164 ], [ 3.913529, 47.97208 ], [ 3.905655, 47.95914 ], [ 3.902393, 47.93829 ], [ 3.896827, 47.932289 ], [ 3.894031, 47.929296 ], [ 3.895693, 47.92855 ], [ 3.905178, 47.926483 ], [ 3.914044, 47.92962 ], [ 3.918489, 47.92802 ], [ 3.923708, 47.932432 ], [ 3.92645, 47.93457 ], [ 3.949414, 47.93206 ], [ 3.963109, 47.935455 ], [ 3.976533, 47.93127 ], [ 3.981186, 47.930166 ], [ 3.985625, 47.930516 ], [ 4.001886, 47.94058 ], [ 4.005536, 47.94237 ], [ 4.019887, 47.92868 ], [ 4.025042, 47.928649 ], [ 4.033216, 47.932339 ], [ 4.045912, 47.9269 ], [ 4.054893, 47.93003 ], [ 4.060938, 47.94571 ], [ 4.089798, 47.94397 ], [ 4.092716, 47.94128 ], [ 4.094619, 47.92834 ], [ 4.113712, 47.92816 ], [ 4.122115, 47.93166 ], [ 4.137273, 47.937786 ], [ 4.141839, 47.937112 ], [ 4.141785, 47.94393 ], [ 4.162736, 47.95857 ], [ 4.167337, 47.96001 ], [ 4.184257, 47.95386 ], [ 4.185452, 47.94016 ], [ 4.200398, 47.94183 ], [ 4.206056, 47.947361 ], [ 4.204572, 47.96108 ], [ 4.195372, 47.96431 ], [ 4.195329, 47.96776 ], [ 4.201952, 47.972577 ], [ 4.221154, 47.97122 ], [ 4.225956, 47.971942 ], [ 4.227548, 47.962007 ], [ 4.2239, 47.948499 ], [ 4.246331, 47.930425 ], [ 4.259501, 47.925577 ], [ 4.274316, 47.92352 ], [ 4.288659, 47.92685 ], [ 4.293424, 47.92568 ], [ 4.29652, 47.92304 ], [ 4.305628, 47.9204 ], [ 4.306787, 47.91038 ], [ 4.312718, 47.90498 ], [ 4.308703, 47.90336 ], [ 4.300067, 47.901094 ], [ 4.28612, 47.90056 ], [ 4.273877, 47.89631 ], [ 4.27068, 47.89359 ], [ 4.266941, 47.88717 ], [ 4.247359, 47.87616 ], [ 4.26444, 47.871501 ], [ 4.262689, 47.84401 ], [ 4.271426, 47.84034 ], [ 4.294777, 47.84667 ], [ 4.324863, 47.847197 ], [ 4.328751, 47.84169 ], [ 4.32163, 47.83384 ], [ 4.324899, 47.82074 ], [ 4.319977, 47.811427 ], [ 4.323647, 47.809639 ], [ 4.340297, 47.79957 ], [ 4.338072, 47.79662 ], [ 4.327231, 47.78566 ], [ 4.33446, 47.77725 ], [ 4.335459, 47.77396 ], [ 4.330507, 47.77296 ], [ 4.32954, 47.769534 ], [ 4.331033, 47.756087 ], [ 4.318003, 47.750635 ], [ 4.309503, 47.75236 ], [ 4.308158, 47.749242 ], [ 4.293038, 47.73285 ], [ 4.288087, 47.733901 ], [ 4.275392, 47.73983 ], [ 4.260371, 47.740621 ], [ 4.256314, 47.727 ], [ 4.241388, 47.72428 ], [ 4.239355, 47.71776 ], [ 4.253546, 47.71426 ], [ 4.257436, 47.70786 ], [ 4.265892, 47.70395 ], [ 4.261835, 47.69424 ], [ 4.280804, 47.6852 ], [ 4.284063, 47.682662 ], [ 4.279384, 47.68157 ], [ 4.255222, 47.6835 ], [ 4.250789, 47.67809 ], [ 4.226613, 47.67821 ], [ 4.22599, 47.67142 ], [ 4.246661, 47.661732 ], [ 4.236943, 47.646604 ], [ 4.231944, 47.645882 ], [ 4.224024, 47.633363 ], [ 4.215349, 47.630798 ], [ 4.213621, 47.604 ], [ 4.215812, 47.60083 ], [ 4.210871, 47.60133 ], [ 4.201036, 47.60197 ], [ 4.197352, 47.599692 ], [ 4.186136, 47.581289 ], [ 4.188284, 47.573174 ], [ 4.187159, 47.57048 ], [ 4.17495, 47.553 ], [ 4.168098, 47.55163 ], [ 4.164177, 47.55357 ], [ 4.159492, 47.55276 ], [ 4.153444, 47.54425 ], [ 4.145917, 47.54045 ], [ 4.149408, 47.53524 ], [ 4.150705, 47.5325 ], [ 4.143225, 47.52832 ], [ 4.140114, 47.525789 ], [ 4.13752, 47.51944 ], [ 4.119533, 47.5147 ], [ 4.114631, 47.51476 ], [ 4.116087, 47.50557 ], [ 4.112404, 47.5035 ], [ 4.116126, 47.49786 ], [ 4.118944, 47.49539 ], [ 4.120923, 47.489696 ], [ 4.115979, 47.48448 ], [ 4.118079, 47.4788 ], [ 4.120568, 47.477816 ], [ 4.125598, 47.47707 ], [ 4.128832, 47.470462 ], [ 4.119427, 47.443553 ], [ 4.115591, 47.44164 ], [ 4.108109, 47.44561 ], [ 4.103834, 47.44419 ], [ 4.106987, 47.43815 ], [ 4.098629, 47.430473 ], [ 4.095401, 47.432898 ], [ 4.085393, 47.4399 ], [ 4.080503, 47.43624 ], [ 4.083221, 47.43353 ], [ 4.082661, 47.42355 ], [ 4.084039, 47.42021 ], [ 4.072978, 47.413652 ], [ 4.070106, 47.407286 ], [ 4.065198, 47.40727 ], [ 4.067769, 47.40051 ], [ 4.085936, 47.394031 ], [ 4.078053, 47.38175 ], [ 4.082395, 47.37555 ], [ 4.097171, 47.373534 ], [ 4.106783, 47.37627 ], [ 4.10567, 47.36602 ], [ 4.098155, 47.35749 ], [ 4.107089, 47.34934 ], [ 4.106086, 47.33926 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "91", "CODE_DEPT": "90", "NOM_DEPT": "TERRITOIRE-DE-BELFORT", "CODE_CHF": "010", "NOM_CHF": "BELFORT", "X_CHF_LIEU": "9889", "Y_CHF_LIEU": "67337", "X_CENTROID": "9948", "Y_CENTROID": "67330", "CODE_REG": "43", "NOM_REGION": "FRANCHE-COMTE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.939179, 47.4337 ], [ 6.936741, 47.43612 ], [ 6.934951, 47.447019 ], [ 6.932251, 47.45276 ], [ 6.932316, 47.455824 ], [ 6.92987, 47.45853 ], [ 6.919363, 47.468203 ], [ 6.907344, 47.472888 ], [ 6.909833, 47.47494 ], [ 6.915711, 47.47824 ], [ 6.913493, 47.48135 ], [ 6.907611, 47.494555 ], [ 6.920045, 47.49782 ], [ 6.922982, 47.50016 ], [ 6.931237, 47.497752 ], [ 6.938548, 47.48651 ], [ 6.942672, 47.48492 ], [ 6.945373, 47.48729 ], [ 6.949125, 47.4857 ], [ 6.944813, 47.49826 ], [ 6.947186, 47.510407 ], [ 6.945008, 47.51334 ], [ 6.940905, 47.51506 ], [ 6.93758, 47.51742 ], [ 6.934612, 47.517764 ], [ 6.925322, 47.51953 ], [ 6.921146, 47.520273 ], [ 6.907885, 47.52706 ], [ 6.915914, 47.5304 ], [ 6.91027, 47.539646 ], [ 6.906982, 47.54219 ], [ 6.906437, 47.54548 ], [ 6.899593, 47.549818 ], [ 6.889827, 47.55007 ], [ 6.887326, 47.55283 ], [ 6.884008, 47.55517 ], [ 6.88001, 47.55365 ], [ 6.85988, 47.54755 ], [ 6.855715, 47.54794 ], [ 6.850617, 47.54813 ], [ 6.830636, 47.54644 ], [ 6.81666, 47.547922 ], [ 6.814554, 47.55086 ], [ 6.807005, 47.5628 ], [ 6.809823, 47.5687 ], [ 6.817753, 47.571786 ], [ 6.821724, 47.573314 ], [ 6.821011, 47.57433 ], [ 6.820109, 47.57549 ], [ 6.816938, 47.578076 ], [ 6.804107, 47.583046 ], [ 6.802327, 47.58966 ], [ 6.791302, 47.59629 ], [ 6.793286, 47.59928 ], [ 6.789341, 47.60469 ], [ 6.788234, 47.60487 ], [ 6.785643, 47.61136 ], [ 6.777868, 47.615412 ], [ 6.778741, 47.622098 ], [ 6.780405, 47.625261 ], [ 6.791077, 47.62688 ], [ 6.792461, 47.63003 ], [ 6.799868, 47.63763 ], [ 6.798335, 47.644 ], [ 6.790704, 47.64789 ], [ 6.787491, 47.65166 ], [ 6.784508, 47.65434 ], [ 6.777237, 47.665986 ], [ 6.778645, 47.67587 ], [ 6.780151, 47.689771 ], [ 6.779242, 47.69294 ], [ 6.770079, 47.7034 ], [ 6.771583, 47.71257 ], [ 6.759074, 47.72281 ], [ 6.760447, 47.735813 ], [ 6.759587, 47.739156 ], [ 6.758938, 47.74206 ], [ 6.757638, 47.74788 ], [ 6.771134, 47.764492 ], [ 6.774581, 47.76673 ], [ 6.786246, 47.78229 ], [ 6.807186, 47.79243 ], [ 6.824672, 47.809647 ], [ 6.823539, 47.81305 ], [ 6.84183, 47.82478 ], [ 6.84618, 47.822945 ], [ 6.842967, 47.81367 ], [ 6.862197, 47.78744 ], [ 6.864959, 47.784607 ], [ 6.88743, 47.779961 ], [ 6.891696, 47.77834 ], [ 6.902092, 47.77645 ], [ 6.907546, 47.777715 ], [ 6.91897, 47.774 ], [ 6.922358, 47.77209 ], [ 6.923452, 47.77006 ], [ 6.938479, 47.77082 ], [ 6.974542, 47.75147 ], [ 6.993444, 47.746743 ], [ 6.998425, 47.745825 ], [ 7.011685, 47.741631 ], [ 7.015778, 47.74346 ], [ 7.018794, 47.7374 ], [ 7.020601, 47.73444 ], [ 7.0294, 47.72838 ], [ 7.032079, 47.72619 ], [ 7.035193, 47.7241 ], [ 7.037418, 47.721558 ], [ 7.029376, 47.70866 ], [ 7.027565, 47.70537 ], [ 7.035736, 47.694967 ], [ 7.038652, 47.692586 ], [ 7.036342, 47.692224 ], [ 7.038634, 47.687945 ], [ 7.045893, 47.68334 ], [ 7.039997, 47.6781 ], [ 7.037637, 47.67515 ], [ 7.04166, 47.67241 ], [ 7.045282, 47.67037 ], [ 7.035237, 47.659655 ], [ 7.037741, 47.653449 ], [ 7.039244, 47.65039 ], [ 7.034478, 47.64946 ], [ 7.019805, 47.65068 ], [ 7.017172, 47.648129 ], [ 7.016567, 47.645049 ], [ 7.010525, 47.630152 ], [ 7.006925, 47.626418 ], [ 7.007601, 47.621573 ], [ 7.006179, 47.61933 ], [ 7.007647, 47.60747 ], [ 7.011233, 47.6057 ], [ 7.006716, 47.60145 ], [ 7.009213, 47.599391 ], [ 7.019479, 47.593982 ], [ 7.019563, 47.588382 ], [ 7.024362, 47.589127 ], [ 7.02538, 47.59238 ], [ 7.041412, 47.599821 ], [ 7.074506, 47.59886 ], [ 7.074772, 47.59885 ], [ 7.078391, 47.59686 ], [ 7.081668, 47.59476 ], [ 7.085388, 47.59305 ], [ 7.086787, 47.58765 ], [ 7.086324, 47.58491 ], [ 7.088724, 47.58354 ], [ 7.09288, 47.57694 ], [ 7.094361, 47.57349 ], [ 7.102383, 47.5706 ], [ 7.108259, 47.5618 ], [ 7.107532, 47.558583 ], [ 7.107618, 47.55364 ], [ 7.106216, 47.551337 ], [ 7.114064, 47.547969 ], [ 7.118633, 47.547311 ], [ 7.128022, 47.54183 ], [ 7.131577, 47.540291 ], [ 7.13281, 47.539202 ], [ 7.136668, 47.533675 ], [ 7.137885, 47.53066 ], [ 7.142173, 47.52502 ], [ 7.130346, 47.503027 ], [ 7.125789, 47.50223 ], [ 7.110619, 47.4949 ], [ 7.096726, 47.49514 ], [ 7.0788, 47.48906 ], [ 7.036238, 47.499 ], [ 7.031552, 47.5 ], [ 7.024394, 47.504213 ], [ 7.019427, 47.50413 ], [ 6.982897, 47.49426 ], [ 6.988581, 47.48559 ], [ 6.987743, 47.479165 ], [ 6.988496, 47.47304 ], [ 6.991513, 47.469112 ], [ 6.991764, 47.46642 ], [ 7.000036, 47.464349 ], [ 7.000311, 47.454695 ], [ 6.989853, 47.448096 ], [ 6.975143, 47.44773 ], [ 6.970283, 47.44705 ], [ 6.962571, 47.43532 ], [ 6.944034, 47.43379 ], [ 6.939179, 47.4337 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "92", "CODE_DEPT": "91", "NOM_DEPT": "ESSONNE", "CODE_CHF": "228", "NOM_CHF": "EVRY", "X_CHF_LIEU": "6590", "Y_CHF_LIEU": "68372", "X_CENTROID": "6441", "Y_CENTROID": "68249", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.402664, 48.32072 ], [ 2.398936, 48.31526 ], [ 2.369945, 48.30867 ], [ 2.355802, 48.310433 ], [ 2.340362, 48.318796 ], [ 2.32931, 48.332833 ], [ 2.326154, 48.33064 ], [ 2.317182, 48.331567 ], [ 2.312424, 48.33012 ], [ 2.300208, 48.311242 ], [ 2.296706, 48.30885 ], [ 2.269118, 48.31505 ], [ 2.265536, 48.31267 ], [ 2.254851, 48.301418 ], [ 2.2501, 48.29975 ], [ 2.245157, 48.2984 ], [ 2.245229, 48.301852 ], [ 2.248218, 48.31542 ], [ 2.238047, 48.31637 ], [ 2.239599, 48.319128 ], [ 2.24631, 48.329968 ], [ 2.231822, 48.32977 ], [ 2.21469, 48.33667 ], [ 2.20709, 48.34494 ], [ 2.182947, 48.32382 ], [ 2.181484, 48.31379 ], [ 2.177842, 48.31293 ], [ 2.170835, 48.31504 ], [ 2.166995, 48.313033 ], [ 2.152668, 48.31482 ], [ 2.153878, 48.30841 ], [ 2.155435, 48.30546 ], [ 2.16239, 48.301511 ], [ 2.161589, 48.29844 ], [ 2.141159, 48.29928 ], [ 2.1106, 48.296949 ], [ 2.111702, 48.300367 ], [ 2.113717, 48.30725 ], [ 2.108709, 48.30746 ], [ 2.099895, 48.304714 ], [ 2.087542, 48.29451 ], [ 2.052708, 48.295474 ], [ 2.051468, 48.29021 ], [ 2.043236, 48.286166 ], [ 2.028994, 48.288632 ], [ 2.009276, 48.28532 ], [ 1.994085, 48.28659 ], [ 1.989021, 48.286984 ], [ 1.978957, 48.28799 ], [ 1.975456, 48.29402 ], [ 1.966219, 48.296774 ], [ 1.961905, 48.302846 ], [ 1.959227, 48.30869 ], [ 1.977212, 48.31401 ], [ 1.975601, 48.32332 ], [ 1.982344, 48.328317 ], [ 1.97062, 48.33999 ], [ 1.975622, 48.35688 ], [ 1.987356, 48.363811 ], [ 1.983903, 48.366445 ], [ 1.977025, 48.379189 ], [ 1.966722, 48.38042 ], [ 1.968537, 48.38362 ], [ 1.977244, 48.39916 ], [ 1.974978, 48.40174 ], [ 1.962226, 48.40432 ], [ 1.957737, 48.40515 ], [ 1.930424, 48.40395 ], [ 1.925893, 48.41275 ], [ 1.939016, 48.42216 ], [ 1.937301, 48.43544 ], [ 1.942895, 48.440998 ], [ 1.93833, 48.441398 ], [ 1.932512, 48.445548 ], [ 1.930628, 48.45372 ], [ 1.928572, 48.455733 ], [ 1.922149, 48.4576 ], [ 1.916634, 48.4633 ], [ 1.916248, 48.47023 ], [ 1.919729, 48.4766 ], [ 1.928094, 48.48046 ], [ 1.933108, 48.481424 ], [ 1.934279, 48.495776 ], [ 1.951471, 48.520112 ], [ 1.953016, 48.523454 ], [ 1.964238, 48.52785 ], [ 1.967476, 48.52574 ], [ 1.977246, 48.52759 ], [ 1.976168, 48.534236 ], [ 1.962171, 48.53509 ], [ 1.934125, 48.54865 ], [ 1.937604, 48.562218 ], [ 1.957646, 48.55964 ], [ 1.962685, 48.560487 ], [ 1.979664, 48.554336 ], [ 1.98299, 48.55683 ], [ 2.012795, 48.556595 ], [ 2.017574, 48.557597 ], [ 2.016821, 48.567424 ], [ 2.032866, 48.587446 ], [ 2.036348, 48.5898 ], [ 2.032411, 48.59517 ], [ 2.033047, 48.5982 ], [ 2.035013, 48.604852 ], [ 2.04969, 48.60783 ], [ 2.054815, 48.60796 ], [ 2.057726, 48.617295 ], [ 2.045683, 48.62372 ], [ 2.042083, 48.62618 ], [ 2.04148, 48.62654 ], [ 2.036063, 48.631803 ], [ 2.034908, 48.641464 ], [ 2.020277, 48.64209 ], [ 2.01669, 48.64444 ], [ 2.011658, 48.65358 ], [ 2.013269, 48.659574 ], [ 2.022358, 48.65785 ], [ 2.028553, 48.660618 ], [ 2.028902, 48.663742 ], [ 2.033591, 48.6775 ], [ 2.037155, 48.68013 ], [ 2.042245, 48.68035 ], [ 2.050596, 48.68729 ], [ 2.055659, 48.686787 ], [ 2.062865, 48.6872 ], [ 2.066512, 48.6869 ], [ 2.069888, 48.68879 ], [ 2.077905, 48.686394 ], [ 2.082079, 48.68545 ], [ 2.089331, 48.698041 ], [ 2.093351, 48.69581 ], [ 2.097853, 48.69403 ], [ 2.097183, 48.70052 ], [ 2.107798, 48.711565 ], [ 2.110333, 48.714381 ], [ 2.107738, 48.71747 ], [ 2.110657, 48.724053 ], [ 2.10057, 48.73586 ], [ 2.104654, 48.73798 ], [ 2.122662, 48.74107 ], [ 2.130229, 48.737438 ], [ 2.13498, 48.73714 ], [ 2.138893, 48.74312 ], [ 2.138971, 48.7466 ], [ 2.151397, 48.752818 ], [ 2.161902, 48.752595 ], [ 2.17545, 48.75773 ], [ 2.184595, 48.754929 ], [ 2.189379, 48.75345 ], [ 2.191919, 48.76686 ], [ 2.186958, 48.77264 ], [ 2.190663, 48.775037 ], [ 2.200844, 48.77488 ], [ 2.207269, 48.770318 ], [ 2.227483, 48.77163 ], [ 2.228836, 48.77489 ], [ 2.232908, 48.769136 ], [ 2.232519, 48.76596 ], [ 2.254936, 48.760659 ], [ 2.264862, 48.761036 ], [ 2.271536, 48.75756 ], [ 2.276283, 48.756581 ], [ 2.283756, 48.74831 ], [ 2.279015, 48.742935 ], [ 2.275813, 48.74044 ], [ 2.278781, 48.734272 ], [ 2.302187, 48.73906 ], [ 2.303062, 48.73255 ], [ 2.304179, 48.72935 ], [ 2.316346, 48.733666 ], [ 2.32047, 48.749007 ], [ 2.328018, 48.750129 ], [ 2.33075, 48.7481 ], [ 2.340757, 48.7409 ], [ 2.350444, 48.740512 ], [ 2.354533, 48.738645 ], [ 2.364891, 48.74569 ], [ 2.369837, 48.746057 ], [ 2.370374, 48.730896 ], [ 2.370437, 48.72786 ], [ 2.370441, 48.725301 ], [ 2.370707, 48.72018 ], [ 2.386585, 48.720097 ], [ 2.411014, 48.72605 ], [ 2.414729, 48.72085 ], [ 2.41426, 48.71782 ], [ 2.430537, 48.72353 ], [ 2.435125, 48.7241 ], [ 2.439831, 48.725171 ], [ 2.442471, 48.72116 ], [ 2.446577, 48.71592 ], [ 2.450946, 48.71536 ], [ 2.450352, 48.7215 ], [ 2.468022, 48.72696 ], [ 2.472979, 48.72757 ], [ 2.475385, 48.727599 ], [ 2.480113, 48.72792 ], [ 2.484547, 48.72908 ], [ 2.505499, 48.734707 ], [ 2.510055, 48.734663 ], [ 2.515478, 48.72908 ], [ 2.517992, 48.715906 ], [ 2.519286, 48.7127 ], [ 2.526118, 48.708617 ], [ 2.529129, 48.70631 ], [ 2.527896, 48.704378 ], [ 2.531077, 48.699786 ], [ 2.540215, 48.698994 ], [ 2.54431, 48.69845 ], [ 2.548329, 48.69244 ], [ 2.549092, 48.6891 ], [ 2.566907, 48.69183 ], [ 2.57166, 48.692023 ], [ 2.580376, 48.68948 ], [ 2.584646, 48.68034 ], [ 2.584074, 48.67715 ], [ 2.579195, 48.677514 ], [ 2.565205, 48.66936 ], [ 2.556959, 48.672883 ], [ 2.547461, 48.67192 ], [ 2.544822, 48.66927 ], [ 2.533752, 48.6573 ], [ 2.544445, 48.65171 ], [ 2.547965, 48.64966 ], [ 2.540056, 48.63365 ], [ 2.520278, 48.63127 ], [ 2.516511, 48.62915 ], [ 2.525227, 48.621201 ], [ 2.526154, 48.614773 ], [ 2.539681, 48.611489 ], [ 2.542513, 48.608801 ], [ 2.543285, 48.605818 ], [ 2.54145, 48.596887 ], [ 2.539227, 48.593685 ], [ 2.518277, 48.58326 ], [ 2.522051, 48.57675 ], [ 2.521772, 48.573224 ], [ 2.526677, 48.573414 ], [ 2.531595, 48.573659 ], [ 2.519648, 48.56834 ], [ 2.518054, 48.561802 ], [ 2.499315, 48.54291 ], [ 2.509452, 48.54262 ], [ 2.49761, 48.51724 ], [ 2.506859, 48.515779 ], [ 2.509083, 48.509626 ], [ 2.513823, 48.50953 ], [ 2.512086, 48.49541 ], [ 2.509908, 48.49085 ], [ 2.510364, 48.488445 ], [ 2.502473, 48.484247 ], [ 2.505938, 48.461159 ], [ 2.502797, 48.4601 ], [ 2.499641, 48.45905 ], [ 2.498523, 48.45719 ], [ 2.501263, 48.45635 ], [ 2.505804, 48.451011 ], [ 2.504411, 48.44808 ], [ 2.505037, 48.44484 ], [ 2.505029, 48.429866 ], [ 2.517311, 48.42768 ], [ 2.543782, 48.403913 ], [ 2.54706, 48.40142 ], [ 2.521784, 48.40404 ], [ 2.50648, 48.394911 ], [ 2.486035, 48.39683 ], [ 2.473832, 48.39039 ], [ 2.482461, 48.38246 ], [ 2.44984, 48.37371 ], [ 2.450638, 48.36716 ], [ 2.440984, 48.36838 ], [ 2.433195, 48.3644 ], [ 2.429832, 48.36202 ], [ 2.433247, 48.35961 ], [ 2.441143, 48.3572 ], [ 2.43034, 48.347506 ], [ 2.433827, 48.33454 ], [ 2.429878, 48.33657 ], [ 2.410141, 48.336079 ], [ 2.401297, 48.33302 ], [ 2.392372, 48.33587 ], [ 2.394016, 48.33253 ], [ 2.395402, 48.325757 ], [ 2.402664, 48.32072 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "93", "CODE_DEPT": "92", "NOM_DEPT": "HAUTS-DE-SEINE", "CODE_CHF": "050", "NOM_CHF": "NANTERRE", "X_CHF_LIEU": "6416", "Y_CHF_LIEU": "68659", "X_CENTROID": "6458", "Y_CENTROID": "68555", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.32047, 48.749007 ], [ 2.316346, 48.733666 ], [ 2.304179, 48.72935 ], [ 2.303062, 48.73255 ], [ 2.302187, 48.73906 ], [ 2.278781, 48.734272 ], [ 2.275813, 48.74044 ], [ 2.279015, 48.742935 ], [ 2.283756, 48.74831 ], [ 2.276283, 48.756581 ], [ 2.271536, 48.75756 ], [ 2.264862, 48.761036 ], [ 2.254936, 48.760659 ], [ 2.232519, 48.76596 ], [ 2.232908, 48.769136 ], [ 2.228836, 48.77489 ], [ 2.22637, 48.78151 ], [ 2.223876, 48.78449 ], [ 2.209114, 48.7868 ], [ 2.205307, 48.79546 ], [ 2.202513, 48.79834 ], [ 2.183049, 48.79724 ], [ 2.185087, 48.800075 ], [ 2.17674, 48.81399 ], [ 2.172757, 48.81522 ], [ 2.161221, 48.81272 ], [ 2.157309, 48.81465 ], [ 2.15043, 48.81895 ], [ 2.150436, 48.819396 ], [ 2.150808, 48.822474 ], [ 2.148626, 48.82848 ], [ 2.147655, 48.83121 ], [ 2.145876, 48.8367 ], [ 2.145874, 48.84017 ], [ 2.149748, 48.84657 ], [ 2.159584, 48.847557 ], [ 2.157847, 48.85049 ], [ 2.150549, 48.85846 ], [ 2.153669, 48.864415 ], [ 2.153155, 48.86915 ], [ 2.150383, 48.87111 ], [ 2.155696, 48.87725 ], [ 2.157976, 48.88047 ], [ 2.166658, 48.892656 ], [ 2.169241, 48.89574 ], [ 2.174289, 48.899067 ], [ 2.196361, 48.906951 ], [ 2.200616, 48.9088 ], [ 2.216673, 48.917959 ], [ 2.220333, 48.920528 ], [ 2.227342, 48.92544 ], [ 2.230896, 48.92786 ], [ 2.243644, 48.934337 ], [ 2.247595, 48.93674 ], [ 2.251839, 48.93873 ], [ 2.268888, 48.94657 ], [ 2.288738, 48.9507 ], [ 2.29341, 48.95056 ], [ 2.311536, 48.94792 ], [ 2.316571, 48.9471 ], [ 2.334896, 48.94154 ], [ 2.335926, 48.93151 ], [ 2.328273, 48.9227 ], [ 2.325545, 48.9205 ], [ 2.322101, 48.91879 ], [ 2.320552, 48.916183 ], [ 2.317183, 48.915057 ], [ 2.313758, 48.914022 ], [ 2.315757, 48.91141 ], [ 2.31983, 48.900414 ], [ 2.315925, 48.89866 ], [ 2.303792, 48.894053 ], [ 2.299983, 48.892268 ], [ 2.284306, 48.885772 ], [ 2.280497, 48.881181 ], [ 2.280002, 48.878534 ], [ 2.260275, 48.880221 ], [ 2.255282, 48.874641 ], [ 2.245659, 48.87635 ], [ 2.236482, 48.87085 ], [ 2.23278, 48.86951 ], [ 2.230058, 48.867314 ], [ 2.225787, 48.85934 ], [ 2.223956, 48.85322 ], [ 2.248056, 48.84632 ], [ 2.257612, 48.834607 ], [ 2.262759, 48.83383 ], [ 2.263029, 48.834011 ], [ 2.271895, 48.828363 ], [ 2.285347, 48.829803 ], [ 2.289538, 48.82818 ], [ 2.297141, 48.825987 ], [ 2.301049, 48.825075 ], [ 2.309534, 48.823082 ], [ 2.313783, 48.82211 ], [ 2.328164, 48.81907 ], [ 2.332032, 48.81694 ], [ 2.328902, 48.81358 ], [ 2.323179, 48.809697 ], [ 2.318954, 48.80993 ], [ 2.324925, 48.80422 ], [ 2.323857, 48.80152 ], [ 2.31856, 48.78803 ], [ 2.322413, 48.78692 ], [ 2.32565, 48.781829 ], [ 2.319929, 48.77072 ], [ 2.316523, 48.766856 ], [ 2.311483, 48.75802 ], [ 2.31192, 48.751728 ], [ 2.32047, 48.749007 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "94", "CODE_DEPT": "93", "NOM_DEPT": "SEINE-SAINT-DENIS", "CODE_CHF": "008", "NOM_CHF": "BOBIGNY", "X_CHF_LIEU": "6588", "Y_CHF_LIEU": "68679", "X_CENTROID": "6617", "Y_CENTROID": "68687", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.59228, 48.807437 ], [ 2.570009, 48.81509 ], [ 2.568499, 48.818281 ], [ 2.567792, 48.82466 ], [ 2.538968, 48.838757 ], [ 2.534248, 48.84406 ], [ 2.518276, 48.84877 ], [ 2.515649, 48.85138 ], [ 2.51367, 48.85017 ], [ 2.51073, 48.8527 ], [ 2.503941, 48.85723 ], [ 2.499718, 48.85568 ], [ 2.496133, 48.857128 ], [ 2.496392, 48.859908 ], [ 2.481534, 48.86141 ], [ 2.476856, 48.86031 ], [ 2.454295, 48.85542 ], [ 2.447103, 48.851156 ], [ 2.442308, 48.85231 ], [ 2.418969, 48.849332 ], [ 2.416367, 48.849247 ], [ 2.415427, 48.855268 ], [ 2.414556, 48.858817 ], [ 2.413277, 48.873119 ], [ 2.410694, 48.87847 ], [ 2.407535, 48.880528 ], [ 2.400339, 48.88375 ], [ 2.398651, 48.889414 ], [ 2.397957, 48.89286 ], [ 2.389444, 48.901193 ], [ 2.370286, 48.90165 ], [ 2.365854, 48.90161 ], [ 2.361188, 48.90161 ], [ 2.351873, 48.90153 ], [ 2.334361, 48.901233 ], [ 2.329983, 48.901163 ], [ 2.324885, 48.90087 ], [ 2.31983, 48.900414 ], [ 2.315757, 48.91141 ], [ 2.313758, 48.914022 ], [ 2.317183, 48.915057 ], [ 2.320552, 48.916183 ], [ 2.322101, 48.91879 ], [ 2.325545, 48.9205 ], [ 2.328273, 48.9227 ], [ 2.335926, 48.93151 ], [ 2.334896, 48.94154 ], [ 2.316571, 48.9471 ], [ 2.311536, 48.94792 ], [ 2.29341, 48.95056 ], [ 2.288738, 48.9507 ], [ 2.292153, 48.9516 ], [ 2.289328, 48.95645 ], [ 2.288461, 48.95898 ], [ 2.29481, 48.96409 ], [ 2.298617, 48.966353 ], [ 2.309233, 48.96303 ], [ 2.313177, 48.96222 ], [ 2.324595, 48.95798 ], [ 2.328342, 48.95966 ], [ 2.333313, 48.95538 ], [ 2.340954, 48.964453 ], [ 2.349237, 48.96719 ], [ 2.354076, 48.96582 ], [ 2.361812, 48.973163 ], [ 2.366156, 48.97423 ], [ 2.370926, 48.97289 ], [ 2.375936, 48.972023 ], [ 2.379178, 48.97159 ], [ 2.382447, 48.971293 ], [ 2.403173, 48.957774 ], [ 2.407384, 48.956131 ], [ 2.410523, 48.95749 ], [ 2.417452, 48.959382 ], [ 2.422241, 48.958524 ], [ 2.435657, 48.95551 ], [ 2.445422, 48.95664 ], [ 2.448577, 48.95527 ], [ 2.456014, 48.95578 ], [ 2.45949, 48.955055 ], [ 2.466738, 48.96335 ], [ 2.491128, 48.973206 ], [ 2.496009, 48.972723 ], [ 2.497219, 48.974805 ], [ 2.50052, 48.975287 ], [ 2.50151, 48.978825 ], [ 2.511464, 48.980817 ], [ 2.532661, 49.00433 ], [ 2.552215, 49.006433 ], [ 2.553061, 49.009817 ], [ 2.561242, 49.012185 ], [ 2.565792, 49.0124 ], [ 2.571528, 49.001531 ], [ 2.575843, 49.00029 ], [ 2.579819, 48.98686 ], [ 2.576511, 48.980354 ], [ 2.566237, 48.97551 ], [ 2.590118, 48.952623 ], [ 2.591905, 48.94935 ], [ 2.593811, 48.946593 ], [ 2.597808, 48.938144 ], [ 2.602682, 48.93276 ], [ 2.602598, 48.929357 ], [ 2.596169, 48.92603 ], [ 2.592342, 48.925024 ], [ 2.58878, 48.90949 ], [ 2.592724, 48.90753 ], [ 2.591024, 48.906953 ], [ 2.587229, 48.89854 ], [ 2.559406, 48.885338 ], [ 2.563216, 48.8831 ], [ 2.570615, 48.87878 ], [ 2.567967, 48.86594 ], [ 2.582285, 48.8654 ], [ 2.587332, 48.865 ], [ 2.586866, 48.86183 ], [ 2.582522, 48.8562 ], [ 2.573836, 48.85338 ], [ 2.584171, 48.837429 ], [ 2.586281, 48.83425 ], [ 2.586672, 48.827887 ], [ 2.591136, 48.826634 ], [ 2.595334, 48.817457 ], [ 2.595795, 48.81427 ], [ 2.59228, 48.807437 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "95", "CODE_DEPT": "94", "NOM_DEPT": "VAL-DE-MARNE", "CODE_CHF": "028", "NOM_CHF": "CRETEIL", "X_CHF_LIEU": "6604", "Y_CHF_LIEU": "68546", "X_CENTROID": "6609", "Y_CENTROID": "68531", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.57166, 48.692023 ], [ 2.566907, 48.69183 ], [ 2.549092, 48.6891 ], [ 2.548329, 48.69244 ], [ 2.54431, 48.69845 ], [ 2.540215, 48.698994 ], [ 2.531077, 48.699786 ], [ 2.527896, 48.704378 ], [ 2.529129, 48.70631 ], [ 2.526118, 48.708617 ], [ 2.519286, 48.7127 ], [ 2.517992, 48.715906 ], [ 2.515478, 48.72908 ], [ 2.510055, 48.734663 ], [ 2.505499, 48.734707 ], [ 2.484547, 48.72908 ], [ 2.480113, 48.72792 ], [ 2.475385, 48.727599 ], [ 2.472979, 48.72757 ], [ 2.468022, 48.72696 ], [ 2.450352, 48.7215 ], [ 2.450946, 48.71536 ], [ 2.446577, 48.71592 ], [ 2.442471, 48.72116 ], [ 2.439831, 48.725171 ], [ 2.435125, 48.7241 ], [ 2.430537, 48.72353 ], [ 2.41426, 48.71782 ], [ 2.414729, 48.72085 ], [ 2.411014, 48.72605 ], [ 2.386585, 48.720097 ], [ 2.370707, 48.72018 ], [ 2.370441, 48.725301 ], [ 2.370437, 48.72786 ], [ 2.370374, 48.730896 ], [ 2.369837, 48.746057 ], [ 2.364891, 48.74569 ], [ 2.354533, 48.738645 ], [ 2.350444, 48.740512 ], [ 2.340757, 48.7409 ], [ 2.33075, 48.7481 ], [ 2.328018, 48.750129 ], [ 2.32047, 48.749007 ], [ 2.31192, 48.751728 ], [ 2.311483, 48.75802 ], [ 2.316523, 48.766856 ], [ 2.319929, 48.77072 ], [ 2.32565, 48.781829 ], [ 2.322413, 48.78692 ], [ 2.31856, 48.78803 ], [ 2.323857, 48.80152 ], [ 2.324925, 48.80422 ], [ 2.318954, 48.80993 ], [ 2.323179, 48.809697 ], [ 2.328902, 48.81358 ], [ 2.332032, 48.81694 ], [ 2.344084, 48.81596 ], [ 2.352648, 48.818314 ], [ 2.355593, 48.81587 ], [ 2.360036, 48.81561 ], [ 2.364442, 48.81608 ], [ 2.368823, 48.81755 ], [ 2.389917, 48.82592 ], [ 2.393998, 48.82757 ], [ 2.403242, 48.82916 ], [ 2.419933, 48.82393 ], [ 2.456645, 48.81701 ], [ 2.461194, 48.818277 ], [ 2.466188, 48.826672 ], [ 2.464996, 48.82999 ], [ 2.46962, 48.836077 ], [ 2.467314, 48.83912 ], [ 2.464673, 48.841532 ], [ 2.447579, 48.8449 ], [ 2.442857, 48.84555 ], [ 2.437059, 48.84117 ], [ 2.427461, 48.84164 ], [ 2.422967, 48.842714 ], [ 2.416502, 48.8347 ], [ 2.415892, 48.84664 ], [ 2.416367, 48.849247 ], [ 2.418969, 48.849332 ], [ 2.442308, 48.85231 ], [ 2.447103, 48.851156 ], [ 2.454295, 48.85542 ], [ 2.476856, 48.86031 ], [ 2.481534, 48.86141 ], [ 2.496392, 48.859908 ], [ 2.496133, 48.857128 ], [ 2.499718, 48.85568 ], [ 2.503941, 48.85723 ], [ 2.51073, 48.8527 ], [ 2.51367, 48.85017 ], [ 2.515649, 48.85138 ], [ 2.518276, 48.84877 ], [ 2.534248, 48.84406 ], [ 2.538968, 48.838757 ], [ 2.567792, 48.82466 ], [ 2.568499, 48.818281 ], [ 2.570009, 48.81509 ], [ 2.59228, 48.807437 ], [ 2.596498, 48.80607 ], [ 2.593058, 48.80031 ], [ 2.591542, 48.79737 ], [ 2.598816, 48.793366 ], [ 2.587516, 48.77805 ], [ 2.591044, 48.77233 ], [ 2.60644, 48.773307 ], [ 2.614817, 48.761121 ], [ 2.597544, 48.760569 ], [ 2.599551, 48.75074 ], [ 2.587757, 48.74408 ], [ 2.594109, 48.73523 ], [ 2.594679, 48.731805 ], [ 2.580406, 48.72299 ], [ 2.570969, 48.71173 ], [ 2.568137, 48.708974 ], [ 2.568804, 48.70722 ], [ 2.571587, 48.70266 ], [ 2.574345, 48.701 ], [ 2.577677, 48.69901 ], [ 2.572261, 48.694966 ], [ 2.57166, 48.692023 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "96", "CODE_DEPT": "95", "NOM_DEPT": "VAL-D'OISE", "CODE_CHF": "500", "NOM_CHF": "PONTOISE", "X_CHF_LIEU": "6342", "Y_CHF_LIEU": "68838", "X_CENTROID": "6365", "Y_CENTROID": "68873", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.200616, 48.9088 ], [ 2.198638, 48.91148 ], [ 2.201798, 48.91362 ], [ 2.199191, 48.91897 ], [ 2.202626, 48.920996 ], [ 2.198927, 48.935252 ], [ 2.201901, 48.93713 ], [ 2.20663, 48.94119 ], [ 2.205858, 48.94974 ], [ 2.201086, 48.950186 ], [ 2.173141, 48.9533 ], [ 2.175501, 48.95519 ], [ 2.178105, 48.95977 ], [ 2.178155, 48.96351 ], [ 2.17802, 48.96685 ], [ 2.166354, 48.981478 ], [ 2.1619, 48.983165 ], [ 2.127453, 48.989052 ], [ 2.122018, 48.99852 ], [ 2.126795, 49.008687 ], [ 2.121257, 49.01849 ], [ 2.105785, 49.00948 ], [ 2.086064, 49.01465 ], [ 2.083654, 49.01178 ], [ 2.071694, 49.001709 ], [ 2.067402, 49.00632 ], [ 2.064429, 49.008208 ], [ 2.046502, 49.00185 ], [ 2.026445, 49.000703 ], [ 2.023614, 48.997901 ], [ 2.010479, 49.00584 ], [ 2.007631, 49.00824 ], [ 2.004889, 49.010076 ], [ 2.001651, 49.01281 ], [ 1.991882, 49.02101 ], [ 1.986761, 49.01998 ], [ 1.976186, 49.01957 ], [ 1.967144, 49.023201 ], [ 1.957081, 49.021801 ], [ 1.954948, 49.024535 ], [ 1.945651, 49.025137 ], [ 1.937802, 49.02178 ], [ 1.935202, 49.02456 ], [ 1.912474, 49.041612 ], [ 1.914082, 49.04583 ], [ 1.911215, 49.046843 ], [ 1.908523, 49.048024 ], [ 1.883463, 49.03262 ], [ 1.881715, 49.026141 ], [ 1.881898, 49.01954 ], [ 1.877382, 49.0191 ], [ 1.861713, 49.01412 ], [ 1.859255, 49.013969 ], [ 1.862414, 49.020159 ], [ 1.859318, 49.02977 ], [ 1.851334, 49.03336 ], [ 1.863854, 49.05437 ], [ 1.865469, 49.057472 ], [ 1.861522, 49.05901 ], [ 1.841442, 49.064787 ], [ 1.840643, 49.069339 ], [ 1.836704, 49.07162 ], [ 1.823601, 49.07667 ], [ 1.815394, 49.07641 ], [ 1.811698, 49.07405 ], [ 1.796547, 49.072232 ], [ 1.797862, 49.06922 ], [ 1.7943, 49.058199 ], [ 1.789382, 49.057862 ], [ 1.784687, 49.05735 ], [ 1.770733, 49.05778 ], [ 1.759422, 49.06328 ], [ 1.755356, 49.061067 ], [ 1.751177, 49.04823 ], [ 1.745981, 49.04812 ], [ 1.735638, 49.04868 ], [ 1.732066, 49.05042 ], [ 1.729224, 49.04859 ], [ 1.723457, 49.04498 ], [ 1.719925, 49.0473 ], [ 1.693668, 49.05668 ], [ 1.696857, 49.06536 ], [ 1.691372, 49.07013 ], [ 1.687592, 49.071847 ], [ 1.683574, 49.0738 ], [ 1.670822, 49.078911 ], [ 1.646598, 49.08132 ], [ 1.641721, 49.08092 ], [ 1.620154, 49.073924 ], [ 1.614301, 49.07118 ], [ 1.612163, 49.0733 ], [ 1.608796, 49.07789 ], [ 1.619512, 49.08418 ], [ 1.623322, 49.08608 ], [ 1.620143, 49.096981 ], [ 1.627035, 49.105127 ], [ 1.646559, 49.12164 ], [ 1.648114, 49.12503 ], [ 1.652877, 49.128943 ], [ 1.655991, 49.13039 ], [ 1.653229, 49.14176 ], [ 1.662683, 49.1525 ], [ 1.664304, 49.153951 ], [ 1.661447, 49.156806 ], [ 1.669326, 49.169239 ], [ 1.666334, 49.17572 ], [ 1.671825, 49.180893 ], [ 1.670339, 49.189608 ], [ 1.671348, 49.19304 ], [ 1.676462, 49.20285 ], [ 1.673207, 49.205626 ], [ 1.676291, 49.21219 ], [ 1.702869, 49.22885 ], [ 1.704364, 49.2322 ], [ 1.710812, 49.23738 ], [ 1.736324, 49.225573 ], [ 1.740453, 49.22344 ], [ 1.735795, 49.22194 ], [ 1.73398, 49.21199 ], [ 1.715608, 49.206238 ], [ 1.715583, 49.20285 ], [ 1.72571, 49.197273 ], [ 1.725913, 49.19401 ], [ 1.73895, 49.19219 ], [ 1.742878, 49.18299 ], [ 1.742695, 49.1798 ], [ 1.756131, 49.174879 ], [ 1.773149, 49.18247 ], [ 1.776379, 49.185094 ], [ 1.776924, 49.185225 ], [ 1.789302, 49.181493 ], [ 1.793582, 49.18028 ], [ 1.794378, 49.183189 ], [ 1.797776, 49.185147 ], [ 1.816999, 49.17587 ], [ 1.831251, 49.17698 ], [ 1.83664, 49.171547 ], [ 1.834069, 49.16512 ], [ 1.838268, 49.16619 ], [ 1.849074, 49.170489 ], [ 1.869788, 49.17265 ], [ 1.874497, 49.17429 ], [ 1.876765, 49.175309 ], [ 1.882617, 49.16594 ], [ 1.882568, 49.1625 ], [ 1.933925, 49.17335 ], [ 1.937433, 49.170761 ], [ 1.958097, 49.17287 ], [ 1.962698, 49.1746 ], [ 1.971263, 49.181107 ], [ 1.974086, 49.183316 ], [ 1.990193, 49.17676 ], [ 1.999445, 49.175573 ], [ 2.018235, 49.186355 ], [ 2.021784, 49.18868 ], [ 2.035163, 49.189908 ], [ 2.038236, 49.19213 ], [ 2.038368, 49.19241 ], [ 2.050488, 49.19878 ], [ 2.069874, 49.203344 ], [ 2.076699, 49.20844 ], [ 2.08089, 49.21045 ], [ 2.080769, 49.207203 ], [ 2.09024, 49.20545 ], [ 2.093329, 49.19285 ], [ 2.095875, 49.19006 ], [ 2.11591, 49.18799 ], [ 2.13028, 49.19075 ], [ 2.139762, 49.18313 ], [ 2.143261, 49.18555 ], [ 2.153026, 49.183925 ], [ 2.157181, 49.182282 ], [ 2.163401, 49.17762 ], [ 2.157738, 49.17251 ], [ 2.161839, 49.16823 ], [ 2.16393, 49.1661 ], [ 2.172135, 49.166607 ], [ 2.178986, 49.17382 ], [ 2.176584, 49.17654 ], [ 2.183442, 49.17382 ], [ 2.187374, 49.173229 ], [ 2.207218, 49.17489 ], [ 2.215478, 49.17823 ], [ 2.220277, 49.179201 ], [ 2.234054, 49.165695 ], [ 2.219639, 49.15692 ], [ 2.21636, 49.154378 ], [ 2.225833, 49.1516 ], [ 2.241583, 49.151573 ], [ 2.259401, 49.15544 ], [ 2.262132, 49.158102 ], [ 2.266531, 49.156295 ], [ 2.281365, 49.15913 ], [ 2.286413, 49.15992 ], [ 2.28887, 49.169681 ], [ 2.299925, 49.180589 ], [ 2.301197, 49.183887 ], [ 2.306913, 49.185179 ], [ 2.310593, 49.184876 ], [ 2.317953, 49.185233 ], [ 2.321777, 49.18444 ], [ 2.354227, 49.150485 ], [ 2.358039, 49.14815 ], [ 2.369839, 49.15718 ], [ 2.3732, 49.15925 ], [ 2.394792, 49.14981 ], [ 2.410447, 49.15208 ], [ 2.440903, 49.145803 ], [ 2.439898, 49.14365 ], [ 2.438907, 49.1415 ], [ 2.436577, 49.13646 ], [ 2.435399, 49.13394 ], [ 2.458813, 49.139483 ], [ 2.461309, 49.13661 ], [ 2.473884, 49.132987 ], [ 2.477603, 49.13107 ], [ 2.477004, 49.12797 ], [ 2.494845, 49.12351 ], [ 2.499227, 49.12227 ], [ 2.501596, 49.11948 ], [ 2.489931, 49.10636 ], [ 2.526067, 49.10089 ], [ 2.531063, 49.0996 ], [ 2.532668, 49.11593 ], [ 2.537924, 49.12103 ], [ 2.542654, 49.122065 ], [ 2.542285, 49.118854 ], [ 2.554091, 49.11754 ], [ 2.559479, 49.09762 ], [ 2.576746, 49.092429 ], [ 2.580161, 49.08326 ], [ 2.582606, 49.08048 ], [ 2.586578, 49.080127 ], [ 2.590524, 49.07965 ], [ 2.573213, 49.059283 ], [ 2.594474, 49.04714 ], [ 2.589495, 49.04717 ], [ 2.579624, 49.046501 ], [ 2.56934, 49.03959 ], [ 2.568943, 49.03635 ], [ 2.563288, 49.02743 ], [ 2.545077, 49.022421 ], [ 2.535425, 49.02379 ], [ 2.535372, 49.02057 ], [ 2.538421, 49.01446 ], [ 2.550672, 49.01263 ], [ 2.553061, 49.009817 ], [ 2.552215, 49.006433 ], [ 2.532661, 49.00433 ], [ 2.511464, 48.980817 ], [ 2.50151, 48.978825 ], [ 2.50052, 48.975287 ], [ 2.497219, 48.974805 ], [ 2.496009, 48.972723 ], [ 2.491128, 48.973206 ], [ 2.466738, 48.96335 ], [ 2.45949, 48.955055 ], [ 2.456014, 48.95578 ], [ 2.448577, 48.95527 ], [ 2.445422, 48.95664 ], [ 2.435657, 48.95551 ], [ 2.422241, 48.958524 ], [ 2.417452, 48.959382 ], [ 2.410523, 48.95749 ], [ 2.407384, 48.956131 ], [ 2.403173, 48.957774 ], [ 2.382447, 48.971293 ], [ 2.379178, 48.97159 ], [ 2.375936, 48.972023 ], [ 2.370926, 48.97289 ], [ 2.366156, 48.97423 ], [ 2.361812, 48.973163 ], [ 2.354076, 48.96582 ], [ 2.349237, 48.96719 ], [ 2.340954, 48.964453 ], [ 2.333313, 48.95538 ], [ 2.328342, 48.95966 ], [ 2.324595, 48.95798 ], [ 2.313177, 48.96222 ], [ 2.309233, 48.96303 ], [ 2.298617, 48.966353 ], [ 2.29481, 48.96409 ], [ 2.288461, 48.95898 ], [ 2.289328, 48.95645 ], [ 2.292153, 48.9516 ], [ 2.288738, 48.9507 ], [ 2.268888, 48.94657 ], [ 2.251839, 48.93873 ], [ 2.247595, 48.93674 ], [ 2.243644, 48.934337 ], [ 2.230896, 48.92786 ], [ 2.227342, 48.92544 ], [ 2.220333, 48.920528 ], [ 2.216673, 48.917959 ], [ 2.200616, 48.9088 ] ] ] } }
+
+]
+}
Added: cartography/trunk/leaflet/src/main/webapp/WEB-INF/city.jsp
===================================================================
--- cartography/trunk/leaflet/src/main/webapp/WEB-INF/city.jsp (rev 0)
+++ cartography/trunk/leaflet/src/main/webapp/WEB-INF/city.jsp 2013-07-04 14:46:39 UTC (rev 683)
@@ -0,0 +1,81 @@
+<%@ page pageEncoding="UTF-8" %>
+<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8"/>
+ <title>Maps</title>
+ <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.2/leaflet.css" />
+ <script src="http://cdn.leafletjs.com/leaflet-0.6.2/leaflet.js"></script>
+ <script src='<c:url value="/DEPARTEMENTS.json" />'></script>
+
+ <style>
+ #map {
+ width: 800px;
+ height: 500px;
+ }
+
+ .info {
+ padding: 6px 8px;
+ font: 14px/16px Arial, Helvetica, sans-serif;
+ background: white;
+ background: rgba(255,255,255,0.8);
+ box-shadow: 0 0 15px rgba(0,0,0,0.2);
+ border-radius: 5px;
+ }
+
+ .info h4 {
+ color: #777;
+ }
+
+ .legend {
+ text-align: left;
+ line-height: 18px;
+ color: #555;
+ }
+
+ .legend i {
+ width: 18px;
+ height: 18px;
+ float: left;
+ margin-right: 8px;
+ opacity: 0.7;
+ }
+ </style>
+
+ </head>
+ <body>
+ <div id="map"></div>
+ <script>
+ <% org.nuiton.cartography.leaflet.MainServlet.City city = (org.nuiton.cartography.leaflet.MainServlet.City) request.getAttribute("city"); %>
+ var markers = [];
+
+ var map = L.map('map');
+
+ function style(feature) {
+ return {
+ weight: 1,
+ opacity: 1,
+ color: '#666',
+ fillOpacity: 1,
+ fillColor: "#66FF66"
+ };
+ }
+
+ var geojson = L.geoJson(depts, {
+ style: style,
+ }).addTo(map);
+ var bounds = geojson.getBounds();
+ map.fitBounds(bounds);
+
+
+ L.circle([ <%= city.getLatitude() %>, <%= city.getLongitude() %> ], 1000, {
+ color: 'red',
+ fillColor: '#f03',
+ fillOpacity: 0.5
+
+ }).addTo(map).bindPopup("<%= city.getName() %> (<%= city.getPostCode() %>)").openPopup();
+
+ </script>
+ </body>
+</html>
\ No newline at end of file
Copied: cartography/trunk/leaflet/src/main/webapp/WEB-INF/departement.jsp (from rev 682, cartography/trunk/leaflet/src/main/webapp/WEB-INF/dpt.jsp)
===================================================================
--- cartography/trunk/leaflet/src/main/webapp/WEB-INF/departement.jsp (rev 0)
+++ cartography/trunk/leaflet/src/main/webapp/WEB-INF/departement.jsp 2013-07-04 14:46:39 UTC (rev 683)
@@ -0,0 +1,113 @@
+<%@ page pageEncoding="UTF-8" %>
+<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8"/>
+ <title>Maps</title>
+ <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.2/leaflet.css" />
+ <script src="http://cdn.leafletjs.com/leaflet-0.6.2/leaflet.js"></script>
+ <script src='<c:url value="/DEPARTEMENTS.json" />'></script>
+
+ <style>
+ #map {
+ width: 800px;
+ height: 500px;
+ }
+
+ .info {
+ padding: 6px 8px;
+ font: 14px/16px Arial, Helvetica, sans-serif;
+ background: white;
+ background: rgba(255,255,255,0.8);
+ box-shadow: 0 0 15px rgba(0,0,0,0.2);
+ border-radius: 5px;
+ }
+
+ .info h4 {
+ color: #777;
+ }
+
+ .legend {
+ text-align: left;
+ line-height: 18px;
+ color: #555;
+ }
+
+ .legend i {
+ width: 18px;
+ height: 18px;
+ float: left;
+ margin-right: 8px;
+ opacity: 0.7;
+ }
+ </style>
+
+ </head>
+ <body>
+ <div id="map"></div>
+ <script>
+ var departmentNb = '<%= request.getParameter("dpt") %>',
+ data = null,
+ markers = [];
+
+ for (var k in depts.features) {
+ if (depts.features[k].properties.CODE_DEPT == departmentNb) {
+ data = depts.features[k];
+ break;
+ }
+ }
+
+ var map = L.map('map');
+
+ //control that shows state info on hover
+ var info = L.control();
+
+ info.onAdd = function (map) {
+ this._div = L.DomUtil.create('div', 'info');
+ this.update();
+ return this._div;
+ };
+
+ info.update = function (props) {
+ this._div.innerHTML = '<h4>' + data.properties.NOM_DEPT + ' (' + data.properties.CODE_DEPT + ')</h4>';
+ };
+
+ info.addTo(map);
+
+ function style(feature) {
+ return {
+ weight: 1,
+ opacity: 1,
+ color: '#666',
+ fillOpacity: 1,
+ fillColor: "#66FF66"
+ };
+ }
+
+ var geojson = L.geoJson(data, {
+ style: style,
+ }).addTo(map);
+ var bounds = geojson.getBounds();
+ map.fitBounds(bounds);
+
+ var center = bounds.getCenter();
+ var width = new L.LatLng(center.lat, bounds.getEast()).distanceTo(new L.LatLng(center.lat, bounds.getWest()));
+ var height = new L.LatLng(bounds.getNorth(), center.lng).distanceTo(new L.LatLng(bounds.getSouth(), center.lng));
+ var unit = Math.max(width, height) / 300;
+
+ <% java.util.Map cities = (java.util.Map) request.getAttribute("cities"); %>
+ <c:forEach items='${ cities }' var='city'>
+
+ L.circle([${ city.key.latitude }, ${ city.key.longitude }], ${ city.value } * unit + 500, {
+ color: 'red',
+ fillColor: '#f03',
+ fillOpacity: 0.5
+
+ }).addTo(map).bindPopup("${ city.key.name } : ${ city.value }");
+
+ </c:forEach>
+
+ </script>
+ </body>
+</html>
\ No newline at end of file
Deleted: cartography/trunk/leaflet/src/main/webapp/WEB-INF/dpt.jsp
===================================================================
--- cartography/trunk/leaflet/src/main/webapp/WEB-INF/dpt.jsp 2013-07-03 16:32:13 UTC (rev 682)
+++ cartography/trunk/leaflet/src/main/webapp/WEB-INF/dpt.jsp 2013-07-04 14:46:39 UTC (rev 683)
@@ -1,135 +0,0 @@
-<%@ page pageEncoding="UTF-8" %>
-<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
-<!DOCTYPE html>
-<html>
- <head>
- <meta charset="utf-8"/>
- <title>Maps</title>
- <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.2/leaflet.css" />
- <script src="http://cdn.leafletjs.com/leaflet-0.6.2/leaflet.js"></script>
- <script src='<c:url value="/DEPARTEMENT.json" />'></script>
-
- <style>
- #map {
- width: 800px;
- height: 500px;
- }
-
- .info {
- padding: 6px 8px;
- font: 14px/16px Arial, Helvetica, sans-serif;
- background: white;
- background: rgba(255,255,255,0.8);
- box-shadow: 0 0 15px rgba(0,0,0,0.2);
- border-radius: 5px;
- }
-
- .info h4 {
- color: #777;
- }
-
- .legend {
- text-align: left;
- line-height: 18px;
- color: #555;
- }
-
- .legend i {
- width: 18px;
- height: 18px;
- float: left;
- margin-right: 8px;
- opacity: 0.7;
- }
- </style>
-
- </head>
- <body>
- <div id="map"></div>
- <script>
- var departmentNb = '<%= request.getParameter("dpt") %>';
- var data = null,
- markers = [];
-
- for (var k in depts.features) {
- if (depts.features[k].properties.CODE_DEPT == departmentNb) {
- data = depts.features[k];
- break;
- }
- }
-
- var map = L.map('map', {
- center: [0, 0],
- zoom: 1,
- zoomControl: false,
- dragging: false,
- touchZoom: false,
- doubleClickZoom: false,
- scrollWheelZoom: false,
- boxZoom: false,
- keyboard: false,
- tap: false
- });
-
- //control that shows state info on hover
- var info = L.control();
-
- info.onAdd = function (map) {
- this._div = L.DomUtil.create('div', 'info');
- this.update();
- return this._div;
- };
-
- info.update = function (props) {
- this._div.innerHTML = '<h4>' + data.properties.NOM_DEPT + '</h4>';
- };
-
- info.addTo(map);
-
- function getColor(d) {
- return d > 50 ? '#800026' :
- d > 40 ? '#BD0026' :
- d > 30 ? '#E31A1C' :
- d > 20 ? '#FC4E2A' :
- d > 10 ? '#FD8D3C' :
- d > 5 ? '#FEB24C' :
- d > 2 ? '#FED976' :
- '#FFEDA0';
- }
-
- function style(feature) {
- return {
- weight: 1,
- opacity: 1,
- color: '#666',
- fillOpacity: 0.7,
- fillColor: getColor(feature.properties.density)
- };
- }
-
- var geojson = L.geoJson(data, {
- style: style,
- }).addTo(map);
- var bounds = geojson.getBounds();
- map.fitBounds(bounds);
-
- var center = bounds.getCenter();
- var width = new L.LatLng(center.lat, bounds.getEast()).distanceTo(new L.LatLng(center.lat, bounds.getWest()));
- var height = new L.LatLng(bounds.getNorth(), center.lng).distanceTo(new L.LatLng(bounds.getSouth(), center.lng));
- var unit = Math.max(width, height) / 300;
-
- <% java.util.Map cities = (java.util.Map) request.getAttribute("cities"); %>
- <c:forEach items='${ cities }' var='city'>
-
- L.circle([${ city.key.latitude }, ${ city.key.longitude }], ${ city.value } * unit + 500, {
- color: 'red',
- fillColor: '#f03',
- fillOpacity: 0.5
-
- }).addTo(map).bindPopup("${ city.value }");
-
- </c:forEach>
-
- </script>
- </body>
-</html>
\ No newline at end of file
Added: cartography/trunk/leaflet/src/main/webapp/WEB-INF/national.jsp
===================================================================
--- cartography/trunk/leaflet/src/main/webapp/WEB-INF/national.jsp (rev 0)
+++ cartography/trunk/leaflet/src/main/webapp/WEB-INF/national.jsp 2013-07-04 14:46:39 UTC (rev 683)
@@ -0,0 +1,111 @@
+<%@ page pageEncoding="UTF-8" %>
+<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8"/>
+ <title>Maps</title>
+ <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.2/leaflet.css" />
+ <script src="http://cdn.leafletjs.com/leaflet-0.6.2/leaflet.js"></script>
+ <script src='<c:url value="/REGIONS.json" />'></script>
+
+ <style>
+ #map {
+ width: 800px;
+ height: 500px;
+ }
+
+ .info {
+ padding: 6px 8px;
+ font: 14px/16px Arial, Helvetica, sans-serif;
+ background: white;
+ background: rgba(255,255,255,0.8);
+ box-shadow: 0 0 15px rgba(0,0,0,0.2);
+ border-radius: 5px;
+ }
+
+ .info h4 {
+ color: #777;
+ }
+
+ .legend {
+ text-align: left;
+ line-height: 18px;
+ color: #555;
+ }
+
+ .legend i {
+ width: 18px;
+ height: 18px;
+ float: left;
+ margin-right: 8px;
+ opacity: 0.7;
+ }
+ </style>
+
+ </head>
+ <body>
+ <div id="map"></div>
+ <script>
+ var data = {},
+ markers = [];
+
+ <% java.util.Map cities = (java.util.Map) request.getAttribute("regions"); %>
+ <c:forEach items='${ regions }' var='region'>
+ data["${ region.key }"] = ${ region.value };
+ </c:forEach>
+
+ for (var k in regions.features) {
+ var region = regions.features[k].properties.NOM_REGION;
+ var nb = data[region];
+ console.log(region + " : " + nb);
+ regions.features[k].properties.NB = nb;
+ }
+
+ var map = L.map('map');
+
+ //control that shows state info on hover
+ var info = L.control();
+
+ info.onAdd = function (map) {
+ this._div = L.DomUtil.create('div', 'info');
+ this.update();
+ return this._div;
+ };
+
+ info.update = function (props) {
+ this._div.innerHTML = '<h4>Carte nationale</h4>';
+ };
+
+ info.addTo(map);
+
+ function getColor(d) {
+ return d > 20 ? '#800026' :
+ d > 17 ? '#BD0026' :
+ d > 15 ? '#E31A1C' :
+ d > 12 ? '#FC4E2A' :
+ d > 10 ? '#FD8D3C' :
+ d > 7 ? '#FEB24C' :
+ d > 5 ? '#FED976' :
+ '#FFEDA0';
+ }
+
+ function style(feature) {
+ return {
+ weight: 1,
+ opacity: 1,
+ color: '#666',
+ fillOpacity: 0.7,
+ fillColor: getColor(feature.properties.NB)
+ };
+ }
+
+ var geojson = L.geoJson(regions, {
+ style: style,
+ }).addTo(map);
+ var bounds = geojson.getBounds();
+ map.fitBounds(bounds);
+
+ </script>
+ </body>
+</html>
\ No newline at end of file
Modified: cartography/trunk/leaflet/src/main/webapp/WEB-INF/web.xml
===================================================================
--- cartography/trunk/leaflet/src/main/webapp/WEB-INF/web.xml 2013-07-03 16:32:13 UTC (rev 682)
+++ cartography/trunk/leaflet/src/main/webapp/WEB-INF/web.xml 2013-07-04 14:46:39 UTC (rev 683)
@@ -10,13 +10,13 @@
</listener>
<servlet>
- <servlet-name>CityServlet</servlet-name>
- <servlet-class>org.nuiton.cartography.leaflet.CityServlet</servlet-class>
+ <servlet-name>MainServlet</servlet-name>
+ <servlet-class>org.nuiton.cartography.leaflet.MainServlet</servlet-class>
</servlet>
<servlet-mapping>
- <servlet-name>CityServlet</servlet-name>
- <url-pattern>/cities</url-pattern>
+ <servlet-name>MainServlet</servlet-name>
+ <url-pattern>/map</url-pattern>
</servlet-mapping>
</web-app>
\ No newline at end of file
1
0
Author: kmorin
Date: 2013-07-03 18:32:13 +0200 (Wed, 03 Jul 2013)
New Revision: 682
Url: http://nuiton.org/projects/sandbox/repository/revisions/682
Log:
add leaflet test to the sandbox
Added:
cartography/trunk/klm/
cartography/trunk/klm/LICENSE.txt
cartography/trunk/klm/README.txt
cartography/trunk/klm/changelog.txt
cartography/trunk/klm/lib/
cartography/trunk/klm/memo
cartography/trunk/klm/pom.xml
cartography/trunk/klm/src/
cartography/trunk/klm/src/main/
cartography/trunk/klm/src/main/java/
cartography/trunk/klm/src/main/java/cartography/
cartography/trunk/klm/src/main/java/cartography/klm/
cartography/trunk/klm/src/main/java/cartography/klm/KMLCreator.java
cartography/trunk/klm/src/main/java/cartography/klm/MainServlet.java
cartography/trunk/klm/src/main/resources/
cartography/trunk/klm/src/main/resources/log4j.properties
cartography/trunk/klm/src/main/webapp/
cartography/trunk/klm/src/test/
cartography/trunk/klm/src/test/java/
cartography/trunk/klm/src/test/java/cartography/
cartography/trunk/leaflet/
cartography/trunk/leaflet/LICENSE.txt
cartography/trunk/leaflet/README.txt
cartography/trunk/leaflet/changelog.txt
cartography/trunk/leaflet/pom.xml
cartography/trunk/leaflet/src/
cartography/trunk/leaflet/src/main/
cartography/trunk/leaflet/src/main/java/
cartography/trunk/leaflet/src/main/java/org/
cartography/trunk/leaflet/src/main/java/org/nuiton/
cartography/trunk/leaflet/src/main/java/org/nuiton/cartography/
cartography/trunk/leaflet/src/main/java/org/nuiton/cartography/leaflet/
cartography/trunk/leaflet/src/main/java/org/nuiton/cartography/leaflet/CityServlet.java
cartography/trunk/leaflet/src/main/resources/
cartography/trunk/leaflet/src/main/resources/cities.csv
cartography/trunk/leaflet/src/main/resources/log4j.properties
cartography/trunk/leaflet/src/main/webapp/
cartography/trunk/leaflet/src/main/webapp/DEPARTEMENT.json
cartography/trunk/leaflet/src/main/webapp/WEB-INF/
cartography/trunk/leaflet/src/main/webapp/WEB-INF/dpt.jsp
cartography/trunk/leaflet/src/main/webapp/WEB-INF/web.xml
cartography/trunk/leaflet/src/main/webapp/leaflet-dpt.js
cartography/trunk/leaflet/src/test/
cartography/trunk/leaflet/src/test/java/
Removed:
cartography/trunk/klm/src/main/java/cartography/KMLCreator.java
cartography/trunk/klm/src/main/java/cartography/MainServlet.java
cartography/trunk/lib/
cartography/trunk/memo
cartography/trunk/src/main/java/org/nuiton/cartography/
cartography/trunk/src/main/resources/log4j.properties
cartography/trunk/src/main/webapp/
cartography/trunk/src/test/java/org/nuiton/cartography/
Modified:
cartography/trunk/klm/src/main/webapp/WEB-INF/web.xml
cartography/trunk/klm/src/test/java/cartography/KMLCreatorTest.java
cartography/trunk/pom.xml
Copied: cartography/trunk/klm/LICENSE.txt (from rev 681, cartography/trunk/LICENSE.txt)
===================================================================
--- cartography/trunk/klm/LICENSE.txt (rev 0)
+++ cartography/trunk/klm/LICENSE.txt 2013-07-03 16:32:13 UTC (rev 682)
@@ -0,0 +1,166 @@
+ GNU LESSER GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+
+ This version of the GNU Lesser General Public License incorporates
+the terms and conditions of version 3 of the GNU General Public
+License, supplemented by the additional permissions listed below.
+
+ 0. Additional Definitions.
+
+ As used herein, "this License" refers to version 3 of the GNU Lesser
+General Public License, and the "GNU GPL" refers to version 3 of the GNU
+General Public License.
+
+ "The Library" refers to a covered work governed by this License,
+other than an Application or a Combined Work as defined below.
+
+ An "Application" is any work that makes use of an interface provided
+by the Library, but which is not otherwise based on the Library.
+Defining a subclass of a class defined by the Library is deemed a mode
+of using an interface provided by the Library.
+
+ A "Combined Work" is a work produced by combining or linking an
+Application with the Library. The particular version of the Library
+with which the Combined Work was made is also called the "Linked
+Version".
+
+ The "Minimal Corresponding Source" for a Combined Work means the
+Corresponding Source for the Combined Work, excluding any source code
+for portions of the Combined Work that, considered in isolation, are
+based on the Application, and not on the Linked Version.
+
+ The "Corresponding Application Code" for a Combined Work means the
+object code and/or source code for the Application, including any data
+and utility programs needed for reproducing the Combined Work from the
+Application, but excluding the System Libraries of the Combined Work.
+
+ 1. Exception to Section 3 of the GNU GPL.
+
+ You may convey a covered work under sections 3 and 4 of this License
+without being bound by section 3 of the GNU GPL.
+
+ 2. Conveying Modified Versions.
+
+ If you modify a copy of the Library, and, in your modifications, a
+facility refers to a function or data to be supplied by an Application
+that uses the facility (other than as an argument passed when the
+facility is invoked), then you may convey a copy of the modified
+version:
+
+ a) under this License, provided that you make a good faith effort to
+ ensure that, in the event an Application does not supply the
+ function or data, the facility still operates, and performs
+ whatever part of its purpose remains meaningful, or
+
+ b) under the GNU GPL, with none of the additional permissions of
+ this License applicable to that copy.
+
+ 3. Object Code Incorporating Material from Library Header Files.
+
+ The object code form of an Application may incorporate material from
+a header file that is part of the Library. You may convey such object
+code under terms of your choice, provided that, if the incorporated
+material is not limited to numerical parameters, data structure
+layouts and accessors, or small macros, inline functions and templates
+(ten or fewer lines in length), you do both of the following:
+
+ a) Give prominent notice with each copy of the object code that the
+ Library is used in it and that the Library and its use are
+ covered by this License.
+
+ b) Accompany the object code with a copy of the GNU GPL and this license
+ document.
+
+ 4. Combined Works.
+
+ You may convey a Combined Work under terms of your choice that,
+taken together, effectively do not restrict modification of the
+portions of the Library contained in the Combined Work and reverse
+engineering for debugging such modifications, if you also do each of
+the following:
+
+ a) Give prominent notice with each copy of the Combined Work that
+ the Library is used in it and that the Library and its use are
+ covered by this License.
+
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
+ document.
+
+ c) For a Combined Work that displays copyright notices during
+ execution, include the copyright notice for the Library among
+ these notices, as well as a reference directing the user to the
+ copies of the GNU GPL and this license document.
+
+ d) Do one of the following:
+
+ 0) Convey the Minimal Corresponding Source under the terms of this
+ License, and the Corresponding Application Code in a form
+ suitable for, and under terms that permit, the user to
+ recombine or relink the Application with a modified version of
+ the Linked Version to produce a modified Combined Work, in the
+ manner specified by section 6 of the GNU GPL for conveying
+ Corresponding Source.
+
+ 1) Use a suitable shared library mechanism for linking with the
+ Library. A suitable mechanism is one that (a) uses at run time
+ a copy of the Library already present on the user's computer
+ system, and (b) will operate properly with a modified version
+ of the Library that is interface-compatible with the Linked
+ Version.
+
+ e) Provide Installation Information, but only if you would otherwise
+ be required to provide such information under section 6 of the
+ GNU GPL, and only to the extent that such information is
+ necessary to install and execute a modified version of the
+ Combined Work produced by recombining or relinking the
+ Application with a modified version of the Linked Version. (If
+ you use option 4d0, the Installation Information must accompany
+ the Minimal Corresponding Source and Corresponding Application
+ Code. If you use option 4d1, you must provide the Installation
+ Information in the manner specified by section 6 of the GNU GPL
+ for conveying Corresponding Source.)
+
+ 5. Combined Libraries.
+
+ You may place library facilities that are a work based on the
+Library side by side in a single library together with other library
+facilities that are not Applications and are not covered by this
+License, and convey such a combined library under terms of your
+choice, if you do both of the following:
+
+ a) Accompany the combined library with a copy of the same work based
+ on the Library, uncombined with any other library facilities,
+ conveyed under the terms of this License.
+
+ b) Give prominent notice with the combined library that part of it
+ is a work based on the Library, and explaining where to find the
+ accompanying uncombined form of the same work.
+
+ 6. Revised Versions of the GNU Lesser General Public License.
+
+ The Free Software Foundation may publish revised and/or new versions
+of the GNU Lesser General Public License from time to time. Such new
+versions will be similar in spirit to the present version, but may
+differ in detail to address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Library as you received it specifies that a certain numbered version
+of the GNU Lesser General Public License "or any later version"
+applies to it, you have the option of following the terms and
+conditions either of that published version or of any later version
+published by the Free Software Foundation. If the Library as you
+received it does not specify a version number of the GNU Lesser
+General Public License, you may choose any version of the GNU Lesser
+General Public License ever published by the Free Software Foundation.
+
+ If the Library as you received it specifies that a proxy can decide
+whether future versions of the GNU Lesser General Public License shall
+apply, that proxy's public statement of acceptance of any version is
+permanent authorization for you to choose that version for the
+Library.
+
Copied: cartography/trunk/klm/README.txt (from rev 681, cartography/trunk/README.txt)
===================================================================
--- cartography/trunk/klm/README.txt (rev 0)
+++ cartography/trunk/klm/README.txt 2013-07-03 16:32:13 UTC (rev 682)
@@ -0,0 +1,2 @@
+To deploy new version of pom: mvn deploy
+To install localy: mvn install
Copied: cartography/trunk/klm/changelog.txt (from rev 681, cartography/trunk/changelog.txt)
===================================================================
Copied: cartography/trunk/klm/memo (from rev 681, cartography/trunk/memo)
===================================================================
--- cartography/trunk/klm/memo (rev 0)
+++ cartography/trunk/klm/memo 2013-07-03 16:32:13 UTC (rev 682)
@@ -0,0 +1,66 @@
+OGC : Open Geospatial Constortium
+
+- GML : Geography Markup Language <http://www.opengis.net/gml/>
+- SDL : Styled Layer Descriptor <http://www.opengeospatial.org/standards/sld>
+- WMS : The OpenGIS® Web Map Service Interface Standard (WMS) provides a simple HTTP interface for requesting geo-registered map images
+ from one or more distributed geospatial databases. A WMS request defines the geographic layer(s) and area of interest to be processed.
+The response to the request is one or more geo-registered map images (returned as JPEG, PNG, etc) that can be displayed in a browser application.
+The interface also supports the ability to specify whether the returned images should be transparent so that layers from multiple servers can
+be combined or not. <http://www.opengeospatial.org/standards/wms>
+- KML : Keyhole Markup Language <http://www.opengeospatial.org/standards/kml>
+ KML is complementary to most of the key existing OGC standards including GML (Geography Markup Language), WFS (Web Feature Service) and WMS (Web Map Service).
+
+Fusion vers KML
+
+- departments : http://www.gitesdegaule.fr/KaraMeLise/fichierkml.php
+- display KML on Gmap :
+http://display-kml.appspot.com/
+
+- tuto KML :
+http://www.touraineverte.com/aide-documentation-exemple-tutoriel-didacticiel/api-google-maps/kml-kmz/creer-creation-carte-map-mes-cartes/utiliser-fichier-kml-generer-creer-google-earth/importer-carte-via-api-google-maps-new-GGeoXml.htm
+ -> bof trop specifique
+
+- KML Creator :
+http://www.birdtheme.org/useful/googletool.html
+
+function collectcirclepoints(){
+ var zoom = map.getZoom();
+ var normalProj = G_NORMAL_MAP.getProjection();
+ var centerPt = normalProj.fromLatLngToPixel(centerMarker.getPoint(),zoom);
+ var radiusPt = normalProj.fromLatLngToPixel(radiusMarker,zoom);
+ with (Math){
+ var radius = floor(sqrt(pow((centerPt.x-radiusPt.x),2) + pow((centerPt.y-radiusPt.y),2)));
+ for (var a = 0 ; a < 361 ; a+=10 ){
+ var aRad = a*(PI/180);
+ y = centerPt.y + radius * sin(aRad)
+ x = centerPt.x + radius * cos(aRad)
+ var p = new GPoint(x,y);
+ if(holemode){
+ holePoints.push(normalProj.fromPixelToLatLng(p, zoom));
+ }else{
+ polyPoints.push(normalProj.fromPixelToLatLng(p, zoom));
+ }
+ }
+ if(holemode){
+ var helper = [];
+ var k = 0;
+ var j = holePoints.length;
+ for (var i = j-1; i>-1; i--) {
+ helper[k] = holePoints[i];
+ k++;
+ }
+ holePoints = helper;
+ }
+ }
+}
+
+Learn XQuery : http://www.xquery.com/tutorials/xqj_tutorial/
+Why ; http://developer.marklogic.com/pubs/4.0/apidocs/KML.html#kml:circle
+
+- JAK : JavaAPIforKML
+http://code.google.com/p/javaapiforkml/
+http://labs.micromata.de/display/jak/Home
+
+- KML + OpenLayers
+http://www.forumsig.org/showthread.php?t=17582&page=3
+http://fisheye.codehaus.org/browse/~raw,r=3830/mapbuilder/sandbox/rdewit/mapbuilder.ows5/examples/kml/kml_wmsc_ows5.html
\ No newline at end of file
Added: cartography/trunk/klm/pom.xml
===================================================================
--- cartography/trunk/klm/pom.xml (rev 0)
+++ cartography/trunk/klm/pom.xml 2013-07-03 16:32:13 UTC (rev 682)
@@ -0,0 +1,83 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <parent>
+ <artifactId>nuiton-cartography</artifactId>
+ <groupId>org.nuiton</groupId>
+ <version>0.1-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.nuiton.cartography</groupId>
+ <artifactId>klm</artifactId>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.nuiton</groupId>
+ <artifactId>nuiton-utils</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>javax.servlet-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>de.micromata.jak</groupId>
+ <artifactId>JavaAPIforKml</artifactId>
+ </dependency>
+
+ </dependencies>
+
+ <name>Cartography with KLM</name>
+ <description>Cartography trials :: OpenLayers with KML</description>
+ <inceptionYear>2010</inceptionYear>
+ <url>http://maven-site.nuiton.org/${project.artifactId}</url>
+
+ <!-- ************************************************************* -->
+ <!-- *** Build Settings ****************************************** -->
+ <!-- ************************************************************* -->
+
+ <packaging>pom</packaging>
+
+ <build>
+
+ <resources>
+ <resource>
+ <directory>src/main/resources</directory>
+ <includes>
+ <include>**/*</include>
+ </includes>
+ <filtering>true</filtering>
+ </resource>
+ </resources>
+
+ </build>
+
+</project>
\ No newline at end of file
Deleted: cartography/trunk/klm/src/main/java/cartography/KMLCreator.java
===================================================================
--- cartography/trunk/src/main/java/org/nuiton/cartography/KMLCreator.java 2013-06-27 14:24:38 UTC (rev 681)
+++ cartography/trunk/klm/src/main/java/cartography/KMLCreator.java 2013-07-03 16:32:13 UTC (rev 682)
@@ -1,78 +0,0 @@
-package org.nuiton.cartography;
-
-import de.micromata.opengis.kml.v_2_2_0.ColorMode;
-import de.micromata.opengis.kml.v_2_2_0.Document;
-import de.micromata.opengis.kml.v_2_2_0.Kml;
-import de.micromata.opengis.kml.v_2_2_0.Style;
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-
-import java.io.File;
-import java.io.FileNotFoundException;
-
-/**
- * Created: 22 juin 2010
- *
- * @author fdesbois <fdesbois(a)codelutin.com>
- * @version $Id$
- */
-public class KMLCreator {
-
- private static final Log log = LogFactory.getLog(KMLCreator.class);
-
- public static File KML_DIR = new File(System.getProperty("java.io.tmpdir"));
-
- public static void setKmlDirectory(File dir) {
- KML_DIR = dir;
- }
-
- public static File create(String filename) throws FileNotFoundException {
- Kml kml = new Kml();
- Document document = kml.createAndSetDocument();
-
- Style style = document.createAndAddStyle();
-
- style.createAndSetLineStyle().withColor("cc2d3939").withWidth(3);
- style.createAndSetPolyStyle().withColor("66d1d1ff").withColorMode(ColorMode.RANDOM);
-
- document.createAndAddPlacemark().
- withName("Port de La Rochelle").
- withDescription("<![CDATA[\n" +
- " <p>Embarquements depuis janvier 2010</p>\n" +
- " <table>\n" +
- " <tr>\n" +
- " <th>Navire</th>\n" +
- " <th>Embarquements réalisés</th>\n" +
- " <th>Embarquements refusés</th>\n" +
- " </tr>\n" +
- " <tr>\n" +
- " <td>COUCOU CASSE-COU</td>\n" +
- " <td>10</td>\n" +
- " <td>2</td>\n" +
- " </tr>\n" +
- " <td>PILE-POIL</td>\n" +
- " <td>0</td>\n" +
- " <td>1</td>\n" +
- " </tr>\n" +
- " <tr>\n" +
- " <td>LE FLEURISTE</td>\n" +
- " <td>8</td>\n" +
- " <td>0</td>\n" +
- " </tr>\n" +
- " </table>\n" +
- " ]]>").
- withOpen(Boolean.TRUE).
- createAndSetPoint().
- addToCoordinates(-1.153307, 46.157659);
-
- File output = new File(KML_DIR, filename);
-
- kml.marshal(output);
-
- if (log.isDebugEnabled()) {
- log.debug("Create kml file : " + output.getAbsolutePath());
- }
-
- return output;
- }
-}
Deleted: cartography/trunk/klm/src/main/java/cartography/MainServlet.java
===================================================================
--- cartography/trunk/src/main/java/org/nuiton/cartography/MainServlet.java 2013-06-27 14:24:38 UTC (rev 681)
+++ cartography/trunk/klm/src/main/java/cartography/MainServlet.java 2013-07-03 16:32:13 UTC (rev 682)
@@ -1,44 +0,0 @@
-package org.nuiton.cartography;
-
-import de.micromata.opengis.kml.v_2_2_0.ColorMode;
-import de.micromata.opengis.kml.v_2_2_0.Document;
-import de.micromata.opengis.kml.v_2_2_0.Kml;
-import de.micromata.opengis.kml.v_2_2_0.Style;
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-
-import javax.servlet.ServletException;
-import javax.servlet.http.HttpServlet;
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-import java.io.File;
-import java.io.IOException;
-
-/**
- * Created: 22 juin 2010
- *
- * @author fdesbois <fdesbois(a)codelutin.com>
- * @version $Id$
- */
-public class MainServlet extends HttpServlet {
-
- private static final Log log = LogFactory.getLog(MainServlet.class);
-
- @Override
- public void doGet(HttpServletRequest request, HttpServletResponse response)
- throws IOException, ServletException {
- this.doPost(request, response);
- }
-
- @Override
- public void doPost(HttpServletRequest request, HttpServletResponse response)
- throws IOException, ServletException {
-
- if (log.isDebugEnabled()) {
- log.debug("Start doPost");
- }
-
- KMLCreator.create("test.kml");
- }
-
-}
Added: cartography/trunk/klm/src/main/java/cartography/klm/KMLCreator.java
===================================================================
--- cartography/trunk/klm/src/main/java/cartography/klm/KMLCreator.java (rev 0)
+++ cartography/trunk/klm/src/main/java/cartography/klm/KMLCreator.java 2013-07-03 16:32:13 UTC (rev 682)
@@ -0,0 +1,78 @@
+package cartography.klm;
+
+import de.micromata.opengis.kml.v_2_2_0.ColorMode;
+import de.micromata.opengis.kml.v_2_2_0.Document;
+import de.micromata.opengis.kml.v_2_2_0.Kml;
+import de.micromata.opengis.kml.v_2_2_0.Style;
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+
+import java.io.File;
+import java.io.FileNotFoundException;
+
+/**
+ * Created: 22 juin 2010
+ *
+ * @author fdesbois <fdesbois(a)codelutin.com>
+ * @version $Id$
+ */
+public class KMLCreator {
+
+ private static final Log log = LogFactory.getLog(KMLCreator.class);
+
+ public static File KML_DIR = new File(System.getProperty("java.io.tmpdir"));
+
+ public static void setKmlDirectory(File dir) {
+ KML_DIR = dir;
+ }
+
+ public static File create(String filename) throws FileNotFoundException {
+ Kml kml = new Kml();
+ Document document = kml.createAndSetDocument();
+
+ Style style = document.createAndAddStyle();
+
+ style.createAndSetLineStyle().withColor("cc2d3939").withWidth(3);
+ style.createAndSetPolyStyle().withColor("66d1d1ff").withColorMode(ColorMode.RANDOM);
+
+ document.createAndAddPlacemark().
+ withName("Port de La Rochelle").
+ withDescription("<![CDATA[\n" +
+ " <p>Embarquements depuis janvier 2010</p>\n" +
+ " <table>\n" +
+ " <tr>\n" +
+ " <th>Navire</th>\n" +
+ " <th>Embarquements réalisés</th>\n" +
+ " <th>Embarquements refusés</th>\n" +
+ " </tr>\n" +
+ " <tr>\n" +
+ " <td>COUCOU CASSE-COU</td>\n" +
+ " <td>10</td>\n" +
+ " <td>2</td>\n" +
+ " </tr>\n" +
+ " <td>PILE-POIL</td>\n" +
+ " <td>0</td>\n" +
+ " <td>1</td>\n" +
+ " </tr>\n" +
+ " <tr>\n" +
+ " <td>LE FLEURISTE</td>\n" +
+ " <td>8</td>\n" +
+ " <td>0</td>\n" +
+ " </tr>\n" +
+ " </table>\n" +
+ " ]]>").
+ withOpen(Boolean.TRUE).
+ createAndSetPoint().
+ addToCoordinates(-1.153307, 46.157659);
+
+ File output = new File(KML_DIR, filename);
+
+ kml.marshal(output);
+
+ if (log.isDebugEnabled()) {
+ log.debug("Create kml file : " + output.getAbsolutePath());
+ }
+
+ return output;
+ }
+}
Added: cartography/trunk/klm/src/main/java/cartography/klm/MainServlet.java
===================================================================
--- cartography/trunk/klm/src/main/java/cartography/klm/MainServlet.java (rev 0)
+++ cartography/trunk/klm/src/main/java/cartography/klm/MainServlet.java 2013-07-03 16:32:13 UTC (rev 682)
@@ -0,0 +1,39 @@
+package cartography.klm;
+
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.io.IOException;
+
+/**
+ * Created: 22 juin 2010
+ *
+ * @author fdesbois <fdesbois(a)codelutin.com>
+ * @version $Id$
+ */
+public class MainServlet extends HttpServlet {
+
+ private static final Log log = LogFactory.getLog(MainServlet.class);
+
+ @Override
+ public void doGet(HttpServletRequest request, HttpServletResponse response)
+ throws IOException, ServletException {
+ this.doPost(request, response);
+ }
+
+ @Override
+ public void doPost(HttpServletRequest request, HttpServletResponse response)
+ throws IOException, ServletException {
+
+ if (log.isDebugEnabled()) {
+ log.debug("Start doPost");
+ }
+
+ KMLCreator.create("test.kml");
+ }
+
+}
Copied: cartography/trunk/klm/src/main/resources/log4j.properties (from rev 681, cartography/trunk/src/main/resources/log4j.properties)
===================================================================
--- cartography/trunk/klm/src/main/resources/log4j.properties (rev 0)
+++ cartography/trunk/klm/src/main/resources/log4j.properties 2013-07-03 16:32:13 UTC (rev 682)
@@ -0,0 +1,11 @@
+# Default to info level output; this is very handy if you eventually use Hibernate as well.
+log4j.rootCategory=warn, A1
+
+# A1 is set to be a ConsoleAppender.
+log4j.appender.A1=org.apache.log4j.ConsoleAppender
+
+# A1 uses PatternLayout.
+log4j.appender.A1.layout=org.apache.log4j.PatternLayout
+log4j.appender.A1.layout.ConversionPattern=%d [%p] %c{2} %m%n
+
+log4j.logger.org.nuiton.cartography=DEBUG
Modified: cartography/trunk/klm/src/main/webapp/WEB-INF/web.xml
===================================================================
--- cartography/trunk/src/main/webapp/WEB-INF/web.xml 2013-06-27 14:24:38 UTC (rev 681)
+++ cartography/trunk/klm/src/main/webapp/WEB-INF/web.xml 2013-07-03 16:32:13 UTC (rev 682)
@@ -2,7 +2,7 @@
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http:/java.sun.com/dtd/web-app_2_3.dtd">
<servlet>
<servlet-name>Main</servlet-name>
- <servlet-class>org.nuiton.cartography.MainServlet</servlet-class>
+ <servlet-class>cartography.klm.MainServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Main</servlet-name>
Modified: cartography/trunk/klm/src/test/java/cartography/KMLCreatorTest.java
===================================================================
--- cartography/trunk/src/test/java/org/nuiton/cartography/KMLCreatorTest.java 2013-06-27 14:24:38 UTC (rev 681)
+++ cartography/trunk/klm/src/test/java/cartography/KMLCreatorTest.java 2013-07-03 16:32:13 UTC (rev 682)
@@ -5,7 +5,6 @@
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
-import org.nuiton.util.TestUtil;
import java.io.File;
import java.io.FileNotFoundException;
@@ -26,15 +25,15 @@
@BeforeClass
public static void setUpClass() throws IOException {
// Initialize DIR_TESTS_DATA to target/surefire-data
- DIR_TESTS_DATA = TestUtil.createDefaultTestsDataDirectory();
+// DIR_TESTS_DATA = TestUtil.createDefaultTestsDataDirectory();
}
@Test
public void testCreate() throws FileNotFoundException {
- KMLCreator.setKmlDirectory(DIR_TESTS_DATA);
- File result = KMLCreator.create("test1.kml");
-
- Assert.assertTrue(result.exists());
+// KMLCreator.setKmlDirectory(DIR_TESTS_DATA);
+// File result = KMLCreator.create("test1.kml");
+//
+// Assert.assertTrue(result.exists());
}
}
Copied: cartography/trunk/leaflet/LICENSE.txt (from rev 681, cartography/trunk/LICENSE.txt)
===================================================================
--- cartography/trunk/leaflet/LICENSE.txt (rev 0)
+++ cartography/trunk/leaflet/LICENSE.txt 2013-07-03 16:32:13 UTC (rev 682)
@@ -0,0 +1,166 @@
+ GNU LESSER GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+
+ This version of the GNU Lesser General Public License incorporates
+the terms and conditions of version 3 of the GNU General Public
+License, supplemented by the additional permissions listed below.
+
+ 0. Additional Definitions.
+
+ As used herein, "this License" refers to version 3 of the GNU Lesser
+General Public License, and the "GNU GPL" refers to version 3 of the GNU
+General Public License.
+
+ "The Library" refers to a covered work governed by this License,
+other than an Application or a Combined Work as defined below.
+
+ An "Application" is any work that makes use of an interface provided
+by the Library, but which is not otherwise based on the Library.
+Defining a subclass of a class defined by the Library is deemed a mode
+of using an interface provided by the Library.
+
+ A "Combined Work" is a work produced by combining or linking an
+Application with the Library. The particular version of the Library
+with which the Combined Work was made is also called the "Linked
+Version".
+
+ The "Minimal Corresponding Source" for a Combined Work means the
+Corresponding Source for the Combined Work, excluding any source code
+for portions of the Combined Work that, considered in isolation, are
+based on the Application, and not on the Linked Version.
+
+ The "Corresponding Application Code" for a Combined Work means the
+object code and/or source code for the Application, including any data
+and utility programs needed for reproducing the Combined Work from the
+Application, but excluding the System Libraries of the Combined Work.
+
+ 1. Exception to Section 3 of the GNU GPL.
+
+ You may convey a covered work under sections 3 and 4 of this License
+without being bound by section 3 of the GNU GPL.
+
+ 2. Conveying Modified Versions.
+
+ If you modify a copy of the Library, and, in your modifications, a
+facility refers to a function or data to be supplied by an Application
+that uses the facility (other than as an argument passed when the
+facility is invoked), then you may convey a copy of the modified
+version:
+
+ a) under this License, provided that you make a good faith effort to
+ ensure that, in the event an Application does not supply the
+ function or data, the facility still operates, and performs
+ whatever part of its purpose remains meaningful, or
+
+ b) under the GNU GPL, with none of the additional permissions of
+ this License applicable to that copy.
+
+ 3. Object Code Incorporating Material from Library Header Files.
+
+ The object code form of an Application may incorporate material from
+a header file that is part of the Library. You may convey such object
+code under terms of your choice, provided that, if the incorporated
+material is not limited to numerical parameters, data structure
+layouts and accessors, or small macros, inline functions and templates
+(ten or fewer lines in length), you do both of the following:
+
+ a) Give prominent notice with each copy of the object code that the
+ Library is used in it and that the Library and its use are
+ covered by this License.
+
+ b) Accompany the object code with a copy of the GNU GPL and this license
+ document.
+
+ 4. Combined Works.
+
+ You may convey a Combined Work under terms of your choice that,
+taken together, effectively do not restrict modification of the
+portions of the Library contained in the Combined Work and reverse
+engineering for debugging such modifications, if you also do each of
+the following:
+
+ a) Give prominent notice with each copy of the Combined Work that
+ the Library is used in it and that the Library and its use are
+ covered by this License.
+
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
+ document.
+
+ c) For a Combined Work that displays copyright notices during
+ execution, include the copyright notice for the Library among
+ these notices, as well as a reference directing the user to the
+ copies of the GNU GPL and this license document.
+
+ d) Do one of the following:
+
+ 0) Convey the Minimal Corresponding Source under the terms of this
+ License, and the Corresponding Application Code in a form
+ suitable for, and under terms that permit, the user to
+ recombine or relink the Application with a modified version of
+ the Linked Version to produce a modified Combined Work, in the
+ manner specified by section 6 of the GNU GPL for conveying
+ Corresponding Source.
+
+ 1) Use a suitable shared library mechanism for linking with the
+ Library. A suitable mechanism is one that (a) uses at run time
+ a copy of the Library already present on the user's computer
+ system, and (b) will operate properly with a modified version
+ of the Library that is interface-compatible with the Linked
+ Version.
+
+ e) Provide Installation Information, but only if you would otherwise
+ be required to provide such information under section 6 of the
+ GNU GPL, and only to the extent that such information is
+ necessary to install and execute a modified version of the
+ Combined Work produced by recombining or relinking the
+ Application with a modified version of the Linked Version. (If
+ you use option 4d0, the Installation Information must accompany
+ the Minimal Corresponding Source and Corresponding Application
+ Code. If you use option 4d1, you must provide the Installation
+ Information in the manner specified by section 6 of the GNU GPL
+ for conveying Corresponding Source.)
+
+ 5. Combined Libraries.
+
+ You may place library facilities that are a work based on the
+Library side by side in a single library together with other library
+facilities that are not Applications and are not covered by this
+License, and convey such a combined library under terms of your
+choice, if you do both of the following:
+
+ a) Accompany the combined library with a copy of the same work based
+ on the Library, uncombined with any other library facilities,
+ conveyed under the terms of this License.
+
+ b) Give prominent notice with the combined library that part of it
+ is a work based on the Library, and explaining where to find the
+ accompanying uncombined form of the same work.
+
+ 6. Revised Versions of the GNU Lesser General Public License.
+
+ The Free Software Foundation may publish revised and/or new versions
+of the GNU Lesser General Public License from time to time. Such new
+versions will be similar in spirit to the present version, but may
+differ in detail to address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Library as you received it specifies that a certain numbered version
+of the GNU Lesser General Public License "or any later version"
+applies to it, you have the option of following the terms and
+conditions either of that published version or of any later version
+published by the Free Software Foundation. If the Library as you
+received it does not specify a version number of the GNU Lesser
+General Public License, you may choose any version of the GNU Lesser
+General Public License ever published by the Free Software Foundation.
+
+ If the Library as you received it specifies that a proxy can decide
+whether future versions of the GNU Lesser General Public License shall
+apply, that proxy's public statement of acceptance of any version is
+permanent authorization for you to choose that version for the
+Library.
+
Copied: cartography/trunk/leaflet/README.txt (from rev 681, cartography/trunk/README.txt)
===================================================================
--- cartography/trunk/leaflet/README.txt (rev 0)
+++ cartography/trunk/leaflet/README.txt 2013-07-03 16:32:13 UTC (rev 682)
@@ -0,0 +1,2 @@
+To deploy new version of pom: mvn deploy
+To install localy: mvn install
Copied: cartography/trunk/leaflet/changelog.txt (from rev 681, cartography/trunk/changelog.txt)
===================================================================
Added: cartography/trunk/leaflet/pom.xml
===================================================================
--- cartography/trunk/leaflet/pom.xml (rev 0)
+++ cartography/trunk/leaflet/pom.xml 2013-07-03 16:32:13 UTC (rev 682)
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <parent>
+ <artifactId>nuiton-cartography</artifactId>
+ <groupId>org.nuiton</groupId>
+ <version>0.1-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.nuiton.cartography</groupId>
+ <artifactId>leaflet</artifactId>
+ <packaging>war</packaging>
+ <name>Leaflet test: department map with markers</name>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>javax.servlet-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>com.h2database</groupId>
+ <artifactId>h2</artifactId>
+ <scope>compile</scope>
+ </dependency>
+
+ </dependencies>
+
+ <build>
+ <finalName>leaflet</finalName>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.7</source>
+ <target>1.7</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
\ No newline at end of file
Added: cartography/trunk/leaflet/src/main/java/org/nuiton/cartography/leaflet/CityServlet.java
===================================================================
--- cartography/trunk/leaflet/src/main/java/org/nuiton/cartography/leaflet/CityServlet.java (rev 0)
+++ cartography/trunk/leaflet/src/main/java/org/nuiton/cartography/leaflet/CityServlet.java 2013-07-03 16:32:13 UTC (rev 682)
@@ -0,0 +1,146 @@
+package org.nuiton.cartography.leaflet;
+
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+import org.h2.tools.Csv;
+import org.h2.tools.SimpleResultSet;
+import org.h2.util.StringUtils;
+
+import javax.servlet.ServletConfig;
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.io.*;
+import java.sql.*;
+import java.util.HashMap;
+import java.util.LinkedHashMap;
+import java.util.Map;
+
+/**
+ * @author kmorin <kmorin(a)codelutin.com>
+ */
+public class CityServlet extends HttpServlet {
+
+ private static final Log log = LogFactory.getLog(CityServlet.class);
+
+ protected static final String TABLE = "cities";
+ protected static final String FIELD_NAME = "name";
+ protected static final String FIELD_POST_CODE = "postCode";
+ protected static final String FIELD_LATITUDE = "latitude";
+ protected static final String FIELD_LONGITUDE = "longitude";
+
+ @Override
+ public void init() throws ServletException {
+ super.init();
+ try {
+ Connection conn = (Connection) getServletContext().getAttribute("connection");
+ Statement statement = conn.createStatement();
+ statement.addBatch("DROP TABLE IF EXISTS " + TABLE + ";");
+ statement.addBatch("CREATE TABLE cities (" + FIELD_NAME + " VARCHAR(255) NOT NULL, " +
+ FIELD_POST_CODE + " VARCHAR(6) NOT NULL, " +
+ FIELD_LATITUDE + " FLOAT, " +
+ FIELD_LONGITUDE + " FLOAT);");
+ statement.executeBatch();
+ statement.close();
+
+ InputStream in = getClass().getResourceAsStream("/cities.csv");
+ Reader reader = new InputStreamReader(in);
+ ResultSet rs = new Csv().read(reader, null);
+
+ PreparedStatement pstatement = conn.prepareStatement("INSERT INTO " + TABLE + " VALUES (?, ?, ?, ?);");
+ while (rs.next()) {
+ pstatement.setString(1, rs.getString(1).toUpperCase());
+ pstatement.setString(2, StringUtils.pad(rs.getString(3), 5, "0", false));
+ pstatement.setFloat(3, rs.getFloat(6));
+ pstatement.setFloat(4, rs.getFloat(7));
+ pstatement.addBatch();
+ }
+ pstatement.executeBatch();
+
+ rs.close();
+ in.close();
+ reader.close();
+ pstatement.close();
+
+ } catch (Exception e) {
+ throw new ServletException(e);
+ }
+ }
+
+ protected void doGet(HttpServletRequest request,
+ HttpServletResponse response) throws ServletException, IOException {
+
+ try {
+ response.setContentType("application/json");
+ response.setCharacterEncoding("UTF-8");
+
+ Connection conn = (Connection) getServletContext().getAttribute("connection");
+
+ String dpt = request.getParameter("dpt");
+ Statement statement = conn.createStatement();
+ ResultSet coord = statement.executeQuery("SELECT * FROM cities WHERE " + FIELD_POST_CODE + " LIKE '" + dpt + "%' ORDER BY RAND() LIMIT 4;");
+
+ // map of the cities with thir number of stuff
+ Map<City, Long> map = new LinkedHashMap<>();
+ while (coord.next()) {
+ map.put(new City(coord.getString(1), coord.getString(2), coord.getFloat(3), coord.getFloat(4)),
+ Math.round(20 * Math.random()) + 1);
+ }
+ request.setAttribute("cities", map);
+ getServletContext().getRequestDispatcher( "/WEB-INF/dpt.jsp" ).forward(request, response);
+ statement.close();
+
+ } catch (Exception e) {
+ e.printStackTrace();
+ response.sendError(500);
+ }
+ }
+
+ public static class City implements Serializable {
+
+ protected String name;
+ protected String postCode;
+ protected Float latitude;
+ protected Float longitude;
+
+ public City(String name, String postCode, Float latitude, Float longitude) {
+ this.name = name;
+ this.postCode = postCode;
+ this.latitude = latitude;
+ this.longitude = longitude;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getPostCode() {
+ return postCode;
+ }
+
+ public void setPostCode(String postCode) {
+ this.postCode = postCode;
+ }
+
+ public Float getLatitude() {
+ return latitude;
+ }
+
+ public void setLatitude(Float latitude) {
+ this.latitude = latitude;
+ }
+
+ public Float getLongitude() {
+ return longitude;
+ }
+
+ public void setLongitude(Float longitude) {
+ this.longitude = longitude;
+ }
+ }
+}
Added: cartography/trunk/leaflet/src/main/resources/cities.csv
===================================================================
--- cartography/trunk/leaflet/src/main/resources/cities.csv (rev 0)
+++ cartography/trunk/leaflet/src/main/resources/cities.csv 2013-07-03 16:32:13 UTC (rev 682)
@@ -0,0 +1,35250 @@
+ Nom Ville ,MAJ , Code Postal , Code INSEE ,Code Région, Latitude , Longitude , Eloignement
+ L'Abergement-Clémenciat ,L ABERGEMENT CLEMENCIAT ,1400,1001,82,46.15,4.916667,1.46
+ L'Abergement-de-Varey ,L ABERGEMENT DE VAREY,1640,1002,82,46,5.416667,1
+ Amareins ,AMAREINS ,1090,1003,82,46.083333,4.8,1.85
+ Ambérieu-en-Bugey ,AMBERIEU EN BUGEY ,1500,1004,82,45.95,5.35,0.8
+ Ambérieux-en-Dombes ,AMBERIEUX EN DOMBES ,1330,1005,82,46,4.9,1.72
+ Ambléon ,AMBLEON ,1300,1006,82,45.75,5.6,2.01
+ Ambronay ,AMBRONAY ,1500,1007,82,46,5.35,1.34
+ Ambutrix ,AMBUTRIX ,1500,1008,82,45.933333,5.333333,0.9
+ Andert-et-Condon ,ANDERT ET CONDON ,1300,1009,82,45.8,5.65,1.71
+ Anglefort ,ANGLEFORT ,1350,1010,82,45.916667,5.808333,-1
+ Apremont ,APREMONT ,1100,1011,82,46.208333,5.658333,1.46
+ Aranc ,ARANC ,1110,1012,82,46,5.5,1.01
+ Arandas ,ARANDAS ,1230,1013,82,45.9,5.483333,1.11
+ Arbent ,ARBENT ,1100,1014,82,46.3,5.683333,1.39
+ Arbignieu ,ARBIGNIEU ,1300,1015,82,45.733333,5.65,2.11
+ Arbigny ,ARBIGNY ,1190,1016,82,46.466667,4.966667,2.31
+ Argis ,ARGIS ,1230,1017,82,45.933333,5.483333,0.9
+ Armix ,ARMIX ,1510,1019,82,45.85,5.583333,1.41
+ Ars-sur-Formans ,ARS SUR FORMANS ,1480,1021,82,45.983333,4.816667,1.8
+ Artemare ,ARTEMARE ,1510,1022,82,45.866667,5.7,1.31
+ Asnières-sur-Saône ,ASNIERES SUR SAONE ,1570,1023,82,46.383333,4.883333,1.81
+ Attignat ,ATTIGNAT ,1340,1024,82,46.283333,5.166667,1.21
+ Bâgé-la-Ville ,BAGE LA VILLE ,1380,1025,82,46.316667,4.95,1.41
+ Bâgé-le-Châtel ,BAGE LE CHATEL ,1380,1026,82,46.3,4.933333,1.4
+ Balan ,BALAN ,1360,1027,82,45.833333,5.1,1.51
+ Baneins ,BANEINS ,1990,1028,82,46.116667,4.9,1.51
+ Beaupont ,BEAUPONT ,1270,1029,82,46.4,5.266667,1.91
+ Bellignat ,BELLIGNAT ,1810,1031,82,46.25,5.616667,1.5
+ Béligneux ,BELIGNEUX ,1360,1032,82,45.866667,5.116667,1.31
+ Bellegarde-sur-Valserine ,BELLEGARDE SUR VALSERINE ,1200,1033,82,46.1,5.816667,1.61
+ Belley ,BELLEY ,1300,1034,82,45.766667,5.683333,1.91
+ Belleydoux ,BELLEYDOUX ,1130,1035,82,46.25,5.766667,1.72
+ Bénonces ,BENONCES ,1470,1037,82,45.833333,5.483333,1.7
+ Bény ,BENY ,1370,1038,82,46.333333,5.283333,1.51
+ Béon ,BEON ,1350,1039,82,45.833333,5.75,1.51
+ Béréziat ,BEREZIAT ,1340,1040,82,46.366667,5.05,1.71
+ Bettant ,BETTANT ,1500,1041,82,45.933333,5.366667,1.21
+ Bey ,BEY ,1290,1042,82,46.216667,4.85,1.68
+ Beynost ,BEYNOST ,1700,1043,82,45.833333,5,1.51
+ Billiat ,BILLIAT ,1200,1044,82,46.066667,5.783333,1.5
+ Birieux ,BIRIEUX ,1330,1045,82,45.95,5.033333,1.06
+ Biziat ,BIZIAT ,1290,1046,82,46.216667,4.933333,1.51
+ Blyes ,BLYES ,1150,1047,82,45.85,5.25,1.41
+ Bohas ,BOHAS ,1250,1048,82,46.166667,5.4,0.52
+ La Boisse ,LA BOISSE ,1120,1049,82,45.85,5.033333,1.41
+ Boissey ,BOISSEY ,1190,1050,82,46.383333,5,1.81
+ Bolozon ,BOLOZON ,1450,1051,82,46.2,5.483333,1.91
+ Bouligneux ,BOULIGNEUX ,1330,1052,82,46.016667,5,1.17
+ Bourg-en-Bresse ,BOURG EN BRESSE ,1000,1053,82,46.2,5.216667,1
+ Bourg-Saint-Christophe ,BOURG SAINT CHRISTOPHE ,1800,1054,82,45.883333,5.166667,1.21
+ Bouvent ,BOUVENT ,1100,1055,82,46.283333,5.633333,1.21
+ Boyeux-Saint-Jérôme ,BOYEUX SAINT JEROME ,1640,1056,82,46.033333,5.466667,1.27
+ Boz ,BOZ ,1190,1057,82,46.4,4.9,1.91
+ Brégnier-Cordon ,BREGNIER CORDON ,1300,1058,82,45.65,5.616667,2.61
+ Brénaz ,BRENAZ ,1260,1059,82,45.95,5.716667,1.27
+ Brénod ,BRENOD ,1110,1060,82,46.066667,5.6,1.36
+ Bressolles ,BRESSOLLES ,1360,1062,82,45.866667,5.1,1.31
+ Briord ,BRIORD ,1470,1064,82,45.783333,5.466667,1.81
+ Buellas ,BUELLAS ,1310,1065,82,46.2,5.133333,0.73
+ La Burbanche ,LA BURBANCHE ,1510,1066,82,45.85,5.566667,1.41
+ Ceignes ,CEIGNES ,1430,1067,82,46.116667,5.5,1.08
+ Cerdon ,CERDON ,1450,1068,82,46.083333,5.466667,0.87
+ Certines ,CERTINES ,1240,1069,82,46.133333,5.266667,1.97
+ Cesseins ,CESSEINS ,1090,1070,82,46.066667,4.833333,1.85
+ Cessy ,CESSY ,1170,1071,82,46.316667,6.066667,2.46
+ Ceyzériat ,CEYZERIAT ,1250,1072,82,46.166667,5.316667,1.15
+ Ceyzérieu ,CEYZERIEU ,1350,1073,82,45.833333,5.733333,1.51
+ Chalamont ,CHALAMONT ,1320,1074,82,46,5.166667,0.65
+ Chaleins ,CHALEINS ,1480,1075,82,46.033333,4.8,1.85
+ Chaley ,CHALEY ,1230,1076,82,45.95,5.533333,1.58
+ Challes ,CHALLES ,1450,1077,82,46.133333,5.466667,0.42
+ Challex ,CHALLEX ,1630,1078,82,46.183333,5.966667,2.12
+ Champagne-en-Valromey ,CHAMPAGNE EN VALROMEY ,1260,1079,82,45.9,5.683333,1.17
+ Champdor ,CHAMPDOR ,1110,1080,82,46.016667,5.6,0.87
+ Champfromier ,CHAMPFROMIER ,1410,1081,82,46.2,5.816667,1.61
+ Chanay ,CHANAY ,1420,1082,82,46,5.783333,1.5
+ Chaneins ,CHANEINS ,1990,1083,82,46.1,4.85,1.68
+ Chanoz-Châtenay ,CHANOZ CHATENAY ,1400,1084,82,46.183333,5.033333,1.06
+ La Chapelle-du-Châtelard ,LA CHAPELLE DU CHATELARD,1240,1085,82,46.066667,5.033333,1.38
+ Charancin ,CHARANCIN ,1260,1086,82,45.933333,5.633333,1.09
+ Charix ,CHARIX ,1130,1087,82,46.183333,5.683333,1.16
+ Charnoz-sur-Ain ,CHARNOZ SUR AIN ,1800,1088,82,45.866667,5.216667,1.31
+ Château-Gaillard ,CHATEAU GAILLARD ,1500,1089,82,45.966667,5.3,1.1
+ Châtenay ,CHATENAY ,1320,1090,82,46.033333,5.2,0.65
+ Châtillon-en-Michaille ,CHATILLON EN MICHAILLE ,1200,1091,82,46.133333,5.783333,1.5
+ Châtillon-la-Palud ,CHATILLON LA PALUD ,1320,1092,82,45.966667,5.25,1.39
+ Châtillon-sur-Chalaronne ,CHATILLON SUR CHALARONNE ,1400,1093,82,46.116667,4.966667,1.29
+ Chavannes-sur-Reyssouze ,CHAVANNES SUR REYSSOUZE ,1190,1094,82,46.433333,5,2.11
+ Chavannes-sur-Suran ,CHAVANNES SUR SURAN ,1250,1095,82,46.266667,5.416667,1.14
+ Chaveyriat ,CHAVEYRIAT ,1660,1096,82,46.183333,5.066667,0.98
+ Chavornay ,CHAVORNAY ,1510,1097,82,45.883333,5.7,1.31
+ Chazey-Bons ,CHAZEY BONS ,1300,1098,82,45.8,5.683333,1.71
+ Chazey-sur-Ain ,CHAZEY SUR AIN ,1150,1099,82,45.9,5.25,1.36
+ Cheignieu-La-Balme ,CHEIGNIEU LA BALME ,1510,1100,82,45.833333,5.616667,1.51
+ Chevillard ,CHEVILLARD ,1430,1101,82,46.116667,5.583333,1.08
+ Chevroux ,CHEVROUX ,1190,1102,82,46.383333,4.95,1.81
+ Chevry ,CHEVRY ,1170,1103,82,46.283333,6.033333,2.35
+ Chézery-Forens ,CHEZERY FORENS ,1200,1104,82,46.216667,5.883333,2.48
+ Civrieux ,CIVRIEUX ,1390,1105,82,45.916667,4.883333,1.57
+ Cize ,CIZE ,1250,1106,82,46.2,5.433333,0.72
+ Cleyzieu ,CLEYZIEU ,1230,1107,82,45.9,5.433333,1.11
+ Coligny ,COLIGNY ,1270,1108,82,46.383333,5.35,1.81
+ Collonges ,COLLONGES ,1550,1109,82,46.133333,5.9,1.89
+ Colomieu ,COLOMIEU ,1300,1110,82,45.733333,5.616667,2.11
+ Conand ,CONAND ,1230,1111,82,45.883333,5.466667,1.21
+ Condamine ,CONDAMINE ,1430,1112,82,46.116667,5.566667,0.76
+ Condeissiat ,CONDEISSIAT ,1400,1113,82,46.166667,5.083333,1.6
+ Confort ,CONFORT ,1200,1114,82,46.15,5.816667,1.61
+ Confrançon ,CONFRANCON ,1310,1115,82,46.266667,5.066667,1.35
+ Contrevoz ,CONTREVOZ ,1300,1116,82,45.8,5.633333,1.71
+ Conzieu ,CONZIEU ,1300,1117,82,45.733333,5.6,2.11
+ Corbonod ,CORBONOD ,1420,1118,82,45.95,5.816667,1.61
+ Corcelles ,CORCELLES ,1110,1119,82,46.033333,5.583333,0.87
+ Cordieux ,CORDIEUX ,1120,1120,82,45.916667,5.033333,1.66
+ Corlier ,CORLIER ,1110,1121,82,46.033333,5.5,1.25
+ Cormaranche-en-Bugey ,CORMARANCHE EN BUGEY ,1110,1122,82,45.95,5.6,0.87
+ Cormoranche-sur-Saône ,CORMORANCHE SUR SAONE ,1290,1123,82,46.233333,4.833333,1.74
+ Cormoz ,CORMOZ ,1560,1124,82,46.45,5.233333,2.27
+ Corveissiat ,CORVEISSIAT ,1250,1125,82,46.233333,5.483333,1.58
+ Courmangoux ,COURMANGOUX ,1370,1127,82,46.333333,5.366667,1.51
+ Courtes ,COURTES ,1560,1128,82,46.466667,5.1,2.31
+ Crans ,CRANS ,1320,1129,82,45.966667,5.216667,0.9
+ Cras-sur-Reyssouze ,CRAS SUR REYSSOUZE ,1340,1130,82,46.3,5.166667,1.31
+ Craz-en-Michaille ,CRAZ EN MICHAILLE ,1200,1131,82,46.033333,5.766667,1.66
+ Cressin-Rochefort ,CRESSIN ROCHEFORT ,1350,1133,82,45.766667,5.766667,1.91
+ Crottet ,CROTTET ,1620,1134,82,46.283333,4.9,1.51
+ Cruzilles-lès-Mépillat ,CRUZILLES LES MEPILLAT ,1290,1136,82,46.216667,4.883333,1.57
+ Cuisiat ,CUISIAT ,1370,1137,82,46.3,5.383333,1.31
+ Culoz ,CULOZ ,1350,1138,82,45.85,5.783333,1.5
+ Curciat-Dongalon ,CURCIAT DONGALON ,1560,1139,82,46.466667,5.15,2.31
+ Curtafond ,CURTAFOND ,1310,1140,82,46.266667,5.083333,1.11
+ Dagneux ,DAGNEUX ,1120,1142,82,45.85,5.066667,1.41
+ Divonne-les-Bains ,DIVONNE LES BAINS ,1220,1143,82,46.366667,6.133333,2.69
+ Dommartin ,DOMMARTIN ,1380,1144,82,46.341667,4.991667,1.56
+ Dompierre-sur-Veyle ,DOMPIERRE SUR VEYLE ,1240,1145,82,46.066667,5.2,1.13
+ Dompierre-sur-Chalaronne ,DOMPIERRE SUR CHALARONNE ,1400,1146,82,46.133333,4.9,1.53
+ Domsure ,DOMSURE ,1270,1147,82,46.416667,5.3,2.01
+ Dortan ,DORTAN ,1590,1148,82,46.316667,5.666667,1.41
+ Douvres ,DOUVRES ,1500,1149,82,45.983333,5.366667,1.21
+ Drom ,DROM ,1250,1150,82,46.216667,5.366667,0.8
+ Druillat ,DRUILLAT ,1160,1151,82,46.066667,5.316667,0.1
+ Échenevex ,ECHENEVEX ,1170,1153,82,46.316667,6.033333,2.35
+ Étrez ,ETREZ ,1340,1154,82,46.333333,5.183333,1.51
+ Évosges ,EVOSGES ,1230,1155,82,45.958333,5.5,-1
+ Faramans ,FARAMANS ,1800,1156,82,45.9,5.116667,1.11
+ Fareins ,FAREINS ,1480,1157,82,46.016667,4.766667,1.97
+ Farges ,FARGES ,1550,1158,82,46.166667,5.916667,1.95
+ Feillens ,FEILLENS ,1570,1159,82,46.333333,4.883333,1.57
+ Ferney-Voltaire ,FERNEY VOLTAIRE ,1210,1160,82,46.25,6.116667,2.63
+ Fitignieu ,FITIGNIEU ,1260,1161,82,45.933333,5.666667,1.1
+ Flaxieu ,FLAXIEU ,1350,1162,82,45.816667,5.733333,1.61
+ Foissiat ,FOISSIAT ,1340,1163,82,46.366667,5.183333,1.71
+ Amareins Francheleins Ces ,AMAREINS FRANCHELEINS CES ,1090,1165,82,46.066667,4.8,1.85
+ Frans ,FRANS ,1480,1166,82,45.983333,4.783333,1.91
+ Garnerans ,GARNERANS ,1140,1167,82,46.2,4.833333,1.74
+ Genouilleux ,GENOUILLEUX ,1090,1169,82,46.116667,4.783333,1.91
+ Géovreissiat ,GEOVREISSIAT ,1460,1170,82,46.2,5.566667,0.76
+ Géovreisset ,GEOVREISSET ,1100,1171,82,46.25,5.6,1.24
+ Germagnat ,GERMAGNAT ,1250,1172,82,46.316667,5.45,2.05
+ Gex ,GEX ,1170,1173,82,46.333333,6.066667,2.46
+ Giron ,GIRON ,1130,1174,82,46.233333,5.766667,1.46
+ Gorrevod ,GORREVOD ,1190,1175,82,46.416667,4.95,2.01
+ Le Grand-Abergement ,LE GRAND ABERGEMENT ,1260,1176,82,46.033333,5.666667,1.84
+ Grand-Corent ,GRAND CORENT ,1250,1177,82,46.2,5.433333,0.72
+ Granges ,GRANGES ,1580,1178,82,46.233333,5.5,1.13
+ Grièges ,GRIEGES ,1290,1179,82,46.25,4.85,1.68
+ Grilly ,GRILLY ,1220,1180,82,46.333333,6.116667,2.63
+ Groissiat ,GROISSIAT ,1810,1181,82,46.216667,5.6,0.87
+ Groslée ,GROSLEE ,1680,1182,82,45.716667,5.566667,2.21
+ Guéreins ,GUEREINS ,1090,1183,82,46.1,4.783333,1.91
+ Hautecourt Romanèche ,HAUTECOURT ROMANECHE ,1250,1184,82,46.158333,5.416667,-1
+ Hauteville-Lompnes ,HAUTEVILLE LOMPNES ,1110,1185,82,45.966667,5.6,0.87
+ Hostias ,HOSTIAS ,1110,1186,82,45.9,5.533333,1.11
+ Hotonnes ,HOTONNES ,1260,1187,82,46,5.683333,1.16
+ Illiat ,ILLIAT ,1140,1188,82,46.183333,4.883333,1.57
+ Injoux Génissiat ,INJOUX GENISSIAT ,1200,1189,82,46.05,5.783333,1.5
+ Innimond ,INNIMOND ,1680,1190,82,45.783333,5.566667,1.81
+ Izenave ,IZENAVE ,1430,1191,82,46.033333,5.533333,1.62
+ Izernore ,IZERNORE ,1580,1192,82,46.216667,5.55,0.8
+ Izieu ,IZIEU ,1300,1193,82,45.65,5.633333,2.61
+ Jassans-Riottier ,JASSANS RIOTTIER ,1480,1194,82,45.983333,4.75,2.03
+ Jasseron ,JASSERON ,1250,1195,82,46.216667,5.333333,0.84
+ Jayat ,JAYAT ,1340,1196,82,46.366667,5.116667,1.71
+ Journans ,JOURNANS ,1250,1197,82,46.15,5.333333,1.08
+ Joyeux ,JOYEUX ,1800,1198,82,45.95,5.1,1.55
+ Jujurieux ,JUJURIEUX ,1640,1199,82,46.033333,5.416667,0.72
+ Labalme ,LABALME ,1450,1200,82,46.1,5.483333,0.78
+ Lagnieu ,LAGNIEU ,1150,1202,82,45.9,5.35,1.11
+ Laiz ,LAIZ ,1290,1203,82,46.25,4.883333,1.57
+ Lalleyriat ,LALLEYRIAT ,1130,1204,82,46.15,5.716667,1.27
+ Lancrans ,LANCRANS ,1200,1205,82,46.133333,5.833333,1.67
+ Lantenay ,LANTENAY ,1430,1206,82,46.05,5.533333,1.22
+ Lapeyrouse ,LAPEYROUSE ,1330,1207,82,45.983333,4.966667,1.29
+ Lavours ,LAVOURS ,1350,1208,82,45.8,5.766667,1.71
+ Léaz ,LEAZ ,1200,1209,82,46.1,5.883333,1.84
+ Lélex ,LELEX ,1410,1210,82,46.3,5.95,2.06
+ Lent ,LENT ,1240,1211,82,46.116667,5.2,1.02
+ Lescheroux ,LESCHEROUX ,1560,1212,82,46.4,5.15,1.91
+ Leyment ,LEYMENT ,1150,1213,82,45.916667,5.3,1
+ Leyssard ,LEYSSARD ,1450,1214,82,46.166667,5.466667,1.08
+ Lhuis ,LHUIS ,1680,1216,82,45.75,5.533333,2.01
+ Lilignod ,LILIGNOD ,1260,1217,82,45.95,5.683333,1.16
+ Lochieu ,LOCHIEU ,1260,1218,82,45.933333,5.716667,1.27
+ Lompnas ,LOMPNAS ,1680,1219,82,45.8,5.516667,1.71
+ Lompnieu ,LOMPNIEU ,1260,1221,82,45.966667,5.65,1.04
+ Loyes ,LOYES ,1800,1223,82,45.933333,5.233333,1.19
+ Loyettes ,LOYETTES ,1360,1224,82,45.766667,5.2,2.27
+ Lurcy ,LURCY ,1090,1225,82,46.066667,4.766667,1.97
+ Luthézieu ,LUTHEZIEU ,1260,1226,82,45.9,5.666667,1.19
+ Magnieu ,MAGNIEU ,1300,1227,82,45.783333,5.716667,1.81
+ Maillat ,MAILLAT ,1430,1228,82,46.133333,5.55,0.83
+ Malafretaz ,MALAFRETAZ ,1340,1229,82,46.316667,5.15,1.41
+ Mantenay-Montlin ,MANTENAY MONTLIN ,1560,1230,82,46.416667,5.083333,2.01
+ Manziat ,MANZIAT ,1570,1231,82,46.35,4.9,1.61
+ Marboz ,MARBOZ ,1851,1232,82,46.333333,5.25,1.51
+ Marchamp ,MARCHAMP ,1680,1233,82,45.783333,5.55,1.81
+ Marignieu ,MARIGNIEU ,1300,1234,82,45.8,5.716667,1.71
+ Marlieux ,MARLIEUX ,1240,1235,82,46.066667,5.066667,0.97
+ Marsonnas ,MARSONNAS ,1340,1236,82,46.333333,5.066667,1.51
+ Martignat ,MARTIGNAT ,1810,1237,82,46.216667,5.6,0.87
+ Massieux ,MASSIEUX ,1600,1238,82,45.916667,4.833333,1.74
+ Massignieu-de-Rives ,MASSIGNIEU DE RIVES ,1300,1239,82,45.75,5.766667,2.01
+ Matafelon-Granges ,MATAFELON GRANGES ,1580,1240,82,46.266667,5.566667,1.26
+ Meillonnas ,MEILLONNAS ,1370,1241,82,46.25,5.35,1.08
+ Mérignat ,MERIGNAT ,1450,1242,82,46.066667,5.433333,1.31
+ Meximieux ,MEXIMIEUX ,1800,1244,82,45.9,5.2,1.11
+ Bohas-Meyriat-Rignat ,BOHAS MEYRIAT RIGNAT ,1250,1245,82,46.133333,5.4,1.01
+ Mézériat ,MEZERIAT ,1660,1246,82,46.233333,5.033333,1.23
+ Mijoux ,MIJOUX ,1170,1247,82,46.366667,6,2.23
+ Mionnay ,MIONNAY ,1390,1248,82,45.9,4.933333,1.4
+ Misérieux ,MISERIEUX ,1600,1250,82,45.983333,4.816667,1.8
+ Moëns ,MOENS ,1280,1251,82,46.266667,6.1,2.58
+ Mogneneins ,MOGNENEINS ,1140,1252,82,46.133333,4.816667,1.8
+ Mollon ,MOLLON ,1800,1253,82,45.95,5.25,1.59
+ Montagnat ,MONTAGNAT ,1250,1254,82,46.166667,5.283333,1.62
+ Montagnieu ,MONTAGNIEU ,1470,1255,82,45.8,5.466667,1.71
+ Montanges ,MONTANGES ,1200,1257,82,46.166667,5.8,1.55
+ Montceaux ,MONTCEAUX ,1090,1258,82,46.1,4.8,1.85
+ Montcet ,MONTCET ,1310,1259,82,46.2,5.116667,0.78
+ Le Montellier ,LE MONTELLIER ,1800,1260,82,45.933333,5.066667,1.96
+ Monthieux ,MONTHIEUX ,1390,1261,82,45.95,4.933333,1.4
+ Montluel ,MONTLUEL ,1120,1262,82,45.85,5.05,1.41
+ Montmerle-sur-Saône ,MONTMERLE SUR SAONE ,1090,1263,82,46.083333,4.766667,1.97
+ Montracol ,MONTRACOL ,1310,1264,82,46.183333,5.116667,0.99
+ Montrevel-en-Bresse ,MONTREVEL EN BRESSE ,1340,1266,82,46.333333,5.133333,1.51
+ Murs-et-Gélignieux ,MURS ET GELIGNIEUX ,1300,1268,82,45.633333,5.666667,2.71
+ Nantua ,NANTUA ,1460,1269,82,46.15,5.616667,1.6
+ Napt ,NAPT ,1580,1270,82,46.2,5.5,1.49
+ Nattages ,NATTAGES ,1300,1271,82,45.733333,5.766667,2.11
+ Neuville-les-Dames ,NEUVILLE LES DAMES ,1400,1272,82,46.166667,5,1.17
+ Neuville-sur-Ain ,NEUVILLE SUR AIN ,1160,1273,82,46.083333,5.366667,1.28
+ Les Neyrolles ,LES NEYROLLES ,1130,1274,82,46.133333,5.633333,2
+ Nièvroz ,NIEVROZ ,1120,1276,82,45.833333,5.066667,1.51
+ Nivollet-Montgriffon ,NIVOLLET MONTGRIFFON ,1230,1277,82,45.983333,5.433333,1.42
+ Ochiaz ,OCHIAZ ,1200,1278,82,46.116667,5.783333,1.5
+ Oncieu ,ONCIEU ,1230,1279,82,45.95,5.466667,0.8
+ Ordonnaz ,ORDONNAZ ,1510,1280,82,45.833333,5.533333,1.89
+ Ornex ,ORNEX ,1210,1281,82,46.283333,6.1,2.58
+ Outriaz ,OUTRIAZ ,1430,1282,82,46.066667,5.55,0.83
+ Oyonnax ,OYONNAX ,1100,1283,82,46.25,5.666667,1.1
+ Ozan ,OZAN ,1190,1284,82,46.383333,4.916667,1.81
+ Parcieux ,PARCIEUX ,1600,1285,82,45.916667,4.816667,1.8
+ Parves ,PARVES ,1300,1286,82,45.75,5.75,2.01
+ Passin ,PASSIN ,1260,1287,82,45.933333,5.7,1.21
+ Péron ,PERON ,1630,1288,82,46.2,5.933333,2.01
+ Péronnas ,PERONNAS ,1960,1289,82,46.183333,5.2,0.6
+ Pérouges ,PEROUGES ,1800,1290,82,45.9,5.183333,1.11
+ Perrex ,PERREX ,1540,1291,82,46.233333,4.983333,1.23
+ Le Petit-Abergement ,LE PETIT ABERGEMENT ,1260,1292,82,46.033333,5.65,1.93
+ Peyriat ,PEYRIAT ,1430,1293,82,46.15,5.516667,1.35
+ Peyzieux-sur-Saône ,PEYZIEUX SUR SAONE ,1140,1295,82,46.116667,4.816667,1.8
+ Pirajoux ,PIRAJOUX ,1270,1296,82,46.383333,5.3,1.81
+ Pizay ,PIZAY ,1120,1297,82,45.883333,5.083333,1.21
+ Plagne ,PLAGNE ,1130,1298,82,46.183333,5.733333,1.33
+ Le Plantay ,LE PLANTAY ,1330,1299,82,46.016667,5.083333,1.35
+ Le Poizat ,LE POIZAT ,1130,1300,82,46.15,5.7,1.21
+ Polliat ,POLLIAT ,1310,1301,82,46.25,5.133333,1.01
+ Pollieu ,POLLIEU ,1350,1302,82,45.8,5.75,1.71
+ Poncin ,PONCIN ,1450,1303,82,46.083333,5.4,1.51
+ Pont-d'Ain ,PONT D AIN ,1160,1304,82,46.05,5.333333,0.52
+ Pont-de-Vaux ,PONT DE VAUX ,1190,1305,82,46.433333,4.933333,2.11
+ Pont-de-Veyle ,PONT DE VEYLE ,1290,1306,82,46.266667,4.883333,1.57
+ Port ,PORT ,1460,1307,82,46.166667,5.566667,0.76
+ Pougny ,POUGNY ,1550,1308,82,46.133333,5.95,2.06
+ Pouillat ,POUILLAT ,1250,1309,82,46.333333,5.433333,2.18
+ Prémeyzel ,PREMEYZEL ,1300,1310,82,45.683333,5.65,2.41
+ Prémillieu ,PREMILLIEU ,1110,1311,82,45.866667,5.566667,1.43
+ Pressiat ,PRESSIAT ,1370,1312,82,46.333333,5.383333,1.51
+ Prévessin-Moens ,PREVESSIN MOENS ,1280,1313,82,46.25,6.083333,2.52
+ Priay ,PRIAY ,1160,1314,82,46,5.283333,1.73
+ Pugieu ,PUGIEU ,1510,1316,82,45.816667,5.65,1.61
+ Ramasse ,RAMASSE ,1250,1317,82,46.2,5.35,0.7
+ Rancé ,RANCE ,1390,1318,82,45.966667,4.866667,1.63
+ Relevant ,RELEVANT ,1990,1319,82,46.083333,4.95,1.34
+ Replonges ,REPLONGES ,1620,1320,82,46.3,4.883333,1.57
+ Revonnas ,REVONNAS ,1250,1321,82,46.166667,5.333333,0.93
+ Reyrieux ,REYRIEUX ,1600,1322,82,45.933333,4.816667,1.8
+ Reyssouze ,REYSSOUZE ,1190,1323,82,46.433333,4.916667,2.11
+ Rignat ,RIGNAT ,1250,1324,82,46.15,5.366667,0.78
+ Rignieux-le-Franc ,RIGNIEUX LE FRANC ,1800,1325,82,45.933333,5.183333,0.9
+ Romanèche ,ROMANECHE ,1250,1327,82,46.183333,5.433333,0.76
+ Romans ,ROMANS ,1400,1328,82,46.116667,5.033333,1.06
+ Rossillon ,ROSSILLON ,1510,1329,82,45.833333,5.6,1.51
+ Ruffieu ,RUFFIEU ,1260,1330,82,46,5.666667,1.11
+ Saint-Alban ,SAINT ALBAN ,1450,1331,82,46.1,5.45,0.48
+ Saint-André-de-Bâgé ,SAINT ANDRE DE BAGE,1380,1332,82,46.3,4.916667,1.46
+ Saint-André-de-Corcy ,SAINT ANDRE DE CORCY,1390,1333,82,45.916667,4.95,1.34
+ Saint-André-d'Huiriat ,SAINT ANDRE D HUIRIAT,1290,1334,82,46.216667,4.916667,1.46
+ Saint-André-le-Bouchoux ,SAINT ANDRE LE BOUCHOUX,1240,1335,82,46.116667,5.083333,0.89
+ Saint-André-sur-Vieux-Jonc ,SAINT ANDRE SUR VIEUX,1240,1336,82,46.15,5.066667,1.04
+ Saint-Bénigne ,SAINT BENIGNE ,1190,1337,82,46.433333,4.966667,2.11
+ Saint-Benoît ,SAINT BENOIT ,1300,1338,82,45.7,5.583333,2.31
+ Saint-Bois ,SAINT BOIS ,1300,1340,82,45.7,5.633333,2.31
+ Saint-Champ-Chatonod ,SAINT CHAMP CHATONOD ,1300,1341,82,45.783333,5.733333,1.81
+ Saint-Cyr-sur-Menthon ,SAINT CYR SUR MENTHON,1380,1343,82,46.266667,4.983333,1.23
+ Saint-Denis-lès-Bourg ,SAINT DENIS LES BOURG,1000,1344,82,46.2,5.2,1
+ Saint-Denis-en-Bugey ,SAINT DENIS EN BUGEY,1500,1345,82,45.95,5.333333,0.8
+ Saint-Didier-d'Aussiat ,SAINT DIDIER D AUSSIAT,1340,1346,82,46.3,5.066667,1.33
+ Saint-Didier-de-Formans ,SAINT DIDIER DE FORMANS,1600,1347,82,45.95,4.783333,1.91
+ Saint-Didier-sur-Chalaronne ,SAINT DIDIER SUR CHALARONNE,1140,1348,82,46.166667,4.816667,1.8
+ Saint-Éloi ,SAINT ELOI ,1800,1349,82,45.933333,5.15,0.9
+ Saint-Étienne-du-Bois ,SAINT ETIENNE DU BOIS,1370,1350,82,46.283333,5.283333,1.21
+ Saint-Étienne-sur-Chalaronne ,SAINT ETIENNE SUR CHALARONNE,1140,1351,82,46.15,4.866667,1.63
+ Saint-Étienne-sur-Reyssouze ,SAINT ETIENNE SUR REYSSOUZE,1190,1352,82,46.4,5,1.91
+ Sainte-Euphémie ,SAINTE EUPHEMIE ,1600,1353,82,45.966667,4.783333,1.91
+ Saint-Genis-Pouilly ,SAINT GENIS POUILLY ,1630,1354,82,46.25,6.016667,2.29
+ Saint-Genis-sur-Menthon ,SAINT GENIS SUR MENTHON,1380,1355,82,46.283333,5.016667,1.34
+ Saint-Georges-sur-Renon ,SAINT GEORGES SUR RENON,1400,1356,82,46.1,5.033333,1.06
+ Saint-Germain-de-Joux ,SAINT GERMAIN DE JOUX,1130,1357,82,46.183333,5.733333,1.33
+ Saint-Germain-les-Paroisses ,SAINT GERMAIN LES PAROISSES,1300,1358,82,45.766667,5.616667,1.91
+ Saint-Germain-sur-Renon ,SAINT GERMAIN SUR RENON,1240,1359,82,46.083333,5.05,1.09
+ Saint-Jean-de-Gonville ,SAINT JEAN DE GONVILLE,1630,1360,82,46.216667,5.95,2.06
+ Saint-Jean-de Niost ,SAINT JEAN DE NIOST,1800,1361,82,45.833333,5.216667,1.51
+ Saint-Jean-de-Thurigneux ,SAINT JEAN DE THURIGNEUX,1390,1362,82,45.95,4.883333,1.57
+ Saint-Jean-sur-Reyssouze ,SAINT JEAN SUR REYSSOUZE,1560,1364,82,46.4,5.066667,1.91
+ Saint-Jean-sur-Veyle ,SAINT JEAN SUR VEYLE,1290,1365,82,46.25,4.916667,1.46
+ Sainte-Julie ,SAINTE JULIE ,1150,1366,82,45.883333,5.283333,1.21
+ Saint-Julien-sur-Reyssouze ,SAINT JULIEN SUR REYSSOUZE,1560,1367,82,46.4,5.116667,1.91
+ Saint-Julien-sur-Veyle ,SAINT JULIEN SUR VEYLE,1540,1368,82,46.2,4.95,1.35
+ Saint-Laurent-sur-Saône ,SAINT LAURENT SUR SAONE,1620,1370,82,46.3,4.833333,1.74
+ Saint-Martin-de-Bavel ,SAINT MARTIN DE BAVEL,1510,1372,82,45.85,5.683333,1.41
+ Saint-Martin-du-Frêne ,SAINT MARTIN DU FRENE,1430,1373,82,46.133333,5.55,0.83
+ Saint-Martin-du-Mont ,SAINT MARTIN DU MONT,1160,1374,82,46.1,5.333333,0.94
+ Saint-Martin-le-Châtel ,SAINT MARTIN LE CHATEL,1310,1375,82,46.283333,5.116667,1.21
+ Saint-Maurice-de-Beynost ,SAINT MAURICE DE BEYNOST,1700,1376,82,45.833333,4.966667,1.51
+ Saint-Maurice-de-Gourdans ,SAINT MAURICE DE GOURDANS,1800,1378,82,45.816667,5.2,1.61
+ Saint-Maurice-de-Rémens ,SAINT MAURICE DE REMENS,1500,1379,82,45.95,5.283333,1.6
+ Saint-Nizier-le-Bouchoux ,SAINT NIZIER LE BOUCHOUX,1560,1380,82,46.45,5.15,2.21
+ Saint-Nizier-le-Désert ,SAINT NIZIER LE DESERT,1320,1381,82,46.05,5.15,1.42
+ Sainte-Olive ,SAINTE OLIVE ,1330,1382,82,46.016667,4.933333,1.4
+ Saint-Paul-de-Varax ,SAINT PAUL DE VARAX,1240,1383,82,46.1,5.133333,0.72
+ Saint-Rambert-en-Bugey ,SAINT RAMBERT EN BUGEY,1230,1384,82,45.95,5.433333,0.88
+ Saint-Rémy ,SAINT REMY ,1310,1385,82,46.183333,5.166667,1.47
+ Saint-Sorlin-en-Bugey ,SAINT SORLIN EN BUGEY,1150,1386,82,45.883333,5.366667,1.21
+ Saint-Trivier-de-Courtes ,SAINT TRIVIER DE COURTES,1560,1388,82,46.466667,5.083333,2.31
+ Saint-Trivier-sur-Moignans ,SAINT TRIVIER SUR MOIGNANS,1990,1389,82,46.066667,4.9,1.51
+ Saint-Vulbas ,SAINT VULBAS ,1150,1390,82,45.833333,5.283333,1.51
+ Salavre ,SALAVRE ,1270,1391,82,46.366667,5.35,1.71
+ Samognat ,SAMOGNAT ,1580,1392,82,46.25,5.583333,1.38
+ Sandrans ,SANDRANS ,1400,1393,82,46.066667,4.983333,1.23
+ Sault-Brénaz ,SAULT BRENAZ ,1150,1396,82,45.85,5.416667,1.41
+ Sauverny ,SAUVERNY ,1220,1397,82,46.316667,6.116667,2.63
+Savigneux, ,1480,1398,82,46,4.85,2.19
+ Ségny ,SEGNY ,1170,1399,82,46.3,6.083333,2.52
+ Seillonnaz ,SEILLONNAZ ,1470,1400,82,45.8,5.483333,1.71
+ Sergy ,SERGY ,1630,1401,82,46.25,6,2.23
+ Sermoyer ,SERMOYER ,1190,1402,82,46.5,4.983333,2.51
+ Serrières-sur-Ain ,SERRIERES SUR AIN ,1450,1404,82,46.15,5.45,0.68
+ Servas ,SERVAS ,1240,1405,82,46.133333,5.166667,0.69
+ Servignat ,SERVIGNAT ,1560,1406,82,46.433333,5.066667,2.11
+ Simandre-sur-Suran ,SIMANDRE SUR SURAN ,1250,1408,82,46.216667,5.416667,0.8
+ Songieu ,SONGIEU ,1260,1409,82,45.966667,5.7,1.21
+ Sonthonnax-la-Montagne ,SONTHONNAX LA MONTAGNE ,1580,1410,82,46.233333,5.533333,0.91
+ Souclin ,SOUCLIN ,1150,1411,82,45.866667,5.416667,1.31
+ Sulignat ,SULIGNAT ,1400,1412,82,46.166667,4.966667,1.29
+ Surjoux ,SURJOUX ,1420,1413,82,46.016667,5.8,1.55
+ Sutrieu ,SUTRIEU ,1260,1414,82,45.95,5.65,1.04
+ Talissieu ,TALISSIEU ,1510,1415,82,45.866667,5.716667,1.49
+ Tenay ,TENAY ,1230,1416,82,45.916667,5.5,1
+ Thézillieu ,THEZILLIEU ,1110,1417,82,45.883333,5.6,1.28
+ Thil ,THIL ,1120,1418,82,45.816667,5.016667,1.61
+ Thoissey ,THOISSEY ,1140,1420,82,46.166667,4.8,1.85
+ Torcieu ,TORCIEU ,1230,1421,82,45.916667,5.4,1.56
+ Tossiat ,TOSSIAT ,1250,1422,82,46.133333,5.316667,1.44
+ Toussieux ,TOUSSIEUX ,1600,1423,82,45.966667,4.833333,1.74
+ Tramoyes ,TRAMOYES ,1390,1424,82,45.866667,4.966667,1.7
+ La Tranclière ,LA TRANCLIERE ,1160,1425,82,46.116667,5.266667,1.73
+ Trévoux ,TREVOUX ,1600,1427,82,45.933333,4.766667,1.97
+ Valeins ,VALEINS ,1140,1428,82,46.116667,4.866667,1.63
+ Vandeins ,VANDEINS ,1660,1429,82,46.216667,5.083333,0.89
+ Varambon ,VARAMBON ,1160,1430,82,46.033333,5.316667,0.74
+ Vaux-en-Bugey ,VAUX EN BUGEY ,1150,1431,82,45.916667,5.35,1
+ Verjon ,VERJON ,1270,1432,82,46.35,5.35,1.61
+ Vernoux ,VERNOUX ,1560,1433,82,46.483333,5.116667,2.41
+ Versailleux ,VERSAILLEUX ,1330,1434,82,45.983333,5.1,1.59
+ Vesancy ,VESANCY ,1170,1436,82,46.35,6.083333,2.52
+ Vescours ,VESCOURS ,1560,1437,82,46.466667,5.033333,2.31
+ Vésines ,VESINES ,1570,1439,82,46.35,4.866667,1.63
+ Veyziat ,VEYZIAT ,1100,1440,82,46.283333,5.633333,1.21
+ Vieu-d'Izenave ,VIEU D IZENAVE ,1430,1441,82,46.083333,5.533333,0.64
+ Vieu ,VIEU ,1260,1442,82,45.9,5.683333,1.17
+ Villars-les-Dombes ,VILLARS LES DOMBES ,1330,1443,82,46,5.016667,1.12
+ Villebois ,VILLEBOIS ,1150,1444,82,45.85,5.433333,1.54
+ Villemotier ,VILLEMOTIER ,1270,1445,82,46.35,5.316667,1.61
+ Villereversure ,VILLEREVERSURE ,1250,1447,82,46.183333,5.383333,0.6
+ Villes ,VILLES ,1200,1448,82,46.083333,5.783333,1.5
+ Viriat ,VIRIAT ,1440,1451,82,46.25,5.216667,1.01
+ Virieu-le-Grand ,VIRIEU LE GRAND ,1510,1452,82,45.85,5.65,1.41
+ Virieu-le-Petit ,VIRIEU LE PETIT ,1260,1453,82,45.9,5.716667,1.44
+ Virignin ,VIRIGNIN ,1300,1454,82,45.716667,5.716667,2.21
+ Volognat ,VOLOGNAT ,1460,1455,82,46.183333,5.516667,1.45
+ Vongnes ,VONGNES ,1350,1456,82,45.816667,5.716667,1.61
+ Vonnas ,VONNAS ,1540,1457,82,46.216667,5,1.17
+ Vouvray ,VOUVRAY ,1200,1458,82,46.116667,5.783333,1.5
+ La Valbonne ,LA VALBONNE ,1360,1909,82,45.85,5.133333,1.41
+ Chânes ,CHANES ,1120,1910,82,45.85,5.15,2.17
+ Marfoz ,MARFOZ ,1800,1911,82,45.883333,5.15,1.21
+ Le Mas Rillier ,LE MAS RILLIER ,1700,1912,82,45.833333,4.95,1.51
+ Abbécourt ,ABBECOURT ,2300,2001,22,49.6,3.183333,1.5
+ Achery ,ACHERY ,2800,2002,22,49.683333,3.383333,0.63
+ Acy ,ACY ,2200,2003,22,49.35,3.416667,1.65
+ Agnicourt-et-Séchelles ,AGNICOURT ET SECHELLES ,2340,2004,22,49.716667,3.95,1.84
+ Aguilcourt ,AGUILCOURT ,2190,2005,22,49.4,3.966667,1.92
+ Aisonville-et-Bernoville ,AISONVILLE ET BERNOVILLE ,2110,2006,22,49.933333,3.533333,1.59
+ Aizelles ,AIZELLES ,2820,2007,22,49.483333,3.816667,1.26
+ Alaincourt ,ALAINCOURT ,2240,2009,22,49.75,3.366667,1.04
+ Allemant ,ALLEMANT ,2320,2010,22,49.466667,3.45,1.2
+ Ambleny ,AMBLENY ,2290,2011,22,49.383333,3.183333,1.5
+ Ambrief ,AMBRIEF ,2200,2012,22,49.316667,3.4,1.5
+ Amifontaine ,AMIFONTAINE ,2190,2013,22,49.483333,3.916667,1.7
+ Amigny-Rouy ,AMIGNY ROUY ,2700,2014,22,49.6,3.3,1.33
+ Ancienville ,ANCIENVILLE ,2600,2015,22,49.216667,3.216667,1.36
+ Andelain ,ANDELAIN ,2800,2016,22,49.633333,3.366667,0.91
+ Anguilcourt-le-Sart ,ANGUILCOURT LE SART ,2800,2017,22,49.683333,3.433333,1.02
+ Anizy-le-Château ,ANIZY LE CHATEAU ,2320,2018,22,49.5,3.45,0.36
+ Annois ,ANNOIS ,2480,2019,22,49.716667,3.166667,1.58
+ Any-Martin-Rieux ,ANY MARTIN RIEUX ,2500,2020,22,49.883333,4.2165,-1
+ Archon ,ARCHON ,2360,2021,22,49.741667,4.116667,-1
+ Arcy-Sainte-Restitue ,ARCY SAINTE RESTITUE ,2130,2022,22,49.25,3.466667,1.33
+ Armentières-sur-Ourcq ,ARMENTIERES SUR OURCQ ,2210,2023,22,49.183333,3.383333,1.5
+ Arrancy ,ARRANCY ,2860,2024,22,49.483333,3.75,1.87
+ Artemps ,ARTEMPS ,2480,2025,22,49.766667,3.183333,1.5
+ Artonges ,ARTONGES ,2330,2026,22,48.933333,3.55,2.53
+ Assis-sur-Serre ,ASSIS SUR SERRE ,2270,2027,22,49.683333,3.566667,0.56
+ Athies-sous-Laon ,ATHIES SOUS LAON ,2840,2028,22,49.566667,3.683333,1.27
+ Attilly ,ATTILLY ,2490,2029,22,49.85,3.166667,1.58
+ Aubencheul-aux-Bois ,AUBENCHEUL AUX BOIS ,2420,2030,22,50.033333,3.266667,2
+ Aubenton ,AUBENTON ,2500,2031,22,49.833333,4.2,2.93
+ Aubigny-aux-Kaisnes ,AUBIGNY AUX KAISNES ,2590,2032,22,49.783333,3.116667,1.8
+ Aubigny-en-Laonnois ,AUBIGNY EN LAONNOIS ,2820,2033,22,49.5,3.8,1.19
+ Audignicourt ,AUDIGNICOURT ,2300,2034,22,49.483333,3.133333,1.74
+ Audigny ,AUDIGNY ,2120,2035,22,49.85,3.65,1.24
+ Augy ,AUGY ,2220,2036,22,49.333333,3.516667,0.88
+ Aulnois-sous-Laon ,AULNOIS SOUS LAON ,2000,2037,22,49.616667,3.6,1.15
+ Les Autels ,LES AUTELS ,2360,2038,22,49.766667,4.2257,-1
+ Autremencourt ,AUTREMENCOURT ,2250,2039,22,49.7,3.8,1.19
+ Autreppes ,AUTREPPES ,2580,2040,22,49.9,3.85,1.45
+ Autreville ,AUTREVILLE ,2300,2041,22,49.583333,3.233333,1.29
+ Azy-sur-Marne ,AZY SUR MARNE ,2400,2042,22,49,3.366667,2.26
+ Bagneux ,BAGNEUX ,2290,2043,22,49.466667,3.283333,1.86
+ Bancigny ,BANCIGNY ,2140,2044,22,49.8,4.016667,2.13
+ Barbonval ,BARBONVAL ,2160,2045,22,49.35,3.666667,0.96
+ Barenton-Bugny ,BARENTON BUGNY ,2000,2046,22,49.633333,3.65,1.73
+ Barenton-Cel ,BARENTON CEL ,2000,2047,22,49.65,3.633333,1.79
+ Barenton-sur-Serre ,BARENTON SUR SERRE ,2270,2048,22,49.666667,3.683333,1.38
+ Barzy-en-Thiérache ,BARZY EN THIERACHE ,2170,2050,22,50.033333,3.75,2
+ Barzy-sur-Marne ,BARZY SUR MARNE ,2850,2051,22,49.083333,3.55,1.91
+ Bassoles-Aulers ,BASSOLES AULERS ,2380,2052,22,49.533333,3.383333,1.39
+ Baulne-en-Brie ,BAULNE EN BRIE ,2330,2053,22,48.983333,3.616667,2.33
+ Beaumé ,BEAUME ,2500,2055,22,49.833333,4.15,2.72
+ Beaumont-en-Beine ,BEAUMONT EN BEINE ,2300,2056,22,49.7,3.133333,1.95
+ Beaurevoir ,BEAUREVOIR ,2110,2057,22,50,3.3,1.86
+ Beaurieux ,BEAURIEUX ,2160,2058,22,49.4,3.733333,0.9
+ Beautor ,BEAUTOR ,2800,2059,22,49.65,3.333333,1.41
+ Beauvois-en-Vermandois ,BEAUVOIS EN VERMANDOIS ,2590,2060,22,49.816667,3.1,1.87
+ Belleau ,BELLEAU ,2400,2062,22,49.1,3.3,1.85
+ Bellenglise ,BELLENGLISE ,2420,2063,22,49.916667,3.25,1.52
+ Belleu ,BELLEU ,2200,2064,22,49.366667,3.333333,0.85
+ Bellicourt ,BELLICOURT ,2420,2065,22,49.95,3.233333,1.65
+ Benay ,BENAY ,2440,2066,22,49.75,3.316667,1.78
+ Bergues-sur-Sambre ,BERGUES SUR SAMBRE ,2450,2067,22,50.033333,3.716667,2
+ Berlise ,BERLISE ,2340,2069,22,49.666667,4.116667,2.57
+ Bernot ,BERNOT ,2120,2070,22,49.866667,3.5,1.8
+ Berny-Rivière ,BERNY RIVIERE ,2290,2071,22,49.416667,3.15,1.65
+ Berrieux ,BERRIEUX ,2820,2072,22,49.483333,3.85,1.41
+ Berry-au-Bac ,BERRY AU BAC ,2190,2073,22,49.4,3.9,1.66
+ Bertaucourt-Épourdon ,BERTAUCOURT EPOURDON ,2800,2074,22,49.616667,3.383333,1.08
+ Berthenicourt ,BERTHENICOURT ,2240,2075,22,49.766667,3.383333,0.9
+ Bertricourt ,BERTRICOURT ,2190,2076,22,49.383333,4,2.06
+ Berzy-le-Sec ,BERZY LE SEC ,2200,2077,22,49.333333,3.316667,0.92
+ Besmé ,BESME ,2300,2078,22,49.533333,3.166667,1.58
+ Besmont ,BESMONT ,2500,2079,22,49.833333,4.116667,2.57
+ Besny-et-Loizy ,BESNY ET LOIZY ,2870,2080,22,49.6,3.583333,1.32
+ Béthancourt-en-Vaux ,BETHANCOURT EN VAUX ,2300,2081,22,49.616667,3.15,1.65
+ Beugneux ,BEUGNEUX ,2210,2082,22,49.233333,3.416667,1.3
+ Beuvardes ,BEUVARDES ,2130,2083,22,49.15,3.483333,1.64
+ Bézu-le-Guéry ,BEZU LE GUERY ,2310,2084,22,49.016667,3.233333,2.19
+ Bézu-Saint-Germain ,BEZU SAINT GERMAIN ,2400,2085,22,49.1,3.4,1.85
+ Bichancourt ,BICHANCOURT ,2300,2086,22,49.583333,3.216667,1.36
+ Bieuxy ,BIEUXY ,2290,2087,22,49.45,3.266667,1.47
+ Bièvres ,BIEVRES ,2860,2088,22,49.5,3.716667,1.12
+ Billy-sur-Aisne ,BILLY SUR AISNE ,2200,2089,22,49.366667,3.383333,1.08
+ Billy-sur-Ourcq ,BILLY SUR OURCQ ,2210,2090,22,49.216667,3.3,1.36
+ Blanzy-lès-Fismes ,BLANZY LES FISMES ,2160,2091,22,49.333333,3.666667,1.12
+ Blérancourt ,BLERANCOURT ,2300,2093,22,49.516667,3.15,1.65
+ Blesmes ,BLESMES ,2400,2094,22,49.033333,3.45,2.12
+ Bohain-en-Vermandois ,BOHAIN EN VERMANDOIS ,2110,2095,22,49.983333,3.45,1.79
+ Bois-lès-Pargny ,BOIS LES PARGNY ,2270,2096,22,49.716667,3.65,0.84
+ Boncourt ,BONCOURT ,2350,2097,22,49.616667,3.95,1.99
+ Bonneil ,BONNEIL ,2400,2098,22,49,3.35,2.26
+ Bonnesvalyn ,BONNESVALYN ,2400,2099,22,49.116667,3.316667,1.78
+ Bony ,BONY ,2420,2100,22,49.983333,3.216667,1.79
+ Bosmont-sur-Serre ,BOSMONT SUR SERRE ,2250,2101,22,49.733333,3.866667,1.48
+ Boué ,BOUE ,2450,2103,22,50.016667,3.7,1.93
+ Bouffignereux ,BOUFFIGNEREUX ,2160,2104,22,49.366667,3.85,2.01
+ Bouresches ,BOURESCHES ,2400,2105,22,49.066667,3.3,1.98
+ Bourg-et-Comin ,BOURG ET COMIN ,2160,2106,22,49.4,3.65,1.05
+ Bourguignon-sous-Coucy ,BOURGUIGNON SOUS COUCY ,2300,2107,22,49.55,3.166667,1.58
+ La Bouteille ,LA BOUTEILLE ,2140,2109,22,49.866667,3.966667,1.92
+ Braine ,BRAINE ,2220,2110,22,49.333333,3.533333,0.88
+ Brancourt-en-Laonnois ,BRANCOURT EN LAONNOIS ,2320,2111,22,49.516667,3.416667,0.78
+ Brancourt-le-Grand ,BRANCOURT LE GRAND ,2110,2112,22,49.966667,3.383333,1.72
+ Branges ,BRANGES ,2130,2113,22,49.266667,3.5,1.16
+ Brasles ,BRASLES ,2400,2114,22,49.05,3.433333,2.05
+ Braye-en-Laonnois ,BRAYE EN LAONNOIS ,2000,2115,22,49.433333,3.616667,1.69
+ Braye-en-Thiérache ,BRAYE EN THIERACHE ,2140,2116,22,49.783333,3.966667,1.92
+ Bray-Saint-Christophe ,BRAY SAINT CHRISTOPHE ,2480,2117,22,49.766667,3.15,1.65
+ Braye ,BRAYE ,2880,2118,22,49.433333,3.366667,0.7
+ Brécy ,BRECY ,2210,2119,22,49.15,3.433333,1.71
+ Brenelle ,BRENELLE ,2220,2120,22,49.366667,3.533333,0.75
+ Brény ,BRENY ,2210,2121,22,49.183333,3.35,1.5
+ Brissay-Choigny ,BRISSAY CHOIGNY ,2240,2123,22,49.716667,3.366667,1.32
+ Brumetz ,BRUMETZ ,2810,2125,22,49.1,3.15,1.85
+ Brunehamel ,BRUNEHAMEL ,2360,2126,22,49.766667,4.183333,2.86
+ Bruyères-sur-Fère ,BRUYERES SUR FERE ,2130,2127,22,49.183333,3.433333,1.57
+ Bruyères-et-Montbérault ,BRUYERES ET MONTBERAULT ,2860,2128,22,49.516667,3.666667,0.62
+ Bruys ,BRUYS ,2220,2129,22,49.266667,3.566667,1.16
+ Bucilly ,BUCILLY ,2500,2130,22,49.883333,4.083333,2.42
+ Bucy-le-Long ,BUCY LE LONG ,2880,2131,22,49.4,3.383333,0.63
+ Bucy-lès-Cerny ,BUCY LES CERNY ,2870,2132,22,49.583333,3.516667,0.56
+ Bucy-lès-Pierrepont ,BUCY LES PIERREPONT ,2350,2133,22,49.65,3.9,1.62
+ Buire ,BUIRE ,2500,2134,22,49.9,4.05,2.28
+ Buironfosse ,BUIRONFOSSE ,2620,2135,22,49.966667,3.833333,1.72
+ Burelles ,BURELLES ,2140,2136,22,49.783333,3.9,1.62
+ Bussiares ,BUSSIARES ,2810,2137,22,49.083333,3.25,1.91
+ Buzancy ,BUZANCY ,2200,2138,22,49.316667,3.35,0.95
+ Caillouël-Crépigny ,CAILLOUEL CREPIGNY ,2300,2139,22,49.616667,3.15,1.65
+ Castres ,CASTRES ,2680,2142,22,49.8,3.233333,1.29
+ Le Catelet ,LE CATELET ,2420,2143,22,50,3.25,1.86
+ Caulaincourt ,CAULAINCOURT ,2490,2144,22,49.866667,3.1,1.87
+ Caumont ,CAUMONT ,2300,2145,22,49.616667,3.183333,1.5
+ Celles-lès-Condé ,CELLES LES CONDE ,2330,2146,22,49.016667,3.566667,2.19
+ Celles-sur-Aisne ,CELLES SUR AISNE ,2370,2148,22,49.416667,3.483333,0.84
+ Cerizy ,CERIZY ,2240,2149,22,49.75,3.333333,1.58
+ Cerny-en-Laonnois ,CERNY EN LAONNOIS ,2860,2150,22,49.45,3.666667,0.93
+ Cerny-lès-Bucy ,CERNY LES BUCY ,2870,2151,22,49.583333,3.533333,0.35
+ Cerseuil ,CERSEUIL ,2220,2152,22,49.333333,3.516667,0.88
+ Cessières ,CESSIERES ,2320,2153,22,49.566667,3.483333,1.62
+ Chacrise ,CHACRISE ,2200,2154,22,49.3,3.4,1.65
+ Chaillevois ,CHAILLEVOIS ,2000,2155,22,49.516667,3.516667,0.9
+ Chalandry ,CHALANDRY ,2270,2156,22,49.683333,3.633333,0.61
+ Chambry ,CHAMBRY ,2000,2157,22,49.6,3.65,1.39
+ Chamouille ,CHAMOUILLE ,2860,2158,22,49.466667,3.666667,0.61
+ Champs ,CHAMPS ,2670,2159,22,49.533333,3.25,1.21
+ Chaourse ,CHAOURSE ,2340,2160,22,49.7,4,2.06
+ La Chapelle-Monthodon ,LA CHAPELLE MONTHODON ,2330,2161,22,49.016667,3.633333,2.19
+ La Chapelle-sur-Chézy ,LA CHAPELLE SUR CHEZY,2570,2162,22,48.95,3.383333,2.46
+ Le Charmel ,LE CHARMEL ,2850,2164,22,49.116667,3.55,2.06
+ Charmes ,CHARMES ,2800,2165,22,49.65,3.383333,0.63
+ Chartèves ,CHARTEVES ,2400,2166,22,49.083333,3.5,1.91
+ Chassemy ,CHASSEMY ,2370,2167,22,49.383333,3.5,0.84
+ Château-Thierry ,CHATEAU THIERRY ,2400,2168,22,49.05,3.4,2.05
+ Châtillon-lès-Sons ,CHATILLON LES SONS ,2270,2169,22,49.75,3.683333,1.49
+ Châtillon-sur-Oise ,CHATILLON SUR OISE ,2240,2170,22,49.783333,3.4,0.97
+ Chaudardes ,CHAUDARDES ,2160,2171,22,49.383333,3.783333,1.12
+ Chaudun ,CHAUDUN ,2200,2172,22,49.316667,3.266667,1.25
+ Chauny ,CHAUNY ,2300,2173,22,49.616667,3.216667,1.36
+ Chavignon ,CHAVIGNON ,2000,2174,22,49.483333,3.516667,1.18
+ Chavigny ,CHAVIGNY ,2880,2175,22,49.433333,3.3,1.91
+ Chavonne ,CHAVONNE ,2370,2176,22,49.4,3.566667,1.28
+ Chéret ,CHERET ,2860,2177,22,49.516667,3.683333,0.7
+ Chermizy-Ailles ,CHERMIZY AILLES ,2860,2178,22,49.466667,3.733333,1.58
+ Chéry-Chartreuve ,CHERY CHARTREUVE ,2220,2179,22,49.266667,3.616667,1.52
+ Chéry-lès-Pouilly ,CHERY LES POUILLY ,2000,2180,22,49.65,3.6,1.61
+ Chéry-lès-Rozoy ,CHERY LES ROZOY ,2360,2181,22,49.716667,4.083333,2.42
+ Chevennes ,CHEVENNES ,2250,2182,22,49.816667,3.733333,1.43
+ Chevregny ,CHEVREGNY ,2000,2183,22,49.466667,3.583333,1.09
+ Chevresis-Monceau ,CHEVRESIS MONCEAU ,2270,2184,22,49.75,3.566667,0.86
+ Chézy-en-Orxois ,CHEZY EN ORXOIS ,2810,2185,22,49.133333,3.183333,1.71
+ Chézy-sur-Marne ,CHEZY SUR MARNE ,2570,2186,22,48.983333,3.366667,2.33
+ Chierry ,CHIERRY ,2400,2187,22,49.033333,3.433333,2.12
+ Chigny ,CHIGNY ,2120,2188,22,49.916667,3.766667,1.52
+ Chivres-en-Laonnois ,CHIVRES EN LAONNOIS ,2350,2189,22,49.633333,3.85,1.41
+ Chivres-Val ,CHIVRES VAL ,2880,2190,22,49.4,3.433333,1.26
+ Chivy-lès-Étouvelles ,CHIVY LES ETOUVELLES ,2000,2191,22,49.516667,3.583333,0.39
+ Chouy ,CHOUY ,2210,2192,22,49.2,3.25,1.77
+ Cierges ,CIERGES ,2130,2193,22,49.166667,3.6,1.57
+ Cilly ,CILLY ,2250,2194,22,49.733333,3.833333,1.33
+ Ciry-Salsogne ,CIRY SALSOGNE ,2220,2195,22,49.366667,3.466667,1.41
+ Clacy-et-Thierret ,CLACY ET THIERRET ,2000,2196,22,49.55,3.566667,0.17
+ Clairfontaine ,CLAIRFONTAINE ,2260,2197,22,49.983333,3.983333,1.99
+ Clamecy ,CLAMECY ,2880,2198,22,49.433333,3.366667,0.7
+ Clastres ,CLASTRES ,2440,2199,22,49.733333,3.233333,2.31
+ Clermont-les-Fermes ,CLERMONT LES FERMES ,2340,2200,22,49.666667,3.95,1.84
+ Coeuvres-et-Valsery ,COEUVRES ET VALSERY ,2600,2201,22,49.333333,3.15,1.65
+ Cohan ,COHAN ,2130,2202,22,49.216667,3.65,1.36
+ Coincy ,COINCY ,2210,2203,22,49.166667,3.416667,1.57
+ Coingt ,COINGT ,2360,2204,22,49.783333,4.083333,2.42
+ Colligis-Crandelain ,COLLIGIS CRANDELAIN ,2860,2205,22,49.483333,3.65,0.53
+ Colonfay ,COLONFAY ,2120,2206,22,49.85,3.7,1.24
+ Commenchon ,COMMENCHON ,2300,2207,22,49.633333,3.166667,1.58
+ Concevreux ,CONCEVREUX ,2160,2208,22,49.383333,3.783333,1.12
+ Condé-en-Brie ,CONDE EN BRIE ,2330,2209,22,49,3.55,2.26
+ Condé-sur-Aisne ,CONDE SUR AISNE ,2370,2210,22,49.4,3.45,1.69
+ Condé-sur-Suippe ,CONDE SUR SUIPPE ,2190,2211,22,49.416667,3.95,1.84
+ Condren ,CONDREN ,2700,2212,22,49.616667,3.283333,1.07
+ Connigis ,CONNIGIS ,2330,2213,22,49.033333,3.533333,2.12
+ Contescourt ,CONTESCOURT ,2680,2214,22,49.8,3.233333,1.29
+ Corbeny ,CORBENY ,2820,2215,22,49.466667,3.816667,1.26
+ Corcy ,CORCY ,2600,2216,22,49.25,3.216667,1.36
+ Coucy-lès-Eppes ,COUCY LES EPPES ,2840,2218,22,49.55,3.766667,1.13
+ Coucy-la-Ville ,COUCY LA VILLE ,2380,2219,22,49.533333,3.333333,0.85
+ Coupru ,COUPRU ,2310,2221,22,49.033333,3.266667,2.12
+ Courbes ,COURBES ,2800,2222,22,49.683333,3.45,1.37
+ Courboin ,COURBOIN ,2330,2223,22,49,3.5,2.26
+ Courchamps ,COURCHAMPS ,2810,2225,22,49.116667,3.266667,1.78
+ Courmelles ,COURMELLES ,2200,2226,22,49.35,3.316667,0.92
+ Courmont ,COURMONT ,2130,2227,22,49.15,3.566667,1.64
+ Courtemont-Varennes ,COURTEMONT VARENNES ,2850,2228,22,49.066667,3.55,1.98
+ Courtrizy-et-Fussigny ,COURTRIZY ET FUSSIGNY ,2820,2229,22,49.516667,3.8,1.19
+ Couvrelles ,COUVRELLES ,2220,2230,22,49.35,3.483333,1.04
+ Couvron-et-Aumencourt ,COUVRON ET AUMENCOURT ,2270,2231,22,49.65,3.516667,1.39
+ Coyolles ,COYOLLES ,2600,2232,22,49.233333,3.05,2.09
+ Cramaille ,CRAMAILLE ,2130,2233,22,49.233333,3.45,1.43
+ Craonne ,CRAONNE ,2160,2234,22,49.433333,3.783333,1.21
+ Craonnelle ,CRAONNELLE ,2160,2235,22,49.433333,3.766667,1.04
+ Crécy-au-Mont ,CRECY AU MONT ,2380,2236,22,49.483333,3.316667,1.07
+ Crécy-sur-Serre ,CRECY SUR SERRE ,2270,2237,22,49.7,3.616667,0.62
+ Crézancy ,CREZANCY ,2650,2239,22,49.05,3.5,2.05
+ Croix-Fonsommes ,CROIX FONSOMMES ,2110,2240,22,49.916667,3.4,1.52
+ La Croix-sur-Ourcq ,LA CROIX SUR OURCQ,2210,2241,22,49.166667,3.35,1.57
+ Crouy ,CROUY ,2880,2243,22,49.4,3.366667,0.73
+ Crupilly ,CRUPILLY ,2120,2244,22,49.916667,3.75,1.52
+ Cuffies ,CUFFIES ,2880,2245,22,49.416667,3.316667,1.54
+ Cugny ,CUGNY ,2480,2246,22,49.7,3.15,1.65
+ Cugny-lès-Crouttes ,CUGNY LES CROUTTES ,2210,2247,22,49.2,3.383333,1.43
+ Cuirieux ,CUIRIEUX ,2350,2248,22,49.683333,3.816667,1.26
+ Cuiry-Housse ,CUIRY HOUSSE ,2220,2249,22,49.3,3.483333,1.02
+ Cuiry-lès-Chaudardes ,CUIRY LES CHAUDARDES ,2160,2250,22,49.383333,3.766667,1.04
+ Cuissy-et-Geny ,CUISSY ET GENY ,2160,2252,22,49.416667,3.7,0.75
+ Cuisy-en-Almont ,CUISY EN ALMONT ,2200,2253,22,49.416667,3.25,1.79
+ Cutry ,CUTRY ,2600,2254,22,49.35,3.183333,1.5
+ Cys-la-Commune ,CYS LA COMMUNE ,2220,2255,22,49.4,3.566667,1.34
+ Dagny-Lambercy ,DAGNY LAMBERCY ,2140,2256,22,49.766667,4.033333,2.21
+ Dallon ,DALLON ,2680,2257,22,49.816667,3.233333,1.29
+ Dammard ,DAMMARD ,2470,2258,22,49.15,3.2,1.64
+ Dampleux ,DAMPLEUX ,2600,2259,22,49.25,3.15,1.65
+ Danizy ,DANIZY ,2800,2260,22,49.65,3.383333,0.63
+ Dercy ,DERCY ,2270,2261,22,49.7,3.683333,1.29
+ Deuillet ,DEUILLET ,2700,2262,22,49.633333,3.35,1.47
+ Dhuizel ,DHUIZEL ,2220,2263,22,49.366667,3.616667,1.43
+ Dizy-le-Gros ,DIZY LE GROS ,2340,2264,22,49.633333,4.016667,2.13
+ Dohis ,DOHIS ,2360,2265,22,49.75,4.133333,2.64
+ Dolignon ,DOLIGNON ,2360,2266,22,49.716667,4.083333,2.42
+ Dommiers ,DOMMIERS ,2600,2267,22,49.333333,3.216667,1.36
+ Domptin ,DOMPTIN ,2310,2268,22,49.016667,3.283333,2.19
+ Dorengt ,DORENGT ,2450,2269,22,49.966667,3.683333,1.72
+ Douchy ,DOUCHY ,2590,2270,22,49.766667,3.116667,1.8
+ Dravegny ,DRAVEGNY ,2130,2271,22,49.233333,3.633333,1.3
+ Droizy ,DROIZY ,2210,2272,22,49.283333,3.383333,1.31
+ Ébouleau ,EBOULEAU ,2350,2274,22,49.666667,3.866667,1.48
+ Effry ,EFFRY ,2500,2275,22,49.933333,4,2.06
+ Englancourt ,ENGLANCOURT ,2260,2276,22,49.916667,3.8,1.52
+ Épagny ,EPAGNY ,2290,2277,22,49.466667,3.25,1.34
+ Éparcy ,EPARCY ,2500,2278,22,49.866667,4.066667,2.35
+ Épaux-Bézu ,EPAUX BEZU ,2400,2279,22,49.1,3.35,1.85
+ Épieds ,EPIEDS ,2400,2280,22,49.1,3.45,1.85
+ L'Épine-aux-Bois ,L EPINE AUX BOIS,2540,2281,22,48.883333,3.45,2.74
+ Eppes ,EPPES ,2840,2282,22,49.55,3.733333,0.9
+ Erlon ,ERLON ,2250,2283,22,49.716667,3.716667,1.1
+ Erloy ,ERLOY ,2260,2284,22,49.9,3.816667,1.45
+ Escaufourt ,ESCAUFOURT ,59360,2285,22,50.05,3.483333,2.07
+ Esquéhéries ,ESQUEHERIES ,2170,2286,22,49.983333,3.75,1.79
+ Essigny-le-Grand ,ESSIGNY LE GRAND ,2690,2287,22,49.766667,3.283333,1.07
+ Essigny-le-Petit ,ESSIGNY LE PETIT ,2100,2288,22,49.9,3.366667,1.52
+ Essises ,ESSISES ,2570,2289,22,48.966667,3.416667,2.39
+ Essômes-sur-Marne ,ESSOMES SUR MARNE ,2400,2290,22,49.033333,3.366667,2.12
+ Estrées ,ESTREES ,2420,2291,22,49.966667,3.283333,1.72
+ Étampes-sur-Marne ,ETAMPES SUR MARNE ,2400,2292,22,49.033333,3.416667,2.12
+ Étaves-et-Bocquiaux ,ETAVES ET BOCQUIAUX ,2110,2293,22,49.933333,3.45,1.59
+ Étouvelles ,ETOUVELLES ,2000,2294,22,49.533333,3.583333,0.24
+ Étréaupont ,ETREAUPONT ,2580,2295,22,49.9,3.916667,1.7
+ Étreillers ,ETREILLERS ,2590,2296,22,49.816667,3.15,1.65
+ Étrépilly ,ETREPILLY ,2400,2297,22,49.083333,3.333333,1.91
+ Etreux ,ETREUX ,2510,2298,22,49.983333,3.65,1.79
+ Évergnicourt ,EVERGNICOURT ,2190,2299,22,49.433333,4.033333,2.21
+ Fargniers ,FARGNIERS ,2700,2300,22,49.65,3.316667,0.92
+ Faucoucourt ,FAUCOUCOURT ,2320,2301,22,49.533333,3.466667,0.7
+ Fayet ,FAYET ,2100,2303,22,49.866667,3.25,1.41
+ La Fère ,LA FERE ,2800,2304,22,49.666667,3.366667,0.7
+ Fère-en-Tardenois ,FERE EN TARDENOIS ,2130,2305,22,49.2,3.516667,1.43
+ La Ferté-Chevresis ,LA FERTE CHEVRESIS ,2270,2306,22,49.733333,3.566667,0.76
+ La Ferté-Milon ,LA FERTE MILON ,2460,2307,22,49.166667,3.116667,1.8
+ Festieux ,FESTIEUX ,2840,2309,22,49.516667,3.75,1.29
+ Fieulaine ,FIEULAINE ,2110,2310,22,49.883333,3.45,1.38
+ Filain ,FILAIN ,2000,2311,22,49.466667,3.55,1.14
+ La Flamengrie ,LA FLAMENGRIE ,2260,2312,22,50,3.916667,1.86
+ Flavy-le-Martel ,FLAVY LE MARTEL ,2520,2315,22,49.716667,3.2,1.43
+ Fluquières ,FLUQUIERES ,2590,2317,22,49.8,3.15,1.65
+ Folembray ,FOLEMBRAY ,2670,2318,22,49.55,3.283333,1.07
+ Fonsommes ,FONSOMMES ,2110,2319,22,49.9,3.4,1.45
+ Fontaine-lès-Clercs ,FONTAINE LES CLERCS ,2680,2320,22,49.8,3.216667,1.38
+ Fontaine-lès-Vervins ,FONTAINE LES VERVINS ,2140,2321,22,49.85,3.9,1.62
+ Fontaine-Notre-Dame ,FONTAINE NOTRE DAME ,2110,2322,22,49.883333,3.433333,1.38
+ Fontaine-Uterte ,FONTAINE UTERTE ,2110,2323,22,49.916667,3.366667,1.52
+ Fontenelle ,FONTENELLE ,2170,2324,22,50.033333,3.866667,2
+ Fontenelle-en-Brie ,FONTENELLE EN BRIE ,2540,2325,22,48.916667,3.483333,2.6
+ Fontenoy ,FONTENOY ,2290,2326,22,49.416667,3.2,1.43
+ Foreste ,FORESTE ,2590,2327,22,49.816667,3.1,1.87
+ Fossoy ,FOSSOY ,2650,2328,22,49.05,3.483333,2.05
+ Fourdrain ,FOURDRAIN ,2870,2329,22,49.6,3.466667,1.75
+ Francilly-Selency ,FRANCILLY SELENCY ,2760,2330,22,49.85,3.233333,1.29
+ Fresnes-en-Tardenois ,FRESNES EN TARDENOIS ,2130,2332,22,49.15,3.55,1.64
+ Fresnoy-le-Grand ,FRESNOY LE GRAND ,2230,2334,22,49.95,3.416667,1.65
+ Fressancourt ,FRESSANCOURT ,2800,2335,22,49.616667,3.416667,1.17
+ Frières-Faillouël ,FRIERES FAILLOUEL ,2700,2336,22,49.666667,3.25,1.42
+ Froidestrées ,FROIDESTREES ,2260,2337,22,49.933333,3.9,1.62
+ Froidmont-Cohartille ,FROIDMONT COHARTILLE ,2270,2338,22,49.683333,3.7,1.56
+ Gandelu ,GANDELU ,2810,2339,22,49.1,3.183333,1.85
+ Gauchy ,GAUCHY ,2430,2340,22,49.816667,3.266667,1.14
+ Gercy ,GERCY ,2140,2341,22,49.816667,3.866667,1.48
+ Gergny ,GERGNY ,2260,2342,22,49.916667,3.916667,1.7
+ Germaine ,GERMAINE ,2590,2343,22,49.783333,3.116667,1.8
+ Gernicourt ,GERNICOURT ,2160,2344,22,49.4,3.866667,2.25
+ Gibercourt ,GIBERCOURT ,2440,2345,22,49.733333,3.283333,1.07
+ Gizy ,GIZY ,2350,2346,22,49.6,3.766667,1.29
+ Gland ,GLAND ,2400,2347,22,49.05,3.466667,2.05
+ Glennes ,GLENNES ,2160,2348,22,49.35,3.716667,0.82
+ Goussancourt ,GOUSSANCOURT ,2130,2351,22,49.166667,3.666667,1.57
+ Grandlup-et-Fay ,GRANDLUP ET FAY ,2350,2353,22,49.666667,3.733333,1.71
+ Grandrieux ,GRANDRIEUX ,2360,2354,22,49.733333,4.183333,2.86
+ Gricourt ,GRICOURT ,2100,2355,22,49.883333,3.25,1.45
+ Grisolles ,GRISOLLES ,2210,2356,22,49.15,3.35,1.64
+ Gronard ,GRONARD ,2140,2357,22,49.783333,3.883333,1.55
+ Grougis ,GROUGIS ,2110,2358,22,49.933333,3.533333,1.59
+ Grugies ,GRUGIES ,2680,2359,22,49.8,3.266667,2.05
+ Guignicourt ,GUIGNICOURT ,2190,2360,22,49.433333,3.966667,1.92
+ Guise ,GUISE ,2120,2361,22,49.9,3.633333,1.45
+ Guivry ,GUIVRY ,2300,2362,22,49.65,3.116667,1.8
+ Guny ,GUNY ,2300,2363,22,49.516667,3.266667,1.69
+ Guyencourt ,GUYENCOURT ,2160,2364,22,49.35,3.833333,1.82
+ Hannapes ,HANNAPES ,2510,2366,22,49.966667,3.616667,1.72
+ Happencourt ,HAPPENCOURT ,2480,2367,22,49.783333,3.183333,1.5
+ Haramont ,HARAMONT ,2600,2368,22,49.283333,3.05,2.09
+ Harcigny ,HARCIGNY ,2140,2369,22,49.8,3.983333,1.99
+ Harly ,HARLY ,2100,2371,22,49.833333,3.316667,1.17
+ Hartennes-et-Taux ,HARTENNES ET TAUX ,2210,2372,22,49.266667,3.35,1.16
+ Hary ,HARY ,2140,2373,22,49.783333,3.933333,1.77
+ Le Haucourt ,LE HAUCOURT ,2420,2374,22,49.916667,3.283333,1.52
+ Hautevesnes ,HAUTEVESNES ,2810,2375,22,49.116667,3.233333,1.78
+ Hauteville ,HAUTEVILLE ,2120,2376,22,49.866667,3.516667,1.6
+ Haution ,HAUTION ,2140,2377,22,49.85,3.833333,1.33
+ La Hérie ,LA HERIE ,2500,2378,22,49.883333,4.05,2.28
+ Le Hérie-la-Viéville ,LE HERIE LA VIEVILLE,2120,2379,22,49.816667,3.633333,1.1
+ Hinacourt ,HINACOURT ,2440,2380,22,49.733333,3.283333,1.07
+ Hirson ,HIRSON ,2500,2381,22,49.916667,4.083333,2.42
+ Holnon ,HOLNON ,2760,2382,22,49.866667,3.216667,1.36
+ Homblières ,HOMBLIERES ,2720,2383,22,49.85,3.366667,1.24
+ Houry ,HOURY ,2140,2384,22,49.783333,3.85,1.41
+ Housset ,HOUSSET ,2250,2385,22,49.783333,3.7,1.48
+ Iron ,IRON ,2510,2386,22,49.95,3.666667,1.65
+ Itancourt ,ITANCOURT ,2240,2387,22,49.8,3.35,1.37
+ Iviers ,IVIERS ,2360,2388,22,49.783333,4.133333,2.64
+ Jaulgonne ,JAULGONNE ,2850,2389,22,49.083333,3.533333,1.91
+ Jeancourt ,JEANCOURT ,2490,2390,22,49.933333,3.15,1.65
+ Jeantes ,JEANTES ,2140,2391,22,49.8,4.05,2.28
+ Joncourt ,JONCOURT ,2420,2392,22,49.95,3.3,1.65
+ Jouaignes ,JOUAIGNES ,2220,2393,22,49.3,3.5,1.02
+ Jouy ,JOUY ,2370,2394,22,49.45,3.5,1.02
+ Jumencourt ,JUMENCOURT ,2380,2395,22,49.516667,3.35,0.78
+ Jumigny ,JUMIGNY ,2160,2396,22,49.416667,3.716667,0.82
+ Jussy ,JUSSY ,2480,2397,22,49.716667,3.233333,1.81
+ Juvigny ,JUVIGNY ,2880,2398,22,49.45,3.316667,1.61
+ Juvincourt-et-Damary ,JUVINCOURT ET DAMARY ,2190,2399,22,49.45,3.9,1.62
+ Laffaux ,LAFFAUX ,2880,2400,22,49.45,3.416667,0.9
+ Laigny ,LAIGNY ,2140,2401,22,49.85,3.866667,1.48
+ Lanchy ,LANCHY ,2590,2402,22,49.833333,3.083333,1.94
+ Landifay-et-Bertaignemont ,LANDIFAY ET BERTAIGNEMONT ,2120,2403,22,49.816667,3.6,1.1
+ Landouzy-la-Cour ,LANDOUZY LA COUR ,2140,2404,22,49.85,3.983333,1.99
+ Landouzy-la-Ville ,LANDOUZY LA VILLE ,2140,2405,22,49.866667,4.05,2.28
+ Landricourt ,LANDRICOURT ,2380,2406,22,49.5,3.366667,0.82
+ Laniscourt ,LANISCOURT ,2000,2407,22,49.55,3.55,0.36
+ Laon ,LAON ,2000,2408,22,49.566667,3.616667,0.72
+ Lappion ,LAPPION ,2150,2409,22,49.616667,3.966667,1.92
+ Largny-sur-Automne ,LARGNY SUR AUTOMNE ,2600,2410,22,49.266667,3.05,2.09
+ Latilly ,LATILLY ,2210,2411,22,49.15,3.316667,1.64
+ Launoy ,LAUNOY ,2210,2412,22,49.266667,3.4,1.22
+ Laval-en-Laonnois ,LAVAL EN LAONNOIS ,2860,2413,22,49.5,3.6,1.61
+ Lavaqueresse ,LAVAQUERESSE ,2450,2414,22,49.95,3.708333,1.65
+ Laversine ,LAVERSINE ,2600,2415,22,49.35,3.166667,1.58
+ Lemé ,LEME ,2140,2416,22,49.833333,3.766667,1.52
+ Lempire ,LEMPIRE ,2420,2417,22,49.983333,3.166667,1.79
+ Lerzy ,LERZY ,2260,2418,22,49.933333,3.866667,1.59
+ Leschelles ,LESCHELLES ,2170,2419,22,49.966667,3.766667,1.72
+ Lesdins ,LESDINS ,2100,2420,22,49.9,3.333333,1.45
+ Lesges ,LESGES ,2220,2421,22,49.3,3.5,1.02
+ Lesquielles-Saint-Germain ,LESQUIELLES SAINT GERMAIN ,2120,2422,22,49.933333,3.616667,1.59
+ Leuilly-sous-Coucy ,LEUILLY SOUS COUCY ,2380,2423,22,49.483333,3.333333,0.85
+ Leury ,LEURY ,2880,2424,22,49.433333,3.333333,1.16
+ Leuze ,LEUZE ,2500,2425,22,49.85,4.15,2.72
+ Levergies ,LEVERGIES ,2420,2426,22,49.933333,3.316667,1.59
+ Lhuys ,LHUYS ,2220,2427,22,49.283333,3.55,1.09
+ Licy-Clignon ,LICY CLIGNON ,2810,2428,22,49.1,3.266667,1.85
+ Lierval ,LIERVAL ,2860,2429,22,49.483333,3.616667,1.22
+ Liez ,LIEZ ,2700,2431,22,49.683333,3.283333,1.07
+ Limé ,LIME ,2220,2432,22,49.316667,3.55,0.95
+ Lislet ,LISLET ,2340,2433,22,49.683333,4.016667,2.13
+ Lizy ,LIZY ,2320,2434,22,49.516667,3.466667,0.5
+ Logny-lès-Aubenton ,LOGNY LES AUBENTON ,2500,2435,22,49.833333,4.2,2.93
+ Lombray ,LOMBRAY ,2300,2436,22,49.516667,3.116667,1.8
+ Longchamps ,LONGCHAMPS ,2120,2437,22,49.916667,3.566667,1.52
+ Longpont ,LONGPONT ,2600,2438,22,49.266667,3.216667,1.36
+ Lor ,LOR ,2190,2440,22,49.533333,4.05,2.28
+ Louâtre ,LOUATRE ,2600,2441,22,49.25,3.25,1.43
+ Loupeigne ,LOUPEIGNE ,2130,2442,22,49.25,3.533333,1.23
+ Lucy-le-Bocage ,LUCY LE BOCAGE ,2400,2443,22,49.05,3.283333,2.05
+ Lugny ,LUGNY ,2140,2444,22,49.783333,3.816667,1.26
+ Luzoir ,LUZOIR ,2500,2445,22,49.933333,3.966667,1.92
+ Ly-Fontaine ,LY FONTAINE ,2440,2446,22,49.716667,3.3,1
+ Maast-et-Violaine ,MAAST ET VIOLAINE ,2220,2447,22,49.283333,3.45,1.6
+ Mâchecourt ,MACHECOURT ,2350,2448,22,49.658333,3.841667,1.37
+ Macogny ,MACOGNY ,2470,2449,22,49.166667,3.233333,1.57
+ Macquigny ,MACQUIGNY ,2120,2450,22,49.883333,3.55,1.38
+ Magny-la-Fosse ,MAGNY LA FOSSE ,2420,2451,22,49.933333,3.283333,1.59
+ Maissemy ,MAISSEMY ,2490,2452,22,49.883333,3.2,1.43
+ Maizy ,MAIZY ,2160,2453,22,49.383333,3.733333,0.9
+ La Malmaison ,LA MALMAISON ,2190,2454,22,49.516667,3.983333,1.99
+ Malzy ,MALZY ,2120,2455,22,49.9,3.733333,1.45
+ Manicamp ,MANICAMP ,2300,2456,22,49.566667,3.166667,1.58
+ Marchais ,MARCHAIS ,2350,2457,22,49.583333,3.816667,1.26
+ Marchais-en-Brie ,MARCHAIS EN BRIE ,2540,2458,22,48.883333,3.483333,2.74
+ Marcy ,MARCY ,2720,2459,22,49.833333,3.4,1.34
+ Marcy-sous-Marle ,MARCY SOUS MARLE ,2250,2460,22,49.733333,3.733333,0.9
+ Marest-Dampcourt ,MAREST DAMPCOURT ,2300,2461,22,49.6,3.15,1.65
+ Mareuil-en-Dôle ,MAREUIL EN DOLE ,2130,2462,22,49.25,3.55,1.23
+ Marfontaine ,MARFONTAINE ,2140,2463,22,49.8,3.783333,1.32
+ Margival ,MARGIVAL ,2880,2464,22,49.433333,3.4,0.56
+ Marigny-en-Orxois ,MARIGNY EN ORXOIS ,2810,2465,22,49.066667,3.216667,1.98
+ Marizy-Sainte-Geneviève ,MARIZY SAINTE GENEVIEVE ,2470,2466,22,49.183333,3.2,1.5
+ Marizy-Saint-Mard ,MARIZY SAINT MARD ,2470,2467,22,49.183333,3.216667,1.5
+ Marle ,MARLE ,2250,2468,22,49.733333,3.766667,1.04
+ Marly-Gomont ,MARLY GOMONT ,2120,2469,22,49.9,3.8,1.83
+ Martigny ,MARTIGNY ,2500,2470,22,49.866667,4.133333,2.64
+ Martigny-Courpierre ,MARTIGNY COURPIERRE ,2860,2471,22,49.483333,3.683333,0.68
+ Mauregny-en-Haye ,MAUREGNY EN HAYE ,2820,2472,22,49.533333,3.8,1.29
+ Mayot ,MAYOT ,2800,2473,22,49.7,3.383333,0.89
+ Mennessis ,MENNESSIS ,2700,2474,22,49.7,3.266667,1.66
+ Menneville ,MENNEVILLE ,2190,2475,22,49.416667,4,2.06
+ Mennevret ,MENNEVRET ,2630,2476,22,49.983333,3.55,1.79
+ Mercin-et-Vaux ,MERCIN ET VAUX ,2200,2477,22,49.383333,3.283333,1.07
+ Merlieux-et-Fouquerolles ,MERLIEUX ET FOUQUEROLLES ,2000,2478,22,49.516667,3.5,1.12
+ Merval ,MERVAL ,2160,2479,22,49.35,3.7,0.82
+ Mesbrecourt-Richecourt ,MESBRECOURT RICHECOURT ,2270,2480,22,49.7,3.55,0.68
+ Mesnil-Saint-Laurent ,MESNIL SAINT LAURENT ,2720,2481,22,49.833333,3.35,1.17
+ Meurival ,MEURIVAL ,2160,2482,22,49.35,3.766667,1.04
+ Mézières-sur-Oise ,MEZIERES SUR OISE ,2240,2483,22,49.766667,3.4,0.9
+ Mézy-Moulins ,MEZY MOULINS ,2650,2484,22,49.066667,3.5,1.98
+ Missy-aux-Bois ,MISSY AUX BOIS ,2200,2485,22,49.333333,3.25,1.41
+ Missy-lès-Pierrepont ,MISSY LES PIERREPONT ,2350,2486,22,49.633333,3.8,1.19
+ Missy-sur-Aisne ,MISSY SUR AISNE ,2880,2487,22,49.383333,3.433333,1.48
+ Molain ,MOLAIN ,2110,2488,22,50.016667,3.516667,1.93
+ Molinchart ,MOLINCHART ,2000,2489,22,49.566667,3.533333,0.69
+ Monampteuil ,MONAMPTEUIL ,2000,2490,22,49.483333,3.566667,0.85
+ Monceau-lès-Leups ,MONCEAU LES LEUPS ,2270,2492,22,49.666667,3.483333,1.74
+ Monceau-le-Waast ,MONCEAU LE WAAST ,2840,2493,22,49.616667,3.7,1.87
+ Monceau-sur-Oise ,MONCEAU SUR OISE ,2120,2494,22,49.9,3.7,1.45
+ Mondrepuis ,MONDREPUIS ,2500,2495,22,49.966667,4.066667,2.35
+ Monnes ,MONNES ,2470,2496,22,49.15,3.216667,1.64
+ Montaigu ,MONTAIGU ,2820,2498,22,49.533333,3.833333,1.33
+ Montbavin ,MONTBAVIN ,2000,2499,22,49.533333,3.516667,0.83
+ Montbrehain ,MONTBREHAIN ,2110,2500,22,49.966667,3.35,1.72
+ Montchâlons ,MONTCHALONS ,2860,2501,22,49.516667,3.733333,1.6
+ Mont-d'Origny ,MONT D ORIGNY ,2390,2503,22,49.833333,3.483333,1.17
+ Montfaucon ,MONTFAUCON ,2540,2505,22,48.95,3.45,2.46
+ Montgobert ,MONTGOBERT ,2600,2506,22,49.3,3.15,1.65
+ Montgru-Saint-Hilaire ,MONTGRU SAINT HILAIRE ,2210,2507,22,49.183333,3.333333,1.5
+ Monthenault ,MONTHENAULT ,2860,2508,22,49.483333,3.666667,0.61
+ Monthiers ,MONTHIERS ,2400,2509,22,49.1,3.3,1.85
+ Monthurel ,MONTHUREL ,2330,2510,22,49.016667,3.55,2.19
+ Montigny-en-Arrouaise ,MONTIGNY EN ARROUAISE ,2110,2511,22,49.9,3.483333,1.45
+ Montigny-l'Allier ,MONTIGNY L ALLIER ,2810,2512,22,49.116667,3.1,2.46
+ Montigny-le-Franc ,MONTIGNY LE FRANC ,2250,2513,22,49.683333,3.916667,1.88
+ Montigny-Lengrain ,MONTIGNY LENGRAIN ,2290,2514,22,49.366667,3.1,1.88
+ Montigny-lès-Condé ,MONTIGNY LES CONDE ,2330,2515,22,48.983333,3.566667,2.33
+ Montigny-sous-Marle ,MONTIGNY SOUS MARLE ,2250,2516,22,49.75,3.8,1.19
+ Montigny-sur-Crécy ,MONTIGNY SUR CRECY ,2270,2517,22,49.716667,3.583333,0.69
+ Montlevon ,MONTLEVON ,2330,2518,22,48.966667,3.533333,2.39
+ Montloué ,MONTLOUE ,2340,2519,22,49.666667,4.066667,2.35
+ Mont-Notre-Dame ,MONT NOTRE DAME ,2220,2520,22,49.3,3.583333,1.02
+ Montreuil-aux-Lions ,MONTREUIL AUX LIONS ,2310,2521,22,49.016667,3.2,2.19
+ Mont-Saint-Jean ,MONT SAINT JEAN ,2360,2522,22,49.783333,4.2,2.93
+ Mont-Saint-Martin ,MONT SAINT MARTIN ,2220,2523,22,49.283333,3.633333,1.63
+ Mont-Saint-Père ,MONT SAINT PERE ,2400,2524,22,49.066667,3.483333,1.98
+Morcourt, ,2100,2525,22,49.866667,3.316667,1.31
+ Morgny-en-Thiérache ,MORGNY EN THIERACHE ,2360,2526,22,49.766667,4.066667,2.35
+ Morsain ,MORSAIN ,2290,2527,22,49.45,3.183333,1.5
+ Mortiers ,MORTIERS ,2270,2529,22,49.683333,3.666667,1.08
+ Moulins ,MOULINS ,2160,2530,22,49.416667,3.683333,0.7
+ Moussy-Verneuil ,MOUSSY VERNEUIL ,2160,2531,22,49.416667,3.633333,1.36
+ Moy-de-l'Aisne ,MOY DE L AISNE,2610,2532,22,49.75,3.366667,0.83
+ Muret-et-Crouttes ,MURET ET CROUTTES ,2210,2533,22,49.283333,3.416667,1.62
+ Muscourt ,MUSCOURT ,2160,2534,22,49.366667,3.75,0.97
+ Nampcelles-la-Cour ,NAMPCELLES LA COUR ,2140,2535,22,49.783333,4,2.06
+ Nampteuil-sous-Muret ,NAMPTEUIL SOUS MURET ,2200,2536,22,49.3,3.416667,1.91
+ Nanteuil-la-Fosse ,NANTEUIL LA FOSSE ,2880,2537,22,49.433333,3.45,1.49
+ Nanteuil-Notre-Dame ,NANTEUIL NOTRE DAME ,2210,2538,22,49.2,3.4,1.43
+ Nauroy ,NAUROY ,2420,2539,22,49.95,3.25,1.65
+ Nesles-la-Montagne ,NESLES LA MONTAGNE ,2400,2540,22,49.016667,3.416667,2.19
+ Neufchâtel-sur-Aisne ,NEUFCHATEL SUR AISNE ,2190,2541,22,49.433333,4.033333,2.21
+ Neuflieux ,NEUFLIEUX ,2300,2542,22,49.6,3.166667,1.58
+ Neuilly-Saint-Front ,NEUILLY SAINT FRONT ,2470,2543,22,49.166667,3.266667,1.57
+ Neuve-Maison ,NEUVE MAISON ,2500,2544,22,49.933333,4.033333,2.21
+ La Neuville-Bosmont ,LA NEUVILLE BOSMONT ,2250,2545,22,49.716667,3.85,1.41
+ La Neuville-en-Beine ,LA NEUVILLE EN BEINE,2300,2546,22,49.683333,3.15,1.65
+ La Neuville-Housset ,LA NEUVILLE HOUSSET ,2250,2547,22,49.783333,3.716667,1.27
+ La Neuville-lès-Dorengt ,LA NEUVILLE LES DORENGT,2450,2548,22,49.966667,3.683333,1.72
+ Neuville-Saint-Amand ,NEUVILLE SAINT AMAND ,2100,2549,22,49.816667,3.333333,1.33
+ Neuville-sur-Ailette ,NEUVILLE SUR AILETTE ,2860,2550,22,49.466667,3.7,0.89
+ Neuville-sur-Margival ,NEUVILLE SUR MARGIVAL ,2880,2551,22,49.45,3.4,0.63
+ Neuvillette ,NEUVILLETTE ,2390,2552,22,49.85,3.466667,1.25
+ Nizy-le-Comte ,NIZY LE COMTE ,2150,2553,22,49.566667,4.05,2.28
+ Nogentel ,NOGENTEL ,2400,2554,22,49.016667,3.4,2.19
+ Nogent-l'Artaud ,NOGENT L ARTAUD ,2310,2555,22,48.966667,3.316667,2.39
+ Noircourt ,NOIRCOURT ,2340,2556,22,49.666667,4.1,2.5
+ Noroy-sur-Ourcq ,NOROY SUR OURCQ ,2600,2557,22,49.2,3.216667,1.43
+ Le Nouvion-en-Thiérache ,LE NOUVION EN THIERACHE,2170,2558,22,50.016667,3.783333,1.93
+ Nouvion-et-Catillon ,NOUVION ET CATILLON ,2270,2559,22,49.7,3.483333,1.67
+ Nouvion-le-Comte ,NOUVION LE COMTE ,2800,2560,22,49.683333,3.466667,1.74
+ Nouvion-le-Vineux ,NOUVION LE VINEUX ,2860,2561,22,49.5,3.616667,1.23
+ Nouvron-Vingré ,NOUVRON VINGRE ,2290,2562,22,49.433333,3.2,1.43
+ Noyales ,NOYALES ,2120,2563,22,49.9,3.55,1.45
+ Noyant-et-Aconin ,NOYANT ET ACONIN ,2200,2564,22,49.333333,3.333333,0.88
+ Oeuilly ,OEUILLY ,2160,2565,22,49.383333,3.683333,0.68
+ Ohis ,OHIS ,2500,2567,22,49.933333,4.016667,2.13
+ Oigny-en-Valois ,OIGNY EN VALOIS ,2600,2568,22,49.216667,3.133333,1.72
+ Oisy ,OISY ,2450,2569,22,50.016667,3.666667,1.93
+ Ollezy ,OLLEZY ,2480,2570,22,49.716667,3.133333,1.72
+ Omissy ,OMISSY ,2100,2571,22,49.883333,3.316667,1.38
+ Orainville ,ORAINVILLE ,2190,2572,22,49.383333,4.016667,2.13
+ Orgeval ,ORGEVAL ,2860,2573,22,49.516667,3.7,0.94
+ Origny-en-Thiérache ,ORIGNY EN THIERACHE ,2550,2574,22,49.9,4.016667,2.13
+ Origny-Sainte-Benoîte ,ORIGNY SAINTE BENOITE ,2390,2575,22,49.833333,3.5,1.25
+ Osly-Courtil ,OSLY COURTIL ,2290,2576,22,49.4,3.216667,1.36
+ Ostel ,OSTEL ,2370,2577,22,49.433333,3.566667,1.35
+ Oulches-la-Vallée-Foulon ,OULCHES LA VALLEE FOULON,2160,2578,22,49.433333,3.75,0.97
+ Oulchy-la-Ville ,OULCHY LA VILLE ,2210,2579,22,49.216667,3.35,1.36
+ Oulchy-le-Château ,OULCHY LE CHATEAU ,2210,2580,22,49.2,3.35,1.43
+ Paars ,PAARS ,2220,2581,22,49.333333,3.6,0.98
+ Paissy ,PAISSY ,2160,2582,22,49.416667,3.7,0.75
+ Pancy-Courtecon ,PANCY COURTECON ,2860,2583,22,49.466667,3.65,0.7
+ Papleux ,PAPLEUX ,2260,2584,22,50.016667,3.883333,1.93
+ Parfondeval ,PARFONDEVAL ,2360,2586,22,49.733333,4.166667,2.79
+ Parfondru ,PARFONDRU ,2840,2587,22,49.533333,3.716667,0.82
+ Pargnan ,PARGNAN ,2160,2588,22,49.4,3.7,0.75
+ Pargny-Filain ,PARGNY FILAIN ,2000,2589,22,49.466667,3.533333,1.23
+ Pargny-la-Dhuys ,PARGNY LA DHUYS ,2330,2590,22,48.95,3.55,2.46
+ Pargny-lès-Bois ,PARGNY LES BOIS ,2270,2591,22,49.716667,3.616667,0.69
+ Parpeville ,PARPEVILLE ,2240,2592,22,49.766667,3.55,2.11
+ Pasly ,PASLY ,2200,2593,22,49.4,3.3,0.99
+ Passy-en-Valois ,PASSY EN VALOIS ,2470,2594,22,49.166667,3.2,1.57
+ Passy-sur-Marne ,PASSY SUR MARNE ,2850,2595,22,49.066667,3.566667,1.98
+ Pavant ,PAVANT ,2310,2596,22,48.95,3.283333,2.46
+ Perles ,PERLES ,2160,2597,22,49.316667,3.65,1.48
+ Pernant ,PERNANT ,2200,2598,22,49.383333,3.233333,1.76
+ Pierremande ,PIERREMANDE ,2300,2599,22,49.566667,3.25,1.21
+ Pierrepont ,PIERREPONT ,2350,2600,22,49.65,3.783333,1.12
+ Pignicourt ,PIGNICOURT ,2190,2601,22,49.416667,4.033333,2.21
+ Pinon ,PINON ,2320,2602,22,49.483333,3.45,0.78
+ Pisseleux ,PISSELEUX ,2600,2603,22,49.233333,3.083333,1.94
+ Pithon ,PITHON ,2480,2604,22,49.75,3.1,1.87
+ Pleine-Selve ,PLEINE SELVE ,2240,2605,22,49.783333,3.516667,1.57
+ Le Plessier-Huleu ,LE PLESSIER HULEU ,2210,2606,22,49.233333,3.35,1.3
+ Ploisy ,PLOISY ,2200,2607,22,49.333333,3.3,0.99
+ Plomion ,PLOMION ,2140,2608,22,49.8,4.016667,2.13
+ Pommiers ,POMMIERS ,2200,2610,22,49.4,3.266667,1.37
+ Pont-à-Bucy ,PONT A BUCY ,2270,2611,22,49.683333,3.483333,1.69
+ Pont-Arcy ,PONT ARCY ,2160,2612,22,49.383333,3.616667,1.54
+ Pontavert ,PONTAVERT ,2160,2613,22,49.416667,3.816667,1.55
+ Pontru ,PONTRU ,2490,2614,22,49.9,3.216667,1.45
+ Pontruet ,PONTRUET ,2490,2615,22,49.9,3.233333,1.46
+ Pont-Saint-Mard ,PONT SAINT MARD ,2380,2616,22,49.5,3.283333,1.7
+ Pouilly-sur-Serre ,POUILLY SUR SERRE ,2270,2617,22,49.683333,3.583333,0.56
+ Prémont ,PREMONT ,2110,2618,22,50,3.383333,1.86
+ Prémontré ,PREMONTRE ,2320,2619,22,49.55,3.4,1.51
+ Presles-et-Boves ,PRESLES ET BOVES ,2370,2620,22,49.4,3.55,0.89
+ Presles-et-Thierny ,PRESLES ET THIERNY ,2860,2621,22,49.516667,3.616667,1.36
+ Priez ,PRIEZ ,2470,2622,22,49.133333,3.266667,1.71
+ Prisces ,PRISCES ,2140,2623,22,49.783333,3.866667,1.48
+ Proisy ,PROISY ,2120,2624,22,49.9,3.733333,1.45
+ Proix ,PROIX ,2120,2625,22,49.9,3.566667,1.45
+ Prouvais ,PROUVAIS ,2190,2626,22,49.466667,3.983333,1.99
+ Proviseux-et-Plesnoy ,PROVISEUX ET PLESNOY ,2190,2627,22,49.466667,4,2.06
+ Puiseux-en-Retz ,PUISEUX EN RETZ ,2600,2628,22,49.3,3.133333,1.72
+ Puisieux-et-Clanlieu ,PUISIEUX ET CLANLIEU ,2120,2629,22,49.85,3.666667,1.24
+ Quessy ,QUESSY ,2700,2630,22,49.666667,3.3,0.99
+ Quierzy ,QUIERZY ,2300,2631,22,49.566667,3.133333,1.72
+ Quincy-Basse ,QUINCY BASSE ,2380,2632,22,49.516667,3.383333,1.25
+ Quincy-sous-le-Mont ,QUINCY SOUS LE MONT,2220,2633,22,49.3,3.55,1.02
+ Raillimont ,RAILLIMONT ,2360,2634,22,49.708333,4.15,-1
+ Ramicourt ,RAMICOURT ,2110,2635,22,49.95,3.333333,1.65
+ Regny ,REGNY ,2240,2636,22,49.816667,3.416667,1.1
+ Remaucourt ,REMAUCOURT ,2100,2637,22,49.9,3.333333,1.45
+ Remies ,REMIES ,2270,2638,22,49.683333,3.533333,0.96
+ Remigny ,REMIGNY ,2440,2639,22,49.716667,3.283333,1.07
+ Renansart ,RENANSART ,2240,2640,22,49.716667,3.45,0.98
+ Renneval ,RENNEVAL ,2340,2641,22,49.733333,4.05,2.28
+ Résigny ,RESIGNY ,2360,2642,22,49.733333,4.2,2.93
+ Ressons-le-Long ,RESSONS LE LONG ,2290,2643,22,49.383333,3.15,1.65
+ Retheuil ,RETHEUIL ,2600,2644,22,49.316667,3.016667,2.23
+ Reuilly-Sauvigny ,REUILLY SAUVIGNY ,2850,2645,22,49.066667,3.55,1.98
+ Révillon ,REVILLON ,2160,2646,22,49.366667,3.7,0.75
+ Ribeauville ,RIBEAUVILLE ,2110,2647,22,50.05,3.583333,2.07
+ Ribemont ,RIBEMONT ,2240,2648,22,49.8,3.466667,1.04
+ Rocourt-Saint-Martin ,ROCOURT SAINT MARTIN ,2210,2649,22,49.15,3.383333,1.64
+ Rocquigny ,ROCQUIGNY ,2260,2650,22,50.033333,3.983333,2
+ Rogécourt ,ROGECOURT ,2800,2651,22,49.633333,3.416667,0.85
+ Rogny ,ROGNY ,2140,2652,22,49.766667,3.816667,1.26
+ Romeny-sur-Marne ,ROMENY SUR MARNE ,2310,2653,22,48.983333,3.333333,2.33
+ Romery ,ROMERY ,2120,2654,22,49.9,3.733333,1.45
+ Ronchères ,RONCHERES ,2130,2655,22,49.15,3.6,1.64
+ Roucy ,ROUCY ,2160,2656,22,49.366667,3.816667,1.51
+ Rougeries ,ROUGERIES ,2140,2657,22,49.8,3.8,1.19
+ Roupy ,ROUPY ,2590,2658,22,49.816667,3.183333,1.6
+ Rouvroy ,ROUVROY ,2100,2659,22,49.85,3.316667,1.24
+ Rouvroy-sur-Serre ,ROUVROY SUR SERRE ,2360,2660,22,49.716667,4.166667,2.79
+ Royaucourt-et-Chailvet ,ROYAUCOURT ET CHAILVET ,2000,2661,22,49.516667,3.533333,0.69
+ Rozet-Saint-Albin ,ROZET SAINT ALBIN ,2210,2662,22,49.2,3.3,1.43
+ Rozières-sur Crise ,ROZIERES SUR CRISE ,2200,2663,22,49.333333,3.35,0.88
+ Rozoy-Bellevalle ,ROZOY BELLEVALLE ,2540,2664,22,48.916667,3.45,2.6
+ Grand-Rozoy ,GRAND ROZOY ,2210,2665,22,49.233333,3.383333,1.3
+ Rozoy-sur-Serre ,ROZOY SUR SERRE ,2360,2666,22,49.716667,4.133333,2.64
+ Saconin-et-Breuil ,SACONIN ET BREUIL ,2200,2667,22,49.366667,3.25,1.39
+ Sains-Richaumont ,SAINS RICHAUMONT ,2120,2668,22,49.816667,3.7,1.1
+ Saint-Agnan ,SAINT AGNAN ,2330,2669,22,49.016667,3.6,2.19
+ Saint-Algis ,SAINT ALGIS ,2260,2670,22,49.883333,3.816667,1.45
+ Saint-Aubin ,SAINT AUBIN ,2300,2671,22,49.516667,3.183333,1.5
+ Saint-Bandry ,SAINT BANDRY ,2290,2672,22,49.366667,3.166667,1.58
+ Saint-Christophe-à-Berry ,SAINT CHRISTOPHE A BERRY,2290,2673,22,49.416667,3.133333,1.72
+ Saint-Clément ,SAINT CLEMENT ,2360,2674,22,49.766667,4.066667,2.35
+ Sainte-Croix ,SAINTE CROIX ,2820,2675,22,49.483333,3.783333,1.37
+ Saint-Erme-Outre-et-Ramecourt ,SAINT ERME OUTRE ET,2820,2676,22,49.516667,3.85,1.41
+ Saint-Eugène ,SAINT EUGENE ,2330,2677,22,49.016667,3.533333,2.19
+ Saint-Gengoulph ,SAINT GENGOULPH ,2810,2679,22,49.116667,3.216667,1.78
+ Saint-Gobain ,SAINT GOBAIN ,2410,2680,22,49.6,3.383333,0.72
+ Saint-Gobert ,SAINT GOBERT ,2140,2681,22,49.8,3.816667,1.26
+ Saint-Martin-Rivière ,SAINT MARTIN RIVIERE ,2110,2683,22,50.05,3.533333,2.07
+ Saint-Michel ,SAINT MICHEL ,2830,2684,22,49.916667,4.133333,2.64
+ Saint-Nicolas-aux-bois ,SAINT NICOLAS AUX BOIS,2410,2685,22,49.6,3.416667,1.14
+ Saint-Paul-aux-Bois ,SAINT PAUL AUX BOIS,2300,2686,22,49.533333,3.2,1.43
+ Saint-Pierre-Aigle ,SAINT PIERRE AIGLE ,2600,2687,22,49.316667,3.183333,1.5
+ Saint-Pierremont ,SAINT PIERREMONT ,2250,2689,22,49.716667,3.883333,1.55
+ Sainte-Preuve ,SAINTE PREUVE ,2350,2690,22,49.616667,3.916667,1.7
+ Saint-Quentin ,SAINT QUENTIN ,2100,2691,22,49.85,3.283333,1.24
+ Saint-Rémy-Blanzy ,SAINT REMY BLANZY ,2210,2693,22,49.233333,3.3,1.3
+ Saint-Simon ,SAINT SIMON ,2640,2694,22,49.75,3.166667,1.58
+ Saint-Thibaut ,SAINT THIBAUT ,2220,2695,22,49.3,3.616667,1.28
+ Saint-Thomas ,SAINT THOMAS ,2820,2696,22,49.5,3.816667,1.26
+ Samoussy ,SAMOUSSY ,2840,2697,22,49.583333,3.733333,0.9
+ Sancy-les-Cheminots ,SANCY LES CHEMINOTS ,2880,2698,22,49.433333,3.466667,1.87
+ Saponay ,SAPONAY ,2130,2699,22,49.216667,3.483333,1.36
+ Le Sart ,LE SART ,2450,2700,22,50.05,3.733333,2.07
+ Saulchery ,SAULCHERY ,2310,2701,22,48.983333,3.3,2.33
+ Savy ,SAVY ,2590,2702,22,49.8,3.183333,1.55
+ Seboncourt ,SEBONCOURT ,2110,2703,22,49.95,3.483333,1.65
+ Selens ,SELENS ,2300,2704,22,49.5,3.2,1.43
+ La Selve ,LA SELVE ,2150,2705,22,49.566667,4,2.06
+ Septmonts ,SEPTMONTS ,2200,2706,22,49.333333,3.35,0.88
+ Septvaux ,SEPTVAUX ,2410,2707,22,49.566667,3.383333,1.14
+ Sequehart ,SEQUEHART ,2420,2708,22,49.916667,3.333333,1.68
+ Serain ,SERAIN ,2110,2709,22,50.016667,3.366667,1.93
+ Séraucourt-le-Grand ,SERAUCOURT LE GRAND ,2790,2710,22,49.783333,3.216667,1.36
+ Serches ,SERCHES ,2220,2711,22,49.35,3.45,1.54
+ Sergy ,SERGY ,2130,2712,22,49.183333,3.566667,1.5
+ Seringes-et-Nesles ,SERINGES ET NESLES ,2130,2713,22,49.2,3.533333,1.43
+ Sermoise ,SERMOISE ,2220,2714,22,49.366667,3.45,1.65
+ Serval ,SERVAL ,2160,2715,22,49.35,3.683333,0.82
+ Servais ,SERVAIS ,2700,2716,22,49.616667,3.35,1.66
+ Séry-lès-Mézières ,SERY LES MEZIERES ,2240,2717,22,49.766667,3.416667,0.9
+ Silly-la-Poterie ,SILLY LA POTERIE ,2460,2718,22,49.2,3.15,1.65
+ Sinceny ,SINCENY ,2300,2719,22,49.6,3.25,1.21
+ Sissonne ,SISSONNE ,2150,2720,22,49.566667,3.9,1.62
+ Sissy ,SISSY ,2240,2721,22,49.8,3.433333,1.04
+ Soissons ,SOISSONS ,2200,2722,22,49.366667,3.333333,0.85
+ Soize ,SOIZE ,2340,2723,22,49.7,4.083333,2.42
+ Sommelans ,SOMMELANS ,2470,2724,22,49.133333,3.3,2.05
+ Sommeron ,SOMMERON ,2260,2725,22,49.95,3.95,1.84
+ Sommette-Eaucourt ,SOMMETTE EAUCOURT ,2480,2726,22,49.733333,3.116667,1.8
+ Sons-et-Ronchères ,SONS ET RONCHERES ,2270,2727,22,49.75,3.666667,1.28
+ Sorbais ,SORBAIS ,2580,2728,22,49.916667,3.9,1.62
+ Soucy ,SOUCY ,2600,2729,22,49.316667,3.133333,1.72
+ Soupir ,SOUPIR ,2160,2730,22,49.416667,3.6,1.85
+ Le Sourd ,LE SOURD ,2140,2731,22,49.866667,3.75,1.81
+ Surfontaine ,SURFONTAINE ,2240,2732,22,49.733333,3.45,0.76
+ Suzy ,SUZY ,2320,2733,22,49.55,3.466667,1.04
+ Taillefontaine ,TAILLEFONTAINE ,2600,2734,22,49.316667,3.033333,2.16
+ Tannières ,TANNIERES ,2220,2735,22,49.283333,3.55,1.09
+ Tartiers ,TARTIERS ,2290,2736,22,49.433333,3.233333,1.29
+ Tavaux-et-Pontséricourt ,TAVAUX ET PONTSERICOURT ,2250,2737,22,49.733333,3.916667,1.73
+ Tergnier ,TERGNIER ,2700,2738,22,49.65,3.3,0.99
+ Terny-Sorny ,TERNY SORNY ,2880,2739,22,49.45,3.366667,0.7
+ Thenailles ,THENAILLES ,2140,2740,22,49.816667,3.95,1.84
+ Thenelles ,THENELLES ,2390,2741,22,49.816667,3.466667,1.25
+ Thiernu ,THIERNU ,2250,2742,22,49.75,3.8,1.19
+ Torcy-en-Valois ,TORCY EN VALOIS ,2810,2744,22,49.083333,3.266667,1.91
+ Toulis-et-Attencourt ,TOULIS ET ATTENCOURT ,2250,2745,22,49.683333,3.733333,1.1
+ Travecy ,TRAVECY ,2800,2746,22,49.683333,3.35,1.11
+ Trefcon ,TREFCON ,2490,2747,22,49.866667,3.1,1.87
+ Trosly-Loire ,TROSLY LOIRE ,2300,2750,22,49.516667,3.233333,1.33
+ Trucy ,TRUCY ,2860,2751,22,49.466667,3.616667,1.33
+ Tugny-et-Pont ,TUGNY ET PONT ,2640,2752,22,49.75,3.15,1.65
+ Tupigny ,TUPIGNY ,2120,2753,22,49.95,3.6,1.65
+ Ugny-le-Gay ,UGNY LE GAY ,2300,2754,22,49.666667,3.166667,1.58
+ Urcel ,URCEL ,2000,2755,22,49.5,3.55,0.69
+ Urvillers ,URVILLERS ,2690,2756,22,49.783333,3.316667,1
+ Vadencourt ,VADENCOURT ,2120,2757,22,49.933333,3.583333,1.59
+ Vailly-sur-Aisne ,VAILLY SUR AISNE ,2370,2758,22,49.416667,3.516667,0.54
+ La Vallée-au-Blé ,LA VALLEE AU BLE,2140,2759,22,49.866667,3.783333,1.45
+ La Vallée-Mulâtre ,LA VALLEE MULATRE ,2110,2760,22,50.016667,3.566667,1.93
+ Variscourt ,VARISCOURT ,2190,2761,22,49.416667,3.983333,1.99
+ Vassens ,VASSENS ,2290,2762,22,49.466667,3.15,1.65
+ Vasseny ,VASSENY ,2220,2763,22,49.35,3.483333,1.04
+ Vassogne ,VASSOGNE ,2160,2764,22,49.416667,3.733333,0.9
+ Vaucelles-et-Beffecourt ,VAUCELLES ET BEFFECOURT ,2000,2765,22,49.533333,3.55,0.36
+ Vaudesson ,VAUDESSON ,2320,2766,22,49.466667,3.483333,1.51
+ Vauxaillon ,VAUXAILLON ,2320,2768,22,49.483333,3.4,1.42
+ Vaux-Andigny ,VAUX ANDIGNY ,2110,2769,22,50.016667,3.516667,1.93
+ Vauxbuin ,VAUXBUIN ,2200,2770,22,49.366667,3.3,0.99
+ Vauxcéré ,VAUXCERE ,2160,2771,22,49.35,3.633333,1.4
+ Vaux-en-Vermandois ,VAUX EN VERMANDOIS ,2590,2772,22,49.816667,3.15,1.65
+ Vauxtin ,VAUXTIN ,2220,2773,22,49.35,3.6,1.07
+ Vendelles ,VENDELLES ,2490,2774,22,49.916667,3.133333,1.72
+ Vendeuil ,VENDEUIL ,2800,2775,22,49.716667,3.35,1.59
+ Vendhuile ,VENDHUILE ,2420,2776,22,50.016667,3.216667,1.93
+ Vendières ,VENDIERES ,2540,2777,22,48.866667,3.45,2.81
+ Vendresse-Beaulne ,VENDRESSE BEAULNE ,2160,2778,22,49.433333,3.666667,1.05
+ Vénérolles ,VENEROLLES ,2510,2779,22,49.966667,3.633333,1.72
+ Venizel ,VENIZEL ,2200,2780,22,49.366667,3.383333,1.08
+ Verdilly ,VERDILLY ,2400,2781,22,49.066667,3.416667,1.98
+ Le Verguier ,LE VERGUIER ,2490,2782,22,49.933333,3.166667,1.59
+ Grand-Verly ,GRAND VERLY ,2120,2783,22,49.933333,3.583333,1.59
+ Petit-Verly ,PETIT VERLY ,2630,2784,22,49.966667,3.55,1.72
+ Vermand ,VERMAND ,2490,2785,22,49.866667,3.15,1.65
+ Verneuil-sous-Coucy ,VERNEUIL SOUS COUCY ,2380,2786,22,49.533333,3.316667,0.95
+ Verneuil-sur-Serre ,VERNEUIL SUR SERRE ,2000,2787,22,49.65,3.666667,2.07
+ Versigny ,VERSIGNY ,2800,2788,22,49.65,3.433333,0.95
+ Vervins ,VERVINS ,2140,2789,22,49.833333,3.9,1.62
+ Vesles-et-Caumont ,VESLES ET CAUMONT ,2350,2790,22,49.666667,3.783333,1.12
+ Veslud ,VESLUD ,2840,2791,22,49.533333,3.733333,0.9
+ Veuilly-la-Poterie ,VEUILLY LA POTERIE ,2810,2792,22,49.083333,3.216667,1.91
+ Vézaponin ,VEZAPONIN ,2290,2793,22,49.466667,3.233333,1.29
+ Vézilly ,VEZILLY ,2130,2794,22,49.183333,3.7,1.9
+ Vic-sur-Aisne ,VIC SUR AISNE ,2290,2795,22,49.4,3.116667,1.8
+ Vichel-Nanteuil ,VICHEL NANTEUIL ,2210,2796,22,49.183333,3.283333,1.5
+ Viel-Arcy ,VIEL ARCY ,2160,2797,22,49.383333,3.616667,1.54
+ Viels-Maisons ,VIELS MAISONS ,2540,2798,22,48.9,3.4,2.67
+ Vierzy ,VIERZY ,2210,2799,22,49.283333,3.283333,1.7
+ Viffort ,VIFFORT ,2540,2800,22,48.966667,3.45,2.39
+ Vigneux-Hocquet ,VIGNEUX HOCQUET ,2340,2801,22,49.733333,3.983333,1.99
+ Villemontoire ,VILLEMONTOIRE ,2210,2804,22,49.3,3.333333,1.54
+ Villeneuve-Saint-Germain ,VILLENEUVE SAINT GERMAIN ,2200,2805,22,49.383333,3.35,0.78
+ Villeneuve-sur-Fère ,VILLENEUVE SUR FERE ,2130,2806,22,49.183333,3.466667,1.5
+ Villequier-Aumont ,VILLEQUIER AUMONT ,2300,2807,22,49.65,3.2,1.43
+ Villeret ,VILLERET ,2420,2808,22,49.95,3.183333,1.65
+ Villers-Agron-Aiguizy ,VILLERS AGRON AIGUIZY ,2130,2809,22,49.15,3.7,1.99
+ Villers-Cotterêts ,VILLERS COTTERETS ,2600,2810,22,49.25,3.083333,1.94
+ Villers-en-Prayères ,VILLERS EN PRAYERES ,2160,2811,22,49.383333,3.666667,0.78
+ Villers-Hélon ,VILLERS HELON ,2600,2812,22,49.266667,3.266667,1.6
+ Villers-le-Sec ,VILLERS LE SEC ,2240,2813,22,49.783333,3.5,1.29
+ Villers-lès-Guise ,VILLERS LES GUISE ,2120,2814,22,49.9,3.683333,1.45
+ Villers-Saint-Christophe ,VILLERS SAINT CHRISTOPHE ,2590,2815,22,49.783333,3.1,1.87
+ Villers-sur-Fère ,VILLERS SUR FERE ,2130,2816,22,49.183333,3.533333,1.5
+ Ville-Savoye ,VILLE SAVOYE ,2220,2817,22,49.3,3.633333,1.54
+ Vincy-Reuil-et-Magny ,VINCY REUIL ET MAGNY,2340,2819,22,49.716667,4.05,2.28
+ Viry-Noureuil ,VIRY NOUREUIL ,2300,2820,22,49.633333,3.25,1.31
+ Vivaise ,VIVAISE ,2870,2821,22,49.616667,3.566667,1.02
+ Vivières ,VIVIERES ,2600,2822,22,49.3,3.1,1.87
+ Voharies ,VOHARIES ,2140,2823,22,49.783333,3.8,1.19
+ Vorges ,VORGES ,2860,2824,22,49.516667,3.65,0.76
+ Vouël ,VOUEL ,2700,2825,22,49.65,3.283333,1.07
+ Voulpaix ,VOULPAIX ,2140,2826,22,49.833333,3.833333,1.33
+ Voyenne ,VOYENNE ,2250,2827,22,49.716667,3.716667,1.1
+ Vregny ,VREGNY ,2880,2828,22,49.416667,3.416667,0.77
+ Vuillery ,VUILLERY ,2880,2829,22,49.433333,3.383333,0.63
+ Wassigny ,WASSIGNY ,2630,2830,22,50.016667,3.6,1.93
+ Watigny ,WATIGNY ,2830,2831,22,49.9,4.2,2.93
+ Wiège-Faty ,WIEGE FATY ,2120,2832,22,49.883333,3.733333,1.38
+ Wimy ,WIMY ,2500,2833,22,49.933333,4,2.06
+ Wissignicourt ,WISSIGNICOURT ,2320,2834,22,49.533333,3.433333,0.6
+ Abrest ,ABREST ,3200,3001,83,46.1,3.433333,1.76
+ Agonges ,AGONGES ,3210,3002,83,46.6,3.15,1.68
+ Ainay-le-Château ,AINAY LE CHATEAU ,3360,3003,83,46.716667,2.7,2.49
+ Andelaroche ,ANDELAROCHE ,3120,3004,83,46.25,3.75,1.75
+ Archignat ,ARCHIGNAT ,3380,3005,83,46.383333,2.416667,2.31
+ Arpheuilles-Saint-Priest ,ARPHEUILLES SAINT PRIEST ,3420,3007,83,46.233333,2.683333,1.5
+ Arronnes ,ARRONNES ,3250,3008,83,46.066667,3.566667,1.99
+ Aubigny ,AUBIGNY ,3460,3009,83,46.683333,3.166667,2.26
+ Audes ,AUDES ,3190,3010,83,46.45,2.566667,1.85
+ Aurouer ,AUROUER ,3460,3011,83,46.683333,3.3,2.26
+ Autry-Issards ,AUTRY ISSARDS ,3210,3012,83,46.55,3.133333,1.34
+ Avermes ,AVERMES ,3000,3013,83,46.583333,3.3,1.57
+ Avrilly ,AVRILLY ,3130,3014,83,46.333333,3.983333,2.46
+ Bagneux ,BAGNEUX ,3460,3015,83,46.65,3.2,2.03
+ Barberier ,BARBERIER ,3140,3016,83,46.216667,3.25,1.48
+ Barrais-Bussolles ,BARRAIS BUSSOLLES ,3120,3017,83,46.283333,3.733333,1.7
+ Bayet ,BAYET ,3500,3018,83,46.25,3.266667,1.49
+ Beaulon ,BEAULON ,3230,3019,83,46.6,3.666667,1.68
+ Beaune d'Allier ,BEAUNE D ALLIER ,3390,3020,83,46.283333,2.883333,1.54
+ Bègues ,BEGUES ,3800,3021,83,46.133333,3.15,1.53
+ Bellenaves ,BELLENAVES ,3330,3022,83,46.2,3.083333,1.07
+ Bellerive-sur-Allier ,BELLERIVE SUR ALLIER ,3700,3023,83,46.116667,3.4,1.65
+ Bert ,BERT ,3130,3024,83,46.316667,3.7,1.6
+ Bessay-sur-Allier ,BESSAY SUR ALLIER ,3340,3025,83,46.433333,3.366667,0.92
+ Besson ,BESSON ,3210,3026,83,46.466667,3.266667,1.32
+ Bézenet ,BEZENET ,3170,3027,83,46.333333,2.85,1.35
+ Billezois ,BILLEZOIS ,3120,3028,83,46.216667,3.566667,1.2
+ Billy ,BILLY ,3260,3029,83,46.233333,3.433333,1.27
+ Biozat ,BIOZAT ,3800,3030,83,46.066667,3.266667,1.99
+ Bizeneuille ,BIZENEUILLE ,3170,3031,83,46.4,2.733333,1.35
+ Blomard ,BLOMARD ,3390,3032,83,46.283333,2.983333,1.08
+ Boucé ,BOUCE ,3150,3034,83,46.316667,3.483333,0.94
+ Le Bouchaud ,LE BOUCHAUD ,3130,3035,83,46.3,3.883333,2.16
+ Bourbon-l'Archambault ,BOURBON L ARCHAMBAULT ,3160,3036,83,46.583333,3.05,1.57
+ Braize ,BRAIZE ,3360,3037,83,46.666667,2.65,2.14
+ Bransat ,BRANSAT ,3500,3038,83,46.333333,3.216667,0.8
+ Bresnay ,BRESNAY ,3210,3039,83,46.45,3.25,1.27
+ Bressolles ,BRESSOLLES ,3000,3040,83,46.516667,3.316667,1.35
+ Le Brethon ,LE BRETHON ,3350,3041,83,46.566667,2.716667,1.81
+ Le Breuil ,LE BREUIL ,3120,3042,83,46.183333,3.658333,-1
+ Broût-Vernet ,BROUT VERNET ,3110,3043,83,46.183333,3.283333,1.19
+ Brugheas ,BRUGHEAS ,3700,3044,83,46.083333,3.366667,1.88
+ Busset ,BUSSET ,3270,3045,83,46.066667,3.516667,1.99
+ Buxières-les-Mines ,BUXIERES LES MINES ,3440,3046,83,46.466667,2.966667,1
+ Cérilly ,CERILLY ,3350,3048,83,46.616667,2.833333,1.8
+ Cesset ,CESSET ,3500,3049,83,46.3,3.216667,0.99
+ Chambérat ,CHAMBERAT ,3370,3051,83,46.416667,2.416667,2.31
+ Chamblet ,CHAMBLET ,3170,3052,83,46.333333,2.7,1.56
+ Chantelle ,CHANTELLE ,3140,3053,83,46.233333,3.15,0.84
+ Chapeau ,CHAPEAU ,3340,3054,83,46.483333,3.516667,1.28
+ La Chapelaude ,LA CHAPELAUDE ,3380,3055,83,46.416667,2.5,2.06
+ La Chapelle ,LA CHAPELLE ,3300,3056,83,46.1,3.583333,1.76
+ La Chapelle-aux-Chasses ,LA CHAPELLE AUX CHASSES,3230,3057,83,46.666667,3.533333,2.14
+ Chareil-Cintrat ,CHAREIL CINTRAT ,3140,3059,83,46.266667,3.216667,0.99
+ Charmeil ,CHARMEIL ,3110,3060,83,46.166667,3.4,1.38
+ Charmes ,CHARMES ,3800,3061,83,46.083333,3.25,1.88
+ Chassenard ,CHASSENARD ,3510,3063,83,46.45,3.983333,2.46
+ Château-sur-Allier ,CHATEAU SUR ALLIER ,3320,3064,83,46.766667,3.033333,2.83
+ Châtel-de-Neuvre ,CHATEL DE NEUVRE ,3500,3065,83,46.4,3.316667,1.59
+ Châtel-Montagne ,CHATEL MONTAGNE ,3250,3066,83,46.116667,3.683333,1.65
+ Châtelperron ,CHATELPERRON ,3220,3067,83,46.383333,3.65,1.45
+ Châtillon ,CHATILLON ,3210,3069,83,46.466667,3.133333,0.77
+ Chavenon ,CHAVENON ,3440,3070,83,46.416667,2.95,1
+ Chavroches ,CHAVROCHES ,3220,3071,83,46.35,3.6,1.3
+ Chazemais ,CHAZEMAIS ,3370,3072,83,46.483333,2.533333,2.22
+ Chemilly ,CHEMILLY ,3210,3073,83,46.483333,3.316667,1.83
+ Chevagnes ,CHEVAGNES ,3230,3074,83,46.616667,3.55,1.8
+ Chezelle ,CHEZELLE ,3140,3075,83,46.216667,3.116667,0.96
+ Chézy ,CHEZY ,3230,3076,83,46.616667,3.466667,1.8
+ Chirat-l'Église ,CHIRAT L EGLISE ,3330,3077,83,46.25,3.05,0.89
+ Chouvigny ,CHOUVIGNY ,3450,3078,83,46.133333,3,1.53
+ Cindré ,CINDRE ,3220,3079,83,46.316667,3.566667,1.19
+ Cognat-Lyonne ,COGNAT LYONNE ,3110,3080,83,46.1,3.3,1.76
+ Colombier ,COLOMBIER ,3600,3081,83,46.266667,2.8,1.14
+ Commentry ,COMMENTRY ,3600,3082,83,46.283333,2.75,1.47
+ Contigny ,CONTIGNY ,3500,3083,83,46.366667,3.3,0.95
+ Cosne-d'Allier ,COSNE D ALLIER ,3430,3084,83,46.466667,2.833333,1.04
+ Coulandon ,COULANDON ,3000,3085,83,46.55,3.25,1.34
+ Coulanges ,COULANGES ,3470,3086,83,46.483333,3.866667,2.11
+ Couleuvre ,COULEUVRE ,3320,3087,83,46.666667,2.916667,2.14
+ Courçais ,COURCAIS ,3370,3088,83,46.466667,2.433333,2.26
+ Coutansouze ,COUTANSOUZE ,3330,3089,83,46.216667,3.033333,0.96
+ Couzon ,COUZON ,3160,3090,83,46.65,3.116667,2.03
+ Créchy ,CRECHY ,3150,3091,83,46.266667,3.416667,1.03
+ Cressanges ,CRESSANGES ,3240,3092,83,46.45,3.166667,1.55
+ Creuzier-le-Neuf ,CREUZIER LE NEUF ,3300,3093,83,46.183333,3.433333,1.19
+ Creuzier-le-Vieux ,CREUZIER LE VIEUX ,3300,3094,83,46.166667,3.433333,1.3
+ Cusset ,CUSSET ,3300,3095,83,46.133333,3.466667,1.53
+ Deneuille-les-Mines ,DENEUILLE LES MINES ,3170,3097,83,46.366667,2.783333,1.19
+ Désertines ,DESERTINES ,3630,3098,83,46.35,2.616667,1.7
+ Deux-Chaises ,DEUX CHAISES ,3240,3099,83,46.383333,3.033333,0.91
+ Diou ,DIOU ,3290,3100,83,46.533333,3.75,1.75
+ Domérat ,DOMERAT ,3410,3101,83,46.35,2.533333,1.95
+ Dompierre-sur-Besbre ,DOMPIERRE SUR BESBRE ,3290,3102,83,46.516667,3.683333,1.55
+ Le Donjon ,LE DONJON ,3130,3103,83,46.35,3.8,1.9
+ Doyet ,DOYET ,3170,3104,83,46.333333,2.8,1.14
+ Droiturier ,DROITURIER ,3120,3105,83,46.233333,3.716667,1.65
+ Durdat-Larequille ,DURDAT LAREQUILLE ,3310,3106,83,46.25,2.7,1.62
+ Ébreuil ,EBREUIL ,3450,3107,83,46.116667,3.083333,1.65
+ Échassières ,ECHASSIERES ,3330,3108,83,46.183333,2.933333,1.97
+ Escurolles ,ESCUROLLES ,3110,3109,83,46.133333,3.266667,1.53
+ Espinasse-Vozelle ,ESPINASSE VOZELLE ,3110,3110,83,46.133333,3.316667,1.53
+ Estivareilles ,ESTIVAREILLES ,3190,3111,83,46.416667,2.616667,1.7
+ Étroussat ,ETROUSSAT ,3140,3112,83,46.216667,3.216667,0.98
+ Ferrières-sur-Sichon ,FERRIERES SUR SICHON ,3250,3113,83,46.016667,3.633333,2.33
+ La Ferté-Hauterive ,LA FERTE HAUTERIVE ,3340,3114,83,46.4,3.333333,1.49
+ Fleuriel ,FLEURIEL ,3140,3115,83,46.283333,3.166667,0.68
+ Fourilles ,FOURILLES ,3140,3116,83,46.233333,3.2,0.84
+ Franchesse ,FRANCHESSE ,3160,3117,83,46.633333,3.033333,1.91
+ Gannat ,GANNAT ,3800,3118,83,46.1,3.2,1.76
+ Gannay-sur-Loire ,GANNAY SUR LOIRE ,3230,3119,83,46.733333,3.616667,2.6
+ Garnat-sur-Engièvre ,GARNAT SUR ENGIEVRE ,3230,3120,83,46.633333,3.65,1.91
+ Gipcy ,GIPCY ,3210,3122,83,46.5,3.066667,1.29
+ Givarlais ,GIVARLAIS ,3190,3123,83,46.45,2.65,1.6
+ Gouise ,GOUISE ,3340,3124,83,46.416667,3.433333,0.79
+ La Guillermie ,LA GUILLERMIE ,3250,3125,83,45.983333,3.65,2.56
+ Hauterive ,HAUTERIVE ,3270,3126,83,46.083333,3.45,1.88
+ Hérisson ,HERISSON ,3190,3127,83,46.516667,2.716667,1.4
+ Huriel ,HURIEL ,3380,3128,83,46.366667,2.483333,2.11
+ Hyds ,HYDS ,3600,3129,83,46.283333,2.833333,1.04
+ Isle-et-Bardais ,ISLE ET BARDAIS ,3360,3130,83,46.683333,2.8,2.26
+ Isserpent ,ISSERPENT ,3120,3131,83,46.15,3.616667,1.42
+ Jenzat ,JENZAT ,3800,3133,83,46.166667,3.2,1.3
+ Lafeline ,LAFELINE ,3500,3134,83,46.35,3.166667,1.73
+ Lalizolle ,LALIZOLLE ,3450,3135,83,46.15,3,1.42
+ Lamaids ,LAMAIDS ,3380,3136,83,46.3,2.433333,2.26
+ Langy ,LANGY ,3150,3137,83,46.266667,3.466667,0.89
+ Lapalisse ,LAPALISSE ,3120,3138,83,46.25,3.633333,1.4
+ Laprugne ,LAPRUGNE ,3250,3139,83,45.983333,3.75,2.56
+ Lavault-Sainte-Anne ,LAVAULT SAINTE ANNE ,3310,3140,83,46.316667,2.6,1.75
+ Lavoine ,LAVOINE ,3250,3141,83,45.966667,3.7,2.68
+ Lenax ,LENAX ,3130,3142,83,46.3,3.8,1.9
+ Liernolles ,LIERNOLLES ,3130,3144,83,46.383333,3.766667,1.8
+ Lignerolles ,LIGNEROLLES ,3410,3145,83,46.283333,2.566667,1.85
+ Limoise ,LIMOISE ,3320,3146,83,46.683333,3.05,2.26
+ Loddes ,LODDES ,3130,3147,83,46.283333,3.766667,1.8
+ Loriges ,LORIGES ,3500,3148,83,46.283333,3.35,1.84
+ Louchy-Montfand ,LOUCHY MONTFAND ,3500,3149,83,46.316667,3.25,0.34
+ Louroux-Bourbonnais ,LOUROUX BOURBONNAIS ,3350,3150,83,46.533333,2.85,1.23
+ Louroux-de-Beaune ,LOUROUX DE BEAUNE ,3600,3151,83,46.3,2.866667,1.59
+ Louroux-de-Bouble ,LOUROUX DE BOUBLE ,3330,3152,83,46.216667,2.983333,1.01
+ Louroux-Hodement ,LOUROUX HODEMENT ,3190,3153,83,46.466667,2.716667,1.4
+ Luneau ,LUNEAU ,3130,3154,83,46.366667,3.95,2.36
+ Lurcy-Lévis ,LURCY LEVIS ,3320,3155,83,46.716667,2.933333,2.49
+ Lusigny ,LUSIGNY ,3230,3156,83,46.6,3.483333,1.68
+ Magnet ,MAGNET ,3260,3157,83,46.216667,3.5,1
+ Maillet ,MAILLET ,3190,3158,83,46.483333,2.65,1.6
+ Malicorne ,MALICORNE ,3600,3159,83,46.3,2.783333,1.19
+ Marcenat ,MARCENAT ,3260,3160,83,46.233333,3.5,1.1
+ Marcillat-en-Combraille ,MARCILLAT EN COMBRAILLE ,3420,3161,83,46.166667,2.633333,1.65
+ Marigny ,MARIGNY ,3210,3162,83,46.583333,3.2,1.57
+ Mariol ,MARIOL ,3270,3163,83,46.016667,3.5,2.33
+ Le Mayet-d'École ,LE MAYET D ECOLE,3800,3164,83,46.166667,3.233333,1.3
+ Le Mayet-de-Montagne ,LE MAYET DE MONTAGNE,3250,3165,83,46.066667,3.666667,1.99
+ Mazerier ,MAZERIER ,3800,3166,83,46.133333,3.183333,1.53
+ Mazirat ,MAZIRAT ,3420,3167,83,46.233333,2.533333,1.95
+ Meaulne ,MEAULNE ,3360,3168,83,46.6,2.616667,1.7
+ Meillard ,MEILLARD ,3500,3169,83,46.4,3.233333,1.32
+ Meillers ,MEILLERS ,3210,3170,83,46.5,3.083333,1.09
+ Mercy ,MERCY ,3340,3171,83,46.45,3.516667,1.15
+ Mesples ,MESPLES ,3370,3172,83,46.433333,2.35,2.51
+ Molinet ,MOLINET ,3510,3173,83,46.466667,3.933333,2.31
+ Molles ,MOLLES ,3300,3174,83,46.1,3.566667,1.76
+ Monestier ,MONESTIER ,3140,3175,83,46.25,3.116667,0.73
+ Monétay-sur-Allier ,MONETAY SUR ALLIER ,3500,3176,83,46.383333,3.3,1.17
+ Monétay-sur-Loire ,MONETAY SUR LOIRE ,3470,3177,83,46.433333,3.816667,1.96
+ Montaigüet-en-Forez ,MONTAIGUET EN FOREZ ,3130,3178,83,46.266667,3.8,1.9
+ Montaigu-le-Blin ,MONTAIGU LE BLIN ,3150,3179,83,46.3,3.5,1.01
+ Montbeugny ,MONTBEUGNY ,3340,3180,83,46.533333,3.483333,1.43
+ Montcombroux-les-Mines ,MONTCOMBROUX LES MINES ,3130,3181,83,46.35,3.733333,1.7
+ Monteignet-sur-l'Andelot ,MONTEIGNET SUR L ANDELOT,3800,3182,83,46.116667,3.25,1.65
+ Le Montet ,LE MONTET ,3240,3183,83,46.4,3.05,0.56
+ Montilly ,MONTILLY ,3000,3184,83,46.616667,3.25,1.8
+ Montluçon ,MONTLUCON ,3100,3185,83,46.333333,2.6,1.75
+ Montmarault ,MONTMARAULT ,3390,3186,83,46.316667,2.95,0.68
+ Montoldre ,MONTOLDRE ,3150,3187,83,46.333333,3.45,0.84
+ Montord ,MONTORD ,3500,3188,83,46.3,3.233333,0.76
+ Montvicq ,MONTVICQ ,3170,3189,83,46.316667,2.816667,1.09
+ Moulins ,MOULINS ,3000,3190,83,46.566667,3.333333,1.45
+ Murat ,MURAT ,3390,3191,83,46.4,2.916667,1.65
+ Nades ,NADES ,3450,3192,83,46.166667,2.983333,1.42
+ Nassigny ,NASSIGNY ,3190,3193,83,46.5,2.6,1.75
+ Naves ,NAVES ,3330,3194,83,46.183333,3.1,1.28
+ Néris-les-Bains ,NERIS LES BAINS ,3310,3195,83,46.283333,2.666667,1.55
+ Neuilly-en-Donjon ,NEUILLY EN DONJON ,3130,3196,83,46.35,3.883333,2.16
+ Neuilly-le-Réal ,NEUILLY LE REAL ,3340,3197,83,46.45,3.416667,0.74
+ Neure ,NEURE ,3320,3198,83,46.75,2.983333,2.72
+ Neuvy ,NEUVY ,3000,3200,83,46.55,3.283333,1.34
+ Nizerolles ,NIZEROLLES ,3250,3201,83,46.1,3.633333,1.76
+ Noyant-d'Allier ,NOYANT D ALLIER ,3210,3202,83,46.483333,3.116667,0.88
+ Paray-le-Frésil ,PARAY LE FRESIL ,3230,3203,83,46.65,3.616667,2.03
+ Périgny ,PERIGNY ,3120,3205,83,46.25,3.55,1.44
+ La Petite-Marche ,LA PETITE MARCHE ,3420,3206,83,46.2,2.566667,1.85
+ Pierrefitte-sur-Loire ,PIERREFITTE SUR LOIRE ,3470,3207,83,46.5,3.816667,1.96
+ Poëzat ,POEZAT ,3800,3209,83,46.083333,3.216667,1.88
+ Pouzy-Mésangy ,POUZY MESANGY ,3320,3210,83,46.716667,3,2.49
+ Prémilhat ,PREMILHAT ,3410,3211,83,46.316667,2.533333,1.95
+ Quinssaines ,QUINSSAINES ,3380,3212,83,46.333333,2.516667,2.01
+ Reugny ,REUGNY ,3190,3213,83,46.466667,2.616667,1.7
+ Rocles ,ROCLES ,3240,3214,83,46.433333,3.033333,0.94
+ Rongères ,RONGERES ,3150,3215,83,46.3,3.45,0.84
+ Ronnet ,RONNET ,3420,3216,83,46.2,2.7,1.5
+ Saint-Aubin-le-Monial ,SAINT AUBIN LE MONIAL,3160,3218,83,46.516667,3.016667,1.21
+ Saint-Bonnet-de-Four ,SAINT BONNET DE FOUR,3390,3219,83,46.316667,2.916667,0.79
+ Saint-Bonnet-de-Rochefort ,SAINT BONNET DE ROCHEFORT,3800,3220,83,46.15,3.133333,1.62
+ Saint-Caprais ,SAINT CAPRAIS ,3190,3222,83,46.55,2.733333,1.66
+ Saint-Désiré ,SAINT DESIRE ,3370,3225,83,46.5,2.433333,2.26
+ Saint-Didier-en-Donjon ,SAINT DIDIER EN DONJON,3130,3226,83,46.383333,3.85,2.06
+ Saint-Éloy-d'Allier ,SAINT ELOY D ALLIER,3370,3228,83,46.483333,2.35,2.51
+ Saint-Ennemond ,SAINT ENNEMOND ,3400,3229,83,46.666667,3.416667,2.14
+ Saint-Étienne-de-Vicq ,SAINT ETIENNE DE VICQ,3300,3230,83,46.183333,3.533333,1.19
+ Saint-Fargeol ,SAINT FARGEOL ,3420,3231,83,46.133333,2.633333,1.65
+ Saint-Félix ,SAINT FELIX ,3260,3232,83,46.233333,3.483333,0.94
+ Saint-Genest ,SAINT GENEST ,3310,3233,83,46.266667,2.6,1.75
+ Saint-Gérand-de-Vaux ,SAINT GERAND DE VAUX,3340,3234,83,46.366667,3.4,1.13
+ Saint-Gérand-le-Puy ,SAINT GERAND LE PUY,3150,3235,83,46.25,3.516667,1.71
+ Saint-Germain-des-Fossés ,SAINT GERMAIN DES FOSSES,3260,3236,83,46.2,3.433333,1.34
+ Saint-Germain-de-Salles ,SAINT GERMAIN DE SALLES,3140,3237,83,46.183333,3.216667,1.29
+ Saint-Léger-sur-Vouzance ,SAINT LEGER SUR VOUZANCE,3130,3239,83,46.4,3.933333,2.31
+ Saint-Léon ,SAINT LEON ,3220,3240,83,46.4,3.683333,1.55
+ Saint-Léopardin-d'Augy ,SAINT LEOPARDIN D AUGY,3160,3241,83,46.683333,3.116667,2.26
+ Saint-Loup ,SAINT LOUP ,3150,3242,83,46.35,3.383333,1.91
+ Saint-Marcel-en-Murat ,SAINT MARCEL EN MURAT,3390,3243,83,46.333333,3.016667,1.39
+ Saint-Marcel-en-Marcillat ,SAINT MARCEL EN MARCILLAT,3420,3244,83,46.15,2.583333,1.8
+ Saint-Martin-des-Lais ,SAINT MARTIN DES LAIS,3230,3245,83,46.666667,3.65,2.14
+ Saint-Martinien ,SAINT MARTINIEN ,3380,3246,83,46.333333,2.466667,2.16
+ Saint-Menoux ,SAINT MENOUX ,3210,3247,83,46.583333,3.15,1.57
+ Saint-Nicolas-des-Biefs ,SAINT NICOLAS DES BIEFS,3250,3248,83,46.066667,3.783333,1.99
+ Saint-Palais ,SAINT PALAIS ,3370,3249,83,46.433333,2.3,2.67
+ Saint-Pierre-Laval ,SAINT PIERRE LAVAL ,42620,3250,83,46.2,3.783333,1.85
+ Saint-Plaisir ,SAINT PLAISIR ,3160,3251,83,46.616667,2.966667,1.8
+ Saint-Pont ,SAINT PONT ,3110,3252,83,46.166667,3.3,1.3
+ Saint-Pourçain-sur-Besbre ,SAINT POURCAIN SUR BESBRE,3290,3253,83,46.466667,3.65,1.45
+ Saint-Pourçain-sur-Sioule ,SAINT POURCAIN SUR SIOULE,3500,3254,83,46.3,3.283333,0.71
+ Saint-Priest-d'Andelot ,SAINT PRIEST D ANDELOT,3800,3255,83,46.066667,3.166667,1.99
+ Saint-Priest-en-Murat ,SAINT PRIEST EN MURAT,3390,3256,83,46.35,2.916667,0.82
+ Saint-Prix ,SAINT PRIX ,3120,3257,83,46.233333,3.65,1.45
+ Saint-Rémy-en-Rollat ,SAINT REMY EN ROLLAT,3110,3258,83,46.183333,3.4,1.5
+ Saint-Sauvier ,SAINT SAUVIER ,3370,3259,83,46.383333,2.333333,2.56
+ Saint-Sornin ,SAINT SORNIN ,3240,3260,83,46.416667,3.016667,1.11
+ Sainte-Thérence ,SAINTE THERENCE ,3420,3261,83,46.233333,2.55,1.9
+ Saint-Voir ,SAINT VOIR ,3220,3263,83,46.4,3.516667,1.5
+ Saint-Yorre ,SAINT YORRE ,3270,3264,83,46.066667,3.466667,1.99
+ Saligny-sur-Roudon ,SALIGNY SUR ROUDON ,3470,3265,83,46.466667,3.75,1.75
+ Sanssat ,SANSSAT ,3150,3266,83,46.266667,3.466667,0.89
+ Saulcet ,SAULCET ,3500,3267,83,46.333333,3.266667,0.28
+ Saulzet ,SAULZET ,3800,3268,83,46.133333,3.216667,1.53
+ Sauvagny ,SAUVAGNY ,3430,3269,83,46.45,2.816667,1.09
+ Sazeret ,SAZERET ,3390,3270,83,46.35,2.966667,0.64
+ Serbannes ,SERBANNES ,3110,3271,83,46.1,3.366667,1.76
+ Servilly ,SERVILLY ,3120,3272,83,46.283333,3.6,1.3
+ Seuillet ,SEUILLET ,3260,3273,83,46.2,3.466667,1.07
+ Sorbier ,SORBIER ,3220,3274,83,46.366667,3.666667,1.5
+ Souvigny ,SOUVIGNY ,3210,3275,83,46.533333,3.183333,1.23
+ Sussat ,SUSSAT ,3450,3276,83,46.15,3.05,1.42
+ Target ,TARGET ,3140,3277,83,46.3,3.05,1.99
+ Taxat-Senat ,TAXAT SENAT ,3140,3278,83,46.2,3.133333,1.07
+ Terjat ,TERJAT ,3420,3280,83,46.2,2.616667,1.7
+ Le Theil ,LE THEIL ,3240,3281,83,46.35,3.133333,1.24
+ Theneuille ,THENEUILLE ,3350,3282,83,46.583333,2.866667,1.57
+ Thiel-sur-Acolin ,THIEL SUR ACOLIN ,3230,3283,83,46.516667,3.583333,1.4
+ Thionne ,THIONNE ,3220,3284,83,46.4,3.566667,1.19
+ Tortezais ,TORTEZAIS ,3430,3285,83,46.45,2.866667,0.94
+ Toulon-sur-Allier ,TOULON SUR ALLIER ,3400,3286,83,46.516667,3.366667,1.11
+ Tréban ,TREBAN ,3240,3287,83,46.4,3.166667,1.38
+ Treignat ,TREIGNAT ,3380,3288,83,46.35,2.333333,2.56
+ Tréteau ,TRETEAU ,3220,3289,83,46.366667,3.533333,1.16
+ Trévol ,TREVOL ,3460,3290,83,46.633333,3.3,1.91
+ Trézelles ,TREZELLES ,3220,3291,83,46.333333,3.6,1.3
+ Tronget ,TRONGET ,3240,3292,83,46.416667,3.066667,0.42
+ Urçay ,URCAY ,3360,3293,83,46.633333,2.6,1.91
+ Ussel-d'Allier ,USSEL D ALLIER ,3140,3294,83,46.216667,3.183333,0.96
+ Valignat ,VALIGNAT ,3330,3295,83,46.183333,3.066667,1.19
+ Valigny ,VALIGNY ,3360,3296,83,46.716667,2.816667,2.49
+ Vallon-en-Sully ,VALLON EN SULLY ,3190,3297,83,46.533333,2.6,1.75
+ Varennes-sur-Allier ,VARENNES SUR ALLIER ,3150,3298,83,46.316667,3.4,1.24
+ Varennes-sur-Tèche ,VARENNES SUR TECHE ,3220,3299,83,46.316667,3.633333,1.4
+ Vaumas ,VAUMAS ,3220,3300,83,46.45,3.633333,1.4
+ Vaux ,VAUX ,3190,3301,83,46.425,2.6,-1
+ Veauce ,VEAUCE ,3450,3302,83,46.166667,3.066667,1.3
+ Venas ,VENAS ,3190,3303,83,46.466667,2.766667,1.67
+ Vendat ,VENDAT ,3110,3304,83,46.15,3.35,1.42
+ Verneix ,VERNEIX ,3190,3305,83,46.4,2.666667,1.55
+ Verneuil-en-Bourbonnais ,VERNEUIL EN BOURBONNAIS ,3500,3307,83,46.333333,3.25,0.23
+ Vernusse ,VERNUSSE ,3390,3308,83,46.283333,2.983333,1.08
+ Le Veurdre ,LE VEURDRE ,3320,3309,83,46.75,3.05,2.72
+ Vichy ,VICHY ,3200,3310,83,46.116667,3.416667,1.65
+ Vicq ,VICQ ,3450,3311,83,46.133333,3.1,1.53
+ Vieure ,VIEURE ,3430,3312,83,46.5,2.883333,1.5
+ Le Vilhain ,LE VILHAIN ,3350,3313,83,46.566667,2.8,1.45
+ Villebret ,VILLEBRET ,3310,3314,83,46.266667,2.633333,1.65
+ Villefranche-d'Allier ,VILLEFRANCHE D ALLIER ,3430,3315,83,46.4,2.866667,1.49
+ Villeneuve-sur-Allier ,VILLENEUVE SUR ALLIER ,3460,3316,83,46.65,3.25,2.03
+ Viplaix ,VIPLAIX ,3370,3317,83,46.45,2.383333,2.41
+ Vitray ,VITRAY ,3360,3318,83,46.616667,2.666667,1.8
+ Voussac ,VOUSSAC ,3140,3319,83,46.316667,3.066667,1.92
+ Ygrande ,YGRANDE ,3160,3320,83,46.55,2.95,1.36
+ Yzeure ,YZEURE ,3400,3321,83,46.566667,3.35,1.45
+ Aiglun ,AIGLUN ,4510,4001,93,44.066667,6.133333,0.91
+ Ainac ,AINAC ,4000,4002,93,44.216667,6.2,1.03
+ Albiosc ,ALBIOSC ,4550,4003,93,43.75,6.016667,2.01
+ Allemagne-en-Provence ,ALLEMAGNE EN PROVENCE ,4550,4004,93,43.783333,6.016667,1.81
+ Allons ,ALLONS ,4170,4005,93,43.966667,6.6,1.75
+ Allos ,ALLOS ,4260,4006,93,44.233333,6.633333,1.88
+ Angles ,ANGLES ,4170,4007,93,43.933333,6.566667,1.63
+ Annot ,ANNOT ,4240,4008,93,43.966667,6.666667,2.01
+ Archail ,ARCHAIL ,4420,4009,93,44.116667,6.333333,0.98
+ Argens ,ARGENS ,4170,4010,93,44.05,6.516667,1.44
+ Astoin ,ASTOIN ,4250,4011,93,44.366667,6.166667,1.79
+ Aubenas-les-Alpes ,AUBENAS LES ALPES ,4110,4012,93,43.933333,5.683333,1.73
+ Aubignosc ,AUBIGNOSC ,4200,4013,93,44.133333,5.966667,0.74
+ Augès ,AUGES ,4310,4014,93,44.033333,5.9,0.96
+ Auribeau ,AURIBEAU ,4380,4015,93,44.2,6.166667,1.16
+ Authon ,AUTHON ,4200,4016,93,44.233333,6.133333,1.85
+ Auzet ,AUZET ,4140,4017,93,44.3,6.3,1.38
+ Banon ,BANON ,4150,4018,93,44.033333,5.633333,1.92
+ Barcelonnette ,BARCELONNETTE ,4400,4019,93,44.383333,6.65,1.94
+ Barles ,BARLES ,4140,4020,93,44.266667,6.266667,1.29
+ Barras ,BARRAS ,4380,4021,93,44.1,6.116667,1.91
+ Barrême ,BARREME ,4330,4022,93,43.95,6.366667,0.87
+ Bayons ,BAYONS ,4250,4023,93,44.333333,6.166667,1.58
+ Beaujeu ,BEAUJEU ,4420,4024,93,44.2,6.366667,0.87
+ Beauvezer ,BEAUVEZER ,4370,4025,93,44.15,6.6,1.75
+ Bellaffaire ,BELLAFFAIRE ,4250,4026,93,44.416667,6.183333,2.1
+ Bevons ,BEVONS ,4200,4027,93,44.183333,5.9,0.91
+ Beynes ,BEYNES ,4270,4028,93,43.983333,6.233333,0.57
+ Blégiers ,BLEGIERS ,4420,4029,93,44.183333,6.416667,1.17
+ Blieux ,BLIEUX ,4330,4030,93,43.866667,6.366667,1.92
+ Bras-d'Asse ,BRAS D ASSE ,4270,4031,93,43.916667,6.116667,1.35
+ Braux ,BRAUX ,4240,4032,93,43.983333,6.683333,2.07
+ La Bréole ,LA BREOLE ,4340,4033,93,44.45,6.3,2.3
+ La Brillanne ,LA BRILLANNE ,4700,4034,93,43.916667,5.883333,1.18
+ Brunet ,BRUNET ,4210,4035,93,43.9,6.033333,1.09
+ Le Brusquet ,LE BRUSQUET ,4420,4036,93,44.15,6.3,1.03
+ Le Caire ,LE CAIRE ,4250,4037,93,44.366667,6.05,1.79
+ Carniol ,CARNIOL ,4150,4038,93,43.966667,5.6,2.05
+ Castellane ,CASTELLANE ,4120,4039,93,43.85,6.516667,1.44
+ Le Castellard Melan ,LE CASTELLARD MELAN ,4380,4040,93,44.183333,6.133333,0.66
+ Le Castellet ,LE CASTELLET ,4700,4041,93,43.933333,5.983333,0.88
+ Castellet-lès-Sausses ,CASTELLET LES SAUSSES ,4320,4042,93,43.983333,6.766667,2.39
+ Céreste ,CERESTE ,4280,4045,93,43.85,5.583333,2.11
+ Champtercier ,CHAMPTERCIER ,4660,4047,93,44.1,6.166667,0.14
+ Chasteuil ,CHASTEUIL ,4120,4048,93,43.833333,6.433333,1.5
+ Châteaufort ,CHATEAUFORT ,4250,4050,93,44.266667,6.016667,1.43
+ Châteauneuf-Miravail ,CHATEAUNEUF MIRAVAIL ,4200,4051,93,44.15,5.716667,1.61
+ Châteauneuf-les-Moustiers ,CHATEAUNEUF LES MOUSTIERS ,4120,4052,93,43.8,6.35,1.74
+ Châteauneuf-Val-Saint-Donat ,CHATEAUNEUF VAL SAINT DONAT,4200,4053,93,44.1,5.95,0.89
+ Châteauredon ,CHATEAUREDON ,4270,4054,93,44.016667,6.216667,0.88
+ Chaudon-Norante ,CHAUDON NORANTE ,4330,4055,93,43.983333,6.35,0.8
+ Clamensane ,CLAMENSANE ,4250,4057,93,44.316667,6.066667,1.48
+ Claret ,CLARET ,5110,4058,93,44.366667,5.95,1.79
+ Clumanc ,CLUMANC ,4330,4059,93,44.033333,6.416667,1.25
+ Colmars ,COLMARS ,4370,4061,93,44.183333,6.633333,1.88
+ Corbières ,CORBIERES ,4220,4063,93,43.766667,5.75,1.91
+ Cruis ,CRUIS ,4230,4065,93,44.066667,5.833333,1.41
+ Curbans ,CURBANS ,5110,4066,93,44.433333,6.033333,2.2
+ Curel ,CUREL ,4200,4067,93,44.183333,5.666667,1.9
+ Dauphin ,DAUPHIN ,4300,4068,93,43.9,5.783333,1.35
+ Demandolx ,DEMANDOLX ,4120,4069,93,43.866667,6.583333,1.69
+ Les Dourbes ,LES DOURBES ,4000,4071,93,44.066667,6.35,1.55
+ Draix ,DRAIX ,4420,4072,93,44.133333,6.35,0.8
+ Enchastrayes ,ENCHASTRAYES ,4400,4073,93,44.366667,6.7,2.13
+ Entrages ,ENTRAGES ,4000,4074,93,44.05,6.266667,1.35
+ Entrepierres ,ENTREPIERRES ,4200,4075,93,44.2,5.983333,0.76
+ Entrevaux ,ENTREVAUX ,4320,4076,93,43.95,6.816667,2.58
+ Entrevennes ,ENTREVENNES ,4700,4077,93,43.933333,6.033333,1.3
+ Eoulx ,EOULX ,4120,4078,93,43.816667,6.55,1.6
+ L'Escale ,L ESCALE ,4160,4079,93,44.083333,6.033333,0.4
+ Esclangon ,ESCLANGON ,4000,4080,93,44.216667,6.283333,0.86
+ Esparron-de-Verdon ,ESPARRON DE VERDON ,4550,4081,93,43.733333,5.983333,2.12
+ Esparron-la-Bâtie ,ESPARRON LA BATIE ,4250,4082,93,44.316667,6.15,1.48
+ Espinouse ,ESPINOUSE ,4510,4083,93,44.016667,6.1,1.22
+ Estoublon ,ESTOUBLON ,4270,4084,93,43.933333,6.166667,0.88
+ Faucon-du-Caire ,FAUCON DU CAIRE ,4250,4085,93,44.4,6.1,1.99
+ Faucon-de-Barcelonnette ,FAUCON DE BARCELONNETTE ,4400,4086,93,44.4,6.683333,2.07
+ Fontienne ,FONTIENNE ,4230,4087,93,44.016667,5.8,1.29
+ Forcalquier ,FORCALQUIER ,4300,4088,93,43.966667,5.783333,1.35
+ Le Fugeret ,LE FUGERET ,4240,4090,93,44,6.633333,1.88
+ Ganagobie ,GANAGOBIE ,4310,4091,93,44,5.916667,1.07
+La Garde,GARDE ,4120,4092,93,43.833333,6.55,1.56
+ Gigors ,GIGORS ,4250,4093,93,44.416667,6.15,2.1
+ Gréoux-les-Bains ,GREOUX LES BAINS ,4800,4094,93,43.75,5.883333,2.01
+ L'Hospitalet ,L HOSPITALET ,4150,4095,93,44.083333,5.7,1.67
+ Jausiers ,JAUSIERS ,4850,4096,93,44.416667,6.733333,2.26
+ La Javie ,LA JAVIE ,4420,4097,93,44.166667,6.35,0.8
+ Lambert ,LAMBERT ,4000,4098,93,44.216667,6.216667,0.88
+ Lambruisse ,LAMBRUISSE ,4170,4099,93,44.05,6.433333,1.34
+ Larche ,LARCHE ,4540,4100,93,44.45,6.85,2.71
+ Lardiers ,LARDIERS ,4230,4101,93,44.05,5.716667,1.61
+ Le Lauzet-Ubaye ,LE LAUZET UBAYE ,4340,4102,93,44.433333,6.433333,2.2
+ Limans ,LIMANS ,4300,4104,93,43.983333,5.733333,1.59
+ Lincel ,LINCEL ,4870,4105,93,43.9,5.7,1.67
+ Lurs ,LURS ,4700,4106,93,43.966667,5.883333,1.21
+ Majastres ,MAJASTRES ,4270,4107,93,43.916667,6.3,1.41
+ Malijai ,MALIJAI ,4350,4108,93,44.05,6.033333,0.4
+ Mallemoisson ,MALLEMOISSON ,4510,4110,93,44.05,6.133333,0.71
+ Mane ,MANE ,4300,4111,93,43.933333,5.766667,1.42
+ Manosque ,MANOSQUE ,4100,4112,93,43.833333,5.783333,1.5
+ Marcoux ,MARCOUX ,4420,4113,93,44.133333,6.283333,1.42
+ Mariaud ,MARIAUD ,4420,4114,93,44.25,6.433333,2.08
+ Méailles ,MEAILLES ,4240,4115,93,44.033333,6.633333,1.88
+ Les Mées ,LES MEES ,4190,4116,93,44.033333,5.983333,0.59
+ Mélan ,MELAN ,4380,4117,93,44.2,6.133333,0.92
+ Melve ,MELVE ,4250,4118,93,44.35,5.983333,1.69
+ Méolans ,MEOLANS ,4340,4119,93,44.4,6.5,1.99
+ Meyronnes ,MEYRONNES ,4540,4120,93,44.483333,6.8,2.52
+ Mézel ,MEZEL ,4270,4121,93,43.983333,6.2,0.57
+ Mirabeau ,MIRABEAU ,4510,4122,93,44.066667,6.083333,1.15
+ Mison ,MISON ,4200,4123,93,44.266667,5.833333,1.17
+ Montclar ,MONTCLAR ,4140,4126,93,44.4,6.333333,1.99
+ Montfort ,MONTFORT ,4600,4127,93,44.066667,5.966667,1
+ Montfuron ,MONTFURON ,4110,4128,93,43.833333,5.7,1.67
+ Montjustin ,MONTJUSTIN ,4110,4129,93,43.85,5.633333,1.92
+ Montpezat ,MONTPEZAT ,4500,4131,93,43.75,6.1,2.01
+ Moriez ,MORIEZ ,4170,4133,93,43.95,6.466667,1.25
+ La Motte-du-Caire ,LA MOTTE DU CAIRE,4250,4134,93,44.35,6.033333,1.69
+ Moustiers-Sainte-Marie ,MOUSTIERS SAINTE MARIE ,4360,4135,93,43.85,6.216667,1.4
+ Nibles ,NIBLES ,4250,4137,93,44.283333,6.016667,1.29
+ Niozelles ,NIOZELLES ,4300,4138,93,43.933333,5.833333,1.16
+ Noyers-sur-Jabron ,NOYERS SUR JABRON ,4200,4139,93,44.166667,5.833333,1.16
+ Les Omergues ,LES OMERGUES ,4200,4140,93,44.166667,5.6,2.45
+ Ongles ,ONGLES ,4230,4141,93,44.033333,5.733333,1.54
+ Oppedette ,OPPEDETTE ,4110,4142,93,43.933333,5.6,2.05
+ Oraison ,ORAISON ,4700,4143,93,43.916667,5.916667,0.99
+ Peipin ,PEIPIN ,4200,4145,93,44.133333,5.95,0.72
+ Peyroules ,PEYROULES ,4120,4148,93,43.816667,6.633333,1.88
+ Peyruis ,PEYRUIS ,4310,4149,93,44.033333,5.933333,0.96
+ Piégut ,PIEGUT ,5130,4150,93,44.45,6.116667,2.3
+ Pierrerue ,PIERRERUE ,4300,4151,93,43.95,5.833333,1.16
+ Pierrevert ,PIERREVERT ,4860,4152,93,43.816667,5.75,1.6
+ Le Poil ,LE POIL ,4270,4153,93,43.933333,6.3,1.34
+ Pontis ,PONTIS ,5160,4154,93,44.5,6.366667,2.61
+ Puimichel ,PUIMICHEL ,4700,4156,93,43.966667,6.016667,1.12
+ Puimoisson ,PUIMOISSON ,4410,4157,93,43.866667,6.133333,1.29
+ Quinson ,QUINSON ,4500,4158,93,43.7,6.033333,2.32
+ Redortiers ,REDORTIERS ,4150,4159,93,44.083333,5.65,1.86
+ Reillanne ,REILLANNE ,4110,4160,93,43.883333,5.666667,1.8
+ Revest-des-Brousses ,REVEST DES BROUSSES ,4150,4162,93,43.966667,5.666667,1.8
+ Revest-du-Bion ,REVEST DU BION ,4150,4163,93,44.083333,5.55,2.24
+ Revest-Saint-Martin ,REVEST SAINT MARTIN ,4230,4164,93,44.033333,5.816667,1.23
+ Reynier ,REYNIER ,4250,4165,93,44.3,6.116667,1.38
+ Riez ,RIEZ ,4500,4166,93,43.816667,6.1,1.6
+ La Rochegiron ,LA ROCHEGIRON ,4150,4169,93,44.083333,5.65,1.86
+ Rougon ,ROUGON ,4120,4171,93,43.8,6.4,1.7
+ Roumoules ,ROUMOULES ,4500,4172,93,43.833333,6.133333,1.5
+ Saint-André-les-Alpes ,SAINT ANDRE LES ALPES,4170,4173,93,43.966667,6.5,1.37
+ Saint-Benoît ,SAINT BENOIT ,4240,4174,93,43.966667,6.733333,2.26
+ Sainte-Croix-à-Lauze ,SAINTE CROIX A LAUZE,4110,4175,93,43.916667,5.616667,1.99
+ Saint-Étienne-les-Orgues ,SAINT ETIENNE LES ORGUES,4230,4178,93,44.05,5.783333,1.35
+ Saint-Geniez ,SAINT GENIEZ ,4200,4179,93,44.25,6.05,1.23
+ Saint-Jacques ,SAINT JACQUES ,4330,4180,93,43.966667,6.416667,1.06
+ Saint-Jeannet ,SAINT JEANNET ,4270,4181,93,43.95,6.116667,1.24
+ Saint-Julien-d'Asse ,SAINT JULIEN D ASSE,4270,4182,93,43.916667,6.1,1.57
+ Saint-Julien-du-Verdon ,SAINT JULIEN DU VERDON,4170,4183,93,43.916667,6.533333,1.5
+ Saint-Jurs ,SAINT JURS ,4410,4184,93,43.9,6.2,1.09
+ Saint-Laurent-du-Verdon ,SAINT LAURENT DU VERDON,4500,4186,93,43.716667,6.066667,2.22
+ Saint-Lions ,SAINT LIONS ,4330,4187,93,43.983333,6.4,0.99
+ Saint-Maime ,SAINT MAIME ,4300,4188,93,43.9,5.8,1.29
+ Saint-Martin-de-Brômes ,SAINT MARTIN DE BROMES,4800,4189,93,43.766667,5.95,1.91
+ Saint-Martin-les-Eaux ,SAINT MARTIN LES EAUX,4870,4190,93,43.883333,5.75,1.48
+ Saint-Michel-l'Observatoire ,SAINT MICHEL L OBSERVATOIRE,4870,4192,93,43.916667,5.716667,1.61
+ Saint-Symphorien ,SAINT SYMPHORIEN ,4200,4196,93,44.183333,6.05,1.18
+ Sainte-Tulle ,SAINTE TULLE ,4220,4197,93,43.783333,5.766667,1.81
+ Saint-Vincent-les-Forts ,SAINT VINCENT LES FORTS,4340,4198,93,44.45,6.383333,2.3
+ Saint-Vincent-sur-Jabron ,SAINT VINCENT SUR JABRON,4200,4199,93,44.166667,5.733333,1.54
+ Salignac ,SALIGNAC ,4290,4200,93,44.166667,5.983333,1.28
+ Saumane ,SAUMANE ,4150,4201,93,44.083333,5.683333,1.73
+ Sausses ,SAUSSES ,4320,4202,93,44.016667,6.783333,2.45
+ Selonnet ,SELONNET ,4460,4203,93,44.366667,6.3,1.79
+ Sénez ,SENEZ ,4330,4204,93,43.916667,6.4,1
+ Seyne ,SEYNE ,4140,4205,93,44.35,6.35,1.69
+ Sigonce ,SIGONCE ,4300,4206,93,44,5.833333,1.44
+ Sigoyer ,SIGOYER ,4200,4207,93,44.316667,5.95,1.48
+ Simiane-la-Rotonde ,SIMIANE LA ROTONDE ,4150,4208,93,43.983333,5.566667,2.18
+ Sisteron ,SISTERON ,4200,4209,93,44.2,5.933333,0.78
+ Soleilhas ,SOLEILHAS ,4120,4210,93,43.85,6.65,1.94
+ Sourribes ,SOURRIBES ,4290,4211,93,44.15,6.016667,0.51
+ Taloire ,TALOIRE ,4120,4212,93,43.816667,6.45,1.6
+ Tanaron ,TANARON ,4000,4213,93,44.2,6.266667,0.76
+ Tartonne ,TARTONNE ,4330,4214,93,44.066667,6.383333,1.73
+ Taulanne ,TAULANNE ,4120,4215,93,43.866667,6.45,1.29
+ Thèze ,THEZE ,4200,4216,93,44.316667,5.916667,1.48
+ Thoard ,THOARD ,4380,4217,93,44.15,6.15,0.53
+ Thorame-Basse ,THORAME BASSE ,4170,4218,93,44.083333,6.5,1.37
+ Thorame-Haute ,THORAME HAUTE ,4170,4219,93,44.1,6.55,1.56
+ Les Thuiles ,LES THUILES ,4400,4220,93,44.4,6.566667,1.99
+ Trévans ,TREVANS ,4270,4221,93,43.95,6.233333,0.78
+ Turriers ,TURRIERS ,4250,4222,93,44.4,6.166667,1.99
+ Ubraye ,UBRAYE ,4240,4224,93,43.9,6.7,2.13
+ Vachères ,VACHERES ,4110,4227,93,43.933333,5.633333,1.92
+ Valavoire ,VALAVOIRE ,4250,4228,93,44.266667,6.083333,1.17
+ Valbelle ,VALBELLE ,4200,4229,93,44.15,5.883333,0.97
+ Valensole ,VALENSOLE ,4210,4230,93,43.833333,5.983333,1.5
+ Valernes ,VALERNES ,4200,4231,93,44.266667,5.966667,1.17
+ Vaumeilh ,VAUMEILH ,4200,4233,93,44.283333,5.95,1.27
+ Venterol ,VENTEROL ,5130,4234,93,44.45,6.1,2.3
+ Verdaches ,VERDACHES ,4140,4235,93,44.266667,6.333333,1.17
+ Vergons ,VERGONS ,4170,4236,93,43.916667,6.583333,1.69
+ Le Vernet ,LE VERNET ,4140,4237,93,44.283333,6.4,1.27
+ Vilhosc ,VILHOSC ,4200,4238,93,44.183333,6.016667,0.91
+ Villars-Colmars ,VILLARS COLMARS ,4640,4240,93,44.166667,6.6,1.75
+ Villemus ,VILLEMUS ,4110,4241,93,43.866667,5.7,1.67
+ Villeneuve ,VILLENEUVE ,4180,4242,93,43.9,5.866667,1.09
+ Villevieille ,VILLEVIEILLE ,4320,4243,93,44.2,6.216667,1.99
+ Volonne ,VOLONNE ,4290,4244,93,44.116667,6.016667,1.22
+ Volx ,VOLX ,4130,4245,93,43.883333,5.85,1.19
+ Revel ,REVEL ,4340,4900,93,44.4,6.5,1.99
+ Saint-Auban ,SAINT AUBAN ,4600,4920,93,44.066667,6,1
+ Pra-Loup ,PRA LOUP ,4400,4923,93,44.366667,6.616667,1.82
+ Chabrières ,CHABRIERES ,4270,4924,93,44,6.283333,1.25
+ Abriès ,ABRIES ,5460,5001,72,44.783333,6.933333,2.69
+ Agnières-en-Dévoluy ,AGNIERES EN DEVOLUY ,5250,5002,72,44.7,5.883333,0.86
+ Aiguilles ,AIGUILLES ,5470,5003,72,44.783333,6.866667,2.47
+ Ancelle ,ANCELLE ,5260,5004,72,44.633333,6.2,0.89
+ Antonaves ,ANTONAVES ,5300,5005,72,44.266667,5.8,2.15
+ L'Argentière-la-Bessée ,L ARGENTIERE LA BESSEE,5120,5006,72,44.783333,6.55,1.43
+ Arvieux ,ARVIEUX ,5350,5007,72,44.766667,6.733333,2.03
+ Aspres-lès-Corps ,ASPRES LES CORPS ,5800,5009,72,44.8,5.983333,1.55
+ Aspres-sur-Buëch ,ASPRES SUR BUECH ,5140,5010,72,44.516667,5.75,1.36
+ Avançon ,AVANCON ,5230,5011,72,44.533333,6.183333,1.3
+ Baratier ,BARATIER ,5200,5012,72,44.533333,6.5,1.26
+ Barcillonnette ,BARCILLONNETTE ,5110,5013,72,44.433333,5.916667,1.11
+ Barret-le-Bas ,BARRET LE BAS ,5300,5014,72,44.266667,5.733333,2.15
+ La Bâtie-Montsaléon ,LA BATIE MONTSALEON ,5700,5016,72,44.45,5.75,1.21
+ La Bâtie-Neuve ,LA BATIE NEUVE ,5230,5017,72,44.566667,6.2,0.98
+ La Bâtie-Vieille ,LA BATIE VIEILLE ,5000,5018,72,44.55,6.166667,1.31
+ La Beaume ,LA BEAUME ,5140,5019,72,44.566667,5.633333,1.59
+ Le Bersac ,LE BERSAC ,5700,5021,72,44.416667,5.75,1.21
+ Bréziers ,BREZIERS ,5190,5022,72,44.433333,6.2,1.36
+ Briançon ,BRIANCON ,5100,5023,72,44.9,6.65,2.24
+ Bruis ,BRUIS ,5150,5024,72,44.466667,5.516667,1.98
+ Buissard ,BUISSARD ,5500,5025,72,44.65,6.133333,1.35
+ Ceillac ,CEILLAC ,5600,5026,72,44.666667,6.775,-1
+ Cervières ,CERVIERES ,5100,5027,72,44.866667,6.716667,2.01
+ Chabestan ,CHABESTAN ,5400,5028,72,44.483333,5.783333,1.52
+ Chabottes ,CHABOTTES ,5260,5029,72,44.65,6.183333,0.51
+ Champoléon ,CHAMPOLEON ,5260,5032,72,44.733333,6.233333,2.22
+ Chanousse ,CHANOUSSE ,5700,5033,72,44.35,5.65,1.57
+ Châteauneuf-de-Châbre ,CHATEAUNEUF DE CHABRE ,5300,5034,72,44.283333,5.816667,2.04
+ Châteauneuf-d'Oze ,CHATEAUNEUF D OZE ,5400,5035,72,44.516667,5.866667,0.82
+ Châteauroux ,CHATEAUROUX ,5380,5036,72,44.616667,6.516667,1.32
+ Château-Ville-Vieille ,CHATEAU VILLE VIEILLE ,5470,5038,72,44.766667,6.8,2.25
+ Chauffayer ,CHAUFFAYER ,5800,5039,72,44.75,6.016667,1.2
+ Chorges ,CHORGES ,5230,5040,72,44.55,6.283333,0.73
+ La Cluse ,LA CLUSE ,5250,5042,72,44.633333,5.85,1.35
+ Les Costes ,LES COSTES ,5500,5043,72,44.75,6.033333,1.4
+ Crévoux ,CREVOUX ,5200,5044,72,44.55,6.6,1.82
+ Embrun ,EMBRUN ,5200,5046,72,44.566667,6.5,1.26
+ Éourres ,EOURRES ,26560,5047,72,44.2,5.7,2.61
+ L'Épine ,L EPINE ,5700,5048,72,44.416667,5.616667,1.65
+ Espinasses ,ESPINASSES ,5190,5050,72,44.466667,6.216667,1.21
+ Eyguians ,EYGUIANS ,5300,5053,72,44.35,5.783333,1.57
+ La Fare-en-Champsaur ,LA FARE EN CHAMPSAUR,5500,5054,72,44.666667,6.066667,0.62
+ La Faurie ,LA FAURIE ,5140,5055,72,44.566667,5.733333,1.26
+ Forest-Saint-Julien ,FOREST SAINT JULIEN ,5260,5056,72,44.65,6.133333,1.61
+ Fouillouse ,FOUILLOUSE ,5130,5057,72,44.45,6.016667,1.26
+ La Freissinouse ,LA FREISSINOUSE ,5000,5059,72,44.533333,6.016667,1.21
+ Furmeyer ,FURMEYER ,5400,5060,72,44.533333,5.866667,0.82
+ Gap ,GAP ,5000,5061,72,44.566667,6.083333,0.28
+ Le Glaizil ,LE GLAIZIL ,5800,5062,72,44.75,5.983333,1.2
+ Guillestre ,GUILLESTRE ,5600,5065,72,44.666667,6.65,1.76
+ Les Infournas ,LES INFOURNAS ,5500,5067,72,44.716667,6.1,0.97
+ Jarjayes ,JARJAYES ,5130,5068,72,44.5,6.116667,0.82
+ Lagrand ,LAGRAND ,5300,5069,72,44.333333,5.75,1.69
+ Lardier-et-Valença ,LARDIER ET VALENCA ,5110,5071,72,44.433333,5.966667,0.99
+ Laye ,LAYE ,5500,5072,72,44.633333,6.083333,1.11
+ Lazer ,LAZER ,5300,5073,72,44.35,5.833333,1.57
+ Lettret ,LETTRET ,5130,5074,72,44.466667,6.066667,0.76
+ Manteyer ,MANTEYER ,5400,5075,72,44.533333,5.966667,1.38
+ Méreuil ,MEREUIL ,5700,5076,72,44.383333,5.733333,1.34
+ Molines-en-Queyras ,MOLINES EN QUEYRAS ,5350,5077,72,44.733333,6.85,2.42
+ Monêtier-Allemont ,MONETIER ALLEMONT ,5110,5078,72,44.383333,5.933333,1.34
+ Le Monêtier-les-Bains ,LE MONETIER LES BAINS,5220,5079,72,44.983333,6.516667,2.82
+ Montbrand ,MONTBRAND ,5140,5080,72,44.583333,5.683333,1.43
+ Montclus ,MONTCLUS ,5700,5081,72,44.416667,5.683333,1.43
+ Mont-Dauphin ,MONT DAUPHIN ,5600,5082,72,44.666667,6.616667,1.65
+ Montgardin ,MONTGARDIN ,5230,5084,72,44.55,6.233333,0.38
+ Montgenèvre ,MONTGENEVRE ,5100,5085,72,44.933333,6.716667,2.48
+ Montjay ,MONTJAY ,5150,5086,72,44.366667,5.6,1.7
+ Montmaur ,MONTMAUR ,5400,5087,72,44.583333,5.883333,0.8
+ Montmorin ,MONTMORIN ,5150,5088,72,44.45,5.55,1.87
+ Montrond ,MONTROND ,5700,5089,72,44.383333,5.75,1.34
+ La Motte-en-Champsaur ,LA MOTTE EN CHAMPSAUR,5500,5090,72,44.733333,6.066667,1.09
+ Moydans ,MOYDANS ,5150,5091,72,44.4,5.5,2.03
+ Neffes ,NEFFES ,5000,5092,72,44.5,6.033333,1.22
+ Névache ,NEVACHE ,5100,5093,72,45.01955,6.6044,-1
+ Le Noyer ,LE NOYER ,5500,5095,72,44.7,6.016667,1.15
+ Orcières ,ORCIERES ,5170,5096,72,44.683333,6.333333,0.74
+ Orpierre ,ORPIERRE ,5700,5097,72,44.316667,5.683333,1.8
+ Les Orres ,LES ORRES ,5200,5098,72,44.516667,6.55,1.43
+ Oze ,OZE ,5400,5099,72,44.5,5.8,1.19
+ Pelleautier ,PELLEAUTIER ,5000,5100,72,44.516667,6.016667,1.3
+ La Piarre ,LA PIARRE ,5700,5102,72,44.466667,5.65,1.54
+ Le Poët ,LE POET ,5300,5103,72,44.283333,5.883333,2.04
+ Poligny ,POLIGNY ,5500,5104,72,44.7,6.05,0.86
+ Prunières ,PRUNIERES ,5230,5106,72,44.55,6.333333,1.72
+ Puy-Saint-André ,PUY SAINT ANDRE ,5100,5107,72,44.883333,6.6,2.13
+ Puy-Saint-Eusèbe ,PUY SAINT EUSEBE ,5200,5108,72,44.566667,6.416667,1.77
+ Puy-Saint-Pierre ,PUY SAINT PIERRE ,5100,5109,72,44.9,6.616667,2.24
+ Puy-Saint-Vincent ,PUY SAINT VINCENT ,5290,5110,72,44.833333,6.483333,1.78
+ Puy-Sanières ,PUY SANIERES ,5200,5111,72,44.55,6.433333,1.42
+ Rabou ,RABOU ,5400,5112,72,44.6,6,2.14
+ Rambaud ,RAMBAUD ,5000,5113,72,44.55,6.133333,0.76
+ Réallon ,REALLON ,5160,5114,72,44.6,6.366667,1.2
+ Remollon ,REMOLLON ,5190,5115,72,44.466667,6.166667,1.36
+ Réotier ,REOTIER ,5600,5116,72,44.666667,6.6,1.59
+ Ribeyret ,RIBEYRET ,5150,5117,72,44.416667,5.55,1.87
+ Ribiers ,RIBIERS ,5300,5118,72,44.233333,5.866667,2.38
+ Risoul ,RISOUL ,5600,5119,72,44.65,6.633333,1.7
+ Ristolas ,RISTOLAS ,5460,5120,72,44.766667,6.95,2.75
+ Rochebrune ,ROCHEBRUNE ,5190,5121,72,44.466667,6.183333,0.76
+ La Roche-de-Rame ,LA ROCHE DE RAME,5310,5122,72,44.75,6.583333,1.54
+ La Roche-des-Arnauds ,LA ROCHE DES ARNAUDS,5400,5123,72,44.566667,5.95,1.25
+ La Rochette ,LA ROCHETTE ,5000,5124,72,44.6,6.15,1.33
+ Romette ,ROMETTE ,5000,5125,72,44.583333,6.1,0.59
+ Rosans ,ROSANS ,5150,5126,72,44.383333,5.466667,2.14
+ Saint-André-d'Embrun ,SAINT ANDRE D EMBRUN,5200,5128,72,44.583333,6.533333,1.37
+ Saint-André-de-Rosans ,SAINT ANDRE DE ROSANS,5150,5129,72,44.383333,5.516667,1.98
+ Saint-Apollinaire ,SAINT APOLLINAIRE ,5160,5130,72,44.566667,6.366667,0.82
+ Saint-Auban-d'Oze ,SAINT AUBAN D OZE,5400,5131,72,44.5,5.85,0.88
+ Saint-Chaffrey ,SAINT CHAFFREY ,5330,5133,72,44.916667,6.6,2.36
+ Saint-Crépin ,SAINT CREPIN ,5600,5136,72,44.7,6.6,1.59
+ Saint-Étienne-en-Dévoluy ,SAINT ETIENNE EN DEVOLUY,5250,5139,72,44.7,5.933333,1.13
+ Saint-Étienne-le-Laus ,SAINT ETIENNE LE LAUS,5130,5140,72,44.5,6.166667,1.65
+ Saint-Eusèbe-en-Champsaur ,SAINT EUSEBE EN CHAMPSAUR,5500,5141,72,44.733333,6.033333,1.15
+ Saint-Genis ,SAINT GENIS ,5300,5143,72,44.383333,5.766667,1.34
+ Saint-Jacques-en-Valgodemard ,SAINT JACQUES EN VALGODEMARD,5800,5144,72,44.766667,6.05,1.32
+ Saint-Jean-Saint-Nicolas ,SAINT JEAN SAINT NICOLAS,5260,5145,72,44.666667,6.216667,0.72
+ Saint-Julien-en-Beauchêne ,SAINT JULIEN EN BEAUCHENE,5140,5146,72,44.616667,5.7,1.37
+ Saint-Julien-en-Champsaur ,SAINT JULIEN EN CHAMPSAUR,5500,5147,72,44.666667,6.133333,1.2
+ Saint-Laurent-du-Cros ,SAINT LAURENT DU CROS,5500,5148,72,44.65,6.116667,1.11
+ Saint-Léger-les-Mélèzes ,SAINT LEGER LES MELEZES,5260,5149,72,44.65,6.2,0.51
+ Sainte-Marie ,SAINTE MARIE ,5150,5150,72,44.466667,5.475,-1
+ Saint-Maurice-en-Valgodemard ,SAINT MAURICE EN VALGODEMARD,5800,5152,72,44.8,6.083333,1.55
+ Saint-Michel-de-Chaillol ,SAINT MICHEL DE CHAILLOL,5260,5153,72,44.666667,6.166667,0.65
+ Saint-Pierre-d'Argençon ,SAINT PIERRE D ARGENCON,5140,5154,72,44.516667,5.7,1.37
+ Saint-Pierre-Avez ,SAINT PIERRE AVEZ ,5300,5155,72,44.25,5.766667,2.27
+ Saint-Sauveur ,SAINT SAUVEUR ,5200,5156,72,44.533333,6.516667,1.32
+ Saint-Vérand ,SAINT VERAND ,5350,5157,72,44.7,6.866667,-1
+ Le Saix ,LE SAIX ,5400,5158,72,44.483333,5.833333,0.93
+ Saléon ,SALEON ,5300,5159,72,44.35,5.766667,1.57
+ Salérans ,SALERANS ,5300,5160,72,44.25,5.7,2.27
+ La Saulce ,LA SAULCE ,5110,5162,72,44.416667,6.016667,1.13
+ Savournon ,SAVOURNON ,5700,5165,72,44.416667,5.783333,1.33
+ Sigottier ,SIGOTTIER ,5700,5167,72,44.45,5.7,1.37
+ Sigoyer ,SIGOYER ,5130,5168,72,44.483333,5.966667,2.12
+ Sorbiers ,SORBIERS ,5150,5169,72,44.366667,5.566667,1.81
+ Tallard ,TALLARD ,5130,5170,72,44.466667,6.05,0.76
+ Théus ,THEUS ,5190,5171,72,44.466667,6.2,0.76
+ Trescléoux ,TRESCLEOUX ,5700,5172,72,44.35,5.7,1.57
+ Upaix ,UPAIX ,5300,5173,72,44.316667,5.883333,1.8
+ Val-des-Prés ,VAL DES PRES ,5100,5174,72,44.95,6.683333,2.59
+ Vallouise ,VALLOUISE ,5290,5175,72,44.85,6.483333,1.9
+ Valserres ,VALSERRES ,5130,5176,72,44.483333,6.133333,0.97
+ Vars ,VARS ,5560,5177,72,44.616667,6.683333,1.87
+ Ventavon ,VENTAVON ,5300,5178,72,44.366667,5.9,1.58
+ Veynes ,VEYNES ,5400,5179,72,44.533333,5.816667,0.99
+ Les Vigneaux ,LES VIGNEAUX ,5120,5180,72,44.816667,6.533333,1.67
+ Villar-d'Arène ,VILLAR D ARENE ,5480,5181,72,45.04225,6.33711,-1
+ Villar-Loubière ,VILLAR LOUBIERE ,5800,5182,72,44.833333,6.133333,1.86
+ Villar-Saint-Pancrace ,VILLAR SAINT PANCRACE ,5100,5183,72,44.866667,6.633333,2.01
+ Vitrolles ,VITROLLES ,5110,5184,72,44.433333,5.933333,0.99
+ Ailefroide ,AILEFROIDE ,5340,5900,72,44.883333,6.45,2.13
+ Château-Queyras ,CHATEAU QUEYRAS ,5350,5905,72,44.75,6.783333,2.2
+ Aiglun ,AIGLUN ,6910,6001,93,43.85,6.916667,1.08
+ Amirat ,AMIRAT ,6910,6002,93,43.9,6.816667,1.64
+ Andon ,ANDON ,6750,6003,93,43.766667,6.783333,1.83
+ Antibes ,ANTIBES ,6160,6004,93,43.583333,7.116667,1.94
+ Ascros ,ASCROS ,6260,6005,93,43.916667,7.016667,1.33
+ Aspremont ,ASPREMONT ,6790,6006,93,43.783333,7.25,0.82
+ Auribeau-sur-Siagne ,AURIBEAU SUR SIAGNE ,6810,6007,93,43.6,6.916667,1.82
+ Auvare ,AUVARE ,6260,6008,93,43.983333,6.916667,1.08
+ Bairols ,BAIROLS ,6420,6009,93,43.983333,7.133333,1.49
+ Beaulieu-sur-Mer ,BEAULIEU SUR MER ,6310,6011,93,43.7,7.333333,1.29
+ Beausoleil ,BEAUSOLEIL ,6240,6012,93,43.75,7.433333,1.86
+ Belvédère ,BELVEDERE ,6450,6013,93,44,7.316667,1.2
+ Bendéjun ,BENDEJUN ,6390,6014,93,43.833333,7.3,1.1
+ Beuil ,BEUIL ,6470,6016,93,44.1,6.983333,1.9
+ Bézaudun-les-Alpes ,BEZAUDUN LES ALPES ,6510,6017,93,43.8,7.1,0.66
+ Biot ,BIOT ,6410,6018,93,43.633333,7.1,1.57
+ Blausasc ,BLAUSASC ,6440,6019,93,43.8,7.366667,1.48
+ La Bollène-Vésubie ,LA BOLLENE VESUBIE ,6450,6020,93,43.983333,7.333333,1.29
+ Bonson ,BONSON ,6830,6021,93,43.866667,7.2,1.32
+ Bouyon ,BOUYON ,6510,6022,93,43.833333,7.116667,0.41
+ Breil-sur-Roya ,BREIL SUR ROYA ,6540,6023,93,43.933333,7.5,2.24
+ Briançonnet ,BRIANCONNET ,6850,6024,93,43.866667,6.766667,1.93
+ Le Broc ,LE BROC ,6510,6025,93,43.816667,7.166667,0.76
+ Cabris ,CABRIS ,6530,6026,93,43.666667,6.866667,1.36
+ Cagnes-sur-Mer ,CAGNES SUR MER ,6800,6027,93,43.666667,7.15,1.32
+ Caille ,CAILLE ,6750,6028,93,43.766667,6.733333,2.12
+ Cannes ,CANNES ,6400,6029,93,43.55,7.016667,2.19
+ Le Cannet ,LE CANNET ,6110,6030,93,43.566667,7.016667,2.07
+ Cantaron ,CANTARON ,6340,6031,93,43.766667,7.316667,1.5
+ Cap-d'Ail ,CAP D AIL ,6320,6032,93,43.716667,7.4,1.67
+ Carros ,CARROS ,6510,6033,93,43.8,7.183333,1.14
+ Castagniers ,CASTAGNIERS ,6670,6034,93,43.8,7.233333,0.82
+ Castellar ,CASTELLAR ,6500,6035,93,43.8,7.5,2.24
+ Castillon ,CASTILLON ,6500,6036,93,43.833333,7.466667,2.05
+ Châteauneuf-d'Entraunes ,CHATEAUNEUF D ENTRAUNES ,6470,6040,93,44.133333,6.833333,2.14
+ Cipières ,CIPIERES ,6620,6041,93,43.783333,6.95,0.89
+ Clans ,CLANS ,6420,6042,93,44,7.15,1.37
+ Coaraze ,COARAZE ,6390,6043,93,43.866667,7.3,1.39
+ La Colle-sur-Loup ,LA COLLE SUR LOUP,6480,6044,93,43.683333,7.1,1.2
+ Collongues ,COLLONGUES ,6910,6045,93,43.883333,6.866667,1.36
+ Colomars ,COLOMARS ,6670,6046,93,43.766667,7.216667,1.64
+ Conségudes ,CONSEGUDES ,6510,6047,93,43.85,7.05,1.7
+ Contes ,CONTES ,6390,6048,93,43.816667,7.316667,1.22
+ Courmes ,COURMES ,6620,6049,93,43.75,7.016667,1.04
+ Coursegoules ,COURSEGOULES ,6140,6050,93,43.8,7.033333,1.26
+ La Croix-sur-Roudoule ,LA CROIX SUR ROUDOULE,6260,6051,93,43.983333,6.866667,1.36
+ Cuébris ,CUEBRIS ,6910,6052,93,43.883333,7.016667,1.07
+ Daluis ,DALUIS ,6470,6053,93,44.016667,6.816667,1.64
+ Drap ,DRAP ,6340,6054,93,43.75,7.316667,1.2
+ Duranus ,DURANUS ,6670,6055,93,43.9,7.266667,2.06
+ Entraunes ,ENTRAUNES ,6470,6056,93,44.183333,6.75,2.52
+ L'Escarène ,L ESCARENE ,6440,6057,93,43.833333,7.35,1.39
+ Escragnolles ,ESCRAGNOLLES ,6460,6058,93,43.733333,6.783333,1.83
+ Éze ,EZE ,6360,6059,93,43.716667,7.366667,1.48
+ Falicon ,FALICON ,6950,6060,93,43.75,7.283333,1.01
+ Les Ferres ,LES FERRES ,6510,6061,93,43.85,7.1,0.87
+ Fontan ,FONTAN ,6540,6062,93,44,7.55,2.52
+ Gars ,GARS ,6850,6063,93,43.866667,6.8,1.74
+ Gattières ,GATTIERES ,6510,6064,93,43.766667,7.183333,1.47
+ La Gaude ,LA GAUDE ,6610,6065,93,43.716667,7.15,0.95
+ Gilette ,GILETTE ,6830,6066,93,43.85,7.166667,0.82
+ Gorbio ,GORBIO ,6500,6067,93,43.783333,7.45,1.96
+ Gourdon ,GOURDON ,6620,6068,93,43.716667,6.983333,1.11
+ Grasse ,GRASSE ,6130,6069,93,43.666667,6.916667,1.49
+ Gréolières ,GREOLIERES ,6620,6070,93,43.8,6.95,1.08
+ Guillaumes ,GUILLAUMES ,6470,6071,93,44.083333,6.85,1.77
+ Ilonse ,ILONSE ,6420,6072,93,44.033333,7.1,1.4
+ Isola ,ISOLA ,6420,6073,93,44.183333,7.05,-1
+ Lantosque ,LANTOSQUE ,6450,6074,93,43.966667,7.316667,1.2
+ Levens ,LEVENS ,6670,6075,93,43.866667,7.216667,0.92
+ Lieuche ,LIEUCHE ,6260,6076,93,44,7.016667,1.15
+ Lucéram ,LUCERAM ,6440,6077,93,43.883333,7.366667,1.48
+ Malaussène ,MALAUSSENE ,6710,6078,93,43.916667,7.133333,0.72
+ Mandelieu-la-Napoule ,MANDELIEU LA NAPOULE ,6210,6079,93,43.55,6.933333,2.19
+ Marie ,MARIE ,6420,6080,93,44.033333,7.133333,1.4
+ Le Mas ,LE MAS ,6910,6081,93,43.85,6.866667,1.36
+ Massoins ,MASSOINS ,6710,6082,93,43.933333,7.133333,0.66
+ Menton ,MENTON ,6500,6083,93,43.783333,7.5,2.24
+ Mouans-Sartoux ,MOUANS SARTOUX ,6370,6084,93,43.616667,6.966667,1.69
+ Mougins ,MOUGINS ,6250,6085,93,43.6,7,1.82
+ Moulinet ,MOULINET ,6380,6086,93,43.95,7.416667,1.77
+ Les Mujouls ,LES MUJOULS ,6910,6087,93,43.883333,6.85,1.45
+ Nice ,NICE ,6100,6088,93,43.7,7.25,1.08
+ Opio ,OPIO ,6650,6089,93,43.666667,6.983333,1.32
+ Pégomas ,PEGOMAS ,6580,6090,93,43.6,6.933333,1.82
+ Peille ,PEILLE ,6440,6091,93,43.8,7.4,1.67
+ Peillon ,PEILLON ,6440,6092,93,43.783333,7.383333,1.58
+ La Penne ,LA PENNE ,6260,6093,93,43.933333,6.95,0.89
+ Péone ,PEONE ,6470,6094,93,44.116667,6.9,2.02
+ Peymeinade ,PEYMEINADE ,6530,6095,93,43.633333,6.883333,1.66
+ Pierlas ,PIERLAS ,6260,6096,93,44.033333,7.033333,1.6
+ Pierrefeu ,PIERREFEU ,6910,6097,93,43.866667,7.083333,1.95
+ Puget-Rostang ,PUGET ROSTANG ,6260,6098,93,43.966667,6.916667,1.08
+ Puget-Théniers ,PUGET THENIERS ,6260,6099,93,43.95,6.9,1.17
+ Revest-les-Roches ,REVEST LES ROCHES ,6830,6100,93,43.883333,7.15,0.36
+ Rigaud ,RIGAUD ,6260,6101,93,44,6.983333,1.15
+ Rimplas ,RIMPLAS ,6420,6102,93,44.066667,7.133333,1.65
+ Roquebillière ,ROQUEBILLIERE ,6450,6103,93,44.016667,7.3,1.28
+ Roquebrune-Cap-Martin ,ROQUEBRUNE CAP MARTIN ,6190,6104,93,43.766667,7.466667,2.05
+ Roquestéron ,ROQUESTERON ,6910,6106,93,43.866667,7,0.84
+ Roquestéron-Grasse ,ROQUESTERON GRASSE ,6910,6107,93,43.866667,7,0.84
+ La Roquette-sur-Siagne ,LA ROQUETTE SUR SIAGNE,6550,6108,93,43.6,6.95,1.82
+ La Roquette-sur-Var ,LA ROQUETTE SUR VAR,6670,6109,93,43.833333,7.2,0.61
+ Roubion ,ROUBION ,6420,6110,93,44.083333,7.05,1.77
+ Roure ,ROURE ,6420,6111,93,44.083333,7.083333,1.77
+ Le Rouret ,LE ROURET ,6650,6112,93,43.683333,7.016667,1.2
+ Sainte-Agnès ,SAINTE AGNES ,6500,6113,93,43.8,7.466667,2.05
+ Saint-André ,SAINT ANDRE ,6730,6114,93,43.733333,7.283333,1.01
+ Saint-Antonin ,SAINT ANTONIN ,6260,6115,93,43.916667,6.983333,0.98
+ Saint-Blaise ,SAINT BLAISE ,6670,6117,93,43.833333,7.233333,0.72
+ Saint-Cézaire-sur-Siagne ,SAINT CEZAIRE SUR SIAGNE,6780,6118,93,43.65,6.8,1.74
+ Saint-Dalmas-le-Selvage ,SAINT DALMAS LE SELVAGE,6660,6119,93,44.283333,6.866667,-1
+ Saint-Étienne-de-Tinée ,SAINT ETIENNE DE TINEE,6660,6120,93,44.258333,6.925,-1
+ Saint-Jean-Cap-Ferrat ,SAINT JEAN CAP FERRAT,6230,6121,93,43.683333,7.333333,1.29
+ Saint-Jeannet ,SAINT JEANNET ,6640,6122,93,43.75,7.15,0.7
+ Saint-Laurent-du-Var ,SAINT LAURENT DU VAR,6700,6123,93,43.666667,7.183333,1.32
+ Saint-Léger ,SAINT LEGER ,6260,6124,93,44,6.833333,1.76
+ Saint-Martin-d'Entraunes ,SAINT MARTIN D ENTRAUNES,6470,6125,93,44.133333,6.766667,2.14
+ Saint-Martin-du-Var ,SAINT MARTIN DU VAR,6670,6126,93,43.816667,7.2,0.7
+ Saint-Martin-Vésubie ,SAINT MARTIN VESUBIE ,6450,6127,93,44.066667,7.25,1.65
+ Saint-Paul ,SAINT PAUL ,6570,6128,93,43.7,7.116667,1.08
+ Saint-Sauveur-sur-Tinée ,SAINT SAUVEUR SUR TINEE,6420,6129,93,44.083333,7.1,1.77
+ Saint-Vallier-de-Thiey ,SAINT VALLIER DE THIEY,6460,6130,93,43.7,6.85,1.45
+ Saorge ,SAORGE ,6540,6132,93,43.983333,7.55,2.52
+ Sauze ,SAUZE ,6470,6133,93,44.083333,6.833333,1.77
+ Séranon ,SERANON ,6750,6134,93,43.766667,6.7,2.31
+ Sigale ,SIGALE ,6910,6135,93,43.866667,6.95,0.89
+ Sospel ,SOSPEL ,6380,6136,93,43.883333,7.45,1.96
+ Spéracèdes ,SPERACEDES ,6530,6137,93,43.65,6.866667,1.45
+ Théoule-sur-Mer ,THEOULE SUR MER ,6590,6138,93,43.5,6.933333,2.56
+ Thiéry ,THIERY ,6710,6139,93,43.983333,7.033333,1.44
+ Le Tignet ,LE TIGNET ,6530,6140,93,43.65,6.85,1.45
+ Toudon ,TOUDON ,6830,6141,93,43.9,7.116667,1.5
+ Touët-sur-Var ,TOUET SUR VAR ,6710,6143,93,43.95,7,1.86
+ La Tour ,LA TOUR ,6710,6144,93,43.95,7.183333,1.4
+ Tournefort ,TOURNEFORT ,6710,6146,93,43.95,7.15,0.81
+ Tourrette-Levens ,TOURRETTE LEVENS ,6690,6147,93,43.783333,7.266667,0.91
+ Tourette-sur-Loup ,TOURETTE SUR LOUP ,6140,6148,93,43.716667,7.05,0.95
+ La Trinité ,LA TRINITE ,6340,6149,93,43.75,7.316667,1.2
+ La Turbie ,LA TURBIE ,6320,6150,93,43.75,7.4,1.67
+ Utelle ,UTELLE ,6450,6151,93,43.916667,7.25,1.4
+ Valbonne ,VALBONNE ,6560,6152,93,43.633333,7,1.57
+ Valderoure ,VALDEROURE ,6750,6154,93,43.783333,6.716667,2.21
+ Vallauris ,VALLAURIS ,6220,6155,93,43.583333,7.05,1.94
+ Venanson ,VENANSON ,6450,6156,93,44.05,7.25,1.52
+ Vence ,VENCE ,6140,6157,93,43.716667,7.116667,1.11
+ Villars-sur-Var ,VILLARS SUR VAR ,6710,6158,93,43.933333,7.1,0.66
+ Villefranche-sur-Mer ,VILLEFRANCHE SUR MER ,6230,6159,93,43.7,7.316667,1.2
+ Villeneuve-Loubet ,VILLENEUVE LOUBET ,6270,6161,93,43.65,7.116667,1.45
+ La Brigue ,LA BRIGUE ,6430,6162,93,44.066667,7.616667,2.9
+ Tende ,TENDE ,6430,6163,93,44.083333,7.6,2.81
+ Auron ,AURON ,6660,6901,93,44.233333,6.933333,2.89
+ La Napoule ,LA NAPOULE ,6210,6903,93,43.516667,6.933333,2.44
+ Peïra-Cava ,PEIRA CAVA ,6440,6904,93,43.933333,7.366667,1.85
+ Saint-Dalmas-de-Tende ,SAINT DALMAS DE TENDE,6430,6905,93,44.05,7.583333,2.71
+ Valberg ,VALBERG ,6470,6906,93,44.1,6.933333,1.9
+ Le Plan-de-Grasse ,LE PLAN DE GRASSE,6130,6907,93,43.65,6.966667,1.45
+ Estèng ,ESTENG ,6470,6910,93,44.233333,6.75,2.89
+ Thorenc ,THORENC ,6750,6912,93,43.8,6.816667,1.68
+ Cros-de-Cagnes ,CROS DE CAGNES ,6800,6922,93,43.65,7.166667,1.45
+ Juan-les-Pins ,JUAN LES PINS ,6160,6924,93,43.566667,7.1,2.07
+ Magagnosc ,MAGAGNOSC ,6520,6925,93,43.683333,6.966667,1.2
+ Saint-Jean-la-Rivière ,SAINT JEAN LA RIVIERE,6450,6939,93,43.916667,7.266667,1.3
+ Plascassier ,PLASCASSIER ,6130,6959,93,43.65,6.983333,1.45
+ Accons ,ACCONS ,7160,7001,82,44.9,4.383333,0.71
+ Aizac ,AIZAC ,7530,7003,82,44.716667,4.333333,0.91
+ Ajoux ,AJOUX ,7000,7004,82,44.766667,4.516667,1.54
+ Alboussière ,ALBOUSSIERE ,7440,7007,82,44.95,4.733333,1.4
+ Alissas ,ALISSAS ,7210,7008,82,44.716667,4.616667,1.37
+ Andance ,ANDANCE ,7340,7009,82,45.233333,4.783333,2.03
+ Annonay ,ANNONAY ,7100,7010,82,45.233333,4.666667,2.03
+ Arcens ,ARCENS ,7310,7012,82,44.916667,4.333333,0.62
+ Ardoix ,ARDOIX ,7290,7013,82,45.183333,4.733333,1.81
+ Arlebosc ,ARLEBOSC ,7410,7014,82,45.033333,4.65,1.17
+ Arras-sur-Rhône ,ARRAS SUR RHONE ,7370,7015,82,45.133333,4.8,1.73
+ Asperjoc ,ASPERJOC ,7600,7016,82,44.683333,4.35,0.5
+ Les Assions ,LES ASSIONS ,7140,7017,82,44.416667,4.166667,1.6
+ Astet ,ASTET ,7330,7018,82,44.683333,4.05,1.98
+ Aubenas ,AUBENAS ,7200,7019,82,44.616667,4.383333,0.71
+ Aubignas ,AUBIGNAS ,7400,7020,82,44.583333,4.616667,0.86
+ Auriolles ,AURIOLLES ,7120,7021,82,44.433333,4.316667,1.52
+ Baix ,BAIX ,7210,7022,82,44.716667,4.766667,1.95
+ Balazuc ,BALAZUC ,7120,7023,82,44.5,4.366667,1.44
+ Banne ,BANNE ,7460,7024,82,44.366667,4.15,1.82
+ Barnas ,BARNAS ,7330,7025,82,44.666667,4.166667,1.4
+ Le Béage ,LE BEAGE ,7630,7026,82,44.85,4.116667,1.65
+ Beauchastel ,BEAUCHASTEL ,7800,7027,82,44.833333,4.8,1.73
+ Beauvène ,BEAUVENE ,7190,7030,82,44.9,4.533333,1.32
+ Berzème ,BERZEME ,7580,7032,82,44.633333,4.583333,1.14
+ Bessas ,BESSAS ,7150,7033,82,44.35,4.316667,1.89
+ Bidon ,BIDON ,7700,7034,82,44.366667,4.533333,1.82
+ Boffres ,BOFFRES ,7440,7035,82,44.916667,4.7,1.24
+ Bogy ,BOGY ,7340,7036,82,45.283333,4.766667,2.25
+ Borée ,BOREE ,7310,7037,82,44.9,4.25,1.39
+ Borne ,BORNE ,7590,7038,82,44.616667,4.016667,2.15
+ Boulieu-lès-Annonay ,BOULIEU LES ANNONAY ,7100,7041,82,45.266667,4.666667,2.18
+ Bourg-Saint-Andéol ,BOURG SAINT ANDEOL ,7700,7042,82,44.366667,4.65,1.82
+ Brahic ,BRAHIC ,7140,7043,82,44.383333,4.083333,1.82
+ Brossainc ,BROSSAINC ,7340,7044,82,45.333333,4.683333,2.47
+ Burzet ,BURZET ,7450,7045,82,44.733333,4.25,0.99
+ Casteljau ,CASTELJAU ,7460,7046,82,44.4,4.183333,1.67
+ Cellier-du-Luc ,CELLIER DU LUC ,7590,7047,82,44.683333,3.916667,2.64
+ Chalencon ,CHALENCON ,7240,7048,82,44.9,4.6,1.09
+ Chambonas ,CHAMBONAS ,7140,7050,82,44.416667,4.1,1.73
+ Chandolas ,CHANDOLAS ,7230,7053,82,44.4,4.266667,2.12
+ Chanéac ,CHANEAC ,7310,7054,82,44.95,4.316667,0.77
+ Charmes-sur-Rhône ,CHARMES SUR RHONE ,7800,7055,82,44.866667,4.833333,1.9
+ Charnas ,CHARNAS ,7340,7056,82,45.333333,4.75,2.47
+ Chassagnes ,CHASSAGNES ,7140,7057,82,44.4,4.166667,1.67
+ Chassiers ,CHASSIERS ,7110,7058,82,44.55,4.3,1
+ Châteaubourg ,CHATEAUBOURG ,7130,7059,82,45,4.85,1.98
+ Châteauneuf-de-Vernoux ,CHATEAUNEUF DE VERNOUX ,7240,7060,82,44.916667,4.65,0.99
+ Chauzon ,CHAUZON ,7120,7061,82,44.483333,4.366667,1.3
+ Chazeaux ,CHAZEAUX ,7110,7062,82,44.6,4.316667,1.13
+ Cheminas ,CHEMINAS ,7300,7063,82,45.116667,4.75,1.51
+ Le Cheylard ,LE CHEYLARD ,7160,7064,82,44.9,4.416667,0.55
+ Chirols ,CHIROLS ,7380,7065,82,44.683333,4.3,0.99
+ Chomérac ,CHOMERAC ,7210,7066,82,44.7,4.65,0.99
+ Colombier-le-Cardinal ,COLOMBIER LE CARDINAL ,7430,7067,82,45.266667,4.75,2.18
+ Colombier-le-Jeune ,COLOMBIER LE JEUNE ,7270,7068,82,45,4.7,1.87
+ Colombier-le-Vieux ,COLOMBIER LE VIEUX ,7410,7069,82,45.066667,4.683333,1.29
+ Cornas ,CORNAS ,7130,7070,82,44.966667,4.85,1.98
+ Coucouron ,COUCOURON ,7470,7071,82,44.8,3.966667,2.39
+ Coux ,COUX ,7000,7072,82,44.766667,4.616667,0.82
+ Le Crestet ,LE CRESTET ,7270,7073,82,45.016667,4.65,1.07
+ Creysseilles ,CREYSSEILLES ,7000,7074,82,44.75,4.566667,0.58
+ Cros-de-Géorand ,CROS DE GEORAND ,7630,7075,82,44.8,4.133333,1.57
+ Cruas ,CRUAS ,7350,7076,82,44.65,4.766667,1.57
+ Darbres ,DARBRES ,7170,7077,82,44.633333,4.516667,1.41
+ Davézieux ,DAVEZIEUX ,7430,7078,82,45.25,4.716667,2.1
+ Désaignes ,DESAIGNES ,7570,7079,82,45,4.516667,1
+ Devesset ,DEVESSET ,7320,7080,82,45.066667,4.383333,1.29
+ Dompnac ,DOMPNAC ,7260,7081,82,44.55,4.1,1.73
+ Dornas ,DORNAS ,7160,7082,82,44.85,4.35,1.44
+ Dunières-sur-Eyrieux ,DUNIERES SUR EYRIEUX ,7360,7083,82,44.816667,4.65,0.99
+ Éclassan ,ECLASSAN ,7370,7084,82,45.166667,4.766667,1.73
+ Empurany ,EMPURANY ,7270,7085,82,45.016667,4.6,1.07
+ Étables ,ETABLES ,7300,7086,82,45.1,4.716667,1.44
+ Fabras ,FABRAS ,7380,7087,82,44.65,4.3,0.74
+ Faugères ,FAUGERES ,7230,7088,82,44.475,4.133333,-1
+ Flaviac ,FLAVIAC ,7000,7090,82,44.75,4.683333,1.91
+ Fons ,FONS ,7200,7091,82,44.566667,4.333333,1.16
+ Freyssenet ,FREYSSENET ,7000,7092,82,44.683333,4.55,1.46
+ Genestelle ,GENESTELLE ,7530,7093,82,44.716667,4.4,1.24
+ Gluiras ,GLUIRAS ,7190,7096,82,44.85,4.55,0.93
+ Glun ,GLUN ,7300,7097,82,45.016667,4.833333,1.9
+ Gras ,GRAS ,7700,7099,82,44.45,4.533333,1.45
+ Gravières ,GRAVIERES ,7140,7100,82,44.433333,4.083333,1.82
+ Grospierres ,GROSPIERRES ,7120,7101,82,44.4,4.3,1.67
+ Intres ,INTRES ,7320,7103,82,44.983333,4.35,1.11
+ Issamoulenc ,ISSAMOULENC ,7190,7104,82,44.783333,4.466667,0.72
+ Issanlas ,ISSANLAS ,7510,7105,82,44.75,4,2.23
+ Issarlès ,ISSARLES ,7470,7106,82,44.833333,4.033333,2.06
+ Jaujac ,JAUJAC ,7380,7107,82,44.633333,4.25,1.67
+ Joannas ,JOANNAS ,7110,7109,82,44.566667,4.25,0.99
+ Joyeuse ,JOYEUSE ,7260,7110,82,44.483333,4.233333,1.3
+ Juvinas ,JUVINAS ,7600,7111,82,44.716667,4.3,1.89
+ Labastide-de-Virac ,LABASTIDE DE VIRAC ,7150,7113,82,44.35,4.416667,1.89
+ Labatie-d'Andaure ,LABATIE D ANDAURE ,7570,7114,82,45.016667,4.483333,1.07
+ Labégude ,LABEGUDE ,7200,7116,82,44.65,4.366667,0.99
+ Lablachère ,LABLACHERE ,7230,7117,82,44.466667,4.216667,1.37
+ Laboule ,LABOULE ,7110,7118,82,44.583333,4.166667,1.4
+ Lachamp-Raphaël ,LACHAMP RAPHAEL ,7530,7120,82,44.816667,4.3,1.55
+ Lachapelle-Graillouse ,LACHAPELLE GRAILLOUSE ,7470,7121,82,44.816667,4,2.23
+ Lachapelle-sous-Aubenas ,LACHAPELLE SOUS AUBENAS ,7200,7122,82,44.55,4.366667,1
+ Lachapelle-sous-Chaneac ,LACHAPELLE SOUS CHANEAC ,7310,7123,82,44.95,4.333333,0.77
+ Lafarre ,LAFARRE ,7520,7124,82,45.083333,4.35,1.5
+ Lafigère ,LAFIGERE ,7140,7125,82,44.45,4.033333,2.06
+ Lagorce ,LAGORCE ,7150,7126,82,44.45,4.416667,1.56
+ Lalevade-d'Ardèche ,LALEVADE D ARDECHE ,7380,7127,82,44.65,4.316667,0.97
+ Lalouvesc ,LALOUVESC ,7520,7128,82,45.116667,4.533333,1.51
+ Lamastre ,LAMASTRE ,7270,7129,82,44.983333,4.583333,0.92
+ Lanarce ,LANARCE ,7660,7130,82,44.733333,4,2.23
+ Lanas ,LANAS ,7200,7131,82,44.516667,4.4,1.27
+ Largentière ,LARGENTIERE ,7110,7132,82,44.533333,4.3,1.08
+ Larnas ,LARNAS ,7220,7133,82,44.45,4.6,1.45
+ Laurac-en-Vivarais ,LAURAC EN VIVARAIS ,7110,7134,82,44.5,4.3,1.23
+ Laval-d'Aurelle ,LAVAL D AURELLE ,7590,7135,82,44.55,3.966667,2.39
+ Laveyrune ,LAVEYRUNE ,48250,7136,82,44.633333,3.9,2.72
+ Lavillatte ,LAVILLATTE ,7660,7137,82,44.75,3.933333,2.56
+ Lavilledieu ,LAVILLEDIEU ,7170,7138,82,44.566667,4.466667,0.93
+ Laviolle ,LAVIOLLE ,7530,7139,82,44.766667,4.333333,0.58
+ Lemps ,LEMPS ,7300,7140,82,45.108333,4.766667,1.57
+ Lentillères ,LENTILLERES ,7200,7141,82,44.616667,4.3,1.61
+ Lespéron ,LESPERON ,7660,7142,82,44.716667,3.883333,2.81
+ Limony ,LIMONY ,7340,7143,82,45.35,4.766667,2.55
+ Loubaresse ,LOUBARESSE ,7110,7144,82,44.6,4.05,-1
+ Lussas ,LUSSAS ,7170,7145,82,44.6,4.483333,0.78
+ Lyas ,LYAS ,7000,7146,82,44.75,4.583333,0.66
+ Malarce-sur-la-Thines ,MALARCE SUR LA THINES,7140,7147,82,44.433333,4.083333,1.82
+ Malbosc ,MALBOSC ,7140,7148,82,44.35,4.05,1.98
+ Marcols-les-Eaux ,MARCOLS LES EAUX ,7190,7149,82,44.816667,4.4,1.44
+ Mariac ,MARIAC ,7160,7150,82,44.9,4.366667,0.97
+ Mars ,MARS ,7320,7151,82,45.016667,4.316667,1.41
+ Mauves ,MAUVES ,7300,7152,82,45.033333,4.833333,1.9
+ Mazan-l'Abbaye ,MAZAN L ABBAYE ,7510,7154,82,44.733333,4.083333,1.82
+ Meyras ,MEYRAS ,7380,7156,82,44.683333,4.266667,1.26
+ Meysse ,MEYSSE ,7400,7157,82,44.616667,4.716667,1.32
+ Mézilhac ,MEZILHAC ,7530,7158,82,44.8,4.35,0.82
+ Monestier ,MONESTIER ,7690,7160,82,45.2,4.533333,1.88
+ Montpezat-sous-Bauzon ,MONTPEZAT SOUS BAUZON ,7560,7161,82,44.716667,4.2,1.24
+ Montréal ,MONTREAL ,7110,7162,82,44.516667,4.3,1.15
+ Montselgues ,MONTSELGUES ,7140,7163,82,44.516667,4,2.23
+ Nonières ,NONIERES ,7160,7165,82,44.933333,4.5,1.27
+ Nozières ,NOZIERES ,7270,7166,82,45.033333,4.566667,1.14
+ Les Ollières-sur-Eyrieux ,LES OLLIERES SUR EYRIEUX,7360,7167,82,44.8,4.616667,1.32
+ Orgnac-l'Aven ,ORGNAC L AVEN ,7150,7168,82,44.316667,4.45,2.04
+ Ozon ,OZON ,7370,7169,82,45.166667,4.816667,1.81
+ Pailharès ,PAILHARES ,7410,7170,82,45.083333,4.566667,1.75
+ Payzac ,PAYZAC ,7230,7171,82,44.45,4.15,1.49
+ Peaugres ,PEAUGRES ,7340,7172,82,45.283333,4.733333,2.25
+ Péreyres ,PEREYRES ,7450,7173,82,44.783333,4.266667,1.39
+ Le Plagnal ,LE PLAGNAL ,7590,7175,82,44.7,3.933333,2.56
+ Planzolles ,PLANZOLLES ,7230,7176,82,44.483333,4.15,1.49
+ Plats ,PLATS ,7300,7177,82,45.016667,4.783333,1.65
+ Pont-de-Labeaume ,PONT DE LABEAUME ,7380,7178,82,44.666667,4.283333,0.83
+ Pourchères ,POURCHERES ,7000,7179,82,44.75,4.516667,1.48
+ Le Pouzat ,LE POUZAT ,7320,7180,82,44.966667,4.466667,1.3
+ Le Pouzin ,LE POUZIN ,7250,7181,82,44.75,4.75,1.48
+ Prades ,PRADES ,7380,7182,82,44.633333,4.316667,1.26
+ Pradons ,PRADONS ,7120,7183,82,44.466667,4.366667,1.37
+ Pranles ,PRANLES ,7000,7184,82,44.766667,4.6,0.74
+ Privas ,PRIVAS ,7000,7186,82,44.733333,4.6,0.74
+ Prunet ,PRUNET ,7110,7187,82,44.6,4.266667,0.91
+ Quintenas ,QUINTENAS ,7290,7188,82,45.183333,4.683333,1.81
+ Ribes ,RIBES ,7260,7189,82,44.483333,4.216667,1.3
+ Rochecolombe ,ROCHECOLOMBE ,7200,7190,82,44.5,4.45,1.72
+ Rochemaure ,ROCHEMAURE ,7400,7191,82,44.583333,4.7,1.24
+ Rochepaule ,ROCHEPAULE ,7320,7192,82,45.083333,4.466667,1.36
+ Rocher ,ROCHER ,7110,7193,82,44.566667,4.3,0.93
+ Rochessauve ,ROCHESSAUVE ,7210,7194,82,44.683333,4.616667,1.28
+ Rocles ,ROCLES ,7110,7196,82,44.55,4.216667,1.16
+ Roiffieux ,ROIFFIEUX ,7100,7197,82,45.233333,4.65,2.03
+ Rompon ,ROMPON ,7250,7198,82,44.783333,4.733333,1.4
+ Rosières ,ROSIERES ,7260,7199,82,44.483333,4.283333,1.41
+ Le Roux ,LE ROUX ,7560,7200,82,44.733333,4.15,1.49
+ Ruoms ,RUOMS ,7120,7201,82,44.45,4.35,1.45
+ Sablières ,SABLIERES ,7260,7202,82,44.516667,4.066667,1.9
+ Saint-Agrève ,SAINT AGREVE ,7320,7204,82,45.016667,4.4,1.07
+ Saint-Alban-d'Ay ,SAINT ALBAN D AY,7790,7205,82,45.183333,4.633333,1.81
+ Saint-Alban-en-Montagne ,SAINT ALBAN EN MONTAGNE,7590,7206,82,44.7,3.916667,2.64
+ Saint-Andéol-de-Berg ,SAINT ANDEOL DE BERG,7170,7208,82,44.516667,4.533333,1.35
+ Saint-Andéol-de-Fourchades ,SAINT ANDEOL DE FOURCHADES,7160,7209,82,44.833333,4.3,2.26
+ Saint-Andéol-de-Vals ,SAINT ANDEOL DE VALS,7600,7210,82,44.683333,4.383333,1.1
+ Saint-André-de-Cruzières ,SAINT ANDRE DE CRUZIERES,7460,7211,82,44.316667,4.216667,2.04
+ Saint-André-en-Vivarais ,SAINT ANDRE EN VIVARAIS,7690,7212,82,45.116667,4.416667,2.4
+ Saint-André-Lachamp ,SAINT ANDRE LACHAMP ,7230,7213,82,44.5,4.166667,1.4
+ Saint-Barthélemy-le-Meil ,SAINT BARTHELEMY LE MEIL,7160,7215,82,44.9,4.5,1.13
+ Saint-Barthélemy-le-Plain ,SAINT BARTHELEMY LE PLAIN,7300,7217,82,45.05,4.75,1.48
+ Saint-Basile ,SAINT BASILE ,7270,7218,82,44.966667,4.583333,0.85
+ Saint-Bauzile ,SAINT BAUZILE ,7210,7219,82,44.666667,4.666667,1.07
+ Saint-Christol ,SAINT CHRISTOL ,7160,7220,82,44.883333,4.433333,0.48
+ Saint-Cierge-la-Serre ,SAINT CIERGE LA SERRE,7800,7221,82,44.783333,4.683333,2.2
+ Saint-Cierge-sous-le-Cheylard ,SAINT CIERGE SOUS LE,7160,7222,82,44.933333,4.466667,0.83
+ Saint-Cirgues-en-Montagne ,SAINT CIRGUES EN MONTAGNE,7510,7224,82,44.75,4.1,1.73
+ Saint-Clair ,SAINT CLAIR ,7430,7225,82,45.283333,4.683333,2.25
+ Saint-Clément ,SAINT CLEMENT ,7310,7226,82,44.95,4.266667,0.97
+ Saint-Cyr ,SAINT CYR ,7430,7227,82,45.25,4.733333,2.1
+ Saint-Désirat ,SAINT DESIRAT ,7340,7228,82,45.25,4.783333,2.1
+ Saint-Didier-sous-Aubenas ,SAINT DIDIER SOUS AUBENAS,7200,7229,82,44.6,4.416667,0.78
+ Saint-Étienne-de-Boulogne ,SAINT ETIENNE DE BOULOGNE,7200,7230,82,44.7,4.466667,1.93
+ Saint-Étienne-de-Fontbellon ,SAINT ETIENNE DE FONTBELLON,7200,7231,82,44.6,4.383333,0.78
+ Saint-Étienne-de-Lugdarès ,SAINT ETIENNE DE LUGDARES,7590,7232,82,44.65,3.95,2.48
+ Saint-Étienne-de-Valoux ,SAINT ETIENNE DE VALOUX,7340,7234,82,45.25,4.783333,2.1
+ Sainte-Eulalie ,SAINTE EULALIE ,7510,7235,82,44.816667,4.183333,1.74
+ Saint-Félicien ,SAINT FELICIEN ,7410,7236,82,45.083333,4.633333,1.36
+ Saint-Fortunat-sur-Eyrieux ,SAINT FORTUNAT SUR EYRIEUX,7360,7237,82,44.833333,4.666667,1.53
+ Saint-Genest-Lachamp ,SAINT GENEST LACHAMP ,7160,7239,82,44.85,4.416667,0.77
+ Saint-Georges-les-Bains ,SAINT GEORGES LES BAINS,7800,7240,82,44.866667,4.816667,1.81
+ Saint-Germain ,SAINT GERMAIN ,7170,7241,82,44.55,4.45,1
+ Saint-Jacques-d'Atticieux ,SAINT JACQUES D ATTICIEUX,7340,7243,82,45.333333,4.666667,2.47
+ Saint-Jean-Chambre ,SAINT JEAN CHAMBRE ,7240,7244,82,44.916667,4.583333,1.75
+ Saint-Jean-de-Muzols ,SAINT JEAN DE MUZOLS,7300,7245,82,45.083333,4.816667,1.81
+ Saint-Jean-de-Pourcharesse ,SAINT JEAN DE POURCHARESSE,7140,7246,82,44.483333,4.1,1.73
+ Saint-Jean-le-Centenier ,SAINT JEAN LE CENTENIER,7580,7247,82,44.583333,4.533333,1.14
+ Saint-Jean-Roure ,SAINT JEAN ROURE ,7160,7248,82,44.95,4.433333,0.83
+ Saint-Jeure-d'Andaure ,SAINT JEURE D ANDAURE,7320,7249,82,45.05,4.466667,1.22
+ Saint-Jeure-d'Ay ,SAINT JEURE D AY,7290,7250,82,45.15,4.7,1.66
+ Saint-Joseph-des-Bancs ,SAINT JOSEPH DES BANCS,7530,7251,82,44.733333,4.4,1.05
+ Saint-Julien-Boutières ,SAINT JULIEN BOUTIERES ,7310,7252,82,44.983333,4.35,1.34
+ Saint-Julien-du-Gua ,SAINT JULIEN DU GUA,7190,7253,82,44.766667,4.45,1.07
+ Saint-Julien-du-Serre ,SAINT JULIEN DU SERRE,7200,7254,82,44.65,4.416667,0.88
+ Saint-Julien-en-Saint-Alban ,SAINT JULIEN EN SAINT,7000,7255,82,44.733333,4.683333,1.92
+ Saint-Julien-Labrousse ,SAINT JULIEN LABROUSSE ,7160,7256,82,44.933333,4.533333,1.75
+ Saint-Julien-le-Roux ,SAINT JULIEN LE ROUX,7240,7257,82,44.883333,4.666667,1.46
+ Saint-Julien-Vocance ,SAINT JULIEN VOCANCE ,7690,7258,82,45.166667,4.5,1.73
+ Saint-Lager-Bressac ,SAINT LAGER BRESSAC ,7210,7260,82,44.683333,4.7,1.24
+ Saint-Laurent-du-Pape ,SAINT LAURENT DU PAPE,7800,7261,82,44.816667,4.766667,1.57
+ Saint-Laurent-les-Bains ,SAINT LAURENT LES BAINS,7590,7262,82,44.616667,3.966667,2.39
+ Saint-Laurent-sous-Coiron ,SAINT LAURENT SOUS COIRON,7170,7263,82,44.633333,4.483333,1.32
+ Saint-Marcel-d'Ardèche ,SAINT MARCEL D ARDECHE,7700,7264,82,44.316667,4.616667,2.04
+ Saint-Marcel-lès-Annonay ,SAINT MARCEL LES ANNONAY,7100,7265,82,45.283333,4.616667,2.25
+ Sainte-Marguerite-Lafigère ,SAINTE MARGUERITE LAFIGERE ,7140,7266,82,44.466667,3.983333,2.31
+ Saint-Martial ,SAINT MARTIAL ,7310,7267,82,44.866667,4.266667,1.59
+ Saint-Martin-d'Ardèche ,SAINT MARTIN D ARDECHE,7700,7268,82,44.3,4.583333,2.11
+ Saint-Martin-de-Valamas ,SAINT MARTIN DE VALAMAS,7310,7269,82,44.933333,4.366667,1.15
+ Saint-Maurice-d'Ardèche ,SAINT MAURICE D ARDECHE,7200,7272,82,44.516667,4.4,1.27
+ Saint-Maurice-d'Ibie ,SAINT MAURICE D IBIE,7170,7273,82,44.5,4.5,1.41
+ Saint-Mélany ,SAINT MELANY ,7260,7275,82,44.516667,4.116667,1.65
+ Saint-Michel-d'Aurance ,SAINT MICHEL D AURANCE,7160,7276,82,44.9,4.466667,0.61
+ Saint-Michel-de-Boulogne ,SAINT MICHEL DE BOULOGNE,7200,7277,82,44.683333,4.433333,1.46
+ Saint-Montant ,SAINT MONTANT ,7220,7279,82,44.433333,4.616667,1.52
+ Saint-Paul-le-Jeune ,SAINT PAUL LE JEUNE,7460,7280,82,44.333333,4.15,1.97
+ Saint-Péray ,SAINT PERAY ,7130,7281,82,44.95,4.833333,1.9
+ Saint-Pierre-de-Colombier ,SAINT PIERRE DE COLOMBIER,7450,7282,82,44.7,4.266667,1.22
+ Saint-Pierre-la-Roche ,SAINT PIERRE LA ROCHE,7400,7283,82,44.65,4.616667,1.2
+ Saint-Pierre-sur-Doux ,SAINT PIERRE SUR DOUX,7520,7285,82,45.1,4.466667,1.44
+ Saint-Pierreville ,SAINT PIERREVILLE ,7190,7286,82,44.816667,4.483333,0.19
+ Saint-Pons ,SAINT PONS ,7580,7287,82,44.583333,4.583333,0.86
+ Saint-Privat ,SAINT PRIVAT ,7200,7289,82,44.633333,4.416667,0.63
+ Saint-Prix ,SAINT PRIX ,7270,7290,82,44.95,4.516667,1.77
+ Saint-Remèze ,SAINT REMEZE ,7700,7291,82,44.383333,4.5,1.74
+ Saint-Romain-d'Ay ,SAINT ROMAIN D AY,7290,7292,82,45.166667,4.666667,1.73
+ Saint-Romain-de-Lerps ,SAINT ROMAIN DE LERPS,7130,7293,82,44.983333,4.8,1.73
+ Saint-Sauveur-de-Cruzières ,SAINT SAUVEUR DE CRUZIERES,7460,7294,82,44.3,4.266667,2.11
+ Saint-Sauveur-de-Montagut ,SAINT SAUVEUR DE MONTAGUT,7190,7295,82,44.816667,4.583333,1.33
+ Saint-Sernin ,SAINT SERNIN ,7200,7296,82,44.566667,4.4,0.93
+ Saint-Symphorien-sous-Chomérac ,SAINT SYMPHORIEN SOUS CHOMERAC,7210,7298,82,44.716667,4.7,1.24
+ Saint-Symphorien-de-Mahun ,SAINT SYMPHORIEN DE MAHUN,7290,7299,82,45.166667,4.55,2.07
+ Saint-Thomé ,SAINT THOME ,7220,7300,82,44.5,4.633333,1.23
+ Saint-Victor ,SAINT VICTOR ,7410,7301,82,45.1,4.666667,1.44
+ Saint-Vincent-de-Barrès ,SAINT VINCENT DE BARRES,7210,7302,82,44.65,4.7,1.24
+ Saint-Vincent-de-Durfort ,SAINT VINCENT DE DURFORT,7360,7303,82,44.8,4.633333,0.91
+ Salavas ,SALAVAS ,7150,7304,82,44.4,4.383333,1.67
+ Les Salelles ,LES SALELLES ,7140,7305,82,44.416667,4.083333,1.82
+ Sampzon ,SAMPZON ,7120,7306,82,44.416667,4.316667,1.6
+ Sanilhac ,SANILHAC ,7110,7307,82,44.516667,4.25,1.15
+ Sarras ,SARRAS ,7370,7308,82,45.183333,4.8,1.81
+ Satillieu ,SATILLIEU ,7290,7309,82,45.15,4.616667,1.66
+ Savas ,SAVAS ,7430,7310,82,45.3,4.7,2.32
+ Sceautres ,SCEAUTRES ,7400,7311,82,44.616667,4.633333,0.91
+ Sécheras ,SECHERAS ,7610,7312,82,45.116667,4.766667,1.57
+ Serrières ,SERRIERES ,7340,7313,82,45.316667,4.75,2.4
+ Silhac ,SILHAC ,7240,7314,82,44.9,4.633333,0.91
+ Soyons ,SOYONS ,7130,7316,82,44.883333,4.85,1.98
+ Talencieux ,TALENCIEUX ,7340,7317,82,45.216667,4.783333,1.95
+ Tauriers ,TAURIERS ,7110,7318,82,44.55,4.283333,1
+ Le Teil ,LE TEIL ,7400,7319,82,44.55,4.683333,1.15
+ Thines ,THINES ,7140,7320,82,44.483333,4.05,1.98
+ Thorrenc ,THORRENC ,7340,7321,82,45.233333,4.766667,2.03
+ Thueyts ,THUEYTS ,7330,7322,82,44.683333,4.216667,1.16
+ Toulaud ,TOULAUD ,7130,7323,82,44.9,4.816667,1.81
+ Uzer ,UZER ,7110,7327,82,44.516667,4.333333,1.3
+ Vagnas ,VAGNAS ,7150,7328,82,44.35,4.383333,1.89
+ Valgorge ,VALGORGE ,7110,7329,82,44.583333,4.116667,1.93
+ Vallon-Pont-d'Arc ,VALLON PONT D ARC,7150,7330,82,44.4,4.4,1.67
+ Vals-les-Bains ,VALS LES BAINS ,7600,7331,82,44.666667,4.366667,0.87
+ Valvignères ,VALVIGNERES ,7400,7332,82,44.5,4.583333,1.8
+ Vanosc ,VANOSC ,7690,7333,82,45.216667,4.55,1.95
+ Les Vans ,LES VANS ,7140,7334,82,44.4,4.133333,1.67
+ Vaudevant ,VAUDEVANT ,7410,7335,82,45.1,4.616667,1.44
+ Vernon ,VERNON ,7260,7336,82,44.5,4.233333,1.23
+ Vernosc-lès-Annonay ,VERNOSC LES ANNONAY ,7430,7337,82,45.216667,4.716667,1.95
+ Vernoux-en-Vivarais ,VERNOUX EN VIVARAIS ,7240,7338,82,44.9,4.65,0.99
+ Vesseaux ,VESSEAUX ,7200,7339,82,44.633333,4.45,0.97
+ Veyras ,VEYRAS ,7000,7340,82,44.733333,4.566667,0.58
+ Villeneuve-de-Berg ,VILLENEUVE DE BERG ,7170,7341,82,44.55,4.5,1
+ Villevocance ,VILLEVOCANCE ,7690,7342,82,45.233333,4.583333,2.03
+ Vinzieux ,VINZIEUX ,7340,7344,82,45.333333,4.7,2.47
+ Vion ,VION ,7610,7345,82,45.1,4.8,1.73
+ Viviers ,VIVIERS ,7220,7346,82,44.483333,4.683333,1.31
+ Vocance ,VOCANCE ,7690,7347,82,45.2,4.55,1.88
+ Vogüé ,VOGUE ,7200,7348,82,44.55,4.416667,1
+ La Voulte-sur-Rhône ,LA VOULTE SUR RHONE,7800,7349,82,44.8,4.783333,1.65
+ Acy-Romance ,ACY ROMANCE ,8300,8001,21,49.5,4.333333,1.39
+ Aiglemont ,AIGLEMONT ,8090,8003,21,49.783333,4.783333,2.1
+ Aire ,AIRE ,8190,8004,21,49.483333,4.166667,2.1
+ Alincourt ,ALINCOURT ,8310,8005,21,49.4,4.35,1.4
+ Alland'huy-et-Sausseuil ,ALLAND HUY ET SAUSSEUIL,8130,8006,21,49.516667,4.566667,0.64
+ Les Alleux ,LES ALLEUX ,8400,8007,21,49.466667,4.733333,1.25
+ Amagne ,AMAGNE ,8300,8008,21,49.516667,4.5,1.86
+ Amblimont ,AMBLIMONT ,8210,8009,21,49.633333,5.066667,1.77
+ Ambly-Fleury ,AMBLY FLEURY ,8130,8010,21,49.483333,4.483333,1.87
+ Anchamps ,ANCHAMPS ,8500,8011,21,49.933333,4.683333,2.09
+ Andevanne ,ANDEVANNE ,8240,8012,21,49.383333,5.083333,1.84
+ Angecourt ,ANGECOURT ,8450,8013,21,49.633333,4.983333,1.41
+ Annelles ,ANNELLES ,8310,8014,21,49.433333,4.416667,1.18
+ Antheny ,ANTHENY ,8260,8015,21,49.85,4.316667,1.62
+ Aouste ,AOUSTE ,8290,8016,21,49.783333,4.316667,1.46
+ Apremont ,APREMONT ,8250,8017,21,49.266667,5,2.27
+ Ardeuil-et-Montfauxelles ,ARDEUIL ET MONTFAUXELLES ,8400,8018,21,49.266667,4.716667,2.27
+ Les Grandes-Armoises ,LES GRANDES ARMOISES ,8390,8019,21,49.533333,4.9,1.22
+ Les Petites Armoises ,LES PETITES ARMOISES ,8390,8020,21,49.5,4.816667,0.74
+ Arnicourt ,ARNICOURT ,8300,8021,21,49.55,4.35,1.32
+ Arreux ,ARREUX ,8090,8022,21,49.833333,4.65,1.43
+ Artaise-le-Vivier ,ARTAISE LE VIVIER ,8390,8023,21,49.583333,4.9,1.41
+ Asfeld ,ASFELD ,8190,8024,21,49.466667,4.116667,2.32
+ Attigny ,ATTIGNY ,8130,8025,21,49.483333,4.583333,0.85
+ Aubigny-les-Pothées ,AUBIGNY LES POTHEES ,8150,8026,21,49.783333,4.433333,1.41
+ Auboncourt-Vauzelles ,AUBONCOURT VAUZELLES ,8270,8027,21,49.55,4.5,0.79
+ Aubrives ,AUBRIVES ,8320,8028,21,50.1,4.766667,-1
+ Auflance ,AUFLANCE ,8370,8029,21,49.616667,5.283333,2.7
+ Auge ,AUGE ,8380,8030,21,49.85,4.266667,1.67
+ Aure ,AURE ,8400,8031,21,49.266667,4.633333,2.27
+ Aussonce ,AUSSONCE ,8310,8032,21,49.35,4.316667,1.72
+ Authe ,AUTHE ,8240,8033,21,49.45,4.883333,1.07
+ Autrecourt-et-Pourron ,AUTRECOURT ET POURRON ,8210,8034,21,49.616667,5.033333,1.62
+ Autruche ,AUTRUCHE ,8240,8035,21,49.45,4.9,1.07
+ Autry ,AUTRY ,8250,8036,21,49.266667,4.833333,2.27
+ Auvillers-les-Forges ,AUVILLERS LES FORGES ,8260,8037,21,49.866667,4.35,1.65
+ Avançon ,AVANCON ,8300,8038,21,49.483333,4.25,1.75
+ Avaux ,AVAUX ,8190,8039,21,49.45,4.083333,2.46
+ Les Ayvelles ,LES AYVELLES ,8000,8040,21,49.7,4.766667,1.64
+ Balaives-et-Butz ,BALAIVES ET BUTZ ,8160,8042,21,49.666667,4.733333,1
+ Balan ,BALAN ,8200,8043,21,49.683333,4.966667,1.34
+ Balham ,BALHAM ,8190,8044,21,49.483333,4.166667,2.1
+ Ballay ,BALLAY ,8400,8045,21,49.433333,4.75,1.18
+ Banogne-Recouvrance ,BANOGNE RECOUVRANCE ,8220,8046,21,49.566667,4.116667,2.32
+ Barbaise ,BARBAISE ,8430,8047,21,49.666667,4.566667,1.06
+ Barby ,BARBY ,8300,8048,21,49.516667,4.316667,1.46
+ Bar-lès-Buzancy ,BAR LES BUZANCY ,8240,8049,21,49.433333,4.95,1.27
+ Barricourt ,BARRICOURT ,8240,8050,21,49.416667,5.05,1.7
+ Bay ,BAY ,8290,8051,21,49.766667,4.233333,1.82
+ Bazeilles ,BAZEILLES ,8140,8053,21,49.666667,4.983333,1.66
+ Beaumont-en-Argonne ,BEAUMONT EN ARGONNE ,8210,8055,21,49.533333,5.05,1.7
+ Belval ,BELVAL ,8090,8058,21,49.783333,4.633333,1.11
+ Belval-Bois-des-Dames ,BELVAL BOIS DES DAMES,8240,8059,21,49.466667,5.033333,1.62
+ Bergnicourt ,BERGNICOURT ,8300,8060,21,49.416667,4.25,1.75
+ La Berlière ,LA BERLIERE ,8240,8061,21,49.533333,4.916667,1.36
+ Bertoncourt ,BERTONCOURT ,8300,8062,21,49.533333,4.4,1.1
+ La Besace ,LA BESACE ,8450,8063,21,49.566667,4.966667,1.34
+ Biermes ,BIERMES ,8300,8064,21,49.483333,4.383333,1.17
+ Bièvres ,BIEVRES ,8370,8065,21,49.558333,5.266667,-1
+ Bignicourt ,BIGNICOURT ,8310,8066,21,49.4,4.416667,1.4
+ Blagny ,BLAGNY ,8110,8067,21,49.616667,5.183333,2.27
+ Blaise ,BLAISE ,8400,8068,21,49.383333,4.666667,1.51
+ Blanzy-la-Salonnaise ,BLANZY LA SALONNAISE ,8190,8070,21,49.483333,4.166667,2.1
+ Blombay ,BLOMBAY ,8260,8071,21,49.816667,4.45,1.33
+ Bosséval-et-Briancourt ,BOSSEVAL ET BRIANCOURT ,8350,8072,21,49.75,4.866667,1.54
+ Bossus-lès-Rumigny ,BOSSUS LES RUMIGNY ,8290,8073,21,49.833333,4.25,1.75
+ Bouconville ,BOUCONVILLE ,8250,8074,21,49.25,4.766667,2.38
+ Boult-aux-Bois ,BOULT AUX BOIS ,8240,8075,21,49.433333,4.833333,1.59
+ Boulzicourt ,BOULZICOURT ,8410,8076,21,49.7,4.7,0.56
+ Bourcq ,BOURCQ ,8400,8077,21,49.383333,4.633333,1.51
+ Bourg-Fidèle ,BOURG FIDELE ,8230,8078,21,49.883333,4.533333,1.76
+ Boutancourt ,BOUTANCOURT ,8160,8079,21,49.683333,4.766667,0.48
+ Bouvellemont ,BOUVELLEMONT ,8430,8080,21,49.583333,4.65,1.16
+ Brécy-Brières ,BRECY BRIERES ,8400,8082,21,49.316667,4.766667,1.94
+ Brévilly ,BREVILLY ,8140,8083,21,49.666667,5.083333,1.84
+ Brienne-sur-Aisne ,BRIENNE SUR AISNE ,8190,8084,21,49.433333,4.05,2.61
+ Brieulles-sur-Bar ,BRIEULLES SUR BAR ,8240,8085,21,49.483333,4.85,1.5
+ Briquenay ,BRIQUENAY ,8240,8086,21,49.4,4.883333,1.4
+ Brognon ,BROGNON ,8380,8087,21,49.933333,4.3,2.09
+ Bulson ,BULSON ,8450,8088,21,49.633333,4.916667,1.12
+ Buzancy ,BUZANCY ,8240,8089,21,49.416667,4.95,1.29
+ Carignan ,CARIGNAN ,8110,8090,21,49.633333,5.166667,2.2
+ La Cassine ,LA CASSINE ,8160,8091,21,49.583333,4.816667,2.04
+ Cauroy ,CAUROY ,8310,8092,21,49.35,4.466667,1.72
+ La Cerleau ,LA CERLEAU ,8290,8093,21,49.8,4.366667,1.29
+ Cernion ,CERNION ,8260,8094,21,49.8,4.425,1.22
+ Chagny ,CHAGNY ,8430,8095,21,49.583333,4.7,1.58
+ Chalandry-Élaire ,CHALANDRY ELAIRE ,8160,8096,21,49.716667,4.75,1.19
+ Challerange ,CHALLERANGE ,8400,8097,21,49.316667,4.75,1.94
+ Champigneulle ,CHAMPIGNEULLE ,8250,8098,21,49.35,4.916667,1.72
+ Champigneul-sur-Vence ,CHAMPIGNEUL SUR VENCE ,8430,8099,21,49.7,4.65,0.83
+ Champlin ,CHAMPLIN ,8260,8100,21,49.833333,4.333333,1.43
+ La Chapelle ,LA CHAPELLE ,8200,8101,21,49.733333,5.016667,1.75
+ Chappes ,CHAPPES ,8220,8102,21,49.608333,4.275,-1
+ Charbogne ,CHARBOGNE ,8130,8103,21,49.5,4.6,0.74
+ Chardeny ,CHARDENY ,8400,8104,21,49.416667,4.6,1.29
+ Charleville-Mézières ,CHARLEVILLE MEZIERES ,8090,8105,21,49.766667,4.716667,1
+ Charnois ,CHARNOIS ,8600,8106,21,50.1,4.808,-1
+ Château-Porcien ,CHATEAU PORCIEN ,8360,8107,21,49.533333,4.25,1.75
+ Châtel-Chéhéry ,CHATEL CHEHERY ,8250,8109,21,49.283333,4.95,2.16
+ Le Châtelet-sur-Sormonne ,LE CHATELET SUR SORMONNE,8150,8110,21,49.833333,4.516667,1.43
+ Le Châtelet-sur-Retourne ,LE CHATELET SUR RETOURNE,8300,8111,21,49.416667,4.283333,1.6
+ Châtillon-sur-Bar ,CHATILLON SUR BAR ,8240,8112,21,49.466667,4.816667,1.85
+ Chaumont-Porcien ,CHAUMONT PORCIEN ,8220,8113,21,49.65,4.25,1.75
+ Chéhéry ,CHEHERY ,8350,8114,21,49.65,4.866667,0.91
+ Le Chesne ,LE CHESNE ,8390,8116,21,49.516667,4.766667,0.71
+ Chesnois-Auboncourt ,CHESNOIS AUBONCOURT ,8270,8117,21,49.566667,4.566667,1.48
+ Cheveuges ,CHEVEUGES ,8350,8119,21,49.666667,4.866667,0.91
+ Chevières ,CHEVIERES ,8250,8120,21,49.333333,4.9,1.83
+ Chilly ,CHILLY ,8260,8121,21,49.833333,4.466667,1.54
+ Chooz ,CHOOZ ,8600,8122,21,50.1,4.80825,-1
+ Chuffilly-Roche ,CHUFFILLY ROCHE ,8130,8123,21,49.45,4.616667,1.07
+ Clavy-Warby ,CLAVY WARBY ,8560,8124,21,49.75,4.55,0.89
+ Condé-lès-Herpy ,CONDE LES HERPY ,8360,8126,21,49.533333,4.233333,1.82
+ Condé-lès-Autry ,CONDE LES AUTRY ,8250,8128,21,49.25,4.85,2.38
+ Connage ,CONNAGE ,8450,8129,21,49.633333,4.85,1.34
+ Contreuve ,CONTREUVE ,8400,8130,21,49.366667,4.633333,1.62
+ Cornay ,CORNAY ,8250,8131,21,49.3,4.95,2.05
+ Corny-Machéroménil ,CORNY MACHEROMENIL ,8270,8132,21,49.583333,4.433333,0.96
+ Coucy ,COUCY ,8300,8133,21,49.5,4.45,1.26
+ Coulommes-et-Marqueny ,COULOMMES ET MARQUENY ,8130,8134,21,49.433333,4.583333,1.18
+ La Croix-aux-Bois ,LA CROIX AUX BOIS,8400,8135,21,49.4,4.8,1.4
+ Daigny ,DAIGNY ,8140,8136,21,49.716667,5,1.48
+ Damouzy ,DAMOUZY ,8090,8137,21,49.8,4.666667,1.22
+ Deville ,DEVILLE ,8800,8139,21,49.883333,4.7,1.76
+ Dom-le-Mesnil ,DOM LE MESNIL ,8160,8140,21,49.683333,4.8,0.62
+ Dommery ,DOMMERY ,8460,8141,21,49.666667,4.466667,0.97
+ Donchery ,DONCHERY ,8350,8142,21,49.7,4.866667,0.91
+ Doumely-Bégny ,DOUMELY BEGNY ,8220,8143,21,49.616667,4.3,1.53
+ Doux ,DOUX ,8300,8144,21,49.5,4.433333,1.06
+ Douzy ,DOUZY ,8140,8145,21,49.666667,5.05,1.7
+ Draize ,DRAIZE ,8220,8146,21,49.65,4.333333,1.49
+ Dricourt ,DRICOURT ,8310,8147,21,49.4,4.516667,1.4
+ L'Écaille ,L ECAILLE ,8300,8148,21,49.416667,4.216667,1.89
+ L'Échelle ,L ECHELLE ,8150,8149,21,49.8,4.466667,1.22
+ Écly ,ECLY ,8300,8150,21,49.55,4.283333,1.6
+ Écordal ,ECORDAL ,8130,8151,21,49.533333,4.583333,0.57
+ Élan ,ELAN ,8160,8152,21,49.65,4.75,0.78
+ Escombres-et-le-Chesnois ,ESCOMBRES ET LE CHESNOIS,8110,8153,21,49.7,5.116667,1.98
+ Estrebay ,ESTREBAY ,8260,8154,21,49.833333,4.35,1.43
+ Étalle ,ETALLE ,8260,8155,21,49.85,4.433333,1.54
+ Éteignières ,ETEIGNIERES ,8260,8156,21,49.883333,4.383333,1.76
+ Étrépigny ,ETREPIGNY ,8160,8158,21,49.683333,4.75,0.7
+ Euilly-et-Lombut ,EUILLY ET LOMBUT ,8210,8159,21,49.633333,5.116667,1.98
+ Évigny ,EVIGNY ,8090,8160,21,49.733333,4.666667,0.8
+ Exermont ,EXERMONT ,8250,8161,21,49.3,5,2.05
+ Fagnon ,FAGNON ,8090,8162,21,49.733333,4.633333,0.95
+ Faissault ,FAISSAULT ,8270,8163,21,49.616667,4.5,0.67
+ Falaise ,FALAISE ,8400,8164,21,49.366667,4.733333,1.62
+ Faux ,FAUX ,8270,8165,21,49.533333,4.5,0.98
+ Fépin ,FEPIN ,8170,8166,21,50.016667,4.733333,2.63
+ La Férée ,LA FEREE ,8290,8167,21,49.75,4.3,1.53
+ La Ferté-sur-Chiers ,LA FERTE SUR CHIERS,8370,8168,21,49.566667,5.233333,2.48
+ Fleigneux ,FLEIGNEUX ,8200,8170,21,49.75,4.95,1.27
+ Fléville ,FLEVILLE ,8250,8171,21,49.3,4.966667,2.05
+ Fligny ,FLIGNY ,8380,8172,21,49.883333,4.283333,1.76
+ Flize ,FLIZE ,8160,8173,21,49.7,4.766667,0.7
+ Floing ,FLOING ,8200,8174,21,49.716667,4.933333,1.19
+ Foisches ,FOISCHES ,8600,8175,21,50.125,4.775,-1
+ Fossé ,FOSSE ,8240,8176,21,49.45,5,1.48
+ Foulzy ,FOULZY ,8260,8177,21,49.85,4.366667,1.54
+ Fraillicourt ,FRAILLICOURT ,8220,8178,21,49.666667,4.15,2.18
+ Francheval ,FRANCHEVAL ,8140,8179,21,49.7,5.05,1.7
+ La Francheville ,LA FRANCHEVILLE ,8000,8180,21,49.733333,4.716667,0.78
+ Le Fréty ,LE FRETY ,8290,8182,21,49.733333,4.283333,1.6
+ Fromelennes ,FROMELENNES ,8600,8183,21,50.125,4.858333,-1
+ Fromy ,FROMY ,8370,8184,21,49.6,5.25,2.56
+ Fumay ,FUMAY ,8170,8185,21,49.983333,4.7,2.41
+ Germont ,GERMONT ,8240,8186,21,49.433333,4.883333,1.18
+ Gernelle ,GERNELLE ,8440,8187,21,49.766667,4.816667,1.1
+ Gespunsart ,GESPUNSART ,8700,8188,21,49.816667,4.833333,1.46
+ Girondelle ,GIRONDELLE ,8260,8189,21,49.85,4.383333,1.54
+ Givet ,GIVET ,8600,8190,21,50.133333,4.816667,-1
+ Givonne ,GIVONNE ,8200,8191,21,49.716667,4.983333,1.41
+ Givron ,GIVRON ,8220,8192,21,49.65,4.283333,1.6
+ Givry ,GIVRY ,8130,8193,21,49.483333,4.533333,1.1
+ Gomont ,GOMONT ,8190,8195,21,49.5,4.166667,2.1
+ Grandham ,GRANDHAM ,8250,8197,21,49.3,4.866667,2.05
+ Grandpré ,GRANDPRE ,8250,8198,21,49.333333,4.866667,1.83
+ La Grandville ,LA GRANDVILLE ,8700,8199,21,49.783333,4.8,1.11
+ Grivy-Loisy ,GRIVY LOISY ,8400,8200,21,49.416667,4.633333,1.29
+ Gruyères ,GRUYERES ,8430,8201,21,49.716667,4.6,1.15
+ Gué-d'Hossus ,GUE D HOSSUS ,8230,8202,21,49.95,4.533333,2.2
+ Guignicourt-sur-Vence ,GUIGNICOURT SUR VENCE ,8430,8203,21,49.683333,4.65,0.59
+ Guincourt ,GUINCOURT ,8130,8204,21,49.566667,4.633333,1.15
+ Hagnicourt ,HAGNICOURT ,8430,8205,21,49.616667,4.566667,1.18
+ Ham-les-Moines ,HAM LES MOINES ,8090,8206,21,49.8,4.6,1.22
+ Ham-sur-Meuse ,HAM SUR MEUSE ,8600,8207,21,50.116667,4.783333,-1
+ Hannappes ,HANNAPPES ,8290,8208,21,49.816667,4.216667,1.89
+ Hannogne-Saint-Martin ,HANNOGNE SAINT MARTIN ,8160,8209,21,49.666667,4.833333,1.16
+ Hannogne-Saint-Rémy ,HANNOGNE SAINT REMY ,8220,8210,21,49.6,4.133333,2.25
+ Haraucourt ,HARAUCOURT ,8450,8211,21,49.616667,4.966667,1.34
+ Harcy ,HARCY ,8150,8212,21,49.833333,4.566667,1.43
+ La Hardoye ,LA HARDOYE ,8220,8213,21,49.683333,4.216667,1.89
+ Hargnies ,HARGNIES ,8170,8214,21,50.016667,4.783333,2.63
+ Haudrecy ,HAUDRECY ,8090,8216,21,49.783333,4.616667,1.11
+ Haulmé ,HAULME ,8800,8217,21,49.866667,4.783333,1.65
+ Les Hautes-Rivières ,LES HAUTES RIVIERES ,8800,8218,21,49.883333,4.833333,1.76
+ Hauviné ,HAUVINE ,8310,8220,21,49.3,4.4,2.05
+ Havys ,HAVYS ,8260,8221,21,49.8,4.4,1.22
+ Herbeuval ,HERBEUVAL ,8370,8223,21,49.6,5.333333,2.91
+ Herpy-l'Arlésienne ,HERPY L ARLESIENNE ,8360,8225,21,49.516667,4.216667,1.89
+ Hierges ,HIERGES ,8320,8226,21,50.1,4.74115,-1
+ La Horgne ,LA HORGNE ,8430,8228,21,49.633333,4.666667,0.66
+ Houldizy ,HOULDIZY ,8090,8230,21,49.816667,4.666667,1.33
+ Illy ,ILLY ,8200,8232,21,49.75,4.966667,1.34
+ Imécourt ,IMECOURT ,8240,8233,21,49.366667,4.983333,1.62
+ Inaumont ,INAUMONT ,8300,8234,21,49.566667,4.316667,1.46
+ Issancourt-et-Rumel ,ISSANCOURT ET RUMEL ,8440,8235,21,49.75,4.816667,0.89
+ Jandun ,JANDUN ,8430,8236,21,49.65,4.55,1.3
+ Joigny-sur-Meuse ,JOIGNY SUR MEUSE ,8700,8237,21,49.833333,4.766667,1.43
+ Jonval ,JONVAL ,8130,8238,21,49.566667,4.65,1.29
+ Juniville ,JUNIVILLE ,8310,8239,21,49.4,4.383333,1.4
+ Laifour ,LAIFOUR ,8800,8242,21,49.9,4.683333,1.87
+ Lalobbe ,LALOBBE ,8460,8243,21,49.666667,4.366667,1.24
+ Lametz ,LAMETZ ,8130,8244,21,49.533333,4.7,1.64
+ Lançon ,LANCON ,8250,8245,21,49.266667,4.883333,2.27
+ Landres-et-Saint-Georges ,LANDRES ET SAINT GEORGES,8240,8246,21,49.35,5.016667,1.72
+ Landrichamps ,LANDRICHAMPS ,8600,8247,21,50.083333,4.82864,-1
+ Launois-sur-Vence ,LAUNOIS SUR VENCE ,8430,8248,21,49.65,4.533333,1.57
+ Laval-Morency ,LAVAL MORENCY ,8150,8249,21,49.833333,4.483333,1.43
+ Leffincourt ,LEFFINCOURT ,8310,8250,21,49.383333,4.55,1.51
+ Lépron-les-Vallées ,LEPRON LES VALLEES ,8150,8251,21,49.75,4.45,1.44
+ Létanne ,LETANNE ,8210,8252,21,49.55,5.083333,1.84
+ Liart ,LIART ,8290,8254,21,49.766667,4.333333,1.39
+ Linay ,LINAY ,8110,8255,21,49.616667,5.216667,2.41
+ Liry ,LIRY ,8400,8256,21,49.3,4.666667,2.05
+ Logny-Bogny ,LOGNY BOGNY ,8150,8257,21,49.766667,4.4,2.02
+ Logny-lès-Chaumont ,LOGNY LES CHAUMONT ,8220,8258,21,49.633333,4.233333,1.82
+ Longwé ,LONGWE ,8400,8259,21,49.383333,4.8,1.51
+ Lonny ,LONNY ,8150,8260,21,49.816667,4.583333,1.33
+ Louvergny ,LOUVERGNY ,8390,8261,21,49.55,4.733333,1.16
+ Lucquy ,LUCQUY ,8300,8262,21,49.533333,4.466667,1.52
+ Lumes ,LUMES ,8440,8263,21,49.733333,4.783333,1.56
+ Machault ,MACHAULT ,8310,8264,21,49.35,4.5,1.72
+ Mainbresson ,MAINBRESSON ,8220,8265,21,49.716667,4.2,1.96
+ Mainbressy ,MAINBRESSY ,8220,8266,21,49.7,4.216667,1.89
+ Mairy ,MAIRY ,8140,8267,21,49.65,5.05,1.7
+ Maisoncelle-et-Villers ,MAISONCELLE ET VILLERS ,8450,8268,21,49.6,4.9,1.05
+ Malandry ,MALANDRY ,8370,8269,21,49.583333,5.183333,2.27
+ Manre ,MANRE ,8400,8271,21,49.266667,4.666667,2.27
+ Maranwez ,MARANWEZ ,8460,8272,21,49.716667,4.35,1.33
+ Marby ,MARBY ,8260,8273,21,49.816667,4.416667,1.33
+ Marcq ,MARCQ ,8250,8274,21,49.316667,4.916667,1.94
+ Margut ,MARGUT ,8370,8276,21,49.583333,5.266667,2.63
+ Marlemont ,MARLEMONT ,8290,8277,21,49.75,4.366667,1.37
+ Marquigny ,MARQUIGNY ,8390,8278,21,49.55,4.7,1.63
+ Mars-sous-Bourcq ,MARS SOUS BOURCQ ,8400,8279,21,49.4,4.65,1.4
+ Marvaux-Vieux ,MARVAUX VIEUX ,8400,8280,21,49.283333,4.683333,2.16
+ Matton-et-Clémency ,MATTON ET CLEMENCY ,8110,8281,21,49.666667,5.2,2.34
+ Maubert-Fontaine ,MAUBERT FONTAINE ,8260,8282,21,49.866667,4.433333,1.65
+ Les Mazures ,LES MAZURES ,8500,8284,21,49.883333,4.633333,1.76
+ Meillier-Fontaine ,MEILLIER FONTAINE ,8700,8285,21,49.833333,4.716667,1.66
+ Ménil-Annelles ,MENIL ANNELLES ,8310,8286,21,49.433333,4.45,1.18
+ Ménil-Lépinois ,MENIL LEPINOIS ,8310,8287,21,49.366667,4.283333,2.04
+ Mesmont ,MESMONT ,8270,8288,21,49.616667,4.4,1.1
+ Messincourt ,MESSINCOURT ,8110,8289,21,49.683333,5.15,2.13
+ Mogues ,MOGUES ,8110,8291,21,49.65,5.266667,2.63
+ Moiry ,MOIRY ,8370,8293,21,49.6,5.266667,2.63
+ La Moncelle ,LA MONCELLE ,8140,8294,21,49.683333,5,1.48
+ Mondigny ,MONDIGNY ,8430,8295,21,49.716667,4.633333,1.04
+ Montcheutin ,MONTCHEUTIN ,8250,8296,21,49.283333,4.833333,2.16
+ Montcornet ,MONTCORNET ,8090,8297,21,49.833333,4.633333,1.43
+ Montcy-Notre-Dame ,MONTCY NOTRE DAME ,8090,8298,21,49.783333,4.75,1.52
+ Montgon ,MONTGON ,8390,8301,21,49.5,4.716667,1.45
+ Monthermé ,MONTHERME ,8800,8302,21,49.883333,4.733333,1.76
+ Monthois ,MONTHOIS ,8400,8303,21,49.316667,4.716667,1.94
+ Montigny-sur-Meuse ,MONTIGNY SUR MEUSE ,8170,8304,21,50.05,4.716667,2.85
+ Montigny-sur-Vence ,MONTIGNY SUR VENCE ,8430,8305,21,49.65,4.616667,0.24
+ Mont-Laurent ,MONT LAURENT ,8130,8306,21,49.466667,4.483333,1.92
+ Montmeillant ,MONTMEILLANT ,8220,8307,21,49.683333,4.333333,1.55
+ Mont-Saint-Martin ,MONT SAINT MARTIN ,8400,8308,21,49.333333,4.65,1.83
+ Mont-Saint-Rémy ,MONT SAINT REMY ,8310,8309,21,49.383333,4.483333,1.51
+ Mouron ,MOURON ,8250,8310,21,49.316667,4.783333,1.94
+ Mouzon ,MOUZON ,8210,8311,21,49.6,5.083333,1.84
+ Murtin-et-Bogny ,MURTIN ET BOGNY ,8150,8312,21,49.816667,4.533333,1.33
+ Nanteuil-sur-Aisne ,NANTEUIL SUR AISNE ,8300,8313,21,49.516667,4.3,1.53
+ Neuflize ,NEUFLIZE ,8300,8314,21,49.416667,4.3,1.53
+ Neufmaison ,NEUFMAISON ,8560,8315,21,49.766667,4.5,1.41
+ Neufmanil ,NEUFMANIL ,8700,8316,21,49.816667,4.8,1.33
+ La Neuville-à-Maire ,LA NEUVILLE A MAIRE,8450,8317,21,49.583333,4.866667,1.15
+ La Neuville-aux-Joûtes ,LA NEUVILLE AUX JOUTES,8380,8318,21,49.916667,4.233333,1.98
+ Neuville-Day ,NEUVILLE DAY ,8130,8321,21,49.5,4.683333,1.3
+ Neuville-lès-This ,NEUVILLE LES THIS ,8090,8322,21,49.75,4.6,1.21
+ La Neuville-lès-Wasigny ,LA NEUVILLE LES WASIGNY,8270,8323,21,49.633333,4.366667,1.45
+ Neuvizy ,NEUVIZY ,8430,8324,21,49.633333,4.533333,1.6
+ Noirval ,NOIRVAL ,8400,8325,21,49.466667,4.8,1.77
+ Nouart ,NOUART ,8240,8326,21,49.433333,5.05,1.7
+ Nouvion-sur-Meuse ,NOUVION SUR MEUSE ,8160,8327,21,49.7,4.8,0.78
+ Nouzonville ,NOUZONVILLE ,8700,8328,21,49.816667,4.75,1.33
+ Novion-Porcien ,NOVION PORCIEN ,8270,8329,21,49.6,4.416667,1.03
+ Novy-Chevrières ,NOVY CHEVRIERES ,8300,8330,21,49.533333,4.45,1.34
+ Noyers-Pont-Maugis ,NOYERS PONT MAUGIS ,8350,8331,21,49.666667,4.95,1.44
+ Oches ,OCHES ,8240,8332,21,49.5,4.933333,1.19
+ Omicourt ,OMICOURT ,8450,8334,21,49.633333,4.833333,1.62
+ Omont ,OMONT ,8430,8335,21,49.6,4.733333,1.86
+ Osnes ,OSNES ,8110,8336,21,49.65,5.15,2.13
+ Pargny-Resson ,PARGNY RESSON ,8300,8337,21,49.5,4.4,1.1
+ Pauvres ,PAUVRES ,8310,8338,21,49.416667,4.5,1.29
+ Poilcourt-Sydney ,POILCOURT SYDNEY ,8190,8340,21,49.416667,4.1,2.39
+ Poix-Terron ,POIX TERRON ,8430,8341,21,49.65,4.65,0.32
+ Pouru-aux-Bois ,POURU AUX BOIS ,8140,8342,21,49.7,5.083333,1.84
+ Pouru-Saint-Rémy ,POURU SAINT REMY ,8140,8343,21,49.683333,5.083333,1.84
+ Prez ,PREZ ,8290,8344,21,49.8,4.35,1.32
+ Primat ,PRIMAT ,8250,8345,21,49.366667,4.766667,1.7
+ Prix-lès-Mézières ,PRIX LES MEZIERES ,8000,8346,21,49.75,4.683333,1.08
+ Puilly-et-Charbeaux ,PUILLY ET CHARBEAUX ,8370,8347,21,49.633333,5.25,2.56
+ Puiseux ,PUISEUX ,8270,8348,21,49.6,4.533333,0.97
+ Pure ,PURE ,8110,8349,21,49.666667,5.166667,2.2
+ Quatre-Champs ,QUATRE CHAMPS ,8400,8350,21,49.45,4.766667,1.32
+ Quilly ,QUILLY ,8400,8351,21,49.416667,4.6,1.29
+ Raillicourt ,RAILLICOURT ,8430,8352,21,49.65,4.583333,0.76
+ Rancennes ,RANCENNES ,8600,8353,21,50.108333,4.783333,-1
+ Raucourt-et-Flaba ,RAUCOURT ET FLABA ,8450,8354,21,49.6,4.95,1.27
+ Regniowez ,REGNIOWEZ ,8230,8355,21,49.933333,4.416667,2.09
+ Remaucourt ,REMAUCOURT ,8220,8356,21,49.616667,4.233333,1.82
+ Remilly-Aillicourt ,REMILLY AILLICOURT ,8450,8357,21,49.65,5,1.49
+ Remilly-les-Pothées ,REMILLY LES POTHEES ,8150,8358,21,49.783333,4.516667,1.11
+ Rémonville ,REMONVILLE ,8240,8359,21,49.4,5.033333,1.62
+ Renneville ,RENNEVILLE ,8220,8360,21,49.65,4.116667,2.32
+ Renwez ,RENWEZ ,8150,8361,21,49.833333,4.6,1.47
+ Rethel ,RETHEL ,8300,8362,21,49.516667,4.366667,1.24
+ Revin ,REVIN ,8500,8363,21,49.933333,4.633333,2.09
+ Rilly-sur-Aisne ,RILLY SUR AISNE ,8130,8364,21,49.483333,4.633333,0.85
+ Rimogne ,RIMOGNE ,8150,8365,21,49.833333,4.55,1.43
+ Rocquigny ,ROCQUIGNY ,8220,8366,21,49.683333,4.25,1.75
+ Rocroi ,ROCROI ,8230,8367,21,49.916667,4.516667,1.98
+ Roizy ,ROIZY ,8190,8368,21,49.416667,4.183333,2.03
+ La Romagne ,LA ROMAGNE ,8220,8369,21,49.683333,4.316667,1.46
+ Rouvroy-sur-Audry ,ROUVROY SUR AUDRY ,8150,8370,21,49.783333,4.483333,1.11
+ Rubécourt-et-Lamécourt ,RUBECOURT ET LAMECOURT ,8140,8371,21,49.683333,5.033333,1.62
+ Rubigny ,RUBIGNY ,8220,8372,21,49.683333,4.183333,2.03
+ Rumigny ,RUMIGNY ,8290,8373,21,49.8,4.266667,1.67
+ La Sabotterie ,LA SABOTTERIE ,8130,8374,21,49.55,4.666667,1.29
+ Sachy ,SACHY ,8110,8375,21,49.666667,5.133333,2.05
+ Saint-Aignan ,SAINT AIGNAN ,8350,8377,21,49.65,4.85,0.94
+ Saint-Clément-à-Arnes ,SAINT CLEMENT A ARNES,8310,8378,21,49.3,4.433333,2.05
+ Saint-Étienne-à-Arnes ,SAINT ETIENNE A ARNES,8310,8379,21,49.316667,4.5,1.94
+ Saint-Fergeux ,SAINT FERGEUX ,8360,8380,21,49.566667,4.216667,1.89
+ Saint-Germainmont ,SAINT GERMAINMONT ,8190,8381,21,49.5,4.116667,2.32
+ Saint-Jean-aux-Bois ,SAINT JEAN AUX BOIS,8220,8382,21,49.716667,4.3,1.53
+ Saint-Juvin ,SAINT JUVIN ,8250,8383,21,49.333333,4.933333,1.83
+ Saint-Lambert-et-Mont-de-Jeux ,SAINT LAMBERT ET MONT,8130,8384,21,49.5,4.616667,0.74
+ Saint-Laurent ,SAINT LAURENT ,8090,8385,21,49.766667,4.75,1.53
+ Saint-Loup-Champagne ,SAINT LOUP CHAMPAGNE ,8300,8386,21,49.45,4.216667,1.89
+ Saint-Loup-Terrier ,SAINT LOUP TERRIER ,8130,8387,21,49.583333,4.616667,1.31
+ Saint-Marceau ,SAINT MARCEAU ,8160,8388,21,49.716667,4.733333,1.42
+ Saint-Marcel ,SAINT MARCEL ,8560,8389,21,49.766667,4.566667,1.02
+ Sainte-Marie ,SAINTE MARIE ,8400,8390,21,49.383333,4.666667,1.51
+ Saint-Menges ,SAINT MENGES ,8200,8391,21,49.733333,4.933333,1.19
+ Saint-Morel ,SAINT MOREL ,8400,8392,21,49.333333,4.7,1.83
+ Saint-Pierre-à-Arnes ,SAINT PIERRE A ARNES,8310,8393,21,49.3,4.45,2.05
+ Saint-Pierremont ,SAINT PIERREMONT ,8240,8394,21,49.483333,4.933333,1.19
+ Saint-Pierre-sur-Vence ,SAINT PIERRE SUR VENCE,8430,8395,21,49.7,4.666667,0.97
+ Saint-Quentin-le-Petit ,SAINT QUENTIN LE PETIT,8220,8396,21,49.583333,4.083333,2.46
+ Saint-Rémy-le-Petit ,SAINT REMY LE PETIT,8300,8397,21,49.416667,4.233333,1.82
+ Sainte-Vaubourg ,SAINTE VAUBOURG ,8130,8398,21,49.466667,4.6,0.96
+ Sapogne-sur-Marche ,SAPOGNE SUR MARCHE ,8370,8399,21,49.6,5.3,2.77
+ Sapogne-et-Feuchères ,SAPOGNE ET FEUCHERES ,8160,8400,21,49.65,4.8,0.62
+ Saulces-Champenoises ,SAULCES CHAMPENOISES ,8130,8401,21,49.45,4.5,1.78
+ Saulces-Monclin ,SAULCES MONCLIN ,8270,8402,21,49.583333,4.483333,0.74
+ Sault-lès-Rethel ,SAULT LES RETHEL ,8300,8403,21,49.5,4.366667,1.24
+ Sault-Saint-Rémy ,SAULT SAINT REMY ,8190,8404,21,49.433333,4.166667,2.1
+ Sauville ,SAUVILLE ,8390,8405,21,49.55,4.8,0.62
+ Savigny-sur-Aisne ,SAVIGNY SUR AISNE ,8400,8406,21,49.35,4.733333,1.72
+ Séchault ,SECHAULT ,8250,8407,21,49.266667,4.733333,2.27
+ Sécheval ,SECHEVAL ,8150,8408,21,49.866667,4.65,2.43
+ Sedan ,SEDAN ,8200,8409,21,49.7,4.95,1.27
+ Semide ,SEMIDE ,8400,8410,21,49.333333,4.583333,1.83
+ Semuy ,SEMUY ,8130,8411,21,49.483333,4.65,0.85
+ Senuc ,SENUC ,8250,8412,21,49.316667,4.833333,1.94
+ Seraincourt ,SERAINCOURT ,8220,8413,21,49.616667,4.2,1.96
+ Servion ,SERVION ,8150,8414,21,49.783333,4.5,1.11
+ Séry ,SERY ,8270,8415,21,49.583333,4.35,1.58
+ Seuil ,SEUIL ,8300,8416,21,49.483333,4.45,1.26
+ Sévigny-la-Forêt ,SEVIGNY LA FORET ,8230,8417,21,49.866667,4.5,1.65
+ Sévigny-Waleppe ,SEVIGNY WALEPPE ,8220,8418,21,49.6,4.066667,2.53
+ Signy-l'Abbaye ,SIGNY L ABBAYE ,8460,8419,21,49.7,4.416667,1.03
+ Signy-le-Petit ,SIGNY LE PETIT ,8380,8420,21,49.9,4.283333,1.87
+ Signy-Montlibert ,SIGNY MONTLIBERT ,8370,8421,21,49.575,5.3,-1
+ Singly ,SINGLY ,8430,8422,21,49.65,4.683333,0.86
+ Sivry-lès-Buzancy ,SIVRY LES BUZANCY ,8240,8423,21,49.4,4.966667,1.4
+ Sommauthe ,SOMMAUTHE ,8240,8424,21,49.483333,4.983333,1.41
+ Sommerance ,SOMMERANCE ,8250,8425,21,49.316667,4.983333,1.94
+ Son ,SON ,8300,8426,21,49.583333,4.266667,1.67
+ Sorbon ,SORBON ,8300,8427,21,49.533333,4.333333,1.39
+ Sorcy-Bauthémont ,SORCY BAUTHEMONT ,8270,8428,21,49.55,4.533333,1.14
+ Sormonne ,SORMONNE ,8150,8429,21,49.816667,4.566667,1.33
+ Stonne ,STONNE ,8390,8430,21,49.55,4.916667,1.48
+ Sugny ,SUGNY ,8400,8431,21,49.35,4.666667,1.72
+ Suzanne ,SUZANNE ,8130,8433,21,49.516667,4.633333,0.64
+ Sy ,SY ,8390,8434,21,49.516667,4.866667,0.91
+ Tagnon ,TAGNON ,8300,8435,21,49.433333,4.283333,1.6
+ Taillette ,TAILLETTE ,8230,8436,21,49.933333,4.483333,2.09
+ Tailly ,TAILLY ,8240,8437,21,49.433333,5.083333,1.84
+ Taizy ,TAIZY ,8360,8438,21,49.516667,4.266667,1.67
+ Tannay ,TANNAY ,8390,8439,21,49.516667,4.833333,0.76
+ Tarzy ,TARZY ,8380,8440,21,49.866667,4.3,1.65
+ Termes ,TERMES ,8250,8441,21,49.316667,4.833333,1.94
+ Terron-sur-Aisne ,TERRON SUR AISNE ,8400,8443,21,49.45,4.7,1.07
+ Tétaigne ,TETAIGNE ,8110,8444,21,49.633333,5.133333,2.05
+ Thélonne ,THELONNE ,8350,8445,21,49.65,4.95,1.54
+ Thénorgues ,THENORGUES ,8240,8446,21,49.4,4.933333,1.4
+ Thilay ,THILAY ,8800,8448,21,49.866667,4.816667,1.65
+ Thin-le-Moutier ,THIN LE MOUTIER ,8460,8449,21,49.716667,4.5,1.5
+ This ,THIS ,8090,8450,21,49.75,4.616667,0.95
+ Le Thour ,LE THOUR ,8190,8451,21,49.533333,4.083333,2.46
+ Thugny-Trugny ,THUGNY TRUGNY ,8300,8452,21,49.483333,4.416667,1.03
+ Toges ,TOGES ,8400,8453,21,49.433333,4.783333,1.35
+ Touligny ,TOULIGNY ,8430,8454,21,49.666667,4.633333,0.34
+ Tourcelles-Chaumont ,TOURCELLES CHAUMONT ,8400,8455,21,49.4,4.616667,1.4
+ Tournavaux ,TOURNAVAUX ,8800,8456,21,49.866667,4.783333,1.65
+ Tournes ,TOURNES ,8090,8457,21,49.8,4.633333,1.22
+ Tourteron ,TOURTERON ,8130,8458,21,49.533333,4.65,0.92
+ Tremblois-lès-Carignan ,TREMBLOIS LES CARIGNAN ,8110,8459,21,49.65,5.25,2.56
+ Tremblois-lès-Rocroi ,TREMBLOIS LES ROCROI ,8150,8460,21,49.85,4.5,1.54
+ Vandy ,VANDY ,8400,8461,21,49.433333,4.716667,1.18
+ Vaux-Champagne ,VAUX CHAMPAGNE ,8130,8462,21,49.45,4.55,1.14
+ Vaux-en-Dieulet ,VAUX EN DIEULET ,8240,8463,21,49.483333,4.983333,1.41
+ Vaux-lès-Mouron ,VAUX LES MOURON ,8250,8464,21,49.3,4.783333,2.05
+ Vaux-lès-Mouzon ,VAUX LES MOUZON ,8210,8466,21,49.6,5.133333,2.05
+ Vaux-Villaine ,VAUX VILLAINE ,8150,8468,21,49.766667,4.466667,1.05
+ Vendresse ,VENDRESSE ,8160,8469,21,49.6,4.783333,1.52
+ Verpel ,VERPEL ,8240,8470,21,49.383333,4.933333,1.51
+ Viel-Saint-Rémy ,VIEL SAINT REMY ,8270,8472,21,49.633333,4.5,0.74
+ Vieux-lès-Asfeld ,VIEUX LES ASFELD ,8190,8473,21,49.466667,4.1,2.39
+ Villers-Cernay ,VILLERS CERNAY ,8140,8475,21,49.716667,5.033333,1.62
+ Villers-devant-le-Thour ,VILLERS DEVANT LE THOUR,8190,8476,21,49.5,4.083333,2.46
+ Villers-devant-Mouzon ,VILLERS DEVANT MOUZON ,8210,8477,21,49.616667,5.033333,1.62
+ Villers-le-Tilleul ,VILLERS LE TILLEUL ,8430,8478,21,49.633333,4.733333,1.69
+ Villers-le-Tourneur ,VILLERS LE TOURNEUR ,8430,8479,21,49.633333,4.566667,1.07
+ Villers-Semeuse ,VILLERS SEMEUSE ,8000,8480,21,49.733333,4.75,0.84
+ Villers-sur-le-Mont ,VILLERS SUR LE MONT,8430,8482,21,49.666667,4.683333,0.89
+ Ville-sur-Lumes ,VILLE SUR LUMES ,8440,8483,21,49.75,4.8,0.89
+ Ville-sur-Retourne ,VILLE SUR RETOURNE ,8310,8484,21,49.4,4.45,1.4
+ Villy ,VILLY ,8370,8485,21,49.6,5.216667,2.41
+ Vireux-Molhain ,VIREUX MOLHAIN ,8320,8486,21,50.07768,4.72466,-1
+ Vireux-Wallerand ,VIREUX WALLERAND ,8320,8487,21,50.077839,4.72466,-1
+ Vivier-au-Court ,VIVIER AU COURT ,8440,8488,21,49.733333,4.833333,1.4
+ Voncq ,VONCQ ,8400,8489,21,49.466667,4.666667,1.19
+ Vouziers ,VOUZIERS ,8400,8490,21,49.4,4.7,1.4
+ Vrigne-aux-Bois ,VRIGNE AUX BOIS ,8330,8491,21,49.733333,4.85,0.84
+ Vrigne-Meuse ,VRIGNE MEUSE ,8350,8492,21,49.7,4.85,0.84
+ Vrizy ,VRIZY ,8400,8493,21,49.433333,4.683333,1.18
+ Wadelincourt ,WADELINCOURT ,8200,8494,21,49.683333,4.933333,1.29
+ Wadimont ,WADIMONT ,8220,8495,21,49.683333,4.2,1.96
+ Wagnon ,WAGNON ,8270,8496,21,49.633333,4.416667,1.03
+ Warcq ,WARCQ ,8000,8497,21,49.766667,4.683333,1.31
+ Warnécourt ,WARNECOURT ,8090,8498,21,49.733333,4.65,0.83
+ Wasigny ,WASIGNY ,8270,8499,21,49.633333,4.35,1.66
+ Wignicourt ,WIGNICOURT ,8270,8500,21,49.583333,4.566667,1.43
+ Williers ,WILLIERS ,8110,8501,21,49.666667,5.3098,-1
+ Yoncq ,YONCQ ,8210,8502,21,49.566667,5.016667,1.55
+ Yvernaumont ,YVERNAUMONT ,8430,8503,21,49.666667,4.65,0.39
+ Les Hauts Buttés ,LES HAUTS BUTTES ,8800,8908,21,49.933333,4.766667,2.09
+ Linchamps ,LINCHAMPS ,8800,8911,21,49.916667,4.833333,1.98
+ Pont-à-Bar ,PONT A BAR ,8160,8916,21,49.683333,4.833333,1.19
+ Aigues-Juntes ,AIGUES JUNTES ,9240,9001,73,43.05,1.466667,1.29
+ Aigues-Vives ,AIGUES VIVES ,9600,9002,73,43,1.883333,1.51
+ L'Aiguillon ,L AIGUILLON ,9300,9003,73,42.916667,1.9,1.58
+ Albiès ,ALBIES ,9310,9004,73,42.766667,1.7,1.8
+ Aleu ,ALEU ,9320,9005,73,42.9,1.266667,1.91
+ Alliat ,ALLIAT ,9400,9006,73,42.816667,1.583333,1.35
+ Allières ,ALLIERES ,9240,9007,73,43.033333,1.35,1.47
+ Alzen ,ALZEN ,9240,9009,73,42.983333,1.466667,1.12
+ Amplaing ,AMPLAING ,9400,9010,73,42.883333,1.616667,1.35
+ Appy ,APPY ,9250,9012,73,42.8,1.733333,1.5
+ Arabaux ,ARABAUX ,9000,9013,73,42.983333,1.633333,0.7
+ Argein ,ARGEIN ,9800,9014,73,42.933333,1,2.35
+ Arignac ,ARIGNAC ,9400,9015,73,42.866667,1.6,0.9
+ Arnave ,ARNAVE ,9400,9016,73,42.85,1.65,1.61
+ Arrien-en-Bethmale ,ARRIEN EN BETHMALE ,9800,9017,73,42.9,1.05,2.13
+ Arrout ,ARROUT ,9800,9018,73,42.95,1.033333,2.2
+ Artigat ,ARTIGAT ,9130,9019,73,43.133333,1.433333,1.49
+ Artix ,ARTIX ,9120,9021,73,43.066667,1.566667,1.05
+ Arvigna ,ARVIGNA ,9100,9022,73,43.066667,1.733333,1.68
+ Ascou ,ASCOU ,9110,9023,73,42.716667,1.866667,2.25
+ Aston ,ASTON ,9310,9024,73,42.766667,1.666667,1.8
+ Aucazein ,AUCAZEIN ,9800,9025,73,42.933333,0.983333,2.42
+ Audressein ,AUDRESSEIN ,9800,9026,73,42.933333,1.016667,2.27
+ Augirein ,AUGIREIN ,9800,9027,73,42.933333,0.916667,2.71
+ Aulos ,AULOS ,9310,9028,73,42.8,1.683333,1.5
+ Aulus-les-Bains ,AULUS LES BAINS ,9140,9029,73,42.8,1.333333,1.65
+ Auzat ,AUZAT ,9220,9030,73,42.766667,1.483333,1.8
+ Axiat ,AXIAT ,9250,9031,73,42.783333,1.75,1.65
+ Ax-les-Thermes ,AX LES THERMES ,9110,9032,73,42.716667,1.833333,2.25
+ Bagert ,BAGERT ,9160,9033,73,43.083333,1.083333,1.98
+ Balacet ,BALACET ,9800,9034,73,42.883333,0.983333,2.42
+ Balaguères ,BALAGUERES ,9800,9035,73,42.966667,1.016667,2.27
+ Banat ,BANAT ,9400,9036,73,42.85,1.583333,1.05
+ Barjac ,BARJAC ,9190,9037,73,43.066667,1.133333,1.76
+ La Bastide-de-Besplas ,LA BASTIDE DE BESPLAS,9350,9038,73,43.166667,1.266667,1.79
+ La Bastide-de-Bousignac ,LA BASTIDE DE BOUSIGNAC,9500,9039,73,43.05,1.883333,1.51
+ La Bastide-du-Salat ,LA BASTIDE DU SALAT,9160,9041,73,43.05,0.983333,2.42
+ La Bastide-de-Sérou ,LA BASTIDE DE SEROU,9240,9042,73,43.016667,1.433333,0.45
+ La Bastide-sur-l'Hers ,LA BASTIDE SUR L,9600,9043,73,42.966667,1.916667,1.66
+ Baulou ,BAULOU ,9000,9044,73,43.016667,1.55,1.18
+ Bédeilhac-et-Aynat ,BEDEILHAC ET AYNAT ,9400,9045,73,42.866667,1.566667,1.04
+ Bédeille ,BEDEILLE ,9230,9046,73,43.083333,1.1,1.91
+ Bélesta ,BELESTA ,9300,9047,73,42.9,1.933333,1.87
+ Belloc ,BELLOC ,9600,9048,73,43.016667,1.933333,1.73
+ Bénac ,BENAC ,9000,9049,73,42.95,1.533333,1.07
+ Bénagues ,BENAGUES ,9100,9050,73,43.066667,1.616667,0.89
+ Bénaix ,BENAIX ,9300,9051,73,42.916667,1.85,1.36
+ Besset ,BESSET ,9500,9052,73,43.083333,1.833333,1.29
+ Bestiac ,BESTIAC ,9250,9053,73,42.766667,1.783333,1.8
+ Betchat ,BETCHAT ,9160,9054,73,43.1,1.016667,2.27
+ Bethmale ,BETHMALE ,9800,9055,73,42.866667,1.083333,2.05
+ Bézac ,BEZAC ,9100,9056,73,43.15,1.583333,1.64
+ Biert ,BIERT ,9320,9057,73,42.9,1.316667,0.96
+ Bompas ,BOMPAS ,9400,9058,73,42.866667,1.616667,0.96
+ Bonnac ,BONNAC ,9100,9060,73,43.166667,1.6,1.79
+ Les Bordes-sur-Arize ,LES BORDES SUR ARIZE,9350,9061,73,43.1,1.366667,1.46
+ Les Bordes-sur-Lez ,LES BORDES SUR LEZ,9800,9062,73,42.9,1.033333,2.2
+ Le Bosc ,LE BOSC ,9000,9063,73,42.95,1.466667,2.17
+ Bouan ,BOUAN ,9310,9064,73,42.816667,1.65,1.46
+ Boussenac ,BOUSSENAC ,9320,9065,73,42.9,1.35,0.82
+ Brie ,BRIE ,9700,9067,73,43.2,1.516667,2.09
+ Burret ,BURRET ,9000,9068,73,42.95,1.483333,1.89
+ Buzan ,BUZAN ,9800,9069,73,42.95,0.966667,2.49
+ Cadarcet ,CADARCET ,9240,9071,73,43.016667,1.5,1.67
+ Calzan ,CALZAN ,9120,9072,73,43.033333,1.733333,1.45
+ Camarade ,CAMARADE ,9290,9073,73,43.083333,1.266667,1.49
+ Camon ,CAMON ,9500,9074,73,43.033333,1.966667,1.87
+ Campagne-sur-Arize ,CAMPAGNE SUR ARIZE ,9350,9075,73,43.116667,1.333333,1.34
+ Canté ,CANTE ,9700,9076,73,43.25,1.533333,2.54
+ Capoulet-et-Junac ,CAPOULET ET JUNAC ,9400,9077,73,42.8,1.6,1.5
+ Carcanières ,CARCANIERES ,9460,9078,73,42.716667,2.116667,2.53
+ Carla-Bayle ,CARLA BAYLE ,9130,9079,73,43.15,1.4,1.64
+ Carla-de-Roquefort ,CARLA DE ROQUEFORT ,9300,9080,73,42.966667,1.766667,1.05
+ Le Carlaret ,LE CARLARET ,9100,9081,73,43.116667,1.7,1.34
+ Castelnau-Durban ,CASTELNAU DURBAN ,9420,9082,73,43,1.35,1.65
+ Castéras ,CASTERAS ,9130,9083,73,43.133333,1.4,1.49
+ Castillon-en-Couserans ,CASTILLON EN COUSERANS ,9800,9085,73,42.933333,1.033333,2.2
+ Caussou ,CAUSSOU ,9250,9087,73,42.766667,1.8,2.04
+ Caychax ,CAYCHAX ,9250,9088,73,42.8,1.716667,1.62
+ Cazals-des-Baylès ,CAZALS DES BAYLES ,9500,9089,73,43.083333,1.95,1.8
+ Cazaux ,CAZAUX ,9120,9090,73,43.05,1.516667,1.72
+ Cazavet ,CAZAVET ,9160,9091,73,43,1.05,2.13
+ Celles ,CELLES ,9000,9093,73,42.916667,1.683333,1.64
+ Cérizols ,CERIZOLS ,9230,9094,73,43.116667,1.066667,2.05
+ Cescau ,CESCAU ,9800,9095,73,42.933333,1.05,2.13
+ Château-Verdun ,CHATEAU VERDUN ,9310,9096,73,42.783333,1.683333,1.65
+ Clermont ,CLERMONT ,9420,9097,73,43.033333,1.283333,1.11
+ Contrazy ,CONTRAZY ,9230,9098,73,43.05,1.233333,1.33
+ Cos ,COS ,9000,9099,73,42.983333,1.566667,0.6
+ Couflens ,COUFLENS ,9140,9100,73,42.783333,1.183333,1.65
+ Coussa ,COUSSA ,9120,9101,73,43.066667,1.666667,0.89
+ Coutens ,COUTENS ,9500,9102,73,43.066667,1.833333,1.29
+ Crampagna ,CRAMPAGNA ,9120,9103,73,43.033333,1.616667,0.59
+ Dalou ,DALOU ,9120,9104,73,43.033333,1.633333,0.59
+ Daumazan-sur-Arize ,DAUMAZAN SUR ARIZE ,9350,9105,73,43.15,1.316667,1.64
+ Dreuilhe ,DREUILHE ,9300,9106,73,42.95,1.866667,1.44
+ Dun ,DUN ,9600,9107,73,43.033333,1.8,1.47
+ Durban-sur-Arize ,DURBAN SUR ARIZE ,9240,9108,73,43.016667,1.35,1.39
+ Durfort ,DURFORT ,9130,9109,73,43.216667,1.466667,2.24
+ Engomer ,ENGOMER ,9800,9111,73,42.95,1.066667,2.05
+ Engraviès ,ENGRAVIES ,9600,9112,73,43.033333,1.766667,2.03
+ Ercé ,ERCE ,9140,9113,73,42.85,1.3,1.09
+ Erp ,ERP ,9200,9114,73,42.95,1.2,1.47
+ Esclagne ,ESCLAGNE ,9600,9115,73,42.983333,1.833333,1.29
+ Escosse ,ESCOSSE ,9100,9116,73,43.133333,1.55,1.49
+ Eycheil ,EYCHEIL ,9200,9119,73,42.966667,1.166667,1.62
+ Ferrières-sur-Ariège ,FERRIERES SUR ARIEGE ,9000,9121,73,42.933333,1.616667,0.6
+ Foix ,FOIX ,9000,9122,73,42.966667,1.6,0.27
+ Fornex ,FORNEX ,9350,9123,73,43.166667,1.25,1.79
+ Le Fossat ,LE FOSSAT ,9130,9124,73,43.183333,1.416667,1.94
+ Fougax-et-Barrineuf ,FOUGAX ET BARRINEUF ,9300,9125,73,42.883333,1.9,1.58
+ Freychenet ,FREYCHENET ,9300,9126,73,42.908333,1.725,1.54
+ Gabre ,GABRE ,9290,9127,73,43.066667,1.416667,1.2
+ Gajan ,GAJAN ,9190,9128,73,43.016667,1.133333,1.76
+ Galey ,GALEY ,9800,9129,73,42.933333,0.916667,2.71
+ Ganac ,GANAC ,9000,9130,73,42.95,1.566667,0.54
+ Garanou ,GARANOU ,9250,9131,73,42.766667,1.75,1.8
+ Gaudiès ,GAUDIES ,9700,9132,73,43.166667,1.733333,2.12
+ Génat ,GENAT ,9400,9133,73,42.816667,1.583333,1.35
+ Gestiès ,GESTIES ,9220,9134,73,42.766667,1.583333,1.8
+ Gourbit ,GOURBIT ,9400,9136,73,42.841667,1.533333,1.71
+ Gudas ,GUDAS ,9120,9137,73,43,1.666667,0.78
+ L'Herm ,L HERM ,9000,9138,73,42.966667,1.683333,1.45
+ Ignaux ,IGNAUX ,9110,9140,73,42.733333,1.833333,2.1
+ Illartein ,ILLARTEIN ,9800,9141,73,42.933333,0.966667,2.49
+ Illier-et-Laramade ,ILLIER ET LARAMADE ,9220,9143,73,42.783333,1.55,1.65
+ Les Issards ,LES ISSARDS ,9100,9145,73,43.083333,1.733333,1.61
+ Justiniac ,JUSTINIAC ,9700,9146,73,43.216667,1.483333,2.24
+ Labatut ,LABATUT ,9700,9147,73,43.266667,1.516667,2.69
+ Lacourt ,LACOURT ,9200,9149,73,42.95,1.166667,1.62
+ Lanoux ,LANOUX ,9130,9151,73,43.116667,1.416667,1.34
+ Lapège ,LAPEGE ,9400,9152,73,42.8,1.583333,1.5
+ Lapenne ,LAPENNE ,9500,9153,73,43.133333,1.75,1.56
+ Larbont ,LARBONT ,9240,9154,73,43,1.4,0.6
+ Larcat ,LARCAT ,9310,9155,73,42.783333,1.65,1.65
+ Larnat ,LARNAT ,9310,9156,73,42.8,1.633333,1.68
+ Laroque-d'Olmes ,LAROQUE D OLMES ,9600,9157,73,42.966667,1.866667,1.44
+ Lassur ,LASSUR ,9310,9159,73,42.766667,1.733333,1.85
+ Lavelanet ,LAVELANET ,9300,9160,73,42.933333,1.85,1.36
+ Léran ,LERAN ,9600,9161,73,42.983333,1.916667,1.66
+ Lercoul ,LERCOUL ,9220,9162,73,42.766667,1.55,1.8
+ Lescousse ,LESCOUSSE ,9100,9163,73,43.15,1.516667,1.64
+ Lescure ,LESCURE ,9420,9164,73,43,1.233333,1.44
+ Lesparrou ,LESPARROU ,9300,9165,73,42.933333,1.9,1.58
+ Leychert ,LEYCHERT ,9300,9166,73,42.95,1.733333,1.42
+ Lézat-sur-Lèze ,LEZAT SUR LEZE ,9210,9167,73,43.283333,1.35,2.83
+ Lieurac ,LIEURAC ,9300,9168,73,42.983333,1.783333,1.07
+ Limbrassac ,LIMBRASSAC ,9600,9169,73,43.016667,1.85,1.36
+ Lissac ,LISSAC ,9700,9170,73,43.266667,1.5,2.69
+ Lordat ,LORDAT ,9250,9171,73,42.783333,1.75,1.65
+ Loubaut ,LOUBAUT ,9350,9172,73,43.183333,1.266667,1.94
+ Loubens ,LOUBENS ,9120,9173,73,43.033333,1.55,1.24
+ Loubières ,LOUBIERES ,9000,9174,73,43,1.6,0.62
+ Ludiès ,LUDIES ,9100,9175,73,43.116667,1.716667,1.34
+ Luzenac ,LUZENAC ,9250,9176,73,42.766667,1.766667,1.8
+ Madière ,MADIERE ,9100,9177,73,43.1,1.516667,1.32
+ Malegoude ,MALEGOUDE ,9500,9178,73,43.1,1.95,1.8
+ Malléon ,MALLEON ,9120,9179,73,43.033333,1.716667,1.21
+ Manses ,MANSES ,9500,9180,73,43.1,1.816667,1.22
+ Le Mas-d'Azil ,LE MAS D AZIL,9290,9181,73,43.083333,1.366667,1.04
+ Massat ,MASSAT ,9320,9182,73,42.883333,1.35,0.82
+ Mauvezin-de-Prat ,MAUVEZIN DE PRAT ,9160,9183,73,43.033333,0.983333,2.42
+ Mauvezin-de-Sainte-Croix ,MAUVEZIN DE SAINTE CROIX,9230,9184,73,43.083333,1.233333,1.33
+ Méras ,MERAS ,9350,9186,73,43.183333,1.3,1.94
+ Mercenac ,MERCENAC ,9160,9187,73,43.033333,1.083333,1.98
+ Mercus-Garrabet ,MERCUS GARRABET ,9400,9188,73,42.85,1.616667,1.05
+ Mérens-lès-Vals ,MERENS LES VALS ,9110,9189,73,42.65,1.833333,2.84
+ Mérigon ,MERIGON ,9230,9190,73,43.083333,1.2,1.47
+ Miglos ,MIGLOS ,9400,9192,73,42.783333,1.616667,1.77
+ Mijanès ,MIJANES ,9460,9193,73,42.733333,2.05,2.24
+Mirepoix, ,9500,9194,73,43.083333,1.883333,1.51
+ Monesple ,MONESPLE ,9130,9195,73,43.083333,1.45,1.55
+ Montagagne ,MONTAGAGNE ,9240,9196,73,42.983333,1.416667,0.53
+ Montaillou ,MONTAILLOU ,9110,9197,73,42.783333,1.883333,1.81
+ Montardit ,MONTARDIT ,9230,9198,73,43.066667,1.2,1.47
+ Montbel ,MONTBEL ,9600,9200,73,42.983333,1.983333,2.08
+ Montégut-en-Couserans ,MONTEGUT EN COUSERANS ,9200,9201,73,42.983333,1.1,1.91
+ Montégut-Plantaurel ,MONTEGUT PLANTAUREL ,9120,9202,73,43.066667,1.5,1.99
+ Montels ,MONTELS ,9240,9203,73,43,1.466667,1.01
+ Montesquieu-Avantès ,MONTESQUIEU AVANTES ,9200,9204,73,43.016667,1.2,1.47
+ Montferrier ,MONTFERRIER ,9300,9206,73,42.9,1.783333,1.07
+ Montgauch ,MONTGAUCH ,9160,9208,73,43,1.083333,1.98
+ Montjoie-en-Couserans ,MONTJOIE EN COUSERANS ,9200,9209,73,43,1.166667,1.62
+ Montoulieu ,MONTOULIEU ,9000,9210,73,42.9,1.633333,1.22
+ Montségur ,MONTSEGUR ,9300,9211,73,42.866667,1.833333,1.29
+ Montseron ,MONTSERON ,9240,9212,73,43.016667,1.333333,1.72
+ Moulin-Neuf ,MOULIN NEUF ,9500,9213,73,43.066667,1.95,1.8
+ Moulis ,MOULIS ,9200,9214,73,42.966667,1.083333,1.98
+ Nalzen ,NALZEN ,9300,9215,73,42.916667,1.75,1.13
+ Nescus ,NESCUS ,9240,9216,73,43,1.433333,0.45
+ Niaux ,NIAUX ,9400,9217,73,42.816667,1.583333,1.35
+ Orgeix ,ORGEIX ,9110,9218,73,42.7,1.866667,2.39
+ Orgibet ,ORGIBET ,9800,9219,73,42.933333,0.933333,2.64
+ Orlu ,ORLU ,9110,9220,73,42.7,1.883333,2.39
+ Ornolac-Ussat-les-Bains ,ORNOLAC USSAT LES BAINS,9400,9221,73,42.833333,1.633333,1.2
+ Orus ,ORUS ,9220,9222,73,42.783333,1.516667,1.65
+ Oust ,OUST ,9140,9223,73,42.866667,1.216667,1.4
+ Pailhès ,PAILHES ,9130,9224,73,43.1,1.45,1.26
+ Pamiers ,PAMIERS ,9100,9225,73,43.116667,1.6,1.34
+ Pech ,PECH ,9310,9226,73,42.783333,1.683333,1.65
+ Perles-et-Castelet ,PERLES ET CASTELET ,9110,9228,73,42.75,1.783333,1.95
+ Le Peyrat ,LE PEYRAT ,9600,9229,73,42.966667,1.933333,1.73
+ Le Pla ,LE PLA ,9460,9230,73,42.716667,2.066667,2.31
+ Le Port ,LE PORT ,9320,9231,73,42.866667,1.366667,1.3
+ Pradettes ,PRADETTES ,9600,9233,73,42.983333,1.816667,1.22
+ Pradières ,PRADIERES ,9000,9234,73,42.966667,1.65,0.89
+ Prayols ,PRAYOLS ,9000,9236,73,42.933333,1.616667,0.6
+ Le Puch ,LE PUCH ,9460,9237,73,42.716667,2.1,2.46
+ Les Pujols ,LES PUJOLS ,9100,9238,73,43.083333,1.716667,1.4
+ Quérigut ,QUERIGUT ,9460,9239,73,42.7,2.1,2.46
+ Quié ,QUIE ,9400,9240,73,42.85,1.6,1.05
+ Rabat-les-Trois-Seigneurs ,RABAT LES TROIS SEIGNEURS,9400,9241,73,42.85,1.566667,1.05
+ Raissac ,RAISSAC ,9300,9242,73,42.95,1.816667,1.22
+ Régat ,REGAT ,9600,9243,73,42.983333,1.883333,1.51
+ Rieucros ,RIEUCROS ,9500,9244,73,43.083333,1.766667,1.15
+ Rieux-de-Pelleport ,RIEUX DE PELLEPORT ,9120,9245,73,43.05,1.6,0.74
+ Rimont ,RIMONT ,9420,9246,73,43,1.283333,1.11
+ Rivèrenert ,RIVERENERT ,9200,9247,73,42.966667,1.233333,1.64
+ Rogalle ,ROGALLE ,9140,9248,73,42.9,1.183333,1.55
+ Roquefixade ,ROQUEFIXADE ,9300,9249,73,42.933333,1.75,1.12
+ Roquefort-les-Cascades ,ROQUEFORT LES CASCADES ,9300,9250,73,42.95,1.766667,1
+ Roumengoux ,ROUMENGOUX ,9500,9251,73,43.066667,1.95,1.8
+ Rouze ,ROUZE ,9460,9252,73,42.733333,2.066667,2.31
+ Sabarat ,SABARAT ,9350,9253,73,43.1,1.4,1.98
+ Saint-Amadou ,SAINT AMADOU ,9100,9254,73,43.116667,1.716667,1.34
+ Saint-Amans ,SAINT AMANS ,9100,9255,73,43.15,1.55,1.64
+ Saint-Bauzeil ,SAINT BAUZEIL ,9120,9256,73,43.083333,1.583333,1.04
+ Saint-Félix-de-Tournegat ,SAINT FELIX DE TOURNEGAT,9500,9259,73,43.133333,1.75,1.56
+ Sainte-Foi ,SAINTE FOI ,9500,9260,73,43.133333,1.916667,1.66
+ Saint-Girons ,SAINT GIRONS ,9200,9261,73,42.983333,1.15,1.69
+ Saint-Jean-d'Aigues-Vives ,SAINT JEAN D AIGUES,9300,9262,73,42.933333,1.866667,1.44
+ Saint-Jean-du-Castillonnais ,SAINT JEAN DU CASTILLONNAIS,9800,9263,73,42.933333,0.933333,2.64
+ Saint-Jean-de-Verges ,SAINT JEAN DE VERGES,9000,9264,73,43.016667,1.616667,0.95
+ Saint-Jean-du-Falga ,SAINT JEAN DU FALGA,9100,9265,73,43.083333,1.616667,1.04
+ Saint-Julien-de-Gras-Capou ,SAINT JULIEN DE GRAS,9500,9266,73,43.033333,1.85,1.36
+ Saint-Lizier ,SAINT LIZIER ,9190,9268,73,43,1.133333,1.76
+ Saint-Martin-de-Caralp ,SAINT MARTIN DE CARALP,9000,9269,73,42.983333,1.55,0.84
+ Saint-Martin-d'Oydes ,SAINT MARTIN D OYDES,9100,9270,73,43.166667,1.5,1.79
+ Saint-Paul-de-Jarrat ,SAINT PAUL DE JARRAT,9000,9272,73,42.916667,1.65,1.18
+ Saint-Pierre-de-Rivière ,SAINT PIERRE DE RIVIERE,9000,9273,73,42.966667,1.566667,0.5
+ Saint-Quentin-la-Tour ,SAINT QUENTIN LA TOUR,9500,9274,73,43.033333,1.9,1.58
+ Saint-Quirc ,SAINT QUIRC ,9700,9275,73,43.266667,1.5,2.69
+ Saint-Victor-Rouzaud ,SAINT VICTOR ROUZAUD ,9100,9276,73,43.083333,1.566667,1.04
+ Saint-Ybars ,SAINT YBARS ,9210,9277,73,43.25,1.4,2.54
+ Salsein ,SALSEIN ,9800,9279,73,42.9,1.016667,2.27
+ Saurat ,SAURAT ,9400,9280,73,42.883333,1.533333,2.07
+ Sautel ,SAUTEL ,9300,9281,73,42.966667,1.8,1.15
+ Saverdun ,SAVERDUN ,9700,9282,73,43.233333,1.583333,2.39
+ Savignac-les-Ormeaux ,SAVIGNAC LES ORMEAUX ,9110,9283,73,42.733333,1.816667,2.1
+ Ségura ,SEGURA ,9120,9284,73,43.033333,1.683333,0.73
+ Seix ,SEIX ,9140,9285,73,42.866667,1.2,1.47
+ Sem ,SEM ,9220,9286,73,42.766667,1.516667,1.8
+ Senconac ,SENCONAC ,9250,9287,73,42.8,1.7,2.23
+ Sénesse-de-Senabugue ,SENESSE DE SENABUGUE ,9600,9288,73,43.05,1.833333,1.29
+ Sentein ,SENTEIN ,9800,9290,73,42.866667,0.95,2.56
+ Sentenac-d'Oust ,SENTENAC D OUST ,9140,9291,73,42.883333,1.183333,1.55
+ Sentenac-de-Sérou ,SENTENAC DE SEROU ,9240,9292,73,42.966667,1.383333,1.11
+ Serres-sur-Arget ,SERRES SUR ARGET ,9000,9293,73,42.966667,1.516667,1.33
+ Sieuras ,SIEURAS ,9130,9294,73,43.183333,1.333333,1.94
+ Siguer ,SIGUER ,9220,9295,73,42.766667,1.566667,1.8
+ Sinsat ,SINSAT ,9310,9296,73,42.8,1.65,1.5
+ Sor ,SOR ,9800,9297,73,42.916667,1.016667,2.27
+ Sorgeat ,SORGEAT ,9110,9298,73,42.733333,1.85,2.1
+ Soula ,SOULA ,9000,9300,73,42.95,1.7,1.74
+ Suc-et-Sentenac ,SUC ET SENTENAC ,9220,9302,73,42.783333,1.483333,1.65
+ Surba ,SURBA ,9400,9303,73,42.866667,1.583333,0.9
+ Suzan ,SUZAN ,9240,9304,73,43.033333,1.433333,0.59
+ Tabre ,TABRE ,9600,9305,73,42.983333,1.85,1.36
+ Tarascon-sur-Ariège ,TARASCON SUR ARIEGE ,9400,9306,73,42.85,1.6,1.05
+ Taurignan-Castet ,TAURIGNAN CASTET ,9160,9307,73,43.033333,1.083333,1.98
+ Taurignan-Vieux ,TAURIGNAN VIEUX ,9190,9308,73,43.033333,1.116667,1.84
+ Teilhet ,TEILHET ,9500,9309,73,43.083333,1.783333,1.07
+ Thouars-sur-Arize ,THOUARS SUR ARIZE ,9350,9310,73,43.183333,1.266667,1.94
+ Tignac ,TIGNAC ,9110,9311,73,42.75,1.783333,1.95
+ La Tour-du-Crieu ,LA TOUR DU CRIEU,9100,9312,73,43.1,1.633333,1.19
+ Tourtouse ,TOURTOUSE ,9230,9313,73,43.083333,1.133333,1.76
+ Tourtrol ,TOURTROL ,9500,9314,73,43.066667,1.8,1.15
+ Trémoulet ,TREMOULET ,9700,9315,73,43.166667,1.716667,1.93
+ Troye-d'Ariège ,TROYE D ARIEGE ,9500,9316,73,43.033333,1.883333,1.51
+ Uchentein ,UCHENTEIN ,9800,9317,73,42.883333,1,2.35
+ Unac ,UNAC ,9250,9318,73,42.766667,1.766667,1.8
+ Unzent ,UNZENT ,9100,9319,73,43.166667,1.533333,1.79
+ Urs ,URS ,9310,9320,73,42.783333,1.733333,1.72
+ Ussat ,USSAT ,9400,9321,73,42.833333,1.616667,1.2
+ Ustou ,USTOU ,9140,9322,73,42.8,1.266667,1.5
+ Vals ,VALS ,9500,9323,73,43.1,1.75,1.4
+ Varilhes ,VARILHES ,9120,9324,73,43.05,1.633333,0.74
+ Vaychis ,VAYCHIS ,9110,9325,73,42.75,1.8,1.95
+ Vèbre ,VEBRE ,9310,9326,73,42.783333,1.716667,1.65
+ Ventenac ,VENTENAC ,9120,9327,73,43,1.716667,1.35
+ Verdun ,VERDUN ,9310,9328,73,42.8,1.683333,1.5
+ Vernajoul ,VERNAJOUL ,9000,9329,73,42.983333,1.6,0.34
+ Vernaux ,VERNAUX ,9250,9330,73,42.783333,1.75,1.65
+ Le Vernet ,LE VERNET ,9700,9331,73,43.183333,1.6,1.94
+ Verniolle ,VERNIOLLE ,9340,9332,73,43.083333,1.633333,1.04
+ Vicdessos ,VICDESSOS ,9220,9334,73,42.766667,1.5,1.8
+ Villeneuve-d'Olmes ,VILLENEUVE D OLMES ,9300,9336,73,42.9,1.816667,1.22
+ Villeneuve-du-Bosc ,VILLENEUVE DU BOSC ,9000,9337,73,43,1.633333,0.87
+ Villeneuve-du-Latou ,VILLENEUVE DU LATOU ,9130,9338,73,43.2,1.433333,2.09
+ Villeneuve-du-Paréage ,VILLENEUVE DU PAREAGE ,9100,9339,73,43.15,1.616667,1.64
+ Vira ,VIRA ,9120,9340,73,43.05,1.766667,1.93
+ Viviès ,VIVIES ,9500,9341,73,43.05,1.783333,1.07
+ Sainte-Suzanne ,SAINTE SUZANNE ,9130,9342,73,43.216667,1.383333,2.24
+ Salau ,SALAU ,9140,9904,73,42.766667,1.183333,1.8
+ Ailleville ,AILLEVILLE ,10200,10002,21,48.25,4.683333,1.83
+ Aix-en-Othe ,AIX EN OTHE ,10160,10003,21,48.216667,3.733333,1.61
+ Allibaudières ,ALLIBAUDIERES ,10700,10004,21,48.583333,4.116667,1.96
+ Amance ,AMANCE ,10140,10005,21,48.3,4.516667,1.23
+ Arcis-sur-Aube ,ARCIS SUR AUBE ,10700,10006,21,48.533333,4.133333,1.61
+ Arconville ,ARCONVILLE ,10200,10007,21,48.166667,4.716667,1.95
+ Argançon ,ARGANCON ,10140,10008,21,48.25,4.6,1.53
+ Arrelles ,ARRELLES ,10340,10009,21,48.05,4.283333,1.77
+ Arrembécourt ,ARREMBECOURT ,10330,10010,21,48.55,4.6,1.72
+ Arrentières ,ARRENTIERES ,10200,10011,21,48.266667,4.75,2.07
+ Arsonval ,ARSONVAL ,10200,10012,21,48.266667,4.65,1.71
+ Assenay ,ASSENAY ,10320,10013,21,48.183333,4.066667,1.35
+ Assencières ,ASSENCIERES ,10220,10014,21,48.35,4.2,1.49
+ Aubeterre ,AUBETERRE ,10150,10015,21,48.433333,4.116667,0.91
+ Aulnay ,AULNAY ,10240,10017,21,48.466667,4.4,1.47
+ Auxon ,AUXON ,10130,10018,21,48.1,3.916667,1.42
+ Avant-lès-Marcilly ,AVANT LES MARCILLY ,10400,10020,21,48.416667,3.566667,2.21
+ Avant-lès-Ramerupt ,AVANT LES RAMERUPT ,10240,10021,21,48.45,4.283333,1.25
+ Avirey-Lingey ,AVIREY LINGEY ,10340,10022,21,48.033333,4.3,1.89
+ Avon-la-Pèze ,AVON LA PEZE ,10290,10023,21,48.383333,3.65,1.91
+ Avreuil ,AVREUIL ,10130,10024,21,48.05,4,1.77
+ Bagneux-la-Fosse ,BAGNEUX LA FOSSE ,10340,10025,21,47.983333,4.283333,2.24
+ Bailly-le-Franc ,BAILLY LE FRANC ,10330,10026,21,48.516667,4.65,1.71
+ Balignicourt ,BALIGNICOURT ,10330,10027,21,48.516667,4.466667,1.49
+ Balnot-la-Grange ,BALNOT LA GRANGE ,10210,10028,21,47.983333,4.2,2.24
+ Balnot-sur-Laignes ,BALNOT SUR LAIGNES ,10110,10029,21,48.033333,4.366667,1.89
+ Barberey-Saint-Sulpice ,BARBEREY SAINT SULPICE ,10600,10030,21,48.333333,4.033333,1.26
+ Barbuise ,BARBUISE ,10400,10031,21,48.55,3.583333,2.15
+ Bar-sur-Aube ,BAR SUR AUBE ,10200,10033,21,48.233333,4.716667,1.95
+ Bar-sur-Seine ,BAR SUR SEINE ,10110,10034,21,48.116667,4.366667,1.3
+ Bayel ,BAYEL ,10310,10035,21,48.2,4.783333,2.19
+ Beauvoir-sur-Sarce ,BEAUVOIR SUR SARCE ,10340,10036,21,47.966667,4.3,2.35
+ Bercenay-en-Othe ,BERCENAY EN OTHE ,10190,10037,21,48.216667,3.883333,1.07
+ Bercenay-le-Hayer ,BERCENAY LE HAYER ,10290,10038,21,48.333333,3.583333,2.15
+ Bergères ,BERGERES ,10200,10039,21,48.183333,4.666667,1.77
+ Bernon ,BERNON ,10130,10040,21,47.983333,3.983333,2.24
+ Bertignolles ,BERTIGNOLLES ,10110,10041,21,48.133333,4.516667,1.23
+ Bérulle ,BERULLE ,10160,10042,21,48.183333,3.666667,1.85
+ Bétignicourt ,BETIGNICOURT ,10500,10044,21,48.45,4.45,1.07
+ Beurey ,BEUREY ,10140,10045,21,48.183333,4.466667,1.05
+ Blaincourt-sur-Aube ,BLAINCOURT SUR AUBE ,10500,10046,21,48.383333,4.45,0.99
+ Blignicourt ,BLIGNICOURT ,10500,10047,21,48.466667,4.533333,1.29
+ Les Bordes-Aumont ,LES BORDES AUMONT ,10800,10049,21,48.183333,4.116667,0.91
+ Bossancourt ,BOSSANCOURT ,10140,10050,21,48.283333,4.6,1.53
+ Bouilly ,BOUILLY ,10320,10051,21,48.2,4,1.37
+ Boulages ,BOULAGES ,10380,10052,21,48.583333,3.916667,1.96
+ Bouranton ,BOURANTON ,10270,10053,21,48.316667,4.183333,1.56
+ Bourguignons ,BOURGUIGNONS ,10110,10055,21,48.133333,4.366667,1.19
+ Bouy-Luxembourg ,BOUY LUXEMBOURG ,10220,10056,21,48.383333,4.266667,0.59
+ Bouy-sur-Orvin ,BOUY SUR ORVIN ,10400,10057,21,48.416667,3.5,2.45
+ Bréviandes ,BREVIANDES ,10800,10060,21,48.25,4.1,0.86
+ Brévonnes ,BREVONNES ,10220,10061,21,48.366667,4.4,1.58
+ Briel-sur-Barse ,BRIEL SUR BARSE ,10140,10062,21,48.216667,4.35,1.69
+ Brienne-la-Vieille ,BRIENNE LA VIEILLE ,10500,10063,21,48.366667,4.533333,1.29
+ Brienne-le-Château ,BRIENNE LE CHATEAU ,10500,10064,21,48.4,4.533333,1.29
+ Brillecourt ,BRILLECOURT ,10240,10065,21,48.466667,4.366667,1.14
+ Bucey-en-Othe ,BUCEY EN OTHE ,10190,10066,21,48.266667,3.866667,1.13
+ Buchères ,BUCHERES ,10800,10067,21,48.233333,4.116667,0.49
+ Buxeuil ,BUXEUIL ,10110,10068,21,48.05,4.4,1.77
+ Buxières-sur-Arce ,BUXIERES SUR ARCE ,10110,10069,21,48.133333,4.45,1.19
+ Celles-sur-Ource ,CELLES SUR OURCE ,10110,10070,21,48.083333,4.4,1.54
+ Chacenay ,CHACENAY ,10110,10071,21,48.116667,4.533333,1.35
+ La Chaise ,LA CHAISE ,10500,10072,21,48.366667,4.666667,1.97
+ Chalette-sur-Voire ,CHALETTE SUR VOIRE ,10500,10073,21,48.45,4.433333,1.27
+ Chamoy ,CHAMOY ,10130,10074,21,48.116667,3.966667,1.3
+ Champignol-lez-Mondeville ,CHAMPIGNOL LEZ MONDEVILLE ,10200,10076,21,48.133333,4.683333,1.83
+ Champigny-sur-Aube ,CHAMPIGNY SUR AUBE ,10700,10077,21,48.566667,4.066667,1.84
+ Champ-sur-Barse ,CHAMP SUR BARSE ,10140,10078,21,48.233333,4.4,1.08
+ Channes ,CHANNES ,10340,10079,21,47.933333,4.25,2.59
+ Chaource ,CHAOURCE ,10210,10080,21,48.066667,4.133333,1.65
+ La Chapelle-Saint-Luc ,LA CHAPELLE SAINT LUC,10600,10081,21,48.333333,4.05,1.58
+ Chapelle-Vallon ,CHAPELLE VALLON ,10700,10082,21,48.433333,4.033333,2.05
+ Chappes ,CHAPPES ,10260,10083,21,48.166667,4.25,0.96
+ Charmont-sous-Barbuise ,CHARMONT SOUS BARBUISE ,10150,10084,21,48.416667,4.166667,0.94
+ Charny-le-Bachot ,CHARNY LE BACHOT ,10380,10086,21,48.55,3.95,1.72
+ Châtres ,CHATRES ,10510,10089,21,48.5,3.85,1.37
+ Chauchigny ,CHAUCHIGNY ,10170,10090,21,48.433333,3.966667,1.2
+ Chaudrey ,CHAUDREY ,10240,10091,21,48.5,4.283333,1.37
+ Chauffour-lès-Bailly ,CHAUFFOUR LES BAILLY ,10110,10092,21,48.2,4.333333,1.54
+ Chaumesnil ,CHAUMESNIL ,10500,10093,21,48.366667,4.6,1.53
+ Chavanges ,CHAVANGES ,10330,10094,21,48.516667,4.566667,1.49
+ Le Chêne ,LE CHENE ,10700,10095,21,48.55,4.183333,1.72
+ Chennegy ,CHENNEGY ,10190,10096,21,48.216667,3.85,1.19
+ Chervey ,CHERVEY ,10110,10097,21,48.133333,4.5,1.19
+ Chesley ,CHESLEY ,10210,10098,21,47.966667,4.116667,2.35
+ Chessy-les-Prés ,CHESSY LES PRES ,10130,10099,21,48.016667,3.916667,2
+ Clérey ,CLEREY ,10390,10100,21,48.2,4.2,0.72
+ Coclois ,COCLOIS ,10240,10101,21,48.466667,4.333333,1.14
+ Colombé-la-Fosse ,COLOMBE LA FOSSE ,10200,10102,21,48.266667,4.8,2.26
+ Colombé-le-Sec ,COLOMBE LE SEC ,10200,10103,21,48.25,4.8,2.26
+ Cormost ,CORMOST ,10800,10104,21,48.166667,4.133333,1.44
+ Courcelles-sur-Voire ,COURCELLES SUR VOIRE ,10500,10105,21,48.466667,4.533333,1.29
+ Courceroy ,COURCEROY ,10400,10106,21,48.466667,3.416667,2.76
+ Coursan-en-Othe ,COURSAN EN OTHE ,10130,10107,21,48.066667,3.833333,1.65
+ Courtaoult ,COURTAOULT ,10130,10108,21,48.016667,3.866667,2
+ Courtenot ,COURTENOT ,10260,10109,21,48.15,4.3,1.15
+ Courteranges ,COURTERANGES ,10270,10110,21,48.266667,4.233333,0.26
+ Courteron ,COURTERON ,10250,10111,21,48.016667,4.45,2
+ Coussegrey ,COUSSEGREY ,10210,10112,21,47.95,4.016667,2.47
+ Couvignon ,COUVIGNON ,10200,10113,21,48.2,4.65,1.71
+ Crancey ,CRANCEY ,10100,10114,21,48.516667,3.633333,1.97
+ Créney-près-Troyes ,CRENEY PRES TROYES ,10150,10115,21,48.333333,4.133333,0.83
+ Crésantignes ,CRESANTIGNES ,10320,10116,21,48.133333,4.016667,1.19
+ Crespy-le-Neuf ,CRESPY LE NEUF ,10500,10117,21,48.4,4.6,1.53
+ Les Croutes ,LES CROUTES ,10130,10118,21,48,3.866667,2.12
+ Cunfin ,CUNFIN ,10360,10119,21,48.05,4.666667,1.77
+ Cussangy ,CUSSANGY ,10210,10120,21,48.016667,4.1,2
+ Dampierre ,DAMPIERRE ,10240,10121,21,48.55,4.366667,1.72
+ Davrey ,DAVREY ,10130,10122,21,48.05,3.95,1.77
+ Dienville ,DIENVILLE ,10500,10123,21,48.35,4.533333,1.29
+ Dierrey-Saint-Julien ,DIERREY SAINT JULIEN ,10190,10124,21,48.316667,3.833333,1.25
+ Dierrey-Saint-Pierre ,DIERREY SAINT PIERRE ,10190,10125,21,48.333333,3.833333,1.25
+ Dolancourt ,DOLANCOURT ,10200,10126,21,48.266667,4.616667,1.59
+ Dommartin-le-Coq ,DOMMARTIN LE COQ ,10240,10127,21,48.5,4.35,1.37
+ Donnement ,DONNEMENT ,10330,10128,21,48.516667,4.433333,1.49
+ Dosches ,DOSCHES ,10220,10129,21,48.316667,4.25,0.97
+ Dosnon ,DOSNON ,10700,10130,21,48.616667,4.233333,2.19
+ Droupt-Saint-Basle ,DROUPT SAINT BASLE ,10170,10131,21,48.483333,3.933333,1.26
+ Droupt-Sainte-Marie ,DROUPT SAINTE MARIE ,10170,10132,21,48.5,3.916667,1.37
+ Eaux-Puiseaux ,EAUX PUISEAUX ,10130,10133,21,48.116667,3.883333,1.3
+ Échemines ,ECHEMINES ,10350,10134,21,48.383333,3.833333,1.25
+ Éclance ,ECLANCE ,10200,10135,21,48.3,4.633333,1.65
+ Éguilly-sous-Bois ,EGUILLY SOUS BOIS ,10110,10136,21,48.133333,4.533333,1.36
+ Engente ,ENGENTE ,10200,10137,21,48.266667,4.75,2.07
+ Épagne ,EPAGNE ,10500,10138,21,48.4,4.466667,1.05
+ Épothémont ,EPOTHEMONT ,10500,10139,21,48.416667,4.65,1.71
+ Ervy-le-Châtel ,ERVY LE CHATEL ,10130,10140,21,48.033333,3.916667,1.89
+ Essoyes ,ESSOYES ,10360,10141,21,48.066667,4.533333,1.65
+ Estissac ,ESTISSAC ,10190,10142,21,48.266667,3.816667,1.31
+ Étourvy ,ETOURVY ,10210,10143,21,47.95,4.133333,2.47
+ Étrelles-sur-Aube ,ETRELLES SUR AUBE ,10170,10144,21,48.566667,3.866667,1.84
+ Faux-Villecerf ,FAUX VILLECERF ,10290,10145,21,48.333333,3.733333,1.71
+ Fay-lès-Marcilly ,FAY LES MARCILLY ,10290,10146,21,48.4,3.6,2.09
+ Fays-la-Chapelle ,FAYS LA CHAPELLE ,10320,10147,21,48.133333,4.016667,1.19
+ Feuges ,FEUGES ,10150,10149,21,48.4,4.116667,0.68
+ Fontaine ,FONTAINE ,10200,10150,21,48.216667,4.716667,-1
+ Fontaine-lès-Grès ,FONTAINE LES GRES ,10280,10151,21,48.416667,3.9,1.47
+ Fontaine-Luyères ,FONTAINE LUYERES ,10150,10152,21,48.4,4.183333,1.06
+ Fontaine-Mâcon ,FONTAINE MACON ,10400,10153,21,48.466667,3.5,2.45
+ Fontenay-de-Bossery ,FONTENAY DE BOSSERY ,10400,10154,21,48.45,3.45,2.64
+ Fontette ,FONTETTE ,10360,10155,21,48.083333,4.616667,1.59
+ Fontvannes ,FONTVANNES ,10190,10156,21,48.283333,3.866667,1.13
+ La Fosse-Corduan ,LA FOSSE CORDUAN ,10100,10157,21,48.45,3.65,1.91
+ Fouchères ,FOUCHERES ,10260,10158,21,48.15,4.266667,1.07
+ Fralignes ,FRALIGNES ,10110,10159,21,48.166667,4.366667,0.96
+ Fravaux ,FRAVAUX ,10200,10160,21,48.233333,4.633333,1.65
+ Fresnoy-le-Château ,FRESNOY LE CHATEAU ,10270,10162,21,48.2,4.233333,1.18
+ Fuligny ,FULIGNY ,10200,10163,21,48.333333,4.7,1.89
+ Gélannes ,GELANNES ,10100,10164,21,48.483333,3.666667,1.85
+ Géraudot ,GERAUDOT ,10220,10165,21,48.3,4.316667,0.95
+ Les Grandes-Chapelles ,LES GRANDES CHAPELLES ,10170,10166,21,48.466667,4.016667,1.52
+ Grandville ,GRANDVILLE ,10700,10167,21,48.6,4.233333,2.07
+ Gumery ,GUMERY ,10400,10169,21,48.45,3.433333,2.7
+ Gyé-sur-Seine ,GYE SUR SEINE ,10250,10170,21,48.033333,4.433333,1.89
+ Hampigny ,HAMPIGNY ,10500,10171,21,48.45,4.6,1.53
+ Herbisse ,HERBISSE ,10700,10172,21,48.616667,4.116667,2.19
+ Isle-Aumont ,ISLE AUMONT ,10800,10173,21,48.216667,4.133333,0.61
+ Jasseines ,JASSEINES ,10330,10175,21,48.5,4.383333,2.08
+ Jaucourt ,JAUCOURT ,10200,10176,21,48.266667,4.65,1.71
+ Javernant ,JAVERNANT ,10320,10177,21,48.166667,4,0.96
+ Jessains ,JESSAINS ,10140,10178,21,48.3,4.583333,1.47
+ Jeugny ,JEUGNY ,10320,10179,21,48.133333,4.033333,1.19
+ Joncreuil ,JONCREUIL ,10330,10180,21,48.516667,4.616667,1.59
+ Jully-sur-Sarce ,JULLY SUR SARCE ,10260,10181,21,48.1,4.3,1.62
+ Juvancourt ,JUVANCOURT ,10310,10182,21,48.116667,4.8,2.26
+ Juvanzé ,JUVANZE ,10140,10183,21,48.316667,4.566667,1.41
+ Juzanvigny ,JUZANVIGNY ,10500,10184,21,48.416667,4.583333,1.47
+ Lagesse ,LAGESSE ,10210,10185,21,48.016667,4.133333,2
+ Laines-aux-Bois ,LAINES AUX BOIS ,10120,10186,21,48.233333,3.983333,1.43
+ Lantages ,LANTAGES ,10210,10188,21,48.066667,4.216667,1.65
+ Laubressel ,LAUBRESSEL ,10270,10190,21,48.3,4.216667,0.94
+ Lavau ,LAVAU ,10150,10191,21,48.316667,4.083333,1.25
+ Lentilles ,LENTILLES ,10330,10192,21,48.483333,4.616667,1.59
+ Lesmont ,LESMONT ,10500,10193,21,48.433333,4.416667,1.4
+ Lévigny ,LEVIGNY ,10200,10194,21,48.3,4.7,1.89
+ Lhuître ,LHUITRE ,10700,10195,21,48.566667,4.25,1.84
+ Lignières ,LIGNIERES ,10130,10196,21,47.95,3.966667,2.47
+ Lignol-le-Château ,LIGNOL LE CHATEAU ,10200,10197,21,48.216667,4.816667,2.32
+ Lirey ,LIREY ,10320,10198,21,48.15,4.05,1.07
+ Loches-sur-Ource ,LOCHES SUR OURCE ,10110,10199,21,48.066667,4.5,1.65
+ La Loge-aux-Chèvres ,LA LOGE AUX CHEVRES,10140,10200,21,48.283333,4.416667,0.95
+ La Loge-Pomblin ,LA LOGE POMBLIN ,10210,10201,21,48.05,4.033333,1.77
+ Les Loges-Margueron ,LES LOGES MARGUERON ,10210,10202,21,48.083333,4.116667,1.54
+ Longchamp-sur-Aujon ,LONGCHAMP SUR AUJON ,10310,10203,21,48.15,4.833333,2.38
+ Longpré-le-Sec ,LONGPRE LE SEC ,10140,10205,21,48.183333,4.516667,1.23
+ Longsols ,LONGSOLS ,10240,10206,21,48.433333,4.283333,1.47
+ Longueville-sur-Aube ,LONGUEVILLE SUR AUBE ,10170,10207,21,48.55,3.916667,1.72
+ La Louptière-Thénard ,LA LOUPTIERE THENARD ,10400,10208,21,48.383333,3.433333,2.7
+ Lusigny-sur-Barse ,LUSIGNY SUR BARSE ,10270,10209,21,48.25,4.266667,0.84
+ Luyères ,LUYERES ,10150,10210,21,48.383333,4.2,1.29
+ Macey ,MACEY ,10300,10211,21,48.3,3.916667,1.33
+ Machy ,MACHY ,10320,10212,21,48.133333,4.05,1.19
+ Magnant ,MAGNANT ,10110,10213,21,48.166667,4.416667,0.96
+ Magnicourt ,MAGNICOURT ,10240,10214,21,48.45,4.383333,1.28
+ Magny-Fouchard ,MAGNY FOUCHARD ,10140,10215,21,48.25,4.533333,1.29
+ Mailly-le-Camp ,MAILLY LE CAMP ,10230,10216,21,48.666667,4.216667,2.54
+ Maison-des-Champs ,MAISON DES CHAMPS ,10140,10217,21,48.25,4.566667,1.41
+ Maisons-lès-Chaource ,MAISONS LES CHAOURCE ,10210,10218,21,48.016667,4.166667,2
+ Maisons-lès-Soulaines ,MAISONS LES SOULAINES ,10200,10219,21,48.283333,4.783333,2.19
+ Maizières-lès-Brienne ,MAIZIERES LES BRIENNE ,10500,10221,21,48.433333,4.583333,1.47
+ Maraye-en-Othe ,MARAYE EN OTHE ,10160,10222,21,48.166667,3.85,1.78
+ Marcilly-le-Hayer ,MARCILLY LE HAYER ,10290,10223,21,48.35,3.633333,1.97
+ Marigny-le-Châtel ,MARIGNY LE CHATEL ,10350,10224,21,48.4,3.733333,1.61
+ Marnay-sur-Seine ,MARNAY SUR SEINE ,10400,10225,21,48.516667,3.55,2.27
+ Marolles-lès-Bailly ,MAROLLES LES BAILLY ,10110,10226,21,48.183333,4.35,1.25
+ Marolles-sous-Lignières ,MAROLLES SOUS LIGNIERES ,10130,10227,21,47.95,3.916667,2.47
+ Mathaux ,MATHAUX ,10500,10228,21,48.366667,4.483333,1.11
+ Maupas ,MAUPAS ,10320,10229,21,48.133333,4.066667,1.37
+ Mergey ,MERGEY ,10600,10230,21,48.383333,4.016667,0.58
+ Le Mériot ,LE MERIOT ,10400,10231,21,48.5,3.45,2.64
+ Merrey-sur-Arce ,MERREY SUR ARCE ,10110,10232,21,48.1,4.383333,1.42
+ Méry-sur-Seine ,MERY SUR SEINE ,10170,10233,21,48.5,3.883333,1.37
+ Mesgrigny ,MESGRIGNY ,10170,10234,21,48.483333,3.883333,1.26
+ Mesnil-la-Comtesse ,MESNIL LA COMTESSE ,10700,10235,21,48.5,4.2,1.37
+ Mesnil-Lettre ,MESNIL LETTRE ,10240,10236,21,48.45,4.266667,1.55
+ Mesnil-Saint-Loup ,MESNIL SAINT LOUP ,10190,10237,21,48.3,3.766667,1.49
+ Mesnil-Saint-Père ,MESNIL SAINT PERE ,10140,10238,21,48.25,4.333333,1.84
+ Mesnil-Sellières ,MESNIL SELLIERES ,10220,10239,21,48.333333,4.216667,1.29
+ Messon ,MESSON ,10190,10240,21,48.266667,3.9,1.01
+ Metz-Robert ,METZ ROBERT ,10210,10241,21,48.066667,4.116667,1.65
+ Meurville ,MEURVILLE ,10200,10242,21,48.2,4.616667,1.59
+ Molins-sur-Aube ,MOLINS SUR AUBE ,10500,10243,21,48.433333,4.383333,1.83
+ Montangon ,MONTANGON ,10220,10244,21,48.4,4.35,1.03
+ Montaulin ,MONTAULIN ,10270,10245,21,48.25,4.2,0.58
+ Montceaux-lès-Vaudes ,MONTCEAUX LES VAUDES ,10260,10246,21,48.166667,4.166667,1.65
+ Montfey ,MONTFEY ,10130,10247,21,48.066667,3.883333,1.65
+ Montgueux ,MONTGUEUX ,10300,10248,21,48.3,3.966667,0.76
+ Montier-en-l'Isle ,MONTIER EN L ISLE,10200,10250,21,48.266667,4.666667,1.77
+ Montigny-les-Monts ,MONTIGNY LES MONTS ,10130,10251,21,48.1,3.95,1.42
+ Montmartin-le-Haut ,MONTMARTIN LE HAUT ,10140,10252,21,48.216667,4.55,1.35
+ Montmorency-Beaufort ,MONTMORENCY BEAUFORT ,10330,10253,21,48.483333,4.566667,1.41
+ Montpothier ,MONTPOTHIER ,10400,10254,21,48.566667,3.516667,2.39
+ Montreuil-sur-Barse ,MONTREUIL SUR BARSE ,10270,10255,21,48.216667,4.3,1.73
+ Montsuzain ,MONTSUZAIN ,10150,10256,21,48.45,4.133333,1.14
+ Morembert ,MOREMBERT ,10240,10257,21,48.5,4.333333,1.37
+ Morvilliers ,MORVILLIERS ,10500,10258,21,48.383333,4.616667,1.59
+ La Motte-Tilly ,LA MOTTE TILLY ,10400,10259,21,48.466667,3.433333,2.7
+ Moussey ,MOUSSEY ,10800,10260,21,48.216667,4.1,0.61
+ Mussy-sur-Seine ,MUSSY SUR SEINE ,10250,10261,21,47.966667,4.5,2.35
+ Neuville-sur-Seine ,NEUVILLE SUR SEINE ,10250,10262,21,48.033333,4.416667,1.89
+ Noë-les-Mallets ,NOE LES MALLETS ,10360,10264,21,48.1,4.566667,1.42
+ Les Noës-près-Troyes ,LES NOES PRES TROYES,10420,10265,21,48.3,4.033333,0.52
+ Nogent-en-Othe ,NOGENT EN OTHE ,10160,10266,21,48.15,3.8,1.37
+ Nogent-sur-Aube ,NOGENT SUR AUBE ,10240,10267,21,48.5,4.316667,1.37
+ Nogent-sur-Seine ,NOGENT SUR SEINE ,10400,10268,21,48.483333,3.5,2.45
+ Nozay ,NOZAY ,10700,10269,21,48.516667,4.1,1.49
+ Onjon ,ONJON ,10220,10270,21,48.4,4.283333,0.68
+ Origny-le-Sec ,ORIGNY LE SEC ,10510,10271,21,48.466667,3.766667,1.49
+ Ormes ,ORMES ,10700,10272,21,48.55,4.116667,1.72
+ Ortillon ,ORTILLON ,10700,10273,21,48.516667,4.25,1.49
+ Orvilliers-Saint-Julien ,ORVILLIERS SAINT JULIEN ,10170,10274,21,48.45,3.833333,1.61
+ Ossey-les-Trois-Maisons ,OSSEY LES TROIS MAISONS,10100,10275,21,48.433333,3.75,1.55
+ Paisy-Cosdon ,PAISY COSDON ,10160,10276,21,48.233333,3.716667,1.67
+ Pâlis ,PALIS ,10190,10277,21,48.283333,3.7,2.01
+ Pars-lès-Chavanges ,PARS LES CHAVANGES ,10330,10279,21,48.5,4.5,1.37
+ Pars-lès-Romilly ,PARS LES ROMILLY ,10100,10280,21,48.483333,3.733333,1.61
+ Le Pavillon-Sainte-Julie ,LE PAVILLON SAINTE JULIE,10350,10281,21,48.366667,3.9,1.66
+ Payns ,PAYNS ,10600,10282,21,48.383333,3.966667,1.12
+ Pel-et-Der ,PEL ET DER ,10500,10283,21,48.4,4.416667,1.37
+ Périgny-la-Rose ,PERIGNY LA ROSE ,10400,10284,21,48.55,3.633333,1.97
+ Perthes-lès-Brienne ,PERTHES LES BRIENNE ,10500,10285,21,48.433333,4.533333,1.29
+ Petit-Mesnil ,PETIT MESNIL ,10500,10286,21,48.35,4.583333,1.47
+ Piney ,PINEY ,10220,10287,21,48.366667,4.333333,0.57
+ Plaines-Saint-Lange ,PLAINES SAINT LANGE ,10250,10288,21,47.983333,4.466667,2.24
+ Planty ,PLANTY ,10160,10290,21,48.266667,3.65,1.91
+ Plessis-Barbuise ,PLESSIS BARBUISE ,10400,10291,21,48.566667,3.583333,2.15
+ Poivres ,POIVRES ,10700,10293,21,48.683333,4.266667,2.66
+ Poligny ,POLIGNY ,10110,10294,21,48.166667,4.35,1.12
+ Polisot ,POLISOT ,10110,10295,21,48.083333,4.366667,1.54
+ Polisy ,POLISY ,10110,10296,21,48.066667,4.466667,1.65
+ Pont-Sainte-Marie ,PONT SAINTE MARIE ,10150,10297,21,48.316667,4.1,1.14
+ Pont-sur-Seine ,PONT SUR SEINE ,10400,10298,21,48.516667,3.6,2.09
+ Pouan-les-Vallées ,POUAN LES VALLEES ,10700,10299,21,48.533333,4.066667,1.61
+ Pougy ,POUGY ,10240,10300,21,48.45,4.366667,1.03
+ Pouy-sur-Vannes ,POUY SUR VANNES ,10290,10301,21,48.3,3.583333,2.15
+ Praslin ,PRASLIN ,10210,10302,21,48.05,4.2,1.77
+ Précy-Notre-Dame ,PRECY NOTRE DAME ,10500,10303,21,48.416667,4.433333,1.16
+ Précy-Saint-Martin ,PRECY SAINT MARTIN ,10500,10304,21,48.416667,4.45,0.99
+ Prémierfait ,PREMIERFAIT ,10170,10305,21,48.5,4.033333,1.71
+ Proverville ,PROVERVILLE ,10200,10306,21,48.233333,4.7,1.89
+ Prugny ,PRUGNY ,10190,10307,21,48.25,3.95,1.6
+ Prunay-Belleville ,PRUNAY BELLEVILLE ,10350,10308,21,48.366667,3.783333,1.43
+ Prusy ,PRUSY ,10210,10309,21,47.966667,4.05,2.35
+ Puits-et-Nuisement ,PUITS ET NUISEMENT ,10140,10310,21,48.216667,4.5,1.17
+ Quincey ,QUINCEY ,10400,10311,21,48.466667,3.583333,2.15
+ Racines ,RACINES ,10130,10312,21,48.05,3.85,1.77
+ Radonvilliers ,RADONVILLIERS ,10500,10313,21,48.366667,4.516667,1.23
+ Ramerupt ,RAMERUPT ,10240,10314,21,48.516667,4.3,1.49
+ Rances ,RANCES ,10500,10315,21,48.466667,4.55,1.35
+ Rhèges ,RHEGES ,10170,10316,21,48.55,4,1.72
+ Les Riceys ,LES RICEYS ,10340,10317,21,47.983333,4.366667,2.24
+ Rigny-la-Nonneuse ,RIGNY LA NONNEUSE ,10290,10318,21,48.416667,3.666667,1.85
+ Rigny-le-Ferron ,RIGNY LE FERRON ,10160,10319,21,48.2,3.633333,1.97
+ Rilly-Sainte-Syre ,RILLY SAINTE SYRE ,10280,10320,21,48.45,3.95,1.03
+ La Rivière-de-Corps ,LA RIVIERE DE CORPS,10440,10321,21,48.283333,4.033333,1
+ Romaines ,ROMAINES ,10240,10322,21,48.516667,4.316667,1.49
+ Romilly-sur-Seine ,ROMILLY SUR SEINE ,10100,10323,21,48.516667,3.716667,1.67
+ Rosières-près-Troyes ,ROSIERES PRES TROYES ,10430,10325,21,48.266667,4.066667,1
+ Rosnay-l'Hôpital ,ROSNAY L HOPITAL ,10500,10326,21,48.466667,4.5,1.17
+ La Rothière ,LA ROTHIERE ,10500,10327,21,48.35,4.566667,1.41
+ Rouilly-Sacey ,ROUILLY SACEY ,10220,10328,21,48.35,4.266667,0.48
+ Rouilly-Saint-Loup ,ROUILLY SAINT LOUP ,10800,10329,21,48.266667,4.15,1.57
+ Rouvres-les-Vignes ,ROUVRES LES VIGNES ,10200,10330,21,48.233333,4.816667,2.32
+ Rumilly-lès-Vaudes ,RUMILLY LES VAUDES ,10260,10331,21,48.15,4.216667,1.07
+ Ruvigny ,RUVIGNY ,10410,10332,21,48.266667,4.183333,1.34
+ Saint-André-les-Vergers ,SAINT ANDRE LES VERGERS,10120,10333,21,48.283333,4.05,1.45
+ Saint-Aubin ,SAINT AUBIN ,10400,10334,21,48.466667,3.55,2.27
+ Saint-Benoist-sur-Vanne ,SAINT BENOIST SUR VANNE,10160,10335,21,48.233333,3.666667,1.85
+ Saint-Benoît-sur-Seine ,SAINT BENOIT SUR SEINE,10600,10336,21,48.366667,4.033333,0.77
+ Saint-Christophe-Dodinicourt ,SAINT CHRISTOPHE DODINICOURT ,10500,10337,21,48.433333,4.466667,1.05
+ Saint-Étienne-sous-Barbuise ,SAINT ETIENNE SOUS BARBUISE,10700,10338,21,48.5,4.116667,1.37
+ Saint-Flavy ,SAINT FLAVY ,10350,10339,21,48.4,3.766667,1.49
+ Saint-Germain ,SAINT GERMAIN ,10120,10340,21,48.25,4.033333,0.52
+ Saint-Hilaire-sous-Romilly ,SAINT HILAIRE SOUS ROMILLY,10100,10341,21,48.516667,3.666667,1.85
+ Saint-Jean-de-Bonneval ,SAINT JEAN DE BONNEVAL,10320,10342,21,48.166667,4.05,0.96
+ Saint-Julien-les-Villas ,SAINT JULIEN LES VILLAS,10800,10343,21,48.266667,4.1,1.27
+ Saint-Léger-près-Troyes ,SAINT LEGER PRES TROYES,10800,10344,21,48.233333,4.083333,0.82
+ Saint-Léger-sous-Brienne ,SAINT LEGER SOUS BRIENNE,10500,10345,21,48.4,4.5,1.17
+ Saint-Léger-sous-Margerie ,SAINT LEGER SOUS MARGERIE,10330,10346,21,48.533333,4.483333,1.61
+ Saint-Loup-de-Buffigny ,SAINT LOUP DE BUFFIGNY,10100,10347,21,48.45,3.633333,1.97
+ Saint-Lupien ,SAINT LUPIEN ,10350,10348,21,48.35,3.7,1.73
+ Saint-Lyé ,SAINT LYE ,10600,10349,21,48.366667,4,0.64
+ Saint-Mards-en-Othe ,SAINT MARDS EN OTHE,10160,10350,21,48.166667,3.8,1.37
+ Saint-Martin-de-Bossenay ,SAINT MARTIN DE BOSSENAY,10100,10351,21,48.433333,3.683333,1.79
+ Sainte-Maure ,SAINTE MAURE ,10150,10352,21,48.35,4.05,1.3
+ Saint-Mesmin ,SAINT MESMIN ,10280,10353,21,48.45,3.933333,1.03
+ Saint-Nabord-sur-Aube ,SAINT NABORD SUR AUBE,10700,10354,21,48.533333,4.216667,1.61
+ Saint Nicolas-la-Chapelle ,SAINT NICOLAS LA CHAPELLE,10400,10355,21,48.533333,3.466667,2.57
+ Saint-Oulph ,SAINT OULPH ,10170,10356,21,48.516667,3.866667,1.49
+ Saint-Parres-aux-Tertres ,SAINT PARRES AUX TERTRES,10410,10357,21,48.3,4.116667,1.44
+ Saint-Parres-lès-Vaudes ,SAINT PARRES LES VAUDES,10260,10358,21,48.166667,4.216667,0.96
+ Saint-Phal ,SAINT PHAL ,10130,10359,21,48.116667,4,1.56
+ Saint-Pouange ,SAINT POUANGE ,10120,10360,21,48.233333,4.033333,0.82
+ Saint-Rémy-sous-Barbuise ,SAINT REMY SOUS BARBUISE,10700,10361,21,48.483333,4.116667,1.26
+ Sainte-Savine ,SAINTE SAVINE ,10300,10362,21,48.3,4.05,1.94
+ Saint-Thibault ,SAINT THIBAULT ,10800,10363,21,48.2,4.133333,0.73
+ Saint-Usage ,SAINT USAGE ,10360,10364,21,48.1,4.616667,1.59
+ Salon ,SALON ,10700,10365,21,48.633333,4,2.31
+ Saulcy ,SAULCY ,10200,10366,21,48.283333,4.833333,2.38
+ La Saulsotte ,LA SAULSOTTE ,10400,10367,21,48.533333,3.5,2.45
+ Savières ,SAVIERES ,10600,10368,21,48.416667,3.95,1.98
+ Semoine ,SEMOINE ,10700,10369,21,48.683333,4.083333,2.66
+ Soligny-les-Étangs ,SOLIGNY LES ETANGS ,10400,10370,21,48.4,3.5,2.45
+ Sommeval ,SOMMEVAL ,10320,10371,21,48.166667,3.966667,1.68
+ Soulaines-Dhuys ,SOULAINES DHUYS ,10200,10372,21,48.366667,4.733333,2.01
+ Souligny ,SOULIGNY ,10320,10373,21,48.2,4,1.37
+ Spoy ,SPOY ,10200,10374,21,48.233333,4.616667,1.59
+ Thennelières ,THENNELIERES ,10410,10375,21,48.283333,4.183333,1.01
+ Thieffrain ,THIEFFRAIN ,10140,10376,21,48.2,4.433333,0.93
+ Thors ,THORS ,10200,10378,21,48.3,4.816667,2.32
+ Torcy-le-Grand ,TORCY LE GRAND ,10700,10379,21,48.533333,4.166667,1.61
+ Torcy-le-Petit ,TORCY LE PETIT ,10700,10380,21,48.533333,4.2,1.61
+ Torvilliers ,TORVILLIERS ,10440,10381,21,48.266667,3.966667,1
+ Trainel ,TRAINEL ,10400,10382,21,48.416667,3.45,2.64
+ Trancault ,TRANCAULT ,10290,10383,21,48.366667,3.533333,2.33
+ Trannes ,TRANNES ,10140,10384,21,48.3,4.583333,1.47
+ Trouan-le-Grand ,TROUAN LE GRAND ,10700,10385,21,48.633333,4.233333,2.31
+ Troyes ,TROYES ,10000,10387,21,48.3,4.083333,0.34
+ Turgy ,TURGY ,10210,10388,21,48.016667,4.05,2
+ Unienville ,UNIENVILLE ,10140,10389,21,48.333333,4.55,1.35
+ Urville ,URVILLE ,10200,10390,21,48.166667,4.65,1.71
+ Vailly ,VAILLY ,10150,10391,21,48.366667,4.116667,0.44
+ Vallant-Saint-Georges ,VALLANT SAINT GEORGES ,10170,10392,21,48.466667,3.9,1.14
+ Vallentigny ,VALLENTIGNY ,10500,10393,21,48.45,4.583333,1.47
+ Vallières ,VALLIERES ,10210,10394,21,48,4.05,2.12
+ Vanlay ,VANLAY ,10210,10395,21,48.033333,4.016667,1.89
+ Vauchassis ,VAUCHASSIS ,10190,10396,21,48.216667,3.916667,1.31
+ Vauchonvilliers ,VAUCHONVILLIERS ,10140,10397,21,48.266667,4.533333,1.29
+ Vaucogne ,VAUCOGNE ,10240,10398,21,48.533333,4.35,1.61
+ Vaudes ,VAUDES ,10260,10399,21,48.183333,4.183333,1.41
+ Vaupoisson ,VAUPOISSON ,10700,10400,21,48.516667,4.233333,1.49
+ Vendeuvre-sur-Barse ,VENDEUVRE SUR BARSE ,10140,10401,21,48.233333,4.466667,1.05
+ La Vendue-Mignot ,LA VENDUE MIGNOT ,10800,10402,21,48.166667,4.116667,1.34
+ Vernonvilliers ,VERNONVILLIERS ,10200,10403,21,48.316667,4.683333,1.83
+ Verpillières-sur-Ource ,VERPILLIERES SUR OURCE ,10360,10404,21,48.05,4.566667,1.77
+ Verricourt ,VERRICOURT ,10240,10405,21,48.45,4.35,1.03
+ Viâpres-le-Grand ,VIAPRES LE GRAND ,10380,10407,21,48.566667,4.016667,1.84
+ Viâpres-le-Petit ,VIAPRES LE PETIT ,10380,10408,21,48.566667,4.033333,1.84
+ Villacerf ,VILLACERF ,10600,10409,21,48.4,3.983333,1.01
+ Villadin ,VILLADIN ,10290,10410,21,48.316667,3.683333,1.79
+ La Ville-aux-Bois ,LA VILLE AUX BOIS,10500,10411,21,48.283333,4.5,1.67
+ Villechétif ,VILLECHETIF ,10410,10412,21,48.316667,4.15,0.86
+ Villehardouin ,VILLEHARDOUIN ,10220,10413,21,48.383333,4.383333,1.37
+ Villeloup ,VILLELOUP ,10350,10414,21,48.366667,3.866667,1.13
+ Villemaur-sur-Vanne ,VILLEMAUR SUR VANNE ,10190,10415,21,48.25,3.733333,1.61
+ Villemereuil ,VILLEMEREUIL ,10800,10416,21,48.2,4.083333,0.87
+ Villemoiron-en-Othe ,VILLEMOIRON EN OTHE ,10160,10417,21,48.2,3.783333,1.43
+ Villemorien ,VILLEMORIEN ,10110,10418,21,48.083333,4.3,1.63
+ Villemoyenne ,VILLEMOYENNE ,10260,10419,21,48.183333,4.233333,0.84
+ Villeneuve-au-Chemin ,VILLENEUVE AU CHEMIN ,10130,10422,21,48.083333,3.85,1.54
+ La Villeneuve-au-Chêne ,LA VILLENEUVE AU CHENE,10140,10423,21,48.233333,4.383333,1.27
+ Villeret ,VILLERET ,10330,10424,21,48.483333,4.583333,1.47
+ Villery ,VILLERY ,10320,10425,21,48.166667,4.016667,0.96
+ Ville-sous-la-Ferté ,VILLE SOUS LA FERTE,10310,10426,21,48.116667,4.783333,2.19
+ Ville-sur-Arce ,VILLE SUR ARCE ,10110,10427,21,48.116667,4.45,1.3
+ Ville-sur-Terre ,VILLE SUR TERRE ,10200,10428,21,48.333333,4.75,2.07
+ Villette-sur-Aube ,VILLETTE SUR AUBE ,10700,10429,21,48.533333,4.1,1.61
+ Villiers-Herbisse ,VILLIERS HERBISSE ,10700,10430,21,48.633333,4.116667,2.31
+ Villiers-le-Bois ,VILLIERS LE BOIS ,10210,10431,21,47.95,4.183333,2.47
+ Villiers-sous-Praslin ,VILLIERS SOUS PRASLIN ,10210,10432,21,48.066667,4.25,1.71
+ Villy-en-Trodes ,VILLY EN TRODES ,10140,10433,21,48.2,4.383333,1.38
+ Villy-le-Bois ,VILLY LE BOIS ,10800,10434,21,48.166667,4.1,1.37
+ Villy-le-Maréchal ,VILLY LE MARECHAL ,10800,10435,21,48.183333,4.083333,1.16
+ Vinets ,VINETS ,10700,10436,21,48.533333,4.233333,1.61
+ Virey-sous-Bar ,VIREY SOUS BAR ,10260,10437,21,48.133333,4.316667,1.56
+ Vitry-le-Croisé ,VITRY LE CROISE ,10110,10438,21,48.15,4.566667,1.81
+ Viviers-sur-Artaut ,VIVIERS SUR ARTAUT ,10110,10439,21,48.1,4.5,1.42
+ Voigny ,VOIGNY ,10200,10440,21,48.233333,4.766667,2.13
+ Vosnon ,VOSNON ,10130,10441,21,48.1,3.85,1.42
+ Voué ,VOUE ,10150,10442,21,48.466667,4.116667,1.4
+ Vougrey ,VOUGREY ,10210,10443,21,48.083333,4.233333,1.6
+ Vulaines ,VULAINES ,10160,10444,21,48.233333,3.616667,2.03
+ Yèvres-le-Petit ,YEVRES LE PETIT ,10500,10445,21,48.483333,4.483333,1.26
+ Grange-l'Évêque ,GRANGE L EVEQUE ,10300,10901,21,48.316667,3.95,0.82
+ Barberey-aux-Moines ,BARBEREY AUX MOINES ,10600,10903,21,48.35,4.016667,0.63
+ Belley ,BELLEY ,10410,10904,21,48.3,4.15,0.34
+ Courgerennes ,COURGERENNES ,10800,10907,21,48.25,4.1,0.86
+ Courtavant ,COURTAVANT ,10400,10908,21,48.55,3.583333,2.15
+ Culoison ,CULOISON ,10150,10909,21,48.333333,4.066667,1.22
+ Daudes ,DAUDES ,10270,10910,21,48.25,4.183333,0.92
+ Dival ,DIVAL ,10370,10911,21,48.6,3.55,2.27
+ Lépine ,LEPINE ,10120,10913,21,48.266667,4,0.82
+ Les Granges ,LES GRANGES ,10100,10914,21,48.5,3.783333,-1
+ Rouillerot ,ROUILLEROT ,10800,10915,21,48.25,4.15,1.27
+ Viélaines ,VIELAINES ,10430,10918,21,48.25,4.05,1
+ Villepart ,VILLEPART ,10800,10919,21,48.266667,4.1,1.27
+ Airoux ,AIROUX ,11320,11002,91,43.366667,1.866667,1.71
+ Ajac ,AJAC ,11300,11003,91,43.05,2.15,0.64
+ Alaigne ,ALAIGNE ,11240,11004,91,43.116667,2.1,0.86
+ Alairac ,ALAIRAC ,11290,11005,91,43.183333,2.25,0.59
+ Albas ,ALBAS ,11360,11006,91,43,2.733333,1.55
+ Albières ,ALBIERES ,11330,11007,91,42.95,2.483333,1.27
+ Alet-les-Bains ,ALET LES BAINS ,11580,11008,91,43,2.266667,1.71
+ Alzonne ,ALZONNE ,11170,11009,91,43.266667,2.183333,1.03
+ Antugnac ,ANTUGNAC ,11190,11010,91,42.95,2.233333,1.15
+ Aragon ,ARAGON ,11600,11011,91,43.3,2.316667,1.25
+ Argeliers ,ARGELIERS ,11120,11012,91,43.316667,2.916667,2.23
+ Armissan ,ARMISSAN ,11110,11014,91,43.183333,3.1,2.92
+ Arques ,ARQUES ,11190,11015,91,42.95,2.383333,1.15
+ Artigues ,ARTIGUES ,11140,11017,91,42.8,2.216667,2.18
+ Arzens ,ARZENS ,11290,11018,91,43.2,2.216667,0.57
+ Aunat ,AUNAT ,11140,11019,91,42.8,2.1,2.18
+ Auriac ,AURIAC ,11330,11020,91,42.933333,2.5,1.27
+ Axat ,AXAT ,11140,11021,91,42.8,2.233333,2.18
+ Azille ,AZILLE ,11700,11022,91,43.283333,2.666667,1.47
+ Badens ,BADENS ,11800,11023,91,43.216667,2.516667,0.73
+ Baraigne ,BARAIGNE ,11410,11026,91,43.333333,1.833333,1.83
+ Barbaira ,BARBAIRA ,11800,11027,91,43.183333,2.516667,0.84
+ Belcaire ,BELCAIRE ,11340,11028,91,42.816667,1.966667,2.07
+ Belcastel-et-Buc ,BELCASTEL ET BUC ,11580,11029,91,43.033333,2.366667,0.83
+ Belflou ,BELFLOU ,11410,11030,91,43.316667,1.783333,2.02
+ Belfort-sur-Rébenty ,BELFORT SUR REBENTY ,11140,11031,91,42.833333,2.05,1.95
+ Bellegarde-du-Razès ,BELLEGARDE DU RAZES ,11240,11032,91,43.1,2.016667,1.14
+ Belpech ,BELPECH ,11420,11033,91,43.2,1.75,2.14
+ Belvèze-du-Razès ,BELVEZE DU RAZES ,11240,11034,91,43.133333,2.1,0.89
+ Belvianes-et-Cavirac ,BELVIANES ET CAVIRAC ,11500,11035,91,42.85,2.2,1.84
+ Belvis ,BELVIS ,11340,11036,91,42.85,2.083333,1.93
+ Berriac ,BERRIAC ,11090,11037,91,43.216667,2.416667,0.68
+ Bessède-de-Sault ,BESSEDE DE SAULT ,11140,11038,91,42.783333,2.116667,2.3
+ La Bezole ,LA BEZOLE ,11300,11039,91,43.033333,2.1,1.17
+ Bizanet ,BIZANET ,11200,11040,91,43.166667,2.883333,2.11
+ Bize-Minervois ,BIZE MINERVOIS ,11120,11041,91,43.316667,2.883333,2.11
+ Blomac ,BLOMAC ,11700,11042,91,43.2,2.6,1.05
+ Bouilhonnac ,BOUILHONNAC ,11800,11043,91,43.233333,2.433333,1.09
+ Bouisse ,BOUISSE ,11190,11044,91,42.983333,2.45,1.82
+ Bouriège ,BOURIEGE ,11300,11045,91,42.983333,2.166667,1.09
+ Bourigeole ,BOURIGEOLE ,11300,11046,91,42.983333,2.133333,1.25
+ Le Bousquet ,LE BOUSQUET ,11140,11047,91,42.75,2.166667,2.53
+ Boutenac ,BOUTENAC ,11200,11048,91,43.133333,2.8,1.8
+ Bram ,BRAM ,11150,11049,91,43.25,2.116667,0.91
+ Brenac ,BRENAC ,11500,11050,91,42.883333,2.15,1.61
+ Brézilhac ,BREZILHAC ,11270,11051,91,43.166667,2.066667,1.32
+ Brousses-et-Villaret ,BROUSSES ET VILLARET ,11390,11052,91,43.35,2.266667,1.6
+ Brugairolles ,BRUGAIROLLES ,11300,11053,91,43.116667,2.15,1.09
+ Les Brunels ,LES BRUNELS ,11400,11054,91,43.4,2.05,1.94
+ Bugarach ,BUGARACH ,11190,11055,91,42.883333,2.35,1.61
+ Cabrespine ,CABRESPINE ,11160,11056,91,43.366667,2.466667,1.71
+ Cahuzac ,CAHUZAC ,11420,11057,91,43.183333,1.85,1.77
+ Cailhau ,CAILHAU ,11240,11058,91,43.15,2.133333,1.57
+ Cailhavel ,CAILHAVEL ,11240,11059,91,43.166667,2.116667,1.44
+ Cailla ,CAILLA ,11140,11060,91,42.816667,2.2,2.07
+ Cambieure ,CAMBIEURE ,11240,11061,91,43.116667,2.133333,1.47
+ Campagna-de-Sault ,CAMPAGNA DE SAULT ,11140,11062,91,42.766667,2.05,2.41
+ Campagne-sur-Aude ,CAMPAGNE SUR AUDE ,11260,11063,91,42.916667,2.2,1.38
+ Camplong-d'Aude ,CAMPLONG D AUDE ,11200,11064,91,43.133333,2.65,1.92
+ Camps-sur-l'Agly ,CAMPS SUR L AGLY,11190,11065,91,42.866667,2.433333,1.75
+ Camurac ,CAMURAC ,11340,11066,91,42.8,1.916667,2.18
+ Capendu ,CAPENDU ,11700,11068,91,43.183333,2.566667,1.57
+ Carcassonne ,CARCASSONNE ,11000,11069,91,43.216667,2.35,0.68
+ Carlipa ,CARLIPA ,11170,11070,91,43.3,2.116667,1.25
+ Cascastel-des-Corbières ,CASCASTEL DES CORBIERES ,11360,11071,91,42.983333,2.75,1.61
+ La Cassaigne ,LA CASSAIGNE ,11270,11072,91,43.2,2,1.2
+ Cassaignes ,CASSAIGNES ,11190,11073,91,42.95,2.3,1.15
+ Les Cassés ,LES CASSES ,11320,11074,91,43.433333,1.866667,2.17
+ Castans ,CASTANS ,11160,11075,91,43.4,2.483333,1.94
+ Castelnaudary ,CASTELNAUDARY ,11400,11076,91,43.316667,1.95,1.39
+ Castelnau-d'Aude ,CASTELNAU D AUDE ,11700,11077,91,43.233333,2.683333,1.36
+ Castelreng ,CASTELRENG ,11300,11078,91,43.033333,2.133333,0.7
+ Caudebronde ,CAUDEBRONDE ,11390,11079,91,43.383333,2.3,1.83
+ Caudeval ,CAUDEVAL ,11230,11080,91,43.066667,1.95,1.39
+ Caunes-Minervois ,CAUNES MINERVOIS ,11160,11081,91,43.316667,2.533333,1.37
+ Caunette-sur-Lauquet ,CAUNETTE SUR LAUQUET ,11250,11082,91,43.033333,2.433333,2.36
+ Caunettes-en-Val ,CAUNETTES EN VAL ,11220,11083,91,43.066667,2.55,0.86
+ Caux-et-Sauzens ,CAUX ET SAUZENS ,11170,11084,91,43.233333,2.25,1.3
+ Cavanac ,CAVANAC ,11570,11085,91,43.166667,2.333333,1.41
+ Caves ,CAVES ,11510,11086,91,42.933333,2.983333,2.48
+ Cazalrenoux ,CAZALRENOUX ,11270,11087,91,43.2,1.95,1.39
+ Cenne-Monestiès ,CENNE MONESTIES ,11170,11089,91,43.333333,2.116667,1.52
+ Cépie ,CEPIE ,11300,11090,91,43.1,2.25,1.47
+ Chalabre ,CHALABRE ,11230,11091,91,42.983333,2,1.2
+ Citou ,CITOU ,11160,11092,91,43.383333,2.55,1.83
+ Le Clat ,LE CLAT ,11140,11093,91,42.783333,2.166667,2.3
+ Clermont-sur-Lauquet ,CLERMONT SUR LAUQUET ,11250,11094,91,43.05,2.416667,1.91
+ Comigne ,COMIGNE ,11700,11095,91,43.166667,2.583333,1.44
+ Comus ,COMUS ,11340,11096,91,42.816667,1.883333,2.07
+ Conilhac-de-la-Montagne ,CONILHAC DE LA MONTAGNE,11190,11097,91,42.983333,2.191667,1.75
+ Conilhac-Corbières ,CONILHAC CORBIERES ,11200,11098,91,43.183333,2.716667,1.48
+ Corbières ,CORBIERES ,11230,11100,91,43.05,1.983333,1.27
+ Coudons ,COUDONS ,11500,11101,91,42.866667,2.116667,1.72
+ Couffoulens ,COUFFOULENS ,11250,11102,91,43.166667,2.3,1.39
+ Couiza ,COUIZA ,11190,11103,91,42.95,2.25,1.15
+ Counozouls ,COUNOZOULS ,11140,11104,91,42.733333,2.233333,2.64
+ Cournanel ,COURNANEL ,11300,11105,91,43.033333,2.25,1.28
+ Coursan ,COURSAN ,11110,11106,91,43.233333,3.066667,2.8
+ Courtauly ,COURTAULY ,11230,11107,91,43.033333,2.033333,1.08
+ La Courtète ,LA COURTETE ,11240,11108,91,43.15,2.033333,1.08
+ Coustaussa ,COUSTAUSSA ,11190,11109,91,42.95,2.283333,1.15
+ Coustouge ,COUSTOUGE ,11220,11110,91,43.05,2.743,-1
+ Cruscades ,CRUSCADES ,11200,11111,91,43.183333,2.816667,1.86
+ Cubières-sur-Cinoble ,CUBIERES SUR CINOBLE ,11190,11112,91,42.866667,2.466667,2.13
+ Cucugnan ,CUCUGNAN ,11350,11113,91,42.85,2.6,1.84
+ Cumiés ,CUMIES ,11410,11114,91,43.3,1.85,1.77
+ Cuxac-Cabardès ,CUXAC CABARDES ,11390,11115,91,43.366667,2.3,1.71
+ Cuxac-d'Aude ,CUXAC D AUDE ,11590,11116,91,43.25,3,2.55
+ Davejean ,DAVEJEAN ,11330,11117,91,42.966667,2.616667,1.11
+ Dernacueillette ,DERNACUEILLETTE ,11330,11118,91,42.933333,2.6,1.27
+ La Digne-d'Amont ,LA DIGNE D AMONT,11300,11119,91,43.033333,2.15,0.64
+ La Digne-d'Aval ,LA DIGNE D AVAL,11300,11120,91,43.05,2.183333,0.52
+ Donazac ,DONAZAC ,11240,11121,91,43.083333,2.116667,1.34
+ Douzens ,DOUZENS ,11700,11122,91,43.183333,2.6,1.05
+ Durban-Corbières ,DURBAN CORBIERES ,11360,11124,91,43,2.816667,1.86
+ Embres-et-Castelmaure ,EMBRES ET CASTELMAURE ,11360,11125,91,42.933333,2.816667,1.86
+ Escales ,ESCALES ,11200,11126,91,43.216667,2.7,1.42
+ Escouloubre ,ESCOULOUBRE ,11140,11127,91,42.733333,2.133333,2.64
+ Escueillens ,ESCUEILLENS ,11240,11128,91,43.1,2,1.2
+ Espéraza ,ESPERAZA ,11260,11129,91,42.933333,2.216667,1.32
+ Espezel ,ESPEZEL ,11340,11130,91,42.816667,2.016667,2.07
+ Fa ,FA ,11260,11131,91,42.933333,2.183333,1.27
+ Fabrezan ,FABREZAN ,11200,11132,91,43.133333,2.7,1.42
+ Fajac-en-Val ,FAJAC EN VAL ,11220,11133,91,43.116667,2.45,1.58
+ Fajac-la-Relenque ,FAJAC LA RELENQUE ,11410,11134,91,43.283333,1.716667,2.27
+ La Fajolle ,LA FAJOLLE ,11140,11135,91,42.766667,1.966667,2.41
+ Fanjeaux ,FANJEAUX ,11270,11136,91,43.2,2.05,1.08
+ Félines-Termenès ,FELINES TERMENES ,11330,11137,91,42.983333,2.616667,1.11
+ Fendeille ,FENDEILLE ,11400,11138,91,43.266667,1.95,1.39
+ Fenouillet-du-Razès ,FENOUILLET DU RAZES ,11240,11139,91,43.15,2.016667,1.14
+ Ferrals-lès-Corbières ,FERRALS LES CORBIERES ,11200,11140,91,43.15,2.733333,1.55
+ Ferran ,FERRAN ,11240,11141,91,43.15,2.083333,0.89
+ Festes-et-Saint-André ,FESTES ET SAINT ANDRE,11300,11142,91,42.966667,2.15,1.4
+ Feuilla ,FEUILLA ,11510,11143,91,42.933333,2.916667,2.23
+ Fitou ,FITOU ,11510,11144,91,42.9,2.983333,2.48
+ Fleury-d'Aude ,FLEURY D AUDE ,11560,11145,91,43.22838,3.135,-1
+ Floure ,FLOURE ,11800,11146,91,43.183333,2.483333,0.61
+ Fontanès-de-Sault ,FONTANES DE SAULT ,11140,11147,91,42.766667,2.083333,2.41
+ Fontcouverte ,FONTCOUVERTE ,11700,11148,91,43.166667,2.7,1.42
+ Fonters-du-Razès ,FONTERS DU RAZES ,11400,11149,91,43.233333,1.933333,1.55
+ Fontiès-d'Aude ,FONTIES D AUDE ,11800,11151,91,43.183333,2.45,0.8
+ Fontjoncouse ,FONTJONCOUSE ,11360,11152,91,43.05,2.783333,1.73
+ La Force ,LA FORCE ,11270,11153,91,43.2,2.1,1.83
+ Fournes-Cabardès ,FOURNES CABARDES ,11600,11154,91,43.35,2.4,1.6
+ Fourtou ,FOURTOU ,11190,11155,91,42.916667,2.433333,1.52
+ Fraisse-Cabardès ,FRAISSE CABARDES ,11600,11156,91,43.325,2.275,1.92
+ Fraissé-des-Corbières ,FRAISSE DES CORBIERES ,11360,11157,91,42.966667,2.866667,2.05
+ Gaja-et-Villedieu ,GAJA ET VILLEDIEU ,11300,11158,91,43.083333,2.2,0.68
+ Gaja-la-Selve ,GAJA LA SELVE ,11270,11159,91,43.2,1.883333,1.64
+ Galinagues ,GALINAGUES ,11140,11160,91,42.816667,2.05,2.07
+ Gardie ,GARDIE ,11250,11161,91,43.066667,2.316667,0.75
+ Generville ,GENERVILLE ,11270,11162,91,43.216667,1.933333,1.45
+ Gincla ,GINCLA ,11140,11163,91,42.766667,2.333333,2.41
+ Ginestas ,GINESTAS ,11120,11164,91,43.266667,2.883333,2.11
+ Ginoles ,GINOLES ,11500,11165,91,42.866667,2.15,1.72
+ Gourvieille ,GOURVIEILLE ,11410,11166,91,43.333333,1.783333,2.02
+ Gramazie ,GRAMAZIE ,11240,11167,91,43.133333,2.083333,0.89
+ Granès ,GRANES ,11500,11168,91,42.9,2.25,1.5
+ Greffeil ,GREFFEIL ,11250,11169,91,43.083333,2.383333,1.05
+ Gruissan ,GRUISSAN ,11430,11170,91,43.1,3.083333,2.86
+ Gueytes-et-Labastide ,GUEYTES ET LABASTIDE ,11230,11171,91,43.066667,2,1.2
+ Homps ,HOMPS ,11200,11172,91,43.266667,2.716667,1.48
+ Hounoux ,HOUNOUX ,11240,11173,91,43.116667,2,1.2
+ Les Ilhes ,LES ILHES ,11380,11174,91,43.35,2.4,1.6
+ Issel ,ISSEL ,11400,11175,91,43.366667,1.983333,1.71
+ Joucou ,JOUCOU ,11140,11177,91,42.833333,2.083333,1.95
+ Labastide-d'Anjou ,LABASTIDE D ANJOU ,11320,11178,91,43.333333,1.866667,1.71
+ Labastide-en-Val ,LABASTIDE EN VAL ,11220,11179,91,43.066667,2.483333,1.06
+ Labastide-Esparbairenque ,LABASTIDE ESPARBAIRENQUE ,11380,11180,91,43.383333,2.416667,1.83
+ Labécède-Lauragais ,LABECEDE LAURAGAIS ,11400,11181,91,43.383333,2,1.83
+ Lacombe ,LACOMBE ,11310,11182,91,43.4,2.233333,1.94
+ Ladern-sur-Lauquet ,LADERN SUR LAUQUET ,11250,11183,91,43.116667,2.35,0.44
+ Lafage ,LAFAGE ,11420,11184,91,43.175,1.866667,-1
+ Lagrasse ,LAGRASSE ,11220,11185,91,43.1,2.616667,1.11
+ Lairière ,LAIRIERE ,11330,11186,91,43.016667,2.483333,1.49
+ Lanet ,LANET ,11330,11187,91,42.966667,2.5,1.04
+ Laprade ,LAPRADE ,11390,11189,91,43.433333,2.266667,2.17
+ Laroque-de-Fa ,LAROQUE DE FA ,11330,11191,91,42.95,2.566667,1.15
+ Lasbordes ,LASBORDES ,11400,11192,91,43.3,2.033333,1.25
+ Lasserre-de-Prouille ,LASSERRE DE PROUILLE ,11270,11193,91,43.183333,2.066667,1.3
+ Lastours ,LASTOURS ,11600,11194,91,43.333333,2.383333,1.48
+ Laurabuc ,LAURABUC ,11400,11195,91,43.25,1.983333,1.27
+ Laurac ,LAURAC ,11270,11196,91,43.233333,1.983333,1.27
+ Lauraguel ,LAURAGUEL ,11300,11197,91,43.1,2.166667,0.77
+ Laure-Minervois ,LAURE MINERVOIS ,11800,11198,91,43.266667,2.516667,1.36
+ Lavalette ,LAVALETTE ,11290,11199,91,43.183333,2.283333,1.12
+ Lespinassière ,LESPINASSIERE ,11160,11200,91,43.4,2.55,1.94
+ Leuc ,LEUC ,11250,11201,91,43.15,2.333333,0.92
+ Leucate ,LEUCATE ,11370,11202,91,42.916667,3.033333,2.67
+ Lézignan-Corbières ,LEZIGNAN CORBIERES ,11200,11203,91,43.2,2.766667,1.67
+ Lignairolles ,LIGNAIROLLES ,11240,11204,91,43.1,1.983333,1.34
+ Limousis ,LIMOUSIS ,11600,11205,91,43.333333,2.416667,1.48
+ Limoux ,LIMOUX ,11300,11206,91,43.066667,2.233333,1.01
+ Loupia ,LOUPIA ,11300,11207,91,43.066667,2.1,1.16
+ La Louvière-Lauragais ,LA LOUVIERE LAURAGAIS ,11410,11208,91,43.266667,1.75,2.14
+ Luc-sur-Aude ,LUC SUR AUDE ,11190,11209,91,42.966667,2.266667,1.04
+ Luc-sur-Orbieu ,LUC SUR ORBIEU ,11200,11210,91,43.183333,2.783333,1.73
+ Magrie ,MAGRIE ,11300,11211,91,43.033333,2.2,0.58
+ Mailhac ,MAILHAC ,11120,11212,91,43.3,2.833333,1.92
+ Maisons ,MAISONS ,11330,11213,91,42.933333,2.633333,1.27
+ Malras ,MALRAS ,11300,11214,91,43.066667,2.166667,0.58
+ Malviès ,MALVIES ,11300,11216,91,43.116667,2.183333,1.05
+ Marcorignan ,MARCORIGNAN ,11120,11217,91,43.233333,2.916667,2.23
+ Marquein ,MARQUEIN ,11410,11218,91,43.3,1.716667,2.27
+ Marsa ,MARSA ,11140,11219,91,42.816667,2.15,2.07
+ Marseillette ,MARSEILLETTE ,11800,11220,91,43.2,2.55,1.36
+ Les Martys ,LES MARTYS ,11390,11221,91,43.4,2.316667,1.94
+ Mas-Cabardès ,MAS CABARDES ,11380,11222,91,43.366667,2.366667,1.71
+ Mas-des-Cours ,MAS DES COURS ,11570,11223,91,43.116667,2.416667,1.22
+ Massac ,MASSAC ,11330,11224,91,42.916667,2.583333,1.38
+ Mas-Saintes-Puelles ,MAS SAINTES PUELLES ,11400,11225,91,43.316667,1.883333,1.64
+ Mayreville ,MAYREVILLE ,11420,11226,91,43.233333,1.85,1.77
+ Mayronnes ,MAYRONNES ,11220,11227,91,43.05,2.533333,0.8
+ Mazerolles-du-Razès ,MAZEROLLES DU RAZES ,11240,11228,91,43.133333,2.066667,0.95
+ Mazuby ,MAZUBY ,11140,11229,91,42.8,2.033333,2.18
+ Mérial ,MERIAL ,11140,11230,91,42.783333,1.983333,2.3
+ Mézerville ,MEZERVILLE ,11410,11231,91,43.266667,1.8,1.96
+ Miraval-Cabardès ,MIRAVAL CABARDES ,11380,11232,91,43.383333,2.366667,1.83
+ Mirepeisset ,MIREPEISSET ,11120,11233,91,43.283333,2.9,2.17
+ Mireval-Lauragais ,MIREVAL LAURAGAIS ,11400,11234,91,43.25,1.966667,1.33
+ Missègre ,MISSEGRE ,11580,11235,91,43,2.366667,0.81
+ Molandier ,MOLANDIER ,11420,11236,91,43.25,1.733333,2.21
+ Molleville ,MOLLEVILLE ,11410,11238,91,43.316667,1.833333,1.83
+ Montazels ,MONTAZELS ,11190,11240,91,42.95,2.25,1.15
+ Montbrun-des-Corbières ,MONTBRUN DES CORBIERES ,11700,11241,91,43.2,2.683333,1.36
+ Montclar ,MONTCLAR ,11250,11242,91,43.133333,2.25,1.69
+ Montferrand ,MONTFERRAND ,11320,11243,91,43.366667,1.816667,1.89
+ Montfort-sur-Boulzane ,MONTFORT SUR BOULZANE ,11140,11244,91,42.75,2.3,2.53
+ Montgaillard ,MONTGAILLARD ,11330,11245,91,42.916667,2.633333,1.38
+ Montgradail ,MONTGRADAIL ,11240,11246,91,43.116667,2.033333,1.08
+ Monthaut ,MONTHAUT ,11240,11247,91,43.083333,2.033333,1.08
+ Montirat ,MONTIRAT ,11800,11248,91,43.166667,2.45,1.03
+ Montjardin ,MONTJARDIN ,11230,11249,91,42.966667,2.033333,1.08
+ Montjoi ,MONTJOI ,11330,11250,91,43,2.483333,1.37
+ Montlaur ,MONTLAUR ,11220,11251,91,43.133333,2.566667,0.92
+ Montmaur ,MONTMAUR ,11320,11252,91,43.4,1.85,1.94
+ Montolieu ,MONTOLIEU ,11170,11253,91,43.3,2.216667,1.25
+ Montréal ,MONTREAL ,11290,11254,91,43.2,2.15,1.06
+ Montséret ,MONTSERET ,11200,11256,91,43.1,2.816667,1.86
+ Monze ,MONZE ,11800,11257,91,43.15,2.466667,1.18
+ Moussan ,MOUSSAN ,11120,11258,91,43.233333,2.95,2.36
+ Moussoulens ,MOUSSOULENS ,11170,11259,91,43.283333,2.233333,1.14
+ Mouthoumet ,MOUTHOUMET ,11330,11260,91,42.966667,2.533333,1.04
+ Moux ,MOUX ,11700,11261,91,43.183333,2.65,1.23
+ Narbonne ,NARBONNE ,11100,11262,91,43.183333,3,2.55
+ Nébias ,NEBIAS ,11500,11263,91,42.9,2.116667,1.62
+ Névian ,NEVIAN ,11200,11264,91,43.216667,2.9,2.17
+ Niort-de-Sault ,NIORT DE SAULT ,11140,11265,91,42.8,2,2.18
+ Port-la-Nouvelle ,PORT LA NOUVELLE ,11210,11266,91,43.016667,3.05,2.73
+ Ornaisons ,ORNAISONS ,11200,11267,91,43.183333,2.833333,1.92
+ Orsans ,ORSANS ,11270,11268,91,43.15,1.966667,1.33
+ Ouveillan ,OUVEILLAN ,11590,11269,91,43.3,2.966667,2.42
+ Padern ,PADERN ,11350,11270,91,42.866667,2.666667,1.72
+ Palairac ,PALAIRAC ,11330,11271,91,42.95,2.666667,1.65
+ Palaja ,PALAJA ,11570,11272,91,43.166667,2.383333,0.69
+ Paraza ,PARAZA ,11200,11273,91,43.25,2.833333,1.92
+ Pauligne ,PAULIGNE ,11300,11274,91,43.066667,2.15,0.64
+ Payra-sur-l'Hers ,PAYRA SUR L HERS,11410,11275,91,43.266667,1.866667,1.71
+ Paziols ,PAZIOLS ,11350,11276,91,42.85,2.716667,1.84
+ Pécharic-et-le-Py ,PECHARIC ET LE PY,11420,11277,91,43.183333,1.833333,1.83
+ Pech-Luna ,PECH LUNA ,11420,11278,91,43.216667,1.833333,1.83
+ Pennautier ,PENNAUTIER ,11610,11279,91,43.25,2.333333,1
+ Pépieux ,PEPIEUX ,11700,11280,91,43.3,2.7,2.05
+ Pexiora ,PEXIORA ,11150,11281,91,43.266667,2.033333,1.11
+ Peyrefitte-du-Razès ,PEYREFITTE DU RAZES ,11230,11282,91,43.066667,2.016667,1.14
+ Peyrefitte-sur-l'Hers ,PEYREFITTE SUR L HERS,11410,11283,91,43.25,1.833333,1.83
+ Peyrens ,PEYRENS ,11400,11284,91,43.366667,1.983333,1.71
+ Peyriac-de-Mer ,PEYRIAC DE MER ,11440,11285,91,43.083333,2.966667,2.42
+ Peyriac-Minervois ,PEYRIAC MINERVOIS ,11160,11286,91,43.3,2.566667,1.25
+ Peyrolles ,PEYROLLES ,11190,11287,91,42.966667,2.316667,1.04
+ Pezens ,PEZENS ,11170,11288,91,43.25,2.283333,1.69
+ Pieusse ,PIEUSSE ,11300,11289,91,43.083333,2.233333,1.1
+ Plaigne ,PLAIGNE ,11420,11290,91,43.166667,1.816667,1.89
+ Plavilla ,PLAVILLA ,11270,11291,91,43.15,1.933333,1.45
+ La Pomarède ,LA POMAREDE ,11400,11292,91,43.4,1.95,1.94
+ Pomas ,POMAS ,11250,11293,91,43.116667,2.3,0.68
+ Pomy ,POMY ,11300,11294,91,43.05,2.05,1.93
+ Pouzols-Minervois ,POUZOLS MINERVOIS ,11120,11296,91,43.283333,2.833333,1.92
+ Pradelles-Cabardès ,PRADELLES CABARDES ,11380,11297,91,43.4,2.45,2.01
+ Pradelles-en-Val ,PRADELLES EN VAL ,11220,11298,91,43.15,2.516667,1.12
+ Preixan ,PREIXAN ,11250,11299,91,43.15,2.3,1.11
+ Puginier ,PUGINIER ,11400,11300,91,43.383333,1.95,1.83
+ Puicheric ,PUICHERIC ,11700,11301,91,43.233333,2.633333,1.17
+ Puilaurens ,PUILAURENS ,11140,11302,91,42.816667,2.3,2.07
+ Puivert ,PUIVERT ,11230,11303,91,42.933333,2.05,1.62
+ Quillan ,QUILLAN ,11500,11304,91,42.866667,2.183333,1.72
+ Quintillan ,QUINTILLAN ,11360,11305,91,42.966667,2.716667,1.48
+ Quirbajou ,QUIRBAJOU ,11500,11306,91,42.833333,2.183333,1.95
+ Raissac-d'Aude ,RAISSAC D AUDE ,11200,11307,91,43.233333,2.883333,2.11
+ Raissac-sur-Lampy ,RAISSAC SUR LAMPY ,11170,11308,91,43.283333,2.166667,1.14
+ Rennes-le-Château ,RENNES LE CHATEAU ,11190,11309,91,42.933333,2.266667,1.27
+ Rennes-les-Bains ,RENNES LES BAINS ,11190,11310,91,42.916667,2.316667,1.38
+ Ribaute ,RIBAUTE ,11220,11311,91,43.1,2.633333,1.17
+ Ribouisse ,RIBOUISSE ,11270,11312,91,43.183333,1.916667,1.52
+ Ricaud ,RICAUD ,11400,11313,91,43.35,1.9,1.6
+ Rieux-en-Val ,RIEUX EN VAL ,11220,11314,91,43.083333,2.533333,0.8
+ Rieux-Minervois ,RIEUX MINERVOIS ,11160,11315,91,43.283333,2.583333,1.41
+ Rivel ,RIVEL ,11230,11316,91,42.95,1.983333,1.27
+ Rodome ,RODOME ,11140,11317,91,42.8,2.066667,2.18
+ Roquecourbe-Minervois ,ROQUECOURBE MINERVOIS ,11700,11318,91,43.216667,2.65,1.23
+ Roquefère ,ROQUEFERE ,11380,11319,91,43.383333,2.383333,1.83
+ Roquefeuil ,ROQUEFEUIL ,11340,11320,91,42.816667,2,2.07
+ Roquefort-de-Sault ,ROQUEFORT DE SAULT ,11140,11321,91,42.75,2.2,2.53
+ Roquefort-des-Corbières ,ROQUEFORT DES CORBIERES ,11540,11322,91,43,2.95,2.36
+ Roquetaillade ,ROQUETAILLADE ,11300,11323,91,43,2.2,0.94
+ Roubia ,ROUBIA ,11200,11324,91,43.25,2.8,1.8
+ Rouffiac-d'Aude ,ROUFFIAC D AUDE ,11250,11325,91,43.116667,2.3,0.68
+ Rouffiac-des-Corbières ,ROUFFIAC DES CORBIERES ,11350,11326,91,42.883333,2.55,1.61
+ Roullens ,ROULLENS ,11290,11327,91,43.166667,2.283333,1.17
+ Rouvenac ,ROUVENAC ,11260,11329,91,42.933333,2.15,1.27
+ Rustiques ,RUSTIQUES ,11800,11330,91,43.216667,2.483333,0.68
+ Saint-André-de-Roquelongue ,SAINT ANDRE DE ROQUELONGUE,11200,11332,91,43.116667,2.833333,1.92
+ Saint-Benoît ,SAINT BENOIT ,11230,11333,91,43.016667,2.066667,1.17
+ Sainte-Camelle ,SAINTE CAMELLE ,11410,11334,91,43.266667,1.8,1.96
+ Sainte-Colombe-sur-Guette ,SAINTE COLOMBE SUR GUETTE,11140,11335,91,42.75,2.233333,2.53
+ Sainte-Colombe-sur-l'Hers ,SAINTE COLOMBE SUR L,11230,11336,91,42.95,1.966667,1.33
+ Saint-Couat-d'Aude ,SAINT COUAT D AUDE,11700,11337,91,43.2,2.633333,1.17
+ Saint-Couat-du-Razès ,SAINT COUAT DU RAZES,11300,11338,91,43,2.116667,1.2
+ Saint-Denis ,SAINT DENIS ,11310,11339,91,43.366667,2.216667,1.71
+ Sainte-Eulalie ,SAINTE EULALIE ,11170,11340,91,43.25,2.216667,0.91
+ Saint-Ferriol ,SAINT FERRIOL ,11500,11341,91,42.9,2.216667,1.5
+ Saint-Frichoux ,SAINT FRICHOUX ,11800,11342,91,43.25,2.55,1.59
+ Saint-Gaudéric ,SAINT GAUDERIC ,11270,11343,91,43.116667,1.95,1.39
+ Saint-Hilaire ,SAINT HILAIRE ,11250,11344,91,43.1,2.316667,0.3
+ Saint-Jean-de-Barrou ,SAINT JEAN DE BARROU,11360,11345,91,42.95,2.833333,1.92
+ Saint-Jean-de-Paracol ,SAINT JEAN DE PARACOL,11260,11346,91,42.933333,2.116667,1.73
+ Saint-Julia-de-Bec ,SAINT JULIA DE BEC,11500,11347,91,42.866667,2.25,1.72
+ Saint-Julien-de-Briola ,SAINT JULIEN DE BRIOLA,11270,11348,91,43.15,1.933333,1.45
+ Saint-Just-de-Bélengard ,SAINT JUST DE BELENGARD,11240,11349,91,43.083333,2.016667,1.14
+ Saint-Just-et-le-Bézu ,SAINT JUST ET LE,11500,11350,91,42.883333,2.266667,1.61
+ Saint-Louis-et-Parahou ,SAINT LOUIS ET PARAHOU,11500,11352,91,42.85,2.316667,2.06
+ Saint-Martin-des-Puits ,SAINT MARTIN DES PUITS,11220,11354,91,43.033333,2.566667,0.92
+ Saint-Martin-de-Villereglan ,SAINT MARTIN DE VILLEREGLAN,11300,11355,91,43.1,2.216667,1.05
+ Saint-Martin-Lalande ,SAINT MARTIN LALANDE ,11400,11356,91,43.3,2.016667,1.25
+ Saint-Martin-le-Vieil ,SAINT MARTIN LE VIEIL,11170,11357,91,43.283333,2.15,1.14
+ Saint-Martin-Lys ,SAINT MARTIN LYS ,11500,11358,91,42.833333,2.233333,1.95
+ Saint-Michel-de-Lanès ,SAINT MICHEL DE LANES,11410,11359,91,43.333333,1.766667,2.08
+ Saint-Nazaire-d'Aude ,SAINT NAZAIRE D AUDE,11120,11360,91,43.233333,2.9,2.17
+ Saint-Papoul ,SAINT PAPOUL ,11400,11361,91,43.333333,2.033333,1.48
+ Saint-Paulet ,SAINT PAULET ,11320,11362,91,43.416667,1.883333,2.06
+ Saint-Pierre-des-Champs ,SAINT PIERRE DES CHAMPS,11220,11363,91,43.05,2.6,1.05
+ Saint-Polycarpe ,SAINT POLYCARPE ,11300,11364,91,43.033333,2.3,2.06
+ Saint-Sernin ,SAINT SERNIN ,11420,11365,91,43.233333,1.8,1.96
+ Sainte-Valière ,SAINTE VALIERE ,11120,11366,91,43.283333,2.85,1.98
+ Saissac ,SAISSAC ,11310,11367,91,43.366667,2.166667,1.71
+ Sallèles-Cabardès ,SALLELES CABARDES ,11600,11368,91,43.316667,2.433333,1.37
+ Sallèles-d'Aude ,SALLELES D AUDE ,11590,11369,91,43.266667,2.95,2.36
+ Salles-d'Aude ,SALLES D AUDE ,11110,11370,91,43.233333,3.116667,2.98
+ Salles-sur-l'Hers ,SALLES SUR L HERS,11410,11371,91,43.3,1.783333,2.02
+ Salsigne ,SALSIGNE ,11600,11372,91,43.333333,2.366667,1.48
+ Salvezines ,SALVEZINES ,11140,11373,91,42.783333,2.316667,2.3
+ Salza ,SALZA ,11330,11374,91,42.983333,2.5,1.03
+ Seignalens ,SEIGNALENS ,11240,11375,91,43.1,1.95,1.94
+ La Serpent ,LA SERPENT ,11190,11376,91,42.966667,2.183333,1.79
+ Serres ,SERRES ,11190,11377,91,42.95,2.316667,1.15
+ Serviès-en-Val ,SERVIES EN VAL ,11220,11378,91,43.083333,2.516667,0.73
+ Sigean ,SIGEAN ,11130,11379,91,43.033333,2.983333,2.48
+ Sonnac-sur-l'Hers ,SONNAC SUR L HERS,11230,11380,91,43,1.983333,1.27
+ Sougraigne ,SOUGRAIGNE ,11190,11381,91,42.9,2.35,1.5
+ Souilhanels ,SOUILHANELS ,11400,11382,91,43.35,1.916667,1.6
+ Souilhe ,SOUILHE ,11400,11383,91,43.366667,1.916667,1.71
+ Soulatgé ,SOULATGE ,11350,11384,91,42.883333,2.5,1.63
+ Soupex ,SOUPEX ,11320,11385,91,43.383333,1.9,1.83
+ Talairan ,TALAIRAN ,11220,11386,91,43.05,2.666667,1.48
+ Taurize ,TAURIZE ,11220,11387,91,43.066667,2.5,0.84
+ Termes ,TERMES ,11330,11388,91,43,2.566667,0.92
+ La Tourette-Cabardès ,LA TOURETTE CABARDES ,11380,11391,91,43.383333,2.35,1.83
+ Tournissan ,TOURNISSAN ,11220,11392,91,43.083333,2.666667,1.42
+ Tourouzelle ,TOUROUZELLE ,11200,11393,91,43.25,2.733333,1.55
+ Tourreilles ,TOURREILLES ,11300,11394,91,43.016667,2.166667,0.69
+ Trassanel ,TRASSANEL ,11160,11395,91,43.35,2.433333,1.6
+ Trausse ,TRAUSSE ,11160,11396,91,43.316667,2.566667,1.37
+ Trèbes ,TREBES ,11800,11397,91,43.216667,2.433333,0.98
+ Treilles ,TREILLES ,11510,11398,91,42.916667,2.95,2.36
+ Tréville ,TREVILLE ,11400,11399,91,43.383333,1.95,1.83
+ Tréziers ,TREZIERS ,11230,11400,91,43.05,1.95,1.39
+ Tuchan ,TUCHAN ,11350,11401,91,42.883333,2.716667,1.61
+ Valmigère ,VALMIGERE ,11580,11402,91,42.983333,2.366667,0.92
+ Ventenac-Cabardès ,VENTENAC CABARDES ,11610,11404,91,43.266667,2.283333,1.03
+ Véraza ,VERAZA ,11580,11406,91,42.983333,2.3,1.06
+ Verdun-en-Lauragais ,VERDUN EN LAURAGAIS ,11400,11407,91,43.366667,2.066667,1.71
+ Verzeille ,VERZEILLE ,11250,11408,91,43.116667,2.333333,0.28
+ Vignevieille ,VIGNEVIEILLE ,11330,11409,91,43,2.533333,0.81
+ Villalier ,VILLALIER ,11600,11410,91,43.25,2.416667,1.23
+ Villanière ,VILLANIERE ,11600,11411,91,43.35,2.383333,1.6
+ Villardebelle ,VILLARDEBELLE ,11580,11412,91,43.016667,2.4,1.26
+ Villardonnel ,VILLARDONNEL ,11600,11413,91,43.333333,2.316667,1.48
+ Villar-en-Val ,VILLAR EN VAL ,11220,11414,91,43.083333,2.466667,1.27
+ Villar-Saint-Anselme ,VILLAR SAINT ANSELME ,11250,11415,91,43.066667,2.316667,0.75
+ Villarzel-Cabardès ,VILLARZEL CABARDES ,11600,11416,91,43.283333,2.466667,1.53
+ Villarzel-du-Razès ,VILLARZEL DU RAZES ,11300,11417,91,43.133333,2.216667,1.48
+ Villasavary ,VILLASAVARY ,11150,11418,91,43.216667,2.033333,1.29
+ Villautou ,VILLAUTOU ,11420,11419,91,43.15,1.833333,1.83
+ Villebazy ,VILLEBAZY ,11250,11420,91,43.066667,2.333333,0.69
+ Villedaigne ,VILLEDAIGNE ,11200,11421,91,43.216667,2.866667,2.05
+ Villedubert ,VILLEDUBERT ,11800,11422,91,43.233333,2.416667,1.39
+ Villefloure ,VILLEFLOURE ,11570,11423,91,43.116667,2.383333,0.69
+ Villegailhenc ,VILLEGAILHENC ,11600,11425,91,43.266667,2.366667,1.03
+ Villegly ,VILLEGLY ,11600,11426,91,43.283333,2.45,1.26
+ Villelongue-d'Aude ,VILLELONGUE D AUDE ,11300,11427,91,43.05,2.083333,1.4
+ Villemagne ,VILLEMAGNE ,11310,11428,91,43.35,2.133333,1.6
+ Villemoustaussou ,VILLEMOUSTAUSSOU ,11620,11429,91,43.25,2.366667,0.91
+ Villeneuve-la-Comptal ,VILLENEUVE LA COMPTAL ,11400,11430,91,43.283333,1.933333,1.45
+ Villeneuve-les-Corbières ,VILLENEUVE LES CORBIERES ,11360,11431,91,42.966667,2.766667,1.67
+ Villeneuve-lès-Montréal ,VILLENEUVE LES MONTREAL ,11290,11432,91,43.183333,2.1,1.84
+ Villeneuve-Minervois ,VILLENEUVE MINERVOIS ,11160,11433,91,43.316667,2.466667,1.37
+ Villepinte ,VILLEPINTE ,11150,11434,91,43.283333,2.1,1.14
+ Villerouge-Termenès ,VILLEROUGE TERMENES ,11330,11435,91,43,2.633333,1.24
+ Villesèque-des-Corbières ,VILLESEQUE DES CORBIERES ,11360,11436,91,43.016667,2.85,1.98
+ Villesequelande ,VILLESEQUELANDE ,11170,11437,91,43.233333,2.233333,1.08
+ Villesiscle ,VILLESISCLE ,11150,11438,91,43.233333,2.116667,0.9
+ Villespy ,VILLESPY ,11170,11439,91,43.316667,2.083333,1.88
+ Villetritouls ,VILLETRITOULS ,11220,11440,91,43.066667,2.483333,1.06
+ Vinassan ,VINASSAN ,11110,11441,91,43.2,3.066667,2.8
+ Narbonne-Plage ,NARBONNE PLAGE ,11100,11910,91,43.191667,3.008333,-1
+ Agen-d'Aveyron ,AGEN D AVEYRON ,12630,12001,73,44.366667,2.683333,1
+ Aguessac ,AGUESSAC ,12520,12002,73,44.15,3.1,1.65
+ Les Albres ,LES ALBRES ,12220,12003,73,44.55,2.166667,1.57
+ Alpuech ,ALPUECH ,12210,12005,73,44.75,2.85,2.03
+ Alrance ,ALRANCE ,12430,12006,73,44.133333,2.683333,1.12
+ Ambeyrac ,AMBEYRAC ,12260,12007,73,44.516667,1.95,2.32
+ Anglars-Saint-Félix ,ANGLARS SAINT FELIX ,12390,12008,73,44.416667,2.216667,1.72
+ Arnac-sur-Dourdou ,ARNAC SUR DOURDOU ,12360,12009,73,43.733333,2.933333,2.55
+ Arques ,ARQUES ,12290,12010,73,44.316667,2.8,0.99
+ Arvieu ,ARVIEU ,12120,12011,73,44.183333,2.666667,1.96
+ Aubin ,AUBIN ,12110,12013,73,44.533333,2.25,1.28
+ Aurelle-Verlac ,AURELLE VERLAC ,12130,12014,73,44.533333,2.983333,1.78
+ Auriac-Lagast ,AURIAC LAGAST ,12120,12015,73,44.15,2.583333,0.83
+ Auzits ,AUZITS ,12390,12016,73,44.5,2.333333,0.99
+ Balaguier-d'Olt ,BALAGUIER D OLT ,12260,12018,73,44.533333,1.983333,2.2
+ Balaguier-sur-Rance ,BALAGUIER SUR RANCE ,12380,12019,73,43.9,2.583333,1.8
+ Balsac ,BALSAC ,12510,12020,73,44.4,2.45,1.33
+ La Bastide-l'Évêque ,LA BASTIDE L EVEQUE,12200,12021,73,44.333333,2.15,1.79
+ La Bastide-Pradines ,LA BASTIDE PRADINES ,12490,12022,73,44,3.05,1.83
+ La Bastide-Solages ,LA BASTIDE SOLAGES ,12550,12023,73,43.95,2.516667,1.65
+ Belmont-sur-Rance ,BELMONT SUR RANCE ,12370,12025,73,43.816667,2.766667,2.18
+ Bertholène ,BERTHOLENE ,12310,12026,73,44.383333,2.783333,1.64
+ Bessuéjouls ,BESSUEJOULS ,12500,12027,73,44.533333,2.7,1.66
+ Boisse-Penchot ,BOISSE PENCHOT ,12300,12028,73,44.583333,2.216667,1.4
+ Bor-et-Bar ,BOR ET BAR ,12270,12029,73,44.2,2.083333,1.86
+ Boussac ,BOUSSAC ,12160,12032,73,44.283333,2.366667,1.12
+ Bozouls ,BOZOULS ,12340,12033,73,44.466667,2.716667,0.75
+ Brandonnet ,BRANDONNET ,12350,12034,73,44.383333,2.133333,1.68
+ Brasc ,BRASC ,12550,12035,73,43.983333,2.566667,1.43
+ Brommat ,BROMMAT ,12600,12036,73,44.833333,2.683333,2.41
+ Broquiès ,BROQUIES ,12480,12037,73,44,2.7,1.35
+ Brousse-le-Château ,BROUSSE LE CHATEAU ,12480,12038,73,44,2.616667,1.41
+ Brusque ,BRUSQUE ,12360,12039,73,43.766667,2.95,2.4
+ Buzeins ,BUZEINS ,12150,12040,73,44.366667,2.966667,1.31
+ Cabanès ,CABANES ,12800,12041,73,44.183333,2.3,1.11
+ Calmels-et-le-Viala ,CALMELS ET LE VIALA,12400,12042,73,43.95,2.75,1.58
+ Camarès ,CAMARES ,12360,12044,73,43.816667,2.883333,2.18
+ Camboulazet ,CAMBOULAZET ,12160,12045,73,44.233333,2.45,1
+ Camjac ,CAMJAC ,12800,12046,73,44.183333,2.383333,0.82
+ Campouriez ,CAMPOURIEZ ,12140,12048,73,44.683333,2.616667,1.73
+ Campuac ,CAMPUAC ,12580,12049,73,44.583333,2.6,1.28
+ Canet-de-Salars ,CANET DE SALARS ,12290,12050,73,44.233333,2.766667,0.88
+ Cantoin ,CANTOIN ,12420,12051,73,44.833333,2.816667,2.41
+ Capdenac-Gare ,CAPDENAC GARE ,12700,12052,73,44.566667,2.083333,1.86
+ La Capelle-Balaguier ,LA CAPELLE BALAGUIER ,12260,12053,73,44.433333,1.933333,2.37
+ La Capelle-Bleys ,LA CAPELLE BLEYS ,12240,12054,73,44.316667,2.183333,1.51
+ La Capelle-Bonance ,LA CAPELLE BONANCE ,12130,12055,73,44.433333,3.016667,1.36
+ Cassagnes-Bégonhès ,CASSAGNES BEGONHES ,12120,12057,73,44.166667,2.533333,0.6
+ Cassuéjouls ,CASSUEJOULS ,12210,12058,73,44.716667,2.833333,1.88
+ Castelmary ,CASTELMARY ,12800,12060,73,44.183333,2.25,1.34
+ Castelnau-de-Mandailles ,CASTELNAU DE MANDAILLES ,12500,12061,73,44.533333,2.883333,1.22
+ Castelnau-Pégayrols ,CASTELNAU PEGAYROLS ,12620,12062,73,44.133333,2.933333,1.5
+ La Cavalerie ,LA CAVALERIE ,12230,12063,73,44,3.166667,1.88
+ Le Cayrol ,LE CAYROL ,12500,12064,73,44.6,2.8,1.36
+ Centrès ,CENTRES ,12120,12065,73,44.166667,2.416667,1.66
+ Clairvaux-d'Aveyron ,CLAIRVAUX D AVEYRON ,12330,12066,73,44.416667,2.416667,1.21
+ Le Clapier ,LE CLAPIER ,12540,12067,73,43.833333,3.183333,2.1
+ Colombiès ,COLOMBIES ,12240,12068,73,44.35,2.35,1.81
+ Combret ,COMBRET ,12370,12069,73,44.516667,2.433333,2.47
+ Compeyre ,COMPEYRE ,12520,12070,73,44.166667,3.1,1.65
+ Compolibat ,COMPOLIBAT ,12350,12071,73,44.366667,2.2,1.45
+ Comprégnac ,COMPREGNAC ,12100,12072,73,44.083333,2.966667,1.26
+ Comps-la-Grand-Ville ,COMPS LA GRAND VILLE,12120,12073,73,44.233333,2.566667,0.99
+ Condom-d'Aubrac ,CONDOM D AUBRAC ,12470,12074,73,44.616667,2.866667,1.43
+ Connac ,CONNAC ,12170,12075,73,44.016667,2.6,1.28
+ Conques ,CONQUES ,12320,12076,73,44.6,2.4,1.36
+ Cornus ,CORNUS ,12540,12077,73,43.9,3.166667,1.88
+ Les Costes-Gozon ,LES COSTES GOZON ,12400,12078,73,44.016667,2.8,1.28
+ Coubisou ,COUBISOU ,12190,12079,73,44.55,2.733333,1.13
+ Coupiac ,COUPIAC ,12550,12080,73,43.95,2.583333,1.58
+ Coussergues ,COUSSERGUES ,12310,12081,73,44.416667,2.883333,0.9
+ La Couvertoirade ,LA COUVERTOIRADE ,12230,12082,73,43.916667,3.316667,2.4
+ Cransac ,CRANSAC ,12110,12083,73,44.516667,2.283333,1.17
+ Creissels ,CREISSELS ,12100,12084,73,44.083333,3.05,1.48
+ Crespin ,CRESPIN ,12800,12085,73,44.05,2.3,2.07
+ La Cresse ,LA CRESSE ,12640,12086,73,44.183333,3.133333,1.77
+ Cruéjouls ,CRUEJOULS ,12340,12087,73,44.45,2.85,1.31
+ Curières ,CURIERES ,12210,12088,73,44.65,2.866667,1.58
+ Decazeville ,DECAZEVILLE ,12300,12089,73,44.55,2.25,1.28
+ Druelle ,DRUELLE ,12510,12090,73,44.35,2.5,0.42
+ Drulhe ,DRULHE ,12350,12091,73,44.466667,2.116667,1.74
+ Durenque ,DURENQUE ,12170,12092,73,44.1,2.616667,1.41
+ Enguialès ,ENGUIALES ,12140,12093,73,44.65,2.533333,1.58
+ Entraygues-sur-Truyère ,ENTRAYGUES SUR TRUYERE ,12140,12094,73,44.65,2.566667,1.58
+ Escandolières ,ESCANDOLIERES ,12390,12095,73,44.483333,2.35,0.94
+ Espalion ,ESPALION ,12500,12096,73,44.516667,2.766667,0.98
+ Espeyrac ,ESPEYRAC ,12140,12097,73,44.616667,2.516667,1.43
+ Fayet ,FAYET ,12360,12099,73,43.8,2.95,2.25
+ Firmi ,FIRMI ,12300,12100,73,44.533333,2.316667,1.48
+ Flagnac ,FLAGNAC ,12300,12101,73,44.616667,2.25,1.43
+ Flavin ,FLAVIN ,12450,12102,73,44.283333,2.6,1
+ Florentin-la-Capelle ,FLORENTIN LA CAPELLE ,12140,12103,73,44.633333,2.633333,1.51
+ Foissac ,FOISSAC ,12260,12104,73,44.516667,2,2.14
+ La Fouillade ,LA FOUILLADE ,12270,12105,73,44.233333,2.05,1.97
+ Gabriac ,GABRIAC ,12340,12106,73,44.45,2.8,0.69
+ Gaillac-d'Aveyron ,GAILLAC D AVEYRON ,12310,12107,73,44.35,2.933333,1.66
+ Galgan ,GALGAN ,12220,12108,73,44.516667,2.183333,1.51
+ Gissac ,GISSAC ,12360,12109,73,43.85,2.933333,2.03
+ Golinhac ,GOLINHAC ,12140,12110,73,44.616667,2.583333,1.43
+ Goutrens ,GOUTRENS ,12390,12111,73,44.433333,2.383333,0.91
+ Graissac ,GRAISSAC ,12420,12112,73,44.766667,2.783333,2.11
+ Gramond ,GRAMOND ,12160,12113,73,44.266667,2.366667,1.12
+ Grand-Vabre ,GRAND VABRE ,12320,12114,73,44.633333,2.366667,1.52
+ L'Hospitalet-du-Larzac ,L HOSPITALET DU LARZAC,12230,12115,73,43.966667,3.183333,1.94
+ Huparlac ,HUPARLAC ,12460,12116,73,44.7,2.783333,1.81
+ Lacalm ,LACALM ,12210,12117,73,44.766667,2.883333,2.11
+ Lacroix-Barrez ,LACROIX BARREZ ,12600,12118,73,44.783333,2.633333,2.18
+ Laguiole ,LAGUIOLE ,12210,12119,73,44.683333,2.85,1.73
+ Laissac ,LAISSAC ,12310,12120,73,44.383333,2.833333,0.73
+ Lapanouse-de-Cernon ,LAPANOUSE DE CERNON ,12230,12122,73,44,3.1,1.65
+ Lapanouse ,LAPANOUSE ,12150,12123,73,44.333333,3.033333,1.42
+ Lassouts ,LASSOUTS ,12500,12124,73,44.5,2.866667,1.09
+ Laval-Roquecézière ,LAVAL ROQUECEZIERE ,12380,12125,73,43.8,2.633333,2.25
+ Lavernhe ,LAVERNHE ,12150,12126,73,44.316667,3,1.31
+ Lédergues ,LEDERGUES ,12170,12127,73,44.083333,2.45,1.49
+ Lescure-Jaoul ,LESCURE JAOUL ,12440,12128,73,44.233333,2.15,1.63
+ Lestrade-et-Thouels ,LESTRADE ET THOUELS ,12430,12129,73,44.066667,2.65,1.17
+ Livinhac-le-Haut ,LIVINHAC LE HAUT ,12300,12130,73,44.583333,2.233333,1.34
+ La Loubière ,LA LOUBIERE ,12740,12131,73,44.366667,2.666667,1
+ Luc ,LUC ,12450,12133,73,44.316667,2.533333,1
+ Lunac ,LUNAC ,12270,12135,73,44.233333,2.116667,1.74
+ Maleville ,MALEVILLE ,12350,12136,73,44.4,2.116667,1.74
+ Manhac ,MANHAC ,12160,12137,73,44.25,2.466667,1.01
+ Marcillac-Vallon ,MARCILLAC VALLON ,12330,12138,73,44.466667,2.466667,0.75
+ Marnhagues-et-Latour ,MARNHAGUES ET LATOUR ,12540,12139,73,43.883333,3.05,1.88
+ Martiel ,MARTIEL ,12200,12140,73,44.366667,1.916667,2.43
+ Martrin ,MARTRIN ,12550,12141,73,43.933333,2.616667,1.65
+ Mayran ,MAYRAN ,12390,12142,73,44.383333,2.366667,1.08
+ Mélagues ,MELAGUES ,12360,12143,73,43.733333,3.016667,2.55
+ Meljac ,MELJAC ,12120,12144,73,44.133333,2.433333,1.53
+ Millau ,MILLAU ,12100,12145,73,44.1,3.083333,1.59
+ Le Monastère ,LE MONASTERE ,12000,12146,73,44.35,2.583333,1
+ Montagnol ,MONTAGNOL ,12360,12147,73,43.833333,3.016667,2.1
+ Montbazens ,MONTBAZENS ,12220,12148,73,44.483333,2.233333,1.34
+ Montclar ,MONTCLAR ,12550,12149,73,43.966667,2.65,1.5
+ Montézic ,MONTEZIC ,12460,12151,73,44.7,2.65,1.81
+ Montfranc ,MONTFRANC ,12380,12152,73,43.85,2.566667,2.03
+ Montjaux ,MONTJAUX ,12490,12153,73,44.1,2.9,1.02
+ Fondamente ,FONDAMENTE ,12540,12155,73,43.883333,3.116667,1.88
+ Montpeyroux ,MONTPEYROUX ,12210,12156,73,44.633333,2.816667,1.51
+ Montrozier ,MONTROZIER ,12630,12157,73,44.4,2.75,1
+ Montsalès ,MONTSALES ,12260,12158,73,44.5,1.983333,2.2
+ Morlhon-le-Haut ,MORLHON LE HAUT ,12200,12159,73,44.333333,2.05,1.97
+ Mostuéjouls ,MOSTUEJOULS ,12720,12160,73,44.2,3.183333,1.94
+ Mouret ,MOURET ,12330,12161,73,44.516667,2.516667,1.02
+ Moyrazès ,MOYRAZES ,12160,12162,73,44.333333,2.433333,1.18
+ Murasson ,MURASSON ,12370,12163,73,43.766667,2.766667,2.4
+ Mur-de-Barrez ,MUR DE BARREZ ,12600,12164,73,44.85,2.65,2.48
+ Muret-le-Château ,MURET LE CHATEAU ,12330,12165,73,44.5,2.583333,1.86
+ Murols ,MUROLS ,12600,12166,73,44.75,2.583333,2.03
+ Najac ,NAJAC ,12270,12167,73,44.216667,1.983333,2.2
+ Nant ,NANT ,12230,12168,73,44.016667,3.3,2.34
+ Naucelle ,NAUCELLE ,12800,12169,73,44.2,2.35,0.94
+ Naussac ,NAUSSAC ,12700,12170,73,44.516667,2.083333,1.86
+ Nauviale ,NAUVIALE ,12330,12171,73,44.516667,2.416667,1.07
+ Le Nayrac ,LE NAYRAC ,12190,12172,73,44.616667,2.666667,1.43
+ Olemps ,OLEMPS ,12510,12174,73,44.35,2.566667,1.3
+ Onet-le-Château ,ONET LE CHATEAU ,12850,12176,73,44.383333,2.533333,1
+ Palmas ,PALMAS ,12310,12177,73,44.4,2.833333,0.73
+ Paulhe ,PAULHE ,12520,12178,73,44.15,3.1,1.65
+ Peux-et-Couffouleux ,PEUX ET COUFFOULEUX ,12360,12179,73,43.766667,2.866667,2.4
+ Peyreleau ,PEYRELEAU ,12720,12180,73,44.183333,3.216667,2.05
+ Peyrusse-le-Roc ,PEYRUSSE LE ROC ,12220,12181,73,44.5,2.133333,1.68
+ Pierrefiche ,PIERREFICHE ,12130,12182,73,44.45,2.95,1.13
+ Pomayrols ,POMAYROLS ,12130,12184,73,44.466667,3.016667,1.36
+ Pont-de-Salars ,PONT DE SALARS ,12290,12185,73,44.283333,2.733333,0.48
+ Pousthomy ,POUSTHOMY ,12380,12186,73,43.85,2.616667,2.03
+ Prades-d'Aubrac ,PRADES D AUBRAC ,12470,12187,73,44.533333,2.95,1.15
+ Prades-Salars ,PRADES SALARS ,12290,12188,73,44.266667,2.783333,0.56
+ Pradinas ,PRADINAS ,12240,12189,73,44.233333,2.266667,1.22
+ Prévinquières ,PREVINQUIERES ,12350,12190,73,44.366667,2.233333,1.46
+ Privezac ,PRIVEZAC ,12350,12191,73,44.416667,2.183333,1.51
+ Mounes-Prohencoux ,MOUNES PROHENCOUX ,12370,12192,73,43.8,2.783333,2.25
+ Pruines ,PRUINES ,12320,12193,73,44.533333,2.5,1.06
+ Quins ,QUINS ,12800,12194,73,44.233333,2.366667,1.02
+ Rebourguil ,REBOURGUIL ,12400,12195,73,43.883333,2.766667,1.88
+ Recoules-Prévinquières ,RECOULES PREVINQUIERES ,12150,12196,73,44.333333,2.966667,1.19
+ Réquista ,REQUISTA ,12170,12197,73,44.033333,2.533333,1.2
+ Rieupeyroux ,RIEUPEYROUX ,12240,12198,73,44.3,2.233333,1.34
+ Rignac ,RIGNAC ,12390,12199,73,44.416667,2.3,1.11
+ Rivière-sur-Tarn ,RIVIERE SUR TARN ,12640,12200,73,44.183333,3.133333,1.77
+ Rodelle ,RODELLE ,12340,12201,73,44.483333,2.616667,1.63
+ Rodez ,RODEZ ,12000,12202,73,44.333333,2.566667,1
+ Roquefort-sur-Soulzon ,ROQUEFORT SUR SOULZON ,12250,12203,73,43.983333,2.983333,1.43
+ La Roque-Sainte-Marguerite ,LA ROQUE SAINTE MARGUERITE,12100,12204,73,44.116667,3.216667,2.15
+ La Rouquette ,LA ROUQUETTE ,12200,12205,73,44.3,1.966667,2.26
+ Roussennac ,ROUSSENNAC ,12220,12206,73,44.45,2.25,1.46
+ Rullac-Saint-Cirq ,RULLAC SAINT CIRQ ,12120,12207,73,44.133333,2.5,0.75
+ Saint-Amans-des-Cots ,SAINT AMANS DES COTS,12460,12209,73,44.683333,2.65,1.73
+ Saint-André-de-Najac ,SAINT ANDRE DE NAJAC,12270,12210,73,44.183333,2.05,1.97
+ Saint-André-de-Vézines ,SAINT ANDRE DE VEZINES,12720,12211,73,44.15,3.266667,2.23
+ Saint-Beaulize ,SAINT BEAULIZE ,12540,12212,73,43.9,3.1,1.8
+ Saint-Beauzély ,SAINT BEAUZELY ,12620,12213,73,44.166667,2.95,1.13
+ Saint-Chély-d'Aubrac ,SAINT CHELY D AUBRAC,12470,12214,73,44.583333,2.916667,1.28
+ Saint-Christophe-Vallon ,SAINT CHRISTOPHE VALLON ,12330,12215,73,44.483333,2.4,1.1
+ Saint-Côme-d'Olt ,SAINT COME D OLT,12500,12216,73,44.516667,2.816667,0.98
+ Saint-Cyprien-sur-Dourdou ,SAINT CYPRIEN SUR DOURDOU,12320,12218,73,44.55,2.416667,1.13
+ Sainte-Eulalie-d'Olt ,SAINTE EULALIE D OLT,12130,12219,73,44.466667,2.933333,1.16
+ Sainte-Eulalie-de-Cernon ,SAINTE EULALIE DE CERNON,12230,12220,73,43.983333,3.133333,1.77
+ Saint-Félix-de-Lunel ,SAINT FELIX DE LUNEL,12320,12221,73,44.566667,2.533333,1.3
+ Saint-Félix-de-Sorgues ,SAINT FELIX DE SORGUES,12400,12222,73,43.883333,2.983333,1.88
+ Sainte-Geneviève-sur-Argence ,SAINTE GENEVIEVE SUR ARGENCE,12420,12223,73,44.8,2.75,2.26
+ Saint-Geniez-d'Olt ,SAINT GENIEZ D OLT,12130,12224,73,44.466667,2.983333,1.25
+ Saint-Georges-de-Luzençon ,SAINT GEORGES DE LUZENCON,12100,12225,73,44.066667,2.983333,1.25
+ Saint-Hippolyte ,SAINT HIPPOLYTE ,12140,12226,73,44.708333,2.591667,-1
+ Saint-Igest ,SAINT IGEST ,12260,12227,73,44.433333,2.083333,1.86
+ Saint-Izaire ,SAINT IZAIRE ,12480,12228,73,43.966667,2.716667,1.5
+ Saint-Jean-d'Alcapiès ,SAINT JEAN D ALCAPIES,12250,12229,73,43.95,2.983333,1.58
+ Saint-Jean-Delnous ,SAINT JEAN DELNOUS ,12170,12230,73,44.033333,2.5,1.2
+ Saint-Jean-du-Bruel ,SAINT JEAN DU BRUEL,12230,12231,73,44.016667,3.366667,2.57
+ Saint-Jean-et-Saint-Paul ,SAINT JEAN ET SAINT,12250,12232,73,43.933333,3,1.65
+ Sainte-Juliette-sur-Viaur ,SAINTE JULIETTE SUR VIAUR,12120,12234,73,44.216667,2.516667,0.65
+ Saint-Just-sur-Viaur ,SAINT JUST SUR VIAUR,12800,12235,73,44.133333,2.366667,0.88
+ Saint-Laurent-de-Lévézou ,SAINT LAURENT DE LEVEZOU,12620,12236,73,44.2,2.966667,1.5
+ Saint-Laurent-d'Olt ,SAINT LAURENT D OLT,12560,12237,73,44.45,3.116667,1.71
+ Saint-Léons ,SAINT LEONS ,12780,12238,73,44.216667,2.983333,1.25
+ Saint-Martin-de-Lenne ,SAINT MARTIN DE LENNE,12130,12239,73,44.433333,2.966667,1.19
+ Saint-Parthem ,SAINT PARTHEM ,12300,12240,73,44.633333,2.316667,1.51
+ Sainte-Radegonde ,SAINTE RADEGONDE ,12850,12241,73,44.333333,2.633333,1
+ Saint-Rémy ,SAINT REMY ,12200,12242,73,44.4,2.033333,2.03
+ Saint-Rome-de-Cernon ,SAINT ROME DE CERNON,12490,12243,73,44.016667,2.966667,1.28
+ Saint-Rome-de-Tarn ,SAINT ROME DE TARN,12490,12244,73,44.05,2.9,1.13
+ Saint-Salvadou ,SAINT SALVADOU ,12200,12245,73,44.283333,2.1,1.8
+ Saint-Saturnin-de-Lenne ,SAINT SATURNIN DE LENNE,12560,12247,73,44.416667,3.016667,1.36
+ Saint-Sernin-sur-Rance ,SAINT SERNIN SUR RANCE,12380,12248,73,43.883333,2.6,1.88
+ Saint-Sever-du-Moustier ,SAINT SEVER DU MOUSTIER,12370,12249,73,43.783333,2.7,2.33
+ Saint-Victor-et-Melvieu ,SAINT VICTOR ET MELVIEU,12400,12251,73,44.05,2.833333,1.13
+ Salles-Courbatiès ,SALLES COURBATIES ,12260,12252,73,44.466667,2.083333,1.86
+ Salles-Curan ,SALLES CURAN ,12410,12253,73,44.183333,2.8,1
+ Salles-la-Source ,SALLES LA SOURCE ,12330,12254,73,44.433333,2.516667,0.98
+ Salmiech ,SALMIECH ,12120,12255,73,44.183333,2.566667,0.53
+ Salvagnac-Cajarc ,SALVAGNAC CAJARC ,12260,12256,73,44.466667,1.85,2.66
+ La Salvetat-Peyralès ,LA SALVETAT PEYRALES ,12440,12258,73,44.216667,2.2,1.45
+ Sanvensa ,SANVENSA ,12200,12259,73,44.283333,2.05,1.97
+ Sauclières ,SAUCLIERES ,12230,12260,73,43.966667,3.366667,2.57
+ Saujac ,SAUJAC ,12260,12261,73,44.483333,1.9,2.49
+ Sauveterre-de-Rouergue ,SAUVETERRE DE ROUERGUE ,12800,12262,73,44.216667,2.316667,1.05
+ Savignac ,SAVIGNAC ,12200,12263,73,44.366667,1.966667,2.26
+ Sébazac-Concourès ,SEBAZAC CONCOURES ,12740,12264,73,44.416667,2.6,1
+ Sébrazac ,SEBRAZAC ,12190,12265,73,44.533333,2.666667,1.05
+ Ségur ,SEGUR ,12290,12266,73,44.3,2.833333,1.39
+ La Selve ,LA SELVE ,12170,12267,73,44.1,2.533333,0.9
+ Sénergues ,SENERGUES ,12320,12268,73,44.6,2.483333,1.36
+ Sévérac-le-Château ,SEVERAC LE CHATEAU ,12150,12270,73,44.316667,3.066667,1.56
+ Sévérac-l'Église ,SEVERAC L EGLISE ,12310,12271,73,44.366667,2.85,0.79
+ Sonnac ,SONNAC ,12700,12272,73,44.55,2.1,1.8
+ Soulages-Bonneval ,SOULAGES BONNEVAL ,12210,12273,73,44.666667,2.816667,1.66
+ Sylvanès ,SYLVANES ,12360,12274,73,43.833333,2.95,2.1
+ Tauriac-de-Camarès ,TAURIAC DE CAMARES ,12360,12275,73,43.783333,3.033333,2.33
+ Tauriac-de-Naucelle ,TAURIAC DE NAUCELLE ,12800,12276,73,44.15,2.3,1.11
+ Taussac ,TAUSSAC ,12600,12277,73,44.833333,2.65,2.41
+ Tayrac ,TAYRAC ,12440,12278,73,44.2,2.233333,1.34
+ La Terrisse ,LA TERRISSE ,12210,12279,73,44.75,2.816667,2.03
+ Thérondels ,THERONDELS ,12600,12280,73,44.883333,2.766667,2.63
+ Toulonjac ,TOULONJAC ,12200,12281,73,44.383333,2,2.14
+ Tournemire ,TOURNEMIRE ,12250,12282,73,43.95,3.016667,1.58
+ Trémouilles ,TREMOUILLES ,12290,12283,73,44.25,2.65,2.08
+ Le Truel ,LE TRUEL ,12430,12284,73,44.05,2.766667,1.46
+ Vabre-Tizac ,VABRE TIZAC ,12240,12285,73,44.266667,2.15,1.63
+ Vabres-l'Abbaye ,VABRES L ABBAYE ,12400,12286,73,43.933333,2.85,1.65
+ Vailhourles ,VAILHOURLES ,12200,12287,73,44.3,1.916667,2.43
+ Valady ,VALADY ,12330,12288,73,44.45,2.433333,0.68
+ Valzergues ,VALZERGUES ,12220,12289,73,44.5,2.216667,1.4
+ Vaureilles ,VAUREILLES ,12220,12290,73,44.45,2.2,1.45
+ Versols-et-Lapeyre ,VERSOLS ET LAPEYRE ,12400,12292,73,43.9,2.95,1.8
+ Veyreau ,VEYREAU ,12720,12293,73,44.183333,3.3,2.34
+ Vézins-de-Lévézou ,VEZINS DE LEVEZOU ,12780,12294,73,44.283333,2.95,1.13
+ Viala-du-Pas-de-Jaux ,VIALA DU PAS DE,12250,12295,73,43.95,3.05,1.59
+ Viala-du-Tarn ,VIALA DU TARN ,12490,12296,73,44.066667,2.883333,1.05
+ Le Vibal ,LE VIBAL ,12290,12297,73,44.316667,2.75,0.68
+ Villecomtal ,VILLECOMTAL ,12580,12298,73,44.533333,2.566667,1.05
+ Villefranche-de-Panat ,VILLEFRANCHE DE PANAT ,12430,12299,73,44.083333,2.716667,0.98
+ Villefranche-de-Rouergue ,VILLEFRANCHE DE ROUERGUE ,12200,12300,73,44.35,2.05,1.97
+ Villeneuve ,VILLENEUVE ,12260,12301,73,44.433333,2.033333,-1
+ Vimenet ,VIMENET ,12310,12303,73,44.4,2.916667,1.18
+ Vitrac-en-Viadène ,VITRAC EN VIADENE ,12420,12304,73,44.783333,2.833333,2.18
+ Viviez ,VIVIEZ ,12110,12305,73,44.55,2.216667,1.4
+ Vors ,VORS ,12160,12306,73,44.283333,2.45,0.59
+ Curan ,CURAN ,12410,12307,73,44.2,2.85,1
+ Aubrac ,AUBRAC ,12470,12900,73,44.616667,2.983333,1.43
+ Cenomes ,CENOMES ,12360,12902,73,43.8,3.016667,2.25
+ Gelle ,GELLE ,12700,12904,73,44.516667,2.033333,2.03
+ La Mothe ,LA MOTHE ,12800,12905,73,44.233333,2.416667,1.57
+ Melvieu ,MELVIEU ,12400,12908,73,44.05,2.8,1.13
+ Combes ,COMBES ,12110,12922,73,44.5268,2.246,-1
+ Boyne ,BOYNE ,12640,12929,73,44.2,3.166667,1.88
+ Pons ,PONS ,12140,12931,73,44.716667,2.533333,1.88
+ Le Gua ,LE GUA ,12110,12960,73,44.533333,2.266667,1.22
+ Aix-en-Provence ,AIX EN PROVENCE ,13100,13001,93,43.533333,5.433333,1.95
+ Allauch ,ALLAUCH ,13190,13002,93,43.333333,5.483333,1.22
+ Alleins ,ALLEINS ,13980,13003,93,43.7,5.166667,1.21
+ Arles ,ARLES ,13200,13004,93,43.666667,4.633333,2.57
+ Aubagne ,AUBAGNE ,13400,13005,93,43.283333,5.566667,1.55
+ Aureille ,AUREILLE ,13930,13006,93,43.7,4.95,1.26
+ Auriol ,AURIOL ,13390,13007,93,43.383333,5.633333,1.56
+ Aurons ,AURONS ,13121,13008,93,43.666667,5.15,0.99
+ La Barben ,LA BARBEN ,13330,13009,93,43.633333,5.183333,1
+ Barbentane ,BARBENTANE ,13570,13010,93,43.9,4.75,2.53
+ Les Baux-de-Provence ,LES BAUX DE PROVENCE,13520,13011,93,43.75,4.8,1.88
+ Beaurecueil ,BEAURECUEIL ,13100,13012,93,43.5,5.55,1.22
+ Belcodène ,BELCODENE ,13720,13013,93,43.416667,5.583333,1.36
+ Berre-l'Étang ,BERRE L ETANG ,13130,13014,93,43.466667,5.183333,0.33
+ Bouc-Bel-Air ,BOUC BEL AIR ,13320,13015,93,43.45,5.416667,0.67
+ La Bouilladisse ,LA BOUILLADISSE ,13720,13016,93,43.4,5.583333,1.36
+ Boulbon ,BOULBON ,13150,13017,93,43.866667,4.683333,2.36
+ Cabannes ,CABANNES ,13440,13018,93,43.866667,4.95,2.31
+ Cabriès ,CABRIES ,13480,13019,93,43.433333,5.383333,1
+ Cadolive ,CADOLIVE ,13950,13020,93,43.383333,5.55,1.22
+ Carry-le-Rouet ,CARRY LE ROUET ,13620,13021,93,43.333333,5.15,1.22
+ Cassis ,CASSIS ,13260,13022,93,43.216667,5.533333,1.99
+ Ceyreste ,CEYRESTE ,13600,13023,93,43.216667,5.633333,1.99
+ Charleval ,CHARLEVAL ,13350,13024,93,43.716667,5.25,1.32
+ Châteauneuf-le-Rouge ,CHATEAUNEUF LE ROUGE ,13790,13025,93,43.483333,5.566667,1.3
+ Châteauneuf-lès-Martigues ,CHATEAUNEUF LES MARTIGUES ,13220,13026,93,43.383333,5.166667,0.89
+ Châteaurenard ,CHATEAURENARD ,13160,13027,93,43.883333,4.85,2.42
+ La Ciotat ,LA CIOTAT ,13600,13028,93,43.166667,5.6,2.32
+ Cornillon-Confoux ,CORNILLON CONFOUX ,13250,13029,93,43.566667,5.066667,1
+ Cuges-les-Pins ,CUGES LES PINS ,13780,13030,93,43.283333,5.7,1.84
+ La Destrousse ,LA DESTROUSSE ,13112,13031,93,43.366667,5.6,1.43
+ Éguilles ,EGUILLES ,13510,13032,93,43.566667,5.366667,0.46
+ Ensuès-la-Redonne ,ENSUES LA REDONNE ,13820,13033,93,43.35,5.2,1.11
+ Eygalières ,EYGALIERES ,13810,13034,93,43.75,4.95,1.54
+ Eyguières ,EYGUIERES ,13430,13035,93,43.7,5.033333,1.21
+ Eyragues ,EYRAGUES ,13630,13036,93,43.833333,4.833333,2.09
+ La Fare-les-Oliviers ,LA FARE LES OLIVIERS,13580,13037,93,43.55,5.183333,0.3
+ Fontvieille ,FONTVIEILLE ,13990,13038,93,43.316667,5.483333,1.33
+ Fos-sur-Mer ,FOS SUR MER ,13270,13039,93,43.433333,4.95,1.26
+ Fuveau ,FUVEAU ,13710,13040,93,43.45,5.566667,1.29
+ Gardanne ,GARDANNE ,13120,13041,93,43.45,5.466667,1
+ Gémenos ,GEMENOS ,13420,13042,93,43.3,5.633333,1.56
+ Gignac-la-Nerthe ,GIGNAC LA NERTHE ,13180,13043,93,43.391667,5.233333,1
+ Grans ,GRANS ,13450,13044,93,43.6,5.066667,0.78
+ Graveson ,GRAVESON ,13690,13045,93,43.85,4.766667,2.2
+ Gréasque ,GREASQUE ,13850,13046,93,43.433333,5.55,1.22
+ Istres ,ISTRES ,13800,13047,93,43.516667,4.983333,1.12
+ Jouques ,JOUQUES ,13490,13048,93,43.633333,5.633333,1.56
+ Lamanon ,LAMANON ,13113,13049,93,43.7,5.083333,1.21
+ Lambesc ,LAMBESC ,13410,13050,93,43.65,5.266667,0.88
+ Lançon-Provence ,LANCON PROVENCE ,13680,13051,93,43.583333,5.133333,0.5
+ Maillane ,MAILLANE ,13910,13052,93,43.833333,4.783333,2.09
+ Mallemort ,MALLEMORT ,13370,13053,93,43.733333,5.183333,1.43
+ Marignane ,MARIGNANE ,13700,13054,93,43.416667,5.216667,0.67
+ Martigues ,MARTIGUES ,13500,13056,93,43.4,5.05,0.85
+ Meyrargues ,MEYRARGUES ,13650,13059,93,43.633333,5.533333,1.15
+ Meyreuil ,MEYREUIL ,13590,13060,93,43.483333,5.5,1.01
+ Mimet ,MIMET ,13105,13062,93,43.416667,5.5,1.01
+ Miramas ,MIRAMAS ,13140,13063,93,43.583333,5,1.05
+ Mollégès ,MOLLEGES ,13940,13064,93,43.8,4.95,1.87
+ Mouriès ,MOURIES ,13890,13065,93,43.683333,4.866667,1.61
+ Noves ,NOVES ,13550,13066,93,43.866667,4.9,2.31
+ Orgon ,ORGON ,13660,13067,93,43.783333,5.033333,1.76
+ Paradou ,PARADOU ,13520,13068,93,43.716667,4.783333,1.95
+ Pélissanne ,PELISSANNE ,13330,13069,93,43.633333,5.15,1
+ La Penne-sur-Huveaune ,LA PENNE SUR HUVEAUNE,13821,13070,93,43.283333,5.516667,1.55
+ Les-Pennes-Mirabeau ,LES PENNES MIRABEAU ,13170,13071,93,43.408333,5.316667,1.35
+ Peynier ,PEYNIER ,13790,13072,93,43.45,5.65,1.63
+ Peypin ,PEYPIN ,13124,13073,93,43.383333,5.583333,1.36
+ Peyrolles-en-Provence ,PEYROLLES EN PROVENCE ,13860,13074,93,43.65,5.583333,1.36
+ Plan-de-Cuques ,PLAN DE CUQUES ,13380,13075,93,43.35,5.466667,1.11
+ Plan-d'Orgon ,PLAN D ORGON ,13750,13076,93,43.8,5,1.87
+ Port-de-Bouc ,PORT DE BOUC ,13110,13077,93,43.4,4.983333,1.12
+ Port-Saint-Louis-du-Rhône ,PORT SAINT LOUIS DU,13230,13078,93,43.383333,4.8,1.88
+ Puyloubier ,PUYLOUBIER ,13114,13079,93,43.516667,5.683333,1.77
+ Le Puy-Sainte-Réparade ,LE PUY SAINTE REPARADE,13610,13080,93,43.666667,5.433333,1
+ Rognac ,ROGNAC ,13340,13081,93,43.483333,5.233333,0.22
+ Rognes ,ROGNES ,13840,13082,93,43.666667,5.35,0.99
+ Rognonas ,ROGNONAS ,13870,13083,93,43.9,4.8,2.53
+ La Roque-d'Anthéron ,LA ROQUE D ANTHERON,13640,13084,93,43.716667,5.316667,1.32
+ Roquefort-la-Bédoule ,ROQUEFORT LA BEDOULE ,13830,13085,93,43.25,5.616667,1.77
+ Roquevaire ,ROQUEVAIRE ,13360,13086,93,43.35,5.6,1.43
+ Le Rove ,LE ROVE ,13740,13088,93,43.366667,5.25,1
+ Saint-Andiol ,SAINT ANDIOL ,13670,13089,93,43.833333,4.95,2.09
+ Saint-Antonin-sur-Bayon ,SAINT ANTONIN SUR BAYON,13100,13090,93,43.516667,5.583333,1.43
+ Saint-Cannat ,SAINT CANNAT ,13760,13091,93,43.616667,5.3,0.66
+ Saint-Chamas ,SAINT CHAMAS ,13250,13092,93,43.55,5.033333,1
+ Saint-Estève-Janson ,SAINT ESTEVE JANSON ,13610,13093,93,43.683333,5.383333,1.1
+ Saint-Étienne-du-Grès ,SAINT ETIENNE DU GRES,13103,13094,93,43.783333,4.716667,2.23
+ Saint-Marc-Jaumegarde ,SAINT MARC JAUMEGARDE ,13100,13095,93,43.55,5.516667,1.08
+ Saintes-Maries-de-la-Mer ,SAINTES MARIES DE LA,13460,13096,93,43.45,4.425,-1
+ Saint-Martin-de-Crau ,SAINT MARTIN DE CRAU,13310,13097,93,43.633333,4.816667,1.81
+ Saint-Mitre-les-Remparts ,SAINT MITRE LES REMPARTS,13920,13098,93,43.45,5.016667,0.99
+ Saint-Paul-lez-Durance ,SAINT PAUL LEZ DURANCE,13115,13099,93,43.683333,5.7,1.84
+ Saint-Rémy-de-Provence ,SAINT REMY DE PROVENCE,13210,13100,93,43.783333,4.833333,1.76
+ Saint-Savournin ,SAINT SAVOURNIN ,13119,13101,93,43.4,5.533333,1.15
+ Saint-Victoret ,SAINT VICTORET ,13730,13102,93,43.416667,5.233333,0.67
+ Salon-de-Provence ,SALON DE PROVENCE ,13300,13103,93,43.633333,5.1,0.77
+ Sausset-les-Pins ,SAUSSET LES PINS ,13960,13104,93,43.333333,5.116667,1.22
+ Sénas ,SENAS ,13560,13105,93,43.75,5.083333,1.54
+ Septèmes-les-Vallons ,SEPTEMES LES VALLONS ,13240,13106,93,43.4,5.366667,0.78
+ Simiane-Collongue ,SIMIANE COLLONGUE ,13109,13107,93,43.416667,5.433333,0.74
+ Tarascon ,TARASCON ,13150,13108,93,43.8,4.666667,2.43
+ Le Tholonet ,LE THOLONET ,13100,13109,93,43.516667,5.516667,1.08
+ Trets ,TRETS ,13530,13110,93,43.45,5.683333,1.77
+ Vauvenargues ,VAUVENARGUES ,13126,13111,93,43.55,5.6,1.43
+ Velaux ,VELAUX ,13880,13112,93,43.516667,5.266667,0.05
+ Venelles ,VENELLES ,13770,13113,93,43.6,5.483333,0.94
+ Ventabren ,VENTABREN ,13122,13114,93,43.533333,5.3,0.19
+ Vernègues ,VERNEGUES ,13116,13115,93,43.683333,5.166667,1.1
+ Verquières ,VERQUIERES ,13670,13116,93,43.833333,4.916667,2.09
+ Vitrolles ,VITROLLES ,13127,13117,93,43.466667,5.25,0.33
+ Coudoux ,COUDOUX ,13111,13118,93,43.55,5.25,0.22
+ Marseille ,MARSEILLE ,13000,13200,93,43.3,5.4,1.44
+ Carro ,CARRO ,13500,13900,93,43.333333,5.033333,1.22
+ Calas ,CALAS ,13480,13905,93,43.45,5.35,1
+ Le Verger ,LE VERGER ,13500,13907,93,43.433333,5.383333,1.47
+ Le Sambuc ,LE SAMBUC ,13200,13911,93,43.533333,4.716667,2.23
+ Les Cayols ,LES CAYOLS ,13114,13914,93,43.433333,5.416667,1
+ Les Frères ,LES FRERES ,13120,13916,93,43.416667,5.45,1
+ Les Milles ,LES MILLES ,13290,13920,93,43.5,5.383333,0.53
+ Puyricard ,PUYRICARD ,13540,13921,93,43.583333,5.416667,0.67
+ Entressen ,ENTRESSEN ,13118,13928,93,43.6,4.933333,1.33
+ Les Michels ,LES MICHELS ,13790,13931,93,43.45,5.6,1.43
+ Laure ,LAURE ,13180,13938,93,43.383333,5.216667,1
+ Le Rouet ,LE ROUET ,13620,13939,93,43.333333,5.183333,1.22
+ La Redonne ,LA REDONNE ,13820,13940,93,43.333333,5.2,1.22
+ Le Douard ,LE DOUARD ,13740,13943,93,43.366667,5.216667,1
+ Les Cadeneaux ,LES CADENEAUX ,13170,13944,93,43.4,5.333333,0.78
+ Notre-Dame ,NOTRE DAME ,13370,13953,93,43.383333,5.366667,1
+ L'Estaque ,L ESTAQUE ,13016,13955,93,43.366667,5.333333,1
+ Le Logis Neuf ,LE LOGIS NEUF ,13190,13957,93,43.35,5.483333,1.11
+ La Pomme ,LA POMME ,13720,13959,93,43.283333,5.433333,2.47
+ Les Gorguettes ,LES GORGUETTES ,13720,13960,93,43.4,5.6,1.43
+ Le Pigeonnier ,LE PIGEONNIER ,13720,13966,93,43.4,5.6,1.43
+ La Gavotte ,LA GAVOTTE ,13170,13971,93,43.383333,5.35,1.46
+ Château Gombert ,CHATEAU GOMBERT ,13013,13972,93,43.35,5.433333,1.11
+ Lavéra ,LAVERA ,13117,13973,93,43.383333,5.033333,0.92
+ Les Olives ,LES OLIVES ,13013,13975,93,43.333333,5.45,1.22
+ La Panouse ,LA PANOUSE ,13008,13981,93,43.25,5.433333,1.77
+ Vaufrège ,VAUFREGE ,13009,13982,93,43.25,5.45,1.77
+ Moulès ,MOULES ,13280,13983,93,43.65,4.75,2.09
+ Les Goudes ,LES GOUDES ,13008,13986,93,43.216667,5.35,1.99
+ Les Baumettes ,LES BAUMETTES ,13009,13989,93,43.233333,5.416667,1.88
+ Ablon ,ABLON ,14600,14001,25,49.4,0.3,2.19
+ Agy ,AGY ,14400,14003,25,49.25,-0.766667,1.25
+ Aignerville ,AIGNERVILLE ,14710,14004,25,49.316667,-0.916667,1.69
+ Airan ,AIRAN ,14370,14005,25,49.1,-0.15,0.58
+ Amayé-sur-Orne ,AMAYE SUR ORNE ,14210,14006,25,49.083333,-0.433333,1.68
+ Amayé-sur-Seulles ,AMAYE SUR SEULLES ,14310,14007,25,49.083333,-0.716667,1.68
+ Amblie ,AMBLIE ,14480,14008,25,49.3,-0.483333,1.46
+ Amfréville ,AMFREVILLE ,14860,14009,25,49.25,-0.233333,1.02
+ Ammeville ,AMMEVILLE ,14170,14010,25,48.933333,0.033333,1.45
+ Anctoville ,ANCTOVILLE ,14240,14011,25,49.1,-0.7,1.1
+ Angerville ,ANGERVILLE ,14430,14012,25,49.25,-0.033333,1.02
+ Angoville ,ANGOVILLE ,14220,14013,25,48.933333,-0.383333,1.45
+ Anguerny ,ANGUERNY ,14610,14014,25,49.266667,-0.4,1.15
+ Anisy ,ANISY ,14610,14015,25,49.25,-0.383333,1.02
+ Annebault ,ANNEBAULT ,14430,14016,25,49.25,0.066667,1.8
+ Annebecq ,ANNEBECQ ,14380,14017,25,48.9,-0.966667,1.84
+ Arganchy ,ARGANCHY ,14400,14019,25,49.233333,-0.75,1.2
+ Argences ,ARGENCES ,14370,14020,25,49.133333,-0.166667,0.53
+ Arromanches-les-Bains ,ARROMANCHES LES BAINS ,14117,14021,25,49.333333,-0.616667,1.67
+ Asnelles ,ASNELLES ,14960,14022,25,49.333333,-0.583333,1.67
+ Asnières-en-Bessin ,ASNIERES EN BESSIN ,14710,14023,25,49.366667,-0.933333,1.93
+ Auberville ,AUBERVILLE ,14640,14024,25,49.316667,-0.033333,1.54
+ Aubigny ,AUBIGNY ,14700,14025,25,48.916667,-0.216667,1.58
+ Audrieu ,AUDRIEU ,14250,14026,25,49.2,-0.6,0.75
+ Aunay-sur-Odon ,AUNAY SUR ODON ,14260,14027,25,49.016667,-0.633333,0.85
+ Auquainville ,AUQUAINVILLE ,14140,14028,25,49.05,0.25,1.77
+ Les Autels-Saint-Bazile ,LES AUTELS SAINT BAZILE,14140,14029,25,48.933333,0.1,1.45
+ Authie ,AUTHIE ,14280,14030,25,49.2,-0.433333,1.07
+ Les Authieux-Papion ,LES AUTHIEUX PAPION ,14140,14031,25,49.066667,0.05,1.6
+ Les Authieux-sur-Calonne ,LES AUTHIEUX SUR CALONNE,14130,14032,25,49.3,0.283333,1.87
+ Auvillars ,AUVILLARS ,14340,14033,25,49.2,0.066667,1.23
+ Avenay ,AVENAY ,14210,14034,25,49.1,-0.466667,0.89
+ Balleroy ,BALLEROY ,14490,14035,25,49.183333,-0.833333,1.45
+ Banneville-la-Campagne ,BANNEVILLE LA CAMPAGNE ,14940,14036,25,49.183333,-0.216667,1
+ Banneville-sur-Ajon ,BANNEVILLE SUR AJON ,14260,14037,25,49.066667,-0.566667,1.53
+ Banville ,BANVILLE ,14480,14038,25,49.316667,-0.5,1.54
+ Barbery ,BARBERY ,14220,14039,25,49.016667,-0.35,1.37
+ Barbeville ,BARBEVILLE ,14400,14040,25,49.283333,-0.75,1.28
+ Baron-sur-Odon ,BARON SUR ODON ,14210,14042,25,49.133333,-0.483333,0.94
+ Barou-en-Auge ,BAROU EN AUGE ,14620,14043,25,48.933333,-0.033333,1.45
+ Basly ,BASLY ,14610,14044,25,49.283333,-0.416667,1.28
+ Basseneville ,BASSENEVILLE ,14670,14045,25,49.216667,-0.15,1.29
+ Bavent ,BAVENT ,14860,14046,25,49.233333,-0.183333,0.89
+ Bayeux ,BAYEUX ,14400,14047,25,49.266667,-0.7,1.15
+ Bazenville ,BAZENVILLE ,14480,14049,25,49.3,-0.583333,1.46
+ Beaufour ,BEAUFOUR ,14340,14051,25,49.216667,0.016667,1.39
+ Beaumais ,BEAUMAIS ,14620,14053,25,48.9,-0.083333,1.71
+ Beaumesnil ,BEAUMESNIL ,14380,14054,25,48.9,-0.983333,1.89
+ Beaumont-en-Auge ,BEAUMONT EN AUGE ,14950,14055,25,49.283333,0.116667,1.37
+ Bauquay ,BAUQUAY ,14260,14056,25,49.033333,-0.616667,0.8
+ Bellengreville ,BELLENGREVILLE ,14370,14057,25,49.133333,-0.216667,1.4
+ Bellou ,BELLOU ,14140,14058,25,48.983333,0.233333,1.72
+ Bénerville-sur-Mer ,BENERVILLE SUR MER ,14910,14059,25,49.35,0.033333,1.8
+ Bénouville ,BENOUVILLE ,14970,14060,25,49.25,-0.283333,1.02
+ Le Bény-Bocage ,LE BENY BOCAGE ,14350,14061,25,48.933333,-0.833333,1.45
+ Bény-sur-Mer ,BENY SUR MER ,14440,14062,25,49.283333,-0.433333,1.48
+ Bernesq ,BERNESQ ,14710,14063,25,49.266667,-0.933333,1.74
+ Bernières-d'Ailly ,BERNIERES D AILLY ,14170,14064,25,48.966667,-0.083333,1.19
+ Bernières-le-Patry ,BERNIERES LE PATRY ,14410,14065,25,48.816667,-0.733333,2.36
+ Bernières-sur-Mer ,BERNIERES SUR MER ,14990,14066,25,49.333333,-0.416667,1.67
+ Berville ,BERVILLE ,14170,14067,25,49, ,1.03
+ Beuvillers ,BEUVILLERS ,14100,14069,25,49.133333,0.25,1.77
+ Beuvron-en-Auge ,BEUVRON EN AUGE ,14430,14070,25,49.183333,-0.05,0.94
+ Biéville-en-Auge ,BIEVILLE EN AUGE ,14270,14071,25,49.133333,-0.033333,0.97
+ Biéville-sur-Orne ,BIEVILLE SUR ORNE ,14112,14072,25,49.233333,-0.333333,1
+ La Bigne ,LA BIGNE ,14260,14073,25,49.016667,-0.716667,1.1
+ Billy ,BILLY ,14370,14074,25,49.083333,-0.2,1.3
+ Bissières ,BISSIERES ,14370,14075,25,49.116667,-0.083333,1.44
+ Blainville-sur-Orne ,BLAINVILLE SUR ORNE ,14550,14076,25,49.233333,-0.3,0.89
+ Blangy-le-Château ,BLANGY LE CHATEAU ,14130,14077,25,49.233333,0.283333,1.87
+ Blay ,BLAY ,14400,14078,25,49.266667,-0.833333,1.9
+ Blonville-sur-Mer ,BLONVILLE SUR MER ,14910,14079,25,49.316667,0.033333,1.54
+ Le Bô ,LE BO ,14690,14080,25,48.9,-0.45,1.77
+ Boissey ,BOISSEY ,14170,14081,25,49.016667,0.05,1.29
+ La Boissière ,LA BOISSIERE ,14340,14082,25,49.133333,0.15,1.59
+ Bonnebosq ,BONNEBOSQ ,14340,14083,25,49.2,0.083333,1.28
+ Bonnemaison ,BONNEMAISON ,14260,14084,25,49.016667,-0.583333,1.13
+ Bonneville-la-Louvet ,BONNEVILLE LA LOUVET ,14130,14085,25,49.266667,0.333333,2.02
+ Bonneville-sur-Touques ,BONNEVILLE SUR TOUQUES ,14800,14086,25,49.333333,0.116667,1.67
+ Bonnoeil ,BONNOEIL ,14700,14087,25,48.916667,-0.366667,2.22
+ Bougy ,BOUGY ,14210,14089,25,49.116667,-0.516667,0.51
+ Boulon ,BOULON ,14220,14090,25,49.05,-0.4,1.09
+ Bourgeauville ,BOURGEAUVILLE ,14430,14091,25,49.266667,0.05,1.63
+ Bourguébus ,BOURGUEBUS ,14540,14092,25,49.116667,-0.3,0.55
+ Branville ,BRANVILLE ,14430,14093,25,49.266667,0.033333,1.36
+ Bray-la-Campagne ,BRAY LA CAMPAGNE ,14190,14094,25,49.066667,-0.166667,1.57
+ Brémoy ,BREMOY ,14260,14096,25,48.983333,-0.783333,1.65
+ Bretteville-le-Rabet ,BRETTEVILLE LE RABET ,14190,14097,25,49.016667,-0.266667,0.8
+ Bretteville-sur-Dives ,BRETTEVILLE SUR DIVES ,14170,14099,25,49.033333,-0.016667,0.98
+ Bretteville-sur-Laize ,BRETTEVILLE SUR LAIZE ,14680,14100,25,49.05,-0.333333,0.54
+ Bretteville-sur-Odon ,BRETTEVILLE SUR ODON ,14760,14101,25,49.166667,-0.416667,0.37
+ Le Breuil-en-Auge ,LE BREUIL EN AUGE,14130,14102,25,49.233333,0.233333,1.72
+ Le Breuil-en-Bessin ,LE BREUIL EN BESSIN,14330,14103,25,49.25,-0.866667,1.55
+ Le Brévedent ,LE BREVEDENT ,14130,14104,25,49.233333,0.3,1.92
+ La Brévière ,LA BREVIERE ,14140,14105,25,48.966667,0.166667,1.52
+ Bréville ,BREVILLE ,14860,14106,25,49.233333,-0.233333,0.89
+ Bricqueville ,BRICQUEVILLE ,14710,14107,25,49.283333,-0.966667,1.84
+ Brocottes ,BROCOTTES ,14430,14108,25,49.183333,-0.066667,1.14
+ Brouay ,BROUAY ,14250,14109,25,49.216667,-0.566667,1.52
+ Brucourt ,BRUCOURT ,14160,14110,25,49.25,-0.1,1.02
+ Bucéels ,BUCEELS ,14250,14111,25,49.2,-0.633333,0.85
+ Bully ,BULLY ,14320,14112,25,49.1,-0.416667,1.54
+ Burcy ,BURCY ,14410,14113,25,48.866667,-0.8,1.97
+ Bures-sur-Dives ,BURES SUR DIVES ,14670,14114,25,49.2,-0.166667,0.87
+ Bures-les-Monts ,BURES LES MONTS ,14350,14115,25,48.95,-0.966667,1.84
+ Le Bû-sur-Rouvres ,LE BU SUR ROUVRES,14190,14116,25,49.033333,-0.183333,0.97
+ Cabourg ,CABOURG ,14390,14117,25,49.283333,0.133333,1.5
+ Caen ,CAEN ,14000,14118,25,49.183333,-0.35,0.5
+ Cagny ,CAGNY ,14630,14119,25,49.15,-0.25,1
+ Cahagnes ,CAHAGNES ,14240,14120,25,49.066667,-0.766667,1.25
+ Cahagnolles ,CAHAGNOLLES ,14490,14121,25,49.166667,-0.766667,1.25
+ La Caine ,LA CAINE ,14210,14122,25,49.033333,-0.516667,1.49
+ Cairon ,CAIRON ,14610,14123,25,49.25,-0.45,1.16
+ La Cambe ,LA CAMBE ,14230,14124,25,49.35,-1,1.94
+ Cambes-en-Plaine ,CAMBES EN PLAINE ,14610,14125,25,49.233333,-0.383333,1.07
+ Cambremer ,CAMBREMER ,14340,14126,25,49.15,0.05,1.18
+ Campagnolles ,CAMPAGNOLLES ,14500,14127,25,48.883333,-0.916667,1.84
+ Campandré-Valcongrain ,CAMPANDRE VALCONGRAIN ,14260,14128,25,48.983333,-0.583333,1.21
+ Campeaux ,CAMPEAUX ,14350,14129,25,48.95,-0.933333,1.74
+ Campigny ,CAMPIGNY ,14490,14130,25,49.25,-0.8,1.35
+ Canchy ,CANCHY ,14230,14132,25,49.333333,-0.983333,1.89
+ Canon ,CANON ,14270,14133,25,49.083333,-0.1,0.82
+ Canteloup ,CANTELOUP ,14370,14134,25,49.133333,-0.133333,0.63
+ Carcagny ,CARCAGNY ,14740,14135,25,49.233333,-0.6,1.57
+ Cardonville ,CARDONVILLE ,14230,14136,25,49.35,-1.066667,2.14
+ Carpiquet ,CARPIQUET ,14650,14137,25,49.183333,-0.45,0.5
+ Cartigny-l'Épinay ,CARTIGNY L EPINAY ,14330,14138,25,49.233333,-1,1.94
+ Carville ,CARVILLE ,14350,14139,25,48.933333,-0.866667,1.55
+ Castillon ,CASTILLON ,14490,14140,25,49.2,-0.8,1.35
+ Castillon-en-Auge ,CASTILLON EN AUGE ,14140,14141,25,49.033333,0.083333,1.28
+ Castilly ,CASTILLY ,14330,14142,25,49.283333,-1.033333,2.04
+ Caumont-l'Éventé ,CAUMONT L EVENTE ,14240,14143,25,49.083333,-0.8,1.35
+ Cauvicourt ,CAUVICOURT ,14190,14145,25,49.05,-0.25,0.72
+ Cauville ,CAUVILLE ,14770,14146,25,48.95,-0.566667,1.48
+ Cernay ,CERNAY ,14290,14147,25,49.016667,0.333333,2.02
+ Cerqueux ,CERQUEUX ,14290,14148,25,49,0.366667,2.12
+ Cesny-Bois-Halbout ,CESNY BOIS HALBOUT ,14220,14150,25,48.983333,-0.4,1.06
+ Champ-du-Boult ,CHAMP DU BOULT ,14380,14151,25,48.8,-1,2.49
+ La Chapelle-Engerbold ,LA CHAPELLE ENGERBOLD ,14770,14152,25,48.9,-0.6,1.71
+ La Chapelle-Haute-Grue ,LA CHAPELLE HAUTE GRUE,14140,14153,25,48.966667,0.15,1.47
+ La Chapelle-Yvon ,LA CHAPELLE YVON ,14290,14154,25,49.066667,0.333333,2.02
+ Cheffreville-Tonnencourt ,CHEFFREVILLE TONNENCOURT ,14140,14155,25,49.033333,0.25,1.77
+ Chênedollé ,CHENEDOLLE ,14410,14156,25,48.85,-0.766667,2.1
+ Cheux ,CHEUX ,14210,14157,25,49.166667,-0.516667,1.56
+ Chicheboville ,CHICHEBOVILLE ,14370,14158,25,49.116667,-0.216667,1.38
+ Chouain ,CHOUAIN ,14250,14159,25,49.216667,-0.633333,0.85
+ Cintheaux ,CINTHEAUX ,14680,14160,25,49.05,-0.283333,1.2
+ Clarbec ,CLARBEC ,14130,14161,25,49.25,0.133333,1.42
+ Clécy ,CLECY ,14570,14162,25,48.916667,-0.483333,1.58
+ Cléville ,CLEVILLE ,14370,14163,25,49.15,-0.1,1.25
+ Clinchamps-sur-Orne ,CLINCHAMPS SUR ORNE ,14320,14164,25,49.083333,-0.4,1.09
+ Colleville-sur-Mer ,COLLEVILLE SUR MER ,14710,14165,25,49.35,-0.85,1.8
+ Colleville-Montgomery ,COLLEVILLE MONTGOMERY ,14880,14166,25,49.283333,-0.3,1.28
+ Colombelles ,COLOMBELLES ,14460,14167,25,49.2,-0.3,0.63
+ Colombières ,COLOMBIERES ,14710,14168,25,49.3,-0.983333,1.89
+ Colombiers-sur-Seulles ,COLOMBIERS SUR SEULLES ,14480,14169,25,49.3,-0.516667,1.41
+ Colomby-sur-Thaon ,COLOMBY SUR THAON ,14610,14170,25,49.266667,-0.416667,1.15
+ Combray ,COMBRAY ,14220,14171,25,48.95,-0.433333,1.32
+ Commes ,COMMES ,14520,14172,25,49.333333,-0.733333,1.67
+ Conde-sur-Ifs ,CONDE SUR IFS ,14270,14173,25,49.05,-0.116667,1.15
+ Condé-sur-Noireau ,CONDE SUR NOIREAU ,14110,14174,25,48.85,-0.55,2.1
+ Condé-sur-Seulles ,CONDE SUR SEULLES ,14400,14175,25,49.233333,-0.633333,1.4
+ Conteville ,CONTEVILLE ,14540,14176,25,49.083333,-0.233333,1.56
+ Coquainvilliers ,COQUAINVILLIERS ,14130,14177,25,49.2,0.216667,1.67
+ Cordebugle ,CORDEBUGLE ,14100,14179,25,49.116667,0.383333,2.17
+ Cordey ,CORDEY ,14700,14180,25,48.85,-0.233333,2.1
+ Cormolain ,CORMOLAIN ,14240,14182,25,49.133333,-0.85,1.5
+ Cossesseville ,COSSESSEVILLE ,14690,14183,25,48.9,-0.416667,1.71
+ Cottun ,COTTUN ,14400,14184,25,49.266667,-0.783333,1.3
+ Coudray-Rabut ,COUDRAY RABUT ,14130,14185,25,49.3,0.166667,1.52
+ Coulombs ,COULOMBS ,14480,14186,25,49.25,-0.566667,1.34
+ Coulvain ,COULVAIN ,14310,14188,25,49.05,-0.716667,1.82
+ Coupesarte ,COUPESARTE ,14140,14189,25,49.05,0.116667,1.37
+ Courcy ,COURCY ,14170,14190,25,48.966667,-0.05,1.19
+ Courseulles-sur-Mer ,COURSEULLES SUR MER ,14470,14191,25,49.333333,-0.45,1.67
+ Courson ,COURSON ,14380,14192,25,48.85,-1.083333,2.19
+ Courtonne-la-Meurdrac ,COURTONNE LA MEURDRAC ,14100,14193,25,49.116667,0.316667,1.97
+ Crépon ,CREPON ,14480,14196,25,49.316667,-0.55,1.54
+ Cresserons ,CRESSERONS ,14440,14197,25,49.283333,-0.35,1.28
+ Cresseveuille ,CRESSEVEUILLE ,14430,14198,25,49.233333,0.033333,1.13
+ La Cressonnière ,LA CRESSONNIERE ,14290,14199,25,49.033333,0.366667,2.12
+ Creully ,CREULLY ,14480,14200,25,49.283333,-0.533333,1.28
+ Crèvecoeur-en-Auge ,CREVECOEUR EN AUGE ,14340,14201,25,49.116667,0.016667,1.39
+ Cricqueboeuf ,CRICQUEBOEUF ,14113,14202,25,49.4,0.15,2.19
+ Cricqueville-en-Auge ,CRICQUEVILLE EN AUGE ,14430,14203,25,49.233333,-0.066667,0.89
+ Cricqueville-en-Bessin ,CRICQUEVILLE EN BESSIN ,14450,14204,25,49.383333,-1,2.06
+ Cristot ,CRISTOT ,14250,14205,25,49.2,-0.583333,1.01
+ Crocy ,CROCY ,14620,14206,25,48.883333,-0.066667,1.84
+ Croisilles ,CROISILLES ,14220,14207,25,49,-0.45,0.93
+ Croissanville ,CROISSANVILLE ,14370,14208,25,49.116667,-0.1,1.09
+ Crouay ,CROUAY ,14400,14209,25,49.266667,-0.8,1.38
+ La Croupte ,LA CROUPTE ,14140,14210,25,49.016667,0.283333,1.87
+ Culey-le-Patry ,CULEY LE PATRY ,14220,14211,25,48.95,-0.533333,1.72
+ Cully ,CULLY ,14480,14212,25,49.25,-0.533333,1.02
+ Curcy-sur-Orne ,CURCY SUR ORNE ,14220,14213,25,49.016667,-0.516667,1.41
+ Cussy ,CUSSY ,14400,14214,25,49.283333,-0.766667,1.28
+ Cuverville ,CUVERVILLE ,14840,14215,25,49.183333,-0.266667,0.5
+ Damblainville ,DAMBLAINVILLE ,14620,14216,25,48.916667,-0.116667,1.59
+ Dampierre ,DAMPIERRE ,14350,14217,25,49.05,-0.866667,1.55
+ Danestal ,DANESTAL ,14430,14218,25,49.25,0.016667,1.08
+ Démouville ,DEMOUVILLE ,14840,14221,25,49.183333,-0.266667,0.5
+ Le Désert ,LE DESERT ,14350,14222,25,48.9,-0.816667,1.71
+ Le Détroit ,LE DETROIT ,14690,14223,25,48.866667,-0.35,1.97
+ Deux-Jumeaux ,DEUX JUMEAUX ,14230,14224,25,49.35,-0.966667,1.84
+ Dives-sur-Mer ,DIVES SUR MER ,14160,14225,25,49.283333,-0.1,1.28
+ Donnay ,DONNAY ,14220,14226,25,48.95,-0.416667,1.32
+ Douville-en-Auge ,DOUVILLE EN AUGE ,14430,14227,25,49.266667,-0.016667,1.15
+ Douvres-la-Délivrande ,DOUVRES LA DELIVRANDE ,14440,14228,25,49.283333,-0.383333,1.28
+ Dozulé ,DOZULE ,14430,14229,25,49.233333,-0.05,0.89
+ Drubec ,DRUBEC ,14130,14230,25,49.25,0.116667,1.65
+ Ducy-Sainte-Marguerite ,DUCY SAINTE MARGUERITE ,14250,14232,25,49.216667,-0.616667,0.8
+ Écajeul ,ECAJEUL ,14270,14233,25,49.066667,-0.033333,0.93
+ Écots ,ECOTS ,14170,14234,25,48.983333,0.033333,1.13
+ Écrammeville ,ECRAMMEVILLE ,14710,14235,25,49.316667,-0.95,1.79
+ Ellon ,ELLON ,14250,14236,25,49.216667,-0.683333,1.56
+ Émiéville ,EMIEVILLE ,14630,14237,25,49.15,-0.216667,1
+ Englesqueville-en-Auge ,ENGLESQUEVILLE EN AUGE ,14800,14238,25,49.333333,0.15,1.88
+ Englesqueville-la-Percée ,ENGLESQUEVILLE LA PERCEE ,14710,14239,25,49.383333,-0.95,2.06
+ Épaney ,EPANEY ,14170,14240,25,48.95,-0.166667,2.04
+ Épinay-sur-Odon ,EPINAY SUR ODON ,14310,14241,25,49.083333,-0.616667,0.8
+ Épron ,EPRON ,14610,14242,25,49.216667,-0.366667,1.78
+ Équemauville ,EQUEMAUVILLE ,14600,14243,25,49.4,0.2,2.19
+ Éraines ,ERAINES ,14700,14244,25,48.9,-0.166667,1.71
+ Ernes ,ERNES ,14270,14245,25,49.016667,-0.133333,1.65
+ Escoville ,ESCOVILLE ,14850,14246,25,49.216667,-0.25,1
+ Escures-sur-Favières ,ESCURES SUR FAVIERES ,14170,14247,25,49.033333,-0.083333,1.08
+ Espins ,ESPINS ,14220,14248,25,49,-0.416667,0.93
+ Esquay-Notre-Dame ,ESQUAY NOTRE DAME ,14210,14249,25,49.116667,-0.466667,0.98
+ Esquay-sur-Seulles ,ESQUAY SUR SEULLES ,14400,14250,25,49.266667,-0.616667,1.49
+ Esson ,ESSON ,14220,14251,25,48.966667,-0.45,1.19
+ Estrées-la-Campagne ,ESTREES LA CAMPAGNE ,14190,14252,25,49.016667,-0.233333,0.8
+ Estry ,ESTRY ,14410,14253,25,48.9,-0.733333,1.71
+ Éterville ,ETERVILLE ,14930,14254,25,49.15,-0.433333,1.08
+ Étouvy ,ETOUVY ,14350,14255,25,48.9,-0.883333,1.71
+ Étreham ,ETREHAM ,14400,14256,25,49.316667,-0.8,1.54
+ Évrecy ,EVRECY ,14210,14257,25,49.1,-0.5,0.46
+ Falaise ,FALAISE ,14700,14258,25,48.9,-0.2,1.71
+ Familly ,FAMILLY ,14290,14259,25,48.966667,0.35,2.07
+ Fauguernon ,FAUGUERNON ,14100,14260,25,49.183333,0.266667,1.82
+ Le Faulq ,LE FAULQ ,14130,14261,25,49.233333,0.316667,1.97
+ La Ferrière-Duval ,LA FERRIERE DUVAL ,14770,14263,25,48.966667,-0.666667,1.53
+ La Ferrière-Harang ,LA FERRIERE HARANG ,14350,14264,25,48.966667,-0.883333,1.59
+ Fervaques ,FERVAQUES ,14140,14265,25,49.033333,0.25,1.77
+ Feuguerolles-sur-Seulles ,FEUGUEROLLES SUR SEULLES ,14240,14267,25,49.116667,-0.666667,1.6
+ Fierville-les-Parcs ,FIERVILLE LES PARCS ,14130,14269,25,49.25,0.233333,1.72
+ Firfol ,FIRFOL ,14100,14270,25,49.15,0.316667,1.97
+ Fleury-sur-Orne ,FLEURY SUR ORNE ,14123,14271,25,49.15,-0.383333,1
+ La Folletière-Abenon ,LA FOLLETIERE ABENON ,14290,14273,25,48.983333,0.433333,2.32
+ Fontaine-Étoupefour ,FONTAINE ETOUPEFOUR ,14790,14274,25,49.15,-0.45,0.75
+ Fontaine-Henry ,FONTAINE HENRY ,14610,14275,25,49.283333,-0.45,1.43
+ Fontaine-le-Pin ,FONTAINE LE PIN ,14190,14276,25,48.966667,-0.283333,1.52
+ Fontenay-le-Marmion ,FONTENAY LE MARMION ,14320,14277,25,49.1,-0.35,1.34
+ Fontenay-le-Pesnel ,FONTENAY LE PESNEL ,14250,14278,25,49.166667,-0.583333,1.04
+ Fontenermont ,FONTENERMONT ,14380,14279,25,48.816667,-1.1,2.36
+ Formentin ,FORMENTIN ,14340,14280,25,49.2,0.15,1.59
+ Formigny ,FORMIGNY ,14710,14281,25,49.333333,-0.9,1.67
+ Foulognes ,FOULOGNES ,14240,14282,25,49.15,-0.816667,1.4
+ Fourches ,FOURCHES ,14620,14283,25,48.866667,-0.083333,1.97
+ Fourneaux-le-Val ,FOURNEAUX LE VAL ,14700,14284,25,48.85,-0.266667,2.1
+ Le Fournet ,LE FOURNET ,14340,14285,25,49.2,0.1,1.33
+ Fourneville ,FOURNEVILLE ,14600,14286,25,49.35,0.233333,1.8
+ Le Fresne-Camilly ,LE FRESNE CAMILLY ,14480,14288,25,49.266667,-0.483333,1.48
+ Fresné-la-Mère ,FRESNE LA MERE ,14700,14289,25,48.9,-0.116667,1.71
+ Fresney-le-Puceux ,FRESNEY LE PUCEUX ,14680,14290,25,49.066667,-0.366667,1.56
+ Fresney-le-Vieux ,FRESNEY LE VIEUX ,14220,14291,25,49,-0.383333,0.93
+ Friardel ,FRIARDEL ,14290,14292,25,49,0.383333,2.17
+ Fumichon ,FUMICHON ,14590,14293,25,49.166667,0.366667,2.12
+ Garcelles-Secqueville ,GARCELLES SECQUEVILLE ,14540,14294,25,49.1,-0.283333,0.29
+ Garnetot ,GARNETOT ,14170,14295,25,48.933333,0.05,1.45
+ Le Gast ,LE GAST ,14380,14296,25,48.8,-1.083333,2.49
+ Gavrus ,GAVRUS ,14210,14297,25,49.116667,-0.516667,0.51
+ Géfosse-Fontenay ,GEFOSSE FONTENAY ,14230,14298,25,49.366667,-1.083333,2.19
+ Genneville ,GENNEVILLE ,14600,14299,25,49.366667,0.283333,1.93
+ Gerrots ,GERROTS ,14430,14300,25,49.2, ,1.03
+ Giberville ,GIBERVILLE ,14730,14301,25,49.183333,-0.283333,0.5
+ Glanville ,GLANVILLE ,14950,14302,25,49.283333,0.066667,1.28
+ Gonneville-sur-Honfleur ,GONNEVILLE SUR HONFLEUR ,14600,14304,25,49.4,0.25,2.19
+ Gonneville-sur-Mer ,GONNEVILLE SUR MER ,14510,14305,25,49.283333,-0.033333,1.28
+ Gonneville-en-Auge ,GONNEVILLE EN AUGE ,14810,14306,25,49.266667,-0.183333,1.15
+ Goupillières ,GOUPILLIERES ,14210,14307,25,49.033333,-0.483333,1.56
+ Goustranville ,GOUSTRANVILLE ,14430,14308,25,49.216667,-0.1,1.48
+ Gouvix ,GOUVIX ,14680,14309,25,49.033333,-0.3,0.85
+ Grainville-Langannerie ,GRAINVILLE LANGANNERIE ,14190,14310,25,49.016667,-0.266667,0.8
+ Grainville-sur-Odon ,GRAINVILLE SUR ODON ,14210,14311,25,49.133333,-0.533333,1
+ Grandchamp-Le-Château ,GRANDCHAMP LE CHATEAU ,14140,14313,25,49.083333,0.066667,1.52
+ Grandmesnil ,GRANDMESNIL ,14170,14314,25,48.916667,0.033333,1.58
+ Grandouet ,GRANDOUET ,14340,14315,25,49.166667,0.066667,1.23
+ Grangues ,GRANGUES ,14160,14316,25,49.266667,-0.05,1.64
+ La Graverie ,LA GRAVERIE ,14350,14317,25,48.9,-0.883333,1.71
+ Graye-sur-Mer ,GRAYE SUR MER ,14470,14318,25,49.333333,-0.466667,1.67
+ Grentheville ,GRENTHEVILLE ,14540,14319,25,49.15,-0.283333,1.13
+ Grimbosq ,GRIMBOSQ ,14220,14320,25,49.05,-0.45,1.01
+ Grisy ,GRISY ,14170,14321,25,49,-0.066667,0.93
+ Guéron ,GUERON ,14400,14322,25,49.25,-0.716667,1.1
+ Le Ham ,LE HAM ,14430,14323,25,49.183333,-0.1,1.67
+ Hamars ,HAMARS ,14220,14324,25,49,-0.55,1.88
+ Hermanville-sur-Mer ,HERMANVILLE SUR MER ,14880,14325,25,49.283333,-0.316667,1.28
+ Hermival-les-Vaux ,HERMIVAL LES VAUX ,14100,14326,25,49.166667,0.283333,1.87
+ Hérouville-Saint-Clair ,HEROUVILLE SAINT CLAIR ,14200,14327,25,49.2,-0.316667,0.63
+ Hérouvillette ,HEROUVILLETTE ,14850,14328,25,49.216667,-0.233333,1
+ Heuland ,HEULAND ,14430,14329,25,49.266667, ,1.15
+ Heurtevent ,HEURTEVENT ,14140,14330,25,48.983333,0.133333,1.42
+ Hiéville ,HIEVILLE ,14170,14331,25,49.016667,-0.016667,0.98
+ La Hoguette ,LA HOGUETTE ,14700,14332,25,48.883333,-0.166667,1.84
+ Honfleur ,HONFLEUR ,14600,14333,25,49.416667,0.233333,2.32
+ L'Hôtellerie ,L HOTELLERIE ,14100,14334,25,49.133333,0.4,2.22
+ Hotot-en-Auge ,HOTOT EN AUGE ,14430,14335,25,49.166667,-0.05,1.22
+ Hottot-les-Bagues ,HOTTOT LES BAGUES ,14250,14336,25,49.15,-0.65,1.02
+ La Houblonnière ,LA HOUBLONNIERE ,14340,14337,25,49.133333,0.1,1.33
+ Houlgate ,HOULGATE ,14510,14338,25,49.3,-0.066667,1.41
+ Hubert-Folie ,HUBERT FOLIE ,14540,14339,25,49.133333,-0.316667,1.19
+ Huppain ,HUPPAIN ,14520,14340,25,49.35,-0.766667,1.8
+ Ifs ,IFS ,14123,14341,25,49.133333,-0.35,1
+ Isigny-sur-Mer ,ISIGNY SUR MER ,14230,14342,25,49.316667,-1.1,2.24
+ Les Isles-Bardel ,LES ISLES BARDEL ,14690,14343,25,48.85,-0.333333,2.1
+ Janville ,JANVILLE ,14670,14344,25,49.166667,-0.15,0.58
+ Jort ,JORT ,14170,14345,25,48.966667,-0.083333,1.19
+ Juaye-Mondaye ,JUAYE MONDAYE ,14250,14346,25,49.2,-0.683333,1.42
+ Jurques ,JURQUES ,14260,14347,25,49.016667,-0.75,1.2
+ Juvigny-sur-Seulles ,JUVIGNY SUR SEULLES ,14250,14348,25,49.166667,-0.616667,0.8
+ Laize-la-Ville ,LAIZE LA VILLE ,14320,14349,25,49.083333,-0.383333,0.73
+ La Lande-sur-Drôme ,LA LANDE SUR DROME,14240,14350,25,49.066667,-0.866667,1.63
+ La Lande-Vaumont ,LA LANDE VAUMONT ,14500,14351,25,48.783333,-0.866667,2.62
+ Landelles-et-Coupigny ,LANDELLES ET COUPIGNY ,14380,14352,25,48.883333,-1,1.94
+ Landes-sur-Ajon ,LANDES SUR AJON ,14310,14353,25,49.083333,-0.583333,1.34
+ Langrune-sur-Mer ,LANGRUNE SUR MER ,14830,14354,25,49.316667,-0.366667,1.54
+ Lantheuil ,LANTHEUIL ,14480,14355,25,49.266667,-0.516667,1.15
+ Lasson ,LASSON ,14740,14356,25,49.233333,-0.466667,1.48
+ Lassy ,LASSY ,14770,14357,25,48.916667,-0.666667,1.58
+ Léaupartie ,LEAUPARTIE ,14340,14358,25,49.183333,0.05,1.18
+ Lécaude ,LECAUDE ,14140,14359,25,49.1,0.083333,1.51
+ Leffard ,LEFFARD ,14700,14360,25,48.916667,-0.3,1.58
+ Lénault ,LENAULT ,14770,14361,25,48.933333,-0.633333,1.45
+ Lessard-et-le-Chêne ,LESSARD ET LE CHENE,14140,14362,25,49.066667,0.116667,1.37
+ Lieury ,LIEURY ,14170,14363,25,48.983333,-0.016667,1.06
+ Lingèvres ,LINGEVRES ,14250,14364,25,49.183333,-0.666667,0.99
+ Lion-sur-Mer ,LION SUR MER ,14780,14365,25,49.3,-0.316667,1.41
+ Lisieux ,LISIEUX ,14100,14366,25,49.15,0.233333,1.72
+ Lison ,LISON ,14330,14367,25,49.25,-1.05,2.09
+ Lisores ,LISORES ,14140,14368,25,48.966667,0.216667,1.67
+ Litteau ,LITTEAU ,14490,14369,25,49.15,-0.9,1.86
+ Le Molay-Littry ,LE MOLAY LITTRY ,14330,14370,25,49.25,-0.883333,1.59
+ Livarot ,LIVAROT ,14140,14371,25,49.016667,0.15,1.47
+ Livry ,LIVRY ,14240,14372,25,49.1,-0.766667,1.25
+ Le Locheur ,LE LOCHEUR ,14210,14373,25,49.1,-0.55,0.99
+ Les Loges-Saulces ,LES LOGES SAULCES ,14700,14375,25,48.866667,-0.3,1.97
+ Longraye ,LONGRAYE ,14250,14376,25,49.15,-0.7,1.94
+ Longues-sur-Mer ,LONGUES SUR MER ,14400,14377,25,49.333333,-0.7,1.67
+ Longvillers ,LONGVILLERS ,14310,14379,25,49.05,-0.633333,0.85
+ Loucelles ,LOUCELLES ,14250,14380,25,49.216667,-0.583333,1.2
+ Louvagny ,LOUVAGNY ,14170,14381,25,48.95,-0.05,1.32
+ Louvières ,LOUVIERES ,14710,14382,25,49.366667,-0.916667,-1
+ Louvigny ,LOUVIGNY ,14111,14383,25,49.166667,-0.383333,0.37
+ Luc-sur-Mer ,LUC SUR MER ,14530,14384,25,49.3,-0.35,1.41
+ Magny-en-Bessin ,MAGNY EN BESSIN ,14400,14385,25,49.3,-0.666667,1.41
+ Magny-la-Campagne ,MAGNY LA CAMPAGNE ,14270,14386,25,49.05,-0.1,0.91
+ Magny-le-Freule ,MAGNY LE FREULE ,14270,14387,25,49.1,-0.066667,0.83
+ Maisoncelles-la-Jourdan ,MAISONCELLES LA JOURDAN ,14500,14388,25,48.8,-0.85,2.49
+ Maisoncelles-Pelvey ,MAISONCELLES PELVEY ,14310,14389,25,49.05,-0.666667,0.95
+ Maisoncelles-sur-Ajon ,MAISONCELLES SUR AJON ,14210,14390,25,49.05,-0.533333,1.26
+ Maisons ,MAISONS ,14400,14391,25,49.316667,-0.75,1.54
+ Maisy ,MAISY ,14450,14392,25,49.383333,-1.05,2.09
+ Maizet ,MAIZET ,14210,14393,25,49.083333,-0.466667,0.95
+ Maizières ,MAIZIERES ,14190,14394,25,49.016667,-0.15,1.6
+ Malloué ,MALLOUE ,14350,14395,25,48.933333,-0.966667,1.84
+ Maltot ,MALTOT ,14930,14396,25,49.133333,-0.416667,0.59
+ Mandeville-en-Bessin ,MANDEVILLE EN BESSIN ,14710,14397,25,49.3,-0.883333,1.59
+ Manerbe ,MANERBE ,14340,14398,25,49.183333,0.183333,2.11
+ Manneville-la-Pipard ,MANNEVILLE LA PIPARD ,14130,14399,25,49.266667,0.216667,1.67
+ Le Manoir ,LE MANOIR ,14400,14400,25,49.283333,-0.6,1.75
+ Manvieux ,MANVIEUX ,14117,14401,25,49.333333,-0.65,1.67
+ Le Marais-la-Chapelle ,LE MARAIS LA CHAPELLE,14620,14402,25,48.883333,-0.016667,1.84
+ Marolles ,MAROLLES ,14100,14403,25,49.133333,0.366667,2.12
+ Martainville ,MARTAINVILLE ,14220,14404,25,48.95,-0.333333,1.68
+ Martigny-sur-l'Ante ,MARTIGNY SUR L ANTE,14700,14405,25,48.9,-0.283333,1.71
+ Martragny ,MARTRAGNY ,14740,14406,25,49.25,-0.6,1.65
+ Mathieu ,MATHIEU ,14920,14407,25,49.25,-0.366667,1.02
+ May-sur-Orne ,MAY SUR ORNE ,14320,14408,25,49.1,-0.366667,0.62
+ Méry-Corbon ,MERY CORBON ,14370,14410,25,49.133333,-0.083333,1.46
+ Meslay ,MESLAY ,14220,14411,25,48.966667,-0.4,1.19
+ Le Mesnil-au-Grain ,LE MESNIL AU GRAIN,14260,14412,25,49.05,-0.6,1.02
+ Le Mesnil-Auzouf ,LE MESNIL AUZOUF ,14260,14413,25,48.983333,-0.75,1.21
+ Le Mesnil-Bacley ,LE MESNIL BACLEY ,14140,14414,25,49,0.15,1.47
+ Le Mesnil-Benoist ,LE MESNIL BENOIST ,14380,14415,25,48.866667,-0.983333,1.97
+ Le Mesnil-Caussois ,LE MESNIL CAUSSOIS ,14380,14416,25,48.85,-1.016667,2.1
+ Mesnil-Clinchamps ,MESNIL CLINCHAMPS ,14380,14417,25,48.85,-0.983333,2.1
+ Le Mesnil-Durand ,LE MESNIL DURAND ,14140,14418,25,49.05,0.133333,1.42
+ Le Mesnil-Eudes ,LE MESNIL EUDES ,14100,14419,25,49.1,0.183333,1.57
+ Le Mesnil-Germain ,LE MESNIL GERMAIN ,14140,14420,25,49.05,0.183333,1.57
+ Le Mesnil-Guillaume ,LE MESNIL GUILLAUME ,14100,14421,25,49.1,0.3,1.92
+ Le Mesnil-Mauger ,LE MESNIL MAUGER ,14270,14422,25,49.083333,0.016667,1.08
+ Le Mesnil-Patry ,LE MESNIL PATRY ,14740,14423,25,49.2,-0.55,0.72
+ Le Mesnil-Robert ,LE MESNIL ROBERT ,14380,14424,25,48.883333,-0.95,1.84
+ Le Mesnil-Simon ,LE MESNIL SIMON ,14140,14425,25,49.083333,0.1,1.33
+ Le Mesnil-sur-Blangy ,LE MESNIL SUR BLANGY,14130,14426,25,49.266667,0.25,1.77
+ Le Mesnil-Villement ,LE MESNIL VILLEMENT ,14690,14427,25,48.85,-0.366667,2.1
+ Meulles ,MEULLES ,14290,14429,25,48.983333,0.333333,2.02
+ Meuvaines ,MEUVAINES ,14960,14430,25,49.333333,-0.566667,1.67
+ Missy ,MISSY ,14210,14432,25,49.116667,-0.55,1.08
+ Mittois ,MITTOIS ,14170,14433,25,49.016667,0.033333,1.13
+ Les Monceaux ,LES MONCEAUX ,14100,14435,25,49.116667,0.116667,2.15
+ Monceaux-en-Bessin ,MONCEAUX EN BESSIN ,14400,14436,25,49.25,-0.683333,1.02
+ Mondeville ,MONDEVILLE ,14120,14437,25,49.166667,-0.316667,0.37
+ Mondrainville ,MONDRAINVILLE ,14210,14438,25,49.133333,-0.516667,0.82
+ Monfréville ,MONFREVILLE ,14230,14439,25,49.316667,-1.033333,2.04
+ Montamy ,MONTAMY ,14260,14440,25,48.983333,-0.766667,1.43
+ Mont-Bertrand ,MONT BERTRAND ,14350,14441,25,48.966667,-0.916667,1.69
+ Montchamp ,MONTCHAMP ,14350,14442,25,48.916667,-0.766667,1.58
+ Montchauvet ,MONTCHAUVET ,14350,14443,25,48.95,-0.733333,1.87
+ Monteille ,MONTEILLE ,14270,14444,25,49.116667,0.05,1.74
+ Montfiquet ,MONTFIQUET ,14490,14445,25,49.166667,-0.9,1.74
+ Montpinçon ,MONTPINCON ,14170,14447,25,48.95,0.083333,1.74
+ Montreuil-en-Auge ,MONTREUIL EN AUGE ,14340,14448,25,49.166667,0.05,1.18
+ Monts-en-Bessin ,MONTS EN BESSIN ,14310,14449,25,49.116667,-0.6,1.26
+ Montviette ,MONTVIETTE ,14140,14450,25,49,0.1,1.33
+ Morteaux-Couliboeuf ,MORTEAUX COULIBOEUF ,14620,14452,25,48.933333,-0.066667,1.45
+ Mosles ,MOSLES ,14400,14453,25,49.316667,-0.816667,1.74
+ Mouen ,MOUEN ,14790,14454,25,49.15,-0.483333,1.5
+ Moult ,MOULT ,14370,14456,25,49.116667,-0.166667,0.53
+ Les Moutiers-en-Auge ,LES MOUTIERS EN AUGE,14620,14457,25,48.9,-0.016667,1.71
+ Les Moutiers-Hubert ,LES MOUTIERS HUBERT ,14140,14459,25,48.966667,0.266667,1.82
+ Moyaux ,MOYAUX ,14590,14460,25,49.2,0.35,2.07
+ Mutrécy ,MUTRECY ,14220,14461,25,49.066667,-0.416667,1.26
+ Neuilly-la-Forêt ,NEUILLY LA FORET ,14230,14462,25,49.266667,-1.1,2.24
+ Neuilly-le-Malherbe ,NEUILLY LE MALHERBE ,14210,14463,25,49.1,-0.533333,0.62
+ Nonant ,NONANT ,14400,14465,25,49.25,-0.633333,1.3
+ Norolles ,NOROLLES ,14100,14466,25,49.2,0.25,1.77
+ Noron-l'Abbaye ,NORON L ABBAYE ,14700,14467,25,48.9,-0.25,1.71
+ Noron-la-Poterie ,NORON LA POTERIE ,14490,14468,25,49.216667,-0.766667,1.25
+ Norrey-en-Auge ,NORREY EN AUGE ,14620,14469,25,48.916667,-0.016667,1.58
+ Norrey-en-Bessin ,NORREY EN BESSIN ,14740,14470,25,49.2,-0.516667,0.68
+ Notre-Dame-de-Courson ,NOTRE DAME DE COURSON,14140,14471,25,48.983333,0.266667,1.82
+ Notre-Dame-de-Fresnay ,NOTRE DAME DE FRESNAY,14170,14472,25,48.966667,0.05,1.21
+ Notre-Dame-de-Livaye ,NOTRE DAME DE LIVAYE,14340,14473,25,49.116667,0.05,1.18
+ Notre-Dame-d'Estrées ,NOTRE DAME D ESTREES,14340,14474,25,49.15,0.016667,1.08
+ Noyers-Bocage ,NOYERS BOCAGE ,14210,14475,25,49.133333,-0.566667,1.58
+ Olendon ,OLENDON ,14170,14476,25,48.966667,-0.166667,2
+ Ondefontaine ,ONDEFONTAINE ,14260,14477,25,49,-0.683333,1
+ Orbois ,ORBOIS ,14240,14479,25,49.133333,-0.683333,1.39
+ Osmanville ,OSMANVILLE ,14230,14480,25,49.333333,-1.083333,2.19
+ Les Oubeaux ,LES OUBEAUX ,14230,14481,25,49.283333,-1.066667,2.14
+ Ouézy ,OUEZY ,14270,14482,25,49.083333,-0.1,0.82
+ Ouffières ,OUFFIERES ,14220,14483,25,49.016667,-0.483333,0.93
+ Ouilly-du-Houley ,OUILLY DU HOULEY ,14590,14484,25,49.166667,0.333333,2.02
+ Ouilly-le-Tesson ,OUILLY LE TESSON ,14190,14486,25,48.983333,-0.216667,1.06
+ Ouilly-le-Vicomte ,OUILLY LE VICOMTE ,14100,14487,25,49.183333,0.216667,1.67
+ Ouistreham ,OUISTREHAM ,14150,14488,25,49.283333,-0.25,1.28
+ Ouville-la-Bien-Tournée ,OUVILLE LA BIEN TOURNEE,14170,14489,25,49.05,-0.016667,1.02
+ Parfouru-l'Éclin ,PARFOURU L ECLIN ,14240,14490,25,49.133333,-0.75,1.2
+ Parfouru-sur-Odon ,PARFOURU SUR ODON ,14310,14491,25,49.083333,-0.6,0.96
+ Pennedepie ,PENNEDEPIE ,14600,14492,25,49.416667,0.183333,2.32
+ Percy-en-Auge ,PERCY EN AUGE ,14270,14493,25,49.05,-0.066667,0.83
+ Périers-en-Auge ,PERIERS EN AUGE ,14160,14494,25,49.266667,-0.1,1.15
+ Périers-sur-le-Dan ,PERIERS SUR LE DAN,14112,14495,25,49.266667,-0.35,1.15
+ Périgny ,PERIGNY ,14770,14496,25,48.916667,-0.6,1.58
+ Perrières ,PERRIERES ,14170,14497,25,48.966667,-0.133333,1.51
+ Pertheville-Ners ,PERTHEVILLE NERS ,14700,14498,25,48.866667,-0.116667,1.97
+ Petiville ,PETIVILLE ,14390,14499,25,49.25,-0.166667,1.02
+ Pierrefitte-en-Cinglais ,PIERREFITTE EN CINGLAIS ,14690,14501,25,48.9,-0.383333,1.71
+ Pierres ,PIERRES ,14410,14503,25,48.866667,-0.733333,1.97
+ Le Pin ,LE PIN ,14590,14504,25,49.216667,0.333333,2.02
+ Placy ,PLACY ,14220,14505,25,48.983333,-0.416667,1.06
+ Planquery ,PLANQUERY ,14490,14506,25,49.15,-0.833333,1.45
+ Pleines-Oeuvres ,PLEINES OEUVRES ,14380,14507,25,48.933333,-1,1.94
+ Le Plessis-Grimoult ,LE PLESSIS GRIMOULT ,14770,14508,25,48.966667,-0.616667,1.19
+ Plumetot ,PLUMETOT ,14440,14509,25,49.283333,-0.35,1.28
+ La Pommeraye ,LA POMMERAYE ,14690,14510,25,48.9,-0.416667,1.71
+ Pont-Bellanger ,PONT BELLANGER ,14380,14511,25,48.933333,-0.966667,1.84
+ Pontécoulant ,PONTECOULANT ,14110,14512,25,48.883333,-0.583333,1.84
+ Pont-l'Évêque ,PONT L EVEQUE ,14130,14514,25,49.3,0.183333,1.57
+ Port-en-Bessin-Huppain ,PORT EN BESSIN HUPPAIN,14520,14515,25,49.35,-0.75,1.8
+ Potigny ,POTIGNY ,14420,14516,25,48.966667,-0.233333,1.19
+ Poussy-la-Campagne ,POUSSY LA CAMPAGNE ,14540,14517,25,49.083333,-0.216667,1.99
+ Préaux-Bocage ,PREAUX BOCAGE ,14210,14519,25,49.05,-0.5,1.11
+ Le Pré-d'Auge ,LE PRE D AUGE,14340,14520,25,49.15,0.15,1.5
+ Presles ,PRESLES ,14410,14521,25,48.883333,-0.783333,1.84
+ Prêtreville ,PRETREVILLE ,14140,14522,25,49.083333,0.25,1.77
+ Proussy ,PROUSSY ,14110,14523,25,48.883333,-0.533333,1.84
+ Putot-en-Auge ,PUTOT EN AUGE ,14430,14524,25,49.216667,-0.066667,0.85
+ Putot-en-Bessin ,PUTOT EN BESSIN ,14740,14525,25,49.216667,-0.533333,0.76
+ Quetteville ,QUETTEVILLE ,14130,14528,25,49.333333,0.3,1.92
+ Ranchy ,RANCHY ,14400,14529,25,49.25,-0.75,1.2
+ Ranville ,RANVILLE ,14860,14530,25,49.233333,-0.25,1.13
+ Rapilly ,RAPILLY ,14690,14531,25,48.866667,-0.333333,1.97
+ Le Reculey ,LE RECULEY ,14350,14532,25,48.916667,-0.85,1.58
+ Repentigny ,REPENTIGNY ,14340,14533,25,49.2,0.05,1.18
+ Reux ,REUX ,14130,14534,25,49.283333,0.15,1.47
+ Reviers ,REVIERS ,14470,14535,25,49.3,-0.466667,1.41
+ La Rivière-Saint-Sauveur ,LA RIVIERE SAINT SAUVEUR,14600,14536,25,49.416667,0.266667,2.32
+ Robehomme ,ROBEHOMME ,14860,14537,25,49.233333,-0.15,1.69
+ Rocquancourt ,ROCQUANCOURT ,14540,14538,25,49.1,-0.316667,1.03
+ La Rocque ,LA ROCQUE ,14410,14539,25,48.883333,-0.666667,1.84
+ Rocques ,ROCQUES ,14100,14540,25,49.166667,0.25,1.77
+ La Roque-Baignard ,LA ROQUE BAIGNARD ,14340,14541,25,49.183333,0.1,1.33
+ Rosel ,ROSEL ,14740,14542,25,49.233333,-0.45,1.86
+ Rots ,ROTS ,14980,14543,25,49.216667,-0.466667,0.76
+ Roucamps ,ROUCAMPS ,14260,14544,25,48.983333,-0.616667,1.06
+ Roullours ,ROULLOURS ,14500,14545,25,48.833333,-0.833333,2.23
+ Rouvres ,ROUVRES ,14190,14546,25,49,-0.166667,1.33
+ Rubercy ,RUBERCY ,14710,14547,25,49.283333,-0.883333,1.59
+ Rucqueville ,RUCQUEVILLE ,14480,14548,25,49.25,-0.583333,1.69
+ Rully ,RULLY ,14410,14549,25,48.833333,-0.716667,2.23
+ Rumesnil ,RUMESNIL ,14340,14550,25,49.183333,0.033333,1.13
+ Russy ,RUSSY ,14710,14551,25,49.333333,-0.816667,1.85
+ Ryes ,RYES ,14400,14552,25,49.316667,-0.616667,1.61
+ Saint-Agnan-le-Malherbe ,SAINT AGNAN LE MALHERBE,14260,14553,25,49.05,-0.583333,1.23
+ Saint-Aignan-de-Cramesnil ,SAINT AIGNAN DE CRAMESNIL,14540,14554,25,49.083333,-0.266667,0.87
+ Saint-André-d'Hébertot ,SAINT ANDRE D HEBERTOT,14130,14555,25,49.316667,0.283333,1.87
+ Saint-André-sur-Orne ,SAINT ANDRE SUR ORNE,14320,14556,25,49.116667,-0.383333,0.73
+ Saint-Arnoult ,SAINT ARNOULT ,14800,14557,25,49.333333,0.083333,1.67
+ Saint-Aubin-d'Arquenay ,SAINT AUBIN D ARQUENAY,14970,14558,25,49.266667,-0.283333,1.15
+ Saint-Aubin-des-Bois ,SAINT AUBIN DES BOIS,14380,14559,25,48.833333,-1.133333,2.34
+ Saint-Aubin-Lébizay ,SAINT AUBIN LEBIZAY ,14340,14560,25,49.2, ,1.48
+ Saint-Aubin-sur-Algot ,SAINT AUBIN SUR ALGOT,14340,14561,25,49.133333,0.083333,1.28
+ Saint-Aubin-sur-Mer ,SAINT AUBIN SUR MER,14750,14562,25,49.333333,-0.4,1.67
+ Saint-Charles-de-Percy ,SAINT CHARLES DE PERCY,14350,14564,25,48.933333,-0.783333,1.45
+ Saint-Côme-de-Fresné ,SAINT COME DE FRESNE,14960,14565,25,49.333333,-0.6,1.67
+ Saint-Contest ,SAINT CONTEST ,14280,14566,25,49.216667,-0.4,0.96
+ Saint-Crespin ,SAINT CRESPIN ,14270,14567,25,49.083333,0.05,1.62
+ Sainte-Croix-Grand-Tonne ,SAINTE CROIX GRAND TONNE,14740,14568,25,49.233333,-0.55,0.89
+ Sainte-Croix-sur-Mer ,SAINTE CROIX SUR MER,14480,14569,25,49.316667,-0.516667,1.54
+ Saint-Cyr-du-Ronceray ,SAINT CYR DU RONCERAY,14290,14570,25,49.05,0.3,1.92
+ Saint-Denis-de-Mailloc ,SAINT DENIS DE MAILLOC,14100,14571,25,49.1,0.316667,1.97
+ Saint-Denis-de-Méré ,SAINT DENIS DE MERE,14110,14572,25,48.866667,-0.516667,1.97
+ Saint-Denis-Maisoncelles ,SAINT DENIS MAISONCELLES ,14350,14573,25,48.983333,-0.85,1.5
+ Saint-Désir ,SAINT DESIR ,14100,14574,25,49.15,0.216667,1.67
+ Saint-Étienne-la-Thillaye ,SAINT ETIENNE LA THILLAYE,14950,14575,25,49.283333,0.116667,1.37
+ Sainte-Foy-de-Montgommery ,SAINTE FOY DE MONTGOMMERY,14140,14576,25,48.95,0.183333,1.57
+ Saint-Gâtien-des-Bois ,SAINT GATIEN DES BOIS,14130,14578,25,49.35,0.183333,1.8
+ Saint-Georges-d'Aunay ,SAINT GEORGES D AUNAY,14260,14579,25,49.033333,-0.683333,1
+ Saint-Georges-en-Auge ,SAINT GEORGES EN AUGE,14140,14580,25,48.983333,0.066667,1.32
+ Saint-Germain-d'Ectot ,SAINT GERMAIN D ECTOT,14240,14581,25,49.116667,-0.716667,1.1
+ Saint-Germain-de-Livet ,SAINT GERMAIN DE LIVET,14100,14582,25,49.083333,0.216667,1.67
+ Saint-Germain-du-Crioult ,SAINT GERMAIN DU CRIOULT,14110,14585,25,48.85,-0.6,2.1
+ Saint-Germain-du-Pert ,SAINT GERMAIN DU PERT,14230,14586,25,49.333333,-1.033333,2.04
+ Saint-Germain-la-Blanche-Herbe ,SAINT GERMAIN LA BLANCHE,14280,14587,25,49.183333,-0.4,0.96
+ Saint-Germain-Langot ,SAINT GERMAIN LANGOT ,14700,14588,25,48.916667,-0.316667,1.58
+ Saint-Germain-le-Vasson ,SAINT GERMAIN LE VASSON,14190,14589,25,49,-0.3,1.47
+ Sainte-Honorine-de-Ducy ,SAINTE HONORINE DE DUCY,14240,14590,25,49.15,-0.783333,1.3
+ Sainte-Honorine-des-Pertes ,SAINTE HONORINE DES PERTES,14520,14591,25,49.35,-0.8,1.8
+ Sainte-Honorine-du-Fay ,SAINTE HONORINE DU FAY,14210,14592,25,49.083333,-0.5,0.46
+ Saint-Hymer ,SAINT HYMER ,14130,14593,25,49.25,0.166667,1.52
+ Saint-Jean-de-Livet ,SAINT JEAN DE LIVET,14100,14595,25,49.083333,0.233333,1.72
+ Saint-Jean-des-Essartiers ,SAINT JEAN DES ESSARTIERS,14350,14596,25,49.05,-0.833333,1.46
+ Saint-Jean-le-Blanc ,SAINT JEAN LE BLANC,14770,14597,25,48.933333,-0.65,1.45
+ Saint-Jouin ,SAINT JOUIN ,14430,14598,25,49.216667,-0.016667,0.98
+ Saint-Julien-de-Mailloc ,SAINT JULIEN DE MAILLOC,14290,14599,25,49.083333,0.333333,2.02
+ Saint-Julien-le-Faucon ,SAINT JULIEN LE FAUCON,14140,14600,25,49.066667,0.083333,1.28
+ Saint-Julien-sur-Calonne ,SAINT JULIEN SUR CALONNE,14130,14601,25,49.283333,0.233333,1.72
+ Saint-Lambert ,SAINT LAMBERT ,14570,14602,25,48.933333,-0.55,1.45
+ Saint-Laurent-de-Condel ,SAINT LAURENT DE CONDEL,14220,14603,25,49.05,-0.416667,1
+ Saint-Laurent-du-Mont ,SAINT LAURENT DU MONT,14340,14604,25,49.133333,0.033333,1.13
+ Saint-Laurent-sur-Mer ,SAINT LAURENT SUR MER,14710,14605,25,49.366667,-0.883333,1.93
+ Saint-Léger-Dubosq ,SAINT LEGER DUBOSQ ,14430,14606,25,49.233333,-0.033333,0.93
+ Saint-Louet-sur-Seulles ,SAINT LOUET SUR SEULLES,14310,14607,25,49.1,-0.666667,0.95
+ Saint-Loup-de-Fribois ,SAINT LOUP DE FRIBOIS,14340,14608,25,49.116667,0.016667,1.39
+ Saint-Loup-Hors ,SAINT LOUP HORS ,14400,14609,25,49.25,-0.716667,1.1
+ Saint-Manvieu-Bocage ,SAINT MANVIEU BOCAGE ,14380,14611,25,48.833333,-0.983333,2.23
+ Sainte-Marguerite-d'Elle ,SAINTE MARGUERITE D ELLE,14330,14614,25,49.216667,-1.016667,1.99
+ Sainte-Marguerite-des-Loges ,SAINTE MARGUERITE DES LOGES,14140,14615,25,49.016667,0.2,1.62
+ Sainte-Marguerite-de-Viette ,SAINTE MARGUERITE DE VIETTE,14140,14616,25,49.016667,0.083333,1.28
+ Sainte-Marie-aux-Anglais ,SAINTE MARIE AUX ANGLAIS,14270,14617,25,49.066667,0.033333,1.35
+ Sainte-Marie-Laumont ,SAINTE MARIE LAUMONT ,14350,14618,25,48.916667,-0.9,1.64
+ Sainte-Marie-Outre-l'Eau ,SAINTE MARIE OUTRE L,14380,14619,25,48.933333,-1.016667,1.99
+ Saint-Martin-aux-Chartrains ,SAINT MARTIN AUX CHARTRAINS,14130,14620,25,49.316667,0.15,1.54
+ Saint-Martin-de-Blagny ,SAINT MARTIN DE BLAGNY,14710,14622,25,49.25,-0.95,1.79
+ Saint-Martin-de-Fontenay ,SAINT MARTIN DE FONTENAY,14320,14623,25,49.116667,-0.366667,0.95
+ Saint-Martin-de-Fresnay ,SAINT MARTIN DE FRESNAY,14170,14624,25,48.983333,0.033333,1.13
+ Saint-Martin-de-la-Lieue ,SAINT MARTIN DE LA,14100,14625,25,49.116667,0.216667,1.67
+ Saint-Martin-de-Mailloc ,SAINT MARTIN DE MAILLOC,14100,14626,25,49.1,0.316667,1.97
+ Saint-Martin-de-Mieux ,SAINT MARTIN DE MIEUX,14700,14627,25,48.866667,-0.233333,1.97
+ Saint-Martin-de-Sallen ,SAINT MARTIN DE SALLEN,14220,14628,25,48.966667,-0.516667,1.39
+ Saint-Martin-des-Besaces ,SAINT MARTIN DES BESACES,14350,14629,25,49.016667,-0.85,1.5
+ Saint-Martin-des-Entrées ,SAINT MARTIN DES ENTREES,14400,14630,25,49.266667,-0.666667,1.15
+ Saint-Martin-de-Tallevende ,SAINT MARTIN DE TALLEVENDE,14500,14631,25,48.833333,-0.933333,2.23
+ Saint-Martin-Don ,SAINT MARTIN DON ,14350,14632,25,48.933333,-0.95,1.79
+ Saint-Martin-du-Mesnil-Oury ,SAINT MARTIN DU MESNIL,14140,14633,25,49.033333,0.133333,1.42
+ Saint-Michel-de-Livet ,SAINT MICHEL DE LIVET,14140,14634,25,49.016667,0.133333,1.42
+ Saint-Omer ,SAINT OMER ,14220,14635,25,48.916667,-0.433333,1.58
+ Saint-Ouen-des-Besaces ,SAINT OUEN DES BESACES,14350,14636,25,49.016667,-0.85,1.5
+ Saint-Ouen-du-Mesnil-Oger ,SAINT OUEN DU MESNIL,14670,14637,25,49.166667,-0.116667,1.4
+ Saint-Ouen-le-Houx ,SAINT OUEN LE HOUX,14140,14638,25,48.983333,0.183333,1.57
+ Saint-Ouen-le-Pin ,SAINT OUEN LE PIN,14340,14639,25,49.15,0.116667,1.37
+ Saint-Pair ,SAINT PAIR ,14670,14640,25,49.166667,-0.183333,1.26
+ Saint-Pair-du-Mont ,SAINT PAIR DU MONT,14340,14641,25,49.133333,0.033333,1.13
+ Saint-Paul-de-Courtonne ,SAINT PAUL DE COURTONNE,14290,14642,25,49.083333,0.383333,2.17
+ Saint-Paul-du-Vernay ,SAINT PAUL DU VERNAY,14490,14643,25,49.183333,-0.766667,1.25
+ Saint-Pierre-Azif ,SAINT PIERRE AZIF ,14950,14645,25,49.3,0.05,1.41
+ Saint-Pierre-Canivet ,SAINT PIERRE CANIVET ,14700,14646,25,48.933333,-0.216667,1.45
+ Saint-Pierre-de-Mailloc ,SAINT PIERRE DE MAILLOC,14290,14647,25,49.066667,0.316667,1.97
+ Saint-Pierre-des-ifs ,SAINT PIERRE DES IFS,14100,14648,25,49.116667,0.166667,1.52
+ Saint-Pierre-du-Bû ,SAINT PIERRE DU BU,14700,14649,25,48.866667,-0.216667,1.97
+ Saint-Pierre-du-Fresne ,SAINT PIERRE DU FRESNE,14260,14650,25,49.033333,-0.75,1.2
+ Saint-Pierre-du-Jonquet ,SAINT PIERRE DU JONQUET,14670,14651,25,49.166667,-0.116667,1.4
+ Saint-Pierre-du-Mont ,SAINT PIERRE DU MONT,14450,14652,25,49.4,-0.983333,2.19
+ Saint-Pierre-la-Vieille ,SAINT PIERRE LA VIEILLE,14770,14653,25,48.916667,-0.566667,1.58
+ Saint-Pierre-sur-Dives ,SAINT PIERRE SUR DIVES,14170,14654,25,49.016667,-0.033333,0.93
+ Saint-Pierre-Tarentaine ,SAINT PIERRE TARENTAINE ,14350,14655,25,48.966667,-0.8,1.35
+ Saint-Rémy ,SAINT REMY ,14570,14656,25,48.933333,-0.5,1.45
+ Saint-Samson ,SAINT SAMSON ,14670,14657,25,49.183333,-0.15,0.58
+ Saint-Sever-Calvados ,SAINT SEVER CALVADOS ,14380,14658,25,48.833333,-1.033333,2.23
+ Saint-Sylvain ,SAINT SYLVAIN ,14190,14659,25,49.05,-0.216667,0.65
+ Saint-Vaast-en-Auge ,SAINT VAAST EN AUGE,14640,14660,25,49.283333, ,1.28
+ Saint-Vaast-sur-Seulles ,SAINT VAAST SUR SEULLES,14250,14661,25,49.15,-0.633333,0.85
+ Saint-Vigor-des-Mézerets ,SAINT VIGOR DES MEZERETS,14770,14662,25,48.916667,-0.633333,1.58
+ Saint-Vigor-le-Grand ,SAINT VIGOR LE GRAND,14400,14663,25,49.283333,-0.683333,1.28
+ Sallen ,SALLEN ,14240,14664,25,49.116667,-0.833333,1.45
+ Sallenelles ,SALLENELLES ,14121,14665,25,49.266667,-0.233333,1.15
+ Sannerville ,SANNERVILLE ,14940,14666,25,49.183333,-0.216667,1
+ Saon ,SAON ,14330,14667,25,49.266667,-0.85,1.5
+ Saonnet ,SAONNET ,14330,14668,25,49.266667,-0.883333,1.59
+ Sassy ,SASSY ,14170,14669,25,48.983333,-0.133333,1.5
+ Secqueville-en-Bessin ,SECQUEVILLE EN BESSIN ,14740,14670,25,49.233333,-0.516667,0.89
+ Sept-Frères ,SEPT FRERES ,14380,14671,25,48.866667,-1.033333,2.04
+ Sept-vents ,SEPT VENTS ,14240,14672,25,49.083333,-0.816667,1.4
+ Sermentot ,SERMENTOT ,14240,14673,25,49.133333,-0.666667,1.64
+ Soignolles ,SOIGNOLLES ,14190,14674,25,49.033333,-0.216667,0.67
+ Soliers ,SOLIERS ,14540,14675,25,49.133333,-0.3,0.84
+ Sommervieu ,SOMMERVIEU ,14400,14676,25,49.3,-0.65,1.41
+ Soulangy ,SOULANGY ,14700,14677,25,48.95,-0.216667,1.32
+ Soumont-Saint-Quentin ,SOUMONT SAINT QUENTIN ,14420,14678,25,48.983333,-0.233333,1.11
+ Subles ,SUBLES ,14400,14679,25,49.233333,-0.75,1.2
+ Sully ,SULLY ,14400,14680,25,49.3,-0.733333,1.41
+ Surrain ,SURRAIN ,14710,14681,25,49.333333,-0.866667,1.67
+Surville, ,14130,14682,25,49.3,0.216667,1.67
+ Tailleville ,TAILLEVILLE ,14440,14683,25,49.3,-0.416667,1.41
+ Tessel ,TESSEL ,14250,14684,25,49.15,-0.583333,1.25
+ Thaon ,THAON ,14610,14685,25,49.266667,-0.45,1.21
+ Le Theil-en-Auge ,LE THEIL EN AUGE,14130,14687,25,49.35,0.25,1.8
+ Thiéville ,THIEVILLE ,14170,14688,25,49.033333,-0.016667,0.98
+ Thury-Harcourt ,THURY HARCOURT ,14220,14689,25,48.983333,-0.483333,1.06
+ Tierceville ,TIERCEVILLE ,14480,14690,25,49.283333,-0.533333,1.28
+ Tilly-la-Campagne ,TILLY LA CAMPAGNE ,14540,14691,25,49.116667,-0.3,0.55
+ Tilly-sur-Seulles ,TILLY SUR SEULLES ,14250,14692,25,49.183333,-0.616667,0.8
+ Tordouet ,TORDOUET ,14290,14693,25,49.05,0.333333,2.02
+ Le Torquesne ,LE TORQUESNE ,14130,14694,25,49.216667,0.166667,1.52
+ Tortisambert ,TORTISAMBERT ,14140,14696,25,48.966667,0.116667,1.37
+ Touffréville ,TOUFFREVILLE ,14940,14698,25,49.183333,-0.216667,1
+ Touques ,TOUQUES ,14800,14699,25,49.333333,0.1,1.67
+ Tour-en-Bessin ,TOUR EN BESSIN ,14400,14700,25,49.3,-0.783333,1.41
+ Tourgeville ,TOURGEVILLE ,14800,14701,25,49.316667,0.066667,1.57
+ Tournay-sur-Odon ,TOURNAY SUR ODON ,14310,14702,25,49.1,-0.583333,1.4
+ Tournebu ,TOURNEBU ,14220,14703,25,48.966667,-0.333333,1.6
+ Le Tourneur ,LE TOURNEUR ,14350,14704,25,48.966667,-0.816667,1.4
+ Tournières ,TOURNIERES ,14330,14705,25,49.233333,-0.933333,1.74
+ Tourville-en-Auge ,TOURVILLE EN AUGE ,14130,14706,25,49.316667,0.2,1.62
+ Tourville-sur-Odon ,TOURVILLE SUR ODON ,14210,14707,25,49.133333,-0.5,0.8
+ Tracy-Bocage ,TRACY BOCAGE ,14310,14708,25,49.066667,-0.683333,1
+ Tracy-sur-Mer ,TRACY SUR MER ,14117,14709,25,49.333333,-0.65,1.67
+ Tréprel ,TREPREL ,14690,14710,25,48.9,-0.35,1.71
+ Trévières ,TREVIERES ,14710,14711,25,49.316667,-0.9,1.64
+ Troarn ,TROARN ,14670,14712,25,49.183333,-0.183333,1.14
+ Trois-Monts ,TROIS MONTS ,14210,14713,25,49.05,-0.483333,1.21
+ Le Tronquay ,LE TRONQUAY ,14490,14714,25,49.233333,-0.816667,1.4
+ Trouville-sur-Mer ,TROUVILLE SUR MER ,14360,14715,25,49.366667,0.083333,1.93
+ Trungy ,TRUNGY ,14490,14716,25,49.2,-0.733333,1.52
+ Truttemer-le-Grand ,TRUTTEMER LE GRAND ,14500,14717,25,48.783333,-0.816667,2.62
+ Truttemer-le-Petit ,TRUTTEMER LE PETIT ,14500,14718,25,48.766667,-0.816667,2.75
+ Urville ,URVILLE ,14190,14719,25,49.033333,-0.3,1.43
+ Ussy ,USSY ,14420,14720,25,48.95,-0.283333,1.32
+ La Vacquerie ,LA VACQUERIE ,14240,14722,25,49.1,-0.85,1.5
+ Valsemé ,VALSEME ,14340,14723,25,49.233333,0.1,1.36
+ Varaville ,VARAVILLE ,14390,14724,25,49.25,-0.15,1.02
+ Vasouy ,VASOUY ,14600,14725,25,49.416667,0.183333,2.32
+ Vassy ,VASSY ,14410,14726,25,48.85,-0.666667,2.1
+ Vaubadon ,VAUBADON ,14490,14727,25,49.2,-0.833333,1.45
+ Vaucelles ,VAUCELLES ,14400,14728,25,49.283333,-0.733333,1.28
+ Vaudeloges ,VAUDELOGES ,14170,14729,25,48.95, ,1.32
+ Vaudry ,VAUDRY ,14500,14730,25,48.833333,-0.85,2.23
+ Vaux-sur-Aure ,VAUX SUR AURE ,14400,14732,25,49.3,-0.7,1.41
+ Vaux-sur-Seulles ,VAUX SUR SEULLES ,14400,14733,25,49.266667,-0.633333,1.24
+ Vendes ,VENDES ,14250,14734,25,49.15,-0.6,0.99
+ Vendeuvre ,VENDEUVRE ,14170,14735,25,48.983333,-0.083333,1.06
+ Versainville ,VERSAINVILLE ,14700,14737,25,48.916667,-0.183333,1.58
+ Verson ,VERSON ,14790,14738,25,49.15,-0.45,0.75
+ Ver-sur-Mer ,VER SUR MER ,14114,14739,25,49.333333,-0.533333,1.67
+ La Vespière ,LA VESPIERE ,14290,14740,25,49.016667,0.416667,2.27
+ Le Vey ,LE VEY ,14570,14741,25,48.916667,-0.466667,1.58
+ Vicques ,VICQUES ,14170,14742,25,48.95,-0.083333,1.32
+ Victot-Pontfol ,VICTOT PONTFOL ,14430,14743,25,49.166667,-0.016667,1.11
+ Vienne-en-Bessin ,VIENNE EN BESSIN ,14400,14744,25,49.283333,-0.6,1.75
+ Vierville-sur-Mer ,VIERVILLE SUR MER ,14710,14745,25,49.366667,-0.9,1.93
+ Viessoix ,VIESSOIX ,14410,14746,25,48.833333,-0.8,2.23
+ Vieux ,VIEUX ,14930,14747,25,49.1,-0.433333,1.34
+ Vieux Bourg ,VIEUX BOURG ,14130,14748,25,49.308333,0.25,-1
+ Vieux-Fumé ,VIEUX FUME ,14270,14749,25,49.05,-0.116667,1.15
+ Vignats ,VIGNATS ,14700,14751,25,48.85,-0.1,2.1
+ Villers-Bocage ,VILLERS BOCAGE ,14310,14752,25,49.083333,-0.65,0.9
+ Villers-Canivet ,VILLERS CANIVET ,14420,14753,25,48.933333,-0.25,1.45
+ Villers-sur-Mer ,VILLERS SUR MER ,14640,14754,25,49.316667, ,1.54
+ Villerville ,VILLERVILLE ,14113,14755,25,49.4,0.133333,2.19
+ La Villette ,LA VILLETTE ,14570,14756,25,48.916667,-0.55,1.58
+ Villiers-le-Sec ,VILLIERS LE SEC ,14480,14757,25,49.283333,-0.566667,1.28
+ Villons-les-Buissons ,VILLONS LES BUISSONS ,14610,14758,25,49.233333,-0.4,0.89
+ Villy-Bocage ,VILLY BOCAGE ,14310,14760,25,49.1,-0.633333,0.85
+ Vimont ,VIMONT ,14370,14761,25,49.116667,-0.2,1.03
+ Vire ,VIRE ,14500,14762,25,48.833333,-0.883333,2.23
+ Vouilly ,VOUILLY ,14230,14763,25,49.283333,-1,1.94
+ Quétiéville ,QUETIEVILLE ,14270,14901,25,49.1,-0.033333,0.93
+ Allanche ,ALLANCHE ,15160,15001,83,45.233333,2.933333,1.16
+ Alleuze ,ALLEUZE ,15100,15002,83,44.95,3.1,1.66
+ Andelat ,ANDELAT ,15100,15004,83,45.066667,3.066667,1.54
+ Anglards-de-Saint-Flour ,ANGLARDS DE SAINT FLOUR,15100,15005,83,44.983333,3.166667,1.9
+ Anglards-de-Salers ,ANGLARDS DE SALERS ,15380,15006,83,45.216667,2.45,1.17
+ Anterrieux ,ANTERRIEUX ,15110,15007,83,44.833333,3.066667,1.54
+ Antignac ,ANTIGNAC ,15240,15008,83,45.366667,2.55,1.98
+ Apchon ,APCHON ,15400,15009,83,45.266667,2.7,1.37
+ Arches ,ARCHES ,15200,15010,83,45.3,2.333333,1.57
+ Arnac ,ARNAC ,15150,15011,83,45.05,2.233333,1.47
+ Arpajon-sur-Cère ,ARPAJON SUR CERE ,15130,15012,83,44.9,2.466667,0.87
+ Auriac-l'Église ,AURIAC L EGLISE ,15500,15013,83,45.266667,3.133333,1.78
+ Aurillac ,AURILLAC ,15000,15014,83,44.916667,2.45,0.92
+ Auzers ,AUZERS ,15240,15015,83,45.266667,2.466667,1.37
+ Ayrens ,AYRENS ,15250,15016,83,44.983333,2.333333,1.11
+ Badailhac ,BADAILHAC ,15800,15017,83,44.916667,2.633333,0.77
+ Barriac-les-Bosquets ,BARRIAC LES BOSQUETS ,15700,15018,83,45.15,2.266667,1.35
+ Bassignac ,BASSIGNAC ,15240,15019,83,45.316667,2.416667,1.67
+ Bonnac ,BONNAC ,15500,15022,83,45.216667,3.166667,1.9
+ Bournoncles ,BOURNONCLES ,15390,15023,83,44.933333,3.216667,2.08
+ Brageac ,BRAGEAC ,15700,15024,83,45.216667,2.3,1.23
+ Albepierre-Bredons ,ALBEPIERRE BREDONS ,15300,15025,83,45.1,2.883333,0.88
+ Brezons ,BREZONS ,15230,15026,83,44.966667,2.816667,0.74
+ Calvinet ,CALVINET ,15340,15027,83,44.716667,2.366667,1.99
+ Carlat ,CARLAT ,15130,15028,83,44.883333,2.566667,0.97
+ Cassaniouze ,CASSANIOUZE ,15340,15029,83,44.683333,2.383333,2.19
+ Cayrols ,CAYROLS ,15290,15030,83,44.833333,2.233333,1.47
+ Celles ,CELLES ,15170,15031,83,45.116667,2.966667,1.18
+ Celoux ,CELOUX ,15500,15032,83,45.15,3.266667,2.26
+ Cézens ,CEZENS ,15230,15033,83,44.983333,2.866667,1.33
+ Chaliers ,CHALIERS ,15320,15034,83,44.95,3.233333,2.14
+ Chalinargues ,CHALINARGUES ,15170,15035,83,45.15,2.933333,1.44
+ Chalvignac ,CHALVIGNAC ,15200,15036,83,45.25,2.25,1.97
+ Champagnac ,CHAMPAGNAC ,15350,15037,83,45.35,2.4,1.88
+ Chanterelle ,CHANTERELLE ,15190,15040,83,45.383333,2.833333,2.08
+ La Chapelle-d'Alagnon ,LA CHAPELLE D ALAGNON,15300,15041,83,45.1,2.9,0.94
+ Charmensac ,CHARMENSAC ,15500,15043,83,45.216667,3.083333,1.6
+ Chastel-sur-Murat ,CHASTEL SUR MURAT ,15300,15044,83,45.116667,2.866667,0.82
+ Chaudes-Aigues ,CHAUDES AIGUES ,15110,15045,83,44.85,3,1.3
+ Chaussenac ,CHAUSSENAC ,15700,15046,83,45.183333,2.283333,1.29
+ Cheylade ,CHEYLADE ,15400,15049,83,45.233333,2.733333,1.19
+ Le Claux ,LE CLAUX ,15400,15050,83,45.166667,2.716667,1.65
+ Clavières ,CLAVIERES ,15320,15051,83,45.25,2.433333,1.5
+ Collandres ,COLLANDRES ,15400,15052,83,45.25,2.666667,1.27
+ Coltines ,COLTINES ,15170,15053,83,45.1,2.983333,1.24
+ Coren ,COREN ,15100,15055,83,45.083333,3.1,1.66
+ Cros-de-Montvert ,CROS DE MONTVERT ,15150,15057,83,45.066667,2.15,1.77
+ Cros-de-Ronesque ,CROS DE RONESQUE ,15130,15058,83,44.866667,2.616667,1.24
+ Cussac ,CUSSAC ,15430,15059,83,44.983333,2.933333,1.06
+ Deux-Verges ,DEUX VERGES ,15110,15060,83,44.8,3.033333,1.48
+ Dienne ,DIENNE ,15300,15061,83,45.166667,2.783333,1.56
+ Drignac ,DRIGNAC ,15700,15062,83,45.166667,2.358333,-1
+ Drugeac ,DRUGEAC ,15140,15063,83,45.166667,2.383333,-1
+ Escorailles ,ESCORAILLES ,15700,15064,83,45.166667,2.333333,1.11
+ Le Falgoux ,LE FALGOUX ,15380,15066,83,45.15,2.616667,1.46
+ Le Fau ,LE FAU ,15140,15067,83,45.1,2.583333,1.86
+ Faverolles ,FAVEROLLES ,15390,15068,83,44.933333,3.166667,1.9
+ Ferrières-Saint-Mary ,FERRIERES SAINT MARY ,15170,15069,83,45.183333,3.066667,1.54
+ Fontanges ,FONTANGES ,15140,15070,83,45.116667,2.516667,0.95
+ Fournoulès ,FOURNOULES ,15600,15071,83,44.666667,2.283333,2.29
+ Giou-de-Mamou ,GIOU DE MAMOU ,15130,15074,83,44.933333,2.516667,0.69
+ Girgols ,GIRGOLS ,15310,15075,83,45.033333,2.416667,0.81
+ Glénat ,GLENAT ,15150,15076,83,44.9,2.183333,1.65
+ Gourdièges ,GOURDIEGES ,15230,15077,83,44.933333,2.883333,1.14
+ Jabrun ,JABRUN ,15110,15078,83,44.8,2.966667,1.48
+ Jaleyrac ,JALEYRAC ,15200,15079,83,45.266667,2.383333,1.37
+ Jou-sous-Monjou ,JOU SOUS MONJOU ,15800,15081,83,44.933333,2.666667,0.66
+ Junhac ,JUNHAC ,15120,15082,83,44.7,2.466667,2.09
+ Jussac ,JUSSAC ,15250,15083,83,44.983333,2.433333,0.75
+ Labesserette ,LABESSERETTE ,15120,15084,83,44.733333,2.483333,1.88
+ Labrousse ,LABROUSSE ,15130,15085,83,44.85,2.55,1.17
+ Lacapelle-Barrès ,LACAPELLE BARRES ,15230,15086,83,44.933333,2.733333,1.63
+ Lacapelle-Viescamp ,LACAPELLE VIESCAMP ,15150,15088,83,44.916667,2.266667,1.44
+ Ladinhac ,LADINHAC ,15120,15089,83,44.75,2.516667,1.78
+ Lafeuillade-en-Vézie ,LAFEUILLADE EN VEZIE ,15130,15090,83,44.783333,2.466667,1.58
+ Landeyrat ,LANDEYRAT ,15160,15091,83,45.3,2.883333,1.57
+ Lanobre ,LANOBRE ,15270,15092,83,45.433333,2.533333,2.38
+ Lapeyrugue ,LAPEYRUGUE ,15120,15093,83,44.716667,2.55,1.99
+ Laroquebrou ,LAROQUEBROU ,15150,15094,83,44.966667,2.2,1.59
+ Lascelle ,LASCELLE ,15590,15096,83,45.016667,2.583333,0.42
+ Laurie ,LAURIE ,15500,15098,83,45.283333,3.1,1.66
+ Lavastrie ,LAVASTRIE ,15260,15099,83,44.933333,3.05,1.48
+ Laveissenet ,LAVEISSENET ,15300,15100,83,45.083333,2.9,0.94
+ Laveissière ,LAVEISSIERE ,15300,15101,83,45.116667,2.816667,0.83
+ Lavigerie ,LAVIGERIE ,15300,15102,83,45.133333,2.766667,1.66
+ Leucamp ,LEUCAMP ,15120,15103,83,44.766667,2.533333,1.68
+ Leynhac ,LEYNHAC ,15600,15104,83,44.733333,2.3,1.88
+ Leyvaux ,LEYVAUX ,43450,15105,83,45.316667,3.083333,1.71
+ Lieutadès ,LIEUTADES ,15110,15106,83,44.833333,2.9,1.59
+ Lorcières ,LORCIERES ,15320,15107,83,44.866667,3.266667,2.26
+ Loubaresse ,LOUBARESSE ,15390,15108,83,44.933333,3.233333,2.14
+ Loupiac ,LOUPIAC ,15700,15109,83,45.116667,2.35,1.27
+ Lugarde ,LUGARDE ,15190,15110,83,45.3,2.766667,1.57
+ Madic ,MADIC ,15210,15111,83,45.383333,2.466667,2.08
+ Malbo ,MALBO ,15230,15112,83,44.966667,2.75,1.51
+ Marcenat ,MARCENAT ,15190,15114,83,45.316667,2.833333,1.67
+ Marchal ,MARCHAL ,15270,15115,83,45.416667,2.633333,2.28
+ Marchastel ,MARCHASTEL ,15400,15116,83,45.3,2.733333,1.57
+ Marcolès ,MARCOLES ,15220,15117,83,44.783333,2.35,1.58
+ Marmanhac ,MARMANHAC ,15250,15118,83,45,2.483333,1.6
+ Massiac ,MASSIAC ,15500,15119,83,45.25,3.216667,2.08
+ Mauriac ,MAURIAC ,15200,15120,83,45.216667,2.333333,1.11
+ Maurines ,MAURINES ,15110,15121,83,44.866667,3.1,1.66
+ Maurs ,MAURS ,15600,15122,83,44.716667,2.2,1.99
+ Méallet ,MEALLET ,15200,15123,83,45.25,2.433333,1.43
+ Menet ,MENET ,15400,15124,83,45.316667,2.583333,1.67
+ Mentières ,MENTIERES ,15100,15125,83,45.066667,3.133333,-1
+ Molèdes ,MOLEDES ,15500,15126,83,45.266667,3.05,1.64
+ Molompize ,MOLOMPIZE ,15500,15127,83,45.233333,3.133333,1.78
+ La Monselie ,LA MONSELIE ,15240,15128,83,45.333333,2.55,1.77
+ Montboudif ,MONTBOUDIF ,15190,15129,83,45.383333,2.75,2.08
+ Montchamp ,MONTCHAMP ,15100,15130,83,45.066667,3.2,2.02
+ Montgreleix ,MONTGRELEIX ,15190,15132,83,45.366667,2.883333,1.98
+ Montmurat ,MONTMURAT ,15600,15133,83,44.633333,2.2,2.49
+ Montsalvy ,MONTSALVY ,15120,15134,83,44.7,2.5,2.09
+ Montvert ,MONTVERT ,15150,15135,83,44.983333,2.15,1.77
+ Mourjou ,MOURJOU ,15340,15136,83,44.683333,2.333333,2.19
+ Moussages ,MOUSSAGES ,15380,15137,83,45.233333,2.483333,1.16
+ Murat ,MURAT ,15300,15138,83,45.116667,2.866667,0.82
+ Narnhac ,NARNHAC ,15230,15139,83,44.916667,2.8,0.77
+ Naucelles ,NAUCELLES ,15000,15140,83,44.95,2.433333,0.75
+ Neussargues-Moissac ,NEUSSARGUES MOISSAC ,15170,15141,83,45.133333,2.983333,1.24
+ Neuvéglise ,NEUVEGLISE ,15260,15142,83,44.933333,2.983333,1.24
+ Nieudan ,NIEUDAN ,15150,15143,83,44.983333,2.25,1.41
+ Omps ,OMPS ,15290,15144,83,44.866667,2.283333,1.84
+ Oradour ,ORADOUR ,15260,15145,83,44.916667,2.95,1.2
+ Pailherols ,PAILHEROLS ,15800,15146,83,44.95,2.683333,0.95
+ Parlan ,PARLAN ,15290,15147,83,44.833333,2.166667,1.71
+ Paulhenc ,PAULHENC ,15230,15149,83,44.866667,2.833333,1.13
+ Pers ,PERS ,15290,15150,83,44.883333,2.233333,1.47
+ Peyrusse ,PEYRUSSE ,15170,15151,83,45.2,3.033333,1.42
+ Pierrefort ,PIERREFORT ,15230,15152,83,44.916667,2.833333,0.77
+ Pléaux ,PLEAUX ,15700,15153,83,45.133333,2.233333,1.47
+ Polminhac ,POLMINHAC ,15800,15154,83,44.95,2.566667,1.77
+ Pradiers ,PRADIERS ,15160,15155,83,45.266667,2.933333,1.37
+ Prunet ,PRUNET ,15130,15156,83,44.816667,2.466667,1.38
+ Quézac ,QUEZAC ,15600,15157,83,44.733333,2.183333,1.88
+ Rageade ,RAGEADE ,15500,15158,83,45.1,3.283333,2.32
+ Raulhac ,RAULHAC ,15800,15159,83,44.9,2.666667,1.14
+ Reilhac ,REILHAC ,15250,15160,83,44.966667,2.433333,0.75
+ Rézentières ,REZENTIERES ,15170,15161,83,45.133333,3.116667,1.72
+ Riom-ès-Montagne ,RIOM ES MONTAGNE ,15400,15162,83,45.283333,2.666667,1.47
+ Roannes-Saint-Mary ,ROANNES SAINT MARY ,15220,15163,83,44.85,2.4,1.27
+ Roffiac ,ROFFIAC ,15100,15164,83,45.05,3.033333,1.42
+ Rouffiac ,ROUFFIAC ,15150,15165,83,45.016667,2.15,1.77
+ Roumégoux ,ROUMEGOUX ,15290,15166,83,44.85,2.2,1.59
+ Rouziers ,ROUZIERS ,15600,15167,83,44.783333,2.216667,1.58
+ Saignes ,SAIGNES ,15240,15169,83,45.333333,2.483333,1.77
+ Saint-Amandin ,SAINT AMANDIN ,15190,15170,83,45.366667,2.7,1.98
+ Sainte-Anastasie ,SAINTE ANASTASIE ,15170,15171,83,45.166667,2.983333,1.24
+ Saint-Antoine ,SAINT ANTOINE ,15220,15172,83,44.75,2.333333,1.78
+ Saint-Bonnet-de-Condat ,SAINT BONNET DE CONDAT,15190,15173,83,45.3,2.8,1.57
+ Saint-Bonnet-de-Salers ,SAINT BONNET DE SALERS,15140,15174,83,45.166667,2.466667,0.76
+ Saint-Cernin ,SAINT CERNIN ,15310,15175,83,45.05,2.433333,0.9
+ Saint-Chamant ,SAINT CHAMANT ,15140,15176,83,45.083333,2.45,0.69
+ Saint-Christophe-les-Gorges ,SAINT CHRISTOPHE LES GORGES,15700,15177,83,45.1,2.3,1.23
+ Saint-Cirgues-de-Jordanne ,SAINT CIRGUES DE JORDANNE,15590,15178,83,45.033333,2.583333,0.26
+ Saint-Cirgues-de-Malbert ,SAINT CIRGUES DE MALBERT,15140,15179,83,45.066667,2.383333,1.07
+ Saint-Clément ,SAINT CLEMENT ,15800,15180,83,44.966667,2.666667,0.78
+ Saint-Constant ,SAINT CONSTANT ,15600,15181,83,44.683333,2.233333,2.19
+ Saint-Étienne-Cantalès ,SAINT ETIENNE CANTALES ,15150,15182,83,44.95,2.233333,1.47
+ Saint-Étienne-de-Carlat ,SAINT ETIENNE DE CARLAT,15130,15183,83,44.9,2.583333,0.88
+ Saint-Étienne-de-Maurs ,SAINT ETIENNE DE MAURS,15600,15184,83,44.7,2.2,2.09
+ Saint-Étienne-de-Chomeil ,SAINT ETIENNE DE CHOMEIL,15400,15185,83,45.366667,2.6,1.98
+ Sainte-Eulalie ,SAINTE EULALIE ,15140,15186,83,45.116667,2.383333,0.93
+ Saint-Georges ,SAINT GEORGES ,15100,15188,83,45.01965,3.12792,-1
+ Saint-Gérons ,SAINT GERONS ,15150,15189,83,44.95,2.216667,1.53
+ Saint-Illide ,SAINT ILLIDE ,15310,15191,83,45.066667,2.316667,1.95
+ Saint-Jacques-des-Blats ,SAINT JACQUES DES BLATS,15580,15192,83,45.05,2.7,0.22
+ Saint-Julien-de-Jordanne ,SAINT JULIEN DE JORDANNE,15590,15193,83,45.066667,2.65,1.92
+ Saint-Julien-de-Toursac ,SAINT JULIEN DE TOURSAC,15600,15194,83,44.766667,2.2,1.68
+ Saint-Mamet-la-Salvetat ,SAINT MAMET LA SALVETAT,15220,15196,83,44.85,2.3,1.23
+ Saint-Marc ,SAINT MARC ,15390,15197,83,44.9,3.2,2.02
+ Sainte-Marie ,SAINTE MARIE ,15230,15198,83,44.866667,2.883333,1.58
+ Saint-Martial ,SAINT MARTIAL ,15110,15199,83,44.866667,3.066667,1.54
+ Saint-Martin-Cantalès ,SAINT MARTIN CANTALES ,15140,15200,83,45.1,2.3,1.99
+ Saint-Martin-sous-Vigouroux ,SAINT MARTIN SOUS VIGOUROUX,15230,15201,83,44.916667,2.816667,0.77
+ Saint-Martin-Valmeroux ,SAINT MARTIN VALMEROUX ,15140,15202,83,45.116667,2.416667,0.81
+ Saint-Mary-le-Plain ,SAINT MARY LE PLAIN,15500,15203,83,45.183333,3.166667,1.9
+ Saint-Paul-des-Landes ,SAINT PAUL DES LANDES,15250,15204,83,44.933333,2.316667,1.49
+ Saint-Paul-de-Salers ,SAINT PAUL DE SALERS,15140,15205,83,45.133333,2.516667,0.98
+ Saint-Pierre ,SAINT PIERRE ,15350,15206,83,45.383333,2.383333,2.08
+ Saint-Poncy ,SAINT PONCY ,15500,15207,83,45.166667,3.183333,1.96
+ Saint-Projet-de-Salers ,SAINT PROJET DE SALERS,15140,15208,83,45.083333,2.533333,1.25
+ Saint-Rémy-de-Chaudes-Aigues ,SAINT REMY DE CHAUDES,15110,15209,83,44.766667,3.05,1.68
+ Saint-Rémy-de-Salers ,SAINT REMY DE SALERS,15140,15210,83,45.116667,2.466667,0.63
+ Saint-Santin-Cantalès ,SAINT SANTIN CANTALES ,15150,15211,83,45.05,2.25,1.41
+ Saint-Santin-de-Maurs ,SAINT SANTIN DE MAURS,15600,15212,83,44.65,2.216667,2.39
+ Saint-Saturnin ,SAINT SATURNIN ,15190,15213,83,45.283333,2.8,1.47
+ Saint-Saury ,SAINT SAURY ,15290,15214,83,44.866667,2.166667,1.71
+ Saint-Simon ,SAINT SIMON ,15130,15215,83,44.966667,2.483333,1.17
+ Saint-Urcize ,SAINT URCIZE ,15110,15216,83,44.683333,3.016667,2.19
+ Salers ,SALERS ,15140,15219,83,45.133333,2.5,0.77
+ Salins ,SALINS ,15200,15220,83,45.2,2.4,1.23
+ Sansac-de-Marmiesse ,SANSAC DE MARMIESSE ,15130,15221,83,44.883333,2.35,2.01
+ Sansac-Veinazés ,SANSAC VEINAZES ,15120,15222,83,44.733333,2.466667,1.88
+ Sauvat ,SAUVAT ,15240,15223,83,45.316667,2.45,1.67
+ La Ségalassière ,LA SEGALASSIERE ,15290,15224,83,44.883333,2.2,1.59
+ Ségur-les-Villas ,SEGUR LES VILLAS ,15300,15225,83,45.25,2.833333,2.2
+ Sénezergues ,SENEZERGUES ,15340,15226,83,44.7,2.433333,2.09
+ Sériers ,SERIERS ,15100,15227,83,44.966667,3.05,1.48
+ Siran ,SIRAN ,15150,15228,83,44.95,2.133333,1.83
+ Soulages ,SOULAGES ,15100,15229,83,45.283333,2.833333,2.32
+ Sourniac ,SOURNIAC ,15200,15230,83,45.283333,2.35,1.47
+ Talizat ,TALIZAT ,15170,15231,83,45.116667,3.05,1.48
+ Tanavelle ,TANAVELLE ,15100,15232,83,45.016667,3,1.3
+ Teissières-de-Cornet ,TEISSIERES DE CORNET ,15250,15233,83,44.966667,2.366667,0.99
+ Thiézac ,THIEZAC ,15450,15236,83,45.016667,2.666667,0.16
+ Tiviers ,TIVIERS ,15100,15237,83,45.066667,3.166667,1.9
+ Tournemire ,TOURNEMIRE ,15310,15238,83,45.05,2.416667,0.81
+ Tourniac ,TOURNIAC ,15700,15239,83,45.2,2.216667,1.56
+ Trémouille ,TREMOUILLE ,15270,15240,83,45.383333,2.683333,2.08
+ La Trinitat ,LA TRINITAT ,15110,15241,83,44.733333,2.95,1.88
+ Le Trioulou ,LE TRIOULOU ,15600,15242,83,44.666667,2.183333,2.29
+ Trizac ,TRIZAC ,15400,15243,83,45.266667,2.533333,1.6
+ Ussel ,USSEL ,15300,15244,83,45.083333,2.933333,1.26
+ Valette ,VALETTE ,15400,15246,83,45.283333,2.6,1.47
+ Valjouze ,VALJOUZE ,15170,15247,83,45.166667,3.066667,1.54
+ Valuéjols ,VALUEJOLS ,15300,15248,83,45.05,2.933333,1.6
+ Le Vaulmier ,LE VAULMIER ,15380,15249,83,45.2,2.566667,0.96
+ Védrines-Saint-Loup ,VEDRINES SAINT LOUP ,15100,15251,83,45.066667,3.283333,2.32
+ Velzic ,VELZIC ,15590,15252,83,45,2.55,1.41
+ Vernols ,VERNOLS ,15160,15253,83,45.233333,2.9,1.16
+ Veyrières ,VEYRIERES ,15350,15254,83,45.333333,2.383333,1.77
+ Véze ,VEZE ,15160,15256,83,45.266667,3,1.7
+ Vezels-Roussy ,VEZELS ROUSSY ,15130,15257,83,44.8,2.583333,1.48
+ Vic-sur-Cère ,VIC SUR CERE ,15800,15258,83,44.983333,2.616667,1.12
+ Vieillespesse ,VIEILLESPESSE ,15500,15259,83,45.116667,3.15,1.84
+ Vieillevie ,VIEILLEVIE ,15120,15260,83,44.633333,2.433333,2.49
+ Le Vigean ,LE VIGEAN ,15200,15261,83,45.233333,2.366667,1.16
+ Villedieu ,VILLEDIEU ,15100,15262,83,45,3.066667,1.54
+ Virargues ,VIRARGUES ,15300,15263,83,45.133333,2.916667,1
+ Ydes ,YDES ,15210,15265,83,45.333333,2.466667,1.77
+ Yolet ,YOLET ,15130,15266,83,44.933333,2.533333,0.73
+ Ytrac ,YTRAC ,15000,15267,83,44.916667,2.366667,1.35
+ Le Rouget ,LE ROUGET ,15290,15268,83,44.85,2.233333,1.47
+ Besse ,BESSE ,15140,15269,83,45.1,2.35,1.32
+ Abzac ,ABZAC ,16500,16001,54,46.1,0.7,2.48
+ Agris ,AGRIS ,16110,16003,54,45.783333,0.333333,1.06
+ Aignes-et-Puypéroux ,AIGNES ET PUYPEROUX ,16190,16004,54,45.45,0.15,1.4
+ Aigre ,AIGRE ,16140,16005,54,45.9,0.016667,1.02
+ Aizecq ,AIZECQ ,16700,16006,54,45.983333,0.283333,1.46
+ Alloué ,ALLOUE ,16490,16007,54,46.033333,0.516667,1.73
+ Ambérac ,AMBERAC ,16140,16008,54,45.85,0.066667,1.15
+ Ambernac ,AMBERNAC ,16490,16009,54,45.983333,0.533333,1.73
+ Ambleville ,AMBLEVILLE ,16300,16010,54,45.55,-0.216667,1.65
+ Angeac-Champagne ,ANGEAC CHAMPAGNE ,16130,16012,54,45.6,-0.3,2.03
+ Angeac-Charente ,ANGEAC CHARENTE ,16120,16013,54,45.633333,-0.066667,0.97
+ Angeduc ,ANGEDUC ,16300,16014,54,45.483333,-0.05,1.4
+ Angoulême ,ANGOULEME ,16000,16015,54,45.65,0.15,0.33
+ Ansac-sur-Vienne ,ANSAC SUR VIENNE ,16500,16016,54,46,0.65,2.26
+ Anville ,ANVILLE ,16170,16017,54,45.833333,-0.1,1.12
+ Ars ,ARS ,16130,16018,54,45.65,-0.383333,2.4
+ Asnières-sur-Nouère ,ASNIERES SUR NOUERE ,16290,16019,54,45.716667,0.05,1.36
+ Aubeterre-sur-Dronne ,AUBETERRE SUR DRONNE ,16390,16020,54,45.266667,0.166667,2.39
+ Aubeville ,AUBEVILLE ,16250,16021,54,45.5,-0.016667,1.13
+ Auge ,AUGE ,16170,16022,54,45.85,-0.1,1.15
+ Aunac ,AUNAC ,16460,16023,54,45.916667,0.25,1.11
+ Baignes-Sainte-Radegonde ,BAIGNES SAINTE RADEGONDE ,16360,16025,54,45.383333,-0.233333,1.76
+ Balzac ,BALZAC ,16430,16026,54,45.7,0.116667,0.79
+ Barbezières ,BARBEZIERES ,16140,16027,54,45.916667,-0.083333,1.3
+ Bardenac ,BARDENAC ,16210,16029,54,45.3,-0.016667,2.21
+ Barret ,BARRET ,16300,16030,54,45.483333,-0.2,1.58
+ Barro ,BARRO ,16700,16031,54,46,0.216667,1.55
+ Bassac ,BASSAC ,16120,16032,54,45.666667,-0.1,1.39
+ Bayers ,BAYERS ,16460,16033,54,45.916667,0.233333,1.11
+ Bazac ,BAZAC ,16210,16034,54,45.216667,0.05,2.66
+ Beaulieu-sur-Sonnette ,BEAULIEU SUR SONNETTE ,16450,16035,54,45.933333,0.383333,1.56
+ Bécheresse ,BECHERESSE ,16250,16036,54,45.5,0.083333,1.13
+ Bellon ,BELLON ,16210,16037,54,45.3,0.116667,2.21
+ Benest ,BENEST ,16350,16038,54,46.033333,0.45,1.73
+ Bernac ,BERNAC ,16700,16039,54,46.033333,0.166667,1.73
+ Bessac ,BESSAC ,16250,16041,54,45.433333,-0.033333,1.49
+ Bessé ,BESSE ,16140,16042,54,45.95,0.066667,1.28
+ Bignac ,BIGNAC ,16170,16043,54,45.8,0.066667,1.86
+ Bioussac ,BIOUSSAC ,16700,16044,54,46.033333,0.283333,1.73
+ Birac ,BIRAC ,16120,16045,54,45.566667,-0.066667,0.97
+ Boisbreteau ,BOISBRETEAU ,16480,16048,54,45.316667,-0.15,2.12
+ Bonneuil ,BONNEUIL ,16120,16050,54,45.583333,-0.133333,1.27
+ Bonneville ,BONNEVILLE ,16170,16051,54,45.833333,-0.033333,0.82
+ Le Bouchage ,LE BOUCHAGE ,16350,16054,54,46.05,0.383333,1.82
+ Bouëx ,BOUEX ,16410,16055,54,45.616667,0.316667,0.93
+ Bourg-Charente ,BOURG CHARENTE ,16200,16056,54,45.666667,-0.233333,1.73
+ Bouteville ,BOUTEVILLE ,16120,16057,54,45.6,-0.133333,1.27
+ Boutiers-Saint-Trojan ,BOUTIERS SAINT TROJAN ,16100,16058,54,45.716667,-0.3,2.03
+ Brettes ,BRETTES ,16240,16059,54,46,0.033333,1.55
+ Bréville ,BREVILLE ,16370,16060,54,45.8,-0.266667,1.88
+ Brie-sous-Barbezieux ,BRIE SOUS BARBEZIEUX ,16300,16062,54,45.433333,-0.033333,1.72
+ Brie-sous-Chalais ,BRIE SOUS CHALAIS ,16210,16063,54,45.316667, ,2.12
+ Brigueuil ,BRIGUEUIL ,16420,16064,54,45.95308,0.85879,-1
+ Brillac ,BRILLAC ,16500,16065,54,46.066667,0.783333,2.86
+ Brossac ,BROSSAC ,16480,16066,54,45.333333,-0.05,2.03
+ Bunzac ,BUNZAC ,16110,16067,54,45.7,0.35,0.9
+ Cellefrouin ,CELLEFROUIN ,16260,16068,54,45.9,0.383333,1.05
+ Cellettes ,CELLETTES ,16230,16069,54,45.866667,0.15,0.84
+ Chabanais ,CHABANAIS ,16150,16070,54,45.866667,0.716667,2.56
+ Chabrac ,CHABRAC ,16150,16071,54,45.933333,0.733333,2.63
+ Chadurie ,CHADURIE ,16250,16072,54,45.5,0.133333,1.62
+ Challignac ,CHALLIGNAC ,16300,16074,54,45.416667,-0.083333,1.58
+ Champagne-Mouton ,CHAMPAGNE MOUTON ,16350,16076,54,45.983333,0.416667,1.46
+ Champmillon ,CHAMPMILLON ,16290,16077,54,45.633333, ,1.13
+ Champniers ,CHAMPNIERS ,16430,16078,54,45.716667,0.2,1.47
+ Chantillac ,CHANTILLAC ,16360,16079,54,45.333333,-0.25,2.03
+ La Chapelle ,LA CHAPELLE ,16140,16081,54,45.85,0.033333,0.89
+ Charmant ,CHARMANT ,16320,16082,54,45.5,0.183333,1.29
+ Charmé ,CHARME ,16140,16083,54,45.95,0.116667,1.61
+ Charras ,CHARRAS ,16380,16084,54,45.533333,0.416667,1.22
+ Chassenon ,CHASSENON ,16150,16086,54,45.85,0.766667,2.78
+ Chassiecq ,CHASSIECQ ,16350,16087,54,45.95,0.383333,1.28
+ Chassors ,CHASSORS ,16200,16088,54,45.7,-0.216667,1.65
+ Châteauneuf-sur-Charente ,CHATEAUNEUF SUR CHARENTE ,16120,16090,54,45.6,-0.05,0.9
+ Châtignac ,CHATIGNAC ,16480,16091,54,45.35, ,1.94
+ Chavenat ,CHAVENAT ,16320,16092,54,45.45,0.166667,1.53
+ Chazelles ,CHAZELLES ,16380,16093,54,45.65,0.366667,1.72
+ Chenommet ,CHENOMMET ,16460,16094,54,45.933333,0.25,1.19
+ Chenon ,CHENON ,16460,16095,54,45.95,0.25,1.28
+ Cherves-Châtelars ,CHERVES CHATELARS ,16310,16096,54,45.8,0.55,1.81
+ La Chèvrerie ,LA CHEVRERIE ,16240,16098,54,46.033333,0.133333,1.73
+ Chillac ,CHILLAC ,16480,16099,54,45.366667,-0.083333,1.85
+ Chirac ,CHIRAC ,16150,16100,54,45.916667,0.65,2.26
+ Claix ,CLAIX ,16440,16101,54,45.55,0.05,0.87
+ Cognac ,COGNAC ,16100,16102,54,45.7,-0.333333,2.18
+ Combiers ,COMBIERS ,16320,16103,54,45.5,0.416667,1.93
+ Condac ,CONDAC ,16700,16104,54,46.016667,0.233333,1.64
+ Condéon ,CONDEON ,16360,16105,54,45.4,-0.133333,1.67
+ Confolens ,CONFOLENS ,16500,16106,54,46.016667,0.666667,2.33
+ Coulgens ,COULGENS ,16560,16107,54,45.816667,0.283333,1.2
+ Courbillac ,COURBILLAC ,16200,16109,54,45.766667,-0.166667,1.43
+ Courcôme ,COURCOME ,16240,16110,54,45.983333,0.133333,1.46
+ Courgeac ,COURGEAC ,16190,16111,54,45.4,0.083333,1.67
+ Courlac ,COURLAC ,16210,16112,54,45.3,0.083333,2.21
+ La Couronne ,LA COURONNE ,16400,16113,54,45.616667,0.1,1.26
+ Couture ,COUTURE ,16460,16114,54,45.933333,0.283333,1.19
+ Criteuil-la-Magdeleine ,CRITEUIL LA MAGDELEINE ,16300,16116,54,45.533333,-0.216667,1.65
+ Curac ,CURAC ,16210,16117,54,45.3,0.033333,2.21
+ Deviat ,DEVIAT ,16190,16118,54,45.416667,0.016667,1.58
+ Dignac ,DIGNAC ,16410,16119,54,45.55,0.283333,0.87
+ Dirac ,DIRAC ,16410,16120,54,45.6,0.25,0.6
+ Douzat ,DOUZAT ,16290,16121,54,45.716667, ,1
+ Ébréon ,EBREON ,16140,16122,54,45.933333,0.033333,1.19
+ Échallat ,ECHALLAT ,16170,16123,54,45.716667,-0.033333,1.17
+ Écuras ,ECURAS ,16220,16124,54,45.683333,0.566667,1.88
+ Édon ,EDON ,16320,16125,54,45.483333,0.35,1.22
+ Embourie ,EMBOURIE ,16240,16126,54,46.033333,0.033333,1.73
+ Empuré ,EMPURE ,16240,16127,54,46.016667,0.05,1.64
+ Épenède ,EPENEDE ,16490,16128,54,46.066667,0.533333,1.91
+ Éraville ,ERAVILLE ,16120,16129,54,45.583333,-0.083333,1.05
+ Esse ,ESSE ,16500,16131,54,46.033333,0.716667,2.56
+ Étagnac ,ETAGNAC ,16150,16132,54,45.9,0.783333,2.86
+ Étriac ,ETRIAC ,16250,16133,54,45.533333,-0.016667,1.06
+ Exideuil ,EXIDEUIL ,16150,16134,54,45.883333,0.683333,2.41
+ Eymouthiers ,EYMOUTHIERS ,16220,16135,54,45.65,0.55,1.81
+ La Faye ,LA FAYE ,16700,16136,54,46.016667,0.15,1.64
+ Feuillade ,FEUILLADE ,16380,16137,54,45.6,0.466667,1.43
+ Fléac ,FLEAC ,16730,16138,54,45.666667,0.1,1.27
+ Fleurac ,FLEURAC ,16200,16139,54,45.716667,-0.083333,1.55
+ Fontclaireau ,FONTCLAIREAU ,16230,16140,54,45.883333,0.2,0.93
+ Fontenille ,FONTENILLE ,16230,16141,54,45.916667,0.166667,1.11
+ La Forêt-de-Tessé ,LA FORET DE TESSE,16240,16142,54,46.083333,0.083333,2
+ Fouquebrune ,FOUQUEBRUNE ,16410,16143,54,45.533333,0.2,1.69
+ Fouqueure ,FOUQUEURE ,16140,16144,54,45.883333,0.066667,0.93
+ Foussignac ,FOUSSIGNAC ,16200,16145,54,45.716667,-0.116667,1.2
+ Garat ,GARAT ,16410,16146,54,45.633333,0.266667,0.85
+ Gardes-le-Pontaroux ,GARDES LE PONTAROUX ,16320,16147,54,45.5,0.333333,1.13
+ Genac ,GENAC ,16170,16148,54,45.8,0.033333,1.35
+ Genouillac ,GENOUILLAC ,16270,16149,54,45.85,0.566667,1.88
+ Gensac-la-Pallue ,GENSAC LA PALLUE ,16130,16150,54,45.65,-0.25,1.8
+ Genté ,GENTE ,16130,16151,54,45.616667,-0.316667,2.1
+ Gimeux ,GIMEUX ,16130,16152,54,45.633333,-0.366667,2.33
+ Gondeville ,GONDEVILLE ,16200,16153,54,45.666667,-0.15,1.35
+ Les Gours ,LES GOURS ,16140,16155,54,45.966667,-0.066667,1.37
+ Gourville ,GOURVILLE ,16170,16156,54,45.833333,-0.016667,0.88
+ Le Grand-Madieu ,LE GRAND MADIEU ,16450,16157,54,45.933333,0.433333,1.28
+ Grassac ,GRASSAC ,16380,16158,54,45.583333,0.4,1.13
+ Graves ,GRAVES ,16120,16159,54,45.65,-0.1,1.12
+ Guimps ,GUIMPS ,16300,16160,54,45.466667,-0.25,1.8
+ Guizengeard ,GUIZENGEARD ,16480,16161,54,45.3,-0.1,2.21
+ Gurat ,GURAT ,16320,16162,54,45.433333,0.266667,1.49
+ Hiersac ,HIERSAC ,16290,16163,54,45.666667, ,0.67
+ Hiesse ,HIESSE ,16490,16164,54,46.05,0.583333,1.96
+ Houlette ,HOULETTE ,16200,16165,54,45.766667,-0.2,1.58
+ L'Isle-d'Espagnac ,L ISLE D ESPAGNAC,16340,16166,54,45.666667,0.2,0.24
+ Jarnac ,JARNAC ,16200,16167,54,45.683333,-0.166667,1.43
+ Jauldes ,JAULDES ,16560,16168,54,45.783333,0.266667,0.87
+ Javrezac ,JAVREZAC ,16100,16169,54,45.7,-0.35,2.25
+ Juignac ,JUIGNAC ,16190,16170,54,45.383333,0.166667,1.76
+ Juillac-le-Coq ,JUILLAC LE COQ ,16130,16171,54,45.583333,-0.266667,1.88
+ Juillaguet ,JUILLAGUET ,16320,16172,54,45.483333,0.216667,1.22
+ Juillé ,JUILLE ,16230,16173,54,45.916667,0.15,1.11
+ Julienne ,JULIENNE ,16200,16174,54,45.7,-0.233333,1.73
+ Jurignac ,JURIGNAC ,16250,16175,54,45.533333,-0.033333,1.29
+ Lachaise ,LACHAISE ,16300,16176,54,45.533333,-0.241667,-1
+ Ladiville ,LADIVILLE ,16120,16177,54,45.516667,-0.066667,1.37
+ Lagarde-sur-le-Né ,LAGARDE SUR LE NE,16300,16178,54,45.516667,-0.2,1.58
+ Lamérac ,LAMERAC ,16300,16179,54,45.433333,-0.216667,1.65
+ Laprade ,LAPRADE ,16390,16180,54,45.283333,0.183333,2.3
+ Lessac ,LESSAC ,16500,16181,54,46.066667,0.666667,2.33
+ Lesterps ,LESTERPS ,16420,16182,54,46.016667,0.783333,2.86
+ Lézignac-Durand ,LEZIGNAC DURAND ,16310,16183,54,45.816667,0.633333,2.18
+ Lichères ,LICHERES ,16460,16184,54,45.9,0.216667,1.36
+ Ligné ,LIGNE ,16140,16185,54,45.916667,0.116667,1.5
+ Lignières-Sonneville ,LIGNIERES SONNEVILLE ,16130,16186,54,45.566667,-0.183333,1.65
+ Linars ,LINARS ,16730,16187,54,45.65,0.083333,0.33
+ Le Lindois ,LE LINDOIS ,16310,16188,54,45.75,0.583333,1.96
+ Londigny ,LONDIGNY ,16700,16189,54,46.083333,0.133333,2
+ Longré ,LONGRE ,16240,16190,54,46,-0.016667,1.9
+ Lonnes ,LONNES ,16230,16191,54,45.933333,0.166667,1.19
+ Lupsault ,LUPSAULT ,16140,16194,54,45.933333,-0.066667,1.19
+ Luxé ,LUXE ,16230,16196,54,45.883333,0.116667,1.36
+ La Magdeleine ,LA MAGDELEINE ,16240,16197,54,46.05,0.083333,1.82
+ Magnac-sur-Touvre ,MAGNAC SUR TOUVRE ,16600,16199,54,45.666667,0.233333,0.97
+ Mainfonds ,MAINFONDS ,16250,16201,54,45.516667,0.016667,1.05
+ Mainxe ,MAINXE ,16200,16202,54,45.633333,-0.183333,1.5
+ Mainzac ,MAINZAC ,16380,16203,54,45.55,0.483333,1.51
+ Mallaville ,MALLAVILLE ,16120,16204,54,45.55,-0.1,1.12
+ Manot ,MANOT ,16500,16205,54,45.95,0.633333,2.18
+ Mansle ,MANSLE ,16230,16206,54,45.866667,0.183333,0.84
+ Marcillac-Lanville ,MARCILLAC LANVILLE ,16140,16207,54,45.85,0.016667,0.83
+ Mareuil ,MAREUIL ,16170,16208,54,45.766667,-0.133333,1.27
+ Marsac ,MARSAC ,16570,16210,54,45.733333,0.083333,1
+ Marthon ,MARTHON ,16380,16211,54,45.616667,0.45,1.36
+ Massignac ,MASSIGNAC ,16310,16212,54,45.783333,0.65,2.26
+ Mazières ,MAZIERES ,16270,16214,54,45.833333,0.566667,1.88
+ Médillac ,MEDILLAC ,16210,16215,54,45.233333,0.033333,2.57
+ Mérignac ,MERIGNAC ,16200,16216,54,45.7,-0.083333,1.54
+ Merpins ,MERPINS ,16100,16217,54,45.683333,-0.4,2.48
+ Mesnac ,MESNAC ,16370,16218,54,45.783333,-0.35,2.25
+ Messeux ,MESSEUX ,16700,16219,54,46.016667,0.35,1.64
+ Les Métairies ,LES METAIRIES ,16200,16220,54,45.7,-0.166667,1.43
+ Montboyer ,MONTBOYER ,16620,16222,54,45.333333,0.083333,2.03
+ Montbron ,MONTBRON ,16220,16223,54,45.666667,0.5,1.58
+ Montchaude ,MONTCHAUDE ,16300,16224,54,45.45,-0.2,1.58
+ Montemboeuf ,MONTEMBOEUF ,16310,16225,54,45.766667,0.55,1.81
+ Montignac-Charente ,MONTIGNAC CHARENTE ,16330,16226,54,45.783333,0.116667,0.75
+ Montignac-le-Coq ,MONTIGNAC LE COQ ,16390,16227,54,45.333333,0.216667,2.03
+ Montigné ,MONTIGNE ,16170,16228,54,45.816667,-0.083333,1.05
+ Montjean ,MONTJEAN ,16240,16229,54,46.083333,0.116667,2
+ Montrollet ,MONTROLLET ,16420,16231,54,45.98109,0.89509,-1
+ Mornac ,MORNAC ,16600,16232,54,45.683333,0.266667,1.45
+ Mosnac ,MOSNAC ,16120,16233,54,45.616667,-0.016667,1.32
+ Moulidars ,MOULIDARS ,16290,16234,54,45.666667,-0.033333,1.13
+ Moutardon ,MOUTARDON ,16700,16235,54,46.05,0.3,1.82
+ Mouthiers-sur-Boëme ,MOUTHIERS SUR BOEME ,16440,16236,54,45.55,0.116667,1.6
+ Mouton ,MOUTON ,16460,16237,54,45.883333,0.25,0.93
+ Moutonneau ,MOUTONNEAU ,16460,16238,54,45.9,0.233333,1.02
+ Mouzon ,MOUZON ,16310,16239,54,45.8,0.616667,2.11
+ Nabinaud ,NABINAUD ,16390,16240,54,45.283333,0.2,2.3
+ Nanclars ,NANCLARS ,16230,16241,54,45.85,0.216667,0.76
+ Nanteuil-en-Vallée ,NANTEUIL EN VALLEE ,16700,16242,54,46,0.316667,1.55
+ Nercillac ,NERCILLAC ,16200,16243,54,45.716667,-0.25,1.8
+ Nersac ,NERSAC ,16440,16244,54,45.633333,0.05,0.98
+ Nieuil ,NIEUIL ,16270,16245,54,45.883333,0.5,2.06
+ Nonac ,NONAC ,16190,16246,54,45.416667,0.05,1.58
+ Nonaville ,NONAVILLE ,16120,16247,54,45.533333,-0.083333,1.05
+ Oradour ,ORADOUR ,16140,16248,54,45.9,-0.033333,1.02
+ Oradour-Fanais ,ORADOUR FANAIS ,16500,16249,54,46.116667,0.783333,2.86
+ Orgedeuil ,ORGEDEUIL ,16220,16250,54,45.7,0.5,1.58
+ Oriolles ,ORIOLLES ,16480,16251,54,45.35,-0.116667,1.94
+ Orival ,ORIVAL ,16210,16252,54,45.283333,0.066667,2.3
+ Palluaud ,PALLUAUD ,16390,16254,54,45.35,0.25,1.94
+ Parzac ,PARZAC ,16450,16255,54,45.933333,0.416667,1.2
+ Passirac ,PASSIRAC ,16480,16256,54,45.35,-0.066667,1.94
+ Péreuil ,PEREUIL ,16250,16257,54,45.483333,-0.016667,1.22
+ Pérignac ,PERIGNAC ,16250,16258,54,45.466667,0.083333,1.31
+ La Péruse ,LA PERUSE ,16270,16259,54,45.883333,0.616667,2.11
+ Pillac ,PILLAC ,16390,16260,54,45.316667,0.183333,2.12
+ Les Pins ,LES PINS ,16260,16261,54,45.833333,0.366667,0.98
+ Plaizac ,PLAIZAC ,16170,16262,54,45.75,-0.116667,1.2
+ Plassac-Rouffiac ,PLASSAC ROUFFIAC ,16250,16263,54,45.533333,0.066667,0.96
+ Pleuville ,PLEUVILLE ,16490,16264,54,46.1,0.5,2.09
+ Porcheresse ,PORCHERESSE ,16250,16265,54,45.45,0.033333,1.4
+ Pougné ,POUGNE ,16700,16266,54,45.983333,0.3,1.46
+ Poullignac ,POULLIGNAC ,16190,16267,54,45.4,-0.016667,1.95
+ Poursac ,POURSAC ,16700,16268,54,45.95,0.25,1.28
+ Pranzac ,PRANZAC ,16110,16269,54,45.666667,0.35,1.53
+ Pressignac ,PRESSIGNAC ,16150,16270,54,45.833333,0.733333,2.63
+ Puymoyen ,PUYMOYEN ,16400,16271,54,45.616667,0.183333,1.11
+ Puyréaux ,PUYREAUX ,16230,16272,54,45.866667,0.216667,0.84
+ Raix ,RAIX ,16240,16273,54,46,0.116667,1.55
+ Rancogne ,RANCOGNE ,16110,16274,54,45.7,0.4,1.13
+ Ranville-Breuillaud ,RANVILLE BREUILLAUD ,16140,16275,54,45.9,-0.116667,1.76
+ Reignac ,REIGNAC ,16360,16276,54,45.416667,-0.166667,1.58
+ Réparsac ,REPARSAC ,16200,16277,54,45.733333,-0.233333,1.73
+ Richemont ,RICHEMONT ,16370,16278,54,45.716667,-0.366667,2.33
+ Rioux-Martin ,RIOUX MARTIN ,16210,16279,54,45.25, ,2.48
+ Rivières ,RIVIERES ,16110,16280,54,45.75,0.35,0.9
+ La Rochefoucauld ,LA ROCHEFOUCAULD ,16110,16281,54,45.733333,0.383333,1.05
+ La Rochette ,LA ROCHETTE ,16110,16282,54,45.816667,0.316667,1.79
+ Ronsenac ,RONSENAC ,16320,16283,54,45.483333,0.233333,1.22
+Rouffiac, ,16210,16284,54,45.266667,0.083333,2.39
+ Rougnac ,ROUGNAC ,16320,16285,54,45.533333,0.35,1.25
+ Rouillac ,ROUILLAC ,16170,16286,54,45.783333,-0.066667,0.97
+ Roumazières ,ROUMAZIERES ,16270,16288,54,45.866667,0.583333,1.96
+ Roussines ,ROUSSINES ,16310,16289,54,45.716667,0.616667,2.11
+ Rouzède ,ROUZEDE ,16220,16290,54,45.716667,0.55,1.81
+ Ruelle-sur-Touvre ,RUELLE SUR TOUVRE ,16600,16291,54,45.683333,0.233333,0.97
+ Ruffec ,RUFFEC ,16700,16292,54,46.016667,0.2,1.64
+ Saint-Adjutory ,SAINT ADJUTORY ,16310,16293,54,45.766667,0.483333,1.72
+ Saint-Amant ,SAINT AMANT ,16190,16294,54,45.4,0.15,1.67
+ Saint-Amant-de-Boixe ,SAINT AMANT DE BOIXE,16330,16295,54,45.8,0.133333,0.81
+ Saint-Amant-de-Bonnieure ,SAINT AMANT DE BONNIEURE,16230,16296,54,45.866667,0.3,2.08
+ Saint-Amant-de-Nouère ,SAINT AMANT DE NOUERE,16170,16298,54,45.75, ,1.03
+ Saint-André ,SAINT ANDRE ,16100,16299,54,45.733333,-0.4,2.48
+ Saint-Angeau ,SAINT ANGEAU ,16230,16300,54,45.85,0.283333,1.84
+ Saint-Aulais-la-Chapelle ,SAINT AULAIS LA CHAPELLE,16300,16301,54,45.45,-0.05,1.46
+ Saint-Avit ,SAINT AVIT ,16210,16302,54,45.233333,0.05,2.57
+Saint-Bonnet,BONNET ,16300,16303,54,45.483333,-0.1,1.22
+ Saint-Brice ,SAINT BRICE ,16100,16304,54,45.683333,-0.283333,1.95
+ Saint-Ciers-sur-Bonnieure ,SAINT CIERS SUR BONNIEURE,16230,16307,54,45.85,0.233333,0.99
+ Saint-Claud ,SAINT CLAUD ,16450,16308,54,45.9,0.466667,1.43
+ Saint-Cybardeaux ,SAINT CYBARDEAUX ,16170,16312,54,45.766667,-0.016667,0.75
+ Saint-Estèphe ,SAINT ESTEPHE ,16440,16313,54,45.583333,0.016667,0.7
+ Saint-Eutrope ,SAINT EUTROPE ,16190,16314,54,45.416667,0.116667,1.58
+ Saint-Fort-sur-le-Né ,SAINT FORT SUR LE,16130,16316,54,45.583333,-0.3,2.03
+ Saint-Fraigne ,SAINT FRAIGNE ,16140,16317,54,45.95, ,1.28
+ Saint-Front ,SAINT FRONT ,16460,16318,54,45.9,0.266667,1.02
+ Saint-Genis-de-Blanzac ,SAINT GENIS DE BLANZAC,16250,16319,54,45.45,0.033333,1.4
+ Saint-Genis-d'Hiersac ,SAINT GENIS D HIERSAC,16570,16320,54,45.75,0.033333,1
+ Saint-Georges ,SAINT GEORGES ,16700,16321,54,45.966667,0.266667,1.37
+ Saint-Germain-de-Confolens ,SAINT GERMAIN DE CONFOLENS,16500,16322,54,46.05,0.683333,2.41
+ Saint-Germain-de-Montbron ,SAINT GERMAIN DE MONTBRON,16380,16323,54,45.633333,0.416667,1.2
+ Saint-Gervais ,SAINT GERVAIS ,16700,16324,54,45.983333,0.35,1.59
+ Saint-Gourson ,SAINT GOURSON ,16700,16325,54,45.95,0.316667,1.33
+ Saint-Groux ,SAINT GROUX ,16230,16326,54,45.9,0.166667,1.02
+ Saint-Hilaire ,SAINT HILAIRE ,16300,16327,54,45.466667,-0.166667,1.43
+ Saint-Laurent-de-Belzagot ,SAINT LAURENT DE BELZAGOT,16190,16328,54,45.383333,0.116667,1.76
+ Saint-Laurent-de-Céris ,SAINT LAURENT DE CERIS,16450,16329,54,45.95,0.483333,1.51
+ Saint-Laurent-de-Cognac ,SAINT LAURENT DE COGNAC,16100,16330,54,45.7,-0.4,2.48
+ Saint-Laurent-des-Combes ,SAINT LAURENT DES COMBES,16480,16331,54,45.35,0.033333,1.94
+ Sainte-Marie ,SAINTE MARIE ,16210,16333,54,45.283333,0.05,2.3
+ Saint-Martin-du-Clocher ,SAINT MARTIN DU CLOCHER,16700,16335,54,46.05,0.15,1.82
+ Saint-Mary ,SAINT MARY ,16260,16336,54,45.85,0.366667,0.98
+ Saint-Maurice-des-Lions ,SAINT MAURICE DES LIONS,16500,16337,54,45.966667,0.7,2.48
+ Saint-Même-les-Carrières ,SAINT MEME LES CARRIERES,16720,16340,54,45.65,-0.15,1.35
+ Saint-Michel ,SAINT MICHEL ,16470,16341,54,45.65,0.1,0.33
+ Saint-Palais-du-Né ,SAINT PALAIS DU NE,16300,16342,54,45.55,-0.266667,1.88
+ Saint-Preuil ,SAINT PREUIL ,16130,16343,54,45.6,-0.166667,1.77
+ Saint-Projet-Saint-Constant ,SAINT PROJET SAINT CONSTANT,16110,16344,54,45.733333,0.35,0.9
+ Saint-Quentin-sur-Charente ,SAINT QUENTIN SUR CHARENTE,16150,16345,54,45.833333,0.683333,2.41
+ Saint-Quentin-de-Chalais ,SAINT QUENTIN DE CHALAIS,16210,16346,54,45.266667,0.066667,2.39
+ Saint-Saturnin ,SAINT SATURNIN ,16290,16348,54,45.666667,0.05,1
+ Sainte-Sévère ,SAINTE SEVERE ,16200,16349,54,45.75,-0.233333,1.73
+ Saint-Séverin ,SAINT SEVERIN ,16390,16350,54,45.316667,0.25,2.12
+ Saint-Simeux ,SAINT SIMEUX ,16120,16351,54,45.633333,-0.033333,1.21
+ Saint-Simon ,SAINT SIMON ,16120,16352,54,45.65,-0.066667,1.11
+ Saint-Sornin ,SAINT SORNIN ,16220,16353,54,45.7,0.433333,1.3
+ Sainte-Souline ,SAINTE SOULINE ,16480,16354,54,45.383333,-0.016667,1.76
+ Saint-Sulpice-de-Cognac ,SAINT SULPICE DE COGNAC,16370,16355,54,45.766667,-0.383333,2.4
+ Saint-Sulpice-de-Ruffec ,SAINT SULPICE DE RUFFEC,16460,16356,54,45.941667,0.316667,1.58
+ Saint-Vallier ,SAINT VALLIER ,16480,16357,54,45.3,-0.05,2.21
+ Saint-Yrieix-sur-Charente ,SAINT YRIEIX SUR CHARENTE,16710,16358,54,45.683333,0.116667,0.15
+ Salles-d'Angles ,SALLES D ANGLES ,16130,16359,54,45.616667,-0.333333,2.18
+ Salles-de-Barbezieux ,SALLES DE BARBEZIEUX ,16300,16360,54,45.45,-0.133333,1.4
+ Salles-de-Villefagnan ,SALLES DE VILLEFAGNAN ,16700,16361,54,45.95,0.166667,1.28
+ Salles-Lavalette ,SALLES LAVALETTE ,16190,16362,54,45.383333,0.233333,2.03
+ Saulgond ,SAULGOND ,16420,16363,54,45.95,0.783333,2.86
+ Sauvagnac ,SAUVAGNAC ,16310,16364,54,45.75,0.65,2.26
+ Sauvignac ,SAUVIGNAC ,16480,16365,54,45.25,-0.083333,2.48
+ Segonzac ,SEGONZAC ,16130,16366,54,45.616667,-0.216667,1.65
+ Sérignac ,SERIGNAC ,16210,16367,54,45.266667,0.033333,2.39
+ Sers ,SERS ,16410,16368,54,45.6,0.316667,0.79
+ Sigogne ,SIGOGNE ,16200,16369,54,45.733333,-0.15,1.35
+ Sireuil ,SIREUIL ,16440,16370,54,45.616667,0.016667,0.94
+ Sonneville ,SONNEVILLE ,16170,16371,54,45.8,-0.133333,1.27
+ Souffrignac ,SOUFFRIGNAC ,16380,16372,54,45.583333,0.5,1.58
+ Souvigné ,SOUVIGNE ,16240,16373,54,45.966667,0.066667,1.37
+ Soyaux ,SOYAUX ,16800,16374,54,45.65,0.2,0.33
+ Suaux ,SUAUX ,16260,16375,54,45.85,0.516667,2.11
+ Suris ,SURIS ,16270,16376,54,45.85,0.633333,2.18
+ La Tâche ,LA TACHE ,16260,16377,54,45.883333,0.35,0.93
+ Taizé-Aizie ,TAIZE AIZIE ,16700,16378,54,46.05,0.233333,1.82
+ Taponnat-Fleurignac ,TAPONNAT FLEURIGNAC ,16110,16379,54,45.783333,0.383333,1.05
+ Le Tâtre ,LE TATRE ,16360,16380,54,45.4,-0.2,1.67
+ Theil-Rabier ,THEIL RABIER ,16240,16381,54,46.05,0.033333,1.82
+ Torsac ,TORSAC ,16410,16382,54,45.566667,0.216667,1.13
+ Tourriers ,TOURRIERS ,16560,16383,54,45.8,0.183333,0.97
+ Touvérac ,TOUVERAC ,16360,16384,54,45.383333,-0.2,1.76
+ Touvre ,TOUVRE ,16600,16385,54,45.666667,0.25,0.6
+ Touzac ,TOUZAC ,16120,16386,54,45.55,-0.15,1.37
+ Triac-Lautrait ,TRIAC LAUTRAIT ,16200,16387,54,45.666667,-0.116667,1.2
+ Trois-Palis ,TROIS PALIS ,16730,16388,54,45.633333,0.05,1.48
+ Turgon ,TURGON ,16350,16389,54,45.95,0.4,1.28
+ Tusson ,TUSSON ,16140,16390,54,45.933333,0.066667,1.19
+ Tuzie ,TUZIE ,16700,16391,54,45.966667,0.15,1.37
+ Valence ,VALENCE ,16460,16392,54,45.883333,0.3,1.23
+ Vars ,VARS ,16330,16393,54,45.766667,0.116667,1.25
+ Vaux-Lavalette ,VAUX LAVALETTE ,16320,16394,54,45.416667,0.233333,1.58
+ Vaux-Rouillac ,VAUX ROUILLAC ,16170,16395,54,45.75,-0.083333,1.05
+ Ventouse ,VENTOUSE ,16460,16396,54,45.9,0.333333,1.87
+ Verdille ,VERDILLE ,16140,16397,54,45.883333,-0.1,1.57
+ Verneuil ,VERNEUIL ,16310,16398,54,45.783333,0.7,2.48
+ Verteuil-sur-Charente ,VERTEUIL SUR CHARENTE ,16510,16400,54,45.983333,0.233333,1.46
+ Vervant ,VERVANT ,16330,16401,54,45.833333,0.116667,0.91
+ Le-Vieux-Cérier ,LE VIEUX CERIER ,16350,16403,54,45.966667,0.433333,1.37
+ Vieux-Ruffec ,VIEUX RUFFEC ,16350,16404,54,46.016667,0.383333,1.64
+ Vignolles ,VIGNOLLES ,16300,16405,54,45.516667,-0.083333,1.07
+ Vilhonneur ,VILHONNEUR ,16220,16406,54,45.683333,0.416667,1.59
+ Villebois-Lavalette ,VILLEBOIS LAVALETTE ,16320,16408,54,45.483333,0.283333,1.22
+ Villefagnan ,VILLEFAGNAN ,16240,16409,54,46.016667,0.083333,1.64
+ Villegats ,VILLEGATS ,16700,16410,54,45.983333,0.2,1.46
+ Villejésus ,VILLEJESUS ,16140,16411,54,45.9,0.033333,1.02
+ Villejoubert ,VILLEJOUBERT ,16560,16412,54,45.8,0.183333,0.97
+ Villiers-le-Roux ,VILLIERS LE ROUX ,16240,16413,54,46.05,0.1,1.82
+ Villognon ,VILLOGNON ,16230,16414,54,45.866667,0.1,1.68
+ Vindelle ,VINDELLE ,16430,16415,54,45.716667,0.116667,0.74
+ Vitrac-Saint-Vincent ,VITRAC SAINT VINCENT ,16310,16416,54,45.8,0.5,1.58
+ Viville ,VIVILLE ,16120,16417,54,45.516667,-0.116667,1.44
+ Voeuil-et-Giget ,VOEUIL ET GIGET ,16400,16418,54,45.583333,0.15,0.69
+ Vouharte ,VOUHARTE ,16330,16419,54,45.816667,0.066667,1.36
+ Voulgézac ,VOULGEZAC ,16250,16420,54,45.516667,0.116667,1.39
+ Vouthon ,VOUTHON ,16220,16421,54,45.666667,0.466667,1.43
+ Vouzan ,VOUZAN ,16410,16422,54,45.6,0.35,1.39
+ Xambes ,XAMBES ,16330,16423,54,45.833333,0.1,0.91
+ Yviers ,YVIERS ,16210,16424,54,45.283333, ,2.3
+ Yvrac-et-Malleyrand ,YVRAC ET MALLEYRAND ,16110,16425,54,45.75,0.45,1.66
+ Agonnay ,AGONNAY ,17350,17001,54,45.883333,-0.733333,1.56
+ Agudelle ,AGUDELLE ,17500,17002,54,45.383333,-0.466667,1.61
+ Aigrefeuille-d'Aunis ,AIGREFEUILLE D AUNIS ,17290,17003,54,46.116667,-0.933333,1.37
+ Île d'Aix ,ILE D AIX ,17123,17004,54,46.016667,-1.175,2.06
+ Allas-Bocage ,ALLAS BOCAGE ,17150,17005,54,45.383333,-0.483333,1.87
+ Allas-Champagne ,ALLAS CHAMPAGNE ,17500,17006,54,45.466667,-0.333333,1.27
+ Anais ,ANAIS ,17540,17007,54,46.183333,-0.908333,-1
+ Andilly ,ANDILLY ,17230,17008,54,46.25,-1.033333,1.91
+ Annepont ,ANNEPONT ,17350,17011,54,45.85,-0.616667,0.91
+ Annezay ,ANNEZAY ,17380,17012,54,46.016667,-0.716667,0.96
+ Antignac ,ANTIGNAC ,17240,17014,54,45.5,-0.466667,1.71
+ Archiac ,ARCHIAC ,17520,17016,54,45.516667,-0.3,1.38
+ Archingeay ,ARCHINGEAY ,17380,17017,54,45.933333,-0.7,1.08
+ Ardillières ,ARDILLIERES ,17290,17018,54,46.05,-0.883333,1.1
+ Ars-en-Ré ,ARS EN RE ,17590,17019,54,46.208333,-1.516667,-1
+ Arthenac ,ARTHENAC ,17520,17020,54,45.516667,-0.316667,1.31
+ Arvert ,ARVERT ,17530,17021,54,45.733333,-1.133333,1.89
+ Asnières-la-Giraud ,ASNIERES LA GIRAUD ,17400,17022,54,45.883333,-0.5,0.84
+ Aujac ,AUJAC ,17770,17023,54,45.85,-0.4,1.05
+ Aumagne ,AUMAGNE ,17770,17025,54,45.866667,-0.4,1.15
+ Avy ,AVY ,17800,17027,54,45.55,-0.5,0.94
+ Aytré ,AYTRE ,17440,17028,54,46.133333,-1.1,1.76
+ Bagnizeau ,BAGNIZEAU ,17160,17029,54,45.883333,-0.316667,1.31
+ Balanzac ,BALANZAC ,17600,17030,54,45.733333,-0.833333,0.72
+ Ballans ,BALLANS ,17160,17031,54,45.816667,-0.216667,1.71
+ Ballon ,BALLON ,17290,17032,54,46.05,-0.95,1.17
+ La Barde ,LA BARDE ,17360,17033,54,45.133333,-0.033333,2.63
+ Barzan ,BARZAN ,17120,17034,54,45.533333,-0.85,1
+ Bazauges ,BAZAUGES ,17490,17035,54,45.916667,-0.166667,1.9
+ Beaugeay ,BEAUGEAY ,17620,17036,54,45.866667,-0.983333,1.3
+ Beauvais-sur-Matha ,BEAUVAIS SUR MATHA ,17490,17037,54,45.883333,-0.183333,1.84
+ Bédenac ,BEDENAC ,17210,17038,54,45.166667,-0.3,2.49
+ Belluire ,BELLUIRE ,17800,17039,54,45.533333,-0.566667,1.08
+ La Benâte ,LA BENATE ,17400,17040,54,46,-0.566667,1.24
+ Benon ,BENON ,17170,17041,54,46.2,-0.816667,1.7
+ Bercloux ,BERCLOUX ,17770,17042,54,45.833333,-0.466667,0.73
+ Berneuil ,BERNEUIL ,17460,17044,54,45.65,-0.6,0.91
+ Beurlay ,BEURLAY ,17250,17045,54,45.866667,-0.833333,0.72
+ Bignay ,BIGNAY ,17400,17046,54,45.916667,-0.6,1.49
+ Biron ,BIRON ,17800,17047,54,45.566667,-0.466667,0.87
+ Blanzac-lès-Matha ,BLANZAC LES MATHA ,17160,17048,54,45.866667,-0.35,1.18
+ Blanzay-sur-Boutonne ,BLANZAY SUR BOUTONNE ,17470,17049,54,46.05,-0.433333,1.48
+ Bois ,BOIS ,17240,17050,54,45.483333,-0.6,1.21
+ Le Bois-Plage-en-Ré ,LE BOIS PLAGE EN,17580,17051,54,46.183333,-1.383333,2.88
+ Boisredon ,BOISREDON ,17150,17052,54,45.316667,-0.533333,1.88
+ Bords ,BORDS ,17430,17053,54,45.9,-0.8,1.02
+ Boresse-et-Martron ,BORESSE ET MARTRON ,17270,17054,54,45.283333,-0.116667,2.1
+ Boscamnant ,BOSCAMNANT ,17360,17055,54,45.2,-0.066667,2.36
+ Bougneau ,BOUGNEAU ,17800,17056,54,45.6,-0.516667,0.73
+ Bouhet ,BOUHET ,17540,17057,54,46.166667,-0.866667,1.57
+ Bourgneuf ,BOURGNEUF ,17220,17059,54,46.166667,-1.016667,1.57
+ Bran ,BRAN ,17210,17061,54,45.35,-0.266667,1.75
+ Bresdon ,BRESDON ,17490,17062,54,45.883333,-0.15,1.97
+ Breuil-la-Réorte ,BREUIL LA REORTE ,17700,17063,54,46.05,-0.683333,1.1
+ Breuillet ,BREUILLET ,17920,17064,54,45.7,-1.05,1.57
+ Breuil-Magné ,BREUIL MAGNE ,17870,17065,54,45.983333,-0.966667,1.24
+ Brie-sous-Archiac ,BRIE SOUS ARCHIAC ,17520,17066,54,45.483333,-0.3,1.38
+ Brie-sous-Matha ,BRIE SOUS MATHA ,17160,17067,54,45.816667,-0.25,1.58
+ Brie-sous-Mortagne ,BRIE SOUS MORTAGNE ,17120,17068,54,45.5,-0.75,1.31
+ Brives-sur-Charente ,BRIVES SUR CHARENTE ,17800,17069,54,45.666667,-0.466667,1.28
+ Brizambourg ,BRIZAMBOURG ,17770,17070,54,45.816667,-0.483333,0.66
+ La Brousse ,LA BROUSSE ,17160,17071,54,45.883333,-0.366667,1.28
+ Burie ,BURIE ,17770,17072,54,45.766667,-0.416667,1.24
+ Bussac-Forêt ,BUSSAC FORET ,17210,17074,54,45.216667,-0.366667,2.29
+ Cabariot ,CABARIOT ,17430,17075,54,45.916667,-0.85,0.82
+ Celles ,CELLES ,17520,17076,54,45.6,-0.366667,1.21
+ Cercoux ,CERCOUX ,17270,17077,54,45.133333,-0.2,2.63
+ Chadenac ,CHADENAC ,17800,17078,54,45.55,-0.433333,1.21
+ Chaillevette ,CHAILLEVETTE ,17890,17079,54,45.733333,-1.05,1.57
+ Chambon ,CHAMBON ,17290,17080,54,46.133333,-0.85,1.71
+ Chamouillac ,CHAMOUILLAC ,17130,17081,54,45.316667,-0.466667,1.88
+ Champagnac ,CHAMPAGNAC ,17500,17082,54,45.416667,-0.383333,1.48
+ Champagne ,CHAMPAGNE ,17620,17083,54,45.833333,-0.916667,1.04
+ Champagnolles ,CHAMPAGNOLLES ,17240,17084,54,45.516667,-0.633333,1.07
+ Champdolent ,CHAMPDOLENT ,17430,17085,54,45.916667,-0.8,0.76
+ Chaniers ,CHANIERS ,17610,17086,54,45.716667,-0.55,1.48
+ Chantemerle-sur-la-Soie ,CHANTEMERLE SUR LA SOIE,17380,17087,54,45.983333,-0.65,0.82
+ La Chapelle-des-Pots ,LA CHAPELLE DES POTS,17100,17089,54,45.766667,-0.533333,1.19
+ Chardes ,CHARDES ,17130,17090,54,45.3,-0.383333,1.95
+ Charron ,CHARRON ,17230,17091,54,46.283333,-1.1,2.04
+ Chartuzac ,CHARTUZAC ,17130,17092,54,45.333333,-0.416667,1.82
+ Le Château-d'Oléron ,LE CHATEAU D OLERON,17480,17093,54,45.9,-1.2,2.16
+ Châtelaillon-Plage ,CHATELAILLON PLAGE ,17340,17094,54,46.066667,-1.083333,1.7
+ Châtenet ,CHATENET ,17210,17095,54,45.3,-0.3,1.95
+ Chaunac ,CHAUNAC ,17130,17096,54,45.366667,-0.366667,1.68
+ Chepniers ,CHEPNIERS ,17210,17099,54,45.25,-0.3,2.15
+ Chérac ,CHERAC ,17610,17100,54,45.7,-0.433333,1.33
+ Cherbonnières ,CHERBONNIERES ,17470,17101,54,45.966667,-0.35,1.18
+ Chermignac ,CHERMIGNAC ,17460,17102,54,45.683333,-0.666667,0.48
+ Chervettes ,CHERVETTES ,17380,17103,54,46.05,-0.7,1.14
+ Chevanceaux ,CHEVANCEAUX ,17210,17104,54,45.3,-0.233333,1.95
+ Chives ,CHIVES ,17510,17105,54,45.95,-0.116667,2.1
+ Cierzac ,CIERZAC ,17520,17106,54,45.566667,-0.316667,1.31
+ Ciré-d'Aunis ,CIRE D AUNIS ,17290,17107,54,46.05,-0.933333,1.11
+ Clam ,CLAM ,17500,17108,54,45.5,-0.45,1.14
+ Clavette ,CLAVETTE ,17220,17109,54,46.133333,-1.016667,1.44
+ Clérac ,CLERAC ,17270,17110,54,45.183333,-0.216667,2.43
+ Clion ,CLION ,17240,17111,54,45.483333,-0.5,1.29
+ La Clisse ,LA CLISSE ,17600,17112,54,45.733333,-0.766667,1.38
+ La Clotte ,LA CLOTTE ,17360,17113,54,45.116667,-0.15,2.7
+ Coivert ,COIVERT ,17330,17114,54,46.066667,-0.45,1.16
+ Colombiers ,COLOMBIERS ,17460,17115,54,45.65,-0.55,1.78
+ Consac ,CONSAC ,17150,17116,54,45.416667,-0.6,1.48
+ Contré ,CONTRE ,17470,17117,54,46.016667,-0.283333,1.45
+ Corignac ,CORIGNAC ,17130,17118,54,45.25,-0.383333,2.15
+ Corme-Écluse ,CORME ECLUSE ,17600,17119,54,45.633333,-0.85,1.01
+ Corme-Royal ,CORME ROYAL ,17600,17120,54,45.75,-0.816667,0.88
+ La Couarde-sur-Mer ,LA COUARDE SUR MER,17670,17121,54,46.2,-1.4,2.94
+ Courant ,COURANT ,17330,17124,54,46.033333,-0.566667,1.29
+ Courcerac ,COURCERAC ,17160,17126,54,45.833333,-0.366667,1.35
+ Courçon ,COURCON ,17170,17127,54,46.25,-0.816667,1.91
+ Courcoury ,COURCOURY ,17100,17128,54,45.716667,-0.583333,1.11
+ Courpignac ,COURPIGNAC ,17130,17129,54,45.333333,-0.483333,1.82
+ Coux ,COUX ,17130,17130,54,45.316667,-0.416667,1.88
+ Cozes ,COZES ,17120,17131,54,45.583333,-0.833333,0.8
+ Cramchaban ,CRAMCHABAN ,17170,17132,54,46.216667,-0.716667,1.8
+ Cravans ,CRAVANS ,17260,17133,54,45.6,-0.7,0.73
+ Crazannes ,CRAZANNES ,17350,17134,54,45.85,-0.7,0.91
+ Cressé ,CRESSE ,17160,17135,54,45.916667,-0.216667,1.71
+ Croix-Chapeau ,CROIX CHAPEAU ,17220,17136,54,46.1,-1,1.37
+ La Croix-Comtesse ,LA CROIX COMTESSE ,17330,17137,54,46.083333,-0.483333,1.23
+ Dampierre-sur-Boutonne ,DAMPIERRE SUR BOUTONNE ,17470,17138,54,46.066667,-0.4,1.17
+ Doeuil-sur-le-Mignon ,DOEUIL SUR LE MIGNON,17330,17139,54,46.116667,-0.533333,1.37
+ Dompierre-sur-Charente ,DOMPIERRE SUR CHARENTE ,17610,17141,54,45.7,-0.483333,0.66
+ Dompierre-sur-Mer ,DOMPIERRE SUR MER ,17139,17142,54,46.183333,-1.066667,1.64
+ Le Douhet ,LE DOUHET ,17100,17143,54,45.816667,-0.566667,1.12
+ Ébéon ,EBEON ,17770,17144,54,45.866667,-0.433333,0.86
+ Échebrune ,ECHEBRUNE ,17800,17145,54,45.583333,-0.45,0.86
+ Échillais ,ECHILLAIS ,17620,17146,54,45.9,-0.95,1.35
+ Écoyeux ,ECOYEUX ,17770,17147,54,45.816667,-0.5,0.61
+ Écurat ,ECURAT ,17810,17148,54,45.783333,-0.666667,1.67
+ Les Éduts ,LES EDUTS ,17510,17149,54,45.983333,-0.216667,1.71
+ Les Églises-d'Argenteuil ,LES EGLISES D ARGENTEUIL,17400,17150,54,45.966667,-0.433333,0.86
+ L'Éguille ,L EGUILLE ,17600,17151,54,45.7,-0.983333,1.36
+ Épargnes ,EPARGNES ,17120,17152,54,45.55,-0.8,0.94
+ Esnandes ,ESNANDES ,17137,17153,54,46.25,-1.083333,1.91
+ Les Essards ,LES ESSARDS ,17250,17154,54,45.8,-0.766667,1.03
+ Étaules ,ETAULES ,17750,17155,54,45.733333,-1.1,1.76
+ Expiremont ,EXPIREMONT ,17130,17156,54,45.316667,-0.366667,1.88
+ Fenioux ,FENIOUX ,17350,17157,54,45.9,-0.6,1.36
+ Ferrières ,FERRIERES ,17170,17158,54,46.233333,-0.85,1.84
+ Fléac-sur-Seugne ,FLEAC SUR SEUGNE ,17800,17159,54,45.533333,-0.533333,1
+ Floirac ,FLOIRAC ,17120,17160,54,45.483333,-0.75,1.47
+ La Flotte ,LA FLOTTE ,17630,17161,54,46.183333,-1.333333,2.68
+ Fontaine-Chalendray ,FONTAINE CHALENDRAY ,17510,17162,54,45.95,-0.183333,1.84
+ Fontaines-d'Ozillac ,FONTAINES D OZILLAC ,17500,17163,54,45.383333,-0.383333,1.61
+ Fontcouverte ,FONTCOUVERTE ,17100,17164,54,45.766667,-0.583333,0.27
+ Fontenet ,FONTENET ,17400,17165,54,45.916667,-0.45,0.79
+ Forges ,FORGES ,17290,17166,54,46.1,-0.9,1.3
+ Le Fouilloux ,LE FOUILLOUX ,17270,17167,54,45.183333,-0.116667,2.43
+ Fouras ,FOURAS ,17450,17168,54,45.983333,-1.1,1.76
+ La Fredière ,LA FREDIERE ,17770,17169,54,45.866667,-0.583333,1.97
+ Geay ,GEAY ,17250,17171,54,45.866667,-0.766667,0.94
+ Gémozac ,GEMOZAC ,17260,17172,54,45.566667,-0.666667,0.87
+ La Genétouze ,LA GENETOUZE ,17360,17173,54,45.216667,-0.016667,2.49
+ Genouillé ,GENOUILLE ,17430,17174,54,46.016667,-0.783333,1.32
+ Germignac ,GERMIGNAC ,17520,17175,54,45.566667,-0.333333,1.25
+ Gibourne ,GIBOURNE ,17160,17176,54,45.933333,-0.3,1.38
+ Le Gicq ,LE GICQ ,17160,17177,54,45.933333,-0.25,1.58
+ Givrezac ,GIVREZAC ,17260,17178,54,45.55,-0.633333,1.1
+ Les Gonds ,LES GONDS ,17100,17179,54,45.716667,-0.616667,1.24
+ Gourvillette ,GOURVILLETTE ,17490,17180,54,45.883333,-0.216667,1.71
+ Grandjean ,GRANDJEAN ,17350,17181,54,45.866667,-0.6,1.18
+ La Grève-sur-Mignon ,LA GREVE SUR MIGNON,17170,17182,54,46.25,-0.766667,1.91
+ Grézac ,GREZAC ,17120,17183,54,45.6,-0.85,0.78
+ La-Gripperie-Saint-Symphorien ,LA GRIPPERIE SAINT SYMPHORIEN,17620,17184,54,45.8,-0.933333,1.29
+ Le Gua ,LE GUA ,17600,17185,54,45.733333,-0.95,1.17
+ Le Gué-d'Alléré ,LE GUE D ALLERE,17540,17186,54,46.183333,-0.866667,1.64
+ Guitinières ,GUITINIERES ,17500,17187,54,45.433333,-0.516667,1.6
+ Haimps ,HAIMPS ,17160,17188,54,45.866667,-0.25,1.58
+ Hiers-Brouage ,HIERS BROUAGE ,17320,17189,54,45.85,-1.066667,1.63
+ L'Houmeau ,L HOUMEAU ,17137,17190,54,46.183333,-1.166667,2.03
+ La Jard ,LA JARD ,17460,17191,54,45.65,-0.583333,1.2
+ Jarnac-Champagne ,JARNAC CHAMPAGNE ,17520,17192,54,45.566667,-0.4,1.15
+ La Jarne ,LA JARNE ,17220,17193,54,46.116667,-1.066667,1.63
+ La Jarrie ,LA JARRIE ,17220,17194,54,46.133333,-1.016667,1.44
+ La Jarrie-Audouin ,LA JARRIE AUDOUIN ,17330,17195,54,46.033333,-0.483333,1.03
+ Jazennes ,JAZENNES ,17260,17196,54,45.583333,-0.616667,1.17
+ Jonzac ,JONZAC ,17500,17197,54,45.45,-0.433333,1.34
+ Juicq ,JUICQ ,17770,17198,54,45.85,-0.566667,1.65
+ Jussas ,JUSSAS ,17130,17199,54,45.283333,-0.35,2.02
+ Lagord ,LAGORD ,17140,17200,54,46.183333,-1.133333,1.89
+ La Laigne ,LA LAIGNE ,17170,17201,54,46.216667,-0.75,1.77
+ Landes ,LANDES ,17380,17202,54,45.983333,-0.6,1.23
+ Landrais ,LANDRAIS ,17290,17203,54,46.066667,-0.866667,1.16
+ Léoville ,LEOVILLE ,17500,17204,54,45.383333,-0.333333,1.61
+ Loire-les-Marais ,LOIRE LES MARAIS ,17870,17205,54,45.983333,-0.916667,1.04
+ Loiré-sur-Nie ,LOIRE SUR NIE ,17470,17206,54,45.95,-0.283333,1.45
+ Loix ,LOIX ,17111,17207,54,46.2235,-1.43794,-1
+ Longèves ,LONGEVES ,17230,17208,54,46.233333,-0.983333,1.84
+ Lonzac ,LONZAC ,17520,17209,54,45.6,-0.4,1.5
+ Lorignac ,LORIGNAC ,17240,17210,54,45.45,-0.683333,1.34
+ Loulay ,LOULAY ,17330,17211,54,46.05,-0.5,1.1
+ Louzignac ,LOUZIGNAC ,17160,17212,54,45.833333,-0.233333,-1
+ Lozay ,LOZAY ,17330,17213,54,46.05,-0.533333,1.1
+ Luchat ,LUCHAT ,17600,17214,54,45.716667,-0.766667,1.35
+ Lussac ,LUSSAC ,17500,17215,54,45.466667,-0.483333,1.27
+ Lussant ,LUSSANT ,17430,17216,54,45.966667,-0.816667,0.76
+ Macqueville ,MACQUEVILLE ,17490,17217,54,45.8,-0.216667,1.71
+ Marans ,MARANS ,17230,17218,54,46.3,-1,2.11
+ Marennes ,MARENNES ,17320,17219,54,45.816667,-1.116667,1.83
+ Marignac ,MARIGNAC ,17800,17220,54,45.516667,-0.483333,1.07
+ Marsais ,MARSAIS ,17700,17221,54,46.116667,-0.6,1.98
+ Marsilly ,MARSILLY ,17137,17222,54,46.233333,-1.116667,1.84
+ Massac ,MASSAC ,17490,17223,54,45.866667,-0.216667,1.71
+ Matha ,MATHA ,17160,17224,54,45.866667,-0.316667,1.31
+ Les Mathes ,LES MATHES ,17570,17225,54,45.716667,-1.15,1.96
+ Mazeray ,MAZERAY ,17400,17226,54,45.916667,-0.566667,1.06
+ Mazerolles ,MAZEROLLES ,17800,17227,54,45.55,-0.583333,1.13
+ Médis ,MEDIS ,17600,17228,54,45.65,-0.966667,1.37
+ Meschers-sur-Gironde ,MESCHERS SUR GIRONDE ,17132,17230,54,45.566667,-0.95,1.17
+ Messac ,MESSAC ,17130,17231,54,45.35,-0.316667,1.75
+ Meursac ,MEURSAC ,17120,17232,54,45.65,-0.816667,1.33
+ Meux ,MEUX ,17500,17233,54,45.45,-0.35,1.34
+ Migré ,MIGRE ,17330,17234,54,46.066667,-0.55,1.16
+ Migron ,MIGRON ,17770,17235,54,45.8,-0.4,1.11
+ Mirambeau ,MIRAMBEAU ,17150,17236,54,45.366667,-0.566667,1.68
+ Moëze ,MOEZE ,17780,17237,54,45.9,-1.033333,1.5
+ Moings ,MOINGS ,17500,17238,54,45.483333,-0.35,1.21
+ Mons ,MONS ,17160,17239,54,45.816667,-0.35,1.26
+ Montendre ,MONTENDRE ,17130,17240,54,45.283333,-0.4,2.02
+ Montguyon ,MONTGUYON ,17270,17241,54,45.216667,-0.183333,2.29
+ Montils ,MONTILS ,17800,17242,54,45.65,-0.5,0.9
+ Montpellier-de-Médillan ,MONTPELLIER DE MEDILLAN ,17260,17244,54,45.633333,-0.75,1.62
+ Montroy ,MONTROY ,17220,17245,54,46.15,-1.016667,1.5
+ Moragne ,MORAGNE ,17430,17246,54,45.966667,-0.8,0.76
+ Mornac-sur-Seudre ,MORNAC SUR SEUDRE ,17113,17247,54,45.716667,-1.033333,1.5
+ Mortagne-sur-Gironde ,MORTAGNE SUR GIRONDE ,17120,17248,54,45.483333,-0.783333,1.21
+ Mortiers ,MORTIERS ,17500,17249,54,45.4,-0.316667,1.55
+ Mosnac ,MOSNAC ,17240,17250,54,45.5,-0.516667,1.14
+ Moulons ,MOULONS ,17130,17251,54,45.333333,-0.333333,1.82
+ Le Mung ,LE MUNG ,17350,17252,54,45.866667,-0.7,0.84
+ Muron ,MURON ,17430,17253,54,46.033333,-0.833333,1.44
+ Nachamps ,NACHAMPS ,17380,17254,54,46.016667,-0.616667,1.05
+ Nancras ,NANCRAS ,17600,17255,54,45.75,-0.883333,0.91
+ Nantillé ,NANTILLE ,17770,17256,54,45.866667,-0.483333,0.66
+ Néré ,NERE ,17510,17257,54,45.966667,-0.233333,1.64
+ Neuillac ,NEUILLAC ,17520,17258,54,45.516667,-0.4,1.07
+ Neulles ,NEULLES ,17500,17259,54,45.5,-0.416667,1.14
+ Neuvicq-le-Château ,NEUVICQ LE CHATEAU ,17490,17261,54,45.8,-0.166667,1.9
+ Nieul-lès-Saintes ,NIEUL LES SAINTES ,17810,17262,54,45.766667,-0.733333,0.91
+ Nieul-le-Virouil ,NIEUL LE VIROUIL ,17150,17263,54,45.416667,-0.533333,1.48
+ Nieul-sur-Mer ,NIEUL SUR MER ,17137,17264,54,46.2,-1.166667,2.03
+ Nieulle-sur-Seudre ,NIEULLE SUR SEUDRE ,17600,17265,54,45.75,-0.983333,1.44
+ Les Nouillers ,LES NOUILLERS ,17380,17266,54,45.933333,-0.666667,0.97
+ Nuaillé-d'Aunis ,NUAILLE D AUNIS ,17540,17267,54,46.216667,-0.933333,1.77
+ Nuaillé-sur-Boutonne ,NUAILLE SUR BOUTONNE ,17470,17268,54,46,-0.416667,1.13
+ Orignolles ,ORIGNOLLES ,17210,17269,54,45.233333,-0.233333,2.22
+ Ozillac ,OZILLAC ,17500,17270,54,45.4,-0.4,1.55
+ Paillé ,PAILLE ,17470,17271,54,45.983333,-0.383333,1.05
+ Péré ,PERE ,17700,17272,54,46.083333,-0.816667,1.37
+ Pérignac ,PERIGNAC ,17800,17273,54,45.616667,-0.466667,0.75
+ Périgny ,PERIGNY ,17180,17274,54,46.15,-1.083333,1.7
+ Pessines ,PESSINES ,17810,17275,54,45.733333,-0.716667,1.09
+ Pisany ,PISANY ,17600,17278,54,45.7,-0.783333,1.15
+ Plassac ,PLASSAC ,17240,17279,54,45.466667,-0.566667,1.27
+ Plassay ,PLASSAY ,17250,17280,54,45.816667,-0.733333,1.42
+ Polignac ,POLIGNAC ,17210,17281,54,45.283333,-0.3,2.02
+ Pons ,PONS ,17800,17283,54,45.583333,-0.55,0.8
+ Pont-l'Abbé-d'Arnoult ,PONT L ABBE D,17250,17284,54,45.833333,-0.883333,1.2
+ Port-d'Envaux ,PORT D ENVAUX ,17350,17285,54,45.833333,-0.683333,0.84
+ Poursay-Garnaud ,POURSAY GARNAUD ,17400,17288,54,45.95,-0.466667,0.73
+ Préguillac ,PREGUILLAC ,17460,17289,54,45.666667,-0.616667,0.6
+ Puilboreau ,PUILBOREAU ,17138,17291,54,46.183333,-1.1,1.76
+ Puy-du-Lac ,PUY DU LAC ,17380,17292,54,45.966667,-0.716667,0.86
+ Puyravault ,PUYRAVAULT ,17700,17293,54,46.133333,-0.8,1.43
+ Puyrolland ,PUYROLLAND ,17380,17294,54,46.033333,-0.6,1.43
+ Réaux ,REAUX ,17500,17295,54,45.483333,-0.366667,1.21
+ Rétaud ,RETAUD ,17460,17296,54,45.683333,-0.733333,1.53
+ Rivedoux-Plage ,RIVEDOUX PLAGE ,17940,17297,54,46.166667,-1.266667,2.42
+ Rioux ,RIOUX ,17460,17298,54,45.633333,-0.716667,1.28
+ Rochefort ,ROCHEFORT ,17300,17299,54,45.933333,-0.983333,1.3
+ La Rochelle ,LA ROCHELLE ,17000,17300,54,46.166667,-1.15,1.96
+ Romazières ,ROMAZIERES ,17510,17301,54,45.983333,-0.166667,1.9
+ Romegoux ,ROMEGOUX ,17250,17302,54,45.866667,-0.8,0.58
+ Rouffiac ,ROUFFIAC ,17800,17304,54,45.683333,-0.483333,1.41
+ Rouffignac ,ROUFFIGNAC ,17130,17305,54,45.333333,-0.45,1.82
+ Royan ,ROYAN ,17200,17306,54,45.633333,-1.033333,1.5
+ Sablonceaux ,SABLONCEAUX ,17600,17307,54,45.716667,-0.883333,0.91
+ Saint-Agnant ,SAINT AGNANT ,17620,17308,54,45.866667,-0.966667,1.24
+ Saint-Aigulin ,SAINT AIGULIN ,17360,17309,54,45.15,-0.016667,2.56
+ Saint-André-de-Lidon ,SAINT ANDRE DE LIDON,17260,17310,54,45.6,-0.75,1.38
+ Saint-Augustin ,SAINT AUGUSTIN ,17570,17311,54,45.683333,-1.116667,1.83
+ Saint-Bonnet-sur-Gironde ,SAINT BONNET SUR GIRONDE,17150,17312,54,45.35,-0.666667,1.75
+ Saint-Bris-des-Bois ,SAINT BRIS DES BOIS,17770,17313,54,45.766667,-0.483333,1.05
+Saint-Christophe,CHRISTOPHE ,17220,17315,54,46.133333,-0.933333,2.38
+ Saint-Ciers-Champagne ,SAINT CIERS CHAMPAGNE ,17520,17316,54,45.45,-0.3,1.41
+ Saint-Ciers-du-Taillon ,SAINT CIERS DU TAILLON,17240,17317,54,45.416667,-0.65,1.48
+ Saint-Clément-des-Baleines ,SAINT CLEMENT DES BALEINES,17590,17318,54,46.225,-1.541667,-1
+ Saint-Coutant-le-Grand ,SAINT COUTANT LE GRAND,17430,17320,54,45.95,-0.75,1.27
+ Saint-Crépin ,SAINT CREPIN ,17380,17321,54,46,-0.733333,1.06
+ Saint-Cyr-du-Doret ,SAINT CYR DU DORET,17170,17322,54,46.266667,-0.816667,1.98
+ Saint-Denis-d'Oléron ,SAINT DENIS D OLERON,17650,17323,54,46.033333,-1.383333,2.88
+ Saint-Dizant-du-Bois ,SAINT DIZANT DU BOIS,17150,17324,54,45.4,-0.566667,1.55
+ Saint-Dizant-du-Gua ,SAINT DIZANT DU GUA,17240,17325,54,45.433333,-0.7,1.41
+ Saint-Eugène ,SAINT EUGENE ,17520,17326,54,45.5,-0.283333,1.45
+ Saint-Félix ,SAINT FELIX ,17330,17327,54,46.083333,-0.6,1.77
+ Saint-Fort-sur-Gironde ,SAINT FORT SUR GIRONDE,17240,17328,54,45.466667,-0.716667,1.3
+ Saint-Froult ,SAINT FROULT ,17780,17329,54,45.916667,-1.05,1.57
+ Saint-Genis-de-Saintonge ,SAINT GENIS DE SAINTONGE,17240,17331,54,45.483333,-0.566667,1.21
+ Saint-Georges-de-Didonne ,SAINT GEORGES DE DIDONNE,17110,17333,54,45.6,-1,1.37
+ Saint-Georges-de-Longuepierre ,SAINT GEORGES DE LONGUEPIERRE,17470,17334,54,46.033333,-0.4,1.03
+ Saint-Georges-des-Agoûts ,SAINT GEORGES DES AGOUTS,17150,17335,54,45.383333,-0.65,1.61
+ Saint-Georges-des-Côteaux ,SAINT GEORGES DES COTEAUX,17810,17336,54,45.766667,-0.716667,0.33
+ Saint-Georges-d'Oléron ,SAINT GEORGES D OLERON,17190,17337,54,45.983333,-1.333333,2.68
+ Saint-Georges-du-Bois ,SAINT GEORGES DU BOIS,17700,17338,54,46.133333,-0.733333,1.43
+ Saint-Germain-de-Lusignan ,SAINT GERMAIN DE LUSIGNAN,17500,17339,54,45.45,-0.466667,1.34
+ Saint-Germain-de-Marencennes ,SAINT GERMAIN DE MARENCENNES,17700,17340,54,46.066667,-0.783333,1.16
+ Saint-Germain-de-Vibrac ,SAINT GERMAIN DE VIBRAC,17500,17341,54,45.433333,-0.316667,1.41
+ Saint-Germain-du-Seudre ,SAINT GERMAIN DU SEUDRE,17240,17342,54,45.516667,-0.666667,1.07
+ Saint-Grégoire-d'Ardennes ,SAINT GREGOIRE D ARDENNES,17240,17343,54,45.5,-0.5,1.33
+ Saint-Hilaire-de-Villefranche ,SAINT HILAIRE DE VILLEFRANCHE,17770,17344,54,45.85,-0.533333,1.14
+ Saint-Hilaire-du-Bois ,SAINT HILAIRE DU BOIS,17500,17345,54,45.416667,-0.5,1.48
+ Saint-Hippolyte ,SAINT HIPPOLYTE ,17430,17346,54,45.916667,-0.883333,1.27
+ Saint-Jean-d'Angély ,SAINT JEAN D ANGELY,17400,17347,54,45.95,-0.516667,0.69
+ Saint-Jean-d'Angle ,SAINT JEAN D ANGLE,17620,17348,54,45.816667,-0.95,1.17
+ Saint-Jean-de-Liversay ,SAINT JEAN DE LIVERSAY,17170,17349,54,46.266667,-0.883333,1.98
+ Saint-Julien-de-l'Escap ,SAINT JULIEN DE L,17400,17350,54,45.933333,-0.483333,0.66
+ Saint-Laurent-de-la-Barrière ,SAINT LAURENT DE LA,17380,17352,54,46.033333,-0.7,1.03
+ Saint-Laurent-de-la-Prée ,SAINT LAURENT DE LA,17450,17353,54,45.983333,-1.033333,1.5
+ Saint-Léger ,SAINT LEGER ,17800,17354,54,45.616667,-0.583333,1.09
+ Sainte-Lheurine ,SAINTE LHEURINE ,17520,17355,54,45.533333,-0.366667,1.12
+ Saint-Maigrin ,SAINT MAIGRIN ,17520,17357,54,45.416667,-0.283333,2.01
+ Saint-Mandé-sur-Brédoire ,SAINT MANDE SUR BREDOIRE,17470,17358,54,46.016667,-0.3,1.38
+ Saint-Mard ,SAINT MARD ,17700,17359,54,46.083333,-0.716667,1.23
+ Sainte-Marie-de-Ré ,SAINTE MARIE DE RE,17740,17360,54,46.15,-1.3,2.55
+ Saint-Martial ,SAINT MARTIAL ,17330,17361,54,46.05,-0.45,1.1
+ Saint-Martial-de-Mirambeau ,SAINT MARTIAL DE MIRAMBEAU,17150,17362,54,45.383333,-0.6,1.61
+ Saint-Martial-de-Vitaterne ,SAINT MARTIAL DE VITATERNE,17500,17363,54,45.466667,-0.433333,1.27
+ Saint-Martial-sur-Né ,SAINT MARTIAL SUR NE,17520,17364,54,45.583333,-0.366667,1.12
+ Saint-Martin-d'Ary ,SAINT MARTIN D ARY,17270,17365,54,45.233333,-0.216667,2.22
+ Saint-Martin-de-Coux ,SAINT MARTIN DE COUX,17360,17366,54,45.15,-0.1,2.56
+ Saint-Martin-de-Juillers ,SAINT MARTIN DE JUILLERS,17400,17367,54,45.933333,-0.366667,1.71
+ Saint-Martin-de-la-Coudre ,SAINT MARTIN DE LA,17330,17368,54,46.066667,-0.6,1.74
+ Saint-Martin-de-Ré ,SAINT MARTIN DE RE,17410,17369,54,46.2,-1.366667,2.81
+ Saint-Maurice-de-Laurençanne ,SAINT MAURICE DE LAURENCANNE,17130,17370,54,45.35,-0.383333,1.75
+ Saint-Maurice-de-Tavernole ,SAINT MAURICE DE TAVERNOLE,17500,17371,54,45.483333,-0.4,1.21
+ Saint-Médard-d'Aunis ,SAINT MEDARD D AUNIS,17220,17373,54,46.15,-0.966667,1.59
+ Sainte-Même ,SAINTE MEME ,17770,17374,54,45.883333,-0.466667,0.84
+ Saint-Nazaire-sur-Charente ,SAINT NAZAIRE SUR CHARENTE,17780,17375,54,45.95,-1.05,1.57
+ Saint-ouen-d'Aunis ,SAINT OUEN D AUNIS,17230,17376,54,46.216667,-1.033333,1.77
+ Saint-Ouen ,SAINT OUEN ,17490,17377,54,45.866667,-0.166667,1.9
+ Saint-Palais-de-Négrignac ,SAINT PALAIS DE NEGRIGNAC,17210,17378,54,45.266667,-0.216667,2.09
+ Saint-Palais-de-Phiolin ,SAINT PALAIS DE PHIOLIN,17800,17379,54,45.516667,-0.6,1.59
+ Saint-Palais-sur-Mer ,SAINT PALAIS SUR MER,17420,17380,54,45.633333,-1.083333,1.7
+ Saint-Pardoult ,SAINT PARDOULT ,17400,17381,54,46,-0.45,0.94
+ Saint-Pierre-d'Amilly ,SAINT PIERRE D AMILLY,17700,17382,54,46.166667,-0.666667,1.57
+ Saint-Pierre-de-Juillers ,SAINT PIERRE DE JUILLERS,17400,17383,54,45.933333,-0.366667,1.71
+ Saint-Pierre-de-l'Île ,SAINT PIERRE DE L,17330,17384,54,46.016667,-0.433333,1.58
+ Saint-Pierre-d'Oléron ,SAINT PIERRE D OLERON,17310,17385,54,45.95,-1.316667,2.61
+ Saint-Pierre-du-Palais ,SAINT PIERRE DU PALAIS,17270,17386,54,45.166667,-0.15,2.49
+ Saint-Porchaire ,SAINT PORCHAIRE ,17250,17387,54,45.816667,-0.783333,0.63
+ Saint-Quantin-de-Rancanne ,SAINT QUANTIN DE RANCANNE,17800,17388,54,45.533333,-0.6,1.45
+ Sainte-Ramée ,SAINTE RAMEE ,17240,17390,54,45.416667,-0.666667,1.48
+ Saint-Rogatien ,SAINT ROGATIEN ,17220,17391,54,46.15,-1.066667,1.63
+ Saint-Romain-sur-Gironde ,SAINT ROMAIN SUR GIRONDE,17240,17392,54,45.45,-0.75,1.72
+ Saint-Romain-de-Benet ,SAINT ROMAIN DE BENET,17600,17393,54,45.7,-0.85,0.78
+ Saint-Saturnin-du-Bois ,SAINT SATURNIN DU BOIS,17700,17394,54,46.133333,-0.666667,1.43
+ Saint-Sauveur-d'Aunis ,SAINT SAUVEUR D AUNIS,17540,17396,54,46.216667,-0.883333,1.77
+ Saint-Savinien ,SAINT SAVINIEN ,17350,17397,54,45.883333,-0.683333,0.61
+ Saint-Seurin-de-Palenne ,SAINT SEURIN DE PALENNE,17800,17398,54,45.633333,-0.516667,0.66
+ Saint-Séverin-sur-Boutonne ,SAINT SEVERIN SUR BOUTONNE,17330,17401,54,46.083333,-0.416667,1.62
+ Saint-Sigismond-de-Clermont ,SAINT SIGISMOND DE CLERMONT,17240,17402,54,45.45,-0.533333,1.34
+ Saint-Simon-de-Bordes ,SAINT SIMON DE BORDES,17500,17403,54,45.4,-0.45,1.55
+ Saint-Simon-de-Pellouaille ,SAINT SIMON DE PELLOUAILLE,17260,17404,54,45.616667,-0.7,0.7
+ Saint-Sorlin-de-Cônac ,SAINT SORLIN DE CONAC,17150,17405,54,45.366667,-0.683333,1.68
+ Saint-Sornin ,SAINT SORNIN ,17600,17406,54,45.766667,-0.983333,1.52
+ Sainte-Soulle ,SAINTE SOULLE ,17220,17407,54,46.183333,-1.016667,1.64
+ Saint-Sulpice-d'Arnoult ,SAINT SULPICE D ARNOULT,17250,17408,54,45.8,-0.85,0.9
+ Saint-Sulpice-de-Royan ,SAINT SULPICE DE ROYAN,17200,17409,54,45.666667,-1.016667,1.44
+ Saint-Thomas-de-Cônac ,SAINT THOMAS DE CONAC,17150,17410,54,45.383333,-0.683333,1.61
+ Saint-Trojan-les-Bains ,SAINT TROJAN LES BAINS,17370,17411,54,45.833333,-1.2,2.16
+ Saint-Vaize ,SAINT VAIZE ,17100,17412,54,45.816667,-0.633333,1.37
+ Saint-Vivien ,SAINT VIVIEN ,17220,17413,54,46.066667,-1.05,1.79
+ Saint-Xandre ,SAINT XANDRE ,17138,17414,54,46.2,-1.1,1.76
+ Saintes ,SAINTES ,17100,17415,54,45.75,-0.633333,1.01
+ Saleignes ,SALEIGNES ,17510,17416,54,46.016667,-0.183333,1.84
+ Salignac-de-Mirambeau ,SALIGNAC DE MIRAMBEAU ,17130,17417,54,45.35,-0.483333,1.81
+ Salignac-sur-Charente ,SALIGNAC SUR CHARENTE ,17800,17418,54,45.666667,-0.416667,1.74
+ Salles-lès-Aulnay ,SALLES LES AULNAY ,17470,17419,54,46.033333,-0.316667,1.31
+ Salles-sur-Mer ,SALLES SUR MER ,17220,17420,54,46.1,-1.05,1.57
+ Saujon ,SAUJON ,17600,17421,54,45.666667,-0.916667,1.04
+ Seigné ,SEIGNE ,17510,17422,54,45.95,-0.2,1.77
+ Semillac ,SEMILLAC ,17150,17423,54,45.4,-0.6,1.55
+ Semoussac ,SEMOUSSAC ,17150,17424,54,45.383333,-0.616667,1.61
+ Sémussac ,SEMUSSAC ,17120,17425,54,45.6,-0.916667,1.5
+ Le Seure ,LE SEURE ,17770,17426,54,45.783333,-0.366667,1.69
+ Siecq ,SIECQ ,17490,17427,54,45.833333,-0.2,1.77
+ Sonnac ,SONNAC ,17160,17428,54,45.833333,-0.266667,1.51
+ Soubise ,SOUBISE ,17780,17429,54,45.933333,-1,1.37
+ Soubran ,SOUBRAN ,17150,17430,54,45.35,-0.516667,1.75
+ Soulignonne ,SOULIGNONNE ,17250,17431,54,45.783333,-0.783333,1.07
+ Souméras ,SOUMERAS ,17130,17432,54,45.3,-0.416667,1.95
+ Sousmoulins ,SOUSMOULINS ,17130,17433,54,45.3,-0.333333,1.95
+ Surgères ,SURGERES ,17700,17434,54,46.1,-0.75,1.3
+ Taillant ,TAILLANT ,17350,17435,54,45.9,-0.616667,1.08
+ Taillebourg ,TAILLEBOURG ,17350,17436,54,45.833333,-0.65,0.7
+ Talmont ,TALMONT ,17120,17437,54,45.533333,-0.9,1.18
+ Tanzac ,TANZAC ,17260,17438,54,45.566667,-0.633333,0.93
+ Taugon ,TAUGON ,17170,17439,54,46.3,-0.833333,2.11
+ Ternant ,TERNANT ,17400,17440,54,45.95,-0.583333,1.22
+ Tesson ,TESSON ,17460,17441,54,45.633333,-0.65,0.6
+ Thaims ,THAIMS ,17120,17442,54,45.616667,-0.783333,1.01
+ Thairé ,THAIRE ,17290,17443,54,46.066667,-1,1.9
+ Thénac ,THENAC ,17460,17444,54,45.666667,-0.65,0.46
+ Thézac ,THEZAC ,17600,17445,54,45.666667,-0.783333,1.26
+ Thors ,THORS ,17160,17446,54,45.833333,-0.316667,1.31
+ Le Thou ,LE THOU ,17290,17447,54,46.083333,-0.916667,1.23
+ Tonnay-Boutonne ,TONNAY BOUTONNE ,17380,17448,54,45.966667,-0.716667,0.86
+ Tonnay-Charente ,TONNAY CHARENTE ,17430,17449,54,45.95,-0.9,1.39
+ Torxé ,TORXE ,17380,17450,54,45.95,-0.616667,1.16
+ Les Touches-de-Périgny ,LES TOUCHES DE PERIGNY,17160,17451,54,45.916667,-0.266667,1.51
+ La Tremblade ,LA TREMBLADE ,17390,17452,54,45.766667,-1.133333,1.89
+ Trizay ,TRIZAY ,17250,17453,54,45.883333,-0.9,1.67
+ La Vallée ,LA VALLEE ,17250,17455,54,45.883333,-0.85,1
+ Vallet ,VALLET ,17130,17456,54,45.3,-0.35,1.95
+ Vandré ,VANDRE ,17700,17457,54,46.05,-0.75,1.1
+ Vanzac ,VANZAC ,17500,17458,54,45.366667,-0.3,1.75
+ Varaize ,VARAIZE ,17400,17459,54,45.916667,-0.416667,1.1
+ Varzay ,VARZAY ,17460,17460,54,45.7,-0.733333,1.63
+ Vaux-sur-Mer ,VAUX SUR MER ,17640,17461,54,45.65,-1.033333,1.5
+ Vénérand ,VENERAND ,17100,17462,54,45.8,-0.566667,0.82
+ Vergeroux ,VERGEROUX ,17300,17463,54,45.966667,-0.983333,1.3
+ Vergné ,VERGNE ,17330,17464,54,46.066667,-0.516667,1.16
+ La Vergne ,LA VERGNE ,17400,17465,54,45.966667,-0.566667,1.03
+ Vérines ,VERINES ,17540,17466,54,46.2,-0.966667,1.7
+ Vervant ,VERVANT ,17400,17467,54,45.983333,-0.45,0.82
+ Vibrac ,VIBRAC ,17130,17468,54,45.358333,-0.341667,-1
+ Villars-en-Pons ,VILLARS EN PONS ,17260,17469,54,45.6,-0.616667,1.19
+ Villars-les-Bois ,VILLARS LES BOIS ,17770,17470,54,45.8,-0.433333,0.86
+ La Villedieu ,LA VILLEDIEU ,17470,17471,54,46.066667,-0.316667,1.31
+ Villedoux ,VILLEDOUX ,17230,17472,54,46.233333,-1.05,1.84
+ Villemorin ,VILLEMORIN ,17470,17473,54,46,-0.283333,1.45
+ Villeneuve-la-Comtesse ,VILLENEUVE LA COMTESSE ,17330,17474,54,46.1,-0.5,1.3
+ Villenouvelle ,VILLENOUVELLE ,17330,17475,54,46.1,-0.45,1.3
+ Villexavier ,VILLEXAVIER ,17500,17476,54,45.366667,-0.433333,1.68
+ Villiers-Couture ,VILLIERS COUTURE ,17510,17477,54,45.983333,-0.15,1.97
+ Vinax ,VINAX ,17510,17478,54,46.033333,-0.2,1.77
+ Virollet ,VIROLLET ,17260,17479,54,45.55,-0.716667,1
+ Virson ,VIRSON ,17290,17480,54,46.133333,-0.9,1.43
+ Voissay ,VOISSAY ,17400,17481,54,45.95,-0.6,1.44
+ Vouhé ,VOUHE ,17700,17482,54,46.133333,-0.783333,1.43
+ Yves ,YVES ,17340,17483,54,46.016667,-1.05,1.57
+ La Brée-les-Bains ,LA BREE LES BAINS,17840,17486,54,46.016667,-1.35,2.75
+ La Pallice ,LA PALLICE ,17000,17900,54,46.166667,-1.216667,2.22
+ Brouage ,BROUAGE ,17320,17909,54,45.866667,-1.066667,1.63
+ Chaucre ,CHAUCRE ,17190,17912,54,45.991667,-1.375,2.84
+ La Cotinière ,LA COTINIERE ,17310,17917,54,45.916667,-1.366667,2.81
+ Le Gillieux ,LE GILLIEUX ,17590,17921,54,46.225,-1.533333,-1
+ Ronce-les-Bains ,RONCE LES BAINS ,17390,17922,54,45.8,-1.166667,2.03
+ Les Boucholeurs ,LES BOUCHOLEURS ,17340,17923,54,46.05,-1.083333,1.7
+ Sérigny ,SERIGNY ,17230,17930,54,46.266667,-1,-1
+ Achères ,ACHERES ,18250,18001,24,47.283333,2.466667,1.62
+ Ainay-le-Vieil ,AINAY LE VIEIL ,18200,18002,24,46.666667,2.55,1.75
+ Les Aix-d'Angillon ,LES AIX D ANGILLON,18220,18003,24,47.2,2.566667,0.83
+ Allogny ,ALLOGNY ,18110,18004,24,47.216667,2.316667,2.16
+ Allouis ,ALLOUIS ,18500,18005,24,47.166667,2.233333,1.26
+ Annoix ,ANNOIX ,18340,18006,24,46.95,2.55,1.38
+ Arçay ,ARCAY ,18340,18008,24,46.95,2.35,1.31
+ Arcomps ,ARCOMPS ,18200,18009,24,46.683333,2.433333,1.67
+ Ardenais ,ARDENAIS ,18170,18010,24,46.65,2.366667,-1
+ Argent-sur-Sauldre ,ARGENT SUR SAULDRE ,18410,18011,24,47.55,2.45,2.52
+ Argenvières ,ARGENVIERES ,18140,18012,24,47.133333,3,2.08
+ Arpheuilles ,ARPHEUILLES ,18200,18013,24,46.783333,2.566667,1.77
+ Assigny ,ASSIGNY ,18260,18014,24,47.433333,2.75,1.96
+ Aubigny-sur-Nère ,AUBIGNY SUR NERE ,18700,18015,24,47.483333,2.433333,2.2
+ Aubinges ,AUBINGES ,18220,18016,24,47.216667,2.583333,0.91
+ Augy-sur-Aubois ,AUGY SUR AUBOIS ,18600,18017,24,46.783333,2.85,1.43
+ Avord ,AVORD ,18520,18018,24,47.033333,2.65,1
+ Azy ,AZY ,18220,18019,24,47.183333,2.716667,2.09
+ Bannay ,BANNAY ,18300,18020,24,47.383333,2.883333,1.72
+ Bannegon ,BANNEGON ,18210,18021,24,46.8,2.716667,1.11
+ Barlieu ,BARLIEU ,18260,18022,24,47.483333,2.633333,2.2
+ Baugy ,BAUGY ,18800,18023,24,47.083333,2.733333,0.92
+ Beddes ,BEDDES ,18370,18024,24,46.6,2.2,2.08
+ Beffes ,BEFFES ,18320,18025,24,47.1,3.016667,2.16
+ Bengy-sur-Craon ,BENGY SUR CRAON ,18520,18027,24,47,2.75,1
+ Berry-Bouy ,BERRY BOUY ,18500,18028,24,47.116667,2.3,1.37
+ Bessais-le-Fromental ,BESSAIS LE FROMENTAL ,18210,18029,24,46.75,2.75,1.47
+ Blancafort ,BLANCAFORT ,18410,18030,24,47.533333,2.533333,2.44
+ Blet ,BLET ,18350,18031,24,46.9,2.733333,0.99
+ Boulleret ,BOULLERET ,18240,18032,24,47.416667,2.866667,1.88
+ Bourges ,BOURGES ,18000,18033,24,47.083333,2.4,0.53
+ Bouzais ,BOUZAIS ,18200,18034,24,46.7,2.483333,1.59
+ Brécy ,BRECY ,18220,18035,24,47.116667,2.616667,1.31
+ Brinay ,BRINAY ,18120,18036,24,47.15,2.133333,1.7
+ Brinon-sur-Sauldre ,BRINON SUR SAULDRE ,18410,18037,24,47.566667,2.25,2.6
+ Bruère-Allichamps ,BRUERE ALLICHAMPS ,18200,18038,24,46.766667,2.45,1.27
+ Bué ,BUE ,18300,18039,24,47.3,2.8,1.31
+ Bussy ,BUSSY ,18130,18040,24,46.9,2.633333,0.62
+ La Celette ,LA CELETTE ,18360,18041,24,46.65,2.516667,1.83
+ La Celle ,LA CELLE ,18200,18042,24,46.766667,2.45,1.27
+ La Celle-Condé ,LA CELLE CONDE ,18160,18043,24,46.8,2.183333,1.48
+ Cerbois ,CERBOIS ,18120,18044,24,47.116667,2.1,1.84
+ Chalivoy-Milon ,CHALIVOY MILON ,18130,18045,24,46.866667,2.7,1.35
+ La Chapelle-d'Angillon ,LA CHAPELLE D ANGILLON,18380,18047,24,47.366667,2.433333,1.64
+ La Chapelle-Hugon ,LA CHAPELLE HUGON ,18150,18048,24,46.9,2.95,1.86
+ La Chapelle-Montlinard ,LA CHAPELLE MONTLINARD ,18140,18049,24,47.166667,2.983333,2.01
+ La Chapelle-Saint-Ursin ,LA CHAPELLE SAINT URSIN,18570,18050,24,47.066667,2.316667,0.98
+ La Chapelotte ,LA CHAPELOTTE ,18250,18051,24,47.35,2.583333,1.55
+ Charenton-du-Cher ,CHARENTON DU CHER ,18210,18052,24,46.733333,2.65,1.43
+ Charentonnay ,CHARENTONNAY ,18140,18053,24,47.15,2.883333,1.57
+ Charly ,CHARLY ,18350,18054,24,46.9,2.75,0.99
+ Chârost ,CHAROST ,18290,18055,24,46.983333,2.133333,1.7
+ Chassy ,CHASSY ,18800,18056,24,47.05,2.85,1.71
+ Châteaumeillant ,CHATEAUMEILLANT ,18370,18057,24,46.566667,2.2,2.24
+ Châteauneuf-sur-Cher ,CHATEAUNEUF SUR CHER ,18190,18058,24,46.85,2.316667,0.93
+ Le Châtelet ,LE CHATELET ,18170,18059,24,46.633333,2.283333,1.91
+ Chaumont ,CHAUMONT ,18350,18060,24,46.833333,2.75,1.61
+ Chaumoux-Marcilly ,CHAUMOUX MARCILLY ,18140,18061,24,47.116667,2.783333,1.63
+ Le Chautay ,LE CHAUTAY ,18150,18062,24,46.983333,2.966667,1.94
+ Chavannes ,CHAVANNES ,18190,18063,24,46.85,2.375,0.87
+ Chéry ,CHERY ,18120,18064,24,47.116667,2.05,2.06
+ Chezal-Benoît ,CHEZAL BENOIT ,18160,18065,24,46.833333,2.116667,1.77
+ Civray ,CIVRAY ,18290,18066,24,46.966667,2.166667,1.55
+ Clémont ,CLEMONT ,18410,18067,24,47.566667,2.3,2.6
+ Cogny ,COGNY ,18130,18068,24,46.85,2.633333,0.87
+ Colombiers ,COLOMBIERS ,18200,18069,24,46.7,2.533333,1.59
+ Concressault ,CONCRESSAULT ,18260,18070,24,47.483333,2.583333,2.2
+ Contres ,CONTRES ,18130,18071,24,46.866667,2.5,1.71
+ Cornusse ,CORNUSSE ,18350,18072,24,46.95,2.733333,0.92
+ Corquoy ,CORQUOY ,18190,18073,24,46.883333,2.3,1.55
+ Couargues ,COUARGUES ,18300,18074,24,47.3,2.916667,1.72
+ Cours-les-Barres ,COURS LES BARRES ,18320,18075,24,47.016667,3.033333,2.23
+ Coust ,COUST ,18210,18076,24,46.7,2.6,1.59
+ Couy ,COUY ,18140,18077,24,47.116667,2.833333,1.36
+ Crézançay-sur-Cher ,CREZANCAY SUR CHER ,18190,18078,24,46.816667,2.366667,1.03
+ Croisy ,CROISY ,18350,18080,24,46.933333,2.8,1.21
+ Crosses ,CROSSES ,18340,18081,24,47.016667,2.583333,1.96
+ Cuffy ,CUFFY ,18150,18082,24,46.95,3.05,2.3
+ Culan ,CULAN ,18270,18083,24,46.55,2.35,2.32
+ Dampierre-en-Crot ,DAMPIERRE EN CROT ,18260,18084,24,47.466667,2.583333,2.12
+ Dampierre-en-Graçay ,DAMPIERRE EN GRACAY ,18310,18085,24,47.183333,1.95,2.5
+ Drevant ,DREVANT ,18200,18086,24,46.7,2.516667,1.59
+ Dun-sur-Auron ,DUN SUR AURON ,18130,18087,24,46.883333,2.566667,0.75
+ Ennordres ,ENNORDRES ,18380,18088,24,47.433333,2.383333,1.96
+ Épineuil-le-Fleuriel ,EPINEUIL LE FLEURIEL ,18360,18089,24,46.55,2.583333,2.32
+ Farges-Allichamps ,FARGES ALLICHAMPS ,18200,18091,24,46.766667,2.416667,1.43
+ Farges-en-Septaine ,FARGES EN SEPTAINE ,18800,18092,24,47.066667,2.65,1.75
+ Faverdines ,FAVERDINES ,18360,18093,24,46.65,2.466667,1.83
+ Feux ,FEUX ,18300,18094,24,47.233333,2.866667,1.5
+ Foëcy ,FOECY ,18500,18096,24,47.166667,2.166667,1.55
+ Fussy ,FUSSY ,18110,18097,24,47.15,2.433333,1
+ Gardefort ,GARDEFORT ,18300,18098,24,47.266667,2.833333,-1
+ Garigny ,GARIGNY ,18140,18099,24,47.083333,2.9,1.65
+ Genouilly ,GENOUILLY ,18310,18100,24,47.183333,1.883333,2.79
+ Germigny-l'Exempt ,GERMIGNY L EXEMPT ,18150,18101,24,46.916667,2.9,1.65
+ Givardon ,GIVARDON ,18600,18102,24,46.833333,2.816667,1.28
+ Graçay ,GRACAY ,18310,18103,24,47.133333,1.85,2.93
+ Groises ,GROISES ,18140,18104,24,47.2,2.8,1.56
+ Gron ,GRON ,18800,18105,24,47.116667,2.75,0.99
+ Grossouvre ,GROSSOUVRE ,18600,18106,24,46.866667,2.933333,1.79
+ La Groutte ,LA GROUTTE ,18200,18107,24,46.683333,2.516667,1.67
+ La Guerche-sur-l'Aubois ,LA GUERCHE SUR L,18150,18108,24,46.95,2.95,1.86
+ Henrichemont ,HENRICHEMONT ,18250,18109,24,47.3,2.533333,1.31
+ Herry ,HERRY ,18140,18110,24,47.216667,2.95,1.86
+ Humbligny ,HUMBLIGNY ,18250,18111,24,47.25,2.666667,1.07
+ Ids-Saint-Roch ,IDS SAINT ROCH ,18170,18112,24,46.716667,2.25,1.51
+ Ignol ,IGNOL ,18350,18113,24,46.966667,2.85,1.43
+ Ineuil ,INEUIL ,18160,18114,24,46.783333,2.3,1.62
+ Ivoy-le-Pré ,IVOY LE PRE ,18380,18115,24,47.35,2.483333,1.55
+ Jalognes ,JALOGNES ,18300,18116,24,47.233333,2.783333,1.34
+ Jars ,JARS ,18260,18117,24,47.4,2.683333,1.8
+ Jouet-sur-l'Aubois ,JOUET SUR L AUBOIS,18320,18118,24,47.05,3,2.08
+ Jussy-Champagne ,JUSSY CHAMPAGNE ,18130,18119,24,46.983333,2.65,1.18
+ Jussy-le-Chaudrier ,JUSSY LE CHAUDRIER ,18140,18120,24,47.116667,2.933333,1.79
+ Lantan ,LANTAN ,18130,18121,24,46.9,2.666667,0.75
+ Lapan ,LAPAN ,18340,18122,24,46.916667,2.3,2.06
+ Laverdines ,LAVERDINES ,18800,18123,24,47.033333,2.783333,1.14
+ Lazenay ,LAZENAY ,18120,18124,24,47.075,2.058333,-1
+ Léré ,LERE ,18240,18125,24,47.466667,2.866667,2.12
+ Levet ,LEVET ,18340,18126,24,46.933333,2.416667,0.56
+ Limeux ,LIMEUX ,18120,18128,24,47.066667,2.116667,1.77
+ Lissay-Lochy ,LISSAY LOCHY ,18340,18129,24,46.966667,2.416667,0.46
+ Loye-sur-Arnon ,LOYE SUR ARNON ,18170,18130,24,46.65,2.383333,1.83
+ Lugny-Bourbonnais ,LUGNY BOURBONNAIS ,18350,18131,24,46.933333,2.7,1.28
+ Lugny-Champagne ,LUGNY CHAMPAGNE ,18140,18132,24,47.2,2.816667,1.37
+ Lunery ,LUNERY ,18400,18133,24,46.933333,2.266667,1.12
+ Lury-sur-Arnon ,LURY SUR ARNON ,18120,18134,24,47.116667,2.05,2.06
+ Maisonnais ,MAISONNAIS ,18170,18135,24,46.633333,2.2,1.91
+ Marçais ,MARCAIS ,18170,18136,24,46.7,2.366667,1.59
+ Mareuil-sur-Arnon ,MAREUIL SUR ARNON ,18290,18137,24,46.883333,2.166667,1.95
+ Marmagne ,MARMAGNE ,18500,18138,24,47.1,2.283333,1.25
+ Massay ,MASSAY ,18120,18140,24,47.15,2,2.28
+ Mehun-sur-Yèvre ,MEHUN SUR YEVRE ,18500,18141,24,47.15,2.216667,1.33
+ Meillant ,MEILLANT ,18200,18142,24,46.783333,2.5,1.19
+ Menetou-Couture ,MENETOU COUTURE ,18320,18143,24,47.033333,2.916667,1.72
+ Menetou-Râtel ,MENETOU RATEL ,18300,18144,24,47.35,2.75,1.55
+ Menetou-Salon ,MENETOU SALON ,18510,18145,24,47.233333,2.5,0.99
+ Ménétréol-sous-Sancerre ,MENETREOL SOUS SANCERRE ,18300,18146,24,47.316667,2.866667,1.5
+ Ménétréol-sur-Sauldre ,MENETREOL SUR SAULDRE ,18700,18147,24,47.45,2.316667,2.04
+ Méreau ,MEREAU ,18120,18148,24,47.166667,2.05,2.06
+ Méry-ès-Bois ,MERY ES BOIS ,18380,18149,24,47.316667,2.366667,1.39
+ Méry-sur-Cher ,MERY SUR CHER ,18100,18150,24,47.233333,1.983333,2.35
+ Montlouis ,MONTLOUIS ,18160,18152,24,46.816667,2.233333,1.26
+ Morlac ,MORLAC ,18170,18153,24,46.716667,2.316667,1.51
+ Mornay-Berry ,MORNAY BERRY ,18350,18154,24,47.05,2.883333,2
+ Mornay-sur-Allier ,MORNAY SUR ALLIER ,18600,18155,24,46.816667,3.033333,2.23
+ Morogues ,MOROGUES ,18220,18156,24,47.233333,2.6,0.99
+ Morthomiers ,MORTHOMIERS ,18570,18157,24,47.033333,2.266667,1.19
+ Moulins-sur-Yèvre ,MOULINS SUR YEVRE ,18390,18158,24,47.083333,2.516667,0.26
+ Nançay ,NANCAY ,18330,18159,24,47.35,2.2,1.55
+ Nérondes ,NERONDES ,18350,18160,24,47,2.833333,1.36
+ Neuilly-en-Dun ,NEUILLY EN DUN ,18600,18161,24,46.8,2.783333,1.32
+ Neuilly-en-Sancerre ,NEUILLY EN SANCERRE ,18250,18162,24,47.3,2.683333,1.31
+ Neuvy-Deux-Clochers ,NEUVY DEUX CLOCHERS ,18250,18163,24,47.283333,2.683333,1.23
+ Neuvy-le-Barrois ,NEUVY LE BARROIS ,18600,18164,24,46.866667,3.05,2.3
+ Neuvy-sur-Barangeon ,NEUVY SUR BARANGEON ,18330,18165,24,47.316667,2.25,1.39
+ Nohant-en-Goût ,NOHANT EN GOUT ,18390,18166,24,47.1,2.566667,1.13
+ Nohant-en-Graçay ,NOHANT EN GRACAY ,18310,18167,24,47.133333,1.883333,2.79
+ Nozières ,NOZIERES ,18200,18169,24,46.733333,2.433333,1.43
+ Oizon ,OIZON ,18700,18170,24,47.466667,2.516667,2.12
+ Orcenais ,ORCENAIS ,18200,18171,24,46.716667,2.433333,1.51
+ Orval ,ORVAL ,18200,18172,24,46.733333,2.483333,1.43
+ Osmery ,OSMERY ,18130,18173,24,46.933333,2.65,0.62
+ Osmoy ,OSMOY ,18390,18174,24,47.066667,2.516667,0.56
+ Ourouer-lès-Bourdelins ,OUROUER LES BOURDELINS ,18350,18175,24,46.916667,2.816667,1.28
+ Parassy ,PARASSY ,18220,18176,24,47.233333,2.55,1.07
+ Parnay ,PARNAY ,18130,18177,24,46.85,2.566667,1.06
+ La Perche ,LA PERCHE ,18200,18178,24,46.65,2.566667,1.83
+ Pigny ,PIGNY ,18110,18179,24,47.183333,2.433333,0.75
+ Plaimpied-Givaudins ,PLAIMPIED GIVAUDINS ,18340,18180,24,47,2.45,0.52
+ Plou ,PLOU ,18290,18181,24,47.033333,2.133333,1.74
+ Le Pondy ,LE PONDY ,18210,18183,24,46.8,2.65,1.11
+ Précy ,PRECY ,18140,18184,24,47.1,2.933333,1.79
+ Presly ,PRESLY ,18380,18185,24,47.383333,2.35,1.72
+ Preuilly ,PREUILLY ,18120,18186,24,47.1,2.183333,1.61
+ Préveranges ,PREVERANGES ,18370,18187,24,46.433333,2.25,2.88
+ Primelles ,PRIMELLES ,18400,18188,24,46.9,2.216667,1.41
+ Quantilly ,QUANTILLY ,18110,18189,24,47.233333,2.45,1.27
+ Quincy ,QUINCY ,18120,18190,24,47.133333,2.166667,1.55
+ Raymond ,RAYMOND ,18130,18191,24,46.966667,2.683333,1.28
+ Reigny ,REIGNY ,18270,18192,24,47.3,2.75,2
+ Rezay ,REZAY ,18170,18193,24,46.683333,2.183333,1.67
+ Rians ,RIANS ,18220,18194,24,47.183333,2.616667,0.75
+ Sagonne ,SAGONNE ,18600,18195,24,46.85,2.833333,1.36
+ Saint-Aignan-des-Noyers ,SAINT AIGNAN DES NOYERS,18600,18196,24,46.766667,2.816667,1.28
+ Saint-Ambroix ,SAINT AMBROIX ,18290,18198,24,46.933333,2.116667,1.77
+ Saint-Baudel ,SAINT BAUDEL ,18160,18199,24,46.833333,2.216667,1.33
+ Saint-Bouize ,SAINT BOUIZE ,18300,18200,24,47.283333,2.883333,1.57
+ Saint-Caprais ,SAINT CAPRAIS ,18400,18201,24,46.966667,2.3,0.99
+ Saint-Céols ,SAINT CEOLS ,18220,18202,24,47.216667,2.633333,0.91
+ Saint-Christophe-le-Chaudry ,SAINT CHRISTOPHE LE CHAUDRY,18270,18203,24,46.583333,2.366667,2.16
+ Saint-Denis-de-Palin ,SAINT DENIS DE PALIN,18130,18204,24,46.933333,2.533333,1.19
+ Saint-Doulchard ,SAINT DOULCHARD ,18230,18205,24,47.1,2.35,0.75
+ Saint-Éloy-de-Gy ,SAINT ELOY DE GY,18110,18206,24,47.15,2.35,1.61
+ Saint-Florent-sur-Cher ,SAINT FLORENT SUR CHER,18400,18207,24,46.983333,2.25,1.19
+ Saint-Georges-de-Poisieux ,SAINT GEORGES DE POISIEUX,18200,18209,24,46.683333,2.483333,1.67
+ Saint-Georges-sur-la-Prée ,SAINT GEORGES SUR LA,18100,18210,24,47.216667,1.933333,2.57
+ Saint-Georges-sur-Moulon ,SAINT GEORGES SUR MOULON,18110,18211,24,47.183333,2.433333,0.75
+ Saint-Germain-des-Bois ,SAINT GERMAIN DES BOIS,18340,18212,24,46.916667,2.45,0.6
+ Saint-Germain-du-Puy ,SAINT GERMAIN DU PUY,18390,18213,24,47.1,2.483333,0.99
+ Saint-Hilaire-de-Court ,SAINT HILAIRE DE COURT,18100,18214,24,47.216667,2.016667,2.21
+ Saint-Hilaire-de-Gondilly ,SAINT HILAIRE DE GONDILLY,18320,18215,24,47.05,2.866667,1.67
+ Saint-Hilaire-en-Lignières ,SAINT HILAIRE EN LIGNIERES,18160,18216,24,46.733333,2.166667,1.55
+ Saint-Jeanvrin ,SAINT JEANVRIN ,18370,18217,24,46.583333,2.233333,2.16
+ Saint-Just ,SAINT JUST ,18340,18218,24,46.983333,2.516667,0.97
+ Saint-Léger-le-Petit ,SAINT LEGER LE PETIT,18140,18220,24,47.116667,3,2.08
+ Saint-Loup-des-Chaumes ,SAINT LOUP DES CHAUMES,18190,18221,24,46.816667,2.383333,1.03
+ Sainte-Lunaise ,SAINTE LUNAISE ,18340,18222,24,46.933333,2.35,1.36
+ Saint-Martin-d'Auxigny ,SAINT MARTIN D AUXIGNY,18110,18223,24,47.2,2.416667,0.83
+ Saint-Martin-des-Champs ,SAINT MARTIN DES CHAMPS,18140,18224,24,47.15,2.916667,1.72
+ Saint-Michel-de-Volangis ,SAINT MICHEL DE VOLANGIS,18390,18226,24,47.15,2.5,1.6
+ Sainte-Montaine ,SAINTE MONTAINE ,18700,18227,24,47.483333,2.316667,2.2
+ Saint-Outrille ,SAINT OUTRILLE ,18310,18228,24,47.1439,1.8409,-1
+ Saint-Palais ,SAINT PALAIS ,18110,18229,24,47.233333,2.416667,0.99
+ Saint-Pierre-les-Bois ,SAINT PIERRE LES BOIS,18170,18230,24,46.666667,2.283333,1.75
+ Saint-Pierre-les-Étieux ,SAINT PIERRE LES ETIEUX,18210,18231,24,46.733333,2.616667,1.43
+ Saint-Priest-la-Marche ,SAINT PRIEST LA MARCHE,18370,18232,24,46.45,2.166667,2.8
+ Saint-Satur ,SAINT SATUR ,18300,18233,24,47.333333,2.85,1.47
+ Saint-Saturnin ,SAINT SATURNIN ,18370,18234,24,46.5,2.233333,2.56
+ Sainte-Solange ,SAINTE SOLANGE ,18220,18235,24,47.133333,2.55,1.24
+ Saint-Symphorien ,SAINT SYMPHORIEN ,18190,18236,24,46.816667,2.316667,1.03
+ Sainte-Thorette ,SAINTE THORETTE ,18500,18237,24,47.083333,2.2,1.41
+ Saint-Vitte ,SAINT VITTE ,18360,18238,24,46.533333,2.533333,2.4
+ Saligny-le-Vif ,SALIGNY LE VIF ,18800,18239,24,47.05,2.766667,1.07
+ Sancergues ,SANCERGUES ,18140,18240,24,47.15,2.916667,1.72
+ Sancerre ,SANCERRE ,18300,18241,24,47.333333,2.833333,1.47
+ Sancoins ,SANCOINS ,18600,18242,24,46.833333,2.916667,1.72
+ Santranges ,SANTRANGES ,18240,18243,24,47.5,2.766667,2.28
+ Saugy ,SAUGY ,18290,18244,24,46.966667,2.133333,1.7
+ Saulzais-le-Potier ,SAULZAIS LE POTIER ,18360,18245,24,46.6,2.5,2.08
+ Savigny-en-Sancerre ,SAVIGNY EN SANCERRE ,18240,18246,24,47.433333,2.816667,1.96
+ Savigny-en-Septaine ,SAVIGNY EN SEPTAINE ,18390,18247,24,47.033333,2.55,1.53
+ Senneçay ,SENNECAY ,18340,18248,24,46.95,2.45,0.38
+ Sens-Beaujeu ,SENS BEAUJEU ,18300,18249,24,47.316667,2.7,1.99
+ Serruelles ,SERRUELLES ,18190,18250,24,46.883333,2.383333,1.06
+ Sévry ,SEVRY ,18140,18251,24,47.133333,2.816667,1.28
+ Sidiailles ,SIDIAILLES ,18270,18252,24,46.5,2.316667,2.56
+ Soulangis ,SOULANGIS ,18220,18253,24,47.183333,2.516667,1.35
+ Soye-en-Septaine ,SOYE EN SEPTAINE ,18340,18254,24,47.033333,2.5,1.19
+ Le Subdray ,LE SUBDRAY ,18570,18255,24,47.016667,2.3,0.97
+ Subligny ,SUBLIGNY ,18260,18256,24,47.4,2.75,1.8
+ Sury-près-Léré ,SURY PRES LERE ,18240,18257,24,47.483333,2.866667,2.2
+ Sury-en-Vaux ,SURY EN VAUX ,18300,18258,24,47.366667,2.8,1.64
+ Sury-ès-Bois ,SURY ES BOIS ,18260,18259,24,47.466667,2.7,2.12
+ Tendron ,TENDRON ,18350,18260,24,46.966667,2.85,1.43
+ Thaumiers ,THAUMIERS ,18210,18261,24,46.816667,2.65,1.03
+ Thauvenay ,THAUVENAY ,18300,18262,24,47.316667,2.866667,1.5
+ Thénioux ,THENIOUX ,18100,18263,24,47.25,1.933333,2.57
+ Torteron ,TORTERON ,18320,18265,24,47.016667,2.966667,1.94
+ Touchay ,TOUCHAY ,18160,18266,24,46.716667,2.216667,1.51
+ Trouy ,TROUY ,18570,18267,24,47.016667,2.35,1.29
+ Uzay-le-Venon ,UZAY LE VENON ,18190,18268,24,46.816667,2.466667,2.14
+ Vailly-sur-Sauldre ,VAILLY SUR SAULDRE ,18260,18269,24,47.45,2.65,2.04
+ Vallenay ,VALLENAY ,18190,18270,24,46.783333,2.383333,1.19
+ Vasselay ,VASSELAY ,18110,18271,24,47.166667,2.4,0.67
+ Veaugues ,VEAUGUES ,18300,18272,24,47.25,2.75,1.49
+ Venesmes ,VENESMES ,18190,18273,24,46.833333,2.316667,0.95
+ Verdigny ,VERDIGNY ,18300,18274,24,47.35,2.816667,1.55
+ Vereaux ,VEREAUX ,18600,18275,24,46.883333,2.883333,1.57
+ Vernais ,VERNAIS ,18210,18276,24,46.766667,2.716667,1.27
+ Verneuil ,VERNEUIL ,18210,18277,24,46.816667,2.6,1.26
+ Vesdun ,VESDUN ,18360,18278,24,46.533333,2.433333,2.4
+ Vierzon ,VIERZON ,18100,18279,24,47.216667,2.083333,1.91
+ Vignoux-sous-les-Aix ,VIGNOUX SOUS LES AIX,18110,18280,24,47.183333,2.466667,1.21
+ Vignoux-sur-Barangeon ,VIGNOUX SUR BARANGEON ,18500,18281,24,47.216667,2.183333,1.49
+ Villabon ,VILLABON ,18800,18282,24,47.1,2.683333,1.28
+ Villecelin ,VILLECELIN ,18160,18283,24,46.833333,2.183333,1.48
+ Villegenon ,VILLEGENON ,18260,18284,24,47.433333,2.6,1.96
+ Villeneuve-sur-Cher ,VILLENEUVE SUR CHER ,18400,18285,24,47.033333,2.216667,1.53
+ Villequiers ,VILLEQUIERS ,18800,18286,24,47.066667,2.8,1.21
+ Vinon ,VINON ,18300,18287,24,47.283333,2.833333,1.36
+ Vorly ,VORLY ,18340,18288,24,46.95,2.483333,0.5
+ Vornay ,VORNAY ,18130,18289,24,46.966667,2.583333,0.93
+ Vouzeron ,VOUZERON ,18330,18290,24,47.266667,2.233333,1.26
+ Fosse Nouvelle ,FOSSE NOUVELLE ,18200,18908,24,46.65,2.433333,1.83
+ Affieux ,AFFIEUX ,19260,19001,74,45.516667,1.75,1.22
+ Aix ,AIX ,19200,19002,74,45.616667,2.383333,2.03
+ Albignac ,ALBIGNAC ,19190,19003,74,45.133333,1.683333,1.08
+ Albussac ,ALBUSSAC ,19380,19004,74,45.133333,1.833333,1.19
+ Allassac ,ALLASSAC ,19240,19005,74,45.25,1.483333,1.47
+ Altillac ,ALTILLAC ,19120,19007,74,44.966667,1.866667,2.08
+ Ambrugeat ,AMBRUGEAT ,19250,19008,74,45.533333,2.133333,1.32
+ Les Angles-sur-Corrèze ,LES ANGLES SUR CORREZE,19000,19009,74,45.3,1.8,1
+ Argentat ,ARGENTAT ,19400,19010,74,45.1,1.933333,1.28
+ Arnac-Pompadour ,ARNAC POMPADOUR ,19230,19011,74,45.416667,1.366667,1.78
+ Astaillac ,ASTAILLAC ,19120,19012,74,44.95,1.833333,2.18
+ Auriac ,AURIAC ,19220,19014,74,45.2,2.166667,1.24
+ Ayen ,AYEN ,19310,19015,74,45.25,1.316667,1.97
+ Bar ,BAR ,19800,19016,74,45.35,1.816667,1.34
+ Bassignac-le-Bas ,BASSIGNAC LE BAS ,19430,19017,74,45.016667,1.866667,1.91
+ Bassignac-le-Haut ,BASSIGNAC LE HAUT ,19220,19018,74,45.216667,2.066667,1.34
+ Beaulieu-sur-Dordogne ,BEAULIEU SUR DORDOGNE ,19120,19019,74,44.983333,1.833333,1.98
+ Bellechassagne ,BELLECHASSAGNE ,19290,19021,74,45.65,2.233333,2.02
+ Benayes ,BENAYES ,19510,19022,74,45.516667,1.466667,1.5
+ Beyssac ,BEYSSAC ,19230,19024,74,45.366667,1.4,1.65
+ Beyssenac ,BEYSSENAC ,19230,19025,74,45.4,1.266667,2.15
+ Billac ,BILLAC ,19120,19026,74,44.95,1.783333,2.18
+ Bonnefond ,BONNEFOND ,19170,19027,74,45.533333,1.983333,1.32
+ Bort-les-Orgues ,BORT LES ORGUES ,19110,19028,74,45.4,2.5,2.47
+ Branceilles ,BRANCEILLES ,19500,19029,74,45.016667,1.7,1.78
+ Brignac-la-Plaine ,BRIGNAC LA PLAINE ,19310,19030,74,45.183333,1.333333,1.9
+ Brive-la-Gaillarde ,BRIVE LA GAILLARDE ,19100,19031,74,45.15,1.533333,1.15
+ Brivezac ,BRIVEZAC ,19120,19032,74,45.033333,1.85,1.68
+ Bugeat ,BUGEAT ,19170,19033,74,45.6,1.933333,1.72
+ Chabrignac ,CHABRIGNAC ,19350,19035,74,45.316667,1.333333,1.9
+ Chamberet ,CHAMBERET ,19370,19036,74,45.583333,1.716667,1.62
+ Chamboulive ,CHAMBOULIVE ,19450,19037,74,45.433333,1.7,1
+ Chameyrat ,CHAMEYRAT ,19330,19038,74,45.233333,1.7,1.97
+ Champagnac-la-Noaille ,CHAMPAGNAC LA NOAILLE ,19320,19039,74,45.316667,2.016667,1.34
+ Champagnac-la-Prune ,CHAMPAGNAC LA PRUNE ,19320,19040,74,45.183333,1.983333,0.97
+ Chanac-les-Mines ,CHANAC LES MINES ,19150,19041,74,45.266667,1.816667,0.69
+ Chanteix ,CHANTEIX ,19330,19042,74,45.3,1.633333,1.32
+ La Chapelle-aux-Brocs ,LA CHAPELLE AUX BROCS,19360,19043,74,45.15,1.616667,0.98
+ La Chapelle-aux-Saints ,LA CHAPELLE AUX SAINTS,19120,19044,74,44.983333,1.716667,1.98
+ La Chapelle-Saint-Géraud ,LA CHAPELLE SAINT GERAUD,19430,19045,74,45.033333,1.966667,1.68
+ Chartrier-Ferrière ,CHARTRIER FERRIERE ,19600,19047,74,45.066667,1.433333,1.53
+ Le Chastang ,LE CHASTANG ,19190,19048,74,45.183333,1.733333,1.2
+ Chasteaux ,CHASTEAUX ,19600,19049,74,45.1,1.466667,1.4
+ Chauffour-sur-Vell ,CHAUFFOUR SUR VELL ,19500,19050,74,45.016667,1.666667,1.78
+ Chavanac ,CHAVANAC ,19290,19052,74,45.633333,2.1,1.92
+ Chaveroche ,CHAVEROCHE ,19200,19053,74,45.583333,2.25,1.62
+ Chirac-Bellevue ,CHIRAC BELLEVUE ,19160,19055,74,45.45,2.316667,1.78
+ Clergoux ,CLERGOUX ,19320,19056,74,45.283333,1.983333,0.84
+ Combressol ,COMBRESSOL ,19250,19058,74,45.483333,2.166667,1.22
+ Concèze ,CONCEZE ,19350,19059,74,45.35,1.35,1.84
+ Condat-sur-Ganaveix ,CONDAT SUR GANAVEIX ,19140,19060,74,45.466667,1.6,0.92
+ Cornil ,CORNIL ,19150,19061,74,45.216667,1.683333,2.48
+ Corrèze ,CORREZE ,19800,19062,74,45.366667,1.883333,0.32
+ Cosnac ,COSNAC ,19360,19063,74,45.133333,1.6,1.08
+ Couffy-sur-Sarsonne ,COUFFY SUR SARSONNE ,19340,19064,74,45.666667,2.333333,2.12
+ Courteix ,COURTEIX ,19340,19065,74,45.65,2.35,2.02
+ Cublac ,CUBLAC ,19520,19066,74,45.15,1.316667,1.97
+ Curemonte ,CUREMONTE ,19500,19067,74,45,1.75,1.88
+ Dampniat ,DAMPNIAT ,19360,19068,74,45.166667,1.633333,0.88
+ Darazac ,DARAZAC ,19220,19069,74,45.183333,2.1,0.97
+ Davignac ,DAVIGNAC ,19250,19071,74,45.483333,2.1,1.27
+ Donzenac ,DONZENAC ,19270,19072,74,45.233333,1.533333,1.15
+ Égletons ,EGLETONS ,19300,19073,74,45.4,2.05,0.78
+ L'Église-aux-Bois ,L EGLISE AUX BOIS,19170,19074,74,45.65,1.8,2.02
+ Espagnac ,ESPAGNAC ,19150,19075,74,45.233333,1.9,1.19
+ Espartignac ,ESPARTIGNAC ,19140,19076,74,45.416667,1.6,0.9
+ Estivals ,ESTIVALS ,19600,19077,74,45.033333,1.466667,1.68
+ Estivaux ,ESTIVAUX ,19410,19078,74,45.316667,1.483333,1.34
+ Eyburie ,EYBURIE ,19140,19079,74,45.45,1.633333,1.26
+ Eygurande ,EYGURANDE ,19340,19080,74,45.666667,2.466667,2.34
+ Eyrein ,EYREIN ,19800,19081,74,45.333333,1.95,1.06
+ Favars ,FAVARS ,19330,19082,74,45.266667,1.666667,0.65
+ Feyt ,FEYT ,19340,19083,74,45.7,2.483333,2.41
+ Forgès ,FORGES ,19380,19084,74,45.166667,1.883333,0.88
+ Goulles ,GOULLES ,19430,19086,74,45.05,2.083333,1.58
+ Gourdon-Murat ,GOURDON MURAT ,19170,19087,74,45.533333,1.9,1.32
+ Grandsaigne ,GRANDSAIGNE ,19300,19088,74,45.483333,1.933333,1.71
+ Gros-Chastang ,GROS CHASTANG ,19320,19089,74,45.216667,1.983333,0.58
+ Gumond ,GUMOND ,19320,19090,74,45.216667,1.983333,0.58
+ Hautefage ,HAUTEFAGE ,19400,19091,74,45.083333,2.016667,1.5
+ Le Jardin ,LE JARDIN ,19300,19092,74,45.316667,2.05,1.39
+ Jugeals-Nazareth ,JUGEALS NAZARETH ,19500,19093,74,45.083333,1.55,1.96
+ Juillac ,JUILLAC ,19350,19094,74,45.316667,1.316667,1.97
+ Lacelle ,LACELLE ,19170,19095,74,45.65,1.816667,2.02
+ Lafage-sur-Sombre ,LAFAGE SUR SOMBRE ,19320,19097,74,45.3,2.083333,1.68
+ Lagarde-Enval ,LAGARDE ENVAL ,19150,19098,74,45.183333,1.816667,0.78
+ Lagleygeolle ,LAGLEYGEOLLE ,19500,19099,74,45.083333,1.7,1.38
+ Lagraulière ,LAGRAULIERE ,19700,19100,74,45.35,1.633333,1.06
+ Laguenne ,LAGUENNE ,19150,19101,74,45.233333,1.783333,0.79
+ Lamazière-Basse ,LAMAZIERE BASSE ,19160,19102,74,45.366667,2.166667,1.36
+ Lamazière-Haute ,LAMAZIERE HAUTE ,19340,19103,74,45.666667,2.4,2.12
+ Lamongerie ,LAMONGERIE ,19510,19104,74,45.533333,1.566667,1.32
+ Lanteuil ,LANTEUIL ,19190,19105,74,45.133333,1.666667,1.14
+ Lapleau ,LAPLEAU ,19550,19106,74,45.283333,2.166667,1.22
+ Larche ,LARCHE ,19600,19107,74,45.116667,1.416667,1.59
+ Laroche-près-Feyt ,LAROCHE PRES FEYT ,19340,19108,74,45.7,2.516667,2.53
+ Lascaux ,LASCAUX ,19130,19109,74,45.333333,1.366667,1.78
+ Latronche ,LATRONCHE ,19160,19110,74,45.3,2.233333,1.47
+ Laval-sur-Luzège ,LAVAL SUR LUZEGE ,19550,19111,74,45.233333,2.15,1.36
+ Lestards ,LESTARDS ,19170,19112,74,45.516667,1.866667,1.22
+ Lignareix ,LIGNAREIX ,19200,19114,74,45.616667,2.3,1.82
+ Ligneyrac ,LIGNEYRAC ,19500,19115,74,45.05,1.616667,1.58
+ Liourdres ,LIOURDRES ,19120,19116,74,44.933333,1.8,2.28
+ Lissac-sur-Couze ,LISSAC SUR COUZE ,19600,19117,74,45.1,1.466667,1.4
+ Le Lonzac ,LE LONZAC ,19470,19118,74,45.466667,1.716667,1
+ Lostanges ,LOSTANGES ,19500,19119,74,45.066667,1.766667,1.48
+ Louignac ,LOUIGNAC ,19310,19120,74,45.216667,1.266667,2.15
+ Lubersac ,LUBERSAC ,19210,19121,74,45.45,1.4,1.65
+ Madranges ,MADRANGES ,19470,19122,74,45.483333,1.783333,1.02
+ Malemort-sur-Corrèze ,MALEMORT SUR CORREZE ,19360,19123,74,45.166667,1.55,1.56
+ Mansac ,MANSAC ,19520,19124,74,45.166667,1.383333,1.72
+ Marcillac-la-Croisille ,MARCILLAC LA CROISILLE ,19320,19125,74,45.283333,2.033333,0.91
+ Marcillac-la-Croze ,MARCILLAC LA CROZE ,19500,19126,74,45.033333,1.75,1.68
+ Marc-la-Tour ,MARC LA TOUR ,19150,19127,74,45.2,1.85,0.68
+ Margerides ,MARGERIDES ,19200,19128,74,45.45,2.4,2.09
+ Masseret ,MASSERET ,19510,19129,74,45.533333,1.516667,1.32
+ Maussac ,MAUSSAC ,19250,19130,74,45.483333,2.15,1.16
+ Meilhards ,MEILHARDS ,19510,19131,74,45.55,1.65,1.98
+ Ménoire ,MENOIRE ,19190,19132,74,45.1,1.8,1.7
+ Mercoeur ,MERCOEUR ,19430,19133,74,45.016667,1.95,1.78
+ Mestes ,MESTES ,19200,19135,74,45.5,2.316667,1.78
+ Meymac ,MEYMAC ,19250,19136,74,45.533333,2.166667,1.32
+ Meyrignac-l'Église ,MEYRIGNAC L EGLISE ,19800,19137,74,45.4,1.85,0.97
+ Meyssac ,MEYSSAC ,19500,19138,74,45.05,1.666667,1.58
+ Millevaches ,MILLEVACHES ,19290,19139,74,45.65,2.1,2.02
+ Monceaux-sur-Dordogne ,MONCEAUX SUR DORDOGNE ,19400,19140,74,45.083333,1.916667,1.38
+ Monestier-Merlines ,MONESTIER MERLINES ,19340,19141,74,45.65,2.483333,2.41
+ Monestier-Port-Dieu ,MONESTIER PORT DIEU ,19110,19142,74,45.5,2.516667,2.53
+ Montaignac-Saint-Hippolyte ,MONTAIGNAC SAINT HIPPOLYTE ,19300,19143,74,45.35,2.016667,0.91
+ Montgibaud ,MONTGIBAUD ,19210,19144,74,45.516667,1.416667,1.59
+ Moustier-Ventadour ,MOUSTIER VENTADOUR ,19300,19145,74,45.4,2.116667,1.22
+ Naves ,NAVES ,19460,19146,74,45.316667,1.766667,0.28
+ Nespouls ,NESPOULS ,19600,19147,74,45.05,1.5,1.58
+ Neuvic ,NEUVIC ,19160,19148,74,45.383333,2.283333,1.66
+ Neuville ,NEUVILLE ,19380,19149,74,45.116667,1.833333,1.42
+ Noailhac ,NOAILHAC ,19500,19150,74,45.083333,1.6,1.38
+ Noailles ,NOAILLES ,19600,19151,74,45.1,1.533333,1.76
+ Nonards ,NONARDS ,19120,19152,74,45.033333,1.8,1.68
+ Objat ,OBJAT ,19130,19153,74,45.266667,1.416667,1.59
+ Orgnac-sur-Vézère ,ORGNAC SUR VEZERE ,19410,19154,74,45.333333,1.433333,1.53
+ Orliac-de-Bar ,ORLIAC DE BAR ,19390,19155,74,45.366667,1.8,1
+ Palazinges ,PALAZINGES ,19190,19156,74,45.15,1.7,0.98
+ Palisse ,PALISSE ,19160,19157,74,45.416667,2.216667,1.41
+ Pandrignes ,PANDRIGNES ,19150,19158,74,45.233333,1.85,0.48
+ Péret-Bel-Air ,PERET BEL AIR ,19300,19159,74,45.483333,2.05,1.03
+ Pérols-sur-Vézère ,PEROLS SUR VEZERE ,19170,19160,74,45.583333,1.983333,1.62
+ Perpezac-le-Blanc ,PERPEZAC LE BLANC ,19310,19161,74,45.216667,1.333333,1.9
+ Perpezac-le-Noir ,PERPEZAC LE NOIR ,19410,19162,74,45.316667,1.55,1.12
+ Le Pescher ,LE PESCHER ,19190,19163,74,45.083333,1.733333,1.38
+ Peyrelevade ,PEYRELEVADE ,19290,19164,74,45.7,2.066667,2.32
+ Peyrissac ,PEYRISSAC ,19260,19165,74,45.5,1.683333,1.13
+ Pierrefitte ,PIERREFITTE ,19450,19166,74,45.416667,1.616667,1
+ Confolent-Port-Dieu ,CONFOLENT PORT DIEU ,19200,19167,74,45.55,2.516667,2.53
+ Pradines ,PRADINES ,19170,19168,74,45.516667,1.916667,1.22
+ Puy-d'Arnac ,PUY D ARNAC ,19120,19169,74,45.033333,1.8,1.68
+ Queyssac-les-Vignes ,QUEYSSAC LES VIGNES ,19120,19170,74,44.966667,1.766667,2.08
+ Reygade ,REYGADE ,19430,19171,74,45.016667,1.916667,1.78
+ Rilhac-Treignac ,RILHAC TREIGNAC ,19260,19172,74,45.533333,1.666667,1.38
+ Rilhac-Xaintrie ,RILHAC XAINTRIE ,19220,19173,74,45.166667,2.2,1.47
+ La Roche-Canillac ,LA ROCHE CANILLAC ,19320,19174,74,45.2,1.966667,0.89
+ Roche-le-Peyroux ,ROCHE LE PEYROUX ,19160,19175,74,45.433333,2.366667,1.97
+ Rosiers-d'Égletons ,ROSIERS D EGLETONS ,19300,19176,74,45.383333,2.016667,0.66
+ Rosiers-de-Juillac ,ROSIERS DE JUILLAC ,19350,19177,74,45.3,1.3,2.03
+ Sadroc ,SADROC ,19270,19178,74,45.283333,1.55,1.09
+ Saillac ,SAILLAC ,19500,19179,74,45.033333,1.633333,1.68
+ Saint-Angel ,SAINT ANGEL ,19200,19180,74,45.5,2.233333,1.59
+ Saint-Augustin ,SAINT AUGUSTIN ,19390,19181,74,45.416667,1.833333,1
+ Saint-Aulaire ,SAINT AULAIRE ,19130,19182,74,45.233333,1.366667,1.78
+ Saint-Bazile-de-la-Roche ,SAINT BAZILE DE LA,19320,19183,74,45.166667,1.966667,1.34
+ Saint-Bazile-de-Meyssac ,SAINT BAZILE DE MEYSSAC,19500,19184,74,45.05,1.733333,1.58
+ Saint-Bonnet-Elvert ,SAINT BONNET ELVERT ,19380,19186,74,45.166667,1.916667,1.19
+ Saint-Bonnet-la-Rivière ,SAINT BONNET LA RIVIERE,19130,19187,74,45.3,1.366667,1.78
+ Saint-Bonnet-l'Enfantier ,SAINT BONNET L ENFANTIER,19410,19188,74,45.3,1.516667,1.22
+ Saint-Bonnet-les-Tours-de-Merle ,SAINT BONNET LES TOURS,19430,19189,74,45.066667,2.083333,1.48
+ Saint-Bonnet-près-Bort ,SAINT BONNET PRES BORT,19200,19190,74,45.5,2.416667,2.16
+ Saint-Cernin-de-Larche ,SAINT CERNIN DE LARCHE,19600,19191,74,45.1,1.416667,1.59
+ Saint-Chamant ,SAINT CHAMANT ,19380,19192,74,45.133333,1.9,1.08
+ Saint-Cirgues-la-Loutre ,SAINT CIRGUES LA LOUTRE,19220,19193,74,45.083333,2.116667,1.38
+ Saint-Clément ,SAINT CLEMENT ,19700,19194,74,45.333333,1.683333,0.63
+ Saint-Cyprien ,SAINT CYPRIEN ,19130,19195,74,45.25,1.35,1.84
+ Saint-Cyr-la-Roche ,SAINT CYR LA ROCHE,19130,19196,74,45.266667,1.4,1.65
+ Saint-Dézery ,SAINT DEZERY ,19200,19197,74,45.583333,2.366667,1.97
+ Saint-Éloy-les-Tuileries ,SAINT ELOY LES TUILERIES,19210,19198,74,45.45,1.283333,2.09
+ Saint-Étienne-aux-Clos ,SAINT ETIENNE AUX CLOS,19200,19199,74,45.566667,2.466667,2.34
+ Saint-Étienne-la-Geneste ,SAINT ETIENNE LA GENESTE,19160,19200,74,45.45,2.35,1.91
+ Saint-Exupéry-les-Roches ,SAINT EXUPERY LES ROCHES,19200,19201,74,45.516667,2.383333,2.03
+ Sainte-Féréole ,SAINTE FEREOLE ,19270,19202,74,45.233333,1.583333,0.97
+ Sainte-Fortunade ,SAINTE FORTUNADE ,19490,19203,74,45.2,1.766667,0.68
+ Saint-Fréjoux ,SAINT FREJOUX ,19200,19204,74,45.533333,2.383333,2.03
+ Saint-Geniez-ô-Merle ,SAINT GENIEZ O MERLE,19220,19205,74,45.066667,2.083333,1.48
+ Saint-Germain-Lavolps ,SAINT GERMAIN LAVOLPS ,19290,19206,74,45.616667,2.216667,1.82
+ Saint-Germain-les-Vergnes ,SAINT GERMAIN LES VERGNES,19330,19207,74,45.266667,1.633333,0.82
+ Saint-Hilaire-Foissac ,SAINT HILAIRE FOISSAC ,19550,19208,74,45.333333,2.133333,1.53
+ Saint-Hilaire-les-Courbes ,SAINT HILAIRE LES COURBES,19170,19209,74,45.6,1.833333,1.72
+ Saint-Hilaire-Luc ,SAINT HILAIRE LUC ,19160,19210,74,45.366667,2.2,1.34
+ Saint-Hilaire-Peyroux ,SAINT HILAIRE PEYROUX ,19560,19211,74,45.216667,1.65,0.72
+ Saint-Hilaire-Taurieux ,SAINT HILAIRE TAURIEUX ,19400,19212,74,45.066667,1.85,1.81
+ Saint-Jal ,SAINT JAL ,19700,19213,74,45.4,1.633333,1.19
+ Saint-Julien-aux-Bois ,SAINT JULIEN AUX BOIS,19220,19214,74,45.133333,2.133333,1.09
+ Saint-Julien-le-Pélerin ,SAINT JULIEN LE PELERIN,19430,19215,74,45.016667,2.1,1.78
+ Saint-Julien-le-Vendômois ,SAINT JULIEN LE VENDOMOIS,19210,19216,74,45.466667,1.316667,1.97
+ Saint-Julien-Maumont ,SAINT JULIEN MAUMONT ,19500,19217,74,45.033333,1.783333,1.68
+ Saint-Julien-près-Bort ,SAINT JULIEN PRES BORT,19110,19218,74,45.416667,2.4,2.09
+ Sainte-Marie-Lapanouze ,SAINTE MARIE LAPANOUZE ,19160,19219,74,45.433333,2.35,1.91
+ Saint-Martial-de-Gimel ,SAINT MARTIAL DE GIMEL,19150,19220,74,45.266667,1.866667,0.91
+ Saint-Martial-Entraygues ,SAINT MARTIAL ENTRAYGUES ,19400,19221,74,45.116667,1.983333,1.18
+ Saint-Martin-la-Méanne ,SAINT MARTIN LA MEANNE,19320,19222,74,45.166667,1.983333,1.23
+ Saint-Martin-Sepert ,SAINT MARTIN SEPERT ,19210,19223,74,45.433333,1.466667,1.4
+ Saint-Mathurin-Léobazel ,SAINT MATHURIN LEOBAZEL ,19430,19224,74,45.016667,2.033333,1.78
+ Saint-Merd-de-Lapleau ,SAINT MERD DE LAPLEAU,19320,19225,74,45.266667,2.083333,1.41
+ Saint-Merd-les-Oussines ,SAINT MERD LES OUSSINES,19170,19226,74,45.633333,2.05,1.92
+ Saint-Méxant ,SAINT MEXANT ,19330,19227,74,45.283333,1.65,0.72
+ Saint-Pantaléon-de-Lapleau ,SAINT PANTALEON DE LAPLEAU,19160,19228,74,45.316667,2.2,1.34
+ Saint-Pantaléon-de-Larche ,SAINT PANTALEON DE LARCHE,19600,19229,74,45.133333,1.45,1.47
+ Saint-Pardoux-Corbier ,SAINT PARDOUX CORBIER ,19210,19230,74,45.433333,1.45,1.47
+ Saint-Pardoux-la-Croisille ,SAINT PARDOUX LA CROISILLE,19320,19231,74,45.25,1.983333,0.53
+ Saint-Pardoux-le-Vieux ,SAINT PARDOUX LE VIEUX,19200,19233,74,45.616667,2.283333,1.82
+ Saint-Pardoux-l'Ortigier ,SAINT PARDOUX L ORTIGIER,19270,19234,74,45.3,1.566667,1.13
+ Saint-Paul ,SAINT PAUL ,19150,19235,74,45.216667,1.9,1.21
+ Saint-Priest-de-Gimel ,SAINT PRIEST DE GIMEL,19800,19236,74,45.3,1.866667,1.18
+ Saint-Privat ,SAINT PRIVAT ,19220,19237,74,45.133333,2.1,1.08
+ Saint-Rémy ,SAINT REMY ,19290,19238,74,45.65,2.283333,2.02
+ Saint-Robert ,SAINT ROBERT ,19310,19239,74,45.25,1.3,2.03
+ Saint-Salvadour ,SAINT SALVADOUR ,19700,19240,74,45.383333,1.766667,1.55
+ Saint-Setiers ,SAINT SETIERS ,19290,19241,74,45.7,2.133333,2.32
+ Saint-Solve ,SAINT SOLVE ,19130,19242,74,45.3,1.4,1.65
+ Saint-Sornin-Lavolps ,SAINT SORNIN LAVOLPS ,19230,19243,74,45.383333,1.366667,1.78
+ Saint-Sulpice-les-Bois ,SAINT SULPICE LES BOIS,19250,19244,74,45.616667,2.15,2.04
+ Saint-Sylvain ,SAINT SYLVAIN ,19380,19245,74,45.183333,1.883333,0.91
+ Saint-Viance ,SAINT VIANCE ,19240,19246,74,45.216667,1.45,1.47
+ Saint-Victour ,SAINT VICTOUR ,19200,19247,74,45.466667,2.383333,2.03
+ Saint-Ybard ,SAINT YBARD ,19140,19248,74,45.45,1.533333,1.43
+ Saint-Yrieix-le-Déjalat ,SAINT YRIEIX LE DEJALAT,19300,19249,74,45.45,1.966667,1.06
+ Salon-la-Tour ,SALON LA TOUR ,19510,19250,74,45.5,1.533333,1.15
+ Sarran ,SARRAN ,19800,19251,74,45.416667,1.95,1.27
+ Sarroux ,SARROUX ,19110,19252,74,45.416667,2.433333,2.22
+ Ségonzac ,SEGONZAC ,19310,19253,74,45.266667,1.266667,2.15
+ Ségur-le-Château ,SEGUR LE CHATEAU ,19230,19254,74,45.433333,1.316667,1.97
+ Seilhac ,SEILHAC ,19700,19255,74,45.366667,1.716667,0.57
+ Sérandon ,SERANDON ,19160,19256,74,45.366667,2.35,1.91
+ Sérilhac ,SERILHAC ,19190,19257,74,45.1,1.733333,1.28
+ Servières-le-Château ,SERVIERES LE CHATEAU ,19220,19258,74,45.133333,2.033333,1.27
+ Sexcles ,SEXCLES ,19430,19259,74,45.05,2.016667,1.58
+ Sioniac ,SIONIAC ,19120,19260,74,44.983333,1.816667,1.98
+ Sornac ,SORNAC ,19290,19261,74,45.666667,2.2,2.12
+ Soudaine-Lavinadière ,SOUDAINE LAVINADIERE ,19370,19262,74,45.55,1.733333,1.42
+ Soudeilles ,SOUDEILLES ,19300,19263,74,45.45,2.083333,0.91
+ Soursac ,SOURSAC ,19550,19264,74,45.283333,2.2,1.34
+ Tarnac ,TARNAC ,19170,19265,74,45.683333,1.95,2.22
+ Thalamy ,THALAMY ,19200,19266,74,45.516667,2.466667,2.34
+ La Tourette ,LA TOURETTE ,19200,19267,74,45.583333,2.316667,1.78
+ Toy-Viam ,TOY VIAM ,19170,19268,74,45.65,1.933333,2.02
+ Treignac ,TREIGNAC ,19260,19269,74,45.533333,1.8,1.32
+ Troche ,TROCHE ,19230,19270,74,45.383333,1.433333,1.53
+ Tudeils ,TUDEILS ,19120,19271,74,45.05,1.8,1.58
+ Tulle ,TULLE ,19000,19272,74,45.266667,1.766667,1
+ Turenne ,TURENNE ,19500,19273,74,45.05,1.583333,1.58
+ Ussac ,USSAC ,19270,19274,74,45.116667,1.616667,2.12
+ Ussel ,USSEL ,19200,19275,74,45.55,2.316667,1.78
+ Uzerche ,UZERCHE ,19140,19276,74,45.416667,1.566667,1.03
+ Valiergues ,VALIERGUES ,19200,19277,74,45.483333,2.3,1.72
+ Varetz ,VARETZ ,19240,19278,74,45.2,1.45,1.47
+ Vars-sur-Roseix ,VARS SUR ROSEIX ,19130,19279,74,45.25,1.366667,1.78
+ Végennes ,VEGENNES ,19120,19280,74,44.983333,1.75,1.98
+ Veix ,VEIX ,19260,19281,74,45.516667,1.833333,1.48
+ Venarsal ,VENARSAL ,19360,19282,74,45.2,1.616667,1.14
+ Viam ,VIAM ,19170,19284,74,45.6,1.883333,1.72
+ Vigeois ,VIGEOIS ,19410,19285,74,45.383333,1.516667,1.22
+ Vignols ,VIGNOLS ,19130,19286,74,45.316667,1.4,1.65
+ Vitrac-sur-Montane ,VITRAC SUR MONTANE ,19800,19287,74,45.383333,1.95,0.97
+ Voutezac ,VOUTEZAC ,19130,19288,74,45.283333,1.433333,1.53
+ Yssandon ,YSSANDON ,19310,19289,74,45.2,1.366667,1.78
+ Afa ,AFA ,20167,20001,94,41.983333,8.8,1.71
+ Aghione ,AGHIONE ,20270,20002,94,42.1,9.4,1.45
+ Aiti ,AITI ,20244,20003,94,42.4,9.233333,1.75
+ Ajaccio ,AJACCIO ,20090,20004,94,41.916667,8.733333,2.03
+ Alando ,ALANDO ,20212,20005,94,42.3,9.283333,0.62
+ Alata ,ALATA ,20167,20006,94,41.95,8.75,1.95
+ Albertacce ,ALBERTACCE ,20224,20007,94,42.316667,8.983333,1.35
+ Albitreccia ,ALBITRECCIA ,20128,20008,94,41.85,8.933333,1.51
+ Aléria ,ALERIA ,20270,20009,94,42.1,9.516667,1.96
+ Algajola ,ALGAJOLA ,20220,20010,94,42.616667,8.866667,1.67
+ Altagene ,ALTAGENE ,20112,20011,94,41.7,9.066667,2.09
+ Alzi ,ALZI ,20212,20013,94,42.3,9.3,0.7
+ Ambiegna ,AMBIEGNA ,20151,20014,94,42.083333,8.783333,1.79
+ Ampriani ,AMPRIANI ,20272,20015,94,42.25,9.35,0.94
+ Antisanti ,ANTISANTI ,20270,20016,94,42.166667,9.35,1.04
+ Appietto ,APPIETTO ,20167,20017,94,42,8.766667,1.87
+ Arbellara ,ARBELLARA ,20110,20018,94,41.683333,8.983333,2.16
+ Arbori ,ARBORI ,20160,20019,94,42.133333,8.8,1.71
+ Aregno ,AREGNO ,20220,20020,94,42.583333,8.9,1.35
+ Argiusta-Moriccio ,ARGIUSTA MORICCIO ,20140,20021,94,41.8,9.016667,1.7
+ Arro ,ARRO ,20151,20022,94,42.083333,8.816667,1.63
+ Asco ,ASCO ,20276,20023,94,42.45,9.033333,0.83
+ Aullène ,AULLENE ,20116,20024,94,41.766667,9.083333,1.83
+ Avapessa ,AVAPESSA ,20225,20025,94,42.566667,8.9,1.28
+ Azilone-Ampaza ,AZILONE AMPAZA ,20190,20026,94,41.866667,9.016667,1.44
+ Azzana ,AZZANA ,20121,20027,94,42.116667,8.916667,1.15
+ Balogna ,BALOGNA ,20160,20028,94,42.166667,8.783333,1.79
+ Bastelica ,BASTELICA ,20119,20031,94,42,9.05,0.92
+ Bastia ,BASTIA ,20600,20033,94,42.7,9.45,1.8
+ Belgodère ,BELGODERE ,20226,20034,94,42.583333,9.016667,1.35
+ Bigorno ,BIGORNO ,20252,20036,94,42.533333,9.283333,1.15
+ Biguglia ,BIGUGLIA ,20620,20037,94,42.616667,9.416667,1.48
+ Bilia ,BILIA ,20100,20038,94,41.616667,8.916667,2.42
+ Bisinchi ,BISINCHI ,20235,20039,94,42.466667,9.316667,0.89
+ Bocognano ,BOCOGNANO ,20136,20040,94,42.083333,9.066667,0.6
+ Bonifacio ,BONIFACIO ,20169,20041,94,41.391667,9.166667,-1
+ Borgo ,BORGO ,20290,20042,94,42.4,9.283333,2.43
+ Brando ,BRANDO ,20222,20043,94,42.766667,9.45,2.06
+ Bustanico ,BUSTANICO ,20212,20045,94,42.316667,9.3,1.05
+ Calacuccia ,CALACUCCIA ,20224,20047,94,42.333333,9.016667,0.66
+ Calcatoggio ,CALCATOGGIO ,20111,20048,94,42.016667,8.766667,1.87
+ Calenzana ,CALENZANA ,20214,20049,94,42.5,8.85,1.47
+ Calvi ,CALVI ,20260,20050,94,42.566667,8.75,1.95
+ Cambia ,CAMBIA ,20244,20051,94,42.366667,9.3,1.41
+ Campana ,CAMPANA ,20229,20052,94,42.383333,9.35,0.94
+ Campi ,CAMPI ,20270,20053,94,42.266667,9.416667,1.27
+ Campile ,CAMPILE ,20290,20054,94,42.483333,9.35,0.96
+ Campitello ,CAMPITELLO ,20252,20055,94,42.516667,9.316667,1.35
+ Canale-di-Verde ,CANALE DI VERDE ,20230,20057,94,42.283333,9.466667,1.51
+ Canari ,CANARI ,20217,20058,94,42.85,9.35,2.38
+ Canavaggia ,CANAVAGGIA ,20235,20059,94,42.05,9.266667,1.49
+ Cannelle ,CANNELLE ,20151,20060,94,42.05,8.833333,1.55
+ Carbini ,CARBINI ,20170,20061,94,41.666667,9.133333,2.22
+ Carbuccia ,CARBUCCIA ,20133,20062,94,42.033333,8.95,1
+ Cardo-Torgia ,CARDO TORGIA ,20190,20064,94,41.866667,8.983333,1.44
+ Cargèse ,CARGESE ,20130,20065,94,42.133333,8.583333,2.75
+ Cargiaca ,CARGIACA ,20164,20066,94,41.716667,9.05,2.03
+ Carpineto ,CARPINETO ,20229,20067,94,42.35,9.383333,1.3
+ Carticasi ,CARTICASI ,20244,20068,94,42.35,9.283333,1.2
+ Casabianca ,CASABIANCA ,20237,20069,94,42.45,9.366667,1.84
+ Casaglione ,CASAGLIONE ,20111,20070,94,42.066667,8.783333,1.79
+ Casalabriva ,CASALABRIVA ,20140,20071,94,41.75,8.933333,1.9
+ Casalta ,CASALTA ,20215,20072,94,42.433333,9.416667,1.27
+ Casamaccioli ,CASAMACCIOLI ,20224,20073,94,42.316667,9,0.85
+ Casanova ,CASANOVA ,20250,20074,94,42.25,9.166667,0.91
+ Cassano ,CASSANO ,20214,20076,94,42.533333,8.883333,1.31
+ Castellare-di-Casinca ,CASTELLARE DI CASINCA ,20213,20077,94,42.466667,9.466667,1.51
+ Castellare-di-Mercurio ,CASTELLARE DI MERCURIO ,20212,20078,94,42.3,9.25,1.33
+ Castifao ,CASTIFAO ,20218,20080,94,42.5,9.116667,1.02
+ Castiglione ,CASTIGLIONE ,20218,20081,94,42.416667,9.133333,0.93
+ Castineta ,CASTINETA ,20218,20082,94,42.416667,9.3,1.41
+ Castirla ,CASTIRLA ,20236,20083,94,42.366667,9.15,1.16
+ Cateri ,CATERI ,20225,20084,94,42.566667,8.9,1.28
+ Cauro ,CAURO ,20117,20085,94,41.9,8.916667,1.39
+ Centuri ,CENTURI ,20238,20086,94,42.95,9.35,2.77
+ Cervione ,CERVIONE ,20221,20087,94,42.333333,9.483333,1.59
+ Chiatra ,CHIATRA ,20230,20088,94,42.283333,9.466667,1.51
+ Ciamannacce ,CIAMANNACCE ,20134,20089,94,41.95,9.15,1.12
+ Coggia ,COGGIA ,20160,20090,94,42.116667,8.75,1.95
+ Cognocoli-Montichi ,COGNOCOLI MONTICHI ,20123,20091,94,41.816667,8.9,1.64
+ Conca ,CONCA ,20135,20092,94,41.733333,9.333333,1.96
+ Corbara ,CORBARA ,20220,20093,94,42.616667,8.9,1.48
+ Corrano ,CORRANO ,20168,20094,94,41.883333,9.066667,1.38
+ Corscia ,CORSCIA ,20224,20095,94,42.35,9.033333,1.48
+ Corte ,CORTE ,20250,20096,94,42.3,9.15,0.61
+ Coti-Chiavari ,COTI CHIAVARI ,20138,20098,94,41.766667,8.766667,1.87
+ Cozzano ,COZZANO ,20148,20099,94,41.933333,9.15,1.18
+ Cristinacce ,CRISTINACCE ,20126,20100,94,42.233333,8.833333,1.55
+ Croce ,CROCE ,20237,20101,94,42.416667,9.35,0.94
+ Crocicchia ,CROCICCHIA ,20290,20102,94,42.466667,9.35,0.94
+ Erbajolo ,ERBAJOLO ,20212,20105,94,42.266667,9.283333,0.96
+ Érone ,ERONE ,20244,20106,94,42.366667,9.266667,0.54
+ Evisa ,EVISA ,20126,20108,94,42.25,8.8,1.71
+ Favalello ,FAVALELLO ,20212,20110,94,42.283333,9.266667,0.77
+ Felce ,FELCE ,20234,20111,94,42.35,9.416667,1.27
+ Feliceto ,FELICETO ,20225,20112,94,42.533333,8.933333,1.21
+ Ficaja ,FICAJA ,20237,20113,94,42.416667,9.366667,1.16
+ Foce ,FOCE ,20100,20115,94,41.616667,9,2.42
+ Focicchia ,FOCICCHIA ,20212,20116,94,42.25,9.3,1.67
+ Forciolo ,FORCIOLO ,20190,20117,94,41.85,9.016667,1.51
+ Fozzano ,FOZZANO ,20143,20118,94,41.7,9,2.09
+ Frasseto ,FRASSETO ,20157,20119,94,41.883333,9.016667,1.38
+ Furiani ,FURIANI ,20600,20120,94,42.65,9.416667,1.61
+ Galeria ,GALERIA ,20245,20121,94,42.4,8.65,2.43
+ Ghisonaccia ,GHISONACCIA ,20240,20123,94,42,9.4,1.19
+ Ghisoni ,GHISONI ,20227,20124,94,42.1,9.216667,0.54
+ Giocatojo ,GIOCATOJO ,20237,20125,94,42.433333,9.35,0.94
+ Giuncaggio ,GIUNCAGGIO ,20251,20126,94,42.216667,9.366667,1.38
+ Giuncheto ,GIUNCHETO ,20100,20127,94,41.583333,8.966667,2.55
+ Granace ,GRANACE ,20100,20128,94,41.633333,9,2.35
+ Grossa ,GROSSA ,20100,20129,94,41.6,8.883333,2.48
+ Grosseto-Prugna ,GROSSETO PRUGNA ,20128,20130,94,41.866667,8.966667,1.81
+ Guagno ,GUAGNO ,20160,20131,94,42.166667,8.933333,2.35
+ Guarguale ,GUARGUALE ,20128,20132,94,41.833333,8.933333,1.57
+ L'Île-Rousse ,L ILE ROUSSE ,20220,20134,94,42.633333,8.933333,1.54
+ Isolaccio-di-Fiumorbo ,ISOLACCIO DI FIUMORBO ,20243,20135,94,42,9.283333,0.92
+ Lama ,LAMA ,20218,20136,94,42.566667,9.166667,1.28
+ Lano ,LANO ,20244,20137,94,42.383333,9.25,0.79
+ Lavatoggio ,LAVATOGGIO ,20225,20138,94,42.566667,8.866667,1.76
+ Lento ,LENTO ,20252,20140,94,42.516667,9.283333,1.09
+ Letia ,LETIA ,20160,20141,94,42.183333,8.833333,1.55
+ Levie ,LEVIE ,20170,20142,94,41.7,9.116667,2.09
+ Linguizzetta ,LINGUIZZETTA ,20230,20143,94,42.25,9.466667,1.85
+ Lopigna ,LOPIGNA ,20139,20144,94,42.1,8.833333,1.55
+ Loreto-di-Casinca ,LORETO DI CASINCA ,20215,20145,94,42.466667,9.416667,1.27
+ Loreto-di-Tallano ,LORETO DI TALLANO ,20165,20146,94,41.716667,9.05,2.03
+ Lozzi ,LOZZI ,20224,20147,94,42.35,9,0.85
+ Lucciana ,LUCCIANA ,20290,20148,94,42.533333,9.416667,1.27
+ Lugo-di-Nazza ,LUGO DI NAZZA ,20240,20149,94,42.066667,9.3,0.98
+ Lumio ,LUMIO ,20260,20150,94,42.566667,8.833333,1.55
+ Manso ,MANSO ,20245,20153,94,42.383333,8.766667,1.87
+ Marignana ,MARIGNANA ,20141,20154,94,42.216667,8.8,1.71
+ Matra ,MATRA ,20270,20155,94,42.266667,9.383333,1.11
+ Mausoleo ,MAUSOLEO ,20259,20156,94,42.766667,9.466667,2.06
+ Mazzola ,MAZZOLA ,20212,20157,94,42.3,9.316667,1.2
+ Meria ,MERIA ,20287,20159,94,42.933333,9.433333,2.71
+ Moca-Croce ,MOCA CROCE ,20140,20160,94,41.8,9,1.7
+ Moïta ,MOITA ,20270,20161,94,42.266667,9.416667,1.27
+ Moltifao ,MOLTIFAO ,20218,20162,94,42.466667,9.116667,0.89
+ Monacia-d'Aullène ,MONACIA D AULLENE ,20171,20163,94,41.516667,9.016667,2.81
+ Moncale ,MONCALE ,20214,20165,94,42.5,8.833333,1.55
+ Monte ,MONTE ,20290,20166,94,42.466667,9.383333,1.11
+ Monticello ,MONTICELLO ,20220,20168,94,42.616667,8.95,1.67
+ Morosaglia ,MOROSAGLIA ,20218,20169,94,42.433333,9.316667,1.52
+ Muracciole ,MURACCIOLE ,20219,20171,94,42.166667,9.183333,0.28
+ Muro ,MURO ,20225,20173,94,42.55,8.916667,1.22
+ Murzo ,MURZO ,20160,20174,94,42.166667,8.833333,1.55
+ Nessa ,NESSA ,20225,20175,94,42.55,8.95,1.51
+ Nocario ,NOCARIO ,20229,20176,94,42.4,9.35,1.39
+ Noceta ,NOCETA ,20219,20177,94,42.2,9.2,1.2
+ Nonza ,NONZA ,20217,20178,94,42.783333,9.333333,2.13
+ Novale ,NOVALE ,20234,20179,94,42.3,9.416667,1.31
+ Novella ,NOVELLA ,20211,20180,94,42.566667,9.116667,1.28
+ Ocana ,OCANA ,20117,20181,94,41.95,8.933333,1.12
+ Occhiatana ,OCCHIATANA ,20226,20182,94,42.566667,9.016667,1.28
+ Ogliastro ,OGLIASTRO ,20217,20183,94,42.816667,9.333333,2.26
+ Oletta ,OLETTA ,20232,20185,94,42.633333,9.35,1.54
+ Olivese ,OLIVESE ,20140,20186,94,41.833333,9.05,1.57
+ Olmeta-di-Tuda ,OLMETA DI TUDA ,20273,20188,94,42.6,9.35,1.41
+ Olmeto ,OLMETO ,20113,20189,94,41.716667,8.916667,2.03
+ Olmi-Cappella ,OLMI CAPPELLA ,20259,20190,94,42.516667,9.016667,1.09
+ Olmiccia ,OLMICCIA ,20112,20191,94,41.683333,9.05,2.16
+ Omessa ,OMESSA ,20236,20193,94,42.366667,9.2,0.96
+ Ortale ,ORTALE ,20234,20194,94,42.316667,9.416667,1.27
+ Ortiporio ,ORTIPORIO ,20290,20195,94,42.45,9.35,0.94
+ Orto ,ORTO ,20125,20196,94,42.183333,8.933333,1.07
+ Osani ,OSANI ,20147,20197,94,42.316667,8.633333,2.51
+ Ota ,OTA ,20150,20198,94,42.266667,8.75,1.95
+ Palasca ,PALASCA ,20226,20199,94,42.583333,9.05,1.48
+ Palneca ,PALNECA ,20134,20200,94,41.966667,9.166667,1.13
+ Pancheraccia ,PANCHERACCIA ,20251,20201,94,42.216667,9.35,0.94
+ Partinello ,PARTINELLO ,20147,20203,94,42.3,8.683333,2.27
+ Penta-Acquatella ,PENTA ACQUATELLA ,20290,20206,94,42.45,9.35,0.94
+ Penta-di-Casinca ,PENTA DI CASINCA ,20213,20207,94,42.466667,9.45,1.43
+ Perelli ,PERELLI ,20234,20208,94,42.316667,9.366667,1.47
+ Peri ,PERI ,20167,20209,94,42,8.916667,1.67
+ Pero-Casevecchie ,PERO CASEVECCHIE ,20230,20210,94,42.416667,9.466667,1.51
+ Petreto-Bicchisano ,PETRETO BICCHISANO ,20140,20211,94,41.783333,8.983333,1.77
+ Piana ,PIANA ,20115,20212,94,42.5,9.116667,1.02
+ Pianello ,PIANELLO ,20272,20213,94,42.283333,9.35,1.47
+ Piano ,PIANO ,20215,20214,94,42.45,9.383333,1.51
+ Piazzali ,PIAZZALI ,20234,20216,94,42.316667,9.4,1.19
+ Piazzole ,PIAZZOLE ,20229,20217,94,42.383333,9.4,1.39
+ Piedicorte-di-Gaggio ,PIEDICORTE DI GAGGIO ,20251,20218,94,42.233333,9.333333,1.38
+ Piedicroce ,PIEDICROCE ,20229,20219,94,42.366667,9.35,0.97
+ Piedigriggio ,PIEDIGRIGGIO ,20218,20220,94,42.45,9.166667,0.83
+ Piedipartino ,PIEDIPARTINO ,20229,20221,94,42.366667,9.35,0.97
+ Pietralba ,PIETRALBA ,20218,20223,94,42.533333,9.183333,1.15
+ Pietra-di-Verde ,PIETRA DI VERDE ,20230,20225,94,42.3,9.45,1.43
+ Pietraserena ,PIETRASERENA ,20251,20226,94,42.233333,9.35,0.94
+ Pietricaggio ,PIETRICAGGIO ,20234,20227,94,42.333333,9.383333,1.11
+ Pietrosella ,PIETROSELLA ,20166,20228,94,41.833333,8.85,1.57
+ Pietroso ,PIETROSO ,20242,20229,94,42.15,9.266667,1
+ Pieve ,PIEVE ,20258,20230,94,42.566667,9.283333,1.28
+ Pigna ,PIGNA ,20220,20231,94,42.6,8.9,1.41
+ Pila-Canale ,PILA CANALE ,20123,20232,94,41.8,8.916667,1.7
+ Pino ,PINO ,20228,20233,94,42.9,9.35,2.58
+ Pioggiola ,PIOGGIOLA ,20259,20235,94,42.533333,9,1.15
+ Poggio-di-Nazza ,POGGIO DI NAZZA ,20240,20236,94,42.05,9.3,0.79
+ Poggio-d'Oletta ,POGGIO D OLETTA ,20232,20239,94,42.633333,9.35,1.54
+ Poggiolo ,POGGIOLO ,20125,20240,94,42.166667,8.916667,1.15
+ Poggio-Marinaccio ,POGGIO MARINACCIO ,20237,20241,94,42.433333,9.35,0.94
+ Poggio-Mezzana ,POGGIO MEZZANA ,20230,20242,94,42.4,9.483333,1.59
+ Polveroso ,POLVEROSO ,20229,20243,94,42.4,9.366667,1.09
+ Popolasca ,POPOLASCA ,20218,20244,94,42.433333,9.133333,0.81
+ Porri ,PORRI ,20215,20245,94,42.45,9.433333,1.35
+ Porto-Vecchio ,PORTO VECCHIO ,20137,20247,94,41.583333,9.283333,2.55
+ Propriano ,PROPRIANO ,20110,20249,94,41.666667,8.9,2.22
+ Prunelli-di-Fiumorbo ,PRUNELLI DI FIUMORBO ,20243,20251,94,42,9.333333,0.92
+ Pruno ,PRUNO ,20264,20252,94,42.416667,9.433333,1.35
+ Quasquara ,QUASQUARA ,20142,20253,94,41.9,9,1.31
+ Quenza ,QUENZA ,20122,20254,94,41.766667,9.133333,1.83
+ Quercitello ,QUERCITELLO ,20237,20255,94,42.416667,9.35,0.94
+ Rapaggio ,RAPAGGIO ,20229,20256,94,42.366667,9.383333,1.11
+ Rapale ,RAPALE ,20258,20257,94,42.583333,9.3,1.35
+ Renno ,RENNO ,20160,20258,94,42.216667,8.833333,1.55
+ Rezza ,REZZA ,20121,20259,94,42.116667,8.95,1.67
+ Riventosa ,RIVENTOSA ,20250,20260,94,42.25,9.183333,0.9
+ Rosazia ,ROSAZIA ,20121,20262,94,42.116667,8.866667,1.67
+ Rospigliani ,ROSPIGLIANI ,20219,20263,94,42.183333,9.216667,1.32
+ Rusio ,RUSIO ,20244,20264,94,42.366667,9.25,0.75
+ Rutali ,RUTALI ,20239,20265,94,42.583333,9.35,1.35
+ Salice ,SALICE ,20121,20266,94,42.116667,8.9,1.23
+ Saliceto ,SALICETO ,20218,20267,94,42.4,9.3,1.51
+ Sari-Solenzara ,SARI SOLENZARA ,20145,20269,94,41.833333,9.375,1.57
+ Sari-d'Orcino ,SARI D ORCINO ,20151,20270,94,42.05,8.816667,1.63
+ Sarrola-Carcopino ,SARROLA CARCOPINO ,20167,20271,94,42.016667,8.85,1.47
+ Sartène ,SARTENE ,20100,20272,94,41.616667,8.983333,2.42
+ Scata ,SCATA ,20264,20273,94,42.416667,9.4,1.19
+ Scolca ,SCOLCA ,20290,20274,94,42.516667,9.366667,1.09
+ Sermano ,SERMANO ,20212,20275,94,42.316667,9.266667,1.13
+ Serra-di-Ferro ,SERRA DI FERRO ,20140,20276,94,41.716667,8.8,2.03
+ Serra-di-Scopamene ,SERRA DI SCOPAMENE ,20127,20278,94,41.75,9.1,1.9
+ Serriera ,SERRIERA ,20147,20279,94,42.3,8.716667,2.11
+ Silvareccio ,SILVARECCIO ,20215,20280,94,42.45,9.4,1.19
+ Sisco ,SISCO ,20233,20281,94,42.8,9.433333,2.19
+ Soccia ,SOCCIA ,20125,20282,94,42.2,8.9,1.24
+ Solaro ,SOLARO ,20240,20283,94,41.9,9.333333,1.31
+ Sollacaro ,SOLLACARO ,20140,20284,94,41.733333,8.916667,1.96
+ Sorbollano ,SORBOLLANO ,20152,20285,94,41.75,9.1,1.9
+ Sorbo-Ocagnano ,SORBO OCAGNANO ,20213,20286,94,42.466667,9.45,1.43
+ Sorio ,SORIO ,20258,20287,94,42.583333,9.266667,1.35
+ Sotta ,SOTTA ,20146,20288,94,41.533333,9.2,2.74
+ Soveria ,SOVERIA ,20250,20289,94,42.35,9.166667,1.32
+ Speloncato ,SPELONCATO ,20226,20290,94,42.566667,8.966667,1.8
+ Stazzona ,STAZZONA ,20229,20291,94,42.366667,9.366667,1.02
+ Sant'Andrea-di-Cotone ,SANT ANDREA DI COTONE,20221,20293,94,42.3,9.466667,1.68
+ Sant'Andrea-d'Orcino ,SANT ANDREA D ORCINO,20151,20295,94,42.033333,8.8,1.71
+ Sant'Antonino ,SANT ANTONINO ,20220,20296,94,42.583333,8.9,1.35
+ San-Damiano ,SAN DAMIANO ,20264,20297,94,42.4,9.416667,1.27
+ Saint-Florent ,SAINT FLORENT ,20217,20298,94,42.683333,9.3,1.74
+ San-Gavino-di-Carbini ,SAN GAVINO DI CARBINI,20170,20300,94,41.716667,9.15,2.03
+ San-Gavino-di-Tenda ,SAN GAVINO DI TENDA,20246,20301,94,42.583333,9.266667,1.35
+ San-Giovanni-di-Moriani ,SAN GIOVANNI DI MORIANI,20230,20302,94,42.366667,9.466667,1.51
+ San-Giuliano ,SAN GIULIANO ,20230,20303,94,42.3,9.5,1.67
+ San-Lorenzo ,SAN LORENZO ,20244,20304,94,42.383333,9.283333,0.79
+ San-Martino-di-Lota ,SAN MARTINO DI LOTA,20200,20305,94,42.716667,9.416667,1.87
+ Santa-Lucia-di-Mercurio ,SANTA LUCIA DI MERCURIO,20250,20306,94,42.316667,9.216667,1.05
+ Santa-Lucia-di-Moriani ,SANTA LUCIA DI MORIANI,20230,20307,94,42.383333,9.5,1.67
+ Santa-Maria-di-Lota ,SANTA MARIA DI LOTA,20200,20309,94,42.75,9.433333,2
+ Santa-Maria-Figaniella ,SANTA MARIA FIGANIELLA ,20143,20310,94,41.7,9,2.09
+ Santa-Maria-Poggio ,SANTA MARIA POGGIO ,20221,20311,94,42.333333,9.5,1.67
+ Santa-Maria-Siché ,SANTA MARIA SICHE ,20190,20312,94,41.866667,8.983333,1.44
+ San-Nicolao ,SAN NICOLAO ,20230,20313,94,42.366667,9.5,1.67
+ Santo-Pietro-di-Tenda ,SANTO PIETRO DI TENDA,20246,20314,94,42.6,9.25,1.41
+ Santo-Pietro-di-Venaco ,SANTO PIETRO DI VENACO,20250,20315,94,42.233333,9.166667,1.27
+ Santa-Reparata-di-Balagna ,SANTA REPARATA DI BALAGNA,20220,20316,94,42.6,8.916667,1.41
+ Santa-Reparata-di-Moriani ,SANTA REPARATA DI MORIANI,20230,20317,94,42.35,9.433333,1.35
+ Taglio-Isolaccio ,TAGLIO ISOLACCIO ,20230,20318,94,42.433333,9.466667,1.51
+ Talasani ,TALASANI ,20230,20319,94,42.4,9.483333,1.59
+ Tallone ,TALLONE ,20270,20320,94,42.233333,9.416667,1.27
+ Tarrano ,TARRANO ,20234,20321,94,42.35,9.4,1.19
+ Tasso ,TASSO ,20134,20322,94,41.933333,9.1,1.48
+ Tavaco ,TAVACO ,20167,20323,94,42.033333,8.9,1.56
+ Tavera ,TAVERA ,20163,20324,94,42.066667,9.016667,0.67
+ Tivolaggio ,TIVOLAGGIO ,20100,20325,94,41.616667,8.883333,2.42
+ Tolla ,TOLLA ,20117,20326,94,41.966667,8.966667,1.22
+ Tox ,TOX ,20270,20328,94,42.25,9.433333,1.35
+ Tralonca ,TRALONCA ,20250,20329,94,42.333333,9.183333,0.95
+ Ucciani ,UCCIANI ,20133,20330,94,42.033333,8.983333,1
+ Urbalacone ,URBALACONE ,20128,20331,94,41.833333,8.933333,1.57
+ Urtaca ,URTACA ,20218,20332,94,42.6,9.166667,1.51
+ Vallecalle ,VALLECALLE ,20273,20333,94,42.583333,9.333333,1.35
+ Valle-di-Campoloro ,VALLE DI CAMPOLORO ,20221,20335,94,42.333333,9.5,1.67
+ Valle-di-Mezzana ,VALLE DI MEZZANA ,20167,20336,94,42.016667,8.816667,1.63
+ Valle-di-Rostino ,VALLE DI ROSTINO ,20235,20337,94,42.45,9.283333,0.83
+ Valle-d'Orezza ,VALLE D OREZZA ,20229,20338,94,42.366667,9.4,1.41
+ Vallica ,VALLICA ,20259,20339,94,42.516667,9.05,1.09
+ Velone-Orneto ,VELONE ORNETO ,20230,20340,94,42.4,9.466667,1.51
+ Venaco ,VENACO ,20231,20341,94,42.233333,9.166667,0.06
+ Ventiseri ,VENTISERI ,20240,20342,94,41.933333,9.333333,1.18
+ Venzolasca ,VENZOLASCA ,20215,20343,94,42.466667,9.45,1.43
+ Verdese ,VERDESE ,20229,20344,94,42.383333,9.366667,1.02
+ Vero ,VERO ,20172,20345,94,42.05,8.916667,1.15
+ Vescovato ,VESCOVATO ,20215,20346,94,42.483333,9.433333,1.35
+ Vezzani ,VEZZANI ,20242,20347,94,42.166667,9.25,1
+ Vico ,VICO ,20160,20348,94,42.166667,8.8,1.71
+ Viggianello ,VIGGIANELLO ,20110,20349,94,41.683333,8.95,2.16
+ Villanova ,VILLANOVA ,20167,20351,94,41.95,8.666667,2.35
+ Ville-di-Paraso ,VILLE DI PARASO ,20279,20352,94,42.566667,8.983333,1.28
+ Vivario ,VIVARIO ,20219,20354,94,42.166667,9.166667,0.68
+ Volpajola ,VOLPAJOLA ,20290,20355,94,42.516667,9.35,1.09
+ Zalana ,ZALANA ,20272,20356,94,42.25,9.366667,1.22
+ Zerubia ,ZERUBIA ,20116,20357,94,41.75,9.066667,1.9
+ Zevaco ,ZEVACO ,20173,20358,94,41.883333,9.05,1.38
+ Zicavo ,ZICAVO ,20132,20359,94,41.9,9.133333,1.31
+ Zigliara ,ZIGLIARA ,20190,20360,94,41.85,8.983333,1.51
+ Zilia ,ZILIA ,20214,20361,94,42.533333,8.9,1.32
+ Zonza ,ZONZA ,20124,20362,94,41.733333,9.166667,1.96
+ Zoza ,ZOZA ,20112,20363,94,41.716667,9.066667,2.03
+ Zuani ,ZUANI ,20272,20364,94,42.266667,9.35,0.94
+ San-Gavino-di-Fiumorbo ,SAN GAVINO DI FIUMORBO,20243,20365,94,41.966667,9.266667,1.36
+ Chisa ,CHISA ,20240,20366,94,41.916667,9.266667,1.25
+ Porto ,PORTO ,20150,20902,94,42.266667,8.7,2.19
+ Porticcio ,PORTICCIO ,20166,20903,94,41.883333,8.783333,1.79
+ Mezzavia ,MEZZAVIA ,20167,20904,94,41.95,8.783333,1.79
+ Solenzara ,SOLENZARA ,20145,20905,94,41.85,9.4,1.51
+ Macinaggio ,MACINAGGIO ,20248,20920,94,42.216667,8.833333,1.55
+ Ponte-Leccia ,PONTE LECCIA ,20218,20921,94,42.45,9.2,0.83
+ Erbalunga ,ERBALUNGA ,20222,20923,94,42.766667,9.466667,2.06
+ Porto Pollo ,PORTO POLLO ,20140,20924,94,41.7,8.8,2.09
+ Bisinao ,BISINAO ,20166,20928,94,41.833333,8.866667,1.57
+ Sagone ,SAGONE ,20118,20934,94,42.1,8.7,2.19
+ Montemaggiore ,MONTEMAGGIORE ,20214,20935,94,42.533333,8.866667,1.39
+ Barchetta ,BARCHETTA ,20290,20942,94,42.483333,9.383333,1.11
+ Cardo ,CARDO ,20200,20944,94,42.7,9.433333,1.8
+ Casamozza ,CASAMOZZA ,20290,20945,94,42.516667,9.433333,1.35
+ Casta ,CASTA ,20217,20948,94,42.666667,9.216667,1.67
+ Folelli ,FOLELLI ,20213,20950,94,42.45,9.516667,1.98
+ Francardo ,FRANCARDO ,20236,20951,94,42.4,9.183333,0.88
+ Morta ,MORTA ,20243,20957,94,42,9.383333,1.84
+ Pietranera ,PIETRANERA ,20200,20959,94,42.725,9.458333,1.9
+ Pietrapola ,PIETRAPOLA ,20243,20960,94,41.983333,9.3,0.99
+ Poretta ,PORETTA ,20290,20961,94,42.55,9.475,-1
+ Prunete ,PRUNETE ,20221,20962,94,42.316667,9.533333,1.83
+ Santa-Severa ,SANTA SEVERA ,20228,20964,94,42.883333,9.466667,2.51
+ Saint Antoine ,SAINT ANTOINE ,20240,20965,94,42.083333,9.358333,-1
+ Tattone ,TATTONE ,20219,20967,94,42.15,9.15,1.55
+ Agencourt ,AGENCOURT ,21700,21001,26,47.133333,4.983333,1.18
+ Agey ,AGEY ,21410,21002,26,47.283333,4.766667,0.56
+ Ahuy ,AHUY ,21121,21003,26,47.366667,5.033333,1.38
+ Aignay-le-Duc ,AIGNAY LE DUC ,21510,21004,26,47.666667,4.733333,1.44
+ Aiserey ,AISEREY ,21110,21005,26,47.166667,5.166667,1.31
+ Aisey-sur-Seine ,AISEY SUR SEINE ,21400,21006,26,47.75,4.583333,1.85
+ Aisy-sous-Thil ,AISY SOUS THIL ,21390,21007,26,47.4,4.283333,1.8
+ Alise-Sainte-Reine ,ALISE SAINTE REINE ,21150,21008,26,47.533333,4.483333,1.1
+ Aloxe-Corton ,ALOXE CORTON ,21420,21010,26,47.066667,4.866667,1.51
+ Ampilly-les-Bordes ,AMPILLY LES BORDES ,21450,21011,26,47.633333,4.633333,1.28
+ Ampilly-le-Sec ,AMPILLY LE SEC ,21400,21012,26,47.8,4.516667,2.1
+ Ancey ,ANCEY ,21410,21013,26,47.333333,4.833333,1.46
+ Antheuil ,ANTHEUIL ,21360,21014,26,47.166667,4.75,1.57
+ Antigny-la-Ville ,ANTIGNY LA VILLE ,21230,21015,26,47.1,4.55,1.34
+ Arceau ,ARCEAU ,21310,21016,26,47.383333,5.183333,1.97
+ Arcenant ,ARCENANT ,21700,21017,26,47.133333,4.85,1.45
+ Arcey ,ARCEY ,21410,21018,26,47.283333,4.816667,0.56
+ Arconcey ,ARCONCEY ,21320,21020,26,47.216667,4.45,1.29
+ Arc-sur-Tille ,ARC SUR TILLE ,21560,21021,26,47.333333,5.183333,1.37
+ Argilly ,ARGILLY ,21700,21022,26,47.066667,5,1.51
+ Arnay-le-Duc ,ARNAY LE DUC ,21230,21023,26,47.133333,4.483333,1.18
+ Arnay-sous-Vitteaux ,ARNAY SOUS VITTEAUX ,21350,21024,26,47.45,4.5,1.16
+ Arrans ,ARRANS ,21500,21025,26,47.7,4.316667,1.68
+ Asnières-en-Montagne ,ASNIERES EN MONTAGNE ,21500,21026,26,47.716667,4.283333,1.8
+ Asnières-lès-Dijon ,ASNIERES LES DIJON ,21380,21027,26,47.383333,5.033333,0.86
+Athée, ,21130,21028,26,47.233333,5.366667,2.01
+ Aubaine ,AUBAINE ,21360,21030,26,47.133333,4.716667,1.18
+ Aubigny-en-Plaine ,AUBIGNY EN PLAINE ,21170,21031,26,47.133333,5.166667,1.7
+ Aubigny-la-Ronce ,AUBIGNY LA RONCE ,21340,21032,26,46.983333,4.616667,1.92
+ Aubigny-lès-Sombernon ,AUBIGNY LES SOMBERNON ,21540,21033,26,47.3,4.65,0.96
+ Autricourt ,AUTRICOURT ,21570,21034,26,47.99658,4.61977,-1
+ Auvillars-sur-Saône ,AUVILLARS SUR SAONE ,21250,21035,26,47.05,5.1,1.59
+ Auxant ,AUXANT ,21360,21036,26,47.116667,4.616667,1.26
+ Auxey-Duresses ,AUXEY DURESSES ,21190,21037,26,46.983333,4.75,1.92
+ Auxonne ,AUXONNE ,21130,21038,26,47.2,5.383333,2.07
+ Avelanges ,AVELANGES ,21120,21039,26,47.583333,5.033333,1.03
+ Avosnes ,AVOSNES ,21350,21040,26,47.366667,4.65,1.78
+ Avot ,AVOT ,21580,21041,26,47.616667,5.016667,1.2
+ Bagnot ,BAGNOT ,21700,21042,26,47.05,5.083333,2.3
+ Baigneux-les-Juifs ,BAIGNEUX LES JUIFS ,21450,21043,26,47.6,4.633333,1.12
+ Bâlot ,BALOT ,21330,21044,26,47.816667,4.433333,2.18
+ Barbirey-sur-Ouche ,BARBIREY SUR OUCHE ,21410,21045,26,47.25,4.75,1.2
+ Bard-le-Régulier ,BARD LE REGULIER ,21430,21046,26,47.133333,4.316667,1.68
+ Bard-lès-Époisses ,BARD LES EPOISSES ,21460,21047,26,47.533333,4.216667,2.03
+ Barges ,BARGES ,21910,21048,26,47.216667,5.066667,0.96
+ Barjon ,BARJON ,21580,21049,26,47.616667,4.966667,1.2
+ Baubigny ,BAUBIGNY ,21340,21050,26,46.966667,4.683333,2
+ Baulme-la-Roche ,BAULME LA ROCHE ,21410,21051,26,47.35,4.8,1.51
+ Beaumont-sur-Vingeanne ,BEAUMONT SUR VINGEANNE ,21310,21053,26,47.466667,5.366667,2.01
+ Beaune ,BEAUNE ,21200,21054,26,47.033333,4.833333,1.67
+ Beaunotte ,BEAUNOTTE ,21510,21055,26,47.683333,4.7,1.53
+ Beire-le-Châtel ,BEIRE LE CHATEL ,21310,21056,26,47.416667,5.2,1.7
+ Beire-le-Fort ,BEIRE LE FORT ,21110,21057,26,47.233333,5.25,1.6
+ Belan-sur-Ource ,BELAN SUR OURCE ,21570,21058,26,47.933333,4.65,2.76
+ Bellefond ,BELLEFOND ,21490,21059,26,47.383333,5.066667,1.29
+ Belleneuve ,BELLENEUVE ,21310,21060,26,47.366667,5.266667,1.66
+ Bellenod-sur-Seine ,BELLENOD SUR SEINE ,21510,21061,26,47.7,4.65,1.61
+ Bellenot-sous-Pouilly ,BELLENOT SOUS POUILLY ,21320,21062,26,47.283333,4.55,0.86
+ Beneuvre ,BENEUVRE ,21290,21063,26,47.7,4.95,1.61
+ Benoisey ,BENOISEY ,21500,21064,26,47.583333,4.4,1.39
+ Bessey-en-Chaume ,BESSEY EN CHAUME ,21360,21065,26,47.083333,4.733333,1.43
+ Bessey-la-Cour ,BESSEY LA COUR ,21360,21066,26,47.1,4.616667,1.34
+ Bessey-lès-Citeaux ,BESSEY LES CITEAUX ,21110,21067,26,47.15,5.166667,1.51
+ Beurey-Bauguay ,BEUREY BAUGUAY ,21320,21068,26,47.233333,4.433333,1.46
+ Beurizot ,BEURIZOT ,21350,21069,26,47.35,4.5,1.04
+ Bévy ,BEVY ,21220,21070,26,47.183333,4.85,1.05
+ Bèze ,BEZE ,21310,21071,26,47.466667,5.266667,1.66
+ Bézouotte ,BEZOUOTTE ,21310,21072,26,47.383333,5.333333,1.89
+ Bierre-lès-Semur ,BIERRE LES SEMUR ,21390,21073,26,47.416667,4.3,1.74
+ Billey ,BILLEY ,21130,21074,26,47.15,5.433333,2.24
+ Billy-lès-Chanceaux ,BILLY LES CHANCEAUX ,21450,21075,26,47.533333,4.7,1.8
+ Binges ,BINGES ,21270,21076,26,47.333333,5.266667,1.96
+ Bissey-la-Côte ,BISSEY LA COTE ,21520,21077,26,47.916667,4.716667,2.67
+ Bissey-la-Pierre ,BISSEY LA PIERRE ,21330,21078,26,47.85,4.433333,2.35
+ Blagny-sur-Vingeanne ,BLAGNY SUR VINGEANNE ,21310,21079,26,47.433333,5.366667,2.01
+ Blaisy-Bas ,BLAISY BAS ,21540,21080,26,47.366667,4.733333,0.83
+ Blaisy-Haut ,BLAISY HAUT ,21540,21081,26,47.35,4.75,0.92
+ Blancey ,BLANCEY ,21320,21082,26,47.3,4.466667,1.26
+ Blessey ,BLESSEY ,21690,21084,26,47.483333,4.683333,1.17
+ Bligny-le-Sec ,BLIGNY LE SEC ,21440,21085,26,47.433333,4.733333,1.2
+ Bligny-lès-Beaune ,BLIGNY LES BEAUNE ,21200,21086,26,46.983333,4.833333,1.92
+ Bligny-sur-Ouche ,BLIGNY SUR OUCHE ,21360,21087,26,47.1,4.666667,1.34
+ Boncourt-le-Bois ,BONCOURT LE BOIS ,21700,21088,26,47.133333,5,1.18
+ Bonnencontre ,BONNENCONTRE ,21250,21089,26,47.083333,5.15,1.43
+ Boudreville ,BOUDREVILLE ,21520,21090,26,47.933333,4.816667,2.76
+ Bouhey ,BOUHEY ,21360,21091,26,47.2,4.666667,1.17
+ Bouilland ,BOUILLAND ,21420,21092,26,47.133333,4.783333,1.57
+ Bouix ,BOUIX ,21330,21093,26,47.883333,4.483333,2.51
+ Bourberain ,BOURBERAIN ,21610,21094,26,47.5,5.3,1.78
+ Bousselange ,BOUSSELANGE ,21250,21095,26,46.983333,5.266667,1.92
+ Boussenois ,BOUSSENOIS ,21260,21096,26,47.633333,5.216667,1.48
+ Boussey ,BOUSSEY ,21350,21097,26,47.366667,4.55,0.86
+ Boux-sous-Salmaise ,BOUX SOUS SALMAISE ,21690,21098,26,47.466667,4.633333,1.35
+ Bouze-lès-Beaune ,BOUZE LES BEAUNE ,21200,21099,26,47.05,4.766667,2.35
+ Brain ,BRAIN ,21350,21100,26,47.466667,4.5,1.39
+ Braux ,BRAUX ,21390,21101,26,47.416667,4.433333,1.51
+ Brazey-en-Morvan ,BRAZEY EN MORVAN ,21430,21102,26,47.183333,4.3,1.74
+ Brazey-en-Plaine ,BRAZEY EN PLAINE ,21470,21103,26,47.133333,5.216667,1.48
+ Brémur-et-Vaurois ,BREMUR ET VAUROIS ,21400,21104,26,47.733333,4.6,1.77
+ Bressey-sur-Tille ,BRESSEY SUR TILLE ,21560,21105,26,47.3,5.183333,1.37
+ Brétigny ,BRETIGNY ,21490,21107,26,47.4,5.1,1.07
+ Brianny ,BRIANNY ,21390,21108,26,47.416667,4.366667,1.51
+ Brion-sur-Ource ,BRION SUR OURCE ,21570,21109,26,47.916667,4.65,2.67
+ Brochon ,BROCHON ,21220,21110,26,47.233333,4.966667,0.92
+ Brognon ,BROGNON ,21490,21111,26,47.4,5.166667,1.4
+ Broin ,BROIN ,21250,21112,26,47.083333,5.1,1.43
+ Broindon ,BROINDON ,21220,21113,26,47.2,5.05,2.08
+ Buffon ,BUFFON ,21500,21114,26,47.65,4.283333,1.8
+ Buncey ,BUNCEY ,21400,21115,26,47.816667,4.566667,2.18
+ Bure-les-Templiers ,BURE LES TEMPLIERS ,21290,21116,26,47.733333,4.9,1.77
+ Busseaut ,BUSSEAUT ,21510,21117,26,47.733333,4.65,1.77
+ La Bussière-sur-Ouche ,LA BUSSIERE SUR OUCHE,21360,21120,26,47.216667,4.716667,1.7
+ Bussy-la-Pesle ,BUSSY LA PESLE ,21540,21121,26,47.366667,4.7,0.59
+ Bussy-le-Grand ,BUSSY LE GRAND ,21150,21122,26,47.583333,4.516667,1.03
+ Buxerolles ,BUXEROLLES ,21290,21123,26,47.8,4.933333,2.1
+ Censerey ,CENSEREY ,21430,21124,26,47.2,4.35,1.57
+ Cessey-sur-Tille ,CESSEY SUR TILLE ,21110,21126,26,47.283333,5.216667,1.48
+ Chaignay ,CHAIGNAY ,21120,21127,26,47.466667,5.066667,0.96
+ Chailly-sur-Armançon ,CHAILLY SUR ARMANCON ,21320,21128,26,47.266667,4.483333,1.1
+ Chambain ,CHAMBAIN ,21290,21129,26,47.8,4.916667,2.1
+ Chambeire ,CHAMBEIRE ,21110,21130,26,47.283333,5.25,1.6
+ Chamblanc ,CHAMBLANC ,21250,21131,26,47.016667,5.15,1.75
+ Chamboeuf ,CHAMBOEUF ,21220,21132,26,47.233333,4.9,0.69
+ Chambolle-Musigny ,CHAMBOLLE MUSIGNY ,21220,21133,26,47.183333,4.95,0.93
+ Chamesson ,CHAMESSON ,21400,21134,26,47.783333,4.533333,2.02
+ Champagne-sur-Vingeanne ,CHAMPAGNE SUR VINGEANNE ,21310,21135,26,47.45,5.4,2.13
+ Champagny ,CHAMPAGNY ,21440,21136,26,47.466667,4.766667,0.46
+ Champ d'Oiseau ,CHAMP D OISEAU ,21500,21137,26,47.55,4.35,1.57
+ Champdôtre ,CHAMPDOTRE ,21130,21138,26,47.183333,5.3,1.78
+ Champignolles ,CHAMPIGNOLLES ,21230,21140,26,47.05,4.566667,1.59
+ Champrenault ,CHAMPRENAULT ,21690,21141,26,47.4,4.683333,1.12
+ Chanceaux ,CHANCEAUX ,21440,21142,26,47.516667,4.7,1.47
+ Channay ,CHANNAY ,21330,21143,26,47.883333,4.333333,2.51
+ Charencey ,CHARENCEY ,21690,21144,26,47.416667,4.666667,0.7
+ Charigny ,CHARIGNY ,21140,21145,26,47.433333,4.433333,1.38
+ Charmes ,CHARMES ,21310,21146,26,47.383333,5.35,1.95
+ Charrey-sur-Saône ,CHARREY SUR SAONE ,21170,21148,26,47.083333,5.166667,1.64
+ Chassagne-Montrachet ,CHASSAGNE MONTRACHET ,21190,21150,26,46.933333,4.733333,2.16
+ Chassey ,CHASSEY ,21150,21151,26,47.483333,4.45,1.21
+ Châteauneuf ,CHATEAUNEUF ,21320,21152,26,47.216667,4.65,1.47
+ Châtillon-sur-Seine ,CHATILLON SUR SEINE ,21400,21154,26,47.85,4.55,2.35
+ Chaudenay-la-Ville ,CHAUDENAY LA VILLE ,21360,21155,26,47.166667,4.65,1.02
+ Chaudenay-le-Château ,CHAUDENAY LE CHATEAU ,21360,21156,26,47.183333,4.65,0.93
+ Chaugey ,CHAUGEY ,21290,21157,26,47.75,4.95,1.85
+ Chaume-lès-Baigneux ,CHAUME LES BAIGNEUX ,21450,21160,26,47.633333,4.583333,1.28
+ Chaumont-le-Bois ,CHAUMONT LE BOIS ,21400,21161,26,47.916667,4.583333,2.67
+ Chaux ,CHAUX ,21700,21162,26,47.133333,4.9,1.18
+ Chazilly ,CHAZILLY ,21320,21164,26,47.183333,4.583333,0.97
+ Chemin-d'Aisey ,CHEMIN D AISEY ,21400,21165,26,47.733333,4.566667,1.77
+ Chenôve ,CHENOVE ,21300,21166,26,47.283333,5,0.72
+ Cheuge ,CHEUGE ,21310,21167,26,47.383333,5.4,2.13
+ Chevannay ,CHEVANNAY ,21540,21168,26,47.4,4.65,1.4
+ Chevigny-en-Valière ,CHEVIGNY EN VALIERE ,21200,21170,26,46.966667,4.966667,2
+ Chevigny-Saint-Sauveur ,CHEVIGNY SAINT SAUVEUR ,21800,21171,26,47.3,5.133333,1.19
+ Chorey ,CHOREY ,21200,21173,26,47.05,4.866667,1.59
+ Cirey-lès-Pontailler ,CIREY LES PONTAILLER ,21270,21175,26,47.3,5.3,1.78
+ Civry-en-Montagne ,CIVRY EN MONTAGNE ,21320,21176,26,47.283333,4.6,0.92
+ Clamerey ,CLAMEREY ,21390,21177,26,47.383333,4.433333,1.45
+ Clémencey ,CLEMENCEY ,21220,21178,26,47.25,4.883333,0.86
+ Clénay ,CLENAY ,21490,21179,26,47.4,5.116667,1.13
+ Cléry ,CLERY ,21270,21180,26,47.283333,5.5,2.48
+ Clomot ,CLOMOT ,21230,21181,26,47.183333,4.483333,1.1
+ Collonges-lès-Bévy ,COLLONGES LES BEVY ,21220,21182,26,47.166667,4.85,1.16
+ Collonges-lès-Premières ,COLLONGES LES PREMIERES ,21110,21183,26,47.216667,5.266667,1.66
+ Colombier ,COLOMBIER ,21360,21184,26,47.166667,4.666667,1.02
+ Combertault ,COMBERTAULT ,21200,21185,26,47,4.9,1.84
+ Comblanchien ,COMBLANCHIEN ,21700,21186,26,47.1,4.916667,1.34
+ Commarin ,COMMARIN ,21320,21187,26,47.25,4.65,1.43
+ Corberon ,CORBERON ,21250,21189,26,47.016667,4.983333,2.27
+ Corcelles-les-Arts ,CORCELLES LES ARTS ,21190,21190,26,46.95,4.8,2.08
+ Corcelles-lès-Cîteaux ,CORCELLES LES CITEAUX ,21910,21191,26,47.166667,5.083333,1.76
+ Corcelles-les-Monts ,CORCELLES LES MONTS ,21160,21192,26,47.3,4.933333,1.13
+ Corgengoux ,CORGENGOUX ,21250,21193,26,46.983333,5,2.11
+ Corgoloin ,CORGOLOIN ,21700,21194,26,47.083333,4.916667,1.43
+ Cormot-le-Grand ,CORMOT LE GRAND ,21340,21195,26,46.966667,4.633333,2
+ Corpeau ,CORPEAU ,21190,21196,26,46.933333,4.75,2.16
+ Corpoyer-la-Chapelle ,CORPOYER LA CHAPELLE ,21150,21197,26,47.533333,4.616667,1.39
+ Corrombles ,CORROMBLES ,21460,21198,26,47.516667,4.2,2.09
+ Corsaint ,CORSAINT ,21460,21199,26,47.533333,4.2,2.09
+ Couchey ,COUCHEY ,21160,21200,26,47.266667,4.983333,0.67
+ Coulmier-le-Sec ,COULMIER LE SEC ,21400,21201,26,47.75,4.483333,1.85
+ Courban ,COURBAN ,21520,21202,26,47.916667,4.733333,2.67
+ Courcelles-Frémoy ,COURCELLES FREMOY ,21460,21203,26,47.45,4.166667,2.21
+ Courcelles-lès-Montbard ,COURCELLES LES MONTBARD ,21500,21204,26,47.6,4.4,1.39
+ Courcelles-lès-Semur ,COURCELLES LES SEMUR ,21140,21205,26,47.45,4.3,1.74
+ Courlon ,COURLON ,21580,21207,26,47.65,5,1.36
+ Courtivron ,COURTIVRON ,21120,21208,26,47.533333,4.966667,1.18
+ Couternon ,COUTERNON ,21560,21209,26,47.333333,5.15,1.39
+ Créancey ,CREANCEY ,21320,21210,26,47.25,4.6,0.77
+ Crécey-sur-Tille ,CRECEY SUR TILLE ,21120,21211,26,47.566667,5.133333,1.19
+ Crépand ,CREPAND ,21500,21212,26,47.616667,4.316667,1.68
+ Crimolois ,CRIMOLOIS ,21800,21213,26,47.266667,5.116667,1.15
+ Crugey ,CRUGEY ,21360,21214,26,47.183333,4.683333,0.96
+ Cuiserey ,CUISEREY ,21310,21215,26,47.366667,5.316667,1.83
+ Culêtre ,CULETRE ,21230,21216,26,47.15,4.583333,1.16
+ Curley ,CURLEY ,21220,21217,26,47.2,4.916667,0.85
+ Curtil-Saint-Seine ,CURTIL SAINT SEINE ,21380,21218,26,47.45,4.933333,1.44
+ Curtil-Vergy ,CURTIL VERGY ,21220,21219,26,47.166667,4.883333,1.02
+ Cussey-les-Forges ,CUSSEY LES FORGES ,21580,21220,26,47.65,5.083333,1.94
+ Cussy-la-Colonne ,CUSSY LA COLONNE ,21360,21221,26,47.05,4.65,1.59
+ Cussy-le-Châtel ,CUSSY LE CHATEL ,21230,21222,26,47.166667,4.583333,1.28
+ Daix ,DAIX ,21121,21223,26,47.35,5,0.91
+ Dampierre-en-Montagne ,DAMPIERRE EN MONTAGNE ,21350,21224,26,47.433333,4.566667,0.85
+ Dampierre-et-Flée ,DAMPIERRE ET FLEE ,21310,21225,26,47.466667,5.366667,2.01
+ Darcey ,DARCEY ,21150,21226,26,47.55,4.566667,0.87
+ Darois ,DAROIS ,21121,21227,26,47.383333,4.933333,0.76
+ Détain-et-Bruant ,DETAIN ET BRUANT ,21220,21228,26,47.166667,4.783333,2.11
+ Diancey ,DIANCEY ,21430,21229,26,47.183333,4.366667,1.51
+ Diénay ,DIENAY ,21120,21230,26,47.516667,5.066667,0.96
+ Dijon ,DIJON ,21000,21231,26,47.316667,5.016667,0.78
+ Dompierre-en-Morvan ,DOMPIERRE EN MORVAN ,21390,21232,26,47.4,4.233333,1.98
+ Drambon ,DRAMBON ,21270,21233,26,47.333333,5.366667,2.01
+ Drée ,DREE ,21540,21234,26,47.35,4.683333,0.4
+ Duesme ,DUESME ,21510,21235,26,47.65,4.683333,1.36
+ Ébaty ,EBATY ,21190,21236,26,46.933333,4.783333,2.16
+ Échalot ,ECHALOT ,21510,21237,26,47.616667,4.833333,2.03
+ Échannay ,ECHANNAY ,21540,21238,26,47.283333,4.683333,0.85
+ Échenon ,ECHENON ,21170,21239,26,47.116667,5.283333,1.72
+ Échevannes ,ECHEVANNES ,21120,21240,26,47.533333,5.166667,1.31
+ Échevronne ,ECHEVRONNE ,21420,21241,26,47.1,4.85,1.34
+ Échigey ,ECHIGEY ,21110,21242,26,47.183333,5.2,1.42
+ Écutigny ,ECUTIGNY ,21360,21243,26,47.083333,4.616667,1.43
+ Éguilly ,EGUILLY ,21320,21244,26,47.3,4.5,1.04
+ Épagny ,EPAGNY ,21380,21245,26,47.45,5.066667,0.96
+ Épernay-sous-Gevrey ,EPERNAY SOUS GEVREY ,21220,21246,26,47.183333,5.033333,1.85
+ Époisses ,EPOISSES ,21460,21247,26,47.5,4.166667,2.21
+ Éringes ,ERINGES ,21500,21248,26,47.6,4.466667,1.63
+ Esbarres ,ESBARRES ,21170,21249,26,47.083333,5.216667,1.48
+ Essarois ,ESSAROIS ,21290,21250,26,47.75,4.766667,1.85
+ Essey ,ESSEY ,21320,21251,26,47.2,4.533333,0.92
+ Étais ,ETAIS ,21500,21252,26,47.7,4.433333,1.61
+ Étalante ,ETALANTE ,21510,21253,26,47.633333,4.75,1.28
+ L'Étang-Vergy ,L ETANG VERGY ,21220,21254,26,47.183333,4.883333,0.93
+ Étaules ,ETAULES ,21121,21255,26,47.4,4.95,0.58
+ Étevaux ,ETEVAUX ,21270,21256,26,47.316667,5.316667,1.83
+ Étormay ,ETORMAY ,21450,21257,26,47.6,4.583333,1.12
+ Étrochey ,ETROCHEY ,21400,21258,26,47.883333,4.533333,2.51
+ Fain-lès-Montbard ,FAIN LES MONTBARD ,21500,21259,26,47.6,4.383333,1.45
+ Fain-lès-Moutiers ,FAIN LES MOUTIERS ,21500,21260,26,47.583333,4.216667,2.03
+ Fauverney ,FAUVERNEY ,21110,21261,26,47.25,5.15,1.25
+ Faverolles-lès-Lucey ,FAVEROLLES LES LUCEY ,21290,21262,26,47.833333,4.866667,2.26
+ Fénay ,FENAY ,21600,21263,26,47.233333,5.066667,1.5
+ Le Fête ,LE FETE ,21230,21264,26,47.183333,4.516667,0.98
+ Fixin ,FIXIN ,21220,21265,26,47.25,4.966667,1.07
+ Flacey ,FLACEY ,21490,21266,26,47.433333,5.15,1.48
+ Flagey-Échézeaux ,FLAGEY ECHEZEAUX ,21640,21267,26,47.166667,4.983333,1.02
+ Flagey-lès-Auxonne ,FLAGEY LES AUXONNE ,21130,21268,26,47.133333,5.4,2.13
+ Flammerans ,FLAMMERANS ,21130,21269,26,47.233333,5.45,2.3
+ Flavignerot ,FLAVIGNEROT ,21160,21270,26,47.283333,4.916667,1.4
+ Flavigny-sur-Ozerain ,FLAVIGNY SUR OZERAIN ,21150,21271,26,47.5,4.533333,0.92
+ Flée ,FLEE ,21140,21272,26,47.433333,4.333333,1.62
+ Fleurey-sur-Ouche ,FLEUREY SUR OUCHE ,21410,21273,26,47.316667,4.85,1.51
+ Foissy ,FOISSY ,21230,21274,26,47.116667,4.566667,1.26
+ Foncegrive ,FONCEGRIVE ,21260,21275,26,47.616667,5.166667,1.31
+ Fontaines-en-Duesmois ,FONTAINES EN DUESMOIS ,21450,21276,26,47.65,4.55,1.36
+ Fontaine-Française ,FONTAINE FRANCAISE ,21610,21277,26,47.516667,5.366667,2.01
+ Fontaines-les-Sèches ,FONTAINES LES SECHES ,21330,21279,26,47.783333,4.35,2.02
+ Fontangy ,FONTANGY ,21390,21280,26,47.35,4.35,1.57
+ Forléans ,FORLEANS ,21460,21282,26,47.483333,4.2,2.09
+ Fraignot-et-Vesvrotte ,FRAIGNOT ET VESVROTTE ,21580,21283,26,47.65,4.933333,1.36
+ Francheville ,FRANCHEVILLE ,21440,21284,26,47.45,4.883333,1.67
+ Franxault ,FRANXAULT ,21170,21285,26,47.05,5.283333,1.72
+ Frénois ,FRENOIS ,21120,21286,26,47.533333,4.9,1.99
+Fresnes, ,21500,21287,26,47.616667,4.45,1.42
+ Frôlois ,FROLOIS ,21150,21288,26,47.533333,4.633333,1.61
+ Fussey ,FUSSEY ,21700,21289,26,47.116667,4.833333,1.68
+ Gemeaux ,GEMEAUX ,21120,21290,26,47.483333,5.133333,1.19
+ Genay ,GENAY ,21140,21291,26,47.533333,4.3,1.74
+ Genlis ,GENLIS ,21110,21292,26,47.233333,5.216667,1.48
+ Gergueil ,GERGUEIL ,21410,21293,26,47.233333,4.816667,1.25
+ Gerland ,GERLAND ,21700,21294,26,47.1,5,1.34
+ Gevrey-Chambertin ,GEVREY CHAMBERTIN ,21220,21295,26,47.233333,4.95,0.7
+ Gevrolles ,GEVROLLES ,21520,21296,26,47.983333,4.7805,-1
+ Gilly-lès-Cîteaux ,GILLY LES CITEAUX ,21640,21297,26,47.166667,4.983333,1.02
+ Gissey-le-Vieil ,GISSEY LE VIEIL ,21350,21298,26,47.316667,4.483333,1.41
+ Gissey-sous-Flavigny ,GISSEY SOUS FLAVIGNY ,21150,21299,26,47.516667,4.583333,0.95
+ Gissey-sur-Ouche ,GISSEY SUR OUCHE ,21410,21300,26,47.266667,4.766667,0.67
+ Glanon ,GLANON ,21250,21301,26,47.033333,5.1,1.67
+ Gomméville ,GOMMEVILLE ,21400,21302,26,47.966667,4.5,2.92
+ Les Goulles ,LES GOULLES ,21520,21303,26,47.883333,4.9,2.51
+ Grancey-sur-Ource ,GRANCEY SUR OURCE ,21570,21305,26,48.0074,4.58666,-1
+ Grénand-lès-Sombernon ,GRENAND LES SOMBERNON ,21540,21306,26,47.266667,4.716667,1.13
+ Grésigny-Sainte-Reine ,GRESIGNY SAINTE REINE ,21150,21307,26,47.55,4.5,1.04
+ Grignon ,GRIGNON ,21150,21308,26,47.566667,4.4,1.59
+ Griselles ,GRISELLES ,21330,21309,26,47.866667,4.35,2.43
+ Grosbois-en-Montagne ,GROSBOIS EN MONTAGNE ,21540,21310,26,47.316667,4.6,1.66
+ Grosbois-lès-Tichey ,GROSBOIS LES TICHEY ,21250,21311,26,47,5.233333,1.84
+ Gurgy-la-Ville ,GURGY LA VILLE ,21290,21312,26,47.85,4.933333,2.35
+ Hauteroche ,HAUTEROCHE ,21150,21314,26,47.5,4.583333,1.01
+ Hauteville-lès-Dijon ,HAUTEVILLE LES DIJON ,21121,21315,26,47.366667,5,0.72
+ Heuilley-sur-Saône ,HEUILLEY SUR SAONE ,21270,21316,26,47.333333,5.45,2.3
+ Is-sur-Tille ,IS SUR TILLE ,21120,21317,26,47.516667,5.1,1.07
+ Ivry-en-Montagne ,IVRY EN MONTAGNE ,21340,21318,26,47.033333,4.633333,1.67
+ Izeure ,IZEURE ,21110,21319,26,47.166667,5.133333,1.69
+ Izier ,IZIER ,21110,21320,26,47.283333,5.183333,1.37
+ Jailly-les-Moulins ,JAILLY LES MOULINS ,21150,21321,26,47.45,4.6,1.54
+ Jallanges ,JALLANGES ,21250,21322,26,46.983333,5.15,1.92
+ Jancigny ,JANCIGNY ,21310,21323,26,47.383333,5.4,2.13
+ Jeux-lès-Bard ,JEUX LES BARD ,21460,21324,26,47.533333,4.25,1.92
+ Jouey ,JOUEY ,21230,21325,26,47.15,4.45,1.21
+ Jours-en-Vaux ,JOURS EN VAUX ,21340,21327,26,47.05,4.583333,1.87
+ Juillenay ,JUILLENAY ,21210,21328,26,47.366667,4.266667,1.86
+ Juilly ,JUILLY ,21140,21329,26,47.5,4.4,1.39
+ Labergement-Foigney ,LABERGEMENT FOIGNEY ,21110,21330,26,47.25,5.25,1.6
+ Labergement-lès-Auxonne ,LABERGEMENT LES AUXONNE ,21130,21331,26,47.15,5.383333,2.07
+ Labergement-lès-Seurre ,LABERGEMENT LES SEURRE ,21820,21332,26,47,5.083333,1.84
+ Labruyère ,LABRUYERE ,21250,21333,26,47.033333,5.15,1.67
+ Lacanche ,LACANCHE ,21230,21334,26,47.066667,4.566667,1.51
+ Lacour-d'Arcenay ,LACOUR D ARCENAY ,21210,21335,26,47.366667,4.25,1.92
+ Laignes ,LAIGNES ,21330,21336,26,47.833333,4.366667,2.26
+ Lamarche-sur-Saône ,LAMARCHE SUR SAONE ,21760,21337,26,47.266667,5.383333,2.07
+ Lamargelle ,LAMARGELLE ,21440,21338,26,47.533333,4.833333,1.07
+ Lantenay ,LANTENAY ,21370,21339,26,47.333333,4.866667,0.96
+ Lanthes ,LANTHES ,21250,21340,26,47,5.2,1.84
+ Lantilly ,LANTILLY ,21140,21341,26,47.55,4.383333,1.45
+ Laperrière-sur-Saône ,LAPERRIERE SUR SAONE ,21170,21342,26,47.116667,5.35,1.95
+ Larrey ,LARREY ,21330,21343,26,47.883333,4.433333,-1
+ Lechâtelet ,LECHATELET ,21250,21344,26,47.05,5.15,1.59
+ Léry ,LERY ,21440,21345,26,47.566667,4.833333,1.5
+ Leuglay ,LEUGLAY ,21290,21346,26,47.816667,4.8,2.18
+ Levernois ,LEVERNOIS ,21200,21347,26,47,4.866667,1.84
+ Licey-sur-Vingeanne ,LICEY SUR VINGEANNE ,21610,21348,26,47.483333,5.383333,2.07
+ Liernais ,LIERNAIS ,21430,21349,26,47.2,4.283333,1.8
+ Lignerolles ,LIGNEROLLES ,21520,21350,26,47.9,4.883333,2.59
+ Longchamp ,LONGCHAMP ,21110,21351,26,47.25,5.283333,1.72
+ Longeault ,LONGEAULT ,21110,21352,26,47.216667,5.25,1.6
+ Longecourt-en-Plaine ,LONGECOURT EN PLAINE ,21110,21353,26,47.183333,5.15,1.27
+ Longecourt-lès-Culètre ,LONGECOURT LES CULETRE ,21230,21354,26,47.166667,4.55,1.02
+ Longvic ,LONGVIC ,21600,21355,26,47.283333,5.066667,1.2
+ Losne ,LOSNE ,21170,21356,26,47.1,5.266667,1.66
+ Lucenay-le-Duc ,LUCENAY LE DUC ,21150,21358,26,47.6,4.516667,1.12
+ Lucey ,LUCEY ,21290,21359,26,47.85,4.866667,2.35
+ Lusigny-sur-Ouche ,LUSIGNY SUR OUCHE ,21360,21360,26,47.083333,4.666667,1.43
+ Maconge ,MACONGE ,21320,21362,26,47.2,4.583333,0.85
+ Magnien ,MAGNIEN ,21230,21363,26,47.1,4.433333,1.34
+ Magny-Lambert ,MAGNY LAMBERT ,21450,21364,26,47.683333,4.583333,1.53
+ Magny-la-Ville ,MAGNY LA VILLE ,21140,21365,26,47.483333,4.433333,1.27
+ Magny-lès-Aubigny ,MAGNY LES AUBIGNY ,21170,21366,26,47.116667,5.166667,1.63
+ Magny-lès-Villers ,MAGNY LES VILLERS ,21700,21368,26,47.1,4.883333,1.34
+ Magny-Saint-Médard ,MAGNY SAINT MEDARD ,21310,21369,26,47.383333,5.25,1.6
+ Magny-sur-Tille ,MAGNY SUR TILLE ,21110,21370,26,47.266667,5.166667,1.31
+ Les Maillys ,LES MAILLYS ,21130,21371,26,47.133333,5.333333,1.89
+ Maisey-le-Duc ,MAISEY LE DUC ,21400,21372,26,47.833333,4.666667,2.26
+ Mâlain ,MALAIN ,21410,21373,26,47.316667,4.783333,0.77
+ Manlay ,MANLAY ,21430,21375,26,47.133333,4.35,1.57
+ Marandeuil ,MARANDEUIL ,21270,21376,26,47.35,5.35,1.95
+ Marcellois ,MARCELLOIS ,21350,21377,26,47.35,4.616667,1.36
+ Marcenay ,MARCENAY ,21330,21378,26,47.866667,4.4,2.43
+ Marcheseuil ,MARCHESEUIL ,21430,21379,26,47.15,4.35,1.57
+ Marcigny-sous-Thil ,MARCIGNY SOUS THIL ,21390,21380,26,47.4,4.383333,1.45
+ Marcilly-lès-Vitteaux ,MARCILLY LES VITTEAUX ,21350,21381,26,47.4,4.5,1.04
+ Marcilly-Ogny ,MARCILLY OGNY ,21320,21382,26,47.25,4.4,1.9
+ Marcilly-sur-Tille ,MARCILLY SUR TILLE ,21120,21383,26,47.516667,5.133333,1.19
+ Marey-lès-Fussey ,MAREY LES FUSSEY ,21700,21384,26,47.116667,4.866667,1.26
+ Marey-sur-Tille ,MAREY SUR TILLE ,21120,21385,26,47.583333,5.05,1.03
+ Marigny-le-Cahouet ,MARIGNY LE CAHOUET ,21150,21386,26,47.466667,4.45,1.21
+ Marigny-lès-Reullée ,MARIGNY LES REULLEE ,21200,21387,26,47,4.966667,1.84
+ Marliens ,MARLIENS ,21110,21388,26,47.216667,5.183333,1.37
+Marmagne, ,21500,21389,26,47.616667,4.366667,1.51
+ Marsannay-la-Côte ,MARSANNAY LA COTE ,21160,21390,26,47.266667,4.983333,0.67
+ Marsannay-le-Bois ,MARSANNAY LE BOIS ,21380,21391,26,47.433333,5.1,1.25
+ Martrois ,MARTROIS ,21320,21392,26,47.3,4.533333,0.92
+ Massingy ,MASSINGY ,21400,21393,26,47.9,4.6,2.59
+ Massingy-lès-Semur ,MASSINGY LES SEMUR ,21140,21394,26,47.516667,4.4,1.39
+ Massingy-lès-Vitteaux ,MASSINGY LES VITTEAUX ,21350,21395,26,47.4,4.583333,0.74
+ Mauvilly ,MAUVILLY ,21510,21396,26,47.7,4.7,1.61
+ Mavilly-Mandelot ,MAVILLY MANDELOT ,21190,21397,26,47.05,4.733333,1.62
+ Maxilly-sur-Saône ,MAXILLY SUR SAONE ,21270,21398,26,47.333333,5.433333,2.24
+ Meilly-sur-Rouvres ,MEILLY SUR ROUVRES ,21320,21399,26,47.2,4.55,0.86
+ Le Meix ,LE MEIX ,21580,21400,26,47.6,4.941667,-1
+ Meloisey ,MELOISEY ,21190,21401,26,47.033333,4.733333,1.67
+ Menesble ,MENESBLE ,21290,21402,26,47.766667,4.9,1.94
+ Ménessaire ,MENESSAIRE ,21430,21403,26,47.133333,4.15,-1
+ Ménétreux-le-Pitois ,MENETREUX LE PITOIS ,21150,21404,26,47.566667,4.466667,1.15
+ Merceuil ,MERCEUIL ,21190,21405,26,46.95,4.833333,2.08
+ Mesmont ,MESMONT ,21540,21406,26,47.316667,4.75,0.9
+ Meuilley ,MEUILLEY ,21700,21409,26,47.133333,4.883333,1.18
+ Meulson ,MEULSON ,21510,21410,26,47.683333,4.7,1.53
+ Meursanges ,MEURSANGES ,21200,21411,26,46.983333,4.95,1.92
+ Meursault ,MEURSAULT ,21190,21412,26,46.983333,4.766667,1.92
+ Mimeure ,MIMEURE ,21230,21414,26,47.15,4.5,1.1
+ Minot ,MINOT ,21510,21415,26,47.666667,4.866667,2.27
+ Mirebeau-sur-Bèze ,MIREBEAU SUR BEZE ,21310,21416,26,47.4,5.316667,1.83
+ Missery ,MISSERY ,21210,21417,26,47.3,4.366667,1.51
+ Moitron ,MOITRON ,21510,21418,26,47.683333,4.816667,1.53
+ Molinot ,MOLINOT ,21340,21420,26,47.016667,4.583333,1.75
+ Moloy ,MOLOY ,21120,21421,26,47.533333,4.916667,1.79
+ Molphey ,MOLPHEY ,21210,21422,26,47.35,4.216667,2.03
+ Montagny-lès-Beaune ,MONTAGNY LES BEAUNE ,21200,21423,26,46.983333,4.85,1.92
+ Montagny-lès-Seurre ,MONTAGNY LES SEURRE ,21250,21424,26,47.016667,5.25,1.75
+ Montbard ,MONTBARD ,21500,21425,26,47.616667,4.333333,1.62
+ Montberthault ,MONTBERTHAULT ,21460,21426,26,47.466667,4.166667,2.21
+ Montceau-et-Écharnant ,MONTCEAU ET ECHARNANT ,21360,21427,26,47.066667,4.666667,1.51
+ Monthélie ,MONTHELIE ,21190,21428,26,47,4.766667,1.84
+ Montigny-Montfort ,MONTIGNY MONTFORT ,21500,21429,26,47.583333,4.333333,1.62
+ Montigny-Saint-Barthélemy ,MONTIGNY SAINT BARTHELEMY ,21390,21430,26,47.416667,4.266667,1.86
+ Montigny-sur-Armançon ,MONTIGNY SUR ARMANCON ,21140,21431,26,47.433333,4.366667,1.51
+ Montigny-sur-Aube ,MONTIGNY SUR AUBE ,21520,21432,26,47.95,4.766667,2.84
+ Montlay-en-Auxois ,MONTLAY EN AUXOIS ,21210,21434,26,47.35,4.283333,1.8
+ Montliot-et-Courcelles ,MONTLIOT ET COURCELLES ,21400,21435,26,47.883333,4.566667,2.51
+ Montmançon ,MONTMANCON ,21270,21437,26,47.35,5.383333,2.07
+ Montmoyen ,MONTMOYEN ,21290,21438,26,47.733333,4.8,1.77
+ Montoillot ,MONTOILLOT ,21540,21439,26,47.266667,4.65,1.35
+ Mont-Saint-Jean ,MONT SAINT JEAN ,21320,21441,26,47.283333,4.4,1.97
+ Morey-Saint-Denis ,MOREY SAINT DENIS ,21220,21442,26,47.2,4.966667,0.85
+ Mosson ,MOSSON ,21400,21444,26,47.916667,4.633333,2.67
+ La Motte-Ternant ,LA MOTTE TERNANT ,21210,21445,26,47.316667,4.333333,1.62
+ Moutiers-Saint-Jean ,MOUTIERS SAINT JEAN ,21500,21446,26,47.566667,4.216667,2.03
+ Musigny ,MUSIGNY ,21230,21447,26,47.166667,4.516667,1.02
+ Mussy-la-Fosse ,MUSSY LA FOSSE ,21150,21448,26,47.516667,4.433333,1.27
+ Nan-sous-Thil ,NAN SOUS THIL ,21390,21449,26,47.383333,4.35,1.57
+ Nantoux ,NANTOUX ,21190,21450,26,47.033333,4.75,1.67
+ Nesle-et-Massoult ,NESLE ET MASSOULT ,21330,21451,26,47.783333,4.433333,2.02
+ Neuilly-lès-Dijon ,NEUILLY LES DIJON ,21800,21452,26,47.283333,5.1,1.07
+ Neuvelle-lès-Grancey ,NEUVELLE LES GRANCEY ,21580,21453,26,47.683333,5,1.53
+ Nicey ,NICEY ,21330,21454,26,47.866667,4.316667,2.43
+ Nod-sur-Seine ,NOD SUR SEINE ,21400,21455,26,47.766667,4.566667,1.94
+ Noidan ,NOIDAN ,21390,21457,26,47.35,4.416667,1.35
+ Noiron-sous-Gevrey ,NOIRON SOUS GEVREY ,21910,21458,26,47.2,5.083333,1.01
+ Noiron-sur-Bèze ,NOIRON SUR BEZE ,21310,21459,26,47.433333,5.3,1.78
+ Noiron sur Seine ,NOIRON SUR SEINE ,21400,21460,26,47.95,4.483333,2.84
+ Norges-la-Ville ,NORGES LA VILLE ,21490,21462,26,47.4,5.066667,1.31
+ Normier ,NORMIER ,21390,21463,26,47.366667,4.433333,1.5
+ Nuits-Saint-Georges ,NUITS SAINT GEORGES ,21700,21464,26,47.133333,4.95,1.18
+ Obtrée ,OBTREE ,21400,21465,26,47.916667,4.566667,2.67
+ Oigny ,OIGNY ,21450,21466,26,47.566667,4.716667,1.69
+ Oisilly ,OISILLY ,21310,21467,26,47.416667,5.366667,2.01
+ Orain ,ORAIN ,21610,21468,26,47.616667,5.433333,2.24
+ Orgeux ,ORGEUX ,21490,21469,26,47.366667,5.15,1.25
+ Origny ,ORIGNY ,21510,21470,26,47.7,4.633333,1.61
+ Orret ,ORRET ,21450,21471,26,47.6,4.683333,1.12
+ Orville ,ORVILLE ,21260,21472,26,47.55,5.2,1.42
+ Ouges ,OUGES ,21600,21473,26,47.266667,5.066667,0.96
+ Pagny-la-Ville ,PAGNY LA VILLE ,21250,21474,26,47.066667,5.166667,1.51
+ Pagny-le-Château ,PAGNY LE CHATEAU ,21250,21475,26,47.05,5.183333,1.59
+ Painblanc ,PAINBLANC ,21360,21476,26,47.15,4.633333,1.1
+ Panges ,PANGES ,21540,21477,26,47.366667,4.8,1.8
+ Pasques ,PASQUES ,21370,21478,26,47.366667,4.866667,0.96
+ Pellerey ,PELLEREY ,21440,21479,26,47.5,4.783333,0.62
+ Perrigny-lès-Dijon ,PERRIGNY LES DIJON ,21160,21481,26,47.266667,5,1.13
+ Perrigny-sur-l'Ognon ,PERRIGNY SUR L OGNON,21270,21482,26,47.316667,5.45,2.3
+ Pichanges ,PICHANGES ,21120,21483,26,47.466667,5.15,1.29
+ Planay ,PLANAY ,21500,21484,26,47.75,4.383333,1.85
+ Plombières-lès-Dijon ,PLOMBIERES LES DIJON ,21370,21485,26,47.333333,4.966667,1.78
+ Pluvault ,PLUVAULT ,21110,21486,26,47.216667,5.25,1.6
+ Pluvet ,PLUVET ,21110,21487,26,47.2,5.266667,1.66
+ Poinçon-lès-Larrey ,POINCON LES LARREY ,21330,21488,26,47.866667,4.45,2.43
+ Poiseul-la-Grange ,POISEUL LA GRANGE ,21440,21489,26,47.566667,4.8,1.31
+ Poiseul-lès-Saulx ,POISEUL LES SAULX ,21120,21491,26,47.566667,5,0.95
+ Pommard ,POMMARD ,21630,21492,26,47.016667,4.783333,1.75
+ Poncey-lès-Athée ,PONCEY LES ATHEE ,21130,21493,26,47.233333,5.383333,2.07
+ Poncey-sur-l'Ignon ,PONCEY SUR L IGNON,21440,21494,26,47.5,4.766667,0.62
+ Pont ,PONT ,21130,21495,26,47.183333,5.316667,1.83
+ Pontailler-sur-Saône ,PONTAILLER SUR SAONE ,21270,21496,26,47.3,5.416667,2.19
+ Pont-et-Massène ,PONT ET MASSENE ,21140,21497,26,47.466667,4.366667,1.51
+ Posanges ,POSANGES ,21350,21498,26,47.416667,4.516667,0.98
+ Pothières ,POTHIERES ,21400,21499,26,47.916667,4.5,2.67
+ Pouillenay ,POUILLENAY ,21150,21500,26,47.5,4.466667,1.15
+ Pouilly-en-Auxois ,POUILLY EN AUXOIS ,21320,21501,26,47.266667,4.55,0.86
+ Pouilly-sur-Saône ,POUILLY SUR SAONE ,21250,21502,26,47.016667,5.116667,1.75
+ Pouilly-sur-Vingeanne ,POUILLY SUR VINGEANNE ,21610,21503,26,47.533333,5.433333,2.24
+ Prâlon ,PRALON ,21410,21504,26,47.3,4.783333,0.42
+ Précy-sous-Thil ,PRECY SOUS THIL ,21390,21505,26,47.383333,4.316667,1.68
+ Premières ,PREMIERES ,21110,21507,26,47.233333,5.283333,1.72
+ Prenois ,PRENOIS ,21370,21508,26,47.383333,4.9,0.86
+ Prissey ,PRISSEY ,21700,21509,26,47.1,4.933333,1.34
+ Prusly-sur-Ource ,PRUSLY SUR OURCE ,21400,21510,26,47.866667,4.666667,2.43
+ Puits ,PUITS ,21400,21511,26,47.733333,4.466667,1.77
+ Puligny-Montrachet ,PULIGNY MONTRACHET ,21190,21512,26,46.95,4.75,2.08
+ Quémigny-Poisot ,QUEMIGNY POISOT ,21220,21513,26,47.233333,4.866667,0.87
+ Quemigny-sur-Seine ,QUEMIGNY SUR SEINE ,21510,21514,26,47.666667,4.666667,1.44
+ Quétigny ,QUETIGNY ,21800,21515,26,47.316667,5.116667,1.31
+ Quincey ,QUINCEY ,21700,21517,26,47.116667,4.966667,1.26
+ Quincy-le-Vicomte ,QUINCY LE VICOMTE ,21500,21518,26,47.6,4.25,1.92
+ Recey-sur-Ource ,RECEY SUR OURCE ,21290,21519,26,47.783333,4.866667,2.02
+ Remilly-en-Montagne ,REMILLY EN MONTAGNE ,21540,21520,26,47.283333,4.733333,1
+ Remilly-sur-Tille ,REMILLY SUR TILLE ,21560,21521,26,47.316667,5.216667,1.48
+ Renève ,RENEVE ,21310,21522,26,47.4,5.416667,2.19
+ Reulle-Vergy ,REULLE VERGY ,21220,21523,26,47.183333,4.9,0.93
+ Riel-les-Eaux ,RIEL LES EAUX ,21570,21524,26,47.966667,4.683333,2.92
+ La Roche-en-Brenil ,LA ROCHE EN BRENIL,21530,21525,26,47.366667,4.166667,2.21
+ Rochefort ,ROCHEFORT ,21510,21526,26,47.733333,4.7,1.77
+ La Rochepot ,LA ROCHEPOT ,21340,21527,26,46.95,4.683333,2.08
+ La Roche-Vanneau ,LA ROCHE VANNEAU ,21150,21528,26,47.466667,4.533333,0.92
+ Roilly ,ROILLY ,21390,21529,26,47.416667,4.35,1.57
+ Rougemont ,ROUGEMONT ,21500,21530,26,47.666667,4.25,1.92
+ Rouvres-en-Plaine ,ROUVRES EN PLAINE ,21110,21532,26,47.233333,5.133333,1.38
+ Rouvres-sous-Meilly ,ROUVRES SOUS MEILLY ,21320,21533,26,47.216667,4.583333,0.77
+ Ruffey-lès-Beaune ,RUFFEY LES BEAUNE ,21200,21534,26,47.016667,4.916667,1.75
+ Ruffey-lès-Échirey ,RUFFEY LES ECHIREY ,21490,21535,26,47.366667,5.083333,1.04
+ Sacquenay ,SACQUENAY ,21260,21536,26,47.583333,5.316667,1.83
+ Saffres ,SAFFRES ,21350,21537,26,47.366667,4.583333,0.77
+ Saint-Andeux ,SAINT ANDEUX ,21530,21538,26,47.4,4.1,2.44
+ Saint-Anthot ,SAINT ANTHOT ,21540,21539,26,47.316667,4.65,0.85
+ Saint-Apollinaire ,SAINT APOLLINAIRE ,21850,21540,26,47.333333,5.083333,1.01
+ Saint-Bernard ,SAINT BERNARD ,21700,21542,26,47.166667,5.016667,1.3
+ Saint-Broing-les-Moines ,SAINT BROING LES MOINES,21290,21543,26,47.683333,4.833333,1.53
+ Saint-Euphrône ,SAINT EUPHRONE ,21140,21547,26,47.483333,4.383333,1.45
+ Saint-Germain-de-Modéon ,SAINT GERMAIN DE MODEON,21530,21548,26,47.383333,4.133333,2.33
+ Saint-Germain-le-Rocheux ,SAINT GERMAIN LE ROCHEUX,21510,21549,26,47.75,4.666667,1.85
+ Saint-Germain-lès-Senailly ,SAINT GERMAIN LES SENAILLY,21500,21550,26,47.6,4.266667,1.86
+ Saint-Germain-Source-Seine ,SAINT GERMAIN SOURCE SEINE,21690,21551,26,47.5,4.7,1.73
+ Saint-Hélier ,SAINT HELIER ,21690,21552,26,47.383333,4.683333,1.57
+ Saint-Jean-de-Boeuf ,SAINT JEAN DE BOEUF,21410,21553,26,47.216667,4.75,1.76
+ Saint-Jean-de-Losne ,SAINT JEAN DE LOSNE,21170,21554,26,47.1,5.25,1.6
+ Saint-Julien ,SAINT JULIEN ,21490,21555,26,47.4,5.133333,1.19
+ Saint-Léger-Triey ,SAINT LEGER TRIEY ,21270,21556,26,47.316667,5.366667,2.01
+ Saint-Marc-sur-Seine ,SAINT MARC SUR SEINE,21450,21557,26,47.7,4.6,1.61
+ Sainte-Marie-la-Blanche ,SAINTE MARIE LA BLANCHE,21200,21558,26,46.983333,4.9,1.92
+ Sainte-Marie-sur-Ouche ,SAINTE MARIE SUR OUCHE,21410,21559,26,47.283333,4.8,0.44
+ Saint-Martin-de-la-Mer ,SAINT MARTIN DE LA,21210,21560,26,47.233333,4.233333,1.98
+ Saint-Maurice-sur-Vingeanne ,SAINT MAURICE SUR VINGEANNE,21610,21562,26,47.583333,5.4,2.13
+ Saint-Mesmin ,SAINT MESMIN ,21540,21563,26,47.35,4.65,0.86
+ Saint-Nicolas-lès-Cîteaux ,SAINT NICOLAS LES CITEAUX,21700,21564,26,47.116667,5.05,1.57
+ Saint-Philibert ,SAINT PHILIBERT ,21220,21565,26,47.2,5.016667,1.57
+ Saint-Pierre-en-Vaux ,SAINT PIERRE EN VAUX,21230,21566,26,47.05,4.533333,1.59
+ Saint-Prix-lès-Arnay ,SAINT PRIX LES ARNAY,21230,21567,26,47.116667,4.5,1.26
+ Saint-Romain ,SAINT ROMAIN ,21190,21569,26,47,4.7,1.84
+ Sainte-Sabine ,SAINTE SABINE ,21320,21570,26,47.183333,4.616667,1.28
+ Saint-Sauveur ,SAINT SAUVEUR ,21270,21571,26,47.366667,5.416667,2.19
+ Saint-Seine-en-Bâche ,SAINT SEINE EN BACHE,21130,21572,26,47.116667,5.366667,2.01
+ Saint-Seine-l'Abbaye ,SAINT SEINE L ABBAYE,21440,21573,26,47.433333,4.783333,0.85
+ Saint-Seine-sur-Vingeanne ,SAINT SEINE SUR VINGEANNE,21610,21574,26,47.516667,5.433333,2.24
+ Saint-Symphorien-sur-Saône ,SAINT SYMPHORIEN SUR SAONE,21170,21575,26,47.1,5.3,1.78
+ Saint-Thibault ,SAINT THIBAULT ,21350,21576,26,47.366667,4.466667,1.18
+ Saint-Usage ,SAINT USAGE ,21170,21577,26,47.1,5.266667,1.66
+ Saint-Victor-sur-Ouche ,SAINT VICTOR SUR OUCHE,21410,21578,26,47.233333,4.75,1.46
+ Salives ,SALIVES ,21580,21579,26,47.616667,4.9,1.54
+ Salmaise ,SALMAISE ,21690,21580,26,47.45,4.666667,0.45
+ Samerey ,SAMEREY ,21170,21581,26,47.083333,5.366667,2.01
+ Santenay ,SANTENAY ,21590,21582,26,46.916667,4.683333,2.25
+ Santosse ,SANTOSSE ,21340,21583,26,47,4.633333,1.84
+ Saulieu ,SAULIEU ,21210,21584,26,47.266667,4.233333,1.98
+ Saulon-la-Chapelle ,SAULON LA CHAPELLE ,21910,21585,26,47.216667,5.083333,1.01
+ Saulon-la-Rue ,SAULON LA RUE ,21910,21586,26,47.216667,5.066667,0.96
+ Saulx-le Duc ,SAULX LE DUC ,21120,21587,26,47.533333,5.016667,0.79
+ Saussey ,SAUSSEY ,21360,21588,26,47.066667,4.616667,1.51
+ Saussy ,SAUSSY ,21380,21589,26,47.466667,4.95,1.26
+ Savigny-lès-Beaune ,SAVIGNY LES BEAUNE ,21420,21590,26,47.066667,4.816667,1.51
+ Savigny-le-Sec ,SAVIGNY LE SEC ,21380,21591,26,47.433333,5.05,0.9
+ Savigny-sous-Mâlain ,SAVIGNY SOUS MALAIN ,21540,21592,26,47.333333,4.766667,1.15
+ Savilly ,SAVILLY ,21430,21593,26,47.116667,4.283333,1.8
+ Savoisy ,SAVOISY ,21500,21594,26,47.733333,4.416667,1.77
+ Savolles ,SAVOLLES ,21310,21595,26,47.383333,5.266667,1.66
+ Savouges ,SAVOUGES ,21910,21596,26,47.183333,5.066667,0.96
+ Segrois ,SEGROIS ,21220,21597,26,47.166667,4.9,1.02
+ Seigny ,SEIGNY ,21150,21598,26,47.583333,4.433333,1.3
+ Selongey ,SELONGEY ,21260,21599,26,47.583333,5.166667,1.31
+ Semarey ,SEMAREY ,21320,21600,26,47.266667,4.633333,1.24
+ Semond ,SEMOND ,21450,21602,26,47.716667,4.6,1.69
+ Senailly ,SENAILLY ,21500,21604,26,47.583333,4.266667,1.86
+ Sennecey-lès-Dijon ,SENNECEY LES DIJON ,21800,21605,26,47.283333,5.1,1.07
+ Seurre ,SEURRE ,21250,21607,26,47,5.15,1.84
+ Sincey-lès-Rouvray ,SINCEY LES ROUVRAY ,21530,21608,26,47.433333,4.133333,2.33
+ Soissons-sur-Nacey ,SOISSONS SUR NACEY ,21270,21610,26,47.25,5.45,2.3
+ Sombernon ,SOMBERNON ,21540,21611,26,47.3,4.7,0.53
+ Souhey ,SOUHEY ,21140,21612,26,47.483333,4.416667,1.33
+ Soussey-sur-Brionne ,SOUSSEY SUR BRIONNE ,21350,21613,26,47.316667,4.533333,1.11
+ Spoy ,SPOY ,21120,21614,26,47.45,5.2,1.92
+ Sussey ,SUSSEY ,21430,21615,26,47.216667,4.366667,1.51
+ Tailly ,TAILLY ,21190,21616,26,46.966667,4.816667,2
+ Talant ,TALANT ,21240,21617,26,47.316667,5,0.72
+ Talmay ,TALMAY ,21270,21618,26,47.35,5.433333,2.24
+ Tanay ,TANAY ,21310,21619,26,47.416667,5.266667,1.66
+ Tarsul ,TARSUL ,21120,21620,26,47.533333,4.983333,0.97
+ Tart-l'Abbaye ,TART L ABBAYE ,21110,21621,26,47.183333,5.25,1.6
+ Tart-le-Bas ,TART LE BAS ,21110,21622,26,47.216667,5.216667,1.48
+ Tart-le-Haut ,TART LE HAUT ,21110,21623,26,47.2,5.2,1.42
+ Tellecey ,TELLECEY ,21270,21624,26,47.283333,5.283333,1.75
+ Ternant ,TERNANT ,21220,21625,26,47.2,4.85,1.01
+ Terrefondrée ,TERREFONDREE ,21290,21626,26,47.733333,4.866667,1.77
+ Thenissey ,THENISSEY ,21150,21627,26,47.5,4.616667,1.43
+ Thoires ,THOIRES ,21570,21628,26,47.933333,4.683333,2.76
+ Thoisy-la-Berchère ,THOISY LA BERCHERE ,21210,21629,26,47.25,4.333333,1.62
+ Thoisy-le-Désert ,THOISY LE DESERT ,21320,21630,26,47.25,4.533333,0.92
+ Thomirey ,THOMIREY ,21360,21631,26,47.083333,4.583333,1.47
+ Thorey-en-Plaine ,THOREY EN PLAINE ,21110,21632,26,47.216667,5.133333,1.36
+ Thorey-sous-Charny ,THOREY SOUS CHARNY ,21350,21633,26,47.316667,4.45,1.78
+ Thorey-sur-Ouche ,THOREY SUR OUCHE ,21360,21634,26,47.15,4.7,1.1
+ Thoste ,THOSTE ,21460,21635,26,47.433333,4.216667,2.03
+ Tichey ,TICHEY ,21250,21637,26,47.016667,5.283333,1.96
+ Til-Châtel ,TIL CHATEL ,21120,21638,26,47.516667,5.166667,1.31
+ Tillenay ,TILLENAY ,21130,21639,26,47.183333,5.35,1.95
+ Torcy-et Pouligny ,TORCY ET POULIGNY ,21460,21640,26,47.483333,4.216667,2.03
+ Touillon ,TOUILLON ,21500,21641,26,47.65,4.433333,1.36
+ Toutry ,TOUTRY ,21460,21642,26,47.5,4.116667,2.39
+ Tréclun ,TRECLUN ,21130,21643,26,47.183333,5.283333,1.72
+ Trochères ,TROCHERES ,21310,21644,26,47.35,5.3,1.78
+ Trouhans ,TROUHANS ,21170,21645,26,47.15,5.266667,1.66
+ Trouhaut ,TROUHAUT ,21440,21646,26,47.4,4.75,1.5
+ Trugny ,TRUGNY ,21250,21647,26,46.983333,5.15,1.92
+ Turcey ,TURCEY ,21540,21648,26,47.4,4.716667,1.19
+ Uncey-le-Franc ,UNCEY LE FRANC ,21350,21649,26,47.35,4.566667,0.8
+ Urcy ,URCY ,21220,21650,26,47.266667,4.85,1.39
+ Val-Suzon ,VAL SUZON ,21121,21651,26,47.416667,4.9,1.65
+ Vandenesse-en-Auxois ,VANDENESSE EN AUXOIS ,21320,21652,26,47.216667,4.6,0.85
+ Vannaire ,VANNAIRE ,21400,21653,26,47.916667,4.566667,2.67
+ Vanvey ,VANVEY ,21400,21655,26,47.833333,4.7,2.26
+ Varanges ,VARANGES ,21110,21656,26,47.233333,5.2,1.42
+ Varois-et-Chaignot ,VAROIS ET CHAIGNOT ,21490,21657,26,47.35,5.116667,1.13
+ Vauchignon ,VAUCHIGNON ,21340,21658,26,46.966667,4.65,2
+ Vaux-Saules ,VAUX SAULES ,21440,21659,26,47.466667,4.8,0.46
+ Veilly ,VEILLY ,21360,21660,26,47.116667,4.6,1.26
+ Velars-sur-Ouche ,VELARS SUR OUCHE ,21370,21661,26,47.333333,4.9,0.43
+ Velogny ,VELOGNY ,21350,21662,26,47.4,4.466667,1.15
+ Venarey-les-Laumes ,VENAREY LES LAUMES ,21150,21663,26,47.533333,4.433333,1.27
+ Verdonnet ,VERDONNET ,21330,21664,26,47.733333,4.316667,2.07
+ Vernois-lès-Vesvres ,VERNOIS LES VESVRES ,21260,21665,26,47.65,5.15,1.36
+ Vernot ,VERNOT ,21120,21666,26,47.483333,4.983333,1.08
+ Véronnes-les-Petites ,VERONNES LES PETITES ,21260,21668,26,47.533333,5.233333,1.54
+ Verrey-sous-Drée ,VERREY SOUS DREE ,21540,21669,26,47.366667,4.683333,0.64
+ Verrey-sous-Salmaise ,VERREY SOUS SALMAISE ,21690,21670,26,47.433333,4.666667,0.45
+ Vertault ,VERTAULT ,21330,21671,26,47.916667,4.35,2.67
+ Vesvres ,VESVRES ,21350,21672,26,47.383333,4.533333,0.92
+ Veuvey-sur-Ouche ,VEUVEY SUR OUCHE ,21360,21673,26,47.183333,4.716667,1.27
+ Veuxhaulles-sur-Aube ,VEUXHAULLES SUR AUBE ,21520,21674,26,47.95,4.8,2.84
+ Vianges ,VIANGES ,21430,21675,26,47.166667,4.333333,1.62
+ Vic-de-Chassenay ,VIC DE CHASSENAY ,21140,21676,26,47.466667,4.266667,1.88
+ Vic-des-Prés ,VIC DES PRES ,21360,21677,26,47.1,4.633333,1.34
+ Vic-sous-Thil ,VIC SOUS THIL ,21390,21678,26,47.366667,4.316667,1.68
+ Vielverge ,VIELVERGE ,21270,21680,26,47.266667,5.45,2.3
+ Vieux-Château ,VIEUX CHATEAU ,21460,21681,26,47.466667,4.133333,2.33
+ Viévigne ,VIEVIGNE ,21310,21682,26,47.433333,5.233333,1.54
+ Viévy ,VIEVY ,21230,21683,26,47.05,4.45,1.59
+ Vignoles ,VIGNOLES ,21200,21684,26,47.033333,4.883333,1.67
+ Villaines-en-Duesmois ,VILLAINES EN DUESMOIS ,21450,21685,26,47.683333,4.5,1.7
+ Villaines-les-Prévôtes ,VILLAINES LES PREVOTES ,21500,21686,26,47.55,4.3,1.74
+ Villargoix ,VILLARGOIX ,21210,21687,26,47.283333,4.3,1.74
+ Villars-Fontaine ,VILLARS FONTAINE ,21700,21688,26,47.15,4.883333,1.1
+ Villars-et-Villenotte ,VILLARS ET VILLENOTTE ,21140,21689,26,47.516667,4.383333,1.45
+ Villeberny ,VILLEBERNY ,21350,21690,26,47.433333,4.6,1.21
+ Villebichot ,VILLEBICHOT ,21700,21691,26,47.133333,5.05,1.59
+ Villecomte ,VILLECOMTE ,21120,21692,26,47.516667,5.033333,0.84
+ Villedieu ,VILLEDIEU ,21330,21693,26,47.916667,4.366667,2.67
+ Villeferry ,VILLEFERRY ,21350,21694,26,47.45,4.516667,1.05
+ La Villeneuve-les-Convers ,LA VILLENEUVE LES CONVERS,21450,21695,26,47.566667,4.566667,1.04
+ Villeneuve-sous-Charigny ,VILLENEUVE SOUS CHARIGNY ,21140,21696,26,47.433333,4.4,1.39
+ Villers-la-Faye ,VILLERS LA FAYE ,21700,21698,26,47.1,4.883333,1.34
+ Villers-lès-Pots ,VILLERS LES POTS ,21130,21699,26,47.216667,5.35,1.95
+ Villers-Patras ,VILLERS PATRAS ,21400,21700,26,47.933333,4.55,2.76
+ Villers-Rotin ,VILLERS ROTIN ,21130,21701,26,47.15,5.4,2.13
+ Villey-sur-Tille ,VILLEY SUR TILLE ,21120,21702,26,47.55,5.1,1.07
+ Villiers-en-Morvan ,VILLIERS EN MORVAN ,21430,21703,26,47.15,4.266667,1.86
+ Villiers-le-Duc ,VILLIERS LE DUC ,21400,21704,26,47.816667,4.716667,2.18
+ Villotte-Saint-Seine ,VILLOTTE SAINT SEINE ,21690,21705,26,47.433333,4.7,0.68
+ Villotte-sur-Ource ,VILLOTTE SUR OURCE ,21400,21706,26,47.866667,4.683333,2.43
+ Villy-en-Auxois ,VILLY EN AUXOIS ,21350,21707,26,47.416667,4.633333,1.56
+ Villy-le-Moutier ,VILLY LE MOUTIER ,21250,21708,26,47.033333,5,2.04
+ Viserny ,VISERNY ,21500,21709,26,47.566667,4.283333,1.8
+ Vitteaux ,VITTEAUX ,21350,21710,26,47.4,4.533333,0.92
+ Vix ,VIX ,21400,21711,26,47.9,4.55,2.59
+ Vonges ,VONGES ,21270,21713,26,47.3,5.4,2.13
+ Vosne-Romanée ,VOSNE ROMANEE ,21700,21714,26,47.166667,4.95,1.02
+ Voudenay ,VOUDENAY ,21230,21715,26,47.083333,4.383333,2.03
+ Vougeot ,VOUGEOT ,21640,21716,26,47.166667,4.966667,1.5
+ Les Laumes ,LES LAUMES ,21150,21902,26,47.533333,4.45,1.21
+ Pont-de-Pany ,PONT DE PANY ,21410,21903,26,47.3,4.816667,0.67
+ Allineuc ,ALLINEUC ,22460,22001,53,48.316667,-2.866667,1.24
+ Andel ,ANDEL ,22400,22002,53,48.5,-2.566667,0.78
+ Aucaleuc ,AUCALEUC ,22100,22003,53,48.45,-2.133333,1.77
+ Bégard ,BEGARD ,22140,22004,53,48.633333,-3.3,1.17
+ Belle-Isle-en-Terre ,BELLE ISLE EN TERRE,22810,22005,53,48.55,-3.4,1.42
+ Berhet ,BERHET ,22140,22006,53,48.7,-3.316667,1.42
+ Binic ,BINIC ,22520,22007,53,48.6,-2.833333,0.77
+ Bobital ,BOBITAL ,22100,22008,53,48.416667,-2.1,1.85
+ Le Bodéo ,LE BODEO ,22320,22009,53,48.316667,-2.933333,1.26
+ Bonen ,BONEN ,22110,22010,53,48.2,-3.3,1.83
+ Boqueho ,BOQUEHO ,22170,22011,53,48.483333,-2.966667,1.04
+ La Bouillie ,LA BOUILLIE ,22240,22012,53,48.566667,-2.433333,1.71
+ Bourbriac ,BOURBRIAC ,22720,22013,53,48.483333,-3.183333,1.91
+ Bourseul ,BOURSEUL ,22130,22014,53,48.483333,-2.266667,1.43
+ Bréhand ,BREHAND ,22510,22015,53,48.4,-2.583333,0.74
+ Brélidy ,BRELIDY ,22140,22018,53,48.666667,-3.216667,1.21
+ Bringolo ,BRINGOLO ,22170,22019,53,48.583333,-3,1.1
+ Broons ,BROONS ,22250,22020,53,48.316667,-2.266667,1.43
+ Brusvily ,BRUSVILY ,22100,22021,53,48.383333,-2.133333,1.77
+ Bulat-Pestivien ,BULAT PESTIVIEN ,22160,22023,53,48.433333,-3.333333,1.45
+ Calanhel ,CALANHEL ,22160,22024,53,48.441667,-3.483333,1.63
+ Le Cambout ,LE CAMBOUT ,22210,22027,53,48.066667,-2.616667,2.69
+ Camlez ,CAMLEZ ,22450,22028,53,48.783333,-3.3,1.97
+ Canihuel ,CANIHUEL ,22480,22029,53,48.333333,-3.1,0.96
+ Carnoët ,CARNOET ,22160,22031,53,48.366667,-3.516667,1.71
+ Caulnes ,CAULNES ,22350,22032,53,48.283333,-2.15,1.73
+ Caurel ,CAUREL ,22530,22033,53,48.216667,-3.033333,1.72
+ Cavan ,CAVAN ,22140,22034,53,48.666667,-3.35,1.3
+ Les Champs-Géraux ,LES CHAMPS GERAUX ,22630,22035,53,48.416667,-1.966667,2.19
+ La Chapelle-Blanche ,LA CHAPELLE BLANCHE ,22350,22036,53,48.266667,-2.15,1.73
+ Châtelaudren ,CHATELAUDREN ,22170,22038,53,48.533333,-2.983333,0.37
+ La Chèze ,LA CHEZE ,22210,22039,53,48.133333,-2.65,2.26
+ Coadout ,COADOUT ,22970,22040,53,48.516667,-3.183333,1
+ Coatascorn ,COATASCORN ,22140,22041,53,48.666667,-3.25,1.21
+ Coatreven ,COATREVEN ,22450,22042,53,48.766667,-3.333333,1.86
+ Coëtlogon ,COETLOGON ,22210,22043,53,48.133333,-2.533333,2.26
+ Coëtmieux ,COETMIEUX ,22400,22044,53,48.5,-2.6,1.24
+ Cohiniac ,COHINIAC ,22800,22045,53,48.466667,-2.95,0.97
+ Collinée ,COLLINEE ,22330,22046,53,48.3,-2.516667,1.18
+ Corlay ,CORLAY ,22320,22047,53,48.316667,-3.05,1.07
+ Corseul ,CORSEUL ,22130,22048,53,48.483333,-2.166667,1.68
+ Créhen ,CREHEN ,22130,22049,53,48.55,-2.216667,1.56
+ Dolo ,DOLO ,22270,22051,53,48.383333,-2.333333,1.26
+ Duault ,DUAULT ,22160,22052,53,48.366667,-3.433333,1.51
+ Éréac ,EREAC ,22250,22053,53,48.266667,-2.35,1.39
+ Erquy ,ERQUY ,22430,22054,53,48.633333,-2.466667,1
+ Évran ,EVRAN ,22630,22056,53,48.383333,-1.983333,2.15
+ La Ferrière ,LA FERRIERE ,22210,22058,53,48.15,-2.6,2.15
+ Le Foeil ,LE FOEIL ,22800,22059,53,48.433333,-2.916667,0.4
+ Gausson ,GAUSSON ,22150,22060,53,48.3,-2.75,1.18
+ Glomel ,GLOMEL ,22110,22061,53,48.216667,-3.4,1.72
+ Gommenec'h ,GOMMENEC H ,22290,22063,53,48.65,-3.05,1.1
+ Gouarec ,GOUAREC ,22570,22064,53,48.216667,-3.183333,1.72
+ Goudelin ,GOUDELIN ,22290,22065,53,48.6,-3.016667,0.99
+ Le Gouray ,LE GOURAY ,22330,22066,53,48.333333,-2.5,0.96
+ Grâces ,GRACES ,22200,22067,53,48.566667,-3.183333,0.88
+ Grâce-Uzel ,GRACE UZEL ,22460,22068,53,48.25,-2.8,1.5
+ Guenroc ,GUENROC ,22350,22069,53,48.316667,-2.083333,1.89
+ Guingamp ,GUINGAMP ,22200,22070,53,48.55,-3.15,0.79
+ Guitté ,GUITTE ,22350,22071,53,48.3,-2.1,1.85
+ Gurunhuel ,GURUNHUEL ,22390,22072,53,48.516667,-3.3,1.17
+ La Harmoye ,LA HARMOYE ,22320,22073,53,48.333333,-2.966667,0.96
+ Le Haut-Corlay ,LE HAUT CORLAY ,22320,22074,53,48.316667,-3.05,1.07
+ Hémonstoir ,HEMONSTOIR ,22600,22075,53,48.166667,-2.833333,2.04
+ Hénanbihen ,HENANBIHEN ,22550,22076,53,48.566667,-2.366667,1.25
+ Hénansal ,HENANSAL ,22400,22077,53,48.55,-2.433333,1.34
+ Hengoat ,HENGOAT ,22450,22078,53,48.75,-3.2,1.75
+ Hénon ,HENON ,22150,22079,53,48.383333,-2.7,0.93
+ L'Hermitage-Lorge ,L HERMITAGE LORGE ,22150,22080,53,48.333333,-2.833333,1.7
+ Hillion ,HILLION ,22120,22081,53,48.516667,-2.683333,1.31
+ Le Hinglé ,LE HINGLE ,22100,22082,53,48.383333,-2.066667,1.94
+ Illifaut ,ILLIFAUT ,22230,22083,53,48.15,-2.35,2.15
+ Kerbors ,KERBORS ,22610,22085,53,48.833333,-3.183333,2.29
+ Kerfot ,KERFOT ,22500,22086,53,48.733333,-3.033333,1.64
+ Kergrist-Moëlou ,KERGRIST MOELOU ,22110,22087,53,48.316667,-3.316667,1.21
+ Kérien ,KERIEN ,22480,22088,53,48.383333,-3.216667,0.96
+ Kermaria-Sulard ,KERMARIA SULARD ,22450,22090,53,48.766667,-3.366667,1.86
+ Kermoroc'h ,KERMOROC H ,22140,22091,53,48.616667,-3.2,1.58
+ Kerpert ,KERPERT ,22480,22092,53,48.383333,-3.133333,0.75
+ Lamballe ,LAMBALLE ,22400,22093,53,48.466667,-2.516667,0.8
+ Lancieux ,LANCIEUX ,22770,22094,53,48.616667,-2.15,1.73
+ Landebaëron ,LANDEBAERON ,22140,22095,53,48.633333,-3.216667,1.23
+ Landébia ,LANDEBIA ,22130,22096,53,48.516667,-2.333333,1.33
+ La Landec ,LA LANDEC ,22980,22097,53,48.433333,-2.183333,1.64
+ Landéhen ,LANDEHEN ,22400,22098,53,48.433333,-2.533333,0.9
+ Lanfains ,LANFAINS ,22800,22099,53,48.35,-2.916667,1.16
+ Langast ,LANGAST ,22150,22100,53,48.283333,-2.666667,1.28
+ Langoat ,LANGOAT ,22450,22101,53,48.75,-3.283333,1.75
+ Langourla ,LANGOURLA ,22330,22102,53,48.283333,-2.416667,1.77
+ Languédias ,LANGUEDIAS ,22980,22104,53,48.383333,-2.216667,1.56
+ Languenan ,LANGUENAN ,22130,22105,53,48.516667,-2.133333,1.92
+ Langueux ,LANGUEUX ,22360,22106,53,48.5,-2.716667,0.3
+ Laniscat ,LANISCAT ,22570,22107,53,48.233333,-3.116667,1.61
+ Lanleff ,LANLEFF ,22290,22108,53,48.7,-3.05,1.42
+ Lanloup ,LANLOUP ,22580,22109,53,48.716667,-2.966667,1.53
+ Lanmérin ,LANMERIN ,22300,22110,53,48.733333,-3.35,1.64
+ Lanmodez ,LANMODEZ ,22610,22111,53,48.85,-3.1,2.4
+ Lannebert ,LANNEBERT ,22290,22112,53,48.666667,-3,1.21
+ Lannion ,LANNION ,22300,22113,53,48.733333,-3.466667,1.64
+ Lanrélas ,LANRELAS ,22250,22114,53,48.25,-2.3,1.5
+ Lanrivain ,LANRIVAIN ,22480,22115,53,48.35,-3.216667,0.96
+ Lanrodec ,LANRODEC ,22170,22116,53,48.516667,-3.033333,1.27
+ Lantic ,LANTIC ,22410,22117,53,48.6,-2.883333,1.71
+ Lanvallay ,LANVALLAY ,22100,22118,53,48.45,-2.033333,2.02
+ Lanvellec ,LANVELLEC ,22420,22119,53,48.616667,-3.533333,1.76
+ Lanvézéac ,LANVEZEAC ,22300,22120,53,48.716667,-3.35,1.53
+ Lanvollon ,LANVOLLON ,22290,22121,53,48.633333,-2.983333,0.99
+ Laurenan ,LAURENAN ,22230,22122,53,48.2,-2.533333,1.97
+ Léhon ,LEHON ,22100,22123,53,48.433333,-2.05,1.98
+ Lescouët-Gouarec ,LESCOUET GOUAREC ,22570,22124,53,48.166667,-3.25,2.04
+ Lescouët-Jugon ,LESCOUET JUGON ,22270,22125,53,48.416667,-2.316667,1.31
+ Le Leslay ,LE LESLAY ,22800,22126,53,48.433333,-2.966667,0.71
+ Lézardrieux ,LEZARDRIEUX ,22740,22127,53,48.766667,-3.1,1.86
+ Locarn ,LOCARN ,22340,22128,53,48.316667,-3.416667,1.46
+ Loc-Envel ,LOC ENVEL ,22810,22129,53,48.516667,-3.4,1.42
+ Loguivy-Plougras ,LOGUIVY PLOUGRAS ,22780,22131,53,48.816667,-3.066667,2.18
+ Lohuec ,LOHUEC ,22160,22132,53,48.466667,-3.516667,1.71
+ Loscouët-sur-Meu ,LOSCOUET SUR MEU ,22230,22133,53,48.183333,-2.233333,1.94
+ Louannec ,LOUANNEC ,22700,22134,53,48.8,-3.416667,2.07
+ Louargat ,LOUARGAT ,22540,22135,53,48.566667,-3.333333,1.25
+ Loudéac ,LOUDEAC ,22600,22136,53,48.166667,-2.75,2.04
+ Maël-Carhaix ,MAEL CARHAIX ,22340,22137,53,48.283333,-3.416667,1.46
+ Maël-Pestivien ,MAEL PESTIVIEN ,22160,22138,53,48.383333,-3.3,1.84
+ La Malhoure ,LA MALHOURE ,22640,22140,53,48.4,-2.5,1.46
+ Mantallot ,MANTALLOT ,22450,22141,53,48.7,-3.3,1.42
+ Maroué ,MAROUE ,22400,22142,53,48.433333,-2.533333,0.9
+ Matignon ,MATIGNON ,22550,22143,53,48.6,-2.3,1.35
+ La Méaugon ,LA MEAUGON ,22440,22144,53,48.5,-2.833333,0.39
+ Mégrit ,MEGRIT ,22270,22145,53,48.366667,-2.25,2.01
+ Mellionnec ,MELLIONNEC ,22110,22146,53,48.166667,-3.3,2.04
+ Merdrignac ,MERDRIGNAC ,22230,22147,53,48.2,-2.416667,1.83
+ Mérillac ,MERILLAC ,22230,22148,53,48.25,-2.4,1.5
+ Merléac ,MERLEAC ,22460,22149,53,48.283333,-2.9,1.28
+ Le Merzer ,LE MERZER ,22200,22150,53,48.583333,-3.066667,1.48
+ Meslin ,MESLIN ,22400,22151,53,48.45,-2.566667,0.98
+ Minihy-Tréguier ,MINIHY TREGUIER ,22220,22152,53,48.783333,-3.233333,1.97
+ Moncontour ,MONCONTOUR ,22510,22153,53,48.35,-2.65,1.79
+ Morieux ,MORIEUX ,22400,22154,53,48.516667,-2.6,1.28
+ La Motte ,LA MOTTE ,22600,22155,53,48.233333,-2.75,1.61
+ Moustéru ,MOUSTERU ,22200,22156,53,48.516667,-3.233333,2.01
+ Le Moustoir ,LE MOUSTOIR ,22340,22157,53,48.266667,-3.5,-1
+ Mur-de-Bretagne ,MUR DE BRETAGNE ,22530,22158,53,48.2,-2.983333,1.83
+ Notre-Dame-du-Guildo ,NOTRE DAME DU GUILDO,22380,22159,53,48.583333,-2.216667,1.56
+ Noyal ,NOYAL ,22400,22160,53,48.45,-2.483333,0.89
+ Pabu ,PABU ,22200,22161,53,48.583333,-3.133333,0.75
+ Paimpol ,PAIMPOL ,22500,22162,53,48.766667,-3.05,1.86
+ Paule ,PAULE ,22340,22163,53,48.233333,-3.45,1.61
+ Pédernec ,PEDERNEC ,22540,22164,53,48.6,-3.283333,1.13
+ Penguilly ,PENGUILLY ,22510,22165,53,48.366667,-2.5,1.4
+ Penvénan ,PENVENAN ,22710,22166,53,48.833333,-3.366667,2.29
+ Perret ,PERRET ,22570,22167,53,48.183333,-3.15,1.93
+ Perros-Guirec ,PERROS GUIREC ,22700,22168,53,48.816667,-3.45,2.18
+ Peumerit-Quintin ,PEUMERIT QUINTIN ,22480,22169,53,48.366667,-3.266667,1.55
+ Plaine-Haute ,PLAINE HAUTE ,22800,22170,53,48.45,-2.85,1.53
+ Plaintel ,PLAINTEL ,22940,22171,53,48.4,-2.816667,1
+ Plancoët ,PLANCOET ,22130,22172,53,48.533333,-2.25,1.47
+ Planguenoual ,PLANGUENOUAL ,22400,22173,53,48.533333,-2.583333,1.15
+ Pléboulle ,PLEBOULLE ,22550,22174,53,48.616667,-2.333333,1.26
+ Plédèliac ,PLEDELIAC ,22270,22175,53,48.45,-2.383333,1.14
+ Plédran ,PLEDRAN ,22960,22176,53,48.45,-2.75,0.22
+ Pléguien ,PLEGUIEN ,22290,22177,53,48.633333,-2.95,1.26
+ Pléhédel ,PLEHEDEL ,22290,22178,53,48.7,-3,1.42
+ Plélan-le-Petit ,PLELAN LE PETIT ,22980,22180,53,48.433333,-2.233333,1.52
+ Plélauff ,PLELAUFF ,22570,22181,53,48.2,-3.216667,1.83
+ Plélo ,PLELO ,22170,22182,53,48.566667,-2.95,0.77
+ Plémet ,PLEMET ,22210,22183,53,48.183333,-2.6,1.93
+ Plémy ,PLEMY ,22150,22184,53,48.333333,-2.683333,0.96
+ Plénée-Jugon ,PLENEE JUGON ,22640,22185,53,48.366667,-2.4,1.1
+ Pléneuf-Val-André ,PLENEUF VAL ANDRE ,22370,22186,53,48.6,-2.55,0.77
+ Plérin ,PLERIN ,22190,22187,53,48.533333,-2.783333,1
+ Plerneuf ,PLERNEUF ,22170,22188,53,48.516667,-2.883333,1.8
+ Plésidy ,PLESIDY ,22720,22189,53,48.45,-3.116667,0.71
+ Plessala ,PLESSALA ,22330,22191,53,48.283333,-2.633333,1.73
+ Plessix-Balisson ,PLESSIX BALISSON ,22650,22192,53,48.533333,-2.15,1.73
+ Plestan ,PLESTAN ,22640,22193,53,48.416667,-2.45,0.97
+ Plestin-les-Grèves ,PLESTIN LES GREVES ,22310,22194,53,48.65,-3.633333,2.01
+ Pleubian ,PLEUBIAN ,22610,22195,53,48.85,-3.133333,2.4
+ Pleudaniel ,PLEUDANIEL ,22740,22196,53,48.766667,-3.133333,1.86
+ Pleumeur-Bodou ,PLEUMEUR BODOU ,22560,22198,53,48.766667,-3.516667,1.86
+ Pleumeur-Gautier ,PLEUMEUR GAUTIER ,22740,22199,53,48.8,-3.166667,2.07
+ Pléven ,PLEVEN ,22130,22200,53,48.483333,-2.316667,1.31
+ Plévenon ,PLEVENON ,22240,22201,53,48.666667,-2.333333,1.57
+ Plévin ,PLEVIN ,22340,22202,53,48.216667,-3.5,1.72
+ Ploëzal ,PLOEZAL ,22260,22204,53,48.716667,-3.2,1.53
+ Plorec-sur-Arguenon ,PLOREC SUR ARGUENON ,22130,22205,53,48.483333,-2.316667,1.31
+ Plouagat ,PLOUAGAT ,22170,22206,53,48.533333,-3,0.55
+ Plouaret ,PLOUARET ,22420,22207,53,48.616667,-3.466667,1.59
+ Plouasne ,PLOUASNE ,22830,22208,53,48.3,-2,2.1
+ Ploubalay ,PLOUBALAY ,22770,22209,53,48.583333,-2.15,1.73
+ Ploubazlanec ,PLOUBAZLANEC ,22620,22210,53,48.8,-3.033333,2.07
+ Ploubezre ,PLOUBEZRE ,22300,22211,53,48.7,-3.45,1.55
+ Plouër-sur-Rance ,PLOUER SUR RANCE ,22490,22213,53,48.533333,-2,2.1
+ Plouézec ,PLOUEZEC ,22470,22214,53,48.75,-2.983333,1.75
+ Ploufragan ,PLOUFRAGAN ,22440,22215,53,48.483333,-2.783333,1.48
+ Plougonver ,PLOUGONVER ,22810,22216,53,48.483333,-3.383333,1.43
+ Plougras ,PLOUGRAS ,22780,22217,53,48.516667,-3.566667,1.84
+ Plougrescant ,PLOUGRESCANT ,22820,22218,53,48.85,-3.233333,2.4
+ Plouguenast ,PLOUGUENAST ,22150,22219,53,48.283333,-2.716667,1.28
+ Plouguernével ,PLOUGUERNEVEL ,22110,22220,53,48.25,-3.25,1.5
+ Plouguiel ,PLOUGUIEL ,22220,22221,53,48.8,-3.233333,2.07
+ Plouha ,PLOUHA ,22580,22222,53,48.683333,-2.933333,1.32
+ Plouisy ,PLOUISY ,22200,22223,53,48.583333,-3.2,0.99
+ Ploumagoar ,PLOUMAGOAR ,22970,22225,53,48.55,-3.133333,1
+ Ploumilliau ,PLOUMILLIAU ,22300,22226,53,48.683333,-3.516667,1.71
+ Plounérin ,PLOUNERIN ,22780,22227,53,48.566667,-3.533333,1.76
+ Plounevez-Moëdec ,PLOUNEVEZ MOEDEC ,22810,22228,53,48.566667,-3.45,1.55
+ Plounevez-Quintin ,PLOUNEVEZ QUINTIN ,22110,22229,53,48.283333,-3.233333,1.28
+ Plourac'h ,PLOURAC H ,22160,22231,53,48.416667,-3.55,1.8
+ Plourivo ,PLOURIVO ,22860,22233,53,48.75,-3.066667,1.75
+ Plouvara ,PLOUVARA ,22170,22234,53,48.516667,-2.916667,1.16
+ Plouzélambre ,PLOUZELAMBRE ,22420,22235,53,48.65,-3.533333,1.76
+ Pludual ,PLUDUAL ,22290,22236,53,48.666667,-2.983333,1.21
+ Pluduno ,PLUDUNO ,22130,22237,53,48.533333,-2.283333,1.39
+ Plufur ,PLUFUR ,22310,22238,53,48.6,-3.566667,1.84
+ Plumaudan ,PLUMAUDAN ,22350,22239,53,48.35,-2.133333,1.77
+ Plumaugat ,PLUMAUGAT ,22250,22240,53,48.25,-2.25,1.5
+ Plumieux ,PLUMIEUX ,22210,22241,53,48.1,-2.6,2.48
+ Plurien ,PLURIEN ,22240,22242,53,48.633333,-2.4,1.1
+ Plusquellec ,PLUSQUELLEC ,22160,22243,53,48.383333,-3.483333,1.63
+ Plussulien ,PLUSSULIEN ,22320,22244,53,48.283333,-3.083333,1.4
+ Pluzunet ,PLUZUNET ,22140,22245,53,48.65,-3.366667,1.34
+ Pommeret ,POMMERET ,22120,22246,53,48.466667,-2.633333,0.83
+ Pommerit-Jaudy ,POMMERIT JAUDY ,22450,22247,53,48.733333,-3.233333,1.64
+ Pommerit-le-Vicomte ,POMMERIT LE VICOMTE ,22200,22248,53,48.616667,-3.083333,1.34
+ Pont-Melvez ,PONT MELVEZ ,22390,22249,53,48.45,-3.316667,1.21
+ Pontrieux ,PONTRIEUX ,22260,22250,53,48.7,-3.166667,1.42
+ Pordic ,PORDIC ,22590,22251,53,48.583333,-2.816667,1.28
+ La Poterie ,LA POTERIE ,22400,22252,53,48.466667,-2.466667,0.93
+ Pouldouran ,POULDOURAN ,22450,22253,53,48.766667,-3.2,1.86
+ Prat ,PRAT ,22140,22254,53,48.683333,-3.3,1.32
+ La Prénessaye ,LA PRENESSAYE ,22210,22255,53,48.183333,-2.65,1.93
+ Quemper-Guézennec ,QUEMPER GUEZENNEC ,22260,22256,53,48.7,-3.1,1.56
+ Quemperven ,QUEMPERVEN ,22450,22257,53,48.733333,-3.316667,1.64
+ Quessoy ,QUESSOY ,22120,22258,53,48.416667,-2.666667,1.43
+ Quévert ,QUEVERT ,22100,22259,53,48.466667,-2.083333,1.89
+ Le Quillio ,LE QUILLIO ,22460,22260,53,48.233333,-2.883333,1.61
+ Quintenic ,QUINTENIC ,22400,22261,53,48.516667,-2.433333,1.14
+ Quintin ,QUINTIN ,22800,22262,53,48.4,-2.916667,0.53
+ Le Quiou ,LE QUIOU ,22630,22263,53,48.35,-2,2.1
+ La Roche-Derrien ,LA ROCHE DERRIEN ,22450,22264,53,48.75,-3.266667,1.75
+ Rospez ,ROSPEZ ,22300,22265,53,48.733333,-3.383333,1.64
+ Rostrenen ,ROSTRENEN ,22110,22266,53,48.233333,-3.316667,1.61
+ Rouillac ,ROUILLAC ,22250,22267,53,48.316667,-2.366667,1.18
+ Ruca ,RUCA ,22550,22268,53,48.566667,-2.333333,1.26
+ Runan ,RUNAN ,22260,22269,53,48.7,-3.2,1.42
+ Saint-Aaron ,SAINT AARON ,22400,22270,53,48.516667,-2.483333,0.89
+ Saint-Adrien ,SAINT ADRIEN ,22390,22271,53,48.483333,-3.133333,1.39
+ Saint-Agathon ,SAINT AGATHON ,22200,22272,53,48.566667,-3.1,0.91
+ Saint-Alban ,SAINT ALBAN ,22400,22273,53,48.566667,-2.55,1.15
+ Saint-André-des-Eaux ,SAINT ANDRE DES EAUX,22630,22274,53,48.366667,-2.016667,2.06
+ Saint-Barnabé ,SAINT BARNABE ,22600,22275,53,48.133333,-2.7,2.26
+ Saint-Bihy ,SAINT BIHY ,22800,22276,53,48.383333,-2.966667,0.85
+ Saint-Brandan ,SAINT BRANDAN ,22800,22277,53,48.383333,-2.866667,1.25
+ Saint-Brieuc ,SAINT BRIEUC ,22000,22278,53,48.516667,-2.783333,0.23
+ Saint-Caradec ,SAINT CARADEC ,22600,22279,53,48.2,-2.85,1.83
+ Saint-Carné ,SAINT CARNE ,22100,22280,53,48.416667,-2.066667,1.94
+ Saint-Carreuc ,SAINT CARREUC ,22150,22281,53,48.4,-2.733333,1.1
+ Saint-Cast-le-Guildo ,SAINT CAST LE GUILDO,22380,22282,53,48.633333,-2.266667,1.43
+ Saint-Clet ,SAINT CLET ,22260,22283,53,48.666667,-3.133333,1.21
+ Saint-Connan ,SAINT CONNAN ,22480,22284,53,48.416667,-3.066667,1.49
+ Saint-Connec ,SAINT CONNEC ,22530,22285,53,48.183333,-2.916667,1.93
+ Saint-Denoual ,SAINT DENOUAL ,22400,22286,53,48.533333,-2.4,1.65
+ Saint-Donan ,SAINT DONAN ,22800,22287,53,48.466667,-2.883333,1.22
+ Saint-Étienne-du-Gué-de-l'Isle ,SAINT ETIENNE DU GUE,22210,22288,53,48.1,-2.65,2.48
+ Saint-Fiacre ,SAINT FIACRE ,22720,22289,53,48.466667,-3.066667,0.97
+ Saint-Gelven ,SAINT GELVEN ,22570,22290,53,48.233333,-3.1,1.61
+ Saint-Gildas ,SAINT GILDAS ,22800,22291,53,48.416667,-3,1.22
+ Saint-Gilles-du-Mené ,SAINT GILLES DU MENE,22330,22292,53,48.25,-2.55,1.5
+ Saint-Gilles-les-Bois ,SAINT GILLES LES BOIS,22290,22293,53,48.65,-3.1,1.81
+ Saint-Gilles-Pligeaux ,SAINT GILLES PLIGEAUX ,22480,22294,53,48.383333,-3.083333,1.07
+ Saint-Glen ,SAINT GLEN ,22510,22296,53,48.366667,-2.516667,1.05
+ Saint-Gouéno ,SAINT GOUENO ,22330,22297,53,48.266667,-2.583333,1.39
+ Saint-Guen ,SAINT GUEN ,22530,22298,53,48.216667,-2.933333,1.72
+ Saint-Hélen ,SAINT HELEN ,22100,22299,53,48.466667,-1.966667,2.19
+ Saint-Hervé ,SAINT HERVE ,22460,22300,53,48.283333,-2.833333,1.28
+ Saint-Igneuc ,SAINT IGNEUC ,22270,22301,53,48.416667,-2.35,1.22
+ Saint-Jacut-de-la-Mer ,SAINT JACUT DE LA,22750,22302,53,48.6,-2.183333,1.64
+ Saint-Jacut-du-Mené ,SAINT JACUT DU MENE,22330,22303,53,48.283333,-2.483333,1.28
+ Saint-Jean-Kerdaniel ,SAINT JEAN KERDANIEL ,22170,22304,53,48.566667,-3.016667,1.08
+ Saint-Jouan-de-l'Isle ,SAINT JOUAN DE L,22350,22305,53,48.266667,-2.166667,1.68
+ Saint-Judoce ,SAINT JUDOCE ,22630,22306,53,48.366667,-1.95,2.23
+ Saint-Julien ,SAINT JULIEN ,22940,22307,53,48.45,-2.816667,1
+ Saint-Juvat ,SAINT JUVAT ,22630,22308,53,48.35,-2.05,1.98
+ Saint-Launeuc ,SAINT LAUNEUC ,22230,22309,53,48.233333,-2.383333,1.61
+ Saint-Lormel ,SAINT LORMEL ,22130,22311,53,48.55,-2.233333,1.52
+ Saint-Maden ,SAINT MADEN ,22350,22312,53,48.333333,-2.083333,1.89
+ Saint-Martin-des-Prés ,SAINT MARTIN DES PRES,22320,22313,53,48.3,-2.95,1.18
+ Saint-Maudan ,SAINT MAUDAN ,22600,22314,53,48.116667,-2.766667,2.37
+ Saint-Maudez ,SAINT MAUDEZ ,22980,22315,53,48.45,-2.183333,-1
+ Saint-Mayeux ,SAINT MAYEUX ,22320,22316,53,48.25,-3,1.5
+ Saint-Michel-de-Plélan ,SAINT MICHEL DE PLELAN,22980,22318,53,48.466667,-2.216667,1.56
+ Saint-Michel-en-Grève ,SAINT MICHEL EN GREVE,22300,22319,53,48.683333,-3.566667,1.84
+ Saint-Nicolas-du-Pélem ,SAINT NICOLAS DU PELEM,22480,22321,53,48.316667,-3.166667,1.07
+ Saint-Péver ,SAINT PEVER ,22720,22322,53,48.483333,-3.1,0.67
+ Saint-Potan ,SAINT POTAN ,22550,22323,53,48.55,-2.283333,1.39
+ Saint-Quay-Perros ,SAINT QUAY PERROS ,22700,22324,53,48.783333,-3.45,1.97
+ Saint-Quay-Portrieux ,SAINT QUAY PORTRIEUX ,22410,22325,53,48.65,-2.833333,1.1
+ Saint-Rieul ,SAINT RIEUL ,22270,22326,53,48.45,-2.416667,1.63
+ Saint-Samson-sur-Rance ,SAINT SAMSON SUR RANCE,22100,22327,53,48.5,-2.033333,2.02
+ Saint-Solen ,SAINT SOLEN ,22100,22329,53,48.45,-1.983333,2.15
+ Saint-Thélo ,SAINT THELO ,22460,22330,53,48.233333,-2.85,1.61
+ Sainte-Tréphine ,SAINTE TREPHINE ,22480,22331,53,48.266667,-3.15,1.39
+ Saint-Trimoël ,SAINT TRIMOEL ,22510,22332,53,48.383333,-2.55,0.72
+ Saint-Vran ,SAINT VRAN ,22230,22333,53,48.233333,-2.433333,1.61
+ Saint-Igeaux ,SAINT IGEAUX ,22570,22334,53,48.266667,-3.1,1.39
+ Senven-Léhart ,SENVEN LEHART ,22720,22335,53,48.433333,-3.066667,1.21
+ Sévignac ,SEVIGNAC ,22250,22337,53,48.333333,-2.35,1.22
+ Squiffiec ,SQUIFFIEC ,22200,22338,53,48.633333,-3.15,0.99
+ Taden ,TADEN ,22100,22339,53,48.483333,-2.016667,2.06
+ Tonquédec ,TONQUEDEC ,22140,22340,53,48.666667,-3.4,1.88
+ Tramain ,TRAMAIN ,22640,22341,53,48.4,-2.4,1.1
+ Trébédan ,TREBEDAN ,22980,22342,53,48.4,-2.166667,1.68
+ Trébeurden ,TREBEURDEN ,22560,22343,53,48.766667,-3.566667,1.86
+ Trébrivan ,TREBRIVAN ,22340,22344,53,48.316667,-3.483333,1.63
+ Trébry ,TREBRY ,22510,22345,53,48.35,-2.55,0.85
+ Trédaniel ,TREDANIEL ,22510,22346,53,48.366667,-2.616667,1.05
+ Trédarzec ,TREDARZEC ,22220,22347,53,48.783333,-3.2,1.97
+ Trédias ,TREDIAS ,22250,22348,53,48.35,-2.233333,1.52
+ Trédrez ,TREDREZ ,22300,22349,53,48.7,-3.566667,1.84
+ Tréduder ,TREDUDER ,22310,22350,53,48.65,-3.566667,1.84
+ Treffrin ,TREFFRIN ,22340,22351,53,48.3,-3.516667,1.71
+ Tréfumel ,TREFUMEL ,22630,22352,53,48.333333,-2.033333,2.02
+ Tréglamus ,TREGLAMUS ,22540,22354,53,48.55,-3.283333,1.13
+ Trégomar ,TREGOMAR ,22400,22355,53,48.466667,-2.433333,1.15
+ Trégomeur ,TREGOMEUR ,22590,22356,53,48.566667,-2.883333,1.15
+ Trégon ,TREGON ,22650,22357,53,48.566667,-2.183333,1.64
+ Trégonneau ,TREGONNEAU ,22200,22358,53,48.616667,-3.166667,0.88
+ Trégrom ,TREGROM ,22420,22359,53,48.6,-3.4,1.63
+ Tréguidel ,TREGUIDEL ,22290,22361,53,48.6,-2.933333,1.84
+ Tréguier ,TREGUIER ,22220,22362,53,48.783333,-3.233333,1.97
+ Trélévern ,TRELEVERN ,22660,22363,53,48.816667,-3.366667,2.18
+ Trélivan ,TRELIVAN ,22100,22364,53,48.433333,-2.116667,1.81
+ Trémargat ,TREMARGAT ,22110,22365,53,48.333333,-3.266667,1.31
+ Trémel ,TREMEL ,22310,22366,53,48.6,-3.616667,1.97
+ Tréméloir ,TREMELOIR ,22590,22367,53,48.55,-2.85,0.57
+ Tréméreuc ,TREMEREUC ,22490,22368,53,48.55,-2.066667,1.94
+ Trémeur ,TREMEUR ,22250,22369,53,48.35,-2.266667,1.43
+ Trémeven ,TREMEVEN ,22290,22370,53,48.666667,-3.033333,1.21
+ Trémorel ,TREMOREL ,22230,22371,53,48.2,-2.3,1.83
+ Trémuson ,TREMUSON ,22440,22372,53,48.516667,-2.85,1.13
+ Tréogan ,TREOGAN ,22340,22373,53,48.183333,-3.516667,1.93
+ Tressaint ,TRESSAINT ,22100,22374,53,48.433333,-2.033333,2.02
+ Tressignaux ,TRESSIGNAUX ,22290,22375,53,48.616667,-2.983333,0.88
+ Trévé ,TREVE ,22600,22376,53,48.216667,-2.8,1.72
+ Tréveneuc ,TREVENEUC ,22410,22377,53,48.666667,-2.866667,1.21
+ Trévérec ,TREVEREC ,22290,22378,53,48.65,-3.05,1.1
+ Trévou-Tréguignec ,TREVOU TREGUIGNEC ,22660,22379,53,48.816667,-3.35,2.18
+ Trévron ,TREVRON ,22100,22380,53,48.383333,-2.066667,1.94
+ Trézény ,TREZENY ,22450,22381,53,48.75,-3.366667,1.75
+ Trigavou ,TRIGAVOU ,22490,22382,53,48.533333,-2.083333,1.89
+ Troguéry ,TROGUERY ,22450,22383,53,48.75,-3.216667,1.75
+ Uzel ,UZEL ,22460,22384,53,48.283333,-2.85,1.28
+ La Vicomté-sur-Rance ,LA VICOMTE SUR RANCE,22690,22385,53,48.5,-1.983333,2.15
+ Le Vieux-Bourg ,LE VIEUX BOURG ,22800,22386,53,48.383333,-3,1.34
+ Vildé-Guingalan ,VILDE GUINGALAN ,22980,22388,53,48.433333,-2.15,1.73
+ Yffiniac ,YFFINIAC ,22120,22389,53,48.483333,-2.675,0.43
+ Yvias ,YVIAS ,22930,22390,53,48.716667,-3.05,1.53
+ Yvignac ,YVIGNAC ,22350,22391,53,48.35,-2.183333,1.64
+ Guénézan ,GUENEZAN ,22140,22901,53,48.616667,-3.283333,1.13
+ Trézelan ,TREZELAN ,22140,22902,53,48.65,-3.25,1.1
+ Caroual ,CAROUAL ,22430,22907,53,48.616667,-2.483333,1
+ Kermouster ,KERMOUSTER ,22740,22911,53,48.833333,-3.083333,2.29
+ Locquémeau ,LOCQUEMEAU ,22300,22913,53,48.716667,-3.566667,1.84
+ Le Quinquis ,LE QUINQUIS ,22540,22915,53,48.3,-3.933333,2.76
+ Buguélès ,BUGUELES ,22710,22917,53,48.841667,-3.275,-1
+ Port Blanc ,PORT BLANC ,22710,22918,53,48.633333,-2.083333,1.89
+ La Clarté ,LA CLARTE ,22700,22919,53,48.816667,-3.466667,2.18
+ Sables-d'Or-les-Pins ,SABLES D OR LES,22240,22921,53,48.65,-2.4,1.1
+ Saint-Efflam ,SAINT EFFLAM ,22310,22924,53,48.566667,-3.283333,2.4
+ L'Arcouest ,L ARCOUEST ,22620,22927,53,48.816667,-3.016667,2.18
+ Les Rosaires ,LES ROSAIRES ,22190,22930,53,48.566667,-2.75,1
+ Keregal ,KEREGAL ,22580,22934,53,48.133333,-2.933333,2.26
+ Kertugal ,KERTUGAL ,22410,22937,53,48.666667,-2.85,1.21
+ Ahun ,AHUN ,23150,23001,74,46.083333,2.05,0.59
+ Ajain ,AJAIN ,23380,23002,74,46.2,2,1
+ Alleyrat ,ALLEYRAT ,23200,23003,74,45.983333,2.15,0.81
+ Anzème ,ANZEME ,23000,23004,74,46.266667,1.866667,1.67
+ Arfeuille-Châtain ,ARFEUILLE CHATAIN ,23700,23005,74,46.066667,2.433333,1.69
+ Arrènes ,ARRENES ,23210,23006,74,46.066667,1.566667,1.91
+ Ars ,ARS ,23480,23007,74,46,2.066667,0.88
+ Aubusson ,AUBUSSON ,23200,23008,74,45.95,2.166667,0.97
+ Auge ,AUGE ,23170,23009,74,46.25,2.316667,1.2
+ Augères ,AUGERES ,23210,23010,74,46.083333,1.733333,1.22
+ Aulon ,AULON ,23210,23011,74,46.083333,1.7,1.36
+ Auriat ,AURIAT ,23400,23012,74,45.883333,1.633333,1.64
+ Auzances ,AUZANCES ,23700,23013,74,46.016667,2.5,1.96
+ Azat-Chatenet ,AZAT CHATENET ,23210,23014,74,46.066667,1.766667,1.63
+ Azerables ,AZERABLES ,23160,23015,74,46.35,1.483333,2.26
+ Basville ,BASVILLE ,23260,23017,74,45.866667,2.4,1.55
+ Bazelat ,BAZELAT ,23160,23018,74,46.35,1.533333,2.05
+ Beissat ,BEISSAT ,23260,23019,74,45.766667,2.283333,2.18
+ Bellegarde-en-Marche ,BELLEGARDE EN MARCHE ,23190,23020,74,45.983333,2.3,1.13
+ Bénévent-l'Abbaye ,BENEVENT L ABBAYE ,23210,23021,74,46.116667,1.633333,1.64
+ Bétête ,BETETE ,23270,23022,74,46.366667,2.083333,1.77
+ Blaudeix ,BLAUDEIX ,23140,23023,74,46.233333,2.066667,0.89
+ Blessac ,BLESSAC ,23200,23024,74,45.95,2.116667,1.27
+ Bonnat ,BONNAT ,23220,23025,74,46.333333,1.9,1.55
+ Bord-Saint-Georges ,BORD SAINT GEORGES ,23230,23026,74,46.266667,2.3,1.75
+ Bosmoreau-les-Mines ,BOSMOREAU LES MINES ,23400,23027,74,46,1.75,1.15
+ Le Bourg-d'Hem ,LE BOURG D HEM,23220,23029,74,46.3,1.833333,1.33
+ Bourganeuf ,BOURGANEUF ,23400,23030,74,45.95,1.75,1.15
+ Boussac-Bourg ,BOUSSAC BOURG ,23600,23032,74,46.366667,2.233333,1.77
+ La Brionne ,LA BRIONNE ,23000,23033,74,46.166667,1.783333,1.28
+ Brousse ,BROUSSE ,23700,23034,74,45.966667,2.45,1.75
+ Budelière ,BUDELIERE ,23170,23035,74,46.216667,2.466667,1.82
+ Bussière-Dunoise ,BUSSIERE DUNOISE ,23320,23036,74,46.266667,1.766667,1.97
+ Bussière-Nouvelle ,BUSSIERE NOUVELLE ,23700,23037,74,46.016667,2.416667,1.62
+ Bussière-Saint-Georges ,BUSSIERE SAINT GEORGES ,23600,23038,74,46.4,2.133333,1.99
+ La Celle-sous-Gouzon ,LA CELLE SOUS GOUZON,23230,23040,74,46.216667,2.2,0.78
+ La Cellette ,LA CELLETTE ,23350,23041,74,46.4,2,1.99
+ Ceyroux ,CEYROUX ,23210,23042,74,46.066667,1.666667,1.5
+ Chamberaud ,CHAMBERAUD ,23480,23043,74,46.05,2.033333,0.41
+ Chambon-Sainte-Croix ,CHAMBON SAINTE CROIX ,23220,23044,74,46.35,1.766667,1.83
+ Chambon-sur-Voueize ,CHAMBON SUR VOUEIZE ,23170,23045,74,46.183333,2.416667,1.62
+ Chambonchard ,CHAMBONCHARD ,23110,23046,74,46.183333,2.55,2.17
+ Chamborand ,CHAMBORAND ,23240,23047,74,46.15,1.566667,1.91
+ Champagnat ,CHAMPAGNAT ,23190,23048,74,46.016667,2.283333,1.06
+ Champsanglard ,CHAMPSANGLARD ,23220,23049,74,46.266667,1.883333,1.14
+ La Chapelle-Baloüe ,LA CHAPELLE BALOUE ,23160,23050,74,46.366667,1.583333,1.84
+ La Chapelle-Saint-Martial ,LA CHAPELLE SAINT MARTIAL,23250,23051,74,46.016667,1.933333,0.76
+ La Chapelle-Taillefert ,LA CHAPELLE TAILLEFERT ,23000,23052,74,46.1,1.833333,0.88
+ Chard ,CHARD ,23700,23053,74,45.95,2.483333,1.89
+ Charron ,CHARRON ,23700,23054,74,46.066667,2.566667,2.24
+ Châtelard ,CHATELARD ,23700,23055,74,45.966667,2.466667,1.82
+ Châtelus-le-Marcheix ,CHATELUS LE MARCHEIX ,23430,23056,74,46,1.6,1.78
+ Châtelus-Malvaleix ,CHATELUS MALVALEIX ,23270,23057,74,46.3,2.016667,1.33
+ La Chaussade ,LA CHAUSSADE ,23200,23059,74,45.983333,2.233333,0.86
+ Chavanat ,CHAVANAT ,23250,23060,74,45.95,1.966667,1.37
+ Chénérailles ,CHENERAILLES ,23130,23061,74,46.116667,2.166667,0.88
+ Chéniers ,CHENIERS ,23220,23062,74,46.35,1.833333,1.66
+ Clairavaux ,CLAIRAVAUX ,23500,23063,74,45.783333,2.166667,2.07
+ Clugnat ,CLUGNAT ,23270,23064,74,46.3,2.116667,1.34
+ Colondannes ,COLONDANNES ,23800,23065,74,46.283333,1.616667,1.71
+ Le Compas ,LE COMPAS ,23700,23066,74,45.983333,2.466667,1.82
+ La Courtine ,LA COURTINE ,23100,23067,74,45.7,2.266667,2.62
+ Cressat ,CRESSAT ,23140,23068,74,46.133333,2.1,1.21
+ Crocq ,CROCQ ,23260,23069,74,45.866667,2.366667,1.52
+ Crozant ,CROZANT ,23160,23070,74,46.4,1.616667,1.99
+ Croze ,CROZE ,23500,23071,74,45.816667,2.158333,-1
+ Domeyrot ,DOMEYROT ,23140,23072,74,46.25,2.15,1.19
+ Dontreix ,DONTREIX ,23700,23073,74,45.983333,2.566667,2.24
+ Le Donzeil ,LE DONZEIL ,23480,23074,74,46.033333,1.966667,1.15
+ Dun-le-Palestel ,DUN LE PALESTEL ,23800,23075,74,46.3,1.666667,1.5
+ Évaux-les-Bains ,EVAUX LES BAINS ,23110,23076,74,46.166667,2.483333,1.89
+ Faux-la-Montagne ,FAUX LA MONTAGNE ,23340,23077,74,45.75,1.933333,2.29
+ Faux-Mazuras ,FAUX MAZURAS ,23400,23078,74,45.95,1.783333,1.01
+ Felletin ,FELLETIN ,23500,23079,74,45.883333,2.183333,1.41
+ Féniers ,FENIERS ,23100,23080,74,45.75,2.133333,2.29
+ Flayat ,FLAYAT ,23260,23081,74,45.783333,2.383333,2.07
+ Fontanières ,FONTANIERES ,23110,23083,74,46.1,2.5,1.96
+ La Forêt-du-Temple ,LA FORET DU TEMPLE,23360,23084,74,46.416667,1.9,2.1
+ Fransèches ,FRANSECHES ,23480,23086,74,46.016667,2.033333,0.54
+ Fresselines ,FRESSELINES ,23450,23087,74,46.383333,1.683333,1.88
+ Gartempe ,GARTEMPE ,23320,23088,74,46.15,1.733333,1.22
+ Genouillac ,GENOUILLAC ,23350,23089,74,46.35,2,1.66
+ Gioux ,GIOUX ,23500,23091,74,45.808333,2.125,1.91
+ Glénic ,GLENIC ,23380,23092,74,46.216667,1.933333,1
+ Gouzon ,GOUZON ,23230,23093,74,46.183333,2.233333,0.86
+ Gouzougnat ,GOUZOUGNAT ,23230,23094,74,46.166667,2.183333,1.18
+ Le Grand-Bourg ,LE GRAND BOURG ,23240,23095,74,46.166667,1.65,1.57
+ Guéret ,GUERET ,23000,23096,74,46.166667,1.866667,0.67
+ Issoudun-Létrieix ,ISSOUDUN LETRIEIX ,23130,23097,74,46.066667,2.15,1.39
+ Janaillat ,JANAILLAT ,23250,23099,74,46.05,1.75,2.23
+ Jarnages ,JARNAGES ,23140,23100,74,46.183333,2.083333,0.56
+ Jouillat ,JOUILLAT ,23220,23101,74,46.266667,1.95,1.63
+ Ladapeyre ,LADAPEYRE ,23270,23102,74,46.25,2.05,1
+ Lafat ,LAFAT ,23800,23103,74,46.333333,1.65,1.57
+ Lavaufranche ,LAVAUFRANCHE ,23600,23104,74,46.316667,2.266667,1.44
+ Lavaveix-les-Mines ,LAVAVEIX LES MINES ,23150,23105,74,46.066667,2.083333,1.11
+ Lépaud ,LEPAUD ,23170,23106,74,46.233333,2.383333,1.48
+ Lépinas ,LEPINAS ,23150,23107,74,46.083333,1.933333,1.09
+ Leyrat ,LEYRAT ,23600,23108,74,46.366667,2.283333,1.77
+ Linard ,LINARD ,23220,23109,74,46.366667,1.866667,1.77
+ Lioux-les-Monges ,LIOUX LES MONGES ,23700,23110,74,45.95,2.45,1.75
+ Lizières ,LIZIERES ,23240,23111,74,46.216667,1.566667,1.91
+ Lourdoueix-Saint-Pierre ,LOURDOUEIX SAINT PIERRE ,23360,23112,74,46.416667,1.816667,2.1
+ Lupersat ,LUPERSAT ,23190,23113,74,45.983333,2.35,1.34
+ Lussat ,LUSSAT ,23170,23114,74,46.183333,2.333333,1.27
+ Magnat-l'Étrange ,MAGNAT L ETRANGE ,23260,23115,74,45.783333,2.283333,2.07
+ Mainsat ,MAINSAT ,23700,23116,74,46.05,2.383333,1.72
+ Maison-Feyne ,MAISON FEYNE ,23800,23117,74,46.35,1.666667,1.66
+ Maisonnisses ,MAISONNISSES ,23150,23118,74,46.066667,1.9,1.59
+ Malleret ,MALLERET ,23260,23119,74,45.766667,2.316667,2.18
+ Malleret-Boussac ,MALLERET BOUSSAC ,23600,23120,74,46.35,2.133333,1.66
+ Malval ,MALVAL ,23220,23121,74,46.35,1.883333,1.66
+ Mansat-la-Courrière ,MANSAT LA COURRIERE ,23400,23122,74,45.966667,1.8,1.24
+ Les Mars ,LES MARS ,23700,23123,74,45.983333,2.483333,1.89
+ Marsac ,MARSAC ,23210,23124,74,46.1,1.6,1.78
+ Le Mas-d'Artige ,LE MAS D ARTIGE,23100,23125,74,45.733333,2.183333,2.4
+ Masbaraud-Mérignat ,MASBARAUD MERIGNAT ,23400,23126,74,45.983333,1.75,1.15
+ Mautes ,MAUTES ,23190,23127,74,45.95,2.383333,1.74
+ Mazeirat ,MAZEIRAT ,23150,23128,74,46.15,1.966667,1.08
+ Méasnes ,MEASNES ,23360,23130,74,46.416667,1.783333,2.1
+ Mérinchal ,MERINCHAL ,23420,23131,74,45.916667,2.483333,1.89
+ Montaigut-le-Blanc ,MONTAIGUT LE BLANC ,23320,23132,74,46.116667,1.733333,1.31
+ Montboucher ,MONTBOUCHER ,23400,23133,74,45.95,1.683333,1.43
+ Le Monteil-au-Vicomte ,LE MONTEIL AU VICOMTE,23460,23134,74,45.933333,1.95,1.08
+ Mortroux ,MORTROUX ,23220,23136,74,46.4,1.916667,1.99
+ Moutier-d'Ahun ,MOUTIER D AHUN ,23150,23138,74,46.1,2.05,0.61
+ Moutier-Malcard ,MOUTIER MALCARD ,23220,23139,74,46.383333,1.95,1.88
+ Moutier-Rozeille ,MOUTIER ROZEILLE ,23200,23140,74,45.916667,2.2,1.19
+ Naillat ,NAILLAT ,23800,23141,74,46.266667,1.633333,1.64
+ Néoux ,NEOUX ,23200,23142,74,45.916667,2.25,1.23
+ Noth ,NOTH ,23300,23143,74,46.233333,1.583333,1.84
+ La Nouaille ,LA NOUAILLE ,23500,23144,74,45.85,2.066667,1.88
+ Nouhant ,NOUHANT ,23170,23145,74,46.283333,2.383333,1.48
+ Nouzerines ,NOUZERINES ,23600,23146,74,46.383333,2.116667,1.88
+ Nouzerolles ,NOUZEROLLES ,23360,23147,74,46.383333,1.733333,1.88
+ Nouziers ,NOUZIERS ,23350,23148,74,46.433333,1.966667,2.21
+ Parsac ,PARSAC ,23140,23149,74,46.2,2.15,0.89
+ Peyrabout ,PEYRABOUT ,23000,23150,74,46.1,1.916667,0.94
+ Peyrat-la-Nonière ,PEYRAT LA NONIERE ,23130,23151,74,46.083333,2.25,0.92
+ Pierrefitte ,PIERREFITTE ,23130,23152,74,46.15,2.233333,0.88
+ Pigerolles ,PIGEROLLES ,23340,23153,74,45.783333,2.083333,2.07
+ Pionnat ,PIONNAT ,23140,23154,74,46.166667,2.016667,1.54
+ Pontarion ,PONTARION ,23250,23155,74,46,1.85,0.74
+ Pontcharraud ,PONTCHARRAUD ,23260,23156,74,45.866667,2.283333,1.52
+ La Pouge ,LA POUGE ,23250,23157,74,45.983333,1.95,0.95
+ Poussanges ,POUSSANGES ,23500,23158,74,45.816667,2.216667,1.85
+ Puy-Malsignat ,PUY MALSIGNAT ,23130,23159,74,46.033333,2.216667,1.38
+ Reterre ,RETERRE ,23110,23160,74,46.1,2.466667,1.82
+ Rimondeix ,RIMONDEIX ,23140,23161,74,46.233333,2.083333,0.89
+ Roches ,ROCHES ,23270,23162,74,46.283333,1.983333,1.22
+ La Rochette ,LA ROCHETTE ,23200,23163,74,46.016667,2.1,1.83
+ Rougnat ,ROUGNAT ,23700,23164,74,46.058333,2.5,-1
+ Sagnat ,SAGNAT ,23800,23166,74,46.3,1.633333,1.64
+ Sannat ,SANNAT ,23110,23167,74,46.116667,2.4,1.55
+ Sardent ,SARDENT ,23250,23168,74,46.05,1.85,1
+ La Saunière ,LA SAUNIERE ,23000,23169,74,46.133333,1.95,1.13
+ Savennes ,SAVENNES ,23000,23170,74,46.1,1.9,0.8
+ Sermur ,SERMUR ,23700,23171,74,45.983333,2.433333,1.69
+ La Serre-Bussière-Vieille ,LA SERRE BUSSIERE VIEILLE,23190,23172,74,46.05,2.316667,1.2
+ Soubrebost ,SOUBREBOST ,23250,23173,74,45.966667,1.85,0.86
+ Soumans ,SOUMANS ,23600,23174,74,46.3,2.316667,1.59
+ Sous-Parsat ,SOUS PARSAT ,23150,23175,74,46.05,1.966667,0.82
+ La Souterraine ,LA SOUTERRAINE ,23300,23176,74,46.233333,1.483333,2.26
+ Saint-Agnant-de-Versillat ,SAINT AGNANT DE VERSILLAT,23300,23177,74,46.283333,1.516667,2.12
+ Saint-Agnant-près-Crocq ,SAINT AGNANT PRES CROCQ,23260,23178,74,45.8,2.35,1.96
+ Saint-Alpinien ,SAINT ALPINIEN ,23200,23179,74,45.983333,2.233333,0.86
+ Saint-Amand ,SAINT AMAND ,23200,23180,74,45.983333,2.2,0.76
+ Saint-Amand-Jartoudeix ,SAINT AMAND JARTOUDEIX ,23400,23181,74,45.916667,1.666667,1.5
+ Saint-Avit-de-Tardes ,SAINT AVIT DE TARDES,23200,23182,74,45.916667,2.283333,1.72
+ Saint-Avit-le-Pauvre ,SAINT AVIT LE PAUVRE,23480,23183,74,46,2.033333,0.65
+ Saint-Bard ,SAINT BARD ,23260,23184,74,45.916667,2.4,1.55
+ Saint-Chabrais ,SAINT CHABRAIS ,23130,23185,74,46.133333,2.2,0.72
+ Saint-Christophe ,SAINT CHRISTOPHE ,23000,23186,74,46.1,1.866667,0.69
+ Saint-Dizier-la-Tour ,SAINT DIZIER LA TOUR,23130,23187,74,46.133333,2.166667,0.99
+ Saint-Dizier-les-Domaines ,SAINT DIZIER LES DOMAINES,23270,23188,74,46.316667,2.016667,1.44
+ Saint-Dizier-Leyrenne ,SAINT DIZIER LEYRENNE ,23400,23189,74,46.033333,1.716667,1.38
+ Saint-Domet ,SAINT DOMET ,23190,23190,74,46.05,2.3,1.13
+ Saint-Éloi ,SAINT ELOI ,23000,23191,74,46.066667,1.833333,1.28
+ Saint-Étienne-de-Fursac ,SAINT ETIENNE DE FURSAC,23290,23192,74,46.15,1.516667,2.12
+ Saint-Fiel ,SAINT FIEL ,23000,23195,74,46.216667,1.9,1.04
+ Saint-Frion ,SAINT FRION ,23500,23196,74,45.866667,2.233333,1.52
+ Saint-Georges-la-Pouge ,SAINT GEORGES LA POUGE,23250,23197,74,45.983333,1.983333,1.45
+ Saint-Georges-Nigremont ,SAINT GEORGES NIGREMONT ,23500,23198,74,45.833333,2.266667,1.74
+ Saint-Germain-Beaupré ,SAINT GERMAIN BEAUPRE ,23160,23199,74,46.316667,1.55,1.98
+ Saint-Goussaud ,SAINT GOUSSAUD ,23430,23200,74,46.033333,1.583333,1.84
+ Saint-Hilaire-la-Plaine ,SAINT HILAIRE LA PLAINE,23150,23201,74,46.133333,1.983333,0.75
+ Saint-Hilaire-le-Château ,SAINT HILAIRE LE CHATEAU,23250,23202,74,45.983333,1.9,0.76
+ Saint-Julien-la-Genète ,SAINT JULIEN LA GENETE,23110,23203,74,46.15,2.466667,1.82
+ Saint-Julien-le-Châtel ,SAINT JULIEN LE CHATEL,23130,23204,74,46.116667,2.266667,1.01
+ Saint-Junien-la-Bregère ,SAINT JUNIEN LA BREGERE,23400,23205,74,45.883333,1.75,1.41
+ Saint-Laurent ,SAINT LAURENT ,23000,23206,74,46.166667,1.966667,1.36
+ Saint-Léger-Bridereix ,SAINT LEGER BRIDEREIX ,23300,23207,74,46.283333,1.583333,1.84
+ Saint-Léger-le-Guérétois ,SAINT LEGER LE GUERETOIS,23000,23208,74,46.15,1.816667,0.88
+ Saint-Loup ,SAINT LOUP ,23130,23209,74,46.133333,2.266667,1.11
+ Saint-Maixant ,SAINT MAIXANT ,23200,23210,74,46,2.2,0.72
+ Saint-Marc-à-Frongier ,SAINT MARC A FRONGIER,23200,23211,74,45.933333,2.116667,1.33
+ Saint-Marc-à-Loubaud ,SAINT MARC A LOUBAUD,23460,23212,74,45.85,2,1.63
+ Saint-Marien ,SAINT MARIEN ,23600,23213,74,46.416667,2.233333,2.1
+ Saint-Martial-le-Mont ,SAINT MARTIAL LE MONT,23150,23214,74,46.05,2.083333,1.19
+ Saint-Martial-le-Vieux ,SAINT MARTIAL LE VIEUX,23100,23215,74,45.666667,2.283333,2.84
+ Saint-Martin-Château ,SAINT MARTIN CHATEAU ,23460,23216,74,45.866667,1.8,1.57
+ Saint-Martin-Sainte-Catherine ,SAINT MARTIN SAINTE CATHERINE,23430,23217,74,45.966667,1.583333,1.84
+ Saint-Maurice-près-Crocq ,SAINT MAURICE PRES CROCQ,23260,23218,74,45.866667,2.333333,1.52
+ Saint-Maurice-la-Souterraine ,SAINT MAURICE LA SOUTERRAINE,23300,23219,74,46.216667,1.433333,2.47
+ Saint-Merd-la-Breuille ,SAINT MERD LA BREUILLE,23100,23221,74,45.75,2.433333,2.29
+ Saint-Michel-de-Veisse ,SAINT MICHEL DE VEISSE,23480,23222,74,45.95,2.05,1.51
+ Saint-Moreil ,SAINT MOREIL ,23400,23223,74,45.85,1.683333,1.63
+ Saint-Oradoux-de-Chirouze ,SAINT ORADOUX DE CHIROUZE,23100,23224,74,45.733333,2.333333,2.4
+ Saint-Oradoux-près-Crocq ,SAINT ORADOUX PRES CROCQ,23260,23225,74,45.883333,2.4,1.55
+ Saint-Pardoux-d'Arnet ,SAINT PARDOUX D ARNET,23260,23226,74,45.883333,2.333333,1.41
+ Saint-Pardoux-le-Neuf ,SAINT PARDOUX LE NEUF,23200,23228,74,45.933333,2.233333,1.08
+ Saint-Pardoux-les-Cards ,SAINT PARDOUX LES CARDS,23150,23229,74,46.083333,2.116667,1.54
+ Saint-Pierre-de-Fursac ,SAINT PIERRE DE FURSAC,23290,23231,74,46.15,1.516667,2.12
+ Saint-Pierre-Bellevue ,SAINT PIERRE BELLEVUE ,23460,23232,74,45.916667,1.883333,1.19
+ Saint-Pierre-le-Bost ,SAINT PIERRE LE BOST,23600,23233,74,46.4,2.266667,1.99
+ Saint-Priest ,SAINT PRIEST ,23110,23234,74,46.083333,2.333333,2.05
+ Saint-Priest-la-Feuille ,SAINT PRIEST LA FEUILLE,23300,23235,74,46.2,1.533333,2.05
+ Saint-Priest-la-Plaine ,SAINT PRIEST LA PLAINE,23240,23236,74,46.2,1.633333,1.64
+ Saint-Priest-Palus ,SAINT PRIEST PALUS ,23400,23237,74,45.9,1.666667,1.5
+ Saint-Quentin-la-Chabanne ,SAINT QUENTIN LA CHABANNE,23500,23238,74,45.866667,2.166667,1.52
+ Saint-Sébastien ,SAINT SEBASTIEN ,23160,23239,74,46.4,1.533333,2.05
+ Saint-Silvain-Bas-le-Roc ,SAINT SILVAIN BAS LE,23600,23240,74,46.333333,2.233333,1.55
+ Saint-Silvain-Montaigut ,SAINT SILVAIN MONTAIGUT ,23320,23242,74,46.15,1.75,1.15
+ Saint-Silvain-sous-Toulx ,SAINT SILVAIN SOUS TOULX,23140,23243,74,46.266667,2.166667,1.6
+ Saint-Sulpice-le-Dunois ,SAINT SULPICE LE DUNOIS,23800,23244,74,46.3,1.733333,1.73
+ Saint-Sulpice-le-Guérétois ,SAINT SULPICE LE GUERETOIS,23000,23245,74,46.2,1.833333,0.91
+ Saint-Sulpice-les-Champs ,SAINT SULPICE LES CHAMPS,23480,23246,74,46.15,2.016667,2.27
+ Saint-Vaury ,SAINT VAURY ,23320,23247,74,46.2,1.75,1.15
+ Saint-Yrieix-la-Montagne ,SAINT YRIEIX LA MONTAGNE,23460,23249,74,45.883333,2.033333,1.41
+ Saint-Yrieix-les-Bois ,SAINT YRIEIX LES BOIS,23150,23250,74,46.1,1.966667,0.63
+ Tardes ,TARDES ,23170,23251,74,46.133333,2.333333,1.58
+ Tercillat ,TERCILLAT ,23350,23252,74,46.416667,2.05,2.1
+ Thauron ,THAURON ,23250,23253,74,46,1.816667,1.07
+ Toulx-Sainte-Croix ,TOULX SAINTE CROIX ,23600,23254,74,46.283333,2.216667,1.22
+ Vallières ,VALLIERES ,23120,23257,74,45.9,2.033333,1.3
+ Vareilles ,VAREILLES ,23300,23258,74,46.3,1.483333,2.26
+ Verneiges ,VERNEIGES ,23170,23259,74,46.266667,2.333333,1.27
+ Vidaillat ,VIDAILLAT ,23250,23260,74,45.966667,1.916667,0.86
+ Viersat ,VIERSAT ,23170,23261,74,46.283333,2.433333,1.69
+ Vigeville ,VIGEVILLE ,23140,23262,74,46.166667,2.066667,0.83
+ Villard ,VILLARD ,23800,23263,74,46.333333,1.7,-1
+ La Villedieu ,LA VILLEDIEU ,23340,23264,74,45.733333,1.883333,2.4
+ La Villetelle ,LA VILLETELLE ,23260,23266,74,45.916667,2.35,1.34
+ Le Compeix ,LE COMPEIX ,23460,23902,74,45.9,1.866667,1.3
+ Forgevieille ,FORGEVIEILLE ,23160,23905,74,46.316667,1.533333,2.05
+ Agonac ,AGONAC ,24460,24002,72,45.283333,0.75,1
+ Ajat ,AJAT ,24210,24004,72,45.15,1.016667,0.96
+ Allès-sur-Dordogne ,ALLES SUR DORDOGNE ,24480,24005,72,44.85,0.866667,1.07
+ Allas-les-Mines ,ALLAS LES MINES ,24220,24006,72,44.833333,1.066667,1.14
+ Angoisse ,ANGOISSE ,24270,24008,72,45.416667,1.133333,1.6
+ Anlhiac ,ANLHIAC ,24160,24009,72,45.316667,1.133333,1.37
+ Annesse-et-Beaulieu ,ANNESSE ET BEAULIEU ,24430,24010,72,45.166667,0.55,1.38
+ Antonne-et-Trigonant ,ANTONNE ET TRIGONANT ,24420,24011,72,45.216667,0.833333,1.43
+ Archignac ,ARCHIGNAC ,24590,24012,72,45.016667,1.3,1.96
+ Atur ,ATUR ,24750,24013,72,45.15,0.75,0.67
+ Aubas ,AUBAS ,24290,24014,72,45.083333,1.2,1.61
+ Audrix ,AUDRIX ,24260,24015,72,44.883333,0.933333,1.18
+ Augignac ,AUGIGNAC ,24300,24016,72,45.583333,0.7,2.36
+ Auriac-de-Bourzac ,AURIAC DE BOURZAC ,24320,24017,72,45.366667,0.25,1.72
+ Auriac-du-Périgord ,AURIAC DU PERIGORD ,24290,24018,72,45.1,1.133333,1.37
+ Azerat ,AZERAT ,24210,24019,72,45.15,1.116667,1.31
+ Badefols-d'Ans ,BADEFOLS D ANS ,24390,24021,72,45.233333,1.2,1.61
+ Badefols-sur-Dordogne ,BADEFOLS SUR DORDOGNE ,24150,24022,72,44.85,0.8,1.1
+ Baneuil ,BANEUIL ,24150,24023,72,44.85,0.683333,0.97
+ Bardou ,BARDOU ,24560,24024,72,44.733333,0.683333,1.67
+ Bars ,BARS ,24210,24025,72,45.1,1.066667,1.14
+ Bayac ,BAYAC ,24150,24027,72,44.8,0.733333,1.19
+ Beaupouyet ,BEAUPOUYET ,24400,24029,72,45,0.266667,1.66
+ Beauregard-de-Terrasson ,BEAUREGARD DE TERRASSON ,24120,24030,72,45.15,1.216667,1.66
+ Beauregard-et-Bassac ,BEAUREGARD ET BASSAC ,24140,24031,72,44.983333,0.633333,1.43
+ Beauronne ,BEAURONNE ,24400,24032,72,45.1,0.383333,1.25
+ Beaussac ,BEAUSSAC ,24340,24033,72,45.5,0.5,1.98
+ Beleymas ,BELEYMAS ,24140,24034,72,44.983333,0.5,0.84
+ Belvès ,BELVES ,24170,24035,72,44.783333,1,1.27
+ Berbiguières ,BERBIGUIERES ,24220,24036,72,44.833333,1.033333,1.04
+ Bergerac ,BERGERAC ,24100,24037,72,44.85,0.483333,0.97
+ Bertric-Burée ,BERTRIC BUREE ,24320,24038,72,45.3,0.35,1.37
+ Besse ,BESSE ,24550,24039,72,44.666667,1.116667,1.8
+ Beynac-et-Cazenac ,BEYNAC ET CAZENAC ,24220,24040,72,44.833333,1.15,1.56
+ Bézenac ,BEZENAC ,24220,24041,72,44.85,1.1,1.26
+ Biras ,BIRAS ,24310,24042,72,45.283333,0.633333,1.24
+ Blis-et-Born ,BLIS ET BORN ,24330,24044,72,45.183333,0.9,1.04
+ Boisse ,BOISSE ,24560,24045,72,44.716667,0.65,1.57
+ Boisseuilh ,BOISSEUILH ,24390,24046,72,45.283333,1.166667,1.49
+ La Boissière-d'Ans ,LA BOISSIERE D ANS,24640,24047,72,45.233333,0.966667,0.79
+ Born-de-Champs ,BORN DE CHAMPS ,24440,24049,72,44.683333,0.716667,1.72
+ Borrèze ,BORREZE ,24590,24050,72,44.95,1.383333,2.25
+ Bosset ,BOSSET ,24130,24051,72,44.95,0.35,1.37
+ Bouillac ,BOUILLAC ,24480,24052,72,44.766667,0.9,1.35
+ Bouniagues ,BOUNIAGUES ,24560,24054,72,44.75,0.533333,1.42
+ Bourdeilles ,BOURDEILLES ,24310,24055,72,45.316667,0.6,1.15
+ Le Bourdeix ,LE BOURDEIX ,24300,24056,72,45.583333,0.633333,2.36
+ Bourg-des-Maisons ,BOURG DES MAISONS ,24320,24057,72,45.333333,0.433333,1.23
+ Bourg-du-Bost ,BOURG DU BOST ,24600,24058,72,45.266667,0.25,1.72
+ Bourgnac ,BOURGNAC ,24400,24059,72,45.016667,0.4,1.19
+ Bourniquel ,BOURNIQUEL ,24150,24060,72,44.8,0.85,2.03
+ Bourrou ,BOURROU ,24110,24061,72,45.05,0.616667,1.33
+ Bouteilles-Saint-Sébastien ,BOUTEILLES SAINT SEBASTIEN ,24320,24062,72,45.333333,0.3,1.54
+ Bouzic ,BOUZIC ,24250,24063,72,44.733333,1.233333,1.72
+ Brantôme ,BRANTOME ,24310,24064,72,45.366667,0.65,1.38
+ Breuilh ,BREUILH ,24380,24065,72,45.066667,0.75,0.52
+ Brouchaud ,BROUCHAUD ,24210,24066,72,45.2,1,0.95
+ Le Bugue ,LE BUGUE ,24260,24067,72,44.916667,0.933333,0.67
+ Bussac ,BUSSAC ,24350,24069,72,45.266667,0.6,1.28
+ Busserolles ,BUSSEROLLES ,24360,24070,72,45.683333,0.633333,2.81
+ Bussière-Badil ,BUSSIERE BADIL ,24360,24071,72,45.65,0.6,2.66
+ Cadouin ,CADOUIN ,24480,24072,72,44.816667,0.866667,1.12
+ Calès ,CALES ,24150,24073,72,44.85,0.816667,1.37
+ Campagnac-lès-Quercy ,CAMPAGNAC LES QUERCY ,24550,24075,72,44.683333,1.183333,1.99
+ Campagne ,CAMPAGNE ,24260,24076,72,44.9,0.966667,1.18
+ Campsegret ,CAMPSEGRET ,24140,24077,72,44.933333,0.566667,0.68
+ Cantillac ,CANTILLAC ,24530,24079,72,45.4,0.65,1.53
+ Capdrot ,CAPDROT ,24540,24080,72,44.683333,0.916667,1.72
+ Carlux ,CARLUX ,24370,24081,72,44.883333,1.35,2.13
+ Carsac-Aillac ,CARSAC AILLAC ,24200,24082,72,44.833333,1.25,1.78
+ Carsac-de-Gurson ,CARSAC DE GURSON ,24610,24083,72,44.95,0.1,2.24
+ Carvès ,CARVES ,24170,24084,72,44.783333,1.066667,1.27
+ La Cassagne ,LA CASSAGNE ,24120,24085,72,45.05,1.316667,2.01
+ Castels ,CASTELS ,24220,24087,72,44.866667,1.05,1.08
+ Cause-de-Clérans ,CAUSE DE CLERANS ,24150,24088,72,44.866667,0.666667,1.17
+ Cazoulès ,CAZOULES ,24370,24089,72,44.866667,1.433333,2.42
+ Celles ,CELLES ,24600,24090,72,45.3,0.416667,1.51
+ Cénac-et-Saint-Julien ,CENAC ET SAINT JULIEN,24250,24091,72,44.8,1.2,1.61
+ Cendrieux ,CENDRIEUX ,24380,24092,72,45,0.833333,1.54
+ Cercles ,CERCLES ,24320,24093,72,45.366667,0.45,1.38
+ Chalagnac ,CHALAGNAC ,24380,24094,72,45.1,0.666667,1.32
+ Chaleix ,CHALEIX ,24800,24095,72,45.516667,0.916667,2.06
+ Champagnac-de-Bélair ,CHAMPAGNAC DE BELAIR ,24530,24096,72,45.4,0.7,1.53
+ Champagne-et-Fontaine ,CHAMPAGNE ET FONTAINE ,24320,24097,72,45.416667,0.316667,1.6
+ Champcevinel ,CHAMPCEVINEL ,24750,24098,72,45.216667,0.733333,0.97
+ Champs-Romain ,CHAMPS ROMAIN ,24470,24101,72,45.533333,0.783333,2.13
+ Chancelade ,CHANCELADE ,24650,24102,72,45.2,0.666667,0.62
+ Le Change ,LE CHANGE ,24640,24103,72,45.183333,0.9,1.76
+ Chantérac ,CHANTERAC ,24190,24104,72,45.183333,0.45,1.04
+ Chapdeuil ,CHAPDEUIL ,24320,24105,72,45.333333,0.483333,1.49
+ La Chapelle-Aubareil ,LA CHAPELLE AUBAREIL ,24290,24106,72,45.016667,1.183333,1.55
+ La Chapelle-Faucher ,LA CHAPELLE FAUCHER ,24530,24107,72,45.366667,0.75,1.54
+ La Chapelle-Gonaguet ,LA CHAPELLE GONAGUET ,24350,24108,72,45.233333,0.616667,1.61
+ La Chapelle-Grésignac ,LA CHAPELLE GRESIGNAC ,24320,24109,72,45.4,0.333333,1.53
+ La Chapelle-Montabourlet ,LA CHAPELLE MONTABOURLET ,24320,24110,72,45.4,0.466667,1.53
+ La Chapelle-Montmoreau ,LA CHAPELLE MONTMOREAU ,24300,24111,72,45.45,0.65,1.76
+ La Chapelle-Péchaud ,LA CHAPELLE PECHAUD ,24250,24112,72,44.783333,1.1,1.83
+ La Chapelle-Saint-Jean ,LA CHAPELLE SAINT JEAN,24390,24113,72,45.2,1.15,1.43
+ Chassaignes ,CHASSAIGNES ,24600,24114,72,45.25,0.25,1.72
+ Château-l'Évêque ,CHATEAU L EVEQUE ,24460,24115,72,45.25,0.683333,1.94
+ Châtres ,CHATRES ,24120,24116,72,45.183333,1.183333,1.74
+ Chavagnac ,CHAVAGNAC ,24120,24117,72,45.083333,1.366667,2.19
+ Chenaud ,CHENAUD ,24410,24118,72,45.216667,0.1,2.24
+ Cherval ,CHERVAL ,24320,24119,72,45.4,0.366667,1.53
+ Cherveix-Cubas ,CHERVEIX CUBAS ,24390,24120,72,45.283333,1.116667,1.31
+ Cladech ,CLADECH ,24170,24122,72,44.816667,1.066667,1.14
+ Clermont-de-Beauregard ,CLERMONT DE BEAUREGARD ,24140,24123,72,44.95,0.65,1.72
+ Clermont-d'Excideuil ,CLERMONT D EXCIDEUIL ,24160,24124,72,45.366667,1.05,1.38
+ Colombier ,COLOMBIER ,24560,24126,72,44.766667,0.533333,1.35
+ Coly ,COLY ,24120,24127,72,45.083333,1.266667,1.84
+ Combéranche-et-Épeluche ,COMBERANCHE ET EPELUCHE ,24600,24128,72,45.283333,0.266667,1.66
+ Condat-sur-Trincou ,CONDAT SUR TRINCOU ,24530,24129,72,45.383333,0.716667,1.45
+ Condat-sur-Vézère ,CONDAT SUR VEZERE ,24570,24130,72,45.116667,1.233333,1.72
+ Connezac ,CONNEZAC ,24300,24131,72,45.5,0.516667,1.98
+ Conne-de-Labarde ,CONNE DE LABARDE ,24560,24132,72,44.783333,0.55,1.27
+ La Coquille ,LA COQUILLE ,24450,24133,72,45.55,0.983333,2.21
+ Corgnac-sur-l'Isle ,CORGNAC SUR L ISLE,24800,24134,72,45.383333,0.95,1.45
+ Cornille ,CORNILLE ,24750,24135,72,45.25,0.783333,1.41
+ Coubjours ,COUBJOURS ,24390,24136,72,45.25,1.25,1.78
+ Coulaures ,COULAURES ,24420,24137,72,45.3,0.983333,1.97
+ Coulounieix-Chamiers ,COULOUNIEIX CHAMIERS ,24660,24138,72,45.166667,0.7,1
+ Coursac ,COURSAC ,24430,24139,72,45.133333,0.633333,1.08
+ Cours-de-Pile ,COURS DE PILE ,24520,24140,72,44.833333,0.55,1.04
+ Couze-et-Saint-Front ,COUZE ET SAINT FRONT,24150,24143,72,44.833333,0.7,1.04
+ Creyssac ,CREYSSAC ,24350,24144,72,45.3,0.55,1.07
+ Creysse ,CREYSSE ,24100,24145,72,44.85,0.566667,1.21
+ Creyssensac-et-Pissot ,CREYSSENSAC ET PISSOT ,24380,24146,72,45.083333,0.683333,0.98
+ Cubjac ,CUBJAC ,24640,24147,72,45.216667,0.933333,0.73
+ Cunèges ,CUNEGES ,24240,24148,72,44.783333,0.366667,1.31
+ Daglan ,DAGLAN ,24250,24150,72,44.733333,1.2,1.61
+ Doissat ,DOISSAT ,24170,24151,72,44.733333,1.083333,1.5
+ Domme ,DOMME ,24250,24152,72,44.8,1.216667,1.66
+ La Dornac ,LA DORNAC ,24120,24153,72,45.083333,1.35,2.13
+ Douchapt ,DOUCHAPT ,24350,24154,72,45.233333,0.433333,1.5
+ Douville ,DOUVILLE ,24140,24155,72,45,0.583333,0.76
+ La Douze ,LA DOUZE ,24330,24156,72,45.066667,0.866667,1.34
+ Douzillac ,DOUZILLAC ,24190,24157,72,45.083333,0.416667,1.14
+ Dussac ,DUSSAC ,24270,24158,72,45.4,1.083333,1.53
+ Échourgnac ,ECHOURGNAC ,24410,24159,72,45.116667,0.233333,1.78
+ Église-Neuve-de-Vergt ,EGLISE NEUVE DE VERGT,24380,24160,72,45.083333,0.75,0.74
+ Église-Neuve-d'Issac ,EGLISE NEUVE D ISSAC,24400,24161,72,44.983333,0.433333,1.58
+ Escoire ,ESCOIRE ,24420,24162,72,45.2,0.85,1.41
+ Étouars ,ETOUARS ,24360,24163,72,45.6,0.633333,2.44
+ Excideuil ,EXCIDEUIL ,24160,24164,72,45.333333,1.05,1.23
+ Eygurande-et-Gardedeuil ,EYGURANDE ET GARDEDEUIL ,24700,24165,72,45.066667,0.133333,2.13
+ Eyliac ,EYLIAC ,24330,24166,72,45.166667,0.866667,0.72
+ Eymet ,EYMET ,24500,24167,72,44.666667,0.4,1.8
+ Plaisance ,PLAISANCE ,24560,24168,72,44.708333,0.566667,1.61
+ Eyvirat ,EYVIRAT ,24460,24170,72,45.316667,0.75,1.15
+ Eyzerac ,EYZERAC ,24800,24171,72,45.383333,0.916667,1.45
+ Falgueyrat ,FALGUEYRAT ,24560,24173,72,44.683333,0.55,1.72
+ Fanlac ,FANLAC ,24290,24174,72,45.066667,1.1,1.26
+ Les Farges ,LES FARGES ,24290,24175,72,45.116667,1.2,1.61
+ Faurilles ,FAURILLES ,24560,24176,72,44.7,0.7,2.05
+ Festalemps ,FESTALEMPS ,24410,24178,72,45.233333,0.233333,1.78
+ La Feuillade ,LA FEUILLADE ,19600,24179,72,45.116667,1.4,2.31
+ Firbeix ,FIRBEIX ,24450,24180,72,45.6,0.966667,2.44
+ Flaugeac ,FLAUGEAC ,24240,24181,72,44.75,0.45,1.42
+ Le Fleix ,LE FLEIX ,24130,24182,72,44.866667,0.25,1.72
+ Fleurac ,FLEURAC ,24580,24183,72,45.016667,1,0.91
+ Fongalop ,FONGALOP ,24170,24185,72,44.716667,0.966667,1.57
+ Fonroque ,FONROQUE ,24500,24186,72,44.7,0.416667,1.65
+ Fossemagne ,FOSSEMAGNE ,24210,24188,72,45.133333,0.983333,1.08
+ Fougueyrolles ,FOUGUEYROLLES ,33220,24189,72,44.866667,0.166667,2.01
+ Fouleix ,FOULEIX ,24380,24190,72,44.983333,0.683333,1.02
+ Fraisse ,FRAISSE ,24130,24191,72,44.933333,0.3,1.54
+ Gabillou ,GABILLOU ,24210,24192,72,45.2,1.033333,1.02
+ Gageac-et-Rouillac ,GAGEAC ET ROUILLAC ,24240,24193,72,44.8,0.341667,-1
+ Gardonne ,GARDONNE ,24680,24194,72,44.833333,0.35,1.37
+ Gaugeac ,GAUGEAC ,24540,24195,72,44.666667,0.883333,1.8
+ Génis ,GENIS ,24160,24196,72,45.316667,1.166667,1.49
+ Ginestet ,GINESTET ,24130,24197,72,44.916667,0.433333,1.37
+ La Gonterie-Boulouneix ,LA GONTERIE BOULOUNEIX ,24310,24198,72,45.383333,0.6,1.45
+ Grand Brassac ,GRAND BRASSAC ,24350,24200,72,45.283333,0.483333,1
+ Grand-Castang ,GRAND CASTANG ,24150,24201,72,44.9,0.75,0.99
+ Granges-d'Ans ,GRANGES D ANS ,24390,24202,72,45.216667,1.116667,1.31
+ Les Graulges ,LES GRAULGES ,24340,24203,72,45.5,0.45,1.98
+ Grèzes ,GREZES ,24120,24204,72,45.1,1.366667,2.19
+ Grives ,GRIVES ,24170,24206,72,44.766667,1.083333,1.35
+ Groléjac ,GROLEJAC ,24250,24207,72,44.816667,1.3,1.96
+ Hautefaye ,HAUTEFAYE ,24300,24209,72,45.533333,0.483333,2.13
+ Hautefort ,HAUTEFORT ,24390,24210,72,45.25,1.15,1.43
+ Issac ,ISSAC ,24400,24211,72,45.016667,0.45,1.62
+ Issigeac ,ISSIGEAC ,24560,24212,72,44.733333,0.6,1.5
+ Jayac ,JAYAC ,24590,24215,72,45.033333,1.333333,2.07
+ La Jemaye ,LA JEMAYE ,24410,24216,72,45.166667,0.25,1.72
+ Journiac ,JOURNIAC ,24260,24217,72,44.966667,0.9,0.71
+ Jumilhac-le-Grand ,JUMILHAC LE GRAND ,24630,24218,72,45.483333,1.066667,1.91
+ Labouquerie ,LABOUQUERIE ,24440,24219,72,44.733333,0.8,1.5
+ Lacropte ,LACROPTE ,24380,24220,72,45.041667,0.833333,-1
+ Rudeau-Ladosse ,RUDEAU LADOSSE ,24340,24221,72,45.483333,0.5,1.91
+ La Force ,LA FORCE ,24130,24222,72,44.866667,0.366667,1.31
+ Lalinde ,LALINDE ,24150,24223,72,44.833333,0.733333,1.04
+ Lamonzie-Montastruc ,LAMONZIE MONTASTRUC ,24520,24224,72,44.9,0.583333,1.58
+ Lamonzie-Saint-Martin ,LAMONZIE SAINT MARTIN ,24680,24225,72,44.85,0.383333,1.25
+ Lamothe-Montravel ,LAMOTHE MONTRAVEL ,24230,24226,72,44.85,0.033333,2.48
+ Lanouaille ,LANOUAILLE ,24270,24227,72,45.383333,1.133333,1.45
+ Lanquais ,LANQUAIS ,24150,24228,72,44.816667,0.666667,1.17
+ Larzac ,LARZAC ,24170,24230,72,44.75,1,1.42
+ Lavaur ,LAVAUR ,24550,24232,72,44.6,1.033333,2.1
+ Les Lèches ,LES LECHES ,24400,24234,72,44.983333,0.383333,1.25
+ Lembras ,LEMBRAS ,24100,24237,72,44.883333,0.533333,0.87
+ Lempzours ,LEMPZOURS ,24800,24238,72,45.366667,0.816667,1.45
+ Ligueux ,LIGUEUX ,24460,24239,72,45.3,0.816667,1.07
+ Limeuil ,LIMEUIL ,24510,24240,72,44.883333,0.9,1.63
+ Limeyrat ,LIMEYRAT ,24210,24241,72,45.166667,0.983333,1.01
+ Lisle ,LISLE ,24350,24243,72,45.283333,0.55,1
+ Lolme ,LOLME ,24540,24244,72,44.716667,0.85,1.57
+ Loubejac ,LOUBEJAC ,24550,24245,72,44.583333,1.1,2.18
+ Lunas ,LUNAS ,24130,24246,72,44.916667,0.4,1.19
+ Lusignac ,LUSIGNAC ,24320,24247,72,45.316667,0.3,1.54
+ Lussas-et-Nontronneau ,LUSSAS ET NONTRONNEAU ,24300,24248,72,45.5,0.583333,1.98
+ Manaurie ,MANAURIE ,24620,24249,72,44.966667,0.983333,1.65
+ Mandacou ,MANDACOU ,24560,24250,72,44.7,0.55,1.65
+ Manzac-sur-Vern ,MANZAC SUR VERN ,24110,24251,72,45.083333,0.583333,0.59
+ Marcillac-Saint-Quentin ,MARCILLAC SAINT QUENTIN ,24200,24252,72,44.966667,1.233333,1.72
+ Marnac ,MARNAC ,24220,24254,72,44.833333,1.016667,1.1
+ Marquay ,MARQUAY ,24620,24255,72,44.95,1.15,1.43
+ Marsalès ,MARSALES ,24540,24257,72,44.7,0.9,1.65
+ Marsaneix ,MARSANEIX ,24750,24258,72,45.1,0.783333,1.61
+ Maurens ,MAURENS ,24140,24259,72,44.933333,0.483333,1.25
+ Mauzac-et-Grand-Castang ,MAUZAC ET GRAND CASTANG,24150,24260,72,44.866667,0.783333,0.92
+ Mauzens-et-Miremont ,MAUZENS ET MIREMONT ,24260,24261,72,45,0.916667,1.18
+ Mayac ,MAYAC ,24420,24262,72,45.283333,0.933333,1
+ Mazeyrolles ,MAZEYROLLES ,24550,24263,72,44.666667,1.016667,1.8
+ Ménesplet ,MENESPLET ,24700,24264,72,45.016667,0.116667,2.19
+ Mensignac ,MENSIGNAC ,24350,24266,72,45.216667,0.566667,1.02
+ Mescoulès ,MESCOULES ,24240,24267,72,44.75,0.416667,1.42
+ Meyrals ,MEYRALS ,24220,24268,72,44.9,1.05,1.08
+ Mialet ,MIALET ,24450,24269,72,45.55,0.9,2.21
+ Milhac-d'Auberoche ,MILHAC D AUBEROCHE ,24330,24270,72,45.116667,0.916667,0.76
+ Milhac-de-Nontron ,MILHAC DE NONTRON ,24470,24271,72,45.466667,0.783333,1.83
+ Minzac ,MINZAC ,24610,24272,72,44.966667,0.05,2.42
+ Molières ,MOLIERES ,24480,24273,72,44.8,0.833333,1.33
+ Monbazillac ,MONBAZILLAC ,24240,24274,72,44.783333,0.5,1.77
+ Monbos ,MONBOS ,24240,24275,72,44.733333,0.383333,1.5
+ Monestier ,MONESTIER ,24240,24276,72,44.766667,0.316667,1.49
+ Monfaucon ,MONFAUCON ,24130,24277,72,44.916667,0.241667,-1
+ Monmadalès ,MONMADALES ,24560,24278,72,44.766667,0.616667,1.35
+ Monmarvès ,MONMARVES ,24560,24279,72,44.7,0.6,1.65
+ Monpazier ,MONPAZIER ,24540,24280,72,44.683333,0.9,1.72
+ Monsac ,MONSAC ,24440,24281,72,44.783333,0.7,1.49
+ Monsaguel ,MONSAGUEL ,24560,24282,72,44.733333,0.583333,1.5
+ Monsec ,MONSEC ,24340,24283,72,45.416667,0.533333,1.6
+ Montagnac-d'Auberoche ,MONTAGNAC D AUBEROCHE ,24210,24284,72,45.183333,0.95,1.53
+ Montagnac-la-Crempse ,MONTAGNAC LA CREMPSE ,24140,24285,72,44.983333,0.55,0.67
+ Montagrier ,MONTAGRIER ,24350,24286,72,45.266667,0.483333,0.92
+ Montazeau ,MONTAZEAU ,24230,24288,72,44.883333,0.15,2.07
+ Montcaret ,MONTCARET ,24230,24289,72,44.85,0.066667,2.36
+ Montferrand-du-Périgord ,MONTFERRAND DU PERIGORD ,24440,24290,72,44.75,0.866667,1.55
+ Montpeyroux ,MONTPEYROUX ,24610,24292,72,44.916667,0.066667,2.36
+ Monplaisant ,MONPLAISANT ,24170,24293,72,44.783333,0.983333,1.27
+ Montpon-Ménestérol ,MONTPON MENESTEROL ,24700,24294,72,45,0.166667,2.01
+ Montrem ,MONTREM ,24110,24295,72,45.133333,0.6,0.7
+ Mouleydier ,MOULEYDIER ,24520,24296,72,44.85,0.6,0.97
+ Moulin-Neuf ,MOULIN NEUF ,24700,24297,72,45.016667,0.066667,2.36
+ Mouzens ,MOUZENS ,24220,24298,72,44.85,1,1.39
+ Mussidan ,MUSSIDAN ,24400,24299,72,45.033333,0.366667,1.31
+ Nabirat ,NABIRAT ,24250,24300,72,44.75,1.283333,1.9
+ Nailhac ,NAILHAC ,24390,24302,72,45.216667,1.133333,1.37
+ Nantheuil ,NANTHEUIL ,24800,24304,72,45.416667,0.95,1.6
+ Nanthiat ,NANTHIAT ,24800,24305,72,45.4,0.983333,1.53
+ Nastringues ,NASTRINGUES ,24230,24306,72,44.866667,0.166667,2.01
+ Naussannes ,NAUSSANNES ,24440,24307,72,44.75,0.733333,1.42
+ Négrondes ,NEGRONDES ,24460,24308,72,45.35,0.866667,1.89
+ Neuvic ,NEUVIC ,24190,24309,72,45.1,0.466667,0.96
+ Nontron ,NONTRON ,24300,24311,72,45.533333,0.666667,2.13
+ Notre-Dame-de-Sanilhac ,NOTRE DAME DE SANILHAC,24660,24312,72,45.116667,0.716667,1
+ Orliac ,ORLIAC ,24170,24313,72,44.716667,1.066667,1.57
+ Orliaguet ,ORLIAGUET ,24370,24314,72,44.916667,1.35,2.13
+ Paleyrac ,PALEYRAC ,24480,24315,72,44.816667,0.916667,1.12
+ Parcoul ,PARCOUL ,24410,24316,72,45.2,0.033333,2.48
+ Paulin ,PAULIN ,24590,24317,72,45,1.333333,2.07
+ Paunat ,PAUNAT ,24510,24318,72,44.9,0.866667,1.12
+ Paussac-et-Saint-Vivien ,PAUSSAC ET SAINT VIVIEN,24310,24319,72,45.35,0.533333,1.5
+ Pazayac ,PAZAYAC ,24120,24321,72,45.116667,1.366667,2.19
+ Périgueux ,PERIGUEUX ,24000,24322,72,45.183333,0.716667,0.55
+ Petit-Bersac ,PETIT BERSAC ,24600,24323,72,45.283333,0.233333,1.78
+ Peyrignac ,PEYRIGNAC ,24210,24324,72,45.15,1.166667,1.7
+ Peyrillac-et-Millac ,PEYRILLAC ET MILLAC ,24370,24325,72,44.883333,1.4,2.31
+ Peyzac-le-Moustier ,PEYZAC LE MOUSTIER ,24620,24326,72,44.983333,1.083333,1.2
+ Pézuls ,PEZULS ,24510,24327,72,44.916667,0.816667,0.66
+ Piégut-Pluviers ,PIEGUT PLUVIERS ,24360,24328,72,45.616667,0.683333,2.51
+ Le Pizou ,LE PIZOU ,24700,24329,72,45.016667,0.066667,2.36
+ Plazac ,PLAZAC ,24580,24330,72,45.033333,1.05,1.39
+ Pomport ,POMPORT ,24240,24331,72,44.783333,0.416667,1.27
+ Ponteyraud ,PONTEYRAUD ,24410,24333,72,45.2,0.233333,1.78
+ Pontours ,PONTOURS ,24150,24334,72,44.833333,0.766667,1.04
+ Prats-de-Carlux ,PRATS DE CARLUX ,24370,24336,72,44.9,1.3,1.96
+ Prats-du-Périgord ,PRATS DU PERIGORD ,24550,24337,72,44.683333,1.066667,1.72
+ Preyssac-d'Excideuil ,PREYSSAC D EXCIDEUIL ,24160,24339,72,45.333333,1.1,1.26
+ Prigonrieux ,PRIGONRIEUX ,24130,24340,72,44.85,0.4,1.19
+ Proissans ,PROISSANS ,24200,24341,72,44.933333,1.233333,1.72
+ Puyguilhem ,PUYGUILHEM ,24240,24342,72,44.733333,0.35,1.5
+ Puymangou ,PUYMANGOU ,24410,24343,72,45.2,0.083333,2.3
+ Puyrenier ,PUYRENIER ,24340,24344,72,45.483333,0.466667,1.91
+ Queyssac ,QUEYSSAC ,24140,24345,72,44.9,0.55,1.17
+ Quinsac ,QUINSAC ,24530,24346,72,45.433333,0.7,1.68
+ Rampieux ,RAMPIEUX ,24440,24347,72,44.716667,0.8,1.57
+ Razac-d'Eymet ,RAZAC D EYMET ,24500,24348,72,44.683333,0.483333,1.72
+ Razac-de-Saussignac ,RAZAC DE SAUSSIGNAC ,24240,24349,72,44.8,0.283333,1.79
+ Razac-sur-l'Isle ,RAZAC SUR L ISLE,24430,24350,72,45.166667,0.616667,0.54
+ Ribagnac ,RIBAGNAC ,24240,24351,72,44.766667,0.5,1.76
+ Ribérac ,RIBERAC ,24600,24352,72,45.25,0.333333,1.43
+ La Roche-Chalais ,LA ROCHE CHALAIS ,24490,24354,72,45.15,0.016667,2.54
+ La Roque-Gageac ,LA ROQUE GAGEAC ,24250,24355,72,44.833333,1.2,1.61
+ Rouffignac-de-Sigoulès ,ROUFFIGNAC DE SIGOULES ,24240,24357,72,44.783333,0.45,1.27
+ Sadillac ,SADILLAC ,24500,24359,72,44.733333,0.483333,1.5
+ Sagelat ,SAGELAT ,24170,24360,72,44.783333,1,1.27
+ Saint-Amand-de-Belvès ,SAINT AMAND DE BELVES,24170,24363,72,44.766667,1.033333,1.35
+ Saint-Amand-de-Coly ,SAINT AMAND DE COLY,24290,24364,72,45.066667,1.266667,1.84
+ Saint-Amand-de-Vergt ,SAINT AMAND DE VERGT,24380,24365,72,44.983333,0.7,0.88
+ Saint-André-d'Allas ,SAINT ANDRE D ALLAS,24200,24366,72,44.883333,1.183333,1.55
+ Saint-André-de-Double ,SAINT ANDRE DE DOUBLE,24190,24367,72,45.15,0.316667,1.91
+ Saint-Antoine-Cumond ,SAINT ANTOINE CUMOND ,24410,24368,72,45.266667,0.2,1.89
+ Saint-Antoine-d'Auberoche ,SAINT ANTOINE D AUBEROCHE,24330,24369,72,45.15,0.95,1.38
+ Saint-Antoine-de-Breuilh ,SAINT ANTOINE DE BREUILH,24230,24370,72,44.833333,0.166667,2.01
+ Saint-Aquilin ,SAINT AQUILIN ,24110,24371,72,45.183333,0.5,1.44
+ Saint-Aubin-de-Cadelech ,SAINT AUBIN DE CADELECH,24500,24373,72,44.683333,0.5,1.72
+ Saint-Aubin-de-Lanquais ,SAINT AUBIN DE LANQUAIS,24560,24374,72,44.783333,0.583333,1.27
+ Saint-Aubin-de-Nabirat ,SAINT AUBIN DE NABIRAT,24250,24375,72,44.733333,1.266667,1.84
+ Saint-Aulaye ,SAINT AULAYE ,24410,24376,72,45.2,0.133333,2.13
+ Saint-Avit-de-Vialard ,SAINT AVIT DE VIALARD,24260,24377,72,44.95,0.883333,0.85
+ Saint-Avit-Rivière ,SAINT AVIT RIVIERE ,24540,24378,72,44.75,0.883333,1.51
+ Saint-Avit-Sénieur ,SAINT AVIT SENIEUR ,24440,24379,72,44.766667,0.816667,1.35
+ Saint-Barthélemy-de-Bussière ,SAINT BARTHELEMY DE BUSSIERE,24360,24381,72,45.633333,0.75,2.59
+ Saint-Capraise-de-Lalinde ,SAINT CAPRAISE DE LALINDE,24150,24382,72,44.85,0.65,1.37
+ Saint-Capraise-d'Eymet ,SAINT CAPRAISE D EYMET,24500,24383,72,44.7,0.5,1.65
+ Saint-Cassien ,SAINT CASSIEN ,24540,24384,72,44.683333,0.85,1.72
+ Saint-Cernin-de-Labarde ,SAINT CERNIN DE LABARDE,24560,24385,72,44.766667,0.566667,1.35
+ Saint-Cernin-de-l'Herm ,SAINT CERNIN DE L,24550,24386,72,44.633333,1.033333,1.95
+ Saint-Cernin-de-Reillac ,SAINT CERNIN DE REILLAC,24580,24387,72,45.033333,0.966667,1.22
+ Saint-Chamassy ,SAINT CHAMASSY ,24260,24388,72,44.866667,0.916667,1.51
+ Saint-Cirq ,SAINT CIRQ ,24260,24389,72,44.933333,0.95,0.73
+ Saint-Crépin-d'Auberoche ,SAINT CREPIN D AUBEROCHE,24330,24390,72,45.133333,0.9,0.56
+ Saint-Crépin-de-Richemont ,SAINT CREPIN DE RICHEMONT,24310,24391,72,45.416667,0.6,1.6
+ Saint-Crépin-et-Carlucet ,SAINT CREPIN ET CARLUCET,24590,24392,72,44.966667,1.266667,1.84
+ Sainte-Croix-de-Mareuil ,SAINTE CROIX DE MAREUIL,24340,24394,72,45.466667,0.433333,1.83
+ Saint-Cybranet ,SAINT CYBRANET ,24250,24395,72,44.783333,1.183333,1.55
+ Saint-Cyprien ,SAINT CYPRIEN ,24220,24396,72,44.866667,1.033333,1.02
+ Saint-Cyr-les-Champagnes ,SAINT CYR LES CHAMPAGNES,24270,24397,72,45.383333,1.283333,1.9
+ Saint-Étienne-de-Puycorbier ,SAINT ETIENNE DE PUYCORBIER,24400,24399,72,45.1,0.333333,1.43
+ Sainte-Eulalie-d'Ans ,SAINTE EULALIE D ANS,24640,24401,72,45.25,1.016667,1.34
+ Sainte-Eulalie-d'Eymet ,SAINTE EULALIE D EYMET,24500,24402,72,44.7,0.366667,1.66
+ Saint-Félix-de-Bourdeilles ,SAINT FELIX DE BOURDEILLES,24340,24403,72,45.416667,0.566667,1.95
+ Saint-Félix-de-Reillac-et-Mortemart ,SAINT FELIX DE REILLAC,24260,24404,72,45.033333,0.916667,1.84
+ Saint-Félix-de-Villadeix ,SAINT FELIX DE VILLADEIX,24510,24405,72,44.916667,0.683333,1.51
+ Sainte-Foy-de-Belvès ,SAINTE FOY DE BELVES,24170,24406,72,44.733333,1.05,1.5
+ Sainte-Foy-de-Longas ,SAINTE FOY DE LONGAS,24510,24407,72,44.933333,0.75,0.62
+ Saint-Front-d'Alemps ,SAINT FRONT D ALEMPS,24460,24408,72,45.316667,0.783333,1.15
+ Saint-Front-de-Pradoux ,SAINT FRONT DE PRADOUX,24400,24409,72,45.05,0.35,1.37
+ Saint-Front-la-Rivière ,SAINT FRONT LA RIVIERE,24300,24410,72,45.466667,0.733333,1.83
+ Saint-Front-sur-Nizonne ,SAINT FRONT SUR NIZONNE,24300,24411,72,45.483333,0.633333,1.91
+ Saint-Geniès ,SAINT GENIES ,24590,24412,72,45,1.25,1.78
+ Saint-Géraud-de-Corps ,SAINT GERAUD DE CORPS,24700,24415,72,44.95,0.216667,1.84
+ Saint-Germain-de-Belvès ,SAINT GERMAIN DE BELVES,24170,24416,72,44.8,1.033333,1.19
+ Saint-Germain-des-Prés ,SAINT GERMAIN DES PRES,24160,24417,72,45.333333,0.983333,1.4
+ Saint-Germain-du-Salembre ,SAINT GERMAIN DU SALEMBRE,24190,24418,72,45.133333,0.45,1.02
+ Saint-Germain-et-Mons ,SAINT GERMAIN ET MONS,24520,24419,72,44.841667,0.591667,-1
+ Saint-Géry ,SAINT GERY ,24400,24420,72,44.983333,0.316667,1.49
+ Saint-Geyrac ,SAINT GEYRAC ,24330,24421,72,45.1,0.933333,1.2
+ Saint-Hilaire-d'Estissac ,SAINT HILAIRE D ESTISSAC,24140,24422,72,45.016667,0.516667,0.94
+ Sainte-Innocence ,SAINTE INNOCENCE ,24500,24423,72,44.716667,0.4,1.57
+ Saint-Jean-de-Côle ,SAINT JEAN DE COLE,24800,24425,72,45.416667,0.833333,1.6
+ Saint-Jean-d'Estissac ,SAINT JEAN D ESTISSAC,24140,24426,72,45.033333,0.516667,1.18
+ Saint-Jean-d'Eyraud ,SAINT JEAN D EYRAUD,24140,24427,72,44.95,0.45,1.68
+ Saint-Jory-las-Bloux ,SAINT JORY LAS BLOUX,24160,24429,72,45.366667,0.966667,1.74
+ Saint-Julien-de-Bourdeilles ,SAINT JULIEN DE BOURDEILLES,24310,24430,72,45.366667,0.583333,1.38
+ Saint-Julien-de-Crempse ,SAINT JULIEN DE CREMPSE,24140,24431,72,44.95,0.533333,0.73
+ Saint-Julien-de-Lampon ,SAINT JULIEN DE LAMPON,24370,24432,72,44.866667,1.35,2.13
+ Saint-Julien-d'Eymet ,SAINT JULIEN D EYMET,24500,24433,72,44.716667,0.433333,1.57
+ Saint-Just ,SAINT JUST ,24320,24434,72,45.333333,0.5,1.69
+ Saint-Laurent-des-Bâtons ,SAINT LAURENT DES BATONS,24510,24435,72,44.966667,0.75,0.93
+ Saint-Laurent-des-Hommes ,SAINT LAURENT DES HOMMES,24400,24436,72,45.033333,0.25,1.79
+ Saint-Laurent-des-Vignes ,SAINT LAURENT DES VIGNES,24100,24437,72,44.816667,0.45,1.4
+ Saint-Laurent-la-Vallée ,SAINT LAURENT LA VALLEE,24170,24438,72,44.75,1.116667,1.43
+ Saint-Laurent-sur-Manoire ,SAINT LAURENT SUR MANOIRE,24330,24439,72,45.15,0.8,1.63
+ Saint-Léon-d'Issigeac ,SAINT LEON D ISSIGEAC,24560,24441,72,44.716667,0.683333,1.69
+ Saint-Léon-sur-l'Isle ,SAINT LEON SUR L,24110,24442,72,45.116667,0.5,0.94
+ Saint-Léon-sur-Vézère ,SAINT LEON SUR VEZERE,24290,24443,72,45.016667,1.1,1.26
+ Saint-Louis-en-l'Isle ,SAINT LOUIS EN L,24400,24444,72,45.066667,0.4,1.19
+ Saint-Marcel-du-Périgord ,SAINT MARCEL DU PERIGORD,24510,24445,72,44.916667,0.716667,1.04
+ Saint-Marcory ,SAINT MARCORY ,24540,24446,72,44.716667,0.933333,1.57
+ Sainte-Marie-de-Chignac ,SAINTE MARIE DE CHIGNAC,24330,24447,72,45.133333,0.833333,0.95
+ Saint-Martial-d'Albarède ,SAINT MARTIAL D ALBAREDE,24160,24448,72,45.333333,1.033333,1.23
+ Saint-Martial-d'Artenset ,SAINT MARTIAL D ARTENSET,24700,24449,72,45.016667,0.183333,1.95
+ Saint-Martial-de-Nabirat ,SAINT MARTIAL DE NABIRAT,24250,24450,72,44.733333,1.25,1.78
+ Saint-Martial-de-Valette ,SAINT MARTIAL DE VALETTE,24300,24451,72,45.516667,0.65,2.06
+ Saint-Martial-Viveyrol ,SAINT MARTIAL VIVEYROL ,24320,24452,72,45.35,0.333333,1.43
+ Saint-Martin-de-Fressengeas ,SAINT MARTIN DE FRESSENGEAS,24800,24453,72,45.433333,0.85,1.68
+ Saint-Martin-de-Ribérac ,SAINT MARTIN DE RIBERAC,24600,24455,72,45.233333,0.35,1.37
+ Saint-Martin-des-Combes ,SAINT MARTIN DES COMBES,24140,24456,72,44.95,0.6,0.92
+ Saint-Martin-l'Astier ,SAINT MARTIN L ASTIER,24400,24457,72,45.05,0.333333,1.43
+ Saint-Martin-le-Pin ,SAINT MARTIN LE PIN,24300,24458,72,45.55,0.616667,2.21
+ Saint-Méard-de-Gurçon ,SAINT MEARD DE GURCON,24610,24461,72,44.9,0.183333,1.95
+ Saint-Médard-de-Mussidan ,SAINT MEDARD DE MUSSIDAN,24400,24462,72,45.033333,0.35,1.37
+ Saint-Mesmin ,SAINT MESMIN ,24270,24464,72,45.35,1.2,1.61
+ Saint-Michel-de-Double ,SAINT MICHEL DE DOUBLE,24400,24465,72,45.083333,0.283333,1.6
+ Saint-Michel-de-Montaigne ,SAINT MICHEL DE MONTAIGNE,24230,24466,72,44.866667,0.033333,2.48
+ Saint-Michel-de-Rivière ,SAINT MICHEL DE RIVIERE,24490,24467,72,45.133333,-0.016667,2.65
+ Saint-Michel-de-Villadeix ,SAINT MICHEL DE VILLADEIX,24380,24468,72,44.983333,0.716667,0.78
+ Sainte-Mondane ,SAINTE MONDANE ,24370,24470,72,44.85,1.333333,2.07
+ Sainte-Nathalène ,SAINTE NATHALENE ,24200,24471,72,44.916667,1.25,1.78
+ Saint-Nexans ,SAINT NEXANS ,24520,24472,72,44.8,0.55,1.29
+ Sainte-Orse ,SAINTE ORSE ,24210,24473,72,45.2,1.083333,1.2
+ Saint-Pancrace ,SAINT PANCRACE ,24530,24474,72,45.433333,0.666667,1.68
+ Saint-Pantaly-d'Ans ,SAINT PANTALY D ANS,24640,24475,72,45.25,1,1
+ Saint-Pantaly-d'Excideuil ,SAINT PANTALY D EXCIDEUIL,24160,24476,72,45.316667,1.016667,1.15
+ Saint-Pardoux-et-Vielvic ,SAINT PARDOUX ET VIELVIC,24170,24478,72,44.766667,0.95,1.49
+ Saint-Pardoux-la-Rivière ,SAINT PARDOUX LA RIVIERE,24470,24479,72,45.5,0.75,1.98
+ Saint-Paul-de-Serre ,SAINT PAUL DE SERRE,24380,24480,72,45.083333,0.616667,1.79
+ Saint-Paul-la-Roche ,SAINT PAUL LA ROCHE,24800,24481,72,45.483333,1,1.91
+ Saint-Paul-Lizonne ,SAINT PAUL LIZONNE ,24320,24482,72,45.316667,0.266667,1.66
+ Saint-Perdoux ,SAINT PERDOUX ,24560,24483,72,44.733333,0.533333,1.5
+ Saint-Pierre-de-Chignac ,SAINT PIERRE DE CHIGNAC,24330,24484,72,45.133333,0.85,0.62
+ Saint-Pierre-de-Côle ,SAINT PIERRE DE COLE,24800,24485,72,45.366667,0.8,1.65
+ Saint-Pierre-de-Frugie ,SAINT PIERRE DE FRUGIE,24450,24486,72,45.583333,1,2.36
+ Saint-Pierre-d'Eyraud ,SAINT PIERRE D EYRAUD,24130,24487,72,44.85,0.316667,1.49
+ Saint-Pompont ,SAINT POMPONT ,24170,24488,72,44.716667,1.15,2.14
+ Saint-Priest-les-Fougères ,SAINT PRIEST LES FOUGERES,24450,24489,72,45.533333,1.016667,2.13
+ Saint-Privat-des-Prés ,SAINT PRIVAT DES PRES,24410,24490,72,45.233333,0.216667,1.84
+ Saint-Rabier ,SAINT RABIER ,24210,24491,72,45.166667,1.15,1.45
+ Saint-Raphaël ,SAINT RAPHAEL ,24160,24493,72,45.3,1.066667,1.14
+ Saint-Rémy ,SAINT REMY ,24700,24494,72,44.95,0.166667,2.01
+ Saint-Romain-de-Monpazier ,SAINT ROMAIN DE MONPAZIER,24540,24495,72,44.716667,0.883333,1.57
+ Saint-Romain-et-Saint-Clément ,SAINT ROMAIN ET SAINT,24800,24496,72,45.433333,0.866667,1.68
+ Saint-Saud-Lacoussière ,SAINT SAUD LACOUSSIERE ,24470,24498,72,45.533333,0.816667,2.13
+ Saint-Sauveur-Lalande ,SAINT SAUVEUR LALANDE ,24700,24500,72,44.983333,0.233333,1.78
+ Saint-Seurin-de-Prats ,SAINT SEURIN DE PRATS,24230,24501,72,44.833333,0.083333,2.3
+ Saint-Séverin-d'Estissac ,SAINT SEVERIN D ESTISSAC,24190,24502,72,45.05,0.483333,1.24
+ Saint-Sulpice-de-Mareuil ,SAINT SULPICE DE MAREUIL,24340,24503,72,45.466667,0.5,1.83
+ Saint-Sulpice-de-Roumagnac ,SAINT SULPICE DE ROUMAGNAC,24600,24504,72,45.2,0.4,1.22
+ Saint-Sulpice-d'Excideuil ,SAINT SULPICE D EXCIDEUIL,24800,24505,72,45.383333,1,1.45
+ Sainte-Trie ,SAINTE TRIE ,24160,24507,72,45.3,1.183333,1.62
+ Saint-Victor ,SAINT VICTOR ,24350,24508,72,45.266667,0.433333,1.44
+ Saint-Vincent-de-Connezac ,SAINT VINCENT DE CONNEZAC,24190,24509,72,45.166667,0.4,1.19
+ Saint-Vincent-de-Cosse ,SAINT VINCENT DE COSSE,24220,24510,72,44.833333,1.1,1.26
+ Saint-Vincent-Jalmoutiers ,SAINT VINCENT JALMOUTIERS ,24410,24511,72,45.2,0.183333,1.95
+ Saint-Vincent-le-Paluel ,SAINT VINCENT LE PALUEL,24200,24512,72,44.883333,1.266667,1.84
+ Saint-Vincent-sur-l'Isle ,SAINT VINCENT SUR L,24420,24513,72,45.25,0.883333,0.85
+ Salagnac ,SALAGNAC ,24160,24515,72,45.316667,1.183333,1.57
+ Salles-de-Belvès ,SALLES DE BELVES ,24170,24517,72,44.7,1,1.65
+ Salon ,SALON ,24380,24518,72,45.033333,0.783333,0.74
+ Sarlande ,SARLANDE ,24270,24519,72,45.45,1.116667,1.76
+ Sarlat-la-Canéda ,SARLAT LA CANEDA ,24200,24520,72,44.883333,1.216667,1.66
+ Sarliac-sur-l'Isle ,SARLIAC SUR L ISLE,24420,24521,72,45.233333,0.883333,0.77
+ Sarrazac ,SARRAZAC ,24800,24522,72,45.433333,1.033333,1.68
+ Saussignac ,SAUSSIGNAC ,24240,24523,72,44.816667,0.333333,1.43
+ Savignac-de-Miremont ,SAVIGNAC DE MIREMONT ,24260,24524,72,44.966667,0.933333,0.67
+ Savignac-de-Nontron ,SAVIGNAC DE NONTRON ,24300,24525,72,45.55,0.716667,2.21
+ Savignac-Lédrier ,SAVIGNAC LEDRIER ,24270,24526,72,45.366667,1.216667,1.66
+ Savignac-les-Églises ,SAVIGNAC LES EGLISES ,24420,24527,72,45.266667,0.916667,0.92
+ Sceau-Saint-Angel ,SCEAU SAINT ANGEL ,24300,24528,72,45.483333,0.7,1.91
+ Ségonzac ,SEGONZAC ,24600,24529,72,45.2,0.433333,1.65
+ Sencenac-Puy-de-Fourches ,SENCENAC PUY DE FOURCHES,24310,24530,72,45.3,0.7,1.85
+ Sergeac ,SERGEAC ,24290,24531,72,45,1.1,1.26
+ Servanches ,SERVANCHES ,24410,24533,72,45.15,0.166667,2.01
+ Sigoulès ,SIGOULES ,24240,24534,72,44.75,0.416667,1.42
+ Simeyrols ,SIMEYROLS ,24370,24535,72,44.9,1.333333,2.07
+ Singleyrac ,SINGLEYRAC ,24500,24536,72,44.733333,0.466667,1.5
+ Siorac-de-Ribérac ,SIORAC DE RIBERAC ,24600,24537,72,45.183333,0.35,1.37
+ Siorac-en-Périgord ,SIORAC EN PERIGORD ,24170,24538,72,44.816667,0.983333,1.33
+ Sireuil ,SIREUIL ,24620,24539,72,44.933333,1.066667,1.14
+ Sorges ,SORGES ,24420,24540,72,45.3,0.866667,1.07
+ Soudat ,SOUDAT ,24360,24541,72,45.616667,0.583333,2.51
+ Soulaures ,SOULAURES ,24540,24542,72,44.65,0.916667,1.87
+ Sourzac ,SOURZAC ,24400,24543,72,45.05,0.4,1.19
+ Tamniès ,TAMNIES ,24620,24544,72,44.966667,1.166667,1.49
+ Teillots ,TEILLOTS ,24390,24545,72,45.25,1.216667,1.66
+ Teyjat ,TEYJAT ,24300,24548,72,45.583333,0.583333,2.36
+ Thénac ,THENAC ,24240,24549,72,44.75,0.333333,1.43
+ Thenon ,THENON ,24210,24550,72,45.133333,1.066667,1.14
+ Thiviers ,THIVIERS ,24800,24551,72,45.416667,0.916667,1.6
+ Thonac ,THONAC ,24290,24552,72,45.016667,1.116667,1.31
+ Tocane-Saint-Apre ,TOCANE SAINT APRE ,24350,24553,72,45.25,0.5,0.85
+ La Tour-Blanche ,LA TOUR BLANCHE ,24320,24554,72,45.366667,0.45,1.38
+ Tourtoirac ,TOURTOIRAC ,24390,24555,72,45.266667,1.066667,1.76
+ Trélissac ,TRELISSAC ,24750,24557,72,45.183333,0.783333,0.55
+ Trémolat ,TREMOLAT ,24510,24558,72,44.883333,0.833333,0.82
+ Tursac ,TURSAC ,24620,24559,72,44.966667,1.033333,1.02
+ Urval ,URVAL ,24480,24560,72,44.816667,0.933333,1.17
+ Valeuil ,VALEUIL ,24310,24561,72,45.333333,0.616667,1.23
+ Vallereuil ,VALLEREUIL ,24190,24562,72,45.066667,0.516667,1.43
+ Valojoulx ,VALOJOULX ,24290,24563,72,45.116667,1.15,1.43
+ Vanxains ,VANXAINS ,24600,24564,72,45.216667,0.283333,1.6
+ Varaignes ,VARAIGNES ,24360,24565,72,45.6,0.533333,2.44
+ Varennes ,VARENNES ,24150,24566,72,44.833333,0.666667,1.1
+ Vaunac ,VAUNAC ,24800,24567,72,45.366667,0.866667,1.38
+ Vélines ,VELINES ,24230,24568,72,44.85,0.116667,2.19
+ Vendoire ,VENDOIRE ,24320,24569,72,45.416667,0.3,1.6
+ Verdon ,VERDON ,24520,24570,72,44.8,0.633333,1.55
+ Vergt ,VERGT ,24380,24571,72,45.016667,0.716667,0.35
+ Vergt-de-Biron ,VERGT DE BIRON ,24540,24572,72,44.633333,0.841667,-1
+ Verteillac ,VERTEILLAC ,24320,24573,72,45.35,0.366667,1.31
+ Veyrignac ,VEYRIGNAC ,24370,24574,72,44.833333,1.316667,2.01
+ Veyrines-de-Domme ,VEYRINES DE DOMME ,24250,24575,72,44.783333,1.116667,1.56
+ Veyrines-de-Vergt ,VEYRINES DE VERGT ,24380,24576,72,45,0.783333,0.89
+ Vézac ,VEZAC ,24220,24577,72,44.833333,1.183333,2.2
+ Vieux-Mareuil ,VIEUX MAREUIL ,24340,24579,72,45.433333,0.5,1.68
+ Villac ,VILLAC ,24120,24580,72,45.183333,1.25,1.78
+ Villamblard ,VILLAMBLARD ,24140,24581,72,45.016667,0.55,0.77
+ Villars ,VILLARS ,24530,24582,72,45.416667,0.75,1.6
+ Villefranche-du-Périgord ,VILLEFRANCHE DU PERIGORD ,24550,24585,72,44.633333,1.083333,1.95
+ Villetoureix ,VILLETOUREIX ,24600,24586,72,45.266667,0.366667,1.31
+ Vitrac ,VITRAC ,24200,24587,72,44.833333,1.25,1.78
+ Eyrenville ,EYRENVILLE ,24560,24902,72,44.7,0.566667,1.65
+ Abbans-Dessous ,ABBANS DESSOUS ,25320,25001,43,47.133333,5.883333,1.8
+ Abbans-Dessus ,ABBANS DESSUS ,25440,25002,43,47.116667,5.883333,1.8
+ Abbenans ,ABBENANS ,25340,25003,43,47.5,6.45,1.82
+ Abbévillers ,ABBEVILLERS ,25310,25004,43,47.433333,6.916667,2.06
+ Accolans ,ACCOLANS ,25250,25005,43,47.5,6.533333,1.7
+ Adam-lès-Passavant ,ADAM LES PASSAVANT ,25360,25006,43,47.3,6.366667,0.88
+ Adam-lès-Vercel ,ADAM LES VERCEL ,25530,25007,43,47.166667,6.4,1.55
+ Aibre ,AIBRE ,25750,25008,43,47.55,6.7,2.01
+ Aissey ,AISSEY ,25360,25009,43,47.266667,6.333333,0.29
+ Alaise ,ALAISE ,25330,25010,43,47.016667,5.966667,1.51
+ Allenjoie ,ALLENJOIE ,25490,25011,43,47.533333,6.9,2
+ Les Alliés ,LES ALLIES ,25300,25012,43,46.95,6.45,2.03
+ Allondans ,ALLONDANS ,25550,25013,43,47.516667,6.75,1.8
+ Amagney ,AMAGNEY ,25220,25014,43,47.3,6.15,1.26
+ Amancey ,AMANCEY ,25330,25015,43,47.033333,6.083333,1.23
+ Amathay-Vésigneux ,AMATHAY VESIGNEUX ,25330,25016,43,47.016667,6.2,1.81
+ Amondans ,AMONDANS ,25330,25017,43,47.066667,6.033333,1.24
+ Anteuil ,ANTEUIL ,25340,25018,43,47.383333,6.566667,1.23
+ Arbouans ,ARBOUANS ,25400,25020,43,47.483333,6.816667,1.69
+ Arc-et-Senans ,ARC ET SENANS ,25610,25021,43,47.033333,5.766667,2.24
+ Arcey ,ARCEY ,25750,25022,43,47.516667,6.666667,1.8
+ Arçon ,ARCON ,25300,25024,43,46.95,6.383333,1.75
+ Arc-sous-Cicon ,ARC SOUS CICON ,25520,25025,43,47.05,6.383333,1.89
+ Arc-sous-Montenot ,ARC SOUS MONTENOT ,25270,25026,43,46.916667,6,1.96
+ Arguel ,ARGUEL ,25720,25027,43,47.2,6,1.37
+ Athose ,ATHOSE ,25580,25028,43,47.083333,6.316667,0.92
+ Aubonne ,AUBONNE ,25520,25029,43,47.033333,6.333333,1.23
+ Audeux ,AUDEUX ,25170,25030,43,47.266667,5.883333,1.8
+ Audincourt ,AUDINCOURT ,25400,25031,43,47.483333,6.833333,1.75
+ Autechaux ,AUTECHAUX ,25110,25032,43,47.383333,6.383333,0.96
+ Autechaux-Roide ,AUTECHAUX ROIDE ,25150,25033,43,47.383333,6.816667,1.69
+ Auxon-Dessous ,AUXON DESSOUS ,25870,25034,43,47.3,5.95,1.58
+ Auxon-Dessus ,AUXON DESSUS ,25870,25035,43,47.3,5.966667,1.49
+ Aveney ,AVENEY ,25720,25037,43,47.2,5.966667,1.49
+ Avilley ,AVILLEY ,25680,25038,43,47.433333,6.266667,1.79
+ Avoudrey ,AVOUDREY ,25690,25039,43,47.133333,6.433333,0.6
+ Badevel ,BADEVEL ,25490,25040,43,47.5,6.933333,2.13
+ Bannans ,BANNANS ,25560,25041,43,46.883333,6.233333,2.17
+ Le Barboux ,LE BARBOUX ,25210,25042,43,47.116667,6.716667,1.32
+ Bart ,BART ,25420,25043,43,47.483333,6.766667,1.59
+ Bartherans ,BARTHERANS ,25440,25044,43,47.033333,5.933333,1.62
+ Battenans-les-Mines ,BATTENANS LES MINES ,25640,25045,43,47.416667,6.266667,1.39
+ Baume-les-Dames ,BAUME LES DAMES ,25110,25047,43,47.35,6.366667,0.75
+ Bavans ,BAVANS ,25550,25048,43,47.483333,6.733333,1.59
+ Belfays ,BELFAYS ,25470,25049,43,47.266667,6.9,2
+ Le Bélieu ,LE BELIEU ,25500,25050,43,47.116667,6.633333,1
+ Belleherbe ,BELLEHERBE ,25380,25051,43,47.266667,6.666667,1.13
+ Belvoir ,BELVOIR ,25430,25053,43,47.316667,6.6,0.88
+ Berche ,BERCHE ,25420,25054,43,47.466667,6.75,1.49
+ Berthelange ,BERTHELANGE ,25410,25055,43,47.2,5.783333,2.18
+ Besançon ,BESANCON ,25000,25056,43,47.25,6.033333,1.24
+ Bethoncourt ,BETHONCOURT ,25200,25057,43,47.533333,6.8,1.9
+ Beure ,BEURE ,25720,25058,43,47.2,6,1.37
+ Beutal ,BEUTAL ,25250,25059,43,47.466667,6.65,1.49
+ Bians-les-Usiers ,BIANS LES USIERS ,25520,25060,43,46.966667,6.266667,1.65
+ Bief ,BIEF ,25190,25061,43,47.333333,6.766667,1.5
+ Le Bizot ,LE BIZOT ,25210,25062,43,47.133333,6.666667,1.13
+ Blamont ,BLAMONT ,25310,25063,43,47.383333,6.85,1.81
+ Blanchefontaine ,BLANCHEFONTAINE ,25120,25064,43,47.283333,6.766667,1.5
+ Blarians ,BLARIANS ,25640,25065,43,47.416667,6.183333,1.18
+ Blussangeaux ,BLUSSANGEAUX ,25250,25066,43,47.433333,6.616667,1.28
+ Blussans ,BLUSSANS ,25250,25067,43,47.433333,6.6,1.28
+ Bois-la-Ville ,BOIS LA VILLE ,25110,25068,43,47.366667,6.416667,0.92
+ Bolandoz ,BOLANDOZ ,25330,25070,43,47.016667,6.116667,1.33
+ Bondeval ,BONDEVAL ,25230,25071,43,47.45,6.85,1.81
+ Bonnal ,BONNAL ,25680,25072,43,47.5,6.35,1.7
+ Bonnay ,BONNAY ,25870,25073,43,47.333333,6.05,1.18
+ Bonnétage ,BONNETAGE ,25210,25074,43,47.2,6.7,1.25
+ Bonnevaux ,BONNEVAUX ,25560,25075,43,46.816667,6.183333,2.59
+ Bonnevaux-le-Prieuré ,BONNEVAUX LE PRIEURE ,25620,25076,43,47.133333,6.166667,0.74
+ La Bosse ,LA BOSSE ,25210,25077,43,47.133333,6.65,1.07
+ Bouclans ,BOUCLANS ,25360,25078,43,47.233333,6.25,1.03
+ Boujailles ,BOUJAILLES ,25560,25079,43,46.883333,6.083333,2.17
+ Boujeons ,BOUJEONS ,25160,25080,43,46.75,6.208333,-1
+ Bourguignon ,BOURGUIGNON ,25150,25082,43,47.416667,6.783333,1.56
+ Bournois ,BOURNOIS ,25250,25083,43,47.5,6.5,1.93
+ Boussières ,BOUSSIERES ,25320,25084,43,47.15,5.9,1.74
+ Bouverans ,BOUVERANS ,25560,25085,43,46.85,6.2,2.38
+ Braillans ,BRAILLANS ,25640,25086,43,47.3088,6.09182,-1
+ Branne ,BRANNE ,25340,25087,43,47.383333,6.466667,0.96
+ Bréconchaux ,BRECONCHAUX ,25640,25088,43,47.333333,6.266667,1.09
+ Brémondans ,BREMONDANS ,25530,25089,43,47.233333,6.4,0.5
+ Les Bréseux ,LES BRESEUX ,25120,25091,43,47.266667,6.816667,1.69
+ La Bretenière ,LA BRETENIERE ,25640,25092,43,47.383333,6.266667,1.03
+ Bretigney ,BRETIGNEY ,25250,25093,43,47.483333,6.633333,1.59
+ Brétigney-Notre-Dame ,BRETIGNEY NOTRE DAME ,25110,25094,43,47.316667,6.3,1.29
+ Bretonvillers ,BRETONVILLERS ,25380,25095,43,47.216667,6.633333,1.6
+ Brey-et-Maison-du-Bois ,BREY ET MAISON DU,25240,25096,43,46.74197,6.2517,-1
+ Brognard ,BROGNARD ,25600,25097,43,47.533333,6.866667,1.9
+ Buffard ,BUFFARD ,25440,25098,43,47.033333,5.833333,1.99
+ Bugny ,BUGNY ,25520,25099,43,47,6.35,1.44
+ Bulle ,BULLE ,25560,25100,43,46.9,6.233333,2.07
+ Burgille ,BURGILLE ,25170,25101,43,47.266667,5.783333,2.18
+ Burnevillers ,BURNEVILLERS ,25470,25102,43,47.316667,7,2.38
+ Busy ,BUSY ,25320,25103,43,47.166667,5.95,1.55
+ By ,BY ,25440,25104,43,47.016667,5.9,1.74
+ Byans-sur-Doubs ,BYANS SUR DOUBS ,25320,25105,43,47.116667,5.866667,1.87
+ Cademène ,CADEMENE ,25290,25106,43,47.1,6.033333,1.24
+ Cendrey ,CENDREY ,25640,25107,43,47.4,6.25,1.07
+ Cernay-l'Église ,CERNAY L EGLISE ,25120,25108,43,47.266667,6.833333,1.75
+ Cessey ,CESSEY ,25440,25109,43,47.1,5.916667,1.68
+ Chaffois ,CHAFFOIS ,25300,25110,43,46.916667,6.266667,1.96
+ Chalèze ,CHALEZE ,25220,25111,43,47.266667,6.083333,1.05
+ Chalezeule ,CHALEZEULE ,25220,25112,43,47.266667,6.083333,1.05
+ Chamésey ,CHAMESEY ,25380,25113,43,47.233333,6.65,1.07
+ Chamesol ,CHAMESOL ,25190,25114,43,47.35,6.833333,1.75
+ Champlive ,CHAMPLIVE ,25360,25116,43,47.283333,6.25,0.92
+ Champoux ,CHAMPOUX ,25640,25117,43,47.333333,6.133333,1.61
+ Champvans-lès-Baume ,CHAMPVANS LES BAUME ,25110,25118,43,47.35,6.35,0.75
+ Champvans-lès-Moulins ,CHAMPVANS LES MOULINS ,25170,25119,43,47.25,5.916667,1.68
+ Chantrans ,CHANTRANS ,25330,25120,43,47.05,6.15,1.13
+ Chapelle-des-Bois ,CHAPELLE DES BOIS ,25240,25121,43,46.6,6.116667,-1
+ Chapelle-d'Huin ,CHAPELLE D HUIN ,25270,25122,43,46.933333,6.166667,1.86
+ Charbonnières-les-Sapins ,CHARBONNIERES LES SAPINS ,25620,25123,43,47.15,6.216667,1.36
+ Charmauvillers ,CHARMAUVILLERS ,25470,25124,43,47.233333,6.916667,2.06
+ Charmoille ,CHARMOILLE ,25380,25125,43,47.25,6.666667,1.13
+ Charnay ,CHARNAY ,25440,25126,43,47.133333,5.95,1.76
+ Charquemont ,CHARQUEMONT ,25140,25127,43,47.216667,6.816667,1.69
+ Chasnans ,CHASNANS ,25580,25128,43,47.083333,6.316667,0.92
+ Chassagne-Saint-Denis ,CHASSAGNE SAINT DENIS ,25290,25129,43,47.083333,6.116667,0.95
+ Châtelblanc ,CHATELBLANC ,25240,25131,43,46.675,6.116667,-1
+ Châtillon-Guyotte ,CHATILLON GUYOTTE ,25640,25132,43,47.333333,6.166667,1.05
+ Châtillon-le-Duc ,CHATILLON LE DUC ,25870,25133,43,47.3,6.016667,1.3
+ Chaucenne ,CHAUCENNE ,25170,25136,43,47.283333,5.9,1.74
+ Chaudefontaine ,CHAUDEFONTAINE ,25640,25137,43,47.333333,6.166667,1.05
+ La Chaux ,LA CHAUX ,25650,25139,43,47.016667,6.433333,1.33
+ Chaux-lès-Clerval ,CHAUX LES CLERVAL ,25340,25140,43,47.383333,6.516667,0.96
+ Chaux-lès-Passavant ,CHAUX LES PASSAVANT ,25530,25141,43,47.233333,6.366667,1.28
+ Chay ,CHAY ,25440,25143,43,47.033333,5.866667,1.87
+ Chazelot ,CHAZELOT ,25680,25144,43,47.483333,6.333333,1.59
+ Chazot ,CHAZOT ,25430,25145,43,47.333333,6.55,0.69
+ Chemaudin ,CHEMAUDIN ,25320,25147,43,47.216667,5.9,1.74
+ La Chenalotte ,LA CHENALOTTE ,25500,25148,43,47.116667,6.683333,1.51
+ Chenecey-Buillon ,CHENECEY BUILLON ,25440,25149,43,47.133333,5.966667,2
+ Chevigney-sur-l'Ognon ,CHEVIGNEY SUR L OGNON,25170,25150,43,47.3,5.833333,1.99
+ Chevroz ,CHEVROZ ,25870,25153,43,47.333333,6,1.37
+ Chouzelot ,CHOUZELOT ,25440,25154,43,47.1,5.9,1.74
+ Cléron ,CLERON ,25330,25155,43,47.083333,6.066667,1.12
+ Clerval ,CLERVAL ,25340,25156,43,47.4,6.5,1.07
+ La Cluse et Mijoux ,LA CLUSE ET MIJOUX,25300,25157,43,46.883333,6.383333,2.17
+ Colombier-Châtelot ,COLOMBIER CHATELOT ,25260,25158,43,47.433333,6.633333,1.53
+ Colombier-Fontaine ,COLOMBIER FONTAINE ,25260,25159,43,47.45,6.7,1.38
+ Les Combes ,LES COMBES ,25500,25160,43,47.066667,6.55,1.9
+ Consolation-Maisonnettes ,CONSOLATION MAISONNETTES ,25390,25161,43,47.15,6.6,1.27
+ Corcelle-Mieslot ,CORCELLE MIESLOT ,25640,25163,43,47.366667,6.183333,0.86
+ Corcondray ,CORCONDRAY ,25410,25164,43,47.233333,5.833333,1.99
+ Cordiron ,CORDIRON ,25170,25165,43,47.266667,5.8,2.11
+ Côtebrune ,COTEBRUNE ,25360,25166,43,47.25,6.316667,0.28
+ Cottier ,COTTIER ,25410,25167,43,47.216667,5.766667,2.24
+ Courchapon ,COURCHAPON ,25170,25172,43,47.266667,5.75,2.3
+ Cour-Saint-Maurice ,COUR SAINT MAURICE ,25380,25173,43,47.25,6.7,1.25
+Courtefontaine, ,25470,25174,43,47.316667,6.916667,2.06
+ Courtetain-et-Salans ,COURTETAIN ET SALANS ,25530,25175,43,47.25,6.416667,0.5
+ Courvières ,COURVIERES ,25560,25176,43,46.866667,6.116667,2.28
+ Crosey-le-Grand ,CROSEY LE GRAND ,25340,25177,43,47.35,6.533333,1.1
+ Crosey-le-Petit ,CROSEY LE PETIT ,25340,25178,43,47.35,6.483333,0.94
+ Le Crouzet ,LE CROUZET ,25240,25179,43,46.7,6.133333,-1
+ Crouzet-Migette ,CROUZET MIGETTE ,25270,25180,43,46.95,6.016667,1.75
+ Cubrial ,CUBRIAL ,25680,25181,43,47.5,6.416667,1.85
+ Cubry ,CUBRY ,25680,25182,43,47.5,6.416667,1.85
+ Cusance ,CUSANCE ,25110,25183,43,47.316667,6.416667,1.06
+ Cuse-et-Adrisans ,CUSE ET ADRISANS ,25680,25184,43,47.483333,6.4,1.59
+ Cussey-sur-l'Ognon ,CUSSEY SUR L OGNON,25870,25186,43,47.333333,5.933333,1.75
+ Dambelin ,DAMBELIN ,25150,25187,43,47.383333,6.683333,1.19
+ Dambenois ,DAMBENOIS ,25600,25188,43,47.55,6.866667,2.01
+ Dammartin-les-Templiers ,DAMMARTIN LES TEMPLIERS ,25110,25189,43,47.283333,6.266667,2.08
+ Dampierre-les-Bois ,DAMPIERRE LES BOIS ,25490,25190,43,47.5,6.916667,2.06
+ Dampierre-sur-le-Doubs ,DAMPIERRE SUR LE DOUBS,25420,25191,43,47.466667,6.733333,1.49
+ Dampjoux ,DAMPJOUX ,25190,25192,43,47.35,6.766667,1.5
+ Damprichard ,DAMPRICHARD ,25450,25193,43,47.25,6.883333,1.94
+ Dannemarie ,DANNEMARIE ,25310,25194,43,47.383333,6.9,2
+ Dannemarie-sur-Crête ,DANNEMARIE SUR CRETE ,25410,25195,43,47.2,5.866667,1.87
+ Dasle ,DASLE ,25230,25196,43,47.483333,6.9,2
+ Deluz ,DELUZ ,25960,25197,43,47.3,6.2,0.62
+ Désandans ,DESANDANS ,25750,25198,43,47.533333,6.666667,1.9
+ Déservillers ,DESERVILLERS ,25330,25199,43,47,6.066667,1.44
+ Devecey ,DEVECEY ,25870,25200,43,47.333333,6.016667,1.3
+ Dommartin ,DOMMARTIN ,25300,25201,43,46.916667,6.316667,1.96
+ Dompierre-les-Tilleuls ,DOMPIERRE LES TILLEULS ,25560,25202,43,46.866667,6.183333,2.28
+ Domprel ,DOMPREL ,25510,25203,43,47.2,6.466667,0.67
+ Doubs ,DOUBS ,25300,25204,43,46.933333,6.35,1.86
+ Doulaize ,DOULAIZE ,25330,25205,43,47.033333,5.983333,1.43
+ Droitfontaine ,DROITFONTAINE ,25380,25206,43,47.283333,6.7,1.25
+ Dung ,DUNG ,25550,25207,43,47.5,6.75,1.7
+ Durnes ,DURNES ,25580,25208,43,47.1,6.233333,1.11
+ Échay ,ECHAY ,25440,25209,43,47.05,5.95,1.55
+ Les Écorces ,LES ECORCES ,25140,25213,43,47.216667,6.8,1.63
+ Écot ,ECOT ,25150,25214,43,47.433333,6.733333,1.38
+ L'Écouvotte ,L ECOUVOTTE ,25640,25215,43,47.333333,6.25,0.83
+ Écurcey ,ECURCEY ,25150,25216,43,47.4,6.816667,1.69
+ Émagny ,EMAGNY ,25170,25217,43,47.316667,5.866667,1.87
+ Épenouse ,EPENOUSE ,25530,25218,43,47.216667,6.4,0.57
+ Épenoy ,EPENOY ,25800,25219,43,47.133333,6.366667,1
+ Épeugney ,EPEUGNEY ,25290,25220,43,47.116667,6.033333,1.24
+ Esnans ,ESNANS ,25110,25221,43,47.333333,6.316667,0.91
+ Étalans ,ETALANS ,25580,25222,43,47.15,6.266667,0.98
+ Éternoz ,ETERNOZ ,25330,25223,43,47,6.033333,1.44
+ Étouvans ,ETOUVANS ,25260,25224,43,47.466667,6.716667,1.49
+ Étrabonne ,ETRABONNE ,25170,25225,43,47.233333,5.75,2.3
+ Étrappe ,ETRAPPE ,25250,25226,43,47.466667,6.583333,1.49
+ Étray ,ETRAY ,25800,25227,43,47.116667,6.35,1
+ Étupes ,ETUPES ,25460,25228,43,47.5,6.866667,1.88
+ Évillers ,EVILLERS ,25520,25229,43,47,6.233333,1.46
+ Exincourt ,EXINCOURT ,25400,25230,43,47.5,6.833333,1.75
+ Eysson ,EYSSON ,25530,25231,43,47.2,6.433333,0.75
+ Faimbe ,FAIMBE ,25250,25232,43,47.483333,6.616667,1.59
+ Fallerans ,FALLERANS ,25580,25233,43,47.133333,6.283333,0.6
+ Ferrières-le-Lac ,FERRIERES LE LAC ,25470,25234,43,47.266667,6.9,2
+ Ferrières-les-Bois ,FERRIERES LES BOIS ,25410,25235,43,47.2,5.8,2.11
+ Fertans ,FERTANS ,25330,25236,43,47.05,6.066667,1.13
+ Fesches-le-Châtel ,FESCHES LE CHATEL ,25490,25237,43,47.516667,6.9,2
+ Fessevillers ,FESSEVILLERS ,25470,25238,43,47.283333,6.916667,2.06
+ Feule ,FEULE ,25190,25239,43,47.35,6.733333,1.38
+ Les Fins ,LES FINS ,25500,25240,43,47.083333,6.633333,1
+ Flagey ,FLAGEY ,25330,25241,43,47.033333,6.116667,1.23
+ Flagey-Rigney ,FLAGEY RIGNEY ,25640,25242,43,47.416667,6.233333,1.17
+ Flangebouche ,FLANGEBOUCHE ,25690,25243,43,47.133333,6.466667,0.77
+ Fleurey ,FLEUREY ,25190,25244,43,47.3,6.783333,1.56
+ Fontain ,FONTAIN ,25660,25245,43,47.2,6.016667,1.3
+ Fontenelle-Montby ,FONTENELLE MONTBY ,25340,25247,43,47.45,6.416667,1.58
+ Les Fontenelles ,LES FONTENELLES ,25210,25248,43,47.2,6.75,1.44
+ Fontenotte ,FONTENOTTE ,25110,25249,43,47.383333,6.316667,1.02
+ Fourbanne ,FOURBANNE ,25110,25251,43,47.333333,6.3,1.18
+ Fourg ,FOURG ,25440,25253,43,47.1,5.816667,2.05
+ Les Fourgs ,LES FOURGS ,25300,25254,43,46.833333,6.416667,2.48
+ Fournet-Blancheroche ,FOURNET BLANCHEROCHE ,25140,25255,43,47.166667,6.833333,1.75
+ Frambouhans ,FRAMBOUHANS ,25140,25256,43,47.216667,6.766667,1.5
+ Franey ,FRANEY ,25170,25257,43,47.266667,5.816667,2.05
+ Franois ,FRANOIS ,25770,25258,43,47.233333,5.933333,1.62
+ Le Friolais ,LE FRIOLAIS ,25120,25260,43,47.25,6.75,1.44
+ Froidevaux ,FROIDEVAUX ,25190,25261,43,47.3,6.7,1.41
+ Fuans ,FUANS ,25390,25262,43,47.133333,6.583333,0.84
+ Gellin ,GELLIN ,25240,25263,43,46.74165,6.251498,-1
+ Gémonval ,GEMONVAL ,25250,25264,43,47.533333,6.583333,1.9
+ Geneuille ,GENEUILLE ,25870,25265,43,47.316667,5.966667,1.49
+ Geney ,GENEY ,25250,25266,43,47.483333,6.566667,1.59
+ Gennes ,GENNES ,25660,25267,43,47.25,6.116667,1.33
+ Germéfontaine ,GERMEFONTAINE ,25510,25268,43,47.216667,6.466667,0.59
+ Germondans ,GERMONDANS ,25640,25269,43,47.416667,6.183333,1.18
+ Gevresin ,GEVRESIN ,25270,25270,43,46.966667,6.05,1.65
+ Gilley ,GILLEY ,25650,25271,43,47.05,6.483333,2.11
+ Glainans ,GLAINANS ,25340,25272,43,47.383333,6.583333,1.5
+ Glamondans ,GLAMONDANS ,25360,25273,43,47.266667,6.283333,0.42
+ Glay ,GLAY ,25310,25274,43,47.4,6.883333,1.94
+ Glère ,GLERE ,25190,25275,43,47.35,7,2.38
+ Gondenans-Montby ,GONDENANS MONTBY ,25340,25276,43,47.433333,6.45,1.28
+ Gondenans-les-Moulins ,GONDENANS LES MOULINS ,25680,25277,43,47.466667,6.383333,1.49
+ Gonsans ,GONSANS ,25360,25278,43,47.233333,6.3,0.54
+ Gouhelans ,GOUHELANS ,25680,25279,43,47.45,6.35,1.38
+ Goumois ,GOUMOIS ,25470,25280,43,47.266667,6.95,2.19
+ Goux-lès-Dambelin ,GOUX LES DAMBELIN ,25150,25281,43,47.4,6.666667,1.28
+ Goux-les-Usiers ,GOUX LES USIERS ,25520,25282,43,46.966667,6.283333,1.65
+ Goux-sous-Landet ,GOUX SOUS LANDET ,25440,25283,43,47.083333,5.933333,1.62
+ Grand-Charmont ,GRAND CHARMONT ,25200,25284,43,47.533333,6.833333,1.9
+ Grand'Combe-des-Bois ,GRAND COMBE DES BOIS,25210,25286,43,47.133333,6.8,2.21
+ Grandfontaine ,GRANDFONTAINE ,25320,25287,43,47.2,5.9,1.74
+ Grandfontaine-sur-Creuse ,GRANDFONTAINE SUR CREUSE ,25510,25289,43,47.2,6.45,1.01
+ La Grange ,LA GRANGE ,25380,25290,43,47.283333,6.666667,1.13
+ Granges-Narboz ,GRANGES NARBOZ ,25300,25293,43,46.883333,6.316667,2.17
+ Granges-Sainte-Marie ,GRANGES SAINTE MARIE ,25160,25294,43,46.783333,6.283333,2.8
+ Les Grangettes ,LES GRANGETTES ,25160,25295,43,46.833333,6.316667,2.48
+ Les Gras ,LES GRAS ,25790,25296,43,47,6.55,1.44
+ Le Gratteris ,LE GRATTERIS ,25620,25297,43,47.183333,6.133333,0.87
+ Grosbois ,GROSBOIS ,25110,25298,43,47.35,6.3,1.14
+ Guillon-les-Bains ,GUILLON LES BAINS ,25110,25299,43,47.316667,6.4,0.84
+ Guyans-Durnes ,GUYANS DURNES ,25580,25300,43,47.116667,6.25,0.8
+ Guyans-Vennes ,GUYANS VENNES ,25390,25301,43,47.15,6.566667,0.75
+ Hauterive-la-Fresse ,HAUTERIVE LA FRESSE ,25650,25303,43,46.966667,6.45,1.65
+ Hérimoncourt ,HERIMONCOURT ,25310,25304,43,47.433333,6.883333,1.94
+ L'Hôpital-du-Grosbois ,L HOPITAL DU GROSBOIS,25620,25305,43,47.166667,6.233333,1.69
+ L'Hôpital-Saint-Liéffroy ,L HOPITAL SAINT LIEFFROY,25340,25306,43,47.4,6.45,1.07
+ Les Hôpitaux-Neufs ,LES HOPITAUX NEUFS ,25370,25307,43,46.783333,6.383333,2.8
+ Les Hôpitaux-Vieux ,LES HOPITAUX VIEUX ,25370,25308,43,46.783333,6.366667,2.8
+ Houtaud ,HOUTAUD ,25300,25309,43,46.916667,6.316667,1.96
+ Huanne-Montmartin ,HUANNE MONTMARTIN ,25680,25310,43,47.433333,6.35,1.28
+ Hyémondans ,HYEMONDANS ,25250,25311,43,47.383333,6.65,1.88
+ Hyèvre-Magny ,HYEVRE MAGNY ,25110,25312,43,47.366667,6.433333,1.2
+ Hyèvre-Paroisse ,HYEVRE PAROISSE ,25110,25313,43,47.366667,6.433333,1.2
+ Indevillers ,INDEVILLERS ,25470,25314,43,47.316667,6.95,2.19
+ L'Isle-sur-le-Doubs ,L ISLE SUR LE,25250,25315,43,47.45,6.583333,1.38
+ Issans ,ISSANS ,25550,25316,43,47.533333,6.733333,1.9
+ Jallerange ,JALLERANGE ,25170,25317,43,47.25,5.716667,2.43
+ Jougne ,JOUGNE ,25370,25318,43,46.766667,6.4,2.9
+ Labergement-du-Navois ,LABERGEMENT DU NAVOIS ,25270,25319,43,46.966667,6.083333,1.65
+ Labergement-Sainte-Marie ,LABERGEMENT SAINTE MARIE ,25160,25320,43,46.783333,6.283333,2.8
+ Villers-le-Lac ,VILLERS LE LAC ,25130,25321,43,47.066667,6.666667,1.13
+ Laire ,LAIRE ,25550,25322,43,47.55,6.733333,2.01
+ Laissey ,LAISSEY ,25820,25323,43,47.3,6.233333,0.49
+ Lanans ,LANANS ,25360,25324,43,47.3,6.45,1.99
+ Landresse ,LANDRESSE ,25530,25325,43,47.25,6.466667,1.18
+ Lantenne-Vertière ,LANTENNE VERTIERE ,25170,25326,43,47.233333,5.783333,2.18
+ Lanthenans ,LANTHENANS ,25250,25327,43,47.4,6.633333,1.43
+ Larnod ,LARNOD ,25720,25328,43,47.183333,5.966667,1.49
+ Laval-le-Prieuré ,LAVAL LE PRIEURE ,25210,25329,43,47.183333,6.616667,1.36
+ Lavans-Quingey ,LAVANS QUINGEY ,25440,25330,43,47.083333,5.883333,1.8
+ Lavans-Vuillafans ,LAVANS VUILLAFANS ,25580,25331,43,47.083333,6.25,0.92
+ Lavernay ,LAVERNAY ,25170,25332,43,47.25,5.816667,2.05
+ Laviron ,LAVIRON ,25510,25333,43,47.25,6.55,1.51
+ Levier ,LEVIER ,25270,25334,43,46.95,6.133333,1.75
+ Liebvillers ,LIEBVILLERS ,25190,25335,43,47.333333,6.783333,1.56
+ Liesle ,LIESLE ,25440,25336,43,47.05,5.816667,2.05
+ Lièvremont ,LIEVREMONT ,25650,25337,43,46.966667,6.433333,1.65
+ Lizine ,LIZINE ,25330,25338,43,47.05,6,1.37
+ Lods ,LODS ,25930,25339,43,47.05,6.25,1.13
+ Lomont-sur-Crête ,LOMONT SUR CRETE ,25110,25341,43,47.333333,6.433333,1.21
+ Longechaux ,LONGECHAUX ,25690,25342,43,47.166667,6.433333,1.34
+ Longemaison ,LONGEMAISON ,25690,25343,43,47.083333,6.466667,1.4
+ Longevelle-sur-Doubs ,LONGEVELLE SUR DOUBS ,25260,25345,43,47.45,6.65,1.38
+ Longeville ,LONGEVILLE ,25330,25346,43,47.033333,6.233333,2.27
+ La Longeville ,LA LONGEVILLE ,25650,25347,43,47,6.466667,1.44
+ Longevilles-Mont-d'Or ,LONGEVILLES MONT D OR,25370,25348,43,46.75,6.2931,-1
+ Loray ,LORAY ,25390,25349,43,47.15,6.5,1.53
+ Lougres ,LOUGRES ,25260,25350,43,47.466667,6.683333,1.49
+ Le Luhier ,LE LUHIER ,25210,25351,43,47.166667,6.65,1.07
+ Luisans ,LUISANS ,25390,25352,43,47.1,6.55,1.2
+ Lusans ,LUSANS ,25640,25353,43,47.35,6.2,0.75
+ Luxiol ,LUXIOL ,25110,25354,43,47.383333,6.35,0.96
+ Maîche ,MAICHE ,25120,25356,43,47.25,6.8,1.63
+ Malbrans ,MALBRANS ,25620,25360,43,47.116667,6.083333,1.58
+ Malbuisson ,MALBUISSON ,25160,25361,43,46.8,6.3,2.69
+ Malpas ,MALPAS ,25160,25362,43,46.833333,6.283333,2.48
+ Mambouhans ,MAMBOUHANS ,25150,25363,43,47.366667,6.65,1.65
+ Mamirolle ,MAMIROLLE ,25620,25364,43,47.2,6.166667,0.92
+ Mancenans ,MANCENANS ,25250,25365,43,47.45,6.533333,1.38
+ Mancenans-Lizerne ,MANCENANS LIZERNE ,25120,25366,43,47.266667,6.783333,1.56
+ Mandeure ,MANDEURE ,25350,25367,43,47.45,6.8,1.63
+ Marchaux ,MARCHAUX ,25640,25368,43,47.316667,6.133333,1.74
+ Marvelise ,MARVELISE ,25250,25369,43,47.516667,6.6,1.8
+ Mathay ,MATHAY ,25700,25370,43,47.433333,6.783333,1.56
+ Mazerolles-le-Salin ,MAZEROLLES LE SALIN ,25170,25371,43,47.233333,5.866667,1.87
+ Médière ,MEDIERE ,25250,25372,43,47.45,6.6,1.38
+ Mercey-le-Grand ,MERCEY LE GRAND ,25410,25374,43,47.216667,5.733333,2.36
+ Mérey-sous-Montrond ,MEREY SOUS MONTROND ,25660,25375,43,47.15,6.066667,1.22
+ Mérey-Vieilley ,MEREY VIEILLEY ,25870,25376,43,47.333333,6.066667,1.12
+ Mésandans ,MESANDANS ,25680,25377,43,47.433333,6.366667,1.28
+ Meslières ,MESLIERES ,25310,25378,43,47.416667,6.883333,1.94
+ Mesmay ,MESMAY ,25440,25379,43,47.066667,5.85,1.93
+ Métabief ,METABIEF ,25370,25380,43,46.783333,6.35,2.8
+ Miserey-Salines ,MISEREY SALINES ,25480,25381,43,47.283333,5.966667,1.49
+ Moncey ,MONCEY ,25870,25382,43,47.366667,6.116667,1.38
+ Moncley ,MONCLEY ,25170,25383,43,47.316667,5.9,1.74
+ Mondon ,MONDON ,25680,25384,43,47.45,6.316667,1.38
+ Montancy ,MONTANCY ,25190,25386,43,47.366667,7.016667,2.44
+ Montandon ,MONTANDON ,25190,25387,43,47.3,6.833333,1.75
+ Montbéliard ,MONTBELIARD ,25200,25388,43,47.516667,6.8,1.8
+ Montbéliardot ,MONTBELIARDOT ,25210,25389,43,47.183333,6.65,1.07
+ Montbenoît ,MONTBENOIT ,25650,25390,43,46.983333,6.466667,1.54
+ Mont-de-Laval ,MONT DE LAVAL ,25210,25391,43,47.166667,6.633333,1
+ Mont-de-Vougney ,MONT DE VOUGNEY ,25120,25392,43,47.233333,6.716667,1.96
+ Montécheroux ,MONTECHEROUX ,25190,25393,43,47.35,6.8,1.63
+ Montenois ,MONTENOIS ,25260,25394,43,47.5,6.666667,1.7
+ Montfaucon ,MONTFAUCON ,25660,25395,43,47.233333,6.083333,1.05
+ Montferney ,MONTFERNEY ,25680,25396,43,47.483333,6.333333,1.59
+ Montferrand-le-Château ,MONTFERRAND LE CHATEAU ,25320,25397,43,47.183333,5.933333,1.62
+ Montflovin ,MONTFLOVIN ,25650,25398,43,46.983333,6.45,1.54
+ Montfort ,MONTFORT ,25440,25399,43,47.066667,5.9,1.74
+ Montgesoye ,MONTGESOYE ,25111,25400,43,47.083333,6.2,0.92
+ Montivernage ,MONTIVERNAGE ,25110,25401,43,47.316667,6.433333,1.31
+ Montjoie-le-Château ,MONTJOIE LE CHATEAU ,25190,25402,43,47.35,6.9,2
+ Montlebon ,MONTLEBON ,25500,25403,43,47.033333,6.616667,1.23
+ Montmahoux ,MONTMAHOUX ,25270,25404,43,46.983333,6.033333,1.54
+ Montperreux ,MONTPERREUX ,25160,25405,43,46.833333,6.333333,2.48
+ Montrond-le-Château ,MONTROND LE CHATEAU ,25660,25406,43,47.133333,6.05,1.64
+ Montursin ,MONTURSIN ,25190,25407,43,47.35,6.95,2.19
+ Montussaint ,MONTUSSAINT ,25680,25408,43,47.433333,6.3,1.28
+ Morchamps ,MORCHAMPS ,25680,25409,43,47.45,6.333333,1.38
+ Morre ,MORRE ,25660,25410,43,47.233333,6.066667,1.12
+ Morteau ,MORTEAU ,25500,25411,43,47.066667,6.616667,1.02
+ Mouillevillers ,MOUILLEVILLERS ,25190,25412,43,47.3,6.8,1.63
+ Mouthe ,MOUTHE ,25240,25413,43,46.716667,6.166667,-1
+ Le Moutherot ,LE MOUTHEROT ,25170,25414,43,47.25,5.733333,2.36
+ Mouthier-Haute-Pierre ,MOUTHIER HAUTE PIERRE ,25920,25415,43,47.033333,6.266667,1.23
+ Myon ,MYON ,25440,25416,43,47.016667,5.933333,1.62
+ Nancray ,NANCRAY ,25360,25418,43,47.25,6.183333,1.86
+ Nans ,NANS ,25680,25419,43,47.483333,6.416667,1.7
+ Nans-sous-Sainte-Anne ,NANS SOUS SAINTE ANNE,25330,25420,43,46.983333,6,1.54
+ Narbief ,NARBIEF ,25210,25421,43,47.133333,6.7,1.25
+ Neuchâtel-Urtière ,NEUCHATEL URTIERE ,25150,25422,43,47.366667,6.733333,1.38
+ Nods ,NODS ,25580,25424,43,47.1,6.333333,0.91
+ Noël-Cerneux ,NOEL CERNEUX ,25500,25425,43,47.1,6.666667,1.13
+ Noirefontaine ,NOIREFONTAINE ,25190,25426,43,47.35,6.766667,1.5
+ Noironte ,NOIRONTE ,25170,25427,43,47.266667,5.883333,1.8
+ Nommay ,NOMMAY ,25600,25428,43,47.533333,6.85,1.9
+ Novillars ,NOVILLARS ,25220,25429,43,47.283333,6.133333,0.87
+ Ollans ,OLLANS ,25640,25430,43,47.416667,6.25,1.2
+ Onans ,ONANS ,25250,25431,43,47.5,6.616667,1.7
+ Orchamps-Vennes ,ORCHAMPS VENNES ,25390,25432,43,47.133333,6.533333,0.65
+ Ornans ,ORNANS ,25290,25434,43,47.1,6.15,1.54
+ Orsans ,ORSANS ,25530,25435,43,47.25,6.383333,1.01
+ Orve ,ORVE ,25430,25436,43,47.333333,6.55,0.69
+ Osse ,OSSE ,25360,25437,43,47.266667,6.216667,1.37
+ Osselle ,OSSELLE ,25320,25438,43,47.133333,5.85,1.93
+ Ougney-Douvot ,OUGNEY DOUVOT ,25640,25439,43,47.316667,6.283333,1.51
+ Ouhans ,OUHANS ,25520,25440,43,47,6.3,1.44
+ Ouvans ,OUVANS ,25530,25441,43,47.283333,6.483333,1.94
+ Oye-et-Pallet ,OYE ET PALLET ,25160,25442,43,46.85,6.333333,2.38
+ Palantine ,PALANTINE ,25440,25443,43,47.083333,5.95,1.55
+ Palise ,PALISE ,25870,25444,43,47.366667,6.083333,1.05
+ Paroy ,PAROY ,25440,25445,43,47.05,5.883333,1.8
+ Passavant ,PASSAVANT ,25360,25446,43,47.283333,6.383333,1.02
+ Passonfontaine ,PASSONFONTAINE ,25690,25447,43,47.1,6.416667,1.07
+ Pelousey ,PELOUSEY ,25170,25448,43,47.283333,5.916667,1.68
+ Pessans ,PESSANS ,25440,25450,43,47.066667,5.883333,1.8
+ Petite Chaux ,PETITE CHAUX ,25240,25451,43,46.7,6.133333,-1
+ Pierrefontaine-les-Varans ,PIERREFONTAINE LES VARANS ,25510,25453,43,47.216667,6.55,1.28
+ Pirey ,PIREY ,25480,25454,43,47.266667,5.966667,1.49
+ Placey ,PLACEY ,25170,25455,43,47.266667,5.85,1.93
+ Plaimbois-du Miroir ,PLAIMBOIS DU MIROIR ,25210,25456,43,47.183333,6.65,1.07
+ Plaimbois-Vennes ,PLAIMBOIS VENNES ,25390,25457,43,47.183333,6.55,1.13
+ La Planée ,LA PLANEE ,25160,25459,43,46.833333,6.283333,2.48
+ Pointvillers ,POINTVILLERS ,25440,25460,43,47.066667,5.9,1.74
+ Pompierre-sur-Doubs ,POMPIERRE SUR DOUBS ,25340,25461,43,47.416667,6.516667,1.17
+ Pontarlier ,PONTARLIER ,25300,25462,43,46.9,6.366667,2.07
+ Pont-de-Roide ,PONT DE ROIDE ,25150,25463,43,47.383333,6.766667,1.5
+ Les Pontets ,LES PONTETS ,25240,25464,43,46.716667,6.166667,-1
+ Pont-lès-Moulins ,PONT LES MOULINS ,25110,25465,43,47.316667,6.366667,0.6
+ Pouilley-Français ,POUILLEY FRANCAIS ,25410,25466,43,47.2,5.85,1.93
+ Pouilley-les-Vignes ,POUILLEY LES VIGNES ,25115,25467,43,47.25,5.933333,1.62
+ Pouligney Lusans ,POULIGNEY LUSANS ,25640,25468,43,47.333333,6.2,0.65
+ Présentevillers ,PRESENTEVILLERS ,25550,25469,43,47.5,6.733333,1.7
+ La Prétière ,LA PRETIERE ,25250,25470,43,47.45,6.616667,1.38
+ Provenchère ,PROVENCHERE ,25380,25471,43,47.283333,6.65,1.07
+ Puessans ,PUESSANS ,25680,25472,43,47.433333,6.316667,1.28
+ Pugey ,PUGEY ,25720,25473,43,47.183333,5.983333,1.43
+ Le Puy ,LE PUY ,25640,25474,43,47.35,6.233333,0.75
+ Quingey ,QUINGEY ,25440,25475,43,47.1,5.883333,1.8
+ Rahon ,RAHON ,25430,25476,43,47.316667,6.583333,0.82
+ Rancenay ,RANCENAY ,25320,25477,43,47.183333,5.95,1.55
+ Randevillers ,RANDEVILLERS ,25430,25478,43,47.316667,6.516667,1.1
+ Rang ,RANG ,25250,25479,43,47.433333,6.566667,1.28
+ Rantechaux ,RANTECHAUX ,25580,25480,43,47.116667,6.383333,1.91
+ Raynans ,RAYNANS ,25550,25481,43,47.533333,6.716667,1.9
+Recologne, ,25170,25482,43,47.266667,5.833333,1.99
+ Reculfoz ,RECULFOZ ,25240,25483,43,46.691667,6.166667,-1
+ Refranche ,REFRANCHE ,25330,25484,43,47.033333,6,1.37
+ Rennes-sur-Loue ,RENNES SUR LOUE ,25440,25488,43,47.016667,5.85,1.93
+ Reugney ,REUGNEY ,25330,25489,43,47.016667,6.15,1.33
+ Rigney ,RIGNEY ,25640,25490,43,47.383333,6.183333,0.96
+ Rignosot ,RIGNOSOT ,25640,25491,43,47.383333,6.2,0.96
+ Rillans ,RILLANS ,25110,25492,43,47.416667,6.366667,1.17
+ La Rivière-Drugeon ,LA RIVIERE DRUGEON ,25560,25493,43,46.866667,6.216667,2.28
+ Rochejean ,ROCHEJEAN ,25370,25494,43,46.75,6.3,-1
+ Roche-lès-Clerval ,ROCHE LES CLERVAL ,25340,25496,43,47.366667,6.483333,0.86
+ Roches-lès-Blamont ,ROCHES LES BLAMONT ,25310,25497,43,47.416667,6.85,1.81
+ Rognon ,ROGNON ,25680,25498,43,47.416667,6.316667,1.17
+ Ronchaux ,RONCHAUX ,25440,25500,43,47.05,5.9,1.74
+ Rondefontaine ,RONDEFONTAINE ,25240,25501,43,46.7328,6.18133,-1
+ Rosières-sur-Barbèche ,ROSIERES SUR BARBECHE ,25190,25503,43,47.316667,6.666667,1.76
+ Rosureux ,ROSUREUX ,25380,25504,43,47.216667,6.683333,1.24
+ Rougemont ,ROUGEMONT ,25680,25505,43,47.483333,6.35,1.59
+ Rougemontot ,ROUGEMONTOT ,25640,25506,43,47.4,6.266667,1.18
+ Rouhé ,ROUHE ,25440,25507,43,47.083333,5.966667,1.5
+ Roulans ,ROULANS ,25640,25508,43,47.316667,6.233333,0.9
+ Routelle ,ROUTELLE ,25410,25509,43,47.166667,5.85,1.93
+ Ruffey-le-Château ,RUFFEY LE CHATEAU ,25170,25510,43,47.283333,5.8,2.11
+ Rurey ,RUREY ,25290,25511,43,47.1,6.016667,1.3
+ Le Russey ,LE RUSSEY ,25210,25512,43,47.166667,6.733333,1.38
+ Sainte-Anne ,SAINTE ANNE ,25270,25513,43,46.95,5.983333,1.75
+ Saint-Antoine ,SAINT ANTOINE ,25370,25514,43,46.783333,6.333333,2.8
+ Sainte-Colombe ,SAINTE COLOMBE ,25300,25515,43,46.883333,6.266667,2.17
+ Saint-Georges-Armont ,SAINT GEORGES ARMONT ,25340,25516,43,47.4,6.55,1.07
+ Saint-Gorgon-Main ,SAINT GORGON MAIN ,25520,25517,43,47.016667,6.333333,1.33
+ Saint-Hilaire ,SAINT HILAIRE ,25640,25518,43,47.333333,6.25,0.83
+ Saint-Hippolyte ,SAINT HIPPOLYTE ,25190,25519,43,47.316667,6.816667,1.69
+ Saint-Juan ,SAINT JUAN ,25360,25520,43,47.283333,6.366667,0.79
+ Saint-Julien-lès-Montbéliard ,SAINT JULIEN LES MONTBELIARD,25550,25521,43,47.516667,6.716667,1.8
+ Sainte-Marie ,SAINTE MARIE ,25113,25523,43,47.5,6.7,1.7
+ Saint-Point-Lac ,SAINT POINT LAC ,25160,25525,43,46.816667,6.3,2.59
+ Sainte-Suzanne ,SAINTE SUZANNE ,25630,25526,43,47.5,6.766667,1.7
+ Saint-Vit ,SAINT VIT ,25410,25527,43,47.183333,5.816667,2.05
+ Samson ,SAMSON ,25440,25528,43,47.05,5.883333,1.8
+ Sancey-le-Grand ,SANCEY LE GRAND ,25430,25529,43,47.3,6.583333,0.82
+ Sancey-le-Long ,SANCEY LE LONG ,25430,25530,43,47.3,6.6,0.88
+ Santoche ,SANTOCHE ,25340,25531,43,47.4,6.516667,1.07
+ Saône ,SAONE ,25660,25532,43,47.233333,6.116667,1.11
+ Saraz ,SARAZ ,25330,25533,43,47,5.983333,1.44
+ Saules ,SAULES ,25580,25535,43,47.116667,6.2,1.78
+ Sauvagney ,SAUVAGNEY ,25170,25536,43,47.333333,5.9,1.74
+ Séchin ,SECHIN ,25110,25538,43,47.333333,6.283333,1.46
+ Seloncourt ,SELONCOURT ,25230,25539,43,47.466667,6.866667,1.88
+ Semondans ,SEMONDANS ,25750,25540,43,47.55,6.7,2.01
+ Septfontaines ,SEPTFONTAINES ,25270,25541,43,46.983333,6.183333,1.96
+ Serre-lès-Sapins ,SERRE LES SAPINS ,25770,25542,43,47.25,5.933333,1.62
+ Servigney ,SERVIGNEY ,25680,25543,43,47.45,6.3,1.38
+ Servin ,SERVIN ,25430,25544,43,47.3,6.466667,2.21
+ Silley-Amancey ,SILLEY AMANCEY ,25330,25545,43,47.033333,6.133333,1.23
+ Silley-Bléfond ,SILLEY BLEFOND ,25110,25546,43,47.316667,6.333333,0.82
+ Sochaux ,SOCHAUX ,25600,25547,43,47.516667,6.833333,1.8
+ Solemont ,SOLEMONT ,25190,25548,43,47.35,6.7,1.36
+ Sombacour ,SOMBACOUR ,25520,25549,43,46.95,6.266667,1.75
+ La Sommette ,LA SOMMETTE ,25510,25550,43,47.183333,6.516667,0.88
+ Soulce-Cernay ,SOULCE CERNAY ,25190,25551,43,47.316667,6.85,1.81
+ Sourans ,SOURANS ,25250,25552,43,47.4,6.633333,1.43
+ Soye ,SOYE ,25250,25553,43,47.45,6.5,1.78
+ Surmont ,SURMONT ,25380,25554,43,47.283333,6.616667,1.71
+ Taillecourt ,TAILLECOURT ,25400,25555,43,47.5,6.85,1.81
+ Tallans ,TALLANS ,25680,25556,43,47.416667,6.283333,1.61
+ Tallenay ,TALLENAY ,25870,25557,43,47.3,6.033333,1.24
+ Tarcenay ,TARCENAY ,25620,25558,43,47.15,6.116667,0.93
+ Thiébouhans ,THIEBOUHANS ,25470,25559,43,47.283333,6.85,1.81
+ Thise ,THISE ,25220,25560,43,47.283333,6.083333,1.05
+ Thoraise ,THORAISE ,25320,25561,43,47.166667,5.9,1.74
+ Thulay ,THULAY ,25310,25562,43,47.416667,6.866667,1.88
+ Thurey-le-Mont ,THUREY LE MONT ,25870,25563,43,47.366667,6.116667,1.38
+ Torpes ,TORPES ,25320,25564,43,47.166667,5.883333,1.8
+ Touillon-et-Loutelet ,TOUILLON ET LOUTELET ,25370,25565,43,46.783333,6.35,2.8
+ La Tour-de-Sçay ,LA TOUR DE SCAY,25640,25566,43,47.383333,6.233333,0.96
+ Tournans ,TOURNANS ,25680,25567,43,47.416667,6.333333,1.17
+ Tournedoz ,TOURNEDOZ ,25340,25568,43,47.366667,6.6,1.86
+ Trépot ,TREPOT ,25620,25569,43,47.166667,6.15,0.81
+ Tressandans ,TRESSANDANS ,25680,25570,43,47.5,6.333333,1.7
+ Trévillers ,TREVILLERS ,25470,25571,43,47.283333,6.866667,1.88
+ Trouvans ,TROUVANS ,25680,25572,43,47.416667,6.35,1.17
+ Urtière ,URTIERE ,25470,25573,43,47.25,6.933333,2.13
+ Uzelle ,UZELLE ,25340,25574,43,47.466667,6.433333,1.52
+ Vaire-le-Petit ,VAIRE LE PETIT ,25220,25576,43,47.283333,6.15,1.12
+ Vaivre ,VAIVRE ,25150,25577,43,47.366667,6.7,1.25
+ Val-de-Roulans ,VAL DE ROULANS ,25640,25579,43,47.366667,6.266667,0.95
+ Valentigney ,VALENTIGNEY ,25700,25580,43,47.466667,6.833333,1.75
+ Valleroy ,VALLEROY ,25870,25582,43,47.383333,6.116667,1.51
+ Valonne ,VALONNE ,25190,25583,43,47.35,6.666667,1.76
+ Valoreille ,VALOREILLE ,25190,25584,43,47.3,6.75,1.44
+ Vanclans ,VANCLANS ,25580,25585,43,47.1,6.366667,1.57
+ Vandoncourt ,VANDONCOURT ,25230,25586,43,47.466667,6.9,2
+ Vauchamps ,VAUCHAMPS ,25360,25587,43,47.266667,6.25,0.9
+ Vaucluse ,VAUCLUSE ,25380,25588,43,47.25,6.683333,1.19
+ Vauclusotte ,VAUCLUSOTTE ,25380,25589,43,47.283333,6.733333,1.93
+ Vaudrivillers ,VAUDRIVILLERS ,25360,25590,43,47.283333,6.433333,1.72
+ Vaufrey ,VAUFREY ,25190,25591,43,47.35,6.916667,2.06
+ Vaux-et-Chantegrue ,VAUX ET CHANTEGRUE ,25160,25592,43,46.8,6.25,2.69
+ Vaux-lès-Prés ,VAUX LES PRES ,25770,25593,43,47.233333,5.883333,1.8
+ Velesmes-Essarts ,VELESMES ESSARTS ,25410,25594,43,47.183333,5.866667,1.87
+ Vellerot-lès-Belvoir ,VELLEROT LES BELVOIR ,25430,25595,43,47.35,6.6,0.92
+ Vellerot-lès-Vercel ,VELLEROT LES VERCEL ,25530,25596,43,47.25,6.45,0.84
+ Vellevans ,VELLEVANS ,25430,25597,43,47.316667,6.5,1.46
+ Venise ,VENISE ,25870,25598,43,47.35,6.116667,1.3
+ Vennans ,VENNANS ,25640,25599,43,47.333333,6.233333,0.65
+ Vercel-Villedieu-le-Camp ,VERCEL VILLEDIEU LE CAMP,25530,25601,43,47.183333,6.4,1.18
+ Vergranne ,VERGRANNE ,25110,25602,43,47.416667,6.4,1.27
+ Vermondans ,VERMONDANS ,25150,25603,43,47.383333,6.75,1.44
+ Verne ,VERNE ,25110,25604,43,47.4,6.35,1.07
+ Vernierfontaine ,VERNIERFONTAINE ,25580,25605,43,47.1,6.3,0.81
+ Vernois-le-Fol ,VERNOIS LE FOL ,25190,25606,43,47.35,6.983333,2.31
+ Vernois-lès-Belvoir ,VERNOIS LES BELVOIR ,25430,25607,43,47.316667,6.65,1.75
+ Le Vernoy ,LE VERNOY ,25750,25608,43,47.566667,6.683333,2.11
+ La Vèze ,LA VEZE ,25660,25611,43,47.216667,6.066667,1.12
+ Vieilley ,VIEILLEY ,25870,25612,43,47.333333,6.083333,1.05
+ Viéthorey ,VIETHOREY ,25340,25613,43,47.433333,6.433333,1.28
+ Vieux-Charmont ,VIEUX CHARMONT ,25600,25614,43,47.516667,6.833333,1.8
+ Villars-lès-Blamont ,VILLARS LES BLAMONT ,25310,25615,43,47.366667,6.866667,1.88
+ Villars-Saint-Georges ,VILLARS SAINT GEORGES ,25410,25616,43,47.116667,5.833333,1.99
+ Villars-sous-Dampjoux ,VILLARS SOUS DAMPJOUX ,25190,25617,43,47.35,6.766667,1.5
+ Villars-sous-Écot ,VILLARS SOUS ECOT ,25150,25618,43,47.416667,6.7,1.25
+ Les Villedieu ,LES VILLEDIEU ,25240,25619,43,46.725,6.241667,-1
+ Ville-du-Pont ,VILLE DU PONT ,25650,25620,43,47,6.483333,1.44
+ Villeneuve-d'Amont ,VILLENEUVE D AMONT ,25270,25621,43,46.933333,6.033333,1.86
+ Villers-Buzon ,VILLERS BUZON ,25170,25622,43,47.233333,5.85,1.93
+ Villers-Chief ,VILLERS CHIEF ,25530,25623,43,47.233333,6.45,0.69
+ Villers-Grélot ,VILLERS GRELOT ,25640,25624,43,47.35,6.233333,0.75
+ Villers-la-Combe ,VILLERS LA COMBE ,25510,25625,43,47.233333,6.45,1.05
+ Villers-Saint-Martin ,VILLERS SAINT MARTIN ,25110,25626,43,47.35,6.416667,0.88
+ Villers-sous-Chalamont ,VILLERS SOUS CHALAMONT ,25270,25627,43,46.9,6.05,2.07
+ Villers-sous-Montrond ,VILLERS SOUS MONTROND ,25620,25628,43,47.15,6.083333,1.36
+ Voillans ,VOILLANS ,25110,25629,43,47.383333,6.416667,1.04
+ Voires ,VOIRES ,25580,25630,43,47.1,6.25,0.81
+ Vorges-les-Pins ,VORGES LES PINS ,25320,25631,43,47.15,5.933333,1.62
+ Voujeaucourt ,VOUJEAUCOURT ,25420,25632,43,47.466667,6.766667,1.5
+ Vuillafans ,VUILLAFANS ,25840,25633,43,47.066667,6.216667,1.02
+ Vuillecin ,VUILLECIN ,25300,25634,43,46.933333,6.316667,1.86
+ Vyt-lès-Belvoir ,VYT LES BELVOIR ,25430,25635,43,47.35,6.616667,1.21
+ Aix-en-Diois ,AIX EN DIOIS ,26150,26001,82,44.716667,5.416667,1.46
+ Albon ,ALBON ,26140,26002,82,45.233333,4.866667,2.05
+ Aleyrac ,ALEYRAC ,26770,26003,82,44.5,4.95,1.51
+ Alixan ,ALIXAN ,26300,26004,82,44.966667,5.033333,1.51
+ Allan ,ALLAN ,26780,26005,82,44.483333,4.783333,1.81
+ Allex ,ALLEX ,26400,26006,82,44.766667,4.916667,1.49
+ Ambonil ,AMBONIL ,26800,26007,82,44.783333,4.9,1.21
+ Ancône ,ANCONE ,26200,26008,82,44.583333,4.733333,2.07
+ Andancette ,ANDANCETTE ,26140,26009,82,45.233333,4.8,2.05
+ Anneyron ,ANNEYRON ,26140,26010,82,45.266667,4.9,2.18
+ Aouste-sur-Sye ,AOUSTE SUR SYE ,26400,26011,82,44.716667,5.05,0.43
+ Arnayon ,ARNAYON ,26470,26012,82,44.483333,5.316667,1
+ Arpavon ,ARPAVON ,26110,26013,82,44.366667,5.266667,1.28
+ Arthémonay ,ARTHEMONAY ,26260,26014,82,45.133333,5.05,1.67
+ Aubenasson ,AUBENASSON ,26340,26015,82,44.683333,5.15,1.52
+ Aubres ,AUBRES ,26110,26016,82,44.383333,5.166667,1.21
+ Aucelon ,AUCELON ,26340,26017,82,44.633333,5.35,1.4
+ Aulan ,AULAN ,26570,26018,82,44.216667,5.433333,1.85
+ Aurel ,AUREL ,26340,26019,82,44.7,5.3,0.89
+ Autichamp ,AUTICHAMP ,26400,26021,82,44.683333,4.95,1.22
+ Ballons ,BALLONS ,26560,26022,82,44.25,5.65,2.66
+ Barbières ,BARBIERES ,26300,26023,82,44.95,5.133333,0.96
+ Barcelonne ,BARCELONNE ,26120,26024,82,44.866667,5.05,0.64
+ Barnave ,BARNAVE ,26310,26025,82,44.65,5.366667,1.68
+ Barret-de-Lioure ,BARRET DE LIOURE ,26570,26026,82,44.183333,5.5,1.98
+ Barsac ,BARSAC ,26150,26027,82,44.733333,5.283333,0.88
+ Bathernay ,BATHERNAY ,26260,26028,82,45.183333,5,1.86
+ La Bâtie-Crémezin ,LA BATIE CREMEZIN ,26310,26029,82,44.583333,5.583333,2.32
+ La Bâtie-des-Fonds ,LA BATIE DES FONDS,26310,26030,82,44.516667,5.633333,2.58
+ La Bâtie-Rolland ,LA BATIE ROLLAND ,26160,26031,82,44.55,4.85,1.47
+ La Baume-Cornillane ,LA BAUME CORNILLANE ,26120,26032,82,44.816667,5.05,1.06
+ La Baume-de-Transit ,LA BAUME DE TRANSIT,26790,26033,82,44.35,4.866667,1.38
+ La Baume-d'Hostun ,LA BAUME D HOSTUN,26730,26034,82,45.05,5.233333,1.35
+ Beaufort-sur-Gervanne ,BEAUFORT SUR GERVANNE ,26400,26035,82,44.783333,5.15,1.15
+ Beaumont-en-Diois ,BEAUMONT EN DIOIS ,26310,26036,82,44.566667,5.466667,1.72
+ Beaumont-lès-Valence ,BEAUMONT LES VALENCE ,26760,26037,82,44.866667,4.966667,1
+ Beaumont-Monteux ,BEAUMONT MONTEUX ,26600,26038,82,45.016667,4.916667,1.38
+ Beauregard-Baret ,BEAUREGARD BARET ,26300,26039,82,44.983333,5.183333,1.41
+ Beaurières ,BEAURIERES ,26310,26040,82,44.583333,5.55,2.15
+ Beausemblant ,BEAUSEMBLANT ,26240,26041,82,45.216667,4.833333,1.99
+ Beauvallon ,BEAUVALLON ,26800,26042,82,44.866667,4.916667,1.15
+ Beauvoisin ,BEAUVOISIN ,26170,26043,82,44.3,5.216667,1.53
+ Béconne ,BECONNE ,26770,26044,82,44.5,5.05,1.23
+ La Bégude-de-Mazenc ,LA BEGUDE DE MAZENC,26160,26045,82,44.533333,4.933333,1.04
+ Bellecombe-Tarendol ,BELLECOMBE TARENDOL ,26110,26046,82,44.35,5.35,1.73
+ Bellegarde-en-Diois ,BELLEGARDE EN DIOIS ,26470,26047,82,44.533333,5.433333,1.54
+ Bénivay-Ollon ,BENIVAY OLLON ,26170,26048,82,44.3,5.183333,1.53
+ Bésayes ,BESAYES ,26300,26049,82,44.966667,5.083333,1.03
+ Bésignan ,BESIGNAN ,26110,26050,82,44.316667,5.333333,1.63
+ Bézaudun-sur-Bîne ,BEZAUDUN SUR BINE ,26460,26051,82,44.6,5.166667,0.65
+ Bonlieu-sur-Roubion ,BONLIEU SUR ROUBION ,26160,26052,82,44.583333,4.866667,1.38
+ Bonneval-en-Diois ,BONNEVAL EN DIOIS ,26410,26053,82,44.633333,5.616667,2.49
+ Bouchet ,BOUCHET ,26790,26054,82,44.3,4.883333,1.53
+ Boulc ,BOULC ,26410,26055,82,44.65,5.566667,2.23
+ Bourdeaux ,BOURDEAUX ,26460,26056,82,44.583333,5.133333,0.44
+ Bourg-de-Péage ,BOURG DE PEAGE ,26300,26057,82,45.033333,5.05,1.6
+ Bourg-lès-Valence ,BOURG LES VALENCE ,26500,26058,82,44.95,4.883333,1.29
+ Bouvières ,BOUVIERES ,26460,26060,82,44.5,5.216667,2.13
+ Bren ,BREN ,26260,26061,82,45.133333,4.933333,1.67
+ Brette ,BRETTE ,26340,26062,82,44.583333,5.316667,1.37
+ Buis-les-Baronnies ,BUIS LES BARONNIES ,26170,26063,82,44.266667,5.266667,1.66
+ Chabeuil ,CHABEUIL ,26120,26064,82,44.9,5.016667,0.77
+ Chabrillan ,CHABRILLAN ,26400,26065,82,44.716667,4.933333,1.29
+ Le Chaffal ,LE CHAFFAL ,26190,26066,82,44.866667,5.183333,1.97
+ Chalançon ,CHALANCON ,26470,26067,82,44.516667,5.35,1.11
+ Le Chalon ,LE CHALON ,26350,26068,82,45.15,5.083333,1.73
+ Chamaloc ,CHAMALOC ,26150,26069,82,44.8,5.383333,1.29
+ Chamaret ,CHAMARET ,26230,26070,82,44.4,4.9,1.21
+ Chanos-Curson ,CHANOS CURSON ,26600,26071,82,45.066667,4.916667,1.41
+ Chantemerle-les-Blés ,CHANTEMERLE LES BLES ,26600,26072,82,45.1,4.916667,1.54
+ Chantemerle-lès-Grignan ,CHANTEMERLE LES GRIGNAN ,26230,26073,82,44.4,4.833333,1.55
+ La Chapelle-en-Vercors ,LA CHAPELLE EN VERCORS,26420,26074,82,44.966667,5.416667,1.46
+ La Charce ,LA CHARCE ,26470,26075,82,44.466667,5.45,1.63
+ Charens ,CHARENS ,26310,26076,82,44.55,5.516667,1.97
+ Charmes-sur-l'Herbasse ,CHARMES SUR L HERBASSE,26260,26077,82,45.133333,5.016667,1.67
+ Charols ,CHAROLS ,26450,26078,82,44.583333,4.95,1.44
+ Charpey ,CHARPEY ,26300,26079,82,44.933333,5.1,0.9
+ Chastel-Arnaud ,CHASTEL ARNAUD ,26340,26080,82,44.666667,5.2,0.77
+ Châteaudouble ,CHATEAUDOUBLE ,26120,26081,82,44.9,5.1,1.25
+ Châteauneuf-de-Bordette ,CHATEAUNEUF DE BORDETTE ,26110,26082,82,44.333333,5.183333,1.4
+ Châteauneuf-de-Galaure ,CHATEAUNEUF DE GALAURE ,26330,26083,82,45.216667,4.95,1.99
+ Châteauneuf-du-Rhône ,CHATEAUNEUF DU RHONE ,26780,26085,82,44.483333,4.716667,2.15
+ Châtillon-en-Diois ,CHATILLON EN DIOIS ,26410,26086,82,44.683333,5.466667,1.72
+ Châtillon-Saint-Jean ,CHATILLON SAINT JEAN ,26750,26087,82,45.083333,5.133333,1.48
+ Chatuzange-le-Goubet ,CHATUZANGE LE GOUBET ,26300,26088,82,45,5.083333,1.16
+ Chaudebonne ,CHAUDEBONNE ,26110,26089,82,44.466667,5.233333,1.23
+ La Chaudière ,LA CHAUDIERE ,26340,26090,82,44.633333,5.216667,0.62
+ Chauvac ,CHAUVAC ,26510,26091,82,44.316667,5.516667,1.97
+ Chavannes ,CHAVANNES ,26260,26092,82,45.083333,4.85,2.4
+ Clansayes ,CLANSAYES ,26130,26093,82,44.366667,4.8,1.72
+ Claveyson ,CLAVEYSON ,26240,26094,82,45.183333,4.933333,1.86
+ Cléon-d'Andran ,CLEON D ANDRAN ,26450,26095,82,44.616667,4.933333,1.04
+ Clérieux ,CLERIEUX ,26260,26096,82,45.083333,4.966667,1.48
+ Cliousclat ,CLIOUSCLAT ,26270,26097,82,44.716667,4.833333,1.55
+ Cobonne ,COBONNE ,26400,26098,82,44.766667,5.083333,0.47
+ Colonzelle ,COLONZELLE ,26230,26099,82,44.4,4.916667,1.15
+ Combovin ,COMBOVIN ,26120,26100,82,44.866667,5.083333,0.94
+ Comps ,COMPS ,26220,26101,82,44.533333,5.116667,0.68
+ Condillac ,CONDILLAC ,26740,26102,82,44.633333,4.816667,1.64
+ Cornillac ,CORNILLAC ,26510,26104,82,44.45,5.383333,1.29
+ Cornillon-sur-l'Oule ,CORNILLON SUR L OULE,26510,26105,82,44.466667,5.366667,1.2
+ La Coucourde ,LA COUCOURDE ,26740,26106,82,44.65,4.783333,1.81
+ Crépol ,CREPOL ,26350,26107,82,45.183333,5.066667,1.86
+ Crest ,CREST ,26400,26108,82,44.733333,5.033333,0.52
+ Creyers ,CREYERS ,26410,26109,82,44.683333,5.55,2.15
+ Crozes-Hermitage ,CROZES HERMITAGE ,26600,26110,82,45.083333,4.833333,1.55
+ Crupies ,CRUPIES ,26460,26111,82,44.566667,5.166667,0.51
+ Curnier ,CURNIER ,26110,26112,82,44.383333,5.233333,1.21
+ Die ,DIE ,26150,26113,82,44.75,5.366667,1.2
+ Dieulefit ,DIEULEFIT ,26220,26114,82,44.516667,5.066667,1.39
+ Divajeu ,DIVAJEU ,26400,26115,82,44.7,5.016667,0.61
+ Donzère ,DONZERE ,26290,26116,82,44.45,4.716667,2.15
+ Échevis ,ECHEVIS ,26190,26117,82,45.016667,5.383333,1.54
+ Épinouze ,EPINOUZE ,26210,26118,82,45.316667,4.916667,2.37
+ Érôme ,EROME ,26600,26119,82,45.116667,4.816667,1.64
+ Espeluche ,ESPELUCHE ,26780,26121,82,44.516667,4.816667,1.64
+ Espenel ,ESPENEL ,26340,26122,82,44.683333,5.233333,0.51
+ Establet ,ESTABLET ,26470,26123,82,44.516667,5.45,1.63
+ Étoile-sur-Rhône ,ETOILE SUR RHONE ,26800,26124,82,44.833333,4.9,1.21
+ Eurre ,EURRE ,26400,26125,82,44.766667,4.983333,0.82
+ Eygalayes ,EYGALAYES ,26560,26126,82,44.233333,5.616667,2.49
+ Eygaliers ,EYGALIERS ,26170,26127,82,44.233333,5.283333,1.79
+ Eymeux ,EYMEUX ,26730,26129,82,45.083333,5.166667,1.48
+ Eyroles ,EYROLES ,26110,26130,82,44.416667,5.216667,1.08
+ Eyzahut ,EYZAHUT ,26160,26131,82,44.566667,5.016667,1.14
+ Fay-le-Clos ,FAY LE CLOS ,26240,26133,82,45.216667,4.916667,1.99
+ Ferrassières ,FERRASSIERES ,26570,26135,82,44.133333,5.483333,2.17
+ Francillon-sur-Roubion ,FRANCILLON SUR ROUBION ,26400,26137,82,44.616667,5.083333,1.27
+ La Garde-Adhémar ,LA GARDE ADHEMAR ,26700,26138,82,44.4,4.75,1.98
+ Génissieux ,GENISSIEUX ,26750,26139,82,45.083333,5.083333,1.48
+ Geyssans ,GEYSSANS ,26750,26140,82,45.133333,5.1,1.67
+ Gigors-et-Lozeron ,GIGORS ET LOZERON ,26400,26141,82,44.8,5.133333,1.1
+ Glandage ,GLANDAGE ,26410,26142,82,44.683333,5.6,2.4
+ Le Grand Serre ,LE GRAND SERRE ,26530,26143,82,45.266667,5.1,2.18
+ Grâne ,GRANE ,26400,26144,82,44.733333,4.916667,1.45
+ Les Granges-Gontardes ,LES GRANGES GONTARDES ,26290,26145,82,44.416667,4.766667,1.9
+ Grignan ,GRIGNAN ,26230,26146,82,44.416667,4.9,1.21
+ Gumiane ,GUMIANE ,26470,26147,82,44.516667,5.25,1.97
+ Hauterives ,HAUTERIVES ,26390,26148,82,45.25,5.033333,2.11
+ Hostun ,HOSTUN ,26730,26149,82,45.033333,5.2,1.28
+ Izon-la-Bruisse ,IZON LA BRUISSE ,26560,26150,82,44.25,5.6,2.4
+ Jansac ,JANSAC ,26310,26151,82,44.65,5.383333,1.52
+ Jonchères ,JONCHERES ,26310,26152,82,44.566667,5.4,1.37
+ Laborel ,LABOREL ,26560,26153,82,44.283333,5.6,2.4
+ Lachau ,LACHAU ,26560,26154,82,44.233333,5.65,2.66
+ Lapeyrouse-Mornay ,LAPEYROUSE MORNAY ,26210,26155,82,45.316667,5,2.37
+ Larnage ,LARNAGE ,26600,26156,82,45.083333,4.866667,1.48
+ La Laupie ,LA LAUPIE ,26740,26157,82,44.6,4.833333,1.55
+ Laux-Montaux ,LAUX MONTAUX ,26510,26158,82,44.316667,5.55,2.15
+ Laval-d'Aix ,LAVAL D AIX ,26150,26159,82,44.716667,5.433333,1.6
+ Laveyron ,LAVEYRON ,26240,26160,82,45.2,4.833333,1.92
+ Lens-Lestang ,LENS LESTANG ,26210,26162,82,45.283333,5.033333,2.24
+ Léoncel ,LEONCEL ,26190,26163,82,44.9,5.2,1.49
+ Lesches-en-Diois ,LESCHES EN DIOIS ,26310,26164,82,44.6,5.533333,2.06
+ Livron-sur-Drôme ,LIVRON SUR DROME ,26250,26165,82,44.766667,4.85,1.47
+ Loriol-sur-Drôme ,LORIOL SUR DROME ,26270,26166,82,44.75,4.816667,1.64
+ Lus-la-Croix-Haute ,LUS LA CROIX HAUTE,26620,26168,82,44.666667,5.7,2.92
+ Malissard ,MALISSARD ,26120,26170,82,44.9,4.966667,1.03
+ Manas ,MANAS ,26160,26171,82,44.6,4.983333,0.92
+ Manthes ,MANTHES ,26210,26172,82,45.3,5,2.31
+ Marches ,MARCHES ,26300,26173,82,44.983333,5.1,1.09
+ Margès ,MARGES ,26260,26174,82,45.15,5.05,1.73
+ Marignac-en-Diois ,MARIGNAC EN DIOIS ,26150,26175,82,44.8,5.333333,1.03
+ Marsanne ,MARSANNE ,26740,26176,82,44.65,4.866667,1.86
+ Menglon ,MENGLON ,26410,26178,82,44.666667,5.466667,1.72
+ Mercurol ,MERCUROL ,26600,26179,82,45.066667,4.9,1.41
+ Mérindol-les-Oliviers ,MERINDOL LES OLIVIERS ,26170,26180,82,44.266667,5.166667,1.66
+ Mévouillon ,MEVOUILLON ,26560,26181,82,44.233333,5.483333,1.8
+ Mirabel-aux-Baronnies ,MIRABEL AUX BARONNIES ,26110,26182,82,44.3,5.1,1.53
+ Mirabel-et-Blacons ,MIRABEL ET BLACONS ,26400,26183,82,44.716667,5.116667,0.69
+ Mirmande ,MIRMANDE ,26270,26185,82,44.683333,4.833333,1.55
+ Miscon ,MISCON ,26310,26186,82,44.633333,5.533333,2.06
+ Molières-Glandaz ,MOLIERES GLANDAZ ,26150,26187,82,44.733333,5.4,1.37
+ Mollans-sur-Ouvèze ,MOLLANS SUR OUVEZE ,26170,26188,82,44.233333,5.2,1.79
+ Montauban-sur-l'Ouvèze ,MONTAUBAN SUR L OUVEZE,26170,26189,82,44.266667,5.5,1.98
+ Montaulieu ,MONTAULIEU ,26110,26190,82,44.35,5.216667,1.34
+ Montboucher-sur-Jabron ,MONTBOUCHER SUR JABRON ,26740,26191,82,44.55,4.8,1.72
+ Montbrison ,MONTBRISON ,26770,26192,82,44.441667,5.016667,0.99
+ Montbrun-les-Bains ,MONTBRUN LES BAINS ,26570,26193,82,44.183333,5.433333,1.98
+ Montchenu ,MONTCHENU ,26350,26194,82,45.2,5.033333,1.92
+ Montclar-sur-Gervanne ,MONTCLAR SUR GERVANNE ,26400,26195,82,44.75,5.15,1.03
+ Montéléger ,MONTELEGER ,26760,26196,82,44.866667,4.933333,1.04
+ Montélier ,MONTELIER ,26120,26197,82,44.933333,5.033333,0.91
+ Montélimar ,MONTELIMAR ,26200,26198,82,44.566667,4.75,1.98
+ Montfroc ,MONTFROC ,26560,26200,82,44.183333,5.633333,2.58
+ Montguers ,MONTGUERS ,26170,26201,82,44.283333,5.45,1.63
+ Montjoux ,MONTJOUX ,26220,26202,82,44.5,5.1,0.76
+ Montjoyer ,MONTJOYER ,26230,26203,82,44.466667,4.85,1.47
+ Montlaur-en-Diois ,MONTLAUR EN DIOIS ,26310,26204,82,44.633333,5.416667,1.46
+ Montmaur-en-Diois ,MONTMAUR EN DIOIS ,26150,26205,82,44.683333,5.383333,1.36
+ Montmeyran ,MONTMEYRAN ,26120,26206,82,44.833333,4.983333,1
+ Montmiral ,MONTMIRAL ,26750,26207,82,45.15,5.15,1.73
+ Montoison ,MONTOISON ,26800,26208,82,44.783333,4.916667,1.24
+ Montréal-les-Sources ,MONTREAL LES SOURCES ,26510,26209,82,44.4,5.3,1.15
+ Montrigaud ,MONTRIGAUD ,26350,26210,82,45.216667,5.133333,1.99
+ Montségur-sur-Lauzon ,MONTSEGUR SUR LAUZON ,26130,26211,82,44.35,4.866667,1.63
+ Montvendre ,MONTVENDRE ,26120,26212,82,44.866667,5.016667,0.64
+ Moras-en-Valloire ,MORAS EN VALLOIRE ,26210,26213,82,45.283333,4.983333,2.24
+ Mornans ,MORNANS ,26460,26214,82,44.6,5.116667,0.84
+ La Motte-Chalançon ,LA MOTTE CHALANCON ,26470,26215,82,44.483333,5.383333,1.29
+ La Motte-de-Galaure ,LA MOTTE DE GALAURE,26240,26216,82,45.2,4.916667,1.92
+ La Motte-Fanjas ,LA MOTTE FANJAS ,26190,26217,82,45.05,5.266667,1.35
+ Mours-Saint-Eusèbe ,MOURS SAINT EUSEBE ,26540,26218,82,45.066667,5.05,1.41
+ Mureils ,MUREILS ,26240,26219,82,45.2,4.933333,1.92
+ Nyons ,NYONS ,26110,26220,82,44.366667,5.133333,1.28
+ Omblèze ,OMBLEZE ,26400,26221,82,44.866667,5.216667,2.22
+ Orcinas ,ORCINAS ,26220,26222,82,44.533333,5.133333,0.82
+ Oriol-en-Royans ,ORIOL EN ROYANS ,26190,26223,82,45,5.283333,1.16
+ Ourches ,OURCHES ,26120,26224,82,44.8,5.033333,1.26
+ Parnans ,PARNANS ,26750,26225,82,45.1,5.15,1.54
+ Le Pègue ,LE PEGUE ,26770,26226,82,44.433333,5.05,1.02
+ Pelonne ,PELONNE ,26510,26227,82,44.383333,5.383333,1.29
+ Pennes-le Sec ,PENNES LE SEC ,26340,26228,82,44.633333,5.316667,0.95
+ La Penne-sur-l'Ouvèze ,LA PENNE SUR L,26170,26229,82,44.25,5.216667,1.72
+ Peyrins ,PEYRINS ,26380,26231,82,45.083333,5.05,1.48
+ Peyrus ,PEYRUS ,26120,26232,82,44.916667,5.1,1.35
+ Piégon ,PIEGON ,26110,26233,82,44.3,5.133333,1.53
+ Piégros-la-Clastre ,PIEGROS LA CLASTRE ,26400,26234,82,44.683333,5.1,0.72
+ Pierrelatte ,PIERRELATTE ,26700,26235,82,44.383333,4.7,2.24
+ Pierrelongue ,PIERRELONGUE ,26170,26236,82,44.25,5.216667,1.72
+ Le Pilhon ,LE PILHON ,26310,26237,82,44.6,5.6,2.4
+ Les Pilles ,LES PILLES ,26110,26238,82,44.383333,5.2,1.21
+ Plaisians ,PLAISIANS ,26170,26239,82,44.233333,5.316667,1.79
+ Plan-de-Baix ,PLAN DE BAIX ,26400,26240,82,44.816667,5.166667,1.48
+ Le Poët-Célard ,LE POET CELARD ,26460,26241,82,44.6,5.1,1.13
+ Le Poët-en-Percip ,LE POET EN PERCIP,26170,26242,82,44.25,5.383333,1.72
+ Le Poët-Laval ,LE POET LAVAL ,26160,26243,82,44.533333,5.016667,1.17
+ Le Poët-Sigillat ,LE POET SIGILLAT ,26110,26244,82,44.366667,5.316667,1.34
+ Ponet-et-Saint-Auban ,PONET ET SAINT AUBAN,26150,26246,82,44.783333,5.316667,0.94
+ Ponsas ,PONSAS ,26240,26247,82,45.166667,4.85,1.79
+ Pontaix ,PONTAIX ,26150,26248,82,44.75,5.266667,1.04
+ Pont-de-Barret ,PONT DE BARRET ,26160,26249,82,44.6,5.016667,1.31
+ Pont-de-l'Isère ,PONT DE L ISERE,26600,26250,82,45,4.883333,1.39
+ Portes-en-Valdaine ,PORTES EN VALDAINE ,26160,26251,82,44.516667,4.9,1.21
+ Portes-lès-Valence ,PORTES LES VALENCE ,26800,26252,82,44.866667,4.883333,1.29
+ Poyols ,POYOLS ,26310,26253,82,44.6,5.416667,1.46
+ Pradelle ,PRADELLE ,26340,26254,82,44.6,5.3,1.03
+ Propiac ,PROPIAC ,26170,26256,82,44.283333,5.2,1.6
+ Puygiron ,PUYGIRON ,26160,26257,82,44.533333,4.85,1.47
+ Puy-Saint-Martin ,PUY SAINT MARTIN ,26450,26258,82,44.633333,4.966667,1.14
+ Ratières ,RATIERES ,26330,26259,82,45.183333,4.966667,1.86
+ Ravel-et-Ferriers ,RAVEL ET FERRIERS ,26410,26260,82,44.666667,5.533333,2.06
+ Réauville ,REAUVILLE ,26230,26261,82,44.433333,4.933333,1.32
+ Reilhanette ,REILHANETTE ,26570,26263,82,44.166667,5.416667,2.04
+ Rémuzat ,REMUZAT ,26510,26264,82,44.4,5.35,1.15
+ Rimon-et-Savel ,RIMON ET SAVEL ,26340,26266,82,44.666667,5.3,0.86
+ Rioms ,RIOMS ,26170,26267,82,44.266667,5.45,1.66
+ Rochebaudin ,ROCHEBAUDIN ,26160,26268,82,44.583333,5.033333,1.44
+ Rochebrune ,ROCHEBRUNE ,26110,26269,82,44.333333,5.25,1.4
+ Rochechinard ,ROCHECHINARD ,26190,26270,82,45.033333,5.25,1.28
+ La Roche-de-Glun ,LA ROCHE DE GLUN,26600,26271,82,45,4.85,1.47
+ Rochefort-Samson ,ROCHEFORT SAMSON ,26300,26273,82,44.966667,5.15,1.03
+ Rochefourchat ,ROCHEFOURCHAT ,26340,26274,82,44.6,5.25,0.81
+ Rochegude ,ROCHEGUDE ,26790,26275,82,44.25,4.833333,1.72
+ La Roche-sur-Grane ,LA ROCHE SUR GRANE,26400,26277,82,44.683333,4.933333,1.38
+ La Roche-sur-le-Buis ,LA ROCHE SUR LE,26170,26278,82,44.283333,5.316667,1.6
+ La Rochette-du-Buis ,LA ROCHETTE DU BUIS,26170,26279,82,44.266667,5.416667,1.66
+ La Rochette-sur-Crest ,LA ROCHETTE SUR CREST,26400,26280,82,44.783333,5.05,0.53
+ Romans-sur-Isère ,ROMANS SUR ISERE ,26100,26281,82,45.05,5.05,1.35
+ Rottier ,ROTTIER ,26470,26283,82,44.466667,5.416667,1.46
+ Roussas ,ROUSSAS ,26230,26284,82,44.433333,4.8,1.72
+ Rousset-les-Vignes ,ROUSSET LES VIGNES ,26770,26285,82,44.416667,5.066667,1.24
+ Roussieux ,ROUSSIEUX ,26510,26286,82,44.333333,5.466667,1.72
+ Roynac ,ROYNAC ,26450,26287,82,44.633333,4.933333,1.04
+ Sahune ,SAHUNE ,26510,26288,82,44.416667,5.266667,1.35
+ Saillans ,SAILLANS ,26340,26289,82,44.7,5.183333,1.17
+ Saint-Agnan-en-Vercors ,SAINT AGNAN EN VERCORS,26420,26290,82,44.933333,5.416667,1.46
+ Saint-Andéol ,SAINT ANDEOL ,26150,26291,82,44.8,5.266667,1.19
+ Saint-Auban-sur-l'Ouvèze ,SAINT AUBAN SUR L,26170,26292,82,44.283333,5.416667,1.6
+ Saint-Avit ,SAINT AVIT ,26330,26293,82,45.2,4.966667,1.92
+ Saint-Bardoux ,SAINT BARDOUX ,26260,26294,82,45.083333,5,1.48
+ Saint-Barthélemy-de-Vals ,SAINT BARTHELEMY DE VALS,26240,26295,82,45.166667,4.866667,1.79
+ Saint-Benoît-en-Diois ,SAINT BENOIT EN DIOIS,26340,26296,82,44.666667,5.283333,0.77
+ Saint-Bonnet-de-Valclérieux ,SAINT BONNET DE VALCLERIEUX,26350,26297,82,45.2,5.15,1.92
+ Saint-Christophe-et-le-Laris ,SAINT CHRISTOPHE ET LE,26350,26298,82,45.216667,5.066667,1.99
+ Sainte-Croix ,SAINTE CROIX ,26150,26299,82,44.766667,5.283333,0.79
+ Saint-Dizier-en-Diois ,SAINT DIZIER EN DIOIS,26310,26300,82,44.516667,5.483333,1.8
+ Saint-Donat-sur-l'Herbasse ,SAINT DONAT SUR L,26260,26301,82,45.116667,5,1.6
+ Sainte-Euphémie-sur-Ouvèze ,SAINTE EUPHEMIE SUR OUVEZE,26170,26303,82,44.3,5.383333,1.53
+ Saint-Ferréol-Trente-Pas ,SAINT FERREOL TRENTE PAS,26110,26304,82,44.433333,5.216667,1.02
+ Saint-Gervais-sur-Roubion ,SAINT GERVAIS SUR ROUBION,26160,26305,82,44.566667,4.883333,1.29
+ Sainte-Jalle ,SAINTE JALLE ,26110,26306,82,44.333333,5.283333,1.4
+ Saint-Jean-en-Royans ,SAINT JEAN EN ROYANS,26190,26307,82,45.016667,5.3,1.22
+ Saint-Julien-en-Quint ,SAINT JULIEN EN QUINT,26150,26308,82,44.833333,5.3,1.21
+ Saint-Julien-en-Vercors ,SAINT JULIEN EN VERCORS,26420,26309,82,45.05,5.45,1.63
+ Saint-Laurent-d'Onay ,SAINT LAURENT D ONAY,26350,26310,82,45.183333,5.1,1.86
+ Saint-Laurent-en-Royans ,SAINT LAURENT EN ROYANS,26190,26311,82,45.033333,5.333333,1.28
+ Saint-Marcel-lès-Sauzet ,SAINT MARCEL LES SAUZET,26740,26312,82,44.583333,4.8,1.72
+ Saint-Marcel-lès-Valence ,SAINT MARCEL LES VALENCE,26320,26313,82,44.966667,4.95,1.03
+ Saint-Martin-d'Août ,SAINT MARTIN D AOUT,26330,26314,82,45.216667,4.983333,1.99
+ Saint-Martin-en-Vercors ,SAINT MARTIN EN VERCORS,26420,26315,82,45.016667,5.45,1.63
+ Saint-Martin-le-Colonel ,SAINT MARTIN LE COLONEL,26190,26316,82,44.983333,5.283333,1.09
+ Saint-Maurice-sur-Eygues ,SAINT MAURICE SUR EYGUES,26110,26317,82,44.3,5.016667,2.25
+ Saint-May ,SAINT MAY ,26510,26318,82,44.433333,5.316667,1.02
+ Saint-Michel-sur-Savasse ,SAINT MICHEL SUR SAVASSE,26750,26319,82,45.15,5.116667,1.73
+ Saint-Nazaire-en-Royans ,SAINT NAZAIRE EN ROYANS,26190,26320,82,45.066667,5.25,1.41
+ Saint-Nazaire-le-Désert ,SAINT NAZAIRE LE DESERT,26340,26321,82,44.566667,5.283333,1.34
+ Saint-Pantaléon-les-Vignes ,SAINT PANTALEON LES VIGNES,26770,26322,82,44.4,5.033333,1.15
+ Saint-Paul-lès-Romans ,SAINT PAUL LES ROMANS,26750,26323,82,45.066667,5.133333,1.41
+ Saint-Paul-Trois-Châteaux ,SAINT PAUL TROIS CHATEAUX,26130,26324,82,44.35,4.766667,1.9
+ Saint-Rambert-d'Albon ,SAINT RAMBERT D ALBON,26140,26325,82,45.283333,4.816667,2.24
+ Saint-Restitut ,SAINT RESTITUT ,26130,26326,82,44.333333,4.783333,1.81
+ Saint-Roman ,SAINT ROMAN ,26410,26327,82,44.683333,5.433333,1.68
+ Saint-Sauveur-en-Diois ,SAINT SAUVEUR EN DIOIS,26340,26328,82,44.683333,5.166667,1.29
+ Saint-Sorlin-en-Valloire ,SAINT SORLIN EN VALLOIRE,26210,26330,82,45.283333,4.95,2.24
+ Saint-Thomas-en-Royans ,SAINT THOMAS EN ROYANS,26190,26331,82,45.05,5.3,1.35
+ Saint-Uze ,SAINT UZE ,26240,26332,82,45.183333,4.866667,1.86
+ Saint-Vallier ,SAINT VALLIER ,26240,26333,82,45.166667,4.816667,1.79
+ Salettes ,SALETTES ,26160,26334,82,44.566667,4.966667,0.86
+ Salles-sous-Bois ,SALLES SOUS BOIS ,26770,26335,82,44.45,4.933333,1.47
+ Saou ,SAOU ,26400,26336,82,44.65,5.066667,0.89
+ Saulce-sur-Rhône ,SAULCE SUR RHONE ,26270,26337,82,44.7,4.783333,1.81
+ Sauzet ,SAUZET ,26740,26338,82,44.6,4.816667,1.64
+ Savasse ,SAVASSE ,26740,26339,82,44.6,4.783333,1.81
+ Séderon ,SEDERON ,26560,26340,82,44.2,5.533333,2.06
+ Serves-sur-Rhône ,SERVES SUR RHONE ,26600,26341,82,45.133333,4.816667,1.67
+ Solérieux ,SOLERIEUX ,26130,26342,82,44.35,4.833333,1.55
+ Souspierre ,SOUSPIERRE ,26160,26343,82,44.533333,4.966667,0.86
+ Soyans ,SOYANS ,26400,26344,82,44.633333,5.016667,1.13
+ Suze-la-Rousse ,SUZE LA ROUSSE ,26790,26345,82,44.283333,4.85,1.6
+ Suze ,SUZE ,26400,26346,82,44.766667,5.116667,0.75
+ Tain-l'Hermitage ,TAIN L HERMITAGE ,26600,26347,82,45.066667,4.85,1.47
+ Taulignan ,TAULIGNAN ,26770,26348,82,44.45,4.983333,0.96
+ Tersanne ,TERSANNE ,26390,26349,82,45.216667,5.016667,1.99
+ Teyssières ,TEYSSIERES ,26220,26350,82,44.45,5.133333,1.66
+ Les Tonils ,LES TONILS ,26460,26351,82,44.583333,5.2,1.1
+ La Touche ,LA TOUCHE ,26160,26352,82,44.5,4.883333,1.29
+ Triors ,TRIORS ,26750,26355,82,45.1,5.116667,1.54
+ Truinas ,TRUINAS ,26460,26356,82,44.566667,5.083333,1.36
+ Tulette ,TULETTE ,26790,26357,82,44.283333,4.933333,1.6
+ Upie ,UPIE ,26120,26358,82,44.8,4.95,1.76
+ Vachères-en-Quint ,VACHERES EN QUINT ,26150,26359,82,44.783333,5.266667,1.08
+ Valaurie ,VALAURIE ,26230,26360,82,44.416667,4.816667,1.64
+ Valdrôme ,VALDROME ,26310,26361,82,44.5,5.583333,2.32
+ Valence ,VALENCE ,26000,26362,82,44.933333,4.9,1.21
+ Valouse ,VALOUSE ,26110,26363,82,44.466667,5.2,1.17
+ Vassieux-en-Vercors ,VASSIEUX EN VERCORS ,26420,26364,82,44.883333,5.366667,1.79
+ Veaunes ,VEAUNES ,26600,26366,82,45.083333,4.916667,1.48
+ Venterol ,VENTEROL ,26110,26367,82,44.383333,5.1,1.21
+ Vercheny ,VERCHENY ,26340,26368,82,44.716667,5.25,0.85
+ Verclause ,VERCLAUSE ,26510,26369,82,44.383333,5.433333,1.54
+ Vercoiran ,VERCOIRAN ,26170,26370,82,44.3,5.333333,1.53
+ Véronne ,VERONNE ,26340,26371,82,44.75,5.216667,1.42
+ Vers-sur-Méouge ,VERS SUR MEOUGE ,26560,26372,82,44.233333,5.55,2.15
+ Vesc ,VESC ,26220,26373,82,44.516667,5.15,0.94
+ Villebois-les-Pins ,VILLEBOIS LES PINS ,5700,26374,82,44.316667,5.6,2.4
+ Villefranche-le-Château ,VILLEFRANCHE LE CHATEAU ,26560,26375,82,44.216667,5.516667,1.97
+ Villeperdrix ,VILLEPERDRIX ,26510,26376,82,44.45,5.283333,1.3
+ Vinsobres ,VINSOBRES ,26110,26377,82,44.333333,5.066667,1.59
+ Volvent ,VOLVENT ,26470,26378,82,44.566667,5.35,1.11
+ Gervans ,GERVANS ,26600,26380,82,45.1,4.833333,1.55
+ Jaillans ,JAILLANS ,26300,26381,82,45.033333,5.183333,1.78
+ Saint-Vincent-la-Commanderie ,SAINT VINCENT LA COMMANDERIE,26300,26382,82,44.933333,5.116667,0.9
+ Fauconnières ,FAUCONNIERES ,26120,26903,82,44.95,5,1.25
+ La Vacherie ,LA VACHERIE ,26190,26905,82,44.883333,5.183333,1.79
+ L'Écancière ,L ECANCIERE ,26730,26906,82,45.05,5.15,1.35
+ Parlanges ,PARLANGES ,26120,26911,82,44.933333,4.983333,1.14
+ Aclou ,ACLOU ,27800,27001,23,49.166667,0.7,1
+ Acon ,ACON ,27570,27002,23,48.766667,1.1,2.45
+ Acquigny ,ACQUIGNY ,27400,27003,23,49.166667,1.183333,0.84
+ Aigleville ,AIGLEVILLE ,27120,27004,23,49,1.416667,1.33
+ Aizier ,AIZIER ,27500,27006,23,49.433333,0.633333,2.05
+ Ajou ,AJOU ,27410,27007,23,48.983333,0.783333,1.48
+ Alizay ,ALIZAY ,27460,27008,23,49.316667,1.183333,1.26
+ Ambenay ,AMBENAY ,27250,27009,23,48.833333,0.733333,2
+ Amécourt ,AMECOURT ,27140,27010,23,49.383333,1.733333,2.35
+ Amfreville-la-Campagne ,AMFREVILLE LA CAMPAGNE ,27370,27011,23,49.216667,0.95,0.59
+ Amfreville-les-Champs ,AMFREVILLE LES CHAMPS ,27380,27012,23,49.316667,1.316667,1.26
+ Amfreville-sous-les-Monts ,AMFREVILLE SOUS LES MONTS,27590,27013,23,49.3,1.266667,1.15
+ Amfreville-sur-Iton ,AMFREVILLE SUR ITON ,27400,27014,23,49.15,1.15,0.62
+ Andé ,ANDE ,27430,27015,23,49.233333,1.233333,0.96
+ Les Andelys ,LES ANDELYS ,27700,27016,23,49.25,1.416667,1.33
+ Angerville-la-Campagne ,ANGERVILLE LA CAMPAGNE ,27930,27017,23,48.991667,1.166667,-1
+ Appeville-Annebault ,APPEVILLE ANNEBAULT ,27290,27018,23,49.316667,0.65,1.26
+ Armentières-sur-Avre ,ARMENTIERES SUR AVRE ,27820,27019,23,48.67957,0.7847,-1
+ Arnières-sur-Iton ,ARNIERES SUR ITON ,27180,27020,23,48.983333,1.116667,0.99
+ Asnières ,ASNIERES ,27260,27021,23,49.2,0.383333,2.03
+ Aubevoye ,AUBEVOYE ,27940,27022,23,49.15,1.333333,1.05
+ Aulnay-sur-Iton ,AULNAY SUR ITON ,27180,27023,23,49,1.05,0.88
+ Authevernes ,AUTHEVERNES ,27420,27026,23,49.216667,1.633333,2.03
+ Les Authieux ,LES AUTHIEUX ,27220,27027,23,48.9,1.233333,-1
+ Authou ,AUTHOU ,27290,27028,23,49.233333,0.7,1.04
+ Authouillet ,AUTHOUILLET ,27490,27029,23,49.1,1.283333,1.46
+ Auvergny ,AUVERGNY ,27250,27030,23,48.883333,0.733333,1.66
+ Aviron ,AVIRON ,27930,27031,23,49.05,1.116667,0.86
+ Avrilly ,AVRILLY ,27240,27032,23,48.933333,1.15,1.59
+ Bacquepuis ,BACQUEPUIS ,27930,27033,23,49.083333,1.05,1.88
+ Bacqueville ,BACQUEVILLE ,27440,27034,23,49.316667,1.366667,1.26
+ Bailleul-la-Vallée ,BAILLEUL LA VALLEE ,27260,27035,23,49.2,0.433333,1.87
+ Barc ,BARC ,27170,27037,23,49.066667,0.816667,0.62
+ Les Barils ,LES BARILS ,27130,27038,23,48.733333,0.816667,2.67
+ Barneville-sur-Seine ,BARNEVILLE SUR SEINE ,27310,27039,23,49.383333,0.85,1.71
+ Barquet ,BARQUET ,27170,27040,23,49.05,0.866667,0.75
+ La Barre-en-Ouche ,LA BARRE EN OUCHE,27330,27041,23,48.95,0.666667,1.21
+ Les Baux-de-Breteuil ,LES BAUX DE BRETEUIL,27160,27043,23,48.883333,0.816667,1.66
+ Les Baux-Sainte-Croix ,LES BAUX SAINTE CROIX,27180,27044,23,48.966667,1.1,-1
+ Bazincourt-sur-Epte ,BAZINCOURT SUR EPTE ,27140,27045,23,49.316667,1.766667,2.46
+ Bazoques ,BAZOQUES ,27230,27046,23,49.166667,0.55,1.77
+ Beaubray ,BEAUBRAY ,27190,27047,23,48.916667,0.916667,1.44
+ Beauficel-en-Lyons ,BEAUFICEL EN LYONS ,27480,27048,23,49.4,1.533333,1.82
+ Beaumesnil ,BEAUMESNIL ,27410,27049,23,49.016667,0.716667,0.95
+ Beaumontel ,BEAUMONTEL ,27170,27050,23,49.083333,0.766667,1.09
+ Beaumont-le-Roger ,BEAUMONT LE ROGER ,27170,27051,23,49.083333,0.783333,0.81
+ Le Bec-Hellouin ,LE BEC HELLOUIN ,27800,27052,23,49.233333,0.716667,0.95
+ Le Bec-Thomas ,LE BEC THOMAS ,27370,27053,23,49.233333,0.983333,0.7
+ Bémécourt ,BEMECOURT ,27160,27054,23,48.85,0.883333,1.89
+ Bérengeville-la-Campagne ,BERENGEVILLE LA CAMPAGNE ,27110,27055,23,49.1,1.066667,1.75
+ Bernay ,BERNAY ,27300,27056,23,49.1,0.6,1.33
+ Bernienville ,BERNIENVILLE ,27180,27057,23,49.083333,1.033333,1.36
+ Bernières-sur-Seine ,BERNIERES SUR SEINE ,27700,27058,23,49.233333,1.35,1.11
+ Bernouville ,BERNOUVILLE ,27660,27059,23,49.3,1.7,2.25
+ Berthenonville ,BERTHENONVILLE ,27630,27060,23,49.183333,1.666667,2.14
+ Berthouville ,BERTHOUVILLE ,27800,27061,23,49.183333,0.633333,-1
+ Berville-en-Roumois ,BERVILLE EN ROUMOIS ,27520,27062,23,49.3,0.833333,1.15
+ Berville-la-Campagne ,BERVILLE LA CAMPAGNE ,27170,27063,23,49.033333,0.9,1.37
+ Berville-sur-Mer ,BERVILLE SUR MER ,27210,27064,23,49.433333,0.366667,2.08
+ Beuzeville ,BEUZEVILLE ,27210,27065,23,49.333333,0.35,2.14
+ Bézu-la-Forêt ,BEZU LA FORET ,27480,27066,23,49.416667,1.633333,2.03
+ Bézu-Saint-Éloi ,BEZU SAINT ELOI ,27660,27067,23,49.3,1.7,2.25
+ Bois-Anzeray ,BOIS ANZERAY ,27330,27068,23,48.916667,0.7,1.44
+ Bois-Arnault ,BOIS ARNAULT ,27250,27069,23,48.816667,0.733333,2.11
+ Boisemont ,BOISEMONT ,27150,27070,23,49.283333,1.5,1.6
+ Le Bois-Hellain ,LE BOIS HELLAIN ,27260,27071,23,49.266667,0.383333,2.03
+ Bois-Jérôme-Saint-Ouen ,BOIS JEROME SAINT OUEN,27620,27072,23,49.116667,1.533333,1.7
+ Bois-le-Roi ,BOIS LE ROI ,27220,27073,23,48.866667,1.35,1.78
+ Boisney ,BOISNEY ,27800,27074,23,49.15,0.65,1.16
+ Bois-Normand-près-Lyre ,BOIS NORMAND PRES LYRE,27330,27075,23,48.9,0.7,1.55
+ Boisset-les-Prévanches ,BOISSET LES PREVANCHES ,27120,27076,23,48.966667,1.333333,1.1
+ Boissey-le-Châtel ,BOISSEY LE CHATEL ,27520,27077,23,49.266667,0.783333,1.13
+ La Boissière ,LA BOISSIERE ,27220,27078,23,48.95,1.366667,1.44
+ Boissy-Lamberville ,BOISSY LAMBERVILLE ,27300,27079,23,49.166667,0.583333,1.38
+ Boissy-sur-Damville ,BOISSY SUR DAMVILLE ,27240,27080,23,48.833333,1.116667,2
+ Boncourt ,BONCOURT ,27120,27081,23,49.033333,1.3,1.05
+ Bonneville-Aptot ,BONNEVILLE APTOT ,27290,27083,23,49.25,0.766667,1.83
+ Bosc-Bénard-Commin ,BOSC BENARD COMMIN ,27520,27084,23,49.316667,0.833333,1.26
+ Bosc-Bénard-Crescy ,BOSC BENARD CRESCY ,27310,27085,23,49.316667,0.8,1.26
+ Boscherville ,BOSCHERVILLE ,27520,27086,23,49.283333,0.883333,1.39
+ Le Bosc-Morel ,LE BOSC MOREL ,27270,27087,23,49,0.566667,1.44
+ Bosc-Renoult-en-Ouche ,BOSC RENOULT EN OUCHE,27330,27088,23,48.95,0.7,1.21
+ Bosgouet ,BOSGOUET ,27310,27091,23,49.35,0.85,1.49
+ Bosguérard-de-Marcouville ,BOSGUERARD DE MARCOUVILLE ,27520,27092,23,49.266667,0.833333,0.92
+ Bosnormand ,BOSNORMAND ,27670,27093,23,49.283333,0.9,1.04
+ Bosquentin ,BOSQUENTIN ,27480,27094,23,49.416667,1.583333,1.94
+ Bosrobert ,BOSROBERT ,27800,27095,23,49.233333,0.75,0.93
+ Les Bottereaux ,LES BOTTEREAUX ,27250,27096,23,48.883333,0.666667,1.66
+ Bouafles ,BOUAFLES ,27700,27097,23,49.216667,1.383333,1.22
+ Bouchevilliers ,BOUCHEVILLIERS ,27150,27098,23,49.4,1.7,2.25
+ Le Boulay-Morin ,LE BOULAY MORIN ,27930,27099,23,49.083333,1.183333,0.57
+ Boulleville ,BOULLEVILLE ,27210,27100,23,49.366667,0.383333,2.03
+ Bouquelon ,BOUQUELON ,27500,27101,23,49.4,0.483333,1.82
+ Bouquetot ,BOUQUETOT ,27310,27102,23,49.366667,0.783333,1.6
+ Bourg-Achard ,BOURG ACHARD ,27310,27103,23,49.35,0.816667,1.49
+ Bourgthéroulde Infreville ,BOURGTHEROULDE INFREVILLE ,27520,27105,23,49.3,0.883333,1.4
+ Bourneville ,BOURNEVILLE ,27500,27107,23,49.383333,0.616667,1.71
+ Bourth ,BOURTH ,27580,27108,23,48.766667,0.816667,2.45
+ Bray ,BRAY ,27170,27109,23,49.1,0.85,0.52
+ Brestot ,BRESTOT ,27350,27110,23,49.35,0.683333,1.49
+ Brétigny ,BRETIGNY ,27800,27113,23,49.216667,0.675,-1
+ Breuilpont ,BREUILPONT ,27640,27114,23,48.966667,1.433333,1.38
+ Breux-sur-Avre ,BREUX SUR AVRE ,27570,27115,23,48.766667,1.083333,2.45
+ Brionne ,BRIONNE ,27800,27116,23,49.2,0.716667,0.95
+ Broglie ,BROGLIE ,27270,27117,23,49.016667,0.533333,1.54
+ Brosville ,BROSVILLE ,27930,27118,23,49.1,1.116667,1.11
+ Bueil ,BUEIL ,27730,27119,23,48.933333,1.45,1.5
+ Burey ,BUREY ,27190,27120,23,48.983333,0.95,0.99
+ Bus-Saint-Rémy ,BUS SAINT REMY ,27630,27121,23,49.15,1.616667,1.97
+ Cahaignes ,CAHAIGNES ,27420,27122,23,49.2,1.6,1.92
+ Caillouet-Orgeville ,CAILLOUET ORGEVILLE ,27120,27123,23,49,1.316667,1
+ Cailly-sur-Eure ,CAILLY SUR EURE ,27490,27124,23,49.116667,1.216667,1.13
+ Calleville ,CALLEVILLE ,27800,27125,23,49.2,0.766667,1
+ Campigny ,CAMPIGNY ,27500,27126,23,49.316667,0.55,1.49
+ Canappeville ,CANAPPEVILLE ,27400,27127,23,49.15,1.1,0.91
+ Cantiers ,CANTIERS ,27420,27128,23,49.233333,1.583333,1.87
+ Carsix ,CARSIX ,27300,27131,23,49.133333,0.666667,1.31
+ Caugé ,CAUGE ,27180,27132,23,49.016667,1.033333,0.76
+ Caumont ,CAUMONT ,27310,27133,23,49.366667,0.9,1.78
+ Cauverville-en-Roumois ,CAUVERVILLE EN ROUMOIS ,27350,27134,23,49.35,0.65,1.49
+ Cesseville ,CESSEVILLE ,27110,27135,23,49.183333,0.983333,0.53
+ Chaignes ,CHAIGNES ,27120,27136,23,49.016667,1.45,1.66
+ Chaise-Dieu-du-Theil ,CHAISE DIEU DU THEIL,27580,27137,23,48.766667,0.766667,2.45
+ Chamblac ,CHAMBLAC ,27270,27138,23,48.983333,0.55,1.49
+ Chambord ,CHAMBORD ,27250,27139,23,48.9,0.616667,2.07
+ Chambray ,CHAMBRAY ,27120,27140,23,49.083333,1.316667,1.34
+ Champ-Dolent ,CHAMP DOLENT ,27190,27141,23,48.966667,1.016667,1.1
+ Champenard ,CHAMPENARD ,27600,27142,23,49.1,1.333333,1.38
+ Champignolles ,CHAMPIGNOLLES ,27330,27143,23,48.966667,0.766667,1.4
+ Champigny-la-Futelaye ,CHAMPIGNY LA FUTELAYE ,27220,27144,23,48.866667,1.3,1.78
+ Chanteloup ,CHANTELOUP ,27240,27145,23,48.883333,1.016667,1.66
+ La Chapelle-Bayvel ,LA CHAPELLE BAYVEL ,27260,27146,23,49.266667,0.4,1.98
+ La Chapelle-Gauthier ,LA CHAPELLE GAUTHIER ,27270,27148,23,48.983333,0.466667,1.76
+ La Chapelle-Hareng ,LA CHAPELLE HARENG ,27230,27149,23,49.116667,0.416667,1.92
+ La Chapelle-Réanville ,LA CHAPELLE REANVILLE ,27950,27150,23,49.1,1.383333,1.22
+ Charleval ,CHARLEVAL ,27380,27151,23,49.366667,1.383333,1.6
+ Château-sur-Epte ,CHATEAU SUR EPTE ,27420,27152,23,49.2,1.666667,2.14
+ Chavigny-Bailleul ,CHAVIGNY BAILLEUL ,27220,27154,23,48.883333,1.2,1.66
+ Chennebrun ,CHENNEBRUN ,27820,27155,23,48.67941,0.7835,-1
+ Chéronvilliers ,CHERONVILLIERS ,27250,27156,23,48.783333,0.733333,2.34
+ Le Chesne ,LE CHESNE ,27160,27157,23,48.883333,0.95,1.66
+ Cierrey ,CIERREY ,27930,27158,23,49,1.266667,1.52
+ Cintray ,CINTRAY ,27160,27159,23,48.8,0.883333,2.22
+ Civières ,CIVIERES ,27630,27160,23,49.166667,1.583333,1.87
+ Claville ,CLAVILLE ,27180,27161,23,49.05,1.016667,1.09
+ Collandres-Quincarnon ,COLLANDRES QUINCARNON ,27190,27162,23,49,0.85,1.59
+ Colletot ,COLLETOT ,27500,27163,23,49.35,0.65,1.49
+ Combon ,COMBON ,27170,27164,23,49.1,0.883333,0.97
+ Conches-en-Ouche ,CONCHES EN OUCHE ,27190,27165,23,48.966667,0.933333,1.1
+ Condé-sur-Risle ,CONDE SUR RISLE ,27290,27167,23,49.316667,0.616667,1.79
+ Connelles ,CONNELLES ,27430,27168,23,49.25,1.266667,0.84
+ Cormeilles ,CORMEILLES ,27260,27170,23,49.25,0.383333,2.03
+ Le Cormier ,LE CORMIER ,27120,27171,23,48.975,1.308333,1.19
+ Corneuil ,CORNEUIL ,27240,27172,23,48.883333,1.141667,-1
+ Corneville-la-Fouquetière ,CORNEVILLE LA FOUQUETIERE ,27300,27173,23,49.066667,0.7,1.91
+ Corneville-sur-Risle ,CORNEVILLE SUR RISLE ,27500,27174,23,49.333333,0.616667,1.37
+ Corny ,CORNY ,27700,27175,23,49.283333,1.466667,1.49
+ Coudray ,COUDRAY ,27150,27176,23,49.333333,1.5,1.6
+ Coudres ,COUDRES ,27220,27177,23,48.866667,1.25,1.78
+ Courbépine ,COURBEPINE ,27300,27179,23,49.133333,0.566667,1.44
+ Courcelles-sur-Seine ,COURCELLES SUR SEINE ,27940,27180,23,49.183333,1.366667,1.16
+ Courdemanche ,COURDEMANCHE ,27320,27181,23,48.816667,1.283333,2.11
+ Courteilles ,COURTEILLES ,27130,27182,23,48.733333,1.016667,2.67
+ La Couture-Boussey ,LA COUTURE BOUSSEY ,27750,27183,23,48.9,1.4,1.55
+ Crasville ,CRASVILLE ,27400,27184,23,49.216667,1.083333,1.15
+ Crestot ,CRESTOT ,27110,27185,23,49.2,0.966667,0.74
+ Créton ,CRETON ,27240,27186,23,48.85,1.15,1.89
+ Criquebeuf-la-Campagne ,CRIQUEBEUF LA CAMPAGNE ,27110,27187,23,49.2,1.016667,1.06
+ Criquebeuf-sur-Seine ,CRIQUEBEUF SUR SEINE ,27340,27188,23,49.3,1.1,1.15
+ La Croisille ,LA CROISILLE ,27190,27189,23,48.966667,0.983333,1.1
+ Croisy-sur-Eure ,CROISY SUR EURE ,27120,27190,23,49.033333,1.35,1.11
+ La Croix-Saint-Leufroy ,LA CROIX SAINT LEUFROY,27490,27191,23,49.116667,1.25,0.78
+ Crosville-la-Vieille ,CROSVILLE LA VIEILLE ,27110,27192,23,49.166667,0.933333,0.6
+ Croth ,CROTH ,28520,27193,23,48.833333,1.366667,2
+ Dame-Marie ,DAME MARIE ,27160,27195,23,48.8,1,2.22
+ Les Damps ,LES DAMPS ,27340,27196,23,49.3,1.183333,1.33
+ Dampsmesnil ,DAMPSMESNIL ,27630,27197,23,49.166667,1.633333,2.03
+ Damville ,DAMVILLE ,27240,27198,23,48.866667,1.066667,1.78
+ Dangu ,DANGU ,27720,27199,23,49.25,1.7,2.25
+ Dardez ,DARDEZ ,27930,27200,23,49.083333,1.2,0.62
+ Daubeuf-la-Campagne ,DAUBEUF LA CAMPAGNE ,27110,27201,23,49.183333,1.033333,1.12
+ Daubeuf-près-Vatteville ,DAUBEUF PRES VATTEVILLE ,27430,27202,23,49.266667,1.3,1.43
+ Douains ,DOUAINS ,27120,27203,23,49.033333,1.433333,1.38
+ Douville-sur-Andelle ,DOUVILLE SUR ANDELLE ,27380,27205,23,49.333333,1.3,1.37
+ Droisy ,DROISY ,27320,27206,23,48.8,1.15,2.22
+ Drucourt ,DRUCOURT ,27230,27207,23,49.116667,0.466667,1.76
+ Écaquelon ,ECAQUELON ,27290,27209,23,49.283333,0.716667,1.04
+ Écardenville-la-Campagne ,ECARDENVILLE LA CAMPAGNE ,27170,27210,23,49.116667,0.85,0.75
+ Écardenville-sur-Eure ,ECARDENVILLE SUR EURE ,27490,27211,23,49.1,1.266667,0.9
+ Écauville ,ECAUVILLE ,27110,27212,23,49.116667,1,0.75
+ Écos ,ECOS ,27630,27213,23,49.166667,1.65,2.08
+ Écouis ,ECOUIS ,27440,27214,23,49.316667,1.433333,1.38
+ Ecquetot ,ECQUETOT ,27110,27215,23,49.166667,1.016667,0.79
+ Émalleville ,EMALLEVILLE ,27930,27216,23,49.1,1.166667,0.73
+ Émanville ,EMANVILLE ,27190,27217,23,49.066667,0.916667,1.49
+ Épaignes ,EPAIGNES ,27260,27218,23,49.283333,0.45,1.81
+ Épégard ,EPEGARD ,27110,27219,23,49.183333,0.883333,1.43
+ Épieds ,EPIEDS ,27730,27220,23,48.933333,1.4,1.33
+ Épreville-en-Lieuvin ,EPREVILLE EN LIEUVIN ,27560,27222,23,49.2,0.533333,1.54
+ Épreville-en-Roumois ,EPREVILLE EN ROUMOIS ,27310,27223,23,49.316667,0.766667,1.49
+ Étrépagny ,ETREPAGNY ,27150,27226,23,49.3,1.616667,1.97
+ Étréville ,ETREVILLE ,27350,27227,23,49.366667,0.65,1.6
+ Éturqueraye ,ETURQUERAYE ,27350,27228,23,49.366667,0.7,1.6
+ Évreux ,EVREUX ,27000,27229,23,49.016667,1.15,0.76
+ Ézy-sur-Eure ,EZY SUR EURE ,27530,27230,23,48.866667,1.416667,1.78
+ Fains ,FAINS ,27120,27231,23,49,1.383333,1.22
+ Farceaux ,FARCEAUX ,27150,27232,23,49.283333,1.533333,1.7
+ Fatouville-Grestain ,FATOUVILLE GRESTAIN ,27210,27233,23,49.4,0.333333,2.19
+ Fauville ,FAUVILLE ,27930,27234,23,49.033333,1.2,0.65
+ Faverolles-la-Campagne ,FAVEROLLES LA CAMPAGNE ,27190,27235,23,49.016667,0.933333,0.76
+ Faverolles-les-Mares ,FAVEROLLES LES MARES ,27230,27236,23,49.116667,0.5,1.65
+ Ferrières-Haut-Clocher ,FERRIERES HAUT CLOCHER ,27190,27238,23,49.016667,0.983333,0.82
+ Ferrières-Saint-Hilaire ,FERRIERES SAINT HILAIRE ,27270,27239,23,49.033333,0.566667,1.44
+ La Ferrière-sur-Risle ,LA FERRIERE SUR RISLE,27760,27240,23,48.983333,0.8,0.99
+ Feuguerolles ,FEUGUEROLLES ,27110,27241,23,49.133333,1.033333,1.06
+ Le Fidelaire ,LE FIDELAIRE ,27190,27242,23,48.95,0.816667,2.12
+ Fiquefleur-Équainville ,FIQUEFLEUR EQUAINVILLE ,27210,27243,23,49.416667,0.316667,2.25
+ Flancourt-Catelon ,FLANCOURT CATELON ,27310,27244,23,49.333333,0.766667,1.37
+ Fleury-la-Forêt ,FLEURY LA FORET ,27480,27245,23,49.416667,1.55,1.94
+ Fleury-sur-Andelle ,FLEURY SUR ANDELLE ,27380,27246,23,49.366667,1.35,1.6
+ Flipou ,FLIPOU ,27380,27247,23,49.316667,1.283333,1.72
+ Folleville ,FOLLEVILLE ,27230,27248,23,49.15,0.5,1.65
+ Fontaine-Bellenger ,FONTAINE BELLENGER ,27600,27249,23,49.183333,1.266667,1.61
+ Fontaine-Heudebourg ,FONTAINE HEUDEBOURG ,27490,27250,23,49.133333,1.216667,1.35
+ Fontaine-l'Abbé ,FONTAINE L ABBE ,27470,27251,23,49.083333,0.7,1.39
+ Fontaine-la-Louvet ,FONTAINE LA LOUVET ,27230,27252,23,49.166667,0.45,1.81
+ Fontaine-la-Soret ,FONTAINE LA SORET ,27550,27253,23,49.15,0.716667,1
+ Fontaine-sous-Jouy ,FONTAINE SOUS JOUY ,27120,27254,23,49.066667,1.3,1.31
+ La Forêt-du-Parc ,LA FORET DU PARC,27220,27256,23,48.925,1.25,1.38
+ Forêt-la-Folie ,FORET LA FOLIE ,27510,27257,23,49.233333,1.533333,1.7
+ Fort-Moville ,FORT MOVILLE ,27210,27258,23,49.333333,0.416667,1.92
+ Foucrainville ,FOUCRAINVILLE ,27220,27259,23,48.933333,1.333333,1.33
+ Foulbec ,FOULBEC ,27210,27260,23,49.4,0.416667,1.92
+ Fouqueville ,FOUQUEVILLE ,27370,27261,23,49.216667,0.95,0.59
+ Fourges ,FOURGES ,27630,27262,23,49.116667,1.65,2.08
+ Fourmetot ,FOURMETOT ,27500,27263,23,49.383333,0.566667,1.71
+ Fours-en-Vexin ,FOURS EN VEXIN ,27630,27264,23,49.183333,1.6,1.92
+ Francheville ,FRANCHEVILLE ,27160,27265,23,48.783333,0.85,2.34
+ Franqueville ,FRANQUEVILLE ,27800,27266,23,49.166667,0.7,1
+ Freneuse-sur-Risle ,FRENEUSE SUR RISLE ,27290,27267,23,49.25,0.666667,1.11
+ Le Fresne ,LE FRESNE ,27190,27268,23,48.95,0.983333,1.21
+ Fresne-Cauverville ,FRESNE CAUVERVILLE ,27260,27269,23,49.2,0.466667,1.76
+ Fresne-l'Archevêque ,FRESNE L ARCHEVEQUE ,27700,27270,23,49.3,1.4,1.27
+ Fresney ,FRESNEY ,27220,27271,23,48.95,1.316667,1.21
+ Gadencourt ,GADENCOURT ,27120,27273,23,48.983333,1.4,1.27
+ Gaillardbois-Cressenville ,GAILLARDBOIS CRESSENVILLE ,27440,27274,23,49.333333,1.4,1.37
+ Gaillon ,GAILLON ,27600,27275,23,49.166667,1.333333,1.05
+ Gamaches-en-Vexin ,GAMACHES EN VEXIN ,27150,27276,23,49.266667,1.616667,1.97
+ Garencières ,GARENCIERES ,27220,27277,23,48.95,1.266667,1.21
+ Garennes-sur-Eure ,GARENNES SUR EURE ,27780,27278,23,48.916667,1.433333,1.44
+ Gasny ,GASNY ,27620,27279,23,49.083333,1.6,1.92
+ Gauciel ,GAUCIEL ,27930,27280,23,49.033333,1.25,1.11
+ Gaudreville-la-Rivière ,GAUDREVILLE LA RIVIERE ,27190,27281,23,48.983333,1.016667,1.08
+ Gauville-la-Campagne ,GAUVILLE LA CAMPAGNE ,27930,27282,23,49.05,1.083333,1.34
+ Gisors ,GISORS ,27140,27284,23,49.283333,1.783333,2.52
+ Giverny ,GIVERNY ,27620,27285,23,49.066667,1.533333,1.7
+ Giverville ,GIVERVILLE ,27560,27286,23,49.2,0.566667,1.44
+ Glisolles ,GLISOLLES ,27190,27287,23,48.983333,1.016667,1.08
+ Glos-sur-Risle ,GLOS SUR RISLE ,27290,27288,23,49.266667,0.683333,1.06
+ La Goulafrière ,LA GOULAFRIERE ,27390,27289,23,48.95,0.45,1.81
+ Goupillières ,GOUPILLIERES ,27170,27290,23,49.133333,0.766667,1.45
+ Gouttières ,GOUTTIERES ,27410,27292,23,49.016667,0.75,0.84
+ Gouville ,GOUVILLE ,27240,27293,23,48.85,1,1.89
+ Grainville ,GRAINVILLE ,27380,27294,23,49.35,1.366667,1.49
+ Grandchain ,GRANDCHAIN ,27410,27296,23,49.033333,0.666667,1.11
+ Grandvilliers ,GRANDVILLIERS ,27240,27297,23,48.816667,1.05,2.11
+ Graveron-Sémerville ,GRAVERON SEMERVILLE ,27110,27298,23,49.1,0.983333,0.86
+ Gravigny ,GRAVIGNY ,27930,27299,23,49.05,1.166667,0.54
+ Grosley-sur-Risle ,GROSLEY SUR RISLE ,27170,27300,23,49.05,0.816667,0.62
+ Grossoeuvre ,GROSSOEUVRE ,27220,27301,23,48.941667,1.2,-1
+ Le Gros-Theil ,LE GROS THEIL ,27370,27302,23,49.216667,0.85,1.97
+ Guernanville ,GUERNANVILLE ,27160,27303,23,48.883333,0.85,1.66
+ Guerny ,GUERNY ,27720,27304,23,49.216667,1.683333,2.19
+ La Guéroulde ,LA GUEROULDE ,27160,27305,23,48.816667,0.883333,2.11
+ Guichainville ,GUICHAINVILLE ,27930,27306,23,48.983333,1.191667,-1
+ Guiseniers ,GUISENIERS ,27700,27307,23,49.216667,1.466667,1.49
+ Guitry ,GUITRY ,27510,27308,23,49.216667,1.55,1.76
+ L'Habit ,L HABIT ,27220,27309,23,48.866667,1.366667,1.78
+ Hacqueville ,HACQUEVILLE ,27150,27310,23,49.283333,1.55,1.76
+ Harcourt ,HARCOURT ,27800,27311,23,49.166667,0.8,1.57
+ Hardencourt-Cocherel ,HARDENCOURT COCHEREL ,27120,27312,23,49.05,1.316667,1
+ La Harengère ,LA HARENGERE ,27370,27313,23,49.233333,1,0.97
+ Haricourt ,HARICOURT ,27630,27314,23,49.116667,1.566667,1.81
+ Harquency ,HARQUENCY ,27700,27315,23,49.25,1.483333,1.54
+ Hauville ,HAUVILLE ,27350,27316,23,49.4,0.766667,1.82
+ La Haye-Aubrée ,LA HAYE AUBREE ,27350,27317,23,49.383333,0.7,1.71
+ La Haye-de-Calleville ,LA HAYE DE CALLEVILLE,27800,27318,23,49.183333,0.783333,1.27
+ La Haye-de-Routot ,LA HAYE DE ROUTOT,27350,27319,23,49.4,0.733333,1.82
+ La Haye-du-Theil ,LA HAYE DU THEIL,27370,27320,23,49.233333,0.883333,1.29
+ La Haye-le-Comte ,LA HAYE LE COMTE,27400,27321,23,49.2,1.15,0.47
+ La Haye-Malherbe ,LA HAYE MALHERBE ,27400,27322,23,49.216667,1.066667,1.41
+ La Haye-Saint-Sylvestre ,LA HAYE SAINT SYLVESTRE,27330,27323,23,48.916667,0.616667,1.47
+ Hébécourt ,HEBECOURT ,27150,27324,23,49.35,1.716667,2.3
+ Hecmanville ,HECMANVILLE ,27800,27325,23,49.166667,0.666667,1.11
+ Hécourt ,HECOURT ,27120,27326,23,48.983333,1.416667,1.33
+ Hectomare ,HECTOMARE ,27110,27327,23,49.183333,0.95,0.56
+ Hellenvilliers ,HELLENVILLIERS ,27240,27328,23,48.8,1.1,2.22
+ Hennezis ,HENNEZIS ,27700,27329,23,49.183333,1.466667,1.54
+ Herqueville ,HERQUEVILLE ,27430,27330,23,49.25,1.266667,0.84
+ Heudebouville ,HEUDEBOUVILLE ,27400,27332,23,49.2,1.25,1.99
+ Heudicourt ,HEUDICOURT ,27860,27333,23,49.333333,1.666667,2.14
+ Heudreville-en-Lieuvin ,HEUDREVILLE EN LIEUVIN ,27230,27334,23,49.2,0.5,1.65
+ Heudreville-sur-Eure ,HEUDREVILLE SUR EURE ,27400,27335,23,49.15,1.183333,0.98
+ La Heunière ,LA HEUNIERE ,27950,27336,23,49.066667,1.416667,1.33
+ Heuqueville ,HEUQUEVILLE ,27700,27337,23,49.283333,1.333333,1.43
+Les Hogues,HOGUES ,27910,27338,23,49.433333,1.4,2.05
+ Hondouville ,HONDOUVILLE ,27400,27339,23,49.133333,1.116667,0.97
+ Honguemare-Guenouville ,HONGUEMARE GUENOUVILLE ,27310,27340,23,49.366667,0.816667,1.6
+ L'Hosmes ,L HOSMES ,27570,27341,23,48.783333,1.033333,2.34
+ Houetteville ,HOUETTEVILLE ,27400,27342,23,49.133333,1.116667,0.97
+ Houlbec-Cocherel ,HOULBEC COCHEREL ,27120,27343,23,49.066667,1.366667,1.16
+ La Houssaye ,LA HOUSSAYE ,27410,27345,23,48.983333,0.8,1.76
+ Houville-en-Vexin ,HOUVILLE EN VEXIN ,27440,27346,23,49.3,1.35,1.53
+ Huest ,HUEST ,27930,27347,23,49.033333,1.216667,0.68
+ Igoville ,IGOVILLE ,27460,27348,23,49.316667,1.15,1.5
+ Illeville-sur-Montfort ,ILLEVILLE SUR MONTFORT ,27290,27349,23,49.333333,0.733333,1.54
+ Illiers-l'Évêque ,ILLIERS L EVEQUE ,27770,27350,23,48.816667,1.266667,2.11
+ Incarville ,INCARVILLE ,27400,27351,23,49.233333,1.183333,1.18
+ Infreville ,INFREVILLE ,27520,27352,23,49.316667,0.883333,1.51
+ Irreville ,IRREVILLE ,27930,27353,23,49.083333,1.216667,0.76
+ Iville ,IVILLE ,27110,27354,23,49.183333,0.933333,0.74
+ Ivry-la-Bataille ,IVRY LA BATAILLE ,27540,27355,23,48.883333,1.466667,1.66
+ Jonquerets-de-Livet ,JONQUERETS DE LIVET ,27410,27356,23,49.016667,0.616667,1.62
+ Jouveaux ,JOUVEAUX ,27260,27357,23,49.216667,0.483333,1.71
+ Jouy-sur-Eure ,JOUY SUR EURE ,27120,27358,23,49.05,1.3,1.15
+ Juignettes ,JUIGNETTES ,27250,27359,23,48.85,0.666667,1.89
+ Jumelles ,JUMELLES ,27220,27360,23,48.916667,1.216667,1.44
+ Landepéreuse ,LANDEPEREUSE ,27410,27362,23,49,0.633333,1.33
+ Le Landin ,LE LANDIN ,27350,27363,23,49.4,0.8,2.09
+ Launay ,LAUNAY ,27470,27364,23,49.1,0.733333,1.22
+ Léry ,LERY ,27690,27365,23,49.283333,1.216667,1.04
+ Letteguives ,LETTEGUIVES ,27910,27366,23,49.433333,1.333333,2.05
+ Lieurey ,LIEUREY ,27560,27367,23,49.233333,0.483333,1.71
+ Lignerolles ,LIGNEROLLES ,27220,27368,23,48.85,1.283333,1.89
+ Lilly ,LILLY ,27480,27369,23,49.4,1.566667,1.82
+ Lisors ,LISORS ,27440,27370,23,49.35,1.466667,1.49
+ Livet-sur-Authou ,LIVET SUR AUTHOU ,27800,27371,23,49.233333,0.666667,1.11
+ Longchamps ,LONGCHAMPS ,27150,27372,23,49.366667,1.616667,1.97
+ Lorleau ,LORLEAU ,27480,27373,23,49.416667,1.5,1.94
+ Louversey ,LOUVERSEY ,27190,27374,23,49,0.916667,0.88
+ Louviers ,LOUVIERS ,27400,27375,23,49.216667,1.166667,0.77
+ Louye ,LOUYE ,27650,27376,23,48.8,1.316667,2.22
+ Lyons-la-Forêt ,LYONS LA FORET ,27480,27377,23,49.4,1.466667,1.91
+ Mainneville ,MAINNEVILLE ,27150,27379,23,49.366667,1.683333,2.19
+ Malleville-sur-le-Bec ,MALLEVILLE SUR LE BEC,27800,27380,23,49.233333,0.75,0.93
+ Malouy ,MALOUY ,27300,27381,23,49.133333,0.516667,1.6
+ Mandeville ,MANDEVILLE ,27370,27382,23,49.216667,1.016667,1.34
+ Mandres ,MANDRES ,27130,27383,23,48.75,0.866667,2.56
+ Manneville-la-Raoult ,MANNEVILLE LA RAOULT ,27210,27384,23,49.366667,0.316667,2.25
+ Manneville-sur-Risle ,MANNEVILLE SUR RISLE ,27500,27385,23,49.35,0.566667,1.49
+ Le Manoir ,LE MANOIR ,27460,27386,23,49.316667,1.2,1.26
+ Manthelon ,MANTHELON ,27240,27387,23,48.916667,1.05,1.44
+ Marais-Vernier ,MARAIS VERNIER ,27680,27388,23,49.416667,0.45,1.94
+ Marbeuf ,MARBEUF ,27110,27389,23,49.15,0.966667,0.14
+ Marcilly-la-Campagne ,MARCILLY LA CAMPAGNE ,27320,27390,23,48.833333,1.216667,2
+ Marcilly-sur-Eure ,MARCILLY SUR EURE ,27810,27391,23,48.816667,1.35,2.11
+ Martainville ,MARTAINVILLE ,27210,27393,23,49.3,0.416667,1.92
+ Martot ,MARTOT ,27340,27394,23,49.3,1.066667,1.41
+ Mélicourt ,MELICOURT ,27390,27395,23,48.916667,0.516667,1.6
+ Ménilles ,MENILLES ,27120,27397,23,49.033333,1.366667,1.16
+ Menneval ,MENNEVAL ,27300,27398,23,49.1,0.616667,1.27
+ Mercey ,MERCEY ,27950,27399,23,49.083333,1.383333,1.22
+ Merey ,MEREY ,27640,27400,23,48.966667,1.4,1.27
+ Le Mesnil-Fuguet ,LE MESNIL FUGUET ,27930,27401,23,49.066667,1.1,1.12
+ Le Mesnil-Hardray ,LE MESNIL HARDRAY ,27190,27402,23,48.933333,1,1.33
+ Le Mesnil-Jourdain ,LE MESNIL JOURDAIN ,27400,27403,23,49.183333,1.116667,0.39
+ Mesnil-Rousset ,MESNIL ROUSSET ,27390,27404,23,48.9,0.566667,2.02
+ Mesnil-sous-Vienne ,MESNIL SOUS VIENNE ,27150,27405,23,49.383333,1.666667,2.14
+ Mesnil-sur-l'Estrée ,MESNIL SUR L ESTREE,27650,27406,23,48.766667,1.3,2.45
+ Mesnil-Verclives ,MESNIL VERCLIVES ,27440,27407,23,49.316667,1.466667,1.49
+ Mézières-en-Vexin ,MEZIERES EN VEXIN ,27510,27408,23,49.166667,1.5,1.6
+ Les Minières ,LES MINIERES ,27240,27409,23,48.866667,1.083333,1.78
+ Miserey ,MISEREY ,27930,27410,23,49.016667,1.266667,1.41
+ Moisville ,MOISVILLE ,27320,27411,23,48.85,1.166667,1.89
+ Montaure ,MONTAURE ,27400,27412,23,49.233333,1.083333,1.32
+ Montfort-sur-Risle ,MONTFORT SUR RISLE ,27290,27413,23,49.3,0.666667,1.15
+ Montreuil-l'Argillé ,MONTREUIL L ARGILLE ,27390,27414,23,48.933333,0.483333,1.71
+ Morgny ,MORGNY ,27150,27417,23,49.383333,1.583333,1.87
+ Morsan ,MORSAN ,27800,27418,23,49.183333,0.583333,1.78
+ Mouettes ,MOUETTES ,27220,27419,23,48.9,1.366667,1.55
+ Mouflaines ,MOUFLAINES ,27420,27420,23,49.25,1.55,1.76
+ Mousseaux-Neuville ,MOUSSEAUX NEUVILLE ,27220,27421,23,48.9,1.35,1.55
+ Muids ,MUIDS ,27430,27422,23,49.216667,1.3,1.65
+ Muzy ,MUZY ,27650,27423,23,48.766667,1.35,2.45
+ Nagel-Séez-Mesnil ,NAGEL SEEZ MESNIL ,27190,27424,23,48.933333,0.95,1.33
+ Nassandres ,NASSANDRES ,27550,27425,23,49.116667,0.733333,1
+ Neaufles-Saint-Martin ,NEAUFLES SAINT MARTIN ,27830,27426,23,49.283333,1.733333,2.35
+ Le Neubourg ,LE NEUBOURG ,27110,27428,23,49.15,0.916667,0.82
+ Neuilly ,NEUILLY ,27730,27429,23,48.933333,1.416667,1.33
+ La Neuve-Grange ,LA NEUVE GRANGE ,27150,27430,23,49.366667,1.55,1.76
+ La Neuve-Lyre ,LA NEUVE LYRE ,27330,27431,23,48.9,0.75,1.55
+ La Neuville-du-Bosc ,LA NEUVILLE DU BOSC,27890,27432,23,49.183333,0.816667,0.62
+ Neuville-sur-Authou ,NEUVILLE SUR AUTHOU ,27800,27433,23,49.216667,0.633333,1.22
+ Noards ,NOARDS ,27560,27434,23,49.216667,0.516667,1.6
+ La Noë-Poulain ,LA NOE POULAIN ,27560,27435,23,49.266667,0.516667,1.6
+ Nogent-le-Sec ,NOGENT LE SEC ,27190,27436,23,48.916667,1,1.44
+ Nonancourt ,NONANCOURT ,27320,27438,23,48.766667,1.2,2.45
+ Normanville ,NORMANVILLE ,27930,27439,23,49.083333,1.15,0.6
+ Notre-Dame-de-l'Isle ,NOTRE DAME DE L,27940,27440,23,49.15,1.433333,1.54
+ Notre-Dame-d'Épine ,NOTRE DAME D EPINE,27800,27441,23,49.2,0.6,1.52
+ Notre-Dame-du-Hamel ,NOTRE DAME DU HAMEL,27390,27442,23,48.883333,0.516667,1.66
+ Le Noyer-en-Ouche ,LE NOYER EN OUCHE,27410,27444,23,49,0.766667,1.11
+ Noyers ,NOYERS ,27720,27445,23,49.266667,1.383333,1.49
+ Ormes ,ORMES ,27190,27446,23,49.05,0.966667,1.17
+ Orvaux ,ORVAUX ,27190,27447,23,48.933333,1.033333,1.5
+ Pacy-sur-Eure ,PACY SUR EURE ,27120,27448,23,49.016667,1.383333,1.22
+ Panilleuse ,PANILLEUSE ,27510,27449,23,49.15,1.5,1.6
+ Panlatte ,PANLATTE ,27320,27450,23,48.8,1.1,2.22
+ Parville ,PARVILLE ,27180,27451,23,49.033333,1.1,0.66
+ Perriers-la-Campagne ,PERRIERS LA CAMPAGNE ,27170,27452,23,49.15,0.766667,1.65
+ Perriers-sur-Andelle ,PERRIERS SUR ANDELLE ,27910,27453,23,49.416667,1.366667,1.94
+ Perruel ,PERRUEL ,27910,27454,23,49.433333,1.383333,2.05
+ Piencourt ,PIENCOURT ,27230,27455,23,49.166667,0.4,1.98
+ Pinterville ,PINTERVILLE ,27400,27456,23,49.2,1.183333,0.84
+ Piseux ,PISEUX ,27130,27457,23,48.766667,0.983333,2.45
+ Pitres ,PITRES ,27590,27458,23,49.316667,1.233333,1.26
+ Plainville ,PLAINVILLE ,27300,27460,23,49.083333,0.5,1.79
+ Les Planches ,LES PLANCHES ,27400,27461,23,49.15,1.183333,0.98
+ Le Planquay ,LE PLANQUAY ,27230,27462,23,49.1,0.433333,1.87
+ Plasnes ,PLASNES ,27300,27463,23,49.133333,0.616667,1.27
+ Le Plessis-Grohan ,LE PLESSIS GROHAN ,27180,27464,23,48.933333,1.15,1.89
+ Le Plessis-Hébert ,LE PLESSIS HEBERT ,27120,27465,23,48.983333,1.35,1.11
+ Le Plessis-Sainte-Opportune ,LE PLESSIS SAINTE OPPORTUNE,27170,27466,23,49.066667,0.883333,0.9
+ Pont-Audemer ,PONT AUDEMER ,27500,27467,23,49.35,0.516667,1.6
+ Pont-Authou ,PONT AUTHOU ,27290,27468,23,49.25,0.7,1
+ Pont-de-l'Arche ,PONT DE L ARCHE,27340,27469,23,49.3,1.166667,1.15
+ Pont-Saint-Pierre ,PONT SAINT PIERRE ,27360,27470,23,49.333333,1.266667,1.37
+ Porte-Joie ,PORTE JOIE ,27430,27471,23,49.25,1.25,0.81
+ Portes ,PORTES ,27190,27472,23,49.033333,0.95,0.88
+ Port-Mort ,PORT MORT ,27940,27473,23,49.166667,1.416667,1.33
+ Poses ,POSES ,27740,27474,23,49.3,1.25,1.15
+ La Poterie-Mathieu ,LA POTERIE MATHIEU ,27560,27475,23,49.266667,0.55,1.49
+ Les Préaux ,LES PREAUX ,27500,27476,23,49.316667,0.466667,1.76
+ Prey ,PREY ,27220,27478,23,48.966667,1.216667,1.47
+ Puchay ,PUCHAY ,27150,27480,23,49.35,1.533333,1.7
+ Pullay ,PULLAY ,27130,27481,23,48.733333,0.883333,2.67
+ La Pyle ,LA PYLE ,27370,27482,23,49.2,0.9,1.2
+ Quatremare ,QUATREMARE ,27400,27483,23,49.183333,1.083333,0.98
+ Quessigny ,QUESSIGNY ,27220,27484,23,48.933333,1.283333,1.33
+ Quillebeuf-sur-Seine ,QUILLEBEUF SUR SEINE ,27680,27485,23,49.466667,0.516667,2.27
+ Quittebeuf ,QUITTEBEUF ,27110,27486,23,49.1,1.016667,1.12
+ Radepont ,RADEPONT ,27380,27487,23,49.35,1.333333,1.49
+ Renneville ,RENNEVILLE ,27910,27488,23,49.4,1.316667,1.82
+ Reuilly ,REUILLY ,27930,27489,23,49.066667,1.216667,0.68
+ Richeville ,RICHEVILLE ,27420,27490,23,49.266667,1.533333,1.7
+ Rôman ,ROMAN ,27240,27491,23,48.85,1.05,1.89
+ Romilly-la-Puthenaye ,ROMILLY LA PUTHENAYE ,27170,27492,23,49,0.85,1.33
+ Romilly-sur-Andelle ,ROMILLY SUR ANDELLE ,27610,27493,23,49.333333,1.266667,1.37
+ Le Roncenay ,LE RONCENAY ,27240,27494,23,48.866667,1.05,1.78
+ La Roquette ,LA ROQUETTE ,27700,27495,23,49.25,1.333333,1.23
+ Rosay-sur-Lieure ,ROSAY SUR LIEURE ,27790,27496,23,49.366667,1.433333,1.6
+ Rougemontiers ,ROUGEMONTIERS ,27350,27497,23,49.358333,0.725,1.54
+ Rouge-Perriers ,ROUGE PERRIERS ,27110,27498,23,49.15,0.833333,2.13
+ La Roussière ,LA ROUSSIERE ,27270,27499,23,48.958333,0.583333,-1
+ Routot ,ROUTOT ,27350,27500,23,49.383333,0.733333,1.71
+ Rouvray ,ROUVRAY ,27120,27501,23,49.066667,1.333333,1.05
+ Rugles ,RUGLES ,27250,27502,23,48.816667,0.7,2.11
+ Le Sacq ,LE SACQ ,27240,27503,23,48.9,1.066667,1.55
+ Sacquenville ,SACQUENVILLE ,27930,27504,23,49.083333,1.066667,1.65
+ Saint-Amand-des-Hautes-Terres ,SAINT AMAND DES HAUTES,27370,27506,23,49.233333,0.933333,0.7
+ Saint-André-de-l'Eure ,SAINT ANDRE DE L,27220,27507,23,48.9,1.283333,1.55
+ Saint-Antonin-de-Sommaire ,SAINT ANTONIN DE SOMMAIRE,27250,27508,23,48.833333,0.666667,2
+ Saint-Aquilin-d'Augerons ,SAINT AQUILIN D AUGERONS,27390,27509,23,48.933333,0.466667,1.76
+ Saint-Aquilin-de-Pacy ,SAINT AQUILIN DE PACY,27120,27510,23,49.016667,1.366667,1.16
+ Saint-Aubin-d'Écrosville ,SAINT AUBIN D ECROSVILLE,27110,27511,23,49.15,0.983333,0.23
+ Saint-Aubin-de-Scellon ,SAINT AUBIN DE SCELLON,27230,27512,23,49.166667,0.466667,1.76
+ Saint-Aubin-des-Hayes ,SAINT AUBIN DES HAYES,27410,27513,23,49.016667,0.683333,1.06
+ Saint-Aubin-du-Thenney ,SAINT AUBIN DU THENNEY,27270,27514,23,49.016667,0.5,1.65
+ Saint-Aubin-le-Guichard ,SAINT AUBIN LE GUICHARD,27410,27515,23,49.033333,0.7,1
+ Saint-Aubin-le-Vertueux ,SAINT AUBIN LE VERTUEUX,27300,27516,23,49.05,0.6,1.33
+ Saint-Aubin-sur-Gaillon ,SAINT AUBIN SUR GAILLON,27600,27517,23,49.15,1.333333,1.05
+ Saint-Aubin-sur-Quillebeuf ,SAINT AUBIN SUR QUILLEBEUF,27680,27518,23,49.466667,0.533333,2.27
+ Sainte-Barbe-sur-Gaillon ,SAINTE BARBE SUR GAILLON,27600,27519,23,49.166667,1.316667,1
+ Saint-Benoît-des-Ombres ,SAINT BENOIT DES OMBRES,27450,27520,23,49.233333,0.633333,1.26
+ Saint-Christophe-sur-Avre ,SAINT CHRISTOPHE SUR AVRE,27820,27521,23,48.7,0.816667,2.9
+ Saint-Christophe-sur-Condé ,SAINT CHRISTOPHE SUR CONDE,27450,27522,23,49.283333,0.6,1.33
+ Saint-Clair-d'Arcey ,SAINT CLAIR D ARCEY,27300,27523,23,49.066667,0.666667,1.38
+ Sainte-Colombe-près-Vernon ,SAINTE COLOMBE PRES VERNON,27950,27525,23,49.1,1.333333,1.76
+ Sainte-Croix-sur-Aizier ,SAINTE CROIX SUR AIZIER,27500,27526,23,49.416667,0.633333,1.94
+ Saint-Cyr-de-Salerne ,SAINT CYR DE SALERNE,27800,27527,23,49.183333,0.666667,1.11
+ Le Vaudreuil ,LE VAUDREUIL ,27100,27528,23,49.25,1.216667,1
+ Saint-Cyr-la-Campagne ,SAINT CYR LA CAMPAGNE,27370,27529,23,49.25,1.016667,1.32
+ Saint-Denis-d'Augerons ,SAINT DENIS D AUGERONS,27390,27530,23,48.933333,0.483333,1.71
+ Saint-Denis-des-Monts ,SAINT DENIS DES MONTS,27520,27531,23,49.266667,0.816667,0.92
+ Saint-Denis-du-Béhélan ,SAINT DENIS DU BEHELAN,27160,27532,23,48.866667,0.966667,1.78
+ Saint-Denis-le-Ferment ,SAINT DENIS LE FERMENT,27140,27533,23,49.333333,1.716667,2.3
+ Saint-Didier-des-Bois ,SAINT DIDIER DES BOIS,27370,27534,23,49.233333,1.033333,1.61
+ Saint-Élier ,SAINT ELIER ,27190,27535,23,48.983333,0.966667,0.99
+ Saint-Éloi-de-Fourques ,SAINT ELOI DE FOURQUES,27800,27536,23,49.233333,0.8,1.6
+ Saint-Étienne-du-Vauvray ,SAINT ETIENNE DU VAUVRAY,27430,27537,23,49.25,1.216667,1.36
+ Saint-Étienne-l'Allier ,SAINT ETIENNE L ALLIER,27450,27538,23,49.266667,0.55,1.49
+ Saint-Étienne-sous-Bailleul ,SAINT ETIENNE SOUS BAILLEUL,27920,27539,23,49.116667,1.4,1.27
+ Sainte-Geneviève-lès-Gasny ,SAINTE GENEVIEVE LES GASNY,27620,27540,23,49.083333,1.583333,1.87
+ Saint-Georges-du-Mesnil ,SAINT GEORGES DU MESNIL,27560,27541,23,49.216667,0.55,1.49
+ Saint-Georges-du-Vièvre ,SAINT GEORGES DU VIEVRE,27450,27542,23,49.25,0.583333,1.38
+ Saint-Georges-Motel ,SAINT GEORGES MOTEL ,27710,27543,23,48.8,1.366667,2.22
+ Saint-Germain-de-Fresney ,SAINT GERMAIN DE FRESNEY,27220,27544,23,48.966667,1.283333,1.1
+ Saint-Germain-de-Pasquier ,SAINT GERMAIN DE PASQUIER,27370,27545,23,49.25,1,1
+ Saint-Germain-des-Angles ,SAINT GERMAIN DES ANGLES,27930,27546,23,49.083333,1.15,0.6
+ Saint-Germain-la-Campagne ,SAINT GERMAIN LA CAMPAGNE,27230,27547,23,49.05,0.416667,1.92
+ Saint-Germain-sur-Avre ,SAINT GERMAIN SUR AVRE,27320,27548,23,48.766667,1.266667,2.45
+ Saint-Germain-Village ,SAINT GERMAIN VILLAGE ,27500,27549,23,49.35,0.5,1.65
+ Saint-Grégoire-du-Vièvre ,SAINT GREGOIRE DU VIEVRE,27450,27550,23,49.25,0.633333,1.22
+ Saint-Jean-du-Thenney ,SAINT JEAN DU THENNEY,27270,27552,23,49.016667,0.466667,1.76
+ Saint-Julien-de-la-Liègue ,SAINT JULIEN DE LA,27600,27553,23,49.133333,1.3,0.95
+ Saint-Just ,SAINT JUST ,27950,27554,23,49.116667,1.45,1.43
+ Saint-Laurent-des-Bois ,SAINT LAURENT DES BOIS,27220,27555,23,48.85,1.316667,1.89
+ Saint-Laurent-du-Tencement ,SAINT LAURENT DU TENCEMENT,27390,27556,23,48.883333,0.466667,1.76
+ Saint-Léger-de-Rotes ,SAINT LEGER DE ROTES,27300,27557,23,49.116667,0.65,1.16
+ Saint-Léger-du-Gennetey ,SAINT LEGER DU GENNETEY,27520,27558,23,49.283333,0.75,1.78
+ Saint-Léger-sur-Bonneville ,SAINT LEGER SUR BONNEVILLE,27210,27559,23,49.283333,0.333333,2.19
+ Saint-Luc ,SAINT LUC ,27930,27560,23,48.975,1.241667,-1
+ Saint-Maclou ,SAINT MACLOU ,27210,27561,23,49.366667,0.416667,1.92
+ Saint-Marcel ,SAINT MARCEL ,27950,27562,23,49.1,1.45,1.43
+ Saint-Mards-de-Blacarville ,SAINT MARDS DE BLACARVILLE,27500,27563,23,49.366667,0.516667,1.6
+ Saint-Mards-de-Fresne ,SAINT MARDS DE FRESNE,27230,27564,23,49.066667,0.45,1.81
+ Sainte-Marguerite-de-l'Autel ,SAINTE MARGUERITE DE L,27160,27565,23,48.9,0.866667,1.55
+ Sainte-Marguerite-en-Ouche ,SAINTE MARGUERITE EN OUCHE,27410,27566,23,49.016667,0.65,1.16
+ Sainte-Marie-de-Vatimesnil ,SAINTE MARIE DE VATIMESNIL,27150,27567,23,49.266667,1.566667,1.81
+ Sainte-Marthe ,SAINTE MARTHE ,27190,27568,23,48.966667,0.883333,1.1
+ Saint-Martin-du-Tilleul ,SAINT MARTIN DU TILLEUL,27300,27569,23,49.1,0.533333,1.54
+ Saint-Martin-la-Campagne ,SAINT MARTIN LA CAMPAGNE,27930,27570,23,49.066667,1.066667,1.6
+ Saint-Martin-Saint-Firmin ,SAINT MARTIN SAINT FIRMIN,27450,27571,23,49.283333,0.566667,1.44
+ Saint-Meslin-du-Bosc ,SAINT MESLIN DU BOSC,27370,27572,23,49.216667,0.883333,1.34
+ Saint-Nicolas-d'Attez ,SAINT NICOLAS D ATTEZ,27160,27573,23,48.816667,0.933333,2.11
+ Saint-Nicolas-du-Bosc ,SAINT NICOLAS DU BOSC,27370,27574,23,49.216667,0.866667,1.66
+ Saint-Nicolas-du-Bosc-l'Abbé ,SAINT NICOLAS DU BOSC,27300,27575,23,49.066667,0.566667,1.44
+ Sainte-Opportune-la-Mare ,SAINTE OPPORTUNE LA MARE,27680,27577,23,49.416667,0.533333,1.94
+ Saint-Ouen-d'Attez ,SAINT OUEN D ATTEZ,27160,27578,23,48.8,0.95,2.22
+ Saint-Ouen-de-Pontcheuil ,SAINT OUEN DE PONTCHEUIL,27370,27579,23,49.233333,0.95,0.7
+ Saint-Ouen-de-Thouberville ,SAINT OUEN DE THOUBERVILLE,27310,27580,23,49.35,0.883333,1.49
+ Saint-Ouen-des-Champs ,SAINT OUEN DES CHAMPS,27680,27581,23,49.383333,0.55,1.71
+ Saint-Ouen-du-Tilleul ,SAINT OUEN DU TILLEUL,27670,27582,23,49.283333,0.95,1.04
+ Saint-Paul-de-Fourques ,SAINT PAUL DE FOURQUES,27800,27584,23,49.216667,0.8,1.53
+ Saint-Paul-sur-Risle ,SAINT PAUL SUR RISLE,27500,27585,23,49.333333,0.566667,1.44
+ Saint-Philbert-sur-Risle ,SAINT PHILBERT SUR RISLE,27290,27587,23,49.283333,0.65,1.16
+ Saint-Pierre-d'Autils ,SAINT PIERRE D AUTILS,27950,27588,23,49.116667,1.433333,1.38
+ Saint-Pierre-de-Bailleul ,SAINT PIERRE DE BAILLEUL,27920,27589,23,49.116667,1.4,1.27
+ Saint-Pierre-de-Cernières ,SAINT PIERRE DE CERNIERES,27390,27590,23,48.95,0.516667,1.6
+ Saint-Pierre-de-Cormeilles ,SAINT PIERRE DE CORMEILLES,27260,27591,23,49.233333,0.383333,2.03
+ Saint-Pierre-de-Salerne ,SAINT PIERRE DE SALERNE,27800,27592,23,49.2,0.666667,1.11
+ Saint-Pierre-des-Fleurs ,SAINT PIERRE DES FLEURS,27370,27593,23,49.25,0.966667,0.81
+ Saint-Pierre-des-Ifs ,SAINT PIERRE DES IFS,27450,27594,23,49.266667,0.633333,1.22
+ Saint-Pierre-du-Bosguérard ,SAINT PIERRE DU BOSGUERARD,27370,27595,23,49.266667,0.9,1.13
+ Saint-Pierre-du-Mesnil ,SAINT PIERRE DU MESNIL,27330,27596,23,48.933333,0.583333,2.04
+ Saint-Pierre-du-Val ,SAINT PIERRE DU VAL,27210,27597,23,49.4,0.366667,2.08
+ Saint-Pierre-du-Vauvray ,SAINT PIERRE DU VAUVRAY,27430,27598,23,49.233333,1.216667,1.44
+ Saint-Pierre-la-Garenne ,SAINT PIERRE LA GARENNE,27600,27599,23,49.15,1.4,2.04
+ Saint-Quentin-des-Isles ,SAINT QUENTIN DES ISLES,27270,27600,23,49.05,0.583333,1.48
+ Saint-Samson-de-la-Roque ,SAINT SAMSON DE LA,27680,27601,23,49.433333,0.433333,2.05
+ Saint-Sébastien-de-Morsent ,SAINT SEBASTIEN DE MORSENT,27180,27602,23,49.016667,1.083333,0.76
+ Saint-Siméon ,SAINT SIMEON ,27560,27603,23,49.283333,0.516667,1.6
+ Saint-Symphorien ,SAINT SYMPHORIEN ,27500,27606,23,49.316667,0.483333,1.71
+ Saint-Thurien ,SAINT THURIEN ,27680,27607,23,49.4,0.55,1.82
+ Saint-Victor-d'Épine ,SAINT VICTOR D EPINE,27800,27609,23,49.216667,0.6,1.54
+ Saint-Victor-sur-Avre ,SAINT VICTOR SUR AVRE,27130,27610,23,48.7,0.85,2.9
+ Saint-Vigor ,SAINT VIGOR ,27930,27611,23,49.083333,1.266667,1.4
+ Saint-Vincent-des-Bois ,SAINT VINCENT DES BOIS,27950,27612,23,49.066667,1.4,1.27
+ Saint-Vincent-du-Boulay ,SAINT VINCENT DU BOULAY,27230,27613,23,49.1,0.483333,1.71
+ Sancourt ,SANCOURT ,27150,27614,23,49.35,1.683333,2.19
+ Sassey ,SASSEY ,27930,27615,23,49.05,1.216667,0.68
+ La Saussaye ,LA SAUSSAYE ,27370,27616,23,49.266667,0.983333,0.92
+ Saussay-la-Campagne ,SAUSSAY LA CAMPAGNE ,27150,27617,23,49.316667,1.516667,1.65
+ Sébécourt ,SEBECOURT ,27190,27618,23,48.966667,0.833333,1.82
+ Selles ,SELLES ,27500,27620,23,49.3,0.5,1.65
+ Serquigny ,SERQUIGNY ,27470,27622,23,49.1,0.716667,0.95
+ Surtauville ,SURTAUVILLE ,27400,27623,23,49.2,1.066667,1.31
+ Surville ,SURVILLE ,27400,27624,23,49.2,1.1,0.75
+ Suzay ,SUZAY ,27420,27625,23,49.283333,1.516667,1.71
+ Theillement ,THEILLEMENT ,27520,27626,23,49.283333,0.8,1.04
+ Le Theil-Nolent ,LE THEIL NOLENT ,27230,27627,23,49.15,0.533333,1.54
+ Thevray ,THEVRAY ,27330,27628,23,48.983333,0.733333,1.12
+ Thiberville ,THIBERVILLE ,27230,27629,23,49.133333,0.45,1.81
+ Thibouville ,THIBOUVILLE ,27800,27630,23,49.15,0.783333,1.44
+ Thierville ,THIERVILLE ,27290,27631,23,49.266667,0.716667,0.95
+ Le Thil ,LE THIL ,27150,27632,23,49.308333,1.55,-1
+ Thomer-la-Sôgne ,THOMER LA SOGNE ,27240,27634,23,48.916667,1.166667,1.67
+ Le Thuit ,LE THUIT ,27700,27635,23,49.25,1.35,1.11
+ Le Thuit-Anger ,LE THUIT ANGER ,27370,27636,23,49.266667,0.966667,0.92
+ Thuit-Hébert ,THUIT HEBERT ,27520,27637,23,49.316667,0.833333,1.26
+ Le Thuit-Signol ,LE THUIT SIGNOL ,27370,27638,23,49.266667,0.95,0.92
+ Le Thuit-Simer ,LE THUIT SIMER ,27370,27639,23,49.266667,0.916667,0.92
+ Tilleul-Dame-Agnès ,TILLEUL DAME AGNES ,27170,27640,23,49,0.883333,1.57
+ Le Tilleul-Lambert ,LE TILLEUL LAMBERT ,27110,27641,23,49.083333,0.95,1.13
+ Le Tilleul-Othon ,LE TILLEUL OTHON ,27170,27642,23,49.116667,0.783333,1.05
+ Tillières-sur-Avre ,TILLIERES SUR AVRE ,27570,27643,23,48.766667,1.066667,2.45
+ Tilly ,TILLY ,27510,27644,23,49.15,1.533333,1.7
+ Tocqueville ,TOCQUEVILLE ,27500,27645,23,49.4,0.616667,1.82
+ Le Torpt ,LE TORPT ,27210,27646,23,49.333333,0.366667,2.08
+ Tosny ,TOSNY ,27700,27647,23,49.216667,1.383333,1.22
+ Tostes ,TOSTES ,27340,27648,23,49.266667,1.116667,0.92
+ Tournedos-Bois-Hubert ,TOURNEDOS BOIS HUBERT ,27180,27650,23,49.083333,0.983333,1.88
+ Tournedos-sur-Seine ,TOURNEDOS SUR SEINE ,27100,27651,23,49.283333,1.266667,1.04
+ Tourneville ,TOURNEVILLE ,27930,27652,23,49.1,1.116667,1.11
+ Tourny ,TOURNY ,27510,27653,23,49.183333,1.55,1.76
+ Tourville-la-Campagne ,TOURVILLE LA CAMPAGNE ,27370,27654,23,49.233333,0.9,0.97
+ Toutainville ,TOUTAINVILLE ,27500,27656,23,49.366667,0.466667,1.76
+ Le Tremblay-Omonville ,LE TREMBLAY OMONVILLE ,27110,27658,23,49.116667,0.9,1.22
+ La Trinité ,LA TRINITE ,27930,27659,23,48.991667,1.233333,-1
+ La Trinité-de-Réville ,LA TRINITE DE REVILLE,27270,27660,23,48.966667,0.516667,1.6
+ Le Troncq ,LE TRONCQ ,27110,27663,23,49.2,0.916667,1.11
+ Trouville-la-Haule ,TROUVILLE LA HAULE ,27680,27665,23,49.416667,0.566667,1.94
+ La Vacherie ,LA VACHERIE ,27400,27666,23,49.133333,1.133333,0.89
+ Valailles ,VALAILLES ,27300,27667,23,49.116667,0.6,1.33
+ Le Val-David ,LE VAL DAVID ,27120,27668,23,48.983333,1.25,2.03
+ Valletot ,VALLETOT ,27350,27669,23,49.366667,0.616667,1.9
+ Vandrimare ,VANDRIMARE ,27380,27670,23,49.383333,1.35,1.71
+ Vannecrocq ,VANNECROCQ ,27210,27671,23,49.3,0.433333,1.87
+ Vascoeuil ,VASCOEUIL ,27910,27672,23,49.45,1.383333,2.16
+ Vatteville ,VATTEVILLE ,27430,27673,23,49.283333,1.283333,1.36
+ Vaux-sur-Eure ,VAUX SUR EURE ,27120,27674,23,49.05,1.35,1.11
+ Vaux-sur-Risle ,VAUX SUR RISLE ,27250,27675,23,48.866667,0.716667,1.78
+ Venables ,VENABLES ,27940,27676,23,49.2,1.3,1.33
+ Venon ,VENON ,27110,27677,23,49.166667,1.05,1.3
+ Les Ventes ,LES VENTES ,27180,27678,23,48.95,1.083333,1.21
+ Verneuil-sur-Avre ,VERNEUIL SUR AVRE ,27130,27679,23,48.733333,0.933333,2.67
+ Verneusses ,VERNEUSSES ,27390,27680,23,48.916667,0.45,1.81
+ Vernon ,VERNON ,27200,27681,23,49.083333,1.483333,1.54
+ Vesly ,VESLY ,27870,27682,23,49.233333,1.65,2.08
+ Vézillon ,VEZILLON ,27700,27683,23,49.216667,1.4,1.27
+ Le Vieil-Évreux ,LE VIEIL EVREUX ,27930,27684,23,49,1.233333,1.12
+ La Vieille-Lyre ,LA VIEILLE LYRE ,27330,27685,23,48.916667,0.75,1.44
+ Vieux-Port ,VIEUX PORT ,27680,27686,23,49.433333,0.6,2.05
+ Vieux-Villez ,VIEUX VILLEZ ,27600,27687,23,49.166667,1.283333,1.04
+ Villalet ,VILLALET ,27240,27688,23,48.933333,1.066667,1.33
+ Villegats ,VILLEGATS ,27120,27689,23,49,1.466667,1.99
+ Villers-en-Vexin ,VILLERS EN VEXIN ,27420,27690,23,49.25,1.6,1.92
+ Villers-sur-le-Roule ,VILLERS SUR LE ROULE,27940,27691,23,49.2,1.316667,1.03
+ Villettes ,VILLETTES ,27110,27692,23,49.15,1.05,1.28
+ Villez-sous-Bailleul ,VILLEZ SOUS BAILLEUL ,27950,27694,23,49.116667,1.366667,1.16
+ Villez-sur-le-Neubourg ,VILLEZ SUR LE NEUBOURG,27110,27695,23,49.15,0.866667,1.61
+ Villiers-en-Désoeuvre ,VILLIERS EN DESOEUVRE ,27640,27696,23,48.95,1.5,1.6
+ Vironvay ,VIRONVAY ,27400,27697,23,49.2,1.216667,1.41
+ Voiscreville ,VOISCREVILLE ,27520,27699,23,49.283333,0.766667,1.39
+ Vraiville ,VRAIVILLE ,27370,27700,23,49.216667,1.05,1.97
+ Neaufles-sur-Risle ,NEAUFLES SUR RISLE ,27250,27902,23,48.866667,0.75,1.78
+ Bournainville ,BOURNAINVILLE ,27230,27903,23,49.133333,0.483333,1.71
+ Heubécourt ,HEUBECOURT ,27630,27912,23,49.133333,1.566667,1.81
+ Abondant ,ABONDANT ,28570,28001,24,48.783333,1.433333,1.97
+ Allainville ,ALLAINVILLE ,28500,28003,24,48.716667,1.3,1.6
+ Allonnes ,ALLONNES ,28150,28004,24,48.333333,1.666667,1.22
+ Alluyes ,ALLUYES ,28800,28005,24,48.233333,1.366667,1.02
+ Amilly ,AMILLY ,28300,28006,24,48.45,1.4,0.98
+ Anet ,ANET ,28260,28007,24,48.85,1.433333,2.33
+ Ardelles ,ARDELLES ,28170,28008,24,48.55,1.166667,1.43
+ Ardelu ,ARDELU ,28700,28009,24,48.35,1.916667,2.33
+ Argenvilliers ,ARGENVILLIERS ,28420,28010,24,48.266667,0.95,1.95
+ Arrou ,ARROU ,28290,28012,24,48.1,1.116667,1.74
+ Aunay-sous-Auneau ,AUNAY SOUS AUNEAU ,28700,28013,24,48.433333,1.816667,1.89
+ Aunay-sous-Crécy ,AUNAY SOUS CRECY ,28500,28014,24,48.666667,1.3,1.33
+ Auneau ,AUNEAU ,28700,28015,24,48.45,1.766667,1.66
+ Les Autels-Villevillon ,LES AUTELS VILLEVILLON ,28330,28016,24,48.166667,1,1.73
+ Autheuil ,AUTHEUIL ,28220,28017,24,48,1.283333,2.29
+ Authon-du-Perche ,AUTHON DU PERCHE ,28330,28018,24,48.2,0.916667,2.1
+ Baigneaux ,BAIGNEAUX ,28140,28019,24,48.333333,1.616667,1.96
+ Baignolet ,BAIGNOLET ,28150,28020,24,48.166667,1.616667,1.38
+ Bailleau-le-Pin ,BAILLEAU LE PIN ,28120,28021,24,48.366667,1.333333,0.77
+ Bailleau-l'Évêque ,BAILLEAU L EVEQUE ,28300,28022,24,48.483333,1.4,0.74
+ Barjouville ,BARJOUVILLE ,28630,28024,24,48.416667,1.483333,0.6
+ Barmainville ,BARMAINVILLE ,28310,28025,24,48.266667,1.966667,2.55
+ La Bazoche-Gouet ,LA BAZOCHE GOUET ,28330,28027,24,48.133333,0.983333,1.8
+ Bazoches-en-Dunois ,BAZOCHES EN DUNOIS ,28140,28028,24,48.1,1.566667,1.74
+ Bazoches-les-Hautes ,BAZOCHES LES HAUTES ,28140,28029,24,48.15,1.8,1.81
+ Beauche ,BEAUCHE ,28270,28030,24,48.683333,0.966667,1.88
+ Beaumont-les-Autels ,BEAUMONT LES AUTELS ,28420,28031,24,48.25,0.95,1.95
+ Belhomert-Guéhouville ,BELHOMERT GUEHOUVILLE ,28240,28033,24,48.5,1.066667,1.43
+ Berchères-les-Pierres ,BERCHERES LES PIERRES ,28630,28035,24,48.383333,1.55,0.82
+ Berchères-sur-Vesgre ,BERCHERES SUR VESGRE ,28560,28036,24,48.85,1.55,2.33
+ Bérou-la-Mulotière ,BEROU LA MULOTIERE ,28270,28037,24,48.75,1.05,1.79
+ Béthonvilliers ,BETHONVILLIERS ,28330,28038,24,48.216667,0.916667,2.1
+ Béville-le-Comte ,BEVILLE LE COMTE ,28700,28039,24,48.433333,1.716667,1.44
+ Billancelles ,BILLANCELLES ,28190,28040,24,48.483333,1.216667,0.97
+ Blandainville ,BLANDAINVILLE ,28120,28041,24,48.3,1.3,0.66
+ Bleury ,BLEURY ,28700,28042,24,48.516667,1.75,1.59
+ Blévy ,BLEVY ,28170,28043,24,48.633333,1.2,1.15
+ Boissy-en-Drouais ,BOISSY EN DROUAIS ,28500,28045,24,48.733333,1.266667,1.7
+ Boissy-lès-Perche ,BOISSY LES PERCHE ,28340,28046,24,48.683333,0.9,2.17
+ Boisville-la-Saint-Père ,BOISVILLE LA SAINT PERE,28150,28047,24,48.333333,1.7,1.37
+ Boncé ,BONCE ,28150,28049,24,48.3,1.5,1.64
+ Boncourt ,BONCOURT ,28260,28050,24,48.85,1.466667,2.33
+ Bonneval ,BONNEVAL ,28800,28051,24,48.183333,1.4,1.29
+ Bouglainval ,BOUGLAINVAL ,28130,28052,24,48.566667,1.5,1.92
+ Boullay-les-Deux-Églises ,BOULLAY LES DEUX EGLISES,28170,28053,24,48.633333,1.333333,1.15
+ Le Boullay-Mivoye ,LE BOULLAY MIVOYE ,28210,28054,24,48.65,1.4,2.48
+ Le Boullay-Thierry ,LE BOULLAY THIERRY ,28210,28055,24,48.633333,1.433333,1.89
+ Bouville ,BOUVILLE ,28800,28057,24,48.266667,1.383333,1.15
+ Bréchamps ,BRECHAMPS ,28210,28058,24,48.666667,1.516667,1.33
+ Brezolles ,BREZOLLES ,28270,28059,24,48.683333,1.066667,1.43
+ Briconville ,BRICONVILLE ,28300,28060,24,48.533333,1.383333,1.12
+ Brou ,BROU ,28160,28061,24,48.216667,1.183333,1.11
+ Broué ,BROUE ,28410,28062,24,48.75,1.516667,1.79
+ Brunelles ,BRUNELLES ,28400,28063,24,48.316667,0.9,2.17
+ Bû ,BU ,28410,28064,24,48.8,1.5,2.06
+ Bullainville ,BULLAINVILLE ,28800,28065,24,48.166667,1.516667,1.38
+ Bullou ,BULLOU ,28160,28066,24,48.233333,1.25,1.18
+ Cernay ,CERNAY ,28120,28067,24,48.383333,1.25,0.85
+ Challet ,CHALLET ,28300,28068,24,48.55,1.433333,0.85
+Champagne, ,28410,28069,24,48.766667,1.566667,1.88
+ Champhol ,CHAMPHOL ,28300,28070,24,48.466667,1.5,0.86
+ Champrond-en-Gâtine ,CHAMPROND EN GATINE ,28240,28071,24,48.4,1.083333,1.36
+ La Chapelle-du-Noyer ,LA CHAPELLE DU NOYER,28200,28075,24,48.033333,1.316667,2.11
+ La Chapelle-Fortin ,LA CHAPELLE FORTIN ,28340,28077,24,48.65,0.866667,2.32
+ Chapelle-Guillaume ,CHAPELLE GUILLAUME ,28330,28078,24,48.116667,0.916667,2.1
+ Chapelle-Royale ,CHAPELLE ROYALE ,28290,28079,24,48.15,1.05,2
+ Charbonnières ,CHARBONNIERES ,28330,28080,24,48.2,0.933333,2.02
+ Charonville ,CHARONVILLE ,28120,28081,24,48.283333,1.3,0.75
+ Charpont ,CHARPONT ,28500,28082,24,48.7,1.45,1.51
+ Charray ,CHARRAY ,28220,28083,24,47.966667,1.333333,2.47
+ Chartainvilliers ,CHARTAINVILLIERS ,28130,28084,24,48.55,1.55,0.93
+ Chartres ,CHARTRES ,28000,28085,24,48.45,1.5,0.48
+ Chassant ,CHASSANT ,28480,28086,24,48.3,1.066667,1.43
+ Chataincourt ,CHATAINCOURT ,28270,28087,24,48.7,1.233333,1.84
+ Châteaudun ,CHATEAUDUN ,28200,28088,24,48.083333,1.333333,1.83
+ Châteauneuf-en-Thymerais ,CHATEAUNEUF EN THYMERAIS ,28170,28089,24,48.583333,1.25,0.88
+ Les Châtelets ,LES CHATELETS ,28270,28090,24,48.65,1.016667,-1
+ Châtenay ,CHATENAY ,28700,28092,24,48.358333,1.883333,-1
+ Châtillon-en-Dunois ,CHATILLON EN DUNOIS ,28290,28093,24,48.116667,1.183333,1.65
+ Chaudon ,CHAUDON ,28210,28094,24,48.666667,1.5,1.33
+ Chauffours ,CHAUFFOURS ,28120,28095,24,48.4,1.35,1.23
+ La Chaussée-d'Ivry ,LA CHAUSSEE D IVRY,28260,28096,24,48.883333,1.483333,2.51
+ Chêne-Chenu ,CHENE CHENU ,28170,28097,24,48.583333,1.333333,0.88
+ Chérisy ,CHERISY ,28500,28098,24,48.75,1.433333,1.79
+ Chuisnes ,CHUISNES ,28190,28099,24,48.45,1.216667,0.91
+ Cintray ,CINTRAY ,28300,28100,24,48.45,1.366667,1.38
+Civry, ,28200,28101,24,48.083333,1.483333,1.83
+ Clévilliers ,CLEVILLIERS ,28300,28102,24,48.55,1.383333,1.26
+ Cloyes-sur-le-Loir ,CLOYES SUR LE LOIR,28220,28103,24,48,1.233333,2.29
+ Coltainville ,COLTAINVILLE ,28300,28104,24,48.483333,1.583333,1.99
+ Combres ,COMBRES ,28480,28105,24,48.316667,1.066667,1.43
+ Conie-Molitard ,CONIE MOLITARD ,28200,28106,24,48.116667,1.45,1.65
+ Corancez ,CORANCEZ ,28630,28107,24,48.366667,1.516667,0.58
+ Cormainville ,CORMAINVILLE ,28140,28108,24,48.133333,1.6,1.56
+ Les Corvées-les-Yys ,LES CORVEES LES YYS,28240,28109,24,48.35,1.15,1.73
+ Coudray-au-Perche ,COUDRAY AU PERCHE ,28330,28111,24,48.233333,0.866667,2.32
+ Coudreceau ,COUDRECEAU ,28400,28112,24,48.35,0.916667,2.1
+ Coulombs ,COULOMBS ,28210,28113,24,48.65,1.55,1.24
+ Courbehaye ,COURBEHAYE ,28140,28114,24,48.15,1.6,1.47
+ Courtalain ,COURTALAIN ,28290,28115,24,48.083333,1.15,1.83
+ Courville-sur-Eure ,COURVILLE SUR EURE ,28190,28116,24,48.45,1.25,0.62
+ Crécy-Couvé ,CRECY COUVE ,28500,28117,24,48.666667,1.283333,1.33
+ Croisilles ,CROISILLES ,28210,28118,24,48.683333,1.5,1.42
+ La Croix-du-Perche ,LA CROIX DU PERCHE,28480,28119,24,48.266667,1.05,1.51
+ Dambron ,DAMBRON ,28140,28121,24,48.116667,1.866667,2.11
+ Dammarie ,DAMMARIE ,28360,28122,24,48.35,1.5,0.48
+ Dampierre-sous-Brou ,DAMPIERRE SOUS BROU ,28160,28123,24,48.216667,1.116667,1.21
+ Dampierre-sur-Avre ,DAMPIERRE SUR AVRE ,28350,28124,24,48.766667,1.15,1.88
+ Dampierre-sur-Blévy ,DAMPIERRE SUR BLEVY ,28170,28125,24,48.633333,1.133333,1.75
+ Dancy ,DANCY ,28800,28126,24,48.15,1.466667,1.47
+ Dangeau ,DANGEAU ,28160,28127,24,48.2,1.283333,1.65
+ Dangers ,DANGERS ,28190,28128,24,48.516667,1.35,1.54
+ Denonville ,DENONVILLE ,28700,28129,24,48.383333,1.816667,1.89
+ Digny ,DIGNY ,28250,28130,24,48.533333,1.15,1.73
+ Dommerville ,DOMMERVILLE ,91670,28131,24,48.316667,1.983333,2.62
+ Donnemain-Saint-Mamès ,DONNEMAIN SAINT MAMES ,28200,28132,24,48.1,1.366667,1.74
+ Douy ,DOUY ,28220,28133,24,48.033333,1.266667,2.11
+ Dreux ,DREUX ,28100,28134,24,48.733333,1.366667,1.7
+ Droue-sur-Drouette ,DROUE SUR DROUETTE ,28230,28135,24,48.6,1.7,1.37
+ Écluzelles ,ECLUZELLES ,28500,28136,24,48.716667,1.416667,1.6
+ Écrosnes ,ECROSNES ,28320,28137,24,48.55,1.733333,1.52
+ Écublé ,ECUBLE ,28170,28138,24,48.566667,1.316667,0.79
+ Épeautrolles ,EPEAUTROLLES ,28120,28139,24,48.316667,1.333333,0.65
+ Épernon ,EPERNON ,28230,28140,24,48.616667,1.683333,1.3
+ Ermenonville-la-Grande ,ERMENONVILLE LA GRANDE ,28120,28141,24,48.333333,1.383333,1.28
+ Ermenonville-la-Petite ,ERMENONVILLE LA PETITE ,28120,28142,24,48.3,1.35,0.94
+ Escorpain ,ESCORPAIN ,28270,28143,24,48.716667,1.216667,1.65
+ Les Étilleux ,LES ETILLEUX ,28330,28144,24,48.233333,0.816667,2.54
+ Fains-la-Folie ,FAINS LA FOLIE ,28150,28145,24,48.216667,1.65,1.15
+ Faverolles ,FAVEROLLES ,28210,28146,24,48.683333,1.583333,1.42
+ Favières ,FAVIERES ,28170,28147,24,48.533333,1.233333,0.93
+ La Ferté-Vidame ,LA FERTE VIDAME ,28340,28149,24,48.616667,0.916667,2.1
+ La Ferté-Villeneuil ,LA FERTE VILLENEUIL ,28220,28150,24,47.983333,1.35,2.38
+ Flacey ,FLACEY ,28800,28153,24,48.15,1.35,1.47
+ Fontaine-la-Guyon ,FONTAINE LA GUYON ,28190,28154,24,48.466667,1.316667,0.72
+ Fontaine-les-Ribouts ,FONTAINE LES RIBOUTS ,28170,28155,24,48.65,1.25,1.24
+ Fontaine-Simon ,FONTAINE SIMON ,28240,28156,24,48.5,1.016667,1.66
+ Fontenay-sur-Conie ,FONTENAY SUR CONIE ,28140,28157,24,48.166667,1.666667,1.38
+ Fontenay-sur-Eure ,FONTENAY SUR EURE ,28630,28158,24,48.4,1.416667,1.72
+ La Framboisière ,LA FRAMBOISIERE ,28250,28159,24,48.6,1.016667,1.66
+ Francourville ,FRANCOURVILLE ,28700,28160,24,48.4,1.666667,1.38
+ Frazé ,FRAZE ,28160,28161,24,48.266667,1.1,1.29
+ Fresnay-le-Comte ,FRESNAY LE COMTE ,28360,28162,24,48.3,1.483333,0.66
+ Fresnay-le-Gilmert ,FRESNAY LE GILMERT ,28300,28163,24,48.516667,1.416667,0.57
+ Fresnay-l'Évêque ,FRESNAY L EVEQUE ,28310,28164,24,48.266667,1.816667,1.89
+ Frétigny ,FRETIGNY ,28480,28165,24,48.366667,0.966667,1.88
+ Friaize ,FRIAIZE ,28240,28166,24,48.433333,1.133333,1.14
+ Fruncé ,FRUNCE ,28190,28167,24,48.4,1.233333,1.15
+ Gallardon ,GALLARDON ,28320,28168,24,48.533333,1.7,1.37
+ Garancières-en-Beauce ,GARANCIERES EN BEAUCE ,28700,28169,24,48.433333,1.916667,2.33
+ Garancières-en-Drouais ,GARANCIERES EN DROUAIS ,28500,28170,24,48.7,1.283333,1.51
+ Garnay ,GARNAY ,28500,28171,24,48.7,1.333333,1.51
+ Gas ,GAS ,28320,28172,24,48.566667,1.666667,1.83
+ Gâtelles ,GATELLES ,28170,28174,24,48.55,1.283333,0.7
+ La Gaudaine ,LA GAUDAINE ,28400,28175,24,48.3,0.933333,2.02
+ Le Gault-Saint-Denis ,LE GAULT SAINT DENIS,28800,28176,24,48.233333,1.483333,1.02
+ Gellainville ,GELLAINVILLE ,28630,28177,24,48.4,1.533333,0.63
+ Germainville ,GERMAINVILLE ,28500,28178,24,48.75,1.483333,1.83
+ Germignonville ,GERMIGNONVILLE ,28140,28179,24,48.183333,1.733333,1.52
+ Gilles ,GILLES ,28260,28180,24,48.916667,1.516667,2.69
+ Gironville-et-Neuville ,GIRONVILLE ET NEUVILLE ,28170,28181,24,48.616667,1.383333,1.25
+ Gohory ,GOHORY ,28160,28182,24,48.166667,1.233333,1.38
+ Gommerville ,GOMMERVILLE ,28310,28183,24,48.35,1.95,2.48
+ Gouillons ,GOUILLONS ,28310,28184,24,48.35,1.833333,1.96
+ Goussainville ,GOUSSAINVILLE ,28410,28185,24,48.766667,1.55,1.88
+ Grandville-Gaudreville ,GRANDVILLE GAUDREVILLE ,28310,28186,24,48.366667,1.966667,2.55
+ Guainville ,GUAINVILLE ,28260,28187,24,48.916667,1.5,2.69
+ Le Gué-de-Longroi ,LE GUE DE LONGROI,28700,28188,24,48.5,1.716667,1.44
+ Guilleville ,GUILLEVILLE ,28310,28189,24,48.216667,1.816667,1.89
+ Hanches ,HANCHES ,28130,28191,24,48.6,1.65,1.6
+ Happonvilliers ,HAPPONVILLIERS ,28480,28192,24,48.316667,1.116667,1.46
+ Havelu ,HAVELU ,28410,28193,24,48.783333,1.533333,1.97
+ Houville-la-Branche ,HOUVILLE LA BRANCHE ,28700,28194,24,48.45,1.633333,1.76
+ Houx ,HOUX ,28130,28195,24,48.566667,1.616667,1
+ Intréville ,INTREVILLE ,28310,28197,24,48.3,1.933333,2.4
+ Jallans ,JALLANS ,28200,28198,24,48.083333,1.383333,1.83
+ Janville ,JANVILLE ,28310,28199,24,48.2,1.883333,2.18
+ Jaudrais ,JAUDRAIS ,28250,28200,24,48.583333,1.133333,1.22
+ Jouy ,JOUY ,28300,28201,24,48.516667,1.55,1.52
+ Lamblore ,LAMBLORE ,28340,28202,24,48.616667,0.916667,2.1
+ Landelles ,LANDELLES ,28190,28203,24,48.466667,1.2,1.16
+ Langey ,LANGEY ,28220,28204,24,48.05,1.183333,2.02
+ Lanneray ,LANNERAY ,28200,28205,24,48.083333,1.25,1.83
+ Laons ,LAONS ,28270,28206,24,48.7,1.183333,1.51
+ Léthuin ,LETHUIN ,28700,28207,24,48.366667,1.866667,2.11
+ Levainville ,LEVAINVILLE ,28700,28208,24,48.5,1.733333,1.52
+ Lèves ,LEVES ,28300,28209,24,48.466667,1.483333,0.65
+ Levesville-la-Chenard ,LEVESVILLE LA CHENARD ,28310,28210,24,48.3,1.833333,1.96
+ Logron ,LOGRON ,28200,28211,24,48.15,1.266667,1.71
+ Loigny-la-Bataille ,LOIGNY LA BATAILLE ,28140,28212,24,48.116667,1.733333,1.65
+ Lormaye ,LORMAYE ,28210,28213,24,48.65,1.533333,1.24
+ La Loupe ,LA LOUPE ,28240,28214,24,48.466667,1.016667,1.66
+ Louville-la-Chenard ,LOUVILLE LA CHENARD ,28150,28215,24,48.316667,1.783333,1.74
+ Louvilliers-en-Drouais ,LOUVILLIERS EN DROUAIS ,28500,28216,24,48.733333,1.283333,1.7
+ Louvilliers-lès-Perche ,LOUVILLIERS LES PERCHE ,28250,28217,24,48.616667,1.083333,1.36
+ Lucé ,LUCE ,28110,28218,24,48.433333,1.466667,0.34
+ Luigny ,LUIGNY ,28420,28219,24,48.233333,1.033333,1.97
+ Luisant ,LUISANT ,28600,28220,24,48.416667,1.483333,0.41
+ Lumeau ,LUMEAU ,28140,28221,24,48.116667,1.783333,1.74
+ Luplanté ,LUPLANTE ,28360,28222,24,48.3,1.4,1.32
+ Luray ,LURAY ,28500,28223,24,48.716667,1.4,1.6
+ Lutz-en-Dunois ,LUTZ EN DUNOIS ,28200,28224,24,48.05,1.416667,2.02
+ Magny ,MAGNY ,28120,28225,24,48.35,1.266667,0.55
+ Maillebois ,MAILLEBOIS ,28170,28226,24,48.633333,1.15,1.56
+ Maintenon ,MAINTENON ,28130,28227,24,48.583333,1.583333,0.88
+ Mainterne ,MAINTERNE ,28270,28228,24,48.666667,1.15,1.33
+ Mainvilliers ,MAINVILLIERS ,28300,28229,24,48.45,1.466667,0.71
+ Maisons ,MAISONS ,28700,28230,24,48.4,1.85,2.03
+ La Mancelière ,LA MANCELIERE ,28270,28231,24,48.65,0.983333,1.8
+ Manou ,MANOU ,28240,28232,24,48.516667,0.983333,1.8
+ Marboué ,MARBOUE ,28200,28233,24,48.116667,1.333333,1.65
+ Marchéville ,MARCHEVILLE ,28120,28234,24,48.366667,1.25,0.68
+ Marchezais ,MARCHEZAIS ,28410,28235,24,48.766667,1.516667,1.88
+ Margon ,MARGON ,28400,28236,24,48.333333,0.833333,2.47
+ Marolles-les-Buis ,MAROLLES LES BUIS ,28400,28237,24,48.366667,0.933333,2.02
+ Marville-les-Bois ,MARVILLE LES BOIS ,28170,28238,24,48.6,1.3,0.97
+ Meaucé ,MEAUCE ,28240,28240,24,48.483333,1,1.73
+ Le Mée ,LE MEE ,28220,28241,24,47.983333,1.416667,-1
+ Méréglise ,MEREGLISE ,28120,28242,24,48.283333,1.183333,1.54
+ Mérouville ,MEROUVILLE ,28310,28243,24,48.3,1.9,2.25
+ Mervilliers ,MERVILLIERS ,28310,28244,24,48.183333,1.833333,1.96
+ Meslay-le-Grenet ,MESLAY LE GRENET ,28120,28245,24,48.366667,1.383333,1.36
+ Meslay-le-Vidame ,MESLAY LE VIDAME ,28360,28246,24,48.283333,1.466667,0.75
+ Le Mesnil-Simon ,LE MESNIL SIMON ,28260,28247,24,48.9,1.533333,2.6
+ Le Mesnil-Thomas ,LE MESNIL THOMAS ,28250,28248,24,48.6,1.1,1.29
+ Mévoisins ,MEVOISINS ,28130,28249,24,48.55,1.6,0.93
+ Mézières-en-Drouais ,MEZIERES EN DROUAIS ,28500,28251,24,48.716667,1.433333,1.6
+ Miermaigne ,MIERMAIGNE ,28420,28252,24,48.25,0.983333,1.8
+ Mignières ,MIGNIERES ,28630,28253,24,48.366667,1.433333,1.51
+ Mittainvilliers ,MITTAINVILLIERS ,28190,28254,24,48.5,1.316667,0.96
+ Moinville-la-Jeulin ,MOINVILLE LA JEULIN ,28700,28255,24,48.383333,1.7,1.37
+ Moléans ,MOLEANS ,28200,28256,24,48.116667,1.383333,1.65
+ Mondonville-Saint-Jean ,MONDONVILLE SAINT JEAN ,28700,28257,24,48.366667,1.833333,1.96
+ Montainville ,MONTAINVILLE ,28150,28258,24,48.266667,1.55,1.08
+ Montboissier ,MONTBOISSIER ,28800,28259,24,48.216667,1.4,1.11
+ Montharville ,MONTHARVILLE ,28800,28260,24,48.183333,1.333333,1.3
+ Montigny-le-Chartif ,MONTIGNY LE CHARTIF ,28120,28261,24,48.283333,1.166667,1.75
+ Montigny-le-Gannelon ,MONTIGNY LE GANNELON ,28220,28262,24,48.016667,1.233333,2.2
+ Montigny-sur-Avre ,MONTIGNY SUR AVRE ,28270,28263,24,48.733333,1.016667,1.7
+ Montireau ,MONTIREAU ,28240,28264,24,48.4,1.033333,1.58
+ Montlandon ,MONTLANDON ,28240,28265,24,48.383333,1.016667,1.66
+ Montlouet ,MONTLOUET ,28320,28266,24,48.516667,1.716667,1.44
+ Montreuil ,MONTREUIL ,28500,28267,24,48.766667,1.366667,1.88
+ Morainville ,MORAINVILLE ,28700,28268,24,48.383333,1.833333,1.96
+ Morancez ,MORANCEZ ,28630,28269,24,48.4,1.5,0.48
+ Moriers ,MORIERS ,28800,28270,24,48.216667,1.433333,1.11
+ Morvilliers ,MORVILLIERS ,28340,28271,24,48.65,0.933333,2.02
+ Mottereau ,MOTTEREAU ,28160,28272,24,48.25,1.183333,0.93
+ Moulhard ,MOULHARD ,28160,28273,24,48.2,1.05,1.74
+ Moutiers ,MOUTIERS ,28150,28274,24,48.3,1.783333,1.74
+ Neuvy-en-Beauce ,NEUVY EN BEAUCE ,28310,28276,24,48.266667,1.883333,2.18
+ Neuvy-en-Dunois ,NEUVY EN DUNOIS ,28800,28277,24,48.2,1.533333,1.42
+ Nogent-le-Phaye ,NOGENT LE PHAYE ,28630,28278,24,48.433333,1.583333,1.56
+ Nogent-le-Roi ,NOGENT LE ROI ,28210,28279,24,48.65,1.533333,1.24
+ Nogent-le-Rotrou ,NOGENT LE ROTROU ,28400,28280,24,48.316667,0.833333,2.47
+ Nogent-sur-Eure ,NOGENT SUR EURE ,28120,28281,24,48.383333,1.366667,1.26
+ Nonvilliers-Grandhoux ,NONVILLIERS GRANDHOUX ,28120,28282,24,48.35,1.183333,1.41
+ Nottonville ,NOTTONVILLE ,28140,28283,24,48.116667,1.5,1.84
+ Oinville-Saint-Liphard ,OINVILLE SAINT LIPHARD ,28310,28284,24,48.233333,1.916667,2.33
+ Oinville-sous-Auneau ,OINVILLE SOUS AUNEAU ,28700,28285,24,48.466667,1.733333,1.52
+ Ollé ,OLLE ,28120,28286,24,48.383333,1.3,0.7
+ Orgères-en-Beauce ,ORGERES EN BEAUCE ,28140,28287,24,48.15,1.7,1.47
+ Orlu ,ORLU ,28700,28288,24,48.366667,1.916667,2.33
+ Orrouer ,ORROUER ,28190,28290,24,48.416667,1.283333,0.72
+ Ouarville ,OUARVILLE ,28150,28291,24,48.35,1.766667,1.66
+ Ouerre ,OUERRE ,28500,28292,24,48.7,1.466667,1.54
+ Oulins ,OULINS ,28260,28293,24,48.866667,1.466667,2.42
+ Oysonville ,OYSONVILLE ,28700,28294,24,48.4,1.95,2.48
+ Ozoir-le-Breuil ,OZOIR LE BREUIL ,28200,28295,24,48.016667,1.483333,2.2
+ Péronville ,PERONVILLE ,28140,28296,24,48.05,1.583333,2.02
+ Pézy ,PEZY ,28150,28297,24,48.316667,1.583333,0.86
+ Pierres ,PIERRES ,28130,28298,24,48.6,1.55,1
+ Les Pinthières ,LES PINTHIERES ,28210,28299,24,48.7,1.566667,1.51
+ Poinville ,POINVILLE ,28310,28300,24,48.183333,1.9,2.25
+ Poisvilliers ,POISVILLIERS ,28300,28301,24,48.5,1.466667,0.43
+ Pontgouin ,PONTGOUIN ,28190,28302,24,48.483333,1.166667,1.74
+ Poupry ,POUPRY ,28140,28303,24,48.1,1.833333,1.96
+ Prasville ,PRASVILLE ,28150,28304,24,48.283333,1.716667,1.44
+ Pré-Saint-Évroult ,PRE SAINT EVROULT ,28800,28305,24,48.183333,1.466667,1.29
+ Pré-Saint-Martin ,PRE SAINT MARTIN ,28800,28306,24,48.216667,1.466667,1.11
+ Prouais ,PROUAIS ,28410,28307,24,48.716667,1.533333,1.63
+ Prudemanche ,PRUDEMANCHE ,28270,28308,24,48.716667,1.133333,1.6
+ Prunay-le-Gillon ,PRUNAY LE GILLON ,28360,28309,24,48.366667,1.633333,1.85
+ La Puisaye ,LA PUISAYE ,28250,28310,24,48.6,0.966667,1.88
+ Le Puiset ,LE PUISET ,28310,28311,24,48.2,1.866667,2.11
+ Puiseux ,PUISEUX ,28170,28312,24,48.633333,1.366667,1.15
+ Les Ressuintes ,LES RESSUINTES ,28340,28314,24,48.6,0.933333,2.02
+ Revercourt ,REVERCOURT ,28270,28315,24,48.716667,1.083333,1.6
+ Rohaire ,ROHAIRE ,28340,28316,24,48.666667,0.85,2.39
+ Roinville ,ROINVILLE ,28700,28317,24,48.45,1.75,1.59
+ Romilly-sur-Aigre ,ROMILLY SUR AIGRE ,28220,28318,24,47.983333,1.283333,2.38
+ Rouvray-Saint-Denis ,ROUVRAY SAINT DENIS ,28310,28319,24,48.266667,1.933333,2.4
+ Rouvray-Saint-Florentin ,ROUVRAY SAINT FLORENTIN ,28150,28320,24,48.25,1.566667,0.93
+ Rueil-la-Gadelière ,RUEIL LA GADELIERE ,28270,28322,24,48.716667,0.966667,1.88
+ Saint-Ange-et-Torçay ,SAINT ANGE ET TORCAY,28170,28323,24,48.65,1.216667,1.24
+ Saint-Arnoult-des-Bois ,SAINT ARNOULT DES BOIS,28190,28324,24,48.483333,1.266667,0.55
+ Saint-Aubin-des-Bois ,SAINT AUBIN DES BOIS,28300,28325,24,48.466667,1.366667,1.28
+ Saint-Avit-les-Guespières ,SAINT AVIT LES GUESPIERES,28120,28326,24,48.266667,1.266667,0.92
+ Saint-Chéron-des-Champs ,SAINT CHERON DES CHAMPS,28170,28328,24,48.566667,1.45,2.05
+ Saint-Christophe ,SAINT CHRISTOPHE ,28200,28329,24,48.133333,1.366667,1.56
+ Saint-Denis-d'Authou ,SAINT DENIS D AUTHOU,28480,28331,24,48.35,0.983333,1.8
+ Sainte-Gemme-Moronval ,SAINTE GEMME MORONVAL ,28500,28332,24,48.733333,1.4,1.7
+ Saint-Denis-des-Puits ,SAINT DENIS DES PUITS,28240,28333,24,48.4,1.183333,1.77
+ Saint-Denis-les-Ponts ,SAINT DENIS LES PONTS,28200,28334,24,48.066667,1.3,1.92
+ Saint-Éliph ,SAINT ELIPH ,28240,28335,24,48.45,1.016667,1.66
+ Saint-Éman ,SAINT EMAN ,28120,28336,24,48.316667,1.216667,0.97
+ Saint-Georges-sur-Eure ,SAINT GEORGES SUR EURE,28190,28337,24,48.416667,1.366667,1.67
+ Saint-Germain-la-Gâtine ,SAINT GERMAIN LA GATINE,28300,28338,24,48.533333,1.45,0.61
+ Saint-Germain-le-Gaillard ,SAINT GERMAIN LE GAILLARD,28190,28339,24,48.416667,1.266667,0.7
+ Saint-Hilaire-sur-Yerre ,SAINT HILAIRE SUR YERRE,28220,28340,24,48.033333,1.25,2.11
+ Saint-Jean-de-Rebervilliers ,SAINT JEAN DE REBERVILLIERS,28170,28341,24,48.616667,1.25,1.06
+ Saint-Jean-Pierre-Fixte ,SAINT JEAN PIERRE FIXTE,28400,28342,24,48.283333,0.833333,2.47
+ Saint-Laurent-la-Gâtine ,SAINT LAURENT LA GATINE,28210,28343,24,48.7,1.55,1.51
+ Saint-Léger-des-Aubées ,SAINT LEGER DES AUBEES,28700,28344,24,48.416667,1.733333,1.52
+ Saint-Lubin-de-Cravant ,SAINT LUBIN DE CRAVANT,28270,28346,24,48.716667,1.1,1.6
+ Saint-Lubin-de-la-Haye ,SAINT LUBIN DE LA,28410,28347,24,48.816667,1.566667,2.15
+ Saint-Lubin-des-Joncherets ,SAINT LUBIN DES JONCHERETS,28350,28348,24,48.766667,1.216667,1.88
+ Saint-Lucien ,SAINT LUCIEN ,28210,28349,24,48.65,1.616667,1.88
+ Saint-Luperce ,SAINT LUPERCE ,28190,28350,24,48.433333,1.316667,0.83
+ Saint-Maixme-Hauterive ,SAINT MAIXME HAUTERIVE ,28170,28351,24,48.583333,1.183333,1.13
+ Saint-Martin-de-Nigelles ,SAINT MARTIN DE NIGELLES,28130,28352,24,48.616667,1.616667,1.24
+ Saint-Maur-sur-le-Loir ,SAINT MAUR SUR LE,28800,28353,24,48.15,1.416667,1.47
+ Saint-Maurice-Saint-Germain ,SAINT MAURICE SAINT GERMAIN,28240,28354,24,48.5,1.083333,1.36
+ Saint-Ouen-Marchefroy ,SAINT OUEN MARCHEFROY ,28560,28355,24,48.85,1.533333,2.33
+ Saint-Pellerin ,SAINT PELLERIN ,28290,28356,24,48.066667,1.15,1.92
+ Saint-Piat ,SAINT PIAT ,28130,28357,24,48.55,1.583333,0.85
+ Saint-Prest ,SAINT PREST ,28300,28358,24,48.5,1.533333,1.25
+ Saint-Rémy-sur-Avre ,SAINT REMY SUR AVRE,28380,28359,24,48.766667,1.25,1.88
+ Saint-Victor-de-Buthon ,SAINT VICTOR DE BUTHON,28240,28362,24,48.4,0.966667,1.88
+ Sainville ,SAINVILLE ,28700,28363,24,48.416667,1.883333,2.18
+ Sancheville ,SANCHEVILLE ,28800,28364,24,48.183333,1.566667,1.88
+ Sandarville ,SANDARVILLE ,28120,28365,24,48.35,1.35,0.87
+ Santeuil ,SANTEUIL ,28700,28366,24,48.383333,1.733333,1.52
+ Santilly ,SANTILLY ,28310,28367,24,48.15,1.866667,2.11
+ La Saucelle ,LA SAUCELLE ,28250,28368,24,48.633333,1.033333,1.58
+ Saulnières ,SAULNIERES ,28500,28369,24,48.666667,1.266667,1.46
+ Saumeray ,SAUMERAY ,28800,28370,24,48.25,1.316667,1.69
+ Saussay ,SAUSSAY ,28260,28371,24,48.85,1.416667,2.33
+ Sénantes ,SENANTES ,28210,28372,24,48.666667,1.566667,1.33
+ Senonches ,SENONCHES ,28250,28373,24,48.55,1.033333,1.58
+ Serazereux ,SERAZEREUX ,28170,28374,24,48.6,1.433333,1.82
+ Serville ,SERVILLE ,28410,28375,24,48.766667,1.483333,1.88
+ Soizé ,SOIZE ,28330,28376,24,48.166667,0.883333,2.25
+ Sorel-Moussel ,SOREL MOUSSEL ,28520,28377,24,48.833333,1.366667,2.24
+ Souancé-au-Perche ,SOUANCE AU PERCHE ,28400,28378,24,48.266667,0.866667,2.32
+ Soulaires ,SOULAIRES ,28130,28379,24,48.516667,1.583333,1.25
+ Sours ,SOURS ,28630,28380,24,48.416667,1.6,1.75
+ Tardais ,TARDAIS ,28250,28381,24,48.583333,1,1.73
+ Terminiers ,TERMINIERS ,28140,28382,24,48.083333,1.75,1.83
+ Theuville ,THEUVILLE ,28360,28383,24,48.333333,1.6,1.32
+ Theuvy-Achères ,THEUVY ACHERES ,28170,28384,24,48.566667,1.333333,0.79
+ Le Thieulin ,LE THIEULIN ,28240,28385,24,48.4,1.133333,1.16
+ Thiron-Gardais ,THIRON GARDAIS ,28480,28387,24,48.316667,0.983333,1.8
+ Thivars ,THIVARS ,28630,28388,24,48.383333,1.466667,0.82
+ Thiville ,THIVILLE ,28200,28389,24,48.016667,1.383333,2.2
+ Tillay-le-Péneux ,TILLAY LE PENEUX ,28140,28390,24,48.166667,1.766667,1.66
+ Trancrainville ,TRANCRAINVILLE ,28310,28392,24,48.233333,1.866667,2.11
+ Tréon ,TREON ,28500,28394,24,48.683333,1.333333,1.42
+ Trizay-Coutretot-Saint-Serge ,TRIZAY COUTRETOT SAINT SERGE,28400,28395,24,48.283333,0.866667,2.32
+ Trizay-lès-Bonneval ,TRIZAY LES BONNEVAL ,28800,28396,24,48.2,1.333333,1.29
+ Umpeau ,UMPEAU ,28700,28397,24,48.466667,1.683333,1.3
+ Unverre ,UNVERRE ,28160,28398,24,48.2,1.1,1.29
+ Vacheresses-les-Basses ,VACHERESSES LES BASSES ,28210,28399,24,48.616667,1.533333,1.06
+ Vaupillon ,VAUPILLON ,28240,28401,24,48.466667,1,1.73
+ Vérigny ,VERIGNY ,28190,28402,24,48.516667,1.316667,1.16
+ Vernouillet ,VERNOUILLET ,28500,28404,24,48.716667,1.366667,1.6
+ Vert-en-Drouais ,VERT EN DROUAIS ,28500,28405,24,48.766667,1.3,1.88
+ Viabon ,VIABON ,28150,28406,24,48.216667,1.716667,1.44
+ Vichères ,VICHERES ,28420,28407,24,48.266667,0.916667,2.1
+ Vierville ,VIERVILLE ,28700,28408,24,48.383333,1.916667,2.33
+ Vieuvicq ,VIEUVICQ ,28120,28409,24,48.266667,1.216667,1.3
+ Villampuy ,VILLAMPUY ,28200,28410,24,48.033333,1.516667,2.11
+ Villars ,VILLARS ,28150,28411,24,48.233333,1.55,1.16
+ Villeau ,VILLEAU ,28150,28412,24,48.233333,1.6,1.02
+ La Ville-aux-Nonains ,LA VILLE AUX NONAINS,28250,28413,24,48.55,1.083333,1.36
+ Villemeux-sur-Eure ,VILLEMEUX SUR EURE ,28210,28415,24,48.666667,1.466667,1.33
+ Villeneuve-Saint-Nicolas ,VILLENEUVE SAINT NICOLAS ,28150,28416,24,48.283333,1.566667,0.9
+ Villiers-le-Morhier ,VILLIERS LE MORHIER ,28130,28417,24,48.616667,1.566667,1.08
+ Villiers-Saint-Orien ,VILLIERS SAINT ORIEN ,28800,28418,24,48.133333,1.483333,1.56
+ Vitray-en-Beauce ,VITRAY EN BEAUCE ,28360,28419,24,48.283333,1.416667,1.17
+ Vitray-sous-Brézolles ,VITRAY SOUS BREZOLLES ,28270,28420,24,48.683333,1.133333,1.42
+ Voise ,VOISE ,28700,28421,24,48.4,1.716667,1.44
+ Voves ,VOVES ,28150,28422,24,48.266667,1.633333,1.07
+ Yermenonville ,YERMENONVILLE ,28130,28423,24,48.55,1.616667,1
+ Yèvres ,YEVRES ,28160,28424,24,48.2,1.2,1.2
+ Ymeray ,YMERAY ,28320,28425,24,48.516667,1.7,1.37
+ Ymonville ,YMONVILLE ,28150,28426,24,48.25,1.75,1.59
+ Argol ,ARGOL ,29560,29001,53,48.25,-4.316667,0.73
+ Arzano ,ARZANO ,29300,29002,53,47.9,-3.433333,2.63
+ Audierne ,AUDIERNE ,29770,29003,53,48.016667,-4.533333,1.68
+ Bannalec ,BANNALEC ,29380,29004,53,47.933333,-3.7,1.62
+ Baye ,BAYE ,29300,29005,53,47.85,-3.6,2
+ Bénodet ,BENODET ,29950,29006,53,47.866667,-4.116667,1.87
+ Berrien ,BERRIEN ,29690,29007,53,48.4,-3.75,1.43
+ Beuzec-Cap-Sizun ,BEUZEC CAP SIZUN ,29790,29008,53,48.083333,-4.516667,1.49
+ Bodilis ,BODILIS ,29400,29010,53,48.533333,-4.116667,1.05
+ Bohars ,BOHARS ,29820,29011,53,48.433333,-4.516667,1.49
+ Bolazec ,BOLAZEC ,29640,29012,53,48.45,-3.583333,2.06
+ Botmeur ,BOTMEUR ,29690,29013,53,48.383333,-3.916667,1.68
+ Botsorhel ,BOTSORHEL ,29650,29014,53,48.533333,-3.65,1.81
+ Bourg-Blanc ,BOURG BLANC ,29860,29015,53,48.5,-4.5,1.49
+ Brasparts ,BRASPARTS ,29190,29016,53,48.3,-3.95,0.67
+ Brélès ,BRELES ,29810,29017,53,48.483333,-4.716667,2.25
+ Brennilis ,BRENNILIS ,29690,29018,53,48.35,-3.85,1.05
+ Brest ,BREST ,29200,29019,53,48.4,-4.483333,1.36
+ Briec ,BRIEC ,29510,29020,53,48.1,-4,0.84
+ Brignogan-Plage ,BRIGNOGAN PLAGE ,29890,29021,53,48.666667,-4.316667,1.63
+ Camaret-sur-Mer ,CAMARET SUR MER ,29570,29022,53,48.283333,-4.6,1.8
+ Carantec ,CARANTEC ,29660,29023,53,48.666667,-3.916667,1.63
+ Carhaix-Plouguer ,CARHAIX PLOUGUER ,29270,29024,53,48.283333,-3.583333,2.06
+ Cast ,CAST ,29150,29025,53,48.166667,-4.133333,1.01
+ Châteaulin ,CHATEAULIN ,29150,29026,53,48.2,-4.083333,0.48
+ Châteauneuf-du-Faou ,CHATEAUNEUF DU FAOU ,29540,29027,53,48.183333,-3.816667,1.17
+ Cléden-Cap-Sizun ,CLEDEN CAP SIZUN ,29770,29028,53,48.05,-4.65,1.99
+ Cléden-Poher ,CLEDEN POHER ,29270,29029,53,48.233333,-3.666667,1.74
+ Cléder ,CLEDER ,29233,29030,53,48.666667,-4.1,1.63
+ Clohars-Carnoët ,CLOHARS CARNOET ,29360,29031,53,47.8,-3.583333,2.16
+ Clohars-Fouesnant ,CLOHARS FOUESNANT ,29950,29032,53,47.9,-4.066667,1.72
+ Le Cloître-Pleyben ,LE CLOITRE PLEYBEN ,29190,29033,53,48.25,-3.883333,0.92
+ Le Cloître-Saint-Thégonnec ,LE CLOITRE SAINT THEGONNEC,29410,29034,53,48.483333,-3.8,1.61
+ Coat-Méal ,COAT MEAL ,29870,29035,53,48.5,-4.533333,1.6
+ Collorec ,COLLOREC ,29530,29036,53,48.283333,-3.783333,1.3
+ Combrit ,COMBRIT ,29120,29037,53,47.883333,-4.15,1.79
+ Commana ,COMMANA ,29450,29038,53,48.416667,-3.95,1.5
+ Concarneau ,CONCARNEAU ,29900,29039,53,47.866667,-3.916667,1.87
+ Le Conquet ,LE CONQUET ,29217,29040,53,48.366667,-4.766667,2.44
+ Coray ,CORAY ,29370,29041,53,48.066667,-3.833333,1.11
+ Crozon ,CROZON ,29160,29042,53,48.25,-4.483333,1.36
+ Daoulas ,DAOULAS ,29460,29043,53,48.366667,-4.25,0.56
+ Dinéault ,DINEAULT ,29150,29044,53,48.216667,-4.166667,1.58
+ Dirinon ,DIRINON ,29460,29045,53,48.4,-4.266667,1.17
+ Douarnenez ,DOUARNENEZ ,29100,29046,53,48.1,-4.333333,0.84
+ Le Drennec ,LE DRENNEC ,29860,29047,53,48.533333,-4.366667,1.21
+ Édern ,EDERN ,29510,29048,53,48.1,-3.983333,0.84
+ Elliant ,ELLIANT ,29370,29049,53,48,-3.883333,1.28
+ Ergué-Gabéric ,ERGUE GABERIC ,29500,29051,53,48,-4.033333,1.28
+ Esquibien ,ESQUIBIEN ,29770,29052,53,48.016667,-4.566667,1.68
+ Le Faou ,LE FAOU ,29590,29053,53,48.3,-4.183333,1.1
+ La Feuillée ,LA FEUILLEE ,29690,29054,53,48.4,-3.85,1.05
+ Le Folgoët ,LE FOLGOET ,29260,29055,53,48.566667,-4.333333,1.2
+ La Forest-Landerneau ,LA FOREST LANDERNEAU ,29800,29056,53,48.433333,-4.316667,1.3
+ La Forêt-Fouesnant ,LA FORET FOUESNANT ,29940,29057,53,47.916667,-3.983333,1.65
+ Fouesnant ,FOUESNANT ,29170,29058,53,47.9,-4.016667,1.72
+ Garlan ,GARLAN ,29610,29059,53,48.6,-3.75,1.43
+ Gouesnach ,GOUESNACH ,29950,29060,53,47.916667,-4.116667,1.65
+ Gouesnou ,GOUESNOU ,29850,29061,53,48.45,-4.466667,1.3
+ Gouézec ,GOUEZEC ,29190,29062,53,48.166667,-3.966667,1.41
+ Goulien ,GOULIEN ,29770,29063,53,48.05,-4.6,1.8
+ Goulven ,GOULVEN ,29890,29064,53,48.633333,-4.3,1.49
+ Gourlizon ,GOURLIZON ,29710,29065,53,48.016667,-4.266667,1.21
+ Guengat ,GUENGAT ,29180,29066,53,48.05,-4.2,1.22
+ Guerlesquin ,GUERLESQUIN ,29650,29067,53,48.516667,-3.583333,2.06
+ Guiclan ,GUICLAN ,29410,29068,53,48.55,-3.966667,1.26
+ Guilers ,GUILERS ,29820,29069,53,48.433333,-4.566667,1.68
+ Guiler-sur-Goyen ,GUILER SUR GOYEN ,29710,29070,53,48.016667,-4.366667,1.21
+ Guilligomarc'h ,GUILLIGOMARC H ,29300,29071,53,47.933333,-3.416667,2.69
+ Guimaëc ,GUIMAEC ,29620,29073,53,48.666667,-3.7,1.63
+ Guimiliau ,GUIMILIAU ,29400,29074,53,48.483333,-4,1.31
+ Guipavas ,GUIPAVAS ,29490,29075,53,48.433333,-4.4,1.04
+ Guipronvel ,GUIPRONVEL ,29290,29076,53,48.483333,-4.566667,1.68
+ Guissény ,GUISSENY ,29880,29077,53,48.633333,-4.416667,1.49
+ Hanvec ,HANVEC ,29460,29078,53,48.333333,-4.166667,1.07
+ Henvic ,HENVIC ,29670,29079,53,48.633333,-3.933333,1.49
+ Hôpital-Camfrout ,HOPITAL CAMFROUT ,29460,29080,53,48.333333,-4.233333,0.45
+ Huelgoat ,HUELGOAT ,29690,29081,53,48.366667,-3.75,1.43
+ Île-Tudy ,ILE TUDY ,29980,29085,53,47.833333,-4.166667,2.01
+ Irvillac ,IRVILLAC ,29460,29086,53,48.366667,-4.216667,0.35
+ Le Juch ,LE JUCH ,29100,29087,53,48.066667,-4.25,1.47
+ Kergloff ,KERGLOFF ,29270,29089,53,48.266667,-3.633333,1.87
+ Kerlaz ,KERLAZ ,29100,29090,53,48.083333,-4.266667,1.13
+ Kerlouan ,KERLOUAN ,29890,29091,53,48.65,-4.366667,1.69
+ Kernilis ,KERNILIS ,29260,29093,53,48.566667,-4.416667,1.58
+ Kernouës ,KERNOUES ,29260,29094,53,48.583333,-4.35,1.27
+ Kersaint-Plabennec ,KERSAINT PLABENNEC ,29860,29095,53,48.466667,-4.366667,1.34
+ Lampaul-Guimiliau ,LAMPAUL GUIMILIAU ,29400,29097,53,48.5,-4.033333,0.91
+ Lampaul-Plouarzel ,LAMPAUL PLOUARZEL ,29810,29098,53,48.45,-4.766667,2.44
+ Lampaul-Ploudalmézeau ,LAMPAUL PLOUDALMEZEAU ,29830,29099,53,48.566667,-4.65,1.99
+ Lanarvily ,LANARVILY ,29260,29100,53,48.55,-4.383333,1.12
+ Landéda ,LANDEDA ,29870,29101,53,48.583333,-4.566667,1.68
+ Landeleau ,LANDELEAU ,29530,29102,53,48.233333,-3.733333,1.49
+ Landerneau ,LANDERNEAU ,29800,29103,53,48.45,-4.25,0.69
+ Landévennec ,LANDEVENNEC ,29560,29104,53,48.3,-4.266667,0.86
+ Landivisiau ,LANDIVISIAU ,29400,29105,53,48.516667,-4.066667,0.98
+ Landrévarzec ,LANDREVARZEC ,29510,29106,53,48.083333,-4.05,1.66
+ Landudal ,LANDUDAL ,29510,29107,53,48.066667,-3.983333,0.99
+ Landudec ,LANDUDEC ,29710,29108,53,48,-4.333333,1.28
+ Landunvez ,LANDUNVEZ ,29840,29109,53,48.533333,-4.733333,2.31
+ Langolen ,LANGOLEN ,29510,29110,53,48.066667,-3.916667,1.89
+ Lanhouarneau ,LANHOUARNEAU ,29430,29111,53,48.583333,-4.2,1.27
+ Lanildut ,LANILDUT ,29840,29112,53,48.483333,-4.75,2.37
+ Lannéanou ,LANNEANOU ,29640,29114,53,48.483333,-3.666667,1.74
+ Lannédern ,LANNEDERN ,29190,29115,53,48.3,-3.9,0.86
+ Lanneuffret ,LANNEUFFRET ,29400,29116,53,48.5,-4.2,1.46
+ Lannilis ,LANNILIS ,29870,29117,53,48.566667,-4.516667,1.49
+ Lanrivoaré ,LANRIVOARE ,29290,29119,53,48.466667,-3.633333,2.49
+ Lanvéoc ,LANVEOC ,29160,29120,53,48.283333,-4.466667,1.3
+ Larret ,LARRET ,29840,29121,53,48.5,-4.733333,2.31
+ Laz ,LAZ ,29520,29122,53,48.133333,-3.833333,1.11
+ Lennon ,LENNON ,29190,29123,53,48.2,-3.9,1.02
+ Lesneven ,LESNEVEN ,29260,29124,53,48.566667,-4.316667,1.2
+ Leuhan ,LEUHAN ,29390,29125,53,48.1,-3.783333,1.3
+ Loc Brévalaire ,LOC BREVALAIRE ,29260,29126,53,48.55,-4.4,1.29
+ Loc-Éguiner-Saint-Thégonnec ,LOC EGUINER SAINT THEGONNEC,29410,29127,53,48.466667,-3.966667,1.02
+ Locmaria-Berrien ,LOCMARIA BERRIEN ,29690,29129,53,48.35,-3.7,1.62
+ Locmélar ,LOCMELAR ,29400,29131,53,48.45,-4.066667,0.8
+ Locquénolé ,LOCQUENOLE ,29670,29132,53,48.616667,-3.866667,1.42
+ Locquirec ,LOCQUIREC ,29241,29133,53,48.7,-3.65,1.81
+ Locronan ,LOCRONAN ,29180,29134,53,48.1,-4.2,0.84
+ Loctudy ,LOCTUDY ,29750,29135,53,47.833333,-4.166667,2.01
+ Locunolé ,LOCUNOLE ,29310,29136,53,47.933333,-3.483333,2.44
+ Logonna-Daoulas ,LOGONNA DAOULAS ,29460,29137,53,48.316667,-4.3,1.59
+ Lopérec ,LOPEREC ,29590,29139,53,48.283333,-4.05,1.24
+ Loperhet ,LOPERHET ,29470,29140,53,48.383333,-4.3,1
+ Loqueffret ,LOQUEFFRET ,29530,29141,53,48.316667,-3.866667,1.42
+ Mahalon ,MAHALON ,29790,29143,53,48.033333,-4.433333,1.17
+ La Martyre ,LA MARTYRE ,29800,29144,53,48.45,-4.166667,1.22
+ Meilars ,MEILARS ,29790,29145,53,48.05,-4.433333,1.17
+ Melgven ,MELGVEN ,29140,29146,53,47.9,-3.833333,1.72
+ Mellac ,MELLAC ,29300,29147,53,47.9,-3.583333,2.06
+ Mespaul ,MESPAUL ,29420,29148,53,48.616667,-4.016667,1.42
+ Milizac ,MILIZAC ,29290,29149,53,48.466667,-4.566667,1.68
+ Moëlan-sur-Mer ,MOELAN SUR MER ,29350,29150,53,47.816667,-3.633333,2.08
+ Morlaix ,MORLAIX ,29600,29151,53,48.583333,-3.833333,1.27
+ Motreff ,MOTREFF ,29270,29152,53,48.2,-3.55,2.19
+ Névez ,NEVEZ ,29920,29153,53,47.816667,-3.783333,2.08
+ Pencran ,PENCRAN ,29800,29156,53,48.433333,-4.233333,0.61
+ Peumérit ,PEUMERIT ,29710,29159,53,47.933333,-4.3,1.57
+ Plabennec ,PLABENNEC ,29860,29160,53,48.5,-4.433333,1.17
+ Pleuven ,PLEUVEN ,29170,29161,53,47.9,-4.033333,1.72
+ Pleyben ,PLEYBEN ,29190,29162,53,48.233333,-3.966667,0.6
+ Pleyber-Christ ,PLEYBER CHRIST ,29410,29163,53,48.5,-3.866667,0.98
+ Plobannalec ,PLOBANNALEC ,29740,29165,53,47.816667,-4.216667,2.08
+ Ploéven ,PLOEVEN ,29550,29166,53,48.15,-4.233333,0.63
+ Plogastel-Saint-Germain ,PLOGASTEL SAINT GERMAIN ,29710,29167,53,47.983333,-4.266667,1.35
+ Plogoff ,PLOGOFF ,29770,29168,53,48.033333,-4.666667,2.06
+ Plogonnec ,PLOGONNEC ,29180,29169,53,48.083333,-4.183333,0.92
+ Plomelin ,PLOMELIN ,29700,29170,53,47.933333,-4.15,1.57
+ Plomeur ,PLOMEUR ,29120,29171,53,47.833333,-4.283333,2.01
+ Plomodiern ,PLOMODIERN ,29550,29172,53,48.183333,-4.233333,0.66
+ Plonéis ,PLONEIS ,29710,29173,53,48.016667,-4.216667,1.63
+ Plonéour-Lanvern ,PLONEOUR LANVERN ,29720,29174,53,47.9,-4.283333,1.72
+ Plonévez-du-Faou ,PLONEVEZ DU FAOU ,29530,29175,53,48.25,-3.833333,1.11
+ Plonévez-Porzay ,PLONEVEZ PORZAY ,29550,29176,53,48.1,-4.216667,1.58
+ Plouarzel ,PLOUARZEL ,29810,29177,53,48.433333,-4.733333,2.31
+ Ploudalmézeau ,PLOUDALMEZEAU ,29830,29178,53,48.533333,-4.65,1.99
+ Ploudaniel ,PLOUDANIEL ,29260,29179,53,48.533333,-4.316667,1.05
+ Ploudiry ,PLOUDIRY ,29800,29180,53,48.45,-4.15,1.5
+ Plouédern ,PLOUEDERN ,29800,29181,53,48.483333,-4.25,0.83
+ Plouégat-Guérand ,PLOUEGAT GUERAND ,29620,29182,53,48.616667,-3.666667,1.74
+ Plouégat-Moysan ,PLOUEGAT MOYSAN ,29650,29183,53,48.566667,-3.616667,1.93
+ Plouénan ,PLOUENAN ,29420,29184,53,48.633333,-4,1.49
+ Plouescat ,PLOUESCAT ,29430,29185,53,48.666667,-4.166667,1.63
+ Plougar ,PLOUGAR ,29440,29187,53,48.566667,-4.15,1.2
+ Plougasnou ,PLOUGASNOU ,29630,29188,53,48.7,-3.8,1.78
+ Plougastel-Daoulas ,PLOUGASTEL DAOULAS ,29470,29189,53,48.366667,-4.366667,1
+ Plougonvelin ,PLOUGONVELIN ,29217,29190,53,48.35,-4.716667,2.25
+ Plougonven ,PLOUGONVEN ,29640,29191,53,48.516667,-3.716667,1.55
+ Plougoulm ,PLOUGOULM ,29250,29192,53,48.666667,-4.05,1.63
+ Plougourvest ,PLOUGOURVEST ,29400,29193,53,48.55,-4.083333,1.12
+ Plouguerneau ,PLOUGUERNEAU ,29880,29195,53,48.6,-4.5,1.42
+ Plouguin ,PLOUGUIN ,29830,29196,53,48.533333,-4.6,1.8
+ Plouider ,PLOUIDER ,29260,29198,53,48.616667,-4.3,1.42
+ Plouigneau ,PLOUIGNEAU ,29610,29199,53,48.566667,-3.7,1.62
+ Ploumoguer ,PLOUMOGUER ,29810,29201,53,48.4,-4.716667,2.25
+ Plounéour-Ménez ,PLOUNEOUR MENEZ ,29410,29202,53,48.45,-3.883333,0.92
+ Plounéour-Trez ,PLOUNEOUR TREZ ,29890,29203,53,48.65,-4.316667,1.56
+ Plounéventer ,PLOUNEVENTER ,29400,29204,53,48.516667,-4.216667,1.7
+ Plounévézel ,PLOUNEVEZEL ,29270,29205,53,48.3,-3.6,2
+ Plounévez-Lochrist ,PLOUNEVEZ LOCHRIST ,29430,29206,53,48.616667,-4.216667,1.42
+ Plouvien ,PLOUVIEN ,29860,29209,53,48.533333,-4.45,1.23
+ Plouvorn ,PLOUVORN ,29420,29210,53,48.583333,-4.033333,1.48
+ Plouyé ,PLOUYE ,29690,29211,53,48.316667,-3.733333,1.49
+ Plouzané ,PLOUZANE ,29280,29212,53,48.383333,-4.616667,1.87
+ Plouzévédé ,PLOUZEVEDE ,29440,29213,53,48.6,-4.116667,1.34
+ Plovan ,PLOVAN ,29720,29214,53,47.916667,-4.366667,1.65
+ Plozévet ,PLOZEVET ,29710,29215,53,47.983333,-4.416667,1.57
+ Pluguffan ,PLUGUFFAN ,29700,29216,53,47.983333,-4.183333,1.35
+ Pont-Aven ,PONT AVEN ,29930,29217,53,47.85,-3.75,1.94
+ Pont Croix ,PONT CROIX ,29790,29218,53,48.5,-4.05,1.96
+ Le Ponthou ,LE PONTHOU ,29650,29219,53,48.566667,-3.633333,1.87
+ Pont-l'Abbé ,PONT L ABBE ,29120,29220,53,47.866667,-4.216667,1.87
+ Porspoder ,PORSPODER ,29840,29221,53,48.5,-4.766667,2.44
+ Port-Launay ,PORT LAUNAY ,29150,29222,53,48.216667,-4.066667,0.99
+ Pouldergat ,POULDERGAT ,29100,29224,53,48.05,-4.333333,1.06
+ Pouldreuzic ,POULDREUZIC ,29710,29225,53,47.95,-4.366667,1.5
+ Poullan-sur-Mer ,POULLAN SUR MER ,29100,29226,53,48.083333,-4.416667,1.77
+ Poullaouen ,POULLAOUEN ,29246,29227,53,48.333333,-3.65,1.81
+ Primelin ,PRIMELIN ,29770,29228,53,48.016667,-4.616667,1.87
+ Quéménéven ,QUEMENEVEN ,29180,29229,53,48.116667,-4.116667,1.77
+ Querrien ,QUERRIEN ,29310,29230,53,47.966667,-3.533333,2.25
+ Quimper ,QUIMPER ,29000,29232,53,48,-4.1,1.28
+ Quimperlé ,QUIMPERLE ,29300,29233,53,47.866667,-3.55,2.19
+ Rédené ,REDENE ,29300,29234,53,47.85,-3.466667,2.5
+ Le Relecq-Kerhuon ,LE RELECQ KERHUON ,29480,29235,53,48.4,-4.4,1.04
+ Riec-sur-Bélon ,RIEC SUR BELON ,29340,29236,53,47.833333,-3.7,2.01
+ La Roche-Maurice ,LA ROCHE MAURICE ,29800,29237,53,48.466667,-4.2,0.76
+ Roscanvel ,ROSCANVEL ,29570,29238,53,48.316667,-4.55,1.61
+ Roscoff ,ROSCOFF ,29680,29239,53,48.733333,-3.983333,1.93
+ Rosnoën ,ROSNOEN ,29590,29240,53,48.266667,-4.2,1.29
+ Rosporden ,ROSPORDEN ,29140,29241,53,47.966667,-3.833333,1.43
+ Saint-Coulitz ,SAINT COULITZ ,29150,29243,53,48.183333,-4.066667,0.93
+ Saint-Derrien ,SAINT DERRIEN ,29440,29244,53,48.55,-4.183333,1.9
+ Saint-Divy ,SAINT DIVY ,29800,29245,53,48.45,-4.333333,1.55
+ Saint-Éloy ,SAINT ELOY ,29460,29246,53,48.366667,-4.116667,1.92
+ Saint-Évarzec ,SAINT EVARZEC ,29170,29247,53,47.933333,-4.016667,1.57
+ Saint-Frégant ,SAINT FREGANT ,29260,29248,53,48.6,-4.383333,1.34
+ Saint-Goazec ,SAINT GOAZEC ,29520,29249,53,48.166667,-3.783333,1.3
+ Saint-Hernin ,SAINT HERNIN ,29270,29250,53,48.216667,-3.633333,1.87
+ Saint-Jean-du-Doigt ,SAINT JEAN DU DOIGT,29630,29251,53,48.7,-3.766667,1.78
+ Saint-Jean-Trolimon ,SAINT JEAN TROLIMON ,29120,29252,53,47.866667,-4.283333,1.87
+ Saint-Martin-des-Champs ,SAINT MARTIN DES CHAMPS,29600,29254,53,48.583333,-3.833333,1.27
+ Saint-Méen ,SAINT MEEN ,29260,29255,53,48.566667,-4.266667,1.55
+ Saint-Nic ,SAINT NIC ,29550,29256,53,48.2,-4.283333,1.47
+ Saint-Pol-de-Léon ,SAINT POL DE LEON,29250,29259,53,48.683333,-3.983333,1.71
+ Saint-Renan ,SAINT RENAN ,29290,29260,53,48.433333,-4.616667,1.87
+ Saint-Rivoal ,SAINT RIVOAL ,29190,29261,53,48.35,-4,1.66
+ Saint-Sauveur ,SAINT SAUVEUR ,29400,29262,53,48.45,-4,1.46
+ Saint-Ségal ,SAINT SEGAL ,29590,29263,53,48.233333,-4.066667,1.16
+ Saint-Servais ,SAINT SERVAIS ,29400,29264,53,48.516667,-4.15,0.98
+ Sainte-Sève ,SAINTE SEVE ,29600,29265,53,48.566667,-3.866667,1.5
+ Saint-Thégonnec ,SAINT THEGONNEC ,29410,29266,53,48.516667,-3.95,0.98
+ Saint-Thois ,SAINT THOIS ,29520,29267,53,48.166667,-3.883333,1.23
+ Saint-Thonan ,SAINT THONAN ,29800,29268,53,48.483333,-4.333333,1.63
+ Saint-Thurien ,SAINT THURIEN ,29380,29269,53,47.95,-3.633333,1.87
+ Saint-Urbain ,SAINT URBAIN ,29800,29270,53,48.4,-4.233333,0.86
+ Saint-Vougay ,SAINT VOUGAY ,29440,29271,53,48.6,-4.133333,1.34
+ Saint-Yvy ,SAINT YVY ,29140,29272,53,47.966667,-3.933333,1.43
+ Santec ,SANTEC ,29250,29273,53,48.7,-4.033333,1.78
+ Scaër ,SCAER ,29390,29274,53,48.033333,-3.7,1.62
+ Scrignac ,SCRIGNAC ,29640,29275,53,48.433333,-3.683333,1.68
+ Sibiril ,SIBIRIL ,29250,29276,53,48.666667,-4.066667,1.63
+ Sizun ,SIZUN ,29450,29277,53,48.4,-4.083333,0.47
+ Spézet ,SPEZET ,29540,29278,53,48.2,-3.716667,1.55
+ Taulé ,TAULE ,29670,29279,53,48.6,-3.9,1.34
+ Telgruc-sur-Mer ,TELGRUC SUR MER ,29560,29280,53,48.233333,-4.35,1.25
+ Tourch ,TOURCH ,29140,29281,53,48.033333,-3.833333,1.17
+ Trébabu ,TREBABU ,29217,29282,53,48.366667,-4.733333,2.31
+ Tréffiagat ,TREFFIAGAT ,29730,29284,53,47.816667,-4.266667,2.08
+ Tréflaouénan ,TREFLAOUENAN ,29440,29285,53,48.633333,-4.1,1.49
+ Tréflévenez ,TREFLEVENEZ ,29800,29286,53,48.416667,-4.166667,1.35
+ Tréflez ,TREFLEZ ,29430,29287,53,48.616667,-4.266667,1.42
+ Trégarantec ,TREGARANTEC ,29260,29288,53,48.55,-4.283333,1.26
+ Trégarvan ,TREGARVAN ,29560,29289,53,48.25,-4.216667,1.32
+ Tréglonou ,TREGLONOU ,29870,29290,53,48.55,-4.533333,1.55
+ Trégourez ,TREGOUREZ ,29970,29291,53,48.1,-3.866667,0.98
+ Tréguennec ,TREGUENNEC ,29720,29292,53,47.883333,-4.333333,1.79
+ Trégunc ,TREGUNC ,29910,29293,53,47.85,-3.85,1.94
+ Le Tréhou ,LE TREHOU ,29450,29294,53,48.4,-4.133333,1.1
+ Trémaouézan ,TREMAOUEZAN ,29800,29295,53,48.5,-4.25,0.91
+ Tréméoc ,TREMEOC ,29120,29296,53,47.9,-4.216667,1.72
+ Tréogat ,TREOGAT ,29720,29298,53,47.916667,-4.316667,1.65
+ Tréouergat ,TREOUERGAT ,29290,29299,53,48.5,-4.6,1.8
+ Le Trévoux ,LE TREVOUX ,29380,29300,53,47.9,-3.633333,1.87
+ Trézilidé ,TREZILIDE ,29440,29301,53,48.616667,-4.083333,1.42
+ Saint-Mathieu ,SAINT MATHIEU ,29217,29901,53,48.333333,-4.766667,2.44
+ Quimerch ,QUIMERCH ,29590,29902,53,48.283333,-4.116667,0.2
+ Lesconil ,LESCONIL ,29740,29930,53,47.8,-4.216667,2.16
+ Le Fret ,LE FRET ,29160,29932,53,48.283333,-4.516667,1.49
+ Le Pouldu ,LE POULDU ,29360,29933,53,47.766667,-3.55,2.3
+ Morgat ,MORGAT ,29160,29934,53,48.233333,-4.5,1.42
+ Tréboul ,TREBOUL ,29100,29935,53,48.1,-4.35,0.85
+ Kerfany-les-Pins ,KERFANY LES PINS ,29350,29938,53,47.808333,-3.716667,2.12
+ Portsall ,PORTSALL ,29830,29940,53,48.55,-4.7,2.18
+ Aigaliers ,AIGALIERS ,30700,30001,91,44.066667,4.316667,1.49
+ Aigremont ,AIGREMONT ,30350,30002,91,43.966667,4.116667,0.39
+ Aigues-Mortes ,AIGUES MORTES ,30220,30003,91,43.566667,4.191667,-1
+ Aiguèze ,AIGUEZE ,30760,30005,91,44.3,4.566667,2.07
+ Aimargues ,AIMARGUES ,30470,30006,91,43.683333,4.2,2.49
+ Alès ,ALES ,30100,30007,91,44.133333,4.083333,0.84
+ Allègre ,ALLEGRE ,30500,30008,91,44.216667,4.266667,1.52
+ Alzon ,ALZON ,30770,30009,91,43.966667,3.44004,-1
+ Anduze ,ANDUZE ,30140,30010,91,44.05,3.983333,0.86
+ Aramon ,ARAMON ,30390,30012,91,43.883333,4.683333,1.98
+ Argilliers ,ARGILLIERS ,30210,30013,91,43.983333,4.5,1.24
+ Arphy ,ARPHY ,30120,30015,91,44.033333,3.6,2.41
+ Arre ,ARRE ,30120,30016,91,43.95,3.5,2.82
+ Arrigas ,ARRIGAS ,30770,30017,91,43.983333,3.483333,2.89
+ Aspères ,ASPERES ,30250,30018,91,43.8,4.05,1.63
+ Aubais ,AUBAIS ,30250,30019,91,43.75,4.15,1.99
+ Aubord ,AUBORD ,30620,30020,91,43.75,4.316667,1.99
+ Aubussargues ,AUBUSSARGUES ,30190,30021,91,44.016667,4.333333,1.7
+ Aujac ,AUJAC ,30450,30022,91,44.35,4.016667,2.44
+ Aujargues ,AUJARGUES ,30250,30023,91,43.783333,4.116667,1.75
+ Aulas ,AULAS ,30120,30024,91,44,3.583333,2.48
+ Aumessas ,AUMESSAS ,30770,30025,91,43.983333,3.5,2.82
+ Avèze ,AVEZE ,30120,30026,91,43.983333,3.6,2.41
+ Bagard ,BAGARD ,30140,30027,91,44.083333,4.066667,1.99
+ Bagnols-sur-Cèze ,BAGNOLS SUR CEZE ,30200,30028,91,44.166667,4.616667,1.71
+ Barjac ,BARJAC ,30430,30029,91,44.3,4.35,2.07
+ Baron ,BARON ,30700,30030,91,44.033333,4.283333,1.87
+ La Bastide-d'Engras ,LA BASTIDE D ENGRAS,30330,30031,91,44.1,4.483333,1.17
+ Beaucaire ,BEAUCAIRE ,30300,30032,91,43.8,4.633333,1.78
+ Beauvoisin ,BEAUVOISIN ,30640,30033,91,43.716667,4.316667,2.24
+ Bellegarde ,BELLEGARDE ,30127,30034,91,43.75,4.516667,1.99
+ Belvézet ,BELVEZET ,30580,30035,91,44.083333,4.366667,0.96
+ Bernis ,BERNIS ,30620,30036,91,43.766667,4.283333,1.87
+ Bessèges ,BESSEGES ,30160,30037,91,44.283333,4.1,1.94
+ Bez-et-Esparon ,BEZ ET ESPARON ,30120,30038,91,43.966667,3.516667,2.75
+ Bezouce ,BEZOUCE ,30320,30039,91,43.883333,4.483333,1.17
+ Blandas ,BLANDAS ,30770,30040,91,43.916667,3.5,2.82
+ Blauzac ,BLAUZAC ,30700,30041,91,43.966667,4.366667,1.15
+ Boisset-et-Gaujac ,BOISSET ET GAUJAC ,30140,30042,91,44.05,4,0.79
+ Boissières ,BOISSIERES ,30114,30043,91,43.766667,4.233333,1.87
+ Bordezac ,BORDEZAC ,30160,30045,91,44.316667,4.033333,2.19
+ Boucoiran-et-Nozières ,BOUCOIRAN ET NOZIERES ,30190,30046,91,43.983333,4.183333,1.45
+ Bouillargues ,BOUILLARGUES ,30230,30047,91,43.8,4.433333,1.63
+ Bouquet ,BOUQUET ,30580,30048,91,44.166667,4.283333,1.08
+ Bourdic ,BOURDIC ,30190,30049,91,43.983333,4.333333,1.45
+ Bragassargues ,BRAGASSARGUES ,30260,30050,91,43.916667,4.05,0.76
+ Branoux-les-Taillades ,BRANOUX LES TAILLADES ,30110,30051,91,44.216667,3.983333,1.45
+ Bréau-et-Salagosse ,BREAU ET SALAGOSSE ,30120,30052,91,43.983333,3.583333,2.48
+ Brignon ,BRIGNON ,30190,30053,91,43.983333,4.216667,0.84
+ Brouzet-lès-Alès ,BROUZET LES ALES ,30580,30055,91,44.133333,4.25,1.11
+ La Bruguière ,LA BRUGUIERE ,30580,30056,91,44.116667,4.416667,1.35
+ Cabrières ,CABRIERES ,30210,30057,91,43.9,4.466667,1.83
+ Le Cailar ,LE CAILAR ,30740,30059,91,43.666667,4.233333,2.61
+ Caissargues ,CAISSARGUES ,30132,30060,91,43.8,4.383333,1.63
+ La Calmette ,LA CALMETTE ,30190,30061,91,43.916667,4.266667,0.98
+ Calvisson ,CALVISSON ,30420,30062,91,43.783333,4.183333,1.75
+ Campestre-et-Luc ,CAMPESTRE ET LUC ,30770,30064,91,43.95,3.416667,-1
+ Canaules-et-Argentières ,CANAULES ET ARGENTIERES ,30350,30065,91,43.983333,4.05,1.33
+ Cannes-et-Clairan ,CANNES ET CLAIRAN ,30260,30066,91,43.916667,4.083333,0.95
+ La Capelle-et-Masmolène ,LA CAPELLE ET MASMOLENE,30700,30067,91,44.05,4.55,1.82
+ Cardet ,CARDET ,30350,30068,91,44.016667,4.083333,1.03
+ Carnas ,CARNAS ,30260,30069,91,43.816667,3.983333,1.5
+ Carsan ,CARSAN ,30130,30070,91,44.233333,4.583333,1.57
+ Castillon-du-Gard ,CASTILLON DU GARD ,30210,30073,91,43.966667,4.55,1.44
+ Causse-Bégon ,CAUSSE BEGON ,30750,30074,91,44.058333,3.358333,-1
+ Caveirac ,CAVEIRAC ,30820,30075,91,43.816667,4.266667,1.5
+ Cavillargues ,CAVILLARGUES ,30330,30076,91,44.116667,4.516667,1.3
+ Cendras ,CENDRAS ,30480,30077,91,44.15,4.066667,1
+ Chambon ,CHAMBON ,30450,30079,91,44.3,4,2.07
+ Chamborigaud ,CHAMBORIGAUD ,30530,30080,91,44.3,3.983333,2.07
+ Chusclan ,CHUSCLAN ,30200,30081,91,44.15,4.683333,1.98
+ Clarensac ,CLARENSAC ,30870,30082,91,43.816667,4.216667,1.5
+ Codognan ,CODOGNAN ,30920,30083,91,43.733333,4.233333,2.12
+ Codolet ,CODOLET ,30200,30084,91,44.116667,4.7,2.05
+ Collias ,COLLIAS ,30210,30085,91,43.95,4.483333,1.18
+ Collorgues ,COLLORGUES ,30190,30086,91,44,4.3,1
+ Colognac ,COLOGNAC ,30460,30087,91,44.033333,3.816667,1.54
+ Combas ,COMBAS ,30250,30088,91,43.85,4.116667,1.66
+ Comps ,COMPS ,30300,30089,91,43.85,4.6,1.64
+ Concoules ,CONCOULES ,30450,30090,91,44.383333,3.95,2.68
+ Congéniès ,CONGENIES ,30111,30091,91,43.766667,4.166667,1.87
+ Connaux ,CONNAUX ,30330,30092,91,44.083333,4.6,1.64
+ Conqueyrac ,CONQUEYRAC ,30170,30093,91,43.95,3.9,1.2
+ Corbés ,CORBES ,30140,30094,91,44.083333,3.95,0.99
+ Corconne ,CORCONNE ,30260,30095,91,43.866667,3.933333,1.8
+ Cornillon ,CORNILLON ,30630,30096,91,44.216667,4.483333,1.45
+ Courry ,COURRY ,30500,30097,91,44.3,4.15,2.19
+ Crespian ,CRESPIAN ,30260,30098,91,43.883333,4.1,1.01
+ Cros ,CROS ,30170,30099,91,43.983333,3.833333,1.47
+ Cruviers-Lascours ,CRUVIERS LASCOURS ,30360,30100,91,44,4.216667,1.22
+ Deaux ,DEAUX ,30360,30101,91,44.083333,4.15,1.4
+ Dions ,DIONS ,30190,30102,91,43.933333,4.316667,1.28
+ Domazan ,DOMAZAN ,30390,30103,91,43.933333,4.65,1.84
+ Domessargues ,DOMESSARGUES ,30350,30104,91,43.966667,4.183333,1.52
+ Dourbies ,DOURBIES ,30750,30105,91,44.066667,3.4463,-1
+ Estézargues ,ESTEZARGUES ,30390,30107,91,43.95,4.633333,1.78
+ L'Estréchure ,L ESTRECHURE ,30124,30108,91,44.1,3.783333,1.67
+ Euzet ,EUZET ,30360,30109,91,44.066667,4.233333,0.92
+ Flaux ,FLAUX ,30700,30110,91,44.016667,4.5,1.24
+ Foissac ,FOISSAC ,30700,30111,91,44.033333,4.316667,1.41
+ Fons-sur-Lussan ,FONS SUR LUSSAN ,30580,30113,91,44.183333,4.333333,1.21
+ Fontarèches ,FONTARECHES ,30580,30115,91,44.116667,4.45,1.83
+ Fournès ,FOURNES ,30210,30116,91,43.933333,4.6,1.64
+ Foussignargues ,FOUSSIGNARGUES ,30160,30118,91,44.283333,4.133333,1.94
+ Fressac ,FRESSAC ,30170,30119,91,43.983333,3.9,1.2
+ Gagnières ,GAGNIERES ,30160,30120,91,44.3,4.15,2.07
+ Gailhan ,GAILHAN ,30260,30121,91,43.833333,4.033333,1.38
+ Gajan ,GAJAN ,30730,30122,91,43.9,4.216667,0.91
+ Le Garn ,LE GARN ,30760,30124,91,44.3,4.483333,2.07
+ Garons ,GARONS ,30128,30125,91,43.766667,4.416667,1.87
+ Gaujac ,GAUJAC ,30330,30127,91,44.083333,4.583333,1.57
+ Générac ,GENERAC ,30510,30128,91,43.733333,4.35,2.12
+ Générargues ,GENERARGUES ,30140,30129,91,44.083333,3.966667,0.93
+ Génolhac ,GENOLHAC ,30450,30130,91,44.35,3.95,2.44
+ Goudargues ,GOUDARGUES ,30630,30131,91,44.216667,4.466667,1.45
+ La Grand'Combe ,LA GRAND COMBE ,30110,30132,91,44.216667,4.033333,1.45
+ Le Grau-du-Roi ,LE GRAU DU ROI,30240,30133,91,43.533333,4.141667,-1
+ Issirac ,ISSIRAC ,30760,30134,91,44.283333,4.483333,1.94
+ Junas ,JUNAS ,30250,30136,91,43.766667,4.116667,1.87
+ Lamelouze ,LAMELOUZE ,30110,30137,91,44.2,3.95,1.38
+ Langlade ,LANGLADE ,30980,30138,91,43.8,4.25,1.63
+ Lasalle ,LASALLE ,30460,30140,91,44.05,3.85,1.4
+ Laudun ,LAUDUN ,30290,30141,91,44.1,4.666667,1.91
+ Laval-Pradel ,LAVAL PRADEL ,30110,30142,91,44.2,4.066667,1.55
+ Lecques ,LECQUES ,30250,30144,91,43.833333,4.066667,1.47
+ Lédenon ,LEDENON ,30210,30145,91,43.916667,4.516667,1.3
+ Lédignan ,LEDIGNAN ,30350,30146,91,43.983333,4.1,0.39
+ Lèzan ,LEZAN ,30350,30147,91,44.016667,4.05,1.56
+ Liouc ,LIOUC ,30260,30148,91,43.9,3.983333,1
+ Lirac ,LIRAC ,30126,30149,91,44.033333,4.683333,1.98
+ Lussan ,LUSSAN ,30580,30151,91,44.15,4.366667,0.96
+ Les Mages ,LES MAGES ,30960,30152,91,44.233333,4.15,1.57
+ Malons-et-Elze ,MALONS ET ELZE ,30450,30153,91,44.4176,4.02343,-1
+ Mandagout ,MANDAGOUT ,30120,30154,91,44.016667,3.616667,2.35
+ Manduel ,MANDUEL ,30129,30155,91,43.816667,4.466667,1.5
+ Marguerittes ,MARGUERITTES ,30320,30156,91,43.85,4.45,1.26
+ Mars ,MARS ,30120,30157,91,44,3.566667,2.55
+ Martignargues ,MARTIGNARGUES ,30360,30158,91,44.033333,4.183333,0.5
+ Le Martinet ,LE MARTINET ,30960,30159,91,44.25,4.083333,1.8
+ Massillargues-Attuech ,MASSILLARGUES ATTUECH ,30140,30162,91,44.016667,4.016667,1.23
+ Mauressargues ,MAURESSARGUES ,30350,30163,91,43.966667,4.166667,1.17
+ Méjannes-le-Clap ,MEJANNES LE CLAP ,30430,30164,91,44.233333,4.333333,1.57
+ Méjannes-lès-Alès ,MEJANNES LES ALES ,30340,30165,91,44.1,4.15,1.4
+ Meynes ,MEYNES ,30840,30166,91,43.883333,4.566667,1.51
+ Meyrannes ,MEYRANNES ,30410,30167,91,44.266667,4.166667,1.82
+ Mialet ,MIALET ,30140,30168,91,44.116667,3.95,1.41
+ Milhaud ,MILHAUD ,30540,30169,91,43.783333,4.3,1.75
+ Molières-Cavaillac ,MOLIERES CAVAILLAC ,30120,30170,91,43.966667,3.566667,2.55
+ Molières-sur-Cèze ,MOLIERES SUR CEZE ,30410,30171,91,44.25,4.15,1.7
+ Monoblet ,MONOBLET ,30170,30172,91,44,3.883333,1.26
+ Montaren-et-Saint-Médiers ,MONTAREN ET SAINT MEDIERS,30700,30174,91,44.033333,4.383333,0.76
+ Montclus ,MONTCLUS ,30630,30175,91,44.266667,4.433333,1.82
+ Montdardier ,MONTDARDIER ,30120,30176,91,43.933333,3.583333,2.48
+ Monteils ,MONTEILS ,30360,30177,91,44.1,4.183333,1.26
+ Montfaucon ,MONTFAUCON ,30150,30178,91,44.083333,4.75,2.25
+ Montfrin ,MONTFRIN ,30490,30179,91,43.883333,4.6,1.64
+ Montignargues ,MONTIGNARGUES ,30190,30180,91,43.933333,4.216667,1.03
+ Montmirat ,MONTMIRAT ,30260,30181,91,43.916667,4.1,1.18
+ Montpezat ,MONTPEZAT ,30730,30182,91,43.85,4.15,2.01
+ Moulézan ,MOULEZAN ,30350,30183,91,43.933333,4.133333,1.04
+ Moussac ,MOUSSAC ,30190,30184,91,43.983333,4.216667,0.84
+ Mus ,MUS ,30121,30185,91,43.733333,4.2,2.12
+ Nages-et-Solorgues ,NAGES ET SOLORGUES ,30114,30186,91,43.783333,4.233333,1.75
+ Navacelles ,NAVACELLES ,30580,30187,91,44.166667,4.25,1.2
+ Ners ,NERS ,30360,30188,91,44.016667,4.166667,1.06
+ Nîmes ,NIMES ,30000,30189,91,43.833333,4.35,1.38
+ Notre-Dame-de-la-Rouvière ,NOTRE DAME DE LA,30570,30190,91,44.05,3.7,2.01
+ Orsan ,ORSAN ,30200,30191,91,44.133333,4.666667,1.91
+ Parignargues ,PARIGNARGUES ,30730,30193,91,43.866667,4.2,1.13
+ Peyremale ,PEYREMALE ,30160,30194,91,44.3,4.033333,2.07
+ Peyroles ,PEYROLES ,30124,30195,91,44.116667,3.833333,1.47
+ Le Pin ,LE PIN ,30330,30196,91,44.1,4.55,1.44
+ Les Plans ,LES PLANS ,30340,30197,91,44.15,4.216667,1.33
+ Les Plantiers ,LES PLANTIERS ,30122,30198,91,44.116667,3.733333,1.87
+ Pommiers ,POMMIERS ,30120,30199,91,43.95,3.6,2.41
+ Pompignan ,POMPIGNAN ,30170,30200,91,43.9,3.85,1.7
+ Ponteils-et-Brésis ,PONTEILS ET BRESIS ,30450,30201,91,44.4,3.966667,2.81
+ Pont-Saint-Esprit ,PONT SAINT ESPRIT ,30130,30202,91,44.25,4.65,1.84
+ Portes ,PORTES ,30530,30203,91,44.266667,4.033333,1.82
+ Potelières ,POTELIERES ,30500,30204,91,44.233333,4.25,1.57
+ Pougnadoresse ,POUGNADORESSE ,30330,30205,91,44.1,4.516667,1.3
+ Poulx ,POULX ,30320,30206,91,43.916667,4.416667,1.55
+ Pouzilhac ,POUZILHAC ,30210,30207,91,44.05,4.583333,1.99
+ Puechredon ,PUECHREDON ,30610,30208,91,43.95,4.033333,1.1
+ Pujaut ,PUJAUT ,30131,30209,91,44,4.783333,2.39
+ Quissac ,QUISSAC ,30260,30210,91,43.916667,4,0.9
+ Redessan ,REDESSAN ,30129,30211,91,43.833333,4.5,1.38
+ Remoulins ,REMOULINS ,30210,30212,91,43.933333,4.566667,1.51
+ Revens ,REVENS ,30750,30213,91,44.091667,3.3,-1
+ Ribaute-les-Tavernes ,RIBAUTE LES TAVERNES ,30720,30214,91,44.033333,4.083333,0.45
+ Rivières ,RIVIERES ,30430,30215,91,44.25,4.283333,1.7
+ Rochefort-du-Gard ,ROCHEFORT DU GARD ,30650,30217,91,43.966667,4.683333,1.98
+ Rochegude ,ROCHEGUDE ,30430,30218,91,44.25,4.3,1.7
+ Rogues ,ROGUES ,30120,30219,91,43.883333,3.583333,2.48
+ Roquedur ,ROQUEDUR ,30440,30220,91,43.966667,3.666667,2.14
+ Roquemaure ,ROQUEMAURE ,30150,30221,91,44.05,4.783333,2.39
+ La Roque-sur-Cèze ,LA ROQUE SUR CEZE,30200,30222,91,44.2,4.516667,1.4
+ Rousson ,ROUSSON ,30340,30223,91,44.2,4.15,1.4
+ La Rouvière ,LA ROUVIERE ,30190,30224,91,43.933333,4.25,0.67
+ Sabran ,SABRAN ,30200,30225,91,44.15,4.55,1.44
+ Saint-Alexandre ,SAINT ALEXANDRE ,30130,30226,91,44.216667,4.633333,1.78
+ Saint-Ambroix ,SAINT AMBROIX ,30500,30227,91,44.25,4.183333,1.7
+ Saint-André-de-Majencoules ,SAINT ANDRE DE MAJENCOULES,30570,30229,91,44.033333,3.666667,2.14
+ Saint-André-de-Roquepertuis ,SAINT ANDRE DE ROQUEPERTUIS,30630,30230,91,44.233333,4.45,1.57
+ Saint-André-de-Valborgne ,SAINT ANDRE DE VALBORGNE,30940,30231,91,44.15,3.683333,2.08
+ Saint-André-d'Olérargues ,SAINT ANDRE D OLERARGUES,30330,30232,91,44.166667,4.483333,1.58
+ Saint-Bauzély ,SAINT BAUZELY ,30730,30233,91,43.916667,4.216667,1.36
+ Saint-Bénézet ,SAINT BENEZET ,30350,30234,91,43.983333,4.15,0.8
+ Saint-Bonnet-du-Gard ,SAINT BONNET DU GARD,30210,30235,91,43.933333,4.55,1.44
+ Saint-Bresson ,SAINT BRESSON ,30440,30238,91,43.95,3.65,2.21
+ Sainte-Cécile-d'Andorge ,SAINTE CECILE D ANDORGE,30110,30239,91,44.25,3.966667,1.7
+ Saint-Césaire-de-Gauzignan ,SAINT CESAIRE DE GAUZIGNAN,30360,30240,91,44.016667,4.216667,0.86
+ Saint-Chaptes ,SAINT CHAPTES ,30190,30241,91,43.966667,4.283333,0.47
+ Saint-Christol-de-Rodières ,SAINT CHRISTOL DE RODIERES,30760,30242,91,44.266667,4.5,1.82
+ Saint-Christol-lès-Alès ,SAINT CHRISTOL LES ALES,30380,30243,91,44.083333,4.083333,0.47
+ Saint-Clément ,SAINT CLEMENT ,30260,30244,91,43.816667,4.033333,1.5
+ Saint-Côme-et-Maruéjols ,SAINT COME ET MARUEJOLS,30870,30245,91,43.816667,4.2,1.5
+ Saint-Denis ,SAINT DENIS ,30500,30247,91,44.25,4.25,1.7
+ Saint-Dézéry ,SAINT DEZERY ,30190,30248,91,44,4.266667,0.63
+ Saint Dionizy ,SAINT DIONIZY ,30980,30249,91,43.8,4.233333,1.63
+ Saint-Étienne-des-Sorts ,SAINT ETIENNE DES SORTS,30200,30251,91,44.183333,4.7,2.05
+ Saint-Félix-de-Pallières ,SAINT FELIX DE PALLIERES,30140,30252,91,44.016667,3.933333,1.33
+ Saint-Florent-sur-Auzonnet ,SAINT FLORENT SUR AUZONNET,30960,30253,91,44.233333,4.116667,1.57
+ Saint-Geniès-de-Comolas ,SAINT GENIES DE COMOLAS,30150,30254,91,44.066667,4.733333,2.18
+ Saint-Géniès-de-Malgoirès ,SAINT GENIES DE MALGOIRES,30190,30255,91,43.95,4.216667,0.86
+ Saint-Gervais ,SAINT GERVAIS ,30200,30256,91,44.183333,4.566667,1.51
+ Saint-Gervasy ,SAINT GERVASY ,30320,30257,91,43.883333,4.483333,1.17
+ Saint-Gilles ,SAINT GILLES ,30800,30258,91,43.683333,4.433333,2.49
+ Saint-Hilaire-de-Brethmas ,SAINT HILAIRE DE BRETHMAS,30560,30259,91,44.083333,4.133333,0.47
+ Saint-Hilaire-d'Ozilhan ,SAINT HILAIRE D OZILHAN,30210,30260,91,43.966667,4.583333,1.57
+ Saint-Hippolyte-de-Caton ,SAINT HIPPOLYTE DE CATON,30360,30261,91,44.083333,4.216667,0.92
+ Saint-Hippolyte-de-Montaigu ,SAINT HIPPOLYTE DE MONTAIGU,30700,30262,91,44.033333,4.483333,1.17
+ Saint-Hippolyte-du-Fort ,SAINT HIPPOLYTE DU FORT,30170,30263,91,43.966667,3.85,1.4
+ Saint-Jean-de-Ceyrargues ,SAINT JEAN DE CEYRARGUES,30360,30264,91,44.05,4.233333,0.82
+ Saint-Jean-de-Crieulon ,SAINT JEAN DE CRIEULON,30610,30265,91,43.95,3.983333,0.86
+ Saint-Jean-de-Maruéjols-et-Avéjan ,SAINT JEAN DE MARUEJOLS,30430,30266,91,44.25,4.3,1.7
+ Saint-Jean-de-Serres ,SAINT JEAN DE SERRES,30350,30267,91,44,4.066667,1.08
+ Saint-Jean-de-Valériscle ,SAINT JEAN DE VALERISCLE,30960,30268,91,44.233333,4.133333,1.57
+ Saint-Jean-du-Gard ,SAINT JEAN DU GARD,30270,30269,91,44.1,3.883333,1.26
+ Saint-Julien-de-Cassagnas ,SAINT JULIEN DE CASSAGNAS,30500,30271,91,44.233333,4.2,1.57
+ Saint-Julien-de-la-Nef ,SAINT JULIEN DE LA,30440,30272,91,43.95,3.683333,2.08
+ Saint-Julien-de-Peyrolas ,SAINT JULIEN DE PEYROLAS,30760,30273,91,44.283333,4.583333,1.94
+ Saint-Just-et-Vacquières ,SAINT JUST ET VACQUIERES,30580,30275,91,44.116667,4.216667,1.61
+ Saint-Laurent-d'Aigouze ,SAINT LAURENT D AIGOUZE,30220,30276,91,43.633333,4.2,2.86
+ Saint-Laurent-de-Carnols ,SAINT LAURENT DE CARNOLS,30200,30277,91,44.2,4.533333,1.37
+ Saint-Laurent-des-Arbres ,SAINT LAURENT DES ARBRES,30126,30278,91,44.05,4.7,2.05
+ Saint-Laurent-la-Vernède ,SAINT LAURENT LA VERNEDE,30330,30279,91,44.1,4.466667,1.4
+ Saint-Laurent-le-Minier ,SAINT LAURENT LE MINIER,30440,30280,91,43.933333,3.65,2.21
+ Saint-Mamert-du-Gard ,SAINT MAMERT DU GARD,30730,30281,91,43.883333,4.2,1.01
+ Saint-Marcel-de-Careiret ,SAINT MARCEL DE CAREIRET,30330,30282,91,44.15,4.483333,1.35
+ Saint-Martial ,SAINT MARTIAL ,30440,30283,91,44.033333,3.733333,1.87
+ Saint-Martin-de-Valgalgues ,SAINT MARTIN DE VALGALGUES,30520,30284,91,44.166667,4.083333,1.08
+ Saint-Maurice-de-Cazevieille ,SAINT MAURICE DE CAZEVIEILLE,30360,30285,91,44.033333,4.233333,0.89
+ Saint-Maximin ,SAINT MAXIMIN ,30700,30286,91,44,4.45,1.03
+ Saint-Michel-d'Euzet ,SAINT MICHEL D EUZET,30200,30287,91,44.2,4.533333,1.37
+ Saint-Nazaire-des-Gardies ,SAINT NAZAIRE DES GARDIES,30610,30289,91,43.983333,4.016667,1.05
+ Saint-Paulet-de-Caisson ,SAINT PAULET DE CAISSON,30130,30290,91,44.266667,4.6,1.82
+ Saint-Paul-la-Coste ,SAINT PAUL LA COSTE,30480,30291,91,44.166667,3.966667,1.08
+ Saint-Pons-la-Calm ,SAINT PONS LA CALM,30330,30292,91,44.1,4.55,1.44
+ Saint-Privat-de-Champclos ,SAINT PRIVAT DE CHAMPCLOS,30430,30293,91,44.283333,4.383333,1.94
+ Saint-Privat-des-Vieux ,SAINT PRIVAT DES VIEUX,30340,30294,91,44.133333,4.133333,0.99
+ Saint-Quentin-la-Poterie ,SAINT QUENTIN LA POTERIE,30700,30295,91,44.05,4.433333,0.97
+ Saint-Roman-de-Codières ,SAINT ROMAN DE CODIERES,30440,30296,91,44,3.783333,1.76
+ Saint-Siffret ,SAINT SIFFRET ,30700,30299,91,44.016667,4.466667,1.1
+ Saint-Théodorit ,SAINT THEODORIT ,30260,30300,91,43.933333,4.083333,1.15
+ Saint-Victor-des-Oules ,SAINT VICTOR DES OULES,30700,30301,91,44.05,4.483333,1.17
+ Saint-Victor-la-Coste ,SAINT VICTOR LA COSTE,30290,30302,91,44.066667,4.633333,1.78
+ Saint-Victor-de-Malcap ,SAINT VICTOR DE MALCAP,30500,30303,91,44.25,4.216667,1.7
+ Salazac ,SALAZAC ,30760,30304,91,44.266667,4.516667,1.82
+ Salindres ,SALINDRES ,30340,30305,91,44.166667,4.166667,1.08
+ Salinelles ,SALINELLES ,30250,30306,91,43.8,4.083333,1.63
+ Les Salles-du-Gardon ,LES SALLES DU GARDON,30110,30307,91,44.2,4.033333,1.33
+ Sardan ,SARDAN ,30260,30309,91,43.866667,4.05,1.13
+ Saumane ,SAUMANE ,30125,30310,91,44.125,3.758333,1.77
+ Sauve ,SAUVE ,30610,30311,91,43.933333,3.95,1.47
+ Sauzet ,SAUZET ,30190,30313,91,43.966667,4.216667,0.79
+ Savignargues ,SAVIGNARGUES ,30350,30314,91,43.966667,4.083333,0.66
+ Saze ,SAZE ,30650,30315,91,43.933333,4.683333,1.98
+ Sénéchas ,SENECHAS ,30450,30316,91,44.316667,4,2.19
+ Sernhac ,SERNHAC ,30210,30317,91,43.916667,4.55,1.44
+ Servas ,SERVAS ,30340,30318,91,44.15,4.183333,0.96
+ Serviers-et-Labaume ,SERVIERS ET LABAUME ,30700,30319,91,44.05,4.35,0.98
+ Seynes ,SEYNES ,30580,30320,91,44.116667,4.3,0.71
+ Sommières ,SOMMIERES ,30250,30321,91,43.783333,4.083333,1.75
+ Soudorgues ,SOUDORGUES ,30460,30322,91,44.066667,3.833333,1.47
+ Soustelle ,SOUSTELLE ,30110,30323,91,44.183333,4,1.21
+ Souvignargues ,SOUVIGNARGUES ,30250,30324,91,43.8,4.116667,1.63
+ Sumène ,SUMENE ,30440,30325,91,43.983333,3.716667,1.94
+ Tavel ,TAVEL ,30126,30326,91,44.016667,4.7,2.05
+ Tharaux ,THARAUX ,30430,30327,91,44.25,4.316667,1.7
+ Théziers ,THEZIERS ,30390,30328,91,43.9,4.616667,1.71
+ Thoiras ,THOIRAS ,30140,30329,91,44.066667,3.933333,1.06
+ Tornac ,TORNAC ,30140,30330,91,44.016667,3.983333,0.91
+ Tresques ,TRESQUES ,30330,30331,91,44.116667,4.583333,1.57
+ Tréves ,TREVES ,30750,30332,91,44.075,3.391667,-1
+ Uchaud ,UCHAUD ,30620,30333,91,43.75,4.266667,1.99
+ Uzès ,UZES ,30700,30334,91,44.016667,4.416667,0.9
+ Vabres ,VABRES ,30460,30335,91,44.016667,3.883333,1.6
+ Vallabrègues ,VALLABREGUES ,30300,30336,91,43.85,4.633333,1.78
+ Vallabrix ,VALLABRIX ,30700,30337,91,44.066667,4.483333,1.17
+ Vallérargues ,VALLERARGUES ,30580,30338,91,44.133333,4.35,0.84
+ Valleraugue ,VALLERAUGUE ,30570,30339,91,44.083333,3.633333,2.28
+ Valliguières ,VALLIGUIERES ,30210,30340,91,44,4.583333,1.57
+ Vauvert ,VAUVERT ,30600,30341,91,43.7,4.283333,2.36
+ Vénéjan ,VENEJAN ,30200,30342,91,44.2,4.666667,1.91
+ Verfeuil ,VERFEUIL ,30630,30343,91,44.166667,4.45,1.7
+ Vergèze ,VERGEZE ,30310,30344,91,43.733333,4.216667,2.12
+ La Vernarède ,LA VERNAREDE ,30530,30345,91,44.283333,4.016667,1.94
+ Vestric-et-Candiac ,VESTRIC ET CANDIAC ,30600,30347,91,43.733333,4.25,2.12
+ Vézénobres ,VEZENOBRES ,30360,30348,91,44.05,4.15,1.14
+ Vic-le-Fesq ,VIC LE FESQ ,30260,30349,91,43.866667,4.083333,1.13
+ Le Vigan ,LE VIGAN ,30120,30350,91,43.983333,3.6,2.41
+ Villevieille ,VILLEVIEILLE ,30250,30352,91,43.783333,4.1,1.75
+ Vissec ,VISSEC ,30770,30353,91,43.9,3.459,-1
+ Montagnac ,MONTAGNAC ,30350,30354,91,43.95,4.166667,1.29
+ Saint-Paul-les-Fonts ,SAINT PAUL LES FONTS,30330,30355,91,44.083333,4.616667,1.71
+ Rodilhan ,RODILHAN ,30230,30356,91,43.833333,4.433333,1.38
+ L'Ardoise ,L ARDOISE ,30290,30926,91,44.1,4.7,2.05
+ Camprieu ,CAMPRIEU ,30750,30928,91,44.116667,3.483333,2.89
+ Franquevaux ,FRANQUEVAUX ,30640,30929,91,43.65,4.35,2.73
+ Gallician ,GALLICIAN ,30600,30930,91,43.65,4.3,2.73
+ Montcalm ,MONTCALM ,30600,30934,91,43.575,4.291667,-1
+ Sylvéréal ,SYLVEREAL ,30600,30938,91,43.55,4.35,-1
+ Saint-Césaire ,SAINT CESAIRE ,30900,30939,91,43.816667,4.316667,1.5
+ Agassac ,AGASSAC ,31230,31001,72,43.366667,0.883333,0.73
+ Aignes ,AIGNES ,31550,31002,72,43.316667,1.6,1.42
+ Aigrefeuille ,AIGREFEUILLE ,31280,31003,72,43.566667,1.6,1.36
+ Ayguesvives ,AYGUESVIVES ,31450,31004,72,43.433333,1.6,1.36
+ Alan ,ALAN ,31420,31005,72,43.216667,0.95,1.09
+ Ambax ,AMBAX ,31230,31007,72,43.366667,0.933333,1.27
+ Anan ,ANAN ,31230,31008,72,43.35,0.833333,0.88
+ Antichan-de-Frontignes ,ANTICHAN DE FRONTIGNES ,31510,31009,72,42.966667,0.666667,1.62
+ Antignac ,ANTIGNAC ,31110,31010,72,42.833333,0.6,2.22
+ Arbas ,ARBAS ,31160,31011,72,43,0.9,1.47
+ Arbon ,ARBON ,31160,31012,72,43,0.75,1.47
+ Ardiège ,ARDIEGE ,31210,31013,72,43.066667,0.65,1.54
+ Arguenos ,ARGUENOS ,31160,31014,72,42.966667,0.716667,1.62
+ Argut-Dessous ,ARGUT DESSOUS ,31440,31015,72,42.883333,0.716667,2
+ Argut-Dessus ,ARGUT DESSUS ,31440,31016,72,42.9,0.733333,1.92
+ Arlos ,ARLOS ,31440,31017,72,42.9,0.7,1.92
+ Arnaud-Guilhem ,ARNAUD GUILHEM ,31360,31018,72,43.133333,0.9,0.87
+ Artigue ,ARTIGUE ,31110,31019,72,42.833333,0.616667,2.22
+ Aspet ,ASPET ,31160,31020,72,43.016667,0.8,1.4
+ Aspret-Sarrat ,ASPRET SARRAT ,31800,31021,72,43.066667,0.716667,1.22
+ Aulon ,AULON ,31420,31023,72,43.183333,0.833333,1.45
+ Auragne ,AURAGNE ,31190,31024,72,43.383333,1.5,1.16
+ Aureville ,AUREVILLE ,31320,31025,72,43.483333,1.45,1.52
+ Auriac-sur-Vendinelle ,AURIAC SUR VENDINELLE ,31460,31026,72,43.516667,1.816667,2
+ Auribail ,AURIBAIL ,31190,31027,72,43.35,1.383333,1.22
+ Aurignac ,AURIGNAC ,31420,31028,72,43.216667,0.883333,0.73
+ Aurin ,AURIN ,31570,31029,72,43.533333,1.666667,1.56
+ Ausseing ,AUSSEING ,31260,31030,72,43.15,1.016667,1.73
+ Ausson ,AUSSON ,31210,31031,72,43.083333,0.6,1.56
+ Aussonne ,AUSSONNE ,31840,31032,72,43.683333,1.316667,1.6
+ Auterive ,AUTERIVE ,31190,31033,72,43.35,1.483333,1.02
+ Auzas ,AUZAS ,31360,31034,72,43.166667,0.883333,0.73
+ Auzeville-Tolosane ,AUZEVILLE TOLOSANE ,31320,31035,72,43.533333,1.483333,1.23
+ Auzielle ,AUZIELLE ,31650,31036,72,43.55,1.566667,1.27
+ Azas ,AZAS ,31380,31038,72,43.716667,1.666667,1.75
+ Bachas ,BACHAS ,31420,31039,72,43.25,0.933333,0.8
+ Bachos ,BACHOS ,31440,31040,72,42.883333,0.616667,2
+ Bagiry ,BAGIRY ,31510,31041,72,42.983333,0.633333,1.55
+ Bagnères-de-Luchon ,BAGNERES DE LUCHON ,31110,31042,72,42.783333,0.6,2.45
+ Balesta ,BALESTA ,31580,31043,72,43.2,0.566667,1.66
+ Balma ,BALMA ,31130,31044,72,43.616667,1.5,1.3
+ Barbazan ,BARBAZAN ,31510,31045,72,43.033333,0.633333,1.46
+ Baren ,BAREN ,31440,31046,72,42.866667,0.616667,2.07
+ Bax ,BAX ,31310,31047,72,43.233333,1.266667,0.47
+ Baziège ,BAZIEGE ,31450,31048,72,43.45,1.616667,1.41
+ Bazus ,BAZUS ,31380,31049,72,43.733333,1.516667,1.82
+ Beauchalot ,BEAUCHALOT ,31360,31050,72,43.1,0.866667,1.52
+ Beaufort ,BEAUFORT ,31370,31051,72,43.466667,1.116667,1.19
+ Beaumont-sur-Lèze ,BEAUMONT SUR LEZE ,31870,31052,72,43.383333,1.366667,1
+ Beaupuy ,BEAUPUY ,31850,31053,72,43.65,1,1.5
+ Beauteville ,BEAUTEVILLE ,31290,31054,72,43.35,1.733333,1.75
+ Beauville ,BEAUVILLE ,31460,31055,72,43.466667,1.766667,1.85
+ Beauzelle ,BEAUZELLE ,31700,31056,72,43.666667,1.366667,1.52
+ Belberaud ,BELBERAUD ,31450,31057,72,43.5,1.583333,1.32
+ Belbèze-de-Lauragais ,BELBEZE DE LAURAGAIS ,31450,31058,72,43.433333,1.55,1.22
+ Belbèze-en-Comminges ,BELBEZE EN COMMINGES ,31260,31059,72,43.133333,1.016667,1.48
+ Bélesta-en-Lauragais ,BELESTA EN LAURAGAIS ,31540,31060,72,43.433333,1.816667,2
+ Bellesserre ,BELLESSERRE ,31480,31062,72,43.783333,1.116667,2.05
+ Benque ,BENQUE ,31420,31063,72,43.266667,0.916667,0.75
+ Bérat ,BERAT ,31370,31065,72,43.383333,1.183333,1.8
+ Bessières ,BESSIERES ,31660,31066,72,43.8,1.616667,2.12
+ Bézins-Garraux ,BEZINS GARRAUX ,31440,31067,72,42.933333,0.7,1.77
+ Billière ,BILLIERE ,31110,31068,72,42.816667,0.533333,2.3
+ Blagnac ,BLAGNAC ,31700,31069,72,43.633333,1.4,1.51
+ Blajan ,BLAJAN ,31350,31070,72,43.266667,0.65,1.41
+ Bois-de-la-Pierre ,BOIS DE LA PIERRE,31390,31071,72,43.35,1.15,1.73
+ Boissède ,BOISSEDE ,31230,31072,72,43.4,0.816667,0.97
+ Bondigoux ,BONDIGOUX ,31340,31073,72,43.833333,1.55,2.27
+ Bonrepos-Riquet ,BONREPOS RIQUET ,31590,31074,72,43.683333,1.616667,1.6
+ Bonrepos-sur-Aussonnelle ,BONREPOS SUR AUSSONNELLE ,31470,31075,72,43.55,1.15,1
+ Bordes-de-Rivière ,BORDES DE RIVIERE ,31210,31076,72,43.1,0.633333,1.46
+ Le Born ,LE BORN ,31340,31077,72,43.883333,1.55,2.5
+ Boudrac ,BOUDRAC ,31580,31078,72,43.2,0.55,1.7
+Bouloc, ,31620,31079,72,43.783333,1.416667,2.05
+ Bourg-d'Oueil ,BOURG D OUEIL ,31110,31081,72,42.866667,0.5,2.07
+ Bourg-Saint-Bernard ,BOURG SAINT BERNARD ,31570,31082,72,43.6,1.733333,2.09
+ Boussan ,BOUSSAN ,31420,31083,72,43.233333,0.9,0.68
+ Boussens ,BOUSSENS ,31360,31084,72,43.183333,0.966667,1.57
+ Boutx ,BOUTX ,31440,31085,72,42.916667,0.716667,1.85
+ Bouzin ,BOUZIN ,31420,31086,72,43.183333,0.883333,0.94
+ Bragayrac ,BRAGAYRAC ,31470,31087,72,43.483333,1.066667,1.71
+ Brax ,BRAX ,31490,31088,72,43.616667,1.25,1.3
+ Bretx ,BRETX ,31530,31089,72,43.7,1.216667,1.67
+ Brignemont ,BRIGNEMONT ,31480,31090,72,43.783333,0.983333,2.08
+ Bruguières ,BRUGUIERES ,31150,31091,72,43.733333,1.416667,1.82
+ Burgalays ,BURGALAYS ,31440,31092,72,42.883333,0.633333,2
+ Buzet-sur-Tarn ,BUZET SUR TARN ,31660,31094,72,43.783333,1.65,2.05
+ Cabanac-Cazaux ,CABANAC CAZAUX ,31160,31095,72,43.033333,0.75,1.32
+ Cabanac-Séguenville ,CABANAC SEGUENVILLE ,31480,31096,72,43.8,1.033333,2.12
+ Le Cabanial ,LE CABANIAL ,31460,31097,72,43.516667,1.866667,2.14
+ Cadours ,CADOURS ,31480,31098,72,43.733333,1.05,1.82
+ Caignac ,CAIGNAC ,31560,31099,72,43.316667,1.7,1.66
+ Calmont ,CALMONT ,31560,31100,72,43.283333,1.633333,-1
+ Cambernard ,CAMBERNARD ,31470,31101,72,43.483333,1.2,1.12
+ Cambiac ,CAMBIAC ,31460,31102,72,43.483333,1.783333,1.9
+ Canens ,CANENS ,31310,31103,72,43.216667,1.333333,1.27
+ Capens ,CAPENS ,31410,31104,72,43.333333,1.25,0.95
+ Caragoudes ,CARAGOUDES ,31460,31105,72,43.5,1.7,1.66
+ Caraman ,CARAMAN ,31460,31106,72,43.533333,1.766667,1.85
+ Carbonne ,CARBONNE ,31390,31107,72,43.3,1.233333,0.45
+ Cardeilhac ,CARDEILHAC ,31350,31108,72,43.2,0.683333,1.31
+ Cassagnabère-Tournas ,CASSAGNABERE TOURNAS ,31420,31109,72,43.233333,0.8,1.73
+ Cassagne ,CASSAGNE ,31260,31110,72,43.116667,0.983333,0.95
+ Castagnac ,CASTAGNAC ,31310,31111,72,43.233333,1.35,1.54
+ Castagnède ,CASTAGNEDE ,31260,31112,72,43.05,0.966667,1.25
+ Castanet-Tolosan ,CASTANET TOLOSAN ,31320,31113,72,43.516667,1.5,1.23
+ Castelbiague ,CASTELBIAGUE ,31160,31114,72,43.033333,0.916667,1.45
+ Castelgaillard ,CASTELGAILLARD ,31230,31115,72,43.35,0.9,0.72
+ Castelginest ,CASTELGINEST ,31780,31116,72,43.7,1.433333,1.67
+ Castelnau-d'Estrétefonds ,CASTELNAU D ESTRETEFONDS ,31620,31118,72,43.783333,1.366667,2.05
+ Castelnau-Picampeau ,CASTELNAU PICAMPEAU ,31430,31119,72,43.3,1.016667,0.34
+ Le Castéra ,LE CASTERA ,31530,31120,72,43.683333,1.15,1.6
+ Castéra-Vignoles ,CASTERA VIGNOLES ,31350,31121,72,43.283333,0.783333,1.64
+ Casties-Labrande ,CASTIES LABRANDE ,31430,31122,72,43.333333,1,0.62
+ Castillon-de-Larboust ,CASTILLON DE LARBOUST ,31110,31123,72,42.8,0.533333,2.37
+ Castillon-de-Saint-Martory ,CASTILLON DE SAINT MARTORY,31360,31124,72,43.133333,0.866667,1.05
+ Cathervielle ,CATHERVIELLE ,31110,31125,72,42.816667,0.516667,2.3
+ Caubiac ,CAUBIAC ,31480,31126,72,43.716667,1.083333,1.75
+ Caujac ,CAUJAC ,31190,31128,72,43.3,1.466667,0.97
+ Cazaril-Laspènes ,CAZARIL LASPENES ,31110,31129,72,42.8,0.583333,2.37
+ Cazaril-Tambourès ,CAZARIL TAMBOURES ,31580,31130,72,43.183333,0.533333,1.75
+ Cazaunous ,CAZAUNOUS ,31160,31131,72,42.983333,0.733333,1.55
+ Cazaux-Layrisse ,CAZAUX LAYRISSE ,31440,31132,72,42.866667,0.6,2.07
+ Cazeaux-de-Larboust ,CAZEAUX DE LARBOUST ,31110,31133,72,42.8,0.533333,2.37
+ Cazeneuve-Montaut ,CAZENEUVE MONTAUT ,31420,31134,72,43.183333,0.866667,1.05
+ Cazères ,CAZERES ,31220,31135,72,43.216667,1.083333,0.5
+ Cépet ,CEPET ,31620,31136,72,43.75,1.433333,1.9
+ Cessales ,CESSALES ,31290,31137,72,43.45,1.733333,1.75
+ Charlas ,CHARLAS ,31350,31138,72,43.233333,0.7,1.27
+ Chaum ,CHAUM ,31440,31139,72,42.933333,0.65,1.77
+ Chein-Dessus ,CHEIN DESSUS ,31160,31140,72,43.016667,0.883333,1.4
+ Ciadoux ,CIADOUX ,31350,31141,72,43.266667,0.733333,1.17
+ Cier-de-Luchon ,CIER DE LUCHON ,31110,31142,72,42.85,0.6,2.15
+ Cier-de-Rivière ,CIER DE RIVIERE ,31510,31143,72,43.066667,0.633333,1.46
+ Cintegabelle ,CINTEGABELLE ,31550,31145,72,43.316667,1.533333,1.17
+ Cirès ,CIRES ,31110,31146,72,42.85,0.516667,2.15
+ Clermont-le-Fort ,CLERMONT LE FORT ,31810,31148,72,43.45,1.433333,1
+ Colomiers ,COLOMIERS ,31770,31149,72,43.616667,1.35,1.3
+ Cornebarrieu ,CORNEBARRIEU ,31700,31150,72,43.65,1.333333,1.45
+ Corronsac ,CORRONSAC ,31450,31151,72,43.466667,1.5,1.17
+ Coueilles ,COUEILLES ,31230,31152,72,43.35,0.883333,0.73
+ Couladère ,COULADERE ,31220,31153,72,43.2,1.1,0.64
+ Couledoux ,COULEDOUX ,31160,31154,72,42.916667,0.8,1.85
+ Couret ,COURET ,31160,31155,72,43.05,0.816667,1.25
+ Cox ,COX ,31480,31156,72,43.766667,1.05,1.97
+ Cugnaux ,CUGNAUX ,31270,31157,72,43.533333,1.366667,1.48
+ Cuguron ,CUGURON ,31210,31158,72,43.1,0.55,1.7
+ Le Cuing ,LE CUING ,31210,31159,72,43.15,0.6,1.56
+ Daux ,DAUX ,31700,31160,72,43.7,1.25,1.67
+ Deyme ,DEYME ,31450,31161,72,43.483333,1.533333,1.17
+ Donneville ,DONNEVILLE ,31450,31162,72,43.466667,1.55,1.22
+ Drémil-Lafage ,DREMIL LAFAGE ,31280,31163,72,43.6,1.6,1.36
+ Drudas ,DRUDAS ,31480,31164,72,43.75,1.116667,1.9
+ Eaunes ,EAUNES ,31600,31165,72,43.416667,1.35,1.4
+ Empeaux ,EMPEAUX ,31470,31166,72,43.533333,1.083333,1.28
+ Encausse-les-Thermes ,ENCAUSSE LES THERMES ,31160,31167,72,43.05,0.75,1.25
+ Éoux ,EOUX ,31420,31168,72,43.266667,0.9,0.68
+ Escalquens ,ESCALQUENS ,31750,31169,72,43.516667,1.566667,1.27
+ Escanecrabe ,ESCANECRABE ,31350,31170,72,43.283333,0.75,1.14
+ Espanès ,ESPANES ,31450,31171,72,43.45,1.483333,1.48
+ Esparron ,ESPARRON ,31420,31172,72,43.266667,0.816667,1.55
+ Esperce ,ESPERCE ,31190,31173,72,43.3,1.4,1.28
+ Estadens ,ESTADENS ,31160,31174,72,43.033333,0.85,1.32
+ Estancarbon ,ESTANCARBON ,31800,31175,72,43.1,0.783333,1.02
+ Esténos ,ESTENOS ,31440,31176,72,42.95,0.633333,1.7
+ Eup ,EUP ,31440,31177,72,42.933333,0.683333,1.77
+ Le Faget ,LE FAGET ,31460,31179,72,43.566667,1.833333,2.05
+ Falga ,FALGA ,31540,31180,72,43.483333,1.866667,2.14
+ Le Fauga ,LE FAUGA ,31410,31181,72,43.4,1.283333,1.13
+ Fenouillet ,FENOUILLET ,31150,31182,72,43.683333,1.4,1.6
+ Figarol ,FIGAROL ,31260,31183,72,43.083333,0.9,1.23
+ Flourens ,FLOURENS ,31130,31184,72,43.6,1.566667,1.28
+ Folcarde ,FOLCARDE ,31290,31185,72,43.4,1.8,1.95
+ Fonbeauzard ,FONBEAUZARD ,31140,31186,72,43.683333,1.45,1.6
+ Fonsorbes ,FONSORBES ,31470,31187,72,43.533333,1.233333,1.52
+ Fontenilles ,FONTENILLES ,31470,31188,72,43.55,1.2,1.05
+ Forgues ,FORGUES ,31370,31189,72,43.433333,1.05,0.7
+ Fos ,FOS ,31440,31190,72,42.866667,0.733333,2.07
+ Fougaron ,FOUGARON ,31160,31191,72,42.983333,0.933333,1.66
+ Fourquevaux ,FOURQUEVAUX ,31450,31192,72,43.5,1.616667,1.41
+ Le Fousseret ,LE FOUSSERET ,31430,31193,72,43.283333,1.066667,0.8
+ Francarville ,FRANCARVILLE ,31460,31194,72,43.6,1.75,1.8
+ Francazal ,FRANCAZAL ,31260,31195,72,43.016667,1.033333,1.89
+ Francon ,FRANCON ,31420,31196,72,43.266667,0.966667,1.49
+ Franquevielle ,FRANQUEVIELLE ,31210,31197,72,43.133333,0.533333,2.04
+ Le Fréchet ,LE FRECHET ,31360,31198,72,43.183333,0.933333,0.97
+ Fronsac ,FRONSAC ,31440,31199,72,42.95,0.65,1.7
+ Frontignan-de-Comminges ,FRONTIGNAN DE COMMINGES ,31510,31200,72,42.966667,0.65,1.62
+ Frontignan-Savès ,FRONTIGNAN SAVES ,31230,31201,72,43.4,0.916667,1.24
+ Fronton ,FRONTON ,31620,31202,72,43.85,1.4,2.35
+ Frouzins ,FROUZINS ,31270,31203,72,43.516667,1.316667,1.13
+ Fustignac ,FUSTIGNAC ,31430,31204,72,43.3,0.983333,0.76
+ Gagnac-sur-Garonne ,GAGNAC SUR GARONNE ,31150,31205,72,43.7,1.366667,1.67
+ Gaillac-Toulza ,GAILLAC TOULZA ,31550,31206,72,43.25,1.466667,0.97
+ Galié ,GALIE ,31510,31207,72,42.983333,0.633333,1.55
+ Ganties ,GANTIES ,31160,31208,72,43.066667,0.833333,1.17
+ Garac ,GARAC ,31480,31209,72,43.7,1.1,1.67
+ Gardouch ,GARDOUCH ,31290,31210,72,43.383333,1.683333,1.61
+ Gargas ,GARGAS ,31620,31211,72,43.716667,1.466667,1.75
+ Garidech ,GARIDECH ,31380,31212,72,43.716667,1.566667,1.75
+ Garin ,GARIN ,31110,31213,72,42.816667,0.516667,2.3
+ Gaud ,GAUD ,31440,31214,72,42.916667,0.65,1.85
+ Gauré ,GAURE ,31590,31215,72,43.616667,1.616667,1.41
+ Gémil ,GEMIL ,31380,31216,72,43.733333,1.6,1.82
+Génos, ,31510,31217,72,43,0.666667,1.47
+ Gensac-de-Boulogne ,GENSAC DE BOULOGNE ,31350,31218,72,43.25,0.583333,1.61
+ Gensac-sur-Garonne ,GENSAC SUR GARONNE ,31310,31219,72,43.216667,1.133333,1.55
+ Gibel ,GIBEL ,31560,31220,72,43.3,1.666667,1.56
+ Gouaux-de-Larboust ,GOUAUX DE LARBOUST ,31110,31221,72,42.8,0.483333,2.37
+ Gouaux-de-Luchon ,GOUAUX DE LUCHON ,31110,31222,72,42.85,0.616667,2.15
+ Goudex ,GOUDEX ,31230,31223,72,43.366667,0.95,1.54
+ Gourdan-Polignan ,GOURDAN POLIGNAN ,31210,31224,72,43.066667,0.583333,1.61
+ Goutevernisse ,GOUTEVERNISSE ,31310,31225,72,43.216667,1.183333,0.85
+ Gouzens ,GOUZENS ,31310,31226,72,43.183333,1.183333,0.93
+ Goyrans ,GOYRANS ,31120,31227,72,43.483333,1.433333,1.48
+ Gragnague ,GRAGNAGUE ,31380,31228,72,43.683333,1.583333,1.6
+ Gratens ,GRATENS ,31430,31229,72,43.316667,1.116667,1.53
+ Gratentour ,GRATENTOUR ,31150,31230,72,43.716667,1.433333,1.75
+ Grépiac ,GREPIAC ,31190,31233,72,43.4,1.433333,1
+ Le Grès ,LE GRES ,31480,31234,72,43.733333,1.1,1.82
+ Guran ,GURAN ,31440,31235,72,42.883333,0.616667,2
+ Herran ,HERRAN ,31160,31236,72,42.966667,0.916667,1.62
+ His ,HIS ,31260,31237,72,43.066667,0.966667,1.17
+ Huos ,HUOS ,31210,31238,72,43.066667,0.6,1.56
+ L'Isle-en-Dodon ,L ISLE EN DODON,31230,31239,72,43.383333,0.85,0.83
+ Issus ,ISSUS ,31450,31240,72,43.416667,1.5,1.4
+ Izaut-de-l'Hôtel ,IZAUT DE L HOTEL,31160,31241,72,43.016667,0.75,1.4
+ Jurvielle ,JURVIELLE ,31110,31242,72,42.816667,0.483333,2.3
+ Juzes ,JUZES ,31540,31243,72,43.45,1.8,1.95
+ Juzet-de-Luchon ,JUZET DE LUCHON ,31110,31244,72,42.816667,0.616667,2.3
+ Juzet-d'Izaut ,JUZET D IZAUT ,31160,31245,72,42.983333,0.75,1.55
+ Labarthe-Inard ,LABARTHE INARD ,31800,31246,72,43.116667,0.85,1.83
+ Labarthe-Rivière ,LABARTHE RIVIERE ,31800,31247,72,43.083333,0.666667,1.47
+ Labarthe-sur-Lèze ,LABARTHE SUR LEZE ,31860,31248,72,43.45,1.4,0.78
+ Labastide-Beauvoir ,LABASTIDE BEAUVOIR ,31450,31249,72,43.483333,1.666667,1.96
+ Labastide-Clermont ,LABASTIDE CLERMONT ,31370,31250,72,43.35,1.116667,1.16
+ Labastide-Paumès ,LABASTIDE PAUMES ,31230,31251,72,43.333333,0.933333,1.3
+ Labastide-Saint-Sernin ,LABASTIDE SAINT SERNIN ,31620,31252,72,43.733333,1.466667,1.82
+ Labastidette ,LABASTIDETTE ,31600,31253,72,43.45,1.266667,0.74
+ Labège ,LABEGE ,31670,31254,72,43.533333,1.533333,1.17
+ Labroquère ,LABROQUERE ,31510,31255,72,43.033333,0.6,1.56
+ Labruyère-Dorsa ,LABRUYERE DORSA ,31190,31256,72,43.4,1.483333,1.16
+ Lacaugne ,LACAUGNE ,31390,31258,72,43.283333,1.266667,1.25
+ Lacroix-Falgarde ,LACROIX FALGARDE ,31120,31259,72,43.5,1.416667,0.83
+ Lagarde ,LAGARDE ,31290,31262,72,43.341667,1.716667,-1
+ Lagardelle-sur-Lèze ,LAGARDELLE SUR LEZE ,31870,31263,72,43.416667,1.383333,1
+ Lagrâce-Dieu ,LAGRACE DIEU ,31190,31264,72,43.333333,1.4,0.95
+ Lagraulet-Saint-Nicolas ,LAGRAULET SAINT NICOLAS ,31480,31265,72,43.783333,1.083333,2.05
+ Lahage ,LAHAGE ,31370,31266,72,43.433333,1.066667,0.51
+ Lahitère ,LAHITERE ,31310,31267,72,43.133333,1.2,1.24
+ Lamasquère ,LAMASQUERE ,31600,31269,72,43.483333,1.266667,0.74
+ Landorthe ,LANDORTHE ,31800,31270,72,43.133333,0.783333,1.02
+ Lanta ,LANTA ,31570,31271,72,43.566667,1.666667,1.56
+ Lapeyrouse-Fossat ,LAPEYROUSE FOSSAT ,31180,31273,72,43.7,1.516667,1.67
+ Larcan ,LARCAN ,31800,31274,72,43.183333,0.716667,1.22
+ Laréole ,LAREOLE ,31480,31275,72,43.733333,1.033333,1.82
+ Latoue ,LATOUE ,31800,31278,72,43.166667,0.783333,1.03
+ Latour ,LATOUR ,31310,31279,72,43.2,1.283333,0.58
+ Latrape ,LATRAPE ,31310,31280,72,43.25,1.266667,0.65
+ Launac ,LAUNAC ,31330,31281,72,43.75,1.183333,1.9
+ Launaguet ,LAUNAGUET ,31140,31282,72,43.683333,1.45,1.6
+ Lautignac ,LAUTIGNAC ,31370,31283,72,43.383333,1.066667,0.48
+ Lauzerville ,LAUZERVILLE ,31650,31284,72,43.55,1.566667,1.27
+ Lavalette ,LAVALETTE ,31590,31285,72,43.633333,1.6,1.37
+ Lavelanet-de-Comminges ,LAVELANET DE COMMINGES ,31220,31286,72,43.25,1.116667,1.24
+ Layrac-sur-Tarn ,LAYRAC SUR TARN ,31340,31288,72,43.833333,1.566667,2.27
+ Lécussan ,LECUSSAN ,31580,31289,72,43.15,0.5,1.85
+ Lège ,LEGE ,31440,31290,72,42.866667,0.616667,2.07
+ Léguevin ,LEGUEVIN ,31490,31291,72,43.6,1.25,1.22
+ Lescuns ,LESCUNS ,31220,31292,72,43.25,1.016667,1.14
+ Lespinasse ,LESPINASSE ,31150,31293,72,43.716667,1.383333,1.75
+ Lespiteau ,LESPITEAU ,31160,31294,72,43.066667,0.766667,1.17
+ Lespugue ,LESPUGUE ,31350,31295,72,43.233333,0.666667,1.36
+ Lestelle-de-Saint-Martory ,LESTELLE DE SAINT MARTORY,31360,31296,72,43.133333,0.916667,0.87
+ Lez ,LEZ ,31440,31298,72,42.916667,0.7,1.85
+ Liéoux ,LIEOUX ,31800,31300,72,43.15,0.766667,1.07
+ Lilhac ,LILHAC ,31230,31301,72,43.283333,0.816667,1.3
+ Lodes ,LODES ,31800,31302,72,43.166667,0.683333,1.31
+ Longages ,LONGAGES ,31410,31303,72,43.366667,1.25,0.68
+ Loubens-Lauragais ,LOUBENS LAURAGAIS ,31460,31304,72,43.583333,1.783333,1.9
+ Loudet ,LOUDET ,31580,31305,72,43.15,0.566667,1.66
+ Lourde ,LOURDE ,31510,31306,72,42.983333,0.666667,1.55
+ Lunax ,LUNAX ,31350,31307,72,43.333333,0.683333,1.31
+ Luscan ,LUSCAN ,31510,31308,72,43,0.616667,1.51
+ Lussan-Adeilhac ,LUSSAN ADEILHAC ,31430,31309,72,43.316667,0.95,1.31
+ Lux ,LUX ,31290,31310,72,43.433333,1.783333,1.9
+ La Magdelaine-sur-Tarn ,LA MAGDELAINE SUR TARN,31340,31311,72,43.816667,1.55,2.2
+ Mailholas ,MAILHOLAS ,31310,31312,72,43.25,1.266667,0.65
+ Malvézie ,MALVEZIE ,31510,31313,72,43,0.683333,1.47
+ Mancioux ,MANCIOUX ,31360,31314,72,43.15,0.95,0.97
+ Mane ,MANE ,31260,31315,72,43.083333,0.95,1.1
+ Marignac-Lasclares ,MARIGNAC LASCLARES ,31430,31317,72,43.3,1.1,1.25
+ Marignac-Laspeyres ,MARIGNAC LASPEYRES ,31220,31318,72,43.216667,0.95,1.93
+ Marliac ,MARLIAC ,31550,31319,72,43.233333,1.466667,1.05
+ Marquefave ,MARQUEFAVE ,31390,31320,72,43.316667,1.233333,0.53
+ Marsoulas ,MARSOULAS ,31260,31321,72,43.1,1,1.02
+ Martisserre ,MARTISSERRE ,31230,31322,72,43.383333,0.883333,0.73
+ Martres-de-Rivière ,MARTRES DE RIVIERE ,31210,31323,72,43.083333,0.65,1.41
+ Martres-Tolosane ,MARTRES TOLOSANE ,31220,31324,72,43.2,1,1.06
+ Mascarville ,MASCARVILLE ,31460,31325,72,43.55,1.75,1.8
+ Massabrac ,MASSABRAC ,31310,31326,72,43.233333,1.35,1.54
+ Mauran ,MAURAN ,31220,31327,72,43.183333,1.033333,0.65
+ Maurémont ,MAUREMONT ,31290,31328,72,43.45,1.683333,1.61
+ Maurens ,MAURENS ,31540,31329,72,43.466667,1.791667,-1
+ Mauressac ,MAURESSAC ,31190,31330,72,43.316667,1.433333,0.88
+ Maureville ,MAUREVILLE ,31460,31331,72,43.516667,1.7,1.66
+ Mauvaisin ,MAUVAISIN ,31190,31332,72,43.35,1.55,1.89
+ Mauzac ,MAUZAC ,31410,31334,72,43.383333,1.266667,0.68
+ Mayrègne ,MAYREGNE ,31110,31335,72,42.833333,0.55,2.22
+ Melles ,MELLES ,31440,31337,72,42.866667,0.766667,2.07
+ Menville ,MENVILLE ,31530,31338,72,43.683333,1.2,1.6
+ Mérenvielle ,MERENVIELLE ,31530,31339,72,43.633333,1.166667,1.37
+ Mervilla ,MERVILLA ,31320,31340,72,43.516667,1.466667,0.97
+ Merville ,MERVILLE ,31330,31341,72,43.733333,1.316667,1.82
+ Milhas ,MILHAS ,31160,31342,72,42.983333,0.8,1.55
+ Mirambeau ,MIRAMBEAU ,31230,31343,72,43.4,0.883333,0.87
+ Miramont-de-Comminges ,MIRAMONT DE COMMINGES ,31800,31344,72,43.083333,0.75,1.12
+ Miremont ,MIREMONT ,31190,31345,72,43.366667,1.416667,0.83
+ Mirepoix-sur-Tarn ,MIREPOIX SUR TARN ,31340,31346,72,43.816667,1.583333,2.2
+ Molas ,MOLAS ,31230,31347,72,43.4,0.783333,1.38
+ Moncaup ,MONCAUP ,31160,31348,72,42.983333,0.7,1.57
+ Mondavezan ,MONDAVEZAN ,31220,31349,72,43.233333,1.033333,0.74
+ Mondilhan ,MONDILHAN ,31350,31350,72,43.283333,0.7,1.27
+ Mondonville ,MONDONVILLE ,31700,31351,72,43.666667,1.283333,1.52
+ Mondouzil ,MONDOUZIL ,31850,31352,72,43.633333,1.566667,1.37
+ Monès ,MONES ,31370,31353,72,43.416667,1.033333,0.84
+ Monestrol ,MONESTROL ,31560,31354,72,43.333333,1.666667,1.56
+ Montaigut-sur-Save ,MONTAIGUT SUR SAVE ,31530,31356,72,43.7,1.25,1.67
+ Montastruc-de-Salies ,MONTASTRUC DE SALIES ,31160,31357,72,43.033333,0.9,1.32
+ Montastruc-la-Conseillère ,MONTASTRUC LA CONSEILLERE ,31380,31358,72,43.716667,1.6,1.75
+ Montastruc-Savès ,MONTASTRUC SAVES ,31370,31359,72,43.35,1.016667,1.48
+ Montauban-de-Luchon ,MONTAUBAN DE LUCHON ,31110,31360,72,42.8,0.616667,2.37
+ Montaut ,MONTAUT ,31410,31361,72,43.35,1.266667,0.39
+ Montberaud ,MONTBERAUD ,31220,31362,72,43.15,1.15,1.72
+ Montbernard ,MONTBERNARD ,31230,31363,72,43.3,0.766667,1.68
+ Montberon ,MONTBERON ,31140,31364,72,43.716667,1.483333,1.75
+ Montbrun-Bocage ,MONTBRUN BOCAGE ,31310,31365,72,43.133333,1.266667,1.13
+ Montbrun-Lauragais ,MONTBRUN LAURAGAIS ,31450,31366,72,43.45,1.533333,1.17
+ Montclar-de-Comminges ,MONTCLAR DE COMMINGES ,31220,31367,72,43.166667,1.016667,0.97
+ Montclar-Lauragais ,MONTCLAR LAURAGAIS ,31290,31368,72,43.366667,1.716667,1.7
+ Mont-de-Galié ,MONT DE GALIE ,31510,31369,72,42.983333,0.65,1.55
+ Montégut-Bourjac ,MONTEGUT BOURJAC ,31430,31370,72,43.283333,0.983333,0.86
+ Montégut-Lauragais ,MONTEGUT LAURAGAIS ,31540,31371,72,43.483333,1.933333,2.34
+ Montespan ,MONTESPAN ,31260,31372,72,43.083333,0.866667,1.89
+ Montesquieu-Guittaut ,MONTESQUIEU GUITTAUT ,31230,31373,72,43.333333,0.766667,1.47
+ Montesquieu-Lauragais ,MONTESQUIEU LAURAGAIS ,31450,31374,72,43.416667,1.633333,1.51
+ Montesquieu-Volvestre ,MONTESQUIEU VOLVESTRE ,31310,31375,72,43.216667,1.233333,0.5
+ Montgaillard-de-Salies ,MONTGAILLARD DE SALIES ,31260,31376,72,43.066667,0.933333,1.17
+ Montgaillard-Lauragais ,MONTGAILLARD LAURAGAIS ,31290,31377,72,43.433333,1.7,1.66
+ Montgaillard-sur-Save ,MONTGAILLARD SUR SAVE ,31350,31378,72,43.25,0.733333,1.17
+ Montgazin ,MONTGAZIN ,31410,31379,72,43.3,1.283333,1.62
+ Montgeard ,MONTGEARD ,31560,31380,72,43.333333,1.616667,1.41
+ Montgiscard ,MONTGISCARD ,31450,31381,72,43.45,1.583333,1.32
+ Montgras ,MONTGRAS ,31370,31382,72,43.45,1.066667,0.77
+ Montjoire ,MONTJOIRE ,31380,31383,72,43.783333,1.533333,2.05
+ Montmaurin ,MONTMAURIN ,31350,31385,72,43.216667,0.633333,1.46
+ Montoulieu-Saint-Bernard ,MONTOULIEU SAINT BERNARD ,31420,31386,72,43.233333,0.916667,0.63
+ Montoussin ,MONTOUSSIN ,31430,31387,72,43.266667,1.016667,0.74
+ Montpitol ,MONTPITOL ,31380,31388,72,43.7,1.633333,1.67
+ Montrabé ,MONTRABE ,31850,31389,72,43.65,1.516667,1.45
+ Montréjeau ,MONTREJEAU ,31210,31390,72,43.083333,0.583333,1.61
+ Montsaunès ,MONTSAUNES ,31260,31391,72,43.116667,0.933333,0.95
+ Mourvilles-Basses ,MOURVILLES BASSES ,31460,31392,72,43.483333,1.7,1.66
+ Mourvilles-Hautes ,MOURVILLES HAUTES ,31540,31393,72,43.416667,1.816667,2
+ Moustajon ,MOUSTAJON ,31110,31394,72,42.816667,0.6,2.3
+ Muret ,MURET ,31600,31395,72,43.466667,1.35,0.99
+ Nailloux ,NAILLOUX ,31560,31396,72,43.366667,1.633333,1.46
+ Nénigan ,NENIGAN ,31350,31397,72,43.35,0.7,1.39
+ Nizan-Gesse ,NIZAN GESSE ,31350,31398,72,43.233333,0.6,1.56
+ Noé ,NOE ,31410,31399,72,43.35,1.266667,0.39
+ Nogaret ,NOGARET ,31540,31400,72,43.5,1.933333,2.34
+ Noueilles ,NOUEILLES ,31450,31401,72,43.416667,1.533333,1.17
+ Odars ,ODARS ,31450,31402,72,43.516667,1.6,1.36
+ Ondes ,ONDES ,31330,31403,72,43.783333,1.3,2.05
+ Oô ,OO ,31110,31404,72,42.8,0.5,2.37
+ Ore ,ORE ,31510,31405,72,42.966667,0.65,1.62
+ Palaminy ,PALAMINY ,31220,31406,72,43.2,1.066667,0.57
+ Paulhac ,PAULHAC ,31380,31407,72,43.716667,1.566667,1.75
+ Payssous ,PAYSSOUS ,31510,31408,72,43.033333,0.716667,1.87
+ Péchabou ,PECHABOU ,31320,31409,72,43.5,1.5,1.2
+ Pechbonnieu ,PECHBONNIEU ,31140,31410,72,43.7,1.466667,1.67
+ Pechbusque ,PECHBUSQUE ,31320,31411,72,43.516667,1.466667,0.97
+ Péguilhan ,PEGUILHAN ,31350,31412,72,43.316667,0.7,1.27
+ Pelleport ,PELLEPORT ,31480,31413,72,43.733333,1.133333,1.82
+ Peyrissas ,PEYRISSAS ,31420,31414,72,43.283333,0.9,0.93
+ Peyrouzet ,PEYROUZET ,31420,31415,72,43.2,0.833333,1.27
+ Pibrac ,PIBRAC ,31820,31417,72,43.616667,1.3,1.3
+ Pin-Balma ,PIN BALMA ,31130,31418,72,43.633333,1.533333,1.37
+ Le Pin-Murelet ,LE PIN MURELET ,31370,31419,72,43.4,1.016667,1.11
+ Pinsaguel ,PINSAGUEL ,31120,31420,72,43.516667,1.383333,0.85
+ Plagne ,PLAGNE ,31220,31422,72,43.15,1.05,0.89
+ Plagnole ,PLAGNOLE ,31370,31423,72,43.416667,1.066667,0.4
+ Plaisance-du-Touch ,PLAISANCE DU TOUCH ,31830,31424,72,43.566667,1.3,1.07
+ Le Plan ,LE PLAN ,31220,31425,72,43.166667,1.116667,1.09
+ Pointis-de-Rivière ,POINTIS DE RIVIERE ,31210,31426,72,43.083333,0.616667,1.51
+ Pointis-Inard ,POINTIS INARD ,31800,31427,72,43.083333,0.816667,1.42
+ Pompertuzat ,POMPERTUZAT ,31450,31429,72,43.5,1.516667,1.14
+ Ponlat-Taillebourg ,PONLAT TAILLEBOURG ,31210,31430,72,43.1,0.583333,1.61
+ Portet-d'Aspet ,PORTET D ASPET ,31160,31431,72,42.933333,0.866667,1.77
+ Portet-de-Luchon ,PORTET DE LUCHON ,31110,31432,72,42.8,0.5,2.37
+ Portet-sur-Garonne ,PORTET SUR GARONNE ,31120,31433,72,43.516667,1.416667,0.85
+ Poubeau ,POUBEAU ,31110,31434,72,42.816667,0.5,2.3
+ Poucharramet ,POUCHARRAMET ,31370,31435,72,43.416667,1.183333,1.76
+ Pouy-de-Touges ,POUY DE TOUGES ,31430,31436,72,43.35,1.033333,0.71
+ Pouze ,POUZE ,31450,31437,72,43.433333,1.533333,1.17
+ Pradère-les-Bourguets ,PRADERE LES BOURGUETS ,31530,31438,72,43.65,1.166667,1.45
+ Préserville ,PRESERVILLE ,31570,31439,72,43.516667,1.616667,1.41
+ Proupiary ,PROUPIARY ,31360,31440,72,43.15,0.866667,0.97
+ Prunet ,PRUNET ,31460,31441,72,43.566667,1.733333,1.75
+ Puydaniel ,PUYDANIEL ,31190,31442,72,43.333333,1.433333,0.88
+ Puymaurin ,PUYMAURIN ,31230,31443,72,43.366667,0.766667,1.45
+ Puysségur ,PUYSSEGUR ,31480,31444,72,43.75,1.066667,1.9
+ Ramonville-Saint-Agne ,RAMONVILLE SAINT AGNE ,31520,31446,72,43.55,1.466667,1
+ Razecueillé ,RAZECUEILLE ,31160,31447,72,42.966667,0.8,1.62
+ Rebigue ,REBIGUE ,31320,31448,72,43.483333,1.483333,1.15
+ Régades ,REGADES ,31800,31449,72,43.05,0.716667,1.31
+ Renneville ,RENNEVILLE ,31290,31450,72,43.383333,1.716667,1.7
+ Revel ,REVEL ,31250,31451,72,43.466667,2,2.53
+ Rieucazé ,RIEUCAZE ,31800,31452,72,43.083333,0.75,1.12
+ Rieumajou ,RIEUMAJOU ,31290,31453,72,43.416667,1.783333,1.9
+ Rieumes ,RIEUMES ,31370,31454,72,43.416667,1.116667,0.63
+ Rieux ,RIEUX ,31310,31455,72,43.25,1.2,0.83
+ Riolas ,RIOLAS ,31230,31456,72,43.35,0.916667,0.99
+ Roquefort-sur-Garonne ,ROQUEFORT SUR GARONNE ,31360,31457,72,43.166667,0.966667,1.42
+ Roques ,ROQUES ,31120,31458,72,43.508333,1.375,-1
+ Roquesérière ,ROQUESERIERE ,31380,31459,72,43.733333,1.633333,1.82
+ Roquettes ,ROQUETTES ,31120,31460,72,43.5,1.35,1.59
+ Rouède ,ROUEDE ,31160,31461,72,43.05,0.9,1.31
+ Rouffiac-Tolosan ,ROUFFIAC TOLOSAN ,31180,31462,72,43.666667,1.516667,1.52
+ Roumens ,ROUMENS ,31540,31463,72,43.466667,1.933333,2.34
+ Sabonnères ,SABONNERES ,31370,31464,72,43.466667,1.066667,1.05
+ Saccourvielle ,SACCOURVIELLE ,31110,31465,72,42.816667,0.566667,2.3
+ Saiguède ,SAIGUEDE ,31470,31466,72,43.533333,1.15,0.92
+ Saint-Alban ,SAINT ALBAN ,31140,31467,72,43.7,1.416667,1.79
+ Saint-Araille ,SAINT ARAILLE ,31430,31469,72,43.35,0.983333,1.02
+ Saint-Aventin ,SAINT AVENTIN ,31110,31470,72,42.816667,0.55,2.3
+ Saint-Béat ,SAINT BEAT ,31440,31471,72,42.916667,0.7,1.85
+ Saint-Bertrand-de-Comminges ,SAINT BERTRAND DE COMMINGES,31510,31472,72,43.016667,0.583333,1.61
+ Saint-Cézert ,SAINT CEZERT ,31330,31473,72,43.783333,1.216667,2.05
+ Saint-Christaud ,SAINT CHRISTAUD ,31310,31474,72,43.183333,1.133333,1.6
+ Saint-Clar-de-Rivière ,SAINT CLAR DE RIVIERE,31600,31475,72,43.466667,1.216667,1.65
+ Saint-Élix-le-Château ,SAINT ELIX LE CHATEAU,31430,31476,72,43.266667,1.133333,1.94
+ Saint-Élix-Séglan ,SAINT ELIX SEGLAN ,31420,31477,72,43.2,0.866667,0.79
+ Saint-Félix-Lauragais ,SAINT FELIX LAURAGAIS ,31540,31478,72,43.45,1.9,2.24
+ Saint-Ferréol ,SAINT FERREOL ,31350,31479,72,43.333333,0.733333,1.38
+ Sainte-Foy-d'Aigrefeuille ,SAINTE FOY D AIGREFEUILLE,31570,31480,72,43.55,1.616667,1.41
+ Sainte-Foy-de-Peyrolières ,SAINTE FOY DE PEYROLIERES,31470,31481,72,43.5,1.15,0.78
+ Saint-Frajou ,SAINT FRAJOU ,31230,31482,72,43.333333,0.85,0.83
+ Saint-Gaudens ,SAINT GAUDENS ,31800,31483,72,43.116667,0.733333,1.17
+ Saint-Geniès-Bellevue ,SAINT GENIES BELLEVUE ,31180,31484,72,43.683333,1.483333,1.6
+ Saint-Germier ,SAINT GERMIER ,31290,31485,72,43.475,1.733333,-1
+ Saint-Hilaire ,SAINT HILAIRE ,31410,31486,72,43.416667,1.266667,1.56
+ Saint-Ignan ,SAINT IGNAN ,31800,31487,72,43.15,0.7,1.27
+ Saint-Jean ,SAINT JEAN ,31240,31488,72,43.666667,1.5,1.52
+ Saint-Jean-Lherm ,SAINT JEAN LHERM ,31380,31489,72,43.7,1.616667,1.67
+ Saint-Jory ,SAINT JORY ,31790,31490,72,43.733333,1.383333,1.82
+ Saint-Julia ,SAINT JULIA ,31540,31491,72,43.483333,1.9,2.24
+ Saint-Julien ,SAINT JULIEN ,31220,31492,72,43.233333,1.166667,1.85
+ Saint-Laurent ,SAINT LAURENT ,31230,31494,72,43.316667,0.8,1.08
+ Saint-Léon ,SAINT LEON ,31560,31495,72,43.4,1.566667,2.11
+ Sainte-Livrade ,SAINTE LIVRADE ,31530,31496,72,43.65,1.1,1.76
+ Saint-Loup-Cammas ,SAINT LOUP CAMMAS ,31140,31497,72,43.7,1.483333,1.67
+ Saint-Loup-en-Comminges ,SAINT LOUP EN COMMINGES,31350,31498,72,43.25,0.566667,1.72
+ Saint-Lys ,SAINT LYS ,31470,31499,72,43.516667,1.2,0.89
+ Saint-Mamet ,SAINT MAMET ,31110,31500,72,42.783333,0.6,2.45
+ Saint-Marcel-Paulel ,SAINT MARCEL PAULEL ,31590,31501,72,43.666667,1.6,1.52
+ Saint-Marcet ,SAINT MARCET ,31800,31502,72,43.2,0.75,1.35
+ Saint-Martory ,SAINT MARTORY ,31360,31503,72,43.15,0.933333,0.8
+ Saint-Michel ,SAINT MICHEL ,31220,31505,72,43.166667,1.083333,-1
+ Saint-Orens-de-Gameville ,SAINT ORENS DE GAMEVILLE,31650,31506,72,43.55,1.533333,1.5
+ Saint-Paul-d'Oueil ,SAINT PAUL D OUEIL,31110,31508,72,42.833333,0.55,2.22
+ Saint-Pé-d'Ardet ,SAINT PE D ARDET,31510,31509,72,42.983333,0.666667,1.55
+ Saint-Pé-Delbosc ,SAINT PE DELBOSC ,31350,31510,72,43.266667,0.683333,1.31
+ Saint-Pierre-de-Lages ,SAINT PIERRE DE LAGES,31570,31512,72,43.566667,1.616667,1.41
+ Saint-Plancard ,SAINT PLANCARD ,31580,31513,72,43.166667,0.566667,1.66
+ Saint-Rustice ,SAINT RUSTICE ,31620,31515,72,43.8,1.316667,2.12
+ Saint-Sulpice-sur-Lèze ,SAINT SULPICE SUR LEZE,31410,31517,72,43.333333,1.333333,1.74
+ Saint-Thomas ,SAINT THOMAS ,31470,31518,72,43.516667,1.083333,1.26
+ Sajas ,SAJAS ,31370,31520,72,43.366667,1.016667,1.31
+ Saleich ,SALEICH ,31260,31521,72,43.016667,0.966667,1.4
+ Salerm ,SALERM ,31230,31522,72,43.3,0.833333,0.94
+ Salies-du-Salat ,SALIES DU SALAT ,31260,31523,72,43.116667,0.95,0.95
+ Salles-et-Pratviel ,SALLES ET PRATVIEL ,31110,31524,72,42.833333,0.6,2.22
+ Salles-sur-Garonne ,SALLES SUR GARONNE ,31390,31525,72,43.266667,1.183333,1.04
+ La Salvetat-Lauragais ,LA SALVETAT LAURAGAIS ,31460,31527,72,43.533333,1.8,1.95
+ Saman ,SAMAN ,31350,31528,72,43.233333,0.716667,1.22
+ Samouillan ,SAMOUILLAN ,31420,31529,72,43.266667,0.95,1.21
+ Sana ,SANA ,31220,31530,72,43.233333,1.016667,0.95
+ Sarrecave ,SARRECAVE ,31350,31531,72,43.216667,0.583333,1.62
+ Sarremezan ,SARREMEZAN ,31350,31532,72,43.2,0.666667,1.36
+ Saubens ,SAUBENS ,31600,31533,72,43.483333,1.333333,0.74
+ Saussens ,SAUSSENS ,31460,31534,72,43.583333,1.716667,1.7
+ Saux-et-Pomarède ,SAUX ET POMAREDE ,31800,31536,72,43.15,0.716667,1.22
+ Savarthès ,SAVARTHES ,31800,31537,72,43.116667,0.8,0.98
+ Savères ,SAVERES ,31370,31538,72,43.366667,1.116667,0.92
+ Sédeilhac ,SEDEILHAC ,31580,31539,72,43.15,0.566667,1.66
+ Segreville ,SEGREVILLE ,31460,31540,72,43.5,1.733333,1.75
+ Seilh ,SEILH ,31840,31541,72,43.7,1.35,1.67
+ Seilhan ,SEILHAN ,31510,31542,72,43.05,0.566667,1.82
+ Sénarens ,SENARENS ,31430,31543,72,43.35,0.966667,1.24
+ Sengouagnet ,SENGOUAGNET ,31160,31544,72,42.983333,0.783333,1.55
+ Sepx ,SEPX ,31360,31545,72,43.15,0.85,1.36
+ Seyre ,SEYRE ,31560,31546,72,43.366667,1.666667,1.56
+ Seysses ,SEYSSES ,31600,31547,72,43.5,1.316667,0.78
+ Signac ,SIGNAC ,31440,31548,72,42.9,0.633333,1.92
+ Sode ,SODE ,31110,31549,72,42.816667,0.616667,2.3
+ Soueich ,SOUEICH ,31160,31550,72,43.05,0.783333,1.25
+ Tarabel ,TARABEL ,31570,31551,72,43.516667,1.666667,1.56
+ Terrebasse ,TERREBASSE ,31420,31552,72,43.25,0.966667,1.39
+ Thil ,THIL ,31530,31553,72,43.716667,1.166667,1.75
+ Touille ,TOUILLE ,31260,31554,72,43.083333,0.966667,1.1
+ Toulouse ,TOULOUSE ,31500,31555,72,43.6,1.433333,1.22
+ Tournefeuille ,TOURNEFEUILLE ,31170,31557,72,43.583333,1.35,1.15
+ Toutens ,TOUTENS ,31460,31558,72,43.483333,1.75,1.8
+ Trébons-de-Luchon ,TREBONS DE LUCHON ,31110,31559,72,42.8,0.566667,2.37
+ Trébons-sur-la-Grasse ,TREBONS SUR LA GRASSE,31290,31560,72,43.45,1.733333,1.75
+ L'Union ,L UNION ,31240,31561,72,43.666667,1.483333,1.52
+ Urau ,URAU ,31260,31562,72,43.016667,0.95,1.4
+ Vacquiers ,VACQUIERS ,31340,31563,72,43.766667,1.483333,2.07
+ Valcabrère ,VALCABRERE ,31510,31564,72,43.033333,0.566667,1.66
+ Valentine ,VALENTINE ,31800,31565,72,43.1,0.716667,1.22
+ Vallègue ,VALLEGUE ,31290,31566,72,43.416667,1.75,1.8
+ Vallesvilles ,VALLESVILLES ,31570,31567,72,43.6,1.633333,1.46
+ Vaudreuille ,VAUDREUILLE ,31250,31569,72,43.416667,1.983333,2.48
+ Vaux ,VAUX ,31540,31570,72,43.45,1.833333,2.05
+ Vendine ,VENDINE ,31460,31571,72,43.583333,1.766667,1.85
+ Venerque ,VENERQUE ,31810,31572,72,43.433333,1.45,1
+ Vieille-Toulouse ,VIEILLE TOULOUSE ,31320,31575,72,43.516667,1.45,1.15
+ Vieillevigne ,VIEILLEVIGNE ,31290,31576,72,43.4,1.65,1.51
+ Vignaux ,VIGNAUX ,31480,31577,72,43.683333,1.066667,1.6
+ Vigoulet-Auzil ,VIGOULET AUZIL ,31320,31578,72,43.5,1.466667,0.97
+ Villariès ,VILLARIES ,31380,31579,72,43.716667,1.5,1.79
+ Villaudric ,VILLAUDRIC ,31620,31581,72,43.833333,1.433333,2.27
+ Villefranche-de-Lauragais ,VILLEFRANCHE DE LAURAGAIS ,31290,31582,72,43.4,1.733333,1.75
+ Villematier ,VILLEMATIER ,31340,31583,72,43.833333,1.5,2.27
+ Villemur-sur-Tarn ,VILLEMUR SUR TARN ,31340,31584,72,43.866667,1.516667,2.42
+ Villeneuve-de-Rivière ,VILLENEUVE DE RIVIERE ,31800,31585,72,43.133333,0.666667,1.36
+ Villeneuve-Lécussan ,VILLENEUVE LECUSSAN ,31580,31586,72,43.15,0.516667,1.8
+ Villeneuve-lès-Bouloc ,VILLENEUVE LES BOULOC ,31620,31587,72,43.766667,1.416667,1.97
+ Villeneuve-Tolosane ,VILLENEUVE TOLOSANE ,31270,31588,72,43.516667,1.333333,0.85
+ Villenouvelle ,VILLENOUVELLE ,31290,31589,72,43.433333,1.65,1.51
+ Binos ,BINOS ,31440,31590,72,42.9,0.616667,1.92
+ Aignan ,AIGNAN ,32290,32001,91,43.7,0.083333,1.26
+ Ansan ,ANSAN ,32270,32002,91,43.7,0.783333,1.11
+ Antras ,ANTRAS ,32360,32003,91,43.733333,0.45,1.51
+ Arblade-le-Bas ,ARBLADE LE BAS ,32720,32004,91,43.716667,-0.166667,2.11
+ Arblade-le-Haut ,ARBLADE LE HAUT ,32110,32005,91,43.75,-0.066667,1.77
+ Ardizas ,ARDIZAS ,32430,32007,91,43.716667,1,1.85
+ Armentieux ,ARMENTIEUX ,32230,32008,91,43.516667,0.1,1.21
+ Armous-et-Cau ,ARMOUS ET CAU ,32230,32009,91,43.566667,0.166667,0.98
+ Arrouède ,ARROUEDE ,32140,32010,91,43.35,0.583333,2.1
+ Aubiet ,AUBIET ,32270,32012,91,43.65,0.8,1.17
+ Auch ,AUCH ,32810,32013,91,43.65,0.583333,0.67
+ Augnax ,AUGNAX ,32120,32014,91,43.716667,0.783333,1.11
+ Aujan-Mournède ,AUJAN MOURNEDE ,32300,32015,91,43.383333,0.516667,1.87
+ Auradé ,AURADE ,32600,32016,91,43.566667,1.066667,2.08
+ Aurimont ,AURIMONT ,32450,32018,91,43.583333,0.833333,1.6
+ Aux-Aussat ,AUX AUSSAT ,32170,32020,91,43.433333,0.266667,1.54
+ Avensac ,AVENSAC ,32120,32021,91,43.833333,0.9,1.55
+ Avéron-Bergelle ,AVERON BERGELLE ,32290,32022,91,43.75,0.066667,1.32
+ Avezan ,AVEZAN ,32380,32023,91,43.866667,0.8,1.36
+ Ayzieu ,AYZIEU ,32800,32025,91,43.833333,-0.016667,1.6
+ Bajonnette ,BAJONNETTE ,32120,32026,91,43.8,0.783333,1.11
+ Barcelonne-du-Gers ,BARCELONNE DU GERS ,32720,32027,91,43.7,-0.233333,2.34
+ Barcugnan ,BARCUGNAN ,32170,32028,91,43.383333,0.4,1.87
+ Barran ,BARRAN ,32350,32029,91,43.616667,0.45,0.83
+ Bars ,BARS ,32300,32030,91,43.516667,0.3,1.85
+ Bascous ,BASCOUS ,32190,32031,91,43.783333,0.15,1.72
+ Bassoues ,BASSOUES ,32320,32032,91,43.583333,0.25,1.03
+ Bazian ,BAZIAN ,32320,32033,91,43.666667,0.316667,1.33
+ Bazugues ,BAZUGUES ,32170,32034,91,43.45,0.35,1.43
+ Beaucaire ,BEAUCAIRE ,32410,32035,91,43.833333,0.383333,1.5
+ Beaumarchès ,BEAUMARCHES ,32160,32036,91,43.583333,0.083333,1.26
+ Beaumont ,BEAUMONT ,32100,32037,91,43.933333,0.266667,1.8
+ Beccas ,BECCAS ,32730,32039,91,43.433333,0.15,1.54
+ Bédéchan ,BEDECHAN ,32450,32040,91,43.583333,0.8,1.17
+ Belloc-Saint-Clamens ,BELLOC SAINT CLAMENS ,32300,32042,91,43.45,0.433333,1.43
+ Belmont ,BELMONT ,32190,32043,91,43.7,0.25,0.7
+ Béraut ,BERAUT ,32100,32044,91,43.916667,0.4,1.69
+ Berdoues ,BERDOUES ,32300,32045,91,43.483333,0.416667,1.21
+ Bernède ,BERNEDE ,32400,32046,91,43.666667,-0.216667,2.28
+ Berrac ,BERRAC ,32480,32047,91,44.016667,0.616667,2.36
+ Betcave-Aguin ,BETCAVE AGUIN ,32420,32048,91,43.433333,0.683333,1.54
+ Bétous ,BETOUS ,32110,32049,91,43.7,0.016667,1.5
+ Betplan ,BETPLAN ,32730,32050,91,43.416667,0.2,1.65
+ Bézéril ,BEZERIL ,32130,32051,91,43.55,0.9,1.66
+ Bezolles ,BEZOLLES ,32310,32052,91,43.633333,0.35,2.11
+ Bézues-Bajon ,BEZUES BAJON ,32140,32053,91,43.383333,0.616667,1.87
+ Biran ,BIRAN ,32350,32054,91,43.7,0.416667,0.79
+ Bivès ,BIVES ,32380,32055,91,43.833333,0.816667,1.23
+ Blanquefort ,BLANQUEFORT ,32270,32056,91,43.683333,0.816667,1.23
+ Blaziert ,BLAZIERT ,32100,32057,91,43.933333,0.483333,1.8
+ Blousson-Sérian ,BLOUSSON SERIAN ,32230,32058,91,43.466667,0.2,1.32
+ Bonas ,BONAS ,32410,32059,91,43.783333,0.416667,0.95
+ Boucagnères ,BOUCAGNERES ,32550,32060,91,43.566667,0.6,0.65
+ Boulaur ,BOULAUR ,32450,32061,91,43.55,0.783333,1.11
+ Bourrouillan ,BOURROUILLAN ,32370,32062,91,43.8,-0.016667,1.6
+ Bouzon-Gellenave ,BOUZON GELLENAVE ,32290,32063,91,43.7,0.016667,1.49
+ Bretagne-d'Armagnac ,BRETAGNE D ARMAGNAC ,32800,32064,91,43.883333,0.15,1.47
+ Brugnens ,BRUGNENS ,32500,32066,91,43.85,0.733333,1.25
+ Cabas-Loumasses ,CABAS LOUMASSES ,32140,32067,91,43.366667,0.6,1.99
+ Cadeilhan ,CADEILHAN ,32380,32068,91,43.833333,0.783333,1.13
+ Cadeillan ,CADEILLAN ,32220,32069,91,43.416667,0.85,1.65
+ Caillavet ,CAILLAVET ,32190,32071,91,43.716667,0.333333,0.91
+ Callian ,CALLIAN ,32190,32072,91,43.633333,0.283333,1.44
+ Campagne-d'Armagnac ,CAMPAGNE D ARMAGNAC ,32800,32073,91,43.85, ,1.55
+ Cannet ,CANNET ,32400,32074,91,43.616667,-0.05,1.72
+ Cassaigne ,CASSAIGNE ,32100,32075,91,43.9,0.316667,1.58
+ Castelnau-Barbarens ,CASTELNAU BARBARENS ,32450,32076,91,43.583333,0.733333,0.94
+ Castelnau-d'Anglès ,CASTELNAU D ANGLES ,32320,32077,91,43.616667,0.3,0.53
+ Castelnau-d'Arbieu ,CASTELNAU D ARBIEU ,32500,32078,91,43.883333,0.7,1.47
+ Castelnau-d'Auzan ,CASTELNAU D AUZAN ,32440,32079,91,43.95,0.083333,1.91
+ Castelnavet ,CASTELNAVET ,32290,32081,91,43.666667,0.133333,1.1
+ Castéra-Lectourois ,CASTERA LECTOUROIS ,32700,32082,91,43.983333,0.616667,2.14
+ Castéra-Verduzan ,CASTERA VERDUZAN ,32410,32083,91,43.816667,0.433333,1.02
+ Castéron ,CASTERON ,32380,32084,91,43.883333,0.866667,1.47
+ Castet-Arrouy ,CASTET ARROUY ,32340,32085,91,43.983333,0.716667,2.14
+ Castex ,CASTEX ,32170,32086,91,43.383333,0.316667,1.87
+ Castillon-Debats ,CASTILLON DEBATS ,32190,32088,91,43.716667,0.2,0.99
+ Castillon-Massas ,CASTILLON MASSAS ,32360,32089,91,43.716667,0.533333,0.93
+ Castillon-Savès ,CASTILLON SAVES ,32490,32090,91,43.566667,0.983333,1.79
+ Castin ,CASTIN ,32810,32091,91,43.7,0.533333,1.23
+ Catonvielle ,CATONVIELLE ,32200,32092,91,43.65,0.966667,1.79
+ Caupenne-d'Armagnac ,CAUPENNE D ARMAGNAC ,32110,32094,91,43.783333,-0.066667,1.77
+ Caussens ,CAUSSENS ,32100,32095,91,43.95,0.433333,1.91
+ Cazaubon ,CAZAUBON ,32150,32096,91,43.933333,-0.066667,1.8
+ Cazaux-d'Anglès ,CAZAUX D ANGLES ,32190,32097,91,43.666667,0.266667,0.98
+ Cazaux-Savès ,CAZAUX SAVES ,32130,32098,91,43.533333,0.966667,1.74
+ Cazaux-Villecomtal ,CAZAUX VILLECOMTAL ,32230,32099,91,43.45,0.166667,1.43
+ Cazeneuve ,CAZENEUVE ,32800,32100,91,43.866667,0.166667,1.36
+ Céran ,CERAN ,32500,32101,91,43.816667,0.683333,1.02
+ Cézan ,CEZAN ,32410,32102,91,43.816667,0.5,1.35
+ Chélan ,CHELAN ,32140,32103,91,43.35,0.55,2.1
+ Clermont-Pouyguilles ,CLERMONT POUYGUILLES ,32300,32104,91,43.466667,0.533333,1.32
+ Clermont-Savès ,CLERMONT SAVES ,32600,32105,91,43.616667,1.016667,1.91
+ Cologne ,COLOGNE ,32430,32106,91,43.716667,0.983333,1.79
+ Condom ,CONDOM ,32100,32107,91,43.966667,0.366667,2.03
+ Corneillan ,CORNEILLAN ,32400,32108,91,43.65,-0.183333,2.17
+ Couloumé-Mondébat ,COULOUME MONDEBAT ,32160,32109,91,43.633333,0.1,1.51
+ Courrensan ,COURRENSAN ,32330,32110,91,43.85,0.233333,1.38
+ Courties ,COURTIES ,32230,32111,91,43.566667,0.15,1.04
+ Crastes ,CRASTES ,32270,32112,91,43.733333,0.733333,1.31
+ Cravencères ,CRAVENCERES ,32110,32113,91,43.75,0.033333,1.54
+ Cuélas ,CUELAS ,32300,32114,91,43.35,0.45,2.1
+ Dému ,DEMU ,32190,32115,91,43.75,0.166667,1.4
+ Duffort ,DUFFORT ,32170,32116,91,43.35,0.416667,2.1
+ Duran ,DURAN ,32810,32117,91,43.666667,0.55,0.94
+ Durban ,DURBAN ,32260,32118,91,43.533333,0.6,1.15
+ Eauze ,EAUZE ,32800,32119,91,43.866667,0.1,1.36
+ Encausse ,ENCAUSSE ,32430,32120,91,43.7,1.033333,1.96
+ Esclassan-Labastide ,ESCLASSAN LABASTIDE ,32140,32122,91,43.416667,0.533333,1.65
+ Escorneboeuf ,ESCORNEBOEUF ,32200,32123,91,43.65,0.9,1.51
+ Espaon ,ESPAON ,32220,32124,91,43.416667,0.866667,1.65
+ Espas ,ESPAS ,32370,32125,91,43.766667,0.066667,1.41
+ Estampes ,ESTAMPES ,32170,32126,91,43.4,0.283333,1.76
+ Estang ,ESTANG ,32240,32127,91,43.866667,-0.1,1.89
+ Estipouy ,ESTIPOUY ,32300,32128,91,43.55,0.383333,1.23
+ Estramiac ,ESTRAMIAC ,32380,32129,91,43.833333,0.866667,1.4
+ Faget-Abbatial ,FAGET ABBATIAL ,32450,32130,91,43.5,0.7,1.29
+ Flamarens ,FLAMARENS ,32340,32131,91,44.016667,0.8,2.36
+ Fleurance ,FLEURANCE ,32500,32132,91,43.833333,0.666667,1.13
+ Fourcès ,FOURCES ,32250,32133,91,43.983333,0.216667,2.14
+ Frégouville ,FREGOUVILLE ,32490,32134,91,43.6,0.95,1.68
+ Fustérouau ,FUSTEROUAU ,32400,32135,91,43.683333,0.016667,1.97
+ Galiax ,GALIAX ,32160,32136,91,43.616667,0.016667,1.49
+ Garravet ,GARRAVET ,32220,32138,91,43.416667,0.9,1.65
+ Gaudonville ,GAUDONVILLE ,32380,32139,91,43.883333,0.85,1.47
+ Gaujac ,GAUJAC ,32220,32140,91,43.483333,0.833333,1.31
+ Gaujan ,GAUJAN ,32420,32141,91,43.4,0.716667,1.76
+ Gazaupouy ,GAZAUPOUY ,32480,32143,91,44.016667,0.45,2.36
+ Gazax-et-Baccarisse ,GAZAX ET BACCARISSE ,32230,32144,91,43.616667,0.183333,1.38
+ Gée-Rivière ,GEE RIVIERE ,32720,32145,91,43.666667,-0.183333,2.17
+ Gimbrède ,GIMBREDE ,32340,32146,91,44.033333,0.716667,2.47
+ Gimont ,GIMONT ,32200,32147,91,43.633333,0.883333,1.45
+ Giscaro ,GISCARO ,32200,32148,91,43.616667,0.916667,1.57
+ Gondrin ,GONDRIN ,32330,32149,91,43.883333,0.25,1.47
+ Goutz ,GOUTZ ,32500,32150,91,43.783333,0.733333,1.36
+ Goux ,GOUX ,32400,32151,91,43.616667,-0.033333,1.66
+ Haget ,HAGET ,32730,32152,91,43.416667,0.166667,1.65
+ Haulies ,HAULIES ,32550,32153,91,43.566667,0.666667,1.71
+ Homps ,HOMPS ,32120,32154,91,43.816667,0.866667,1.4
+ Le Houga ,LE HOUGA ,32460,32155,91,43.766667,-0.183333,2.17
+ Idrac-Respailles ,IDRAC RESPAILLES ,32300,32156,91,43.516667,0.45,0.98
+ L'Isle-Arné ,L ISLE ARNE ,32270,32157,91,43.616667,0.766667,1.15
+ L'Isle-Bouzon ,L ISLE BOUZON ,32380,32158,91,43.916667,0.733333,1.73
+ L'Isle-de-Noé ,L ISLE DE NOE,32300,32159,91,43.6,0.416667,1.59
+ L'Isle-Jourdain ,L ISLE JOURDAIN ,32600,32160,91,43.616667,1.083333,2.13
+ Izotges ,IZOTGES ,32400,32161,91,43.65,-0.016667,1.6
+ Jégun ,JEGUN ,32360,32162,91,43.766667,0.466667,1.26
+ Jû-Belloc ,JU BELLOC ,32160,32163,91,43.583333, ,1.55
+ Juillac ,JUILLAC ,32230,32164,91,43.55,0.133333,1.09
+ Juilles ,JUILLES ,32200,32165,91,43.6,0.833333,1.4
+ Justian ,JUSTIAN ,32190,32166,91,43.8,0.3,0.91
+ Laas ,LAAS ,32170,32167,91,43.466667,0.3,1.32
+ Labarrère ,LABARRERE ,32250,32168,91,43.958333,0.141667,-1
+ Labarthète ,LABARTHETE ,32400,32170,91,43.633333,-0.166667,2.11
+ Labastide-Savès ,LABASTIDE SAVES ,32130,32171,91,43.516667,0.983333,1.79
+ Labéjan ,LABEJAN ,32300,32172,91,43.533333,0.5,0.97
+ Labrihe ,LABRIHE ,32120,32173,91,43.766667,0.883333,1.45
+ Ladevèze-Rivière ,LADEVEZE RIVIERE ,32230,32174,91,43.55,0.083333,1.4
+ Ladevèze-Ville ,LADEVEZE VILLE ,32230,32175,91,43.55,0.066667,1.66
+ Lagarde-Hachan ,LAGARDE HACHAN ,32300,32177,91,43.416667,0.5,1.65
+ Lagardère ,LAGARDERE ,32310,32178,91,43.833333,0.316667,1.13
+ Lagraulas ,LAGRAULAS ,32190,32179,91,43.75,0.25,0.7
+ Lagraulet-du-Gers ,LAGRAULET DU GERS ,32330,32180,91,43.9,0.216667,1.58
+ Lahas ,LAHAS ,32130,32182,91,43.566667,0.9,1.84
+ Lahitte ,LAHITTE ,32810,32183,91,43.666667,0.666667,1.23
+ Lalanne-Arqué ,LALANNE ARQUE ,32140,32185,91,43.333333,0.633333,2.21
+ Lamaguère ,LAMAGUERE ,32260,32186,91,43.5,0.666667,1.09
+ Lamazère ,LAMAZERE ,32300,32187,91,43.566667,0.45,1.15
+ Lamothe-Goas ,LAMOTHE GOAS ,32500,32188,91,43.866667,0.55,1.51
+ Lannemaignan ,LANNEMAIGNAN ,32240,32189,91,43.9,-0.2,2.23
+ Lannepax ,LANNEPAX ,32190,32190,91,43.8,0.233333,0.96
+ Lanne-Soubiran ,LANNE SOUBIRAN ,32110,32191,91,43.733333,-0.1,1.89
+ Lannux ,LANNUX ,32400,32192,91,43.65,-0.216667,2.28
+ Larée ,LAREE ,32150,32193,91,43.9,-0.05,1.72
+ Larressingle ,LARRESSINGLE ,32100,32194,91,43.933333,0.3,1.8
+ Larroque-Engalin ,LARROQUE ENGALIN ,32480,32195,91,43.983333,0.616667,2.14
+ Larroque-Saint-Sernin ,LARROQUE SAINT SERNIN ,32410,32196,91,43.816667,0.483333,1.02
+ Lartigue ,LARTIGUE ,32450,32198,91,43.533333,0.716667,0.89
+ Lasserade ,LASSERADE ,32160,32199,91,43.633333,0.066667,1.32
+ Lasséran ,LASSERAN ,32550,32200,91,43.583333,0.533333,1.24
+ Lasseube-Propre ,LASSEUBE PROPRE ,32550,32201,91,43.583333,0.583333,0.54
+ Laujuzan ,LAUJUZAN ,32110,32202,91,43.8,-0.116667,1.94
+ Lauraët ,LAURAET ,32330,32203,91,43.916667,0.233333,1.69
+ Lavardens ,LAVARDENS ,32360,32204,91,43.766667,0.516667,0.73
+ Laveraët ,LAVERAET ,32230,32205,91,43.533333,0.216667,0.87
+ Laymont ,LAYMONT ,32220,32206,91,43.416667,0.983333,1.79
+ Leboulin ,LEBOULIN ,32810,32207,91,43.666667,0.666667,1.23
+ Lectoure ,LECTOURE ,32700,32208,91,43.933333,0.616667,1.8
+ Lelin-Lapujolle ,LELIN LAPUJOLLE ,32400,32209,91,43.716667,-0.15,2.06
+ Lias ,LIAS ,32600,32210,91,43.566667,1.133333,2.3
+ Lias-d'Armagnac ,LIAS D ARMAGNAC ,32240,32211,91,43.866667,-0.066667,1.77
+ Ligardes ,LIGARDES ,32480,32212,91,44.033333,0.5,2.47
+ Lombez ,LOMBEZ ,32220,32213,91,43.483333,0.916667,1.57
+ Loubédat ,LOUBEDAT ,32110,32214,91,43.733333,0.016667,1.49
+ Loubersan ,LOUBERSAN ,32300,32215,91,43.5,0.516667,1.09
+ Lourties-Monbrun ,LOURTIES MONBRUN ,32140,32216,91,43.45,0.566667,1.44
+ Louslitges ,LOUSLITGES ,32230,32217,91,43.6,0.166667,1.1
+ Loussous-Débat ,LOUSSOUS DEBAT ,32290,32218,91,43.65,0.066667,1.32
+ Lupiac ,LUPIAC ,32290,32219,91,43.683333,0.183333,1.97
+ Luppé-Violles ,LUPPE VIOLLES ,32110,32220,91,43.733333,-0.133333,2
+ Lussan ,LUSSAN ,32270,32221,91,43.633333,0.733333,1.07
+ Magnan ,MAGNAN ,32110,32222,91,43.75,-0.116667,1.94
+ Magnas ,MAGNAS ,32380,32223,91,43.883333,0.733333,1.48
+ Malabat ,MALABAT ,32730,32225,91,43.433333,0.183333,1.54
+ Manas-Bastanous ,MANAS BASTANOUS ,32170,32226,91,43.366667,0.366667,1.99
+ Manciet ,MANCIET ,32370,32227,91,43.816667,0.05,1.38
+ Manent-Montane ,MANENT MONTANE ,32140,32228,91,43.333333,0.583333,2.21
+ Mansempuy ,MANSEMPUY ,32120,32229,91,43.733333,0.816667,1.23
+ Mansencôme ,MANSENCOME ,32310,32230,91,43.866667,0.333333,1.36
+ Marambat ,MARAMBAT ,32190,32231,91,43.766667,0.3,0.69
+ Maravat ,MARAVAT ,32120,32232,91,43.75,0.766667,1.06
+ Marciac ,MARCIAC ,32230,32233,91,43.533333,0.166667,0.98
+ Marestaing ,MARESTAING ,32490,32234,91,43.583333,1.016667,1.91
+ Margouët-Meymès ,MARGOUET MEYMES ,32290,32235,91,43.716667,0.1,1.21
+ Marguestau ,MARGUESTAU ,32150,32236,91,43.883333,-0.033333,1.66
+ Marsan ,MARSAN ,32270,32237,91,43.666667,0.716667,1.02
+ Marseillan ,MARSEILLAN ,32170,32238,91,43.483333,0.316667,1.21
+ Marsolan ,MARSOLAN ,32700,32239,91,43.95,0.55,1.91
+ Mascaras ,MASCARAS ,32230,32240,91,43.55,0.233333,1.07
+ Mas-d'Auvignon ,MAS D AUVIGNON ,32700,32241,91,43.883333,0.5,2
+ Masseube ,MASSEUBE ,32140,32242,91,43.433333,0.583333,1.54
+ Mauléon-d'Armagnac ,MAULEON D ARMAGNAC ,32240,32243,91,43.9,-0.15,2.06
+ Maulichères ,MAULICHERES ,32400,32244,91,43.683333,-0.083333,1.83
+ Maumusson-Laguian ,MAUMUSSON LAGUIAN ,32400,32245,91,43.616667,-0.1,1.89
+ Maupas ,MAUPAS ,32240,32246,91,43.85,-0.15,2.06
+ Meilhan ,MEILHAN ,32420,32250,91,43.416667,0.683333,1.65
+ Mérens ,MERENS ,32360,32251,91,43.75,0.516667,0.58
+ Miélan ,MIELAN ,32170,32252,91,43.433333,0.316667,1.54
+ Miradoux ,MIRADOUX ,32340,32253,91,44,0.766667,2.25
+ Miramont-d'Astarac ,MIRAMONT D ASTARAC ,32300,32254,91,43.55,0.483333,1.04
+ Miramont-Latour ,MIRAMONT LATOUR ,32390,32255,91,43.766667,0.683333,1.25
+ Mirande ,MIRANDE ,32300,32256,91,43.516667,0.416667,0.98
+ Mirannes ,MIRANNES ,32350,32257,91,43.616667,0.383333,0.83
+ Mirepoix ,MIREPOIX ,32390,32258,91,43.733333,0.666667,1.21
+ Monbardon ,MONBARDON ,32420,32260,91,43.383333,0.683333,1.87
+ Monblanc ,MONBLANC ,32130,32261,91,43.466667,0.983333,1.79
+ Monbrun ,MONBRUN ,32600,32262,91,43.666667,1.033333,1.96
+ Moncassin ,MONCASSIN ,32300,32263,91,43.45,0.5,1.43
+ Monclar ,MONCLAR ,32150,32264,91,43.916667,-0.1,1.89
+ Monclar-sur-Losse ,MONCLAR SUR LOSSE ,32300,32265,91,43.533333,0.333333,1.57
+ Moncorneil-Grazan ,MONCORNEIL GRAZAN ,32260,32266,91,43.45,0.666667,1.45
+ Monferran-Plavès ,MONFERRAN PLAVES ,32260,32267,91,43.483333,0.65,1.21
+ Monferran-Savès ,MONFERRAN SAVES ,32490,32268,91,43.6,0.983333,1.79
+ Monfort ,MONFORT ,32120,32269,91,43.8,0.833333,1.28
+ Mongausy ,MONGAUSY ,32220,32270,91,43.5,0.8,1.93
+ Monguilhem ,MONGUILHEM ,32240,32271,91,43.85,-0.183333,2.17
+ Monlaur-Bernet ,MONLAUR BERNET ,32140,32272,91,43.35,0.516667,2.1
+ Monlezun ,MONLEZUN ,32230,32273,91,43.5,0.216667,1.09
+ Monlezun-d'Armagnac ,MONLEZUN D ARMAGNAC ,32240,32274,91,43.816667,-0.15,2.06
+ Monpardiac ,MONPARDIAC ,32170,32275,91,43.466667,0.25,1.65
+ Montadet ,MONTADET ,32220,32276,91,43.433333,0.916667,1.57
+ Montamat ,MONTAMAT ,32220,32277,91,43.483333,0.85,1.34
+ Mont-d'Astarac ,MONT D ASTARAC ,32140,32280,91,43.333333,0.566667,2.21
+ Mont-de-Marrast ,MONT DE MARRAST ,32170,32281,91,43.383333,0.366667,1.87
+ Montégut-Arros ,MONTEGUT ARROS ,32730,32283,91,43.383333,0.216667,1.87
+ Montégut-Savès ,MONTEGUT SAVES ,32220,32284,91,43.433333,0.95,1.68
+ Montesquiou ,MONTESQUIOU ,32320,32285,91,43.583333,0.333333,0.64
+ Montestruc-sur-Gers ,MONTESTRUC SUR GERS ,32390,32286,91,43.8,0.633333,0.91
+ Montiron ,MONTIRON ,32200,32288,91,43.583333,0.85,1.34
+ Montpézat ,MONTPEZAT ,32220,32289,91,43.4,0.966667,1.76
+ Montréal ,MONTREAL ,32250,32290,91,43.95,0.2,1.91
+ Mormès ,MORMES ,32240,32291,91,43.783333,-0.15,2.06
+ Mouchan ,MOUCHAN ,32330,32292,91,43.9,0.283333,1.58
+ Mouchès ,MOUCHES ,32300,32293,91,43.566667,0.416667,1.21
+ Mourède ,MOUREDE ,32190,32294,91,43.783333,0.283333,0.8
+ Nizas ,NIZAS ,32130,32295,91,43.5,1,1.85
+ Nogaro ,NOGARO ,32110,32296,91,43.766667,-0.033333,1.66
+ Noilhan ,NOILHAN ,32130,32297,91,43.533333,0.933333,1.62
+ Nougaroulet ,NOUGAROULET ,32270,32298,91,43.7,0.733333,0.94
+ Noulens ,NOULENS ,32800,32299,91,43.8,0.166667,1.06
+ Orbessan ,ORBESSAN ,32260,32300,91,43.533333,0.6,1.15
+ Ordan-Larroque ,ORDAN LARROQUE ,32350,32301,91,43.7,0.483333,1.37
+ Ornézan ,ORNEZAN ,32260,32302,91,43.516667,0.6,0.98
+ Pallanne ,PALLANNE ,32230,32303,91,43.516667,0.25,1.31
+ Panassac ,PANASSAC ,32140,32304,91,43.383333,0.566667,1.87
+ Panjas ,PANJAS ,32110,32305,91,43.816667,-0.083333,1.83
+ Pauilhac ,PAUILHAC ,32500,32306,91,43.866667,0.6,1.36
+ Pavie ,PAVIE ,32550,32307,91,43.616667,0.6,0.65
+ Pébées ,PEBEES ,32130,32308,91,43.45,1.033333,1.96
+ Pellefigue ,PELLEFIGUE ,32420,32309,91,43.466667,0.8,1.6
+ Perchède ,PERCHEDE ,32460,32310,91,43.766667,-0.133333,2
+ Pergain-Taillac ,PERGAIN TAILLAC ,32700,32311,91,44.05,0.6,2.58
+ Pessan ,PESSAN ,32550,32312,91,43.616667,0.633333,1.11
+ Pessoulens ,PESSOULENS ,32380,32313,91,43.85,0.9,1.79
+ Peyrecave ,PEYRECAVE ,32340,32314,91,44,0.833333,2.25
+ Peyrusse-Massas ,PEYRUSSE MASSAS ,32360,32316,91,43.733333,0.566667,1.57
+ Peyrusse-Vieille ,PEYRUSSE VIEILLE ,32230,32317,91,43.633333,0.183333,1.64
+ Pis ,PIS ,32500,32318,91,43.783333,0.716667,1.17
+Plaisance, ,32160,32319,91,43.6,0.05,1.38
+ Plieux ,PLIEUX ,32340,32320,91,43.95,0.733333,1.91
+ Pompiac ,POMPIAC ,32130,32322,91,43.516667,1.016667,1.91
+ Ponsampère ,PONSAMPERE ,32300,32323,91,43.45,0.383333,1.43
+ Ponsan-Soubiran ,PONSAN SOUBIRAN ,32300,32324,91,43.35,0.483333,2.1
+ Pouydraguin ,POUYDRAGUIN ,32290,32325,91,43.65,0.033333,1.43
+ Pouylebon ,POUYLEBON ,32320,32326,91,43.55,0.3,0.9
+ Pouy-Roquelaure ,POUY ROQUELAURE ,32480,32328,91,44.033333,0.533333,2.47
+ Préchac ,PRECHAC ,32390,32329,91,43.783333,0.566667,1.22
+ Préchac-sur-Adour ,PRECHAC SUR ADOUR ,32160,32330,91,43.6, ,1.55
+ Preignan ,PREIGNAN ,32810,32331,91,43.716667,0.633333,0.85
+ Préneron ,PRENERON ,32190,32332,91,43.716667,0.266667,0.64
+ Projan ,PROJAN ,32400,32333,91,43.6,-0.233333,2.34
+ Pujaudran ,PUJAUDRAN ,32600,32334,91,43.583333,1.166667,2.42
+ Puycasquier ,PUYCASQUIER ,32120,32335,91,43.75,0.766667,1.06
+ Puylausic ,PUYLAUSIC ,32220,32336,91,43.45,0.933333,1.62
+ Puységur ,PUYSEGUR ,32390,32337,91,43.783333,0.6,0.8
+ Ramouzens ,RAMOUZENS ,32800,32338,91,43.8,0.183333,1.25
+ Razengues ,RAZENGUES ,32600,32339,91,43.65,1,1.85
+ Réans ,REANS ,32800,32340,91,43.85,0.033333,1.43
+ Réjaumont ,REJAUMONT ,32390,32341,91,43.816667,0.55,1.81
+ Ricourt ,RICOURT ,32230,32342,91,43.483333,0.183333,1.21
+ Riguepeu ,RIGUEPEU ,32320,32343,91,43.65,0.35,1.34
+ Riscle ,RISCLE ,32400,32344,91,43.666667,-0.083333,1.83
+ La Romieu ,LA ROMIEU ,32480,32345,91,43.983333,0.5,2.14
+ Roquebrune ,ROQUEBRUNE ,32190,32346,91,43.716667,0.3,0.53
+ Roquefort ,ROQUEFORT ,32390,32347,91,43.766667,0.6,0.69
+ Roquelaure ,ROQUELAURE ,32810,32348,91,43.716667,0.566667,0.85
+ Roquelaure-Saint-Aubin ,ROQUELAURE SAINT AUBIN ,32430,32349,91,43.666667,0.983333,1.79
+ Roquepine ,ROQUEPINE ,32100,32350,91,43.916667,0.466667,1.69
+ Roques ,ROQUES ,32310,32351,91,43.85,0.283333,1.25
+ Rozès ,ROZES ,32190,32352,91,43.8,0.366667,1.54
+ Sabaillan ,SABAILLAN ,32420,32353,91,43.45,0.816667,1.77
+ Sabazan ,SABAZAN ,32290,32354,91,43.7,0.05,1.38
+ Sadeillan ,SADEILLAN ,32170,32355,91,43.4,0.35,1.76
+ Sainte-Anne ,SAINTE ANNE ,32430,32357,91,43.733333,0.966667,1.74
+ Saint-Antoine ,SAINT ANTOINE ,32340,32358,91,44.033333,0.85,2.47
+ Saint-Antonin ,SAINT ANTONIN ,32120,32359,91,43.716667,0.816667,1.23
+ Saint-Arailles ,SAINT ARAILLES ,32350,32360,91,43.633333,0.35,1.17
+ Saint-Arroman ,SAINT ARROMAN ,32300,32361,91,43.433333,0.533333,1.54
+ Saint-Aunix-Lengros ,SAINT AUNIX LENGROS ,32160,32362,91,43.583333,0.05,1.38
+ Sainte-Aurence-Cazaux ,SAINTE AURENCE CAZAUX ,32300,32363,91,43.366667,0.433333,1.99
+ Saint-Avit-Frandat ,SAINT AVIT FRANDAT ,32700,32364,91,43.983333,0.7,2.14
+ Saint-Brès ,SAINT BRES ,32120,32366,91,43.783333,0.766667,1.06
+ Saint-Christaud ,SAINT CHRISTAUD ,32320,32367,91,43.533333,0.266667,1.39
+ Sainte-Christie ,SAINTE CHRISTIE ,32390,32368,91,43.75,0.633333,0.6
+ Sainte-Christie-d'Armagnac ,SAINTE CHRISTIE D ARMAGNAC,32370,32369,91,43.766667,-0.016667,1.6
+ Saint-Clar ,SAINT CLAR ,32380,32370,91,43.9,0.766667,1.58
+ Saint-Cricq ,SAINT CRICQ ,32430,32372,91,43.7,1,1.85
+ Sainte-Dode ,SAINTE DODE ,32170,32373,91,43.416667,0.366667,1.65
+ Saint-Élix ,SAINT ELIX ,32450,32374,91,43.483333,0.766667,1.21
+ Saint-Élix-Theux ,SAINT ELIX THEUX ,32300,32375,91,43.433333,0.466667,1.54
+ Sainte-Gemme ,SAINTE GEMME ,32120,32376,91,43.783333,0.8,-1
+ Saint-Germé ,SAINT GERME ,32400,32378,91,43.683333,-0.15,2.06
+ Saint-Griède ,SAINT GRIEDE ,32110,32380,91,43.733333,-0.1,1.89
+ Saint-Jean-le-Comtal ,SAINT JEAN LE COMTAL,32550,32381,91,43.583333,0.516667,1.6
+ Saint-Jean-Poutge ,SAINT JEAN POUTGE ,32190,32382,91,43.733333,0.383333,1.53
+ Saint-Justin ,SAINT JUSTIN ,32230,32383,91,43.483333,0.15,1.21
+ Saint-Lary ,SAINT LARY ,32360,32384,91,43.716667,0.5,0.65
+ Saint-Léonard ,SAINT LEONARD ,32380,32385,91,43.85,0.766667,1.25
+ Saint-Lizier-du-Planté ,SAINT LIZIER DU PLANTE,32220,32386,91,43.416667,0.95,1.68
+ Saint-Martin ,SAINT MARTIN ,32300,32389,91,43.5,0.366667,1.09
+ Saint-Martin-d'Armagnac ,SAINT MARTIN D ARMAGNAC,32110,32390,91,43.716667,-0.066667,1.77
+ Saint-Martin-de-Goyne ,SAINT MARTIN DE GOYNE,32480,32391,91,44,0.633333,2.25
+ Saint-Martin-Gimois ,SAINT MARTIN GIMOIS ,32450,32392,91,43.516667,0.816667,1.23
+ Saint-Médard ,SAINT MEDARD ,32300,32394,91,43.483333,0.466667,1.21
+ Sainte-Mère ,SAINTE MERE ,32700,32395,91,44,0.7,2.25
+ Saint-Mézard ,SAINT MEZARD ,32700,32396,91,44.033333,0.633333,2.47
+ Saint-Mont ,SAINT MONT ,32400,32398,91,43.65,-0.15,2.06
+ Saint-Orens ,SAINT ORENS ,32120,32399,91,43.716667,0.9,1.51
+ Saint-Orens-Pouy-Petit ,SAINT ORENS POUY PETIT,32100,32400,91,43.916667,0.433333,1.69
+ Saint-Ost ,SAINT OST ,32300,32401,91,43.383333,0.466667,1.87
+ Saint-Paul-de-Baïse ,SAINT PAUL DE BAISE,32190,32402,91,43.766667,0.366667,1.35
+ Saint-Puy ,SAINT PUY ,32310,32404,91,43.883333,0.466667,1.47
+ Sainte-Radegonde ,SAINTE RADEGONDE ,32500,32405,91,43.833333,0.583333,1.13
+ Saint-Sauvy ,SAINT SAUVY ,32270,32406,91,43.7,0.833333,1.34
+ Saint-Soulan ,SAINT SOULAN ,32220,32407,91,43.5,0.85,1.34
+ Salles-d'Armagnac ,SALLES D ARMAGNAC ,32370,32408,91,43.8,-0.033333,1.66
+ Samaran ,SAMARAN ,32140,32409,91,43.383333,0.516667,1.87
+ Samatan ,SAMATAN ,32130,32410,91,43.5,0.933333,1.62
+ Saramon ,SARAMON ,32450,32412,91,43.533333,0.766667,1.06
+ Sarcos ,SARCOS ,32420,32413,91,43.383333,0.683333,1.87
+ Sarragachies ,SARRAGACHIES ,32400,32414,91,43.683333,-0.05,1.72
+ Sarraguzan ,SARRAGUZAN ,32170,32415,91,43.35,0.333333,2.1
+ Sarrant ,SARRANT ,32120,32416,91,43.766667,0.916667,1.57
+ La Sauvetat ,LA SAUVETAT ,32500,32417,91,43.866667,0.533333,1.74
+ Sauviac ,SAUVIAC ,32300,32419,91,43.4,0.45,1.76
+ Sauvimont ,SAUVIMONT ,32220,32420,91,43.45,0.966667,1.74
+ Savignac-Mona ,SAVIGNAC MONA ,32130,32421,91,43.483333,1,1.85
+ Séailles ,SEAILLES ,32190,32423,91,43.733333,0.116667,2.07
+ Ségos ,SEGOS ,32400,32424,91,43.633333,-0.25,2.4
+ Ségoufielle ,SEGOUFIELLE ,32600,32425,91,43.633333,1.133333,2.3
+ Seissan ,SEISSAN ,32260,32426,91,43.5,0.6,1.09
+ Sembouès ,SEMBOUES ,32230,32427,91,43.466667,0.166667,1.32
+ Sémézies-Cachan ,SEMEZIES CACHAN ,32450,32428,91,43.516667,0.733333,0.98
+ Sempesserre ,SEMPESSERRE ,32700,32429,91,44.016667,0.65,2.36
+ Sère ,SERE ,32140,32430,91,43.416667,0.633333,1.65
+ Sérempuy ,SEREMPUY ,32120,32431,91,43.833333,0.75,1.51
+ Seysses-Savès ,SEYSSES SAVES ,32130,32432,91,43.5,1.05,2.02
+ Simorre ,SIMORRE ,32420,32433,91,43.45,0.733333,1.43
+ Sion ,SION ,32110,32434,91,43.733333, ,1.55
+ Sirac ,SIRAC ,32430,32435,91,43.716667,0.95,1.68
+ Solomiac ,SOLOMIAC ,32120,32436,91,43.8,0.883333,1.45
+ Sorbets ,SORBETS ,32110,32437,91,43.716667,-0.016667,1.6
+ Tachoires ,TACHOIRES ,32260,32438,91,43.466667,0.666667,1.32
+ Tarsac ,TARSAC ,32400,32439,91,43.666667,-0.116667,1.94
+ Tasque ,TASQUE ,32160,32440,91,43.65,0.016667,1.49
+ Taybosc ,TAYBOSC ,32120,32441,91,43.75,0.766667,1.06
+ Terraube ,TERRAUBE ,32700,32442,91,43.916667,0.55,1.69
+ Thoux ,THOUX ,32430,32444,91,43.683333,0.983333,1.79
+ Tieste-Uragnoux ,TIESTE URAGNOUX ,32160,32445,91,43.55,0.033333,1.43
+ Tillac ,TILLAC ,32170,32446,91,43.466667,0.283333,1.32
+ Tirent-Pontejac ,TIRENT PONTEJAC ,32450,32447,91,43.55,0.8,1.17
+ Touget ,TOUGET ,32430,32448,91,43.7,0.916667,1.91
+ Toujouse ,TOUJOUSE ,32240,32449,91,43.833333,-0.183333,2.17
+ Tourdun ,TOURDUN ,32230,32450,91,43.55,0.15,1.04
+ Tournan ,TOURNAN ,32420,32451,91,43.433333,0.783333,1.54
+ Tournecoupe ,TOURNECOUPE ,32380,32452,91,43.866667,0.816667,1.36
+ Tourrenquets ,TOURRENQUETS ,32390,32453,91,43.75,0.683333,1.32
+ Traversères ,TRAVERSERES ,32450,32454,91,43.533333,0.65,2
+ Troncens ,TRONCENS ,32230,32455,91,43.466667,0.216667,1.32
+ Tudelle ,TUDELLE ,32190,32456,91,43.683333,0.283333,0.77
+ Urdens ,URDENS ,32500,32457,91,43.85,0.7,1.25
+ Urgosse ,URGOSSE ,32110,32458,91,43.733333,-0.016667,1.6
+ Valence-sur-Baïse ,VALENCE SUR BAISE ,32310,32459,91,43.883333,0.383333,1.47
+ Vergoignan ,VERGOIGNAN ,32720,32460,91,43.716667,-0.2,2.23
+ Verlus ,VERLUS ,32400,32461,91,43.6,-0.2,2.23
+ Vic-Fezensac ,VIC FEZENSAC ,32190,32462,91,43.766667,0.3,0.69
+ Villefranche ,VILLEFRANCHE ,32420,32465,91,43.416667,0.716667,1.65
+ Viozan ,VIOZAN ,32300,32466,91,43.4,0.5,1.76
+ Aussos ,AUSSOS ,32140,32468,91,43.383333,0.65,1.87
+ Abzac ,ABZAC ,33230,33001,72,45.016667,-0.133333,1.03
+ Aillas ,AILLAS ,33124,33002,72,44.466667,-0.066667,2.14
+ Ambès ,AMBES ,33810,33004,72,45.016667,-0.533333,1.03
+ Andernos-les-Bains ,ANDERNOS LES BAINS ,33510,33005,72,44.74288,-1.1,-1
+ Anglade ,ANGLADE ,33390,33006,72,45.216667,-0.633333,2.04
+ Arbanats ,ARBANATS ,33640,33007,72,44.666667,-0.4,1.8
+ Arbis ,ARBIS ,33760,33008,72,44.666667,-0.25,1.39
+ Arcachon ,ARCACHON ,33120,33009,72,44.65889,-1.16355,-1
+ Arcins ,ARCINS ,33460,33010,72,45.066667,-0.716667,1.49
+ Arès ,ARES ,33740,33011,72,44.7671,-1.1394,-1
+ Arsac ,ARSAC ,33460,33012,72,45,-0.683333,1.35
+ Artigues-près-Bordeaux ,ARTIGUES PRES BORDEAUX ,33370,33013,72,44.85,-0.516667,1.82
+ Les Artigues-de-Lussac ,LES ARTIGUES DE LUSSAC,33570,33014,72,44.966667,-0.15,1.48
+ Arveyres ,ARVEYRES ,33500,33015,72,44.883333,-0.283333,1.94
+ Asques ,ASQUES ,33240,33016,72,44.95,-0.416667,1.07
+ Aubiac ,AUBIAC ,33430,33017,72,44.483333,-0.25,1.66
+ Aubie-et-Espessas ,AUBIE ET ESPESSAS ,33240,33018,72,45.016667,-0.4,1.03
+ Audenge ,AUDENGE ,33980,33019,72,44.683333,-1,2.66
+ Auriolles ,AURIOLLES ,33790,33020,72,44.733333,0.05,1.67
+ Auros ,AUROS ,33124,33021,72,44.5,-0.15,1.58
+ Avensan ,AVENSAN ,33480,33022,72,45.033333,-0.75,1.63
+ Ayguemorte-les-Graves ,AYGUEMORTE LES GRAVES ,33640,33023,72,44.7,-0.483333,1.2
+ Bagas ,BAGAS ,33190,33024,72,44.616667,-0.05,1.26
+ Baigneaux ,BAIGNEAUX ,33760,33025,72,44.716667,-0.183333,0.71
+ Balizac ,BALIZAC ,33730,33026,72,44.483333,-0.433333,1.66
+ Barie ,BARIE ,33190,33027,72,44.566667,-0.116667,1.4
+ Baron ,BARON ,33750,33028,72,44.816667,-0.316667,0.55
+ Le Barp ,LE BARP ,33114,33029,72,44.616667,-0.766667,1.7
+ Barsac ,BARSAC ,33720,33030,72,44.616667,-0.316667,1.17
+ Bassanne ,BASSANNE ,33190,33031,72,44.55,-0.1,1.33
+ Bassens ,BASSENS ,33530,33032,72,44.9,-0.516667,0.67
+ Baurech ,BAURECH ,33880,33033,72,44.716667,-0.45,1.5
+ Bayas ,BAYAS ,33230,33034,72,45.066667,-0.2,1.28
+ Bazas ,BAZAS ,33430,33036,72,44.433333,-0.216667,1.91
+ Beautiran ,BEAUTIRAN ,33640,33037,72,44.7,-0.45,0.57
+ Bégadan ,BEGADAN ,33340,33038,72,45.35,-0.9,2.71
+ Bègles ,BEGLES ,33130,33039,72,44.8,-0.533333,0.74
+ Béguey ,BEGUEY ,33410,33040,72,44.633333,-0.333333,1.01
+ Béliet ,BELIET ,33830,33041,72,44.516667,-0.783333,1.77
+ Bellebat ,BELLEBAT ,33760,33043,72,44.733333,-0.216667,0.57
+ Bellefond ,BELLEFOND ,33760,33044,72,44.766667,-0.183333,1.2
+ Belvès-de-Castillon ,BELVES DE CASTILLON ,33350,33045,72,44.866667,-0.016667,1.39
+ Berson ,BERSON ,33390,33047,72,45.116667,-0.583333,1.65
+ Berthez ,BERTHEZ ,33124,33048,72,44.483333,-0.133333,1.66
+ Beychac-et-Caillau ,BEYCHAC ET CAILLAU ,33750,33049,72,44.883333,-0.4,2.25
+ Bieujac ,BIEUJAC ,33210,33050,72,44.55,-0.166667,1.33
+ Biganos ,BIGANOS ,33380,33051,72,44.65,-0.983333,2.59
+ Les Billaux ,LES BILLAUX ,33500,33052,72,44.95,-0.233333,0.77
+ Birac ,BIRAC ,33430,33053,72,44.416667,-0.133333,2
+ Blaignac ,BLAIGNAC ,33190,33054,72,44.55,-0.05,1.33
+ Blaignan ,BLAIGNAN ,33340,33055,72,45.316667,-0.883333,2.54
+ Blanquefort ,BLANQUEFORT ,33290,33056,72,44.916667,-0.633333,1.34
+ Blasimon ,BLASIMON ,33540,33057,72,44.75,-0.066667,1.19
+ Blésignac ,BLESIGNAC ,33670,33059,72,44.766667,-0.25,1.75
+ Bommes ,BOMMES ,33210,33060,72,44.533333,-0.366667,1.65
+ Bonnetan ,BONNETAN ,33370,33061,72,44.816667,-0.416667,0.84
+ Bonzac ,BONZAC ,33910,33062,72,45,-0.216667,0.94
+ Bordeaux ,BORDEAUX ,33300,33063,72,44.833333,-0.566667,0.87
+ Bossugan ,BOSSUGAN ,33350,33064,72,44.783333,-0.05,1.26
+ Bouliac ,BOULIAC ,33270,33065,72,44.816667,-0.516667,1
+ Bourdelles ,BOURDELLES ,33190,33066,72,44.55, ,1.46
+ Bourideys ,BOURIDEYS ,33113,33068,72,44.383333,-0.45,2.17
+ Le Bouscat ,LE BOUSCAT ,33110,33069,72,44.866667,-0.616667,1.08
+ Brach ,BRACH ,33480,33070,72,45.05,-0.933333,2.38
+ Branne ,BRANNE ,33420,33071,72,44.833333,-0.183333,0.71
+ Brannens ,BRANNENS ,33124,33072,72,44.533333,-0.166667,1.41
+ Braud-et-Saint-Louis ,BRAUD ET SAINT LOUIS,33820,33073,72,45.25,-0.616667,2.21
+ Brouqueyran ,BROUQUEYRAN ,33124,33074,72,44.483333,-0.183333,1.66
+ Bruges ,BRUGES ,33520,33075,72,44.883333,-0.616667,1.08
+ Budos ,BUDOS ,33720,33076,72,44.533333,-0.383333,1.41
+ Cabanac-et-Villagrains ,CABANAC ET VILLAGRAINS ,33650,33077,72,44.6,-0.55,1.35
+ Cabara ,CABARA ,33420,33078,72,44.816667,-0.166667,0.77
+ Cadarsac ,CADARSAC ,33750,33079,72,44.85,-0.283333,1.04
+ Cadaujac ,CADAUJAC ,33140,33080,72,44.75,-0.533333,1.5
+ Cadillac ,CADILLAC ,33410,33081,72,44.633333,-0.316667,0.91
+ Cadillac-en-Fronsadais ,CADILLAC EN FRONSADAIS ,33240,33082,72,44.966667,-0.366667,0.86
+ Camarsac ,CAMARSAC ,33750,33083,72,44.833333,-0.366667,1.1
+ Cambes ,CAMBES ,33880,33084,72,44.733333,-0.45,0.4
+ Camblanes-et-Meynac ,CAMBLANES ET MEYNAC ,33360,33085,72,44.766667,-0.5,0.96
+ Camiac-et-Saint-Denis ,CAMIAC ET SAINT DENIS,33420,33086,72,44.8,-0.266667,1.5
+ Camiran ,CAMIRAN ,33190,33087,72,44.616667,-0.066667,1.19
+ Campugnan ,CAMPUGNAN ,33390,33089,72,45.183333,-0.566667,1.87
+ Cantenac ,CANTENAC ,33460,33091,72,45.033333,-0.65,1.22
+ Cantois ,CANTOIS ,33760,33092,72,44.683333,-0.233333,0.89
+ Capian ,CAPIAN ,33550,33093,72,44.7,-0.333333,1.38
+ Caplong ,CAPLONG ,33220,33094,72,44.783333,0.15,2.08
+ Captieux ,CAPTIEUX ,33840,33095,72,44.283333,-0.25,2.67
+ Carbon-Blanc ,CARBON BLANC ,33560,33096,72,44.883333,-0.5,1
+ Carcans ,CARCANS ,33121,33097,72,45.083333,-1.05,2.87
+ Cardan ,CARDAN ,33410,33098,72,44.683333,-0.333333,1.5
+ Cars ,CARS ,33390,33100,72,45.133333,-0.616667,1.62
+ Cartelègue ,CARTELEGUE ,33390,33101,72,45.183333,-0.583333,1.87
+ Casseuil ,CASSEUIL ,33190,33102,72,44.583333,-0.116667,1.41
+ Castelmoron-d'Albret ,CASTELMORON D ALBRET ,33540,33103,72,44.666667,-0.016667,1.39
+ Castelnau-de-Médoc ,CASTELNAU DE MEDOC ,33480,33104,72,45.033333,-0.8,1.84
+ Castelviel ,CASTELVIEL ,33540,33105,72,44.666667,-0.166667,1.22
+ Castets-en-Dorthe ,CASTETS EN DORTHE ,33210,33106,72,44.566667,-0.15,1.52
+ Castillon-de-Castets ,CASTILLON DE CASTETS ,33210,33107,72,44.55,-0.116667,1.96
+ Castillon-la-Bataille ,CASTILLON LA BATAILLE ,33350,33108,72,44.85,-0.033333,1.32
+ Castres-Gironde ,CASTRES GIRONDE ,33640,33109,72,44.683333,-0.45,0.65
+ Caudrot ,CAUDROT ,33490,33111,72,44.566667,-0.15,1.39
+ Caumont ,CAUMONT ,33540,33112,72,44.683333, ,1.46
+ Cauvignac ,CAUVIGNAC ,33690,33113,72,44.416667,-0.066667,2
+ Cavignac ,CAVIGNAC ,33620,33114,72,45.1,-0.383333,1.45
+ Cazats ,CAZATS ,33430,33116,72,44.483333,-0.216667,1.66
+ Cazaugitat ,CAZAUGITAT ,33790,33117,72,44.716667,0.016667,1.53
+ Cénac ,CENAC ,33360,33118,72,44.783333,-0.45,0.88
+ Cenon ,CENON ,33150,33119,72,44.85,-0.533333,0.74
+ Cérons ,CERONS ,33720,33120,72,44.633333,-0.333333,1.01
+ Cessac ,CESSAC ,33760,33121,72,44.733333,-0.183333,0.71
+ Cestas ,CESTAS ,33610,33122,72,44.733333,-0.683333,1.35
+ Cézac ,CEZAC ,33620,33123,72,45.1,-0.416667,1.45
+ Chamadelle ,CHAMADELLE ,33230,33124,72,45.1,-0.066667,1.46
+ Cissac-Médoc ,CISSAC MEDOC ,33250,33125,72,45.216667,-0.833333,2.04
+ Civrac-de-Blaye ,CIVRAC DE BLAYE ,33920,33126,72,45.116667,-0.45,1.53
+ Civrac-en-Médoc ,CIVRAC EN MEDOC ,33340,33128,72,45.333333,-0.9,2.63
+ Cleyrac ,CLEYRAC ,33540,33129,72,44.716667,-0.033333,1.32
+ Coimères ,COIMERES ,33210,33130,72,44.5,-0.216667,1.58
+ Coirac ,COIRAC ,33540,33131,72,44.683333,-0.166667,1.21
+ Comps ,COMPS ,33710,33132,72,45.066667,-0.583333,1.28
+ Coubeyrac ,COUBEYRAC ,33890,33133,72,44.783333,0.066667,1.74
+ Couquèques ,COUQUEQUES ,33340,33134,72,45.35,-0.85,2.71
+ Courpiac ,COURPIAC ,33760,33135,72,44.75,-0.183333,0.91
+ Cours-de-Monségur ,COURS DE MONSEGUR ,33580,33136,72,44.65,0.133333,2.01
+ Cours-les-Bains ,COURS LES BAINS ,33690,33137,72,44.383333,-0.016667,2.17
+ Coutras ,COUTRAS ,33230,33138,72,45.033333,-0.133333,1.11
+ Créon ,CREON ,33670,33140,72,44.783333,-0.35,0.15
+ Croignon ,CROIGNON ,33750,33141,72,44.816667,-0.333333,0.58
+ Cubnezais ,CUBNEZAIS ,33620,33142,72,45.075,-0.408333,-1
+ Cubzac-les-Ponts ,CUBZAC LES PONTS ,33240,33143,72,44.966667,-0.45,1.26
+ Cudos ,CUDOS ,33430,33144,72,44.383333,-0.216667,2.17
+ Cursan ,CURSAN ,33670,33145,72,44.8,-0.316667,0.67
+ Daignac ,DAIGNAC ,33420,33147,72,44.8,-0.25,1.14
+ Dardenac ,DARDENAC ,33420,33148,72,44.783333,-0.233333,0.92
+ Daubèze ,DAUBEZE ,33540,33149,72,44.7,-0.15,1.01
+ Dieulivol ,DIEULIVOL ,33580,33150,72,44.666667,0.116667,1.94
+ Donnezac ,DONNEZAC ,33860,33151,72,45.25,-0.45,2.21
+ Donzac ,DONZAC ,33410,33152,72,44.65,-0.266667,0.82
+ Doulezon ,DOULEZON ,33350,33153,72,44.783333, ,1.46
+ Escaudes ,ESCAUDES ,33840,33155,72,44.3,-0.2,2.59
+ Escoussans ,ESCOUSSANS ,33760,33156,72,44.683333,-0.266667,1.41
+ Espiet ,ESPIET ,33420,33157,72,44.8,-0.266667,1.5
+ Les Esseintes ,LES ESSEINTES ,33190,33158,72,44.6,-0.066667,1.19
+ Étauliers ,ETAULIERS ,33820,33159,72,45.216667,-0.566667,2.04
+ Eynesse ,EYNESSE ,33220,33160,72,44.816667,0.15,2.08
+ Eyrans ,EYRANS ,33390,33161,72,45.183333,-0.616667,1.87
+ Eysines ,EYSINES ,33320,33162,72,44.883333,-0.65,1.22
+ Faleyras ,FALEYRAS ,33760,33163,72,44.766667,-0.216667,1.05
+ Fargues ,FARGUES ,33210,33164,72,44.533333,-0.275,1.41
+ Fargues-Saint-Hilaire ,FARGUES SAINT HILAIRE ,33370,33165,72,44.816667,-0.45,0.54
+ Floirac ,FLOIRAC ,33270,33167,72,44.833333,-0.533333,1
+ Flaujagues ,FLAUJAGUES ,33350,33168,72,44.833333,0.05,1.67
+ Floudès ,FLOUDES ,33190,33169,72,44.566667,-0.066667,1.24
+ Fontet ,FONTET ,33190,33170,72,44.55,-0.033333,1.33
+ Fossés-et-Baleyssac ,FOSSES ET BALEYSSAC ,33190,33171,72,44.583333,0.05,1.81
+ Fours ,FOURS ,33390,33172,72,45.166667,-0.633333,1.79
+ Francs ,FRANCS ,33570,33173,72,44.95, ,1.59
+ Fronsac ,FRONSAC ,33126,33174,72,44.916667,-0.266667,1.71
+ Frontenac ,FRONTENAC ,33760,33175,72,44.75,-0.15,1.49
+ Gabarnac ,GABARNAC ,33410,33176,72,44.616667,-0.283333,0.99
+ Gaillan-en-Médoc ,GAILLAN EN MEDOC ,33340,33177,72,45.316667,-0.95,2.54
+ Gajac ,GAJAC ,33430,33178,72,44.433333,-0.133333,1.91
+ Gans ,GANS ,33430,33180,72,44.45,-0.15,1.83
+ Gardegan-et-Tourtirac ,GARDEGAN ET TOURTIRAC ,33350,33181,72,44.9,-0.016667,1.39
+ Gauriac ,GAURIAC ,33710,33182,72,45.066667,-0.616667,1.88
+ Gauriaguet ,GAURIAGUET ,33240,33183,72,45.033333,-0.4,1.11
+ Générac ,GENERAC ,33920,33184,72,45.183333,-0.55,1.87
+ Génissac ,GENISSAC ,33420,33185,72,44.85,-0.25,1.48
+ Gensac ,GENSAC ,33890,33186,72,44.8,0.083333,1.81
+ Giscos ,GISCOS ,33840,33188,72,44.283333,-0.166667,2.67
+ Gornac ,GORNAC ,33540,33189,72,44.666667,-0.183333,1.48
+ Goualade ,GOUALADE ,33840,33190,72,44.3,-0.15,2.59
+ Gours ,GOURS ,33660,33191,72,45,0.033333,1.6
+ Gradignan ,GRADIGNAN ,33170,33192,72,44.766667,-0.616667,1.08
+ Grayan-et-l'Hôpital ,GRAYAN ET L HOPITAL,33590,33193,72,45.441667,-1.083333,-1
+ Grézillac ,GREZILLAC ,33420,33194,72,44.816667,-0.216667,0.57
+ Grignols ,GRIGNOLS ,33690,33195,72,44.391667,-0.041667,-1
+ Guillac ,GUILLAC ,33420,33196,72,44.8,-0.2,0.64
+ Guillos ,GUILLOS ,33720,33197,72,44.55,-0.516667,2.18
+ Guîtres ,GUITRES ,33230,33198,72,45.033333,-0.183333,1.11
+ Gujan-Mestras ,GUJAN MESTRAS ,33470,33199,72,44.633333,-1.066667,2.93
+ Le Haillan ,LE HAILLAN ,33185,33200,72,44.866667,-0.683333,1.35
+ Haux ,HAUX ,33550,33201,72,44.733333,-0.383333,1.07
+ Hostens ,HOSTENS ,33125,33202,72,44.5,-0.633333,1.58
+ Hourtin ,HOURTIN ,33990,33203,72,45.2,-1.066667,2.93
+ Hure ,HURE ,33190,33204,72,44.55,0.016667,1.53
+ Illats ,ILLATS ,33720,33205,72,44.6,-0.366667,1.07
+ Isle-Saint-Georges ,ISLE SAINT GEORGES ,33640,33206,72,44.716667,-0.483333,1.39
+ Izon ,IZON ,33450,33207,72,44.916667,-0.366667,1.45
+ Jau-Dignac-et-Loirac ,JAU DIGNAC ET LOIRAC,33590,33208,72,45.40757,-0.95581,-1
+ Jugazan ,JUGAZAN ,33420,33209,72,44.783333,-0.166667,0.81
+ Labarde ,LABARDE ,33460,33211,72,45.016667,-0.633333,1.15
+ Labescau ,LABESCAU ,33690,33212,72,44.45,-0.083333,1.83
+ Lacanau ,LACANAU ,33680,33214,72,44.983333,-1.079,-1
+ Ladaux ,LADAUX ,33760,33215,72,44.7,-0.233333,0.62
+ Lados ,LADOS ,33124,33216,72,44.466667,-0.15,1.75
+ Lafosse ,LAFOSSE ,33710,33217,72,45.1,-0.5,1.45
+ Lagorce ,LAGORCE ,33230,33218,72,45.066667,-0.133333,1.28
+ La Lande-de-Fronsac ,LA LANDE DE FRONSAC,33240,33219,72,44.983333,-0.383333,0.86
+ Lamarque ,LAMARQUE ,33460,33220,72,45.1,-0.7,1.7
+ Lamothe-Landerron ,LAMOTHE LANDERRON ,33190,33221,72,44.55,0.066667,2.17
+ Landerrouat ,LANDERROUAT ,33790,33223,72,44.74196,0.15898,-1
+ Landiras ,LANDIRAS ,33720,33225,72,44.566667,-0.416667,1.24
+ Langoiran ,LANGOIRAN ,33550,33226,72,44.7,-0.383333,0.57
+ Langon ,LANGON ,33210,33227,72,44.55,-0.25,1.33
+ Lansac ,LANSAC ,33710,33228,72,45.066667,-0.533333,1.28
+ Lanton ,LANTON ,33138,33229,72,44.7,-1.033333,2.8
+ Lapouyade ,LAPOUYADE ,33620,33230,72,45.083333,-0.283333,1.61
+ Laroque ,LAROQUE ,33410,33231,72,44.65,-0.3,0.82
+ Lartigue ,LARTIGUE ,33840,33232,72,44.25,-0.1,2.84
+ Laruscade ,LARUSCADE ,33620,33233,72,45.116667,-0.333333,1.53
+ Latresne ,LATRESNE ,33360,33234,72,44.783333,-0.483333,0.53
+ Lavazan ,LAVAZAN ,33690,33235,72,44.383333,-0.1,2.17
+ Léogeats ,LEOGEATS ,33210,33237,72,44.516667,-0.366667,1.68
+ Léognan ,LEOGNAN ,33850,33238,72,44.733333,-0.6,1.01
+ Lerm-et-Musset ,LERM ET MUSSET ,33840,33239,72,44.333333,-0.15,2.42
+ Lesparre-Médoc ,LESPARRE MEDOC ,33340,33240,72,45.3,-0.933333,2.46
+ Lestiac-sur-Garonne ,LESTIAC SUR GARONNE ,33550,33241,72,44.683333,-0.383333,0.68
+ Libourne ,LIBOURNE ,33500,33243,72,44.916667,-0.233333,0.52
+ Lignan-de-Bazas ,LIGNAN DE BAZAS ,33430,33244,72,44.433333,-0.283333,1.91
+ Lignan-de-Bordeaux ,LIGNAN DE BORDEAUX ,33360,33245,72,44.783333,-0.433333,1.43
+ Listrac-de-Durèze ,LISTRAC DE DUREZE ,33790,33247,72,44.766667,0.05,1.67
+ Listrac-Médoc ,LISTRAC MEDOC ,33480,33248,72,45.083333,-0.8,1.84
+ Lormont ,LORMONT ,33310,33249,72,44.866667,-0.533333,0.74
+ Loubens ,LOUBENS ,33190,33250,72,44.616667,-0.033333,1.32
+ Louchats ,LOUCHATS ,33125,33251,72,44.516667,-0.583333,1.49
+ Loupes ,LOUPES ,33370,33252,72,44.8,-0.4,1.42
+ Loupiac-de-la-Réole ,LOUPIAC DE LA REOLE,33190,33254,72,44.55,-0.05,1.33
+ Lucmau ,LUCMAU ,33840,33255,72,44.341667,-0.308333,-1
+ Ludon-Médoc ,LUDON MEDOC ,33290,33256,72,44.983333,-0.6,1.01
+ Lugaignac ,LUGAIGNAC ,33420,33257,72,44.816667,-0.183333,0.71
+ Lugasson ,LUGASSON ,33760,33258,72,44.75,-0.166667,1.18
+ Lugos ,LUGOS ,33830,33260,72,44.483333,-0.883333,2.18
+ Lussac ,LUSSAC ,33570,33261,72,44.95,-0.1,1.05
+ Macau ,MACAU ,33460,33262,72,45.016667,-0.616667,1.48
+ Madirac ,MADIRAC ,33670,33263,72,44.766667,-0.416667,1.3
+ Maransin ,MARANSIN ,33230,33264,72,45.083333,-0.266667,2.16
+ Marcenais ,MARCENAIS ,33620,33266,72,45.066667,-0.333333,1.28
+ Marcillac ,MARCILLAC ,33860,33267,72,45.266667,-0.516667,2.29
+ Margaux ,MARGAUX ,33460,33268,72,45.05,-0.666667,1.29
+ Margueron ,MARGUERON ,33220,33269,72,44.766667,0.25,2.49
+ Marimbault ,MARIMBAULT ,33430,33270,72,44.4,-0.266667,2.08
+ Marions ,MARIONS ,33690,33271,72,44.366667,-0.083333,2.25
+ Marsas ,MARSAS ,33620,33272,72,45.066667,-0.383333,1.28
+ Martignas-sur-Jalle ,MARTIGNAS SUR JALLE ,33127,33273,72,44.833333,-0.766667,1.7
+ Martillac ,MARTILLAC ,33650,33274,72,44.7,-0.516667,0.78
+ Martres ,MARTRES ,33760,33275,72,44.7,-0.183333,0.72
+ Masseilles ,MASSEILLES ,33690,33276,72,44.4,-0.05,2.08
+ Massugas ,MASSUGAS ,33790,33277,72,44.766667,0.1,1.87
+ Mauriac ,MAURIAC ,33540,33278,72,44.75,-0.033333,1.39
+ Mazères ,MAZERES ,33210,33279,72,44.5,-0.266667,1.58
+ Mazion ,MAZION ,33390,33280,72,45.166667,-0.616667,1.79
+ Mérignac ,MERIGNAC ,33700,33281,72,44.833333,-0.633333,1.15
+ Mérignas ,MERIGNAS ,33350,33282,72,44.783333,-0.083333,1.27
+ Mesterrieux ,MESTERRIEUX ,33540,33283,72,44.633333,-0.016667,1.39
+ Mios ,MIOS ,33380,33284,72,44.6,-0.933333,2.38
+ Mombrier ,MOMBRIER ,33710,33285,72,45.066667,-0.533333,1.28
+ Monbadon ,MONBADON ,33570,33286,72,44.933333,-0.05,1.26
+ Mongauzy ,MONGAUZY ,33190,33287,72,44.566667,0.033333,1.6
+ Monprimblanc ,MONPRIMBLANC ,33410,33288,72,44.616667,-0.266667,0.99
+ Montagne ,MONTAGNE ,33570,33290,72,44.933333,-0.133333,1.08
+ Montagoudin ,MONTAGOUDIN ,33190,33291,72,44.566667, ,1.46
+ Montignac ,MONTIGNAC ,33760,33292,72,44.7,-0.216667,0.57
+ Montussan ,MONTUSSAN ,33450,33293,72,44.883333,-0.416667,1.05
+ Morizès ,MORIZES ,33190,33294,72,44.6,-0.083333,1.12
+ Mouillac ,MOUILLAC ,33240,33295,72,45.016667,-0.35,1.03
+ Mouliets-et-Villemartin ,MOULIETS ET VILLEMARTIN ,33350,33296,72,44.833333,-0.016667,1.39
+ Moulis-en-Médoc ,MOULIS EN MEDOC ,33480,33297,72,45.066667,-0.766667,1.7
+ Mourens ,MOURENS ,33410,33299,72,44.65,-0.2,2.29
+ Naujac-sur-Mer ,NAUJAC SUR MER ,33990,33300,72,45.25,-1.033333,2.8
+ Naujan-et-Postiac ,NAUJAN ET POSTIAC ,33420,33301,72,44.783333,-0.183333,0.71
+ Néac ,NEAC ,33500,33302,72,44.933333,-0.183333,1.24
+ Nérigean ,NERIGEAN ,33750,33303,72,44.833333,-0.283333,1
+ Neuffons ,NEUFFONS ,33580,33304,72,44.65,0.016667,1.53
+ Le Nizan ,LE NIZAN ,33430,33305,72,44.483333,-0.266667,1.66
+ Noaillac ,NOAILLAC ,33190,33306,72,44.516667, ,1.49
+ Noaillan ,NOAILLAN ,33730,33307,72,44.483333,-0.366667,1.66
+ Omet ,OMET ,33410,33308,72,44.65,-0.283333,0.82
+ Ordonnac ,ORDONNAC ,33340,33309,72,45.3,-0.833333,2.46
+ Origne ,ORIGNE ,33113,33310,72,44.5,-0.516667,1.9
+ Paillet ,PAILLET ,33550,33311,72,44.683333,-0.366667,0.68
+ Parempuyre ,PAREMPUYRE ,33290,33312,72,44.95,-0.583333,0.94
+ Parsac ,PARSAC ,33570,33313,72,44.9,-0.133333,1.36
+ Pauillac ,PAUILLAC ,33250,33314,72,45.2,-0.75,1.95
+ Les Peintures ,LES PEINTURES ,33230,33315,72,45.066667,-0.1,1.28
+ Pellegrue ,PELLEGRUE ,33790,33316,72,44.75,0.083333,1.81
+ Périssac ,PERISSAC ,33240,33317,72,45.016667,-0.316667,1.59
+ Pessac ,PESSAC ,33600,33318,72,44.8,-0.616667,1.08
+ Pessac-sur-Dordogne ,PESSAC SUR DORDOGNE ,33890,33319,72,44.816667,0.083333,1.81
+ Petit-Palais-et-Cornemps ,PETIT PALAIS ET CORNEMPS,33570,33320,72,44.983333,-0.066667,1.19
+ Peujard ,PEUJARD ,33240,33321,72,45.033333,-0.45,1.27
+ Le Pian-Médoc ,LE PIAN MEDOC ,33290,33322,72,44.966667,-0.633333,1.15
+ Le Pian-sur-Garonne ,LE PIAN SUR GARONNE,33490,33323,72,44.583333,-0.216667,1.16
+ Pineuilh ,PINEUILH ,33220,33324,72,44.816667,0.216667,2.35
+ Plassac ,PLASSAC ,33390,33325,72,45.1,-0.65,1.99
+ Podensac ,PODENSAC ,33720,33327,72,44.65,-0.35,0.98
+ Pomerol ,POMEROL ,33500,33328,72,44.933333,-0.2,0.79
+ Pompéjac ,POMPEJAC ,33730,33329,72,44.4,-0.266667,2.08
+ Pompignac ,POMPIGNAC ,33370,33330,72,44.85,-0.433333,0.4
+ Pondaurat ,PONDAURAT ,33190,33331,72,44.55,-0.083333,1.33
+ Porchères ,PORCHERES ,33660,33332,72,45.033333,0.016667,1.53
+ Le Porge ,LE PORGE ,33680,33333,72,44.866667,-1.091,-1
+ Portets ,PORTETS ,33640,33334,72,44.7,-0.416667,1.02
+ Le Pout ,LE POUT ,33670,33335,72,44.8,-0.366667,0.56
+ Préchac ,PRECHAC ,33730,33336,72,44.4,-0.35,2.08
+ Preignac ,PREIGNAC ,33210,33337,72,44.583333,-0.3,1.16
+ Prignac-en-Médoc ,PRIGNAC EN MEDOC ,33340,33338,72,45.333333,-0.916667,2.63
+ Pugnac ,PUGNAC ,33710,33341,72,45.083333,-0.483333,1.68
+ Puisséguin ,PUISSEGUIN ,33570,33342,72,44.933333,-0.066667,1.19
+ Pujols-sur-Ciron ,PUJOLS SUR CIRON ,33210,33343,72,44.566667,-0.35,1.46
+ Pujols ,PUJOLS ,33350,33344,72,44.8,-0.033333,1.32
+ Puybarban ,PUYBARBAN ,33190,33346,72,44.55,-0.066667,1.33
+ Puynormand ,PUYNORMAND ,33660,33347,72,44.983333, ,1.46
+ Queyrac ,QUEYRAC ,33340,33348,72,45.366667,-0.983333,2.79
+ Quinsac ,QUINSAC ,33360,33349,72,44.75,-0.5,1.23
+ Rauzan ,RAUZAN ,33420,33350,72,44.783333,-0.116667,1.79
+ Reignac ,REIGNAC ,33860,33351,72,45.233333,-0.5,2.12
+ La Réole ,LA REOLE ,33190,33352,72,44.583333,-0.033333,1.32
+ Rimons ,RIMONS ,33580,33353,72,44.666667,0.016667,1.53
+ Riocaud ,RIOCAUD ,33220,33354,72,44.766667,0.2,2.29
+ Rions ,RIONS ,33410,33355,72,44.65,-0.35,1.44
+ La Rivière ,LA RIVIERE ,33126,33356,72,44.933333,-0.316667,0.76
+ Roaillan ,ROAILLAN ,33210,33357,72,44.5,-0.283333,1.58
+ Romagne ,ROMAGNE ,33760,33358,72,44.766667,-0.183333,1.2
+ Roquebrune ,ROQUEBRUNE ,33580,33359,72,44.616667,0.033333,1.6
+ La Roquille ,LA ROQUILLE ,33220,33360,72,44.783333,0.233333,2.42
+ Ruch ,RUCH ,33350,33361,72,44.766667,-0.033333,1.32
+ Sablons ,SABLONS ,33910,33362,72,45.033333,-0.183333,1.29
+ Sadirac ,SADIRAC ,33670,33363,72,44.783333,-0.416667,1.29
+ Saillans ,SAILLANS ,33141,33364,72,44.966667,-0.266667,1
+ Saint-Aignan ,SAINT AIGNAN ,33126,33365,72,44.95,-0.3,0.76
+ Saint-André-de-Cubzac ,SAINT ANDRE DE CUBZAC,33240,33366,72,44.991667,-0.441667,0.93
+ Saint-André-du-Bois ,SAINT ANDRE DU BOIS,33490,33367,72,44.6,-0.2,1.07
+ Saint-André-et-Appelles ,SAINT ANDRE ET APPELLES,33220,33369,72,44.8,0.2,2.29
+ Saint-Androny ,SAINT ANDRONY ,33390,33370,72,45.183333,-0.65,1.87
+ Saint-Antoine ,SAINT ANTOINE ,33240,33371,72,45.016667,-0.416667,1.03
+ Saint-Antoine-du-Queyret ,SAINT ANTOINE DU QUEYRET,33790,33372,72,44.766667,0.016667,1.53
+ Saint-Antoine-sur-l'Isle ,SAINT ANTOINE SUR L,33660,33373,72,45.033333,0.05,1.67
+ Saint-Aubin-de-Blaye ,SAINT AUBIN DE BLAYE,33820,33374,72,45.266667,-0.566667,2.29
+ Saint-Aubin-de-Branne ,SAINT AUBIN DE BRANNE,33420,33375,72,44.8,-0.166667,0.77
+ Saint-Aubin-de-Médoc ,SAINT AUBIN DE MEDOC,33160,33376,72,44.75,-0.716667,1.49
+ Saint-Avit-de-Soulège ,SAINT AVIT DE SOULEGE,33220,33377,72,44.808333,0.125,-1
+ Saint-Brice ,SAINT BRICE ,33540,33379,72,44.683333,-0.15,0.96
+ Saint-Caprais-de-Blaye ,SAINT CAPRAIS DE BLAYE,33820,33380,72,45.283333,-0.566667,2.37
+ Saint-Caprais-de-Bordeaux ,SAINT CAPRAIS DE BORDEAUX,33880,33381,72,44.75,-0.45,1.5
+ Saint-Christoly-de-Blaye ,SAINT CHRISTOLY DE BLAYE,33920,33382,72,45.133333,-0.483333,1.62
+ Saint-Christoly-Médoc ,SAINT CHRISTOLY MEDOC ,33340,33383,72,45.35,-0.833333,2.71
+ Saint-Christophe-des-Bardes ,SAINT CHRISTOPHE DES BARDES,33330,33384,72,44.883333,-0.1,1.08
+ Saint-Cibard ,SAINT CIBARD ,33570,33386,72,44.933333,-0.016667,1.39
+ Saint-Ciers-d'Abzac ,SAINT CIERS D ABZAC,33910,33387,72,45.033333,-0.266667,1.29
+ Saint-Ciers-de-Canesse ,SAINT CIERS DE CANESSE,33710,33388,72,45.083333,-0.6,1.47
+ Saint-Ciers-sur-Gironde ,SAINT CIERS SUR GIRONDE,33820,33389,72,45.3,-0.616667,2.46
+ Sainte-Croix-du-Mont ,SAINTE CROIX DU MONT,33410,33392,72,44.583333,-0.283333,1.36
+ Saint-Denis-de-Pile ,SAINT DENIS DE PILE,33910,33393,72,45,-0.2,1
+ Saint-Émilion ,SAINT EMILION ,33330,33394,72,44.883333,-0.15,0.84
+ Saint-Étienne-de-Lisse ,SAINT ETIENNE DE LISSE,33330,33396,72,44.883333,-0.1,1.08
+ Sainte-Eulalie ,SAINTE EULALIE ,33560,33397,72,44.916667,-0.483333,1
+ Saint-Exupéry ,SAINT EXUPERY ,33190,33398,72,44.616667,-0.1,1.35
+ Saint-Félix-de-Foncaude ,SAINT FELIX DE FONCAUDE,33540,33399,72,44.65,-0.116667,0.98
+ Saint-Ferme ,SAINT FERME ,33580,33400,72,44.683333,0.066667,1.74
+ Sainte-Florence ,SAINTE FLORENCE ,33350,33401,72,44.8,-0.1,1.3
+ Sainte-Foy-la-Grande ,SAINTE FOY LA GRANDE,33220,33402,72,44.833333,0.216667,2.35
+ Sainte-Foy-la-Longue ,SAINTE FOY LA LONGUE,33490,33403,72,44.6,-0.15,1.34
+ Sainte-Gemme ,SAINTE GEMME ,33580,33404,72,44.616667,0.083333,1.81
+ Saint-Genès-de-Blaye ,SAINT GENES DE BLAYE,33390,33405,72,45.166667,-0.633333,1.79
+ Saint-Genès-de-Castillon ,SAINT GENES DE CASTILLON,33350,33406,72,44.9,-0.066667,1.24
+ Saint-Genès-de-Fronsac ,SAINT GENES DE FRONSAC,33240,33407,72,45.033333,-0.366667,1.11
+ Saint-Genès-de-Lombaud ,SAINT GENES DE LOMBAUD,33670,33408,72,44.75,-0.383333,0.84
+ Saint-Genis-du-Bois ,SAINT GENIS DU BOIS,33760,33409,72,44.7,-0.183333,0.72
+ Saint-Germain-d'Esteuil ,SAINT GERMAIN D ESTEUIL,33340,33412,72,45.283333,-0.866667,2.37
+ Saint-Germain-du-Puch ,SAINT GERMAIN DU PUCH,33750,33413,72,44.85,-0.316667,0.35
+ Saint-Germain-de-la-Rivière ,SAINT GERMAIN DE LA,33240,33414,72,44.95,-0.333333,1.57
+ Saint-Gervais ,SAINT GERVAIS ,33240,33415,72,45.016667,-0.45,1.13
+ Saint-Girons-d'Aiguevives ,SAINT GIRONS D AIGUEVIVES,33920,33416,72,45.15,-0.533333,1.7
+ Sainte-Hélène ,SAINTE HELENE ,33480,33417,72,44.966667,-0.883333,2.18
+ Saint-Hilaire-du-Bois ,SAINT HILAIRE DU BOIS,33540,33419,72,44.65,-0.083333,1.12
+ Saint-Hippolyte ,SAINT HIPPOLYTE ,33330,33420,72,44.883333,-0.1,1.08
+ Saint-Jean-de-Blaignac ,SAINT JEAN DE BLAIGNAC,33420,33421,72,44.816667,-0.133333,1.39
+ Saint-Jean-d'Illac ,SAINT JEAN D ILLAC,33127,33422,72,44.816667,-0.783333,1.77
+ Saint-Laurent-d'Arce ,SAINT LAURENT D ARCE,33240,33425,72,45.033333,-0.466667,1.56
+ Saint-Laurent-des-Combes ,SAINT LAURENT DES COMBES,33330,33426,72,44.883333,-0.133333,0.91
+ Saint-Laurent-du-Bois ,SAINT LAURENT DU BOIS,33540,33427,72,44.633333,-0.133333,0.98
+ Saint-Laurent-du-Plan ,SAINT LAURENT DU PLAN,33190,33428,72,44.616667,-0.116667,1.62
+ Saint-Léger-de-Balson ,SAINT LEGER DE BALSON,33113,33429,72,44.433333,-0.466667,1.91
+ Saint-Léon ,SAINT LEON ,33670,33431,72,44.766667,-0.266667,1.45
+ Saint-Loubert ,SAINT LOUBERT ,33210,33432,72,44.55,-0.183333,1.33
+ Saint-Loubès ,SAINT LOUBES ,33450,33433,72,44.916667,-0.433333,1.14
+ Saint-Louis-de-Montferrand ,SAINT LOUIS DE MONTFERRAND,33440,33434,72,44.95,-0.533333,1
+ Saint-Macaire ,SAINT MACAIRE ,33490,33435,72,44.566667,-0.216667,1.24
+ Saint-Magne ,SAINT MAGNE ,33125,33436,72,44.533333,-0.666667,1.41
+ Saint-Magne-de-Castillon ,SAINT MAGNE DE CASTILLON,33350,33437,72,44.866667,-0.066667,1.19
+ Saint-Maixant ,SAINT MAIXANT ,33490,33438,72,44.566667,-0.266667,1.71
+ Saint-Mariens ,SAINT MARIENS ,33620,33439,72,45.116667,-0.416667,1.53
+ Saint-Martial ,SAINT MARTIAL ,33490,33440,72,44.616667,-0.183333,0.99
+ Saint-Martin-Lacaussade ,SAINT MARTIN LACAUSSADE ,33390,33441,72,45.15,-0.65,1.7
+ Saint-Martin-de-Laye ,SAINT MARTIN DE LAYE,33910,33442,72,45.033333,-0.216667,1.11
+ Saint-Martin-de-Lerm ,SAINT MARTIN DE LERM,33540,33443,72,44.633333,-0.033333,1.32
+ Saint-Martin-de-Sescas ,SAINT MARTIN DE SESCAS,33490,33444,72,44.566667,-0.166667,1.24
+ Saint-Martin-du-Bois ,SAINT MARTIN DU BOIS,33910,33445,72,45.033333,-0.266667,1.29
+ Saint-Martin-du-Puy ,SAINT MARTIN DU PUY,33540,33446,72,44.666667,-0.033333,1.32
+ Saint-Médard-de-Guizières ,SAINT MEDARD DE GUIZIERES,33230,33447,72,45.016667,-0.05,1.63
+ Saint-Médard-d'Eyrans ,SAINT MEDARD D EYRANS,33650,33448,72,44.716667,-0.516667,1.1
+ Saint-Médard-en-Jalles ,SAINT MEDARD EN JALLES,33160,33449,72,44.9,-0.733333,1.56
+ Saint-Michel-de-Castelnau ,SAINT MICHEL DE CASTELNAU,33840,33450,72,44.283333,-0.116667,2.67
+ Saint-Michel-de-Fronsac ,SAINT MICHEL DE FRONSAC,33126,33451,72,44.933333,-0.316667,0.76
+ Saint-Michel-de-Rieufret ,SAINT MICHEL DE RIEUFRET,33720,33452,72,44.616667,-0.433333,0.99
+ Saint-Morillon ,SAINT MORILLON ,33650,33454,72,44.65,-0.516667,0.82
+ Saint-Pardon-de-Conques ,SAINT PARDON DE CONQUES,33210,33457,72,44.55,-0.183333,1.33
+ Saint-Paul ,SAINT PAUL ,33390,33458,72,45.15,-0.6,1.7
+ Saint-Pey-de-Castets ,SAINT PEY DE CASTETS,33350,33460,72,44.816667,-0.066667,1.19
+ Saint-Philippe-d'Aiguille ,SAINT PHILIPPE D AIGUILLE,33350,33461,72,44.916667,-0.033333,1.44
+ Saint-Philippe-du-Seignal ,SAINT PHILIPPE DU SEIGNAL,33220,33462,72,44.816667,0.233333,2.42
+ Saint-Pierre-d'Aurillac ,SAINT PIERRE D AURILLAC,33490,33463,72,44.566667,-0.183333,1.24
+ Saint-Pierre-de-Bat ,SAINT PIERRE DE BAT,33760,33464,72,44.666667,-0.233333,1.21
+ Saint-Pierre-de-Mons ,SAINT PIERRE DE MONS,33210,33465,72,44.55,-0.216667,1.33
+ Saint-Quentin-de-Baron ,SAINT QUENTIN DE BARON,33750,33466,72,44.816667,-0.283333,1.12
+ Saint-Quentin-de-Caplong ,SAINT QUENTIN DE CAPLONG,33220,33467,72,44.783333,0.15,2.08
+ Sainte-Radegonde ,SAINTE RADEGONDE ,33350,33468,72,44.841667,-0.025,-1
+ Saint-Romain-la-Virvée ,SAINT ROMAIN LA VIRVEE,33240,33470,72,44.966667,-0.4,0.78
+ Saint-Sauveur-de-Puynormand ,SAINT SAUVEUR DE PUYNORMAND,33660,33472,72,45,-0.033333,1.52
+ Saint-Selve ,SAINT SELVE ,33650,33474,72,44.666667,-0.483333,0.95
+ Saint-Seurin-de-Bourg ,SAINT SEURIN DE BOURG,33710,33475,72,45.05,-0.566667,1.2
+ Saint-Seurin-de-Cadourne ,SAINT SEURIN DE CADOURNE,33180,33476,72,45.283333,-0.783333,2.37
+ Saint-Seurin-de-Cursac ,SAINT SEURIN DE CURSAC,33390,33477,72,45.15,-0.633333,1.7
+ Saint-Seurin-sur-l'Isle ,SAINT SEURIN SUR L,33660,33478,72,45.016667, ,1.46
+ Saint-Sève ,SAINT SEVE ,33190,33479,72,44.583333,-0.033333,1.32
+ Saint-Sulpice-de-Faleyrens ,SAINT SULPICE DE FALEYRENS,33330,33480,72,44.866667,-0.183333,1.61
+ Saint-Sulpice-de-Pommiers ,SAINT SULPICE DE POMMIERS,33540,33482,72,44.666667,-0.116667,0.98
+ Saint-Sulpice-et-Cameyrac ,SAINT SULPICE ET CAMEYRAC,33450,33483,72,44.916667,-0.4,0.52
+ Saint-Symphorien ,SAINT SYMPHORIEN ,33113,33484,72,44.433333,-0.483333,1.91
+ Sainte-Terre ,SAINTE TERRE ,33350,33485,72,44.833333,-0.116667,1.41
+ Saint-Trojan ,SAINT TROJAN ,33710,33486,72,45.083333,-0.566667,1.37
+ Saint-Vincent-de-Paul ,SAINT VINCENT DE PAUL,33440,33487,72,44.966667,-0.483333,1
+ Saint-Vincent-de-Pertignas ,SAINT VINCENT DE PERTIGNAS,33420,33488,72,44.8,-0.116667,1.73
+ Saint-Vivien-de-Blaye ,SAINT VIVIEN DE BLAYE,33920,33489,72,45.1,-0.5,1.45
+ Saint-Vivien-de-Médoc ,SAINT VIVIEN DE MEDOC,33590,33490,72,45.433333,-1.033333,-1
+ Saint-Vivien-de-Monségur ,SAINT VIVIEN DE MONSEGUR,33580,33491,72,44.616667,0.116667,1.94
+ Saint-Yzan-de-Soudiac ,SAINT YZAN DE SOUDIAC,33920,33492,72,45.133333,-0.416667,1.62
+ Saint-Yzans-de-Médoc ,SAINT YZANS DE MEDOC,33340,33493,72,45.316667,-0.816667,2.54
+ Salaunes ,SALAUNES ,33160,33494,72,44.933333,-0.833333,1.97
+ Salignac ,SALIGNAC ,33240,33495,72,45.016667,-0.366667,1.03
+ Salleboeuf ,SALLEBOEUF ,33370,33496,72,44.833333,-0.4,1.08
+ Les Salles-de-Castillon ,LES SALLES DE CASTILLON,33350,33499,72,44.9, ,1.46
+ Samonac ,SAMONAC ,33710,33500,72,45.066667,-0.55,1.28
+ Saucats ,SAUCATS ,33650,33501,72,44.65,-0.6,1.43
+ Saugon ,SAUGON ,33920,33502,72,45.183333,-0.5,1.87
+ Saumos ,SAUMOS ,33680,33503,72,44.916667,-0.983333,2.59
+ Sauternes ,SAUTERNES ,33210,33504,72,44.533333,-0.333333,1.41
+ Sauveterre-de-Guyenne ,SAUVETERRE DE GUYENNE ,33540,33506,72,44.7,-0.083333,1.12
+ Sauviac ,SAUVIAC ,33430,33507,72,44.4,-0.183333,2.08
+ Semens ,SEMENS ,33490,33510,72,44.633333,-0.233333,1.42
+ Sigalens ,SIGALENS ,33690,33512,72,44.45,-0.05,1.83
+ Sillas ,SILLAS ,33690,33513,72,44.366667,-0.066667,2.25
+ Soulac-sur-Mer ,SOULAC SUR MER ,33780,33514,72,45.508333,-1.116667,-1
+ Soulignac ,SOULIGNAC ,33760,33515,72,44.683333,-0.283333,1.72
+ Soussac ,SOUSSAC ,33790,33516,72,44.733333,0.016667,1.53
+ Soussans ,SOUSSANS ,33460,33517,72,45.05,-0.683333,1.35
+ Tabanac ,TABANAC ,33550,33518,72,44.716667,-0.416667,1.46
+ Le Taillan-Médoc ,LE TAILLAN MEDOC ,33320,33519,72,44.9,-0.666667,1.29
+ Taillecavat ,TAILLECAVAT ,33580,33520,72,44.633333,0.166667,2.15
+ Talais ,TALAIS ,33590,33521,72,45.475,-1.058333,-1
+ Talence ,TALENCE ,33400,33522,72,44.816667,-0.6,1.01
+ Targon ,TARGON ,33760,33523,72,44.733333,-0.266667,1.23
+ Tarnès ,TARNES ,33240,33524,72,44.966667,-0.35,1.11
+ Tauriac ,TAURIAC ,33710,33525,72,45.05,-0.483333,1.76
+ Le Teich ,LE TEICH ,33470,33527,72,44.633333,-1.016667,2.73
+ Le Temple ,LE TEMPLE ,33680,33528,72,44.883333,-0.983333,2.59
+ La Teste-de-Buch ,LA TESTE DE BUCH,33260,33529,72,44.6343,-1.13704,-1
+ Teuillac ,TEUILLAC ,33710,33530,72,45.083333,-0.533333,1.37
+ Tizac-de-Curton ,TIZAC DE CURTON ,33420,33531,72,44.816667,-0.25,1.16
+ Tizac-de-Lapouyade ,TIZAC DE LAPOUYADE ,33620,33532,72,45.066667,-0.3,1.34
+ Toulenne ,TOULENNE ,33210,33533,72,44.55,-0.266667,1.33
+ Le Tourne ,LE TOURNE ,33550,33534,72,44.716667,-0.4,0.95
+ Tresses ,TRESSES ,33370,33535,72,44.85,-0.466667,0.64
+ Le Tuzan ,LE TUZAN ,33125,33536,72,44.45,-0.6,1.83
+ Uzeste ,UZESTE ,33730,33537,72,44.45,-0.316667,1.83
+ Valeyrac ,VALEYRAC ,33340,33538,72,45.4,-0.9,2.96
+ Vayres ,VAYRES ,33870,33539,72,44.9,-0.316667,0.44
+ Vendays-Montalivet ,VENDAYS MONTALIVET ,33930,33540,72,45.358333,-1.058333,-1
+ Vensac ,VENSAC ,33590,33541,72,45.4,-1.041667,-1
+ Vérac ,VERAC ,33240,33542,72,44.983333,-0.333333,1.27
+ Verdelais ,VERDELAIS ,33490,33543,72,44.583333,-0.25,1.22
+ Le Verdon-sur-Mer ,LE VERDON SUR MER,33123,33544,72,45.541667,-1.066667,-1
+ Vignonet ,VIGNONET ,33330,33546,72,44.85,-0.166667,1.34
+ Villandraut ,VILLANDRAUT ,33730,33547,72,44.466667,-0.366667,1.75
+ Villegouge ,VILLEGOUGE ,33141,33548,72,44.966667,-0.3,1
+ Villenave-de-Rions ,VILLENAVE DE RIONS ,33550,33549,72,44.683333,-0.333333,1.51
+ Villenave-d'Ornon ,VILLENAVE D ORNON ,33140,33550,72,44.766667,-0.55,0.8
+ Virelade ,VIRELADE ,33720,33552,72,44.65,-0.383333,0.82
+ Virsac ,VIRSAC ,33240,33553,72,45.033333,-0.45,1.27
+ Yvrac ,YVRAC ,33370,33554,72,44.883333,-0.466667,1.26
+ Marcheprime ,MARCHEPRIME ,33380,33555,72,44.683333,-0.85,2.04
+ Lacanau-Océan ,LACANAU OCEAN ,33680,33901,72,44.982,-1.0804,-1
+ Facture ,FACTURE ,33380,33903,72,44.633333,-0.966667,2.52
+ Pont-de-la-Maye ,PONT DE LA MAYE,33140,33904,72,44.783333,-0.566667,1.5
+ Cazaux ,CAZAUX ,33260,33940,72,44.53674,-1.15327,-1
+ Le Canon ,LE CANON ,33950,33972,72,44.7,-1.233333,-1
+ Abeilhan ,ABEILHAN ,34290,34001,91,43.45,3.3,0.99
+ Adissan ,ADISSAN ,34230,34002,91,43.533333,3.433333,1.85
+ Agde ,AGDE ,34300,34003,91,43.316667,3.466667,1.98
+ Agel ,AGEL ,34210,34004,91,43.333333,2.85,1.87
+ Agonès ,AGONES ,34190,34005,91,43.916667,3.75,2.49
+ Aigne ,AIGNE ,34210,34006,91,43.333333,2.816667,1.97
+Aigues-Vives,VIVES ,34210,34007,91,43.333333,2.816667,1.97
+ Les Aires ,LES AIRES ,34600,34008,91,43.583333,3.116667,1
+ Alignan-du-Vent ,ALIGNAN DU VENT ,34290,34009,91,43.466667,3.35,1.31
+ Aniane ,ANIANE ,34150,34010,91,43.683333,3.583333,0.75
+ Arboras ,ARBORAS ,34150,34011,91,43.716667,3.483333,1.48
+ Argelliers ,ARGELLIERS ,34380,34012,91,43.7,3.683333,1.19
+ Aspiran ,ASPIRAN ,34800,34013,91,43.566667,3.433333,1.05
+ Assas ,ASSAS ,34820,34014,91,43.7,3.883333,1.48
+ Assignan ,ASSIGNAN ,34360,34015,91,43.4,2.883333,1.76
+ Aumes ,AUMES ,34530,34017,91,43.466667,3.466667,1
+ Autignac ,AUTIGNAC ,34480,34018,91,43.5,3.166667,0.92
+ Avène ,AVENE ,34260,34019,91,43.75,3.1,1.25
+ Azillanet ,AZILLANET ,34210,34020,91,43.316667,2.75,2.19
+ Babeau-Bouldoux ,BABEAU BOULDOUX ,34360,34021,91,43.433333,2.9,1.7
+ Baillargues ,BAILLARGUES ,34670,34022,91,43.666667,4.016667,1.91
+ Balaruc-les-Bains ,BALARUC LES BAINS ,34540,34023,91,43.433333,3.666667,1.11
+ Balaruc-le-Vieux ,BALARUC LE VIEUX ,34540,34024,91,43.45,3.683333,1
+ Bassan ,BASSAN ,34290,34025,91,43.4,3.25,1.36
+ Beaufort ,BEAUFORT ,34210,34026,91,43.3,2.766667,2.14
+ Beaulieu ,BEAULIEU ,34160,34027,91,43.733333,4.016667,1.91
+ Bédarieux ,BEDARIEUX ,34600,34028,91,43.616667,3.15,0.9
+ Bélarga ,BELARGA ,34230,34029,91,43.55,3.483333,0.63
+ Berlou ,BERLOU ,34360,34030,91,43.483333,2.95,1.54
+ Bessan ,BESSAN ,34550,34031,91,43.366667,3.416667,1.61
+ Béziers ,BEZIERS ,34500,34032,91,43.35,3.25,1.73
+ Boisseron ,BOISSERON ,34160,34033,91,43.75,4.083333,2.12
+ La Boissière ,LA BOISSIERE ,34150,34035,91,43.666667,3.65,1.88
+ Le Bosc ,LE BOSC ,34700,34036,91,43.716667,3.383333,1
+ Boujan-sur-Libron ,BOUJAN SUR LIBRON ,34760,34037,91,43.366667,3.25,1.61
+ Le Bousquet-d'Orb ,LE BOUSQUET D ORB,34260,34038,91,43.7,3.166667,0.88
+ Bouzigues ,BOUZIGUES ,34140,34039,91,43.45,3.65,1.22
+ Brenas ,BRENAS ,34650,34040,91,43.65,3.25,1.38
+ Brignac ,BRIGNAC ,34800,34041,91,43.616667,3.466667,1.26
+ Brissac ,BRISSAC ,34190,34042,91,43.866667,3.7,2.12
+ Buzignargues ,BUZIGNARGUES ,34160,34043,91,43.766667,4,1.85
+ Cabrerolles ,CABREROLLES ,34480,34044,91,43.533333,3.133333,1.85
+ Cabrières ,CABRIERES ,34800,34045,91,43.583333,3.366667,0.63
+ Cambon-et-Salvergues ,CAMBON ET SALVERGUES ,34330,34046,91,43.616667,2.866667,1.81
+ Campagnan ,CAMPAGNAN ,34230,34047,91,43.533333,3.483333,0.9
+ Campagne ,CAMPAGNE ,34160,34048,91,43.783333,4.033333,1.96
+ Camplong ,CAMPLONG ,34260,34049,91,43.666667,3.133333,0.95
+ Candillargues ,CANDILLARGUES ,34130,34050,91,43.616667,4.066667,2.07
+ Canet ,CANET ,34800,34051,91,43.6,3.5,1.82
+ Capestang ,CAPESTANG ,34310,34052,91,43.333333,3.033333,1.86
+ Carlencas-et-Levas ,CARLENCAS ET LEVAS ,34600,34053,91,43.633333,3.233333,1.65
+ Cassagnoles ,CASSAGNOLES ,34210,34054,91,43.383333,2.616667,-1
+ Castanet-le-Haut ,CASTANET LE HAUT ,34610,34055,91,43.666667,2.966667,1.49
+ Castelnau-de-Guers ,CASTELNAU DE GUERS ,34120,34056,91,43.433333,3.433333,1.11
+ Castelnau-le-Lez ,CASTELNAU LE LEZ ,34170,34057,91,43.633333,3.9,1.53
+ Castries ,CASTRIES ,34160,34058,91,43.666667,3.983333,1.88
+ La Caunette ,LA CAUNETTE ,34210,34059,91,43.35,2.783333,2.08
+ Causse-de-la-Selle ,CAUSSE DE LA SELLE,34380,34060,91,43.8,3.65,1.62
+ Causses-et-Veyran ,CAUSSES ET VEYRAN ,34490,34061,91,43.466667,3.083333,1.28
+ Caussiniojouls ,CAUSSINIOJOULS ,34600,34062,91,43.55,3.15,0.9
+ Caux ,CAUX ,34720,34063,91,43.5,3.366667,0.61
+ Le Caylar ,LE CAYLAR ,34520,34064,91,43.85,3.3,1.99
+ Cazedarnes ,CAZEDARNES ,34460,34065,91,43.416667,3.033333,1.27
+ Cazevieille ,CAZEVIEILLE ,34270,34066,91,43.766667,3.8,1.37
+ Cazilhac ,CAZILHAC ,34190,34067,91,43.925,3.7,-1
+ Cazouls-d'Hérault ,CAZOULS D HERAULT ,34120,34068,91,43.483333,3.466667,1.42
+ Cazouls-lès-Béziers ,CAZOULS LES BEZIERS ,34370,34069,91,43.383333,3.1,1.48
+ Cébazan ,CEBAZAN ,34360,34070,91,43.4,2.983333,1.44
+ Ceilhes-et-Rocozels ,CEILHES ET ROCOZELS ,34260,34071,91,43.8,3.1,1.79
+ Celles ,CELLES ,34800,34072,91,43.666667,3.35,1.09
+ Cers ,CERS ,34420,34073,91,43.316667,3.3,1.98
+ Cesseras ,CESSERAS ,34210,34075,91,43.333333,2.716667,2.3
+ Clapiers ,CLAPIERS ,34830,34077,91,43.65,3.883333,1.48
+ Claret ,CLARET ,34270,34078,91,43.866667,3.9,2.12
+ Clermont-l'Hérault ,CLERMONT L HERAULT ,34800,34079,91,43.616667,3.433333,0.71
+ Colombiers ,COLOMBIERS ,34440,34081,91,43.316667,3.133333,1.98
+ Combaillaux ,COMBAILLAUX ,34980,34082,91,43.666667,3.75,1.15
+ Combes ,COMBES ,34240,34083,91,43.6,3.066667,1.17
+ Corneilhan ,CORNEILHAN ,34490,34084,91,43.4,3.183333,1.36
+ Coulobres ,COULOBRES ,34290,34085,91,43.45,3.283333,0.99
+ Courniou ,COURNIOU ,34220,34086,91,43.466667,2.733333,2.24
+ Cournonsec ,COURNONSEC ,34660,34087,91,43.55,3.716667,0.94
+ Cournonterral ,COURNONTERRAL ,34660,34088,91,43.55,3.716667,0.94
+ Creissan ,CREISSAN ,34370,34089,91,43.366667,3.016667,1.61
+ Le Crès ,LE CRES ,34920,34090,91,43.65,3.933333,1.64
+ Le Cros ,LE CROS ,34520,34091,91,43.866667,3.366667,2.12
+ Cruzy ,CRUZY ,34310,34092,91,43.35,2.95,1.73
+ Dio-et-Valquières ,DIO ET VALQUIERES ,34650,34093,91,43.666667,3.2,1.01
+ Espondeilhan ,ESPONDEILHAN ,34290,34094,91,43.433333,3.266667,1.11
+ Fabrègues ,FABREGUES ,34690,34095,91,43.55,3.766667,1.1
+ Faugères ,FAUGERES ,34600,34096,91,43.566667,3.183333,0.83
+ Félines-Minervois ,FELINES MINERVOIS ,34210,34097,91,43.333333,2.6,2.68
+ Ferrals-les-Montagnes ,FERRALS LES MONTAGNES ,34210,34098,91,43.4,2.633333,2.57
+ Ferrières-les-Verreries ,FERRIERES LES VERRERIES ,34190,34099,91,43.883333,3.8,2.24
+ Ferrières-Poussarou ,FERRIERES POUSSAROU ,34360,34100,91,43.483333,2.883333,1.76
+ Florensac ,FLORENSAC ,34510,34101,91,43.383333,3.45,1.48
+ Fontès ,FONTES ,34320,34103,91,43.533333,3.366667,1.17
+ Fos ,FOS ,34320,34104,91,43.566667,3.25,1.17
+ Fouzilhon ,FOUZILHON ,34480,34105,91,43.5,3.25,0.92
+ Fozières ,FOZIERES ,34700,34106,91,43.75,3.35,1.25
+ Fraïsse-sur-Agout ,FRAISSE SUR AGOUT ,34330,34107,91,43.6,2.816667,1.97
+ Frontignan ,FRONTIGNAN ,34110,34108,91,43.45,3.75,1.04
+ Gabian ,GABIAN ,34320,34109,91,43.5,3.266667,0.89
+ Galargues ,GALARGUES ,34160,34110,91,43.766667,4.016667,1.91
+ Ganges ,GANGES ,34190,34111,91,43.933333,3.7,2.61
+ Garrigues ,GARRIGUES ,34160,34112,91,43.8,4.016667,1.91
+ Gigean ,GIGEAN ,34770,34113,91,43.5,3.7,0.88
+ Gignac ,GIGNAC ,34150,34114,91,43.65,3.55,0.79
+ Gorniès ,GORNIES ,34190,34115,91,43.9,3.633333,2.37
+ Grabels ,GRABELS ,34790,34116,91,43.65,3.783333,1.15
+ Graissessac ,GRAISSESSAC ,34260,34117,91,43.666667,3.083333,1.11
+ Guzargues ,GUZARGUES ,34820,34118,91,43.716667,3.916667,1.58
+ Hérépian ,HEREPIAN ,34600,34119,91,43.6,3.116667,1
+ Jacou ,JACOU ,34830,34120,91,43.666667,3.9,1.53
+ Joncels ,JONCELS ,34650,34121,91,43.733333,3.183333,1.12
+ Jonquières ,JONQUIERES ,34725,34122,91,43.683333,3.466667,0.75
+ Juvignac ,JUVIGNAC ,34990,34123,91,43.616667,3.8,1.21
+ Lacoste ,LACOSTE ,34800,34124,91,43.65,3.433333,0.93
+ Lagamas ,LAGAMAS ,34150,34125,91,43.666667,3.516667,0.88
+ Lamalou-les-Bains ,LAMALOU LES BAINS ,34240,34126,91,43.6,3.066667,1.17
+ Lansargues ,LANSARGUES ,34130,34127,91,43.65,4.066667,2.07
+ Laroque ,LAROQUE ,34190,34128,91,43.916667,3.733333,2.49
+ Lattes ,LATTES ,34970,34129,91,43.566667,3.9,1.53
+ Laurens ,LAURENS ,34480,34130,91,43.516667,3.2,0.73
+ Lauret ,LAURET ,34270,34131,91,43.833333,3.883333,1.87
+ Lauroux ,LAUROUX ,34700,34132,91,43.783333,3.283333,1.58
+ Lavalette ,LAVALETTE ,34700,34133,91,43.7,3.266667,1.74
+ Lavérune ,LAVERUNE ,34880,34134,91,43.583333,3.833333,1.31
+ Lespignan ,LESPIGNAN ,34710,34135,91,43.266667,3.166667,2.35
+ Lézignan-la-Cèbe ,LEZIGNAN LA CEBE ,34120,34136,91,43.5,3.433333,1.29
+ Liausson ,LIAUSSON ,34800,34137,91,43.633333,3.383333,0.38
+ Lieuran-Cabrières ,LIEURAN CABRIERES ,34800,34138,91,43.583333,3.433333,0.87
+ Lieuran-lès-Béziers ,LIEURAN LES BEZIERS ,34290,34139,91,43.416667,3.233333,1.47
+ Lignan-sur-Orb ,LIGNAN SUR ORB ,34490,34140,91,43.383333,3.183333,1.48
+ La Livinière ,LA LIVINIERE ,34210,34141,91,43.316667,2.633333,2.57
+ Lodève ,LODEVE ,34700,34142,91,43.716667,3.316667,1
+ Loupian ,LOUPIAN ,34140,34143,91,43.45,3.616667,0.99
+ Lunas ,LUNAS ,34650,34144,91,43.7,3.2,0.88
+ Lunel ,LUNEL ,34400,34145,91,43.683333,4.133333,2.28
+ Lunel-Viel ,LUNEL VIEL ,34400,34146,91,43.683333,4.083333,2.12
+ Magalas ,MAGALAS ,34480,34147,91,43.466667,3.216667,0.86
+ Maraussan ,MARAUSSAN ,34370,34148,91,43.366667,3.15,1.61
+ Margon ,MARGON ,34320,34149,91,43.483333,3.316667,0.92
+ Marseillan ,MARSEILLAN ,34340,34150,91,43.35,3.533333,1.73
+ Marsillargues ,MARSILLARGUES ,34590,34151,91,43.666667,4.183333,2.45
+ Mas-de-Londres ,MAS DE LONDRES ,34380,34152,91,43.783333,3.75,1.5
+ Les Matelles ,LES MATELLES ,34270,34153,91,43.733333,3.816667,1.28
+ Mauguio ,MAUGUIO ,34130,34154,91,43.616667,4.016667,1.91
+ Mérifons ,MERIFONS ,34800,34156,91,43.633333,3.283333,1.78
+ Mèze ,MEZE ,34140,34157,91,43.416667,3.6,1.28
+ Minerve ,MINERVE ,34210,34158,91,43.35,2.75,2.19
+ Mireval ,MIREVAL ,34110,34159,91,43.5,3.8,1.21
+ Montady ,MONTADY ,34310,34161,91,43.333333,3.116667,1.86
+ Montagnac ,MONTAGNAC ,34530,34162,91,43.483333,3.483333,1
+ Montarnaud ,MONTARNAUD ,34570,34163,91,43.65,3.7,0.88
+ Montaud ,MONTAUD ,34160,34164,91,43.75,3.95,1.69
+ Montbazin ,MONTBAZIN ,34560,34165,91,43.516667,3.683333,1.01
+ Montblanc ,MONTBLANC ,34290,34166,91,43.4,3.366667,1.49
+ Montels ,MONTELS ,34310,34167,91,43.3,3.033333,2.1
+ Montesquieu ,MONTESQUIEU ,34320,34168,91,43.566667,3.266667,0.93
+ Montferrier-sur-Lez ,MONTFERRIER SUR LEZ ,34980,34169,91,43.666667,3.85,1.58
+ Montouliers ,MONTOULIERS ,34310,34170,91,43.333333,2.9,1.86
+ Montoulieu ,MONTOULIEU ,34190,34171,91,43.933333,3.8,2.61
+ Montpellier ,MONTPELLIER ,34080,34172,91,43.6,3.883333,1.48
+ Montpeyroux ,MONTPEYROUX ,34150,34173,91,43.683333,3.5,1.08
+ Moulès-et-Baucels ,MOULES ET BAUCELS ,34190,34174,91,43.95,3.716667,2.74
+ Mourèze ,MOUREZE ,34800,34175,91,43.616667,3.366667,0.39
+ Murles ,MURLES ,34980,34177,91,43.683333,3.766667,1.1
+ Murviel-lès-Montpellier ,MURVIEL LES MONTPELLIER ,34570,34179,91,43.616667,3.733333,0.99
+ Nébian ,NEBIAN ,34800,34180,91,43.6,3.433333,0.74
+ Néffiès ,NEFFIES ,34320,34181,91,43.533333,3.333333,0.55
+ Nézignan-l'Évêque ,NEZIGNAN L EVEQUE ,34120,34182,91,43.416667,3.416667,1.23
+ Nissan-lez-Enserune ,NISSAN LEZ ENSERUNE ,34440,34183,91,43.283333,3.133333,2.23
+ Nizas ,NIZAS ,34320,34184,91,43.516667,3.416667,2.1
+ Notre-Dame-de-Londres ,NOTRE DAME DE LONDRES,34380,34185,91,43.816667,3.783333,1.74
+ Octon ,OCTON ,34800,34186,91,43.65,3.3,1.6
+ Olargues ,OLARGUES ,34390,34187,91,43.55,2.916667,1.65
+ Olmet-et-Villecun ,OLMET ET VILLECUN ,34700,34188,91,43.716667,3.316667,1
+ Olonzac ,OLONZAC ,34210,34189,91,43.266667,2.733333,2.35
+ Oupia ,OUPIA ,34210,34190,91,43.283333,2.766667,2.23
+ Pailhès ,PAILHES ,34490,34191,91,43.433333,3.183333,1.11
+ Palavas-les-Flots ,PALAVAS LES FLOTS ,34250,34192,91,43.533333,3.933333,1.64
+ Pardailhan ,PARDAILHAN ,34360,34193,91,43.45,2.85,1.87
+ Paulhan ,PAULHAN ,34230,34194,91,43.533333,3.45,1.49
+ Pégairolles-de-Buèges ,PEGAIROLLES DE BUEGES ,34380,34195,91,43.8,3.583333,1.62
+ Péret ,PERET ,34800,34197,91,43.583333,3.416667,0.66
+ Pérols ,PEROLS ,34470,34198,91,43.566667,3.95,1.69
+ Pézenas ,PEZENAS ,34120,34199,91,43.45,3.416667,0.99
+ Pézenes-les-Mines ,PEZENES LES MINES ,34600,34200,91,43.583333,3.25,1.82
+ Pierrerue ,PIERRERUE ,34360,34201,91,43.433333,2.966667,1.49
+ Pignan ,PIGNAN ,34570,34202,91,43.583333,3.766667,1.1
+ Pinet ,PINET ,34850,34203,91,43.4,3.516667,1.36
+ Plaissan ,PLAISSAN ,34230,34204,91,43.55,3.533333,0.72
+ Les Plans ,LES PLANS ,34700,34205,91,43.75,3.283333,1.28
+ Poilhès ,POILHES ,34310,34206,91,43.316667,3.083333,1.98
+ Pomérols ,POMEROLS ,34810,34207,91,43.4,3.5,1.36
+ Popian ,POPIAN ,34230,34208,91,43.616667,3.533333,1.38
+ Portiragnes ,PORTIRAGNES ,34420,34209,91,43.3,3.333333,2.1
+ Le Pouget ,LE POUGET ,34230,34210,91,43.583333,3.516667,0.51
+ Le Poujol-sur-Orb ,LE POUJOL SUR ORB,34600,34211,91,43.583333,3.05,1.71
+ Poujols ,POUJOLS ,34700,34212,91,43.766667,3.333333,1.37
+ Poussan ,POUSSAN ,34560,34213,91,43.483333,3.666667,0.77
+ Pouzolles ,POUZOLLES ,34480,34214,91,43.483333,3.266667,1.21
+ Pouzols ,POUZOLS ,34230,34215,91,43.616667,3.5,1.23
+ Le Pradal ,LE PRADAL ,34600,34216,91,43.633333,3.116667,1
+ Prades-le-Lez ,PRADES LE LEZ ,34730,34217,91,43.7,3.866667,1.42
+ Prades-sur-Vernazobre ,PRADES SUR VERNAZOBRE ,34360,34218,91,43.45,2.983333,1.44
+ Prémian ,PREMIAN ,34390,34219,91,43.533333,2.833333,1.92
+ Le Puech ,LE PUECH ,34700,34220,91,43.7,3.316667,0.92
+ Puéchabon ,PUECHABON ,34150,34221,91,43.716667,3.616667,1.28
+ Puilacher ,PUILACHER ,34230,34222,91,43.566667,3.5,0.24
+ Puimisson ,PUIMISSON ,34480,34223,91,43.433333,3.2,1.11
+ Puissalicon ,PUISSALICON ,34480,34224,91,43.45,3.233333,0.99
+ Puisserguier ,PUISSERGUIER ,34620,34225,91,43.366667,3.033333,1.61
+ Quarante ,QUARANTE ,34310,34226,91,43.35,2.966667,1.73
+ Restinclières ,RESTINCLIERES ,34160,34227,91,43.716667,4.033333,1.96
+ Rieussec ,RIEUSSEC ,34220,34228,91,43.416667,2.75,2.19
+ Riols ,RIOLS ,34220,34229,91,43.5,2.783333,2.08
+ Les Rives ,LES RIVES ,34520,34230,91,43.833333,3.266667,1.87
+ Romiguières ,ROMIGUIERES ,34650,34231,91,43.816667,3.233333,1.74
+ Roquebrun ,ROQUEBRUN ,34460,34232,91,43.5,3.016667,1.33
+ Roqueredonde ,ROQUEREDONDE ,34650,34233,91,43.8,3.216667,1.62
+ Roquessels ,ROQUESSELS ,34320,34234,91,43.55,3.216667,1.63
+ Rosis ,ROSIS ,34610,34235,91,43.616667,3,1.38
+ Roujan ,ROUJAN ,34320,34237,91,43.516667,3.3,0.49
+ Saint-André-de-Sangonis ,SAINT ANDRE DE SANGONIS,34725,34239,91,43.65,3.5,1.47
+ Saint-Aunès ,SAINT AUNES ,34130,34240,91,43.633333,3.966667,1.75
+ Saint-Bauzille-de-la-Sylve ,SAINT BAUZILLE DE LA,34230,34241,91,43.616667,3.55,1.6
+ Saint-Bauzille-de-Montmel ,SAINT BAUZILLE DE MONTMEL,34160,34242,91,43.766667,3.95,1.69
+ Saint-Bauzille-de-Putois ,SAINT BAUZILLE DE PUTOIS,34190,34243,91,43.9,3.733333,2.37
+ Saint-Brès ,SAINT BRES ,34670,34244,91,43.666667,4.025,-1
+ Saint-Chinian ,SAINT CHINIAN ,34360,34245,91,43.416667,2.95,1.54
+ Saint-Christol ,SAINT CHRISTOL ,34400,34246,91,43.733333,4.083333,2.12
+ Saint-Drézéry ,SAINT DREZERY ,34160,34249,91,43.733333,3.983333,1.8
+ Saint-Étienne-d'Albagnan ,SAINT ETIENNE D ALBAGNAN,34390,34250,91,43.533333,2.85,1.87
+ Saint-Étienne-de-Gourgas ,SAINT ETIENNE DE GOURGAS,34700,34251,91,43.766667,3.383333,1.37
+ Saint-Étienne-Estréchoux ,SAINT ETIENNE ESTRECHOUX ,34260,34252,91,43.666667,3.083333,1.11
+ Saint-Félix-de-l'Héras ,SAINT FELIX DE L,34520,34253,91,43.833333,3.3,1.87
+ Saint-Félix-de-Lodez ,SAINT FELIX DE LODEZ,34725,34254,91,43.65,3.45,0.93
+ Saint-Gély-du-Fesc ,SAINT GELY DU FESC,34980,34255,91,43.7,3.8,1.21
+ Saint-Geniès-des-Mourgues ,SAINT GENIES DES MOURGUES,34160,34256,91,43.7,4.033333,1.96
+ Saint-Geniès-de-Varensal ,SAINT GENIES DE VARENSAL,34610,34257,91,43.666667,3,1.38
+ Saint-Georges-d'Orques ,SAINT GEORGES D ORQUES,34680,34259,91,43.616667,3.783333,1.15
+ Saint-Gervais-sur-Mare ,SAINT GERVAIS SUR MARE,34610,34260,91,43.65,3.033333,1.27
+ Saint-Guilhem-le-Désert ,SAINT GUILHEM LE DESERT,34150,34261,91,43.733333,3.55,1.12
+ Saint-Guiraud ,SAINT GUIRAUD ,34725,34262,91,43.683333,3.45,0.93
+ Saint-Hilaire-de-Beauvoir ,SAINT HILAIRE DE BEAUVOIR,34160,34263,91,43.75,4.016667,1.91
+ Saint-Jean-de-Buèges ,SAINT JEAN DE BUEGES,34380,34264,91,43.833333,3.616667,1.87
+ Saint-Jean-de-Cornies ,SAINT JEAN DE CORNIES,34160,34265,91,43.733333,4,1.85
+ Saint-Jean-de-Cuculles ,SAINT JEAN DE CUCULLES,34270,34266,91,43.75,3.833333,1.31
+ Saint-Jean-de-Fos ,SAINT JEAN DE FOS,34150,34267,91,43.7,3.55,0.88
+ Saint-Jean-de-la-Blaquière ,SAINT JEAN DE LA,34700,34268,91,43.7,3.416667,1.6
+ Saint-Jean-de-Minervois ,SAINT JEAN DE MINERVOIS,34360,34269,91,43.383333,2.833333,1.92
+ Saint-Jean-de-Védas ,SAINT JEAN DE VEDAS,34430,34270,91,43.583333,3.833333,1.31
+ Saint-Julien ,SAINT JULIEN ,34390,34271,91,43.566667,2.916667,1.65
+ Saint-Just ,SAINT JUST ,34400,34272,91,43.65,4.116667,2.23
+ Saint-Martin-de-l'Arçon ,SAINT MARTIN DE L,34390,34273,91,43.583333,2.983333,1.46
+ Saint-Martin-de-Londres ,SAINT MARTIN DE LONDRES,34380,34274,91,43.783333,3.733333,1.5
+ Saint-Mathieu-de-Tréviers ,SAINT MATHIEU DE TREVIERS,34270,34276,91,43.766667,3.85,1.37
+ Saint-Maurice-Navacelles ,SAINT MAURICE NAVACELLES ,34520,34277,91,43.833333,3.5,1.87
+ Saint-Michel ,SAINT MICHEL ,34520,34278,91,43.85,3.383333,1.99
+ Saint-Nazaire-de-Ladarez ,SAINT NAZAIRE DE LADAREZ,34490,34279,91,43.5,3.083333,1.64
+ Saint-Nazaire-de-Pézan ,SAINT NAZAIRE DE PEZAN,34400,34280,91,43.633333,4.133333,2.28
+ Saint-Pargoire ,SAINT PARGOIRE ,34230,34281,91,43.533333,3.516667,0.77
+ Saint-Paul-et-Valmalle ,SAINT PAUL ET VALMALLE,34570,34282,91,43.633333,3.666667,1.33
+ Saint-Pierre-de-la-Fage ,SAINT PIERRE DE LA,34520,34283,91,43.783333,3.416667,1.5
+ Saint-Pons-de-Mauchiens ,SAINT PONS DE MAUCHIENS,34230,34285,91,43.516667,3.516667,1.14
+ Saint-Privat ,SAINT PRIVAT ,34700,34286,91,43.75,3.416667,1.46
+ Saint-Seriès ,SAINT SERIES ,34400,34288,91,43.733333,4.1,2.18
+ Saint-Thibéry ,SAINT THIBERY ,34630,34289,91,43.4,3.416667,1.36
+ Salasc ,SALASC ,34800,34292,91,43.616667,3.316667,1.21
+ Saturargues ,SATURARGUES ,34400,34294,91,43.716667,4.116667,2.23
+ Saussan ,SAUSSAN ,34570,34295,91,43.583333,3.8,1.64
+ Sauteyrargues ,SAUTEYRARGUES ,34270,34297,91,43.833333,3.916667,1.87
+ Sauvian ,SAUVIAN ,34410,34298,91,43.3,3.266667,2.1
+ Sérignan ,SERIGNAN ,34410,34299,91,43.283333,3.283333,2.23
+ Servian ,SERVIAN ,34290,34300,91,43.416667,3.3,1.23
+ Sète ,SETE ,34200,34301,91,43.4,3.683333,1.36
+ Siran ,SIRAN ,34210,34302,91,43.316667,2.666667,2.46
+ Sorbs ,SORBS ,34520,34303,91,43.883333,3.4,2.24
+ Soubès ,SOUBES ,34700,34304,91,43.766667,3.35,1.37
+ Le Soulié ,LE SOULIE ,34330,34305,91,43.55,2.716667,2.3
+ Soumont ,SOUMONT ,34700,34306,91,43.733333,3.366667,1.12
+ Sussargues ,SUSSARGUES ,34160,34307,91,43.7,4,1.85
+ Taussac-la-Billière ,TAUSSAC LA BILLIERE ,34600,34308,91,43.616667,3.1,1.06
+ Teyran ,TEYRAN ,34820,34309,91,43.683333,3.916667,1.58
+ Thèzan-lès-Béziers ,THEZAN LES BEZIERS ,34490,34310,91,43.416667,3.166667,1.23
+ Tourbes ,TOURBES ,34120,34311,91,43.45,3.383333,1.2
+ La Tour-sur-Orb ,LA TOUR SUR ORB,34260,34312,91,43.65,3.15,1.06
+ Tressan ,TRESSAN ,34230,34313,91,43.566667,3.5,0.24
+ Le Triadou ,LE TRIADOU ,34270,34314,91,43.733333,3.866667,1.42
+ Usclas-du-Bosc ,USCLAS DU BOSC ,34700,34316,91,43.716667,3.4,1.16
+ La Vacquerie-et-Saint-Martin-de-Castries ,LA VACQUERIE ET SAINT,34520,34317,91,43.783333,3.45,1.5
+ Vailhan ,VAILHAN ,34320,34319,91,43.55,3.3,0.41
+ Vailhauquès ,VAILHAUQUES ,34570,34320,91,43.666667,3.716667,0.96
+ Valergues ,VALERGUES ,34130,34321,91,43.666667,4.066667,2.07
+ Valflaunès ,VALFLAUNES ,34270,34322,91,43.8,3.866667,1.62
+ Valmascle ,VALMASCLE ,34800,34323,91,43.6,3.3,1.5
+ Valras-Plage ,VALRAS PLAGE ,34350,34324,91,43.25,3.283333,2.48
+ Valros ,VALROS ,34290,34325,91,43.416667,3.366667,1.39
+ Vélieux ,VELIEUX ,34220,34326,91,43.383333,2.75,2.19
+ Vendargues ,VENDARGUES ,34740,34327,91,43.65,3.966667,1.75
+ Vendémian ,VENDEMIAN ,34230,34328,91,43.583333,3.566667,1.49
+ Vendres ,VENDRES ,34350,34329,91,43.266667,3.216667,2.35
+ Vérargues ,VERARGUES ,34400,34330,91,43.716667,4.1,2.18
+ Verreries-de-Moussans ,VERRERIES DE MOUSSANS ,34220,34331,91,43.45,2.7,2.35
+ Vias ,VIAS ,34450,34332,91,43.3,3.416667,2.1
+ Vic-la-Gardiole ,VIC LA GARDIOLE ,34110,34333,91,43.483333,3.8,1.21
+ Vieussan ,VIEUSSAN ,34390,34334,91,43.533333,2.983333,1.44
+ Villeneuve-lès-Béziers ,VILLENEUVE LES BEZIERS ,34420,34336,91,43.316667,3.266667,1.98
+ Villeneuvette ,VILLENEUVETTE ,34800,34338,91,43.616667,3.416667,0.44
+ Villespassans ,VILLESPASSANS ,34360,34339,91,43.383333,2.9,1.7
+ Villetelle ,VILLETELLE ,34400,34340,91,43.733333,4.15,2.34
+ Villeveyrac ,VILLEVEYRAC ,34560,34341,91,43.5,3.6,1.35
+ Viols-le-Fort ,VIOLS LE FORT ,34380,34343,91,43.75,3.7,1.25
+ La Grande Motte ,LA GRANDE MOTTE ,34280,34344,91,43.566667,4.083333,2.12
+ Le Cap d'Agde ,LE CAP D AGDE,34300,34902,91,43.283333,3.516667,2.23
+ La Peyrade ,LA PEYRADE ,34110,34923,91,43.416667,3.733333,1.42
+ Carnon-Plage ,CARNON PLAGE ,34280,34926,91,43.533333,3.983333,1.8
+ Plaisance ,PLAISANCE ,34610,34927,91,43.666667,3,-1
+ Acigné ,ACIGNE ,35690,35001,53,48.133333,-1.533333,0.39
+ Amanlis ,AMANLIS ,35150,35002,53,48,-1.483333,0.96
+ Andouillé-Neuville ,ANDOUILLE NEUVILLE ,35250,35003,53,48.3,-1.583333,1.29
+ Antrain ,ANTRAIN ,35560,35004,53,48.45,-1.483333,1.41
+ Arbrissel ,ARBRISSEL ,35130,35005,53,47.933333,-1.3,1.34
+ Argentré-du-Plessis ,ARGENTRE DU PLESSIS ,35370,35006,53,48.066667,-1.15,1.9
+ Aubigné ,AUBIGNE ,35250,35007,53,48.3,-1.633333,1.15
+ Availles-sur-Seiche ,AVAILLES SUR SEICHE ,35130,35008,53,47.966667,-1.2,1.7
+ Baguer-Morvan ,BAGUER MORVAN ,35120,35009,53,48.533333,-1.783333,1.7
+ Baguer-Pican ,BAGUER PICAN ,35120,35010,53,48.55,-1.7,1.78
+ Baillé ,BAILLE ,35460,35011,53,48.35,-1.383333,1
+ Bain-de-Bretagne ,BAIN DE BRETAGNE ,35470,35012,53,47.833333,-1.683333,1.79
+ Bains-sur-Oust ,BAINS SUR OUST ,35600,35013,53,47.7,-2.066667,2.46
+ Bais ,BAIS ,35680,35014,53,48.016667,-1.283333,1.37
+ Balazé ,BALAZE ,35500,35015,53,48.166667,-1.183333,1.77
+ Baulon ,BAULON ,35580,35016,53,47.983333,-1.933333,1.59
+ La Baussaine ,LA BAUSSAINE ,35190,35017,53,48.316667,-1.9,1.06
+ Bazouges-la-Pérouse ,BAZOUGES LA PEROUSE ,35560,35019,53,48.416667,-1.583333,1.12
+ Bazouges-sous-Hédé ,BAZOUGES SOUS HEDE ,35630,35020,53,48.316667,-1.766667,1.91
+ Beaucé ,BEAUCE ,35133,35021,53,48.333333,-1.166667,1.83
+ Bécherel ,BECHEREL ,35190,35022,53,48.3,-1.95,1.26
+ Bédée ,BEDEE ,35137,35023,53,48.183333,-1.95,1.26
+ Betton ,BETTON ,35830,35024,53,48.183333,-1.65,0.07
+ Billé ,BILLE ,35133,35025,53,48.283333,-1.25,1.5
+ Bléruais ,BLERUAIS ,35750,35026,53,48.116667,-2.133333,1.98
+ Boisgervilly ,BOISGERVILLY ,35360,35027,53,48.166667,-2.066667,1.72
+ Boistrudan ,BOISTRUDAN ,35150,35028,53,47.966667,-1.4,1.44
+ Bonnemain ,BONNEMAIN ,35270,35029,53,48.466667,-1.766667,1.37
+ La Bosse-de-Bretagne ,LA BOSSE DE BRETAGNE,35320,35030,53,47.866667,-1.6,1.63
+ La Bouexière ,LA BOUEXIERE ,35340,35031,53,48.183333,-1.433333,1.41
+ Bourgbarré ,BOURGBARRE ,35230,35032,53,48,-1.616667,0.96
+ Bourg-des-Comptes ,BOURG DES COMPTES ,35890,35033,53,47.933333,-1.75,1.29
+ La Boussac ,LA BOUSSAC ,35120,35034,53,48.516667,-1.666667,1.62
+ Bovel ,BOVEL ,35330,35035,53,47.95,-1.983333,1.39
+ Brain-sur-Vilaine ,BRAIN SUR VILAINE ,35660,35036,53,47.7,-1.9,2.46
+ Bréal-sous-Montfort ,BREAL SOUS MONTFORT ,35310,35037,53,48.05,-1.866667,0.93
+ Bréal-sous-Vitré ,BREAL SOUS VITRE ,35370,35038,53,48.1,-1.066667,2.23
+ Brécé ,BRECE ,35530,35039,53,48.116667,-1.483333,0.58
+ Breteil ,BRETEIL ,35160,35040,53,48.15,-1.9,1.06
+ Brie ,BRIE ,35150,35041,53,47.95,-1.533333,1.21
+ Brielles ,BRIELLES ,35370,35042,53,48.016667,-1.083333,2.16
+ Broons-sur-Vilaine ,BROONS SUR VILAINE ,35220,35043,53,48.133333,-1.416667,1.65
+ Broualan ,BROUALAN ,35120,35044,53,48.466667,-1.65,1.6
+ Bruc-sur-Aff ,BRUC SUR AFF ,35550,35045,53,47.816667,-2.016667,1.88
+ Les Brulais ,LES BRULAIS ,35330,35046,53,47.883333,-2.033333,1.58
+ Bruz ,BRUZ ,35170,35047,53,48.033333,-1.75,1
+ Campel ,CAMPEL ,35330,35048,53,47.933333,-2,1.45
+ Cancale ,CANCALE ,35260,35049,53,48.683333,-1.85,2.45
+ Cardroc ,CARDROC ,35190,35050,53,48.283333,-1.883333,0.99
+ Cesson-Sévigné ,CESSON SEVIGNE ,35510,35051,53,48.125,-1.6,0.34
+ Champeaux ,CHAMPEAUX ,35500,35052,53,48.15,-1.316667,1.43
+ Chancé ,CHANCE ,35680,35053,53,48.033333,-1.383333,1.37
+ Chanteloup ,CHANTELOUP ,35150,35054,53,47.966667,-1.616667,1.81
+ Chantepie ,CHANTEPIE ,35135,35055,53,48.083333,-1.616667,0.55
+ La Chapelle-Bouexic ,LA CHAPELLE BOUEXIC ,35330,35057,53,47.933333,-1.933333,1.48
+ La Chapelle-Chaussée ,LA CHAPELLE CHAUSSEE ,35630,35058,53,48.266667,-1.85,0.88
+ La Chapelle-du-Lou ,LA CHAPELLE DU LOU,35360,35060,53,48.216667,-2,1.45
+ La Chapelle-Erbrée ,LA CHAPELLE ERBREE ,35500,35061,53,48.133333,-1.1,2.09
+ La Chapelle-Janson ,LA CHAPELLE JANSON ,35133,35062,53,48.35,-1.1,2.09
+ La Chapelle-Saint-Aubert ,LA CHAPELLE SAINT AUBERT,35140,35063,53,48.316667,-1.3,1.31
+ La Chapelle-Thouarault ,LA CHAPELLE THOUARAULT ,35590,35065,53,48.133333,-1.866667,1.17
+ Chartres-de-Bretagne ,CHARTRES DE BRETAGNE ,35131,35066,53,48.05,-1.7,0.71
+ Chasné-sur-Illet ,CHASNE SUR ILLET ,35250,35067,53,48.25,-1.566667,1.11
+ Châteaubourg ,CHATEAUBOURG ,35220,35068,53,48.116667,-1.4,0.91
+ Châteaugiron ,CHATEAUGIRON ,35410,35069,53,48.05,-1.5,0.71
+ Châtillon-en-Vendelais ,CHATILLON EN VENDELAIS ,35210,35072,53,48.216667,-1.166667,1.83
+ Chaumeré ,CHAUMERE ,35113,35074,53,48.033333,-1.416667,1
+ Chauvigné ,CHAUVIGNE ,35490,35075,53,48.383333,-1.466667,1.37
+ Chavagne ,CHAVAGNE ,35310,35076,53,48.05,-1.783333,1.76
+ Chelun ,CHELUN ,35640,35077,53,47.85,-1.216667,1.71
+ Cherrueix ,CHERRUEIX ,35120,35078,53,48.6,-1.7,2.03
+ Chevaigné ,CHEVAIGNE ,35250,35079,53,48.216667,-1.633333,0.96
+ Cintré ,CINTRE ,35310,35080,53,48.1,-1.866667,0.93
+ Clayes ,CLAYES ,35590,35081,53,48.183333,-1.85,1.34
+ Coësmes ,COESMES ,35134,35082,53,47.883333,-1.433333,1.54
+ Coglès ,COGLES ,35460,35083,53,48.466667,-1.366667,1.37
+ Comblessac ,COMBLESSAC ,35330,35084,53,47.866667,-2.083333,1.78
+ Combourg ,COMBOURG ,35270,35085,53,48.416667,-1.75,1.12
+ Combourtillé ,COMBOURTILLE ,35210,35086,53,48.266667,-1.25,1.5
+ Cornillé ,CORNILLE ,35500,35087,53,48.083333,-1.3,1.4
+ Corps-Nuds ,CORPS NUDS ,35150,35088,53,47.983333,-1.583333,1.32
+ La Couyère ,LA COUYERE ,35320,35089,53,47.883333,-1.5,1.54
+ Crévin ,CREVIN ,35320,35090,53,47.933333,-1.666667,1.29
+ Le Crouais ,LE CROUAIS ,35290,35091,53,48.2,-2.133333,1.98
+ Cuguen ,CUGUEN ,35270,35092,53,48.45,-1.65,1.41
+ Dinard ,DINARD ,35800,35093,53,48.633333,-2.066667,2.2
+ Dingé ,DINGE ,35440,35094,53,48.35,-1.716667,1.09
+ Dol-de-Bretagne ,DOL DE BRETAGNE ,35120,35095,53,48.55,-1.75,1.78
+ Domagné ,DOMAGNE ,35113,35096,53,48.083333,-1.383333,1
+ Domalain ,DOMALAIN ,35680,35097,53,48,-1.25,1.5
+ La Dominelais ,LA DOMINELAIS ,35390,35098,53,47.766667,-1.683333,2.13
+ Dompierre-du-Chemin ,DOMPIERRE DU CHEMIN ,35210,35100,53,48.266667,-1.15,1.9
+ Dourdain ,DOURDAIN ,35450,35101,53,48.183333,-1.366667,1.14
+ Drouges ,DROUGES ,35130,35102,53,47.9,-1.266667,1.46
+ Éancé ,EANCE ,35640,35103,53,47.816667,-1.25,1.88
+ Épiniac ,EPINIAC ,35120,35104,53,48.5,-1.7,1.54
+ Erbrée ,ERBREE ,35500,35105,53,48.1,-1.116667,2.03
+ Ercé-en-Lamée ,ERCE EN LAMEE ,35620,35106,53,47.833333,-1.566667,1.79
+ Ercé-près-Liffré ,ERCE PRES LIFFRE ,35340,35107,53,48.25,-1.5,1.02
+ Essé ,ESSE ,35150,35108,53,47.966667,-1.416667,1.19
+ Étrelles ,ETRELLES ,35370,35109,53,48.066667,-1.183333,1.77
+ Feins ,FEINS ,35440,35110,53,48.333333,-1.633333,1.27
+ Le Ferré ,LE FERRE ,35420,35111,53,48.5,-1.3,1.64
+ Fleurigné ,FLEURIGNE ,35133,35112,53,48.333333,-1.116667,2.03
+ La Fontenelle ,LA FONTENELLE ,35560,35113,53,48.466667,-1.5,1.37
+ Forges-la-Forêt ,FORGES LA FORET ,35640,35114,53,47.866667,-1.266667,1.63
+ Fougères ,FOUGERES ,35300,35115,53,48.35,-1.2,1.7
+ La Fresnais ,LA FRESNAIS ,35111,35116,53,48.6,-1.85,2.03
+ Gaël ,GAEL ,35290,35117,53,48.133333,-2.233333,2.37
+ Gahard ,GAHARD ,35490,35118,53,48.3,-1.516667,1.28
+ Gennes-sur-Seiche ,GENNES SUR SEICHE ,35370,35119,53,47.983333,-1.116667,2.03
+ Gévezé ,GEVEZE ,35850,35120,53,48.216667,-1.783333,1.46
+ Gosné ,GOSNE ,35140,35121,53,48.25,-1.466667,1.64
+ La Gouesnière ,LA GOUESNIERE ,35350,35122,53,48.616667,-1.9,2.12
+ Goven ,GOVEN ,35580,35123,53,48,-1.85,0.96
+ Grand-Fougeray ,GRAND FOUGERAY ,35390,35124,53,47.716667,-1.733333,2.38
+ La Guerche-de-Bretagne ,LA GUERCHE DE BRETAGNE,35130,35125,53,47.933333,-1.233333,1.57
+ Guichen ,GUICHEN ,35580,35126,53,47.966667,-1.8,1.13
+ Guignen ,GUIGNEN ,35580,35127,53,47.916667,-1.85,1.38
+ Guipel ,GUIPEL ,35440,35128,53,48.3,-1.716667,0.97
+ Guipry ,GUIPRY ,35480,35129,53,47.816667,-1.833333,1.88
+ Hédé ,HEDE ,35630,35130,53,48.3,-1.8,0.86
+ L'Hermitage ,L HERMITAGE ,35590,35131,53,48.133333,-1.816667,1.17
+ Hirel ,HIREL ,35120,35132,53,48.6,-1.8,2.03
+ Iffendic ,IFFENDIC ,35750,35133,53,48.133333,-2.033333,1.58
+ Les Iffs ,LES IFFS ,35630,35134,53,48.283333,-1.866667,1.28
+ Irodouër ,IRODOUER ,35850,35135,53,48.25,-1.95,1.63
+ Janzé ,JANZE ,35150,35136,53,47.966667,-1.5,1.13
+ Javené ,JAVENE ,35133,35137,53,48.316667,-1.216667,1.63
+ Laignelet ,LAIGNELET ,35133,35138,53,48.366667,-1.15,1.9
+ Laillé ,LAILLE ,35890,35139,53,47.983333,-1.716667,1.04
+ Lalleu ,LALLEU ,35320,35140,53,47.85,-1.516667,1.71
+ Landavran ,LANDAVRAN ,35450,35141,53,48.15,-1.283333,1.37
+ Landéan ,LANDEAN ,35133,35142,53,48.416667,-1.15,1.9
+ Landujan ,LANDUJAN ,35360,35143,53,48.25,-2,1.45
+ Langan ,LANGAN ,35850,35144,53,48.25,-1.85,0.86
+ Langon ,LANGON ,35660,35145,53,47.716667,-1.85,2.38
+ Langouet ,LANGOUET ,35630,35146,53,48.25,-1.816667,0.86
+ Lanhélin ,LANHELIN ,35720,35147,53,48.45,-1.833333,1.39
+ Lanrigan ,LANRIGAN ,35270,35148,53,48.4,-1.7,1.04
+ Lassy ,LASSY ,35580,35149,53,47.983333,-1.866667,1.04
+ Lécousse ,LECOUSSE ,35133,35150,53,48.366667,-1.216667,1.63
+ Lieuron ,LIEURON ,35550,35151,53,47.85,-1.95,1.71
+ Liffré ,LIFFRE ,35340,35152,53,48.216667,-1.5,0.57
+ Lillemer ,LILLEMER ,35111,35153,53,48.566667,-1.866667,1.87
+ Livré-sur-Changeon ,LIVRE SUR CHANGEON ,35450,35154,53,48.216667,-1.35,1.11
+ Lohéac ,LOHEAC ,35550,35155,53,47.866667,-1.883333,1.63
+ Longaulnay ,LONGAULNAY ,35190,35156,53,48.3,-1.933333,1.19
+ Le Loroux ,LE LOROUX ,35133,35157,53,48.4,-1.066667,2.23
+ Le Lou-du-Lac ,LE LOU DU LAC,35360,35158,53,48.2,-1.983333,1.39
+ Lourmais ,LOURMAIS ,35270,35159,53,48.45,-1.733333,1.29
+ Loutehel ,LOUTEHEL ,35330,35160,53,47.933333,-2.083333,1.78
+ Louvigné-de-Bais ,LOUVIGNE DE BAIS ,35680,35161,53,48.05,-1.333333,1.17
+ Louvigné-du-Désert ,LOUVIGNE DU DESERT ,35420,35162,53,48.483333,-1.133333,1.96
+ Luitré ,LUITRE ,35133,35163,53,48.283333,-1.116667,2.03
+ Marcillé-Raoul ,MARCILLE RAOUL ,35560,35164,53,48.383333,-1.6,0.95
+ Marcillé-Robert ,MARCILLE ROBERT ,35240,35165,53,47.95,-1.366667,1.21
+ Marpiré ,MARPIRE ,35220,35166,53,48.133333,-1.333333,1.86
+ Martigné-Ferchaud ,MARTIGNE FERCHAUD ,35640,35167,53,47.833333,-1.316667,1.79
+ Maure-de-Bretagne ,MAURE DE BRETAGNE ,35330,35168,53,47.9,-1.983333,1.46
+ Maxent ,MAXENT ,35380,35169,53,47.983333,-2.033333,1.58
+ Mecé ,MECE ,35450,35170,53,48.233333,-1.3,1.31
+ Médréac ,MEDREAC ,35360,35171,53,48.266667,-2.066667,1.72
+ Meillac ,MEILLAC ,35270,35172,53,48.416667,-1.816667,1.84
+ Melesse ,MELESSE ,35520,35173,53,48.216667,-1.7,0.96
+ Mellé ,MELLE ,35420,35174,53,48.5,-1.2,1.7
+ Mernel ,MERNEL ,35330,35175,53,47.9,-1.966667,1.46
+ Messac ,MESSAC ,35480,35176,53,47.816667,-1.8,1.88
+ La Mézière ,LA MEZIERE ,35520,35177,53,48.216667,-1.75,1.16
+ Mézières-sur-Couesnon ,MEZIERES SUR COUESNON ,35140,35178,53,48.3,-1.45,1.15
+ Miniac-Morvan ,MINIAC MORVAN ,35540,35179,53,48.516667,-1.9,1.62
+ Miniac-sous-Bécherel ,MINIAC SOUS BECHEREL ,35190,35180,53,48.283333,-1.933333,1.19
+ Le Minihic-sur-Rance ,LE MINIHIC SUR RANCE,35870,35181,53,48.583333,-2.016667,1.95
+ Mondevert ,MONDEVERT ,35370,35183,53,48.083333,-1.1,2.09
+ Montauban-de-Bretagne ,MONTAUBAN DE BRETAGNE ,35360,35184,53,48.2,-2.05,1.65
+ Montautour ,MONTAUTOUR ,35210,35185,53,48.2,-1.15,1.9
+ Mont-Dol ,MONT DOL ,35120,35186,53,48.566667,-1.766667,1.87
+ Monterfil ,MONTERFIL ,35160,35187,53,48.066667,-1.983333,1.39
+ Montfort-sur-Meu ,MONTFORT SUR MEU ,35160,35188,53,48.133333,-1.966667,1.32
+ Montgermont ,MONTGERMONT ,35760,35189,53,48.15,-1.716667,1
+ Monthault ,MONTHAULT ,35420,35190,53,48.516667,-1.183333,1.77
+ Montours ,MONTOURS ,35460,35191,53,48.45,-1.3,1.6
+ Montreuil-des-Landes ,MONTREUIL DES LANDES ,35210,35192,53,48.25,-1.216667,1.63
+ Montreuil-le-Gast ,MONTREUIL LE GAST ,35520,35193,53,48.25,-1.716667,0.88
+ Montreuil-sous-Pérouse ,MONTREUIL SOUS PEROUSE ,35500,35194,53,48.15,-1.233333,1.57
+ Montreuil-sur-Ille ,MONTREUIL SUR ILLE ,35440,35195,53,48.3,-1.666667,0.66
+ Mordelles ,MORDELLES ,35310,35196,53,48.066667,-1.85,0.86
+ Mouazé ,MOUAZE ,35250,35197,53,48.233333,-1.6,0.58
+ Moulins ,MOULINS ,35680,35198,53,48,-1.366667,1.11
+ Moussé ,MOUSSE ,35130,35199,53,47.933333,-1.266667,1.44
+ Moutiers ,MOUTIERS ,35130,35200,53,47.966667,-1.216667,1.63
+ La Noë-Blanche ,LA NOE BLANCHE ,35470,35202,53,47.8,-1.733333,1.96
+ La Nouaye ,LA NOUAYE ,35137,35203,53,48.15,-1.983333,1.39
+ Nouvoitou ,NOUVOITOU ,35410,35204,53,48.05,-1.55,1.75
+ Noyal-sous-Bazouges ,NOYAL SOUS BAZOUGES ,35560,35205,53,48.416667,-1.633333,1.21
+ Noyal-sur-Vilaine ,NOYAL SUR VILAINE ,35530,35207,53,48.116667,-1.516667,1.5
+ Orgères ,ORGERES ,35230,35208,53,48,-1.666667,1.25
+ Ossé ,OSSE ,35410,35209,53,48.05,-1.45,1.25
+ Pacé ,PACE ,35740,35210,53,48.15,-1.766667,0.53
+ Paimpont ,PAIMPONT ,35380,35211,53,48.016667,-2.183333,2.17
+ Pancé ,PANCE ,35320,35212,53,47.883333,-1.666667,1.54
+ Paramé ,PARAME ,35400,35213,53,48.666667,-2,2.37
+ Parcé ,PARCE ,35210,35214,53,48.266667,-1.2,1.7
+ Parigné ,PARIGNE ,35133,35215,53,48.433333,-1.2,1.7
+ Parthenay-de-Bretagne ,PARTHENAY DE BRETAGNE ,35850,35216,53,48.2,-1.833333,0.8
+ Le Pertre ,LE PERTRE ,35370,35217,53,48.033333,-1.033333,2.36
+ Le Petit-Fougeray ,LE PETIT FOUGERAY ,35320,35218,53,47.933333,-1.6,1.29
+ Pipriac ,PIPRIAC ,35550,35219,53,47.816667,-1.95,1.88
+ Piré-sur-Seiche ,PIRE SUR SEICHE ,35150,35220,53,48,-1.433333,1.01
+ Pléchâtel ,PLECHATEL ,35470,35221,53,47.9,-1.75,1.46
+ Pleine-Fougères ,PLEINE FOUGERES ,35610,35222,53,48.533333,-1.566667,1.7
+ Plélan-le-Grand ,PLELAN LE GRAND ,35380,35223,53,48,-2.1,1.85
+ Plerguer ,PLERGUER ,35540,35224,53,48.533333,-1.85,1.7
+ Plesder ,PLESDER ,35720,35225,53,48.416667,-1.916667,1.12
+ Pleugueneuc ,PLEUGUENEUC ,35720,35226,53,48.4,-1.9,1.06
+ Pleumeleuc ,PLEUMELEUC ,35137,35227,53,48.183333,-1.916667,1.22
+ Pleurtuit ,PLEURTUIT ,35730,35228,53,48.583333,-2.066667,1.95
+ Pocé-les-Bois ,POCE LES BOIS ,35500,35229,53,48.116667,-1.25,1.5
+ Poilley ,POILLEY ,35420,35230,53,48.466667,-1.266667,1.44
+ Poligné ,POLIGNE ,35320,35231,53,47.883333,-1.683333,1.54
+ Princé ,PRINCE ,35210,35232,53,48.216667,-1.083333,2.16
+ Québriac ,QUEBRIAC ,35190,35233,53,48.35,-1.833333,1.68
+ Quédillac ,QUEDILLAC ,35290,35234,53,48.25,-2.15,2.04
+ Rannée ,RANNEE ,35130,35235,53,47.916667,-1.233333,1.57
+ Redon ,REDON ,35600,35236,53,47.65,-2.083333,2.71
+ Renac ,RENAC ,35660,35237,53,47.716667,-1.983333,2.38
+ Rennes ,RENNES ,35000,35238,53,48.083333,-1.683333,0.55
+ Retiers ,RETIERS ,35240,35239,53,47.916667,-1.383333,1.38
+ Le Rheu ,LE RHEU ,35650,35240,53,48.1,-1.8,1
+ La Richardais ,LA RICHARDAIS ,35780,35241,53,48.6,-2.033333,2.03
+ Romagné ,ROMAGNE ,35133,35243,53,48.35,-1.283333,1.37
+ Romazy ,ROMAZY ,35490,35244,53,48.366667,-1.5,0.87
+ Romillé ,ROMILLE ,35850,35245,53,48.216667,-1.9,1.06
+ Roz-Landrieux ,ROZ LANDRIEUX ,35120,35246,53,48.533333,-1.833333,1.7
+ Roz-sur-Couesnon ,ROZ SUR COUESNON ,35610,35247,53,48.583333,-1.6,1.95
+ Sains ,SAINS ,35610,35248,53,48.55,-1.583333,1.78
+ Sainte-Anne-sur-Vilaine ,SAINTE ANNE SUR VILAINE,35390,35249,53,47.733333,-1.816667,2.29
+ Saint-Armel ,SAINT ARMEL ,35230,35250,53,48.016667,-1.583333,1.52
+ Saint-Aubin-d'Aubigné ,SAINT AUBIN D AUBIGNE,35250,35251,53,48.25,-1.6,0.35
+ Saint-Aubin-des-Landes ,SAINT AUBIN DES LANDES,35500,35252,53,48.1,-1.3,1.31
+ Saint-Aubin-du-Cormier ,SAINT AUBIN DU CORMIER,35140,35253,53,48.266667,-1.4,0.91
+ Saint-Aubin-du-Pavail ,SAINT AUBIN DU PAVAIL,35410,35254,53,48.05,-1.466667,0.75
+ Saint-Benoît-des-Ondes ,SAINT BENOIT DES ONDES,35114,35255,53,48.616667,-1.85,2.12
+ Saint-Briac-sur-Mer ,SAINT BRIAC SUR MER,35800,35256,53,48.633333,-2.133333,2.2
+ Saint-Brice-en-Coglès ,SAINT BRICE EN COGLES,35460,35257,53,48.4,-1.366667,1.04
+ Saint-Brieuc-des-Iffs ,SAINT BRIEUC DES IFFS,35630,35258,53,48.3,-1.85,0.99
+ Saint-Broladre ,SAINT BROLADRE ,35120,35259,53,48.583333,-1.65,1.95
+ Saint-Christophe-des-Bois ,SAINT CHRISTOPHE DES BOIS,35210,35260,53,48.233333,-1.25,1.5
+ Saint-Christophe-de-Valains ,SAINT CHRISTOPHE DE VALAINS,35140,35261,53,48.35,-1.45,1.39
+ Sainte-Colombe ,SAINTE COLOMBE ,35134,35262,53,47.883333,-1.45,1.54
+ Saint-Coulomb ,SAINT COULOMB ,35350,35263,53,48.683333,-1.9,2.45
+ Saint-Didier ,SAINT DIDIER ,35220,35264,53,48.1,-1.366667,1.04
+ Saint-Domineuc ,SAINT DOMINEUC ,35190,35265,53,48.366667,-1.866667,1.31
+ Saint-Erblon ,SAINT ERBLON ,35230,35266,53,48.016667,-1.65,0.88
+ Saint-Étienne-en-Coglès ,SAINT ETIENNE EN COGLES,35460,35267,53,48.4,-1.333333,1.17
+ Saint-Ganton ,SAINT GANTON ,35550,35268,53,47.75,-1.883333,2.21
+ Saint-Georges-de-Chesné ,SAINT GEORGES DE CHESNE,35140,35269,53,48.266667,-1.283333,1.63
+ Saint-Georges-de-Gréhaigne ,SAINT GEORGES DE GREHAIGNE,35610,35270,53,48.566667,-1.55,1.87
+ Saint-Germain-du-Pinel ,SAINT GERMAIN DU PINEL,35370,35272,53,48.016667,-1.166667,1.83
+ Saint-Germain-en-Coglès ,SAINT GERMAIN EN COGLES,35133,35273,53,48.4,-1.25,1.5
+ Saint-Germain-sur-Ille ,SAINT GERMAIN SUR ILLE,35250,35274,53,48.25,-1.666667,1.2
+ Saint-Gilles ,SAINT GILLES ,35590,35275,53,48.15,-1.833333,0.8
+ Saint-Gondran ,SAINT GONDRAN ,35630,35276,53,48.266667,-1.833333,0.8
+ Saint-Gonlay ,SAINT GONLAY ,35750,35277,53,48.116667,-2.066667,1.72
+ Saint-Grégoire ,SAINT GREGOIRE ,35760,35278,53,48.15,-1.683333,1
+ Saint-Guinoux ,SAINT GUINOUX ,35430,35279,53,48.583333,-1.883333,1.95
+ Saint-Hilaire-des-Landes ,SAINT HILAIRE DES LANDES,35140,35280,53,48.35,-1.35,1.11
+ Saint-Jacques-de-la-Lande ,SAINT JACQUES DE LA,35136,35281,53,48.066667,-1.716667,0.63
+ Saint-Jean-sur-Couesnon ,SAINT JEAN SUR COUESNON,35140,35282,53,48.283333,-1.366667,1.04
+ Saint-Jean-sur-Vilaine ,SAINT JEAN SUR VILAINE,35220,35283,53,48.116667,-1.366667,1.04
+ Saint-Jouan-des-Guérets ,SAINT JOUAN DES GUERETS,35430,35284,53,48.6,-1.966667,2.03
+ Saint-Just ,SAINT JUST ,35550,35285,53,47.766667,-1.966667,2.13
+ Saint-Léger-des-Prés ,SAINT LEGER DES PRES,35270,35286,53,48.4,-1.65,1.46
+ Saint-Lunaire ,SAINT LUNAIRE ,35800,35287,53,48.633333,-2.116667,2.2
+ Saint-Malo ,SAINT MALO ,35400,35288,53,48.65,-2.016667,2.28
+ Saint-Malo-de-Phily ,SAINT MALO DE PHILY,35480,35289,53,47.866667,-1.783333,1.63
+ Saint-Marcan ,SAINT MARCAN ,35120,35291,53,48.583333,-1.633333,1.95
+ Saint-Marc-le-Blanc ,SAINT MARC LE BLANC,35460,35292,53,48.366667,-1.4,0.91
+ Saint-Marc-sur-Couesnon ,SAINT MARC SUR COUESNON,35140,35293,53,48.3,-1.366667,1.04
+ Sainte-Marie ,SAINTE MARIE ,35600,35294,53,47.7,-2,2.46
+ Saint-Maugan ,SAINT MAUGAN ,35750,35295,53,48.133333,-2.083333,1.78
+ Saint-Médard-sur-Ille ,SAINT MEDARD SUR ILLE,35250,35296,53,48.266667,-1.666667,1.23
+ Saint-Méen-le-Grand ,SAINT MEEN LE GRAND,35290,35297,53,48.183333,-2.2,2.24
+ Saint-Melaine ,SAINT MELAINE ,35220,35298,53,48.116667,-1.383333,0.98
+ Saint-Méloir-des-Ondes ,SAINT MELOIR DES ONDES,35350,35299,53,48.65,-1.9,2.28
+ Saint-M'hervé ,SAINT M HERVE ,35500,35300,53,48.183333,-1.116667,2.03
+ Saint-M'Hervon ,SAINT M HERVON ,35360,35301,53,48.233333,-2.05,1.65
+ Saint-Onen-la-Chapelle ,SAINT ONEN LA CHAPELLE,35290,35302,53,48.166667,-2.166667,2.11
+ Saint-Ouen-des-Alleux ,SAINT OUEN DES ALLEUX,35140,35304,53,48.333333,-1.416667,0.85
+ Saint-Péran ,SAINT PERAN ,35380,35305,53,48.05,-2.05,1.65
+ Saint-Père ,SAINT PERE ,35430,35306,53,48.583333,-1.916667,1.95
+ Saint-Pern ,SAINT PERN ,35190,35307,53,48.283333,-1.983333,1.78
+ Saint-Pierre-de-Plesguen ,SAINT PIERRE DE PLESGUEN,35720,35308,53,48.45,-1.916667,1.29
+ Saint-Rémy-du-Plein ,SAINT REMY DU PLEIN,35560,35309,53,48.366667,-1.566667,0.87
+ Saint-Sauveur-des-Landes ,SAINT SAUVEUR DES LANDES,35133,35310,53,48.333333,-1.316667,1.75
+ Saint-Séglin ,SAINT SEGLIN ,35330,35311,53,47.85,-2,1.71
+ Saint-Senoux ,SAINT SENOUX ,35580,35312,53,47.9,-1.783333,1.53
+ Saint-Servan-sur-Mer ,SAINT SERVAN SUR MER,35400,35313,53,48.633333,-2.016667,2.2
+ Saint-Suliac ,SAINT SULIAC ,35430,35314,53,48.566667,-1.966667,1.87
+ Saint-Sulpice-la-Forêt ,SAINT SULPICE LA FORET,35250,35315,53,48.216667,-1.583333,1.12
+ Saint-Symphorien ,SAINT SYMPHORIEN ,35630,35317,53,48.283333,-1.833333,0.8
+ Saint-Thual ,SAINT THUAL ,35190,35318,53,48.333333,-1.933333,1.19
+ Saint-Thurial ,SAINT THURIAL ,35310,35319,53,48.033333,-1.933333,1.77
+ Saint-Uniac ,SAINT UNIAC ,35360,35320,53,48.166667,-2.033333,1.58
+ Saulnières ,SAULNIERES ,35320,35321,53,47.916667,-1.583333,1.38
+ La Selle-en-Coglès ,LA SELLE EN COGLES,35460,35323,53,48.433333,-1.35,1.2
+ La Selle-en-Luitré ,LA SELLE EN LUITRE,35133,35324,53,48.3,-1.133333,1.96
+ La Selle-Guerchaise ,LA SELLE GUERCHAISE ,35130,35325,53,47.95,-1.166667,1.83
+ Sens-de-Bretagne ,SENS DE BRETAGNE ,35490,35326,53,48.333333,-1.55,1.28
+ Servon-sur-Vilaine ,SERVON SUR VILAINE ,35530,35327,53,48.116667,-1.45,1.5
+ Sixt-sur-Aff ,SIXT SUR AFF ,35550,35328,53,47.783333,-2.083333,2.04
+ Sougéal ,SOUGEAL ,35610,35329,53,48.516667,-1.516667,1.62
+ Taillis ,TAILLIS ,35500,35330,53,48.183333,-1.233333,1.57
+ Talensac ,TALENSAC ,35160,35331,53,48.1,-1.933333,1.19
+ Teillay ,TEILLAY ,35620,35332,53,47.8,-1.533333,1.96
+ Le Theil-de-Bretagne ,LE THEIL DE BRETAGNE,35240,35333,53,47.916667,-1.433333,1.38
+ Thourie ,THOURIE ,35134,35335,53,47.85,-1.483333,1.71
+ Le Tiercent ,LE TIERCENT ,35460,35336,53,48.35,-1.4,1.09
+ Tinténiac ,TINTENIAC ,35190,35337,53,48.316667,-1.85,1.2
+ Torcé ,TORCE ,35370,35338,53,48.066667,-1.266667,2.01
+ Trans ,TRANS ,35610,35339,53,48.5,-1.6,1.54
+ Treffendel ,TREFFENDEL ,35380,35340,53,48.033333,-2,1.45
+ Tremblay ,TREMBLAY ,35460,35341,53,48.416667,-1.466667,1.71
+ Tréméheuc ,TREMEHEUC ,35270,35342,53,48.433333,-1.7,1.2
+ Tresboeuf ,TRESBOEUF ,35320,35343,53,47.883333,-1.55,1.54
+ Tressé ,TRESSE ,35720,35344,53,48.483333,-1.883333,1.45
+ Trévérien ,TREVERIEN ,35190,35345,53,48.366667,-1.933333,1.19
+ Trimer ,TRIMER ,35190,35346,53,48.333333,-1.883333,0.99
+ Val-d'Izé ,VAL D IZE ,35450,35347,53,48.183333,-1.3,1.31
+ Vendel ,VENDEL ,35140,35348,53,48.3,-1.316667,1.24
+ Vergéal ,VERGEAL ,35680,35350,53,48.033333,-1.266667,1.44
+ Le Verger ,LE VERGER ,35160,35351,53,48.06958,-1.93374,-1
+ Vern-sur-Seiche ,VERN SUR SEICHE ,35770,35352,53,48.05,-1.6,0.71
+ Vezin-le-Coquet ,VEZIN LE COQUET ,35132,35353,53,48.116667,-1.75,0.47
+ Vieux-Viel ,VIEUX VIEL ,35610,35354,53,48.516667,-1.55,1.62
+ Vieux-Vy-sur-Couesnon ,VIEUX VY SUR COUESNON,35490,35355,53,48.35,-1.483333,0.79
+ Vignoc ,VIGNOC ,35630,35356,53,48.25,-1.783333,1.4
+ Villamée ,VILLAMEE ,35420,35357,53,48.466667,-1.216667,1.63
+ La Ville-ès-Nonais ,LA VILLE ES NONAIS,35430,35358,53,48.55,-1.95,1.78
+ Visseiche ,VISSEICHE ,35130,35359,53,47.95,-1.3,1.36
+ Vitré ,VITRE ,35500,35360,53,48.133333,-1.2,1.7
+ Le Vivier-sur-Mer ,LE VIVIER SUR MER,35960,35361,53,48.6,-1.783333,2.03
+ Le Tronchet ,LE TRONCHET ,35540,35362,53,48.483333,-1.833333,1.45
+ Le Châtellier ,LE CHATELLIER ,35470,35904,53,47.866667,-1.666667,1.63
+ Pont-Réan ,PONT REAN ,35170,35906,53,48,-1.783333,1
+ Rothéneuf ,ROTHENEUF ,35400,35907,53,48.683333,-1.966667,2.45
+ Vieux Bourg ,VIEUX BOURG ,35540,35908,53,47.683333,-1.6,2.54
+ Vildé la Marine ,VILDE LA MARINE ,35120,35909,53,48.616667,-1.833333,2.12
+ Moigné ,MOIGNE ,35650,35910,53,48.083333,-1.766667,1
+ Aigurande ,AIGURANDE ,36140,36001,24,46.433333,1.833333,1.65
+ Aize ,AIZE ,36150,36002,24,47.1,1.7,1.61
+ Ambrault ,AMBRAULT ,36120,36003,24,46.783333,1.966667,1.4
+ Anjouin ,ANJOUIN ,36210,36004,24,47.2,1.783333,2.09
+ Ardentes ,ARDENTES ,36120,36005,24,46.75,1.833333,0.89
+ Argenton-sur-Creuse ,ARGENTON SUR CREUSE ,36200,36006,24,46.583333,1.516667,0.92
+ Argy ,ARGY ,36500,36007,24,46.933333,1.433333,0.79
+ Arpheuilles ,ARPHEUILLES ,36700,36008,24,46.9,1.266667,1.41
+ Arthon ,ARTHON ,36330,36009,24,46.683333,1.7,0.64
+ Azay-le-Ferron ,AZAY LE FERRON ,36290,36010,24,46.85,1.066667,2.03
+ Bagneux ,BAGNEUX ,36210,36011,24,47.183333,1.75,2.01
+ Baraize ,BARAIZE ,36270,36012,24,46.483333,1.566667,1.4
+ Baudres ,BAUDRES ,36110,36013,24,47.05,1.566667,1.36
+ Bazaiges ,BAZAIGES ,36270,36014,24,46.5,1.533333,1.32
+ Bélâbre ,BELABRE ,36370,36016,24,46.55,1.166667,1.65
+ La Berthenoux ,LA BERTHENOUX ,36400,36017,24,46.65,2.066667,1.78
+ Le Blanc ,LE BLANC ,36300,36018,24,46.633333,1.066667,2.03
+ Bonneuil ,BONNEUIL ,36310,36020,24,46.366667,1.233333,1.97
+ Bouesse ,BOUESSE ,36200,36022,24,46.616667,1.683333,2.06
+ Bretagne ,BRETAGNE ,36110,36024,24,47,1.7,1.25
+ Briantes ,BRIANTES ,36400,36025,24,46.55,2.016667,1.59
+ Brion ,BRION ,36110,36026,24,46.95,1.733333,1.68
+ Brives ,BRIVES ,36100,36027,24,46.85,1.95,1.34
+ La Buxerette ,LA BUXERETTE ,36140,36028,24,46.5,1.8,1.32
+ Buxeuil ,BUXEUIL ,36150,36029,24,47.133333,1.683333,1.86
+ Buxières-d'Aillac ,BUXIERES D AILLAC ,36230,36030,24,46.633333,1.75,1.53
+ Buzançais ,BUZANCAIS ,36500,36031,24,46.883333,1.416667,0.7
+ Ceaulmont ,CEAULMONT ,36200,36032,24,46.516667,1.583333,1.24
+ Célon ,CELON ,36200,36033,24,46.516667,1.5,1.51
+ Chabris ,CHABRIS ,36210,36034,24,47.25,1.65,2.34
+ Chaillac ,CHAILLAC ,36310,36035,24,46.433333,1.3,1.65
+ Chalais ,CHALAIS ,36370,36036,24,46.533333,1.2,1.52
+ La Champenoise ,LA CHAMPENOISE ,36100,36037,24,46.933333,1.8,1.58
+ Champillet ,CHAMPILLET ,36160,36038,24,46.55,2.116667,1.97
+ Chantôme ,CHANTOME ,36270,36039,24,46.416667,1.55,1.73
+ La Chapelle-Orthemale ,LA CHAPELLE ORTHEMALE ,36500,36040,24,46.833333,1.45,0.57
+ La Chapelle-Saint-Laurian ,LA CHAPELLE SAINT LAURIAN,36150,36041,24,47.05,1.783333,1.36
+ Chasseneuil ,CHASSENEUIL ,36800,36042,24,46.633333,1.483333,1.37
+ Chassignolles ,CHASSIGNOLLES ,36400,36043,24,46.533333,1.933333,1.69
+ Châteauroux ,CHATEAUROUX ,36000,36044,24,46.816667,1.7,0.38
+ Châtillon-sur-Indre ,CHATILLON SUR INDRE ,36700,36045,24,46.983333,1.166667,1.65
+ La Châtre ,LA CHATRE ,36400,36046,24,46.583333,1.983333,1.46
+ La Châtre-Langlin ,LA CHATRE LANGLIN ,36170,36047,24,46.416667,1.383333,1.73
+ Chavin ,CHAVIN ,36200,36048,24,46.566667,1.616667,1
+ Chazelet ,CHAZELET ,36170,36049,24,46.516667,1.45,1.24
+ Chézelles ,CHEZELLES ,36500,36050,24,46.883333,1.566667,1.57
+ Chitray ,CHITRAY ,36800,36051,24,46.616667,1.366667,0.89
+ Chouday ,CHOUDAY ,36100,36052,24,46.916667,2.066667,1.78
+ Ciron ,CIRON ,36300,36053,24,46.616667,1.25,1.35
+ Cléré-du-Bois ,CLERE DU BOIS ,36700,36054,24,46.916667,1.1,1.9
+ Clion ,CLION ,36700,36055,24,46.933333,1.233333,1.39
+ Cluis ,CLUIS ,36340,36056,24,46.55,1.75,1.08
+ Coings ,COINGS ,36130,36057,24,46.883333,1.716667,0.95
+ Concremiers ,CONCREMIERS ,36300,36058,24,46.6,1.016667,2.22
+ Crevant ,CREVANT ,36140,36060,24,46.366667,2.516667,-1
+ Crozon-sur-Vauvre ,CROZON SUR VAUVRE ,36140,36061,24,46.483333,1.866667,1.4
+ Cuzion ,CUZION ,36190,36062,24,46.483333,1.6,1.4
+ Déols ,DEOLS ,36130,36063,24,46.833333,1.7,1.07
+ Diors ,DIORS ,36130,36064,24,46.816667,1.816667,1.51
+ Diou ,DIOU ,36260,36065,24,47.05,2.05,1.72
+ Douadic ,DOUADIC ,36300,36066,24,46.7,1.116667,1.84
+ Dunet ,DUNET ,36310,36067,24,46.466667,1.3,1.48
+ Dun-le-Poëlier ,DUN LE POELIER ,36210,36068,24,47.2,1.75,2.09
+ Écueillé ,ECUEILLE ,36240,36069,24,47.083333,1.35,1.53
+ Étrechet ,ETRECHET ,36120,36071,24,46.766667,1.766667,1.38
+ Feusines ,FEUSINES ,36160,36073,24,46.516667,2.1,1.91
+ Fléré-la-Rivière ,FLERE LA RIVIERE ,36700,36074,24,47.016667,1.1,1.9
+ Fontenay ,FONTENAY ,36150,36075,24,47.05,1.733333,1.36
+ Fontgombault ,FONTGOMBAULT ,36220,36076,24,46.683333,0.983333,2.35
+ Fontguenand ,FONTGUENAND ,36600,36077,24,47.216667,1.533333,2.18
+ Fougerolles ,FOUGEROLLES ,36230,36078,24,46.566667,1.866667,1.02
+ Francillon ,FRANCILLON ,36110,36079,24,46.983333,1.55,1.04
+ Frédillé ,FREDILLE ,36180,36080,24,47,1.466667,1.13
+ Gargilesse-Dampierre ,GARGILESSE DAMPIERRE ,36190,36081,24,46.516667,1.6,1.24
+ Gehée ,GEHEE ,36240,36082,24,47.033333,1.5,1.28
+ Giroux ,GIROUX ,36150,36083,24,47.066667,1.9,1.62
+ Gournay ,GOURNAY ,36230,36084,24,46.583333,1.733333,1.75
+ Guilly ,GUILLY ,36150,36085,24,47.066667,1.716667,1.44
+ Ingrandes ,INGRANDES ,36300,36087,24,46.6,0.966667,2.41
+ Issoudun ,ISSOUDUN ,36100,36088,24,46.95,2,1.53
+ Jeu-les-Bois ,JEU LES BOIS ,36120,36089,24,46.666667,1.8,1.43
+ Jeu-Maloches ,JEU MALOCHES ,36240,36090,24,47.033333,1.45,1.28
+ Lacs ,LACS ,36400,36091,24,46.583333,2.016667,1.59
+ Langé ,LANGE ,36600,36092,24,47.066667,1.516667,1.49
+ Levroux ,LEVROUX ,36110,36093,24,46.983333,1.616667,1.04
+ Lignac ,LIGNAC ,36370,36094,24,46.466667,1.216667,1.48
+ Lignerolles ,LIGNEROLLES ,36160,36095,24,46.483333,2.133333,2.04
+ Lingé ,LINGE ,36220,36096,24,46.75,1.083333,1.97
+ Liniez ,LINIEZ ,36150,36097,24,47.016667,1.75,1.2
+ Lizeray ,LIZERAY ,36100,36098,24,46.966667,1.9,1.15
+ Lourdoueix-Saint-Michel ,LOURDOUEIX SAINT MICHEL ,36140,36099,24,46.433333,1.733333,1.65
+ Lourouer-Saint-Laurent ,LOUROUER SAINT LAURENT ,36400,36100,24,46.633333,2.016667,1.59
+ Luant ,LUANT ,36350,36101,24,46.733333,1.55,1
+ Luçay-le-Libre ,LUCAY LE LIBRE ,36150,36102,24,47.083333,1.9,1.63
+ Luçay-le-Mâle ,LUCAY LE MALE ,36360,36103,24,47.116667,1.433333,1.69
+ Lurais ,LURAIS ,36220,36104,24,46.7,0.95,2.47
+ Lureuil ,LUREUIL ,36220,36105,24,46.75,1.033333,2.16
+ Luzeret ,LUZERET ,36800,36106,24,46.55,1.4,1.31
+ Lye ,LYE ,36600,36107,24,47.216667,1.483333,2.18
+ Le Magny ,LE MAGNY ,36400,36109,24,46.55,1.966667,1.4
+ Maillet ,MAILLET ,36340,36110,24,46.566667,1.683333,1
+ Malicornay ,MALICORNAY ,36340,36111,24,46.583333,1.65,1.33
+ Mâron ,MARON ,36120,36112,24,46.8,1.866667,1.02
+ Martizay ,MARTIZAY ,36220,36113,24,46.8,1.033333,2.16
+ Mauvières ,MAUVIERES ,36370,36114,24,46.566667,1.083333,1.97
+ Menetou-sur-Nahon ,MENETOU SUR NAHON ,36210,36115,24,47.216667,1.65,2.18
+ Ménétréols-sous-Vatan ,MENETREOLS SOUS VATAN ,36150,36116,24,47.016667,1.85,1.2
+ Le Menoux ,LE MENOUX ,36200,36117,24,46.55,1.566667,1.08
+ Méobecq ,MEOBECQ ,36500,36118,24,46.733333,1.416667,1.5
+ Mérigny ,MERIGNY ,36220,36119,24,46.616667,0.916667,2.6
+ Mers-sur-Indre ,MERS SUR INDRE ,36230,36120,24,46.65,1.883333,1.08
+ Meunet-Planches ,MEUNET PLANCHES ,36100,36121,24,46.816667,1.95,1.34
+ Meunet-sur-Vatan ,MEUNET SUR VATAN ,36150,36122,24,47.083333,1.85,1.53
+ Mézières-en-Brenne ,MEZIERES EN BRENNE ,36290,36123,24,46.816667,1.216667,1.46
+ Migné ,MIGNE ,36800,36124,24,46.716667,1.316667,1.97
+ Migny ,MIGNY ,36260,36125,24,47.016667,2.066667,1.78
+ Montchevrier ,MONTCHEVRIER ,36140,36126,24,46.483333,1.75,1.4
+ Montgivray ,MONTGIVRAY ,36400,36127,24,46.6,1.983333,1.46
+ Montierchaume ,MONTIERCHAUME ,36130,36128,24,46.866667,1.766667,0.64
+ Montipouret ,MONTIPOURET ,36230,36129,24,46.65,1.9,1.2
+ Mosnay ,MOSNAY ,36200,36131,24,46.616667,1.6,0.9
+ La Motte-Feuilly ,LA MOTTE FEUILLY ,36160,36132,24,46.533333,2.083333,1.85
+ Mouhers ,MOUHERS ,36340,36133,24,46.566667,1.783333,1.29
+ Mouhet ,MOUHET ,36170,36134,24,46.383333,1.433333,1.89
+ Moulins-sur-Céphons ,MOULINS SUR CEPHONS ,36110,36135,24,47.016667,1.55,1.2
+ Murs ,MURS ,36700,36136,24,46.9,1.15,1.71
+ Néons-sur-Creuse ,NEONS SUR CREUSE ,36220,36137,24,46.733333,0.916667,2.6
+ Néret ,NERET ,36400,36138,24,46.566667,2.15,2.1
+ Neuillay-les-Bois ,NEUILLAY LES BOIS ,36500,36139,24,46.766667,1.483333,1.33
+ Neuvy-Pailloux ,NEUVY PAILLOUX ,36100,36140,24,46.883333,1.85,1.03
+ Neuvy-Saint-Sépulchre ,NEUVY SAINT SEPULCHRE ,36230,36141,24,46.6,1.816667,0.83
+ Niherne ,NIHERNE ,36250,36142,24,46.833333,1.566667,1.07
+ Nuret-le-Ferron ,NURET LE FERRON ,36800,36144,24,46.666667,1.433333,0.81
+ Obterre ,OBTERRE ,36290,36145,24,46.9,1.033333,2.16
+ Orsennes ,ORSENNES ,36190,36146,24,46.483333,1.683333,1.4
+ Oulches ,OULCHES ,36800,36148,24,46.616667,1.3,1.65
+ Palluau-sur-Indre ,PALLUAU SUR INDRE ,36500,36149,24,46.95,1.316667,1.36
+ Parnac ,PARNAC ,36170,36150,24,46.45,1.45,1.56
+ Parpeçay ,PARPECAY ,36210,36151,24,47.2,1.65,2.09
+ Paudy ,PAUDY ,36260,36152,24,47.033333,1.916667,1.66
+ Paulnay ,PAULNAY ,36290,36153,24,46.85,1.15,1.71
+ Le Pêchereau ,LE PECHEREAU ,36200,36154,24,46.583333,1.55,0.91
+ Pellevoisin ,PELLEVOISIN ,36180,36155,24,46.983333,1.416667,1.48
+ Pérassay ,PERASSAY ,36160,36156,24,46.466667,2.15,2.1
+ La Pérouille ,LA PEROUILLE ,36350,36157,24,46.683333,1.516667,1
+ Badecon-le-Pin ,BADECON LE PIN ,36200,36158,24,46.516667,1.583333,1.24
+ Le Poinçonnet ,LE POINCONNET ,36330,36159,24,46.766667,1.716667,1.33
+ Pommiers ,POMMIERS ,36190,36160,24,46.516667,1.65,1.24
+ Pont-Chrétien-Chabenet ,PONT CHRETIEN CHABENET ,36800,36161,24,46.616667,1.466667,1.11
+ Poulaines ,POULAINES ,36210,36162,24,47.15,1.666667,1.85
+ Pouligny-Notre-Dame ,POULIGNY NOTRE DAME ,36160,36163,24,46.483333,2.016667,1.59
+ Pouligny-Saint-Martin ,POULIGNY SAINT MARTIN ,36160,36164,24,46.516667,2,1.57
+ Pouligny-Saint-Pierre ,POULIGNY SAINT PIERRE ,36300,36165,24,46.683333,1.033333,2.16
+ Préaux ,PREAUX ,36240,36166,24,47.016667,1.283333,1.37
+ Preuilly-la-Ville ,PREUILLY LA VILLE ,36220,36167,24,46.683333,0.966667,2.41
+ Prissac ,PRISSAC ,36370,36168,24,46.516667,1.316667,1.83
+ Reboursin ,REBOURSIN ,36150,36170,24,47.1,1.816667,1.61
+ Reuilly ,REUILLY ,36260,36171,24,47.083333,2.05,1.72
+ Rivarennes ,RIVARENNES ,36800,36172,24,46.616667,1.383333,0.82
+ Rosnay ,ROSNAY ,36300,36173,24,46.7,1.216667,1.46
+ Roussines ,ROUSSINES ,36170,36174,24,46.466667,1.383333,1.48
+ Rouvres-les-Bois ,ROUVRES LES BOIS ,36110,36175,24,47.066667,1.65,1.44
+ Ruffec ,RUFFEC ,36300,36176,24,46.633333,1.166667,1.65
+ Sacierges-Saint-Martin ,SACIERGES SAINT MARTIN ,36170,36177,24,46.5,1.366667,1.32
+ Saint-Aigny ,SAINT AIGNY ,36300,36178,24,46.633333,1.016667,2.22
+ Saint-Aoustrille ,SAINT AOUSTRILLE ,36100,36179,24,46.933333,1.933333,1.27
+ Saint-Août ,SAINT AOUT ,36120,36180,24,46.716667,1.966667,1.4
+ Saint-Aubin ,SAINT AUBIN ,36100,36181,24,46.85,2.033333,1.66
+ Saint-Benoît-du-Sault ,SAINT BENOIT DU SAULT,36170,36182,24,46.45,1.4,1.56
+ Sainte-Cécile ,SAINTE CECILE ,36210,36183,24,47.183333,1.666667,2.01
+ Saint-Chartier ,SAINT CHARTIER ,36400,36184,24,46.65,1.966667,1.4
+ Saint-Christophe-en-Bazelle ,SAINT CHRISTOPHE EN BAZELLE,36210,36185,24,47.183333,1.716667,2.01
+ Saint-Civran ,SAINT CIVRAN ,36170,36187,24,46.5,1.4,1.32
+ Saint-Cyran-du-Jambot ,SAINT CYRAN DU JAMBOT,36700,36188,24,47.016667,1.133333,1.78
+ Saint-Denis-de-Jouhet ,SAINT DENIS DE JOUHET,36230,36189,24,46.533333,1.866667,1.2
+ Sainte-Fauste ,SAINTE FAUSTE ,36100,36190,24,46.85,1.866667,1.02
+ Saint-Florentin ,SAINT FLORENTIN ,36150,36191,24,47.066667,1.783333,1.44
+ Saint-Gaultier ,SAINT GAULTIER ,36800,36192,24,46.633333,1.416667,0.7
+ Sainte-Gemme ,SAINTE GEMME ,36500,36193,24,46.85,1.333333,1.01
+ Saint-Genou ,SAINT GENOU ,36500,36194,24,46.933333,1.333333,1.11
+ Saint-Georges-sur-Arnon ,SAINT GEORGES SUR ARNON,36100,36195,24,47,2.1,1.91
+ Saint-Gilles ,SAINT GILLES ,36170,36196,24,46.483333,1.466667,1.4
+ Saint-Hilaire-sur-Bénaize ,SAINT HILAIRE SUR BENAIZE,36370,36197,24,46.566667,1.083333,1.97
+ Saint-Lactencin ,SAINT LACTENCIN ,36500,36198,24,46.883333,1.483333,0.69
+ Sainte-Lizaigne ,SAINTE LIZAIGNE ,36260,36199,24,47,2.016667,1.59
+ Saint-Marcel ,SAINT MARCEL ,36200,36200,24,46.6,1.516667,1.01
+ Saint-Martin-de-Lamps ,SAINT MARTIN DE LAMPS,36110,36201,24,46.983333,1.516667,1.04
+ Saint-Maur ,SAINT MAUR ,36250,36202,24,46.8,1.633333,0.96
+ Saint-Médard ,SAINT MEDARD ,36700,36203,24,47,1.25,1.33
+ Saint-Michel-en-Brenne ,SAINT MICHEL EN BRENNE,36290,36204,24,46.8,1.166667,1.65
+ Saint-Pierre-de-Jards ,SAINT PIERRE DE JARDS,36260,36205,24,47.1,1.983333,1.61
+ Saint-Pierre-de-Lamps ,SAINT PIERRE DE LAMPS,36110,36206,24,46.966667,1.5,1.24
+ Saint-Plantaire ,SAINT PLANTAIRE ,36190,36207,24,46.458333,1.675,1.52
+ Sainte-Sévère-sur-Indre ,SAINTE SEVERE SUR INDRE,36160,36208,24,46.483333,2.066667,1.78
+ Saint-Valentin ,SAINT VALENTIN ,36100,36209,24,46.95,1.866667,1.02
+ Sarzay ,SARZAY ,36230,36210,24,46.6,1.9,1.15
+ Sassierges-Saint-Germain ,SASSIERGES SAINT GERMAIN ,36120,36211,24,46.766667,1.9,1.15
+ Saulnay ,SAULNAY ,36290,36212,24,46.866667,1.266667,1.56
+ Sauzelles ,SAUZELLES ,36220,36213,24,46.65,1,2.28
+ Sazeray ,SAZERAY ,36160,36214,24,46.433333,2.05,1.72
+ Ségry ,SEGRY ,36100,36215,24,46.883333,2.083333,1.85
+ Selles-sur-Nahon ,SELLES SUR NAHON ,36180,36216,24,47,1.45,1.12
+ Sembleçay ,SEMBLECAY ,36210,36217,24,47.216667,1.666667,2.18
+ Sougé ,SOUGE ,36500,36218,24,46.95,1.483333,1.06
+ Tendu ,TENDU ,36200,36219,24,46.633333,1.55,1.08
+ Thenay ,THENAY ,36800,36220,24,46.633333,1.433333,0.67
+ Thevet-Saint-Julien ,THEVET SAINT JULIEN ,36400,36221,24,46.65,2.066667,1.78
+ Thizay ,THIZAY ,36100,36222,24,46.9,1.9,1.15
+ Tilly ,TILLY ,36310,36223,24,46.416667,1.2,1.73
+ Tournon-Saint-Martin ,TOURNON SAINT MARTIN ,36220,36224,24,46.733333,0.95,2.47
+ Le Tranger ,LE TRANGER ,36700,36225,24,46.95,1.233333,1.39
+ Tranzault ,TRANZAULT ,36230,36226,24,46.616667,1.85,0.96
+ Urciers ,URCIERS ,36160,36227,24,46.533333,2.133333,-1
+ Valençay ,VALENCAY ,36600,36228,24,47.15,1.566667,1.85
+ Varennes-sur-Fouzon ,VARENNES SUR FOUZON ,36210,36229,24,47.216667,1.6,2.18
+ Vatan ,VATAN ,36150,36230,24,47.066667,1.816667,1.44
+ Velles ,VELLES ,36330,36231,24,46.683333,1.65,1.03
+ Vendoeuvres ,VENDOEUVRES ,36500,36232,24,46.8,1.35,1.08
+ La Vernelle ,LA VERNELLE ,36600,36233,24,47.233333,1.533333,2.26
+ Verneuil-sur-Igneraie ,VERNEUIL SUR IGNERAIE ,36400,36234,24,46.65,2.016667,1.59
+ Veuil ,VEUIL ,36600,36235,24,47.116667,1.516667,1.69
+ Vicq-Exemplet ,VICQ EXEMPLET ,36400,36236,24,46.633333,2.133333,2.04
+ Vicq-sur-Nahon ,VICQ SUR NAHON ,36600,36237,24,47.1,1.533333,1.61
+ Vigoulant ,VIGOULANT ,36160,36238,24,46.433333,2.066667,1.78
+ Vigoux ,VIGOUX ,36170,36239,24,46.516667,1.483333,1.47
+ Vijon ,VIJON ,36160,36240,24,46.433333,2.116667,1.97
+ Villedieu-sur-Indre ,VILLEDIEU SUR INDRE ,36320,36241,24,46.85,1.533333,0.39
+ Villegongis ,VILLEGONGIS ,36110,36242,24,46.9,1.583333,1.02
+ Villegouin ,VILLEGOUIN ,36500,36243,24,46.966667,1.383333,1.05
+ Villentrois ,VILLENTROIS ,36600,36244,24,47.183333,1.466667,2.01
+ Villers-les-Ormes ,VILLERS LES ORMES ,36250,36245,24,46.866667,1.633333,0.96
+ Vineuil ,VINEUIL ,36110,36247,24,46.9,1.633333,1.08
+ Vouillon ,VOUILLON ,36100,36248,24,46.816667,1.916667,1.21
+ Scoury ,SCOURY ,36300,36910,24,46.633333,1.283333,1.65
+ Ambillou ,AMBILLOU ,37340,37002,24,47.45,0.45,2.09
+ Amboise ,AMBOISE ,37530,37003,24,47.416667,0.983333,1.29
+ Anché ,ANCHE ,37500,37004,24,47.133333,0.3,1.43
+ Artannes-sur-Indre ,ARTANNES SUR INDRE ,37260,37006,24,47.266667,0.6,0.68
+ Athée-sur-Cher ,ATHEE SUR CHER ,37270,37008,24,47.316667,0.916667,1.54
+ Autrèche ,AUTRECHE ,37110,37009,24,47.533333,1,1.63
+ Auzouer-en-Touraine ,AUZOUER EN TOURAINE ,37110,37010,24,47.55,0.916667,1.73
+ Avoine ,AVOINE ,37420,37011,24,47.2,0.183333,1.9
+ Avon-les-Roches ,AVON LES ROCHES ,37220,37012,24,47.15,0.45,0.94
+ Avrillé-les-Ponceaux ,AVRILLE LES PONCEAUX ,37340,37013,24,47.4,0.283333,1.5
+ Azay-le-Rideau ,AZAY LE RIDEAU ,37190,37014,24,47.266667,0.466667,0.77
+ Azay-sur-Cher ,AZAY SUR CHER ,37270,37015,24,47.35,0.85,0.76
+ Azay-sur-Indre ,AZAY SUR INDRE ,37310,37016,24,47.2,0.95,1.16
+ Ballan-Miré ,BALLAN MIRE ,37510,37018,24,47.333333,0.616667,1.41
+ Barrou ,BARROU ,37350,37019,24,46.866667,0.766667,2.32
+ Beaulieu-lès-Loches ,BEAULIEU LES LOCHES ,37600,37020,24,47.116667,1.016667,1.42
+ Beaumont-la-Ronce ,BEAUMONT LA RONCE ,37360,37021,24,47.566667,0.666667,1.83
+ Beaumont-en-Véron ,BEAUMONT EN VERON ,37420,37022,24,47.2,0.183333,1.9
+ Beaumont-Village ,BEAUMONT VILLAGE ,37460,37023,24,47.166667,1.2,2.15
+ Benais ,BENAIS ,37140,37024,24,47.283333,0.216667,1.77
+ Berthenay ,BERTHENAY ,37510,37025,24,47.366667,0.516667,1.06
+ Betz-le-Château ,BETZ LE CHATEAU ,37600,37026,24,46.983333,0.916667,1.62
+ Bléré ,BLERE ,37150,37027,24,47.333333,1,1.36
+ Bossay-sur-Claise ,BOSSAY SUR CLAISE ,37290,37028,24,46.833333,0.95,2.51
+ Bossée ,BOSSEE ,37240,37029,24,47.1,0.733333,1.17
+ Bourgueil ,BOURGUEIL ,37140,37031,24,47.283333,0.166667,1.97
+ Bournan ,BOURNAN ,37240,37032,24,47.066667,0.733333,1.13
+ Boussay ,BOUSSAY ,37290,37033,24,46.833333,0.883333,2.51
+ Braslou ,BRASLOU ,37120,37034,24,47,0.383333,1.53
+ Braye-sous-Faye ,BRAYE SOUS FAYE ,37120,37035,24,47,0.35,1.53
+ Braye-sur-Maulne ,BRAYE SUR MAULNE ,37330,37036,24,47.55,0.25,1.73
+ Brèches ,BRECHES ,37330,37037,24,47.566667,0.383333,1.83
+ Bréhémont ,BREHEMONT ,37130,37038,24,47.3,0.35,1.24
+ Bridoré ,BRIDORE ,37600,37039,24,47.016667,1.083333,1.69
+ Brizay ,BRIZAY ,37220,37040,24,47.1,0.4,1.04
+ Candes-Saint-Martin ,CANDES SAINT MARTIN ,37500,37042,24,47.216667,0.083333,2.3
+ Cangey ,CANGEY ,37530,37043,24,47.466667,1.066667,1.62
+ La Celle-Guénand ,LA CELLE GUENAND ,37350,37044,24,46.933333,0.9,1.92
+ La Celle-Saint-Avant ,LA CELLE SAINT AVANT,37160,37045,24,47.016667,0.6,1.43
+ Céré-la-Ronde ,CERE LA RONDE ,37460,37046,24,47.266667,1.183333,2.09
+ Cerelles ,CERELLES ,37390,37047,24,47.5,0.683333,1.43
+ Chambourg-sur-Indre ,CHAMBOURG SUR INDRE ,37310,37049,24,47.183333,0.966667,1.22
+ Chambray-lès-Tours ,CHAMBRAY LES TOURS ,37170,37050,24,47.333333,0.716667,0.45
+ Champigny-sur-Veude ,CHAMPIGNY SUR VEUDE ,37120,37051,24,47.066667,0.316667,1.43
+ Chançay ,CHANCAY ,37210,37052,24,47.45,0.866667,1.14
+ Chanceaux-près-Loches ,CHANCEAUX PRES LOCHES ,37600,37053,24,47.15,0.933333,1.35
+ Chanceaux-sur-Choisille ,CHANCEAUX SUR CHOISILLE ,37390,37054,24,47.466667,0.7,1.23
+ Channay-sur-Lathan ,CHANNAY SUR LATHAN ,37330,37055,24,47.483333,0.266667,1.57
+ La Chapelle-aux-Naux ,LA CHAPELLE AUX NAUX,37130,37056,24,47.316667,0.416667,0.97
+ La Chapelle-Blanche-Saint-Martin ,LA CHAPELLE BLANCHE SAINT,37240,37057,24,47.083333,0.783333,1.03
+ La Chapelle-sur-Loire ,LA CHAPELLE SUR LOIRE,37140,37058,24,47.25,0.233333,1.7
+ Charentilly ,CHARENTILLY ,37390,37059,24,47.466667,0.616667,1.23
+ Chargé ,CHARGE ,37530,37060,24,47.433333,1.033333,1.49
+ Charnizay ,CHARNIZAY ,37290,37061,24,46.916667,0.983333,2.02
+ Château-la-Vallière ,CHATEAU LA VALLIERE ,37330,37062,24,47.55,0.316667,1.73
+ Château-Renault ,CHATEAU RENAULT ,37110,37063,24,47.583333,0.916667,1.93
+ Chaumussay ,CHAUMUSSAY ,37350,37064,24,46.866667,0.85,2.32
+ Chaveignes ,CHAVEIGNES ,37120,37065,24,47.033333,0.35,1.33
+ Chédigny ,CHEDIGNY ,37310,37066,24,47.2,1,1.36
+ Cheillé ,CHEILLE ,37190,37067,24,47.266667,0.416667,0.97
+ Chemillé-sur-Dême ,CHEMILLE SUR DEME ,37370,37068,24,47.65,0.65,2.32
+ Chemillé-sur-Indrois ,CHEMILLE SUR INDROIS ,37460,37069,24,47.15,1.166667,2.02
+ Chenonceaux ,CHENONCEAUX ,37150,37070,24,47.333333,1.066667,1.62
+ Chézelles ,CHEZELLES ,37220,37071,24,47.05,0.433333,1.23
+ Chinon ,CHINON ,37500,37072,24,47.166667,0.25,1.63
+ Chisseaux ,CHISSEAUX ,37150,37073,24,47.333333,1.083333,1.69
+ Chouzé-sur-Loire ,CHOUZE SUR LOIRE ,37140,37074,24,47.25,0.133333,2.1
+ Cigogné ,CIGOGNE ,37310,37075,24,47.25,0.933333,1.09
+ Cinais ,CINAIS ,37500,37076,24,47.15,0.166667,1.97
+ Cinq-Mars-la-Pile ,CINQ MARS LA PILE,37130,37077,24,47.35,0.466667,1.56
+ Ciran ,CIRAN ,37240,37078,24,47.066667,0.866667,1.13
+ Civray-de-Touraine ,CIVRAY DE TOURAINE ,37150,37079,24,47.333333,1.066667,1.62
+ Civray-sur-Esves ,CIVRAY SUR ESVES ,37160,37080,24,47.033333,0.716667,1.33
+ Cléré-les-Pins ,CLERE LES PINS ,37340,37081,24,47.416667,0.4,1.36
+ Continvoir ,CONTINVOIR ,37340,37082,24,47.383333,0.216667,1.77
+ Cormery ,CORMERY ,37320,37083,24,47.266667,0.85,1.14
+ Couesmes ,COUESMES ,37330,37084,24,47.566667,0.35,1.83
+ Courçay ,COURCAY ,37310,37085,24,47.25,0.866667,1.07
+ Courcelles-de-Touraine ,COURCELLES DE TOURAINE ,37330,37086,24,47.483333,0.3,1.43
+ Courcoué ,COURCOUE ,37120,37087,24,47.033333,0.383333,1.33
+ Couziers ,COUZIERS ,37500,37088,24,47.15,0.083333,2.3
+ Cravant-les-Coteaux ,CRAVANT LES COTEAUX ,37500,37089,24,47.15,0.35,1.76
+ Crissay-sur-Manse ,CRISSAY SUR MANSE ,37220,37090,24,47.133333,0.483333,1.16
+ La Croix-en-Touraine ,LA CROIX EN TOURAINE,37150,37091,24,47.333333,0.983333,1.29
+ Crotelles ,CROTELLES ,37380,37092,24,47.55,0.833333,1.73
+ Crouzilles ,CROUZILLES ,37220,37093,24,47.116667,0.45,0.84
+ Cussay ,CUSSAY ,37240,37094,24,47.016667,0.8,1.43
+ Dame-Marie-les-Bois ,DAME MARIE LES BOIS,37110,37095,24,47.533333,1.033333,1.63
+ Dierre ,DIERRE ,37150,37096,24,47.35,0.95,1.95
+ Dolus-le-Sec ,DOLUS LE SEC ,37310,37097,24,47.166667,0.9,0.96
+ Draché ,DRACHE ,37800,37098,24,47.05,0.616667,1.23
+ Druye ,DRUYE ,37190,37099,24,47.316667,0.516667,1.1
+ Épeigné-les-Bois ,EPEIGNE LES BOIS ,37150,37100,24,47.3,1.1,1.75
+ Épeigné-sur-Dême ,EPEIGNE SUR DEME ,37370,37101,24,47.666667,0.616667,2.42
+ Esves-le-Moutier ,ESVES LE MOUTIER ,37240,37103,24,47.033333,0.9,1.64
+ Esvres ,ESVRES ,37320,37104,24,47.283333,0.783333,0.78
+ Faye-la-Vineuse ,FAYE LA VINEUSE ,37120,37105,24,46.95,0.333333,1.82
+ Ferrière-Larçon ,FERRIERE LARCON ,37350,37107,24,46.983333,0.883333,1.62
+ Ferrière-sur-Beaulieu ,FERRIERE SUR BEAULIEU ,37600,37108,24,47.133333,1.033333,1.49
+ Fondettes ,FONDETTES ,37230,37109,24,47.4,0.6,1.32
+ Francueil ,FRANCUEIL ,37150,37110,24,47.316667,1.083333,1.69
+ Génillé ,GENILLE ,37460,37111,24,47.183333,1.1,1.75
+ Gizeux ,GIZEUX ,37340,37112,24,47.4,0.2,1.83
+ Le Grand-Pressigny ,LE GRAND PRESSIGNY ,37350,37113,24,46.916667,0.8,2.02
+ La Guerche ,LA GUERCHE ,37350,37114,24,46.883333,0.733333,2.22
+ Les Hermites ,LES HERMITES ,37110,37116,24,47.666667,0.75,2.42
+ Hommes ,HOMMES ,37340,37117,24,47.433333,0.3,1.43
+ Huismes ,HUISMES ,37420,37118,24,47.233333,0.25,1.63
+ L'Île Bouchard ,L ILE BOUCHARD ,37220,37119,24,47.116667,0.416667,0.97
+ Ingrandes-de-Touraine ,INGRANDES DE TOURAINE ,37140,37120,24,47.283333,0.266667,1.57
+ Jaulnay ,JAULNAY ,37120,37121,24,46.95,0.416667,1.82
+ Joué-lés-Tours ,JOUE LES TOURS ,37300,37122,24,47.35,0.666667,0.54
+ Langeais ,LANGEAIS ,37130,37123,24,47.333333,0.4,1.04
+ Larçay ,LARCAY ,37270,37124,24,47.366667,0.783333,1.35
+ Lémeré ,LEMERE ,37120,37125,24,47.083333,0.333333,1.46
+ Lerné ,LERNE ,37500,37126,24,47.15,0.133333,2.1
+ Le Liège ,LE LIEGE ,37460,37127,24,47.216667,1.1,1.75
+ Lignières-de-Touraine ,LIGNIERES DE TOURAINE ,37130,37128,24,47.3,0.416667,0.97
+ Ligré ,LIGRE ,37500,37129,24,47.116667,0.266667,1.57
+ Ligueil ,LIGUEIL ,37240,37130,24,47.033333,0.816667,1.33
+ Limeray ,LIMERAY ,37530,37131,24,47.466667,1.033333,1.49
+ Loches ,LOCHES ,37600,37132,24,47.133333,1,1.36
+ Loché-sur-Indrois ,LOCHE SUR INDROIS ,37460,37133,24,47.083333,1.216667,2.22
+ Louans ,LOUANS ,37320,37134,24,47.183333,0.75,1.58
+ Louestault ,LOUESTAULT ,37370,37135,24,47.616667,0.65,2.12
+ Le Louroux ,LE LOUROUX ,37240,37136,24,47.166667,0.783333,1.42
+ Lublé ,LUBLE ,37330,37137,24,47.516667,0.25,1.63
+ Lussault-sur-Loire ,LUSSAULT SUR LOIRE ,37400,37138,24,47.4,0.916667,1.02
+ Luynes ,LUYNES ,37230,37139,24,47.383333,0.55,0.74
+ Luzé ,LUZE ,37120,37140,24,47.016667,0.433333,1.43
+ Luzillé ,LUZILLE ,37150,37141,24,47.266667,1.066667,1.62
+ Maillé ,MAILLE ,37800,37142,24,47.05,0.583333,1.23
+ Manthelan ,MANTHELAN ,37240,37143,24,47.133333,0.783333,0.92
+ Marçay ,MARCAY ,37500,37144,24,47.1,0.216667,1.77
+ Marcé-sur-Esves ,MARCE SUR ESVES ,37160,37145,24,47.016667,0.65,1.43
+ Marcilly-sur-Maulne ,MARCILLY SUR MAULNE ,37330,37146,24,47.55,0.25,1.73
+ Marcilly-sur-Vienne ,MARCILLY SUR VIENNE ,37800,37147,24,47.033333,0.533333,1.33
+ Marigny-Marmande ,MARIGNY MARMANDE ,37120,37148,24,46.983333,0.483333,1.9
+ Mazières-de-Touraine ,MAZIERES DE TOURAINE ,37130,37150,24,47.383333,0.433333,1.45
+ Mettray ,METTRAY ,37390,37152,24,47.45,0.65,1.14
+ Monnaie ,MONNAIE ,37380,37153,24,47.5,0.783333,1.43
+ Montbazon ,MONTBAZON ,37250,37154,24,47.283333,0.716667,0.65
+ Monthodon ,MONTHODON ,37110,37155,24,47.65,0.833333,2.32
+ Montlouis-sur-Loire ,MONTLOUIS SUR LOIRE ,37270,37156,24,47.383333,0.833333,0.74
+ Montrésor ,MONTRESOR ,37460,37157,24,47.15,1.2,2.15
+ Montreuil-en-Touraine ,MONTREUIL EN TOURAINE ,37530,37158,24,47.483333,0.95,1.85
+ Monts ,MONTS ,37260,37159,24,47.283333,0.616667,1.22
+ Morand ,MORAND ,37110,37160,24,47.566667,1.016667,1.83
+ Mosnes ,MOSNES ,37530,37161,24,47.45,1.1,1.75
+ Mouzay ,MOUZAY ,37600,37162,24,47.083333,0.883333,1.54
+ Neuil ,NEUIL ,37190,37165,24,47.166667,0.5,1.37
+ Neuillé-le-Lierre ,NEUILLE LE LIERRE ,37380,37166,24,47.516667,0.916667,1.53
+ Neuillé-Pont-Pierre ,NEUILLE PONT PIERRE ,37360,37167,24,47.55,0.55,1.73
+ Neuilly-le-Brignon ,NEUILLY LE BRIGNON ,37160,37168,24,46.966667,0.783333,1.72
+ Neuvy-le-Roi ,NEUVY LE ROI ,37370,37170,24,47.6,0.6,2.02
+ Noizay ,NOIZAY ,37210,37171,24,47.416667,0.9,1.49
+ Notre-Dame-d'Oé ,NOTRE DAME D OE,37390,37172,24,47.45,0.716667,1.29
+ Nouans-les-Fontaines ,NOUANS LES FONTAINES ,37460,37173,24,47.133333,1.3,2.55
+ Nouâtre ,NOUATRE ,37800,37174,24,47.05,0.55,1.23
+ Nouzilly ,NOUZILLY ,37380,37175,24,47.55,0.75,1.73
+ Noyant-de-Touraine ,NOYANT DE TOURAINE ,37800,37176,24,47.1,0.55,0.93
+ Orbigny ,ORBIGNY ,37460,37177,24,47.2,1.233333,2.29
+ Panzoult ,PANZOULT ,37220,37178,24,47.133333,0.4,1.04
+ Parçay-Meslay ,PARCAY MESLAY ,37210,37179,24,47.433333,0.75,1.28
+ Parçay-sur-Vienne ,PARCAY SUR VIENNE ,37220,37180,24,47.1,0.466667,0.93
+ Paulmy ,PAULMY ,37350,37181,24,46.983333,0.833333,1.62
+ Pernay ,PERNAY ,37230,37182,24,47.45,0.5,1.57
+ Perrusson ,PERRUSSON ,37600,37183,24,47.1,1,1.36
+ Le Petit-Pressigny ,LE PETIT PRESSIGNY ,37350,37184,24,46.916667,0.916667,2.02
+ Pocé-sur-Cisse ,POCE SUR CISSE ,37530,37185,24,47.433333,0.983333,1.29
+ Pont-de-Ruan ,PONT DE RUAN ,37260,37186,24,47.25,0.583333,0.61
+ Ports ,PORTS ,37800,37187,24,47.016667,0.55,1.43
+ Pouzay ,POUZAY ,37800,37188,24,47.083333,0.533333,1.03
+ Preuilly-sur-Claise ,PREUILLY SUR CLAISE ,37290,37189,24,46.85,0.933333,2.41
+ Pussigny ,PUSSIGNY ,37800,37190,24,46.983333,0.566667,1.62
+ Razines ,RAZINES ,37120,37191,24,46.966667,0.366667,1.72
+ Reignac-sur-Indre ,REIGNAC SUR INDRE ,37310,37192,24,47.216667,0.916667,1.02
+ Restigné ,RESTIGNE ,37140,37193,24,47.283333,0.233333,1.7
+ Reugny ,REUGNY ,37380,37194,24,47.483333,0.883333,1.33
+ La Riche ,LA RICHE ,37520,37195,24,47.383333,0.65,0.74
+ Richelieu ,RICHELIEU ,37120,37196,24,47.016667,0.316667,1.43
+ Rigny-Ussé ,RIGNY USSE ,37420,37197,24,47.25,0.3,1.74
+ Rillé ,RILLE ,37340,37198,24,47.45,0.25,1.63
+ Rilly-sur-Vienne ,RILLY SUR VIENNE ,37220,37199,24,47.05,0.483333,1.58
+ Rivarennes ,RIVARENNES ,37190,37200,24,47.266667,0.35,1.76
+ Rivière ,RIVIERE ,37500,37201,24,47.15,0.266667,1.57
+ La Roche-Clermault ,LA ROCHE CLERMAULT ,37500,37202,24,47.15,0.2,1.83
+ Rochecorbon ,ROCHECORBON ,37210,37203,24,47.416667,0.75,1.28
+ Rouziers-de-Touraine ,ROUZIERS DE TOURAINE ,37360,37204,24,47.516667,0.65,1.53
+ Saché ,SACHE ,37190,37205,24,47.233333,0.55,1.2
+ Saint-Antoine-du-Rocher ,SAINT ANTOINE DU ROCHER,37360,37206,24,47.5,0.633333,1.43
+ Saint-Aubin-le-Dépeint ,SAINT AUBIN LE DEPEINT,37370,37207,24,47.633333,0.383333,2.22
+ Saint-Avertin ,SAINT AVERTIN ,37550,37208,24,47.366667,0.733333,0.64
+ Saint-Bauld ,SAINT BAULD ,37310,37209,24,47.183333,0.833333,1.52
+ Saint-Benoît-la-Forêt ,SAINT BENOIT LA FORET,37500,37210,24,47.216667,0.316667,1.53
+ Saint-Branchs ,SAINT BRANCHS ,37320,37211,24,47.233333,0.766667,0.66
+ Sainte-Catherine-de-Fierbois ,SAINTE CATHERINE DE FIERBOIS,37800,37212,24,47.15,0.65,1.82
+ Saint-Christophe-sur-le-Nais ,SAINT CHRISTOPHE SUR LE,37370,37213,24,47.616667,0.483333,2.12
+ Saint-Cyr-sur-Loire ,SAINT CYR SUR LOIRE,37540,37214,24,47.4,0.666667,0.84
+ Saint-Épain ,SAINT EPAIN ,37800,37216,24,47.133333,0.533333,1.34
+ Saint-Étienne-de-Chigny ,SAINT ETIENNE DE CHIGNY,37230,37217,24,47.383333,0.533333,0.74
+ Saint-Flovier ,SAINT FLOVIER ,37600,37218,24,46.95,1.033333,1.82
+ Saint-Genouph ,SAINT GENOUPH ,37510,37219,24,47.383333,0.6,1.17
+ Saint-Germain-sur-Vienne ,SAINT GERMAIN SUR VIENNE,37500,37220,24,47.2,0.1,2.23
+ Saint-Hippolyte ,SAINT HIPPOLYTE ,37600,37221,24,47.05,1.1,1.75
+ Saint-Jean-Saint-Germain ,SAINT JEAN SAINT GERMAIN,37600,37222,24,47.083333,1.033333,1.49
+ Saint-Laurent-de-Lin ,SAINT LAURENT DE LIN,37330,37223,24,47.5,0.25,1.63
+ Saint-Laurent-en-Gâtines ,SAINT LAURENT EN GATINES,37380,37224,24,47.583333,0.783333,1.93
+ Saint-Martin-le-Beau ,SAINT MARTIN LE BEAU,37270,37225,24,47.35,0.916667,1.33
+ Sainte-Maure-de-Touraine ,SAINTE MAURE DE TOURAINE,37800,37226,24,47.1,0.616667,0.93
+ Saint-Michel-sur-Loire ,SAINT MICHEL SUR LOIRE,37130,37227,24,47.316667,0.35,1.24
+ Saint-Nicolas-de-Bourgueil ,SAINT NICOLAS DE BOURGUEIL,37140,37228,24,47.283333,0.116667,2.17
+ Saint-Nicolas-des-Motets ,SAINT NICOLAS DES MOTETS,37110,37229,24,47.583333,1.033333,1.93
+ Saint-Ouen-les-Vignes ,SAINT OUEN LES VIGNES,37530,37230,24,47.466667,1,1.36
+ Saint-Paterne-Racan ,SAINT PATERNE RACAN ,37370,37231,24,47.6,0.483333,2.02
+ Saint-Patrice ,SAINT PATRICE ,37130,37232,24,47.283333,0.316667,1.74
+ Saint-Pierre-des-Corps ,SAINT PIERRE DES CORPS,37700,37233,24,47.383333,0.733333,1
+ Saint-Règle ,SAINT REGLE ,37530,37236,24,47.416667,1.05,1.55
+ Saint-Roch ,SAINT ROCH ,37390,37237,24,47.45,0.583333,1.64
+ Saint-Senoch ,SAINT SENOCH ,37600,37238,24,47.05,0.966667,1.23
+ Saunay ,SAUNAY ,37110,37240,24,47.6,0.966667,2.02
+ Savigné-sur-Lathan ,SAVIGNE SUR LATHAN ,37340,37241,24,47.45,0.316667,1.37
+ Savigny-en-véron ,SAVIGNY EN VERON ,37420,37242,24,47.2,0.15,2.03
+ Savonnières ,SAVONNIERES ,37510,37243,24,47.35,0.55,0.54
+ Sazilly ,SAZILLY ,37220,37244,24,47.133333,0.333333,2.13
+ Semblançay ,SEMBLANCAY ,37360,37245,24,47.5,0.583333,1.43
+ Sennevières ,SENNEVIERES ,37600,37246,24,47.1,1.083333,1.69
+ Sepmes ,SEPMES ,37800,37247,24,47.066667,0.666667,1.47
+ Seuilly ,SEUILLY ,37500,37248,24,47.15,0.166667,1.97
+ Sonzay ,SONZAY ,37360,37249,24,47.533333,0.466667,1.9
+ Sorigny ,SORIGNY ,37250,37250,24,47.233333,0.7,1.44
+ Souvigné ,SOUVIGNE ,37330,37251,24,47.516667,0.4,1.68
+ Souvigny-de-Touraine ,SOUVIGNY DE TOURAINE ,37530,37252,24,47.416667,1.083333,1.69
+ Sublaines ,SUBLAINES ,37310,37253,24,47.266667,1,1.59
+ Tauxigny ,TAUXIGNY ,37310,37254,24,47.216667,0.833333,1.44
+ Tavant ,TAVANT ,37220,37255,24,47.116667,0.383333,1.1
+ Theneuil ,THENEUIL ,37220,37256,24,47.083333,0.433333,1.03
+ Thilouze ,THILOUZE ,37260,37257,24,47.216667,0.583333,0.96
+ Tournon-Saint-Pierre ,TOURNON SAINT PIERRE ,37290,37259,24,46.73718,0.95367,-1
+ La Tour-Saint-Gelin ,LA TOUR SAINT GELIN,37120,37260,24,47.05,0.383333,1.23
+ Tours ,TOURS ,37100,37261,24,47.383333,0.683333,0.74
+ Trogues ,TROGUES ,37220,37262,24,47.116667,0.5,1.39
+ Truyes ,TRUYES ,37320,37263,24,47.266667,0.833333,0.84
+ Vallères ,VALLERES ,37190,37264,24,47.316667,0.466667,0.88
+ Varennes ,VARENNES ,37600,37265,24,47.066667,0.916667,1.13
+ Veigné ,VEIGNE ,37250,37266,24,47.283333,0.733333,0.91
+ Véretz ,VERETZ ,37270,37267,24,47.366667,0.8,1.02
+ Verneuil-le-Château ,VERNEUIL LE CHATEAU ,37120,37268,24,47.033333,0.45,1.33
+ Verneuil-sur-Indre ,VERNEUIL SUR INDRE ,37600,37269,24,47.05,1.033333,1.49
+ Vernou-sur-Brenne ,VERNOU SUR BRENNE ,37210,37270,24,47.416667,0.85,0.94
+ Villaines-les-Rochers ,VILLAINES LES ROCHERS ,37190,37271,24,47.216667,0.5,0.72
+ Villandry ,VILLANDRY ,37510,37272,24,47.333333,0.516667,1.12
+ La Ville-aux-Dames ,LA VILLE AUX DAMES,37700,37273,24,47.4,0.766667,1
+ Villebourg ,VILLEBOURG ,37370,37274,24,47.65,0.533333,2.32
+ Villedômain ,VILLEDOMAIN ,37460,37275,24,47.05,1.25,2.35
+ Villedômer ,VILLEDOMER ,37110,37276,24,47.55,0.883333,1.73
+ Villeloin-Coulangé ,VILLELOIN COULANGE ,37460,37277,24,47.133333,1.233333,2.29
+ Villeperdue ,VILLEPERDUE ,37260,37278,24,47.2,0.633333,1.52
+ Villiers-au-Bouin ,VILLIERS AU BOUIN ,37330,37279,24,47.566667,0.316667,1.83
+ Vou ,VOU ,37240,37280,24,47.083333,0.85,1.03
+ Vouvray ,VOUVRAY ,37210,37281,24,47.416667,0.8,0.94
+ Yzeures-sur-Creuse ,YZEURES SUR CREUSE ,37290,37282,24,46.783333,0.866667,2.81
+ Les Abrets ,LES ABRETS ,38490,38001,82,45.533333,5.583333,0.98
+ Les Adrets ,LES ADRETS ,38190,38002,82,45.266667,5.966667,1.89
+ Agnin ,AGNIN ,38150,38003,82,45.333333,4.866667,2.26
+ L'Albenc ,L ALBENC ,38470,38004,82,45.216667,5.433333,0.58
+ Allevard ,ALLEVARD ,38580,38006,82,45.4,6.066667,2.16
+ Ambel ,AMBEL ,38970,38008,82,44.816667,5.933333,2.54
+ Anjou ,ANJOU ,38150,38009,82,45.35,4.883333,2.2
+ Annoisin-Chatelans ,ANNOISIN CHATELANS ,38460,38010,82,45.75,5.283333,2.05
+ Anthon ,ANTHON ,38280,38011,82,45.8,5.166667,2.3
+ Aoste ,AOSTE ,38490,38012,82,45.583333,5.6,1.23
+ Apprieu ,APPRIEU ,38140,38013,82,45.4,5.5,1.27
+ Arandon ,ARANDON ,38510,38014,82,45.716667,5.433333,1.89
+ Artas ,ARTAS ,38440,38015,82,45.533333,5.166667,1.15
+ Arzay ,ARZAY ,38260,38016,82,45.433333,5.166667,1.15
+ Assieu ,ASSIEU ,38150,38017,82,45.416667,4.866667,2.26
+ Auberives-en-Royans ,AUBERIVES EN ROYANS ,38680,38018,82,45.066667,5.3,1.36
+ Aubérives-sur-Varèze ,AUBERIVES SUR VAREZE ,38550,38019,82,45.433333,4.833333,2.38
+ Auris ,AURIS ,38142,38020,82,45.05,6.083333,2.22
+ Autrans ,AUTRANS ,38880,38021,82,45.166667,5.55,0.82
+ Les Avenières ,LES AVENIERES ,38630,38022,82,45.633333,5.566667,1.48
+ Avignonet ,AVIGNONET ,38650,38023,82,44.95,5.683333,1.88
+ Badinières ,BADINIERES ,38300,38024,82,45.5,5.3,1.16
+ Balbins ,BALBINS ,38260,38025,82,45.383333,5.216667,0.97
+ La Balme-les-Grottes ,LA BALME LES GROTTES,38390,38026,82,45.85,5.333333,2.54
+ Barraux ,BARRAUX ,38530,38027,82,45.433333,5.983333,1.85
+ La Bâtie-Divisin ,LA BATIE DIVISIN ,38490,38028,82,45.5,5.6,1.34
+ La Bâtie-Montgascon ,LA BATIE MONTGASCON ,38110,38029,82,45.583333,5.533333,1.74
+ Beaucroissant ,BEAUCROISSANT ,38140,38030,82,45.333333,5.466667,0.79
+ Beaufin ,BEAUFIN ,38970,38031,82,44.783333,5.95,2.7
+ Beaulieu ,BEAULIEU ,38470,38033,82,45.2,5.383333,0.66
+ Beaurepaire ,BEAUREPAIRE ,38270,38034,82,45.333333,5.05,1.58
+ Beauvoir-de-Marc ,BEAUVOIR DE MARC ,38440,38035,82,45.516667,5.083333,1.46
+ Bellegarde-Poussieu ,BELLEGARDE POUSSIEU ,38270,38037,82,45.383333,4.95,1.95
+ Bernin ,BERNIN ,38190,38039,82,45.266667,5.866667,1.42
+ Besse ,BESSE ,38142,38040,82,45.066667,6.166667,2.53
+ Bessins ,BESSINS ,38160,38041,82,45.2,5.266667,0.9
+ Bevenais ,BEVENAIS ,38690,38042,82,45.4,5.383333,0.64
+ Bilieu ,BILIEU ,38850,38043,82,45.45,5.55,0.96
+ Biviers ,BIVIERS ,38330,38045,82,45.233333,5.8,1.18
+ Bizonnes ,BIZONNES ,38690,38046,82,45.45,5.366667,0.57
+ Blandin ,BLANDIN ,38730,38047,82,45.466667,5.45,0.91
+ Bonnefamille ,BONNEFAMILLE ,38090,38048,82,45.6,5.116667,1.42
+ Bossieu ,BOSSIEU ,38260,38049,82,45.416667,5.15,1.21
+ Le Bouchage ,LE BOUCHAGE ,38510,38050,82,45.666667,5.533333,1.64
+ Bougé-Chambalud ,BOUGE CHAMBALUD ,38150,38051,82,45.333333,4.9,2.13
+ Le Bourg-d'Oisans ,LE BOURG D OISANS,38520,38052,82,45.05,6.033333,2.04
+ Bouvesse-Quirieu ,BOUVESSE QUIRIEU ,38390,38054,82,45.8,5.4,2.3
+ Brangues ,BRANGUES ,38510,38055,82,45.7,5.533333,1.8
+ Bressieux ,BRESSIEUX ,38870,38056,82,45.316667,5.283333,0.75
+ Bresson ,BRESSON ,38320,38057,82,45.133333,5.75,0.99
+ Brézins ,BREZINS ,38590,38058,82,45.35,5.316667,1.8
+ Brié-et-Angonnes ,BRIE ET ANGONNES ,38320,38059,82,45.116667,5.8,1.67
+ Brion ,BRION ,38590,38060,82,45.3,5.333333,1.13
+ La Buisse ,LA BUISSE ,38500,38061,82,45.333333,5.616667,1.16
+ La Buissière ,LA BUISSIERE ,38530,38062,82,45.4,5.983333,1.85
+ Burcin ,BURCIN ,38690,38063,82,45.433333,5.433333,0.77
+ Cessieu ,CESSIEU ,38110,38064,82,45.566667,5.366667,1.99
+ Châbons ,CHABONS ,38690,38065,82,45.416667,5.433333,0.84
+ Châlons ,CHALONS ,38122,38066,82,45.45,4.933333,2.01
+ Chamagnieu ,CHAMAGNIEU ,38460,38067,82,45.683333,5.166667,1.72
+ Champagnier ,CHAMPAGNIER ,38800,38068,82,45.1,5.716667,1.15
+ Champier ,CHAMPIER ,38260,38069,82,45.45,5.283333,1.34
+ Le Champ-près-Froges ,LE CHAMP PRES FROGES,38190,38070,82,45.283333,5.933333,1.67
+ Champ-sur-Drac ,CHAMP SUR DRAC ,38560,38071,82,45.066667,5.733333,1.31
+ Chanas ,CHANAS ,38150,38072,82,45.3,4.816667,2.44
+ Chantesse ,CHANTESSE ,38470,38074,82,45.233333,5.45,0.99
+ Chapareillan ,CHAPAREILLAN ,38530,38075,82,45.466667,5.966667,1.79
+ La Chapelle-de-la-Tour ,LA CHAPELLE DE LA,38110,38076,82,45.583333,5.466667,1.23
+ La Chapelle-de-Surieu ,LA CHAPELLE DE SURIEU,38150,38077,82,45.4,4.9,2.13
+ La Chapelle-du-Bard ,LA CHAPELLE DU BARD,38580,38078,82,45.416667,6.1,2.28
+ Charancieu ,CHARANCIEU ,38490,38080,82,45.516667,5.566667,0.9
+ Charantonnay ,CHARANTONNAY ,38790,38081,82,45.533333,5.1,1.4
+ Charavines ,CHARAVINES ,38850,38082,82,45.433333,5.516667,1.07
+ Charette ,CHARETTE ,38390,38083,82,45.816667,5.366667,2.38
+ Charnècles ,CHARNECLES ,38140,38084,82,45.35,5.533333,1.16
+ Chasselay ,CHASSELAY ,38470,38086,82,45.25,5.333333,1.71
+ Chasse-sur-Rhône ,CHASSE SUR RHONE ,38670,38087,82,45.566667,4.816667,2.44
+ Chassignieu ,CHASSIGNIEU ,38730,38089,82,45.5,5.5,0.84
+ Château-Bernard ,CHATEAU BERNARD ,38650,38090,82,44.983333,5.583333,1.72
+ Châtelus ,CHATELUS ,38680,38092,82,45.05,5.366667,1.39
+ Châtenay ,CHATENAY ,38980,38093,82,45.316667,5.233333,0.91
+ Châtonnay ,CHATONNAY ,38440,38094,82,45.483333,5.2,1.32
+ Chatte ,CHATTE ,38160,38095,82,45.15,5.283333,0.9
+ Chavanoz ,CHAVANOZ ,38230,38097,82,45.783333,5.166667,2.21
+ Chélieu ,CHELIEU ,38730,38098,82,45.5,5.483333,0.82
+ Chevrières ,CHEVRIERES ,38160,38099,82,45.183333,5.3,0.74
+ Le Cheylas ,LE CHEYLAS ,38570,38100,82,45.366667,6,1.91
+ Cheyssieu ,CHEYSSIEU ,38550,38101,82,45.433333,4.85,2.32
+ Chezeneuve ,CHEZENEUVE ,38300,38102,82,45.566667,5.216667,1.43
+ Chichilianne ,CHICHILIANNE ,38930,38103,82,44.816667,5.566667,2.54
+ Chimilin ,CHIMILIN ,38490,38104,82,45.583333,5.6,1.23
+ Chirens ,CHIRENS ,38850,38105,82,45.416667,5.55,0.96
+ Cholonge ,CHOLONGE ,38220,38106,82,45,5.8,1.64
+ Chonas-l'Amballan ,CHONAS L AMBALLAN ,38121,38107,82,45.466667,4.816667,2.44
+ Choranche ,CHORANCHE ,38680,38108,82,45.066667,5.4,1.31
+ Chozeau ,CHOZEAU ,38460,38109,82,45.7,5.216667,1.8
+ Chuzelles ,CHUZELLES ,38200,38110,82,45.583333,4.883333,2.2
+ Claix ,CLAIX ,38640,38111,82,45.116667,5.666667,1.07
+ Clavans-en-Haut-Oisans ,CLAVANS EN HAUT OISANS,38142,38112,82,45.066667,6.15,2.47
+ Clelles ,CLELLES ,38930,38113,82,44.833333,5.616667,2.46
+ Clonas-sur-Varèze ,CLONAS SUR VAREZE ,38550,38114,82,45.416667,4.8,2.5
+ Cognet ,COGNET ,38350,38116,82,44.883333,5.783333,2.21
+ Cognin-les-Gorges ,COGNIN LES GORGES ,38470,38117,82,45.166667,5.416667,1.15
+ Colombe ,COLOMBE ,38690,38118,82,45.4,5.45,1.24
+ La Combe-de-Lancey ,LA COMBE DE LANCEY,38190,38120,82,45.233333,5.9,1.55
+ Commelle ,COMMELLE ,38260,38121,82,45.416667,5.216667,0.97
+ Corbelin ,CORBELIN ,38630,38124,82,45.6,5.55,1.31
+ Cordéac ,CORDEAC ,38710,38125,82,44.833333,5.85,2.46
+ Corenc ,CORENC ,38700,38126,82,45.216667,5.766667,1.05
+ Cornillon-en-Trièves ,CORNILLON EN TRIEVES ,38710,38127,82,44.833333,5.7,2.46
+Corps, ,38970,38128,82,44.816667,5.95,2.54
+ Corrençon-en-Vercors ,CORRENCON EN VERCORS ,38250,38129,82,45.033333,5.533333,1.47
+ La Côte-Saint-André ,LA COTE SAINT ANDRE,38260,38130,82,45.383333,5.25,0.85
+ Coublevie ,COUBLEVIE ,38500,38133,82,45.35,5.616667,0.85
+ Cour-et-Buis ,COUR ET BUIS ,38122,38134,82,45.433333,5,1.77
+ Courtenay ,COURTENAY ,38510,38135,82,45.733333,5.383333,1.97
+ Crachier ,CRACHIER ,38300,38136,82,45.55,5.233333,1.08
+ Cras ,CRAS ,38210,38137,82,45.266667,5.45,1.11
+ Crémieu ,CREMIEU ,38460,38138,82,45.716667,5.25,1.89
+ Crolles ,CROLLES ,38190,38140,82,45.283333,5.883333,1.48
+ Culin ,CULIN ,38300,38141,82,45.516667,5.25,1.07
+ Curtin ,CURTIN ,38510,38142,82,45.65,5.483333,1.56
+ Diémoz ,DIEMOZ ,38790,38144,82,45.583333,5.1,1.4
+ Dionay ,DIONAY ,38160,38145,82,45.2,5.216667,1.63
+ Dizimieu ,DIZIMIEU ,38460,38146,82,45.716667,5.3,1.89
+ Doissin ,DOISSIN ,38730,38147,82,45.5,5.416667,1.75
+ Dolomieu ,DOLOMIEU ,38110,38148,82,45.616667,5.5,1.45
+ Domarin ,DOMARIN ,38300,38149,82,45.583333,5.25,1.23
+ Domène ,DOMENE ,38420,38150,82,45.2,5.833333,1.3
+ Échirolles ,ECHIROLLES ,38130,38151,82,45.133333,5.716667,0.98
+ Éclose ,ECLOSE ,38300,38152,82,45.5,5.3,1.16
+ Engins ,ENGINS ,38360,38153,82,45.183333,5.616667,1.02
+ Entre-deux-Guiers ,ENTRE DEUX GUIERS ,38380,38155,82,45.433333,5.75,0.99
+ Les Éparres ,LES EPARRES ,38300,38156,82,45.533333,5.3,0.98
+ Estrablin ,ESTRABLIN ,38780,38157,82,45.516667,4.966667,1.89
+ Eybens ,EYBENS ,38320,38158,82,45.15,5.75,1.11
+ Eydoche ,EYDOCHE ,38690,38159,82,45.433333,5.333333,1.05
+ Eyzin-Pinet ,EYZIN PINET ,38780,38160,82,45.466667,4.983333,1.83
+ Faramans ,FARAMANS ,38260,38161,82,45.383333,5.166667,1.15
+ Faverges-de-la-Tour ,FAVERGES DE LA TOUR,38110,38162,82,45.583333,5.516667,1.38
+ La Ferrière ,LA FERRIERE ,38580,38163,82,45.316667,6.083333,2.22
+ Fitilieu ,FITILIEU ,38490,38165,82,45.55,5.566667,1.07
+ Flachères ,FLACHERES ,38690,38167,82,45.466667,5.316667,1.47
+ Fontaine ,FONTAINE ,38600,38169,82,45.183333,5.666667,0.74
+ Fontanil-Cornillon ,FONTANIL CORNILLON ,38120,38170,82,45.25,5.666667,0.92
+ La Forteresse ,LA FORTERESSE ,38590,38171,82,45.3,5.4,1.36
+ Four ,FOUR ,38080,38172,82,45.583333,5.183333,1.4
+ Le Freney-d'Oisans ,LE FRENEY D OISANS,38142,38173,82,45.033333,6.116667,2.34
+ La Frette ,LA FRETTE ,38260,38174,82,45.383333,5.35,2.06
+ Froges ,FROGES ,38190,38175,82,45.266667,5.916667,1.61
+ Frontonas ,FRONTONAS ,38290,38176,82,45.65,5.183333,1.56
+ Gières ,GIERES ,38610,38179,82,45.183333,5.783333,1.12
+ Gillonnay ,GILLONNAY ,38260,38180,82,45.383333,5.283333,1.01
+ Goncelin ,GONCELIN ,38570,38181,82,45.333333,5.983333,1.85
+ Le Grand-Lemps ,LE GRAND LEMPS ,38690,38182,82,45.383333,5.416667,1.04
+ Granieu ,GRANIEU ,38490,38183,82,45.6,5.583333,1.37
+ Grenay ,GRENAY ,38540,38184,82,45.666667,5.083333,1.64
+ Grenoble ,GRENOBLE ,38000,38185,82,45.166667,5.716667,0.87
+ Gresse-en-Vercors ,GRESSE EN VERCORS ,38650,38186,82,44.9,5.566667,2.13
+ Le Guâ ,LE GUA ,38450,38187,82,45.016667,5.616667,1.56
+ Herbeys ,HERBEYS ,38320,38188,82,45.133333,5.783333,1.12
+ Heyrieux ,HEYRIEUX ,38540,38189,82,45.633333,5.05,1.58
+ Hières-sur-Amby ,HIERES SUR AMBY ,38118,38190,82,45.8,5.283333,2.3
+ Huez ,HUEZ ,38750,38191,82,45.083333,6.05,2.1
+ Hurtières ,HURTIERES ,38570,38192,82,45.283333,5.966667,1.79
+ L'Isle-d'Abeau ,L ISLE D ABEAU,38080,38193,82,45.616667,5.233333,1.39
+ Izeaux ,IZEAUX ,38140,38194,82,45.333333,5.416667,1.98
+ Izeron ,IZERON ,38160,38195,82,45.15,5.383333,1.45
+ Janneyrias ,JANNEYRIAS ,38280,38197,82,45.75,5.1,2.05
+ Jarcieu ,JARCIEU ,38270,38198,82,45.333333,4.95,1.95
+ Jardin ,JARDIN ,38200,38199,82,45.5,4.916667,2.07
+ Jarrie ,JARRIE ,38560,38200,82,45.116667,5.766667,1.07
+ Laffrey ,LAFFREY ,38220,38203,82,45.033333,5.766667,1.47
+ Lalley ,LALLEY ,38930,38204,82,44.75,5.683333,2.87
+ Lans-en-Vercors ,LANS EN VERCORS ,38250,38205,82,45.116667,5.583333,1.07
+Laval, ,38190,38206,82,45.25,5.933333,1.67
+ Lavaldens ,LAVALDENS ,38350,38207,82,44.983333,5.883333,1.72
+ Lavars ,LAVARS ,38710,38208,82,44.85,5.666667,2.38
+ Lentiol ,LENTIOL ,38270,38209,82,45.3,5.116667,1.81
+ Leyrieu ,LEYRIEU ,38460,38210,82,45.75,5.25,2.05
+ Lieudieu ,LIEUDIEU ,38440,38211,82,45.466667,5.183333,1.13
+ Livet-et-Gavet ,LIVET ET GAVET ,38220,38212,82,45.1,5.933333,2.06
+ Longechenal ,LONGECHENAL ,38690,38213,82,45.416667,5.333333,1.1
+ Lumbin ,LUMBIN ,38660,38214,82,45.316667,5.916667,1.61
+ Luzinay ,LUZINAY ,38200,38215,82,45.583333,4.95,1.95
+ Marcieu ,MARCIEU ,38350,38217,82,44.916667,5.683333,2.1
+ Marcilloles ,MARCILLOLES ,38260,38218,82,45.333333,5.183333,1.11
+ Marcollin ,MARCOLLIN ,38270,38219,82,45.3,5.083333,1.46
+ Marnans ,MARNANS ,38980,38221,82,45.3,5.233333,0.92
+ Massieu ,MASSIEU ,38620,38222,82,45.433333,5.583333,1.45
+ Maubec ,MAUBEC ,38300,38223,82,45.566667,5.3,1.15
+ Méaudre ,MEAUDRE ,38112,38225,82,45.133333,5.533333,0.98
+ Mens ,MENS ,38710,38226,82,44.816667,5.75,2.54
+ Mépieu ,MEPIEU ,38510,38227,82,45.75,5.45,2.05
+ Merlas ,MERLAS ,38620,38228,82,45.45,5.666667,0.82
+ Meylan ,MEYLAN ,38240,38229,82,45.233333,5.783333,1.12
+ Meyrié ,MEYRIE ,38300,38230,82,45.566667,5.283333,1.15
+ Meyssiés ,MEYSSIES ,38440,38232,82,45.466667,5.05,1.58
+ Miribel-Lanchâtre ,MIRIBEL LANCHATRE ,38450,38235,82,44.966667,5.616667,1.8
+ Miribel-les-Échelles ,MIRIBEL LES ECHELLES ,38380,38236,82,45.416667,5.7,1.15
+ Mizoën ,MIZOEN ,38142,38237,82,45.05,6.133333,2.4
+ Moidieu-Détourbe ,MOIDIEU DETOURBE ,38440,38238,82,45.516667,5.016667,1.7
+ Moirans ,MOIRANS ,38430,38239,82,45.333333,5.566667,1
+ Moissieu-sur-Dolon ,MOISSIEU SUR DOLON ,38270,38240,82,45.383333,4.983333,1.83
+ Monestier-d'Ambel ,MONESTIER D AMBEL ,38970,38241,82,44.783333,5.933333,2.7
+ Monestier-de-Clermont ,MONESTIER DE CLERMONT ,38650,38242,82,44.9,5.633333,2.13
+ Le Monestier-du-Percy ,LE MONESTIER DU PERCY,38930,38243,82,44.8,5.65,2.62
+ Monstéroux-Milieu ,MONSTEROUX MILIEU ,38122,38244,82,45.433333,4.95,1.95
+ Montagne ,MONTAGNE ,38160,38245,82,45.15,5.2,1.8
+ Montagnieu ,MONTAGNIEU ,38110,38246,82,45.516667,5.45,1.15
+ Montalieu-Vercieu ,MONTALIEU VERCIEU ,38390,38247,82,45.816667,5.4,2.38
+ Montaud ,MONTAUD ,38210,38248,82,45.266667,5.566667,1.46
+ Montbonnot-Saint-Martin ,MONTBONNOT SAINT MARTIN ,38330,38249,82,45.233333,5.8,1.18
+ Montcarra ,MONTCARRA ,38890,38250,82,45.616667,5.383333,1.39
+ Montceau ,MONTCEAU ,38300,38251,82,45.583333,5.383333,2.06
+ Montchaboud ,MONTCHABOUD ,38220,38252,82,45.1,5.766667,1.15
+ Mont-de-Lans ,MONT DE LANS ,38860,38253,82,45.033333,6.133333,2.4
+ Monteynard ,MONTEYNARD ,38770,38254,82,44.966667,5.7,1.8
+ Montfalcon ,MONTFALCON ,38940,38255,82,45.25,5.166667,1.15
+ Montferrat ,MONTFERRAT ,38620,38256,82,45.483333,5.583333,1.32
+ Montrevel ,MONTREVEL ,38690,38257,82,45.466667,5.4,0.66
+ Mont-Saint-Martin ,MONT SAINT MARTIN ,38120,38258,82,45.266667,5.666667,0.73
+ Montseveroux ,MONTSEVEROUX ,38122,38259,82,45.433333,4.966667,1.89
+ Morestel ,MORESTEL ,38510,38261,82,45.666667,5.466667,1.64
+ Morêtel-de-Mailles ,MORETEL DE MAILLES ,38570,38262,82,45.366667,6,1.91
+ Morette ,MORETTE ,38210,38263,82,45.283333,5.45,1.08
+ La Morte ,LA MORTE ,38350,38264,82,45.033333,5.85,2.03
+ La Motte-d'Aveillans ,LA MOTTE D AVEILLANS,38770,38265,82,44.95,5.75,1.88
+ La Motte-Saint-Martin ,LA MOTTE SAINT MARTIN,38770,38266,82,44.95,5.716667,1.88
+ Mottier ,MOTTIER ,38260,38267,82,45.416667,5.316667,1.57
+ Le Moutaret ,LE MOUTARET ,38580,38268,82,45.433333,6.083333,2.22
+ La Murette ,LA MURETTE ,38140,38270,82,45.366667,5.533333,1.21
+ Murianette ,MURIANETTE ,38420,38271,82,45.183333,5.816667,1.55
+ Murinais ,MURINAIS ,38160,38272,82,45.216667,5.316667,1
+ Nantoin ,NANTOIN ,38260,38274,82,45.433333,5.266667,0.97
+ Nivolas-Vermelle ,NIVOLAS VERMELLE ,38300,38276,82,45.55,5.3,1.07
+ Notre-Dame-de-Commiers ,NOTRE DAME DE COMMIERS,38450,38277,82,45.016667,5.7,1.56
+ Notre Dame-de-l'Osier ,NOTRE DAME DE L,38470,38278,82,45.233333,5.4,0.49
+ Notre-Dame-de-Mésage ,NOTRE DAME DE MESAGE,38220,38279,82,45.066667,5.766667,1.31
+ Notre-Dame-de-Vaux ,NOTRE DAME DE VAUX,38144,38280,82,44.983333,5.75,1.72
+ Noyarey ,NOYAREY ,38360,38281,82,45.25,5.633333,1.12
+ Optevoz ,OPTEVOZ ,38460,38282,82,45.75,5.333333,2.05
+ Oris-en-Rattier ,ORIS EN RATTIER ,38350,38283,82,44.916667,5.866667,2.05
+ Ornacieux ,ORNACIEUX ,38260,38284,82,45.4,5.216667,0.97
+ Ornon ,ORNON ,38520,38285,82,45.05,5.983333,1.85
+ Oulles ,OULLES ,38520,38286,82,45.083333,5.983333,1.85
+ Oyeu ,OYEU ,38690,38287,82,45.416667,5.466667,1.41
+ Oytier-Saint-Oblas ,OYTIER SAINT OBLAS ,38780,38288,82,45.566667,5.016667,1.7
+ Oz ,OZ ,38114,38289,82,45.133333,6.05,2.1
+ Pact ,PACT ,38270,38290,82,45.35,4.983333,1.83
+ Pajay ,PAJAY ,38260,38291,82,45.366667,5.133333,1.43
+ Paladru ,PALADRU ,38137,38292,82,45.466667,5.55,0.66
+ Panissage ,PANISSAGE ,38730,38293,82,45.483333,5.45,0.74
+ Panossas ,PANOSSAS ,38460,38294,82,45.683333,5.2,1.72
+ Parmilieu ,PARMILIEU ,38390,38295,82,45.833333,5.35,2.46
+ Le Passage ,LE PASSAGE ,38490,38296,82,45.516667,5.5,1.73
+ Passins ,PASSINS ,38510,38297,82,45.683333,5.433333,1.72
+ Le Péage-de-Roussillon ,LE PEAGE DE ROUSSILLON,38550,38298,82,45.366667,4.8,2.5
+ Pellafol ,PELLAFOL ,38970,38299,82,44.8,5.916667,2.62
+ Penol ,PENOL ,38260,38300,82,45.383333,5.2,1.03
+ Le Périer ,LE PERIER ,38740,38302,82,44.933333,5.966667,1.97
+ La Pierre ,LA PIERRE ,38570,38303,82,45.291667,5.95,-1
+ Pierre-Châtel ,PIERRE CHATEL ,38119,38304,82,44.95,5.766667,1.88
+ Le Pin ,LE PIN ,38730,38305,82,45.45,5.5,1.26
+ Pinsot ,PINSOT ,38580,38306,82,45.35,6.1,2.28
+ Pisieu ,PISIEU ,38270,38307,82,45.383333,5.05,1.58
+ Plan ,PLAN ,38590,38308,82,45.316667,5.4,1.22
+ Poisat ,POISAT ,38320,38309,82,45.15,5.766667,1.05
+ Poliénas ,POLIENAS ,38210,38310,82,45.25,5.466667,0.96
+ Pommier-de-Beaurepaire ,POMMIER DE BEAUREPAIRE ,38260,38311,82,45.4,5.116667,1.64
+ Pommiers-la-Placette ,POMMIERS LA PLACETTE ,38340,38312,82,45.316667,5.65,1
+ Ponsonnas ,PONSONNAS ,38350,38313,82,44.883333,5.8,2.21
+ Pontcharra ,PONTCHARRA ,38530,38314,82,45.433333,6.016667,1.97
+ Le Pont-de-Beauvoisin ,LE PONT DE BEAUVOISIN,38480,38315,82,45.533333,5.666667,0.98
+ Pont-de-Chéruy ,PONT DE CHERUY ,38230,38316,82,45.75,5.183333,2.05
+ Le Pont-de-Claix ,LE PONT DE CLAIX,38800,38317,82,45.116667,5.7,1.07
+ Pont-Évêque ,PONT EVEQUE ,38780,38318,82,45.533333,4.916667,2.07
+ Pont-en-Royans ,PONT EN ROYANS ,38680,38319,82,45.066667,5.35,1.31
+ Porcieu-Amblagnieu ,PORCIEU AMBLAGNIEU ,38390,38320,82,45.833333,5.4,2.46
+ Prébois ,PREBOIS ,38710,38321,82,44.783333,5.7,2.7
+ Presles ,PRESLES ,38680,38322,82,45.083333,5.383333,1.23
+ Pressins ,PRESSINS ,38480,38323,82,45.516667,5.616667,1.17
+ Primarette ,PRIMARETTE ,38270,38324,82,45.4,5.033333,1.64
+ Proveysieux ,PROVEYSIEUX ,38120,38325,82,45.266667,5.7,1.35
+ Prunières ,PRUNIERES ,38350,38326,82,44.883333,5.766667,2.21
+ Quet-en-Beaumont ,QUET EN BEAUMONT ,38970,38329,82,44.833333,5.866667,2.46
+ Quincieu ,QUINCIEU ,38470,38330,82,45.266667,5.383333,1.14
+ Réaumont ,REAUMONT ,38140,38331,82,45.366667,5.516667,0.8
+ Renage ,RENAGE ,38140,38332,82,45.333333,5.483333,0.54
+ Rencurel ,RENCUREL ,38680,38333,82,45.1,5.4722,-1
+ Revel ,REVEL ,38420,38334,82,45.183333,5.866667,1.42
+ Revel-Tourdan ,REVEL TOURDAN ,38270,38335,82,45.383333,5.033333,1.64
+ Reventin-Vaugris ,REVENTIN VAUGRIS ,38121,38336,82,45.466667,4.833333,2.38
+ Rives ,RIVES ,38140,38337,82,45.35,5.5,0.29
+ La Rivière ,LA RIVIERE ,38210,38338,82,45.233333,5.516667,1.06
+ Les Roches-de-Condrieu ,LES ROCHES DE CONDRIEU,38370,38340,82,45.45,4.766667,2.62
+ Rochetoirin ,ROCHETOIRIN ,38110,38341,82,45.583333,5.416667,1.23
+ Roissard ,ROISSARD ,38650,38342,82,44.883333,5.633333,2.21
+ Romagnieu ,ROMAGNIEU ,38480,38343,82,45.566667,5.633333,1.57
+ Roussillon ,ROUSSILLON ,38150,38344,82,45.366667,4.816667,2.44
+ Rovon ,ROVON ,38470,38345,82,45.2,5.466667,1.36
+ Royas ,ROYAS ,38440,38346,82,45.5,5.1,1.4
+ Roybon ,ROYBON ,38940,38347,82,45.25,5.25,1.5
+ Ruy ,RUY ,38300,38348,82,45.583333,5.316667,1.23
+ Sablons ,SABLONS ,38550,38349,82,45.316667,4.766667,2.62
+ Sainte-Agnès ,SAINTE AGNES ,38190,38350,82,45.233333,5.916667,1.61
+ Saint-Agnin-sur-Bion ,SAINT AGNIN SUR BION,38300,38351,82,45.533333,5.25,0.98
+ Saint-Alban-de-Roche ,SAINT ALBAN DE ROCHE,38300,38352,82,45.6,5.233333,1.41
+ Saint-Alban-du-Rhône ,SAINT ALBAN DU RHONE,38370,38353,82,45.433333,4.766667,2.62
+ Saint-Albin-de-Vaulserre ,SAINT ALBIN DE VAULSERRE,38480,38354,82,45.5,5.7,1.26
+ Saint-Andéol ,SAINT ANDEOL ,38650,38355,82,44.966667,5.55,1.8
+ Saint-André-en-Royans ,SAINT ANDRE EN ROYANS,38680,38356,82,45.083333,5.35,1.23
+ Saint-André-le-Gaz ,SAINT ANDRE LE GAZ,38490,38357,82,45.55,5.533333,1.07
+ Sainte-Anne-sur-Gervonde ,SAINTE ANNE SUR GERVONDE,38440,38358,82,45.5,5.233333,1.84
+ Saint-Arey ,SAINT AREY ,38350,38361,82,44.866667,5.733333,2.29
+ Saint-Aupré ,SAINT AUPRE ,38960,38362,82,45.383333,5.666667,1
+ Saint-Barthélemy ,SAINT BARTHELEMY ,38270,38363,82,45.35,5.075,-1
+ Saint-Baudille-de-la-Tour ,SAINT BAUDILLE DE LA,38118,38365,82,45.783333,5.333333,2.21
+ Saint-Baudille-et-Pipet ,SAINT BAUDILLE ET PIPET,38710,38366,82,44.783333,5.766667,2.7
+ Saint-Bernard ,SAINT BERNARD ,38660,38367,82,45.333333,5.9,1.55
+ Saint-Blaise-du-Buis ,SAINT BLAISE DU BUIS,38140,38368,82,45.366667,5.516667,0.8
+ Sainte-Blandine ,SAINTE BLANDINE ,38110,38369,82,45.55,5.433333,1.07
+ Saint-Bonnet-de-Chavagne ,SAINT BONNET DE CHAVAGNE,38840,38370,82,45.133333,5.233333,0.98
+ Saint-Bueil ,SAINT BUEIL ,38620,38372,82,45.466667,5.683333,1.15
+ Saint-Cassien ,SAINT CASSIEN ,38500,38373,82,45.35,5.55,1.54
+ Saint-Chef ,SAINT CHEF ,38890,38374,82,45.633333,5.366667,1.48
+ Saint-Christophe-en-Oisans ,SAINT CHRISTOPHE EN OISANS,38520,38375,82,44.966667,6.183333,2.59
+ Saint-Christophe-sur-Guiers ,SAINT CHRISTOPHE SUR GUIERS,38380,38376,82,45.433333,5.766667,1.05
+ Saint-Clair-de-la-Tour ,SAINT CLAIR DE LA,38110,38377,82,45.566667,5.483333,1.15
+ Saint-Clair-du-Rhône ,SAINT CLAIR DU RHONE,38370,38378,82,45.433333,4.783333,2.56
+ Saint-Clair-sur-Galaure ,SAINT CLAIR SUR GALAURE,38940,38379,82,45.25,5.15,1.21
+ Saint-Didier-de-Bizonnes ,SAINT DIDIER DE BIZONNES,38690,38380,82,45.45,5.35,0.8
+ Saint-Didier-de-la-Tour ,SAINT DIDIER DE LA,38110,38381,82,45.55,5.483333,1.07
+ Saint-Étienne-de-Crossey ,SAINT ETIENNE DE CROSSEY,38960,38383,82,45.366667,5.633333,1
+ Saint-Étienne-de-Saint-Geoirs ,SAINT ETIENNE DE SAINT,38590,38384,82,45.333333,5.35,0.62
+ Saint-Genis ,SAINT GENIS ,38710,38385,82,44.816667,5.766667,2.54
+ Saint-Geoire-en-Valdaine ,SAINT GEOIRE EN VALDAINE,38620,38386,82,45.45,5.633333,0.57
+ Saint-Geoirs ,SAINT GEOIRS ,38590,38387,82,45.316667,5.35,0.48
+ Saint-Georges-de-Commiers ,SAINT GEORGES DE COMMIERS,38450,38388,82,45.033333,5.7,1.47
+ Saint-Georges-d'Espéranche ,SAINT GEORGES D ESPERANCHE,38790,38389,82,45.55,5.066667,1.52
+ Saint-Gervais ,SAINT GERVAIS ,38470,38390,82,45.2,5.483333,1.71
+ Saint-Guillaume ,SAINT GUILLAUME ,38650,38391,82,44.95,5.583333,1.88
+ Saint-Hilaire-de-Brens ,SAINT HILAIRE DE BRENS,38460,38392,82,45.666667,5.283333,1.64
+ Saint-Hilaire-de-la-Côte ,SAINT HILAIRE DE LA,38260,38393,82,45.383333,5.316667,1.54
+ Saint-Hilaire-du-Rosier ,SAINT HILAIRE DU ROSIER,38840,38394,82,45.1,5.25,1.15
+ Saint-Hilaire ,SAINT HILAIRE ,38660,38395,82,45.3,5.883333,1.48
+ Saint-Honoré ,SAINT HONORE ,38350,38396,82,44.933333,5.816667,1.97
+ Saint-Ismier ,SAINT ISMIER ,38330,38397,82,45.25,5.833333,1.5
+ Saint-Jean-d'Avelanne ,SAINT JEAN D AVELANNE,38480,38398,82,45.5,5.666667,0.82
+ Saint-Jean-de-Bournay ,SAINT JEAN DE BOURNAY,38440,38399,82,45.483333,5.133333,1.28
+ Saint-Jean-de-Moirans ,SAINT JEAN DE MOIRANS,38430,38400,82,45.333333,5.583333,1
+ Saint-Jean-de-Soudain ,SAINT JEAN DE SOUDAIN,38110,38401,82,45.566667,5.433333,1.15
+ Saint-Jean-de-Vaux ,SAINT JEAN DE VAUX,38220,38402,82,45.016667,5.75,1.56
+ Saint-Jean-d'Hérans ,SAINT JEAN D HERANS,38710,38403,82,44.85,5.766667,2.38
+ Saint-Jean-le-Vieux ,SAINT JEAN LE VIEUX,38420,38404,82,45.208333,5.883333,-1
+ Saint-Joseph-de-Rivière ,SAINT JOSEPH DE RIVIERE,38134,38405,82,45.366667,5.683333,0.75
+ Saint-Julien-de-l'Herms ,SAINT JULIEN DE L,38122,38406,82,45.433333,5.1,2.27
+ Saint-Just-Chaleyssin ,SAINT JUST CHALEYSSIN ,38540,38408,82,45.583333,5,1.77
+ Saint-Just-de-Claix ,SAINT JUST DE CLAIX,38680,38409,82,45.066667,5.283333,1.7
+ Saint-Lattier ,SAINT LATTIER ,38840,38410,82,45.083333,5.2,1.5
+ Saint-Laurent-du-Pont ,SAINT LAURENT DU PONT,38380,38412,82,45.383333,5.733333,0.93
+ Saint-Laurent-en-Beaumont ,SAINT LAURENT EN BEAUMONT,38350,38413,82,44.883333,5.85,2.21
+ Sainte-Luce ,SAINTE LUCE ,38970,38414,82,44.85,5.916667,2.38
+ Saint-Marcel-Bel-Accueil ,SAINT MARCEL BEL ACCUEIL,38080,38415,82,45.65,5.233333,1.56
+ Saint-Marcellin ,SAINT MARCELLIN ,38160,38416,82,45.15,5.316667,0.9
+ Sainte-Marie-d'Alloix ,SAINTE MARIE D ALLOIX,38660,38417,82,45.383333,5.966667,1.79
+ Sainte-Marie-du-Mont ,SAINTE MARIE DU MONT,38660,38418,82,45.4,5.933333,1.67
+ Saint-Martin-de-Clelles ,SAINT MARTIN DE CLELLES,38930,38419,82,44.85,5.616667,2.38
+ Saint-Martin-de Vaulserre ,SAINT MARTIN DE VAULSERRE,38480,38420,82,45.483333,5.666667,0.96
+ Saint-Martin-d'Hères ,SAINT MARTIN D HERES,38400,38421,82,45.166667,5.766667,1.05
+ Saint-Martin-d'Uriage ,SAINT MARTIN D URIAGE,38410,38422,82,45.15,5.833333,1.3
+ Saint-Martin-le-Vinoux ,SAINT MARTIN LE VINOUX,38950,38423,82,45.2,5.716667,0.87
+ Saint-Maurice-en-Trièves ,SAINT MAURICE EN TRIEVES,38930,38424,82,44.75,5.666667,2.87
+ Saint-Maurice-l'Exil ,SAINT MAURICE L EXIL,38550,38425,82,45.4,4.783333,2.56
+ Saint-Maximin ,SAINT MAXIMIN ,38530,38426,82,45.416667,6.033333,2.04
+ Saint-Michel-de-Saint-Geoirs ,SAINT MICHEL DE SAINT,38590,38427,82,45.3,5.366667,0.62
+ Saint-Michel-en-Beaumont ,SAINT MICHEL EN BEAUMONT,38350,38428,82,44.866667,5.9,2.29
+ Saint-Michel-les-Portes ,SAINT MICHEL LES PORTES,38650,38429,82,44.866667,5.6,2.29
+ Saint-Mury-Monteymond ,SAINT MURY MONTEYMOND ,38190,38430,82,45.216667,5.933333,1.67
+ Saint-Nicolas-de-Macherin ,SAINT NICOLAS DE MACHERIN,38500,38432,82,45.383333,5.6,0.96
+ Saint-Nizier-du-Moucherotte ,SAINT NIZIER DU MOUCHEROTTE,38250,38433,82,45.166667,5.633333,1.61
+ Saint-Ondras ,SAINT ONDRAS ,38490,38434,82,45.516667,5.533333,1.05
+ Saint-Pancrasse ,SAINT PANCRASSE ,38660,38435,82,45.283333,5.866667,1.86
+ Saint-Paul-de-Varces ,SAINT PAUL DE VARCES,38760,38436,82,45.066667,5.633333,1.31
+ Saint-Paul-d'Izeaux ,SAINT PAUL D IZEAUX,38140,38437,82,45.316667,5.433333,1.76
+ Saint-Paul-lès-Monestier ,SAINT PAUL LES MONESTIER,38650,38438,82,44.933333,5.633333,1.97
+ Saint-Pierre-d'Allevard ,SAINT PIERRE D ALLEVARD,38830,38439,82,45.366667,6.05,2.1
+ Saint-Pierre-de-Bressieux ,SAINT PIERRE DE BRESSIEUX,38870,38440,82,45.316667,5.283333,0.75
+ Saint-Pierre-de-Chartreuse ,SAINT PIERRE DE CHARTREUSE,38380,38442,82,45.333333,5.816667,1.89
+ Saint-Pierre-de-Chérennes ,SAINT PIERRE DE CHERENNES,38160,38443,82,45.116667,5.366667,1.4
+ Saint-Pierre-de-Méaroz ,SAINT PIERRE DE MEAROZ,38350,38444,82,44.883333,5.816667,2.21
+ Saint-Pierre-de-Mésage ,SAINT PIERRE DE MESAGE,38220,38445,82,45.05,5.766667,1.39
+ Saint-Prim ,SAINT PRIM ,38370,38448,82,45.45,4.8,2.5
+ Saint-Quentin-Fallavier ,SAINT QUENTIN FALLAVIER ,38070,38449,82,45.633333,5.116667,1.48
+ Saint-Quentin-sur-Isère ,SAINT QUENTIN SUR ISERE,38210,38450,82,45.283333,5.55,1.08
+ Saint-Romain-de-Jalionas ,SAINT ROMAIN DE JALIONAS,38460,38451,82,45.75,5.216667,2.05
+ Saint-Romain-de-Surieu ,SAINT ROMAIN DE SURIEU,38150,38452,82,45.383333,4.883333,2.2
+ Saint-Romans ,SAINT ROMANS ,38160,38453,82,45.116667,5.316667,1.07
+ Saint-Sauveur ,SAINT SAUVEUR ,38160,38454,82,45.15,5.35,0.9
+ Saint-Savin ,SAINT SAVIN ,38300,38455,82,45.633333,5.3,1.61
+ Saint-Sébastien ,SAINT SEBASTIEN ,38710,38456,82,44.85,5.8,2.38
+ Saint-Siméon-de-Bressieux ,SAINT SIMEON DE BRESSIEUX,38870,38457,82,45.333333,5.25,1.5
+ Saint-Sorlin-de-Morestel ,SAINT SORLIN DE MORESTEL,38510,38458,82,45.633333,5.483333,1.48
+ Saint-Sulpice-des-Rivoires ,SAINT SULPICE DES RIVOIRES,38620,38460,82,45.466667,5.6,0.85
+ Saint-Théoffrey ,SAINT THEOFFREY ,38119,38462,82,44.983333,5.766667,1.72
+ Saint-Victor-de-Cessieu ,SAINT VICTOR DE CESSIEU,38110,38464,82,45.55,5.4,1.31
+ Saint-Victor-de-Morestel ,SAINT VICTOR DE MORESTEL,38510,38465,82,45.7,5.5,1.8
+ Saint-Vincent-de-Mercuze ,SAINT VINCENT DE MERCUZE,38660,38466,82,45.366667,5.95,1.73
+ Salagnon ,SALAGNON ,38890,38467,82,45.666667,5.35,1.64
+ Salaise-sur-Sanne ,SALAISE SUR SANNE ,38150,38468,82,45.333333,4.816667,2.44
+ La Salette-Fallavaux ,LA SALETTE FALLAVAUX ,38970,38469,82,44.85,5.983333,2.38
+ La Salle-en-Beaumont ,LA SALLE EN BEAUMONT,38350,38470,82,44.866667,5.866667,2.29
+ Le Sappey-en-Chartreuse ,LE SAPPEY EN CHARTREUSE,38700,38471,82,45.266667,5.783333,1.13
+ Sarcenas ,SARCENAS ,38700,38472,82,45.266667,5.75,0.99
+ Sardieu ,SARDIEU ,38260,38473,82,45.366667,5.2,1.03
+ Sassenage ,SASSENAGE ,38360,38474,82,45.2,5.666667,0.86
+ Satolas-et-Bonce ,SATOLAS ET BONCE ,38290,38475,82,45.7,5.133333,1.8
+ Savas-Mépin ,SAVAS MEPIN ,38440,38476,82,45.5,5.05,1.58
+ Séchilienne ,SECHILIENNE ,38220,38478,82,45.066667,5.833333,1.31
+ Semons ,SEMONS ,38260,38479,82,45.433333,5.2,1.03
+ Septème ,SEPTEME ,38780,38480,82,45.55,5.016667,1.7
+ Sérézin-de-la-Tour ,SEREZIN DE LA TOUR,38300,38481,82,45.55,5.35,1.31
+ Sermérieu ,SERMERIEU ,38510,38483,82,45.666667,5.416667,1.64
+ Serpaize ,SERPAIZE ,38200,38484,82,45.566667,4.916667,2.07
+ Seyssinet-Pariset ,SEYSSINET PARISET ,38170,38485,82,45.166667,5.65,0.82
+ Seyssins ,SEYSSINS ,38180,38486,82,45.15,5.683333,0.9
+ Seyssuel ,SEYSSUEL ,38200,38487,82,45.566667,4.85,2.32
+ Siévoz ,SIEVOZ ,38350,38489,82,44.9,5.833333,2.13
+ Sillans ,SILLANS ,38590,38490,82,45.333333,5.383333,0.83
+ Sinard ,SINARD ,38650,38492,82,44.95,5.65,1.88
+ Soleymieu ,SOLEYMIEU ,38460,38494,82,45.716667,5.35,1.89
+ La Sône ,LA SONE ,38840,38495,82,45.116667,5.283333,1.32
+ Sonnay ,SONNAY ,38150,38496,82,45.35,4.9,2.13
+ Succieu ,SUCCIEU ,38300,38498,82,45.533333,5.333333,1.06
+ Têche ,TECHE ,38470,38500,82,45.183333,5.383333,0.92
+ Tencin ,TENCIN ,38570,38501,82,45.316667,5.966667,1.79
+ La Terrasse ,LA TERRASSE ,38660,38503,82,45.333333,5.933333,1.67
+ Theys ,THEYS ,38570,38504,82,45.3,6,1.91
+ Thodure ,THODURE ,38260,38505,82,45.316667,5.166667,1.48
+ Thuellin ,THUELLIN ,38630,38506,82,45.633333,5.5,1.48
+ Tignieu-Jameyzieu ,TIGNIEU JAMEYZIEU ,38230,38507,82,45.733333,5.183333,1.97
+ Torchefelon ,TORCHEFELON ,38690,38508,82,45.516667,5.4,1.5
+ La Tour-du-Pin ,LA TOUR DU PIN,38110,38509,82,45.566667,5.45,1.15
+ Le Touvet ,LE TOUVET ,38660,38511,82,45.35,5.95,1.73
+ Tramolé ,TRAMOLE ,38300,38512,82,45.516667,5.266667,0.9
+ Tréminis ,TREMINIS ,38710,38514,82,44.75,5.766667,2.87
+ Trept ,TREPT ,38460,38515,82,45.683333,5.316667,1.72
+ La Tronche ,LA TRONCHE ,38700,38516,82,45.2,5.733333,1.32
+ Tullins ,TULLINS ,38210,38517,82,45.3,5.483333,0.57
+ Valbonnais ,VALBONNAIS ,38740,38518,82,44.9,5.9,2.13
+ Valencin ,VALENCIN ,38540,38519,82,45.616667,5.016667,1.7
+ Valencogne ,VALENCOGNE ,38730,38520,82,45.5,5.533333,1.75
+ Varacieux ,VARACIEUX ,38470,38523,82,45.233333,5.333333,1.6
+ Vasselin ,VASSELIN ,38890,38525,82,45.633333,5.45,1.56
+ Vatilieu ,VATILIEU ,38470,38526,82,45.25,5.416667,0.7
+ Vaujany ,VAUJANY ,38114,38527,82,45.15,6.083333,2.22
+ Vaulnaveys-le-Bas ,VAULNAVEYS LE BAS ,38410,38528,82,45.1,5.816667,1.24
+ Vaulnaveys-le-Haut ,VAULNAVEYS LE HAUT ,38410,38529,82,45.116667,5.8,1.18
+ Vaulx-Milieu ,VAULX MILIEU ,38090,38530,82,45.616667,5.183333,1.39
+ Velanne ,VELANNE ,38620,38531,82,45.483333,5.633333,0.74
+ Vénérieu ,VENERIEU ,38460,38532,82,45.666667,5.283333,1.64
+ Venon ,VENON ,38610,38533,82,45.166667,5.8,1.18
+ Vénosc ,VENOSC ,38520,38534,82,44.983333,6.116667,2.34
+ Vernioz ,VERNIOZ ,38150,38536,82,45.433333,4.883333,2.2
+ La Verpillière ,LA VERPILLIERE ,38290,38537,82,45.633333,5.15,1.48
+ Le Versoud ,LE VERSOUD ,38420,38538,82,45.2,5.866667,1.42
+ Vertrieu ,VERTRIEU ,38390,38539,82,45.866667,5.366667,2.62
+ Veurey-Voroize ,VEUREY VOROIZE ,38113,38540,82,45.266667,5.616667,0.5
+ Veyssilieu ,VEYSSILIEU ,38460,38542,82,45.683333,5.216667,1.72
+ Vienne ,VIENNE ,38200,38544,82,45.516667,4.866667,2.26
+ Vif ,VIF ,38450,38545,82,45.05,5.666667,1.39
+ Vignieu ,VIGNIEU ,38890,38546,82,45.633333,5.416667,1.48
+ Villard-Bonnot ,VILLARD BONNOT ,38190,38547,82,45.233333,5.883333,1.48
+ Villard-de-Lans ,VILLARD DE LANS ,38250,38548,82,45.066667,5.55,1.31
+ Villard-Notre-Dame ,VILLARD NOTRE DAME ,38520,38549,82,45.016667,6.05,2.1
+ Villard-Reculas ,VILLARD RECULAS ,38114,38550,82,45.1,6.033333,2.04
+ Villard-Reymond ,VILLARD REYMOND ,38520,38551,82,45.033333,6.016667,1.97
+ Villard-Saint-Christophe ,VILLARD SAINT CHRISTOPHE ,38119,38552,82,44.966667,5.8,1.8
+ Villefontaine ,VILLEFONTAINE ,38090,38553,82,45.616667,5.15,1.39
+ Villemoirieu ,VILLEMOIRIEU ,38460,38554,82,45.716667,5.216667,1.89
+ Villeneuve-de-Marc ,VILLENEUVE DE MARC ,38440,38555,82,45.483333,5.1,1.4
+ Ville-sous-Anjou ,VILLE SOUS ANJOU ,38150,38556,82,45.366667,4.85,2.32
+ Villette-d'Anthon ,VILLETTE D ANTHON ,38280,38557,82,45.8,5.116667,2.3
+ Villette-de-Vienne ,VILLETTE DE VIENNE ,38200,38558,82,45.583333,4.9,2.13
+ Vinay ,VINAY ,38470,38559,82,45.216667,5.4,0.57
+ Virieu ,VIRIEU ,38730,38560,82,45.483333,5.466667,0.74
+ Viriville ,VIRIVILLE ,38980,38561,82,45.316667,5.2,1.35
+ Vizille ,VIZILLE ,38220,38562,82,45.083333,5.766667,1.23
+ Voiron ,VOIRON ,38500,38563,82,45.366667,5.583333,0.5
+ Voissant ,VOISSANT ,38620,38564,82,45.483333,5.7,1.61
+ Voreppe ,VOREPPE ,38340,38565,82,45.3,5.633333,1
+ Vourey ,VOUREY ,38210,38566,82,45.316667,5.516667,0.88
+ Chamrousse ,CHAMROUSSE ,38410,38567,82,45.133333,5.9,1.58
+ Le Rivier ,LE RIVIER ,38140,38900,82,45.366667,5.483333,0.39
+ Mons ,MONS ,38280,38901,82,45.783333,5.116667,2.21
+ Jameyzieu ,JAMEYZIEU ,38230,38903,82,45.716667,5.166667,1.89
+ Chavagneux ,CHAVAGNEUX ,38230,38904,82,45.741667,5.166667,-1
+ Mianges ,MIANGES ,38460,38906,82,45.7,5.166667,1.8
+ Haut de Bonce ,HAUT DE BONCE ,38290,38907,82,45.683333,5.116667,1.72
+ Bas de Bonce ,BAS DE BONCE ,38290,38908,82,45.683333,5.116667,1.72
+ Le Chaffard ,LE CHAFFARD ,38290,38910,82,45.666667,5.133333,1.64
+ Gonas ,GONAS ,38290,38911,82,45.65,5.166667,1.56
+ Combe Rousse ,COMBE ROUSSE ,38790,38917,82,45.583333,5.116667,1.34
+ Brignoud ,BRIGNOUD ,38190,38920,82,45.25,5.9,1.55
+ Fures ,FURES ,38210,38921,82,45.316667,5.5,0.8
+ L'Alpe-d'Huez ,L ALPE D HUEZ,38750,38928,82,45.1,6.066667,2.16
+ Lancey ,LANCEY ,38190,38930,82,45.233333,5.883333,1.48
+ Rioupéroux ,RIOUPEROUX ,38220,38932,82,45.083333,5.9,1.55
+ Gavet ,GAVET ,38220,38934,82,45.066667,5.866667,1.42
+ Pusignieu ,PUSIGNIEU ,38510,38935,82,45.733333,5.483333,1.97
+ Jallieu ,JALLIEU ,38300,38938,82,45.583333,5.266667,1.23
+ Abergement-la-Ronce ,ABERGEMENT LA RONCE ,39500,39001,43,47.066667,5.383333,1.78
+ Abergement-le-Grand ,ABERGEMENT LE GRAND ,39600,39002,43,46.916667,5.683333,1.17
+ Abergement-le-Petit ,ABERGEMENT LE PETIT ,39800,39003,43,46.9,5.7,0.8
+ Abergement-lès-Thésy ,ABERGEMENT LES THESY ,39110,39004,43,46.916667,5.933333,1.65
+ Abergement-Saint-Jean ,ABERGEMENT SAINT JEAN ,39120,39005,43,46.883333,5.366667,1.89
+ Aiglepierre ,AIGLEPIERRE ,39110,39006,43,46.95,5.816667,1.67
+ Alièze ,ALIEZE ,39270,39007,43,46.583333,5.583333,1.12
+ Amange ,AMANGE ,39700,39008,43,47.15,5.566667,2
+ Andelot-en-Montagne ,ANDELOT EN MONTAGNE ,39110,39009,43,46.85,5.933333,1.72
+ Annoire ,ANNOIRE ,39120,39011,43,46.95,5.283333,2.41
+ Antorpe ,ANTORPE ,25410,39012,43,47.183333,5.8,2.16
+ Arbois ,ARBOIS ,39600,39013,43,46.9,5.766667,0.8
+ Archelange ,ARCHELANGE ,39290,39014,43,47.15,5.516667,2
+ Ardon ,ARDON ,39300,39015,43,46.766667,5.883333,1.34
+ Arinthod ,ARINTHOD ,39240,39016,43,46.383333,5.566667,1.69
+ Arlay ,ARLAY ,39140,39017,43,46.766667,5.533333,1.92
+ Aromas ,AROMAS ,39240,39018,43,46.3,5.483333,2.09
+ Arsure-Arsurette ,ARSURE ARSURETTE ,39250,39020,43,46.716667,6.083333,2.59
+ Arthenas ,ARTHENAS ,39270,39021,43,46.583333,5.533333,1.4
+ L'Aubépin ,L AUBEPIN ,39160,39023,43,46.433333,5.366667,1.89
+ Audelange ,AUDELANGE ,39700,39024,43,47.133333,5.583333,1.92
+ Augea ,AUGEA ,39190,39025,43,46.55,5.416667,1.58
+ Augerans ,AUGERANS ,39380,39026,43,47.016667,5.583333,1.36
+ Augisey ,AUGISEY ,39270,39027,43,46.55,5.483333,1.81
+ Aumont ,AUMONT ,39800,39028,43,46.9,5.633333,0.9
+ Aumur ,AUMUR ,39410,39029,43,47.05,5.35,1.99
+ Authume ,AUTHUME ,39100,39030,43,47.133333,5.5,1.92
+ Auxange ,AUXANGE ,39700,39031,43,47.166667,5.65,2.08
+ Balaiseaux ,BALAISEAUX ,39120,39034,43,46.966667,5.466667,1.26
+ Balanod ,BALANOD ,39160,39035,43,46.45,5.366667,1.89
+ La Balme-d'Épy ,LA BALME D EPY,39320,39036,43,46.383333,5.416667,1.69
+ Bans ,BANS ,39380,39037,43,46.983333,5.583333,1.2
+ Barésia-sur-l'Ain ,BARESIA SUR L AIN,39130,39038,43,46.55,5.7,1.29
+La Barre,BARRE ,39700,39039,43,47.15,5.683333,2
+ Barretaine ,BARRETAINE ,39800,39040,43,46.816667,5.716667,0.65
+ Baume-les-Messieurs ,BAUME LES MESSIEURS ,39570,39041,43,46.716667,5.633333,1.42
+ Baverans ,BAVERANS ,39100,39042,43,47.1,5.533333,1.76
+ Beaufort ,BEAUFORT ,39190,39043,43,46.566667,5.433333,1.47
+ Beauvoisin ,BEAUVOISIN ,39120,39044,43,46.916667,5.366667,1.89
+ Beffia ,BEFFIA ,39270,39045,43,46.516667,5.55,1.05
+ Bellefontaine ,BELLEFONTAINE ,39400,39047,43,46.55,6.066667,2.49
+ Bersaillin ,BERSAILLIN ,39800,39049,43,46.866667,5.6,1.01
+ Besain ,BESAIN ,39800,39050,43,46.783333,5.8,1.81
+ Biarne ,BIARNE ,39290,39051,43,47.15,5.45,2
+ Bief-des-Maisons ,BIEF DES MAISONS ,39150,39052,43,46.7,6.033333,2.28
+ Bief du Fourg ,BIEF DU FOURG ,39250,39053,43,46.816667,6.116667,2.8
+ Biefmorin ,BIEFMORIN ,39800,39054,43,46.9,5.566667,1.58
+ Billecul ,BILLECUL ,39250,39055,43,46.75,6.05,2.38
+ Bletterans ,BLETTERANS ,39140,39056,43,46.75,5.45,1.37
+ Blois-sur-Seille ,BLOIS SUR SEILLE ,39210,39057,43,46.75,5.666667,1.19
+ Blye ,BLYE ,39130,39058,43,46.616667,5.7,1.1
+ Bois-d'Amont ,BOIS D AMONT ,39220,39059,43,46.533333,6.1315,-1
+ Bois-de-Gand ,BOIS DE GAND ,39230,39060,43,46.833333,5.5,1.05
+ La Boissière ,LA BOISSIERE ,39240,39062,43,46.416667,5.533333,1.53
+ Bonlieu ,BONLIEU ,39130,39063,43,46.6,5.85,1.17
+ Bonnaud ,BONNAUD ,39190,39064,43,46.616667,5.433333,1.47
+ Bonnefontaine ,BONNEFONTAINE ,39800,39065,43,46.733333,5.75,1.74
+ Bornay ,BORNAY ,39570,39066,43,46.616667,5.55,0.74
+ Le Bouchaud ,LE BOUCHAUD ,39800,39067,43,46.85,5.583333,1.19
+ Les Bouchoux ,LES BOUCHOUX ,39370,39068,43,46.3,5.816667,2.09
+ Bourcia ,BOURCIA ,39320,39069,43,46.35,5.416667,1.85
+ Bracon ,BRACON ,39110,39072,43,46.933333,5.883333,1.34
+ Brainans ,BRAINANS ,39800,39073,43,46.866667,5.616667,0.81
+ Brans ,BRANS ,39290,39074,43,47.233333,5.566667,2.4
+ Bréry ,BRERY ,39230,39075,43,46.783333,5.583333,1.32
+ Bretenières ,BRETENIERES ,39120,39077,43,46.916667,5.55,1.84
+ Brevans ,BREVANS ,39100,39078,43,47.1,5.516667,1.76
+ Briod ,BRIOD ,39570,39079,43,46.666667,5.616667,0.84
+ Broissia ,BROISSIA ,39320,39080,43,46.366667,5.433333,1.77
+ Buvilly ,BUVILLY ,39800,39081,43,46.866667,5.716667,0.63
+ Ceffia ,CEFFIA ,39240,39082,43,46.3,5.5,2.09
+ Censeau ,CENSEAU ,39250,39083,43,46.816667,6.066667,2.49
+ Cernans ,CERNANS ,39110,39084,43,46.933333,5.933333,1.65
+ Cerniébaud ,CERNIEBAUD ,39250,39085,43,46.733333,6.1,2.7
+ Cernon ,CERNON ,39240,39086,43,46.4,5.65,1.72
+ Césancey ,CESANCEY ,39570,39088,43,46.633333,5.5,1.05
+ Cézia ,CEZIA ,39240,39089,43,46.366667,5.566667,1.77
+ Chaînée-des-Coupis ,CHAINEE DES COUPIS ,39120,39090,43,46.933333,5.433333,1.47
+ Chambéria ,CHAMBERIA ,39270,39092,43,46.466667,5.566667,1.29
+ Chamblay ,CHAMBLAY ,39380,39093,43,47,5.716667,1.75
+ Chamole ,CHAMOLE ,39800,39094,43,46.833333,5.733333,0.77
+ Champagne-sur-Loue ,CHAMPAGNE SUR LOUE ,39600,39095,43,47.033333,5.816667,1.62
+ Champagnole ,CHAMPAGNOLE ,39300,39097,43,46.75,5.916667,1.55
+ Champagny ,CHAMPAGNY ,39110,39098,43,46.9,5.883333,1.34
+ Champdivers ,CHAMPDIVERS ,39500,39099,43,47.016667,5.383333,1.78
+ Champrougier ,CHAMPROUGIER ,39230,39100,43,46.866667,5.516667,0.95
+ Chancia ,CHANCIA ,1590,39102,43,46.35,5.633333,1.85
+ La Chapelle-sur-Furieuse ,LA CHAPELLE SUR FURIEUSE,39110,39103,43,47,5.866667,1.58
+ Chapelle-Voland ,CHAPELLE VOLAND ,39140,39104,43,46.8,5.366667,2.11
+ Chapois ,CHAPOIS ,39300,39105,43,46.833333,5.966667,1.86
+ Charchilla ,CHARCHILLA ,39260,39106,43,46.466667,5.716667,1.29
+ Charcier ,CHARCIER ,39130,39107,43,46.633333,5.75,0.6
+ Charency ,CHARENCY ,39250,39108,43,46.766667,6,2.07
+ Charézier ,CHAREZIER ,39130,39109,43,46.616667,5.733333,0.63
+ La Charme ,LA CHARME ,39230,39110,43,46.85,5.566667,0.76
+ Charnod ,CHARNOD ,39240,39111,43,46.333333,5.5,1.93
+ La Chassagne ,LA CHASSAGNE ,39230,39112,43,46.866667,5.45,1.38
+ Chassal ,CHASSAL ,39360,39113,43,46.366667,5.783333,1.77
+ Château-Chalon ,CHATEAU CHALON ,39210,39114,43,46.75,5.633333,0.41
+ Château-des-Prés ,CHATEAU DES PRES ,39150,39115,43,46.5,5.9,1.45
+ La Châtelaine ,LA CHATELAINE ,39600,39116,43,46.866667,5.816667,1.52
+ Châtelay ,CHATELAY ,39380,39117,43,47.033333,5.7,1.53
+ Châtel-de-Joux ,CHATEL DE JOUX ,39130,39118,43,46.533333,5.8,1.07
+ Le Châteley ,LE CHATELEY ,39230,39119,43,46.883333,5.55,0.94
+ Châtelneuf ,CHATELNEUF ,39300,39120,43,46.683333,5.916667,1.55
+ Châtillon ,CHATILLON ,39130,39122,43,46.65,5.733333,0.95
+ Châtonnay ,CHATONNAY ,39240,39123,43,46.433333,5.55,1.45
+ Chaumergy ,CHAUMERGY ,39230,39124,43,46.85,5.483333,1.16
+ Chaumont ,CHAUMONT ,39200,39125,43,46.4,5.883333,1.61
+ La Chaumusse ,LA CHAUMUSSE ,39150,39126,43,46.583333,5.933333,1.65
+ Chaussenans ,CHAUSSENANS ,39800,39127,43,46.833333,5.733333,0.77
+ Chaussin ,CHAUSSIN ,39120,39128,43,46.966667,5.416667,1.58
+ Chaux-des-Crotenay ,CHAUX DES CROTENAY ,39150,39129,43,46.666667,5.966667,1.86
+ Chaux-des-Prés ,CHAUX DES PRES ,39150,39130,43,46.5,5.866667,1.25
+ La Chaux-du-Dombief ,LA CHAUX DU DOMBIEF,39150,39131,43,46.6,5.9,1.45
+ La Chaux-en-Bresse ,LA CHAUX EN BRESSE,39230,39132,43,46.833333,5.483333,1.16
+ Chavéria ,CHAVERIA ,39270,39134,43,46.5,5.583333,1.13
+ Chazelles ,CHAZELLES ,39160,39135,43,46.4,5.333333,2.1
+ Chemenot ,CHEMENOT ,39230,39136,43,46.866667,5.533333,0.85
+ Chemilla ,CHEMILLA ,39240,39137,43,46.366667,5.566667,1.77
+ Chemin ,CHEMIN ,39120,39138,43,46.983333,5.316667,2.2
+ Chêne-Bernard ,CHENE BERNARD ,39120,39139,43,46.916667,5.483333,1.16
+ Chêne-Sec ,CHENE SEC ,39230,39140,43,46.85,5.433333,1.58
+ Chevigny ,CHEVIGNY ,39290,39141,43,47.183333,5.483333,2.16
+ Chevreaux ,CHEVREAUX ,39190,39142,43,46.5,5.4,1.68
+ Chevrotaine ,CHEVROTAINE ,39130,39143,43,46.65,5.85,1.4
+ Chevry ,CHEVRY ,39200,39144,43,46.366667,5.816667,1.77
+ Chille ,CHILLE ,39570,39145,43,46.7,5.583333,0.73
+ Chilly-le-Vignoble ,CHILLY LE VIGNOBLE ,39570,39146,43,46.65,5.5,1.05
+ Chilly-sur-Salins ,CHILLY SUR SALINS ,39110,39147,43,46.883333,5.866667,1.24
+ Chisséria ,CHISSERIA ,39240,39148,43,46.383333,5.566667,1.69
+ Choisey ,CHOISEY ,39100,39150,43,47.066667,5.466667,1.6
+ Choux ,CHOUX ,39370,39151,43,46.316667,5.766667,2.01
+ Cinquétral ,CINQUETRAL ,39200,39152,43,46.433333,5.883333,1.45
+ Cize ,CIZE ,39300,39153,43,46.733333,5.916667,1.55
+ Clairvaux-les-Lacs ,CLAIRVAUX LES LACS ,39130,39154,43,46.566667,5.75,0.81
+ Clucy ,CLUCY ,39110,39155,43,46.95,5.9,1.45
+ Cogna ,COGNA ,39130,39156,43,46.583333,5.75,0.73
+ Coiserette ,COISERETTE ,39200,39157,43,46.35,5.833333,1.85
+ Coisia ,COISIA ,39240,39158,43,46.316667,5.583333,2.01
+ Colonne ,COLONNE ,39800,39159,43,46.883333,5.583333,1.29
+ Commenailles ,COMMENAILLES ,39140,39160,43,46.8,5.45,1.37
+ Communailles-en-Montagne ,COMMUNAILLES EN MONTAGNE ,39250,39161,43,46.8,6.1,2.7
+ Condamine ,CONDAMINE ,39570,39162,43,46.65,5.433333,2.02
+ Condes ,CONDES ,39240,39163,43,46.333333,5.616667,1.93
+ Conliège ,CONLIEGE ,39570,39164,43,46.65,5.6,0.58
+ Conte ,CONTE ,39300,39165,43,46.75,6,2.07
+ Cornod ,CORNOD ,39240,39166,43,46.316667,5.55,2.01
+ Cosges ,COSGES ,39140,39167,43,46.75,5.4,1.68
+ Courbette ,COURBETTE ,39570,39168,43,46.6,5.566667,0.89
+ Courbouzon ,COURBOUZON ,39570,39169,43,46.65,5.533333,0.85
+ Courlans ,COURLANS ,39570,39170,43,46.666667,5.5,1.05
+ Courlaoux ,COURLAOUX ,39570,39171,43,46.666667,5.45,1.77
+ Coyrière ,COYRIERE ,39200,39174,43,46.35,5.85,1.85
+ Coyron ,COYRON ,39260,39175,43,46.5,5.7,1.2
+ Cramans ,CRAMANS ,39600,39176,43,47.016667,5.766667,1.36
+ Crançot ,CRANCOT ,39570,39177,43,46.683333,5.666667,1.65
+ Crans ,CRANS ,39300,39178,43,46.7,5.966667,1.86
+ Crenans ,CRENANS ,39260,39179,43,46.45,5.733333,1.37
+ Cressia ,CRESSIA ,39270,39180,43,46.516667,5.483333,1.74
+ Crillat ,CRILLAT ,39130,39181,43,46.566667,5.8,0.82
+ Crissey ,CRISSEY ,39100,39182,43,47.066667,5.483333,1.6
+ Crotenay ,CROTENAY ,39300,39183,43,46.75,5.816667,1.39
+ Les Crozets ,LES CROZETS ,39260,39184,43,46.466667,5.8,1.77
+ Cuisia ,CUISIA ,39190,39185,43,46.533333,5.4,1.68
+ Cuttura ,CUTTURA ,39170,39186,43,46.416667,5.8,1.53
+ Cuvier ,CUVIER ,39250,39187,43,46.833333,6.066667,2.49
+ Damparis ,DAMPARIS ,39500,39189,43,47.083333,5.416667,1.68
+ Dampierre ,DAMPIERRE ,39700,39190,43,47.15,5.75,2
+ Darbonnay ,DARBONNAY ,39230,39191,43,46.816667,5.6,1.32
+ Denezières ,DENEZIERES ,39130,39192,43,46.616667,5.8,0.82
+ Le Deschaux ,LE DESCHAUX ,39120,39193,43,46.95,5.5,1.11
+ Desnes ,DESNES ,39140,39194,43,46.766667,5.466667,1.26
+ Dessia ,DESSIA ,39320,39195,43,46.383333,5.5,1.69
+ Les Deux-Fays ,LES DEUX FAYS ,39230,39196,43,46.883333,5.483333,1.16
+ Digna ,DIGNA ,39190,39197,43,46.5,5.4,1.68
+ Dole ,DOLE ,39100,39198,43,47.1,5.5,1.76
+ Domblans ,DOMBLANS ,39210,39199,43,46.766667,5.6,0.7
+ Dompierre-sur-Mont ,DOMPIERRE SUR MONT ,39270,39200,43,46.55,5.6,0.89
+ Doucier ,DOUCIER ,39130,39201,43,46.65,5.766667,0.76
+ Dournon ,DOURNON ,39110,39202,43,46.933333,5.966667,1.86
+ Doye ,DOYE ,39250,39203,43,46.766667,6.016667,2.18
+ Dramelay ,DRAMELAY ,39240,39204,43,46.4,5.533333,1.61
+ Écleux ,ECLEUX ,39600,39206,43,47,5.733333,1.28
+ Entre-Deux-Monts ,ENTRE DEUX MONTS ,39150,39208,43,46.65,5.966667,1.86
+ Équevillon ,EQUEVILLON ,39300,39210,43,46.766667,5.933333,1.65
+ Les Essards-Taignevaux ,LES ESSARDS TAIGNEVAUX ,39120,39211,43,46.916667,5.416667,1.58
+ Essavilly ,ESSAVILLY ,39250,39212,43,46.783333,6.083333,2.59
+ Esserval-Tartre ,ESSERVAL TARTRE ,39250,39214,43,46.816667,6.05,2.38
+ Essia ,ESSIA ,39270,39215,43,46.583333,5.55,1.24
+ Étival ,ETIVAL ,39130,39216,43,46.5,5.8,1.53
+ L'Étoile ,L ETOILE ,39570,39217,43,46.716667,5.533333,1.03
+ Étrépigney ,ETREPIGNEY ,39700,39218,43,47.133333,5.7,1.92
+ Évans ,EVANS ,39700,39219,43,47.183333,5.766667,2.16
+ Falletans ,FALLETANS ,39700,39220,43,47.1,5.566667,1.76
+ Fay-en-Montagne ,FAY EN MONTAGNE ,39800,39222,43,46.75,5.733333,1.44
+ La Ferté ,LA FERTE ,39600,39223,43,46.95,5.666667,1.34
+ Fétigny ,FETIGNY ,39240,39224,43,46.45,5.6,1.6
+ Le Fied ,LE FIED ,39800,39225,43,46.766667,5.716667,1.14
+ Florentia ,FLORENTIA ,39320,39226,43,46.4,5.433333,1.61
+ Foncine-le-Bas ,FONCINE LE BAS ,39520,39227,43,46.633333,6.05,2.38
+ Foncine-le-Haut ,FONCINE LE HAUT ,39460,39228,43,46.666667,6.083333,2.59
+ Fontainebrux ,FONTAINEBRUX ,39140,39229,43,46.7,5.416667,1.58
+ Fontenu ,FONTENU ,39130,39230,43,46.666667,5.816667,1.21
+ Fonteny ,FONTENY ,39110,39231,43,46.883333,5.9,1.45
+ Foucherans ,FOUCHERANS ,39100,39233,43,47.083333,5.45,-1
+ Foulenay ,FOULENAY ,39230,39234,43,46.866667,5.483333,1.16
+ Fraisans ,FRAISANS ,39700,39235,43,47.15,5.766667,2
+ Francheville ,FRANCHEVILLE ,39230,39236,43,46.833333,5.5,1.05
+ Fraroz ,FRAROZ ,39250,39237,43,46.733333,6.083333,2.59
+ La Frasnée ,LA FRASNEE ,39130,39239,43,46.55,5.8,0.89
+ Le Frasnois ,LE FRASNOIS ,39130,39240,43,46.633333,5.9,1.98
+ Frébuans ,FREBUANS ,39570,39241,43,46.65,5.483333,1.25
+Froidefontaine, ,39250,39242,43,46.783333,6.116667,2.8
+ Froideville ,FROIDEVILLE ,39230,39243,43,46.816667,5.483333,1.16
+ Frontenay ,FRONTENAY ,39210,39244,43,46.783333,5.616667,0.95
+ Gatey ,GATEY ,39120,39245,43,46.95,5.433333,1.47
+ Gendrey ,GENDREY ,39350,39246,43,47.2,5.683333,2.24
+ Genod ,GENOD ,39240,39247,43,46.35,5.533333,1.85
+ Geraise ,GERAISE ,39110,39248,43,46.95,5.95,1.76
+ Geruge ,GERUGE ,39570,39250,43,46.633333,5.533333,0.85
+ Gevingey ,GEVINGEY ,39570,39251,43,46.633333,5.5,1.05
+ Gevry ,GEVRY ,39100,39252,43,47.033333,5.45,1.47
+ Gillois ,GILLOIS ,39250,39254,43,46.733333,6.016667,2.18
+ Gizia ,GIZIA ,39190,39255,43,46.516667,5.433333,1.47
+ Goux ,GOUX ,39100,39256,43,47.05,5.516667,1.52
+ Grange-de-Vaivre ,GRANGE DE VAIVRE ,39600,39259,43,47,5.85,1.65
+ Granges-sur-Baume ,GRANGES SUR BAUME ,39210,39260,43,46.716667,5.65,1.02
+ Graye-et-Charnay ,GRAYE ET CHARNAY ,39320,39261,43,46.466667,5.466667,1.36
+ Gredisans ,GREDISANS ,39290,39262,43,47.15,5.516667,2
+ Grozon ,GROZON ,39800,39263,43,46.883333,5.7,0.72
+ Grusse ,GRUSSE ,39190,39264,43,46.6,5.5,1.42
+ Hautecour ,HAUTECOUR ,39130,39265,43,46.566667,5.766667,0.81
+ Les Hays ,LES HAYS ,39120,39266,43,46.9,5.383333,1.78
+ Ivory ,IVORY ,39110,39267,43,46.916667,5.866667,1.24
+ Ivrey ,IVREY ,39110,39268,43,46.983333,5.9,1.45
+ Jeurre ,JEURRE ,39360,39269,43,46.366667,5.716667,1.77
+ Jouhe ,JOUHE ,39100,39270,43,47.133333,5.483333,1.92
+ Ladoye-sur-Seille ,LADOYE SUR SEILLE ,39210,39272,43,46.766667,5.683333,1.68
+ Lains ,LAINS ,39320,39273,43,46.4,5.5,1.61
+ Lajoux ,LAJOUX ,1410,39274,43,46.383333,5.966667,1.86
+ Lamoura ,LAMOURA ,39310,39275,43,46.4,5.966667,1.86
+ Le Larderet ,LE LARDERET ,39300,39277,43,46.816667,5.95,1.76
+ Largillay-Marsonnay ,LARGILLAY MARSONNAY ,39130,39278,43,46.55,5.666667,1.72
+ Larnaud ,LARNAUD ,39140,39279,43,46.716667,5.466667,1.26
+ Larrivoire ,LARRIVOIRE ,39360,39280,43,46.35,5.783333,1.85
+ Le Latet ,LE LATET ,39300,39281,43,46.8,5.933333,1.65
+ La Latette ,LA LATETTE ,39250,39282,43,46.75,6.083333,2.59
+ Lavancia-Épercy ,LAVANCIA EPERCY ,1590,39283,43,46.333333,5.683333,1.93
+ Lavangeot ,LAVANGEOT ,39700,39284,43,47.15,5.616667,2
+ Lavans-lès-Dole ,LAVANS LES DOLE ,39700,39285,43,47.15,5.633333,2
+ Lavans-lès-Saint-Claude ,LAVANS LES SAINT CLAUDE,39170,39286,43,46.383333,5.783333,1.69
+ Lavans-sur-Valouse ,LAVANS SUR VALOUSE ,39240,39287,43,46.333333,5.55,1.93
+ Lavigny ,LAVIGNY ,39210,39288,43,46.716667,5.6,0.78
+ Lect ,LECT ,39260,39289,43,46.383333,5.666667,1.69
+ Légna ,LEGNA ,39240,39290,43,46.433333,5.583333,1.45
+ Lemuy ,LEMUY ,39110,39291,43,46.9,5.966667,1.86
+ Leschères ,LESCHERES ,39170,39293,43,46.45,5.833333,2.14
+ Lézat ,LEZAT ,39400,39294,43,46.5,5.933333,1.65
+ Loisia ,LOISIA ,39320,39295,43,46.483333,5.45,1.7
+ Lombard ,LOMBARD ,39230,39296,43,46.783333,5.5,1.05
+ Longchaumois ,LONGCHAUMOIS ,39400,39297,43,46.45,5.933333,1.79
+ Longcochon ,LONGCOCHON ,39250,39298,43,46.766667,6.066667,2.49
+ Longwy-sur-le-Doubs ,LONGWY SUR LE DOUBS,39120,39299,43,46.95,5.366667,1.89
+ Lons-le-Saunier ,LONS LE SAUNIER ,39570,39300,43,46.666667,5.55,0.74
+ Loulle ,LOULLE ,39300,39301,43,46.7,5.883333,1.34
+ Louvatange ,LOUVATANGE ,39350,39302,43,47.2,5.716667,2.24
+ Louvenne ,LOUVENNE ,39320,39303,43,46.416667,5.466667,1.53
+ La Loye ,LA LOYE ,39380,39305,43,47.033333,5.566667,1.44
+ Macornay ,MACORNAY ,39570,39306,43,46.65,5.533333,0.85
+ Maisod ,MAISOD ,39260,39307,43,46.466667,5.683333,1.29
+ Malange ,MALANGE ,39700,39308,43,47.183333,5.616667,2.16
+ Mallerey ,MALLEREY ,39190,39309,43,46.633333,5.45,1.46
+ Mantry ,MANTRY ,39230,39310,43,46.8,5.566667,0.92
+ Marangea ,MARANGEA ,39270,39311,43,46.483333,5.633333,1.21
+ Marigna-sur-Valouse ,MARIGNA SUR VALOUSE ,39240,39312,43,46.45,5.533333,1.45
+ Marigny ,MARIGNY ,39130,39313,43,46.683333,5.783333,1.27
+ Marnézia ,MARNEZIA ,39270,39314,43,46.566667,5.633333,1.26
+ Marnoz ,MARNOZ ,39110,39315,43,46.95,5.833333,1.36
+ Marpain ,MARPAIN ,39290,39316,43,47.266667,5.566667,2.56
+ La Marre ,LA MARRE ,39210,39317,43,46.733333,5.7,2
+ Martigna ,MARTIGNA ,39260,39318,43,46.4,5.7,1.61
+ Mathenay ,MATHENAY ,39600,39319,43,46.933333,5.683333,1.1
+ Maynal ,MAYNAL ,39190,39320,43,46.55,5.416667,1.58
+ Ménétru-le-Vignoble ,MENETRU LE VIGNOBLE ,39210,39321,43,46.766667,5.616667,0.55
+ Ménétrux-en-Joux ,MENETRUX EN JOUX ,39130,39322,43,46.616667,5.833333,1.03
+ Menotey ,MENOTEY ,39290,39323,43,47.166667,5.5,2.08
+ Mérona ,MERONA ,39270,39324,43,46.55,5.633333,1.08
+ Mesnay ,MESNAY ,39600,39325,43,46.9,5.8,0.97
+ Mesnois ,MESNOIS ,39130,39326,43,46.6,5.683333,1.31
+ Messia-sur-Sorne ,MESSIA SUR SORNE ,39570,39327,43,46.666667,5.516667,0.95
+ Meussia ,MEUSSIA ,39260,39328,43,46.5,5.733333,1.26
+ Mièges ,MIEGES ,39250,39329,43,46.783333,6.033333,2.28
+ Miéry ,MIERY ,39800,39330,43,46.816667,5.666667,0.39
+ Mignovillard ,MIGNOVILLARD ,39250,39331,43,46.8,6.133333,2.9
+ Mirebel ,MIREBEL ,39570,39332,43,46.7,5.733333,-1
+ Moirans-en-Montagne ,MOIRANS EN MONTAGNE ,39260,39333,43,46.433333,5.733333,1.45
+ Moiron ,MOIRON ,39570,39334,43,46.633333,5.566667,0.64
+ Moissey ,MOISSEY ,39290,39335,43,47.2,5.516667,2.24
+ Molain ,MOLAIN ,39800,39336,43,46.816667,5.8,1.67
+ Molamboz ,MOLAMBOZ ,39600,39337,43,46.933333,5.683333,1.1
+ Molinges ,MOLINGES ,39360,39339,43,46.35,5.766667,1.85
+ Monay ,MONAY ,39230,39342,43,46.833333,5.6,1.28
+ Monnetay ,MONNETAY ,39320,39343,43,46.45,5.516667,1.55
+ Monnet-la-Ville ,MONNET LA VILLE ,39300,39344,43,46.716667,5.8,1.74
+ Monnières ,MONNIERES ,39100,39345,43,47.116667,5.466667,1.84
+ Montagna-le-Reconduit ,MONTAGNA LE RECONDUIT ,39160,39346,43,46.466667,5.4,1.68
+ Montagna-le-Templier ,MONTAGNA LE TEMPLIER ,39320,39347,43,46.35,5.45,1.85
+ Montaigu ,MONTAIGU ,39570,39348,43,46.666667,5.566667,0.64
+ Montain ,MONTAIN ,39210,39349,43,46.716667,5.583333,1.05
+ Montbarrey ,MONTBARREY ,39380,39350,43,47.016667,5.65,1.36
+ Montcusel ,MONTCUSEL ,39260,39351,43,46.366667,5.65,1.77
+ Monteplain ,MONTEPLAIN ,39700,39352,43,47.15,5.7,2
+ Montfleur ,MONTFLEUR ,39320,39353,43,46.316667,5.433333,2.01
+ Montholier ,MONTHOLIER ,39800,39354,43,46.9,5.65,0.8
+ Montigny-lès-Arsures ,MONTIGNY LES ARSURES ,39600,39355,43,46.933333,5.783333,0.96
+ Montigny-sur-l'Ain ,MONTIGNY SUR L AIN,39300,39356,43,46.716667,5.783333,1.98
+ Montjouvent ,MONTJOUVENT ,39270,39357,43,46.483333,5.6,1.21
+ Montmalin ,MONTMALIN ,39600,39358,43,46.95,5.716667,1.04
+ Montmirey-la-Ville ,MONTMIREY LA VILLE ,39290,39360,43,47.216667,5.516667,2.32
+ Montmirey-le-Château ,MONTMIREY LE CHATEAU ,39290,39361,43,47.216667,5.533333,2.32
+ Montmorot ,MONTMOROT ,39570,39362,43,46.683333,5.516667,0.95
+ Montrevel ,MONTREVEL ,39320,39363,43,46.433333,5.5,1.45
+ Montrond ,MONTROND ,39300,39364,43,46.8,5.833333,1.31
+ Mont-sous-Vaudrey ,MONT SOUS VAUDREY ,39380,39365,43,46.966667,5.6,1.12
+ Mont-sur-Monnet ,MONT SUR MONNET ,39300,39366,43,46.716667,5.833333,1.28
+ Morbier ,MORBIER ,39400,39367,43,46.533333,6.016667,2.18
+ Morez ,MOREZ ,39400,39368,43,46.516667,6.033333,2.28
+ Morval ,MORVAL ,39320,39369,43,46.416667,5.45,1.53
+ Mouchard ,MOUCHARD ,39330,39370,43,46.966667,5.8,1.12
+ La Mouille ,LA MOUILLE ,39400,39371,43,46.5,5.983333,1.97
+ Les Moussières ,LES MOUSSIERES ,39310,39373,43,46.333333,5.9,1.93
+ Moutonne ,MOUTONNE ,39270,39375,43,46.516667,5.566667,1.05
+ Moutoux ,MOUTOUX ,39300,39376,43,46.783333,5.933333,1.65
+ Mutigney ,MUTIGNEY ,39290,39377,43,47.283333,5.55,2.64
+ Nance ,NANCE ,39140,39379,43,46.733333,5.433333,1.47
+ Nancuise ,NANCUISE ,39270,39380,43,46.466667,5.533333,1.29
+ Les Nans ,LES NANS ,39300,39381,43,46.783333,5.966667,1.86
+ Nantey ,NANTEY ,39160,39382,43,46.416667,5.4,1.68
+ Nenon ,NENON ,39700,39383,43,47.116667,5.583333,1.84
+ Nermier ,NERMIER ,39270,39384,43,46.466667,5.616667,1.29
+ Neuvilley ,NEUVILLEY ,39800,39386,43,46.9,5.6,1.21
+ Névy-lès-Dole ,NEVY LES DOLE ,39380,39387,43,47,5.516667,1.84
+ Nevy-sur-Seille ,NEVY SUR SEILLE ,39210,39388,43,46.75,5.633333,0.41
+ Ney ,NEY ,39300,39389,43,46.733333,5.883333,1.34
+ Nogna ,NOGNA ,39570,39390,43,46.6,5.633333,1.4
+ Nozeroy ,NOZEROY ,39250,39391,43,46.783333,6.033333,2.28
+ Offlanges ,OFFLANGES ,39290,39392,43,47.2,5.55,2.24
+ Onglières ,ONGLIERES ,39250,39393,43,46.8,6.016667,2.18
+ Onoz ,ONOZ ,39270,39394,43,46.45,5.65,1.78
+ Orbagna ,ORBAGNA ,39190,39395,43,46.583333,5.45,1.37
+ Orchamps ,ORCHAMPS ,39700,39396,43,47.15,5.666667,2
+ Orgelet ,ORGELET ,39270,39397,43,46.516667,5.616667,1.05
+ Ougney ,OUGNEY ,39350,39398,43,47.233333,5.666667,2.4
+ Ounans ,OUNANS ,39380,39399,43,46.983333,5.666667,1.2
+ Our ,OUR ,39700,39400,43,47.133333,5.65,1.92
+ Oussières ,OUSSIERES ,39800,39401,43,46.9,5.583333,1.39
+ Pagney ,PAGNEY ,39350,39402,43,47.25,5.7,2.48
+ Pagnoz ,PAGNOZ ,39330,39403,43,46.966667,5.816667,1.12
+ Pannessières ,PANNESSIERES ,39570,39404,43,46.7,5.6,0.87
+ Parcey ,PARCEY ,39100,39405,43,47.016667,5.483333,1.62
+ Le Pasquier ,LE PASQUIER ,39300,39406,43,46.8,5.9,1.45
+ Passenans ,PASSENANS ,39230,39407,43,46.8,5.616667,1.67
+ Patornay ,PATORNAY ,39130,39408,43,46.583333,5.7,1.09
+ Peintre ,PEINTRE ,39290,39409,43,47.2,5.483333,2.24
+ La Perrena ,LA PERRENA ,39150,39410,43,46.666667,6.016667,2.18
+ Perrigny ,PERRIGNY ,39570,39411,43,46.666667,5.583333,0.53
+ Péseux ,PESEUX ,39120,39412,43,46.991667,5.366667,-1
+ La Pesse ,LA PESSE ,39370,39413,43,46.3,5.85,2.09
+ Le Petit-Mercey ,LE PETIT MERCEY ,39350,39414,43,47.2,5.75,2.24
+ Petit Noir ,PETIT NOIR ,39120,39415,43,46.933333,5.333333,2.1
+ Les Piards ,LES PIARDS ,39150,39417,43,46.483333,5.833333,1.64
+ Picarreau ,PICARREAU ,39800,39418,43,46.75,5.75,1.57
+ Pillemoine ,PILLEMOINE ,39300,39419,43,46.7,5.9,1.45
+ Pimorin ,PIMORIN ,39270,39420,43,46.5,5.516667,1.2
+ Le Pin ,LE PIN ,39210,39421,43,46.7,5.566667,1.62
+ Plainoiseau ,PLAINOISEAU ,39210,39422,43,46.733333,5.55,1.65
+ Plaisia ,PLAISIA ,39270,39423,43,46.533333,5.633333,0.98
+ Les Planches-en-Montagne ,LES PLANCHES EN MONTAGNE,39150,39424,43,46.666667,6.016667,2.18
+ Les Planches-près-Arbois ,LES PLANCHES PRES ARBOIS,39600,39425,43,46.883333,5.8,1.16
+ Plasne ,PLASNE ,39800,39426,43,46.8,5.683333,0.59
+ Plénise ,PLENISE ,39250,39427,43,46.8,6.033333,2.28
+ Plénisette ,PLENISETTE ,39250,39428,43,46.8,6.016667,2.18
+ Pleure ,PLEURE ,39120,39429,43,46.916667,5.45,1.37
+ Plumont ,PLUMONT ,39700,39430,43,47.116667,5.716667,1.84
+ Poids-de-Fiole ,POIDS DE FIOLE ,39570,39431,43,46.6,5.633333,1.4
+ Pointre ,POINTRE ,39290,39432,43,47.216667,5.5,2.32
+ Poisoux ,POISOUX ,39160,39433,43,46.383333,5.383333,1.78
+ Poligny ,POLIGNY ,39800,39434,43,46.833333,5.716667,0.56
+ Pont-de-Poitte ,PONT DE POITTE ,39130,39435,43,46.583333,5.683333,1.33
+ Pont-d'Héry ,PONT D HERY ,39110,39436,43,46.866667,5.9,1.45
+ Pont-du-Navoy ,PONT DU NAVOY ,39300,39437,43,46.733333,5.783333,1.92
+ Ponthoux ,PONTHOUX ,39170,39438,43,46.4,5.8,1.61
+ Port-Lesney ,PORT LESNEY ,39600,39439,43,47,5.816667,1.28
+ Pratz ,PRATZ ,39170,39440,43,46.383333,5.766667,1.69
+ Prémanon ,PREMANON ,39220,39441,43,46.466667,6.033333,2.28
+ Prénovel ,PRENOVEL ,39150,39442,43,46.5,5.85,1.37
+ Présilly ,PRESILLY ,39270,39443,43,46.55,5.583333,0.89
+ Pretin ,PRETIN ,39110,39444,43,46.933333,5.833333,1.28
+ Publy ,PUBLY ,39570,39445,43,46.633333,5.65,1.39
+ Pupillin ,PUPILLIN ,39600,39446,43,46.883333,5.766667,0.96
+ Quintigny ,QUINTIGNY ,39570,39447,43,46.733333,5.533333,1.27
+ Rainans ,RAINANS ,39290,39449,43,47.15,5.483333,2
+ Ranchette ,RANCHETTE ,39200,39450,43,46.366667,5.8,1.77
+ Ranchot ,RANCHOT ,39700,39451,43,47.15,5.733333,2
+ Rans ,RANS ,39700,39452,43,47.133333,5.733333,1.92
+ Ravilloles ,RAVILLOLES ,39170,39453,43,46.433333,5.8,1.45
+ Récanoz ,RECANOZ ,39230,39454,43,46.816667,5.5,1.05
+ Reithouse ,REITHOUSE ,39270,39455,43,46.55,5.566667,0.89
+ Relans ,RELANS ,39140,39456,43,46.766667,5.45,1.37
+ Les Repôts ,LES REPOTS ,39140,39457,43,46.683333,5.416667,1.58
+ Revigny ,REVIGNY ,39570,39458,43,46.633333,5.6,0.68
+ La Rixouse ,LA RIXOUSE ,39200,39460,43,46.466667,5.883333,1.51
+ Rix ,RIX ,39250,39461,43,46.766667,6.05,2.38
+ Rochefort-sur-Nenon ,ROCHEFORT SUR NENON ,39700,39462,43,47.116667,5.566667,1.84
+ Rogna ,ROGNA ,39360,39463,43,46.333333,5.75,1.93
+ Romain ,ROMAIN ,39350,39464,43,47.216667,5.716667,-1
+ Romange ,ROMANGE ,39700,39465,43,47.15,5.6,2
+ Rosay ,ROSAY ,39190,39466,43,46.516667,5.45,1.37
+ Rotalier ,ROTALIER ,39190,39467,43,46.583333,5.483333,1.16
+ Rothonay ,ROTHONAY ,39270,39468,43,46.516667,5.533333,1.05
+ Rouffange ,ROUFFANGE ,39350,39469,43,47.216667,5.7,2.32
+ Les Rousses ,LES ROUSSES ,39220,39470,43,46.483333,6.066667,2.49
+ Ruffey-sur-Seille ,RUFFEY SUR SEILLE ,39140,39471,43,46.75,5.5,1.15
+ Rye ,RYE ,39230,39472,43,46.866667,5.433333,1.65
+ Saffloz ,SAFFLOZ ,39130,39473,43,46.666667,5.85,1.55
+ Sainte-Agnès ,SAINTE AGNES ,39190,39474,43,46.6,5.483333,1.16
+ Saint-Amour ,SAINT AMOUR ,39160,39475,43,46.433333,5.35,1.99
+ Saint-Aubin ,SAINT AUBIN ,39410,39476,43,47.033333,5.333333,2.1
+ Saint-Baraing ,SAINT BARAING ,39120,39477,43,46.983333,5.433333,1.47
+ Saint-Claude ,SAINT CLAUDE ,39200,39478,43,46.383333,5.866667,1.69
+ Saint-Didier ,SAINT DIDIER ,39570,39480,43,46.7,5.516667,0.98
+ Saint-Germain-en-Montagne ,SAINT GERMAIN EN MONTAGNE,39300,39481,43,46.783333,5.933333,1.65
+ Saint-Germain-lès-Arlay ,SAINT GERMAIN LES ARLAY,39210,39482,43,46.766667,5.566667,1.35
+ Saint-Hymetière ,SAINT HYMETIERE ,39240,39483,43,46.35,5.55,1.85
+ Saint-Jean-d'Étreux ,SAINT JEAN D ETREUX,39160,39484,43,46.416667,5.366667,1.89
+ Saint-Lamain ,SAINT LAMAIN ,39230,39486,43,46.8,5.6,1.41
+ Saint-Laurent-la-Roche ,SAINT LAURENT LA ROCHE,39570,39488,43,46.6,5.516667,1.15
+ Saint-Lothain ,SAINT LOTHAIN ,39230,39489,43,46.816667,5.633333,1.87
+ Saint-Loup ,SAINT LOUP ,39120,39490,43,47,5.316667,2.2
+ Saint-Lupicin ,SAINT LUPICIN ,39170,39491,43,46.4,5.783333,1.61
+ Saint-Maur ,SAINT MAUR ,39570,39492,43,46.616667,5.583333,0.7
+ Saint-Pierre ,SAINT PIERRE ,39150,39494,43,46.566667,5.916667,1.55
+ Saint-Thiébaud ,SAINT THIEBAUD ,39110,39495,43,46.966667,5.866667,1.24
+ Saizenay ,SAIZENAY ,39110,39497,43,46.966667,5.916667,1.55
+ Salans ,SALANS ,39700,39498,43,47.166667,5.8,2.08
+ Saligney ,SALIGNEY ,39350,39499,43,47.216667,5.633333,2.32
+ Salins-les-Bains ,SALINS LES BAINS ,39110,39500,43,46.95,5.883333,1.34
+ Sampans ,SAMPANS ,39100,39501,43,47.116667,5.45,1.84
+ Santans ,SANTANS ,39380,39502,43,47.016667,5.666667,1.36
+ Sapois ,SAPOIS ,39300,39503,43,46.75,5.95,1.76
+ Sarrogna ,SARROGNA ,39270,39504,43,46.466667,5.616667,1.29
+ Saugeot ,SAUGEOT ,39130,39505,43,46.6,5.833333,1.03
+ Savigna ,SAVIGNA ,39240,39506,43,46.433333,5.6,1.45
+ Séligney ,SELIGNEY ,39120,39507,43,46.933333,5.533333,1.58
+ Sellières ,SELLIERES ,39230,39508,43,46.833333,5.566667,0.71
+ Senaud ,SENAUD ,39160,39509,43,46.4,5.383333,1.78
+ Septmoncel ,SEPTMONCEL ,39310,39510,43,46.366667,5.916667,1.77
+ Sergenaux ,SERGENAUX ,39230,39511,43,46.883333,5.45,1.52
+ Sergenon ,SERGENON ,39120,39512,43,46.9,5.45,1.37
+ Sermange ,SERMANGE ,39700,39513,43,47.2,5.65,2.24
+ Sézéria ,SEZERIA ,39270,39515,43,46.516667,5.583333,1.05
+ Sirod ,SIROD ,39300,39517,43,46.733333,5.983333,1.97
+ Songeson ,SONGESON ,39130,39518,43,46.65,5.816667,1.02
+ Soucia ,SOUCIA ,39130,39519,43,46.55,5.75,0.89
+ Souvans ,SOUVANS ,39380,39520,43,47,5.55,1.28
+ Supt ,SUPT ,39300,39522,43,46.85,5.95,1.76
+ Syam ,SYAM ,39300,39523,43,46.7,5.95,1.76
+ Tancua ,TANCUA ,39400,39524,43,46.516667,5.983333,1.97
+ Tassenières ,TASSENIERES ,39120,39525,43,46.916667,5.516667,1.38
+ Tavaux ,TAVAUX ,39500,39526,43,47.033333,5.4,1.68
+ Taxenne ,TAXENNE ,39350,39527,43,47.216667,5.683333,2.32
+ Thervay ,THERVAY ,39290,39528,43,47.25,5.616667,2.48
+ Thésy ,THESY ,39110,39529,43,46.916667,5.916667,1.55
+ Thoirette ,THOIRETTE ,39240,39530,43,46.266667,5.533333,2.25
+ Thoiria ,THOIRIA ,39130,39531,43,46.533333,5.733333,1.13
+ Thoissia ,THOISSIA ,39160,39532,43,46.433333,5.4,1.68
+ Toulouse-le-Château ,TOULOUSE LE CHATEAU ,39230,39533,43,46.816667,5.583333,1.04
+ La Tour-du-Meix ,LA TOUR DU MEIX,39270,39534,43,46.533333,5.666667,1.56
+ Tourmont ,TOURMONT ,39800,39535,43,46.866667,5.683333,0.63
+ Treffay ,TREFFAY ,39300,39536,43,46.733333,6,2.07
+ Trénal ,TRENAL ,39570,39537,43,46.65,5.466667,1.51
+ Uxelles ,UXELLES ,39130,39538,43,46.6,5.783333,0.72
+ Vadans ,VADANS ,39600,39539,43,46.933333,5.7,0.96
+ Valempoulières ,VALEMPOULIERES ,39300,39540,43,46.833333,5.866667,1.32
+ Valfin-lès-Saint-Claude ,VALFIN LES SAINT CLAUDE,39200,39541,43,46.433333,5.85,1.45
+ Valfin-sur-Valouse ,VALFIN SUR VALOUSE ,39240,39542,43,46.366667,5.533333,1.77
+ Vannoz ,VANNOZ ,39300,39543,43,46.766667,5.916667,1.55
+ Varessia ,VARESSIA ,39270,39544,43,46.55,5.55,0.89
+ Le Vaudioux ,LE VAUDIOUX ,39300,39545,43,46.7,5.916667,1.55
+ Vaudrey ,VAUDREY ,39380,39546,43,46.983333,5.616667,1.2
+ Vaux-lès-Saint-Claude ,VAUX LES SAINT CLAUDE,39360,39547,43,46.366667,5.733333,1.77
+ Vaux-sur-Poligny ,VAUX SUR POLIGNY ,39800,39548,43,46.833333,5.716667,0.56
+ Vercia ,VERCIA ,39190,39549,43,46.583333,5.45,1.37
+ Verges ,VERGES ,39570,39550,43,46.65,5.683333,1.86
+ Véria ,VERIA ,39160,39551,43,46.45,5.433333,1.78
+ Vernantois ,VERNANTOIS ,39570,39552,43,46.633333,5.583333,0.53
+ Le Vernois ,LE VERNOIS ,39210,39553,43,46.733333,5.6,0.5
+ Vers-en-Montagne ,VERS EN MONTAGNE ,39300,39554,43,46.816667,5.916667,1.55
+ Vers-sous-Sellières ,VERS SOUS SELLIERES ,39230,39555,43,46.816667,5.533333,0.85
+ Vertamboz ,VERTAMBOZ ,39130,39556,43,46.6,5.733333,0.65
+ Vescles ,VESCLES ,39240,39557,43,46.366667,5.6,1.77
+ Vevy ,VEVY ,39570,39558,43,46.666667,5.65,1.35
+ La Vieille-Loye ,LA VIEILLE LOYE ,39380,39559,43,47.033333,5.633333,1.44
+ Villard-Saint-Sauveur ,VILLARD SAINT SAUVEUR ,39200,39560,43,46.366667,5.866667,1.77
+ Villards-d'Héria ,VILLARDS D HERIA ,39260,39561,43,46.416667,5.733333,1.53
+ Villard-sur-Bienne ,VILLARD SUR BIENNE ,39200,39562,43,46.466667,5.9,1.67
+ Villechantria ,VILLECHANTRIA ,39320,39564,43,46.383333,5.45,1.69
+ Villeneuve-d'Aval ,VILLENEUVE D AVAL ,39600,39565,43,46.966667,5.75,1.12
+ Villeneuve-lès-Charnod ,VILLENEUVE LES CHARNOD ,39240,39566,43,46.333333,5.466667,1.93
+ Villeneuve-sous-Pymont ,VILLENEUVE SOUS PYMONT ,39570,39567,43,46.683333,5.55,0.74
+ Villersérine ,VILLERSERINE ,39800,39568,43,46.85,5.65,0.55
+ Villers-Farlay ,VILLERS FARLAY ,39600,39569,43,47,5.75,1.28
+ Villers-lès-Bois ,VILLERS LES BOIS ,39800,39570,43,46.916667,5.583333,1.51
+ Villers-Robert ,VILLERS ROBERT ,39120,39571,43,46.95,5.516667,1.35
+ Villette-lès-Arbois ,VILLETTE LES ARBOIS ,39600,39572,43,46.916667,5.75,0.88
+ Villette-lès-Dole ,VILLETTE LES DOLE ,39100,39573,43,47.05,5.5,1.52
+ Villevieux ,VILLEVIEUX ,39140,39574,43,46.733333,5.466667,1.26
+ Le Villey ,LE VILLEY ,39230,39575,43,46.85,5.5,1.05
+ Vincelles ,VINCELLES ,39190,39576,43,46.6,5.483333,1.16
+ Vincent ,VINCENT ,39230,39577,43,46.783333,5.483333,1.16
+ Viremont ,VIREMONT ,39240,39578,43,46.433333,5.616667,1.54
+ Viry ,VIRY ,39360,39579,43,46.3,5.75,2.09
+ Le Viseney ,LE VISENEY ,39800,39580,43,46.866667,5.6,1.01
+ Vitreux ,VITREUX ,39350,39581,43,47.25,5.683333,2.48
+ Voiteur ,VOITEUR ,39210,39582,43,46.75,5.616667,0.33
+ Vosbles ,VOSBLES ,39240,39583,43,46.333333,5.516667,1.93
+ Vriange ,VRIANGE ,39700,39584,43,47.183333,5.583333,2.16
+ Vulvoz ,VULVOZ ,39360,39585,43,46.333333,5.783333,1.93
+ Aresches ,ARESCHES ,39110,39586,43,46.9,5.916667,1.55
+ Chavanne ,CHAVANNE ,39570,39902,43,46.683333,5.591667,-1
+ Saint-Ylie ,SAINT YLIE ,39100,39909,43,47.066667,5.466667,1.6
+ Vouglans ,VOUGLANS ,39260,39910,43,46.383333,5.666667,1.69
+ La Cure ,LA CURE ,39220,39912,43,46.466667,6.083333,2.59
+ Aire-sur-l'Adour ,AIRE SUR L ADOUR,40800,40001,72,43.7,-0.266667,1.56
+ Amou ,AMOU ,40330,40002,72,43.6,-0.75,1.2
+ Angoumé ,ANGOUME ,40990,40003,72,43.666667,-1.133333,1.34
+ Angresse ,ANGRESSE ,40150,40004,72,43.65,-1.383333,2.13
+ Arboucave ,ARBOUCAVE ,40320,40005,72,43.616667,-0.433333,1.1
+ Arengosse ,ARENGOSSE ,40110,40006,72,44,-0.783333,1.04
+ Argelos ,ARGELOS ,40700,40007,72,43.583333,-0.633333,1.29
+ Argelouse ,ARGELOUSE ,40430,40008,72,44.36596,-0.64616,-1
+ Arjuzanx ,ARJUZANX ,40110,40009,72,44.016667,-0.85,1.13
+ Artassenx ,ARTASSENX ,40090,40012,72,43.85,-0.383333,1.18
+ Arthez-d'Armagnac ,ARTHEZ D ARMAGNAC ,40190,40013,72,43.9,-0.25,1.62
+ Arue ,ARUE ,40120,40014,72,44.066667,-0.35,1.41
+ Arx ,ARX ,40310,40015,72,44.116667,0.066667,2.67
+ Aubagnan ,AUBAGNAN ,40700,40016,72,43.666667,-0.5,1.62
+ Audignon ,AUDIGNON ,40500,40017,72,43.716667,-0.6,0.83
+ Audon ,AUDON ,40400,40018,72,43.8,-0.816667,0.79
+ Aureilhan ,AUREILHAN ,40200,40019,72,44.216667,-1.2,2.25
+ Aurice ,AURICE ,40500,40020,72,43.816667,-0.6,1.49
+ Azur ,AZUR ,40140,40021,72,43.8,-1.3,1.86
+ Bahus-Soubiran ,BAHUS SOUBIRAN ,40320,40022,72,43.666667,-0.35,1.29
+ Baigts ,BAIGTS ,40380,40023,72,43.683333,-0.783333,1.73
+ Banos ,BANOS ,40500,40024,72,43.733333,-0.616667,1.03
+ Bascons ,BASCONS ,40090,40025,72,43.816667,-0.4,1.14
+ Bassercles ,BASSERCLES ,40700,40027,72,43.55,-0.616667,1.48
+ Bastennes ,BASTENNES ,40360,40028,72,43.65,-0.783333,1.12
+ Bats ,BATS ,40320,40029,72,43.65,-0.45,0.96
+ Baudignan ,BAUDIGNAN ,40310,40030,72,44.083333,0.05,2.61
+ Bégaar ,BEGAAR ,40400,40031,72,43.816667,-0.85,1.01
+ Belhade ,BELHADE ,40410,40032,72,44.375,-0.683333,-1
+ Bélis ,BELIS ,40120,40033,72,44.066667,-0.45,1.41
+ Bélus ,BELUS ,40300,40034,72,43.583333,-1.1,1.29
+ Benesse-lès-Dax ,BENESSE LES DAX ,40180,40035,72,43.65,-1.033333,0.98
+ Bénesse-Maremne ,BENESSE MAREMNE ,40230,40036,72,43.633333,-1.35,2.02
+ Benquet ,BENQUET ,40280,40037,72,43.833333,-0.5,0.79
+ Bergouey ,BERGOUEY ,40250,40038,72,43.666667,-0.716667,1.19
+ Beylongue ,BEYLONGUE ,40370,40040,72,43.916667,-0.833333,1.38
+ Beyries ,BEYRIES ,40700,40041,72,43.566667,-0.633333,1.38
+ Biaudos ,BIAUDOS ,40390,40044,72,43.55,-1.3,1.86
+ Biscarrosse ,BISCARROSSE ,40600,40046,72,44.391667,-1.166667,-1
+ Bonnegarde ,BONNEGARDE ,40330,40047,72,43.566667,-0.716667,1.38
+ Boos ,BOOS ,40370,40048,72,43.9,-0.983333,1.31
+ Bordères-et-Lamensans ,BORDERES ET LAMENSANS ,40270,40049,72,43.766667,-0.366667,1.23
+ Bostens ,BOSTENS ,40090,40050,72,43.966667,-0.366667,1.23
+ Bougue ,BOUGUE ,40090,40051,72,43.9,-0.383333,1.18
+ Bourdalat ,BOURDALAT ,40190,40052,72,43.833333,-0.2,1.78
+ Bourriot-Bergonce ,BOURRIOT BERGONCE ,40120,40053,72,44.116667,-0.25,1.69
+ Brassempouy ,BRASSEMPOUY ,40330,40054,72,43.633333,-0.7,1.01
+ Bretagne-de-Marsan ,BRETAGNE DE MARSAN ,40280,40055,72,43.85,-0.45,1.39
+ Brocas ,BROCAS ,40420,40056,72,44.05,-0.533333,1.32
+ Buanes ,BUANES ,40320,40057,72,43.716667,-0.416667,1.43
+ Cachen ,CACHEN ,40120,40058,72,44.066667,-0.433333,1.41
+ Cagnotte ,CAGNOTTE ,40300,40059,72,43.6,-1.066667,1.2
+ Callen ,CALLEN ,40430,40060,72,44.3,-0.466667,2.72
+ Campagne ,CAMPAGNE ,40090,40061,72,43.866667,-0.633333,1.35
+ Campet-et-Lamolère ,CAMPET ET LAMOLERE ,40090,40062,72,43.916667,-0.6,0.99
+ Candresse ,CANDRESSE ,40180,40063,72,43.716667,-0.983333,0.81
+ Canenx-et-Réaut ,CANENX ET REAUT ,40090,40064,72,44,-0.433333,1.04
+ Capbreton ,CAPBRETON ,40130,40065,72,43.633333,-1.433333,2.3
+ Carcarès-Sainte-Croix ,CARCARES SAINTE CROIX ,40400,40066,72,43.85,-0.783333,0.31
+ Carcen-Ponson ,CARCEN PONSON ,40400,40067,72,43.883333,-0.8,0.75
+ Cassen ,CASSEN ,40380,40068,72,43.766667,-0.866667,0.97
+ Castaignos-Souslens ,CASTAIGNOS SOUSLENS ,40700,40069,72,43.583333,-0.65,1.29
+ Castandet ,CASTANDET ,40270,40070,72,43.8,-0.35,1.29
+ Castelnau-Chalosse ,CASTELNAU CHALOSSE ,40360,40071,72,43.666667,-0.85,1.22
+ Castelnau-Tursan ,CASTELNAU TURSAN ,40320,40072,72,43.65,-0.4,1.12
+ Castelner ,CASTELNER ,40700,40073,72,43.55,-0.583333,1.48
+ Castel-Sarrazin ,CASTEL SARRAZIN ,40330,40074,72,43.616667,-0.783333,1.45
+ Castets ,CASTETS ,40260,40075,72,43.883333,-1.15,1.36
+ Cauna ,CAUNA ,40500,40076,72,43.783333,-0.65,1.73
+ Cauneille ,CAUNEILLE ,40300,40077,72,43.55,-1.066667,1.48
+ Caupenne ,CAUPENNE ,40250,40078,72,43.683333,-0.75,0.97
+ Cazalis ,CAZALIS ,40700,40079,72,43.616667,-0.666667,1.11
+ Cazères-sur-l'Adour ,CAZERES SUR L ADOUR,40270,40080,72,43.75,-0.316667,1.4
+ Cère ,CERE ,40090,40081,72,43.983333,-0.516667,0.95
+ Classun ,CLASSUN ,40320,40082,72,43.716667,-0.416667,1.43
+ Clèdes ,CLEDES ,40320,40083,72,43.616667,-0.383333,1.18
+ Clermont ,CLERMONT ,40180,40084,72,43.65,-0.916667,1.45
+ Commensacq ,COMMENSACQ ,40210,40085,72,44.216667,-0.816667,2.25
+ Coudures ,COUDURES ,40500,40086,72,43.7,-0.516667,0.79
+ Créon-d'Armagnac ,CREON D ARMAGNAC ,40240,40087,72,44,-0.1,2.12
+ Dax ,DAX ,40100,40088,72,43.716667,-1.05,1.03
+ Doazit ,DOAZIT ,40700,40089,72,43.7,-0.65,1.52
+ Donzacq ,DONZACQ ,40360,40090,72,43.65,-0.8,0.92
+ Duhort-Bachen ,DUHORT BACHEN ,40800,40091,72,43.733333,-0.316667,1.65
+ Dumes ,DUMES ,40500,40092,72,43.7,-0.583333,0.76
+ Escalans ,ESCALANS ,40310,40093,72,43.966667,0.033333,2.56
+ Escource ,ESCOURCE ,40210,40094,72,44.166667,-1.033333,1.97
+ Estibeaux ,ESTIBEAUX ,40290,40095,72,43.6,-0.9,1.2
+ Estigarde ,ESTIGARDE ,40240,40096,72,44.033333,-0.116667,2.06
+ Eugénie-les-Bains ,EUGENIE LES BAINS ,40320,40097,72,43.7,-0.383333,1.18
+ Eyrès-Moncube ,EYRES MONCUBE ,40500,40098,72,43.716667,-0.55,0.63
+ Fargues ,FARGUES ,40500,40099,72,43.716667,-0.45,1.64
+ Le Frèche ,LE FRECHE ,40190,40100,72,43.933333,-0.233333,1.67
+ Gaas ,GAAS ,40350,40101,72,43.616667,-1.033333,1.1
+ Gabarret ,GABARRET ,40310,40102,72,43.983333,0.016667,2.5
+ Gaillères ,GAILLERES ,40090,40103,72,43.933333,-0.366667,1.23
+ Gamarde-les-Bains ,GAMARDE LES BAINS ,40380,40104,72,43.733333,-0.866667,0.5
+ Garein ,GAREIN ,40420,40105,72,44.05,-0.65,1.79
+ Garrey ,GARREY ,40180,40106,72,43.666667,-0.9,1.62
+ Garrosse ,GARROSSE ,40110,40107,72,44.016667,-0.916667,1.13
+ Gastes ,GASTES ,40160,40108,72,44.333333,-1.15,2.9
+ Gaujacq ,GAUJACQ ,40330,40109,72,43.65,-0.733333,1.07
+ Geaune ,GEAUNE ,40320,40110,72,43.65,-0.383333,1.18
+ Geloux ,GELOUX ,40090,40111,72,43.983333,-0.633333,1.4
+ Gibret ,GIBRET ,40380,40112,72,43.7,-0.816667,0.92
+ Goos ,GOOS ,40180,40113,72,43.733333,-0.9,1.77
+ Gourbera ,GOURBERA ,40990,40114,72,43.8,-1.05,1.03
+ Gousse ,GOUSSE ,40465,40115,72,43.766667,-0.9,1.11
+ Gouts ,GOUTS ,40400,40116,72,43.783333,-0.8,1.02
+ Grenade-sur-l'Adour ,GRENADE SUR L ADOUR,40270,40117,72,43.783333,-0.416667,1.07
+ Habas ,HABAS ,40290,40118,72,43.566667,-0.933333,1.38
+ Hagetmau ,HAGETMAU ,40700,40119,72,43.666667,-0.583333,0.82
+ Hastingues ,HASTINGUES ,40300,40120,72,43.533333,-1.15,1.57
+ Hauriet ,HAURIET ,40250,40121,72,43.716667,-0.7,0.56
+ Haut-Mauco ,HAUT MAUCO ,40280,40122,72,43.833333,-0.55,1.25
+ Herm ,HERM ,40990,40123,72,43.816667,-1.15,1.43
+ Herré ,HERRE ,40310,40124,72,44,-0.016667,2.39
+ Heugas ,HEUGAS ,40180,40125,72,43.65,-1.083333,1.14
+ Hinx ,HINX ,40180,40126,72,43.7,-0.933333,1.21
+ Hontanx ,HONTANX ,40190,40127,72,43.816667,-0.266667,1.56
+ Horsarrieu ,HORSARRIEU ,40700,40128,72,43.683333,-0.6,1.01
+ Josse ,JOSSE ,40230,40129,72,43.633333,-1.216667,1.58
+ Labastide-Chalosse ,LABASTIDE CHALOSSE ,40700,40130,72,43.616667,-0.616667,1.1
+ Labastide-d'Armagnac ,LABASTIDE D ARMAGNAC ,40240,40131,72,43.966667,-0.183333,1.84
+ Labenne ,LABENNE ,40530,40133,72,43.6,-1.416667,2.24
+ Labouheyre ,LABOUHEYRE ,40210,40134,72,44.216667,-0.916667,2.25
+ Labrit ,LABRIT ,40420,40135,72,44.1,-0.55,1.6
+ Lacajunte ,LACAJUNTE ,40320,40136,72,43.6,-0.416667,1.2
+ Lacquy ,LACQUY ,40120,40137,72,43.95,-0.266667,1.56
+ Lacrabe ,LACRABE ,40700,40138,72,43.616667,-0.583333,1.1
+ Laglorieuse ,LAGLORIEUSE ,40090,40139,72,43.866667,-0.4,1.12
+ Lagrange ,LAGRANGE ,40240,40140,72,43.966667,-0.1,2.12
+ Lahosse ,LAHOSSE ,40250,40141,72,43.7,-0.8,1.5
+ Laluque ,LALUQUE ,40465,40142,72,43.85,-1,1.49
+ Lamothe ,LAMOTHE ,40250,40143,72,43.783333,-0.65,1.81
+ Larbey ,LARBEY ,40250,40144,72,43.7,-0.716667,0.64
+ Larrivière ,LARRIVIERE ,40270,40145,72,43.766667,-0.416667,1.07
+ Latrille ,LATRILLE ,40800,40146,72,43.633333,-0.283333,1.51
+ Laurède ,LAUREDE ,40250,40147,72,43.75,-0.783333,1.16
+ Lauret ,LAURET ,40320,40148,72,43.566667,-0.333333,1.67
+ Lencouacq ,LENCOUACQ ,40120,40149,72,44.1,-0.4,1.6
+ Léon ,LEON ,40550,40150,72,43.883333,-1.3,1.86
+ Lesgor ,LESGOR ,40400,40151,72,43.85,-0.9,1.81
+ Lesperon ,LESPERON ,40260,40152,72,43.966667,-1.083333,1.14
+ Lévignacq ,LEVIGNACQ ,40170,40154,72,44,-1.166667,1.42
+ Linxe ,LINXE ,40260,40155,72,43.916667,-1.25,1.69
+ Liposthey ,LIPOSTHEY ,40410,40156,72,44.316667,-0.883333,2.81
+ Lit-et-Mixe ,LIT ET MIXE ,40170,40157,72,44.033333,-1.25,1.69
+ Losse ,LOSSE ,40240,40158,72,44.1,-0.1,2.12
+ Louer ,LOUER ,40380,40159,72,43.75,-0.883333,0.98
+ Lourquen ,LOURQUEN ,40250,40160,72,43.733333,-0.783333,1.08
+ Lubbon ,LUBBON ,40240,40161,72,44.1,-0.016667,2.39
+ Lucbardez-et-Bargues ,LUCBARDEZ ET BARGUES ,40090,40162,72,43.966667,-0.4,1.12
+ Lüe ,LUE ,40210,40163,72,44.233333,-0.983333,2.34
+ Retjons ,RETJONS ,40120,40164,72,44.1,-0.283333,1.6
+ Luglon ,LUGLON ,40630,40165,72,44.083333,-0.716667,1.51
+ Lussagnet ,LUSSAGNET ,40270,40166,72,43.766667,-0.233333,2.09
+ Luxey ,LUXEY ,40430,40167,72,44.266667,-0.516667,2.53
+ Magescq ,MAGESCQ ,40140,40168,72,43.783333,-1.216667,1.58
+ Maillas ,MAILLAS ,40120,40169,72,44.25,-0.183333,2.44
+ Maillères ,MAILLERES ,40120,40170,72,44.033333,-0.433333,1.23
+ Mano ,MANO ,40410,40171,72,44.416667,-0.675,-1
+ Mant ,MANT ,40700,40172,72,43.583333,-0.516667,1.29
+ Marpaps ,MARPAPS ,40330,40173,72,43.566667,-0.683333,1.38
+ Mauries ,MAURIES ,40320,40174,72,43.616667,-0.333333,1.34
+ Maurrin ,MAURRIN ,40270,40175,72,43.833333,-0.366667,1.23
+ Mauvezin-d'Armagnac ,MAUVEZIN D ARMAGNAC ,40240,40176,72,43.95,-0.116667,2.06
+ Maylis ,MAYLIS ,40250,40177,72,43.7,-0.683333,0.99
+ Mées ,MEES ,40990,40179,72,43.7,-1.1,1.2
+ Meilhan ,MEILHAN ,40400,40180,72,43.866667,-0.7,1.8
+ Messanges ,MESSANGES ,40660,40181,72,43.816667,-1.383333,2.13
+ Mézos ,MEZOS ,40170,40182,72,44.083333,-1.166667,1.51
+ Mimbaste ,MIMBASTE ,40350,40183,72,43.65,-0.966667,1.31
+ Mimizan ,MIMIZAN ,40200,40184,72,44.2,-1.233333,2.16
+ Miramont-Sensacq ,MIRAMONT SENSACQ ,40320,40185,72,43.6,-0.316667,1.55
+ Misson ,MISSON ,40290,40186,72,43.583333,-0.966667,1.55
+ Moliets-et-Maa ,MOLIETS ET MAA ,40660,40187,72,43.85,-1.35,2.02
+ Momuy ,MOMUY ,40700,40188,72,43.616667,-0.633333,1.1
+ Monget ,MONGET ,40700,40189,72,43.566667,-0.516667,1.41
+ Mont-de-Marsan ,MONT DE MARSAN ,40000,40192,72,43.883333,-0.5,0.79
+ Montégut ,MONTEGUT ,40190,40193,72,43.866667,-0.2,1.78
+ Montfort-en-Chalosse ,MONTFORT EN CHALOSSE ,40380,40194,72,43.716667,-0.833333,0.54
+ Montgaillard ,MONTGAILLARD ,40500,40195,72,43.75,-0.483333,1.1
+ Montsoué ,MONTSOUE ,40500,40196,72,43.733333,-0.516667,0.74
+ Morcenx ,MORCENX ,40110,40197,72,44.033333,-0.916667,1.23
+ Morganx ,MORGANX ,40700,40198,72,43.616667,-0.566667,1.1
+ Mouscardès ,MOUSCARDES ,40290,40199,72,43.583333,-0.883333,1.29
+ Moustey ,MOUSTEY ,40410,40200,72,44.35857,-0.76167,-1
+ Mugron ,MUGRON ,40250,40201,72,43.75,-0.75,0.61
+ Narrosse ,NARROSSE ,40180,40202,72,43.7,-1,0.87
+ Nassiet ,NASSIET ,40330,40203,72,43.6,-0.683333,1.2
+ Nerbis ,NERBIS ,40250,40204,72,43.75,-0.733333,0.44
+ Nousse ,NOUSSE ,40380,40205,72,43.716667,-0.816667,0.7
+ Oeyregave ,OEYREGAVE ,40300,40206,72,43.533333,-1.1,1.57
+ Oeyreluy ,OEYRELUY ,40180,40207,72,43.666667,-1.083333,1.14
+ Onard ,ONARD ,40380,40208,72,43.783333,-0.833333,1.24
+ Ondres ,ONDRES ,40440,40209,72,43.566667,-1.433333,2.3
+ Onesse-et-Laharie ,ONESSE ET LAHARIE ,40110,40210,72,44.066667,-1.066667,1.92
+ Orist ,ORIST ,40300,40211,72,43.633333,-1.166667,1.42
+ Orthevielle ,ORTHEVIELLE ,40300,40212,72,43.55,-1.15,1.48
+ Orx ,ORX ,40230,40213,72,43.6,-1.366667,2.08
+ Ossages ,OSSAGES ,40290,40214,72,43.55,-0.883333,1.48
+ Ousse-Suzan ,OUSSE SUZAN ,40110,40215,72,43.95,-0.766667,1.3
+ Ozourt ,OZOURT ,40380,40216,72,43.666667,-0.883333,1.65
+ Parentis-en-Born ,PARENTIS EN BORN ,40160,40217,72,44.35,-1.066667,3
+ Parleboscq ,PARLEBOSCQ ,40310,40218,72,43.933333, ,2.45
+ Payros-Cazautets ,PAYROS CAZAUTETS ,40320,40219,72,43.616667,-0.4,1.12
+ Pécorade ,PECORADE ,40320,40220,72,43.65,-0.366667,1.23
+ Perquie ,PERQUIE ,40190,40221,72,43.866667,-0.283333,1.51
+ Pey ,PEY ,40300,40222,72,43.633333,-1.2,1.72
+ Peyre ,PEYRE ,40700,40223,72,43.566667,-0.55,1.38
+ Peyrehorade ,PEYREHORADE ,40300,40224,72,43.55,-1.1,1.48
+ Philondenx ,PHILONDENX ,40320,40225,72,43.566667,-0.45,1.56
+ Pimbo ,PIMBO ,40320,40226,72,43.583333,-0.366667,1.29
+ Pissos ,PISSOS ,40410,40227,72,44.3,-0.766667,2.72
+ Pomarez ,POMAREZ ,40360,40228,72,43.633333,-0.833333,1.01
+ Pontenx-les-Forges ,PONTENX LES FORGES ,40200,40229,72,44.25,-1.116667,2.44
+ Pontonx-sur-l'Adour ,PONTONX SUR L ADOUR,40465,40230,72,43.783333,-0.933333,0.64
+ Port-de-Lanne ,PORT DE LANNE ,40300,40231,72,43.566667,-1.2,1.53
+ Poudenx ,POUDENX ,40700,40232,72,43.583333,-0.583333,1.29
+ Pouillon ,POUILLON ,40350,40233,72,43.6,-1,1.2
+ Pouydesseaux ,POUYDESSEAUX ,40120,40234,72,43.966667,-0.316667,1.4
+ Poyanne ,POYANNE ,40380,40235,72,43.75,-0.816667,0.78
+ Poyartin ,POYARTIN ,40380,40236,72,43.683333,-0.866667,1.15
+ Pujo-le-Plan ,PUJO LE PLAN ,40190,40238,72,43.85,-0.333333,1.34
+ Puyol-Cazalet ,PUYOL CAZALET ,40320,40239,72,43.6,-0.4,1.2
+ Renung ,RENUNG ,40270,40240,72,43.75,-0.35,1.29
+ Richet ,RICHET ,40410,40241,72,44.333333,-0.75,2.9
+ Rimbez-et-Baudiets ,RIMBEZ ET BAUDIETS ,40310,40242,72,44.05,0.05,2.61
+ Rion-des-Landes ,RION DES LANDES ,40370,40243,72,43.933333,-0.916667,0.67
+ Rivière-Saas-et-Gourby ,RIVIERE SAAS ET GOURBY,40180,40244,72,43.683333,-1.133333,1.42
+ Sabres ,SABRES ,40630,40246,72,44.15,-0.733333,1.88
+ Saint-Agnet ,SAINT AGNET ,40800,40247,72,43.616667,-0.266667,1.56
+ Saint-Barthélemy ,SAINT BARTHELEMY ,40390,40251,72,43.516667,-1.333333,1.97
+ Sainte-Colombe ,SAINTE COLOMBE ,40700,40252,72,43.683333,-0.55,1.21
+ Saint-Cricq-Chalosse ,SAINT CRICQ CHALOSSE ,40700,40253,72,43.65,-0.683333,1.45
+ Saint-Cricq-du-Gave ,SAINT CRICQ DU GAVE,40300,40254,72,43.533333,-1.016667,1.8
+ Saint-Cricq-Villeneuve ,SAINT CRICQ VILLENEUVE ,40190,40255,72,43.883333,-0.35,1.42
+ Saint-Étienne-d'Orthe ,SAINT ETIENNE D ORTHE,40300,40256,72,43.583333,-1.166667,1.42
+ Sainte-Eulalie-en-Born ,SAINTE EULALIE EN BORN,40200,40257,72,44.266667,-1.183333,2.53
+ Saint-Gein ,SAINT GEIN ,40190,40259,72,43.833333,-0.3,1.45
+ Saint-Geours-d'Auribat ,SAINT GEOURS D AURIBAT,40380,40260,72,43.75,-0.833333,0.53
+ Saint-Geours-de-Maremne ,SAINT GEOURS DE MAREMNE,40230,40261,72,43.683333,-1.233333,1.64
+ Saint-Gor ,SAINT GOR ,40120,40262,72,44.05,-0.233333,1.67
+ Saint-Jean-de-Lier ,SAINT JEAN DE LIER,40380,40263,72,43.783333,-0.883333,1.49
+ Saint-Jean-de-Marsacq ,SAINT JEAN DE MARSACQ,40230,40264,72,43.616667,-1.25,1.69
+ Saint-Julien-d'Armagnac ,SAINT JULIEN D ARMAGNAC,40240,40265,72,43.966667,-0.116667,2.06
+ Saint-Julien-en-Born ,SAINT JULIEN EN BORN,40170,40266,72,44.066667,-1.233333,1.64
+ Saint-Justin ,SAINT JUSTIN ,40240,40267,72,43.983333,-0.233333,1.67
+ Saint-Laurent-de-Gosse ,SAINT LAURENT DE GOSSE,40390,40268,72,43.533333,-1.266667,1.75
+ Saint-Lon-les-Mines ,SAINT LON LES MINES,40300,40269,72,43.616667,-1.116667,1.25
+ Saint-Loubouer ,SAINT LOUBOUER ,40320,40270,72,43.683333,-0.416667,1.07
+ Sainte-Marie-de-Gosse ,SAINTE MARIE DE GOSSE,40390,40271,72,43.558333,-1.233333,-1
+ Saint-Martin-de-Hinx ,SAINT MARTIN DE HINX,40390,40272,72,43.583333,-1.266667,1.75
+ Saint-Martin-de-Seignanx ,SAINT MARTIN DE SEIGNANX,40390,40273,72,43.55,-1.383333,2.13
+ Saint-Martin-d'Oney ,SAINT MARTIN D ONEY,40090,40274,72,43.916667,-0.633333,1.28
+ Saint-Maurice-sur-Adour ,SAINT MAURICE SUR ADOUR,40270,40275,72,43.783333,-0.45,1.63
+ Saint-Michel-Escalus ,SAINT MICHEL ESCALUS ,40550,40276,72,43.9,-1.25,1.69
+ Saint-Pandelon ,SAINT PANDELON ,40180,40277,72,43.666667,-1.033333,0.98
+ Saint-Paul-lès-Dax ,SAINT PAUL LES DAX,40990,40279,72,43.733333,-1.05,1.03
+ Saint-Perdon ,SAINT PERDON ,40090,40280,72,43.866667,-0.583333,0.95
+ Saint-Pierre-du-Mont ,SAINT PIERRE DU MONT,40280,40281,72,43.883333,-0.516667,0.91
+ Saint-Sever ,SAINT SEVER ,40500,40282,72,43.766667,-0.566667,0.57
+ Saint-Vincent-de-Paul ,SAINT VINCENT DE PAUL,40990,40283,72,43.75,-1,1.16
+ Saint-Vincent-de-Tyrosse ,SAINT VINCENT DE TYROSSE,40230,40284,72,43.666667,-1.3,1.86
+ Saint-Yaguen ,SAINT YAGUEN ,40400,40285,72,43.883333,-0.733333,1.37
+ Samadet ,SAMADET ,40320,40286,72,43.633333,-0.483333,1.53
+ Sanguinet ,SANGUINET ,40460,40287,72,44.483333,-1.075,-1
+ Sarbazan ,SARBAZAN ,40120,40288,72,44.016667,-0.316667,1.4
+ Sarraziet ,SARRAZIET ,40500,40289,72,43.7,-0.483333,1.22
+ Sarron ,SARRON ,40800,40290,72,43.583333,-0.266667,1.56
+ Saubion ,SAUBION ,40230,40291,72,43.666667,-1.35,2.02
+ Saubrigues ,SAUBRIGUES ,40230,40292,72,43.616667,-1.316667,1.91
+ Saubusse ,SAUBUSSE ,40180,40293,72,43.666667,-1.183333,2.08
+ Saugnac-et-Cambran ,SAUGNAC ET CAMBRAN ,40180,40294,72,43.666667,-1,0.87
+ Saugnacq-et-Muret ,SAUGNACQ ET MURET ,40410,40295,72,44.408333,-0.825,-1
+ Seignosse ,SEIGNOSSE ,40510,40296,72,43.683333,-1.366667,2.08
+ Le Sen ,LE SEN ,40420,40297,72,44.133333,-0.5,1.78
+ Serres-Gaston ,SERRES GASTON ,40700,40298,72,43.65,-0.5,1.51
+ Serreslous-et-Arribans ,SERRESLOUS ET ARRIBANS ,40700,40299,72,43.666667,-0.65,1.14
+ Seyresse ,SEYRESSE ,40180,40300,72,43.683333,-1.066667,1.09
+ Siest ,SIEST ,40180,40301,72,43.65,-1.133333,1.47
+ Sindères ,SINDERES ,40110,40302,72,44.033333,-0.983333,1.23
+ Solférino ,SOLFERINO ,40210,40303,72,44.15,-0.9,1.88
+ Soorts-Hossegor ,SOORTS HOSSEGOR ,40150,40304,72,43.666667,-1.4,2.19
+ Sorbets ,SORBETS ,40320,40305,72,43.633333,-0.316667,1.4
+ Sorde-l'Abbaye ,SORDE L ABBAYE ,40300,40306,72,43.533333,-1.05,1.57
+ Sore ,SORE ,40430,40307,72,44.316667,-0.583333,2.81
+ Sort-en-Chalosse ,SORT EN CHALOSSE ,40180,40308,72,43.683333,-0.933333,1.18
+ Souprosse ,SOUPROSSE ,40250,40309,72,43.783333,-0.7,1.18
+ Soustons ,SOUSTONS ,40140,40310,72,43.75,-1.316667,1.91
+ Taller ,TALLER ,40260,40311,72,43.866667,-1.066667,1.09
+ Tarnos ,TARNOS ,40220,40312,72,43.533333,-1.466667,2.41
+ Tartas ,TARTAS ,40400,40313,72,43.833333,-0.8,0.2
+ Tercis-les-Bains ,TERCIS LES BAINS ,40180,40314,72,43.666667,-1.1,1.2
+ Tilh ,TILH ,40360,40316,72,43.583333,-0.833333,1.58
+ Tosse ,TOSSE ,40230,40317,72,43.683333,-1.333333,1.97
+ Toulouzette ,TOULOUZETTE ,40250,40318,72,43.75,-0.683333,0.93
+ Trensacq ,TRENSACQ ,40630,40319,72,44.216667,-0.75,2.25
+ Uchacq-et-Parentis ,UCHACQ ET PARENTIS ,40090,40320,72,43.916667,-0.55,0.63
+ Urgons ,URGONS ,40320,40321,72,43.65,-0.45,0.96
+ Uza ,UZA ,40170,40322,72,44.033333,-1.2,1.53
+ Vert ,VERT ,40420,40323,72,44.083333,-0.583333,1.51
+ Vielle-Tursan ,VIELLE TURSAN ,40320,40325,72,43.683333,-0.45,1.24
+ Vielle-Saint-Girons ,VIELLE SAINT GIRONS ,40560,40326,72,43.95,-1.3,1.86
+ Vielle-Soubiran ,VIELLE SOUBIRAN ,40240,40327,72,44.05,-0.183333,1.84
+ Vieux-Boucau-les-Bains ,VIEUX BOUCAU LES BAINS,40480,40328,72,43.783333,-1.4,2.19
+ Le Vignau ,LE VIGNAU ,40270,40329,72,43.766667,-0.283333,1.51
+ Villenave ,VILLENAVE ,40110,40330,72,43.966667,-0.8,0.93
+ Villeneuve-de-Marsan ,VILLENEUVE DE MARSAN ,40190,40331,72,43.9,-0.3,1.45
+ Ychoux ,YCHOUX ,40160,40332,72,44.333333,-0.966667,2.9
+ Ygos-Saint-Saturnin ,YGOS SAINT SATURNIN ,40110,40333,72,43.983333,-0.733333,1.5
+ Yzosse ,YZOSSE ,40180,40334,72,43.716667,-1.016667,0.92
+ Laharie ,LAHARIE ,40110,40900,72,44.05,-1,1.32
+ Hossegor ,HOSSEGOR ,40150,40901,72,43.666667,-1.45,2.36
+ Saint-Girons ,SAINT GIRONS ,40560,40903,72,43.55,-0.833333,1.48
+ Biscarrosse-Plage ,BISCARROSSE PLAGE ,40600,40920,72,44.391667,-1.166667,-1
+ Ambloy ,AMBLOY ,41310,41001,24,47.716667,0.966667,1.37
+ Angé ,ANGE ,41400,41002,24,47.316667,1.233333,1.94
+ Areines ,AREINES ,41100,41003,24,47.8,1.1,0.82
+ Artins ,ARTINS ,41800,41004,24,47.75,0.733333,2.32
+ Arville ,ARVILLE ,41170,41005,24,48.066667,0.95,2.35
+ Autainville ,AUTAINVILLE ,41240,41006,24,47.883333,1.416667,1.3
+ Authon ,AUTHON ,41310,41007,24,47.65,0.9,1.64
+ Avaray ,AVARAY ,41500,41008,24,47.716667,1.566667,1.36
+ Averdon ,AVERDON ,41330,41009,24,47.683333,1.3,0.95
+ Baigneaux ,BAIGNEAUX ,41290,41011,24,47.783333,1.25,0.73
+ Baillou ,BAILLOU ,41170,41012,24,47.966667,0.85,1.84
+ Bauzy ,BAUZY ,41250,41013,24,47.533333,1.6,1.25
+ Beauvilliers ,BEAUVILLIERS ,41290,41015,24,47.841667,1.258333,-1
+ Billy ,BILLY ,41130,41016,24,47.3,1.533333,2.04
+ Binas ,BINAS ,41240,41017,24,47.9,1.466667,1.4
+ Blois ,BLOIS ,41000,41018,24,47.583333,1.333333,0.73
+ Boisseau ,BOISSEAU ,41290,41019,24,47.766667,1.3,0.97
+ Bonneveau ,BONNEVEAU ,41800,41020,24,47.816667,0.75,2.25
+ La Bosse ,LA BOSSE ,41290,41021,24,47.85,1.266667,1.11
+ Bouffry ,BOUFFRY ,41270,41022,24,48,1.1,1.97
+ Bourré ,BOURRE ,41400,41023,24,47.35,1.216667,1.75
+ Boursay ,BOURSAY ,41270,41024,24,48.016667,0.966667,2.06
+ Bracieux ,BRACIEUX ,41250,41025,24,47.55,1.55,1.02
+ Brévainville ,BREVAINVILLE ,41160,41026,24,47.95,1.283333,1.68
+ Briou ,BRIOU ,41370,41027,24,47.816667,1.483333,0.92
+ Busloup ,BUSLOUP ,41160,41028,24,47.9,1.133333,1.4
+ Candé-sur-Beuvron ,CANDE SUR BEUVRON ,41120,41029,24,47.5,1.25,1.47
+ Cellé ,CELLE ,41360,41030,24,47.833333,0.783333,2.12
+ Cellettes ,CELLETTES ,41120,41031,24,47.533333,1.383333,1.48
+ Chailles ,CHAILLES ,41120,41032,24,47.55,1.316667,1.3
+ Chambon-sur-Cisse ,CHAMBON SUR CISSE ,41190,41033,24,47.566667,1.216667,1.29
+ Chambord ,CHAMBORD ,41250,41034,24,47.616667,1.516667,0.9
+ Champigny-en-Beauce ,CHAMPIGNY EN BEAUCE ,41330,41035,24,47.716667,1.25,1.29
+ Chaon ,CHAON ,41600,41036,24,47.608333,2.175,-1
+ La Chapelle-Enchérie ,LA CHAPELLE ENCHERIE ,41290,41037,24,47.816667,1.2,1.51
+ La Chapelle-Saint-Martin-en-Plaine ,LA CHAPELLE SAINT MARTIN,41500,41039,24,47.716667,1.416667,0.79
+ La Chapelle-Vendômoise ,LA CHAPELLE VENDOMOISE ,41330,41040,24,47.666667,1.25,0.46
+ La Chapelle-Vicomtesse ,LA CHAPELLE VICOMTESSE ,41270,41041,24,47.983333,1.033333,1.87
+ Châteauvieux ,CHATEAUVIEUX ,41110,41042,24,47.216667,1.383333,2.52
+ Châtillon-sur-Cher ,CHATILLON SUR CHER ,41130,41043,24,47.266667,1.5,2.23
+ Châtres-sur-Cher ,CHATRES SUR CHER ,41320,41044,24,47.266667,1.916667,2.52
+ Chaumont-sur-Loire ,CHAUMONT SUR LOIRE ,41150,41045,24,47.483333,1.183333,0.99
+ Chaumont-sur-Tharonne ,CHAUMONT SUR THARONNE ,41600,41046,24,47.616667,1.9,2.45
+ La Chaussée-Saint-Victor ,LA CHAUSSEE SAINT VICTOR,41260,41047,24,47.616667,1.366667,0.27
+ Chauvigny-du-Perche ,CHAUVIGNY DU PERCHE ,41270,41048,24,47.95,1.066667,1.68
+ Chémery ,CHEMERY ,41700,41049,24,47.35,1.466667,1.75
+ Cheverny ,CHEVERNY ,41700,41050,24,47.5,1.466667,1.75
+ Chissay-en-Touraine ,CHISSAY EN TOURAINE ,41400,41051,24,47.333333,1.133333,1.85
+ Chitenay ,CHITENAY ,41120,41052,24,47.5,1.366667,0.89
+ Choué ,CHOUE ,41170,41053,24,48,0.933333,1.97
+ Choussy ,CHOUSSY ,41700,41054,24,47.366667,1.35,1.66
+ Chouzy-sur-Cisse ,CHOUZY SUR CISSE ,41150,41055,24,47.516667,1.25,1.71
+ La Colombe ,LA COLOMBE ,41160,41056,24,47.883333,1.366667,1.52
+ Conan ,CONAN ,41290,41057,24,47.75,1.283333,1.18
+ Concriers ,CONCRIERS ,41370,41058,24,47.766667,1.466667,0.93
+ Contres ,CONTRES ,41700,41059,24,47.416667,1.433333,1.37
+ Cormenon ,CORMENON ,41170,41060,24,47.966667,0.883333,1.78
+ Cormeray ,CORMERAY ,41120,41061,24,47.483333,1.4,1.43
+ Couddes ,COUDDES ,41700,41062,24,47.366667,1.4,1.66
+ Couffi ,COUFFI ,41110,41063,24,47.233333,1.433333,2.42
+ Coulanges ,COULANGES ,41150,41064,24,47.55,1.216667,1.38
+ Coulommiers-la-Tour ,COULOMMIERS LA TOUR ,41100,41065,24,47.783333,1.133333,0.73
+ Courbouzon ,COURBOUZON ,41500,41066,24,47.716667,1.55,1.14
+ Cour-Cheverny ,COUR CHEVERNY ,41700,41067,24,47.5,1.45,1.64
+ Courmemin ,COURMEMIN ,41230,41068,24,47.466667,1.633333,1.36
+ Cour-sur-Loire ,COUR SUR LOIRE ,41500,41069,24,47.65,1.433333,0.85
+ Couture-sur-Loir ,COUTURE SUR LOIR ,41800,41070,24,47.75,0.683333,2.53
+ Crouy-sur-Cosson ,CROUY SUR COSSON ,41220,41071,24,47.65,1.6,1.23
+ Crucheray ,CRUCHERAY ,41100,41072,24,47.733333,1.083333,0.89
+ Danzé ,DANZE ,41160,41073,24,47.9,1.033333,1.94
+ Dhuizon ,DHUIZON ,41220,41074,24,47.583333,1.65,1.43
+ Droué ,DROUE ,41270,41075,24,48.033333,1.083333,2.16
+ Écoman ,ECOMAN ,41290,41076,24,47.9,1.3,1.9
+ Épiais ,EPIAIS ,41290,41077,24,47.8,1.25,0.82
+ Épuisay ,EPUISAY ,41360,41078,24,47.9,0.933333,1.5
+ Les Essarts ,LES ESSARTS ,41800,41079,24,47.733333,0.716667,2.39
+ Faverolles-sur-Cher ,FAVEROLLES SUR CHER ,41400,41080,24,47.316667,1.183333,1.94
+ Faye ,FAYE ,41100,41081,24,47.8,1.183333,1.23
+ Feings ,FEINGS ,41120,41082,24,47.433333,1.35,1.28
+ La Ferté-Beauharnais ,LA FERTE BEAUHARNAIS ,41210,41083,24,47.533333,1.85,2.25
+ La Ferté-Imbault ,LA FERTE IMBAULT ,41300,41084,24,47.383333,1.966667,2.73
+ La Ferté-Saint-Cyr ,LA FERTE SAINT CYR,41220,41085,24,47.65,1.666667,1.5
+ Fontaines-en-Sologne ,FONTAINES EN SOLOGNE ,41250,41086,24,47.516667,1.55,1.02
+ Fontaine-les-Côteaux ,FONTAINE LES COTEAUX ,41800,41087,24,47.8,0.833333,1.91
+ Fontaine-Raoul ,FONTAINE RAOUL ,41270,41088,24,47.983333,1.133333,1.87
+ La Fontenelle ,LA FONTENELLE ,41270,41089,24,48.066667,1.033333,2.35
+ Fortan ,FORTAN ,41360,41090,24,47.85,0.916667,1.57
+ Fossé ,FOSSE ,41330,41091,24,47.633333,1.283333,1.11
+ Fougères-sur-Bièvre ,FOUGERES SUR BIEVRE ,41120,41092,24,47.45,1.35,1.18
+ Françay ,FRANCAY ,41190,41093,24,47.616667,1.133333,0.68
+ Fresnes ,FRESNES ,41700,41094,24,47.433333,1.416667,1.28
+ Fréteval ,FRETEVAL ,41160,41095,24,47.883333,1.216667,1.3
+ Gièvres ,GIEVRES ,41130,41097,24,47.266667,1.666667,2.23
+ Gombergean ,GOMBERGEAN ,41310,41098,24,47.65,1.083333,1.49
+ Gy-en-Sologne ,GY EN SOLOGNE ,41230,41099,24,47.35,1.583333,1.75
+ Herbault ,HERBAULT ,41190,41101,24,47.6,1.133333,0.68
+ Houssay ,HOUSSAY ,41800,41102,24,47.75,0.933333,1.64
+ Huisseau-en-Beauce ,HUISSEAU EN BEAUCE ,41310,41103,24,47.716667,1.016667,1.16
+ Huisseau-sur-Cosson ,HUISSEAU SUR COSSON ,41350,41104,24,47.6,1.45,0.95
+ Josnes ,JOSNES ,41370,41105,24,47.8,1.516667,1.49
+ Lamotte-Beuvron ,LAMOTTE BEUVRON ,41600,41106,24,47.6,2.016667,2.93
+ Lancé ,LANCE ,41310,41107,24,47.7,1.066667,1.17
+ Lancôme ,LANCOME ,41190,41108,24,47.65,1.116667,0.75
+ Landes-le-Gaulois ,LANDES LE GAULOIS ,41190,41109,24,47.65,1.183333,0.73
+ Langon ,LANGON ,41320,41110,24,47.283333,1.833333,2.18
+ Lassay-sur-Croisne ,LASSAY SUR CROISNE ,41230,41112,24,47.366667,1.616667,1.66
+ Lavardin ,LAVARDIN ,41800,41113,24,47.75,0.883333,1.71
+ Lestiou ,LESTIOU ,41500,41114,24,47.733333,1.583333,1.65
+ Lignières ,LIGNIERES ,41160,41115,24,47.866667,1.183333,1.21
+ Lisle ,LISLE ,41100,41116,24,47.85,1.116667,1.11
+ Loreux ,LOREUX ,41200,41118,24,47.4,1.833333,2.18
+ Lorges ,LORGES ,41370,41119,24,47.816667,1.5,1.14
+ Lunay ,LUNAY ,41360,41120,24,47.8,0.916667,1.57
+ Maray ,MARAY ,41320,41122,24,47.25,1.883333,2.39
+ Marchenoir ,MARCHENOIR ,41370,41123,24,47.816667,1.4,1.31
+ Marcilly-en-Beauce ,MARCILLY EN BEAUCE ,41100,41124,24,47.766667,1,1.29
+ Marcilly-en-Gault ,MARCILLY EN GAULT ,41210,41125,24,47.45,1.866667,2.32
+ Mareuil-sur-Cher ,MAREUIL SUR CHER ,41110,41126,24,47.283333,1.333333,2.14
+ La Marolle-en-Sologne ,LA MAROLLE EN SOLOGNE,41210,41127,24,47.583333,1.783333,1.98
+ Marolles ,MAROLLES ,41330,41128,24,47.65,1.3,1.06
+ Maslives ,MASLIVES ,41250,41129,24,47.633333,1.483333,1.39
+ Maves ,MAVES ,41500,41130,24,47.75,1.366667,1.61
+ Mazangé ,MAZANGE ,41100,41131,24,47.816667,0.95,1.98
+ Méhers ,MEHERS ,41140,41132,24,47.333333,1.45,1.85
+ Membrolles ,MEMBROLLES ,41240,41133,24,47.983333,1.466667,1.87
+ Menars ,MENARS ,41500,41134,24,47.633333,1.4,1.34
+ Mennetou-sur-Cher ,MENNETOU SUR CHER ,41320,41135,24,47.266667,1.883333,2.39
+ Mer ,MER ,41500,41136,24,47.7,1.5,0.82
+ Mesland ,MESLAND ,41150,41137,24,47.516667,1.116667,0.94
+ Meslay ,MESLAY ,41100,41138,24,47.816667,1.1,0.92
+ Meusnes ,MEUSNES ,41130,41139,24,47.25,1.483333,2.33
+ Millançay ,MILLANCAY ,41200,41140,24,47.45,1.766667,1.91
+ Moisy ,MOISY ,41160,41141,24,47.916667,1.316667,1.49
+ Molineuf ,MOLINEUF ,41190,41142,24,47.583333,1.233333,1.39
+ Mondoubleau ,MONDOUBLEAU ,41170,41143,24,47.983333,0.9,1.87
+ Monteaux ,MONTEAUX ,41150,41144,24,47.483333,1.116667,0.99
+ Monthou-sur-Bièvre ,MONTHOU SUR BIEVRE ,41120,41145,24,47.466667,1.3,1.09
+ Monthou-sur-Cher ,MONTHOU SUR CHER ,41400,41146,24,47.35,1.3,1.75
+ Les Montils ,LES MONTILS ,41120,41147,24,47.5,1.3,0.89
+ Montlivault ,MONTLIVAULT ,41350,41148,24,47.633333,1.45,1.24
+ Montoire-sur-le-Loir ,MONTOIRE SUR LE LOIR,41800,41149,24,47.75,0.866667,1.78
+ Mont-près-Chambord ,MONT PRES CHAMBORD ,41250,41150,24,47.566667,1.45,1.35
+ Montrichard ,MONTRICHARD ,41400,41151,24,47.35,1.183333,1.75
+ Montrieux-en-Sologne ,MONTRIEUX EN SOLOGNE ,41210,41152,24,47.55,1.733333,1.77
+ Montrouveau ,MONTROUVEAU ,41800,41153,24,47.716667,0.733333,2.32
+ Morée ,MOREE ,41160,41154,24,47.9,1.233333,1.4
+ Muides-sur-Loire ,MUIDES SUR LOIRE ,41500,41155,24,47.666667,1.516667,0.89
+ Mulsans ,MULSANS ,41500,41156,24,47.7,1.383333,1.21
+ Mur-de-Sologne ,MUR DE SOLOGNE ,41230,41157,24,47.416667,1.616667,1.37
+ Naveil ,NAVEIL ,41100,41158,24,47.8,1.033333,1.09
+ Neung-sur-Beuvron ,NEUNG SUR BEUVRON ,41210,41159,24,47.533333,1.8,2.05
+ Neuvy ,NEUVY ,41250,41160,24,47.566667,1.6,1.23
+ Nouan-le-Fuzelier ,NOUAN LE FUZELIER ,41600,41161,24,47.54489,2.03628,-1
+ Nouan-sur-Loire ,NOUAN SUR LOIRE ,41220,41162,24,47.683333,1.55,1.56
+ Nourray ,NOURRAY ,41310,41163,24,47.716667,1.066667,1.25
+ Noyers-sur-Cher ,NOYERS SUR CHER ,41140,41164,24,47.283333,1.4,2.14
+ Oigny ,OIGNY ,41170,41165,24,48.066667,0.933333,2.35
+ Oisly ,OISLY ,41700,41166,24,47.383333,1.383333,1.56
+ Onzain ,ONZAIN ,41150,41167,24,47.5,1.183333,0.89
+ Orçay ,ORCAY ,41300,41168,24,47.291667,2.108333,-1
+ Orchaise ,ORCHAISE ,41190,41169,24,47.583333,1.2,0.93
+ Ouchamps ,OUCHAMPS ,41120,41170,24,47.466667,1.316667,1.09
+ Oucques ,OUCQUES ,41290,41171,24,47.816667,1.3,0.92
+ Ouzouer-le-Doyen ,OUZOUER LE DOYEN ,41160,41172,24,47.933333,1.333333,1.59
+ Ouzouer-le-Marché ,OUZOUER LE MARCHE ,41240,41173,24,47.916667,1.533333,1.49
+ Périgny ,PERIGNY ,41100,41174,24,47.733333,1.15,1.06
+ Pezou ,PEZOU ,41100,41175,24,47.866667,1.133333,1.21
+ Pierrefitte-sur-Sauldre ,PIERREFITTE SUR SAULDRE ,41300,41176,24,47.508333,2.15,-1
+ Le Plessis-Dorin ,LE PLESSIS DORIN ,41170,41177,24,48.083333,0.866667,2.45
+ Le Plessis-l'Échelle ,LE PLESSIS L ECHELLE,41370,41178,24,47.816667,1.433333,0.92
+ Le Poislay ,LE POISLAY ,41270,41179,24,48.066667,1.066667,2.35
+ Pontlevoy ,PONTLEVOY ,41400,41180,24,47.383333,1.25,1.56
+ Pouillé ,POUILLE ,41110,41181,24,47.316667,1.3,1.94
+ Pray ,PRAY ,41190,41182,24,47.683333,1.116667,1.13
+ Prénouvellon ,PRENOUVELLON ,41240,41183,24,47.966667,1.533333,1.78
+ Prunay-Cassereau ,PRUNAY CASSEREAU ,41310,41184,24,47.7,0.916667,1.57
+ Rahart ,RAHART ,41160,41186,24,47.866667,1.066667,1.65
+ Renay ,RENAY ,41100,41187,24,47.85,1.166667,1.3
+ Rhodon ,RHODON ,41290,41188,24,47.75,1.266667,1.18
+ Rilly-sur-Loire ,RILLY SUR LOIRE ,41150,41189,24,47.466667,1.133333,1.09
+ Rocé ,ROCE ,41100,41190,24,47.8,1.15,0.82
+ Roches ,ROCHES ,41370,41191,24,47.8,1.45,0.82
+ Les Roches-l'Évêque ,LES ROCHES L EVEQUE,41800,41192,24,47.783333,0.883333,1.71
+ Romilly ,ROMILLY ,41270,41193,24,47.95,1.033333,1.68
+ Rougeou ,ROUGEOU ,41230,41195,24,47.366667,1.533333,1.66
+ Saint-Agil ,SAINT AGIL ,41170,41197,24,48.033333,0.933333,2.16
+ Saint-Aignan ,SAINT AIGNAN ,41110,41198,24,47.266667,1.383333,2.23
+ Sainte-Anne ,SAINTE ANNE ,41100,41200,24,47.75,1.083333,0.89
+ Saint-Arnoult ,SAINT ARNOULT ,41800,41201,24,47.7,0.866667,1.78
+ Saint-Avit ,SAINT AVIT ,41170,41202,24,48.083333,0.916667,2.45
+ Saint-Bohaire ,SAINT BOHAIRE ,41330,41203,24,47.65,1.266667,0.57
+ Saint-Claude-de-Diray ,SAINT CLAUDE DE DIRAY,41350,41204,24,47.616667,1.416667,0.48
+ Saint-Cyr-du-Gault ,SAINT CYR DU GAULT,41190,41205,24,47.616667,1.033333,1.76
+ Saint-Denis-sur-Loire ,SAINT DENIS SUR LOIRE,41000,41206,24,47.616667,1.383333,1.09
+ Saint-Dyé-sur-Loire ,SAINT DYE SUR LOIRE,41500,41207,24,47.65,1.483333,0.75
+ Saint-Étienne-des-Guérets ,SAINT ETIENNE DES GUERETS,41190,41208,24,47.6,1.066667,1.28
+ Saint-Firmin-des-Prés ,SAINT FIRMIN DES PRES,41100,41209,24,47.833333,1.116667,1.01
+ Sainte-Gemmes ,SAINTE GEMMES ,41290,41210,24,47.783333,1.266667,0.73
+ Saint-Georges-sur-Cher ,SAINT GEORGES SUR CHER,41400,41211,24,47.316667,1.133333,1.94
+ Saint-Gervais-la-Forêt ,SAINT GERVAIS LA FORET,41350,41212,24,47.566667,1.35,1.63
+ Saint-Gourgon ,SAINT GOURGON ,41310,41213,24,47.666667,1.016667,1.16
+ Saint-Hilaire-la-Gravelle ,SAINT HILAIRE LA GRAVELLE,41160,41214,24,47.916667,1.2,1.49
+ Saint-Jacques-des-Guérêts ,SAINT JACQUES DES GUERETS,41800,41215,24,47.766667,0.8,2.05
+ Saint-Jean-Froidmentel ,SAINT JEAN FROIDMENTEL ,41160,41216,24,47.95,1.25,1.68
+ Saint-Julien-de-Chédon ,SAINT JULIEN DE CHEDON,41400,41217,24,47.3,1.2,2.04
+ Saint-Julien-sur-Cher ,SAINT JULIEN SUR CHER,41320,41218,24,47.283333,1.766667,2.14
+ Saint-Laurent-des-Bois ,SAINT LAURENT DES BOIS,41240,41219,24,47.85,1.45,1.28
+ Saint-Léonard-en-Beauce ,SAINT LEONARD EN BEAUCE,41370,41221,24,47.833333,1.383333,1.8
+ Saint-Lubin-en-Vergonnois ,SAINT LUBIN EN VERGONNOIS,41190,41223,24,47.616667,1.233333,1.29
+ Saint-Marc-du-Cor ,SAINT MARC DU COR,41170,41224,24,47.966667,0.95,1.78
+ Saint-Martin-des-Bois ,SAINT MARTIN DES BOIS,41800,41225,24,47.716667,0.833333,1.91
+ Saint-Ouen ,SAINT OUEN ,41100,41226,24,47.816667,1.083333,0.92
+ Saint-Quentin-lès-Trôo ,SAINT QUENTIN LES TROO,41800,41227,24,47.766667,0.816667,1.98
+ Saint-Rimay ,SAINT RIMAY ,41800,41228,24,47.766667,0.916667,1.57
+ Saint-Romain-sur-Cher ,SAINT ROMAIN SUR CHER,41140,41229,24,47.316667,1.4,1.94
+ Saint-Sulpice ,SAINT SULPICE ,41000,41230,24,47.6,1.266667,1.5
+ Saint-Viâtre ,SAINT VIATRE ,41210,41231,24,47.516667,1.933333,2.59
+ Salbris ,SALBRIS ,41300,41232,24,47.42594,2.05,-1
+ Sambin ,SAMBIN ,41120,41233,24,47.433333,1.3,1.28
+ Santenay ,SANTENAY ,41190,41234,24,47.566667,1.116667,0.91
+ Sargé-sur-Braye ,SARGE SUR BRAYE ,41170,41235,24,47.916667,0.85,1.84
+ Sasnières ,SASNIERES ,41310,41236,24,47.716667,0.933333,1.5
+ Sassay ,SASSAY ,41700,41237,24,47.4,1.433333,1.47
+ Savigny-sur-Braye ,SAVIGNY SUR BRAYE ,41360,41238,24,47.883333,0.816667,1.98
+ Seigy ,SEIGY ,41110,41239,24,47.233333,1.4,2.42
+ Seillac ,SEILLAC ,41150,41240,24,47.55,1.15,0.94
+ Selles-Saint-Denis ,SELLES SAINT DENIS ,41300,41241,24,47.383333,1.916667,2.52
+ Selles-sur-Cher ,SELLES SUR CHER ,41130,41242,24,47.266667,1.55,2.23
+ Selommes ,SELOMMES ,41100,41243,24,47.75,1.2,1.53
+ Sémerville ,SEMERVILLE ,41160,41244,24,47.933333,1.4,1.86
+ Séris ,SERIS ,41500,41245,24,47.75,1.5,0.82
+ Soings-en-Sologne ,SOINGS EN SOLOGNE ,41230,41247,24,47.416667,1.516667,1.37
+ Souday ,SOUDAY ,41170,41248,24,48.033333,0.866667,2.16
+ Souesmes ,SOUESMES ,41300,41249,24,47.458333,2.183333,-1
+ Souvigny-en-Sologne ,SOUVIGNY EN SOLOGNE ,41600,41251,24,47.641667,2.166667,-1
+ Suèvres ,SUEVRES ,41500,41252,24,47.666667,1.466667,0.68
+ Talcy ,TALCY ,41370,41253,24,47.766667,1.45,0.88
+ Ternay ,TERNAY ,41800,41255,24,47.733333,0.783333,2.12
+ Theillay ,THEILLAY ,41300,41256,24,47.316667,2.04029,-1
+ Thenay ,THENAY ,41400,41257,24,47.383333,1.283333,1.56
+ Thésée ,THESEE ,41140,41258,24,47.333333,1.316667,1.85
+ Thoré-la-Rochette ,THORE LA ROCHETTE ,41100,41259,24,47.783333,0.966667,1.71
+ Thoury ,THOURY ,41220,41260,24,47.633333,1.6,1.23
+ Tourailles ,TOURAILLES ,41190,41261,24,47.683333,1.15,1.02
+ Tour-en-Sologne ,TOUR EN SOLOGNE ,41250,41262,24,47.533333,1.5,0.82
+ Tréhet ,TREHET ,41800,41263,24,47.733333,0.633333,2.73
+ Tripleville ,TRIPLEVILLE ,41240,41264,24,47.95,1.483333,1.68
+ Trôo ,TROO ,41800,41265,24,47.783333,0.783333,2.12
+ Valaire ,VALAIRE ,41120,41266,24,47.466667,1.266667,1.15
+ Vallières-les-Grandes ,VALLIERES LES GRANDES ,41400,41267,24,47.416667,1.15,1.54
+ Veilleins ,VEILLEINS ,41230,41268,24,47.416667,1.666667,1.5
+ Vendôme ,VENDOME ,41100,41269,24,47.8,1.066667,0.96
+ Verdes ,VERDES ,41240,41270,24,47.95,1.433333,1.68
+ Vernou-en-Sologne ,VERNOU EN SOLOGNE ,41230,41271,24,47.5,1.683333,1.73
+ Veuves ,VEUVES ,41150,41272,24,47.466667,1.116667,1.16
+ Viévy-le-Rayé ,VIEVY LE RAYE ,41290,41273,24,47.866667,1.316667,1.43
+ Villavard ,VILLAVARD ,41800,41274,24,47.75,0.9,1.64
+ La Ville-aux-Clercs ,LA VILLE AUX CLERCS,41160,41275,24,47.916667,1.083333,1.49
+ Villebarou ,VILLEBAROU ,41000,41276,24,47.616667,1.316667,0.36
+ Villebout ,VILLEBOUT ,41270,41277,24,47.983333,1.183333,1.87
+ Villechauve ,VILLECHAUVE ,41310,41278,24,47.65,0.95,1.43
+ Villedieu-le-Château ,VILLEDIEU LE CHATEAU ,41800,41279,24,47.716667,0.65,2.66
+ Villefrancoeur ,VILLEFRANCOEUR ,41330,41281,24,47.7,1.216667,1.54
+ Villeherviers ,VILLEHERVIERS ,41200,41282,24,47.366667,1.8,2.05
+ Villemardy ,VILLEMARDY ,41100,41283,24,47.733333,1.183333,1.42
+ Villeneuve-Frouville ,VILLENEUVE FROUVILLE ,41290,41284,24,47.783333,1.316667,0.97
+ Villeny ,VILLENY ,41220,41285,24,47.616667,1.75,1.84
+ Villeporcher ,VILLEPORCHER ,41310,41286,24,47.633333,1,1.23
+ Villerable ,VILLERABLE ,41100,41287,24,47.75,1.033333,1.09
+ Villerbon ,VILLERBON ,41000,41288,24,47.666667,1.366667,1.31
+ Villermain ,VILLERMAIN ,41240,41289,24,47.866667,1.533333,1.28
+ Villeromain ,VILLEROMAIN ,41100,41290,24,47.733333,1.15,1.06
+ Villetrun ,VILLETRUN ,41100,41291,24,47.783333,1.166667,0.99
+ Villexanton ,VILLEXANTON ,41500,41292,24,47.733333,1.416667,0.89
+ Villiersfaux ,VILLIERSFAUX ,41100,41293,24,47.75,0.983333,1.57
+ Villiers-sur-Loir ,VILLIERS SUR LOIR ,41100,41294,24,47.8,1,1.27
+ Vineuil ,VINEUIL ,41350,41295,24,47.583333,1.383333,0.75
+ Vouzon ,VOUZON ,41600,41296,24,47.65,2.0593,-1
+ Yvoy-le-Marron ,YVOY LE MARRON ,41600,41297,24,47.633333,1.85,2.25
+ Aboën ,ABOEN ,42380,42001,82,45.416667,4.133333,1.4
+ Ailleux ,AILLEUX ,42130,42002,82,45.8,3.95,1.35
+ Ambierle ,AMBIERLE ,42820,42003,82,46.1,3.9,1.8
+ Amions ,AMIONS ,42260,42004,82,45.883333,4.033333,0.84
+ Apinac ,APINAC ,42550,42006,82,45.383333,4,1.55
+ Arcinges ,ARCINGES ,42460,42007,82,46.133333,4.283333,1.96
+ Arcon ,ARCON ,42370,42008,82,46,3.9,1.52
+ Arthun ,ARTHUN ,42130,42009,82,45.766667,4.033333,0.84
+ Aveizieux ,AVEIZIEUX ,42330,42010,82,45.566667,4.383333,1.45
+ Balbigny ,BALBIGNY ,42510,42011,82,45.816667,4.183333,0.54
+ Bard ,BARD ,42600,42012,82,45.583333,4.016667,0.93
+ Bellegarde-en-Forez ,BELLEGARDE EN FOREZ ,42210,42013,82,45.65,4.3,1.4
+ Belleroche ,BELLEROCHE ,42670,42014,82,46.166667,4.416667,2.11
+ Belmont-de-la-Loire ,BELMONT DE LA LOIRE,42670,42015,82,46.166667,4.35,2.11
+ Le Bessat ,LE BESSAT ,42660,42017,82,45.366667,4.516667,1.63
+ Bessey ,BESSEY ,42520,42018,82,45.383333,4.7,2.56
+ Boën ,BOEN ,42130,42019,82,45.733333,3.983333,1.1
+ Boisset-lès-Montrond ,BOISSET LES MONTROND ,42210,42020,82,45.616667,4.2,0.85
+ Boisset-Saint-Priest ,BOISSET SAINT PRIEST ,42560,42021,82,45.516667,4.116667,1.86
+ Bonson ,BONSON ,42160,42022,82,45.516667,4.233333,1
+ Bourg-Argental ,BOURG ARGENTAL ,42220,42023,82,45.3,4.55,1.94
+ Boyer ,BOYER ,42460,42025,82,46.1,4.216667,1.8
+ Briennon ,BRIENNON ,42720,42026,82,46.15,4.083333,2.04
+ Bully ,BULLY ,42260,42027,82,45.933333,4,1.27
+ Burdignes ,BURDIGNES ,42220,42028,82,45.266667,4.566667,2.1
+ Bussières ,BUSSIERES ,42510,42029,82,45.833333,4.266667,0.88
+ Bussy-Albieux ,BUSSY ALBIEUX ,42260,42030,82,45.8,4.033333,1.41
+ Caloire ,CALOIRE ,42240,42031,82,45.416667,4.233333,1.4
+ Cellieu ,CELLIEU ,42320,42032,82,45.516667,4.533333,1.71
+ Le Cergne ,LE CERGNE ,42460,42033,82,46.116667,4.316667,1.88
+ Cervières ,CERVIERES ,42440,42034,82,45.85,3.783333,2.12
+ Cezay ,CEZAY ,42130,42035,82,45.8,3.966667,1.18
+ Chagnon ,CHAGNON ,42800,42036,82,45.533333,4.55,1.8
+ Chalain-d'Uzore ,CHALAIN D UZORE ,42600,42037,82,45.666667,4.083333,0.77
+ Chalain-le-Comtal ,CHALAIN LE COMTAL ,42600,42038,82,45.65,4.166667,1.61
+ Chalmazel ,CHALMAZEL ,42920,42039,82,45.7,3.85,1.78
+ La Chamba ,LA CHAMBA ,42440,42040,82,45.75,3.766667,2.2
+ Chambéon ,CHAMBEON ,42110,42041,82,45.7,4.183333,1.19
+ Chambles ,CHAMBLES ,42170,42042,82,45.45,4.233333,1.24
+ Chamboeuf ,CHAMBOEUF ,42330,42043,82,45.583333,4.316667,0.62
+ Le Chambon-Feugerolles ,LE CHAMBON FEUGEROLLES ,42500,42044,82,45.4,4.316667,1.48
+ La Chambonie ,LA CHAMBONIE ,42440,42045,82,45.75,3.75,2.29
+ Champdieu ,CHAMPDIEU ,42600,42046,82,45.65,4.05,0.76
+ Champoly ,CHAMPOLY ,42430,42047,82,45.85,3.833333,1.86
+Chandon, ,42190,42048,82,46.15,4.216667,2.04
+ Changy ,CHANGY ,42310,42049,82,46.15,3.9,2.04
+ La Chapelle-en-Lafaye ,LA CHAPELLE EN LAFAYE,42380,42050,82,45.466667,3.983333,1.67
+ La Chapelle-Villars ,LA CHAPELLE VILLARS ,42410,42051,82,45.466667,4.716667,2.65
+ Charlieu ,CHARLIEU ,42190,42052,82,46.15,4.183333,2.04
+ Châtelneuf ,CHATELNEUF ,42940,42054,82,45.633333,4,1.01
+ Châtelus ,CHATELUS ,42140,42055,82,45.6,4.466667,1.37
+ Chavanay ,CHAVANAY ,42410,42056,82,45.416667,4.733333,2.73
+ Chazelles-sur-Lavieu ,CHAZELLES SUR LAVIEU ,42560,42058,82,45.533333,4,1.32
+ Chazelles-sur-Lyon ,CHAZELLES SUR LYON ,42140,42059,82,45.633333,4.383333,0.95
+ Chenereilles ,CHENEREILLES ,42560,42060,82,45.483333,4.083333,1.29
+ Chérier ,CHERIER ,42430,42061,82,45.966667,3.916667,1.98
+ Chevrières ,CHEVRIERES ,42140,42062,82,45.583333,4.4,1.03
+ Chirassimont ,CHIRASSIMONT ,42114,42063,82,45.916667,4.283333,1.16
+ Chuyer ,CHUYER ,42410,42064,82,45.45,4.7,2.56
+ Civens ,CIVENS ,42110,42065,82,45.783333,4.25,0.47
+ Cleppé ,CLEPPE ,42110,42066,82,45.766667,4.183333,0.84
+ Combre ,COMBRE ,42840,42068,82,46.033333,4.266667,1.49
+ Commelle-Vernay ,COMMELLE VERNAY ,42120,42069,82,46,4.066667,1.33
+ Cordelle ,CORDELLE ,42123,42070,82,45.95,4.066667,1.1
+ Le Coteau ,LE COTEAU ,42120,42071,82,46.033333,4.083333,1.49
+ La Côte-en-Couzan ,LA COTE EN COUZAN,42111,42072,82,45.783333,3.816667,1.95
+ Cottance ,COTTANCE ,42360,42073,82,45.8,4.3,1.35
+ Coutouvre ,COUTOUVRE ,42460,42074,82,46.066667,4.216667,1.65
+ Craintilleux ,CRAINTILLEUX ,42210,42075,82,45.583333,4.233333,1.13
+ Crémeaux ,CREMEAUX ,42260,42076,82,45.9,3.933333,1.35
+ Croizet-sur-Gand ,CROIZET SUR GAND ,42540,42077,82,45.916667,4.233333,1.5
+ Cuinzier ,CUINZIER ,42460,42079,82,46.133333,4.283333,1.96
+ La Cula ,LA CULA ,42800,42080,82,45.55,4.566667,1.88
+ Cuzieu ,CUZIEU ,42330,42081,82,45.616667,4.266667,1.89
+ Dancé ,DANCE ,42260,42082,82,45.9,4.033333,0.95
+ Doizieux ,DOIZIEUX ,42740,42085,82,45.416667,4.583333,1.97
+ Écoche ,ECOCHE ,42670,42086,82,46.15,4.3,2.04
+ Écotay-l'Olme ,ECOTAY L OLME ,42600,42087,82,45.583333,4.05,0.76
+ Épercieux-Saint-Paul ,EPERCIEUX SAINT PAUL ,42110,42088,82,45.8,4.216667,0.75
+ Essertines-en-Châtelneuf ,ESSERTINES EN CHATELNEUF ,42600,42089,82,45.616667,4,1.01
+ Essertines-en-Donzy ,ESSERTINES EN DONZY ,42360,42090,82,45.75,4.35,1.35
+ Estivareilles ,ESTIVAREILLES ,42380,42091,82,45.416667,4.016667,1.4
+ L'Étrat ,L ETRAT ,42580,42092,82,45.483333,4.383333,1.09
+ Farnay ,FARNAY ,42320,42093,82,45.5,4.6,2.05
+ Feurs ,FEURS ,42110,42094,82,45.75,4.233333,0.18
+ Firminy ,FIRMINY ,42700,42095,82,45.383333,4.3,1.55
+ Fontanès ,FONTANES ,42140,42096,82,45.55,4.433333,1.2
+ La Fouillouse ,LA FOUILLOUSE ,42480,42097,82,45.5,4.316667,1.01
+ La Gimond ,LA GIMOND ,42140,42100,82,45.55,4.416667,1.12
+ Graix ,GRAIX ,42220,42101,82,45.35,4.566667,1.88
+ Grammond ,GRAMMOND ,42140,42102,82,45.566667,4.433333,1.2
+ La Grand Croix ,LA GRAND CROIX ,42320,42103,82,45.5,4.55,1.8
+ La Gresle ,LA GRESLE ,42460,42104,82,46.066667,4.283333,1.65
+ Grézieux-le-Fromental ,GREZIEUX LE FROMENTAL ,42600,42105,82,45.616667,4.15,1.3
+ Gumières ,GUMIERES ,42560,42107,82,45.533333,3.983333,1.74
+ L'Hôpital-le-Grand ,L HOPITAL LE GRAND,42210,42108,82,45.6,4.2,1.07
+ L'Horme ,L HORME ,42152,42110,82,45.483333,4.55,1.8
+ Jarnosse ,JARNOSSE ,42460,42112,82,46.1,4.233333,1.8
+ Jas ,JAS ,42110,42113,82,45.75,4.316667,1.23
+ Jeansagnière ,JEANSAGNIERE ,42920,42114,82,45.733333,3.833333,1.86
+ Jonzieux ,JONZIEUX ,42660,42115,82,45.316667,4.366667,1.87
+ Juré ,JURE ,42430,42116,82,45.883333,3.883333,1.61
+ Lavieu ,LAVIEU ,42560,42117,82,45.533333,4.033333,0.85
+ Lay ,LAY ,42470,42118,82,45.95,4.216667,1.1
+ Leigneux ,LEIGNEUX ,42130,42119,82,45.75,3.983333,1.1
+ Lentigny ,LENTIGNY ,42155,42120,82,46,3.983333,1.33
+ Lérigneux ,LERIGNEUX ,42600,42121,82,45.6,3.966667,1.44
+ Lézigneux ,LEZIGNEUX ,42600,42122,82,45.566667,4.066667,0.78
+ Lorette ,LORETTE ,42420,42123,82,45.516667,4.583333,1.97
+ Lupé ,LUPE ,42520,42124,82,45.366667,4.716667,2.65
+ Luré ,LURE ,42260,42125,82,45.883333,3.933333,1.35
+ Luriecq ,LURIECQ ,42380,42126,82,45.45,4.066667,1.24
+ Mably ,MABLY ,42300,42127,82,46.083333,4.066667,1.72
+ Machézal ,MACHEZAL ,42114,42128,82,45.916667,4.316667,0.94
+ Maclas ,MACLAS ,42520,42129,82,45.35,4.683333,2.48
+ Magneux-Haute-Rive ,MAGNEUX HAUTE RIVE ,42600,42130,82,45.666667,4.166667,1.7
+ Maizilly ,MAIZILLY ,42750,42131,82,46.183333,4.25,2.19
+ Malleval ,MALLEVAL ,42520,42132,82,45.383333,4.725,-1
+ Marcenod ,MARCENOD ,42140,42133,82,45.566667,4.5,1.65
+ Marclopt ,MARCLOPT ,42210,42135,82,45.666667,4.2,0.97
+ Marcoux ,MARCOUX ,42130,42136,82,45.716667,4.016667,0.93
+ Margerie-Chantagret ,MARGERIE CHANTAGRET ,42560,42137,82,45.533333,4.066667,0.85
+ Maringes ,MARINGES ,42140,42138,82,45.65,4.35,1.37
+ Marlhes ,MARLHES ,42660,42139,82,45.283333,4.4,2.02
+ Marols ,MAROLS ,42560,42140,82,45.483333,4.05,1.09
+ Mizérieux ,MIZERIEUX ,42110,42143,82,45.8,4.166667,1.28
+ Moingt ,MOINGT ,42600,42144,82,45.583333,4.066667,0.67
+ Montarcher ,MONTARCHER ,42380,42146,82,45.45,4,1.29
+ Montbrison ,MONTBRISON ,42600,42147,82,45.6,4.05,0.76
+ Montrond-les-Bains ,MONTROND LES BAINS ,42210,42149,82,45.633333,4.233333,0.38
+ Montverdun ,MONTVERDUN ,42130,42150,82,45.716667,4.066667,1.53
+ Mornand ,MORNAND ,42600,42151,82,45.683333,4.133333,1.42
+ Nandax ,NANDAX ,42720,42152,82,46.1,4.166667,1.8
+ Neaux ,NEAUX ,42470,42153,82,45.966667,4.183333,1.5
+ Néronde ,NERONDE ,42510,42154,82,45.833333,4.233333,0.55
+ Nervieux ,NERVIEUX ,42510,42155,82,45.8,4.15,1.15
+ Neulise ,NEULISE ,42590,42156,82,45.9,4.183333,1.41
+ Noailly ,NOAILLY ,42640,42157,82,46.133333,4.016667,1.96
+ Noirétable ,NOIRETABLE ,42440,42159,82,45.816667,3.766667,2.2
+ Nollieux ,NOLLIEUX ,42260,42160,82,45.816667,4,1.01
+ Notre-Dame-de-Boisset ,NOTRE DAME DE BOISSET,42120,42161,82,46,4.133333,1.33
+ Ouches ,OUCHES ,42155,42162,82,46.016667,3.983333,1.41
+ La Pacaudière ,LA PACAUDIERE ,42310,42163,82,46.183333,3.866667,2.19
+ Palogneux ,PALOGNEUX ,42890,42164,82,45.75,3.916667,1.44
+ Panissières ,PANISSIERES ,42360,42165,82,45.783333,4.333333,0.69
+ Parigny ,PARIGNY ,42120,42166,82,45.983333,4.1,1.25
+ Pavezin ,PAVEZIN ,42410,42167,82,45.466667,4.666667,2.39
+ Pélussin ,PELUSSIN ,42410,42168,82,45.416667,4.683333,2.48
+ Périgneux ,PERIGNEUX ,42380,42169,82,45.433333,4.166667,1.67
+ Perreux ,PERREUX ,42120,42170,82,46.033333,4.116667,1.49
+ Pinay ,PINAY ,42590,42171,82,45.866667,4.15,0.97
+ Planfoy ,PLANFOY ,42660,42172,82,45.383333,4.45,1.55
+ Pommiers ,POMMIERS ,42260,42173,82,45.833333,4.066667,1.45
+ Poncins ,PONCINS ,42110,42174,82,45.733333,4.166667,1.14
+ Pouilly-les-Feurs ,POUILLY LES FEURS ,42110,42175,82,45.8,4.233333,0.68
+ Pouilly-les-Nonains ,POUILLY LES NONAINS ,42155,42176,82,46.033333,3.983333,1.49
+ Pouilly-sous-Charlieu ,POUILLY SOUS CHARLIEU ,42720,42177,82,46.15,4.116667,2.04
+ Pradines ,PRADINES ,42630,42178,82,46,4.183333,1.33
+ Pralong ,PRALONG ,42600,42179,82,45.666667,4.033333,0.84
+ Regny ,REGNY ,42630,42181,82,45.983333,4.216667,1.25
+ Renaison ,RENAISON ,42370,42182,82,46.05,3.933333,1.57
+ La Ricamarie ,LA RICAMARIE ,42150,42183,82,45.4,4.366667,1.48
+ Riorges ,RIORGES ,42153,42184,82,46.033333,4.033333,1.49
+ Rivas ,RIVAS ,42340,42185,82,45.583333,4.25,1.5
+ Rive-de-Gier ,RIVE DE GIER ,42800,42186,82,45.533333,4.616667,2.14
+ Roche ,ROCHE ,42600,42188,82,45.616667,3.95,1.66
+ Roche-la-Molière ,ROCHE LA MOLIERE ,42230,42189,82,45.433333,4.316667,1.32
+ Rozier-Côtes-d'Aurec ,ROZIER COTES D AUREC,42380,42192,82,45.366667,4.116667,1.63
+ Rozier-en-Donzy ,ROZIER EN DONZY ,42810,42193,82,45.8,4.283333,0.44
+ Sail-les-Bains ,SAIL LES BAINS ,42310,42194,82,46.233333,3.85,2.43
+ Sail-sous-Couzan ,SAIL SOUS COUZAN ,42890,42195,82,45.733333,3.95,1.27
+ Sainte-Agathe-en-Donzy ,SAINTE AGATHE EN DONZY,42510,42196,82,45.833333,4.316667,1.71
+ Saint-Alban-les-Eaux ,SAINT ALBAN LES EAUX,42370,42198,82,46,3.933333,1.35
+ Saint-André-d'Apchon ,SAINT ANDRE D APCHON,42370,42199,82,46.033333,3.933333,1.49
+ Saint-André-le-Puy ,SAINT ANDRE LE PUY,42210,42200,82,45.65,4.266667,0.72
+ Saint-Appolinard ,SAINT APPOLINARD ,42520,42201,82,45.341667,4.65,-1
+ Saint-Barthélemy-Lestra ,SAINT BARTHELEMY LESTRA ,42110,42202,82,45.716667,4.333333,1.6
+ Saint-Bonnet-des-Quarts ,SAINT BONNET DES QUARTS,42310,42203,82,46.133333,3.85,1.96
+ Saint-Bonnet-le-Château ,SAINT BONNET LE CHATEAU,42380,42204,82,45.416667,4.066667,1.4
+ Saint-Bonnet-le-Courreau ,SAINT BONNET LE COURREAU,42940,42205,82,45.666667,3.95,1.27
+ Saint-Bonnet-les-Oules ,SAINT BONNET LES OULES,42330,42206,82,45.55,4.333333,0.88
+ Saint-Chamond ,SAINT CHAMOND ,42400,42207,82,45.466667,4.5,1.54
+ Saint-Christo-en-Jarez ,SAINT CHRISTO EN JAREZ,42320,42208,82,45.55,4.483333,1.62
+ Sainte-Colombe-sur-Gand ,SAINTE COLOMBE SUR GAND,42540,42209,82,45.883333,4.266667,1.5
+ Sainte-Croix-en-Jarez ,SAINTE CROIX EN JAREZ,42800,42210,82,45.483333,4.65,2.31
+ Saint-Cyprien ,SAINT CYPRIEN ,42160,42211,82,45.533333,4.233333,1
+ Saint-Cyr-de-Favières ,SAINT CYR DE FAVIERES,42132,42212,82,45.966667,4.1,1.18
+ Saint-Cyr-de-Valorges ,SAINT CYR DE VALORGES,42114,42213,82,45.891667,4.308333,0.96
+ Saint-Cyr-les-Vignes ,SAINT CYR LES VIGNES,42210,42214,82,45.683333,4.3,1.69
+ Saint-Denis-de-Cabanne ,SAINT DENIS DE CABANNE,42750,42215,82,46.166667,4.216667,2.11
+ Saint-Denis-sur-Coise ,SAINT DENIS SUR COISE,42140,42216,82,45.616667,4.433333,1.2
+ Saint-Didier-sur-Rochefort ,SAINT DIDIER SUR ROCHEFORT,42111,42217,82,45.783333,3.85,1.78
+ Saint-Étienne ,SAINT ETIENNE ,42100,42218,82,45.433333,4.4,1.32
+ Saint-Étienne-le-Molard ,SAINT ETIENNE LE MOLARD,42130,42219,82,45.733333,4.083333,1.71
+ Saint-Forgeux-Lespinasse ,SAINT FORGEUX LESPINASSE ,42640,42220,82,46.116667,3.933333,1.88
+ Sainte-Foy-Saint-Sulpice ,SAINTE FOY SAINT SULPICE,42110,42221,82,45.766667,4.133333,1.6
+ Saint-Galmier ,SAINT GALMIER ,42330,42222,82,45.583333,4.316667,0.62
+ Saint-Genest-Lerpt ,SAINT GENEST LERPT ,42530,42223,82,45.45,4.333333,1.24
+ Saint-Genest-Malifaux ,SAINT GENEST MALIFAUX ,42660,42224,82,45.333333,4.416667,1.79
+ Saint-Georges-de-Baroille ,SAINT GEORGES DE BAROILLE,42510,42226,82,45.85,4.133333,1.39
+ Saint-Georges-en-Couzan ,SAINT GEORGES EN COUZAN,42990,42227,82,45.7,3.933333,1.35
+ Saint-Georges-Haute-Ville ,SAINT GEORGES HAUTE VILLE,42610,42228,82,45.55,4.1,1
+ Saint-Germain-la-Montagne ,SAINT GERMAIN LA MONTAGNE,42670,42229,82,46.2,4.383333,2.27
+ Saint-Germain-Laval ,SAINT GERMAIN LAVAL ,42260,42230,82,45.833333,4.016667,0.93
+ Saint-Haon-le-Châtel ,SAINT HAON LE CHATEL,42370,42232,82,46.066667,3.916667,1.65
+ Saint-Haon-le-Vieux ,SAINT HAON LE VIEUX,42370,42233,82,46.066667,3.916667,1.65
+ Saint-Héand ,SAINT HEAND ,42570,42234,82,45.516667,4.366667,0.93
+ Saint-Hilaire-sous-Charlieu ,SAINT HILAIRE SOUS CHARLIEU,42190,42236,82,46.116667,4.2,1.88
+ Saint-Jean-Bonnefonds ,SAINT JEAN BONNEFONDS ,42650,42237,82,45.45,4.45,1.29
+ Saint-Jean-la-Vêtre ,SAINT JEAN LA VETRE,42440,42238,82,45.783333,3.8,2.03
+ Saint-Jean-Soleymieux ,SAINT JEAN SOLEYMIEUX ,42560,42240,82,45.5,4.033333,1.01
+ Saint-Jodard ,SAINT JODARD ,42590,42241,82,45.883333,4.133333,0.79
+ Saint-Joseph ,SAINT JOSEPH ,42800,42242,82,45.55,4.616667,2.14
+ Saint-Julien-d'Oddes ,SAINT JULIEN D ODDES,42260,42243,82,45.85,4,1.01
+ Saint-Julien-la-Vêtre ,SAINT JULIEN LA VETRE,42440,42245,82,45.816667,3.816667,1.95
+ Saint-Julien-Molin-Molette ,SAINT JULIEN MOLIN MOLETTE,42220,42246,82,45.316667,4.616667,2.14
+ Saint-Just-en-Bas ,SAINT JUST EN BAS,42136,42247,82,45.733333,3.883333,1.61
+ Saint-Just-en-Chevalet ,SAINT JUST EN CHEVALET,42430,42248,82,45.916667,3.85,1.78
+ Saint-Just-la-Pendue ,SAINT JUST LA PENDUE,42540,42249,82,45.9,4.25,0.86
+ Saint-Just-sur-Loire ,SAINT JUST SUR LOIRE,42170,42250,82,45.483333,4.266667,1.09
+ Saint-Laurent-la-Conche ,SAINT LAURENT LA CONCHE,42210,42251,82,45.683333,4.2,1.23
+ Saint-Laurent-Rochefort ,SAINT LAURENT ROCHEFORT ,42130,42252,82,45.766667,3.916667,1.68
+ Saint-Léger-sur-Roanne ,SAINT LEGER SUR ROANNE,42155,42253,82,46.033333,4,1.49
+ Saint-Marcel-de-Félines ,SAINT MARCEL DE FELINES,42122,42254,82,45.866667,4.183333,0.71
+ Saint-Marcel-d'Urfé ,SAINT MARCEL D URFE,42430,42255,82,45.866667,3.883333,1.61
+ Saint-Marcellin-en-Forez ,SAINT MARCELLIN EN FOREZ,42680,42256,82,45.483333,4.166667,1.09
+ Saint-Martin-d'Estréaux ,SAINT MARTIN D ESTREAUX,42620,42257,82,46.2,3.8,2.27
+ Saint-Martin-la-Plaine ,SAINT MARTIN LA PLAINE,42800,42259,82,45.533333,4.6,2.05
+ Saint-Martin-la-Sauveté ,SAINT MARTIN LA SAUVETE,42260,42260,82,45.833333,3.916667,1.6
+ Saint-Martin-Lestra ,SAINT MARTIN LESTRA ,42110,42261,82,45.716667,4.35,1.84
+ Saint-Maurice-en-Gourgois ,SAINT MAURICE EN GOURGOIS,42240,42262,82,45.4,4.183333,1.79
+ Saint-Maurice-sur-Loire ,SAINT MAURICE SUR LOIRE,42155,42263,82,45.966667,4.016667,1.76
+ Saint-Médard-en-Forez ,SAINT MEDARD EN FOREZ,42330,42264,82,45.6,4.366667,1.04
+ Saint-Michel-sur-Rhône ,SAINT MICHEL SUR RHONE,42410,42265,82,45.45,4.75,2.82
+ Saint-Nizier-de-Fornas ,SAINT NIZIER DE FORNAS,42380,42266,82,45.4,4.083333,1.48
+ Saint-Nizier-sous-Charlieu ,SAINT NIZIER SOUS CHARLIEU,42190,42267,82,46.15,4.133333,2.04
+ Saint-Paul-de-Vézelin ,SAINT PAUL DE VEZELIN,42590,42268,82,45.883333,4.083333,1.31
+ Saint-Paul-d'Uzore ,SAINT PAUL D UZORE,42600,42269,82,45.666667,4.083333,0.77
+ Saint-Paul-en-Cornillon ,SAINT PAUL EN CORNILLON,42240,42270,82,45.4,4.233333,1.48
+ Saint-Paul-en-Jarez ,SAINT PAUL EN JAREZ,42740,42271,82,45.483333,4.583333,1.97
+ Saint-Pierre-de-Boeuf ,SAINT PIERRE DE BOEUF,42520,42272,82,45.366667,4.75,2.82
+ Saint-Pierre-la-Noaille ,SAINT PIERRE LA NOAILLE,42190,42273,82,46.183333,4.1,2.19
+ Saint-Polgues ,SAINT POLGUES ,42260,42274,82,45.916667,3.983333,1.1
+ Saint-Priest-en-Jarez ,SAINT PRIEST EN JAREZ,42270,42275,82,45.466667,4.366667,1.16
+ Saint-Priest-la-Prugne ,SAINT PRIEST LA PRUGNE,42830,42276,82,45.966667,3.75,2.29
+ Saint-Priest-la-Roche ,SAINT PRIEST LA ROCHE,42590,42277,82,45.916667,4.1,0.97
+ Saint-Priest-la-Vêtre ,SAINT PRIEST LA VETRE,42440,42278,82,45.8,3.8,2.03
+ Saint-Régis-du-Coin ,SAINT REGIS DU COIN,42660,42280,82,45.283333,4.45,2.02
+ Saint-Rirand ,SAINT RIRAND ,42370,42281,82,46.066667,3.85,1.85
+ Saint-Romain-d'Urfé ,SAINT ROMAIN D URFE,42430,42282,82,45.883333,3.833333,1.86
+ Saint-Romain-en-Jarez ,SAINT ROMAIN EN JAREZ,42800,42283,82,45.55,4.516667,1.88
+ Saint-Romain-la-Motte ,SAINT ROMAIN LA MOTTE,42640,42284,82,46.083333,3.983333,1.72
+ Saint-Romain-le-Puy ,SAINT ROMAIN LE PUY,42610,42285,82,45.55,4.116667,1
+ Saint-Romain-les-Atheux ,SAINT ROMAIN LES ATHEUX,42660,42286,82,45.35,4.383333,1.71
+ Saint-Sauveur-en-Rue ,SAINT SAUVEUR EN RUE,42220,42287,82,45.266667,4.5,2.1
+ Saint-Sixte ,SAINT SIXTE ,42130,42288,82,45.783333,3.983333,1.1
+ Saint-Symphorien-de-Lay ,SAINT SYMPHORIEN DE LAY,42470,42289,82,45.95,4.216667,1.1
+ Saint-Thomas-la-Garde ,SAINT THOMAS LA GARDE,42600,42290,82,45.566667,4.083333,0.84
+ Saint-Thurin ,SAINT THURIN ,42111,42291,82,45.816667,3.866667,1.69
+ Saint-Victor-sur-Loire ,SAINT VICTOR SUR LOIRE,42230,42292,82,45.45,4.25,1.24
+ Saint-Victor-sur-Rhins ,SAINT VICTOR SUR RHINS,42630,42293,82,46,4.283333,1.44
+ Saint-Vincent-de-Boisset ,SAINT VINCENT DE BOISSET,42120,42294,82,46,4.116667,1.33
+ Salt-en-Donzy ,SALT EN DONZY ,42110,42296,82,45.733333,4.283333,0.79
+ Salvizinet ,SALVIZINET ,42110,42297,82,45.766667,4.266667,0.49
+ Sauvain ,SAUVAIN ,42990,42298,82,45.666667,3.9,1.52
+Savigneux, ,42600,42299,82,45.616667,4.083333,0.59
+ Sevelinges ,SEVELINGES ,42460,42300,82,46.1,4.3,1.8
+ Soleymieux ,SOLEYMIEUX ,42560,42301,82,45.516667,4.05,0.93
+ Sorbiers ,SORBIERS ,42290,42302,82,45.483333,4.45,1.29
+ Souternon ,SOUTERNON ,42260,42303,82,45.866667,4,1.01
+ Sury-le-Comtal ,SURY LE COMTAL ,42450,42304,82,45.533333,4.166667,0.85
+ La Talaudière ,LA TALAUDIERE ,42350,42305,82,45.483333,4.433333,1.2
+ Tarentaise ,TARENTAISE ,42660,42306,82,45.366667,4.5,1.63
+ Tartaras ,TARTARAS ,42800,42307,82,45.55,4.666667,2.39
+ La Terrasse-sur-Dorlay ,LA TERRASSE SUR DORLAY,42740,42308,82,45.45,4.583333,1.97
+ Thélis-la-Combe ,THELIS LA COMBE ,42220,42310,82,45.316667,4.55,1.87
+ La Tour-en-Jarez ,LA TOUR EN JAREZ,42580,42311,82,45.483333,4.4,1.09
+ Trelins ,TRELINS ,42130,42313,82,45.733333,4.016667,0.93
+ La Tuilière ,LA TUILIERE ,42830,42314,82,45.941667,3.8,-1
+ Unias ,UNIAS ,42210,42315,82,45.6,4.216667,0.86
+ Unieux ,UNIEUX ,42240,42316,82,45.4,4.266667,1.48
+ Urbise ,URBISE ,42310,42317,82,46.25,3.9,2.5
+ Usson-en-Forez ,USSON EN FOREZ ,42550,42318,82,45.383333,3.933333,1.55
+ Valfleury ,VALFLEURY ,42320,42320,82,45.516667,4.5,1.54
+ La Valla ,LA VALLA ,42111,42321,82,45.75,3.85,1.78
+ La Valla-en Gier ,LA VALLA EN GIER,42131,42322,82,45.416667,4.516667,1.63
+ Veauche ,VEAUCHE ,42340,42323,82,45.55,4.283333,1.5
+ Veauchette ,VEAUCHETTE ,42340,42324,82,45.566667,4.266667,0.7
+ Vendranges ,VENDRANGES ,42590,42325,82,45.933333,4.133333,1.02
+ Véranne ,VERANNE ,42520,42326,82,45.366667,4.666667,2.39
+ Vérin ,VERIN ,42410,42327,82,45.45,4.75,2.82
+ Verrières-en-Forez ,VERRIERES EN FOREZ ,42600,42328,82,45.566667,4,1.2
+ La Versanne ,LA VERSANNE ,42220,42329,82,45.316667,4.533333,1.87
+ Villars ,VILLARS ,42390,42330,82,45.466667,4.35,1.16
+ Villemontais ,VILLEMONTAIS ,42155,42331,82,45.983333,3.95,1.51
+ Villers ,VILLERS ,42460,42333,82,46.116667,4.233333,1.88
+ Violay ,VIOLAY ,42780,42334,82,45.85,4.35,0.78
+ Viricelles ,VIRICELLES ,42140,42335,82,45.65,4.383333,0.96
+ Virigneux ,VIRIGNEUX ,42140,42336,82,45.683333,4.35,1.78
+ Vivans ,VIVANS ,42310,42337,82,46.183333,3.95,2.19
+ Chausseterre ,CHAUSSETERRE ,42430,42339,82,45.9,3.783333,2.12
+ Terrenoire ,TERRENOIRE ,42100,42900,82,45.433333,4.433333,1.32
+ Agnat ,AGNAT ,43100,43001,72,45.35,3.466667,1.61
+ Allègre ,ALLEGRE ,43270,43003,72,45.2,3.7,0.46
+ Alleyrac ,ALLEYRAC ,43150,43004,72,44.883333,3.966667,1.97
+ Alleyras ,ALLEYRAS ,43580,43005,72,44.9,3.683333,1.84
+ Ally ,ALLY ,43380,43006,72,45.158333,3.308333,-1
+ Araules ,ARAULES ,43200,43007,72,45.083333,4.166667,1.59
+ Arlempdes ,ARLEMPDES ,43490,43008,72,44.866667,3.916667,2.09
+ Arlet ,ARLET ,43380,43009,72,45.116667,3.433333,1.26
+ Arsac-en-Velay ,ARSAC EN VELAY ,43700,43010,72,44.983333,3.95,1.48
+ Aubazat ,AUBAZAT ,43380,43011,72,45.133333,3.45,1.19
+ Aurec-sur-Loire ,AUREC SUR LOIRE ,43110,43012,72,45.366667,4.2,1.74
+ Autrac ,AUTRAC ,43450,43014,72,45.333333,3.133333,2.42
+ Auvers ,AUVERS ,43300,43015,72,45,3.416667,1.32
+ Auzon ,AUZON ,43390,43016,72,45.383333,3.383333,1.87
+ Azérat ,AZERAT ,43390,43017,72,45.366667,3.383333,1.74
+ Bains ,BAINS ,43370,43018,72,45.016667,3.766667,1.44
+ Barges ,BARGES ,43340,43019,72,44.833333,3.9,2.35
+ Bas-en-Basset ,BAS EN BASSET ,43210,43020,72,45.3,4.1,1.33
+ Beaumont ,BEAUMONT ,43100,43022,72,45.316667,3.34239,-1
+ Beaune-sur-Arzon ,BEAUNE SUR ARZON ,43500,43023,72,45.283333,3.816667,1.1
+ Beaux ,BEAUX ,43200,43024,72,45.183333,4.1,1.33
+ Beauzac ,BEAUZAC ,43590,43025,72,45.25,4.1,1.33
+ Bellevue-la-Montagne ,BELLEVUE LA MONTAGNE ,43350,43026,72,45.216667,3.816667,1.9
+ Berbezit ,BERBEZIT ,43160,43027,72,45.283333,3.6,1.5
+ La Besseyre-Saint-Mary ,LA BESSEYRE SAINT MARY,43170,43029,72,44.966667,3.416667,1.72
+ Blanzac ,BLANZAC ,43350,43030,72,45.116667,3.85,1.22
+ Blassac ,BLASSAC ,43380,43031,72,45.166667,3.416667,1.32
+ Blavozy ,BLAVOZY ,43700,43032,72,45.05,3.95,0.75
+ Blesle ,BLESLE ,43450,43033,72,45.316667,3.183333,2.23
+ Boisset ,BOISSET ,43500,43034,72,45.316667,3.983333,2.17
+ Bonneval ,BONNEVAL ,43160,43035,72,45.316667,3.75,1.35
+ Borne ,BORNE ,43350,43036,72,45.1,3.783333,1.22
+ Le Bouchet-Saint-Nicolas ,LE BOUCHET SAINT NICOLAS,43510,43037,72,44.883333,3.783333,1.97
+ Bournoncle-Saint-Pierre ,BOURNONCLE SAINT PIERRE ,43360,43038,72,45.333333,3.316667,1.71
+ Le Brignon ,LE BRIGNON ,43370,43039,72,44.933333,3.883333,1.58
+ Brioude ,BRIOUDE ,43100,43040,72,45.3,3.4,1.39
+ Brives-Charensac ,BRIVES CHARENSAC ,43700,43041,72,45.05,3.933333,0.69
+ Cayres ,CAYRES ,43510,43042,72,44.916667,3.8,1.71
+ Céaux-d'Allègre ,CEAUX D ALLEGRE ,43270,43043,72,45.166667,3.733333,1.2
+ Cerzat ,CERZAT ,43380,43044,72,45.166667,3.483333,1.51
+ Ceyssac ,CEYSSAC ,43000,43045,72,45.033333,3.816667,1
+ Chadrac ,CHADRAC ,43770,43046,72,45.066667,3.9,1
+ Chadron ,CHADRON ,43150,43047,72,44.966667,3.933333,1.33
+ La Chaise-Dieu ,LA CHAISE DIEU ,43160,43048,72,45.316667,3.7,1.35
+ Chamalières-sur-Loire ,CHAMALIERES SUR LOIRE ,43800,43049,72,45.2,3.983333,1.16
+ Chambezon ,CHAMBEZON ,43410,43050,72,45.383333,3.233333,2.03
+ Le Chambon-sur-Lignon ,LE CHAMBON SUR LIGNON,43400,43051,72,45.05,4.3,2.11
+ Champagnac-le-Vieux ,CHAMPAGNAC LE VIEUX ,43440,43052,72,45.35,3.5,1.61
+ Champclause ,CHAMPCLAUSE ,43260,43053,72,45.025,4.175,1.9
+ Chanaleilles ,CHANALEILLES ,43170,43054,72,44.866667,3.5,2.09
+ Chaniat ,CHANIAT ,43100,43055,72,45.316667,3.483333,1.35
+ Chanteuges ,CHANTEUGES ,43300,43056,72,45.066667,3.55,0.8
+ La Chapelle-Bertin ,LA CHAPELLE BERTIN ,43270,43057,72,45.216667,3.65,1.15
+ La Chapelle-d'Aurec ,LA CHAPELLE D AUREC,43120,43058,72,45.333333,4.2,1.72
+ La Chapelle-Geneste ,LA CHAPELLE GENESTE ,43160,43059,72,45.35,3.666667,1.61
+ Charraix ,CHARRAIX ,43300,43060,72,45.033333,3.566667,0.92
+ Chaspinhac ,CHASPINHAC ,43700,43061,72,45.083333,3.95,1.48
+ Chaspuzac ,CHASPUZAC ,43320,43062,72,45.066667,3.733333,0.56
+ Chassagnes ,CHASSAGNES ,43230,43063,72,45.216667,3.55,0.8
+ Chassignolles ,CHASSIGNOLLES ,43440,43064,72,45.4,3.5,1.99
+ Chastel ,CHASTEL ,43300,43065,72,45.083333,3.316667,2.13
+ Chaudeyrolles ,CHAUDEYROLLES ,43430,43066,72,44.95,4.25,1.91
+ Chavaniac-Lafayette ,CHAVANIAC LAFAYETTE ,43230,43067,72,45.15,3.583333,1.24
+ Chenereilles ,CHENEREILLES ,43190,43069,72,45.133333,4.233333,1.85
+ Chilhac ,CHILHAC ,43380,43070,72,45.15,3.45,1.19
+ Chomelix ,CHOMELIX ,43500,43071,72,45.266667,3.833333,0.97
+ La Chomette ,LA CHOMETTE ,43230,43072,72,45.233333,3.483333,1.35
+ Cistrières ,CISTRIERES ,43160,43073,72,45.316667,3.616667,1.35
+ Cohade ,COHADE ,43100,43074,72,45.333333,3.383333,1.48
+ Collat ,COLLAT ,43230,43075,72,45.25,3.616667,1.36
+ Connangles ,CONNANGLES ,43160,43076,72,45.3,3.65,1.23
+ Costaros ,COSTAROS ,43490,43077,72,44.9,3.833333,1.84
+ Coubon ,COUBON ,43700,43078,72,45,3.916667,1.28
+ Couteuges ,COUTEUGES ,43230,43079,72,45.183333,3.516667,0.93
+ Craponne-sur-Arzon ,CRAPONNE SUR ARZON ,43500,43080,72,45.333333,3.85,1.48
+ Croisances ,CROISANCES ,43580,43081,72,44.9,3.6,1.84
+ Cronce ,CRONCE ,43300,43082,72,45.1,3.366667,1.58
+ Cubelles ,CUBELLES ,43170,43083,72,45,3.583333,1.34
+ Desges ,DESGES ,43300,43085,72,45.016667,3.466667,1.13
+ Domeyrat ,DOMEYRAT ,43230,43086,72,45.25,3.516667,0.98
+ Dunières ,DUNIERES ,43220,43087,72,45.216667,4.333333,2.24
+ Espalem ,ESPALEM ,43450,43088,72,45.316667,3.25,1.97
+ Espaly-Saint-Marcel ,ESPALY SAINT MARCEL ,43000,43089,72,45.05,3.866667,1
+ Esplantas ,ESPLANTAS ,43170,43090,72,44.9,3.566667,1.84
+ Les Estables ,LES ESTABLES ,43150,43091,72,44.908333,4.15,-1
+ Fay-sur-Lignon ,FAY SUR LIGNON ,43430,43092,72,44.983333,4.233333,1.85
+ Félines ,FELINES ,43160,43093,72,45.266667,3.75,1.43
+ Ferrussac ,FERRUSSAC ,43300,43094,72,45.1,3.416667,1.32
+ Fix-Saint-Geneys ,FIX SAINT GENEYS ,43320,43095,72,45.133333,3.666667,1.62
+ Fontannes ,FONTANNES ,43100,43096,72,45.291667,3.425,-1
+ Freycenet-la-Cuche ,FREYCENET LA CUCHE ,43150,43097,72,44.883333,4.1,1.97
+ Freycenet-la-Tour ,FREYCENET LA TOUR ,43150,43098,72,44.933333,4.066667,1.58
+ Frugères-les-Mines ,FRUGERES LES MINES ,43250,43099,72,45.383333,3.316667,1.87
+ Frugières-le-Pin ,FRUGIERES LE PIN ,43230,43100,72,45.266667,3.5,1.42
+ Goudet ,GOUDET ,43150,43101,72,44.883333,3.916667,1.97
+ Grazac ,GRAZAC ,43200,43102,72,45.183333,4.183333,-1
+ Grenier-Montgon ,GRENIER MONTGON ,43450,43103,72,45.283333,3.216667,2.1
+ Grèzes ,GREZES ,43170,43104,72,44.916667,3.5,1.71
+ Javaugues ,JAVAUGUES ,43100,43105,72,45.283333,3.483333,1.1
+ Jax ,JAX ,43230,43106,72,45.166667,3.616667,1.41
+ Josat ,JOSAT ,43230,43107,72,45.216667,3.6,0.85
+ Jullianges ,JULLIANGES ,43500,43108,72,45.3,3.783333,1.23
+ Landos ,LANDOS ,43340,43111,72,44.85,3.833333,2.22
+ Langeac ,LANGEAC ,43300,43112,72,45.1,3.483333,1.06
+ Lantriac ,LANTRIAC ,43260,43113,72,45,4,1.44
+ Lapte ,LAPTE ,43200,43114,72,45.183333,4.216667,1.79
+ Laussonne ,LAUSSONNE ,43150,43115,72,44.966667,4.05,1.33
+ Laval-sur-Doulon ,LAVAL SUR DOULON ,43440,43116,72,45.35,3.583333,1.61
+ Lavaudieu ,LAVAUDIEU ,43100,43117,72,45.266667,3.466667,1.13
+ Lavoûte-Chilhac ,LAVOUTE CHILHAC ,43380,43118,72,45.15,3.4,1.39
+ Lavoûte-sur-Loire ,LAVOUTE SUR LOIRE ,43800,43119,72,45.116667,3.9,1.16
+Lempdes-sur-Allagnon,SUR ALLAGNON ,43410,43120,72,45.385,3.2721,-1
+ Léotoing ,LEOTOING ,43410,43121,72,45.366667,3.233333,2.03
+ Lissac ,LISSAC ,43350,43122,72,45.133333,3.766667,1.07
+ Lorlanges ,LORLANGES ,43360,43123,72,45.333333,3.266667,1.91
+ Loudes ,LOUDES ,43320,43124,72,45.083333,3.75,0.72
+ Lubilhac ,LUBILHAC ,43100,43125,72,45.25,3.25,1.97
+ Malrevers ,MALREVERS ,43800,43126,72,45.1,3.95,0.9
+ Malvalette ,MALVALETTE ,43210,43127,72,45.35,4.15,1.61
+ Malvières ,MALVIERES ,43160,43128,72,45.333333,3.733333,1.48
+ Le Mas-de-Tence ,LE MAS DE TENCE,43190,43129,72,45.116667,4.366667,2.37
+ Mazet-Saint-Voy ,MAZET SAINT VOY ,43520,43130,72,45.05,4.233333,1.85
+ Mazeyrat-Aurouze ,MAZEYRAT AUROUZE ,43230,43131,72,45.183333,3.566667,0.74
+ Mercoeur ,MERCOEUR ,43100,43133,72,45.19176,3.29335,-1
+ Mézères ,MEZERES ,43800,43134,72,45.15,4,0.94
+ Monistrol-d'Allier ,MONISTROL D ALLIER ,43580,43136,72,44.95,3.633333,1.46
+ Monistrol-sur-Loire ,MONISTROL SUR LOIRE ,43120,43137,72,45.283333,4.166667,1.59
+ Monlet ,MONLET ,43270,43138,72,45.216667,3.716667,0.95
+ Montclard ,MONTCLARD ,43230,43139,72,45.266667,3.566667,1.05
+ Montregard ,MONTREGARD ,43290,43142,72,45.15,4.35,2.3
+ Montusclat ,MONTUSCLAT ,43260,43143,72,45.016667,4.133333,1.46
+ Moudeyres ,MOUDEYRES ,43150,43144,72,44.95,4.116667,1.46
+ Ouides ,OUIDES ,43510,43145,72,44.9,3.733333,1.84
+ Paulhac ,PAULHAC ,43100,43147,72,45.3,3.35,-1
+ Paulhaguet ,PAULHAGUET ,43230,43148,72,45.2,3.533333,0.87
+ Pébrac ,PEBRAC ,43300,43149,72,45.033333,3.516667,0.93
+ Le Pertuis ,LE PERTUIS ,43200,43150,72,45.1,4.05,1.35
+ Pinols ,PINOLS ,43300,43151,72,45.05,3.416667,1.32
+ Polignac ,POLIGNAC ,43770,43152,72,45.066667,3.866667,1
+ Pont-Salomon ,PONT SALOMON ,43330,43153,72,45.333333,4.25,1.91
+ Présailles ,PRESAILLES ,43150,43156,72,44.9,4.033333,1.84
+ Queyrières ,QUEYRIERES ,43260,43158,72,45.066667,4.1,1.33
+ Raucoules ,RAUCOULES ,43290,43159,72,45.183333,4.3,2.11
+ Rauret ,RAURET ,43340,43160,72,44.816667,3.783333,2.48
+ Reilhac ,REILHAC ,43300,43161,72,45.116667,3.5,1
+ Retournac ,RETOURNAC ,43130,43162,72,45.2,4.033333,1.46
+ Riotord ,RIOTORD ,43220,43163,72,45.233333,4.4,2.5
+ Roche-en-Régnier ,ROCHE EN REGNIER ,43130,43164,72,45.216667,3.933333,1.45
+ Rosières ,ROSIERES ,43800,43165,72,45.133333,3.983333,0.88
+ Saint-André-de-Chalençon ,SAINT ANDRE DE CHALENCON,43130,43166,72,45.283333,4,1.1
+ Saint-Arçons-d'Allier ,SAINT ARCONS D ALLIER,43300,43167,72,45.066667,3.566667,0.83
+ Saint-Arcons-de-Barges ,SAINT ARCONS DE BARGES,43420,43168,72,44.833333,3.933333,2.35
+ Saint-Austremoine ,SAINT AUSTREMOINE ,43380,43169,72,45.116667,3.383333,1.45
+ Saint-Bérain ,SAINT BERAIN ,43300,43171,72,45.033333,3.633333,1.67
+ Saint-Bonnet-le-Froid ,SAINT BONNET LE FROID,43290,43172,72,45.15,4.45,2.69
+ Saint-Christophe-sur-Dolaison ,SAINT CHRISTOPHE SUR DOLAISON,43370,43174,72,45,3.816667,1.07
+ Saint-Cirgues ,SAINT CIRGUES ,43380,43175,72,45.15,3.416667,1.32
+ Saint-Didier-d'Allier ,SAINT DIDIER D ALLIER,43580,43176,72,44.966667,3.683333,1.33
+ Saint-Didier-en-Velay ,SAINT DIDIER EN VELAY,43140,43177,72,45.3,4.283333,2.04
+ Saint-Didier-sur-Doulon ,SAINT DIDIER SUR DOULON,43440,43178,72,45.3,3.55,1.27
+ Saint-Eble ,SAINT EBLE ,43300,43179,72,45.133333,3.566667,1.15
+ Saint-Étienne-du-Vigan ,SAINT ETIENNE DU VIGAN,43420,43180,72,44.783333,3.833333,2.73
+ Saint-Étienne-Lardeyrol ,SAINT ETIENNE LARDEYROL ,43260,43181,72,45.066667,4,1.33
+ Saint-Étienne-sur-Blesle ,SAINT ETIENNE SUR BLESLE,43450,43182,72,45.316667,3.133333,2.42
+ Sainte-Eugénie-de-Villeneuve ,SAINTE EUGENIE DE VILLENEUVE,43230,43183,72,45.133333,3.616667,1.83
+ Saint-Ferréol-d'Auroure ,SAINT FERREOL D AUROURE,43330,43184,72,45.35,4.25,1.91
+ Sainte-Florine ,SAINTE FLORINE ,43250,43185,72,45.4,3.333333,1.99
+ Saint-Front ,SAINT FRONT ,43550,43186,72,44.983333,4.133333,1.46
+ Saint-Geneys-près-Saint-Paulien ,SAINT GENEYS PRES SAINT,43350,43187,72,45.15,3.816667,0.3
+ Saint-Georges-d'Aurac ,SAINT GEORGES D AURAC,43230,43188,72,45.15,3.533333,1.18
+ Saint-Germain-Laprade ,SAINT GERMAIN LAPRADE ,43700,43190,72,45.033333,3.966667,0.82
+ Saint-Géron ,SAINT GERON ,43360,43191,72,45.333333,3.283333,1.84
+ Saint-Haon ,SAINT HAON ,43340,43192,72,44.85,3.75,2.22
+Saint-Hilaire,HILAIRE ,43390,43193,72,45.3807,3.43899,-1
+ Saint-Hostien ,SAINT HOSTIEN ,43260,43194,72,45.066667,4.05,1.14
+ Saint-Ilpize ,SAINT ILPIZE ,43380,43195,72,45.2,3.4,1.39
+ Saint-Jean-d'Aubrigoux ,SAINT JEAN D AUBRIGOUX,43500,43196,72,45.35,3.816667,1.61
+ Saint-Jean-de-Nay ,SAINT JEAN DE NAY,43320,43197,72,45.066667,3.7,0.56
+ Saint-Jean-Lachalm ,SAINT JEAN LACHALM ,43510,43198,72,44.966667,3.716667,1.33
+ Saint-Jeures ,SAINT JEURES ,43200,43199,72,45.1,4.2,1.72
+ Saint-Julien-Chapteuil ,SAINT JULIEN CHAPTEUIL ,43260,43200,72,45.033333,4.066667,1.2
+ Saint-Julien-d'Ance ,SAINT JULIEN D ANCE,43500,43201,72,45.3,3.916667,1.23
+ Saint-Julien-des-Chazes ,SAINT JULIEN DES CHAZES,43300,43202,72,45.05,3.583333,1.05
+ Saint-Julien-du-Pinet ,SAINT JULIEN DU PINET,43200,43203,72,45.133333,4.033333,1.43
+ Saint-Julien-Molhesabate ,SAINT JULIEN MOLHESABATE ,43220,43204,72,45.183333,4.433333,2.63
+ Saint-Just-Malmont ,SAINT JUST MALMONT ,43240,43205,72,45.333333,4.316667,2.17
+ Saint-Just-près-Brioude ,SAINT JUST PRES BRIOUDE,43100,43206,72,45.233333,3.366667,1.52
+ Saint-Laurent-Chabreuges ,SAINT LAURENT CHABREUGES ,43100,43207,72,45.283333,3.35,1.58
+ Sainte-Marguerite ,SAINTE MARGUERITE ,43230,43208,72,45.2,3.583333,0.68
+ Saint-Martin-de-Fugères ,SAINT MARTIN DE FUGERES,43150,43210,72,44.9,3.933333,1.84
+ Saint-Maurice-de-Lignon ,SAINT MAURICE DE LIGNON,43200,43211,72,45.216667,4.15,1.53
+ Saint-Pal-de-Mons ,SAINT PAL DE MONS,43620,43213,72,45.233333,4.283333,2.04
+ Saint-Pal-de-Senouire ,SAINT PAL DE SENOUIRE,43160,43214,72,45.266667,3.65,0.97
+ Saint-Paul-de-Tartas ,SAINT PAUL DE TARTAS,43420,43215,72,44.8,3.9,2.6
+ Saint-Paulien ,SAINT PAULIEN ,43350,43216,72,45.133333,3.816667,0.3
+ Saint-Pierre-Eynac ,SAINT PIERRE EYNAC ,43260,43218,72,45.05,4.033333,1.07
+ Saint-Préjet-Armandon ,SAINT PREJET ARMANDON ,43230,43219,72,45.25,3.55,0.84
+ Saint-Préjet-d'Allier ,SAINT PREJET D ALLIER,43580,43220,72,44.916667,3.616667,1.71
+ Saint-Privat-d'Allier ,SAINT PRIVAT D ALLIER,43580,43221,72,44.983333,3.683333,1.41
+ Saint-Privat-du-Dragon ,SAINT PRIVAT DU DRAGON,43380,43222,72,45.183333,3.466667,1.26
+ Saint-Romain-Lachalm ,SAINT ROMAIN LACHALM ,43620,43223,72,45.266667,4.333333,2.24
+ Sainte-Sigolène ,SAINTE SIGOLENE ,43600,43224,72,45.233333,4.25,1.91
+ Saint-Vénérand ,SAINT VENERAND ,43580,43225,72,44.866667,3.666667,2.09
+ Saint-Vert ,SAINT VERT ,43440,43226,72,45.366667,3.55,1.74
+ Saint-Victor-Malescours ,SAINT VICTOR MALESCOURS ,43140,43227,72,45.283333,4.316667,2.17
+ Saint-Victor-sur-Arlanc ,SAINT VICTOR SUR ARLANC,43500,43228,72,45.333333,3.783333,1.48
+ Saint-Vidal ,SAINT VIDAL ,43320,43229,72,45.066667,3.783333,1.37
+ Salzuit ,SALZUIT ,43230,43232,72,45.216667,3.5,1
+ Sanssac-l'Église ,SANSSAC L EGLISE ,43320,43233,72,45.05,3.766667,1.12
+ Saugues ,SAUGUES ,43170,43234,72,44.966667,3.55,1.33
+ La Séauve-sur-Semène ,LA SEAUVE SUR SEMENE,43140,43236,72,45.283333,4.25,1.91
+ Sembadel ,SEMBADEL ,43160,43237,72,45.266667,3.683333,0.97
+ Séneujols ,SENEUJOLS ,43510,43238,72,44.966667,3.783333,1.33
+ Solignac-sous-Roche ,SOLIGNAC SOUS ROCHE ,43130,43240,72,45.25,4,0.94
+ Solignac-sur-Loire ,SOLIGNAC SUR LOIRE ,43370,43241,72,44.966667,3.883333,1.33
+ Tailhac ,TAILHAC ,43300,43242,72,45.05,3.466667,1.13
+ Tence ,TENCE ,43190,43244,72,45.116667,4.283333,2.04
+ Thoras ,THORAS ,43170,43245,72,44.866667,3.566667,2.09
+ Tiranges ,TIRANGES ,43130,43246,72,45.3,3.983333,1.23
+ Torsiac ,TORSIAC ,43450,43247,72,45.35,3.233333,2.03
+ Valprivas ,VALPRIVAS ,43210,43249,72,45.316667,4.05,1.35
+ Vals-le-Chastel ,VALS LE CHASTEL ,43230,43250,72,45.266667,3.533333,1.08
+ Vals-près-le-Puy ,VALS PRES LE PUY,43750,43251,72,45.016667,3.866667,0.94
+ Varennes-Saint-Honorat ,VARENNES SAINT HONORAT ,43270,43252,72,45.183333,3.633333,1.35
+ Vazeilles-Limandre ,VAZEILLES LIMANDRE ,43320,43254,72,45.116667,3.666667,1.37
+ Vazeilles-près-Saugues ,VAZEILLES PRES SAUGUES ,43580,43255,72,44.9,3.583333,1.84
+ Venteuges ,VENTEUGES ,43170,43256,72,44.983333,3.516667,1.2
+ Vergezac ,VERGEZAC ,43320,43257,72,45.033333,3.716667,0.82
+ Vergongheon ,VERGONGHEON ,43360,43258,72,45.366667,3.333333,1.74
+ Vernassal ,VERNASSAL ,43270,43259,72,45.15,3.7,0.98
+ Le Vernet ,LE VERNET ,43320,43260,72,45.033333,3.666667,1.3
+ Vézézoux ,VEZEZOUX ,43390,43261,72,45.4,3.35,1.99
+ Vieille-Brioude ,VIEILLE BRIOUDE ,43100,43262,72,45.266667,3.416667,1.32
+ Vielprat ,VIELPRAT ,43490,43263,72,44.85,3.95,2.22
+ Villeneuve-d'Allier ,VILLENEUVE D ALLIER ,43380,43264,72,45.2,3.4,1.39
+ Les Villettes ,LES VILLETTES ,43600,43265,72,45.233333,4.183333,1.66
+ Vissac ,VISSAC ,43300,43266,72,45.1,3.6,1.29
+ Vorey ,VOREY ,43800,43267,72,45.183333,3.9,1.22
+ Yssingeaux ,YSSINGEAUX ,43200,43268,72,45.133333,4.116667,1.4
+ Arvant ,ARVANT ,43360,43901,72,45.366667,3.316667,1.74
+ La Sauvetat ,LA SAUVETAT ,43340,43902,72,44.85,3.85,2.22
+ Abbaretz ,ABBARETZ ,44170,44001,52,47.55,-1.533333,1.46
+ Aigrefeuille-sur-Maine ,AIGREFEUILLE SUR MAINE ,44140,44002,52,47.066667,-1.4,1.62
+ Ancenis ,ANCENIS ,44150,44003,52,47.366667,-1.166667,1.73
+ Anetz ,ANETZ ,44150,44004,52,47.383333,-1.1,1.95
+ Arthon-en-Retz ,ARTHON EN RETZ ,44320,44005,52,47.116667,-1.95,1.32
+ Assérac ,ASSERAC ,44410,44006,52,47.433333,-2.383333,2.26
+ Avessac ,AVESSAC ,44460,44007,52,47.65,-1.983333,1.83
+ Barbechat ,BARBECHAT ,44450,44008,52,47.283333,-1.283333,1.5
+ Basse-Goulaine ,BASSE GOULAINE ,44115,44009,52,47.216667,-1.433333,1
+ Batz-sur-Mer ,BATZ SUR MER ,44740,44010,52,47.283333,-2.483333,2.59
+ Belligné ,BELLIGNE ,44370,44011,52,47.466667,-1.033333,2.17
+ La Bernerie-en-Retz ,LA BERNERIE EN RETZ,44760,44012,52,47.083333,-2.033333,1.52
+ Besné ,BESNE ,44160,44013,52,47.4,-2.083333,1.28
+ Blain ,BLAIN ,44130,44015,52,47.483333,-1.75,0.84
+ Bonnoeuvre ,BONNOEUVRE ,44540,44017,52,47.533333,-1.233333,1.51
+ Bouaye ,BOUAYE ,44830,44018,52,47.15,-1.7,1.13
+ Bouée ,BOUEE ,44260,44019,52,47.316667,-1.916667,0.88
+ Bouguenais ,BOUGUENAIS ,44340,44020,52,47.183333,-1.616667,1
+ Bourgneuf-en-Retz ,BOURGNEUF EN RETZ ,44580,44021,52,47.05,-1.95,1.72
+ Boussay ,BOUSSAY ,44190,44022,52,47.05,-1.183333,2.2
+ Bouvron ,BOUVRON ,44130,44023,52,47.416667,-1.85,1.25
+ Brains ,BRAINS ,44830,44024,52,47.166667,-1.716667,1.03
+ Campbon ,CAMPBON ,44750,44025,52,47.416667,-1.966667,1
+ Carquefou ,CARQUEFOU ,44470,44026,52,47.3,-1.5,1.23
+ Casson ,CASSON ,44390,44027,52,47.383333,-1.55,0.91
+ Le Cellier ,LE CELLIER ,44850,44028,52,47.316667,-1.35,1.42
+ La Chapelle-Basse-Mer ,LA CHAPELLE BASSE MER,44450,44029,52,47.266667,-1.333333,1.18
+ La Chapelle-des-Marais ,LA CHAPELLE DES MARAIS,44410,44030,52,47.45,-2.25,1.82
+ La Chapelle-Glain ,LA CHAPELLE GLAIN ,44670,44031,52,47.616667,-1.2,1.63
+ La Chapelle-Heulin ,LA CHAPELLE HEULIN ,44330,44032,52,47.183333,-1.333333,1.18
+ La Chapelle-Launay ,LA CHAPELLE LAUNAY ,44260,44033,52,47.366667,-1.966667,0.9
+ La Chapelle-Saint-Sauveur ,LA CHAPELLE SAINT SAUVEUR,44370,44034,52,47.433333,-0.983333,2.33
+ La Chapelle-sur-Erdre ,LA CHAPELLE SUR ERDRE,44240,44035,52,47.3,-1.55,0.47
+ Châteaubriant ,CHATEAUBRIANT ,44110,44036,52,47.716667,-1.383333,2.22
+ Chauvé ,CHAUVE ,44320,44038,52,47.15,-1.983333,1.13
+ Cheix-en-Retz ,CHEIX EN RETZ ,44640,44039,52,47.183333,-1.816667,0.93
+ Chémeré ,CHEMERE ,44680,44040,52,47.116667,-1.916667,1.41
+ La Chevrolière ,LA CHEVROLIERE ,44118,44041,52,47.1,-1.616667,1.42
+ Le Clion-sur-Mer ,LE CLION SUR MER,44210,44042,52,47.116667,-2.05,1.32
+ Clisson ,CLISSON ,44190,44043,52,47.083333,-1.283333,1.52
+ Conquereuil ,CONQUEREUIL ,44290,44044,52,47.616667,-1.75,1.63
+ Cordemais ,CORDEMAIS ,44360,44045,52,47.283333,-1.883333,1.88
+ Corsept ,CORSEPT ,44560,44046,52,47.283333,-2.05,1.17
+ Couëron ,COUERON ,44220,44047,52,47.216667,-1.733333,1
+ Couffé ,COUFFE ,44521,44048,52,47.4,-1.283333,1.35
+ Le Croisic ,LE CROISIC ,44490,44049,52,47.3,-2.516667,2.7
+ Crossac ,CROSSAC ,44160,44050,52,47.416667,-2.166667,1.55
+ Derval ,DERVAL ,44590,44051,52,47.666667,-1.666667,1.93
+ Donges ,DONGES ,44480,44052,52,47.3,-2.066667,1.22
+ Drefféac ,DREFFEAC ,44530,44053,52,47.466667,-2.066667,1.22
+ Erbray ,ERBRAY ,44110,44054,52,47.65,-1.316667,1.83
+ La Baule-Escoublac ,LA BAULE ESCOUBLAC ,44500,44055,52,47.3,-2.366667,2.21
+ Fay-de-Bretagne ,FAY DE BRETAGNE ,44130,44056,52,47.416667,-1.8,0.59
+ Fégréac ,FEGREAC ,44460,44057,52,47.583333,-2.05,1.43
+ Fercé ,FERCE ,44660,44058,52,47.8,-1.416667,2.71
+ Fresnay-en-Retz ,FRESNAY EN RETZ ,44580,44059,52,47.016667,-1.883333,1.91
+ Frossay ,FROSSAY ,44320,44061,52,47.25,-1.933333,1.19
+ Le Gâvre ,LE GAVRE ,44130,44062,52,47.516667,-1.75,1.13
+ Gétigné ,GETIGNE ,44190,44063,52,47.066667,-1.25,1.62
+ Gorges ,GORGES ,44190,44064,52,47.1,-1.3,1.42
+ Grand-Auverné ,GRAND AUVERNE ,44520,44065,52,47.6,-1.333333,1.53
+ Guéméné-Penfao ,GUEMENE PENFAO ,44290,44067,52,47.633333,-1.833333,1.73
+ Guenrouet ,GUENROUET ,44530,44068,52,47.516667,-1.95,1.04
+ Guérande ,GUERANDE ,44350,44069,52,47.333333,-2.433333,2.43
+ La Haie-Fouassière ,LA HAIE FOUASSIERE ,44690,44070,52,47.15,-1.4,1.13
+ Haute-Goulaine ,HAUTE GOULAINE ,44115,44071,52,47.2,-1.433333,1
+ Herbignac ,HERBIGNAC ,44410,44072,52,47.45,-2.316667,2.04
+ Héric ,HERIC ,44810,44073,52,47.416667,-1.65,1
+ Issé ,ISSE ,44520,44075,52,47.616667,-1.45,1.63
+ Jans ,JANS ,44170,44076,52,47.616667,-1.616667,1.63
+ Joué-sur-Erdre ,JOUE SUR ERDRE ,44440,44077,52,47.5,-1.416667,0.94
+ Juigné-des-Moutiers ,JUIGNE DES MOUTIERS ,44670,44078,52,47.683333,-1.183333,2.02
+ Le Landreau ,LE LANDREAU ,44430,44079,52,47.2,-1.3,1.29
+ Lavau-sur-Loire ,LAVAU SUR LOIRE ,44260,44080,52,47.3,-1.966667,1.11
+ Legé ,LEGE ,44650,44081,52,46.883333,-1.6,2.7
+ Ligné ,LIGNE ,44850,44082,52,47.416667,-1.383333,1.02
+ La Limouzinière ,LA LIMOUZINIERE ,44310,44083,52,46.983333,-1.6,2.11
+ Le Loroux-Bottereau ,LE LOROUX BOTTEREAU ,44430,44084,52,47.25,-1.35,1.24
+ Louisfert ,LOUISFERT ,44110,44085,52,47.683333,-1.433333,2.02
+ Lusanger ,LUSANGER ,44590,44086,52,47.683333,-1.583333,2.02
+ Machecoul ,MACHECOUL ,44270,44087,52,47,-1.816667,2.01
+ Maisdon-sur-Sèvre ,MAISDON SUR SEVRE ,44690,44088,52,47.1,-1.383333,1.42
+ Malville ,MALVILLE ,44260,44089,52,47.366667,-1.866667,1.7
+ La Marne ,LA MARNE ,44270,44090,52,47,-1.733333,2.01
+ Marsac-sur-Don ,MARSAC SUR DON ,44170,44091,52,47.6,-1.666667,1.53
+ Massérac ,MASSERAC ,44290,44092,52,47.666667,-1.916667,1.93
+ Maumusson ,MAUMUSSON ,44540,44093,52,47.483333,-1.1,1.95
+ Mauves-sur-Loire ,MAUVES SUR LOIRE ,44470,44094,52,47.3,-1.4,1.23
+ La Meilleraye-de-Bretagne ,LA MEILLERAYE DE BRETAGNE,44520,44095,52,47.55,-1.4,1.24
+ Mésanger ,MESANGER ,44522,44096,52,47.433333,-1.233333,1.51
+ Mesquer ,MESQUER ,44420,44097,52,47.4,-2.45,2.48
+ Missillac ,MISSILLAC ,44780,44098,52,47.483333,-2.166667,1.55
+ Moisdon-la-Rivière ,MOISDON LA RIVIERE ,44520,44099,52,47.616667,-1.366667,1.63
+ Monnières ,MONNIERES ,44690,44100,52,47.133333,-1.35,1.22
+ La Montagne ,LA MONTAGNE ,44620,44101,52,47.183333,-1.683333,1
+ Montbert ,MONTBERT ,44140,44102,52,47.05,-1.5,1.72
+ Montoir-de-Bretagne ,MONTOIR DE BRETAGNE ,44550,44103,52,47.333333,-2.15,1.5
+ Montrelais ,MONTRELAIS ,44370,44104,52,47.383333,-0.966667,2.38
+ Mouais ,MOUAIS ,44590,44105,52,47.7,-1.65,2.12
+ Mouzeil ,MOUZEIL ,44850,44107,52,47.45,-1.35,1.27
+ Mouzillon ,MOUZILLON ,44330,44108,52,47.15,-1.283333,1.35
+ Nantes ,NANTES ,44200,44109,52,47.216667,-1.55,0.73
+ Nort-sur-Erdre ,NORT SUR ERDRE ,44390,44110,52,47.433333,-1.5,0.63
+ Notre-Dame-des-Landes ,NOTRE DAME DES LANDES,44130,44111,52,47.383333,-1.7,1.37
+ Noyal-sur-Brutz ,NOYAL SUR BRUTZ ,44110,44112,52,47.783333,-1.333333,2.61
+ Nozay ,NOZAY ,44170,44113,52,47.566667,-1.633333,1.33
+ Orvault ,ORVAULT ,44700,44114,52,47.266667,-1.616667,0.44
+ Oudon ,OUDON ,44521,44115,52,47.35,-1.283333,1.35
+ Paimboeuf ,PAIMBOEUF ,44560,44116,52,47.283333,-2.033333,1.11
+ Le Pallet ,LE PALLET ,44330,44117,52,47.133333,-1.333333,1.25
+ Pannecé ,PANNECE ,44440,44118,52,47.483333,-1.233333,1.54
+ Paulx ,PAULX ,44270,44119,52,46.966667,-1.75,2.21
+ Le Pellerin ,LE PELLERIN ,44640,44120,52,47.2,-1.75,0.95
+ Petit-Auverné ,PETIT AUVERNE ,44670,44121,52,47.616667,-1.283333,1.63
+ Petit-Mars ,PETIT MARS ,44390,44122,52,47.4,-1.45,1.07
+ Pierric ,PIERRIC ,44290,44123,52,47.683333,-1.733333,2.02
+ Le Pin ,LE PIN ,44540,44124,52,47.35,-2.166667,1.99
+ Piriac-sur-Mer ,PIRIAC SUR MER ,44420,44125,52,47.383333,-2.55,2.81
+ La Plaine-sur-Mer ,LA PLAINE SUR MER,44770,44126,52,47.133333,-2.166667,1.55
+ La Planche ,LA PLANCHE ,44140,44127,52,47.016667,-1.433333,1.91
+ Plessé ,PLESSE ,44630,44128,52,47.533333,-1.883333,1.14
+ Pontchâteau ,PONTCHATEAU ,44160,44129,52,47.433333,-2.083333,1.28
+ Pont-Saint-Martin ,PONT SAINT MARTIN ,44860,44130,52,47.116667,-1.583333,1.32
+ Pornic ,PORNIC ,44210,44131,52,47.116667,-2.1,1.33
+ Pornichet ,PORNICHET ,44380,44132,52,47.25,-2.35,2.15
+ Port-Saint-Père ,PORT SAINT PERE ,44710,44133,52,47.133333,-1.75,1.22
+ Pouillé-les-Côteaux ,POUILLE LES COTEAUX ,44522,44134,52,47.45,-1.166667,1.73
+ Le Pouliguen ,LE POULIGUEN ,44510,44135,52,47.266667,-2.433333,2.43
+ Préfailles ,PREFAILLES ,44770,44136,52,47.133333,-2.216667,1.72
+ Prinquiau ,PRINQUIAU ,44260,44137,52,47.366667,-2,1.25
+ Puceul ,PUCEUL ,44390,44138,52,47.516667,-1.616667,1.58
+ Quilly ,QUILLY ,44750,44139,52,47.466667,-1.95,1
+ La Regrippière ,LA REGRIPPIERE ,44330,44140,52,47.183333,-1.183333,2.02
+ La Remaudière ,LA REMAUDIERE ,44430,44141,52,47.233333,-1.25,1.45
+ Remouillé ,REMOUILLE ,44140,44142,52,47.05,-1.366667,1.72
+ Rezé ,REZE ,44400,44143,52,47.2,-1.566667,1
+ Riaillé ,RIAILLE ,44440,44144,52,47.516667,-1.283333,1.35
+ Rouans ,ROUANS ,44640,44145,52,47.183333,-1.866667,1.02
+ Rougé ,ROUGE ,44660,44146,52,47.783333,-1.45,2.61
+ La Rouxière ,LA ROUXIERE ,44370,44147,52,47.45,-1.066667,2.06
+ Ruffigné ,RUFFIGNE ,44660,44148,52,47.75,-1.5,2.42
+ Saffré ,SAFFRE ,44390,44149,52,47.5,-1.566667,0.95
+ Saint-André-des-Eaux ,SAINT ANDRE DES EAUX,44117,44151,52,47.316667,-2.316667,2.04
+ Saint-Aubin-des-Châteaux ,SAINT AUBIN DES CHATEAUX,44110,44153,52,47.716667,-1.483333,2.22
+ Saint-Brévin-les-Pins ,SAINT BREVIN LES PINS,44250,44154,52,47.25,-2.166667,1.55
+ Saint-Étienne-de-Mer-Morte ,SAINT ETIENNE DE MER,44270,44157,52,46.933333,-1.75,2.41
+ Saint-Étienne-de-Montluc ,SAINT ETIENNE DE MONTLUC,44360,44158,52,47.266667,-1.783333,0.65
+ Saint-Fiacre-sur-Maine ,SAINT FIACRE SUR MAINE,44690,44159,52,47.15,-1.416667,1.13
+ Saint-Géréon ,SAINT GEREON ,44150,44160,52,47.366667,-1.2,1.62
+ Saint-Gildas-des-Bois ,SAINT GILDAS DES BOIS,44530,44161,52,47.516667,-2.033333,1.11
+ Saint-Herblain ,SAINT HERBLAIN ,44800,44162,52,47.216667,-1.65,0.73
+ Saint-Herblon ,SAINT HERBLON ,44150,44163,52,47.416667,-1.1,1.95
+ Saint-Hilaire-de-Chaléons ,SAINT HILAIRE DE CHALEONS,44680,44164,52,47.1,-1.866667,1.42
+ Saint-Hilaire-de-Clisson ,SAINT HILAIRE DE CLISSON,44190,44165,52,47.066667,-1.316667,1.62
+ Saint-Jean-de-Boiseau ,SAINT JEAN DE BOISEAU,44640,44166,52,47.2,-1.716667,1.51
+ Saint-Jean-de-Corcoué ,SAINT JEAN DE CORCOUE,44650,44167,52,46.966667,-1.583333,2.21
+ Saint-Joachim ,SAINT JOACHIM ,44720,44168,52,47.383333,-2.2,1.66
+ Saint-Julien-de-Concelles ,SAINT JULIEN DE CONCELLES,44450,44169,52,47.25,-1.383333,1.5
+ Saint-Julien-de-Vouvantes ,SAINT JULIEN DE VOUVANTES,44670,44170,52,47.65,-1.233333,1.83
+ Saint-Léger-les-Vignes ,SAINT LEGER LES VIGNES,44710,44171,52,47.133333,-1.733333,1.22
+ Sainte-Luce-sur-Loire ,SAINTE LUCE SUR LOIRE,44980,44172,52,47.25,-1.5,0.63
+ Saint-Lumine-de-Clisson ,SAINT LUMINE DE CLISSON,44190,44173,52,47.083333,-1.333333,1.52
+ Saint-Lumine-de-Coutais ,SAINT LUMINE DE COUTAIS,44310,44174,52,47.05,-1.716667,1.72
+ Saint-Lyphard ,SAINT LYPHARD ,44410,44175,52,47.4,-2.3,1.99
+ Saint-Malo-de-Guersac ,SAINT MALO DE GUERSAC,44550,44176,52,47.35,-2.166667,1.55
+ Saint-Mars-de-Coutais ,SAINT MARS DE COUTAIS,44680,44178,52,47.116667,-1.733333,1.69
+ Saint-Mars-du-Désert ,SAINT MARS DU DESERT,44850,44179,52,47.366667,-1.4,0.96
+ Saint-Mars-la-Jaille ,SAINT MARS LA JAILLE,44540,44180,52,47.516667,-1.183333,1.67
+ Saint-Même-le-Tenu ,SAINT MEME LE TENU,44270,44181,52,47.016667,-1.783333,1.91
+ Saint-Michel-Chef-Chef ,SAINT MICHEL CHEF CHEF,44730,44182,52,47.183333,-2.15,1.5
+ Saint-Molf ,SAINT MOLF ,44350,44183,52,47.383333,-2.416667,2.37
+ Saint-Nazaire ,SAINT NAZAIRE ,44600,44184,52,47.283333,-2.2,1.66
+ Saint-Nicolas-de-Redon ,SAINT NICOLAS DE REDON,44460,44185,52,47.65,-2.066667,1.83
+ Sainte-Pazanne ,SAINTE PAZANNE ,44680,44186,52,47.1,-1.816667,1.42
+ Saint-Père-en-Retz ,SAINT PERE EN RETZ,44320,44187,52,47.2,-2.033333,1.11
+ Saint-Philbert-de-Grand-Lieu ,SAINT PHILBERT DE GRAND,44310,44188,52,47.033333,-1.633333,1.81
+ Sainte-Reine-de-Bretagne ,SAINTE REINE DE BRETAGNE,44160,44189,52,47.433333,-2.183333,1.61
+ Saint-Sébastien-sur-Loire ,SAINT SEBASTIEN SUR LOIRE,44230,44190,52,47.216667,-1.5,0.73
+ Saint-Viaud ,SAINT VIAUD ,44320,44192,52,47.25,-2.016667,1.06
+ Saint-Vincent-des-Landes ,SAINT VINCENT DES LANDES,44590,44193,52,47.65,-1.5,1.83
+ Sautron ,SAUTRON ,44880,44194,52,47.266667,-1.666667,0.44
+ Savenay ,SAVENAY ,44260,44195,52,47.366667,-1.95,0.84
+ Sévérac ,SEVERAC ,44530,44196,52,47.533333,-2.083333,1.28
+ Sion-les-Mines ,SION LES MINES ,44590,44197,52,47.733333,-1.583333,2.32
+ Les Sorinières ,LES SORINIERES ,44840,44198,52,47.15,-1.533333,1.13
+ Soudan ,SOUDAN ,44110,44199,52,47.733333,-1.3,2.32
+ Soulvache ,SOULVACHE ,44660,44200,52,47.833333,-1.466667,2.91
+ Le Temple-de-Bretagne ,LE TEMPLE DE BRETAGNE,44360,44203,52,47.316667,-1.783333,0.29
+ Thouaré-sur-Loire ,THOUARE SUR LOIRE ,44470,44204,52,47.266667,-1.45,0.8
+ Les Touches ,LES TOUCHES ,44390,44205,52,47.441667,-1.425,-1
+ Touvois ,TOUVOIS ,44650,44206,52,46.9,-1.683333,2.6
+ Trans-sur-Erdre ,TRANS SUR ERDRE ,44440,44207,52,47.483333,-1.366667,1.07
+ Treffieux ,TREFFIEUX ,44170,44208,52,47.616667,-1.533333,1.63
+ Treillières ,TREILLIERES ,44119,44209,52,47.333333,-1.633333,0.2
+ Trignac ,TRIGNAC ,44570,44210,52,47.316667,-2.183333,1.61
+ La Turballe ,LA TURBALLE ,44420,44211,52,47.35,-2.516667,2.7
+ Vallet ,VALLET ,44330,44212,52,47.166667,-1.266667,1.4
+ Varades ,VARADES ,44370,44213,52,47.383333,-1.033333,2.17
+ Vay ,VAY ,44170,44214,52,47.55,-1.7,1.31
+ Vertou ,VERTOU ,44120,44215,52,47.166667,-1.483333,1.03
+ Vieillevigne ,VIEILLEVIGNE ,44116,44216,52,46.966667,-1.433333,2.21
+ Vigneux-de-Bretagne ,VIGNEUX DE BRETAGNE ,44360,44217,52,47.316667,-1.733333,0.79
+ Villepot ,VILLEPOT ,44110,44218,52,47.783333,-1.283333,2.61
+ Vritz ,VRITZ ,49440,44219,52,47.583333,-1.066667,2.06
+ Vue ,VUE ,44640,44220,52,47.2,-1.883333,1.29
+ La Chevallerais ,LA CHEVALLERAIS ,44810,44221,52,47.466667,-1.666667,1
+ La Roche-Blanche ,LA ROCHE BLANCHE ,44522,44222,52,47.433333,-1.133333,1.84
+ La Grigonnais ,LA GRIGONNAIS ,44170,44224,52,47.533333,-1.666667,1.14
+ Quimiac ,QUIMIAC ,44420,44901,52,47.4,-2.483333,2.59
+ Mindin ,MINDIN ,44250,44902,52,47.266667,-2.166667,1.55
+ Tharon-Plage ,THARON PLAGE ,44730,44904,52,47.166667,-2.166667,1.55
+ Basse-Indre ,BASSE INDRE ,44610,44905,52,47.2,-1.666667,1
+ La Chabossière ,LA CHABOSSIERE ,44220,44909,52,47.216667,-1.691667,1
+ Clis ,CLIS ,44350,44910,52,47.333333,-2.466667,2.54
+ Le Coudray ,LE COUDRAY ,44630,44911,52,47.55,-1.833333,1.24
+ Les Couêts ,LES COUETS ,44340,44912,52,47.183333,-1.583333,1
+ Guénouvry ,GUENOUVRY ,44290,44914,52,47.6,-1.766667,1.53
+ Haute-Indre ,HAUTE INDRE ,44610,44915,52,47.2,-1.65,1
+ Indret ,INDRET ,44620,44916,52,47.2,-1.7,1
+ La Madeleine ,LA MADELEINE ,44350,44917,52,47.35,-2.366667,2.21
+ La Paquelais ,LA PAQUELAIS ,44360,44918,52,47.333333,-1.7,1.43
+ Notre-Dame-des-Langueurs ,NOTRE DAME DES LANGUEURS,44440,44919,52,47.516667,-1.466667,1.46
+ Pont-Rousseau ,PONT ROUSSEAU ,44400,44924,52,47.183333,-1.55,1
+ Saillé ,SAILLE ,44350,44925,52,47.3,-2.433333,2.43
+ Saint-Brévin-l'Océan ,SAINT BREVIN L OCEAN,44250,44926,52,47.216667,-2.166667,1.55
+ Saint-Guillaume ,SAINT GUILLAUME ,44160,44929,52,47.416667,-2.116667,1.39
+ Notre-Dame-de-Grâce ,NOTRE DAME DE GRACE,44530,44935,52,47.483333,-1.933333,1.32
+ Adon ,ADON ,45230,45001,24,47.766667,2.8,1.48
+ Aillant-sur-Milleron ,AILLANT SUR MILLERON ,45230,45002,24,47.8,2.933333,1.89
+ Allainville-en-Beauce ,ALLAINVILLE EN BEAUCE ,45480,45003,24,48.233333,2.05,1.81
+ Andonville ,ANDONVILLE ,45480,45005,24,48.266667,2.016667,2.05
+ Ardon ,ARDON ,45160,45006,24,47.783333,1.866667,1.44
+ Arrabloy ,ARRABLOY ,45500,45007,24,47.7,2.716667,1.96
+ Artenay ,ARTENAY ,45410,45008,24,48.083333,1.883333,1.39
+ Aschères-le-Marché ,ASCHERES LE MARCHE ,45170,45009,24,48.1,2,1.02
+ Ascoux ,ASCOUX ,45300,45010,24,48.116667,2.25,0.99
+ Attray ,ATTRAY ,45170,45011,24,48.116667,2.116667,1.09
+ Audeville ,AUDEVILLE ,45300,45012,24,48.266667,2.233333,2.05
+ Augerville-la-Rivière ,AUGERVILLE LA RIVIERE ,45330,45013,24,48.25,2.433333,1.93
+ Aulnay-la-Rivière ,AULNAY LA RIVIERE ,45390,45014,24,48.2,2.383333,1.58
+ Autruy-sur-Juine ,AUTRUY SUR JUINE ,45480,45015,24,48.266667,2.1,2.05
+ Auvilliers-en-Gâtinais ,AUVILLIERS EN GATINAIS ,45270,45017,24,47.966667,2.5,0.59
+ Auxy ,AUXY ,45340,45018,24,48.116667,2.466667,1.42
+ Baccon ,BACCON ,45130,45019,24,47.883333,1.633333,2.17
+ Le Bardon ,LE BARDON ,45130,45020,24,47.85,1.65,2.12
+ Barville-en-Gâtinais ,BARVILLE EN GATINAIS ,45340,45021,24,48.116667,2.4,0.99
+ Batilly-en-Gâtinais ,BATILLY EN GATINAIS ,45340,45022,24,48.066667,2.383333,0.64
+ Baule ,BAULE ,45130,45024,24,47.816667,1.666667,2.06
+ Bazoches-les-Gallerandes ,BAZOCHES LES GALLERANDES ,45480,45025,24,48.166667,2.05,1.34
+ Bazoches-sur-le-Betz ,BAZOCHES SUR LE BETZ,45210,45026,24,48.133333,2.983333,2.05
+ Beaugency ,BEAUGENCY ,45190,45028,24,47.783333,1.633333,2.17
+ Beaulieu-sur-Loire ,BEAULIEU SUR LOIRE ,45630,45029,24,47.54268,2.816667,-1
+ Beaune-la-Rolande ,BEAUNE LA ROLANDE ,45340,45030,24,48.066667,2.433333,0.64
+ Le Bignon-Mirabeau ,LE BIGNON MIRABEAU ,45210,45032,24,48.15,2.916667,1.84
+ Boësse ,BOESSE ,45390,45033,24,48.15,2.45,1.22
+ Boigny-sur Bionne ,BOIGNY SUR BIONNE ,45760,45034,24,47.933333,2.016667,0.97
+ Boiscommun ,BOISCOMMUN ,45340,45035,24,48.033333,2.383333,0.64
+ Boismorand ,BOISMORAND ,45290,45036,24,47.783333,2.716667,1.37
+ Boisseaux ,BOISSEAUX ,45480,45037,24,48.25,1.983333,1.93
+ Bondaroy ,BONDAROY ,45300,45038,24,48.166667,2.283333,1.34
+ Bonnée ,BONNEE ,45460,45039,24,47.8,2.383333,1.25
+ Bonny-sur-Loire ,BONNY SUR LOIRE ,45420,45040,24,47.566667,2.833333,2.9
+ Bordeaux-en-Gâtinais ,BORDEAUX EN GATINAIS ,45340,45041,24,48.1,2.516667,2.07
+ Les Bordes ,LES BORDES ,45460,45042,24,47.816667,2.4,1.13
+ Bou ,BOU ,45430,45043,24,47.866667,2.05,1.2
+ Bougy-lez-Neuville ,BOUGY LEZ NEUVILLE ,45170,45044,24,48.033333,2.033333,0.92
+ Bouilly-en-Gâtinais ,BOUILLY EN GATINAIS ,45300,45045,24,48.083333,2.283333,1.25
+ Boulay-les-Barres ,BOULAY LES BARRES ,45140,45046,24,47.983333,1.783333,1.7
+ Bouzonville-en-Beauce ,BOUZONVILLE EN BEAUCE ,45300,45048,24,48.2,2.233333,1.58
+ Bouzy-la-Forêt ,BOUZY LA FORET ,45460,45049,24,47.85,2.383333,0.9
+ Boynes ,BOYNES ,45300,45050,24,48.116667,2.35,1.44
+ Bray-en-Val ,BRAY EN VAL ,45460,45051,24,47.833333,2.366667,1.01
+ Breteau ,BRETEAU ,45250,45052,24,47.683333,2.9,2.07
+ Briare ,BRIARE ,45250,45053,24,47.633333,2.733333,2.43
+ Briarres-sur-Essonnes ,BRIARRES SUR ESSONNES ,45390,45054,24,48.233333,2.416667,1.81
+ Bricy ,BRICY ,45310,45055,24,48,1.783333,1.7
+ Bromeilles ,BROMEILLES ,45390,45056,24,48.183333,2.5,1.57
+ Labrosse ,LABROSSE ,45330,45057,24,48.233333,2.383333,1.81
+ Bucy-le-Roi ,BUCY LE ROI ,45410,45058,24,48.066667,1.916667,1.28
+ Bucy-Saint-Liphard ,BUCY SAINT LIPHARD ,45140,45059,24,47.933333,1.766667,1.75
+ Cepoy ,CEPOY ,45120,45061,24,48.05,2.733333,1.27
+ Cercottes ,CERCOTTES ,45520,45062,24,47.983333,1.883333,1.39
+ Cerdon ,CERDON ,45620,45063,24,47.633333,2.366667,2.43
+ Cernoy-en-Berry ,CERNOY EN BERRY ,45360,45064,24,47.5414,2.666667,-1
+ Chailly-en-Gâtinais ,CHAILLY EN GATINAIS ,45260,45066,24,47.95,2.55,0.73
+ Chaingy ,CHAINGY ,45380,45067,24,47.883333,1.766667,1.75
+ Châlette-sur-Loing ,CHALETTE SUR LOING ,45120,45068,24,48.016667,2.733333,1.45
+ Chambon-la-Forêt ,CHAMBON LA FORET ,45340,45069,24,48.05,2.3,1.78
+ Champoulet ,CHAMPOULET ,45420,45070,24,47.666667,2.916667,2.19
+ Chanteau ,CHANTEAU ,45400,45072,24,47.966667,1.966667,1.28
+ Chantecoq ,CHANTECOQ ,45320,45073,24,48.05,2.966667,2
+ La Chapelle-Onzerain ,LA CHAPELLE ONZERAIN ,45310,45074,24,48.033333,1.616667,2.22
+ La Chapelle-Saint-Mesmin ,LA CHAPELLE SAINT MESMIN,45380,45075,24,47.883333,1.833333,1.54
+ La Chapelle-Saint-Sépulcre ,LA CHAPELLE SAINT SEPULCRE,45210,45076,24,48.016667,2.85,1.63
+ La Chapelle-sur-Aveyron ,LA CHAPELLE SUR AVEYRON,45230,45077,24,47.866667,2.866667,1.68
+ Chapelon ,CHAPELON ,45270,45078,24,48.033333,2.583333,1.43
+ Le Charme ,LE CHARME ,45230,45079,24,47.8,3,2.1
+ Charmont-en-Beauce ,CHARMONT EN BEAUCE ,45480,45080,24,48.233333,2.1,1.81
+ Charsonville ,CHARSONVILLE ,45130,45081,24,47.933333,1.583333,2.32
+ Châteauneuf-sur-Loire ,CHATEAUNEUF SUR LOIRE ,45110,45082,24,47.866667,2.233333,1.17
+ Châteaurenard ,CHATEAURENARD ,45220,45083,24,47.933333,2.933333,1.89
+ Châtenoy ,CHATENOY ,45260,45084,24,47.916667,2.4,2.17
+ Châtillon-Coligny ,CHATILLON COLIGNY ,45230,45085,24,47.833333,2.85,1.63
+ Châtillon-le-Roi ,CHATILLON LE ROI ,45480,45086,24,48.15,2.1,1.22
+ Châtillon-sur-Loire ,CHATILLON SUR LOIRE ,45360,45087,24,47.583333,2.75,2.78
+ Chaussy ,CHAUSSY ,45480,45088,24,48.166667,1.983333,1.34
+ Chécy ,CHECY ,45430,45089,24,47.9,2.016667,1.5
+ Chemault ,CHEMAULT ,45340,45090,24,48.05,2.35,0.94
+ Chevannes ,CHEVANNES ,45210,45091,24,48.133333,2.858333,-1
+ Chevillon-sur-Huillard ,CHEVILLON SUR HUILLARD ,45700,45092,24,47.966667,2.633333,0.99
+ Chevilly ,CHEVILLY ,45520,45093,24,48.033333,1.883333,1.39
+ Chevry-sous-le-Bignon ,CHEVRY SOUS LE BIGNON,45210,45094,24,48.133333,2.9,1.79
+ Chilleurs-aux-Bois ,CHILLEURS AUX BOIS ,45170,45095,24,48.066667,2.133333,1.33
+ Les Choux ,LES CHOUX ,45290,45096,24,47.8,2.666667,1.25
+ Chuelles ,CHUELLES ,45220,45097,24,48,2.966667,2
+ Cléry-Saint-André ,CLERY SAINT ANDRE ,45370,45098,24,47.816667,1.75,1.8
+ Coinces ,COINCES ,45310,45099,24,48.016667,1.75,1.8
+ Combleux ,COMBLEUX ,45800,45100,24,47.9,1.983333,1.07
+ Combreux ,COMBREUX ,45530,45101,24,47.95,2.3,0.33
+ Conflans-sur-Loing ,CONFLANS SUR LOING ,45700,45102,24,47.95,2.783333,1.42
+ Corbeilles ,CORBEILLES ,45490,45103,24,48.066667,2.55,1.12
+ Corquilleroy ,CORQUILLEROY ,45120,45104,24,48.05,2.7,1.16
+ Cortrat ,CORTRAT ,45700,45105,24,47.9,2.766667,1.37
+ Coudray ,COUDRAY ,45330,45106,24,48.266667,2.366667,2.05
+ Coudroy ,COUDROY ,45260,45107,24,47.916667,2.466667,1.06
+ Coullons ,COULLONS ,45720,45108,24,47.616667,2.5,2.54
+ Coulmiers ,COULMIERS ,45130,45109,24,47.933333,1.666667,2.06
+ Courcelles ,COURCELLES ,45300,45110,24,48.083333,2.316667,1.43
+ Courcy-aux-Loges ,COURCY AUX LOGES ,45300,45111,24,48.066667,2.216667,1.41
+ La Cour-Marigny ,LA COUR MARIGNY ,45260,45112,24,47.9,2.6,1.19
+ Courtemaux ,COURTEMAUX ,45320,45113,24,48.05,2.933333,1.89
+ Courtempierre ,COURTEMPIERRE ,45490,45114,24,48.1,2.616667,0.9
+ Courtenay ,COURTENAY ,45320,45115,24,48.033333,3.05,2.26
+ Cravant ,CRAVANT ,45190,45116,24,47.833333,1.566667,2.38
+ Crottes-en-Pithiverais ,CROTTES EN PITHIVERAIS ,45170,45118,24,48.116667,2.066667,0.99
+ Dadonville ,DADONVILLE ,45300,45119,24,48.15,2.266667,1.22
+ Dammarie-en-Puisaye ,DAMMARIE EN PUISAYE ,45420,45120,24,47.633333,2.866667,2.43
+ Dammarie-sur-Loing ,DAMMARIE SUR LOING ,45230,45121,24,47.783333,2.883333,1.74
+ Dampierre-en-Burly ,DAMPIERRE EN BURLY ,45570,45122,24,47.766667,2.516667,1.48
+ Darvoy ,DARVOY ,45150,45123,24,47.866667,2.1,0.92
+ Desmonts ,DESMONTS ,45390,45124,24,48.233333,2.5,1.81
+ Dimancheville ,DIMANCHEVILLE ,45390,45125,24,48.233333,2.433333,1.81
+ Donnery ,DONNERY ,45450,45126,24,47.916667,2.1,1.41
+ Dordives ,DORDIVES ,45680,45127,24,48.15,2.766667,1.37
+ Dossainville ,DOSSAINVILLE ,45300,45128,24,48.25,2.266667,1.93
+ Douchy ,DOUCHY ,45220,45129,24,47.95,3.05,2.26
+ Dry ,DRY ,45370,45130,24,47.8,1.716667,1.91
+ Échilleuses ,ECHILLEUSES ,45390,45131,24,48.166667,2.433333,1.34
+ Égry ,EGRY ,45340,45132,24,48.1,2.433333,0.87
+ Engenville ,ENGENVILLE ,45300,45133,24,48.233333,2.25,1.81
+ Épieds-en-Beauce ,EPIEDS EN BEAUCE ,45130,45134,24,47.95,1.616667,2.22
+ Erceville ,ERCEVILLE ,45480,45135,24,48.233333,2.033333,1.81
+ Ervauville ,ERVAUVILLE ,45320,45136,24,48.083333,2.983333,2.05
+ Escrennes ,ESCRENNES ,45300,45137,24,48.133333,2.183333,1.11
+ Escrignelles ,ESCRIGNELLES ,45250,45138,24,47.716667,2.816667,1.84
+ Estouy ,ESTOUY ,45300,45139,24,48.183333,2.316667,1.46
+ Faronville ,FARONVILLE ,45480,45140,24,48.216667,2.05,1.7
+ Faverelles ,FAVERELLES ,45420,45141,24,47.566667,2.933333,2.9
+ Fay-aux-Loges ,FAY AUX LOGES ,45450,45142,24,47.933333,2.133333,0.61
+ Feins-en-Gâtinais ,FEINS EN GATINAIS ,45230,45143,24,47.75,2.85,1.63
+ Férolles ,FEROLLES ,45150,45144,24,47.833333,2.116667,1.35
+ Ferrières ,FERRIERES ,45210,45145,24,48.083333,2.783333,1.42
+ La Ferté-Saint-Aubin ,LA FERTE SAINT AUBIN,45240,45146,24,47.716667,1.933333,1.84
+ Fleury-les-Aubrais ,FLEURY LES AUBRAIS ,45400,45147,24,47.933333,1.916667,1.28
+ Fontenay-sur-Loing ,FONTENAY SUR LOING ,45210,45148,24,48.1,2.766667,1.54
+ Foucherolles ,FOUCHEROLLES ,45320,45149,24,48.083333,3.016667,2.15
+ Fréville-du-Gâtinais ,FREVILLE DU GATINAIS ,45270,45150,24,48.016667,2.433333,0.97
+ Gaubertin ,GAUBERTIN ,45340,45151,24,48.116667,2.416667,0.99
+ Gémigny ,GEMIGNY ,45310,45152,24,47.966667,1.7,1.96
+ Germigny-des-Prés ,GERMIGNY DES PRES ,45110,45153,24,47.85,2.266667,0.9
+ Gidy ,GIDY ,45520,45154,24,47.983333,1.833333,1.54
+ Gien ,GIEN ,45500,45155,24,47.7,2.633333,1.96
+ Girolles ,GIROLLES ,45120,45156,24,48.066667,2.716667,1.22
+ Givraines ,GIVRAINES ,45300,45157,24,48.15,2.366667,1.46
+ Grangermont ,GRANGERMONT ,45390,45159,24,48.183333,2.416667,1.46
+ Greneville-en-Beauce ,GRENEVILLE EN BEAUCE ,45480,45160,24,48.183333,2.116667,1.46
+ Griselles ,GRISELLES ,45210,45161,24,48.083333,2.833333,1.58
+ Guigneville ,GUIGNEVILLE ,45300,45162,24,48.2,2.166667,1.58
+ Guignonville ,GUIGNONVILLE ,45480,45163,24,48.2,2.116667,1.58
+ Guilly ,GUILLY ,45600,45164,24,47.8,2.283333,1.35
+ Huêtre ,HUETRE ,45520,45166,24,48.016667,1.8,1.65
+ Huisseau-sur-Mauves ,HUISSEAU SUR MAUVES ,45130,45167,24,47.9,1.7,1.96
+ Ingrannes ,INGRANNES ,45450,45168,24,47.983333,2.2,1.26
+ Ingré ,INGRE ,45140,45169,24,47.916667,1.816667,1.6
+ Intville-la-Guétard ,INTVILLE LA GUETARD ,45300,45170,24,48.25,2.216667,1.93
+ Isdes ,ISDES ,45620,45171,24,47.666667,2.25,2.19
+ Izy ,IZY ,45480,45172,24,48.133333,2.066667,1.21
+ Jargeau ,JARGEAU ,45150,45173,24,47.866667,2.116667,0.78
+ Jouy-en-Pithiverais ,JOUY EN PITHIVERAIS ,45480,45174,24,48.133333,2.116667,1.6
+ Jouy-le-Potier ,JOUY LE POTIER ,45370,45175,24,47.75,1.816667,1.6
+ Juranville ,JURANVILLE ,45340,45176,24,48.05,2.5,1.71
+ Laas ,LAAS ,45300,45177,24,48.116667,2.216667,0.99
+ Ladon ,LADON ,45270,45178,24,48,2.533333,0.64
+ Lailly-en-Val ,LAILLY EN VAL ,45740,45179,24,47.766667,1.683333,2.01
+ Langesse ,LANGESSE ,45290,45180,24,47.816667,2.666667,1.13
+ Léouville ,LEOUVILLE ,45480,45181,24,48.216667,2.083333,1.7
+ Ligny-le-Ribault ,LIGNY LE RIBAULT ,45240,45182,24,47.683333,1.783333,2.07
+ Lion-en-Beauce ,LION EN BEAUCE ,45410,45183,24,48.133333,1.933333,1.23
+ Lion-en-Sullias ,LION EN SULLIAS ,45600,45184,24,47.733333,2.483333,1.72
+ Lombreuil ,LOMBREUIL ,45700,45185,24,47.95,2.633333,0.97
+ Lorcy ,LORCY ,45490,45186,24,48.05,2.533333,1.55
+ Lorris ,LORRIS ,45260,45187,24,47.883333,2.516667,0.66
+ Loury ,LOURY ,45470,45188,24,48,2.083333,0.76
+ Louzouer ,LOUZOUER ,45210,45189,24,48.033333,2.883333,1.74
+ Mainvilliers ,MAINVILLIERS ,45330,45190,24,48.3,2.283333,2.28
+ Malesherbes ,MALESHERBES ,45330,45191,24,48.3,2.416667,2.28
+ Manchecourt ,MANCHECOURT ,45300,45192,24,48.233333,2.333333,1.81
+ Marcilly-en-Villette ,MARCILLY EN VILLETTE ,45240,45193,24,47.766667,2.016667,1.48
+ Mardié ,MARDIE ,45430,45194,24,47.883333,2.05,0.87
+ Mareau-aux-Bois ,MAREAU AUX BOIS ,45300,45195,24,48.1,2.183333,1.22
+ Mareau-aux-Prés ,MAREAU AUX PRES ,45370,45196,24,47.866667,1.783333,1.7
+ Marigny-les-Usages ,MARIGNY LES USAGES ,45760,45197,24,47.95,2.016667,0.97
+ Marsainvilliers ,MARSAINVILLIERS ,45300,45198,24,48.216667,2.283333,1.7
+ Melleroy ,MELLEROY ,45220,45199,24,47.9,2.95,1.95
+ Ménestreau-en-Villette ,MENESTREAU EN VILLETTE ,45240,45200,24,47.7,2.016667,1.96
+ Mérinville ,MERINVILLE ,45210,45201,24,48.083333,2.933333,1.89
+ Messas ,MESSAS ,45190,45202,24,47.8,1.633333,2.17
+ Meung-sur-Loire ,MEUNG SUR LOIRE ,45130,45203,24,47.833333,1.7,1.96
+ Mézières-en-Gâtinais ,MEZIERES EN GATINAIS ,45270,45205,24,48.033333,2.483333,0.49
+ Mignères ,MIGNERES ,45490,45206,24,48.05,2.633333,0.96
+ Mignerette ,MIGNERETTE ,45490,45207,24,48.05,2.6,0.85
+ Montargis ,MONTARGIS ,45200,45208,24,48,2.75,1.32
+ Montbarrois ,MONTBARROIS ,45340,45209,24,48.05,2.4,0.52
+ Montbouy ,MONTBOUY ,45230,45210,24,47.866667,2.816667,1.53
+ Montcorbon ,MONTCORBON ,45220,45211,24,47.966667,3.066667,2.31
+ Montcresson ,MONTCRESSON ,45700,45212,24,47.9,2.816667,1.82
+ Montereau ,MONTEREAU ,45260,45213,24,47.85,2.566667,1.19
+ Montigny ,MONTIGNY ,45170,45214,24,48.116667,2.116667,1.09
+ Montliard ,MONTLIARD ,45340,45215,24,48.016667,2.4,0.85
+ Mormant-sur-Vernisson ,MORMANT SUR VERNISSON ,45700,45216,24,47.95,2.733333,1.27
+ Morville-en-Beauce ,MORVILLE EN BEAUCE ,45300,45217,24,48.25,2.166667,1.93
+ Le Moulinet-sur Solin ,LE MOULINET SUR SOLIN,45290,45218,24,47.833333,2.616667,1.3
+ Moulon ,MOULON ,45270,45219,24,48.016667,2.6,1.62
+ Nancray-sur-Rimarde ,NANCRAY SUR RIMARDE ,45340,45220,24,48.066667,2.333333,1.18
+ Nangeville ,NANGEVILLE ,45330,45221,24,48.3,2.316667,2.28
+ Nargis ,NARGIS ,45210,45222,24,48.1,2.75,1.78
+ Nesploy ,NESPLOY ,45270,45223,24,48,2.366667,1.97
+ Neuville-aux-Bois ,NEUVILLE AUX BOIS ,45170,45224,24,48.066667,2.05,0.87
+ La Neuville-sur-Essonne ,LA NEUVILLE SUR ESSONNE,45390,45225,24,48.183333,2.366667,1.46
+ Neuvy-en-Sullias ,NEUVY EN SULLIAS ,45510,45226,24,47.8,2.25,1.25
+ Nevoy ,NEVOY ,45500,45227,24,47.716667,2.583333,1.84
+ Nibelle ,NIBELLE ,45340,45228,24,48.016667,2.333333,1.45
+ Nogent-sur-Vernisson ,NOGENT SUR VERNISSON ,45290,45229,24,47.85,2.75,1.32
+ Noyers ,NOYERS ,45260,45230,24,47.916667,2.516667,0.59
+ Oison ,OISON ,45170,45231,24,48.133333,1.966667,1.31
+ Olivet ,OLIVET ,45160,45232,24,47.866667,1.9,1.33
+ Ondreville-sur-Essonne ,ONDREVILLE SUR ESSONNE ,45390,45233,24,48.2,2.4,1.58
+ Orléans ,ORLEANS ,45100,45234,24,47.916667,1.9,1.33
+ Ormes ,ORMES ,45140,45235,24,47.933333,1.8,1.65
+ Orveau-Bellesauve ,ORVEAU BELLESAUVE ,45330,45236,24,48.283333,2.333333,2.17
+ Orville ,ORVILLE ,45390,45237,24,48.233333,2.433333,1.81
+ Ousson-sur-Loire ,OUSSON SUR LOIRE ,45250,45238,24,47.583333,2.783333,2.78
+ Oussoy-en-Gâtinais ,OUSSOY EN GATINAIS ,45290,45239,24,47.916667,2.65,1.47
+ Outarville ,OUTARVILLE ,45480,45240,24,48.216667,2.016667,1.7
+ Ouzouer-des-Champs ,OUZOUER DES CHAMPS ,45290,45242,24,47.883333,2.7,1.16
+ Ouzouer-sous-Bellegarde ,OUZOUER SOUS BELLEGARDE ,45270,45243,24,47.983333,2.466667,0.55
+ Ouzouer-sur-Loire ,OUZOUER SUR LOIRE ,45570,45244,24,47.766667,2.483333,1.48
+ Ouzouer-sur-Trézée ,OUZOUER SUR TREZEE ,45250,45245,24,47.666667,2.8,2.19
+ Pannecières ,PANNECIERES ,45300,45246,24,48.283333,2.15,2.17
+ Pannes ,PANNES ,45700,45247,24,48.016667,2.666667,1.06
+ Patay ,PATAY ,45310,45248,24,48.05,1.7,1.96
+ Paucourt ,PAUCOURT ,45200,45249,24,48.033333,2.8,1.48
+ Pers-en-Gâtinais ,PERS EN GATINAIS ,45210,45250,24,48.116667,2.9,1.79
+ Pierrefitte-ès-Bois ,PIERREFITTE ES BOIS ,45360,45251,24,47.508333,2.716667,-1
+ Pithiviers ,PITHIVIERS ,45300,45252,24,48.166667,2.25,1.34
+ Pithiviers-le-Vieil ,PITHIVIERS LE VIEIL ,45300,45253,24,48.166667,2.216667,1.34
+ Poilly-lez-Gien ,POILLY LEZ GIEN ,45500,45254,24,47.683333,2.6,2.07
+ Préfontaines ,PREFONTAINES ,45490,45255,24,48.1,2.683333,1.8
+ Presnoy ,PRESNOY ,45260,45256,24,47.95,2.55,0.73
+ Pressigny-les Pins ,PRESSIGNY LES PINS ,45290,45257,24,47.883333,2.75,1.32
+Puiseaux, ,45390,45258,24,48.2,2.466667,1.58
+ Quiers-sur-Bézonde ,QUIERS SUR BEZONDE ,45270,45259,24,48,2.433333,0.95
+ Ramoulu ,RAMOULU ,45300,45260,24,48.216667,2.283333,1.7
+ Rebréchien ,REBRECHIEN ,45470,45261,24,47.983333,2.05,1.14
+ Rouvray-Sainte-Croix ,ROUVRAY SAINTE CROIX ,45310,45262,24,48.05,1.733333,1.86
+ Rouvres-Saint-Jean ,ROUVRES SAINT JEAN ,45300,45263,24,48.316667,2.216667,2.4
+ Rozières-en-Beauce ,ROZIERES EN BEAUCE ,45130,45264,24,47.933333,1.7,1.96
+ Saint-Aignan-des-Gués ,SAINT AIGNAN DES GUES,45460,45267,24,47.85,2.316667,1.88
+ Saint-Aignan-le-Jaillard ,SAINT AIGNAN LE JAILLARD,45600,45268,24,47.75,2.433333,1.6
+ Saint-Ay ,SAINT AY ,45130,45269,24,47.85,1.75,1.8
+ Saint-Benoît-sur-Loire ,SAINT BENOIT SUR LOIRE,45730,45270,24,47.816667,2.3,1.13
+ Saint-Brisson-sur-Loire ,SAINT BRISSON SUR LOIRE,45500,45271,24,47.65,2.683333,2.31
+ Saint-Cyr-en-Val ,SAINT CYR EN VAL,45590,45272,24,47.833333,1.966667,1.13
+ Saint-Denis-de l'Hôtel ,SAINT DENIS DE L,45550,45273,24,47.866667,2.116667,0.78
+ Saint-Denis-en-Val ,SAINT DENIS EN VAL,45560,45274,24,47.883333,1.95,1.18
+ Saint-Firmin-des-Bois ,SAINT FIRMIN DES BOIS,45220,45275,24,47.966667,2.916667,1.84
+ Saint-Firmin-sur-Loire ,SAINT FIRMIN SUR LOIRE,45360,45276,24,47.616667,2.733333,2.54
+ Sainte-Geneviève-des-Bois ,SAINTE GENEVIEVE DES BOIS,45230,45278,24,47.816667,2.816667,1.53
+ Saint-Germain-des-Prés ,SAINT GERMAIN DES PRES,45220,45279,24,47.95,2.85,1.77
+ Saint-Gondon ,SAINT GONDON ,45500,45280,24,47.7,2.533333,1.96
+ Saint-Hilaire-les-Andrésis ,SAINT HILAIRE LES ANDRESIS,45320,45281,24,48.05,3.016667,2.15
+ Saint-Hilaire-Saint-Mesmin ,SAINT HILAIRE SAINT MESMIN,45160,45282,24,47.866667,1.833333,1.54
+ Saint-Hilaire-sur-Puiseaux ,SAINT HILAIRE SUR PUISEAUX,45700,45283,24,47.9,2.7,1.16
+ Saint-Jean-de-Braye ,SAINT JEAN DE BRAYE,45800,45284,24,47.9,1.966667,1.13
+ Saint-Jean-de-la-Ruelle ,SAINT JEAN DE LA,45140,45285,24,47.916667,1.866667,1.71
+ Saint-Jean-le-Blanc ,SAINT JEAN LE BLANC,45650,45286,24,47.9,1.916667,1.28
+ Saint-Loup-de-Gonois ,SAINT LOUP DE GONOIS,45210,45287,24,48.05,2.916667,1.84
+ Saint-Loup-des-Vignes ,SAINT LOUP DES VIGNES,45340,45288,24,48.033333,2.416667,0.61
+ Saint-Lyé-la-Forêt ,SAINT LYE LA FORET,45170,45289,24,48.05,1.983333,1.11
+ Saint-Martin-d'Abbat ,SAINT MARTIN D ABBAT,45110,45290,24,47.85,2.266667,0.9
+ Saint-Martin-sur-Ocre ,SAINT MARTIN SUR OCRE,45500,45291,24,47.65,2.666667,2.31
+ Saint-Maurice-sur-Aveyron ,SAINT MAURICE SUR AVEYRON,45230,45292,24,47.85,2.933333,1.89
+ Saint-Maurice-sur-Fessard ,SAINT MAURICE SUR FESSARD,45700,45293,24,48,2.616667,1.38
+ Saint-Michel ,SAINT MICHEL ,45340,45294,24,48.066667,2.366667,0.64
+ Saint-Péravy-Épreux ,SAINT PERAVY EPREUX ,45480,45295,24,48.216667,1.983333,1.7
+ Saint-Péravy-la-Colombe ,SAINT PERAVY LA COLOMBE,45310,45296,24,48,1.7,1.96
+ Saint-Pryvé-Saint-Mesmin ,SAINT PRYVE SAINT MESMIN,45750,45298,24,47.883333,1.866667,1.44
+ Saint-Sigismond ,SAINT SIGISMOND ,45310,45299,24,47.983333,1.683333,2.01
+ Sandillon ,SANDILLON ,45640,45300,24,47.85,2.033333,0.92
+ Santeau ,SANTEAU ,45170,45301,24,48.083333,2.15,1.52
+ Saran ,SARAN ,45770,45302,24,47.95,1.883333,1.39
+ Sceaux-du-Gâtinais ,SCEAUX DU GATINAIS ,45490,45303,24,48.1,2.6,0.87
+ Sébouville ,SEBOUVILLE ,45300,45304,24,48.2,2.133333,1.58
+ Seichebrières ,SEICHEBRIERES ,45530,45305,24,47.966667,2.266667,0.99
+ La Selle-en-Hermoy ,LA SELLE EN HERMOY,45210,45306,24,48.016667,2.9,1.79
+ La Selle-sur-le-Bied ,LA SELLE SUR LE,45210,45307,24,48.066667,2.883333,1.74
+ Sémoy ,SEMOY ,45400,45308,24,47.933333,1.95,1.18
+ Sennely ,SENNELY ,45240,45309,24,47.683333,2.15,2.07
+ Sermaises ,SERMAISES ,45300,45310,24,48.3,2.2,2.28
+ Sigloy ,SIGLOY ,45110,45311,24,47.833333,2.233333,1.17
+ Solterre ,SOLTERRE ,45700,45312,24,47.9,2.75,1.32
+ Sougy ,SOUGY ,45410,45313,24,48.05,1.783333,2.1
+ Sully-la-Chapelle ,SULLY LA CHAPELLE ,45450,45314,24,47.966667,2.183333,0.74
+ Sully-sur-Loire ,SULLY SUR LOIRE ,45600,45315,24,47.766667,2.366667,1.48
+ Sury-aux-Bois ,SURY AUX BOIS ,45530,45316,24,47.966667,2.333333,1.54
+ Tavers ,TAVERS ,45190,45317,24,47.75,1.616667,2.22
+ Teillay-le-Gaudin ,TEILLAY LE GAUDIN ,45480,45318,24,48.183333,1.983333,1.46
+ Teillay-Saint-Benoît ,TEILLAY SAINT BENOIT ,45170,45319,24,48.1,2.066667,0.87
+ Thignonville ,THIGNONVILLE ,45300,45320,24,48.283333,2.166667,2.17
+ Thimory ,THIMORY ,45260,45321,24,47.916667,2.6,1.18
+ Thorailles ,THORAILLES ,45210,45322,24,48.016667,2.9,1.79
+ Tigy ,TIGY ,45510,45324,24,47.8,2.2,1.25
+ Tivernon ,TIVERNON ,45170,45325,24,48.15,1.933333,1.85
+ Tournoisis ,TOURNOISIS ,45310,45326,24,48,1.633333,2.17
+ Traînou ,TRAINOU ,45470,45327,24,47.966667,2.1,1.14
+ Triguères ,TRIGUERES ,45220,45329,24,47.933333,2.983333,2.05
+ Trinay ,TRINAY ,45410,45330,24,48.083333,1.95,1.18
+ Vannes-sur-Cosson ,VANNES SUR COSSON ,45510,45331,24,47.716667,2.216667,1.84
+ Vennecy ,VENNECY ,45760,45333,24,47.95,2.05,1.35
+ Vienne-en-Val ,VIENNE EN VAL ,45510,45335,24,47.8,2.133333,1.33
+ Viglain ,VIGLAIN ,45600,45336,24,47.733333,2.3,1.72
+ Villamblain ,VILLAMBLAIN ,45310,45337,24,48.016667,1.55,2.43
+ Villemandeur ,VILLEMANDEUR ,45700,45338,24,47.983333,2.7,1.16
+ Villemoutiers ,VILLEMOUTIERS ,45270,45339,24,48,2.55,0.85
+ Villemurlin ,VILLEMURLIN ,45600,45340,24,47.683333,2.333333,2.07
+ Villeneuve-sur-Conie ,VILLENEUVE SUR CONIE ,45310,45341,24,48.05,1.65,2.12
+ Villereau ,VILLEREAU ,45170,45342,24,48.066667,1.983333,1.07
+ Villevoques ,VILLEVOQUES ,45700,45343,24,48.033333,2.633333,1.49
+ Villorceau ,VILLORCEAU ,45190,45344,24,47.8,1.6,2.27
+ Vimory ,VIMORY ,45700,45345,24,47.95,2.683333,1.11
+ Vitry-aux-Loges ,VITRY AUX LOGES ,45530,45346,24,47.933333,2.266667,1.15
+ Vrigny ,VRIGNY ,45300,45347,24,48.083333,2.233333,1.18
+ Yèvre-la-Ville ,YEVRE LA VILLE ,45300,45348,24,48.133333,2.316667,1.11
+ Yèvre-le-Châtel ,YEVRE LE CHATEL ,45300,45349,24,48.15,2.333333,1.22
+ Les Bézards ,LES BEZARDS ,45290,45901,24,47.8,2.733333,1.27
+ Pont-aux-Moines ,PONT AUX MOINES ,45430,45904,24,47.9,2.05,0.87
+ Albas ,ALBAS ,46140,46001,73,44.466667,1.233333,1.62
+ Albiac ,ALBIAC ,46500,46002,73,44.766667,1.816667,1.2
+ Alvignac ,ALVIGNAC ,46500,46003,73,44.833333,1.7,1.28
+ Anglars ,ANGLARS ,46120,46004,73,44.733333,1.916667,1.21
+ Anglars-Juillac ,ANGLARS JUILLAC ,46140,46005,73,44.483333,1.216667,1.69
+ Anglars-Nozac ,ANGLARS NOZAC ,46300,46006,73,44.783333,1.416667,0.96
+ Arcambal ,ARCAMBAL ,46090,46007,73,44.45,1.516667,1.19
+ Les Arques ,LES ARQUES ,46250,46008,73,44.6,1.266667,1.48
+ Assier ,ASSIER ,46320,46009,73,44.666667,1.883333,1.07
+ Aujols ,AUJOLS ,46090,46010,73,44.416667,1.566667,1.4
+ Autoire ,AUTOIRE ,46400,46011,73,44.85,1.833333,1.66
+ Aynac ,AYNAC ,46120,46012,73,44.783333,1.85,1.67
+ Bach ,BACH ,46230,46013,73,44.35,1.683333,1.83
+ Baladou ,BALADOU ,46600,46016,73,44.916667,1.566667,1.81
+ Bannes ,BANNES ,46400,46017,73,44.8,1.916667,1.21
+ Le Bastit ,LE BASTIT ,46500,46018,73,44.716667,1.666667,1.19
+ Beaumat ,BEAUMAT ,46240,46019,73,44.65,1.516667,0.94
+ Beauregard ,BEAUREGARD ,46260,46020,73,44.333333,1.8,1.94
+ Béduer ,BEDUER ,46100,46021,73,44.583333,1.966667,1.41
+ Belaye ,BELAYE ,46140,46022,73,44.466667,1.2,1.76
+ Belfort-du-Quercy ,BELFORT DU QUERCY ,46230,46023,73,44.25,1.55,2.47
+ Belmont-Bretenoux ,BELMONT BRETENOUX ,46130,46024,73,44.883333,1.883333,1.6
+ Belmontet ,BELMONTET ,46800,46025,73,44.366667,1.166667,1.9
+ Belmont-Sainte-Foi ,BELMONT SAINTE FOI ,46230,46026,73,44.283333,1.65,2.26
+ Berganty ,BERGANTY ,46090,46027,73,44.45,1.65,1.98
+ Bétaille ,BETAILLE ,46110,46028,73,44.95,1.733333,2.03
+ Biars-sur-Cère ,BIARS SUR CERE ,46130,46029,73,44.933333,1.866667,1.92
+ Bio ,BIO ,46500,46030,73,44.783333,1.783333,0.96
+ Blars ,BLARS ,46330,46031,73,44.566667,1.716667,1.46
+ Boissières ,BOISSIERES ,46150,46032,73,44.533333,1.4,0.94
+ Le Boulvé ,LE BOULVE ,46800,46033,73,44.433333,1.166667,1.9
+ Le Bourg ,LE BOURG ,46120,46034,73,44.716667,1.916667,1.21
+ Boussac ,BOUSSAC ,46100,46035,73,44.6,1.933333,1.28
+ Le Bouyssou ,LE BOUYSSOU ,46120,46036,73,44.683333,1.95,1.35
+ Bouziès ,BOUZIES ,46330,46037,73,44.483333,1.633333,0.97
+ Bretenoux ,BRETENOUX ,46130,46038,73,44.916667,1.833333,1.81
+ Brengues ,BRENGUES ,46320,46039,73,44.566667,1.833333,1.25
+ Cabrerets ,CABRERETS ,46330,46040,73,44.5,1.65,0.87
+ Cadrieu ,CADRIEU ,46160,46041,73,44.483333,1.883333,1.07
+ Cahors ,CAHORS ,46000,46042,73,44.433333,1.433333,1.29
+ Cahus ,CAHUS ,46130,46043,73,44.95,1.933333,2.05
+ Caillac ,CAILLAC ,46140,46044,73,44.483333,1.35,1.61
+ Cajarc ,CAJARC ,46160,46045,73,44.483333,1.85,0.97
+ Calamane ,CALAMANE ,46150,46046,73,44.516667,1.383333,1
+ Calès ,CALES ,46350,46047,73,44.8,1.55,1.66
+ Calviac ,CALVIAC ,46190,46048,73,44.916667,2.066667,1.83
+ Calvignac ,CALVIGNAC ,46160,46049,73,44.466667,1.8,1.26
+ Cambayrac ,CAMBAYRAC ,46140,46050,73,44.433333,1.266667,1.48
+ Cambes ,CAMBES ,46100,46051,73,44.616667,1.95,1.35
+ Camboulit ,CAMBOULIT ,46100,46052,73,44.6,1.966667,1.41
+ Camburat ,CAMBURAT ,46100,46053,73,44.633333,2.016667,1.62
+ Caniac-du-Causse ,CANIAC DU CAUSSE ,46240,46054,73,44.616667,1.633333,1.15
+ Carayac ,CARAYAC ,46160,46056,73,44.533333,1.933333,1.28
+ Cardaillac ,CARDAILLAC ,46100,46057,73,44.683333,2,1.55
+ Carennac ,CARENNAC ,46110,46058,73,44.916667,1.733333,1.81
+ Carlucet ,CARLUCET ,46500,46059,73,44.716667,1.616667,1.72
+ Carnac-Rouffiac ,CARNAC ROUFFIAC ,46140,46060,73,44.416667,1.25,1.55
+ Cassagnes ,CASSAGNES ,46700,46061,73,44.55,1.15,1.96
+ Castelfranc ,CASTELFRANC ,46140,46062,73,44.5,1.216667,1.69
+ Catus ,CATUS ,46150,46064,73,44.55,1.333333,1.21
+ Cazillac ,CAZILLAC ,46600,46067,73,45,1.616667,2.35
+ Cénevières ,CENEVIERES ,46330,46068,73,44.466667,1.75,1.43
+ Cézac ,CEZAC ,46170,46069,73,44.333333,1.35,1.94
+ Cieurac ,CIEURAC ,46230,46070,73,44.383333,1.516667,1.62
+ Comiac ,COMIAC ,46190,46071,73,44.933333,2,1.92
+ Concorès ,CONCORES ,46310,46072,73,44.666667,1.4,0.93
+ Concots ,CONCOTS ,46260,46073,73,44.416667,1.633333,2.22
+ Condat ,CONDAT ,46110,46074,73,44.991667,1.666667,-1
+ Corn ,CORN ,46100,46075,73,44.6,1.916667,1.25
+ Cornac ,CORNAC ,46130,46076,73,44.916667,1.883333,1.81
+ Cours ,COURS ,46090,46077,73,44.516667,1.55,1.03
+ Couzou ,COUZOU ,46500,46078,73,44.766667,1.616667,1.5
+ Cras ,CRAS ,46360,46079,73,44.566667,1.533333,1.07
+ Crayssac ,CRAYSSAC ,46150,46080,73,44.5,1.316667,1.28
+ Crégols ,CREGOLS ,46330,46081,73,44.466667,1.7,1.08
+ Cremps ,CREMPS ,46230,46082,73,44.4,1.616667,1.51
+ Cressensac ,CRESSENSAC ,46600,46083,73,45.016667,1.516667,2.46
+ Creysse ,CREYSSE ,46600,46084,73,44.883333,1.6,1.6
+ Cuzac ,CUZAC ,46270,46085,73,44.583333,2.15,2.17
+ Cuzance ,CUZANCE ,46600,46086,73,44.966667,1.55,2.13
+ Dégagnac ,DEGAGNAC ,46340,46087,73,44.666667,1.316667,1.28
+ Douelle ,DOUELLE ,46140,46088,73,44.466667,1.366667,1.9
+ Duravel ,DURAVEL ,46700,46089,73,44.516667,1.083333,2.24
+ Durbans ,DURBANS ,46320,46090,73,44.666667,1.766667,1.16
+ Escamps ,ESCAMPS ,46230,46091,73,44.4,1.583333,1.51
+ Esclauzels ,ESCLAUZELS ,46090,46092,73,44.433333,1.616667,1.64
+ Espagnac-Sainte-Eulalie ,ESPAGNAC SAINTE EULALIE ,46320,46093,73,44.583333,1.883333,1.17
+ Espédaillac ,ESPEDAILLAC ,46320,46094,73,44.633333,1.783333,0.91
+ Espère ,ESPERE ,46090,46095,73,44.5,1.366667,1.2
+ Espeyroux ,ESPEYROUX ,46120,46096,73,44.766667,1.933333,1.28
+ Estal ,ESTAL ,46130,46097,73,44.916667,1.85,1.81
+ Fajoles ,FAJOLES ,46300,46098,73,44.8,1.383333,1.06
+ Fargues ,FARGUES ,46800,46099,73,44.416667,1.216667,1.69
+ Faycelles ,FAYCELLES ,46100,46100,73,44.566667,1.983333,1.48
+ Felzins ,FELZINS ,46270,46101,73,44.616667,2.133333,2.1
+ Figeac ,FIGEAC ,46100,46102,73,44.6,2.033333,1.69
+ Flaugnac ,FLAUGNAC ,46170,46103,73,44.283333,1.383333,2.26
+ Flaujac-Gare ,FLAUJAC GARE ,46320,46104,73,44.716667,1.8,1.18
+ Flaujac-Poujols ,FLAUJAC POUJOLS ,46090,46105,73,44.416667,1.5,1.4
+ Floirac ,FLOIRAC ,46600,46106,73,44.916667,1.65,1.81
+ Floressas ,FLORESSAS ,46700,46107,73,44.45,1.133333,2.03
+ Fons ,FONS ,46100,46108,73,44.65,1.966667,1.41
+ Fontanes ,FONTANES ,46230,46109,73,44.316667,1.5,2.04
+ Fontanes-du-Causse ,FONTANES DU CAUSSE ,46240,46110,73,44.666667,1.65,1.36
+ Fourmagnac ,FOURMAGNAC ,46100,46111,73,44.65,2,1.55
+ Francoulès ,FRANCOULES ,46090,46112,73,44.55,1.483333,0.93
+ Frayssinet ,FRAYSSINET ,46310,46113,73,44.666667,1.483333,1.31
+ Frayssinet-le-Gélat ,FRAYSSINET LE GELAT ,46250,46114,73,44.583333,1.166667,1.9
+ Frayssinhes ,FRAYSSINHES ,46400,46115,73,44.866667,1.95,1.49
+ Frontenac ,FRONTENAC ,46160,46116,73,44.55,1.983333,1.56
+ Gignac ,GIGNAC ,46600,46118,73,45,1.45,2.35
+ Gigouzac ,GIGOUZAC ,46150,46119,73,44.583333,1.433333,1.5
+ Gindou ,GINDOU ,46250,46120,73,44.633333,1.266667,1.48
+ Gintrac ,GINTRAC ,46130,46122,73,44.9,1.766667,2.02
+ Girac ,GIRAC ,46130,46123,73,44.916667,1.816667,1.81
+ Glanes ,GLANES ,46130,46124,73,44.916667,1.883333,1.81
+ Gorses ,GORSES ,46210,46125,73,44.783333,2.05,1.76
+ Goujounac ,GOUJOUNAC ,46250,46126,73,44.566667,1.216667,1.69
+ Gourdon ,GOURDON ,46300,46127,73,44.733333,1.383333,1
+ Gramat ,GRAMAT ,46500,46128,73,44.783333,1.716667,0.96
+ Gréalou ,GREALOU ,46160,46129,73,44.533333,1.9,1.14
+ Grézels ,GREZELS ,46700,46130,73,44.466667,1.166667,1.9
+ Grèzes ,GREZES ,46320,46131,73,44.616667,1.816667,0.79
+ Issendolus ,ISSENDOLUS ,46500,46132,73,44.733333,1.8,1.16
+ Issepts ,ISSEPTS ,46320,46133,73,44.666667,1.933333,1.38
+ Les Junies ,LES JUNIES ,46150,46134,73,44.533333,1.25,1.55
+ Labastide-du-Vert ,LABASTIDE DU VERT ,46150,46136,73,44.516667,1.283333,1.41
+ Labastide-Marnhac ,LABASTIDE MARNHAC ,46090,46137,73,44.4,1.383333,1.51
+ Labastide-Murat ,LABASTIDE MURAT ,46240,46138,73,44.65,1.566667,0.24
+ Labathude ,LABATHUDE ,46120,46139,73,44.75,2,1.55
+ Laburgade ,LABURGADE ,46230,46140,73,44.383333,1.55,1.62
+ Lacam-d'Ourcet ,LACAM D OURCET ,46190,46141,73,44.85,2,1.55
+ Lacapelle-Cabanac ,LACAPELLE CABANAC ,46700,46142,73,44.466667,1.066667,2.31
+ Lacapelle-Marival ,LACAPELLE MARIVAL ,46120,46143,73,44.716667,1.933333,1.28
+ Lacave ,LACAVE ,46200,46144,73,44.85,1.566667,1.38
+ Lachapelle-Auzac ,LACHAPELLE AUZAC ,46200,46145,73,44.933333,1.483333,1.92
+ Ladirat ,LADIRAT ,46400,46146,73,44.816667,1.983333,1.57
+ Lagardelle ,LAGARDELLE ,46220,46147,73,44.483333,1.183333,1.83
+ Lalbenque ,LALBENQUE ,46230,46148,73,44.333333,1.55,1.94
+ Lamagdelaine ,LAMAGDELAINE ,46090,46149,73,44.466667,1.483333,1.08
+ Lamativie ,LAMATIVIE ,46190,46150,73,44.95,2.033333,2.03
+ Lamothe-Cassel ,LAMOTHE CASSEL ,46240,46151,73,44.616667,1.516667,1.06
+ Lamothe-Fénelon ,LAMOTHE FENELON ,46350,46152,73,44.833333,1.416667,1.28
+ Lanzac ,LANZAC ,46200,46153,73,44.866667,1.483333,1.49
+ Laramière ,LARAMIERE ,46260,46154,73,44.333333,1.883333,1.94
+ Larnagol ,LARNAGOL ,46160,46155,73,44.483333,1.783333,1.38
+ Laroque-des-Arcs ,LAROQUE DES ARCS ,46090,46156,73,44.483333,1.466667,0.97
+ Larroque-Toirac ,LARROQUE TOIRAC ,46160,46157,73,44.516667,1.95,1.35
+ Lascabanes ,LASCABANES ,46800,46158,73,44.35,1.3,1.83
+ Latouille-Lentillac ,LATOUILLE LENTILLAC ,46400,46159,73,44.85,1.983333,1.48
+ Latronquière ,LATRONQUIERE ,46210,46160,73,44.8,2.083333,1.9
+ Lauresses ,LAURESSES ,46210,46161,73,44.766667,2.133333,2.1
+ Lauzès ,LAUZES ,46360,46162,73,44.566667,1.583333,0.44
+ Laval-de-Cère ,LAVAL DE CERE ,46130,46163,73,44.95,1.933333,2.05
+ Lavercantière ,LAVERCANTIERE ,46340,46164,73,44.633333,1.3,1.34
+ Lavergne ,LAVERGNE ,46500,46165,73,44.8,1.766667,1.06
+ Lebreil ,LEBREIL ,46800,46166,73,44.333333,1.183333,1.94
+ Lentillac-Lauzès ,LENTILLAC LAUZES ,46330,46167,73,44.55,1.633333,1.29
+ Lentillac-Saint-Blaise ,LENTILLAC SAINT BLAISE ,46100,46168,73,44.6,2.133333,2.1
+ Léobard ,LEOBARD ,46300,46169,73,44.716667,1.3,1.51
+ Leyme ,LEYME ,46120,46170,73,44.783333,1.916667,1.21
+ Lherm ,LHERM ,46150,46171,73,44.566667,1.241667,-1
+ Linac ,LINAC ,46270,46174,73,44.666667,2.133333,2.1
+ Livernon ,LIVERNON ,46320,46176,73,44.65,1.85,0.93
+ Loubressac ,LOUBRESSAC ,46130,46177,73,44.883333,1.8,1.6
+ Lugagnac ,LUGAGNAC ,46260,46179,73,44.416667,1.733333,1.4
+ Lunan ,LUNAN ,46100,46180,73,44.616667,2.1,1.97
+ Lunegarde ,LUNEGARDE ,46240,46181,73,44.683333,1.683333,1.99
+ Luzech ,LUZECH ,46140,46182,73,44.483333,1.283333,1.41
+ Marcilhac-sur-Célé ,MARCILHAC SUR CELE ,46160,46183,73,44.55,1.766667,1.64
+ Marminiac ,MARMINIAC ,46250,46184,73,44.666667,1.216667,1.69
+ Masclat ,MASCLAT ,46350,46186,73,44.833333,1.4,1.28
+ Maxou ,MAXOU ,46090,46188,73,44.541667,1.441667,0.89
+ Mayrinhac-Lentour ,MAYRINHAC LENTOUR ,46500,46189,73,44.816667,1.8,1.17
+ Mechmont ,MECHMONT ,46150,46190,73,44.566667,1.483333,2.18
+ Mercuès ,MERCUES ,46090,46191,73,44.5,1.383333,1.03
+ Meyronne ,MEYRONNE ,46200,46192,73,44.883333,1.583333,1.6
+ Miers ,MIERS ,46500,46193,73,44.85,1.7,1.38
+ Milhac ,MILHAC ,46300,46194,73,44.8,1.333333,1.21
+ Le Montat ,LE MONTAT ,46090,46197,73,44.383333,1.45,1.62
+ Montbrun ,MONTBRUN ,46160,46198,73,44.5,1.916667,1.21
+ Montcléra ,MONTCLERA ,46250,46200,73,44.616667,1.233333,1.62
+ Montcuq ,MONTCUQ ,46800,46201,73,44.333333,1.216667,1.94
+ Montdoumerc ,MONTDOUMERC ,46230,46202,73,44.283333,1.516667,2.26
+ Montet-et-Bouxal ,MONTET ET BOUXAL ,46210,46203,73,44.733333,2.066667,1.83
+ Montfaucon ,MONTFAUCON ,46240,46204,73,44.683333,1.566667,0.64
+ Montgesty ,MONTGESTY ,46150,46205,73,44.566667,1.283333,1.41
+ Montlauzun ,MONTLAUZUN ,46800,46206,73,44.3,1.216667,2.15
+ Montredon ,MONTREDON ,46270,46207,73,44.616667,2.183333,2.31
+ Montvalent ,MONTVALENT ,46600,46208,73,44.883333,1.616667,1.6
+ Nadaillac-de-Rouge ,NADAILLAC DE ROUGE ,46350,46209,73,44.85,1.433333,1.38
+ Nadillac ,NADILLAC ,46360,46210,73,44.55,1.516667,1.55
+ Nuzéjouls ,NUZEJOULS ,46150,46211,73,44.533333,1.366667,1.07
+ Orniac ,ORNIAC ,46330,46212,73,44.533333,1.666667,0.71
+ Padirac ,PADIRAC ,46500,46213,73,44.833333,1.75,1.28
+ Parnac ,PARNAC ,46140,46214,73,44.5,1.3,1.34
+ Payrac ,PAYRAC ,46350,46215,73,44.8,1.466667,1.06
+ Payrignac ,PAYRIGNAC ,46300,46216,73,44.75,1.35,1.14
+ Pern ,PERN ,46170,46217,73,44.316667,1.4,2.04
+ Pescadoires ,PESCADOIRES ,46220,46218,73,44.5,1.166667,1.9
+ Peyrilles ,PEYRILLES ,46310,46219,73,44.616667,1.416667,0.86
+ Pinsac ,PINSAC ,46200,46220,73,44.85,1.516667,1.38
+ Planioles ,PLANIOLES ,46100,46221,73,44.633333,2.05,1.76
+ Pomarède ,POMAREDE ,46250,46222,73,44.566667,1.183333,1.83
+ Pontcirq ,PONTCIRQ ,46150,46223,73,44.55,1.283333,1.41
+ Pradines ,PRADINES ,46090,46224,73,44.483333,1.4,0.97
+ Prendeignes ,PRENDEIGNES ,46270,46226,73,44.683333,2.116667,2.04
+ Promilhanes ,PROMILHANES ,46260,46227,73,44.383333,1.816667,1.62
+ Prudhomat ,PRUDHOMAT ,46130,46228,73,44.9,1.833333,1.71
+ Puybrun ,PUYBRUN ,46130,46229,73,44.916667,1.8,1.81
+ Puyjourdes ,PUYJOURDES ,46260,46230,73,44.416667,1.866667,1.4
+ Puy-l'Évêque ,PUY L EVEQUE ,46700,46231,73,44.5,1.133333,2.03
+ Quissac ,QUISSAC ,46320,46233,73,44.633333,1.733333,1.64
+ Rampoux ,RAMPOUX ,46340,46234,73,44.633333,1.3,1.34
+ Reilhac ,REILHAC ,46500,46235,73,44.7,1.716667,1.1
+ Reilhaguet ,REILHAGUET ,46350,46236,73,44.766667,1.5,1.13
+ Reyrevignes ,REYREVIGNES ,46320,46237,73,44.65,1.916667,1.21
+ Le Roc ,LE ROC ,46200,46239,73,44.866667,1.433333,1.65
+ Rocamadour ,ROCAMADOUR ,46500,46240,73,44.8,1.633333,1.29
+ Rouffilhac ,ROUFFILHAC ,46300,46241,73,44.783333,1.416667,0.96
+ Rudelle ,RUDELLE ,46120,46242,73,44.716667,1.883333,1.07
+ Sabadel-Latronquière ,SABADEL LATRONQUIERE ,46210,46244,73,44.733333,2.083333,1.9
+ Sabadel-Lauzès ,SABADEL LAUZES ,46360,46245,73,44.566667,1.616667,1.01
+ Saignes ,SAIGNES ,46500,46246,73,44.783333,1.816667,1.19
+ Saillac ,SAILLAC ,46260,46247,73,44.333333,1.766667,1.94
+ Sainte-Alauzie ,SAINTE ALAUZIE ,46170,46248,73,44.316667,1.3,2.04
+ Saint-Bressou ,SAINT BRESSOU ,46120,46249,73,44.7,1.983333,1.48
+ Saint-Caprais ,SAINT CAPRAIS ,46250,46250,73,44.608333,1.158333,-1
+ Saint-Céré ,SAINT CERE ,46400,46251,73,44.866667,1.9,1.49
+ Saint-Cernin ,SAINT CERNIN ,46360,46252,73,44.583333,1.583333,0.4
+ Saint-Chamarand ,SAINT CHAMARAND ,46310,46253,73,44.683333,1.466667,1.21
+ Saint-Chels ,SAINT CHELS ,46160,46254,73,44.516667,1.8,1.09
+ Saint-Cirgues ,SAINT CIRGUES ,46210,46255,73,44.733333,2.116667,2.04
+ Saint-Cirq-Lapopie ,SAINT CIRQ LAPOPIE ,46330,46256,73,44.466667,1.666667,1.08
+ Saint-Cirq-Madelon ,SAINT CIRQ MADELON ,46300,46257,73,44.783333,1.3,1.51
+ Saint-Cirq-Souillaguet ,SAINT CIRQ SOUILLAGUET ,46300,46258,73,44.7,1.45,1.26
+ Saint-Clair ,SAINT CLAIR ,46300,46259,73,44.7,1.4,0.93
+ Sainte-Colombe ,SAINTE COLOMBE ,46120,46260,73,44.716667,2.016667,1.62
+ Sainte-Croix ,SAINTE CROIX ,46800,46261,73,44.341667,1.166667,-1
+ Saint-Cyprien ,SAINT CYPRIEN ,46800,46262,73,44.316667,1.25,2.04
+ Saint-Daunès ,SAINT DAUNES ,46800,46263,73,44.366667,1.25,1.72
+ Saint-Denis-Catus ,SAINT DENIS CATUS ,46150,46264,73,44.566667,1.383333,1
+ Saint-Denis-lès-Martel ,SAINT DENIS LES MARTEL,46600,46265,73,44.933333,1.65,1.92
+ Saint-Félix ,SAINT FELIX ,46100,46266,73,44.616667,2.116667,2.04
+ Saint-Germain-du-Bel-Air ,SAINT GERMAIN DU BEL,46310,46267,73,44.65,1.433333,0.79
+ Saint-Géry ,SAINT GERY ,46330,46268,73,44.483333,1.583333,1.79
+ Saint-Jean-de-Laur ,SAINT JEAN DE LAUR,46260,46270,73,44.433333,1.85,1.29
+ Saint-Jean-Lespinasse ,SAINT JEAN LESPINASSE ,46400,46271,73,44.866667,1.866667,1.49
+ Saint-Laurent-les-Tours ,SAINT LAURENT LES TOURS,46400,46273,73,44.866667,1.9,1.49
+ Saint-Martin-de-Vers ,SAINT MARTIN DE VERS,46360,46275,73,44.55,1.55,0.8
+ Saint-Martin-Labouval ,SAINT MARTIN LABOUVAL ,46330,46276,73,44.466667,1.733333,1.15
+ Saint-Martin-le-Redon ,SAINT MARTIN LE REDON,46700,46277,73,44.533333,1.05,2.38
+ Saint-Matré ,SAINT MATRE ,46800,46278,73,44.4,1.133333,2.03
+ Saint-Maurice-en-Quercy ,SAINT MAURICE EN QUERCY,46120,46279,73,44.75,1.95,1.35
+ Saint-Médard-de-Presque ,SAINT MEDARD DE PRESQUE,46400,46281,73,44.866667,1.85,1.49
+ Saint-Médard-Nicourby ,SAINT MEDARD NICOURBY ,46210,46282,73,44.766667,2.05,1.76
+ Saint-Michel-de-Bannières ,SAINT MICHEL DE BANNIERES,46110,46283,73,44.983333,1.683333,2.24
+ Saint-Michel-Loubéjou ,SAINT MICHEL LOUBEJOU ,46130,46284,73,44.9,1.85,1.71
+ Saint-Pantaléon ,SAINT PANTALEON ,46800,46285,73,44.366667,1.283333,1.72
+ Saint-Paul-de-Vern ,SAINT PAUL DE VERN,46400,46286,73,44.833333,1.95,1.35
+ Saint-Perdoux ,SAINT PERDOUX ,46100,46288,73,44.666667,2.066667,1.83
+ Saint-Pierre-Toirac ,SAINT PIERRE TOIRAC ,46160,46289,73,44.533333,1.966667,1.41
+ Saint-Sauveur-la-Vallée ,SAINT SAUVEUR LA VALLEE,46240,46291,73,44.6,1.55,0.86
+ Saint-Simon ,SAINT SIMON ,46320,46292,73,44.7,1.866667,1
+ Saint-Sozy ,SAINT SOZY ,46200,46293,73,44.883333,1.566667,1.6
+ Saint-Vincent-du-Pendit ,SAINT VINCENT DU PENDIT,46400,46295,73,44.833333,1.916667,1.28
+ Saint-Vincent-Rive-d'Olt ,SAINT VINCENT RIVE D,46140,46296,73,44.466667,1.283333,1.41
+ Salviac ,SALVIAC ,46340,46297,73,44.683333,1.266667,1.53
+ Sarrazac ,SARRAZAC ,46600,46298,73,45.016667,1.583333,2.46
+ Sauliac-sur-Célé ,SAULIAC SUR CELE ,46330,46299,73,44.516667,1.716667,0.78
+ Saux ,SAUX ,46800,46300,73,44.383333,1.083333,2.24
+ Sauzet ,SAUZET ,46140,46301,73,44.416667,1.25,1.55
+ Sénaillac-Latronquière ,SENAILLAC LATRONQUIERE ,46210,46302,73,44.816667,2.083333,1.9
+ Sénaillac-Lauzès ,SENAILLAC LAUZES ,46360,46303,73,44.6,1.65,1.99
+ Séniergues ,SENIERGUES ,46240,46304,73,44.7,1.55,0.99
+ Sonac ,SONAC ,46320,46306,73,44.7,1.883333,1.07
+ Soturac ,SOTURAC ,46700,46307,73,44.5,1.016667,2.52
+ Soucirac ,SOUCIRAC ,46300,46308,73,44.7,1.5,1.94
+ Souillac ,SOUILLAC ,46200,46309,73,44.9,1.483333,1.71
+ Soulomès ,SOULOMES ,46240,46310,73,44.633333,1.6,0.52
+ Sousceyrac ,SOUSCEYRAC ,46190,46311,73,44.866667,2.033333,1.69
+ Strenquels ,STRENQUELS ,46110,46312,73,44.983333,1.65,2.24
+ Terrou ,TERROU ,46120,46314,73,44.783333,2,1.55
+ Teyssieu ,TEYSSIEU ,46190,46315,73,44.916667,1.966667,1.81
+ Thédirac ,THEDIRAC ,46150,46316,73,44.6,1.316667,1.28
+ Thégra ,THEGRA ,46500,46317,73,44.816667,1.75,1.17
+ Thémines ,THEMINES ,46120,46318,73,44.733333,1.833333,1.74
+ Théminettes ,THEMINETTES ,46120,46319,73,44.716667,1.866667,1.2
+ Tour-de-Faure ,TOUR DE FAURE ,46330,46320,73,44.466667,1.7,1.08
+ Touzac ,TOUZAC ,46700,46321,73,44.5,1.05,2.38
+ Trespoux-Rassiels ,TRESPOUX RASSIELS ,46090,46322,73,44.416667,1.366667,1.4
+ Ussel ,USSEL ,46240,46323,73,44.583333,1.5,1.62
+ Uzech ,UZECH ,46310,46324,73,44.583333,1.383333,1.76
+ Vaillac ,VAILLAC ,46240,46325,73,44.666667,1.533333,0.75
+ Valprionde ,VALPRIONDE ,46800,46326,73,44.366667,1.116667,2.1
+ Valroufié ,VALROUFIE ,46090,46327,73,44.516667,1.491667,0.76
+ Varaire ,VARAIRE ,46260,46328,73,44.35,1.733333,1.83
+ Vaylats ,VAYLATS ,46230,46329,73,44.333333,1.65,1.94
+ Vayrac ,VAYRAC ,46110,46330,73,44.95,1.7,2.03
+ Vers ,VERS ,46090,46331,73,44.483333,1.566667,1.07
+ Viazac ,VIAZAC ,46100,46332,73,44.666667,1.833333,2.46
+ Vidaillac ,VIDAILLAC ,46260,46333,73,44.35,1.833333,1.83
+ Le Vigan ,LE VIGAN ,46300,46334,73,44.75,1.433333,0.79
+ Villesèque ,VILLESEQUE ,46090,46335,73,44.4,1.3,2.02
+ Mayrac ,MAYRAC ,46200,46337,73,44.9,1.566667,1.71
+ Bessonies ,BESSONIES ,46210,46338,73,44.8,2.15,2.17
+ Saint-Pierre-Lafeuille ,SAINT PIERRE LAFEUILLE ,46090,46340,73,44.516667,1.433333,0.79
+ Agen ,AGEN ,47000,47001,72,44.2,0.633333,1.25
+ Agmé ,AGME ,47350,47002,72,44.483333,0.333333,1.18
+ Agnac ,AGNAC ,47800,47003,72,44.65,0.366667,1.69
+ Aiguillon ,AIGUILLON ,47190,47004,72,44.3,0.35,0.91
+ Allemans-du-Dropt ,ALLEMANS DU DROPT ,47800,47005,72,44.633333,0.283333,1.58
+ Allez-et-Cazeneuve ,ALLEZ ET CAZENEUVE ,47110,47006,72,44.4,0.616667,1.14
+ Allons ,ALLONS ,47420,47007,72,44.2,-0.05,2.26
+ Ambrus ,AMBRUS ,47160,47008,72,44.216667,0.233333,1.43
+ Andiran ,ANDIRAN ,47170,47009,72,44.1,0.266667,1.91
+ Antagnac ,ANTAGNAC ,47700,47010,72,44.35,0.016667,1.97
+ Anthé ,ANTHE ,47370,47011,72,44.383333,0.95,2.09
+ Anzex ,ANZEX ,47700,47012,72,44.283333,0.166667,1.35
+ Argenton ,ARGENTON ,47250,47013,72,44.383333,0.1,1.61
+ Armillac ,ARMILLAC ,47800,47014,72,44.55,0.383333,1.04
+ Astaffort ,ASTAFFORT ,47220,47015,72,44.066667,0.666667,2.13
+ Aubiac ,AUBIAC ,47310,47016,72,44.133333,0.583333,1.69
+ Auradou ,AURADOU ,47140,47017,72,44.35,0.816667,1.51
+ Auriac-sur-Dropt ,AURIAC SUR DROPT ,47120,47018,72,44.65,0.233333,1.69
+ Baleyssagues ,BALEYSSAGUES ,47120,47020,72,44.683333,0.166667,1.91
+ Barbaste ,BARBASTE ,47230,47021,72,44.166667,0.283333,1.47
+ Bazens ,BAZENS ,47130,47022,72,44.266667,0.416667,1.11
+ Beaugas ,BEAUGAS ,47290,47023,72,44.5,0.583333,0.73
+ Beaupuy ,BEAUPUY ,47200,47024,72,44.533333,0.166667,1.32
+ Beauville ,BEAUVILLE ,47470,47025,72,44.266667,0.883333,1.8
+ Beauziac ,BEAUZIAC ,47700,47026,72,44.333333,0.05,1.83
+ Bias ,BIAS ,47300,47027,72,44.416667,0.683333,0.93
+ Birac-sur-Trec ,BIRAC SUR TREC ,47200,47028,72,44.5,0.266667,1.83
+ Blanquefort-sur-Briolance ,BLANQUEFORT SUR BRIOLANCE ,47500,47029,72,44.6,0.966667,2.16
+ Blaymont ,BLAYMONT ,47470,47030,72,44.316667,0.966667,2.16
+ Boé ,BOE ,47550,47031,72,44.166667,0.633333,1.47
+ Bon-Encontre ,BON ENCONTRE ,47240,47032,72,44.183333,0.683333,1.36
+ Bouglon ,BOUGLON ,47250,47034,72,44.383333,0.1,1.61
+ Bourgougnague ,BOURGOUGNAGUE ,47410,47035,72,44.616667,0.416667,1.47
+ Bourlens ,BOURLENS ,47370,47036,72,44.416667,0.966667,2.16
+ Bournel ,BOURNEL ,47210,47037,72,44.616667,0.666667,1.64
+ Bourran ,BOURRAN ,47320,47038,72,44.333333,0.4,1
+ Boussès ,BOUSSES ,47420,47039,72,44.133333,0.1,1.69
+ Brax ,BRAX ,47310,47040,72,44.2,0.533333,1.25
+ Bruch ,BRUCH ,47130,47041,72,44.216667,0.416667,1.14
+ Brugnac ,BRUGNAC ,47260,47042,72,44.45,0.433333,0.38
+ Cahuzac ,CAHUZAC ,47330,47044,72,44.666667,0.55,1.8
+ Calignac ,CALIGNAC ,47600,47045,72,44.133333,0.433333,1.69
+ Calonges ,CALONGES ,47430,47046,72,44.366667,0.233333,1.37
+ Cambes ,CAMBES ,47350,47047,72,44.583333,0.283333,1.26
+ Cancon ,CANCON ,47290,47048,72,44.533333,0.616667,0.93
+ Casseneuil ,CASSENEUIL ,47440,47049,72,44.45,0.616667,1
+ Cassignas ,CASSIGNAS ,47340,47050,72,44.3,0.8,1.44
+ Castelculier ,CASTELCULIER ,47240,47051,72,44.183333,0.716667,1.36
+ Casteljaloux ,CASTELJALOUX ,47700,47052,72,44.316667,0.1,1.61
+ Castella ,CASTELLA ,47340,47053,72,44.316667,0.683333,1.28
+ Castelmoron-sur-Lot ,CASTELMORON SUR LOT ,47260,47054,72,44.4,0.5,1.15
+ Castelnaud-de-Gratecambe ,CASTELNAUD DE GRATECAMBE ,47290,47055,72,44.5,0.666667,1.79
+ Castelnau-sur-Gupie ,CASTELNAU SUR GUPIE ,47200,47056,72,44.55,0.15,1.39
+ Castillonnès ,CASTILLONNES ,47330,47057,72,44.65,0.6,1.69
+ Caubeyres ,CAUBEYRES ,47160,47058,72,44.25,0.2,1.25
+ Caubon-Saint-Sauveur ,CAUBON SAINT SAUVEUR ,47120,47059,72,44.583333,0.2,1.47
+ Caudecoste ,CAUDECOSTE ,47220,47060,72,44.116667,0.733333,1.8
+ Caumont-sur-Garonne ,CAUMONT SUR GARONNE ,47430,47061,72,44.45,0.2,1.31
+ Cauzac ,CAUZAC ,47470,47062,72,44.283333,0.85,1.66
+ Cavarc ,CAVARC ,47330,47063,72,44.683333,0.633333,1.91
+ Cazideroque ,CAZIDEROQUE ,47370,47064,72,44.4,0.933333,2.02
+ Clairac ,CLAIRAC ,47320,47065,72,44.35,0.383333,1
+ Clermont-Dessous ,CLERMONT DESSOUS ,47130,47066,72,44.25,0.416667,0.93
+ Cocumont ,COCUMONT ,47250,47068,72,44.45,0.033333,1.9
+ Colayrac-Saint-Cirq ,COLAYRAC SAINT CIRQ ,47450,47069,72,44.216667,0.566667,1.14
+ Condezaygues ,CONDEZAYGUES ,47500,47070,72,44.483333,0.916667,1.95
+ Coulx ,COULX ,47260,47071,72,44.466667,0.483333,0.76
+ Courbiac ,COURBIAC ,47370,47072,72,44.383333,1.05,2.53
+ Cours ,COURS ,47360,47073,72,44.333333,0.583333,0.97
+ Couthures-sur-Garonne ,COUTHURES SUR GARONNE ,47200,47074,72,44.516667,0.083333,1.68
+ La Croix-Blanche ,LA CROIX BLANCHE ,47340,47075,72,44.3,0.683333,1.22
+ Cuq ,CUQ ,47220,47076,72,44.083333,0.7,2.02
+ Cuzorn ,CUZORN ,47500,47077,72,44.55,0.95,2.09
+ Damazan ,DAMAZAN ,47160,47078,72,44.283333,0.283333,0.81
+ Dausse ,DAUSSE ,47140,47079,72,44.383333,0.9,1.87
+ Dévillac ,DEVILLAC ,47210,47080,72,44.6,0.8,1.44
+ Dolmayrac ,DOLMAYRAC ,47110,47081,72,44.366667,0.583333,0.51
+ Dondas ,DONDAS ,47470,47082,72,44.25,0.85,1.66
+ Doudrac ,DOUDRAC ,47210,47083,72,44.65,0.683333,1.69
+ Douzains ,DOUZAINS ,47330,47084,72,44.633333,0.533333,1.58
+ Durance ,DURANCE ,47420,47085,72,44.166667,0.166667,1.67
+ Duras ,DURAS ,47120,47086,72,44.666667,0.183333,1.8
+ Engayrac ,ENGAYRAC ,47470,47087,72,44.266667,0.9,1.87
+ Escassefort ,ESCASSEFORT ,47350,47088,72,44.55,0.233333,1.35
+ Esclottes ,ESCLOTTES ,47120,47089,72,44.7,0.166667,2.02
+ Espiens ,ESPIENS ,47600,47090,72,44.166667,0.366667,1.47
+ Estillac ,ESTILLAC ,47310,47091,72,44.166667,0.55,1.47
+ Fals ,FALS ,47220,47092,72,44.1,0.666667,1.91
+ Fargues-sur-Ourbise ,FARGUES SUR OURBISE ,47700,47093,72,44.233333,0.15,1.57
+ Fauguerolles ,FAUGUEROLLES ,47400,47094,72,44.433333,0.25,1.09
+ Fauillet ,FAUILLET ,47400,47095,72,44.416667,0.283333,0.81
+ Ferrensac ,FERRENSAC ,47330,47096,72,44.633333,0.616667,1.58
+ Feugarolles ,FEUGAROLLES ,47230,47097,72,44.216667,0.35,1.55
+ Fieux ,FIEUX ,47600,47098,72,44.1,0.416667,1.91
+ Fongrave ,FONGRAVE ,47260,47099,72,44.533333,0.4,1.89
+ Foulayronnes ,FOULAYRONNES ,47510,47100,72,44.233333,0.666667,1.04
+ Fourques-sur-Garonne ,FOURQUES SUR GARONNE ,47200,47101,72,44.45,0.183333,1.25
+ Francescas ,FRANCESCAS ,47600,47102,72,44.066667,0.433333,2.13
+ Fréchou ,FRECHOU ,47600,47103,72,44.083333,0.316667,2.02
+ Frégimont ,FREGIMONT ,47360,47104,72,44.283333,0.466667,1.02
+ Frespech ,FRESPECH ,47140,47105,72,44.316667,0.833333,1.58
+ Fumel ,FUMEL ,47500,47106,72,44.5,0.966667,2.16
+ Galapian ,GALAPIAN ,47190,47107,72,44.3,0.416667,1.47
+ Gaujac ,GAUJAC ,47200,47108,72,44.5,0.116667,1.54
+ Gavaudun ,GAVAUDUN ,47150,47109,72,44.566667,0.9,1.87
+ Granges-sur-Lot ,GRANGES SUR LOT ,47260,47111,72,44.383333,0.466667,1.07
+ Grateloup ,GRATELOUP ,47400,47112,72,44.416667,0.383333,1.04
+ Grayssas ,GRAYSSAS ,47270,47113,72,44.166667,0.883333,1.8
+ Grézet-Cavagnan ,GREZET CAVAGNAN ,47250,47114,72,44.383333,0.133333,1.47
+ Guérin ,GUERIN ,47250,47115,72,44.4,0.083333,1.68
+ Gueyze ,GUEYZE ,47170,47116,72,44.05,0.133333,2.24
+ Hautefage-la-Tour ,HAUTEFAGE LA TOUR ,47340,47117,72,44.316667,0.8,1.44
+ Hautesvignes ,HAUTESVIGNES ,47400,47118,72,44.466667,0.35,0.99
+ Houeillès ,HOUEILLES ,47420,47119,72,44.2,0.033333,1.9
+ Jusix ,JUSIX ,47200,47120,72,44.533333,0.066667,1.76
+ Labastide-Castel-Amouroux ,LABASTIDE CASTEL AMOUROUX ,47250,47121,72,44.35,0.116667,1.54
+ Labretonie ,LABRETONIE ,47350,47122,72,44.483333,0.366667,1.57
+ Lacapelle-Biron ,LACAPELLE BIRON ,47150,47123,72,44.6,0.9,1.87
+ Lacaussade ,LACAUSSADE ,47150,47124,72,44.516667,0.833333,1.58
+ Lacépède ,LACEPEDE ,47360,47125,72,44.333333,0.466667,0.92
+ Lachapelle ,LACHAPELLE ,47350,47126,72,44.566667,0.266667,1.15
+ Lafox ,LAFOX ,47240,47128,72,44.166667,0.7,1.47
+ Lagarrigue ,LAGARRIGUE ,47190,47129,72,44.3,0.383333,0.6
+ Lagruère ,LAGRUERE ,47400,47130,72,44.383333,0.233333,1.38
+ Lagupie ,LAGUPIE ,47200,47131,72,44.55,0.133333,1.47
+ Lalandusse ,LALANDUSSE ,47330,47132,72,44.65,0.533333,1.69
+ Lamontjoie ,LAMONTJOIE ,47310,47133,72,44.066667,0.533333,2.13
+ Lannes ,LANNES ,47170,47134,72,44.033333,0.283333,2.34
+ Laparade ,LAPARADE ,47260,47135,72,44.383333,0.45,1.02
+ Laperche ,LAPERCHE ,47800,47136,72,44.55,0.416667,1.38
+ Laplume ,LAPLUME ,47310,47137,72,44.116667,0.533333,1.8
+ Laroque-Timbaut ,LAROQUE TIMBAUT ,47340,47138,72,44.283333,0.766667,1.29
+ Laugnac ,LAUGNAC ,47360,47140,72,44.316667,0.6,1.19
+ Laussou ,LAUSSOU ,47150,47141,72,44.583333,0.816667,1.51
+ Lauzun ,LAUZUN ,47410,47142,72,44.633333,0.466667,1.58
+ Lavardac ,LAVARDAC ,47230,47143,72,44.183333,0.3,1.36
+ Lavergne ,LAVERGNE ,47800,47144,72,44.583333,0.4,1.26
+ Layrac ,LAYRAC ,47390,47145,72,44.133333,0.666667,1.69
+ Lévignac-de-Guyenne ,LEVIGNAC DE GUYENNE ,47120,47147,72,44.633333,0.2,1.58
+ Leyritz-Moncassin ,LEYRITZ MONCASSIN ,47700,47148,72,44.316667,0.183333,1.52
+ Lisse ,LISSE ,47170,47149,72,44.116667,0.233333,1.8
+ Longueville ,LONGUEVILLE ,47200,47150,72,44.466667,0.233333,1.46
+ Loubès-Bernac ,LOUBES BERNAC ,47120,47151,72,44.716667,0.283333,2.13
+ Lougratte ,LOUGRATTE ,47290,47152,72,44.583333,0.616667,1.26
+ Lusignan-Petit ,LUSIGNAN PETIT ,47360,47154,72,44.283333,0.533333,0.71
+ Marcellus ,MARCELLUS ,47200,47156,72,44.483333,0.083333,1.68
+ Marmande ,MARMANDE ,47200,47157,72,44.5,0.166667,1.32
+ Marmont-Pachas ,MARMONT PACHAS ,47220,47158,72,44.1,0.583333,1.91
+ Le Mas-d'Agenais ,LE MAS D AGENAIS,47430,47159,72,44.4,0.216667,1.1
+ Masquières ,MASQUIERES ,47370,47160,72,44.416667,1.05,2.53
+ Massels ,MASSELS ,47140,47161,72,44.316667,0.866667,1.73
+ Massoulès ,MASSOULES ,47140,47162,72,44.35,0.883333,1.8
+ Mauvezin-sur-Gupie ,MAUVEZIN SUR GUPIE ,47200,47163,72,44.55,0.15,1.39
+ Mazières-Naresse ,MAZIERES NARESSE ,47210,47164,72,44.666667,0.716667,1.8
+ Meilhan-sur-Garonne ,MEILHAN SUR GARONNE ,47200,47165,72,44.516667,0.033333,1.9
+ Meylan ,MEYLAN ,47170,47166,72,44.066667,0.116667,2.13
+ Mézin ,MEZIN ,47170,47167,72,44.05,0.266667,2.24
+ Miramont-de-Guyenne ,MIRAMONT DE GUYENNE ,47800,47168,72,44.6,0.366667,1.37
+Moirax, ,47310,47169,72,44.15,0.6,1.58
+ Monbahus ,MONBAHUS ,47290,47170,72,44.55,0.533333,1.14
+ Monbalen ,MONBALEN ,47340,47171,72,44.316667,0.716667,1.07
+ Moncaut ,MONCAUT ,47310,47172,72,44.15,0.5,1.58
+ Moncrabeau ,MONCRABEAU ,47600,47174,72,44.033333,0.366667,2.34
+ Monflanquin ,MONFLANQUIN ,47150,47175,72,44.533333,0.766667,1.29
+ Mongaillard ,MONGAILLARD ,47230,47176,72,44.2,0.283333,1.25
+ Monheurt ,MONHEURT ,47160,47177,72,44.333333,0.3,1.32
+ Monsempron-Libos ,MONSEMPRON LIBOS ,47500,47179,72,44.483333,0.933333,2.02
+ Montagnac-sur-Auvignon ,MONTAGNAC SUR AUVIGNON ,47600,47180,72,44.15,0.466667,1.58
+ Montagnac-sur-Lède ,MONTAGNAC SUR LEDE ,47150,47181,72,44.55,0.85,1.66
+ Montastruc ,MONTASTRUC ,47380,47182,72,44.483333,0.516667,0.6
+ Montauriol ,MONTAURIOL ,47330,47183,72,44.616667,0.566667,1.47
+ Montayral ,MONTAYRAL ,47500,47185,72,44.483333,0.983333,2.24
+ Montesquieu ,MONTESQUIEU ,47130,47186,72,44.2,0.45,1.75
+ Monteton ,MONTETON ,47120,47187,72,44.616667,0.25,1.47
+ Montignac-de-Lauzun ,MONTIGNAC DE LAUZUN ,47800,47188,72,44.566667,0.466667,2.02
+ Montignac-Toupinerie ,MONTIGNAC TOUPINERIE ,47350,47189,72,44.55,0.35,1.04
+ Montpezat ,MONTPEZAT ,47360,47190,72,44.35,0.516667,0.53
+ Montpouillan ,MONTPOUILLAN ,47200,47191,72,44.483333,0.116667,1.54
+ Monviel ,MONVIEL ,47290,47192,72,44.566667,0.533333,1.28
+ Moulinet ,MOULINET ,47290,47193,72,44.533333,0.566667,0.93
+ Moustier ,MOUSTIER ,47800,47194,72,44.633333,0.3,1.58
+ Nérac ,NERAC ,47600,47195,72,44.133333,0.35,1.69
+ Nicole ,NICOLE ,47190,47196,72,44.333333,0.35,1.22
+ Nomdieu ,NOMDIEU ,47600,47197,72,44.1,0.483333,1.91
+ Pailloles ,PAILLOLES ,47440,47198,72,44.466667,0.633333,1
+ Pardaillan ,PARDAILLAN ,47120,47199,72,44.65,0.283333,1.69
+ Parranquet ,PARRANQUET ,47210,47200,72,44.65,0.816667,1.69
+ Le Passage ,LE PASSAGE ,47520,47201,72,44.2,0.616667,1.25
+ Paulhiac ,PAULHIAC ,47150,47202,72,44.433333,0.633333,2.38
+ Penne-d'Agenais ,PENNE D AGENAIS ,47140,47203,72,44.383333,0.833333,1.58
+ Peyrière ,PEYRIERE ,47350,47204,72,44.566667,0.316667,1.15
+ Pindères ,PINDERES ,47700,47205,72,44.266667,0.033333,1.9
+ Pinel-Hauterive ,PINEL HAUTERIVE ,47380,47206,72,44.433333,0.566667,1.38
+ Pompiey ,POMPIEY ,47230,47207,72,44.183333,0.216667,1.93
+ Pompogne ,POMPOGNE ,47420,47208,72,44.25,0.05,1.83
+ Pont-du-Casse ,PONT DU CASSE ,47480,47209,72,44.233333,0.683333,1.04
+ Port-Sainte-Marie ,PORT SAINTE MARIE ,47130,47210,72,44.25,0.4,0.93
+ Poudenas ,POUDENAS ,47170,47211,72,44.05,0.216667,2.24
+ Poussignac ,POUSSIGNAC ,47700,47212,72,44.35,0.05,1.83
+ Prayssas ,PRAYSSAS ,47360,47213,72,44.283333,0.5,0.71
+ Puch-d'Agenais ,PUCH D AGENAIS ,47160,47214,72,44.316667,0.25,0.96
+ Pujols ,PUJOLS ,47300,47215,72,44.4,0.683333,0.93
+ Puymiclan ,PUYMICLAN ,47350,47216,72,44.516667,0.316667,0.82
+ Puymirol ,PUYMIROL ,47270,47217,72,44.183333,0.783333,1.36
+ Puysserampion ,PUYSSERAMPION ,47800,47218,72,44.6,0.3,1.37
+ Rayet ,RAYET ,47210,47219,72,44.65,0.783333,1.69
+ Razimet ,RAZIMET ,47160,47220,72,44.35,0.233333,1.3
+ Rives ,RIVES ,47210,47223,72,44.65,0.75,1.69
+ Romestaing ,ROMESTAING ,47250,47224,72,44.416667, ,2.05
+ Roquefort ,ROQUEFORT ,47310,47225,72,44.183333,0.55,1.36
+ Roumagne ,ROUMAGNE ,47800,47226,72,44.616667,0.333333,1.47
+ Ruffiac ,RUFFIAC ,47700,47227,72,44.366667,0.033333,1.9
+ Saint-Antoine-de-Ficalba ,SAINT ANTOINE DE FICALBA,47340,47228,72,44.333333,0.716667,1.07
+ Saint-Astier ,SAINT ASTIER ,47120,47229,72,44.725,0.25,-1
+ Saint-Avit ,SAINT AVIT ,47350,47231,72,44.566667,0.216667,-1
+ Saint-Barthélémy-d'Agenais ,SAINT BARTHELEMY D AGENAIS,47350,47232,72,44.516667,0.366667,1.24
+ Sainte-Bazeille ,SAINTE BAZEILLE ,47200,47233,72,44.533333,0.1,1.61
+ Saint-Caprais-de-Lerm ,SAINT CAPRAIS DE LERM,47270,47234,72,44.216667,0.75,1.31
+ Saint-Colomb-de-Lauzun ,SAINT COLOMB DE LAUZUN,47410,47235,72,44.6,0.466667,1.37
+ Sainte-Colombe-de-Duras ,SAINTE COLOMBE DE DURAS,47120,47236,72,44.683333,0.133333,1.91
+ Sainte-Colombe-de-Villeneuve ,SAINTE COLOMBE DE VILLENEUVE,47300,47237,72,44.366667,0.65,1.72
+ Sainte-Colombe-en-Bruilhois ,SAINTE COLOMBE EN BRUILHOIS,47310,47238,72,44.183333,0.516667,1.36
+ Saint-Étienne-de-Fougères ,SAINT ETIENNE DE FOUGERES,47380,47239,72,44.416667,0.55,1.36
+ Saint-Étienne-de-Villeréal ,SAINT ETIENNE DE VILLEREAL,47210,47240,72,44.616667,0.766667,1.47
+ Saint-Eutrope-de-Born ,SAINT EUTROPE DE BORN,47210,47241,72,44.566667,0.683333,1.79
+ Saint-Front-sur-Lémance ,SAINT FRONT SUR LEMANCE,47500,47242,72,44.566667,0.966667,2.16
+ Saint-Gayrand ,SAINT GAYRAND ,47400,47243,72,44.416667,0.4,1.3
+ Sainte-Gemme-Martaillac ,SAINTE GEMME MARTAILLAC ,47250,47244,72,44.366667,0.15,1.39
+ Saint-Géraud ,SAINT GERAUD ,47120,47245,72,44.616667,0.166667,1.47
+ Saint-Jean-de-Duras ,SAINT JEAN DE DURAS,47120,47247,72,44.683333,0.3,1.91
+ Saint-Jean-de-Thurac ,SAINT JEAN DE THURAC,47270,47248,72,44.166667,0.75,1.47
+ Saint-Léger ,SAINT LEGER ,47160,47250,72,44.283333,0.316667,1.28
+ Saint-Léon ,SAINT LEON ,47160,47251,72,44.283333,0.233333,1.03
+ Sainte-Livrade-sur-Lot ,SAINTE LIVRADE SUR LOT,47110,47252,72,44.4,0.6,0.72
+ Sainte-Marthe ,SAINTE MARTHE ,47430,47253,72,44.4,0.166667,1.32
+ Saint-Martin-Curton ,SAINT MARTIN CURTON ,47700,47254,72,44.316667,0.016667,1.97
+ Saint-Martin-de-Villeréal ,SAINT MARTIN DE VILLEREAL,47210,47256,72,44.633333,0.833333,1.58
+ Saint-Martin-Petit ,SAINT MARTIN PETIT ,47200,47257,72,44.55,0.1,1.61
+ Sainte-Maure-de-Peyriac ,SAINTE MAURE DE PEYRIAC,47170,47258,72,44,0.15,2.56
+ Saint-Maurice-de-Lestapel ,SAINT MAURICE DE LESTAPEL,47290,47259,72,44.566667,0.566667,1.15
+ Saint-Maurin ,SAINT MAURIN ,47270,47260,72,44.2,0.9,1.87
+ Saint-Nicolas-de-la-Balerme ,SAINT NICOLAS DE LA,47220,47262,72,44.15,0.766667,1.58
+ Saint-Pardoux-du-Breuil ,SAINT PARDOUX DU BREUIL,47200,47263,72,44.483333,0.216667,1.15
+ Saint-Pardoux-Isaac ,SAINT PARDOUX ISAAC ,47800,47264,72,44.6,0.383333,1.37
+ Saint-Pastour ,SAINT PASTOUR ,47290,47265,72,44.483333,0.6,1.1
+ Saint-Pierre-de-Buzet ,SAINT PIERRE DE BUZET,47160,47267,72,44.25,0.266667,0.93
+ Saint-Pierre-de-Caubel ,SAINT PIERRE DE CAUBEL,47380,47268,72,44.466667,0.533333,0.55
+ Saint-Pierre-de-Clairac ,SAINT PIERRE DE CLAIRAC,47270,47269,72,44.183333,0.766667,1.36
+ Saint-Pierre-sur-Dropt ,SAINT PIERRE SUR DROPT,47120,47271,72,44.633333,0.2,1.58
+ Saint-Quentin-du-Dropt ,SAINT QUENTIN DU DROPT,47330,47272,72,44.683333,0.583333,1.91
+ Saint-Robert ,SAINT ROBERT ,47340,47273,72,44.25,0.8,1.44
+ Saint-Romain-le-Noble ,SAINT ROMAIN LE NOBLE,47270,47274,72,44.166667,0.783333,1.47
+ Saint-Salvy ,SAINT SALVY ,47360,47275,72,44.3,0.433333,1.42
+ Saint-Sardos ,SAINT SARDOS ,47360,47276,72,44.35,0.483333,0.81
+ Saint-Sauveur-de-Meilhan ,SAINT SAUVEUR DE MEILHAN,47200,47277,72,44.475, ,-1
+ Saint-Sernin ,SAINT SERNIN ,47120,47278,72,44.7,0.233333,2.02
+ Saint-Sylvestre-sur-Lot ,SAINT SYLVESTRE SUR LOT,47140,47280,72,44.4,0.816667,1.51
+ Saint-Urcisse ,SAINT URCISSE ,47270,47281,72,44.166667,0.833333,1.58
+ Saint-Vincent-de-Lamontjoie ,SAINT VINCENT DE LAMONTJOIE,47310,47282,72,44.083333,0.5,2.02
+ Saint-Vite ,SAINT VITE ,47500,47283,72,44.483333,0.966667,2.16
+ Samazan ,SAMAZAN ,47250,47285,72,44.433333,0.116667,1.54
+ Sauméjan ,SAUMEJAN ,47420,47286,72,44.233333, ,2.05
+ Saumont ,SAUMONT ,47600,47287,72,44.133333,0.45,1.69
+ Sauvagnas ,SAUVAGNAS ,47340,47288,72,44.25,0.75,1.22
+ La Sauvetat-de-Savères ,LA SAUVETAT DE SAVERES,47270,47289,72,44.233333,0.833333,1.58
+ La Sauvetat-du-Dropt ,LA SAUVETAT DU DROPT,47800,47290,72,44.65,0.333333,1.69
+ La Sauvetat-sur-Lède ,LA SAUVETAT SUR LEDE,47150,47291,72,44.466667,0.733333,1.15
+ Sauveterre-la-Lémance ,SAUVETERRE LA LEMANCE ,47500,47292,72,44.583333,1.016667,2.38
+ Sauveterre-Saint-Denis ,SAUVETERRE SAINT DENIS ,47220,47293,72,44.166667,0.7,1.47
+ Savignac-de-Duras ,SAVIGNAC DE DURAS ,47120,47294,72,44.7,0.2,2.02
+ Savignac-sur-Leyze ,SAVIGNAC SUR LEYZE ,47150,47295,72,44.483333,0.8,1.44
+ Ségalas ,SEGALAS ,47410,47296,72,44.583333,0.533333,1.26
+ Sembas ,SEMBAS ,47360,47297,72,44.333333,0.65,1.98
+ Sénestis ,SENESTIS ,47430,47298,72,44.416667,0.233333,1.03
+ Sérignac-Péboudou ,SERIGNAC PEBOUDOU ,47410,47299,72,44.6,0.55,1.37
+ Sérignac-sur-Garonne ,SERIGNAC SUR GARONNE ,47310,47300,72,44.216667,0.5,1.46
+ Seyches ,SEYCHES ,47350,47301,72,44.55,0.3,1.04
+ Sos ,SOS ,47170,47302,72,44.033333,0.15,2.34
+ Soumensac ,SOUMENSAC ,47120,47303,72,44.683333,0.316667,1.91
+ Taillebourg ,TAILLEBOURG ,47200,47304,72,44.45,0.233333,1.57
+ Tayrac ,TAYRAC ,47270,47305,72,44.2,0.85,1.66
+ Le Temple-sur-Lot ,LE TEMPLE SUR LOT,47110,47306,72,44.366667,0.533333,1.62
+ Thézac ,THEZAC ,47370,47307,72,44.433333,1.016667,2.38
+ Thouars-sur-Garonne ,THOUARS SUR GARONNE ,47230,47308,72,44.233333,0.333333,1.38
+ Tombeboeuf ,TOMBEBOEUF ,47380,47309,72,44.5,0.45,1.13
+ Tonneins ,TONNEINS ,47400,47310,72,44.383333,0.316667,0.67
+ Tourliac ,TOURLIAC ,47210,47311,72,44.683333,0.816667,1.91
+ Tournon-d'Agenais ,TOURNON D AGENAIS ,47370,47312,72,44.4,1,2.31
+ Tourtrès ,TOURTRES ,47380,47313,72,44.5,0.433333,1.42
+ Trémons ,TREMONS ,47140,47314,72,44.416667,0.916667,1.95
+ Trentels ,TRENTELS ,47140,47315,72,44.433333,0.866667,1.73
+ Varès ,VARES ,47400,47316,72,44.45,0.366667,0.97
+ Verteuil-d'Agenais ,VERTEUIL D AGENAIS ,47260,47317,72,44.466667,0.416667,0.76
+ Vianne ,VIANNE ,47230,47318,72,44.2,0.316667,1.25
+ Villebramar ,VILLEBRAMAR ,47380,47319,72,44.516667,0.483333,0.89
+ Villefranche-du-Queyran ,VILLEFRANCHE DU QUEYRAN ,47160,47320,72,44.3,0.2,1.18
+ Villeneuve-de-Duras ,VILLENEUVE DE DURAS ,47120,47321,72,44.733333,0.233333,2.24
+ Villeneuve-de-Mézin ,VILLENEUVE DE MEZIN ,47170,47322,72,44.016667,0.233333,2.45
+ Villeneuve-sur-Lot ,VILLENEUVE SUR LOT ,47300,47323,72,44.4,0.716667,1.31
+ Villeréal ,VILLEREAL ,47210,47324,72,44.633333,0.75,1.58
+ Villeton ,VILLETON ,47400,47325,72,44.35,0.266667,1.25
+ Virazeil ,VIRAZEIL ,47200,47326,72,44.5,0.216667,1.11
+ Xaintrailles ,XAINTRAILLES ,47230,47327,72,44.2,0.25,1.25
+ Albaret-le-Comtal ,ALBARET LE COMTAL ,48310,48001,91,44.866667,3.15,1.81
+ Albaret-Sainte-Marie ,ALBARET SAINTE MARIE ,48200,48002,91,44.883333,3.266667,1.91
+ Allenc ,ALLENC ,48190,48003,91,44.533333,3.666667,1.1
+ Altier ,ALTIER ,48800,48004,91,44.466667,3.866667,1.81
+ Antrenas ,ANTRENAS ,48100,48005,91,44.583333,3.266667,0.94
+ Arcomie ,ARCOMIE ,48200,48006,91,44.866667,3.233333,1.81
+ Arzenc-d'Apcher ,ARZENC D APCHER ,48310,48007,91,44.85,3.116667,1.72
+ Arzenc-de-Randon ,ARZENC DE RANDON ,48170,48008,91,44.65,3.616667,0.93
+ Aumont-Aubrac ,AUMONT AUBRAC ,48130,48009,91,44.716667,3.283333,0.97
+ Auroux ,AUROUX ,48600,48010,91,44.75,3.733333,1.36
+ Auxillac ,AUXILLAC ,48500,48011,91,44.466667,3.233333,1.1
+ Badaroux ,BADAROUX ,48000,48013,91,44.533333,3.55,0.72
+ Bagnols-les-Bains ,BAGNOLS LES BAINS ,48190,48014,91,44.5,3.666667,0.89
+ Balsièges ,BALSIEGES ,48000,48016,91,44.483333,3.466667,0.83
+ Banassac ,BANASSAC ,48500,48017,91,44.433333,3.2,1.25
+ Barjac ,BARJAC ,48000,48018,91,44.5,3.4,1.7
+ Barre-des-Cévennes ,BARRE DES CEVENNES ,48400,48019,91,44.25,3.65,1.68
+ Bassurels ,BASSURELS ,48400,48020,91,44.183333,3.616667,2.05
+ La Bastide-Puylaurent ,LA BASTIDE PUYLAURENT ,48250,48021,91,44.6,3.9,1.96
+ Bédouès ,BEDOUES ,48400,48022,91,44.35,3.6,1.11
+ Belvezet ,BELVEZET ,48170,48023,91,44.55,3.75,1.27
+ Berc ,BERC ,48200,48024,91,44.833333,3.216667,1.63
+ Les Bessons ,LES BESSONS ,48200,48025,91,44.766667,3.25,1.25
+ Blavignac ,BLAVIGNAC ,48200,48026,91,44.883333,3.283333,1.91
+ Le Bleymard ,LE BLEYMARD ,48190,48027,91,44.483333,3.733333,1.19
+ Les Bondons ,LES BONDONS ,48400,48028,91,44.383333,3.616667,1.51
+ Le Born ,LE BORN ,48000,48029,91,44.566667,3.55,1.02
+ Brenoux ,BRENOUX ,48000,48030,91,44.483333,3.533333,0.69
+ Brion ,BRION ,48310,48031,91,44.75,3.083333,1.78
+ Le Buisson ,LE BUISSON ,48100,48032,91,44.633333,3.233333,1.1
+ Canilhac ,CANILHAC ,48500,48033,91,44.416667,3.15,1.48
+ La Canourgue ,LA CANOURGUE ,48500,48034,91,44.416667,3.216667,1.17
+ La Capelle ,LA CAPELLE ,48500,48035,91,44.4,3.3,1.12
+ Cassagnas ,CASSAGNAS ,48400,48036,91,44.266667,3.75,1.86
+ Chadenet ,CHADENET ,48190,48037,91,44.5,3.616667,1.59
+ Chambon-le-Château ,CHAMBON LE CHATEAU ,48600,48038,91,44.85,3.666667,1.72
+ Chanac ,CHANAC ,48230,48039,91,44.466667,3.333333,0.64
+ Chasseradès ,CHASSERADES ,48250,48040,91,44.55,3.816667,1.77
+ Chastanier ,CHASTANIER ,48300,48041,91,44.716667,3.75,1.27
+ Chastel-Nouvel ,CHASTEL NOUVEL ,48000,48042,91,44.566667,3.516667,0.77
+ Châteauneuf-de-Randon ,CHATEAUNEUF DE RANDON ,48170,48043,91,44.65,3.666667,0.89
+ Chauchailles ,CHAUCHAILLES ,48310,48044,91,44.783333,3.1,1.71
+ Chaudeyrac ,CHAUDEYRAC ,48170,48045,91,44.65,3.75,1.27
+ Chaulhac ,CHAULHAC ,48140,48046,91,44.916667,3.25,2.1
+ La Chaze-de-Peyre ,LA CHAZE DE PEYRE,48130,48047,91,44.7,3.25,1.02
+ Cheylard-l'Évêque ,CHEYLARD L EVEQUE ,48300,48048,91,44.65,3.8,1.5
+ Chirac ,CHIRAC ,48100,48049,91,44.533333,3.266667,0.94
+ Cocurès ,COCURES ,48400,48050,91,44.35,3.616667,1.11
+ Le Collet-de-Dèze ,LE COLLET DE DEZE,48160,48051,91,44.25,3.916667,2.03
+ Cubières ,CUBIERES ,48190,48053,91,44.466667,3.766667,1.35
+ Cubièrettes ,CUBIERETTES ,48190,48054,91,44.45,3.783333,1.71
+ Cultures ,CULTURES ,48230,48055,91,44.5,3.383333,1.42
+ Esclanèdes ,ESCLANEDES ,48230,48056,91,44.483333,3.366667,0.9
+ Estables ,ESTABLES ,48700,48057,91,44.666667,3.416667,0.68
+ La Fage-Montivernoux ,LA FAGE MONTIVERNOUX ,48310,48058,91,44.75,3.183333,1.73
+ La Fage-Saint-Julien ,LA FAGE SAINT JULIEN,48200,48059,91,44.8,3.2,1.44
+ Fau-de-Peyre ,FAU DE PEYRE ,48130,48060,91,44.733333,3.216667,1.42
+ Florac ,FLORAC ,48400,48061,91,44.316667,3.6,1.3
+ Fontanès ,FONTANES ,48300,48062,91,44.766667,3.783333,-1
+ Fontans ,FONTANS ,48700,48063,91,44.733333,3.4,1.39
+ Fournels ,FOURNELS ,48310,48064,91,44.816667,3.116667,1.63
+ Fraissinet-de-Fourques ,FRAISSINET DE FOURQUES ,48400,48065,91,44.216667,3.533333,1.87
+ Fraissinet-de-Lozère ,FRAISSINET DE LOZERE ,48220,48066,91,44.383333,3.7,1.33
+ Gabriac ,GABRIAC ,48110,48067,91,44.183333,3.733333,2.05
+ Gabrias ,GABRIAS ,48100,48068,91,44.55,3.383333,1.42
+ Gatuzières ,GATUZIERES ,48150,48069,91,44.2,3.483333,1.96
+ Grandrieu ,GRANDRIEU ,48600,48070,91,44.783333,3.633333,1.34
+ Grandvals ,GRANDVALS ,48260,48071,91,44.733333,3.05,1.93
+ Grèzes ,GREZES ,48100,48072,91,44.516667,3.333333,1.06
+ Les Hermaux ,LES HERMAUX ,48340,48073,91,44.516667,3.116667,1.63
+ Ispagnac ,ISPAGNAC ,48320,48075,91,44.366667,3.533333,1.02
+ Javols ,JAVOLS ,48130,48076,91,44.683333,3.35,1.76
+ Julianges ,JULIANGES ,48140,48077,91,44.933333,3.316667,2.19
+ Lachamp ,LACHAMP ,48100,48078,91,44.616667,3.383333,1.5
+ Lajo ,LAJO ,48120,48079,91,44.833333,3.433333,1.63
+ Langogne ,LANGOGNE ,48300,48080,91,44.716667,3.85,1.73
+ Lanuéjols ,LANUEJOLS ,48000,48081,91,44.5,3.566667,0.98
+ Laubert ,LAUBERT ,48170,48082,91,44.55,3.633333,1.09
+Les Laubies,LAUBIES ,48700,48083,91,44.683333,3.433333,0.78
+ Laval-Atger ,LAVAL ATGER ,48600,48084,91,44.8,3.683333,1.44
+ Laval-du-Tarn ,LAVAL DU TARN ,48500,48085,91,44.35,3.35,1.78
+ Luc ,LUC ,48250,48086,91,44.65,3.883333,1.88
+ Malbouzon ,MALBOUZON ,48270,48087,91,44.7,3.133333,1.55
+ La Malène ,LA MALENE ,48210,48088,91,44.3,3.316667,1.39
+ Le Malzieu-Ville ,LE MALZIEU VILLE ,48140,48090,91,44.85,3.35,1.72
+ Marchastel ,MARCHASTEL ,48260,48091,91,44.65,3.116667,1.63
+ Marvejols ,MARVEJOLS ,48100,48092,91,44.55,3.283333,0.87
+ Mas-d'Orcières ,MAS D ORCIERES ,48190,48093,91,44.466667,3.7,1.04
+ Le Massegros ,LE MASSEGROS ,48500,48094,91,44.3,3.183333,1.39
+ Mende ,MENDE ,48000,48095,91,44.516667,3.5,0.17
+ Meyrueis ,MEYRUEIS ,48150,48096,91,44.166667,3.433333,2.15
+ Molezon ,MOLEZON ,48110,48098,91,44.216667,3.666667,1.87
+ Montbel ,MONTBEL ,48170,48100,91,44.583333,3.716667,1.12
+ Montbrun ,MONTBRUN ,48210,48101,91,44.333333,3.5,1.35
+ Montjézieu ,MONTJEZIEU ,48500,48102,91,44.483333,3.2,1.29
+ Montrodat ,MONTRODAT ,48100,48103,91,44.55,3.333333,0.78
+ Nasbinals ,NASBINALS ,48260,48104,91,44.666667,3.05,1.93
+ Naussac ,NAUSSAC ,48300,48105,91,44.75,3.783333,1.42
+ Noalhac ,NOALHAC ,48310,48106,91,44.816667,3.133333,1.55
+ Palhers ,PALHERS ,48100,48107,91,44.533333,3.3,0.79
+ La Panouse ,LA PANOUSE ,48600,48108,91,44.733333,3.583333,1.53
+ Paulhac-en-Margeride ,PAULHAC EN MARGERIDE ,48140,48110,91,44.866667,3.383333,1.81
+ Pierrefiche ,PIERREFICHE ,48300,48112,91,44.683333,3.733333,1.32
+ Le Pompidou ,LE POMPIDOU ,48110,48115,91,44.2,3.65,1.96
+ Le Pont-de-Montvert ,LE PONT DE MONTVERT,48220,48116,91,44.366667,3.75,1.27
+ Prades ,PRADES ,48210,48118,91,44.35,3.466667,1.11
+ Prévenchères ,PREVENCHERES ,48800,48119,91,44.516667,3.916667,2.03
+ Prinsuéjols ,PRINSUEJOLS ,48100,48120,91,44.666667,3.183333,1.85
+ Prunières ,PRUNIERES ,48200,48121,91,44.816667,3.35,1.53
+ Quézac ,QUEZAC ,48320,48122,91,44.366667,3.533333,1.02
+ Recoules-d'Aubrac ,RECOULES D AUBRAC ,48260,48123,91,44.683333,3.033333,2.01
+ Recoules-de-Fumas ,RECOULES DE FUMAS ,48100,48124,91,44.633333,3.35,1.23
+ Le Recoux ,LE RECOUX ,48500,48125,91,44.333333,3.15,1.48
+ Ribennes ,RIBENNES ,48700,48126,91,44.633333,3.4,1.24
+ Rimeize ,RIMEIZE ,48200,48128,91,44.766667,3.316667,1.36
+ Rocles ,ROCLES ,48300,48129,91,44.7,3.783333,1.42
+ Rousses ,ROUSSES ,48400,48130,91,44.2,3.6,1.96
+ Le Rozier ,LE ROZIER ,48150,48131,91,44.183333,3.216667,2.05
+ Saint-Alban-sur-Limagnole ,SAINT ALBAN SUR LIMAGNOLE,48120,48132,91,44.783333,3.383333,1.34
+ Saint-Amans ,SAINT AMANS ,48700,48133,91,44.658333,3.45,0.75
+ Saint-Andéol-de-Clerguemort ,SAINT ANDEOL DE CLERGUEMORT,48160,48134,91,44.283333,3.9,1.96
+ Saint-André-Capcèze ,SAINT ANDRE CAPCEZE ,48800,48135,91,44.416667,3.95,2.19
+ Saint-André-de-Lancize ,SAINT ANDRE DE LANCIZE,48240,48136,91,44.266667,3.816667,1.58
+ Saint-Bonnet-de-Chirac ,SAINT BONNET DE CHIRAC,48100,48138,91,44.516667,3.266667,0.94
+ Saint-Bonnet-de-Montauroux ,SAINT BONNET DE MONTAUROUX,48600,48139,91,44.816667,3.716667,1.53
+ Saint-Chély-d'Apcher ,SAINT CHELY D APCHER,48200,48140,91,44.8,3.283333,1.44
+ Mas Saint-Chély ,MAS SAINT CHELY ,48210,48141,91,44.316667,3.4,1.3
+ Sainte-Colombe-de-Peyre ,SAINTE COLOMBE DE PEYRE,48130,48142,91,44.683333,3.233333,1.1
+ Sainte-Énimie ,SAINTE ENIMIE ,48210,48146,91,44.366667,3.416667,1.02
+ Saint-Étienne-du-Valdonnez ,SAINT ETIENNE DU VALDONNEZ,48000,48147,91,44.45,3.566667,1.43
+ Sainte-Eulalie ,SAINTE EULALIE ,48120,48149,91,44.783333,3.45,1.34
+ Saint-Flour-de-Mercoire ,SAINT FLOUR DE MERCOIRE,48300,48150,91,44.7,3.833333,1.65
+ Saint-Frézal-d'Albuges ,SAINT FREZAL D ALBUGES,48170,48151,91,44.55,3.766667,1.35
+ Saint-Frézal-de-Ventalon ,SAINT FREZAL DE VENTALON,48240,48152,91,44.283333,3.866667,1.81
+ Saint-Gal ,SAINT GAL ,48700,48153,91,44.666667,3.433333,0.68
+ Saint-Georges-de-Lévéjac ,SAINT GEORGES DE LEVEJAC,48500,48154,91,44.316667,3.233333,1.3
+ Saint-Germain-de-Calberte ,SAINT GERMAIN DE CALBERTE,48370,48155,91,44.216667,3.8,1.87
+ Saint-Germain-du-Teil ,SAINT GERMAIN DU TEIL,48340,48156,91,44.483333,3.166667,1.42
+ Saint-Hilaire-de-Lavit ,SAINT HILAIRE DE LAVIT,48160,48158,91,44.25,3.866667,1.81
+ Saint-Jean-la-Fouillouse ,SAINT JEAN LA FOUILLOUSE,48170,48160,91,44.7,3.666667,1.02
+ Saint-Juéry ,SAINT JUERY ,48310,48161,91,44.833333,3.1,1.71
+ Saint-Julien-d'Arpaon ,SAINT JULIEN D ARPAON,48400,48162,91,44.3,3.666667,1.39
+ Saint-Julien-des-Points ,SAINT JULIEN DES POINTS,48160,48163,91,44.266667,3.966667,2.26
+ Saint-Julien-du-Tournel ,SAINT JULIEN DU TOURNEL,48190,48164,91,44.483333,3.666667,0.89
+ Saint-Laurent-de-Muret ,SAINT LAURENT DE MURET,48100,48165,91,44.6,3.2,1.25
+ Saint-Laurent-de-Trèves ,SAINT LAURENT DE TREVES,48400,48166,91,44.266667,3.6,1.58
+ Saint-Laurent-de-Veyrès ,SAINT LAURENT DE VEYRES,48310,48167,91,44.766667,3.15,1.48
+ Saint-Léger-de-Peyre ,SAINT LEGER DE PEYRE,48100,48168,91,44.6,3.3,0.79
+ Saint-Léger-du-Malzieu ,SAINT LEGER DU MALZIEU,48140,48169,91,44.883333,3.316667,1.91
+ Saint-Martin-de-Boubaux ,SAINT MARTIN DE BOUBAUX,48160,48170,91,44.2,3.916667,2.03
+ Saint-Martin-de-Lansuscle ,SAINT MARTIN DE LANSUSCLE,48110,48171,91,44.216667,3.75,1.87
+ Saint-Maurice-de-Ventalon ,SAINT MAURICE DE VENTALON,48220,48172,91,44.316667,3.833333,1.65
+ Saint-Michel-de-Dèze ,SAINT MICHEL DE DEZE,48160,48173,91,44.233333,3.9,1.96
+ Saint-Paul-le-Froid ,SAINT PAUL LE FROID,48600,48174,91,44.783333,3.566667,1.44
+ Saint-Pierre-de-Nogaret ,SAINT PIERRE DE NOGARET,48340,48175,91,44.483333,3.133333,1.55
+ Saint-Pierre-des-Tripiers ,SAINT PIERRE DES TRIPIERS,48150,48176,91,44.233333,3.283333,1.77
+ Saint-Privat-de-Vallongue ,SAINT PRIVAT DE VALLONGUE,48240,48178,91,44.283333,3.833333,1.65
+ Saint-Privat-du-Fau ,SAINT PRIVAT DU FAU,48140,48179,91,44.916667,3.35,2.1
+ Saint-Rome-de-Dolan ,SAINT ROME DE DOLAN,48500,48180,91,44.266667,3.216667,1.58
+ Saint-Saturnin ,SAINT SATURNIN ,48500,48181,91,44.408333,3.191667,-1
+ Saint-Sauveur-de-Ginestoux ,SAINT SAUVEUR DE GINESTOUX,48170,48182,91,44.7,3.6,1.46
+ Saint-Sauveur-de-Peyre ,SAINT SAUVEUR DE PEYRE,48130,48183,91,44.65,3.283333,1.01
+ Saint-Symphorien ,SAINT SYMPHORIEN ,48600,48184,91,44.833333,3.616667,1.63
+ Les Salelles ,LES SALELLES ,48230,48185,91,44.483333,3.283333,1.34
+ Les Salces ,LES SALCES ,48100,48187,91,44.533333,3.15,1.9
+ Serverette ,SERVERETTE ,48700,48188,91,44.7,3.383333,1.11
+ Servières ,SERVIERES ,48000,48189,91,44.583333,3.416667,1.74
+ La Tieule ,LA TIEULE ,48500,48191,91,44.383333,3.15,1.48
+ Trélans ,TRELANS ,48340,48192,91,44.5,3.083333,1.78
+ Vébron ,VEBRON ,48400,48193,91,44.233333,3.566667,1.77
+ Vialas ,VIALAS ,48220,48194,91,44.333333,3.9,1.96
+ Les Vignes ,LES VIGNES ,48210,48195,91,44.283333,3.233333,1.95
+ Le Villard ,LE VILLARD ,48230,48196,91,44.483333,3.3,0.9
+ La Villedieu ,LA VILLEDIEU ,48700,48197,91,44.7,3.5,1.79
+ La Garde ,LA GARDE ,48200,48905,91,44.883333,3.25,1.91
+ Chapeauroux ,CHAPEAUROUX ,48600,48907,91,44.833333,3.733333,1.63
+ Les Vanels ,LES VANELS ,48400,48908,91,44.233333,3.566667,1.77
+ Les Alleuds ,LES ALLEUDS ,49320,49001,52,47.316667,-0.4,0.58
+ Ambillou-Château ,AMBILLOU CHATEAU ,49700,49003,52,47.266667,-0.35,1.04
+ Andard ,ANDARD ,49800,49004,52,47.45,-0.4,0.5
+ Andigné ,ANDIGNE ,49220,49005,52,47.666667,-0.783333,1.57
+ Andrezé ,ANDREZE ,49600,49006,52,47.166667,-0.966667,1.43
+ Angers ,ANGERS ,49000,49007,52,47.466667,-0.55,1
+ Angrie ,ANGRIE ,49440,49008,52,47.566667,-0.966667,1.36
+ Armaillé ,ARMAILLE ,49420,49010,52,47.716667,-1.133333,1.9
+ Artannes-sur-Thouet ,ARTANNES SUR THOUET ,49260,49011,52,47.2,-0.083333,1.5
+ Auverse ,AUVERSE ,49490,49013,52,47.516667,0.05,1.93
+ Aviré ,AVIRE ,49500,49014,52,47.7,-0.783333,1.76
+ Avrillé ,AVRILLE ,49240,49015,52,47.5,-0.583333,0.61
+ Bagneux ,BAGNEUX ,49400,49016,52,47.25,-0.083333,1.5
+ Baracé ,BARACE ,49430,49017,52,47.633333,-0.35,1.69
+ Baugé ,BAUGE ,49150,49018,52,47.541667,-0.1,-1
+ Bauné ,BAUNE ,49140,49019,52,47.5,-0.316667,0.74
+ Beaucouzé ,BEAUCOUZE ,49070,49020,52,47.466667,-0.633333,1
+ Beaufort-en-Vallée ,BEAUFORT EN VALLEE ,49250,49021,52,47.433333,-0.216667,1.07
+ Beaulieu-sur-Layon ,BEAULIEU SUR LAYON ,49750,49022,52,47.316667,-0.583333,1.13
+ Beaupréau ,BEAUPREAU ,49600,49023,52,47.2,-1,1.47
+ Beausse ,BEAUSSE ,49410,49024,52,47.316667,-0.916667,1.34
+ Beauvau ,BEAUVAU ,49140,49025,52,47.583333,-0.25,1.09
+ Bécon-les-Granits ,BECON LES GRANITS ,49370,49026,52,47.5,-0.8,0.82
+ Bégrolles-en-Mauges ,BEGROLLES EN MAUGES ,49122,49027,52,47.15,-0.933333,1.41
+ Behuard ,BEHUARD ,49170,49028,52,47.383333,-0.65,1.07
+ Blou ,BLOU ,49160,49030,52,47.366667,-0.033333,1.66
+ Bocé ,BOCE ,49150,49031,52,47.5,-0.083333,1.5
+ La Bohalle ,LA BOHALLE ,49800,49032,52,47.416667,-0.4,1.03
+ La Boissière-sur-Evre ,LA BOISSIERE SUR EVRE,49110,49033,52,47.3,-1.083333,1.74
+ Botz-en-Mauges ,BOTZ EN MAUGES ,49110,49034,52,47.3,-1,1.47
+ Bouchemaine ,BOUCHEMAINE ,49080,49035,52,47.416667,-0.6,0.17
+ Bouillé-Ménard ,BOUILLE MENARD ,49520,49036,52,47.733333,-0.966667,1.95
+ Bourg-l'Évêque ,BOURG L EVEQUE ,49520,49038,52,47.733333,-1.016667,1.95
+ Bourgneuf-en-Mauges ,BOURGNEUF EN MAUGES ,49290,49039,52,47.316667,-0.833333,1.29
+ Bouzillé ,BOUZILLE ,49530,49040,52,47.333333,-1.116667,1.85
+ Brain-sur-Allonnes ,BRAIN SUR ALLONNES ,49650,49041,52,47.3,0.066667,1.99
+ Brain-sur-l'Authion ,BRAIN SUR L AUTHION,49800,49042,52,47.45,-0.416667,0.42
+ Brain-sur-Longuenée ,BRAIN SUR LONGUENEE ,49220,49043,52,47.583333,-0.766667,1.09
+ Breil ,BREIL ,49490,49044,52,47.483333,0.15,2.26
+ La Breille-les-Pins ,LA BREILLE LES PINS,49390,49045,52,47.333333,0.083333,2.04
+ Brézé ,BREZE ,49260,49046,52,47.166667,-0.066667,1.55
+ Brigné ,BRIGNE ,49700,49047,52,47.233333,-0.383333,1.32
+ Briollay ,BRIOLLAY ,49125,49048,52,47.566667,-0.5,1
+ Brion ,BRION ,49250,49049,52,47.45,-0.15,1.59
+ Brissarthe ,BRISSARTHE ,49330,49051,52,47.7,-0.45,1.76
+ Broc ,BROC ,49490,49052,52,47.583333,0.166667,2.31
+ Candé ,CANDE ,49440,49054,52,47.566667,-1.033333,1.58
+ Cantenay-Épinard ,CANTENAY EPINARD ,49460,49055,52,47.533333,-0.566667,1.13
+ Carbay ,CARBAY ,49420,49056,52,47.733333,-1.216667,2.17
+ Cernusson ,CERNUSSON ,49310,49057,52,47.183333,-0.483333,1.22
+ Chacé ,CHACE ,49400,49060,52,47.21435,-0.07179,-1
+ Challain-la-Potherie ,CHALLAIN LA POTHERIE ,49440,49061,52,47.633333,-1.05,1.63
+ Chalonnes-sous-le-Lude ,CHALONNES SOUS LE LUDE,49490,49062,52,47.55,0.166667,2.31
+ Chalonnes-sur-Loire ,CHALONNES SUR LOIRE ,49290,49063,52,47.35,-0.766667,0.71
+ Chambellay ,CHAMBELLAY ,49220,49064,52,47.683333,-0.683333,1.66
+ Champigné ,CHAMPIGNE ,49330,49065,52,47.666667,-0.566667,1.57
+ Le Champ-sur-Layon ,LE CHAMP SUR LAYON,49380,49066,52,47.266667,-0.583333,2.21
+ Champteussé-sur-Baconne ,CHAMPTEUSSE SUR BACONNE ,49220,49067,52,47.666667,-0.65,1.57
+ Champtocé-sur-Loire ,CHAMPTOCE SUR LOIRE ,49123,49068,52,47.416667,-0.866667,1.04
+ Champtoceaux ,CHAMPTOCEAUX ,49270,49069,52,47.333333,-1.266667,2.33
+ Chanteloup-les-Bois ,CHANTELOUP LES BOIS ,49340,49070,52,47.1,-0.683333,1.7
+ Chanzeaux ,CHANZEAUX ,49750,49071,52,47.266667,-0.65,1.32
+ La Chapelle-du-Genêt ,LA CHAPELLE DU GENET,49600,49072,52,47.183333,-1.016667,1.52
+ La Chapelle-Hullin ,LA CHAPELLE HULLIN ,49860,49073,52,47.766667,-1.066667,2.14
+ La Chapelle-Rousselin ,LA CHAPELLE ROUSSELIN ,49120,49074,52,47.216667,-0.783333,1.03
+ La Chapelle-Saint-Florent ,LA CHAPELLE SAINT FLORENT,49410,49075,52,47.333333,-1.05,1.63
+ La Chapelle-Saint-Laud ,LA CHAPELLE SAINT LAUD,49140,49076,52,47.616667,-0.3,1.28
+ La Chapelle-sur-Oudon ,LA CHAPELLE SUR OUDON,49500,49077,52,47.683333,-0.816667,1.66
+ Chartrené ,CHARTRENE ,49150,49079,52,47.5,-0.116667,1.39
+ Châteauneuf-sur-Sarthe ,CHATEAUNEUF SUR SARTHE ,49330,49080,52,47.683333,-0.483333,1.66
+ Châtelais ,CHATELAIS ,49520,49081,52,47.766667,-0.916667,2.14
+ Chaudefonds-sur-Layon ,CHAUDEFONDS SUR LAYON ,49290,49082,52,47.333333,-0.7,1.62
+ Chaudron-en-Mauges ,CHAUDRON EN MAUGES ,49110,49083,52,47.283333,-0.983333,1.42
+ Chaumont-d'Anjou ,CHAUMONT D ANJOU ,49140,49084,52,47.533333,-0.283333,0.85
+ La Chaussaire ,LA CHAUSSAIRE ,49600,49085,52,47.2,-1.15,1.96
+ Chavagnes ,CHAVAGNES ,49380,49086,52,47.266667,-0.466667,1.11
+ Chavaignes ,CHAVAIGNES ,49490,49087,52,47.533333,0.033333,1.88
+ Chazé-Henry ,CHAZE HENRY ,49860,49088,52,47.75,-1.116667,2.05
+ Chazé-sur-Argos ,CHAZE SUR ARGOS ,49500,49089,52,47.616667,-0.883333,1.61
+ Chemellier ,CHEMELLIER ,49320,49091,52,47.333333,-0.35,0.83
+ Chemillé ,CHEMILLE ,49120,49092,52,47.216667,-0.716667,1.03
+ Chemiré-sur-Sarthe ,CHEMIRE SUR SARTHE ,49640,49093,52,47.75,-0.433333,2.05
+ Chenillé-Changé ,CHENILLE CHANGE ,49220,49095,52,47.7,-0.666667,1.76
+ Cherré ,CHERRE ,49330,49096,52,47.716667,-0.566667,1.86
+ Cheviré-le-Rouge ,CHEVIRE LE ROUGE ,49150,49097,52,47.6,-0.183333,1.9
+ Chigné ,CHIGNE ,49490,49098,52,47.583333,0.083333,2.04
+ Cholet ,CHOLET ,49280,49099,52,47.066667,-0.883333,1.9
+ Cizay-la-Madeleine ,CIZAY LA MADELEINE ,49700,49100,52,47.183333,-0.183333,1.6
+ Clefs ,CLEFS ,49150,49101,52,47.616667,-0.066667,1.55
+ Cléré-sur-Layon ,CLERE SUR LAYON ,49560,49102,52,47.083333,-0.416667,1.8
+ Combrée ,COMBREE ,49520,49103,52,47.7,-1.033333,1.76
+ Concourson-sur-Layon ,CONCOURSON SUR LAYON ,49700,49104,52,47.183333,-0.333333,1.22
+ Contigné ,CONTIGNE ,49330,49105,52,47.733333,-0.516667,1.95
+ Corné ,CORNE ,49250,49106,52,47.466667,-0.35,1.8
+ Cornillé-les-Caves ,CORNILLE LES CAVES ,49140,49107,52,47.5,-0.3,0.8
+ La Cornuaille ,LA CORNUAILLE ,49440,49108,52,47.516667,-0.983333,1.42
+ Coron ,CORON ,49690,49109,52,47.133333,-0.65,1.51
+ Corzé ,CORZE ,49140,49110,52,47.55,-0.383333,0.95
+ Cossé-d'Anjou ,COSSE D ANJOU ,49120,49111,52,47.166667,-0.683333,1.32
+ Le Coudray-Macouard ,LE COUDRAY MACOUARD ,49260,49112,52,47.2,-0.116667,1.39
+ Courchamps ,COURCHAMPS ,49260,49113,52,47.2,-0.166667,1.23
+ Courléon ,COURLEON ,49390,49114,52,47.383333,0.15,2.26
+ Coutures ,COUTURES ,49320,49115,52,47.366667,-0.35,0.87
+ Cuon ,CUON ,49150,49116,52,47.483333,-0.1,1.45
+ La Daguenière ,LA DAGUENIERE ,49800,49117,52,47.416667,-0.433333,1.03
+ Dampierre-sur-Loire ,DAMPIERRE SUR LOIRE ,49400,49118,52,47.233333,-0.016667,1.72
+ Daumeray ,DAUMERAY ,49640,49119,52,47.7,-0.366667,1.76
+ Denée ,DENEE ,49190,49120,52,47.383333,-0.6,1.5
+ Denezé-sous-Doué ,DENEZE SOUS DOUE ,49700,49121,52,47.25,-0.266667,0.91
+ Dénézé-sous-le-Lude ,DENEZE SOUS LE LUDE,49490,49122,52,47.533333,0.133333,2.2
+ Distré ,DISTRE ,49400,49123,52,47.233333,-0.116667,1.39
+ Doué-la-Fontaine ,DOUE LA FONTAINE ,49700,49125,52,47.2,-0.283333,1.13
+ Drain ,DRAIN ,49530,49126,52,47.35,-1.2,2.12
+ Durtal ,DURTAL ,49430,49127,52,47.666667,-0.25,1.57
+ Échemiré ,ECHEMIRE ,49150,49128,52,47.55,-0.166667,1.31
+ Écouflant ,ECOUFLANT ,49000,49129,52,47.533333,-0.533333,1
+ Écuillé ,ECUILLE ,49460,49130,52,47.616667,-0.566667,1.42
+ Épieds ,EPIEDS ,49260,49131,52,47.15,-0.05,1.61
+ Étriché ,ETRICHE ,49330,49132,52,47.65,-0.433333,1.56
+ Faveraye-Machelles ,FAVERAYE MACHELLES ,49380,49133,52,47.25,-0.5,0.84
+ Faye-d'Anjou ,FAYE D ANJOU ,49380,49134,52,47.283333,-0.516667,0.64
+ Feneu ,FENEU ,49460,49135,52,47.566667,-0.583333,0.99
+ La Ferrière-de-Flée ,LA FERRIERE DE FLEE,49500,49136,52,47.733333,-0.85,1.95
+ Le Fief-Sauvin ,LE FIEF SAUVIN ,49600,49137,52,47.216667,-1.033333,1.58
+ Fontaine-Guérin ,FONTAINE GUERIN ,49250,49138,52,47.483333,-0.183333,1.18
+ Fontaine-Milon ,FONTAINE MILON ,49140,49139,52,47.5,-0.25,1.17
+ Forges ,FORGES ,49700,49141,52,47.216667,-0.25,1.03
+ La Fosse-de-Tigné ,LA FOSSE DE TIGNE,49540,49142,52,47.183333,-0.433333,1.22
+ Freigné ,FREIGNE ,49440,49144,52,47.55,-1.1,1.79
+ Le Fuilet ,LE FUILET ,49270,49145,52,47.283333,-1.116667,1.85
+ Les Gardes ,LES GARDES ,49120,49146,52,47.15,-0.733333,1.41
+ Gée ,GEE ,49250,49147,52,47.45,-0.233333,1.01
+ Gené ,GENE ,49220,49148,52,47.633333,-0.8,1.37
+ Gennes ,GENNES ,49350,49149,52,47.333333,-0.233333,1.01
+ Genneteil ,GENNETEIL ,49490,49150,52,47.6,0.05,1.93
+ Gesté ,GESTE ,49600,49151,52,47.183333,-1.116667,1.85
+ Gohier ,GOHIER ,49320,49152,52,47.4,-0.366667,1.1
+ Grézillé ,GREZILLE ,49320,49154,52,47.333333,-0.35,0.83
+ Grez-Neuville ,GREZ NEUVILLE ,49220,49155,52,47.6,-0.683333,1.18
+ Grugé-l'Hôpital ,GRUGE L HOPITAL ,49520,49156,52,47.75,-1.033333,2.05
+ Le Guédéniau ,LE GUEDENIAU ,49150,49157,52,47.5,-0.05,1.61
+ L'Hôtellerie-de-Flée ,L HOTELLERIE DE FLEE,49500,49158,52,47.75,-0.883333,2.05
+ Huillé ,HUILLE ,49430,49159,52,47.65,-0.3,1.47
+ Ingrandes ,INGRANDES ,49123,49160,52,47.4,-0.916667,1.2
+ La Jaille-Yvon ,LA JAILLE YVON ,49220,49161,52,47.733333,-0.666667,1.95
+ Jallais ,JALLAIS ,49510,49162,52,47.2,-0.866667,1.13
+ Jarzé ,JARZE ,49140,49163,52,47.55,-0.233333,1.15
+ Joué-Étiau ,JOUE ETIAU ,49670,49164,52,47.216667,-0.616667,1.03
+ La Jubaudière ,LA JUBAUDIERE ,49510,49165,52,47.166667,-0.9,1.32
+ Juigné-Bené ,JUIGNE BENE ,49460,49166,52,47.55,-0.616667,1.33
+ Juigné-sur-Loire ,JUIGNE SUR LOIRE ,49610,49167,52,47.4,-0.483333,1.6
+ Jumelles ,JUMELLES ,49160,49168,52,47.433333,-0.1,1.45
+ La Jumellière ,LA JUMELLIERE ,49120,49169,52,47.283333,-0.716667,1.26
+ Juvardeil ,JUVARDEIL ,49330,49170,52,47.65,-0.5,1.47
+ La Lande-Chasles ,LA LANDE CHASLES ,49150,49171,52,47.466667,-0.066667,1.55
+ Landemont ,LANDEMONT ,49270,49172,52,47.266667,-1.25,2.28
+ Lasse ,LASSE ,49490,49173,52,47.533333,0.016667,1.82
+ Lézigné ,LEZIGNE ,49430,49174,52,47.633333,-0.283333,1.37
+ Linières-Bouton ,LINIERES BOUTON ,49490,49175,52,47.466667,0.083333,2.04
+ Le Lion-d'Angers ,LE LION D ANGERS,49220,49176,52,47.633333,-0.716667,1.37
+ Liré ,LIRE ,49530,49177,52,47.35,-1.166667,2.01
+ Loiré ,LOIRE ,49440,49178,52,47.616667,-0.983333,1.42
+ Le Longeron ,LE LONGERON ,49710,49179,52,47.016667,-1.066667,2.18
+ Louerre ,LOUERRE ,49700,49181,52,47.3,-0.333333,1.24
+ Louresse-Rochemenier ,LOURESSE ROCHEMENIER ,49700,49182,52,47.25,-0.316667,0.84
+ Le Louroux-Béconnais ,LE LOUROUX BECONNAIS ,49370,49183,52,47.516667,-0.883333,1.09
+ Louvaines ,LOUVAINES ,49500,49184,52,47.7,-0.8,1.76
+ Lué-en-Baugeois ,LUE EN BAUGEOIS ,49140,49185,52,47.516667,-0.283333,0.85
+ Luigné ,LUIGNE ,49320,49186,52,47.283333,-0.383333,1.2
+ Marans ,MARANS ,49500,49187,52,47.633333,-0.85,1.37
+ Marcé ,MARCE ,49140,49188,52,47.583333,-0.316667,1.09
+ Marigné ,MARIGNE ,49330,49189,52,47.716667,-0.616667,1.86
+ Le Marillais ,LE MARILLAIS ,49410,49190,52,47.35,-1.066667,1.69
+ Martigné-Briand ,MARTIGNE BRIAND ,49540,49191,52,47.233333,-0.416667,1.48
+ Maulévrier ,MAULEVRIER ,49360,49192,52,47.016667,-0.75,2.18
+ Le May-sur-Èvre ,LE MAY SUR EVRE,49122,49193,52,47.133333,-0.9,1.51
+ Mazé ,MAZE ,49250,49194,52,47.45,-0.266667,0.91
+ Mazières-en-Mauges ,MAZIERES EN MAUGES ,49280,49195,52,47.05,-0.816667,1.99
+ La Meignanne ,LA MEIGNANNE ,49220,49196,52,47.516667,-0.666667,1.63
+ Meigné-le-Vicomte ,MEIGNE LE VICOMTE ,49490,49197,52,47.516667,0.2,2.42
+ Meigné ,MEIGNE ,49700,49198,52,47.233333,-0.216667,1.07
+ Melay ,MELAY ,49120,49199,52,47.183333,-0.7,1.22
+ La Menitré ,LA MENITRE ,49250,49201,52,47.4,-0.266667,0.91
+ Méon ,MEON ,49490,49202,52,47.5,0.116667,2.15
+ Méron ,MERON ,49260,49203,52,47.133333,-0.116667,1.51
+ Le Mesnil-en-Vallée ,LE MESNIL EN VALLEE,49410,49204,52,47.366667,-0.933333,1.25
+ Miré ,MIRE ,49330,49205,52,47.766667,-0.483333,2.14
+ Montfaucon ,MONTFAUCON ,49230,49206,52,47.1,-1.116667,1.85
+ Montfort ,MONTFORT ,49700,49207,52,47.2,-0.216667,1.13
+ Montguillon ,MONTGUILLON ,49500,49208,52,47.733333,-0.733333,1.95
+ Montigné-les-Rairies ,MONTIGNE LES RAIRIES ,49430,49209,52,47.616667,-0.2,1.34
+ Montigné-sur-Moine ,MONTIGNE SUR MOINE ,49230,49210,52,47.083333,-1.133333,1.9
+ Montilliers ,MONTILLIERS ,49310,49211,52,47.183333,-0.5,1.22
+ Montjean-sur-Loire ,MONTJEAN SUR LOIRE ,49570,49212,52,47.383333,-0.866667,1.04
+ Montpollin ,MONTPOLLIN ,49150,49213,52,47.583333,-0.1,1.45
+ Montreuil-Bellay ,MONTREUIL BELLAY ,49260,49215,52,47.133333,-0.15,1.51
+ Montreuil-sur-Loir ,MONTREUIL SUR LOIR ,49140,49216,52,47.616667,-0.4,1.5
+ Montreuil-sur-Maine ,MONTREUIL SUR MAINE ,49220,49217,52,47.65,-0.7,1.47
+ Montrevault ,MONTREVAULT ,49110,49218,52,47.266667,-1.05,1.63
+ Montsoreau ,MONTSOREAU ,49730,49219,52,47.216667,0.066667,1.99
+ Morannes ,MORANNES ,49640,49220,52,47.75,-0.416667,2.05
+ Mouliherne ,MOULIHERNE ,49390,49221,52,47.466667,0.016667,1.82
+ Mozé-sur-Louet ,MOZE SUR LOUET ,49610,49222,52,47.35,-0.55,1.66
+ Mûrs-Érigné ,MURS ERIGNE ,49130,49223,52,47.4,-0.55,0.67
+ Neuillé ,NEUILLE ,49680,49224,52,47.35,-0.033333,1.66
+ Neuvy-en-Mauges ,NEUVY EN MAUGES ,49120,49225,52,47.266667,-0.833333,1.83
+ Noëllet ,NOELLET ,49520,49226,52,47.7,-1.083333,1.79
+ Notre-Dame-d'Allençon ,NOTRE DAME D ALLENCON,49380,49227,52,47.3,-0.466667,1.36
+ Noyant ,NOYANT ,49490,49228,52,47.516667,0.133333,2.2
+ Noyant-la-Gravoyère ,NOYANT LA GRAVOYERE ,49520,49229,52,47.7,-0.966667,1.76
+ Noyant-la-Plaine ,NOYANT LA PLAINE ,49700,49230,52,47.266667,-0.366667,1.24
+ Nuaillé ,NUAILLE ,49340,49231,52,47.1,-0.8,1.7
+ Nueil-sur-Layon ,NUEIL SUR LAYON ,49560,49232,52,47.116667,-0.366667,1.61
+ Nyoiseau ,NYOISEAU ,49500,49233,52,47.716667,-0.916667,1.86
+ Parçay-les-Pins ,PARCAY LES PINS ,49390,49234,52,47.433333,0.166667,2.31
+ Parnay ,PARNAY ,49730,49235,52,47.233333,0.016667,1.82
+ Passavant-sur-Layon ,PASSAVANT SUR LAYON ,49560,49236,52,47.116667,-0.383333,1.61
+ Pellouailles-les-Vignes ,PELLOUAILLES LES VIGNES ,49112,49238,52,47.533333,-0.433333,0.8
+ Le Pin-en-Mauges ,LE PIN EN MAUGES,49110,49239,52,47.25,-0.9,1.86
+ La Plaine ,LA PLAINE ,49360,49240,52,47.066667,-0.616667,1.9
+ Le Plessis-Grammoire ,LE PLESSIS GRAMMOIRE ,49124,49241,52,47.5,-0.433333,1
+ Le Plessis-Macé ,LE PLESSIS MACE ,49220,49242,52,47.55,-0.666667,1.21
+ La Pommeraye ,LA POMMERAYE ,49620,49244,52,47.35,-0.85,0.98
+ Pontigné ,PONTIGNE ,49150,49245,52,47.55,-0.033333,1.66
+ Les Ponts-de-Cé ,LES PONTS DE CE,49130,49246,52,47.416667,-0.516667,1.01
+ La Possonnière ,LA POSSONNIERE ,49170,49247,52,47.383333,-0.683333,0.67
+ Pouancé ,POUANCE ,49420,49248,52,47.75,-1.166667,2.05
+ La Pouëze ,LA POUEZE ,49370,49249,52,47.55,-0.8,0.89
+ La Prévière ,LA PREVIERE ,49420,49250,52,47.716667,-1.183333,2.06
+ Pruillé ,PRUILLE ,49220,49251,52,47.583333,-0.65,1.09
+ Le Puiset-Doré ,LE PUISET DORE ,49600,49252,52,47.233333,-1.1,1.79
+ Le Puy-Notre-Dame ,LE PUY NOTRE DAME,49260,49253,52,47.116667,-0.233333,1.61
+ Querré ,QUERRE ,49330,49254,52,47.683333,-0.616667,1.66
+ Rablay-sur-Layon ,RABLAY SUR LAYON ,49750,49256,52,47.283333,-0.583333,0.89
+ Les Rairies ,LES RAIRIES ,49430,49257,52,47.65,-0.2,1.47
+ La Renaudière ,LA RENAUDIERE ,49450,49258,52,47.116667,-1.05,1.63
+ Rochefort-sur-Loire ,ROCHEFORT SUR LOIRE ,49190,49259,52,47.35,-0.65,0.39
+ La Romagne ,LA ROMAGNE ,49740,49260,52,47.066667,-1.016667,1.9
+ Rou-Marson ,ROU MARSON ,49400,49262,52,47.233333,-0.15,1.41
+ Roussay ,ROUSSAY ,49450,49263,52,47.083333,-1.066667,1.8
+ Saint-André-de-la-Marche ,SAINT ANDRE DE LA,49450,49264,52,47.1,-1,1.7
+ Saint-Aubin-de-Luigné ,SAINT AUBIN DE LUIGNE,49190,49265,52,47.333333,-0.666667,1.11
+ Saint-Augustin-des-Bois ,SAINT AUGUSTIN DES BOIS,49170,49266,52,47.466667,-0.783333,1.29
+ Saint-Barthélemy-d'Anjou ,SAINT BARTHELEMY D ANJOU,49124,49267,52,47.466667,-0.5,1
+ Saint-Christophe-du-Bois ,SAINT CHRISTOPHE DU BOIS,49280,49269,52,47.033333,-0.95,2.09
+ Saint-Clément-de-la-Place ,SAINT CLEMENT DE LA,49370,49271,52,47.533333,-0.75,1.35
+ Saint-Clément-des-Levées ,SAINT CLEMENT DES LEVEES,49350,49272,52,47.333333,-0.183333,1.18
+ Saint-Crespin-sur-Moine ,SAINT CRESPIN SUR MOINE,49230,49273,52,47.1,-1.183333,2.06
+ Saint-Cyr-en-Bourg ,SAINT CYR EN BOURG,49260,49274,52,47.2,-0.05,1.61
+ Saint-Ellier ,SAINT ELLIER ,49320,49275,52,47.35,-0.383333,0.53
+ Saint-Florent-le-Vieil ,SAINT FLORENT LE VIEIL,49410,49276,52,47.366667,-1.016667,1.52
+ Saint-Georges-des-Sept-Voies ,SAINT GEORGES DES SEPT,49350,49279,52,47.35,-0.283333,1.31
+ Saint-Georges-du-Bois ,SAINT GEORGES DU BOIS,49250,49280,52,47.5,-0.216667,1.07
+ Saint-Georges-sur-Layon ,SAINT GEORGES SUR LAYON,49700,49282,52,47.2,-0.366667,1.13
+ Saint-Georges-sur-Loire ,SAINT GEORGES SUR LOIRE,49170,49283,52,47.416667,-0.766667,0.81
+ Saint-Germain-des-Prés ,SAINT GERMAIN DES PRES,49170,49284,52,47.416667,-0.833333,1.81
+ Saint-Germain-sur-Moine ,SAINT GERMAIN SUR MOINE,49230,49285,52,47.116667,-1.133333,1.9
+ Saint-Hilaire-du-Bois ,SAINT HILAIRE DU BOIS,49310,49286,52,47.133333,-0.55,1.51
+ Saint-Hilaire-Saint-Florent ,SAINT HILAIRE SAINT FLORENT,49400,49287,52,47.266667,-0.1,1.45
+ Saint-Jean-de-la-Croix ,SAINT JEAN DE LA,49130,49288,52,47.416667,-0.6,1.22
+ Saint-Jean-des-Mauvrets ,SAINT JEAN DES MAUVRETS,49320,49290,52,47.4,-0.45,1.46
+ Saint-Just-sur-Dive ,SAINT JUST SUR DIVE,49260,49291,52,47.183333,-0.083333,1.5
+ Saint-Lambert-du-Lattay ,SAINT LAMBERT DU LATTAY,49750,49292,52,47.3,-0.633333,0.66
+ Saint-Lambert-des-Levées ,SAINT LAMBERT DES LEVEES,49400,49293,52,47.283333,-0.083333,1.5
+ Saint-Lambert-la-Potherie ,SAINT LAMBERT LA POTHERIE,49070,49294,52,47.483333,-0.683333,1
+ Saint-Laurent-de-la-Plaine ,SAINT LAURENT DE LA,49290,49295,52,47.316667,-0.8,0.82
+ Saint-Laurent-des-Autels ,SAINT LAURENT DES AUTELS,49270,49296,52,47.283333,-1.183333,2.06
+ Saint-Laurent-du-Mottay ,SAINT LAURENT DU MOTTAY,49410,49297,52,47.35,-0.95,1.31
+ Saint-Léger-des-Bois ,SAINT LEGER DES BOIS,49170,49298,52,47.466667,-0.716667,0.75
+ Saint-Léger-sous-Cholet ,SAINT LEGER SOUS CHOLET,49280,49299,52,47.1,-0.916667,1.7
+ Saint-Lézin ,SAINT LEZIN ,49120,49300,52,47.25,-0.766667,0.84
+ Saint-Macaire-en-Mauges ,SAINT MACAIRE EN MAUGES,49450,49301,52,47.116667,-1,1.61
+ Saint-Macaire-du-Bois ,SAINT MACAIRE DU BOIS,49260,49302,52,47.116667,-0.266667,2.05
+ Saint-Martin-d'Arcé ,SAINT MARTIN D ARCE,49150,49303,52,47.566667,-0.083333,1.5
+ Saint-Martin-de-la-Place ,SAINT MARTIN DE LA,49160,49304,52,47.316667,-0.133333,1.48
+ Saint-Martin-du-Bois ,SAINT MARTIN DU BOIS,49500,49305,52,47.7,-0.75,1.76
+ Saint-Martin-du-Fouilloux ,SAINT MARTIN DU FOUILLOUX,49170,49306,52,47.433333,-0.7,0.5
+ Saint-Mélaine-sur-Aubance ,SAINT MELAINE SUR AUBANCE,49610,49308,52,47.366667,-0.5,0.51
+ Saint-Michel-et-Chanveaux ,SAINT MICHEL ET CHANVEAUX,49420,49309,52,47.683333,-1.133333,1.9
+ Saint-Paul-du-Bois ,SAINT PAUL DU BOIS,49310,49310,52,47.083333,-0.55,1.8
+ Saint-Philbert-du-Peuple ,SAINT PHILBERT DU PEUPLE,49160,49311,52,47.4,-0.05,1.61
+ Saint-Philbert-en-Mauges ,SAINT PHILBERT EN MAUGES,49600,49312,52,47.15,-1.016667,1.52
+ Saint-Pierre-Montlimart ,SAINT PIERRE MONTLIMART ,49110,49313,52,47.266667,-1.033333,1.58
+ Saint-Quentin-en-Mauges ,SAINT QUENTIN EN MAUGES,49110,49314,52,47.283333,-0.916667,1.51
+ Saint-Rémy-en-Mauges ,SAINT REMY EN MAUGES,49110,49316,52,47.266667,-1.066667,1.69
+ Saint-Rémy-la-Varenne ,SAINT REMY LA VARENNE,49250,49317,52,47.4,-0.316667,1.46
+ Saint-Saturnin-sur-Loire ,SAINT SATURNIN SUR LOIRE,49320,49318,52,47.4,-0.433333,1.25
+ Saint-Sauveur-de-Flée ,SAINT SAUVEUR DE FLEE,49500,49319,52,47.75,-0.783333,2.05
+ Saint-Sylvain-d'Anjou ,SAINT SYLVAIN D ANJOU,49480,49323,52,47.516667,-0.466667,0.7
+ La Salle-de-Vihiers ,LA SALLE DE VIHIERS,49310,49325,52,47.15,-0.633333,1.94
+ Sarrigné ,SARRIGNE ,49800,49326,52,47.5,-0.383333,1.86
+ Saulgé-l'Hôpital ,SAULGE L HOPITAL ,49320,49327,52,47.3,-0.366667,1
+ Saumur ,SAUMUR ,49400,49328,52,47.266667,-0.083333,1.5
+ Savennières ,SAVENNIERES ,49170,49329,52,47.383333,-0.65,1.07
+ Sceaux-d'anjou ,SCEAUX D ANJOU ,49330,49330,52,47.616667,-0.6,1.45
+ Segré ,SEGRE ,49500,49331,52,47.683333,-0.866667,1.66
+ La Séguinière ,LA SEGUINIERE ,49280,49332,52,47.066667,-0.933333,1.9
+ Seiches-sur-le-Loir ,SEICHES SUR LE LOIR,49140,49333,52,47.583333,-0.366667,1.09
+ Sermaise ,SERMAISE ,49140,49334,52,47.516667,-0.216667,1.47
+ Soeurdres ,SOEURDRES ,49330,49335,52,47.733333,-0.566667,1.95
+ Somloire ,SOMLOIRE ,49360,49336,52,47.033333,-0.6,2.09
+ Soucelles ,SOUCELLES ,49140,49337,52,47.566667,-0.416667,1.43
+ Soulaines-sur-Aubance ,SOULAINES SUR AUBANCE ,49610,49338,52,47.366667,-0.516667,0.23
+ Soulaire-et-Bourg ,SOULAIRE ET BOURG ,49460,49339,52,47.583333,-0.55,1.09
+ Souzay-Champigny ,SOUZAY CHAMPIGNY ,49400,49341,52,47.233333,-0.016667,1.72
+ Tancoigné ,TANCOIGNE ,49310,49342,52,47.166667,-0.416667,1.74
+ La Tessoualle ,LA TESSOUALLE ,49280,49343,52,47,-0.85,2.28
+ Thorigné-d'Anjou ,THORIGNE D ANJOU ,49220,49344,52,47.633333,-0.666667,1.37
+ Thouarcé ,THOUARCE ,49380,49345,52,47.266667,-0.5,0.74
+ Le Thoureil ,LE THOUREIL ,49350,49346,52,47.366667,-0.266667,1.1
+ Tiercé ,TIERCE ,49125,49347,52,47.616667,-0.466667,1.28
+ Tigné ,TIGNE ,49540,49348,52,47.2,-0.433333,1.13
+ Tillières ,TILLIERES ,49230,49349,52,47.15,-1.166667,2.01
+ Torfou ,TORFOU ,49660,49350,52,47.033333,-1.116667,2.09
+ La Tourlandry ,LA TOURLANDRY ,49120,49351,52,47.15,-0.7,1.41
+ Toutlemonde ,TOUTLEMONDE ,49360,49352,52,47.05,-0.766667,1.99
+ Trélazé ,TRELAZE ,49800,49353,52,47.45,-0.466667,1.49
+ Le Tremblay ,LE TREMBLAY ,49520,49354,52,47.683333,-1.016667,1.66
+ Trémentines ,TREMENTINES ,49340,49355,52,47.116667,-0.783333,1.61
+ Trémont ,TREMONT ,49310,49356,52,47.15,-0.45,1.41
+ Trèves-Cunault ,TREVES CUNAULT ,49350,49357,52,47.316667,-0.183333,1.26
+ Turquant ,TURQUANT ,49730,49358,52,47.216667,0.033333,1.88
+ Les Ulmes ,LES ULMES ,49700,49359,52,47.216667,-0.183333,1.5
+ La Varenne ,LA VARENNE ,49270,49360,52,47.316667,-1.316667,2.5
+ Varennes-sur-Loire ,VARENNES SUR LOIRE ,49730,49361,52,47.233333,0.05,1.93
+ Varrains ,VARRAINS ,49400,49362,52,47.216667,-0.066667,1.55
+ Vauchrétien ,VAUCHRETIEN ,49320,49363,52,47.333333,-0.483333,1.71
+ Vaudelnay ,VAUDELNAY ,49260,49364,52,47.15,-0.2,1.41
+ Les Verchers-sur-Layon ,LES VERCHERS SUR LAYON,49700,49365,52,47.15,-0.3,1.41
+ Vergonnes ,VERGONNES ,49420,49366,52,47.733333,-1.083333,1.95
+ Vern-d'Anjou ,VERN D ANJOU ,49220,49367,52,47.6,-0.833333,1.78
+ Vernantes ,VERNANTES ,49390,49368,52,47.4,0.05,1.93
+ Vernoil ,VERNOIL ,49390,49369,52,47.383333,0.083333,2.04
+ Verrie ,VERRIE ,49400,49370,52,47.266667,-0.183333,2.02
+ Vezins ,VEZINS ,49340,49371,52,47.116667,-0.716667,1.61
+ Le Vieil-Baugé ,LE VIEIL BAUGE ,49150,49372,52,47.533333,-0.116667,1.39
+ Vihiers ,VIHIERS ,49310,49373,52,47.15,-0.533333,1.41
+ Villebernier ,VILLEBERNIER ,49400,49374,52,47.25,-0.033333,1.66
+ Villedieu-la-Blouère ,VILLEDIEU LA BLOUERE ,49450,49375,52,47.15,-1.066667,1.69
+ Villemoisan ,VILLEMOISAN ,49370,49376,52,47.466667,-0.883333,1.35
+ Villevêque ,VILLEVEQUE ,49140,49377,52,47.55,-0.416667,1.42
+ Vivy ,VIVY ,49680,49378,52,47.333333,-0.066667,1.55
+ Le Voide ,LE VOIDE ,49310,49379,52,47.166667,-0.55,1.32
+ Vaulandry ,VAULANDRY ,49150,49380,52,47.6,-0.05,1.61
+ Yzernay ,YZERNAY ,49360,49381,52,47.016667,-0.7,2.18
+ Le Puy-Saint-Bonnet ,LE PUY SAINT BONNET,49300,49900,52,47,-0.9,2.28
+ Bel Air ,BEL AIR ,49520,49901,52,47.708333,-0.983333,-1
+ Épire ,EPIRE ,49170,49902,52,47.4,-0.633333,1.22
+ Sorges ,SORGES ,49130,49904,52,47.466667,-0.55,1.1
+ Acqueville ,ACQUEVILLE ,50440,50001,25,49.608333,-1.75,-1
+ Agneaux ,AGNEAUX ,50180,50002,25,49.116667,-1.1,1.33
+ Agon-Coutainville ,AGON COUTAINVILLE ,50230,50003,25,49.041667,-1.575,1.27
+ Airel ,AIREL ,50680,50004,25,49.216667,-1.083333,1.42
+ Amfreville ,AMFREVILLE ,50480,50005,25,49.416667,-1.383333,1.85
+ Amigny ,AMIGNY ,50620,50006,25,49.15,-1.183333,1.25
+ Ancteville ,ANCTEVILLE ,50200,50007,25,49.1,-1.483333,0.77
+ Angey ,ANGEY ,50530,50009,25,48.75,-1.5,1.17
+ Angoville-au-Plain ,ANGOVILLE AU PLAIN ,50480,50010,25,49.35,-1.25,1.09
+ Angoville-en-Saire ,ANGOVILLE EN SAIRE ,50330,50011,25,49.683333,-1.366667,1.98
+ Angoville-sur-Ay ,ANGOVILLE SUR AY ,50430,50012,25,49.25,-1.55,1.14
+ Anneville-en-Saire ,ANNEVILLE EN SAIRE ,50760,50013,25,49.633333,-1.283333,1.81
+ Anneville-sur-Mer ,ANNEVILLE SUR MER ,50560,50014,25,49.116667,-1.583333,1.32
+ Annoville ,ANNOVILLE ,50660,50015,25,48.966667,-1.533333,1.39
+ Appeville ,APPEVILLE ,50500,50016,25,49.316667,-1.333333,1.15
+ Ardevon ,ARDEVON ,50170,50017,25,48.6,-1.466667,1.68
+ Argouges ,ARGOUGES ,50240,50018,25,48.5,-1.4,2.02
+ Aucey-la-Plaine ,AUCEY LA PLAINE ,50170,50019,25,48.533333,-1.483333,1.91
+ Auderville ,AUDERVILLE ,50440,50020,25,49.71358,-1.93104,-1
+ Audouville-la-Hubert ,AUDOUVILLE LA HUBERT ,50480,50021,25,49.416667,-1.233333,1.08
+ Aumeville-Lestre ,AUMEVILLE LESTRE ,50630,50022,25,49.533333,-1.316667,1.47
+ Auvers ,AUVERS ,50500,50023,25,49.3,-1.316667,0.84
+ Auxais ,AUXAIS ,50500,50024,25,49.216667,-1.283333,1.04
+ Avranches ,AVRANCHES ,50300,50025,25,48.683333,-1.366667,1.4
+ Azeville ,AZEVILLE ,50310,50026,25,49.466667,-1.316667,1.25
+ Bacilly ,BACILLY ,50530,50027,25,48.7,-1.433333,1.34
+ La Baleine ,LA BALEINE ,50450,50028,25,48.916667,-1.316667,0.61
+ Barenton ,BARENTON ,50720,50029,25,48.6,-0.833333,2.79
+ Barfleur ,BARFLEUR ,50760,50030,25,49.666667,-1.25,1.92
+ La Barre-de-Semilly ,LA BARRE DE SEMILLY,50810,50032,25,49.116667,-1.033333,2.06
+ Beaubigny ,BEAUBIGNY ,50270,50033,25,49.433333,-1.8,2.5
+ Baudre ,BAUDRE ,50000,50034,25,49.083333,-1.066667,1.51
+ Baudreville ,BAUDREVILLE ,50250,50035,25,49.3,-1.633333,1.59
+ Baupte ,BAUPTE ,50500,50036,25,49.3,-1.35,1.31
+ La Bazoge ,LA BAZOGE ,50520,50037,25,48.65,-1.033333,1.69
+ Beauchamps ,BEAUCHAMPS ,50320,50038,25,48.833333,-1.366667,1.17
+ Beaucoudray ,BEAUCOUDRAY ,50420,50039,25,48.966667,-1.133333,1.42
+ Beauficel ,BEAUFICEL ,50150,50040,25,48.733333,-0.95,2.15
+ Beaumont-Hague ,BEAUMONT HAGUE ,50440,50041,25,49.666667,-1.85,2.78
+ Beauvoir ,BEAUVOIR ,50170,50042,25,48.6,-1.5,1.68
+ Bellefontaine ,BELLEFONTAINE ,50520,50043,25,48.683333,-0.966667,2.06
+ Belval ,BELVAL ,50210,50044,25,49.033333,-1.366667,0.84
+ Benoîtville ,BENOITVILLE ,50340,50045,25,49.533333,-1.783333,2.41
+ Bérigny ,BERIGNY ,50810,50046,25,49.15,-0.933333,2.24
+ La Beslière ,LA BESLIERE ,50320,50047,25,48.816667,-1.433333,0.95
+ Beslon ,BESLON ,50800,50048,25,48.85,-1.15,1.24
+ Besneville ,BESNEVILLE ,50390,50049,25,49.366667,-1.633333,2.18
+ Beuvrigny ,BEUVRIGNY ,50420,50050,25,48.966667,-1,1.88
+ Beuzeville-au-Plain ,BEUZEVILLE AU PLAIN ,50480,50051,25,49.433333,-1.3,1.13
+ Beuzeville-la-Bastille ,BEUZEVILLE LA BASTILLE ,50360,50052,25,49.35,-1.366667,1.88
+ Les Biards ,LES BIARDS ,50540,50053,25,48.583333,-1.183333,1.74
+ Biéville ,BIEVILLE ,50160,50054,25,49.083333,-0.883333,2.52
+ Biniville ,BINIVILLE ,50390,50055,25,49.433333,-1.483333,1.13
+ Bion ,BION ,50140,50056,25,48.616667,-0.916667,2.33
+ Biville ,BIVILLE ,50440,50057,25,49.616667,-1.816667,2.6
+ Blainville-sur-Mer ,BLAINVILLE SUR MER ,50560,50058,25,49.066667,-1.583333,1.52
+ Blosville ,BLOSVILLE ,50480,50059,25,49.366667,-1.283333,0.91
+ La Bloutière ,LA BLOUTIERE ,50800,50060,25,48.866667,-1.233333,0.78
+ Boisroger ,BOISROGER ,50200,50061,25,49.083333,-1.55,1.53
+ Boisyvon ,BOISYVON ,50800,50062,25,48.8,-1.133333,1.49
+ Bolleville ,BOLLEVILLE ,50250,50063,25,49.3,-1.566667,1.23
+ La Bonneville ,LA BONNEVILLE ,50360,50064,25,49.4,-1.45,1.02
+ Boucey ,BOUCEY ,50170,50065,25,48.533333,-1.5,1.91
+ La Boulouze ,LA BOULOUZE ,50220,50067,25,48.683333,-1.216667,2.01
+ Bourguenolles ,BOURGUENOLLES ,50800,50069,25,48.8,-1.3,1.45
+ Boutteville ,BOUTTEVILLE ,50480,50070,25,49.383333,-1.25,0.97
+ Braffais ,BRAFFAIS ,50870,50071,25,48.75,-1.266667,1.38
+ Brainville ,BRAINVILLE ,50200,50072,25,49.083333,-1.5,0.86
+ Branville-Hague ,BRANVILLE HAGUE ,50440,50073,25,49.65,-1.783333,2.41
+ Brécey ,BRECEY ,50670,50074,25,48.733333,-1.166667,1.78
+ Brectouville ,BRECTOUVILLE ,50160,50075,25,49.016667,-1.016667,1.79
+ Bréhal ,BREHAL ,50290,50076,25,48.9,-1.516667,0.95
+ Bretteville-sur-Ay ,BRETTEVILLE SUR AY ,50430,50078,25,49.266667,-1.633333,1.73
+ Breuville ,BREUVILLE ,50260,50079,25,49.533333,-1.683333,1.87
+ Brévands ,BREVANDS ,50500,50080,25,49.333333,-1.183333,1.34
+ Bréville-sur-Mer ,BREVILLE SUR MER ,50290,50081,25,48.866667,-1.55,1.18
+ Bricquebec ,BRICQUEBEC ,50260,50082,25,49.466667,-1.633333,1.59
+ Bricquebosq ,BRICQUEBOSQ ,50340,50083,25,49.533333,-1.716667,2.05
+ Bricqueville-la-Blouette ,BRICQUEVILLE LA BLOUETTE ,50200,50084,25,49.033333,-1.483333,0.77
+ Bricqueville-sur-Mer ,BRICQUEVILLE SUR MER ,50290,50085,25,48.916667,-1.516667,0.95
+ Brillevast ,BRILLEVAST ,50330,50086,25,49.633333,-1.4,1.81
+ Brix ,BRIX ,50700,50087,25,49.55,-1.583333,2.28
+ Brucheville ,BRUCHEVILLE ,50480,50089,25,49.366667,-1.2,1.67
+ Buais ,BUAIS ,50640,50090,25,48.516667,-0.966667,2.06
+ Cambernon ,CAMBERNON ,50200,50092,25,49.083333,-1.383333,1.71
+ Cametours ,CAMETOURS ,50570,50093,25,49.066667,-1.283333,1.47
+ Camprond ,CAMPROND ,50210,50094,25,49.083333,-1.35,1.39
+ Canisy ,CANISY ,50860,50095,25,49.083333,-1.166667,1.45
+ Canville-la-Rocque ,CANVILLE LA ROCQUE ,50580,50097,25,49.35,-1.633333,1.59
+ Carantilly ,CARANTILLY ,50570,50098,25,49.066667,-1.233333,1.31
+ Carentan ,CARENTAN ,50500,50099,25,49.3,-1.233333,0.68
+ Carnet ,CARNET ,50240,50100,25,48.516667,-1.35,1.96
+ Carneville ,CARNEVILLE ,50330,50101,25,49.666667,-1.45,1.92
+ Carolles ,CAROLLES ,50740,50102,25,48.75,-1.55,1.17
+ Carquebut ,CARQUEBUT ,50480,50103,25,49.366667,-1.333333,1.07
+ Catteville ,CATTEVILLE ,50390,50105,25,49.35,-1.566667,1.3
+ Cavigny ,CAVIGNY ,50620,50106,25,49.2,-1.1,1.5
+ Catz ,CATZ ,50500,50107,25,49.316667,-1.183333,1.23
+ Céaux ,CEAUX ,50220,50108,25,48.633333,-1.383333,1.57
+ Cérences ,CERENCES ,50510,50109,25,48.916667,-1.433333,0.61
+ Cerisy-la-Forêt ,CERISY LA FORET ,50680,50110,25,49.2,-0.933333,2.24
+ Cerisy-la-Salle ,CERISY LA SALLE ,50210,50111,25,49.033333,-1.283333,0.96
+ La Chaise-Beaudoin ,LA CHAISE BEAUDOIN ,50370,50112,25,48.766667,-1.233333,1.32
+ Chalandrey ,CHALANDREY ,50540,50113,25,48.616667,-1.216667,1.62
+ Les Chambres ,LES CHAMBRES ,50320,50114,25,48.766667,-1.383333,1.13
+ Champcervon ,CHAMPCERVON ,50320,50115,25,48.783333,-1.4,1.06
+ Champcey ,CHAMPCEY ,50530,50116,25,48.733333,-1.45,1.23
+ Champeaux ,CHAMPEAUX ,50530,50117,25,48.733333,-1.533333,1.49
+ Champrépus ,CHAMPREPUS ,50800,50118,25,48.833333,-1.316667,1.69
+ Les Champs-de-Losque ,LES CHAMPS DE LOSQUE,50620,50119,25,49.183333,-1.233333,1.31
+ Chanteloup ,CHANTELOUP ,50510,50120,25,48.9,-1.483333,1.02
+ La Chapelle-Cécelin ,LA CHAPELLE CECELIN ,50800,50121,25,48.816667,-1.166667,0.96
+ La Chapelle-du-Fest ,LA CHAPELLE DU FEST,50160,50122,25,49.066667,-0.966667,2.06
+ La Chapelle-en-Juger ,LA CHAPELLE EN JUGER,50570,50123,25,49.133333,-1.216667,0.85
+ La Chapelle-Urée ,LA CHAPELLE UREE ,50370,50124,25,48.666667,-1.15,1.54
+ Chasseguey ,CHASSEGUEY ,50520,50125,25,48.65,-1.083333,1.51
+ Chavoy ,CHAVOY ,50870,50126,25,48.733333,-1.333333,1.23
+ Chef-du-Pont ,CHEF DU PONT ,50480,50127,25,49.383333,-1.333333,0.97
+ Le Chefresne ,LE CHEFRESNE ,50410,50128,25,48.9,-1.15,1.06
+ Cherbourg ,CHERBOURG ,50100,50129,25,49.65,-1.65,1.87
+ Chérencé-le-Roussel ,CHERENCE LE ROUSSEL ,50520,50131,25,48.7,-1.016667,1.79
+ Les Chéris ,LES CHERIS ,50220,50132,25,48.633333,-1.25,1.57
+ Chèvreville ,CHEVREVILLE ,50600,50133,25,48.616667,-1.05,1.62
+ Chevry ,CHEVRY ,50420,50134,25,48.966667,-1.116667,1.24
+ Clitourps ,CLITOURPS ,50330,50135,25,49.65,-1.366667,1.87
+ Coigny ,COIGNY ,50250,50136,25,49.316667,-1.383333,1.64
+ La Colombe ,LA COLOMBE ,50800,50137,25,48.866667,-1.183333,0.94
+ Colomby ,COLOMBY ,50700,50138,25,49.45,-1.483333,1.19
+ Condé-sur-Vire ,CONDE SUR VIRE ,50890,50139,25,49.05,-1.033333,1.69
+ Contrières ,CONTRIERES ,50660,50140,25,48.983333,-1.433333,1.23
+ Cormeray ,CORMERAY ,50170,50141,25,48.55,-1.45,1.85
+ Cosqueville ,COSQUEVILLE ,50330,50142,25,49.7,-1.4,2.04
+ Coudeville-sur-Mer ,COUDEVILLE SUR MER ,50290,50143,25,48.883333,-1.516667,0.95
+ Coulouvray-Boisbenâtre ,COULOUVRAY BOISBENATRE ,50670,50144,25,48.783333,-1.1,1.33
+ Courcy ,COURCY ,50200,50145,25,49.05,-1.4,1.4
+ Courtils ,COURTILS ,50220,50146,25,48.633333,-1.433333,1.76
+ Coutances ,COUTANCES ,50200,50147,25,49.05,-1.433333,0.8
+ Couville ,COUVILLE ,50690,50149,25,49.55,-1.683333,1.87
+ Crasville ,CRASVILLE ,50630,50150,25,49.55,-1.333333,1.53
+ Créances ,CREANCES ,50710,50151,25,49.2,-1.566667,1.23
+ Les Cresnays ,LES CRESNAYS ,50370,50152,25,48.716667,-1.133333,1.31
+ Cretteville ,CRETTEVILLE ,50250,50153,25,49.35,-1.383333,1.72
+ La Croix-Avranchin ,LA CROIX AVRANCHIN ,50240,50154,25,48.55,-1.383333,1.85
+ Crollon ,CROLLON ,50220,50155,25,48.583333,-1.383333,1.74
+ Crosville-sur-Douve ,CROSVILLE SUR DOUVE ,50360,50156,25,49.383333,-1.483333,1.71
+ Curey ,CUREY ,50170,50157,25,48.566667,-1.466667,1.79
+ Cuves ,CUVES ,50670,50158,25,48.716667,-1.116667,1.29
+ Dangy ,DANGY ,50750,50159,25,49.05,-1.216667,1.67
+ Denneville ,DENNEVILLE ,50580,50160,25,49.316667,-1.65,1.68
+ Le Dézert ,LE DEZERT ,50620,50161,25,49.2,-1.166667,0.96
+ Digosville ,DIGOSVILLE ,50110,50162,25,49.633333,-1.533333,1.81
+ Digulleville ,DIGULLEVILLE ,50440,50163,25,49.7,-1.866667,2.87
+ Domjean ,DOMJEAN ,50420,50164,25,48.983333,-1.033333,1.69
+ Donville-les-Bains ,DONVILLE LES BAINS ,50350,50165,25,48.85,-1.566667,1.23
+ Doville ,DOVILLE ,50250,50166,25,49.333333,-1.533333,1.04
+ Ducey ,DUCEY ,50220,50168,25,48.616667,-1.3,1.62
+ Écausseville ,ECAUSSEVILLE ,50310,50169,25,49.466667,-1.366667,1.25
+ Écoqueneauville ,ECOQUENEAUVILLE ,50480,50170,25,49.4,-1.283333,1.02
+ Éculleville ,ECULLEVILLE ,50440,50171,25,49.683333,-1.816667,2.6
+ Émondeville ,EMONDEVILLE ,50310,50172,25,49.466667,-1.333333,1.25
+ Équilly ,EQUILLY ,50320,50174,25,48.833333,-1.383333,0.89
+ Éroudeville ,EROUDEVILLE ,50310,50175,25,49.483333,-1.383333,1.3
+ L'Étang-Bertrand ,L ETANG BERTRAND ,50260,50176,25,49.466667,-1.558333,1.25
+ Étienville ,ETIENVILLE ,50360,50177,25,49.383333,-1.416667,0.97
+ Fermanville ,FERMANVILLE ,50840,50178,25,49.683333,-1.45,1.98
+ Fervaches ,FERVACHES ,50420,50180,25,49,-1.083333,1.42
+ Feugères ,FEUGERES ,50190,50181,25,49.15,-1.316667,1.49
+ La Feuillie ,LA FEUILLIE ,50190,50182,25,49.183333,-1.483333,1.66
+ Fierville-les-Mines ,FIERVILLE LES MINES ,50580,50183,25,49.383333,-1.666667,1.77
+ Flamanville ,FLAMANVILLE ,50340,50184,25,49.533333,-1.866667,2.87
+ Fleury ,FLEURY ,50800,50185,25,48.85,-1.283333,1.2
+ Flottemanville ,FLOTTEMANVILLE ,50700,50186,25,49.483333,-1.45,1.3
+ Flottemanville-Hague ,FLOTTEMANVILLE HAGUE ,50690,50187,25,49.616667,-1.716667,2.05
+ Folligny ,FOLLIGNY ,50320,50188,25,48.816667,-1.416667,0.95
+ Fontenay ,FONTENAY ,50140,50189,25,48.616667,-1.016667,1.79
+ Fontenay-sur-Mer ,FONTENAY SUR MER ,50310,50190,25,49.483333,-1.316667,1.3
+ Foucarville ,FOUCARVILLE ,50480,50191,25,49.45,-1.25,1.19
+ Fourneaux ,FOURNEAUX ,50420,50192,25,48.966667,-1.033333,1.69
+ Le Fresne-Poret ,LE FRESNE PORET ,50850,50193,25,48.7,-0.833333,2.79
+ Fresville ,FRESVILLE ,50310,50194,25,49.433333,-1.35,1.27
+ Gathemo ,GATHEMO ,50150,50195,25,48.766667,-0.966667,2.06
+ Gatteville-le-Phare ,GATTEVILLE LE PHARE ,50760,50196,25,49.683333,-1.283333,1.98
+ Gavray ,GAVRAY ,50450,50197,25,48.916667,-1.35,0.64
+ Geffosses ,GEFFOSSES ,50560,50198,25,49.133333,-1.55,1.52
+ Genêts ,GENETS ,50530,50199,25,48.683333,-1.483333,1.4
+ Ger ,GER ,50850,50200,25,48.683333,-0.8,2.97
+ Gerville-la-Forêt ,GERVILLE LA FORET ,50250,50201,25,49.266667,-1.483333,0.77
+ Giéville ,GIEVILLE ,50160,50202,25,49.016667,-0.983333,1.97
+ La Glacerie ,LA GLACERIE ,50470,50203,25,49.6,-1.566667,1.7
+ Glatigny ,GLATIGNY ,50250,50204,25,49.283333,-1.633333,1.59
+ La Godefroy ,LA GODEFROY ,50300,50205,25,48.683333,-1.3,1.4
+ La Gohannière ,LA GOHANNIERE ,50300,50206,25,48.7,-1.25,2.41
+ Golleville ,GOLLEVILLE ,50390,50207,25,49.433333,-1.516667,1.13
+ Gonfreville ,GONFREVILLE ,50190,50208,25,49.233333,-1.4,0.58
+ Gonneville ,GONNEVILLE ,50330,50209,25,49.633333,-1.466667,1.81
+ Gorges ,GORGES ,50190,50210,25,49.266667,-1.4,1.13
+ Gouberville ,GOUBERVILLE ,50330,50211,25,49.683333,-1.316667,1.98
+ Gourbesville ,GOURBESVILLE ,50480,50212,25,49.416667,-1.416667,2.46
+ Gourfaleur ,GOURFALEUR ,50750,50213,25,49.083333,-1.116667,1.24
+ Gouvets ,GOUVETS ,50420,50214,25,48.933333,-1.1,1.33
+ Gouville-sur-Mer ,GOUVILLE SUR MER ,50560,50215,25,49.1,-1.583333,1.32
+ Graignes ,GRAIGNES ,50620,50216,25,49.25,-1.2,0.91
+ Le Grand-Celland ,LE GRAND CELLAND ,50370,50217,25,48.683333,-1.183333,1.4
+ Granville ,GRANVILLE ,50400,50218,25,48.833333,-1.6,1.41
+ Gratot ,GRATOT ,50200,50219,25,49.066667,-1.483333,0.77
+ Gréville-Hague ,GREVILLE HAGUE ,50440,50220,25,49.666667,-1.8,2.5
+ Grimesnil ,GRIMESNIL ,50450,50221,25,48.95,-1.35,1.16
+ Grosville ,GROSVILLE ,50340,50222,25,49.5,-1.75,2.23
+ Guilberville ,GUILBERVILLE ,50160,50224,25,48.983333,-0.95,2.15
+ Le Guislain ,LE GUISLAIN ,50410,50225,25,48.966667,-1.233333,1.8
+ Le Ham ,LE HAM ,50310,50227,25,49.45,-1.416667,1.66
+ Hambye ,HAMBYE ,50450,50228,25,48.95,-1.266667,1.61
+ Hamelin ,HAMELIN ,50730,50229,25,48.55,-1.216667,1.85
+ Hardinvast ,HARDINVAST ,50690,50230,25,49.583333,-1.65,1.68
+ Hauteville-sur-Mer ,HAUTEVILLE SUR MER ,50590,50231,25,48.983333,-1.533333,1.04
+ Hautteville-Bocage ,HAUTTEVILLE BOCAGE ,50390,50233,25,49.433333,-1.466667,1.2
+ La Haye-d'Ectot ,LA HAYE D ECTOT,50270,50235,25,49.383333,-1.733333,2.14
+ La Haye-du-Puits ,LA HAYE DU PUITS,50250,50236,25,49.3,-1.55,1.14
+ La Haye-Pesnel ,LA HAYE PESNEL ,50320,50237,25,48.8,-1.4,1
+ Héauville ,HEAUVILLE ,50340,50238,25,49.583333,-1.8,2.5
+ Hébécrevon ,HEBECREVON ,50180,50239,25,49.133333,-1.166667,0.96
+ Helleville ,HELLEVILLE ,50340,50240,25,49.55,-1.783333,2.41
+ Hémevez ,HEMEVEZ ,50700,50241,25,49.466667,-1.433333,1.25
+ Herqueville ,HERQUEVILLE ,50440,50242,25,49.666667,-1.883333,2.96
+ Heugueville-sur-Sienne ,HEUGUEVILLE SUR SIENNE ,50200,50243,25,49.033333,-1.516667,1.07
+ Hérenguerville ,HERENGUERVILLE ,50660,50244,25,48.983333,-1.5,0.86
+ Heussé ,HEUSSE ,50640,50245,25,48.5,-0.9,2.42
+ Hiesville ,HIESVILLE ,50480,50246,25,49.366667,-1.266667,0.91
+ Hocquigny ,HOCQUIGNY ,50320,50247,25,48.816667,-1.416667,0.95
+ Le Hommet-d'Arthenay ,LE HOMMET D ARTHENAY,50620,50248,25,49.183333,-1.183333,0.87
+ Houesville ,HOUESVILLE ,50480,50249,25,49.35,-1.283333,0.88
+ Houtteville ,HOUTTEVILLE ,50250,50250,25,49.333333,-1.366667,1.87
+ Huberville ,HUBERVILLE ,50700,50251,25,49.516667,-1.416667,1.42
+ Hudimesnil ,HUDIMESNIL ,50510,50252,25,48.866667,-1.483333,1.14
+ Huisnes-sur-Mer ,HUISNES SUR MER ,50170,50253,25,48.6,-1.45,1.68
+ Husson ,HUSSON ,50640,50254,25,48.566667,-0.883333,2.52
+ Hyenville ,HYENVILLE ,50660,50255,25,49,-1.466667,0.68
+ Isigny-le-Buat ,ISIGNY LE BUAT ,50540,50256,25,48.616667,-1.166667,1.62
+ Jobourg ,JOBOURG ,50440,50257,25,49.683333,-1.90375,-1
+ Joganville ,JOGANVILLE ,50310,50258,25,49.466667,-1.35,1.25
+ Juilley ,JUILLEY ,50220,50259,25,48.6,-1.35,1.68
+ Juvigny-le-Tertre ,JUVIGNY LE TERTRE ,50520,50260,25,48.683333,-1.016667,1.79
+ Lamberville ,LAMBERVILLE ,50160,50261,25,49.083333,-0.9,2.42
+ La Lande-d'Airou ,LA LANDE D AIROU,50800,50262,25,48.816667,-1.283333,1.12
+ Lapenty ,LAPENTY ,50600,50263,25,48.583333,-1,1.88
+ Laulne ,LAULNE ,50430,50265,25,49.25,-1.466667,1.57
+ Lengronne ,LENGRONNE ,50510,50266,25,48.933333,-1.383333,1.41
+ Lessay ,LESSAY ,50430,50267,25,49.216667,-1.533333,1.04
+ Lestre ,LESTRE ,50310,50268,25,49.516667,-1.333333,1.42
+ Liesville-sur-Douve ,LIESVILLE SUR DOUVE ,50480,50269,25,49.35,-1.333333,1.26
+ Lieusaint ,LIEUSAINT ,50700,50270,25,49.466667,-1.466667,1.25
+ Lingeard ,LINGEARD ,50670,50271,25,48.733333,-1.033333,1.69
+ Lingreville ,LINGREVILLE ,50660,50272,25,48.95,-1.533333,1.57
+ Lithaire ,LITHAIRE ,50250,50273,25,49.3,-1.483333,0.77
+ Les Loges-Marchis ,LES LOGES MARCHIS ,50600,50274,25,48.55,-1.1,1.85
+ Les Loges-sur-Brécey ,LES LOGES SUR BRECEY,50370,50275,25,48.766667,-1.166667,1.13
+ Lolif ,LOLIF ,50530,50276,25,48.733333,-1.383333,1.79
+ Longueville ,LONGUEVILLE ,50290,50277,25,48.85,-1.55,1.58
+ Le Loreur ,LE LOREUR ,50510,50278,25,48.866667,-1.433333,0.78
+ Le Lorey ,LE LOREY ,50570,50279,25,49.1,-1.3,1.26
+ Lozon ,LOZON ,50570,50280,25,49.133333,-1.266667,0.51
+ La Lucerne-d'Outremer ,LA LUCERNE D OUTREMER,50320,50281,25,48.783333,-1.433333,1.06
+ Le Luot ,LE LUOT ,50870,50282,25,48.75,-1.316667,1.17
+ La Luzerne ,LA LUZERNE ,50680,50283,25,49.133333,-1.05,1.6
+ Macey ,MACEY ,50170,50284,25,48.566667,-1.433333,1.79
+ Magneville ,MAGNEVILLE ,50260,50285,25,49.45,-1.55,1.42
+ La Mancellière ,LA MANCELLIERE ,50540,50286,25,48.65,-1.166667,1.51
+ La Mancellière-sur-Vire ,LA MANCELLIERE SUR VIRE,50750,50287,25,49.066667,-1.066667,1.66
+ Marcey-les-Grèves ,MARCEY LES GREVES ,50300,50288,25,48.7,-1.383333,1.34
+ Marchésieux ,MARCHESIEUX ,50190,50289,25,49.183333,-1.283333,1.8
+ Margueray ,MARGUERAY ,50410,50291,25,48.9,-1.133333,1.15
+ Marigny ,MARIGNY ,50570,50292,25,49.1,-1.25,0.51
+ Martigny ,MARTIGNY ,50600,50293,25,48.616667,-1.116667,1.62
+ Martinvast ,MARTINVAST ,50690,50294,25,49.6,-1.666667,1.77
+ Maupertuis ,MAUPERTUIS ,50410,50295,25,48.95,-1.2,1.09
+ Maupertus-sur-Mer ,MAUPERTUS SUR MER ,50330,50296,25,49.666667,-1.483333,1.95
+ La Meauffe ,LA MEAUFFE ,50880,50297,25,49.183333,-1.116667,1.24
+ Méautis ,MEAUTIS ,50500,50298,25,49.283333,-1.3,0.63
+ Le Mesnil ,LE MESNIL ,50580,50299,25,49.366667,-1.691667,-1
+ Le Mesnil-Adelée ,LE MESNIL ADELEE ,50520,50300,25,48.7,-1.066667,1.51
+ Le Mesnil-Amand ,LE MESNIL AMAND ,50450,50301,25,48.883333,-1.366667,1.06
+ Le Mesnil-Amey ,LE MESNIL AMEY ,50570,50302,25,49.1,-1.2,1.26
+ Le Mesnil-Angot ,LE MESNIL ANGOT ,50620,50303,25,49.216667,-1.2,0.78
+ Le Mesnil-Aubert ,LE MESNIL AUBERT ,50510,50304,25,48.95,-1.416667,1.29
+ Le Mesnil-au-Val ,LE MESNIL AU VAL,50110,50305,25,49.6,-1.533333,1.7
+ Le Mesnil-Boeufs ,LE MESNIL BOEUFS ,50540,50306,25,48.633333,-1.166667,1.57
+ Le Mesnil-Bonant ,LE MESNIL BONANT ,50450,50307,25,48.9,-1.3,0.67
+ Le Mesnilbus ,LE MESNILBUS ,50490,50308,25,49.133333,-1.35,1.16
+ Le Mesnil-Drey ,LE MESNIL DREY ,50320,50309,25,48.816667,-1.416667,0.95
+ Le Mesnil-Eury ,LE MESNIL EURY ,50570,50310,25,49.15,-1.233333,0.81
+ Le Mesnil-Garnier ,LE MESNIL GARNIER ,50450,50311,25,48.866667,-1.3,1
+ Le Mesnil-Gilbert ,LE MESNIL GILBERT ,50670,50312,25,48.716667,-1.066667,1.51
+ Le Mesnil-Herman ,LE MESNIL HERMAN ,50750,50313,25,49.033333,-1.15,1.06
+ Le Mesnil-Hue ,LE MESNIL HUE ,50450,50314,25,48.883333,-1.3,0.72
+ Le Mesnillard ,LE MESNILLARD ,50600,50315,25,48.633333,-1.083333,1.57
+ Le Mesnil-Opac ,LE MESNIL OPAC ,50860,50316,25,49.016667,-1.1,1.33
+ Le Mesnil-Ozenne ,LE MESNIL OZENNE ,50220,50317,25,48.666667,-1.233333,1.65
+ Le Mesnil-Rainfray ,LE MESNIL RAINFRAY ,50520,50318,25,48.666667,-1.05,1.6
+ Le Mesnil-Raoult ,LE MESNIL RAOULT ,50420,50319,25,49.033333,-1.066667,1.51
+ Le Mesnil-Rogues ,LE MESNIL ROGUES ,50450,50320,25,48.866667,-1.383333,1.57
+ Le Mesnil-Rouxelin ,LE MESNIL ROUXELIN ,50000,50321,25,49.15,-1.083333,1.42
+ Le Mesnil-Thébault ,LE MESNIL THEBAULT ,50540,50322,25,48.616667,-1.2,1.62
+ Le Mesnil-Tôve ,LE MESNIL TOVE ,50520,50323,25,48.7,-1.016667,1.79
+ Le Mesnil-Véneron ,LE MESNIL VENERON ,50620,50324,25,49.233333,-1.166667,0.96
+ Le Mesnil-Vigot ,LE MESNIL VIGOT ,50570,50325,25,49.15,-1.283333,1.06
+ Le Mesnil-Villeman ,LE MESNIL VILLEMAN ,50450,50326,25,48.866667,-1.333333,0.87
+ La Meurdraquière ,LA MEURDRAQUIERE ,50510,50327,25,48.85,-1.4,1.15
+ Millières ,MILLIERES ,50190,50328,25,49.183333,-1.466667,1.38
+ Milly ,MILLY ,50600,50329,25,48.6,-1.016667,1.79
+ Mobecq ,MOBECQ ,50250,50330,25,49.266667,-1.516667,0.95
+ Moidrey ,MOIDREY ,50170,50331,25,48.566667,-1.5,1.79
+ Les Moitiers-d'Allonne ,LES MOITIERS D ALLONNE,50270,50332,25,49.4,-1.783333,2.41
+ Les Moitiers-en-Bauptois ,LES MOITIERS EN BAUPTOIS,50360,50333,25,49.366667,-1.433333,0.91
+ Montabot ,MONTABOT ,50410,50334,25,48.933333,-1.116667,1.24
+ Montaigu-les-Bois ,MONTAIGU LES BOIS ,50450,50336,25,48.9,-1.283333,0.9
+ Montanel ,MONTANEL ,50240,50337,25,48.5,-1.416667,2.02
+ Montbray ,MONTBRAY ,50410,50338,25,48.883333,-1.1,1.33
+ Montchaton ,MONTCHATON ,50660,50339,25,49.016667,-1.5,0.97
+ Montcuit ,MONTCUIT ,50490,50340,25,49.116667,-1.333333,1.61
+ Montebourg ,MONTEBOURG ,50310,50341,25,49.483333,-1.383333,1.3
+ Montfarville ,MONTFARVILLE ,50760,50342,25,49.65,-1.266667,1.87
+ Montgardon ,MONTGARDON ,50250,50343,25,49.283333,-1.566667,1.23
+ Montgothier ,MONTGOTHIER ,50540,50344,25,48.65,-1.2,1.51
+ Monthuchon ,MONTHUCHON ,50200,50345,25,49.083333,-1.416667,1.09
+ Montjoie-Saint-Martin ,MONTJOIE SAINT MARTIN ,50240,50347,25,48.533333,-1.3,1.91
+ Montmartin-en-Graignes ,MONTMARTIN EN GRAIGNES ,50620,50348,25,49.283333,-1.15,1.5
+ Montmartin-sur-Mer ,MONTMARTIN SUR MER ,50590,50349,25,48.983333,-1.516667,1.02
+ Montpinchon ,MONTPINCHON ,50210,50350,25,49.016667,-1.316667,0.27
+ Montrabot ,MONTRABOT ,50810,50351,25,49.116667,-0.883333,2.52
+ Montreuil-sur-Lozon ,MONTREUIL SUR LOZON ,50570,50352,25,49.133333,-1.233333,0.6
+ Montsurvent ,MONTSURVENT ,50200,50354,25,49.116667,-1.5,1.1
+ Montviron ,MONTVIRON ,50530,50355,25,48.733333,-1.416667,1.23
+ Moon-sur-Elle ,MOON SUR ELLE ,50680,50356,25,49.2,-1.05,1.6
+ Morigny ,MORIGNY ,50410,50357,25,48.883333,-1.066667,1.75
+ Morsalines ,MORSALINES ,50630,50358,25,49.566667,-1.3,1.58
+ Mortain ,MORTAIN ,50140,50359,25,48.65,-0.933333,2.24
+ Morville ,MORVILLE ,50700,50360,25,49.483333,-1.5,1.3
+ La Mouche ,LA MOUCHE ,50320,50361,25,48.8,-1.35,1.38
+ Moulines ,MOULINES ,50600,50362,25,48.541667,-1.033333,-1
+ Moyon ,MOYON ,50860,50363,25,49,-1.116667,1.24
+ Muneville-le-Bingard ,MUNEVILLE LE BINGARD ,50490,50364,25,49.133333,-1.483333,1.93
+ Muneville-sur-Mer ,MUNEVILLE SUR MER ,50290,50365,25,48.933333,-1.483333,1.8
+ Naftel ,NAFTEL ,50540,50367,25,48.616667,-1.133333,1.62
+ Nay ,NAY ,50190,50368,25,49.233333,-1.366667,0.65
+ Négreville ,NEGREVILLE ,50260,50369,25,49.483333,-1.55,1.34
+ Néhou ,NEHOU ,50390,50370,25,49.416667,-1.533333,1.08
+ Le Neufbourg ,LE NEUFBOURG ,50140,50371,25,48.65,-0.95,2.15
+ Neufmesnil ,NEUFMESNIL ,50250,50372,25,49.316667,-1.533333,1.04
+ Neuville-au-Plain ,NEUVILLE AU PLAIN ,50480,50373,25,49.433333,-1.333333,1.13
+ Neuville-en-Beaumont ,NEUVILLE EN BEAUMONT ,50250,50374,25,49.35,-1.6,1.41
+ Néville-sur-Mer ,NEVILLE SUR MER ,50330,50375,25,49.683333,-1.333333,1.98
+ Nicorps ,NICORPS ,50200,50376,25,49.033333,-1.416667,1.22
+ Noirpalu ,NOIRPALU ,50320,50377,25,48.783333,-1.333333,1.88
+ Notre-Dame-de-Cenilly ,NOTRE DAME DE CENILLY,50210,50378,25,49,-1.25,1.64
+ Notre-Dame-de-Livoye ,NOTRE DAME DE LIVOYE,50370,50379,25,48.75,-1.2,1.17
+ Notre-Dame-d'Elle ,NOTRE DAME D ELLE,50810,50380,25,49.116667,-0.966667,2.06
+ Notre-Dame-du-Touchet ,NOTRE DAME DU TOUCHET,50140,50381,25,48.583333,-0.95,2.15
+ Nouainville ,NOUAINVILLE ,50690,50382,25,49.616667,-1.683333,1.87
+ Octeville ,OCTEVILLE ,50130,50383,25,49.616667,-1.65,1.75
+ Omonville-la-Petite ,OMONVILLE LA PETITE ,50440,50385,25,49.7,-1.883333,2.96
+ Omonville-la-Rogue ,OMONVILLE LA ROGUE ,50440,50386,25,49.7,-1.85,2.78
+ Orglandes ,ORGLANDES ,50390,50387,25,49.416667,-1.45,1.4
+ Orval ,ORVAL ,50660,50388,25,49.016667,-1.466667,0.93
+ Ouville ,OUVILLE ,50210,50389,25,49.016667,-1.366667,0.78
+ Ozeville ,OZEVILLE ,50310,50390,25,49.5,-1.333333,1.36
+ Parigny ,PARIGNY ,50600,50391,25,48.6,-1.083333,1.68
+ Les Pas ,LES PAS ,50170,50392,25,48.583333,-1.483333,1.74
+ Percy ,PERCY ,50410,50393,25,48.916667,-1.183333,0.87
+ Périers ,PERIERS ,50190,50394,25,49.183333,-1.416667,0.58
+ La Pernelle ,LA PERNELLE ,50630,50395,25,49.616667,-1.3,1.75
+ Les Perques ,LES PERQUES ,50260,50396,25,49.45,-1.666667,1.77
+ Perriers-en-Beauficel ,PERRIERS EN BEAUFICEL ,50150,50397,25,48.733333,-1,1.88
+ Le Perron ,LE PERRON ,50160,50398,25,49.05,-0.9,2.42
+ Le Petit-Celland ,LE PETIT CELLAND ,50370,50399,25,48.7,-1.216667,1.34
+ Picauville ,PICAUVILLE ,50360,50400,25,49.383333,-1.4,0.97
+ Pierreville ,PIERREVILLE ,50340,50401,25,49.483333,-1.783333,2.41
+ Les Pieux ,LES PIEUX ,50340,50402,25,49.516667,-1.8,2.5
+ Pirou ,PIROU ,50770,50403,25,49.183333,-1.583333,1.32
+ Placy-Montaigu ,PLACY MONTAIGU ,50160,50404,25,49.033333,-0.9,2.42
+ Plomb ,PLOMB ,50870,50406,25,48.733333,-1.3,1.23
+ Poilley ,POILLEY ,50220,50407,25,48.616667,-1.316667,1.62
+ Pontaubault ,PONTAUBAULT ,50220,50408,25,48.633333,-1.35,1.57
+ Pont-Hébert ,PONT HEBERT ,50880,50409,25,49.166667,-1.133333,1.15
+ Pontorson ,PONTORSON ,50170,50410,25,48.55,-1.516667,1.85
+ Ponts ,PONTS ,50300,50411,25,48.7,-1.35,1.34
+ Portbail ,PORTBAIL ,50580,50412,25,49.333333,-1.7,1.96
+ Précey ,PRECEY ,50220,50413,25,48.6,-1.383333,1.68
+ Précorbin ,PRECORBIN ,50810,50414,25,49.083333,-0.95,2.15
+ Prétot-Sainte-Suzanne ,PRETOT SAINTE SUZANNE ,50250,50415,25,49.316667,-1.416667,1.22
+ Querqueville ,QUERQUEVILLE ,50460,50416,25,49.666667,-1.7,1.96
+ Quettehou ,QUETTEHOU ,50630,50417,25,49.6,-1.3,1.7
+ Quettetot ,QUETTETOT ,50260,50418,25,49.483333,-1.666667,1.77
+ Quettreville-sur-Sienne ,QUETTREVILLE SUR SIENNE ,50660,50419,25,48.966667,-1.466667,0.68
+ Quibou ,QUIBOU ,50750,50420,25,49.066667,-1.2,1.33
+ Quinéville ,QUINEVILLE ,50310,50421,25,49.516667,-1.3,1.59
+ Raids ,RAIDS ,50500,50422,25,49.216667,-1.35,1.63
+ Rampan ,RAMPAN ,50000,50423,25,49.133333,-1.15,1.8
+ Rancoudray ,RANCOUDRAY ,50140,50424,25,48.65,-0.866667,2.61
+ Rauville-la-Bigot ,RAUVILLE LA BIGOT ,50260,50425,25,49.516667,-1.683333,1.87
+ Rauville-la-Place ,RAUVILLE LA PLACE ,50390,50426,25,49.383333,-1.5,0.97
+ Ravenoville ,RAVENOVILLE ,50480,50427,25,49.466667,-1.266667,1.31
+ Reffuveille ,REFFUVEILLE ,50520,50428,25,48.666667,-1.116667,1.87
+ Regnéville-sur-Mer ,REGNEVILLE SUR MER ,50590,50429,25,49.016667,-1.55,1.41
+ Reigneville-Bocage ,REIGNEVILLE BOCAGE ,50390,50430,25,49.4,-1.466667,1.07
+ Remilly-sur-Lozon ,REMILLY SUR LOZON ,50570,50431,25,49.183333,-1.25,1.5
+ Réthôville ,RETHOVILLE ,50330,50432,25,49.7,-1.35,2.04
+ Réville ,REVILLE ,50760,50433,25,49.616667,-1.25,1.75
+ La Rochelle-Normande ,LA ROCHELLE NORMANDE ,50530,50434,25,48.766667,-1.433333,1.12
+ Rocheville ,ROCHEVILLE ,50260,50435,25,49.5,-1.6,1.41
+ Romagny ,ROMAGNY ,50140,50436,25,48.65,-0.966667,2.06
+ Roncey ,RONCEY ,50210,50437,25,48.983333,-1.333333,0.72
+ La Ronde-Haye ,LA RONDE HAYE ,50490,50438,25,49.133333,-1.45,1.16
+ Ronthon ,RONTHON ,50530,50439,25,48.733333,-1.483333,1.23
+ Rouffigny ,ROUFFIGNY ,50800,50440,25,48.8,-1.25,1
+ Rouxeville ,ROUXEVILLE ,50810,50441,25,49.1,-0.95,2.15
+ Le Rozel ,LE ROZEL ,50340,50442,25,49.483333,-1.833333,-1
+ Sacey ,SACEY ,50170,50443,25,48.5,-1.45,2.02
+ Saint-Amand ,SAINT AMAND ,50160,50444,25,49.05,-0.966667,2.06
+ Saint-André-de-Bohon ,SAINT ANDRE DE BOHON,50500,50445,25,49.233333,-1.25,0.76
+ Saint-André-de-l'Épine ,SAINT ANDRE DE L,50680,50446,25,49.133333,-1,1.88
+ Saint-Aubin-des-Préaux ,SAINT AUBIN DES PREAUX,50380,50447,25,48.8,-1.5,1
+ Saint-Aubin-de-Terregatte ,SAINT AUBIN DE TERREGATTE,50111,50448,25,48.583333,-1.3,1.74
+ Saint-Aubin-du-Perron ,SAINT AUBIN DU PERRON,50490,50449,25,49.15,-1.366667,0.84
+ Saint-Barthélemy ,SAINT BARTHELEMY ,50140,50450,25,48.683333,-0.95,2.15
+ Saint-Brice-de-Landelles ,SAINT BRICE DE LANDELLES,50730,50452,25,48.533333,-1.15,1.91
+ Sainte-Cécile ,SAINTE CECILE ,50800,50453,25,48.833333,-1.183333,0.89
+ Saint-Christophe-du-Foc ,SAINT CHRISTOPHE DU FOC,50340,50454,25,49.55,-1.75,2.23
+ Saint-Clair-sur-l'Elle ,SAINT CLAIR SUR L,50680,50455,25,49.2,-1.033333,1.69
+ Sainte-Colombe ,SAINTE COLOMBE ,50390,50457,25,49.416667,-1.516667,1.08
+ Saint-Côme-du-Mont ,SAINT COME DU MONT,50500,50458,25,49.333333,-1.266667,0.8
+ Sainte-Croix-Hague ,SAINTE CROIX HAGUE ,50440,50460,25,49.633333,-1.766667,2.32
+ Saint-Cyr ,SAINT CYR ,50310,50461,25,49.483333,-1.416667,1.43
+ Saint-Cyr-du-Bailleul ,SAINT CYR DU BAILLEUL,50720,50462,25,48.566667,-0.8,2.97
+ Saint-Denis-le-Gast ,SAINT DENIS LE GAST,50450,50463,25,48.95,-1.333333,1.02
+ Saint-Denis-le-Vêtu ,SAINT DENIS LE VETU,50210,50464,25,48.983333,-1.4,1.62
+ Saint-Ébremond-de-Bonfossé ,SAINT EBREMOND DE BONFOSSE,50750,50465,25,49.066667,-1.15,1.06
+ Saint-Floxel ,SAINT FLOXEL ,50310,50467,25,49.5,-1.35,1.36
+ Saint-Fromond ,SAINT FROMOND ,50620,50468,25,49.216667,-1.1,1.48
+ Sainte-Geneviève ,SAINTE GENEVIEVE ,50760,50469,25,49.65,-1.316667,1.87
+ Saint-Georges-de-Bohon ,SAINT GEORGES DE BOHON,50500,50470,25,49.25,-1.25,0.53
+ Saint-Georges-de-Livoye ,SAINT GEORGES DE LIVOYE,50370,50472,25,48.733333,-1.216667,1.23
+ Saint-Georges-d'Elle ,SAINT GEORGES D ELLE,50680,50473,25,49.15,-0.966667,2.06
+ Saint-Georges-de-Rouelley ,SAINT GEORGES DE ROUELLEY,50720,50474,25,48.60291,-0.77024,-1
+ Saint-Georges-Montcocq ,SAINT GEORGES MONTCOCQ ,50000,50475,25,49.133333,-1.083333,1.42
+ Saint-Germain-d'Elle ,SAINT GERMAIN D ELLE,50810,50476,25,49.116667,-0.916667,2.33
+ Saint-Germain-des-Vaux ,SAINT GERMAIN DES VAUX,50440,50477,25,49.71269,-1.92054,-1
+ Saint-Germain-de-Tournebut ,SAINT GERMAIN DE TOURNEBUT,50700,50478,25,49.533333,-1.383333,1.68
+ Saint-Germain-de-Varreville ,SAINT GERMAIN DE VARREVILLE,50480,50479,25,49.433333,-1.25,1.13
+ Saint-Germain-le-Gaillard ,SAINT GERMAIN LE GAILLARD,50340,50480,25,49.483333,-1.783333,2.41
+ Saint-Germain-sur-Ay ,SAINT GERMAIN SUR AY,50430,50481,25,49.233333,-1.6,1.41
+ Saint-Germain-sur-Sèves ,SAINT GERMAIN SUR SEVES,50190,50482,25,49.216667,-1.366667,0.44
+ Saint-Gilles ,SAINT GILLES ,50180,50483,25,49.1,-1.166667,0.96
+ Saint-Hilaire-du-Harcouët ,SAINT HILAIRE DU HARCOUET,50600,50484,25,48.583333,-1.1,1.74
+ Saint-Hilaire-Petitville ,SAINT HILAIRE PETITVILLE ,50500,50485,25,49.3,-1.233333,0.68
+ Saint-Jacques-de-Néhou ,SAINT JACQUES DE NEHOU,50390,50486,25,49.416667,-1.616667,1.76
+ Saint-James ,SAINT JAMES ,50240,50487,25,48.533333,-1.316667,1.91
+ Saint-Jean-de-Daye ,SAINT JEAN DE DAYE,50880,50488,25,49.233333,-1.133333,1.41
+ Saint-Jean-de-la-Haize ,SAINT JEAN DE LA,50300,50489,25,48.7,-1.366667,1.34
+ Saint-Jean-de-la-Rivière ,SAINT JEAN DE LA,50270,50490,25,49.366667,-1.7,1.96
+ Saint-Jean-de-Savigny ,SAINT JEAN DE SAVIGNY,50680,50491,25,49.2,-0.983333,1.97
+ Saint-Jean-des-Baisants ,SAINT JEAN DES BAISANTS,50810,50492,25,49.1,-0.966667,2.06
+ Saint-Jean-des-Champs ,SAINT JEAN DES CHAMPS,50320,50493,25,48.833333,-1.466667,1.72
+ Saint-Jean-du-Corail ,SAINT JEAN DU CORAIL,50140,50494,25,48.608333,-0.908333,-1
+ Saint-Jean-le-Thomas ,SAINT JEAN LE THOMAS,50530,50496,25,48.733333,-1.516667,1.23
+ Saint-Jores ,SAINT JORES ,50250,50497,25,49.3,-1.416667,1.22
+ Saint-Joseph ,SAINT JOSEPH ,50700,50498,25,49.533333,-1.533333,1.47
+ Saint-Laurent-de-Cuves ,SAINT LAURENT DE CUVES,50670,50499,25,48.75,-1.116667,1.24
+ Saint-Laurent-de-Terregatte ,SAINT LAURENT DE TERREGATTE,50111,50500,25,48.566667,-1.25,1.79
+ Saint-Léger ,SAINT LEGER ,50320,50501,25,48.8,-1.483333,2
+ Saint-Lô ,SAINT LO ,50000,50502,25,49.116667,-1.083333,1.42
+ Saint-Lo-d'Ourville ,SAINT LO D OURVILLE,50580,50503,25,49.333333,-1.666667,1.77
+ Saint-Louet-sur-Vire ,SAINT LOUET SUR VIRE,50420,50504,25,48.983333,-0.983333,1.97
+ Saint-Loup ,SAINT LOUP ,50300,50505,25,48.666667,-1.3,1.46
+ Saint-Malo-de-la-Lande ,SAINT MALO DE LA,50200,50506,25,49.066667,-1.533333,1.18
+ Sainte-Marie-du-Bois ,SAINTE MARIE DU BOIS,50640,50508,25,48.566667,-0.9,2.42
+ Sainte-Marie-du-Mont ,SAINTE MARIE DU MONT,50480,50509,25,49.383333,-1.216667,1.28
+ Saint-Martin-d'Aubigny ,SAINT MARTIN D AUBIGNY,50190,50510,25,49.166667,-1.35,0.87
+ Saint-Martin-d'Audouville ,SAINT MARTIN D AUDOUVILLE,50310,50511,25,49.533333,-1.333333,1.47
+ Saint-Martin-de-Bonfossé ,SAINT MARTIN DE BONFOSSE,50750,50512,25,49.05,-1.166667,0.96
+ Saint-Martin-de-Cenilly ,SAINT MARTIN DE CENILLY,50210,50513,25,48.983333,-1.283333,1.16
+ Saint-Martin-de-Landelles ,SAINT MARTIN DE LANDELLES,50730,50515,25,48.55,-1.183333,1.85
+ Saint-Martin-des-Champs ,SAINT MARTIN DES CHAMPS,50300,50516,25,48.666667,-1.333333,1.46
+ Saint-Martin-de-Varreville ,SAINT MARTIN DE VARREVILLE,50480,50517,25,49.433333,-1.233333,1.15
+ Saint-Martin-le-Bouillant ,SAINT MARTIN LE BOUILLANT,50800,50518,25,48.783333,-1.183333,1.06
+ Saint-Martin-le-Gréard ,SAINT MARTIN LE GREARD,50690,50519,25,49.55,-1.65,1.68
+ Saint-Maur-des-Bois ,SAINT MAUR DES BOIS,50800,50521,25,48.816667,-1.15,1.16
+ Saint-Maurice-en-Cotentin ,SAINT MAURICE EN COTENTIN,50270,50522,25,49.383333,-1.7,1.96
+ Sainte-Mère-Église ,SAINTE MERE EGLISE ,50480,50523,25,49.416667,-1.316667,1.08
+ Saint-Michel-de-la-Pierre ,SAINT MICHEL DE LA,50490,50524,25,49.133333,-1.383333,0.39
+ Saint-Michel-de-Montjoie ,SAINT MICHEL DE MONTJOIE,50670,50525,25,48.733333,-1.033333,1.69
+ Saint-Michel-des-Loups ,SAINT MICHEL DES LOUPS,50740,50526,25,48.766667,-1.533333,1.12
+ Saint-Nicolas-de-Pierrepont ,SAINT NICOLAS DE PIERREPONT,50250,50528,25,49.316667,-1.583333,1.32
+ Saint-Pair-sur-Mer ,SAINT PAIR SUR MER,50380,50532,25,48.816667,-1.566667,1.23
+ Saint-Patrice-de-Claids ,SAINT PATRICE DE CLAIDS,50190,50533,25,49.233333,-1.433333,0.95
+ Saint-Pellerin ,SAINT PELLERIN ,50500,50534,25,49.3,-1.183333,1.16
+ Sainte-Pience ,SAINTE PIENCE ,50870,50535,25,48.75,-1.3,1.17
+ Saint-Pierre-d'Arthéglise ,SAINT PIERRE D ARTHEGLISE,50270,50536,25,49.416667,-1.683333,1.87
+ Saint-Pierre-de-Semilly ,SAINT PIERRE DE SEMILLY,50810,50538,25,49.116667,-1,1.88
+ Saint-Pierre-Église ,SAINT PIERRE EGLISE ,50840,50539,25,49.666667,-1.4,1.92
+ Saint-Pierre-Langers ,SAINT PIERRE LANGERS ,50530,50540,25,48.783333,-1.5,1.28
+ Saint-Planchers ,SAINT PLANCHERS ,50400,50541,25,48.816667,-1.516667,1.22
+ Saint-Pois ,SAINT POIS ,50670,50542,25,48.75,-1.066667,1.51
+ Saint-Quentin-sur-le-Homme ,SAINT QUENTIN SUR LE,50220,50543,25,48.65,-1.316667,1.51
+ Saint-Rémy-des-Landes ,SAINT REMY DES LANDES,50580,50544,25,49.283333,-1.633333,1.76
+ Saint-Romphaire ,SAINT ROMPHAIRE ,50750,50545,25,49.033333,-1.1,1.33
+ Saint-Samson-de-Bonfossé ,SAINT SAMSON DE BONFOSSE,50750,50546,25,49.05,-1.133333,1.15
+ Saint-Sauveur-de-Chaulieu ,SAINT SAUVEUR DE CHAULIEU,50150,50547,25,48.75,-0.85,2.7
+ Saint-Sauveur-de-Pierrepont ,SAINT SAUVEUR DE PIERREPONT,50250,50548,25,49.333333,-1.583333,1.32
+ Saint-Sauveur-la-Pommeraye ,SAINT SAUVEUR LA POMMERAYE,50510,50549,25,48.85,-1.45,0.93
+ Saint-Sauveur-Lendelin ,SAINT SAUVEUR LENDELIN ,50490,50550,25,49.133333,-1.416667,0.41
+ Saint-Sauveur-le-Vicomte ,SAINT SAUVEUR LE VICOMTE,50390,50551,25,49.383333,-1.533333,1.04
+ Saint-Sébastien-de-Raids ,SAINT SEBASTIEN DE RAIDS,50190,50552,25,49.183333,-1.366667,0.47
+ Saint-Senier-de-Beuvron ,SAINT SENIER DE BEUVRON,50240,50553,25,48.583333,-1.316667,1.74
+ Saint-Senier-sous-Avranches ,SAINT SENIER SOUS AVRANCHES,50300,50554,25,48.683333,-1.333333,1.4
+ Sainte-Suzanne-en-Bauptois ,SAINTE SUZANNE EN BAUPTOIS,50250,50555,25,49.316667,-1.433333,1.01
+ Sainte-Suzanne-sur-Vire ,SAINTE SUZANNE SUR VIRE,50750,50556,25,49.066667,-1.066667,1.66
+ Saint-Symphorien-des-Monts ,SAINT SYMPHORIEN DES MONTS,50640,50557,25,48.55,-1,1.88
+ Saint-Symphorien-le-Valois ,SAINT SYMPHORIEN LE VALOIS,50250,50558,25,49.3,-1.55,1.14
+ Saint-Symphorien-les-Buttes ,SAINT SYMPHORIEN LES BUTTES,50160,50559,25,49.016667,-0.916667,2.33
+ Saint-Ursin ,SAINT URSIN ,50320,50561,25,48.8,-1.433333,1
+ Saint-Vaast-la-Hougue ,SAINT VAAST LA HOUGUE,50550,50562,25,49.6,-1.266667,1.7
+ Saint-Vigor-des-Monts ,SAINT VIGOR DES MONTS,50420,50563,25,48.916667,-1.083333,1.42
+ Sainteny ,SAINTENY ,50500,50564,25,49.233333,-1.316667,1.1
+ Sartilly ,SARTILLY ,50530,50565,25,48.75,-1.45,1.17
+ Saussemesnil ,SAUSSEMESNIL ,50700,50567,25,49.566667,-1.466667,1.58
+ Saussey ,SAUSSEY ,50200,50568,25,49.016667,-1.433333,1.2
+ Savigny ,SAVIGNY ,50210,50569,25,49.05,-1.333333,0.65
+ Savigny-le-Vieux ,SAVIGNY LE VIEUX ,50640,50570,25,48.516667,-1.05,1.96
+ Sébeville ,SEBEVILLE ,50480,50571,25,49.383333,-1.283333,0.97
+ Senoville ,SENOVILLE ,50270,50572,25,49.433333,-1.766667,2.32
+ Servigny ,SERVIGNY ,50200,50573,25,49.1,-1.466667,0.68
+ Servon ,SERVON ,50170,50574,25,48.6,-1.416667,1.68
+ Sideville ,SIDEVILLE ,50690,50575,25,49.583333,-1.683333,1.87
+ Sortosville-en-Beaumont ,SORTOSVILLE EN BEAUMONT ,50270,50577,25,49.433333,-1.716667,2.05
+ Sortosville ,SORTOSVILLE ,50310,50578,25,49.483333,-1.433333,1.83
+ Sottevast ,SOTTEVAST ,50260,50579,25,49.516667,-1.6,1.42
+ Sotteville ,SOTTEVILLE ,50340,50580,25,49.533333,-1.75,2.23
+ Soulles ,SOULLES ,50750,50581,25,49.016667,-1.183333,1.23
+ Sourdeval ,SOURDEVAL ,50150,50582,25,48.733333,-0.933333,2.24
+ Sourdeval-les-Bois ,SOURDEVAL LES BOIS ,50450,50583,25,48.916667,-1.266667,1.29
+ Subligny ,SUBLIGNY ,50870,50584,25,48.75,-1.366667,2
+ Surtainville ,SURTAINVILLE ,50270,50585,25,49.466667,-1.816667,2.6
+ Surville ,SURVILLE ,50250,50586,25,49.283333,-1.65,1.78
+ Tamerville ,TAMERVILLE ,50700,50588,25,49.533333,-1.45,1.47
+ Tanis ,TANIS ,50170,50589,25,48.583333,-1.45,1.74
+ Le Tanu ,LE TANU ,50320,50590,25,48.816667,-1.35,1.39
+ Le Teilleul ,LE TEILLEUL ,50640,50591,25,48.55,-0.883333,2.52
+ Tessy-sur-Vire ,TESSY SUR VIRE ,50420,50592,25,48.966667,-1.066667,1.51
+ Teurthéville-Bocage ,TEURTHEVILLE BOCAGE ,50630,50593,25,49.583333,-1.383333,1.64
+ Teurthéville-Hague ,TEURTHEVILLE HAGUE ,50690,50594,25,49.583333,-1.733333,2.14
+ Théville ,THEVILLE ,50330,50596,25,49.65,-1.416667,1.87
+ Tirepied ,TIREPIED ,50870,50597,25,48.716667,-1.266667,1.55
+ Tocqueville ,TOCQUEVILLE ,50330,50598,25,49.666667,-1.333333,1.92
+ Tollevast ,TOLLEVAST ,50470,50599,25,49.566667,-1.633333,1.59
+ Tonneville ,TONNEVILLE ,50460,50600,25,49.633333,-1.716667,2.05
+ Torigni-sur-Vire ,TORIGNI SUR VIRE ,50160,50601,25,49.033333,-0.983333,1.97
+ Tourlaville ,TOURLAVILLE ,50110,50602,25,49.633333,-1.566667,1.81
+ Tourville-sur-Sienne ,TOURVILLE SUR SIENNE ,50200,50603,25,49.05,-1.55,1.53
+ Tréauville ,TREAUVILLE ,50340,50604,25,49.516667,-1.816667,2.6
+ Trelly ,TRELLY ,50660,50605,25,48.966667,-1.433333,1.3
+ Tribehou ,TRIBEHOU ,50620,50606,25,49.216667,-1.233333,1.18
+ La Trinité ,LA TRINITE ,50800,50607,25,48.783333,-1.233333,1.06
+ Troisgots ,TROISGOTS ,50420,50608,25,49.016667,-1.066667,1.51
+ Turqueville ,TURQUEVILLE ,50480,50609,25,49.416667,-1.283333,1.08
+ Urville ,URVILLE ,50700,50610,25,49.45,-1.433333,1.19
+ Urville-Nacqueville ,URVILLE NACQUEVILLE ,50460,50611,25,49.683333,-1.733333,2.14
+ Vains ,VAINS ,50300,50612,25,48.683333,-1.416667,1.99
+ Valcanville ,VALCANVILLE ,50760,50613,25,49.633333,-1.316667,1.81
+ Le Valdecie ,LE VALDECIE ,50260,50614,25,49.416667,-1.65,1.68
+ Valognes ,VALOGNES ,50700,50615,25,49.516667,-1.466667,1.42
+ Le Val-Saint-Père ,LE VAL SAINT PERE,50300,50616,25,48.666667,-1.35,1.46
+ Varenguebec ,VARENGUEBEC ,50250,50617,25,49.333333,-1.5,0.86
+ Varouville ,VAROUVILLE ,50330,50618,25,49.666667,-1.366667,1.92
+ Le Vast ,LE VAST ,50630,50619,25,49.616667,-1.35,1.75
+ Vasteville ,VASTEVILLE ,50440,50620,25,49.6,-1.766667,2.32
+ Vaudreville ,VAUDREVILLE ,50310,50621,25,49.516667,-1.366667,1.42
+ Vaudrimesnil ,VAUDRIMESNIL ,50490,50622,25,49.15,-1.416667,0.51
+ La Vendelée ,LA VENDELEE ,50200,50624,25,49.083333,-1.466667,0.68
+ Vengeons ,VENGEONS ,50150,50625,25,48.75,-0.916667,2.33
+ Ver ,VER ,50450,50626,25,48.9,-1.383333,1.32
+ Vergoncey ,VERGONCEY ,50240,50627,25,48.566667,-1.4,1.79
+ Vernix ,VERNIX ,50370,50628,25,48.716667,-1.233333,1.29
+ Vesly ,VESLY ,50430,50629,25,49.25,-1.5,0.92
+ Vessey ,VESSEY ,50170,50630,25,48.516667,-1.433333,1.96
+ Les Veys ,LES VEYS ,50500,50631,25,49.316667,-1.15,1.69
+ Vezins ,VEZINS ,50540,50632,25,48.6,-1.233333,1.68
+ Le Vicel ,LE VICEL ,50760,50633,25,49.633333,-1.316667,1.81
+ Videcosville ,VIDECOSVILLE ,50630,50634,25,49.566667,-1.366667,1.58
+ Vidouville ,VIDOUVILLE ,50810,50635,25,49.1,-0.9,2.42
+ Vierville ,VIERVILLE ,50480,50636,25,49.366667,-1.25,0.91
+ Villebaudon ,VILLEBAUDON ,50410,50637,25,48.966667,-1.166667,0.96
+ Villechien ,VILLECHIEN ,50140,50638,25,48.583333,-0.983333,1.97
+ Villedieu-les-Poëles ,VILLEDIEU LES POELES ,50800,50639,25,48.833333,-1.216667,0.89
+ Villiers-le-Pré ,VILLIERS LE PRE ,50240,50640,25,48.55,-1.4,1.85
+ Villiers-Fossard ,VILLIERS FOSSARD ,50680,50641,25,49.166667,-1.066667,1.51
+ Vindefontaine ,VINDEFONTAINE ,50250,50642,25,49.333333,-1.416667,1.25
+ Virandeville ,VIRANDEVILLE ,50690,50643,25,49.566667,-1.75,2.23
+ Virey ,VIREY ,50600,50644,25,48.583333,-1.133333,1.74
+ Vrasville ,VRASVILLE ,50330,50645,25,49.7,-1.366667,2.04
+ Le Vrétot ,LE VRETOT ,50260,50646,25,49.45,-1.716667,2.05
+ Yquelon ,YQUELON ,50400,50647,25,48.85,-1.55,1.14
+ Yvetot-Bocage ,YVETOT BOCAGE ,50700,50648,25,49.483333,-1.5,1.3
+ Ablancourt ,ABLANCOURT ,51240,51001,21,48.816667,4.533333,0.98
+ Saint-Martin-d'Ablois ,SAINT MARTIN D ABLOIS,51200,51002,21,49,3.866667,1.63
+ Aigny ,AIGNY ,51150,51003,21,49.033333,4.216667,0.95
+ Allemant ,ALLEMANT ,51120,51005,21,48.766667,3.8,1.08
+ Alliancelles ,ALLIANCELLES ,51250,51006,21,48.8,4.883333,1.97
+ Ambonnay ,AMBONNAY ,51150,51007,21,49.066667,4.166667,0.55
+ Ambrières ,AMBRIERES ,51290,51008,21,48.633333,4.833333,2.03
+ Anglure ,ANGLURE ,51260,51009,21,48.583333,3.816667,2.04
+ Angluzelles-et-Courcelles ,ANGLUZELLES ET COURCELLES ,51230,51010,21,48.666667,3.883333,1.59
+ Anthenay ,ANTHENAY ,51700,51012,21,49.15,3.733333,1.27
+ Aougny ,AOUGNY ,51170,51013,21,49.183333,3.733333,1.27
+ Arcis-le-Ponsart ,ARCIS LE PONSART ,51170,51014,21,49.233333,3.7,1.45
+ Argers ,ARGERS ,51800,51015,21,49.066667,4.85,1.87
+ Arrigny ,ARRIGNY ,51290,51016,21,48.616667,4.716667,1.86
+ Athis ,ATHIS ,51150,51018,21,49.016667,4.133333,0.6
+ Aubilly ,AUBILLY ,51170,51020,21,49.216667,3.866667,1.41
+ Aulnay-aux-Planches ,AULNAY AUX PLANCHES ,51130,51021,21,48.816667,3.95,1.09
+ Aulnay-l'Aître ,AULNAY L AITRE ,51240,51022,21,48.833333,4.566667,1.12
+ Aulnay-sur-Marne ,AULNAY SUR MARNE ,51150,51023,21,49,4.2,0.92
+ Aulnizeux ,AULNIZEUX ,51130,51024,21,48.833333,3.933333,1.12
+ Auve ,AUVE ,51800,51027,21,49.033333,4.7,1.53
+ Avenay-Val-d'Or ,AVENAY VAL D OR,51160,51028,21,49.066667,4.05,1.02
+ Avize ,AVIZE ,51190,51029,21,48.966667,4.016667,0.47
+ Ay ,AY ,51160,51030,21,49.05,4,0.75
+ Baconnes ,BACONNES ,51400,51031,21,49.166667,4.333333,1.09
+ Bagneux ,BAGNEUX ,51260,51032,21,48.566667,3.833333,2.13
+ Le Baizil ,LE BAIZIL ,51270,51033,21,48.966667,3.8,1.13
+ Bannay ,BANNAY ,51270,51034,21,48.866667,3.733333,1.27
+ Bannes ,BANNES ,51230,51035,21,48.8,3.916667,0.88
+ Barbonne-Fayel ,BARBONNE FAYEL ,51120,51036,21,48.65,3.7,1.68
+ Baslieux-lès-Fismes ,BASLIEUX LES FISMES ,51170,51037,21,49.316667,3.716667,1.89
+ Baslieux-sous-Châtillon ,BASLIEUX SOUS CHATILLON ,51700,51038,21,49.116667,3.8,1.28
+ Bassu ,BASSU ,51300,51039,21,48.833333,4.7,1.49
+ Bassuet ,BASSUET ,51300,51040,21,48.8,4.666667,1.36
+ Baudement ,BAUDEMENT ,51260,51041,21,48.583333,3.783333,2.04
+ Baye ,BAYE ,51270,51042,21,48.85,3.766667,1.18
+ Bazancourt ,BAZANCOURT ,51110,51043,21,49.366667,4.166667,2.16
+ Beaumont-sur-Vesle ,BEAUMONT SUR VESLE ,51360,51044,21,49.166667,4.183333,1.09
+ Beaunay ,BEAUNAY ,51270,51045,21,48.883333,3.883333,1.43
+ Beine-Nauroy ,BEINE NAUROY ,51490,51046,21,49.25,4.216667,1.54
+ Belval-en-Argonne ,BELVAL EN ARGONNE ,51330,51047,21,48.95,5,2.29
+ Belval-sous-Châtillon ,BELVAL SOUS CHATILLON ,51480,51048,21,49.116667,3.85,0.94
+ Bergères-lès-Vertus ,BERGERES LES VERTUS ,51130,51049,21,48.883333,4,0.52
+ Bergères-sous-Montmirail ,BERGERES SOUS MONTMIRAIL ,51210,51050,21,48.866667,3.583333,1.69
+ Berméricourt ,BERMERICOURT ,51220,51051,21,49.35,3.983333,2.07
+ Berru ,BERRU ,51420,51052,21,49.266667,4.15,1.63
+ Berzieux ,BERZIEUX ,51800,51053,21,49.166667,4.8,1.73
+ Bétheniville ,BETHENIVILLE ,51490,51054,21,49.3,4.366667,1.8
+ Bétheny ,BETHENY ,51450,51055,21,49.283333,4.05,1.72
+ Bethon ,BETHON ,51260,51056,21,48.616667,3.616667,1.86
+ Bettancourt-la-Longue ,BETTANCOURT LA LONGUE ,51330,51057,21,48.833333,4.883333,1.97
+ Bezannes ,BEZANNES ,51430,51058,21,49.216667,3.983333,1.36
+ Bignicourt-sur-Marne ,BIGNICOURT SUR MARNE ,51300,51059,21,48.683333,4.616667,1.51
+ Bignicourt-sur-Saulx ,BIGNICOURT SUR SAULX ,51340,51060,21,48.766667,4.783333,1.68
+ Billy-le-Grand ,BILLY LE GRAND ,51400,51061,21,49.1,4.233333,1.27
+ Binarville ,BINARVILLE ,51800,51062,21,49.233333,4.9,2.01
+ Binson-et-Orquigny ,BINSON ET ORQUIGNY ,51700,51063,21,49.083333,3.783333,1.13
+ Bisseuil ,BISSEUIL ,51150,51064,21,49.05,4.083333,1.37
+ Blacy ,BLACY ,51300,51065,21,48.733333,4.55,1.24
+ Blaise-sous-Arzillières ,BLAISE SOUS ARZILLIERES ,51300,51066,21,48.666667,4.583333,1.59
+ Blesme ,BLESME ,51340,51068,21,48.733333,4.783333,1.68
+ Bligny ,BLIGNY ,51170,51069,21,49.183333,3.866667,1.54
+ Boissy-le-Repos ,BOISSY LE REPOS ,51210,51070,21,48.85,3.65,1.51
+ Bouilly ,BOUILLY ,51390,51072,21,49.2,3.883333,1.27
+ Bouleuse ,BOULEUSE ,51170,51073,21,49.216667,3.833333,1.36
+ Boult-sur-Suippe ,BOULT SUR SUIPPE ,51110,51074,21,49.366667,4.15,2.16
+ Bourgogne ,BOURGOGNE ,51110,51075,21,49.35,4.066667,2.07
+ Boursault ,BOURSAULT ,51480,51076,21,49.05,3.85,0.98
+ Bouvancourt ,BOUVANCOURT ,51140,51077,21,49.333333,3.833333,1.98
+ Bouy ,BOUY ,51400,51078,21,49.083333,4.35,0.64
+ Bouzy ,BOUZY ,51150,51079,21,49.083333,4.15,0.82
+ Brandonvillers ,BRANDONVILLERS ,51290,51080,21,48.6,4.55,1.95
+ Branscourt ,BRANSCOURT ,51140,51081,21,49.266667,3.816667,1.63
+ Braux-Sainte-Cohière ,BRAUX SAINTE COHIERE ,51800,51082,21,49.083333,4.833333,1.82
+ Braux-Saint-Rémy ,BRAUX SAINT REMY ,51800,51083,21,49.016667,4.866667,1.92
+ Bréban ,BREBAN ,51320,51084,21,48.583333,4.4,2.04
+ Breuvery-sur-Coole ,BREUVERY SUR COOLE ,51240,51087,21,48.866667,4.316667,1.79
+ Brimont ,BRIMONT ,51220,51088,21,49.333333,4.016667,1.98
+ Brouillet ,BROUILLET ,51170,51089,21,49.216667,3.733333,1.36
+ Broussy-le-Grand ,BROUSSY LE GRAND ,51230,51090,21,48.783333,3.883333,0.97
+ Broussy-le-Petit ,BROUSSY LE PETIT ,51230,51091,21,48.8,3.833333,1.43
+ Broyes ,BROYES ,51120,51092,21,48.766667,3.766667,1.18
+ Brugny-Vaudancourt ,BRUGNY VAUDANCOURT ,51200,51093,21,49,3.883333,1.28
+ Brusson ,BRUSSON ,51300,51094,21,48.75,4.7,1.45
+ Bussy-le-Château ,BUSSY LE CHATEAU ,51600,51097,21,49.066667,4.55,1.03
+ Bussy-le-Repos ,BUSSY LE REPOS ,51330,51098,21,48.9,4.766667,1.64
+ Bussy-Lettrée ,BUSSY LETTREE ,51320,51099,21,48.8,4.266667,0.88
+ La Caure ,LA CAURE ,51270,51100,21,48.916667,3.783333,1.13
+ Caurel ,CAUREL ,51110,51101,21,49.3,4.15,1.8
+ Cauroy-lès-Hermonville ,CAUROY LES HERMONVILLE ,51220,51102,21,49.35,3.916667,2.07
+ La Celle-sous-Chantemerle ,LA CELLE SOUS CHANTEMERLE,51260,51103,21,48.616667,3.683333,1.86
+ Cernay-en-Dormois ,CERNAY EN DORMOIS ,51800,51104,21,49.216667,4.766667,1.64
+ Cernay-lès-Reims ,CERNAY LES REIMS ,51420,51105,21,49.266667,4.1,1.63
+ Cernon ,CERNON ,51240,51106,21,48.833333,4.35,1.47
+ Chaintrix-Bierges ,CHAINTRIX BIERGES ,51130,51107,21,48.9,4.1,0.88
+ Châlons-en-Champagne ,CHALONS EN CHAMPAGNE ,51000,51108,21,48.958333,4.366667,0.51
+ Châlons-sur-Vesle ,CHALONS SUR VESLE ,51140,51109,21,49.283333,3.916667,1.72
+ Chaltrait ,CHALTRAIT ,51130,51110,21,48.933333,3.9,1.4
+ Chambrecy ,CHAMBRECY ,51170,51111,21,49.166667,3.816667,1.11
+ Chamery ,CHAMERY ,51500,51112,21,49.166667,3.966667,1.32
+ Champaubert ,CHAMPAUBERT ,51270,51113,21,48.883333,3.783333,1.13
+ Champguyon ,CHAMPGUYON ,51310,51116,21,48.783333,3.55,1.79
+ Champigneul-Champagne ,CHAMPIGNEUL CHAMPAGNE ,51150,51117,21,48.966667,4.166667,1.22
+ Champigny ,CHAMPIGNY ,51370,51118,21,49.266667,3.966667,1.63
+ Champillon ,CHAMPILLON ,51160,51119,21,49.083333,3.983333,0.71
+ Champlat-et-Boujacourt ,CHAMPLAT ET BOUJACOURT ,51480,51120,21,49.15,3.833333,1.21
+ Champvoisy ,CHAMPVOISY ,51700,51121,21,49.133333,3.633333,1.55
+ Changy ,CHANGY ,51300,51122,21,48.766667,4.666667,1.36
+ Chapelaine ,CHAPELAINE ,51290,51125,21,48.583333,4.5,-1
+ La Chapelle-Felcourt ,LA CHAPELLE FELCOURT ,51800,51126,21,49.05,4.766667,1.64
+ La Chapelle-Lasson ,LA CHAPELLE LASSON ,51260,51127,21,48.633333,3.833333,1.77
+ La Chapelle-sous-Orbais ,LA CHAPELLE SOUS ORBAIS,51270,51128,21,48.916667,3.733333,1.27
+ Charleville ,CHARLEVILLE ,51120,51129,21,48.816667,3.666667,1.46
+ Charmont ,CHARMONT ,51330,51130,21,48.883333,4.866667,1.92
+ Les Charmontois ,LES CHARMONTOIS ,51330,51132,21,48.966667,5,2.29
+ Châtelraould-Saint-Louvent ,CHATELRAOULD SAINT LOUVENT ,51300,51134,21,48.683333,4.55,1.51
+ Châtillon-sur-Broué ,CHATILLON SUR BROUE ,51290,51135,21,48.55,4.7,2.22
+ Châtillon-sur-Marne ,CHATILLON SUR MARNE ,51700,51136,21,49.1,3.75,1.23
+ Châtillon-sur-Morin ,CHATILLON SUR MORIN ,51310,51137,21,48.7,3.583333,1.69
+ Châtrices ,CHATRICES ,51800,51138,21,49.033333,4.933333,2.11
+ Chaudefontaine ,CHAUDEFONTAINE ,51800,51139,21,49.1,4.866667,1.92
+ Chaumuzy ,CHAUMUZY ,51170,51140,21,49.166667,3.866667,1.66
+ La Chaussée-sur-Marne ,LA CHAUSSEE SUR MARNE,51240,51141,21,48.833333,4.516667,0.93
+ Chavot-Courcourt ,CHAVOT COURCOURT ,51200,51142,21,49,3.916667,0.76
+ Le Chemin ,LE CHEMIN ,51800,51143,21,49,4.966667,2.2
+ Cheminon ,CHEMINON ,51250,51144,21,48.733333,4.9,2.01
+ Chenay ,CHENAY ,51140,51145,21,49.3,3.933333,1.94
+ Cheniers ,CHENIERS ,51510,51146,21,48.883333,4.25,1.36
+ La Cheppe ,LA CHEPPE ,51600,51147,21,49.05,4.5,1.08
+ Cheppes-la-Prairie ,CHEPPES LA PRAIRIE ,51240,51148,21,48.833333,4.466667,0.79
+ Chepy ,CHEPY ,51240,51149,21,48.9,4.433333,0.7
+ Cherville ,CHERVILLE ,51150,51150,21,49.016667,4.166667,0.36
+ Chichey ,CHICHEY ,51120,51151,21,48.683333,3.766667,1.51
+ Chigny-les-Roses ,CHIGNY LES ROSES ,51500,51152,21,49.15,4.05,1
+ Chouilly ,CHOUILLY ,51200,51153,21,49.016667,4.016667,1.59
+ Clamanges ,CLAMANGES ,51130,51154,21,48.833333,4.083333,0.92
+ Clesles ,CLESLES ,51260,51155,21,48.533333,3.833333,2.31
+ Cloyes-sur-Marne ,CLOYES SUR MARNE ,51300,51156,21,48.666667,4.633333,1.59
+ Coizard-Joches ,COIZARD JOCHES ,51270,51157,21,48.816667,3.866667,1.65
+ Compertrix ,COMPERTRIX ,51510,51160,21,48.933333,4.35,1.35
+ Condé-sur-Marne ,CONDE SUR MARNE ,51150,51161,21,49.05,4.183333,0.46
+ Conflans-sur-Seine ,CONFLANS SUR SEINE ,51260,51162,21,48.55,3.683333,2.22
+ Congy ,CONGY ,51270,51163,21,48.866667,3.833333,0.99
+ Connantray-Vaurefroy ,CONNANTRAY VAUREFROY ,51230,51164,21,48.75,4.05,1.24
+ Connantre ,CONNANTRE ,51230,51165,21,48.716667,3.916667,1.33
+ Coole ,COOLE ,51320,51167,21,48.733333,4.4,1.24
+ Coolus ,COOLUS ,51510,51168,21,48.916667,4.35,1.43
+ Corbeil ,CORBEIL ,51320,51169,21,48.583333,4.433333,2.04
+ Corfélix ,CORFELIX ,51210,51170,21,48.833333,3.7,1.44
+ Cormicy ,CORMICY ,51220,51171,21,49.366667,3.9,2.16
+ Cormontreuil ,CORMONTREUIL ,51350,51172,21,49.216667,4.05,1.36
+ Cormoyeux ,CORMOYEUX ,51480,51173,21,49.1,3.916667,0.94
+ Corribert ,CORRIBERT ,51270,51174,21,48.95,3.766667,1.18
+ Corrobert ,CORROBERT ,51210,51175,21,48.916667,3.6,1.65
+ Corroy ,CORROY ,51230,51176,21,48.7,3.933333,1.42
+ Coulommes-la-Montagne ,COULOMMES LA MONTAGNE ,51390,51177,21,49.216667,3.916667,1.36
+ Coupetz ,COUPETZ ,51240,51178,21,48.816667,4.366667,1.36
+ Coupéville ,COUPEVILLE ,51240,51179,21,48.916667,4.616667,1.7
+ Courcelles-Sapicourt ,COURCELLES SAPICOURT ,51140,51181,21,49.266667,3.833333,1.63
+ Courcemain ,COURCEMAIN ,51260,51182,21,48.616667,3.916667,1.86
+ Courcy ,COURCY ,51220,51183,21,49.316667,4,1.89
+ Courdemanges ,COURDEMANGES ,51300,51184,21,48.7,4.55,1.42
+ Courgivaux ,COURGIVAUX ,51310,51185,21,48.7,3.483333,1.98
+ Courjeonnet ,COURJEONNET ,51270,51186,21,48.833333,3.833333,1.12
+ Courlandon ,COURLANDON ,51170,51187,21,49.316667,3.733333,1.89
+ Courmas ,COURMAS ,51390,51188,21,49.183333,3.9,1.2
+ Courtémont ,COURTEMONT ,51800,51191,21,49.133333,4.783333,1.68
+ Courthiézy ,COURTHIEZY ,51700,51192,21,49.05,3.6,1.95
+ Courtisols ,COURTISOLS ,51460,51193,21,48.983333,4.516667,0.93
+ Courville ,COURVILLE ,51170,51194,21,49.266667,3.7,1.63
+ Couvrot ,COUVROT ,51300,51195,21,48.75,4.566667,1.15
+ Cramant ,CRAMANT ,51200,51196,21,48.983333,3.983333,1.04
+ La Croix-en-Champagne ,LA CROIX EN CHAMPAGNE,51600,51197,21,49.066667,4.65,1.31
+ Crugny ,CRUGNY ,51170,51198,21,49.25,3.733333,1.54
+ Cuchery ,CUCHERY ,51480,51199,21,49.133333,3.816667,1.21
+ Cuis ,CUIS ,51200,51200,21,49,3.966667,0.62
+ Cuisles ,CUISLES ,51700,51201,21,49.133333,3.766667,1.18
+ Cumières ,CUMIERES ,51480,51202,21,49.066667,3.933333,1.4
+ Cuperly ,CUPERLY ,51400,51203,21,49.066667,4.433333,1.52
+ Damery ,DAMERY ,51480,51204,21,49.066667,3.883333,0.85
+ Dampierre-au-Temple ,DAMPIERRE AU TEMPLE ,51400,51205,21,49.05,4.383333,1.06
+ Dampierre-le-Château ,DAMPIERRE LE CHATEAU ,51330,51206,21,49,4.8,1.73
+ Dampierre-sur-Moivre ,DAMPIERRE SUR MOIVRE ,51240,51208,21,48.9,4.55,1.03
+ Dizy ,DIZY ,51200,51210,21,49.066667,3.966667,1.31
+ Dommartin-Lettrée ,DOMMARTIN LETTREE ,51320,51212,21,48.766667,4.3,1.06
+ Dommartin-sous-Hans ,DOMMARTIN SOUS HANS ,51800,51213,21,49.116667,4.783333,1.68
+ Dompremy ,DOMPREMY ,51300,51215,21,48.733333,4.733333,1.54
+ Dontrien ,DONTRIEN ,51490,51216,21,49.233333,4.416667,1.45
+ Dormans ,DORMANS ,51700,51217,21,49.066667,3.633333,1.55
+ Drosnay ,DROSNAY ,51290,51219,21,48.583333,4.616667,2.04
+ Drouilly ,DROUILLY ,51300,51220,21,48.766667,4.516667,1.52
+ Éclaires ,ECLAIRES ,51800,51222,21,49,5,2.29
+ Écollemont ,ECOLLEMONT ,51290,51223,21,48.616667,4.733333,1.86
+ Écriennes ,ECRIENNES ,51300,51224,21,48.683333,4.683333,1.51
+ Écueil ,ECUEIL ,51500,51225,21,49.183333,3.95,1.6
+ Écury-le-Repos ,ECURY LE REPOS ,51230,51226,21,48.8,4.033333,1.31
+ Écury-sur-Coole ,ECURY SUR COOLE ,51240,51227,21,48.9,4.333333,1.64
+ Épense ,EPENSE ,51330,51229,21,48.966667,4.833333,1.82
+ Épernay ,EPERNAY ,51200,51230,21,49.05,3.95,0.86
+ L'Épine ,L EPINE ,51460,51231,21,48.983333,4.466667,1.15
+ Époye ,EPOYE ,51490,51232,21,49.283333,4.233333,1.72
+ Escardes ,ESCARDES ,51310,51233,21,48.7,3.516667,1.88
+ Esclavolles-Lurey ,ESCLAVOLLES LUREY ,51260,51234,21,48.55,3.666667,2.22
+ Les Essarts-lès-Sézanne ,LES ESSARTS LES SEZANNE,51120,51235,21,48.75,3.65,1.51
+ Les Essarts-le-Vicomte ,LES ESSARTS LE VICOMTE,51310,51236,21,48.666667,3.55,1.79
+ Esternay ,ESTERNAY ,51310,51237,21,48.733333,3.566667,1.74
+ Étoges ,ETOGES ,51270,51238,21,48.883333,3.85,0.94
+ Étréchy ,ETRECHY ,51130,51239,21,48.883333,3.95,0.76
+ Étrépy ,ETREPY ,51340,51240,21,48.766667,4.816667,1.78
+ Euvy ,EUVY ,51230,51241,21,48.716667,4.033333,1.33
+ Fagnières ,FAGNIERES ,51510,51242,21,48.966667,4.316667,0.82
+ Faux-Fresnay ,FAUX FRESNAY ,51230,51243,21,48.65,3.95,1.68
+ Faverolles-et-Coëmy ,FAVEROLLES ET COEMY ,51170,51245,21,49.233333,3.8,1.45
+ Favresse ,FAVRESSE ,51300,51246,21,48.716667,4.733333,1.54
+ Férebrianges ,FEREBRIANGES ,51270,51247,21,48.866667,3.85,1
+ Fère-Champenoise ,FERE CHAMPENOISE ,51230,51248,21,48.75,3.983333,1.15
+ Festigny ,FESTIGNY ,51700,51249,21,49.05,3.75,1.23
+ Fismes ,FISMES ,51170,51250,21,49.3,3.683333,1.8
+ Flavigny ,FLAVIGNY ,51190,51251,21,48.983333,4.05,0.93
+ Fleury-la-Rivière ,FLEURY LA RIVIERE ,51480,51252,21,49.083333,3.883333,0.85
+ Florent-en-Argonne ,FLORENT EN ARGONNE ,51800,51253,21,49.133333,4.95,2.15
+ Fontaine-Denis-Nuisy ,FONTAINE DENIS NUISY ,51120,51254,21,48.633333,3.683333,1.77
+ Fontaine-en-Dormois ,FONTAINE EN DORMOIS ,51800,51255,21,49.233333,4.716667,1.6
+ Fontaine-sur-Ay ,FONTAINE SUR AY ,51160,51256,21,49.083333,4.066667,1.4
+ Fontaine-sur-Coole ,FONTAINE SUR COOLE ,51320,51257,21,48.8,4.383333,0.88
+ La Forestière ,LA FORESTIERE ,51120,51258,21,48.65,3.583333,1.92
+ Francheville ,FRANCHEVILLE ,51240,51259,21,48.9,4.533333,0.98
+ Le Fresne ,LE FRESNE ,51240,51260,21,48.916667,4.633333,1.88
+ Fresnes-lès-Reims ,FRESNES LES REIMS ,51110,51261,21,49.333333,4.1,1.98
+ Frignicourt ,FRIGNICOURT ,51300,51262,21,48.7,4.6,1.42
+ Fromentières ,FROMENTIERES ,51210,51263,21,48.9,3.716667,1.68
+ Gaye ,GAYE ,51120,51265,21,48.683333,3.8,1.51
+ Germaine ,GERMAINE ,51160,51266,21,49.116667,4.033333,1.12
+ Germigny ,GERMIGNY ,51390,51267,21,49.25,3.866667,1.54
+ Germinon ,GERMINON ,51130,51268,21,48.883333,4.166667,1.6
+ Gionges ,GIONGES ,51130,51271,21,48.933333,3.966667,0.76
+ Givry-en-Argonne ,GIVRY EN ARGONNE ,51330,51272,21,48.95,4.883333,1.97
+ Givry-lès-Loisy ,GIVRY LES LOISY ,51130,51273,21,48.891667,3.908333,-1
+ Gizaucourt ,GIZAUCOURT ,51800,51274,21,49.05,4.783333,1.68
+ Glannes ,GLANNES ,51300,51275,21,48.716667,4.533333,1.33
+ Gourgançon ,GOURGANCON ,51230,51276,21,48.7,4.016667,1.42
+ Les Grandes-Loges ,LES GRANDES LOGES ,51400,51278,21,49.05,4.3,0.83
+ Granges-sur-Aube ,GRANGES SUR AUBE ,51260,51279,21,48.583333,3.85,2.04
+ Gratreuil ,GRATREUIL ,51800,51280,21,49.25,4.7,1.84
+ Grauves ,GRAUVES ,51190,51281,21,48.966667,3.966667,1.8
+ Gueux ,GUEUX ,51390,51282,21,49.25,3.916667,1.54
+ Hans ,HANS ,51800,51283,21,49.116667,4.75,1.59
+ Haussignémont ,HAUSSIGNEMONT ,51300,51284,21,48.716667,4.75,1.59
+ Haussimont ,HAUSSIMONT ,51320,51285,21,48.75,4.166667,1.15
+ Hautvillers ,HAUTVILLERS ,51160,51287,21,49.083333,3.95,1.54
+ Heiltz-le-Hutier ,HEILTZ LE HUTIER ,51300,51288,21,48.683333,4.766667,1.76
+ Heiltz-le-Maurupt ,HEILTZ LE MAURUPT ,51340,51289,21,48.8,4.816667,1.78
+ Heiltz-l'Évêque ,HEILTZ L EVEQUE ,51340,51290,21,48.783333,4.75,1.59
+ Hermonville ,HERMONVILLE ,51220,51291,21,49.333333,3.9,1.98
+ Herpont ,HERPONT ,51460,51292,21,49,4.733333,1.92
+ Hourges ,HOURGES ,51140,51294,21,49.283333,3.766667,1.72
+ Huiron ,HUIRON ,51300,51295,21,48.7,4.533333,1.42
+ Humbauville ,HUMBAUVILLE ,51320,51296,21,48.666667,4.416667,1.59
+ Isles-sur-Suippe ,ISLES SUR SUIPPE ,51110,51299,21,49.35,4.2,2.07
+ Isle-sur-Marne ,ISLE SUR MARNE ,51290,51300,21,48.65,4.683333,1.68
+ Isse ,ISSE ,51150,51301,21,49.066667,4.2,0.83
+ Les Istres-et-Bury ,LES ISTRES ET BURY,51190,51302,21,48.983333,4.083333,1.87
+ Jâlons ,JALONS ,51150,51303,21,49,4.183333,0.74
+ Janvilliers ,JANVILLIERS ,51210,51304,21,48.9,3.65,1.51
+ Janvry ,JANVRY ,51390,51305,21,49.25,3.883333,1.54
+ Joiselle ,JOISELLE ,51310,51306,21,48.766667,3.516667,1.88
+ Jonchery-sur-Suippe ,JONCHERY SUR SUIPPE ,51600,51307,21,49.15,4.466667,1
+ Jonchery-sur-Vesle ,JONCHERY SUR VESLE ,51140,51308,21,49.283333,3.816667,1.72
+ Jonquery ,JONQUERY ,51700,51309,21,49.15,3.783333,1.26
+ Jouy-lès-Reims ,JOUY LES REIMS ,51390,51310,21,49.2,3.933333,1.27
+ Jussécourt-Minecourt ,JUSSECOURT MINECOURT ,51340,51311,21,48.8,4.783333,1.68
+ Juvigny ,JUVIGNY ,51150,51312,21,49.016667,4.266667,1.84
+ Lachy ,LACHY ,51120,51313,21,48.766667,3.716667,1.32
+ Lagery ,LAGERY ,51170,51314,21,49.2,3.75,1.27
+ Landricourt ,LANDRICOURT ,51290,51315,21,48.616667,4.816667,1.86
+ Larzicourt ,LARZICOURT ,51290,51316,21,48.633333,4.716667,1.77
+ Laval-sur-Tourbe ,LAVAL SUR TOURBE ,51600,51317,21,49.133333,4.683333,1.4
+ Lavannes ,LAVANNES ,51110,51318,21,49.316667,4.166667,1.89
+ Lenharrée ,LENHARREE ,51230,51319,21,48.766667,4.116667,2
+ Leuvrigny ,LEUVRIGNY ,51700,51320,21,49.066667,3.766667,1.18
+ Lhéry ,LHERY ,51170,51321,21,49.2,3.766667,1.27
+ Lignon ,LIGNON ,51290,51322,21,48.583333,4.533333,2.04
+ Linthelles ,LINTHELLES ,51230,51323,21,48.716667,3.816667,1.37
+ Linthes ,LINTHES ,51230,51324,21,48.733333,3.85,1.24
+ Loisy-en-Brie ,LOISY EN BRIE ,51130,51327,21,48.883333,3.9,1.31
+ Loisy-sur-Marne ,LOISY SUR MARNE ,51300,51328,21,48.766667,4.55,1.12
+ Loivre ,LOIVRE ,51220,51329,21,49.35,3.983333,2.07
+ Louvois ,LOUVOIS ,51150,51331,21,49.1,4.116667,1.33
+ Lucy ,LUCY ,51270,51332,21,48.933333,3.8,1.08
+ Ludes ,LUDES ,51500,51333,21,49.15,4.083333,1
+ Luxémont-et-Villotte ,LUXEMONT ET VILLOTTE ,51300,51334,21,48.7,4.633333,1.42
+ Maclaunay ,MACLAUNAY ,51210,51335,21,48.85,3.55,1.79
+ Maffrécourt ,MAFFRECOURT ,51800,51336,21,49.116667,4.816667,1.78
+ Mailly-Champagne ,MAILLY CHAMPAGNE ,51500,51338,21,49.15,4.116667,1.31
+ Mairy-sur-Marne ,MAIRY SUR MARNE ,51240,51339,21,48.866667,4.416667,0.66
+ Maisons-en-Champagne ,MAISONS EN CHAMPAGNE ,51300,51340,21,48.75,4.5,1.68
+ Malmy ,MALMY ,51800,51341,21,49.175,4.808333,-1
+ Mancy ,MANCY ,51200,51342,21,48.983333,3.933333,0.71
+ Marcilly-sur-Seine ,MARCILLY SUR SEINE ,51260,51343,21,48.566667,3.7,2.13
+ Mardeuil ,MARDEUIL ,51200,51344,21,49.05,3.933333,0.87
+ Mareuil-en-Brie ,MAREUIL EN BRIE ,51270,51345,21,48.95,3.75,1.23
+ Mareuil-le-Port ,MAREUIL LE PORT ,51700,51346,21,49.083333,3.75,1.23
+ Mareuil-sur-Ay ,MAREUIL SUR AY ,51160,51347,21,49.05,4.033333,0.89
+ Marfaux ,MARFAUX ,51170,51348,21,49.166667,3.883333,1.88
+ Margerie-Hancourt ,MARGERIE HANCOURT ,51290,51349,21,48.55,4.516667,2.22
+ Marigny ,MARIGNY ,51230,51351,21,48.666667,3.866667,1.59
+ Marolles ,MAROLLES ,51300,51352,21,48.716667,4.633333,1.33
+ Marsangis ,MARSANGIS ,51260,51353,21,48.6,3.833333,1.95
+ Marson ,MARSON ,51240,51354,21,48.916667,4.533333,0.98
+ Massiges ,MASSIGES ,51800,51355,21,49.183333,4.75,1.59
+ Matignicourt-Goncourt ,MATIGNICOURT GONCOURT ,51300,51356,21,48.683333,4.683333,1.51
+ Matougues ,MATOUGUES ,51510,51357,21,48.983333,4.25,1.05
+ Maurupt-le-Montois ,MAURUPT LE MONTOIS ,51340,51358,21,48.75,4.85,1.87
+ Mécringes ,MECRINGES ,51210,51359,21,48.866667,3.5,1.93
+ Le Meix-Saint-Époing ,LE MEIX SAINT EPOING,51120,51360,21,48.7,3.65,1.51
+ Le Meix-Tiercelin ,LE MEIX TIERCELIN ,51320,51361,21,48.633333,4.416667,1.77
+ Merfy ,MERFY ,51220,51362,21,49.3,3.95,1.8
+ Merlaut ,MERLAUT ,51300,51363,21,48.766667,4.666667,1.36
+ Méry-Prémecy ,MERY PREMECY ,51390,51364,21,49.216667,3.866667,1.36
+ Les Mesneux ,LES MESNEUX ,51370,51365,21,49.216667,3.966667,1.38
+ Le Mesnil-sur-Oger ,LE MESNIL SUR OGER,51190,51367,21,48.95,4.016667,0.57
+ Moiremont ,MOIREMONT ,51800,51370,21,49.133333,4.883333,1.97
+ Moivre ,MOIVRE ,51240,51371,21,48.916667,4.666667,2.25
+ Moncetz-Longevas ,MONCETZ LONGEVAS ,51470,51372,21,48.916667,4.433333,1
+ Moncetz-l'Abbaye ,MONCETZ L ABBAYE ,51290,51373,21,48.65,4.65,1.68
+ Mondement-Montgivroux ,MONDEMENT MONTGIVROUX ,51120,51374,21,48.783333,3.783333,1.13
+ Montbré ,MONTBRE ,51500,51375,21,49.183333,4.033333,1.18
+ Montgenost ,MONTGENOST ,51260,51376,21,48.6,3.6,1.95
+ Montépreux ,MONTEPREUX ,51320,51377,21,48.716667,4.133333,1.33
+ Monthelon ,MONTHELON ,51200,51378,21,48.983333,3.933333,0.71
+ Montigny-sur-Vesle ,MONTIGNY SUR VESLE ,51140,51379,21,49.316667,3.8,1.89
+ Montmirail ,MONTMIRAIL ,51210,51380,21,48.866667,3.533333,1.84
+ Mont-sur-Courville ,MONT SUR COURVILLE ,51170,51382,21,49.25,3.683333,1.54
+ Morangis ,MORANGIS ,51200,51384,21,48.966667,3.916667,1.08
+ Morsains ,MORSAINS ,51210,51386,21,48.8,3.533333,1.84
+ Moslins ,MOSLINS ,51200,51387,21,48.966667,3.933333,0.95
+ Mourmelon-le-Grand ,MOURMELON LE GRAND ,51400,51388,21,49.133333,4.366667,0.91
+ Mourmelon-le-Petit ,MOURMELON LE PETIT ,51400,51389,21,49.133333,4.316667,0.91
+ Moussy ,MOUSSY ,51200,51390,21,49.016667,3.916667,0.76
+ Muizon ,MUIZON ,51140,51391,21,49.266667,3.883333,1.63
+ Mutigny ,MUTIGNY ,51160,51392,21,49.066667,4.016667,0.55
+ Nesle-la-Reposte ,NESLE LA REPOSTE ,51120,51395,21,48.633333,3.55,2.37
+ Nesle-le-Repons ,NESLE LE REPONS ,51700,51396,21,49.05,3.716667,1.32
+ La Neuville-aux-Bois ,LA NEUVILLE AUX BOIS,51330,51397,21,48.966667,4.9,2.01
+ La Neuville-aux-Larris ,LA NEUVILLE AUX LARRIS,51480,51398,21,49.15,3.833333,1.21
+ La Neuville-au-Pont ,LA NEUVILLE AU PONT,51800,51399,21,49.116667,4.866667,1.92
+ Neuville-sous-Arzillières ,NEUVILLE SOUS ARZILLIERES ,51290,51400,21,48.65,4.616667,1.68
+ Neuvy ,NEUVY ,51310,51402,21,48.75,3.516667,1.88
+ Nogent-l'Abbesse ,NOGENT L ABBESSE ,51420,51403,21,49.25,4.15,1.54
+ Noirlieu ,NOIRLIEU ,51330,51404,21,48.95,4.816667,1.78
+ Normée ,NORMEE ,51230,51405,21,48.783333,4.066667,1.53
+ Norrois ,NORROIS ,51300,51406,21,48.666667,4.616667,1.59
+ Nuisement-sur-Coole ,NUISEMENT SUR COOLE ,51240,51409,21,48.883333,4.3,1.98
+ Oeuilly ,OEUILLY ,51480,51410,21,49.066667,3.8,1.44
+ Oger ,OGER ,51190,51411,21,48.95,4.016667,0.57
+ Ognes ,OGNES ,51230,51412,21,48.7,3.9,1.42
+ Oiry ,OIRY ,51200,51413,21,49.016667,4.05,2.3
+ Olizy ,OLIZY ,51700,51414,21,49.15,3.758333,-1
+ Omey ,OMEY ,51240,51415,21,48.95,4.5,0.97
+ Orconte ,ORCONTE ,51300,51417,21,48.666667,4.733333,1.59
+ Ormes ,ORMES ,51370,51418,21,49.233333,3.95,1.45
+ Outines ,OUTINES ,51290,51419,21,48.55,4.65,2.22
+ Outrepont ,OUTREPONT ,51300,51420,21,48.766667,4.683333,1.4
+ Oyes ,OYES ,51120,51421,21,48.816667,3.783333,1.33
+ Pargny-lès-Reims ,PARGNY LES REIMS ,51390,51422,21,49.216667,3.916667,1.36
+ Pargny-sur-Saulx ,PARGNY SUR SAULX ,51340,51423,21,48.766667,4.833333,1.82
+ Passavant-en-Argonne ,PASSAVANT EN ARGONNE ,51800,51424,21,49.016667,5,2.29
+ Passy-Grigny ,PASSY GRIGNY ,51700,51425,21,49.116667,3.683333,1.41
+ Péas ,PEAS ,51120,51426,21,48.75,3.783333,1.15
+ Les Petites Loges ,LES PETITES LOGES ,51400,51428,21,49.133333,4.225,-1
+ Pévy ,PEVY ,51140,51429,21,49.316667,3.833333,1.89
+ Pierre-Morains ,PIERRE MORAINS ,51130,51430,21,48.833333,4.016667,0.7
+ Pierry ,PIERRY ,51200,51431,21,49.016667,3.933333,0.71
+ Pleurs ,PLEURS ,51230,51432,21,48.683333,3.866667,1.51
+ Plichancourt ,PLICHANCOURT ,51300,51433,21,48.75,4.666667,1.36
+ Plivot ,PLIVOT ,51150,51434,21,49.016667,4.066667,1.67
+ Pocancy ,POCANCY ,51130,51435,21,48.95,4.15,1.57
+ Pogny ,POGNY ,51240,51436,21,48.866667,4.483333,0.84
+ Poilly ,POILLY ,51170,51437,21,49.216667,3.816667,1.36
+ Poix ,POIX ,51460,51438,21,48.966667,4.633333,1.26
+ Pomacle ,POMACLE ,51110,51439,21,49.333333,4.15,1.98
+ Ponthion ,PONTHION ,51300,51441,21,48.766667,4.716667,1.5
+ Possesse ,POSSESSE ,51330,51442,21,48.883333,4.8,1.73
+ Potangis ,POTANGIS ,51260,51443,21,48.583333,3.65,2.04
+ Pouillon ,POUILLON ,51220,51444,21,49.316667,3.95,1.89
+ Pourcy ,POURCY ,51480,51445,21,49.15,3.916667,1.38
+ Pringy ,PRINGY ,51300,51446,21,48.783333,4.516667,1.59
+ Prosnes ,PROSNES ,51400,51447,21,49.183333,4.283333,1.21
+ Prouilly ,PROUILLY ,51140,51448,21,49.3,3.85,1.8
+ Prunay ,PRUNAY ,51360,51449,21,49.183333,4.183333,1.18
+ Puisieulx ,PUISIEULX ,51500,51450,21,49.183333,4.116667,1.24
+ Queudes ,QUEUDES ,51120,51451,21,48.65,3.766667,1.68
+ Rapsécourt ,RAPSECOURT ,51330,51452,21,49.016667,4.8,1.73
+ Recy ,RECY ,51520,51453,21,48.983333,4.316667,0.71
+ Reims ,REIMS ,51100,51454,21,49.25,4.033333,1.54
+ Reims-la-Brulée ,REIMS LA BRULEE ,51300,51455,21,48.716667,4.666667,1.36
+ Remicourt ,REMICOURT ,51330,51456,21,48.95,4.883333,1.97
+ Reuves ,REUVES ,51120,51458,21,48.8,3.8,1.29
+ Réveillon ,REVEILLON ,51310,51459,21,48.75,3.45,2.07
+ Rieux ,RIEUX ,51210,51460,21,48.85,3.5,1.93
+ Rilly-la-Montagne ,RILLY LA MONTAGNE ,51500,51461,21,49.166667,4.05,1.09
+ Les Rivières-Henruel ,LES RIVIERES HENRUEL ,51300,51463,21,48.65,4.566667,1.68
+ Romain ,ROMAIN ,51140,51464,21,49.333333,3.766667,1.98
+ Romery ,ROMERY ,51480,51465,21,49.1,3.916667,0.94
+ Romigny ,ROMIGNY ,51170,51466,21,49.166667,3.766667,1.18
+ Rosnay ,ROSNAY ,51390,51468,21,49.25,3.866667,1.54
+ Rouffy ,ROUFFY ,51130,51469,21,48.933333,4.1,1
+ Rouvroy-Ripont ,ROUVROY RIPONT ,51800,51470,21,49.216667,4.733333,1.54
+ Sacy ,SACY ,51500,51471,21,49.2,3.95,1.65
+ Saint-Amand-sur-Fion ,SAINT AMAND SUR FION,51300,51472,21,48.816667,4.6,1.17
+ Saint-Bon ,SAINT BON ,51310,51473,21,48.666667,3.466667,2.02
+ Saint-Chéron ,SAINT CHERON ,51290,51475,21,48.633333,4.566667,1.77
+ Saint-Étienne-au-Temple ,SAINT ETIENNE AU TEMPLE,51460,51476,21,49.016667,4.416667,1.75
+ Saint-Étienne-sur-Suippe ,SAINT ETIENNE SUR SUIPPE,51110,51477,21,49.383333,4.1,2.25
+ Saint-Eulien ,SAINT EULIEN ,52100,51478,21,48.683333,4.883333,1.97
+ Sainte-Gemme ,SAINTE GEMME ,51700,51480,21,49.15,3.666667,1.46
+ Saint-Germain-la-Ville ,SAINT GERMAIN LA VILLE,51240,51482,21,48.883333,4.45,0.75
+ Saint-Gibrien ,SAINT GIBRIEN ,51510,51483,21,48.966667,4.3,0.59
+ Saint-Gilles ,SAINT GILLES ,51170,51484,21,49.283333,3.683333,1.72
+ Saint-Hilaire-au-Temple ,SAINT HILAIRE AU TEMPLE,51400,51485,21,49.05,4.383333,1.06
+ Saint-Hilaire-le-Grand ,SAINT HILAIRE LE GRAND,51600,51486,21,49.166667,4.466667,1.09
+ Saint-Hilaire-le-Petit ,SAINT HILAIRE LE PETIT,51490,51487,21,49.266667,4.383333,1.63
+ Saint-Imoges ,SAINT IMOGES ,51160,51488,21,49.1,3.966667,1.25
+ Saint-Jean-devant-Possesse ,SAINT JEAN DEVANT POSSESSE,51330,51489,21,48.883333,4.8,1.73
+ Saint-Jean-sur-Moivre ,SAINT JEAN SUR MOIVRE,51240,51490,21,48.9,4.583333,1.29
+ Saint-Jean-sur-Tourbe ,SAINT JEAN SUR TOURBE,51600,51491,21,49.133333,4.683333,1.4
+ Saint-Just-Sauvage ,SAINT JUST SAUVAGE ,51260,51492,21,48.55,3.783333,2.22
+ Saint-Léonard ,SAINT LEONARD ,51500,51493,21,49.216667,4.1,1.36
+ Saint-Loup ,SAINT LOUP ,51120,51495,21,48.733333,3.816667,-1
+ Saint-Lumier-en-Champagne ,SAINT LUMIER EN CHAMPAGNE,51300,51496,21,48.8,4.633333,1.26
+ Saint-Lumier-la-Populeuse ,SAINT LUMIER LA POPULEUSE,51340,51497,21,48.733333,4.8,1.73
+ Saint-Mard-sur-Auve ,SAINT MARD SUR AUVE,51800,51498,21,49.033333,4.733333,1.54
+ Saint-Mard-lès-Rouffy ,SAINT MARD LES ROUFFY,51130,51499,21,48.95,4.116667,1.25
+ Saint-Mard-sur-le-Mont ,SAINT MARD SUR LE,51330,51500,21,48.916667,4.85,1.87
+ Sainte-Marie-à-Py ,SAINTE MARIE A PY,51600,51501,21,49.233333,4.5,1.45
+ Saint-Martin-aux-Champs ,SAINT MARTIN AUX CHAMPS,51240,51502,21,48.816667,4.483333,0.84
+ Saint-Martin-l'Heureux ,SAINT MARTIN L HEUREUX,51490,51503,21,49.25,4.4,1.54
+ Saint-Martin-sur-le-Pré ,SAINT MARTIN SUR LE,51520,51504,21,48.983333,4.333333,0.48
+ Saint-Masmes ,SAINT MASMES ,51490,51505,21,49.316667,4.266667,1.89
+ Saint-Memmie ,SAINT MEMMIE ,51470,51506,21,48.95,4.383333,1
+ Sainte-Menehould ,SAINTE MENEHOULD ,51800,51507,21,49.083333,4.9,2.01
+ Saint-Pierre ,SAINT PIERRE ,51510,51509,21,48.95,4.25,0.68
+ Saint-Quentin-les-Marais ,SAINT QUENTIN LES MARAIS,51300,51510,21,48.783333,4.65,1.31
+ Saint-Quentin-le-Verger ,SAINT QUENTIN LE VERGER,51120,51511,21,48.616667,3.75,1.86
+ Saint-Quentin-sur-Coole ,SAINT QUENTIN SUR COOLE,51240,51512,21,48.85,4.333333,1.61
+ Saint-Rémy-sous-Broyes ,SAINT REMY SOUS BROYES,51120,51514,21,48.7,3.783333,1.42
+ Saint-Rémy-sur-Bussy ,SAINT REMY SUR BUSSY,51600,51515,21,49.05,4.583333,1.12
+ Saint-Saturnin ,SAINT SATURNIN ,51260,51516,21,48.616667,3.9,1.86
+ Saint-Souplet-sur-Py ,SAINT SOUPLET SUR PY,51600,51517,21,49.233333,4.466667,1.45
+ Saint-Thierry ,SAINT THIERRY ,51220,51518,21,49.3,3.966667,1.8
+ Saint-Thomas-en-Argonne ,SAINT THOMAS EN ARGONNE,51800,51519,21,49.183333,4.866667,1.92
+ Saint-Utin ,SAINT UTIN ,51290,51520,21,48.55,4.5,2.22
+ Saint-Vrain ,SAINT VRAIN ,51340,51521,21,48.7,4.8,1.73
+ Sapignicourt ,SAPIGNICOURT ,52100,51522,21,48.65,4.816667,1.81
+ Sarcy ,SARCY ,51170,51523,21,49.2,3.816667,1.27
+ Saron-sur-Aube ,SARON SUR AUBE ,51260,51524,21,48.566667,3.733333,2.13
+ Sarry ,SARRY ,51520,51525,21,48.916667,4.4,1.12
+ Saudoy ,SAUDOY ,51120,51526,21,48.683333,3.716667,1.51
+ Savigny-sur-Ardres ,SAVIGNY SUR ARDRES ,51170,51527,21,49.233333,3.783333,1.45
+ Scrupt ,SCRUPT ,51340,51528,21,48.716667,4.783333,1.68
+ Selles ,SELLES ,51490,51529,21,49.3,4.283333,1.8
+ Sept-Saulx ,SEPT SAULX ,51400,51530,21,49.15,4.25,1.21
+ Sermaize-les-Bains ,SERMAIZE LES BAINS ,51250,51531,21,48.783333,4.916667,2.06
+ Sermiers ,SERMIERS ,51500,51532,21,49.15,3.983333,1.12
+ Servon-Melzicourt ,SERVON MELZICOURT ,51800,51533,21,49.216667,4.85,1.87
+ Serzy-et-Prin ,SERZY ET PRIN ,51170,51534,21,49.25,3.766667,1.54
+ Sézanne ,SEZANNE ,51120,51535,21,48.716667,3.716667,1.33
+ Sillery ,SILLERY ,51500,51536,21,49.2,4.133333,1.57
+ Sogny-aux-Moulins ,SOGNY AUX MOULINS ,51520,51538,21,48.9,4.4,1.34
+ Sogny-en-l'Angle ,SOGNY EN L ANGLE,51340,51539,21,48.816667,4.8,1.73
+ Soilly ,SOILLY ,51700,51541,21,49.066667,3.616667,1.62
+ Soizy-aux-Bois ,SOIZY AUX BOIS ,51120,51542,21,48.816667,3.733333,1.27
+ Somme-Bionne ,SOMME BIONNE ,51800,51543,21,49.1,4.733333,1.54
+ Sommepy-Tahure ,SOMMEPY TAHURE ,51600,51544,21,49.25,4.55,1.54
+ Sommesous ,SOMMESOUS ,51320,51545,21,48.733333,4.2,1.24
+ Somme-Suippe ,SOMME SUIPPE ,51600,51546,21,49.116667,4.583333,1.12
+ Somme-Tourbe ,SOMME TOURBE ,51600,51547,21,49.1,4.666667,1.36
+ Somme-Vesle ,SOMME VESLE ,51460,51548,21,48.983333,4.583333,1.12
+ Somme-Yèvre ,SOMME YEVRE ,51330,51549,21,48.95,4.766667,1.64
+ Sompuis ,SOMPUIS ,51320,51550,21,48.683333,4.383333,1.51
+ Somsois ,SOMSOIS ,51290,51551,21,48.6,4.5,1.95
+ Songy ,SONGY ,51240,51552,21,48.8,4.5,0.89
+ Souain-Perthes-lès-Hurlus ,SOUAIN PERTHES LES HURLUS,51600,51553,21,49.183333,4.533333,1.18
+ Soudron ,SOUDRON ,51320,51556,21,48.85,4.2,1.26
+ Soulanges ,SOULANGES ,51300,51557,21,48.783333,4.533333,1.4
+ Soulières ,SOULIERES ,51130,51558,21,48.9,3.933333,0.95
+ Suippes ,SUIPPES ,51600,51559,21,49.133333,4.533333,0.98
+ Suizy-le-Franc ,SUIZY LE FRANC ,51270,51560,21,48.95,3.733333,1.27
+ Taissy ,TAISSY ,51500,51562,21,49.216667,4.1,1.36
+ Talus-Saint-Prix ,TALUS SAINT PRIX ,51270,51563,21,48.833333,3.75,1.23
+ Tauxières-Mutry ,TAUXIERES MUTRY ,51150,51564,21,49.083333,4.1,1.33
+ Thaas ,THAAS ,51230,51565,21,48.65,3.883333,1.68
+ Thibie ,THIBIE ,51510,51566,21,48.933333,4.216667,1.35
+ Thiéblemont-Farémont ,THIEBLEMONT FAREMONT ,51300,51567,21,48.683333,4.733333,1.54
+ Thil ,THIL ,51220,51568,21,49.316667,3.966667,1.89
+ Thillois ,THILLOIS ,51370,51569,21,49.25,3.95,1.54
+ Le Thoult-Trosnay ,LE THOULT TROSNAY ,51210,51570,21,48.85,3.683333,1.41
+ Tilloy-et-Bellay ,TILLOY ET BELLAY ,51460,51572,21,49,4.616667,1.21
+ Tinqueux ,TINQUEUX ,51430,51573,21,49.25,3.983333,1.54
+ Togny-aux-Boeufs ,TOGNY AUX BOEUFS ,51240,51574,21,48.85,4.45,0.75
+ Toulon-la-Montagne ,TOULON LA MONTAGNE ,51130,51575,21,48.85,3.883333,1.55
+ Tours-sur-Marne ,TOURS SUR MARNE ,51150,51576,21,49.05,4.116667,0.81
+ Tramery ,TRAMERY ,51170,51577,21,49.216667,3.8,1.36
+ Trécon ,TRECON ,51130,51578,21,48.866667,4.083333,0.73
+ Tréfols ,TREFOLS ,51210,51579,21,48.783333,3.5,1.93
+ Trépail ,TREPAIL ,51380,51580,21,49.1,4.183333,0.73
+ Treslon ,TRESLON ,51140,51581,21,49.233333,3.816667,1.45
+ Trigny ,TRIGNY ,51140,51582,21,49.3,3.9,1.8
+ Trois-Puits ,TROIS PUITS ,51500,51584,21,49.2,4.033333,1.27
+ Troissy ,TROISSY ,51700,51585,21,49.083333,3.716667,1.32
+ Unchair ,UNCHAIR ,51170,51586,21,49.283333,3.75,1.72
+ Vadenay ,VADENAY ,51400,51587,21,49.066667,4.4,1.11
+ Valmy ,VALMY ,51800,51588,21,49.083333,4.766667,1.64
+ Vanault-le-Châtel ,VANAULT LE CHATEL ,51330,51589,21,48.866667,4.733333,1.7
+ Vanault-les-Dames ,VANAULT LES DAMES ,51340,51590,21,48.85,4.766667,1.99
+ Vandeuil ,VANDEUIL ,51140,51591,21,49.283333,3.783333,1.72
+ Vassimont-et-Chapelaine ,VASSIMONT ET CHAPELAINE ,51320,51594,21,48.766667,4.15,1.23
+ Vatry ,VATRY ,51320,51595,21,48.816667,4.25,0.82
+ Vauchamps ,VAUCHAMPS ,51210,51596,21,48.883333,3.616667,1.6
+ Vauciennes ,VAUCIENNES ,51480,51597,21,49.05,3.883333,0.97
+ Vauclerc ,VAUCLERC ,51300,51598,21,48.716667,4.65,1.33
+ Vaudemanges ,VAUDEMANGES ,51380,51599,21,49.083333,4.216667,1.38
+ Vaudesincourt ,VAUDESINCOURT ,51600,51600,21,49.216667,4.4,1.71
+ Vavray-le-Grand ,VAVRAY LE GRAND ,51300,51601,21,48.8,4.716667,1.5
+ Vavray-le-Petit ,VAVRAY LE PETIT ,51300,51602,21,48.8,4.716667,1.5
+ Vélye ,VELYE ,51130,51603,21,48.883333,4.116667,1.06
+ Ventelay ,VENTELAY ,51140,51604,21,49.333333,3.8,1.98
+ Venteuil ,VENTEUIL ,51480,51605,21,49.083333,3.833333,0.99
+ Verdon ,VERDON ,51210,51607,21,48.95,3.616667,1.6
+ Vernancourt ,VERNANCOURT ,51330,51608,21,48.866667,4.833333,1.82
+ Verneuil ,VERNEUIL ,51700,51609,21,49.1,3.666667,1.46
+ Vertus ,VERTUS ,51130,51612,21,48.9,4,0.52
+ Verzenay ,VERZENAY ,51360,51613,21,49.166667,4.15,1.35
+ Verzy ,VERZY ,51380,51614,21,49.15,4.166667,1.38
+ Vésigneul-sur-Marne ,VESIGNEUL SUR MARNE ,51240,51616,21,48.866667,4.45,0.75
+ La Veuve ,LA VEUVE ,51520,51617,21,49.033333,4.316667,1.35
+ Le Vézier ,LE VEZIER ,51210,51618,21,48.8,3.466667,2.02
+ Le Vieil-Dampierre ,LE VIEIL DAMPIERRE ,51330,51619,21,48.983333,4.883333,1.97
+ Vienne-la-Ville ,VIENNE LA VILLE ,51800,51620,21,49.166667,4.85,1.87
+ Vienne-le-Château ,VIENNE LE CHATEAU ,51800,51621,21,49.183333,4.883333,1.97
+ Ville-Dommange ,VILLE DOMMANGE ,51390,51622,21,49.2,3.933333,1.27
+ Ville-en-Selve ,VILLE EN SELVE ,51500,51623,21,49.116667,4.083333,1.2
+ Ville-en-Tardenois ,VILLE EN TARDENOIS ,51170,51624,21,49.183333,3.8,1.18
+ Villeneuve-la-Lionne ,VILLENEUVE LA LIONNE ,51310,51625,21,48.766667,3.45,2.07
+ Villers-Allerand ,VILLERS ALLERAND ,51500,51629,21,49.166667,4.016667,1.09
+ Villers-aux-Bois ,VILLERS AUX BOIS ,51130,51630,21,48.933333,3.933333,1.06
+ Villers-aux-Noeuds ,VILLERS AUX NOEUDS ,51500,51631,21,49.183333,3.983333,1.18
+ Villers-en-Argonne ,VILLERS EN ARGONNE ,51800,51632,21,49.016667,4.933333,2.11
+ Villers-Franqueux ,VILLERS FRANQUEUX ,51220,51633,21,49.333333,3.933333,1.98
+ Villers-le-Château ,VILLERS LE CHATEAU ,51510,51634,21,48.95,4.266667,0.37
+ Villers-le-Sec ,VILLERS LE SEC ,51250,51635,21,48.816667,4.85,1.87
+ Villers-Marmery ,VILLERS MARMERY ,51380,51636,21,49.133333,4.2,0.91
+ Villers-sous-Châtillon ,VILLERS SOUS CHATILLON ,51700,51637,21,49.1,3.8,1.25
+ Villeseneux ,VILLESENEUX ,51130,51638,21,48.833333,4.15,1.54
+ La Ville-sous-Orbais ,LA VILLE SOUS ORBAIS,51270,51639,21,48.966667,3.683333,1.96
+ Ville-sur-Tourbe ,VILLE SUR TOURBE ,51800,51640,21,49.183333,4.783333,1.68
+ Villevenard ,VILLEVENARD ,51270,51641,21,48.833333,3.8,1.08
+ Villiers-aux-Corneilles ,VILLIERS AUX CORNEILLES ,51260,51642,21,48.583333,3.683333,2.04
+ Vinay ,VINAY ,51200,51643,21,49.016667,3.9,0.92
+ Vincelles ,VINCELLES ,51700,51644,21,49.1,3.65,1.51
+ Vindey ,VINDEY ,51120,51645,21,48.7,3.716667,1.42
+ Virginy ,VIRGINY ,51800,51646,21,49.166667,4.766667,1.64
+ Vitry-en-Perthois ,VITRY EN PERTHOIS ,51300,51647,21,48.75,4.616667,1.21
+ Vitry-la-Ville ,VITRY LA VILLE ,51240,51648,21,48.833333,4.466667,0.79
+ Vitry-le-François ,VITRY LE FRANCOIS ,51300,51649,21,48.733333,4.583333,1.24
+ Voilemont ,VOILEMONT ,51800,51650,21,49.05,4.8,1.73
+ Voipreux ,VOIPREUX ,51130,51651,21,48.9,4.033333,0.43
+ Vouarces ,VOUARCES ,51260,51652,21,48.583333,3.9,2.04
+ Vouciennes ,VOUCIENNES ,51240,51653,21,48.85,4.45,0.75
+ Vouillers ,VOUILLERS ,51340,51654,21,48.683333,4.833333,1.82
+ Vouzy ,VOUZY ,51130,51655,21,48.916667,4.1,0.93
+ Vraux ,VRAUX ,51150,51656,21,49.016667,4.233333,1.28
+ Vrigny ,VRIGNY ,51390,51657,21,49.233333,3.916667,1.45
+ Vroil ,VROIL ,51330,51658,21,48.85,4.916667,2.06
+ Wargemoulin-Hurlus ,WARGEMOULIN HURLUS ,51800,51659,21,49.15,4.7,1.45
+ Warmeriville ,WARMERIVILLE ,51110,51660,21,49.35,4.216667,2.07
+ Witry-lès-Reims ,WITRY LES REIMS ,51420,51662,21,49.3,4.116667,1.8
+ Magenta ,MAGENTA ,51200,51663,21,49.05,3.966667,0.99
+ Port à Binson ,PORT A BINSON ,51700,51900,21,49.083333,3.766667,1.18
+ Ageville ,AGEVILLE ,52340,52001,72,48.116667,5.35,0.67
+ Aigremont ,AIGREMONT ,52400,52002,72,48.016667,5.716667,2.1
+ Aillianville ,AILLIANVILLE ,52700,52003,72,48.35,5.483333,1.47
+ Aingoulaincourt ,AINGOULAINCOURT ,52230,52004,72,48.45,5.283333,1.53
+ Aizanville ,AIZANVILLE ,52120,52005,72,48.1,4.9,1.59
+ Allichamps ,ALLICHAMPS ,52130,52006,72,48.566667,4.883333,2.04
+ Ambonville ,AMBONVILLE ,52110,52007,72,48.316667,5.016667,1.39
+ Andilly-en-Bassigny ,ANDILLY EN BASSIGNY ,52360,52009,72,47.916667,5.516667,1.2
+ Anglus ,ANGLUS ,52220,52010,72,48.4,4.733333,2.35
+ Annéville-la-Prairie ,ANNEVILLE LA PRAIRIE ,52310,52011,72,48.2,5.083333,0.81
+ Annonville ,ANNONVILLE ,52230,52012,72,48.383333,5.266667,1.29
+ Anrosey ,ANROSEY ,52500,52013,72,47.833333,5.666667,1.88
+ Aprey ,APREY ,52250,52014,72,47.766667,5.233333,1.49
+ Arbigny-sous-Varennes ,ARBIGNY SOUS VARENNES ,52500,52015,72,47.866667,5.616667,1.65
+ Arbot ,ARBOT ,52160,52016,72,47.85,5.016667,1.33
+ Arc-en-Barrois ,ARC EN BARROIS ,52210,52017,72,47.95,5,1.14
+ Argentolles ,ARGENTOLLES ,52330,52018,72,48.25,4.883333,1.67
+ Arnancourt ,ARNANCOURT ,52110,52019,72,48.35,4.916667,1.52
+ Arnoncourt-sur-Apance ,ARNONCOURT SUR APANCE ,52400,52020,72,48,5.7,2.03
+ Attancourt ,ATTANCOURT ,52130,52021,72,48.533333,4.933333,1.89
+ Aubepierre-sur-Aube ,AUBEPIERRE SUR AUBE ,52210,52022,72,47.916667,4.916667,1.52
+ Auberive ,AUBERIVE ,52160,52023,72,47.783333,5.05,1.41
+ Audeloncourt ,AUDELONCOURT ,52240,52025,72,48.116667,5.516667,1.2
+ Augeville ,AUGEVILLE ,52270,52026,72,48.366667,5.316667,1.26
+ Aujeurres ,AUJEURRES ,52190,52027,72,47.733333,5.183333,1.63
+ Aulnoy-sur-Aube ,AULNOY SUR AUBE ,52160,52028,72,47.833333,5.033333,1.19
+ Autigny-le-Grand ,AUTIGNY LE GRAND ,52300,52029,72,48.466667,5.133333,1.6
+ Autigny-le-Petit ,AUTIGNY LE PETIT ,52300,52030,72,48.483333,5.133333,1.67
+ Autreville-sur-la-Renne ,AUTREVILLE SUR LA RENNE,52120,52031,72,48.116667,4.966667,1.29
+ Avrainville ,AVRAINVILLE ,52130,52032,72,48.533333,5.05,1.89
+ Avrecourt ,AVRECOURT ,52140,52033,72,47.966667,5.533333,1.27
+ Bailly-aux-Forges ,BAILLY AUX FORGES ,52130,52034,72,48.466667,4.916667,1.6
+ Baissey ,BAISSEY ,52250,52035,72,47.75,5.25,1.56
+ Balesmes-sur-Marne ,BALESMES SUR MARNE ,52200,52036,72,47.816667,5.383333,1.27
+ Bannes ,BANNES ,52360,52037,72,47.9,5.4,1.13
+ Bassoncourt ,BASSONCOURT ,52240,52038,72,48.066667,5.566667,1.42
+ Baudrecourt ,BAUDRECOURT ,52110,52039,72,48.4,4.95,1.37
+ Bay-sur Aube ,BAY SUR AUBE ,52160,52040,72,47.816667,5.066667,1.27
+ Beaucharmoy ,BEAUCHARMOY ,52400,52041,72,47.983333,5.666667,1.88
+ Beauchemin ,BEAUCHEMIN ,52260,52042,72,47.9,5.25,0.9
+ Belmont ,BELMONT ,52500,52043,72,47.716667,5.55,1.71
+ Bettancourt-la-Ferrée ,BETTANCOURT LA FERREE ,52100,52045,72,48.65,4.966667,2.41
+ Bettoncourt-le-Haut ,BETTONCOURT LE HAUT ,52230,52046,72,48.383333,5.3,1.23
+ Beurville ,BEURVILLE ,52110,52047,72,48.316667,4.833333,1.9
+ Bienville ,BIENVILLE ,52410,52048,72,48.566667,5.05,2.04
+ Biernes ,BIERNES ,52330,52049,72,48.266667,4.916667,1.52
+ Biesles ,BIESLES ,52340,52050,72,48.083333,5.3,0.9
+ Bize ,BIZE ,52500,52051,72,47.833333,5.633333,1.73
+ Blaise ,BLAISE ,52330,52052,72,48.283333,4.966667,1.29
+ Blaisy ,BLAISY ,52330,52053,72,48.183333,5,1.14
+ Blancheville ,BLANCHEVILLE ,52700,52054,72,48.216667,5.266667,1.03
+ Blécourt ,BLECOURT ,52300,52055,72,48.383333,5.083333,1.24
+ Blessonville ,BLESSONVILLE ,52120,52056,72,48.066667,5,1.3
+ Blumeray ,BLUMERAY ,52110,52057,72,48.366667,4.85,1.82
+ Bologne ,BOLOGNE ,52310,52058,72,48.2,5.133333,1.01
+ Bonnecourt ,BONNECOURT ,52360,52059,72,47.95,5.466667,0.97
+ Bourbonne-les-Bains ,BOURBONNE LES BAINS ,52400,52060,72,47.95,5.75,2.25
+ Bourdons-sur-Rognon ,BOURDONS SUR ROGNON ,52700,52061,72,48.166667,5.35,0.86
+ Bourg ,BOURG ,52200,52062,72,47.8,5.316667,1.34
+ Bourg-Sainte-Marie ,BOURG SAINTE MARIE ,52150,52063,72,48.183333,5.55,1.35
+ Bourmont ,BOURMONT ,52150,52064,72,48.2,5.583333,1.5
+ Bouzancourt ,BOUZANCOURT ,52110,52065,72,48.316667,4.95,1.37
+ Brachay ,BRACHAY ,52110,52066,72,48.383333,5.033333,1.4
+ Brainville-sur-Meuse ,BRAINVILLE SUR MEUSE ,52150,52067,72,48.183333,5.583333,1.5
+ Braucourt ,BRAUCOURT ,52290,52068,72,48.533333,4.816667,1.97
+ Braux-le-Châtel ,BRAUX LE CHATEL ,52120,52069,72,48.1,4.95,1.37
+ Brennes ,BRENNES ,52200,52070,72,47.8,5.283333,1.34
+ Bressoncourt ,BRESSONCOURT ,52230,52071,72,48.433333,5.35,1.45
+ Brethenay ,BRETHENAY ,52000,52072,72,48.15,5.133333,0.64
+ Breuil-sur-Marne ,BREUIL SUR MARNE ,52170,52073,72,48.5,5.116667,1.79
+ Briaucourt ,BRIAUCOURT ,52700,52075,72,48.216667,5.183333,1.81
+ Bricon ,BRICON ,52120,52076,72,48.083333,4.966667,1.29
+ Broncourt ,BRONCOURT ,52500,52077,72,47.766667,5.666667,1.88
+ Brottes ,BROTTES ,52000,52078,72,48.083333,5.133333,0.54
+ Brousseval ,BROUSSEVAL ,52130,52079,72,48.483333,4.966667,1.67
+ Brouthières ,BROUTHIERES ,52230,52080,72,48.4,5.333333,1.31
+ Buchey ,BUCHEY ,52330,52081,72,48.266667,4.883333,1.67
+ Bugnières ,BUGNIERES ,52210,52082,72,47.95,5.1,0.69
+ Busson ,BUSSON ,52700,52084,72,48.333333,5.366667,1.01
+ Buxières-lès-Clefmont ,BUXIERES LES CLEFMONT ,52240,52085,72,48.1,5.466667,0.97
+ Buxières-lès-Froncles ,BUXIERES LES FRONCLES ,52320,52086,72,48.3,5.15,1.04
+ Buxières-lès-Villiers ,BUXIERES LES VILLIERS ,52000,52087,72,48.1,5.033333,1.41
+ Ceffonds ,CEFFONDS ,52220,52088,72,48.466667,4.766667,2.2
+ Celles-en-Bassigny ,CELLES EN BASSIGNY ,52360,52089,72,47.916667,5.55,1.79
+ Celsoy ,CELSOY ,52600,52090,72,47.866667,5.483333,1.17
+ Chalancey ,CHALANCEY ,52160,52092,72,47.683333,5.15,1.85
+ Chalindrey ,CHALINDREY ,52600,52093,72,47.8,5.433333,1.34
+ Chalvraines ,CHALVRAINES ,52700,52095,72,48.233333,5.483333,1.15
+ Chamarandes ,CHAMARANDES ,52000,52096,72,48.083333,5.15,0.53
+ Chambroncourt ,CHAMBRONCOURT ,52700,52097,72,48.35,5.4,1.09
+ Chameroy ,CHAMEROY ,52210,52098,72,47.833333,5.116667,1.19
+ Chamouilley ,CHAMOUILLEY ,52410,52099,72,48.6,5.05,2.19
+ Champcourt ,CHAMPCOURT ,52330,52100,72,48.283333,4.95,1.37
+ Champigny-lès-Langres ,CHAMPIGNY LES LANGRES ,52200,52102,72,47.9,5.35,0.91
+ Champigny-sous-Varennes ,CHAMPIGNY SOUS VARENNES ,52400,52103,72,47.866667,5.65,1.8
+ Chancenay ,CHANCENAY ,52100,52104,72,48.666667,4.983333,2.48
+ Changey ,CHANGEY ,52360,52105,72,47.933333,5.383333,1.52
+ Chanoy ,CHANOY ,52260,52106,72,47.916667,5.283333,0.82
+ Chantraines ,CHANTRAINES ,52700,52107,72,48.216667,5.25,1.18
+ Charmes-en-l'Angle ,CHARMES EN L ANGLE,52110,52109,72,48.366667,5,1.16
+ Charmes-la-Grande ,CHARMES LA GRANDE ,52110,52110,72,48.383333,4.983333,1.23
+ Charmoilles ,CHARMOILLES ,52260,52111,72,47.95,5.366667,1.73
+ Chassigny ,CHASSIGNY ,52190,52113,72,47.716667,5.383333,1.71
+ Châteauvillain ,CHATEAUVILLAIN ,52120,52114,72,48.033333,4.916667,1.52
+ Châtenay-Mâcheron ,CHATENAY MACHERON ,52200,52115,72,47.85,5.4,1.33
+ Châtenay-Vaudin ,CHATENAY VAUDIN ,52360,52116,72,47.85,5.45,1.13
+ Chatoillenot ,CHATOILLENOT ,52190,52117,72,47.683333,5.25,1.85
+ Chaudenay ,CHAUDENAY ,52600,52119,72,47.833333,5.5,1.19
+ Chauffourt ,CHAUFFOURT ,52140,52120,72,47.966667,5.433333,1.51
+ Chaumont ,CHAUMONT ,52000,52121,72,48.116667,5.133333,0.54
+ Chaumont-la-Ville ,CHAUMONT LA VILLE ,52150,52122,72,48.15,5.65,1.8
+ Chevillon ,CHEVILLON ,52170,52123,72,48.533333,5.133333,1.89
+ Chézeaux ,CHEZEAUX ,52400,52124,72,47.883333,5.65,1.8
+ Choiseul ,CHOISEUL ,52240,52127,72,48.066667,5.566667,1.42
+ Cirey-lès-Mareilles ,CIREY LES MAREILLES ,52700,52128,72,48.2,5.283333,0.96
+ Cirey-sur-Blaise ,CIREY SUR BLAISE ,52110,52129,72,48.333333,4.933333,1.44
+ Cirfontaines-en-Azois ,CIRFONTAINES EN AZOIS ,52370,52130,72,48.116667,4.866667,1.75
+ Cirfontaines-en-Ornois ,CIRFONTAINES EN ORNOIS ,52230,52131,72,48.45,5.383333,1.53
+ Clefmont ,CLEFMONT ,52240,52132,72,48.1,5.516667,1.2
+ Clinchamp ,CLINCHAMP ,52700,52133,72,48.2,5.45,0.97
+ Cohons ,COHONS ,52600,52134,72,47.783333,5.35,1.56
+ Coiffy-le-Bas ,COIFFY LE BAS ,52400,52135,72,47.916667,5.683333,1.95
+ Coiffy-le-Haut ,COIFFY LE HAUT ,52400,52136,72,47.9,5.7,2.03
+ Colmier-le-Bas ,COLMIER LE BAS ,52160,52137,72,47.766667,4.95,1.49
+ Colmier-le-Haut ,COLMIER LE HAUT ,52160,52138,72,47.783333,4.966667,1.41
+ Colombey-lès-Choiseul ,COLOMBEY LES CHOISEUL ,52240,52139,72,48.066667,5.633333,2.16
+ Colombey-les-deux-Églises ,COLOMBEY LES DEUX EGLISES,52330,52140,72,48.216667,4.883333,1.67
+ Condes ,CONDES ,52000,52141,72,48.15,5.15,0.73
+ Consigny ,CONSIGNY ,52700,52142,72,48.166667,5.416667,0.98
+ Corgirnon ,CORGIRNON ,52500,52143,72,47.8,5.5,1.34
+ Corlée ,CORLEE ,52200,52144,72,47.833333,5.366667,1.19
+ Coublanc ,COUBLANC ,52500,52145,72,47.7,5.466667,1.78
+ Coupray ,COUPRAY ,52210,52146,72,47.966667,4.933333,1.44
+ Courcelles-en-Montagne ,COURCELLES EN MONTAGNE ,52200,52147,72,47.833333,5.216667,1.19
+ Courcelles-sur-Aujon ,COURCELLES SUR AUJON ,52210,52148,72,47.9,5.1,0.9
+ Courcelles-sur-Blaise ,COURCELLES SUR BLAISE ,52110,52149,72,48.416667,4.933333,1.44
+ Courcelles-Val-d'Esnoms ,COURCELLES VAL D ESNOMS,52190,52150,72,47.7,5.233333,1.78
+ Cour l'Évêque ,COUR L EVEQUE ,52210,52151,72,47.966667,4.983333,1.22
+ Créancey ,CREANCEY ,52120,52153,72,48.016667,4.883333,1.67
+ Crenay ,CRENAY ,52000,52154,72,48.016667,5.166667,1.52
+ Culmont ,CULMONT ,52600,52155,72,47.816667,5.433333,1.27
+ Curel ,CUREL ,52300,52156,72,48.5,5.133333,1.75
+ Curmont ,CURMONT ,52330,52157,72,48.266667,4.95,1.37
+ Cusey ,CUSEY ,52190,52158,72,47.633333,5.35,2.07
+ Cuves ,CUVES ,52240,52159,72,48.1,5.433333,1.27
+ Daillancourt ,DAILLANCOURT ,52110,52160,72,48.3,4.95,1.37
+ Daillecourt ,DAILLECOURT ,52240,52161,72,48.083333,5.5,1.12
+ Dammartin-sur-Meuse ,DAMMARTIN SUR MEUSE ,52140,52162,72,47.983333,5.566667,1.42
+ Dampierre ,DAMPIERRE ,52360,52163,72,47.95,5.4,1.39
+ Damrémont ,DAMREMONT ,52400,52164,72,47.95,5.65,1.8
+ Dancevoir ,DANCEVOIR ,52210,52165,72,47.916667,4.866667,2.02
+ Dardenay ,DARDENAY ,52190,52166,72,47.65,5.35,2
+ Darmannes ,DARMANNES ,52700,52167,72,48.166667,5.216667,1.68
+ Dinteville ,DINTEVILLE ,52120,52168,72,48.033333,4.8,2.05
+ Dommarien ,DOMMARIEN ,52190,52170,72,47.683333,5.35,1.85
+ Dommartin-le-Franc ,DOMMARTIN LE FRANC ,52110,52171,72,48.433333,4.966667,1.45
+ Dommartin-le-Saint-Père ,DOMMARTIN LE SAINT PERE,52110,52172,72,48.4,4.916667,1.52
+ Doncourt-sur-Meuse ,DONCOURT SUR MEUSE ,52150,52174,72,48.15,5.566667,1.42
+ Donjeux ,DONJEUX ,52300,52175,72,48.366667,5.15,1.16
+ Donnemarie ,DONNEMARIE ,52800,52176,72,48.066667,5.4,1.22
+ Doulevant-le-Château ,DOULEVANT LE CHATEAU ,52110,52178,72,48.383333,4.916667,1.52
+ Doulevant-le-Petit ,DOULEVANT LE PETIT ,52130,52179,72,48.45,4.95,1.53
+ Droyes ,DROYES ,52220,52180,72,48.516667,4.7,2.5
+ Échenay ,ECHENAY ,52230,52181,72,48.466667,5.316667,1.6
+ Écot-la Combe ,ECOT LA COMBE ,52700,52183,72,48.216667,5.383333,0.59
+ Effincourt ,EFFINCOURT ,52300,52184,72,48.5,5.266667,2.02
+ Enfonvelle ,ENFONVELLE ,52400,52185,72,47.933333,5.866667,2.78
+ Épinant ,EPINANT ,52140,52186,72,48,5.45,1.18
+ Épizon ,EPIZON ,52230,52187,72,48.383333,5.35,1.23
+ Ériseul ,ERISEUL ,52210,52188,72,47.883333,5.083333,0.97
+ Esnouveaux ,ESNOUVEAUX ,52340,52190,72,48.133333,5.366667,1.12
+ Essey-les-Eaux ,ESSEY LES EAUX ,52800,52191,72,48.05,5.416667,1.38
+ Essey-les-Ponts ,ESSEY LES PONTS ,52120,52192,72,48.066667,4.883333,1.67
+ Euffigneix ,EUFFIGNEIX ,52000,52193,72,48.133333,5.033333,1.46
+ Farincourt ,FARINCOURT ,52500,52195,72,47.7,5.683333,1.95
+ Faverolles ,FAVEROLLES ,52260,52196,72,47.95,5.216667,1.26
+ Fays ,FAYS ,52130,52198,72,48.466667,5.033333,1.6
+ Ferrière-et-Lafolie ,FERRIERE ET LAFOLIE ,52300,52199,72,48.4,5.083333,1.31
+ Flagey ,FLAGEY ,52250,52200,72,47.783333,5.25,1.41
+ Flammerécourt ,FLAMMERECOURT ,52110,52201,72,48.366667,5.05,1.63
+ Flornoy ,FLORNOY ,52130,52202,72,48.516667,5,1.82
+ Fontaines-sur-Marne ,FONTAINES SUR MARNE ,52170,52203,72,48.55,5.1,1.97
+ Forcey ,FORCEY ,52700,52204,72,48.15,5.35,1.02
+ Foulain ,FOULAIN ,52800,52205,72,48.033333,5.216667,1.58
+ Frampas ,FRAMPAS ,52220,52206,72,48.516667,4.833333,1.9
+ Frécourt ,FRECOURT ,52360,52207,72,47.95,5.45,0.9
+ Fresnes-sur-Apance ,FRESNES SUR APANCE ,52400,52208,72,47.933333,5.833333,2.63
+ Fresnoy-en-Bassigny ,FRESNOY EN BASSIGNY ,52400,52209,72,48.033333,5.666667,1.88
+ Froncles ,FRONCLES ,52320,52211,72,48.3,5.15,1.04
+ Fronville ,FRONVILLE ,52300,52212,72,48.4,5.15,1.31
+ Genevrières ,GENEVRIERES ,52500,52213,72,47.716667,5.6,1.71
+ La Genevroye ,LA GENEVROYE ,52320,52214,72,48.283333,5.05,1.06
+ Genrupt ,GENRUPT ,52400,52215,72,47.916667,5.75,2.25
+ Germaines ,GERMAINES ,52160,52216,72,47.8,5.033333,1.34
+ Germainvilliers ,GERMAINVILLIERS ,52150,52217,72,48.116667,5.65,1.8
+ Germay ,GERMAY ,52230,52218,72,48.416667,5.35,1.38
+ Germisay ,GERMISAY ,52230,52219,72,48.4,5.35,1.31
+ Giey-sur-Aujon ,GIEY SUR AUJON ,52210,52220,72,47.9,5.066667,0.9
+ Gillancourt ,GILLANCOURT ,52330,52221,72,48.166667,5,1.25
+ Gillaumé ,GILLAUME ,52230,52222,72,48.466667,5.333333,1.6
+ Gilley ,GILLEY ,52500,52223,72,47.683333,5.633333,1.85
+ Gonaincourt ,GONAINCOURT ,52150,52224,72,48.216667,5.6,1.57
+ Gourzon ,GOURZON ,52170,52226,72,48.55,5.083333,1.97
+ Graffigny-Chemin ,GRAFFIGNY CHEMIN ,52150,52227,72,48.166667,5.633333,1.73
+ Grandchamp ,GRANDCHAMP ,52600,52228,72,47.725,5.45,-1
+ Grenant ,GRENANT ,52500,52229,72,47.716667,5.5,1.71
+ Guindrecourt-aux-Ormes ,GUINDRECOURT AUX ORMES ,52300,52231,72,48.45,5.033333,1.68
+ Guindrecourt-sur-Blaise ,GUINDRECOURT SUR BLAISE ,52330,52232,72,48.3,4.966667,1.33
+ Guyonvelle ,GUYONVELLE ,52400,52233,72,47.85,5.716667,2.1
+ Hâcourt ,HACOURT ,52150,52234,72,48.166667,5.566667,1.42
+ Hallignicourt ,HALLIGNICOURT ,52100,52235,72,48.65,4.866667,2.41
+ Harméville ,HARMEVILLE ,52230,52236,72,48.45,5.35,1.53
+ Harréville-les-Chanteurs ,HARREVILLE LES CHANTEURS ,52150,52237,72,48.266667,5.633333,1.73
+ Heuilley-Cotton ,HEUILLEY COTTON ,52600,52239,72,47.766667,5.366667,1.49
+ Heuilley-le-Grand ,HEUILLEY LE GRAND ,52600,52240,72,47.75,5.4,1.56
+ Huilliécourt ,HUILLIECOURT ,52150,52243,72,48.166667,5.55,1.35
+ Humbécourt ,HUMBECOURT ,52290,52244,72,48.583333,4.9,2.12
+ Humberville ,HUMBERVILLE ,52700,52245,72,48.283333,5.383333,0.79
+ Illoud ,ILLOUD ,52150,52247,72,48.216667,5.566667,1.42
+ Is-en-Bassigny ,IS EN BASSIGNY ,52140,52248,72,48.033333,5.45,1.35
+ Isômes ,ISOMES ,52190,52249,72,47.65,5.3,2
+ Joinville ,JOINVILLE ,52300,52250,72,48.45,5.133333,1.53
+ Jonchery ,JONCHERY ,52000,52251,72,48.133333,5.083333,0.76
+ Jorquenay ,JORQUENAY ,52200,52252,72,47.9,5.316667,0.9
+ Juzennecourt ,JUZENNECOURT ,52330,52253,72,48.183333,4.983333,1.22
+ Lachapelle-en-Blaisy ,LACHAPELLE EN BLAISY ,52330,52254,72,48.2,4.966667,1.29
+ Lafauche ,LAFAUCHE ,52700,52256,72,48.3,5.5,1.37
+ Laferté-sur-Amance ,LAFERTE SUR AMANCE ,52500,52257,72,47.833333,5.7,2.03
+ Laferté-sur-Aube ,LAFERTE SUR AUBE ,52120,52258,72,48.1,4.783333,2.12
+ Laharmand ,LAHARMAND ,52000,52259,72,48.166667,5.083333,1.1
+ Lamancine ,LAMANCINE ,52310,52260,72,48.216667,5.116667,0.61
+ Lamargelle-aux-Bois ,LAMARGELLE AUX BOIS ,52160,52261,72,47.7,5.05,1.78
+ Lamothe-en-Blaisy ,LAMOTHE EN BLAISY ,52330,52262,72,48.233333,4.95,1.37
+ Landéville ,LANDEVILLE ,52270,52263,72,48.366667,5.283333,1.16
+ Laneuvelle ,LANEUVELLE ,52400,52264,72,47.916667,5.666667,1.88
+ Laneuville-à-Rémy ,LANEUVILLE A REMY ,52220,52266,72,48.483333,4.883333,1.84
+ Laneuville-au-Pont ,LANEUVILLE AU PONT ,52100,52267,72,48.633333,4.866667,2.34
+ Langres ,LANGRES ,52200,52269,72,47.866667,5.333333,1.05
+ Lannes ,LANNES ,52260,52270,72,47.933333,5.316667,0.75
+ Lanques-sur-Rognon ,LANQUES SUR ROGNON ,52800,52271,72,48.083333,5.366667,0.97
+ Lanty-sur-Aube ,LANTY SUR AUBE ,52120,52272,72,48.016667,4.766667,2.2
+ Lavernoy ,LAVERNOY ,52140,52275,72,47.916667,5.566667,1.47
+ Laville-aux-Bois ,LAVILLE AUX BOIS ,52000,52276,72,48.1,5.233333,1.64
+ Lavilleneuve ,LAVILLENEUVE ,52140,52277,72,48.033333,5.516667,1.2
+ Lavilleneuve-au-Roi ,LAVILLENEUVE AU ROI ,52330,52278,72,48.166667,4.933333,1.44
+ Lavilleneuve-aux-Fresnes ,LAVILLENEUVE AUX FRESNES ,52330,52279,72,48.216667,4.85,1.82
+ Lecey ,LECEY ,52360,52280,72,47.866667,5.433333,1.05
+ Lécourt ,LECOURT ,52140,52281,72,48.016667,5.566667,1.42
+ Leffonds ,LEFFONDS ,52210,52282,72,47.966667,5.166667,1.31
+ Lénizeul ,LENIZEUL ,52240,52283,72,48.05,5.55,1.35
+ Leuchey ,LEUCHEY ,52190,52285,72,47.733333,5.216667,1.63
+ Leurville ,LEURVILLE ,52700,52286,72,48.333333,5.383333,1.01
+ Levécourt ,LEVECOURT ,52150,52287,72,48.133333,5.566667,1.42
+ Lezéville ,LEZEVILLE ,52230,52288,72,48.433333,5.383333,1.45
+ Liffol-le-Petit ,LIFFOL LE PETIT ,52700,52289,72,48.3,5.533333,1.68
+ Les Loges ,LES LOGES ,52500,52290,72,47.783333,5.5,1.41
+ Longchamp ,LONGCHAMP ,52240,52291,72,48.133333,5.433333,1.41
+ Longeville-sur-la-Laines ,LONGEVILLE SUR LA LAINES,52220,52293,72,48.45,4.683333,2.58
+ Louvemont ,LOUVEMONT ,52130,52294,72,48.55,4.9,1.97
+ Louvières ,LOUVIERES ,52800,52295,72,48.033333,5.283333,0.6
+ Louze ,LOUZE ,52220,52296,72,48.433333,4.716667,2.43
+ Luzy-sur-Marne ,LUZY SUR MARNE ,52000,52297,72,48.05,5.183333,1.24
+ Maâtz ,MAATZ ,52500,52298,72,47.7,5.45,1.93
+ Maconcourt ,MACONCOURT ,52300,52299,72,48.383333,5.25,1.75
+ Maisoncelles ,MAISONCELLES ,52240,52301,72,48.133333,5.533333,1.27
+ Maizières ,MAIZIERES ,52300,52302,72,48.5,5.066667,1.75
+ Maizières-sur-Amance ,MAIZIERES SUR AMANCE ,52500,52303,72,47.833333,5.616667,1.65
+ Malaincourt-sur-Meuse ,MALAINCOURT SUR MEUSE ,52150,52304,72,48.15,5.6,1.57
+ Mandres-la-Côte ,MANDRES LA COTE ,52800,52305,72,48.066667,5.333333,0.52
+ Manois ,MANOIS ,52700,52306,72,48.283333,5.366667,0.79
+ Marac ,MARAC ,52260,52307,72,47.916667,5.2,1.57
+ Maranville ,MARANVILLE ,52370,52308,72,48.133333,4.866667,1.75
+ Marault ,MARAULT ,52310,52309,72,48.183333,5.1,0.95
+ Marbéville ,MARBEVILLE ,52320,52310,72,48.283333,5.016667,1.74
+ Marcilly-en-Bassigny ,MARCILLY EN BASSIGNY ,52360,52311,72,47.9,5.516667,1.2
+ Mardor ,MARDOR ,52200,52312,72,47.883333,5.2,1.23
+ Mareilles ,MAREILLES ,52700,52313,72,48.183333,5.266667,1.18
+ Marmesse ,MARMESSE ,52120,52314,72,48.05,4.916667,1.52
+ Marnay-sur-Marne ,MARNAY SUR MARNE ,52800,52315,72,48,5.233333,1.42
+ Maulain ,MAULAIN ,52140,52317,72,48.016667,5.583333,1.5
+ Melay ,MELAY ,52400,52318,72,47.883333,5.8,2.48
+ Mennouveaux ,MENNOUVEAUX ,52240,52319,72,48.1,5.416667,1.55
+ Merrey ,MERREY ,52240,52320,72,48.05,5.6,1.73
+ Mertrud ,MERTRUD ,52110,52321,72,48.416667,4.883333,1.67
+ Meures ,MEURES ,52310,52322,72,48.2,5.066667,1.32
+ Meuvy ,MEUVY ,52240,52324,72,48.083333,5.55,1.35
+ Millières ,MILLIERES ,52240,52325,72,48.133333,5.416667,1.67
+ Mirbel ,MIRBEL ,52320,52326,72,48.283333,5.05,1.06
+ Moëslains ,MOESLAINS ,52100,52327,72,48.616667,4.9,2.26
+ Montcharvot ,MONTCHARVOT ,52400,52328,72,47.9,5.733333,2.18
+ Montesson ,MONTESSON ,52500,52329,72,47.816667,5.666667,1.88
+ Montheries ,MONTHERIES ,52330,52330,72,48.166667,4.916667,1.52
+ Montier-en-Der ,MONTIER EN DER ,52220,52331,72,48.483333,4.766667,2.2
+ Montlandon ,MONTLANDON ,52600,52333,72,47.85,5.483333,1.12
+ Montot-sur-Rognon ,MONTOT SUR ROGNON ,52700,52335,72,48.283333,5.283333,0.85
+ Montreuil-sur-Blaise ,MONTREUIL SUR BLAISE ,52130,52336,72,48.483333,4.966667,1.67
+ Montreuil-sur-Thonnance ,MONTREUIL SUR THONNANCE ,52230,52337,72,48.45,5.233333,1.59
+ Montsaon ,MONTSAON ,52000,52339,72,48.083333,5.033333,1.46
+ Montsaugeon ,MONTSAUGEON ,52190,52340,72,47.666667,5.316667,1.93
+ Morancourt ,MORANCOURT ,52110,52341,72,48.433333,5,1.45
+ Morionvilliers ,MORIONVILLIERS ,52700,52342,72,48.366667,5.416667,1.2
+ Mouilleron ,MOUILLERON ,52160,52344,72,47.7,5.116667,1.78
+ Musseau ,MUSSEAU ,52160,52345,72,47.7,5.116667,1.78
+ Mussey-sur-Marne ,MUSSEY SUR MARNE ,52300,52346,72,48.383333,5.15,1.23
+ Narcy ,NARCY ,52170,52347,72,48.583333,5.083333,2.12
+ Neuilly-l'Évêque ,NEUILLY L EVEQUE ,52360,52348,72,47.916667,5.433333,0.82
+ Neuilly-sur-Suize ,NEUILLY SUR SUIZE ,52000,52349,72,48.05,5.15,0.96
+ Neuvelle-lès-Voisey ,NEUVELLE LES VOISEY ,52400,52350,72,47.866667,5.8,2.48
+ Nijon ,NIJON ,52150,52351,72,48.2,5.633333,1.73
+ Ninville ,NINVILLE ,52800,52352,72,48.066667,5.433333,1.67
+ Noidant-Chatenoy ,NOIDANT CHATENOY ,52600,52354,72,47.8,5.383333,1.34
+ Noidant-le-Rocheux ,NOIDANT LE ROCHEUX ,52200,52355,72,47.816667,5.233333,1.27
+ Nomécourt ,NOMECOURT ,52300,52356,72,48.433333,5.066667,1.45
+ Noncourt-sur-le-Rongeant ,NONCOURT SUR LE RONGEANT,52230,52357,72,48.416667,5.25,1.38
+ Noyers ,NOYERS ,52240,52358,72,48.066667,5.483333,1.05
+ Occey ,OCCEY ,52190,52360,72,47.616667,5.266667,2.15
+ Odival ,ODIVAL ,52800,52361,72,48.033333,5.366667,0.62
+ Orbigny-au-Mont ,ORBIGNY AU MONT ,52360,52362,72,47.883333,5.45,0.97
+ Orbigny-au-Val ,ORBIGNY AU VAL ,52360,52363,72,47.883333,5.433333,0.97
+ Orcevaux ,ORCEVAUX ,52250,52364,72,47.783333,5.266667,1.41
+ Orges ,ORGES ,52120,52365,72,48.083333,4.933333,1.44
+ Ormancey ,ORMANCEY ,52200,52366,72,47.9,5.183333,1.49
+ Ormoy-lès-Sexfontaines ,ORMOY LES SEXFONTAINES ,52310,52367,72,48.216667,5.066667,1.27
+ Ormoy-sur-Aube ,ORMOY SUR AUBE ,52120,52368,72,48,4.816667,1.97
+ Orquevaux ,ORQUEVAUX ,52700,52369,72,48.3,5.4,0.87
+ Osne-le-Val ,OSNE LE VAL ,52300,52370,72,48.5,5.183333,1.75
+ Oudincourt ,OUDINCOURT ,52310,52371,72,48.216667,5.083333,0.76
+ Outremécourt ,OUTREMECOURT ,52150,52372,72,48.216667,5.683333,1.95
+ Ozières ,OZIERES ,52700,52373,72,48.166667,5.466667,1.29
+ Le Pailly ,LE PAILLY ,52600,52374,72,47.8,5.416667,1.34
+ Palaiseul ,PALAISEUL ,52600,52375,72,47.766667,5.416667,1.49
+ Pancey ,PANCEY ,52230,52376,72,48.466667,5.283333,1.6
+ Paroy-sur-Saulx ,PAROY SUR SAULX ,52300,52378,72,48.516667,5.266667,2.14
+ Peigney ,PEIGNEY ,52200,52380,72,47.883333,5.366667,0.98
+ Percey-le-Pautel ,PERCEY LE PAUTEL ,52250,52381,72,47.75,5.316667,1.61
+ Perrusse ,PERRUSSE ,52240,52385,72,48.1,5.483333,1.05
+ Piépape ,PIEPAPE ,52190,52387,72,47.716667,5.316667,1.71
+ Pierrefontaines ,PIERREFONTAINES ,52160,52389,72,47.8,5.2,1.91
+ Pisseloup ,PISSELOUP ,52500,52390,72,47.833333,5.733333,2.18
+ Planrupt ,PLANRUPT ,52220,52391,72,48.5,4.783333,2.12
+ Plesnoy ,PLESNOY ,52360,52392,72,47.883333,5.5,1.12
+ Poinsenot ,POINSENOT ,52160,52393,72,47.716667,5,1.71
+ Poinson-lès-Grancey ,POINSON LES GRANCEY ,52160,52395,72,47.7,4.983333,1.78
+ Poinson-lès-Nogent ,POINSON LES NOGENT ,52800,52396,72,48,5.366667,0.78
+ Poiseul ,POISEUL ,52360,52397,72,47.916667,5.483333,1.05
+ Poissons ,POISSONS ,52230,52398,72,48.416667,5.216667,1.89
+ Pont-la-Ville ,PONT LA VILLE ,52120,52399,72,48.083333,4.883333,1.67
+ Poulangy ,POULANGY ,52800,52401,72,48.033333,5.25,1.09
+ Prangey ,PRANGEY ,52190,52402,72,47.733333,5.266667,1.63
+ Praslay ,PRASLAY ,52160,52403,72,47.733333,5.1,1.63
+ Pratz ,PRATZ ,52330,52404,72,48.25,4.9,1.59
+ Prauthoy ,PRAUTHOY ,52190,52405,72,47.666667,5.283333,1.93
+ Pressigny ,PRESSIGNY ,52500,52406,72,47.75,5.666667,1.88
+ Prez-sous-Lafauche ,PREZ SOUS LAFAUCHE ,52700,52407,72,48.283333,5.5,1.33
+ Prez-sur-Marne ,PREZ SUR MARNE ,52170,52408,72,48.566667,5.05,2.04
+ Provenchères-sur-Marne ,PROVENCHERES SUR MARNE ,52320,52409,72,48.316667,5.116667,0.94
+ Provenchères-sur-Meuse ,PROVENCHERES SUR MEUSE ,52140,52410,72,48,5.533333,1.27
+ Puellemontier ,PUELLEMONTIER ,52220,52411,72,48.5,4.7,2.5
+ Le Puits-des-Mèzes ,LE PUITS DES MEZES,52340,52412,72,48.133333,5.266667,1.3
+ Rachecourt-sur-Marne ,RACHECOURT SUR MARNE ,52170,52414,72,48.533333,5.1,1.89
+ Rançonnières ,RANCONNIERES ,52140,52415,72,47.933333,5.55,1.35
+ Rangecourt ,RANGECOURT ,52140,52416,72,48.05,5.483333,1.14
+ Ravennefontaines ,RAVENNEFONTAINES ,52140,52417,72,48.033333,5.6,1.57
+ Récourt ,RECOURT ,52140,52418,72,47.966667,5.5,1.12
+ Rennepont ,RENNEPONT ,52370,52419,72,48.15,4.85,1.82
+ Reynel ,REYNEL ,52700,52420,72,48.3,5.333333,0.87
+ Riaucourt ,RIAUCOURT ,52000,52421,72,48.183333,5.15,1.2
+ Richebourg ,RICHEBOURG ,52120,52422,72,48.016667,5.066667,2.19
+ Rimaucourt ,RIMAUCOURT ,52700,52423,72,48.25,5.333333,0.65
+ Rivières-le-Bois ,RIVIERES LE BOIS ,52600,52424,72,47.733333,5.433333,1.63
+ Rivières-les-Fosses ,RIVIERES LES FOSSES ,52190,52425,72,47.666667,5.233333,1.93
+ Rochefort-sur-la-Côte ,ROCHEFORT SUR LA COTE,52700,52428,72,48.216667,5.2,1.65
+ Roches-sur-Marne ,ROCHES SUR MARNE ,52410,52429,72,48.616667,5.016667,2.26
+ Roches-sur-Rognon ,ROCHES SUR ROGNON ,52270,52430,72,48.3,5.266667,0.87
+ Rolampont ,ROLAMPONT ,52260,52432,72,47.95,5.266667,0.68
+ Romain-sur-Meuse ,ROMAIN SUR MEUSE ,52150,52433,72,48.166667,5.533333,1.41
+ Roôcourt-la-Côte ,ROOCOURT LA COTE ,52310,52434,72,48.216667,5.15,1.49
+ Rosoy-sur-Amance ,ROSOY SUR AMANCE ,52600,52435,72,47.833333,5.533333,1.45
+ Rouécourt ,ROUECOURT ,52320,52436,72,48.333333,5.066667,1.07
+ Rouelles ,ROUELLES ,52160,52437,72,47.8,5.083333,1.34
+ Rougeux ,ROUGEUX ,52500,52438,72,47.816667,5.583333,1.5
+ Rouvres-sur-Aube ,ROUVRES SUR AUBE ,52160,52439,72,47.85,4.966667,1.67
+ Rouvroy-sur-Marne ,ROUVROY SUR MARNE ,52300,52440,72,48.35,5.15,1.32
+ Rozières ,ROZIERES ,52220,52441,72,48.416667,4.816667,1.97
+ Rupt ,RUPT ,52300,52442,72,48.416667,5.133333,1.38
+ Sailly ,SAILLY ,52230,52443,72,48.433333,5.266667,1.45
+ Saint-Broingt-le-Bois ,SAINT BROINGT LE BOIS,52190,52445,72,47.733333,5.416667,2.15
+ Saint-Broingt-les-Fosses ,SAINT BROINGT LES FOSSES,52190,52446,72,47.716667,5.266667,1.71
+ Saint-Ciergues ,SAINT CIERGUES ,52200,52447,72,47.883333,5.25,0.97
+ Saint-Dizier ,SAINT DIZIER ,52100,52448,72,48.633333,4.95,2.34
+ Saint-Géosmes ,SAINT GEOSMES ,52200,52449,72,47.833333,5.333333,1.19
+ Saint-Loup-sur-Aujon ,SAINT LOUP SUR AUJON,52210,52450,72,47.883333,5.083333,0.97
+ Saint-Martin-sur-la-Renne ,SAINT MARTIN SUR LA,52330,52451,72,48.15,4.95,1.37
+ Saint-Martin-lès-Langres ,SAINT MARTIN LES LANGRES,52200,52452,72,47.883333,5.266667,0.97
+ Saint-Maurice ,SAINT MAURICE ,52200,52453,72,47.85,5.4,1.33
+ Saint-Michel ,SAINT MICHEL ,52190,52454,72,47.716667,5.3,1.71
+ Saint-Thiébault ,SAINT THIEBAULT ,52150,52455,72,48.2,5.583333,1.5
+ Saint-Vallier-sur-Marne ,SAINT VALLIER SUR MARNE,52200,52457,72,47.833333,5.4,1.36
+ Santenoge ,SANTENOGE ,52160,52458,72,47.733333,5,1.63
+ Sarcey ,SARCEY ,52800,52459,72,48.05,5.3,0.44
+ Sarcicourt ,SARCICOURT ,52000,52460,72,48.15,5.066667,1.1
+ Sarrey ,SARREY ,52140,52461,72,48,5.433333,1.45
+ Saucourt-sur-Rognon ,SAUCOURT SUR ROGNON ,52270,52462,72,48.35,5.183333,1.52
+ Saudron ,SAUDRON ,52230,52463,72,48.5,5.333333,1.75
+ Saulles ,SAULLES ,52500,52464,72,47.716667,5.516667,1.71
+ Saulxures ,SAULXURES ,52140,52465,72,47.95,5.583333,1.5
+ Sauvage-Magny ,SAUVAGE MAGNY ,52220,52466,72,48.416667,4.733333,2.35
+ Savigny ,SAVIGNY ,52500,52467,72,47.716667,5.65,1.8
+ Semilly ,SEMILLY ,52700,52468,72,48.266667,5.466667,0.98
+ Serqueux ,SERQUEUX ,52400,52470,72,47.983333,5.733333,2.18
+ Sexfontaines ,SEXFONTAINES ,52330,52472,72,48.2,5.033333,1.5
+ Signéville ,SIGNEVILLE ,52700,52473,72,48.266667,5.266667,0.97
+ Silvarouvres ,SILVAROUVRES ,52120,52474,72,48.066667,4.783333,2.12
+ Sommancourt ,SOMMANCOURT ,52130,52475,72,48.5,5.033333,1.75
+ Sommerécourt ,SOMMERECOURT ,52150,52476,72,48.233333,5.666667,1.88
+ Sommermont ,SOMMERMONT ,52300,52477,72,48.466667,5.1,1.6
+ Sommeville ,SOMMEVILLE ,52170,52478,72,48.533333,5.1,1.89
+ Sommevoire ,SOMMEVOIRE ,52220,52479,72,48.416667,4.833333,1.9
+ Soncourt-sur-Marne ,SONCOURT SUR MARNE ,52320,52480,72,48.25,5.116667,0.97
+ Soulaincourt ,SOULAINCOURT ,52230,52481,72,48.433333,5.316667,1.45
+ Soulaucourt-sur-Mouzon ,SOULAUCOURT SUR MOUZON ,52150,52482,72,48.2,5.683333,1.95
+ Soyers ,SOYERS ,52400,52483,72,47.866667,5.7,2.03
+ Suzannecourt ,SUZANNECOURT ,52300,52484,72,48.45,5.166667,1.53
+ Ternat ,TERNAT ,52210,52486,72,47.9,5.133333,0.9
+ Thilleux ,THILLEUX ,52220,52487,72,48.433333,4.8,2.05
+ Thivet ,THIVET ,52800,52488,72,47.983333,5.283333,0.94
+ Thol-lès-Millières ,THOL LES MILLIERES ,52240,52489,72,48.15,5.483333,1.05
+ Thonnance-lès-Joinville ,THONNANCE LES JOINVILLE ,52300,52490,72,48.45,5.166667,1.53
+ Thonnance-les-Moulins ,THONNANCE LES MOULINS ,52230,52491,72,48.416667,5.3,1.38
+ Torcenay ,TORCENAY ,52600,52492,72,47.816667,5.466667,1.27
+ Tornay ,TORNAY ,52500,52493,72,47.7,5.6,1.78
+ Treix ,TREIX ,52000,52494,72,48.15,5.183333,1.08
+ Trémilly ,TREMILLY ,52110,52495,72,48.366667,4.783333,2.26
+ Troischamps ,TROISCHAMPS ,52600,52496,72,47.883333,5.516667,1.69
+ Tronchoy ,TRONCHOY ,52260,52498,72,47.95,5.333333,1.1
+ Vaillant ,VAILLANT ,52160,52499,72,47.7,5.15,1.78
+ Valcourt ,VALCOURT ,52100,52500,72,48.616667,4.9,2.26
+ Valdelancourt ,VALDELANCOURT ,52120,52501,72,48.1,5,1.38
+ Valleret ,VALLERET ,52130,52502,72,48.483333,5,1.67
+ Valleroy ,VALLEROY ,52500,52503,72,47.7,5.65,1.8
+ Vaudrecourt ,VAUDRECOURT ,52150,52505,72,48.2,5.65,1.8
+ Vaudrémont ,VAUDREMONT ,52330,52506,72,48.133333,4.9,1.59
+ Vauxbons ,VAUXBONS ,52200,52507,72,47.883333,5.15,1.84
+ Vaux-la-Douce ,VAUX LA DOUCE ,52400,52508,72,47.866667,5.733333,2.18
+ Vaux-sous-Aubigny ,VAUX SOUS AUBIGNY ,52190,52509,72,47.65,5.283333,2
+ Vaux-sur-Blaise ,VAUX SUR BLAISE ,52130,52510,72,48.466667,4.966667,1.6
+ Vaux-sur-Saint-Urbain ,VAUX SUR SAINT URBAIN,52300,52511,72,48.383333,5.2,1.23
+ Vecqueville ,VECQUEVILLE ,52300,52512,72,48.45,5.15,1.53
+ Velles ,VELLES ,52500,52513,72,47.833333,5.716667,2.1
+ Verbiesles ,VERBIESLES ,52000,52514,72,48.066667,5.183333,1.08
+ Verseilles-le-Bas ,VERSEILLES LE BAS ,52250,52515,72,47.766667,5.283333,1.49
+ Verseilles-le-Haut ,VERSEILLES LE HAUT ,52250,52516,72,47.766667,5.3,1.49
+ Vesaignes-sous-Lafauche ,VESAIGNES SOUS LAFAUCHE ,52700,52517,72,48.283333,5.433333,0.82
+ Vesaignes-sur-Marne ,VESAIGNES SUR MARNE ,52800,52518,72,48,5.266667,0.97
+ Vesvres-sous-Chalancey ,VESVRES SOUS CHALANCEY ,52190,52519,72,47.7,5.166667,1.78
+ Vicq ,VICQ ,52400,52520,72,47.916667,5.6,1.57
+ Vieux Moulins ,VIEUX MOULINS ,52200,52521,72,47.85,5.25,1.12
+ Viéville ,VIEVILLE ,52310,52522,72,48.233333,5.133333,1.18
+ Vignes-la-Côte ,VIGNES LA COTE ,52700,52523,72,48.266667,5.3,0.72
+ Vignory ,VIGNORY ,52320,52524,72,48.283333,5.1,0.79
+ Villars-en-Azois ,VILLARS EN AZOIS ,52120,52525,72,48.066667,4.75,2.27
+ Villars-Saint-Marcellin ,VILLARS SAINT MARCELLIN ,52400,52527,72,47.933333,5.783333,2.4
+ Ville-en-Blaisois ,VILLE EN BLAISOIS ,52130,52528,72,48.433333,4.966667,1.45
+ Villemervry ,VILLEMERVRY ,52160,52530,72,47.683333,5.066667,1.85
+ Villemoron ,VILLEMORON ,52160,52531,72,47.666667,5.1,1.93
+ Villiers-aux-Bois ,VILLIERS AUX BOIS ,52130,52532,72,48.55,4.983333,1.97
+ Villiers-aux-Chênes ,VILLIERS AUX CHENES ,52110,52533,72,48.366667,4.9,1.59
+ Villiers-en-Lieu ,VILLIERS EN LIEU ,52100,52534,72,48.666667,4.9,2.48
+ Villiers-le-Sec ,VILLIERS LE SEC ,52000,52535,72,48.1,5.066667,0.91
+ Villiers-lès-Aprey ,VILLIERS LES APREY ,52190,52536,72,47.75,5.216667,1.56
+ Villiers-sur-Marne ,VILLIERS SUR MARNE ,52320,52537,72,48.333333,5.15,1.32
+ Villiers-sur-Suize ,VILLIERS SUR SUIZE ,52210,52538,72,47.983333,5.2,1.71
+ Violot ,VIOLOT ,52600,52539,72,47.766667,5.433333,1.49
+ Vitry-en-Montagne ,VITRY EN MONTAGNE ,52160,52540,72,47.833333,5.083333,1.19
+ Vitry-lès-Nogent ,VITRY LES NOGENT ,52800,52541,72,47.983333,5.35,0.81
+ Vivey ,VIVEY ,52160,52542,72,47.733333,5.066667,1.63
+ Voillecomte ,VOILLECOMTE ,52130,52543,72,48.5,4.866667,1.75
+ Voisey ,VOISEY ,52400,52544,72,47.883333,5.783333,2.4
+ Voisines ,VOISINES ,52200,52545,72,47.85,5.166667,1.59
+ Voncourt ,VONCOURT ,52500,52546,72,47.716667,5.666667,1.88
+ Vouécourt ,VOUECOURT ,52320,52547,72,48.266667,5.133333,0.89
+ Vraincourt ,VRAINCOURT ,52310,52548,72,48.233333,5.116667,0.81
+ Vroncourt-la-Côte ,VRONCOURT LA COTE ,52240,52549,72,48.15,5.516667,1.2
+ Wassy ,WASSY ,52130,52550,72,48.5,4.95,1.75
+ Sainte-Livière ,SAINTE LIVIERE ,52290,52901,72,48.6,4.816667,2.19
+ Bettaincourt-sur-Rognon ,BETTAINCOURT SUR ROGNON ,52270,52903,72,48.3,5.25,0.87
+ Bussières-lès-Belmont ,BUSSIERES LES BELMONT ,52500,52904,72,47.75,5.55,1.56
+ Chalmessin ,CHALMESSIN ,52160,52905,72,47.7,5.066667,1.78
+ Choignes ,CHOIGNES ,52000,52906,72,48.1,5.166667,0.63
+ Esnoms-au-Val ,ESNOMS AU VAL ,52190,52908,72,47.683333,5.2,1.85
+ Fayl-Billot ,FAYL BILLOT ,52500,52909,72,47.783333,5.6,1.57
+ Hortes ,HORTES ,52600,52910,72,47.833333,5.55,1.69
+ Laneuville-à-Bayard ,LANEUVILLE A BAYARD ,52170,52911,72,48.55,5.066667,1.97
+ Longeau ,LONGEAU ,52250,52913,72,47.766667,5.3,1.49
+ Montigny-le-Roi ,MONTIGNY LE ROI ,52140,52914,72,48,5.5,1.12
+ Parnot ,PARNOT ,52400,52916,72,48,5.65,1.8
+ Pierrefaites ,PIERREFAITES ,52500,52918,72,47.8,5.666667,1.88
+ Pouilly-en-Bassigny ,POUILLY EN BASSIGNY ,52400,52919,72,47.983333,5.633333,1.73
+ Varennes-sur-Amance ,VARENNES SUR AMANCE ,52400,52921,72,47.9,5.616667,1.65
+ Villars-Montroyer ,VILLARS MONTROYER ,52160,52922,72,47.75,4.983333,1.56
+ Ahuillé ,AHUILLE ,53940,53001,52,48.016667,-0.883333,1
+ Alexain ,ALEXAIN ,53240,53002,52,48.233333,-0.766667,0.87
+ Ampoigné ,AMPOIGNE ,53200,53004,52,47.816667,-0.816667,1.66
+ Andouillé ,ANDOUILLE ,53240,53005,52,48.183333,-0.783333,0.55
+ Argenton-Notre-Dame ,ARGENTON NOTRE DAME ,53290,53006,52,47.783333,-0.583333,1.83
+ Argentré ,ARGENTRE ,53210,53007,52,48.083333,-0.65,0.94
+ Aron ,ARON ,53440,53008,52,48.3,-0.55,0.83
+ Arquenay ,ARQUENAY ,53170,53009,52,47.983333,-0.566667,0.8
+ Assé-le-Bérenger ,ASSE LE BERENGER ,53600,53010,52,48.15,-0.316667,1.54
+ Astillé ,ASTILLE ,53230,53011,52,47.966667,-0.85,1.08
+ Athée ,ATHEE ,53400,53012,52,47.883333,-0.95,1.32
+ Averton ,AVERTON ,53700,53013,52,48.333333,-0.216667,1.99
+ Azé ,AZE ,53200,53014,52,47.816667,-0.683333,1.66
+ La Baconnière ,LA BACONNIERE ,53240,53015,52,48.183333,-0.883333,1.95
+ Bais ,BAIS ,53160,53016,52,48.25,-0.366667,1.32
+ Ballée ,BALLEE ,53340,53017,52,47.933333,-0.416667,1.09
+ Ballots ,BALLOTS ,53350,53018,52,47.9,-1.05,1.77
+ Bannes ,BANNES ,53340,53019,52,47.983333,-0.35,1.39
+ La Baroche-Gondouin ,LA BAROCHE GONDOUIN ,53110,53020,52,48.466667,-0.45,1.69
+ La Bazoge-Montpinçon ,LA BAZOGE MONTPINCON ,53440,53021,52,48.283333,-0.583333,1.36
+ La Bazouge-de-Chemeré ,LA BAZOUGE DE CHEMERE,53170,53022,52,48.016667,-0.5,1.54
+ La Bazouge-des-Alleux ,LA BAZOUGE DES ALLEUX,53470,53023,52,48.183333,-0.616667,0.51
+ Bazouges ,BAZOUGES ,53200,53024,52,47.833333,-0.716667,1.57
+ Bazougers ,BAZOUGERS ,53170,53025,52,48.016667,-0.583333,1
+ Beaulieu-sur-Oudon ,BEAULIEU SUR OUDON ,53320,53026,52,48.016667,-1,1.52
+ Belgeard ,BELGEARD ,53440,53028,52,48.25,-0.55,1.04
+ Bierné ,BIERNE ,53290,53029,52,47.816667,-0.533333,1.66
+ Le Bignon-du-Maine ,LE BIGNON DU MAINE,53170,53030,52,47.95,-0.616667,0.97
+ La Bigottière ,LA BIGOTTIERE ,53240,53031,52,48.216667,-0.8,0.62
+ Blandouet ,BLANDOUET ,53270,53032,52,48.05,-0.333333,1.47
+ Bonchamp-lès-Laval ,BONCHAMP LES LAVAL ,53960,53034,52,48.066667,-0.7,0.37
+ Bouchamps-lès-Craon ,BOUCHAMPS LES CRAON ,53800,53035,52,47.816667,-1,1.66
+ Bouère ,BOUERE ,53290,53036,52,47.866667,-0.466667,1.4
+ Bouessay ,BOUESSAY ,53290,53037,52,47.883333,-0.4,1.41
+ Le Bourgneuf-la-Forêt ,LE BOURGNEUF LA FORET,53410,53039,52,48.166667,-0.966667,1.37
+ Bourgon ,BOURGON ,53410,53040,52,48.166667,-1.066667,1.82
+ Brains-sur-les-Marches ,BRAINS SUR LES MARCHES,53350,53041,52,47.883333,-1.183333,2.34
+ Brécé ,BRECE ,53120,53042,52,48.4,-0.8,1.35
+ Brée ,BREE ,53150,53043,52,48.15,-0.516667,0.64
+ Brétignolles-le-Moulin ,BRETIGNOLLES LE MOULIN ,53110,53044,52,48.466667,-0.533333,1.69
+ La Brûlatte ,LA BRULATTE ,53410,53045,52,48.083333,-0.95,1.29
+ Le Buret ,LE BURET ,53170,53046,52,47.916667,-0.516667,1.15
+ Carelles ,CARELLES ,53120,53047,52,48.383333,-0.9,1.47
+ Chailland ,CHAILLAND ,53420,53048,52,48.233333,-0.866667,0.92
+ Châlons-du-Maine ,CHALONS DU MAINE ,53470,53049,52,48.166667,-0.65,1.16
+ Chammes ,CHAMMES ,53270,53050,52,48.083333,-0.383333,1.24
+ Champéon ,CHAMPEON ,53640,53051,52,48.366667,-0.516667,1.18
+ Champfrémont ,CHAMPFREMONT ,53370,53052,52,48.433333,-0.083333,2.58
+ Champgenéteux ,CHAMPGENETEUX ,53160,53053,52,48.3,-0.366667,1.32
+ Changé ,CHANGE ,53810,53054,52,48.1,-0.8,0.62
+ Chantrigné ,CHANTRIGNE ,53300,53055,52,48.416667,-0.566667,1.43
+ La Chapelle-Anthenaise ,LA CHAPELLE ANTHENAISE ,53950,53056,52,48.133333,-0.683333,1
+ La Chapelle-au-Riboul ,LA CHAPELLE AU RIBOUL,53440,53057,52,48.316667,-0.433333,1.79
+ La Chapelle-Craonnaise ,LA CHAPELLE CRAONNAISE ,53230,53058,52,47.9,-0.916667,1.23
+ La Chapelle-Rainsouin ,LA CHAPELLE RAINSOUIN ,53150,53059,52,48.1,-0.516667,1.1
+ Les Chapelles ,LES CHAPELLES ,53250,53060,52,48.45,-0.333333,1.6
+ Charchigné ,CHARCHIGNE ,53250,53061,52,48.416667,-0.416667,1.43
+ Château-Gontier ,CHATEAU GONTIER ,53200,53062,52,47.833333,-0.7,1.57
+ Châtelain ,CHATELAIN ,53200,53063,52,47.816667,-0.6,1.66
+ Châtillon-sur-Colmont ,CHATILLON SUR COLMONT ,53100,53064,52,48.316667,-0.75,2.07
+ Châtres-la-Forêt ,CHATRES LA FORET ,53600,53065,52,48.133333,-0.433333,1.31
+ Chemazé ,CHEMAZE ,53200,53066,52,47.783333,-0.766667,1.83
+ Chéméré-le-Roi ,CHEMERE LE ROI ,53340,53067,52,47.983333,-0.433333,1.02
+ Chevaigné-du-Maine ,CHEVAIGNE DU MAINE ,53250,53069,52,48.433333,-0.383333,1.52
+ Cigné ,CIGNE ,53300,53070,52,48.416667,-0.6,1.43
+ Colombiers-du-Plessis ,COLOMBIERS DU PLESSIS ,53120,53071,52,48.383333,-0.833333,1.26
+ Commer ,COMMER ,53470,53072,52,48.233333,-0.616667,1.32
+ Congrier ,CONGRIER ,53800,53073,52,47.816667,-1.116667,2.04
+ Contest ,CONTEST ,53100,53074,52,48.266667,-0.65,0.71
+ Cosmes ,COSMES ,53230,53075,52,47.916667,-0.866667,1.15
+ Cossé-en-Champagne ,COSSE EN CHAMPAGNE ,53340,53076,52,47.966667,-0.333333,1.47
+ Cossé-le-Vivien ,COSSE LE VIVIEN ,53230,53077,52,47.95,-0.916667,1.15
+ Coudray ,COUDRAY ,53200,53078,52,47.783333,-0.633333,1.83
+ Couptrain ,COUPTRAIN ,53250,53080,52,48.483333,-0.3,1.78
+ Courbeveille ,COURBEVEILLE ,53230,53082,52,48,-0.883333,1.05
+ Courcité ,COURCITE ,53700,53083,52,48.316667,-0.25,1.84
+ Craon ,CRAON ,53400,53084,52,47.85,-0.95,1.49
+ Crennes-sur-Fraubée ,CRENNES SUR FRAUBEE ,53700,53085,52,48.383333,-0.283333,1.69
+ La Croixille ,LA CROIXILLE ,53380,53086,52,48.2,-1.066667,1.82
+ La Cropte ,LA CROPTE ,53170,53087,52,47.966667,-0.5,1.2
+ Cuillé ,CUILLE ,53540,53088,52,47.966667,-1.116667,2.04
+ Daon ,DAON ,53200,53089,52,47.75,-0.633333,2
+ Denazé ,DENAZE ,53400,53090,52,47.883333,-0.883333,1.32
+ Désertines ,DESERTINES ,53190,53091,52,48.466667,-0.866667,1.91
+ Deux-Évailles ,DEUX EVAILLES ,53150,53092,52,48.183333,-0.533333,0.76
+ La Dorée ,LA DOREE ,53190,53093,52,48.45,-0.966667,1.6
+ Entrammes ,ENTRAMMES ,53260,53094,52,48,-0.716667,0.96
+ Épineux-le-Séguin ,EPINEUX LE SEGUIN ,53340,53095,52,47.95,-0.366667,1.32
+ Ernée ,ERNEE ,53500,53096,52,48.3,-0.933333,1.22
+ Évron ,EVRON ,53600,53097,52,48.166667,-0.4,1.17
+ Fontaine-Couverte ,FONTAINE COUVERTE ,53350,53098,52,47.916667,-1.133333,2.11
+ Forcé ,FORCE ,53260,53099,52,48.033333,-0.7,0.88
+ Fougerolles-du-Plessis ,FOUGEROLLES DU PLESSIS ,53190,53100,52,48.466667,-0.983333,1.69
+ Fromentières ,FROMENTIERES ,53200,53101,52,47.866667,-0.666667,1.4
+ Gastines ,GASTINES ,53540,53102,52,47.95,-1.1,1.97
+ Gennes-sur-Glaize ,GENNES SUR GLAIZE ,53200,53104,52,47.85,-0.6,1.49
+ Gesnes ,GESNES ,53150,53105,52,48.15,-0.583333,1.08
+ Gesvres ,GESVRES ,53370,53106,52,48.383333,-0.15,2.29
+ Gorron ,GORRON ,53120,53107,52,48.416667,-0.816667,1.43
+ La Gravelle ,LA GRAVELLE ,53410,53108,52,48.066667,-1.016667,1.59
+ Grazay ,GRAZAY ,53440,53109,52,48.283333,-0.483333,0.79
+ Grez-en-Bouère ,GREZ EN BOUERE ,53290,53110,52,47.883333,-0.516667,1.32
+ La Haie-Traversaine ,LA HAIE TRAVERSAINE ,53300,53111,52,48.366667,-0.616667,1.18
+ Le Ham ,LE HAM ,53250,53112,52,48.383333,-0.383333,1.28
+ Hambers ,HAMBERS ,53160,53113,52,48.25,-0.416667,1.16
+ Hardanges ,HARDANGES ,53640,53114,52,48.333333,-0.4,1.41
+ Hercé ,HERCE ,53120,53115,52,48.416667,-0.85,1.43
+ Le Horps ,LE HORPS ,53640,53116,52,48.4,-0.466667,1.35
+ Houssay ,HOUSSAY ,53360,53117,52,47.916667,-0.733333,1.15
+ L'Huisserie ,L HUISSERIE ,53970,53119,52,48.016667,-0.766667,0.96
+ Izé ,IZE ,53160,53120,52,48.233333,-0.316667,1.54
+ Jublains ,JUBLAINS ,53160,53122,52,48.25,-0.5,2.15
+ Juvigné ,JUVIGNE ,53380,53123,52,48.233333,-1.033333,1.67
+ Laigné ,LAIGNE ,53200,53124,52,47.85,-0.816667,1.68
+ Landivy ,LANDIVY ,53190,53125,52,48.466667,-1.033333,1.69
+ Larchamp ,LARCHAMP ,53220,53126,52,48.366667,-1,1.52
+ Laubrières ,LAUBRIERES ,53540,53128,52,47.95,-1.083333,1.89
+ Launay-Villiers ,LAUNAY VILLIERS ,53410,53129,52,48.133333,-1,1.52
+ Laval ,LAVAL ,53000,53130,52,48.066667,-0.766667,0.47
+ Lesbois ,LESBOIS ,53120,53131,52,48.433333,-0.8,1.52
+ Levaré ,LEVARE ,53120,53132,52,48.416667,-0.916667,1.62
+ Livré ,LIVRE ,53400,53135,52,47.883333,-0.966667,1.37
+ Loigné-sur-Mayenne ,LOIGNE SUR MAYENNE ,53200,53136,52,47.866667,-0.75,1.4
+ Loiron ,LOIRON ,53320,53137,52,48.066667,-0.933333,1.37
+ Longuefuye ,LONGUEFUYE ,53200,53138,52,47.866667,-0.616667,1.4
+ Loupfougères ,LOUPFOUGERES ,53700,53139,52,48.333333,-0.35,1.71
+ Louverné ,LOUVERNE ,53950,53140,52,48.133333,-0.7,1
+ Louvigné ,LOUVIGNE ,53210,53141,52,48.066667,-0.633333,0.58
+ Madré ,MADRE ,53250,53142,52,48.483333,-0.383333,1.78
+ Maisoncelles-du-Maine ,MAISONCELLES DU MAINE ,53170,53143,52,47.966667,-0.65,1.29
+ Marcillé-la-Ville ,MARCILLE LA VILLE ,53440,53144,52,48.3,-0.5,0.83
+ Marigné-Peuton ,MARIGNE PEUTON ,53200,53145,52,47.866667,-0.8,1.53
+ Mayenne ,MAYENNE ,53100,53147,52,48.3,-0.616667,1.04
+ Mée ,MEE ,53400,53148,52,47.8,-0.866667,1.75
+ Melleray-la-Vallée ,MELLERAY LA VALLEE ,53110,53149,52,48.466667,-0.566667,1.7
+ Ménil ,MENIL ,53200,53150,52,47.783333,-0.666667,1.83
+ Méral ,MERAL ,53230,53151,52,47.966667,-0.983333,1.61
+ Meslay-du-Maine ,MESLAY DU MAINE ,53170,53152,52,47.95,-0.55,0.97
+ Mézangers ,MEZANGERS ,53600,53153,52,48.183333,-0.433333,1.25
+ Montaudin ,MONTAUDIN ,53220,53154,52,48.383333,-1,1.52
+ Montenay ,MONTENAY ,53500,53155,52,48.283333,-0.9,1.07
+ Montflours ,MONTFLOURS ,53240,53156,52,48.166667,-0.733333,1.09
+ Montigné-le-Brillant ,MONTIGNE LE BRILLANT ,53970,53157,52,48.016667,-0.816667,1.16
+ Montjean ,MONTJEAN ,53320,53158,52,48.016667,-0.966667,1.37
+ Montourtier ,MONTOURTIER ,53150,53159,52,48.2,-0.55,1.17
+ Montsûrs ,MONTSURS ,53150,53161,52,48.133333,-0.55,0.5
+ Moulay ,MOULAY ,53100,53162,52,48.266667,-0.633333,0.92
+ Neau ,NEAU ,53150,53163,52,48.15,-0.466667,1.44
+ Neuilly-le-Vendin ,NEUILLY LE VENDIN ,53250,53164,52,48.5,-0.333333,1.86
+ Niafles ,NIAFLES ,53400,53165,52,47.85,-1,1.52
+ Niort-la-Fontaine ,NIORT LA FONTAINE ,53110,53166,52,48.433333,-0.533333,1.52
+ Nuillé-sur-Ouette ,NUILLE SUR OUETTE ,53210,53167,52,48.066667,-0.533333,1.48
+ Nuillé-sur-Vicoin ,NUILLE SUR VICOIN ,53970,53168,52,47.983333,-0.783333,0.88
+ Olivet ,OLIVET ,53410,53169,52,48.116667,-0.916667,1.15
+ Oisseau ,OISSEAU ,53300,53170,52,48.366667,-0.683333,1.18
+ Orgères-la-Roche ,ORGERES LA ROCHE ,53140,53171,52,48.55,-0.233333,2.12
+ Origné ,ORIGNE ,53360,53172,52,47.95,-0.716667,1.33
+ La Pallu ,LA PALLU ,53140,53173,52,48.5,-0.3,1.86
+ Parigné-sur-Braye ,PARIGNE SUR BRAYE ,53100,53174,52,48.316667,-0.65,0.92
+ Parné-sur-Roc ,PARNE SUR ROC ,53260,53175,52,48,-0.666667,1.16
+ Le Pas ,LE PAS ,53300,53176,52,48.433333,-0.7,1.52
+ Peuton ,PEUTON ,53360,53178,52,47.883333,-0.816667,1.32
+ Placé ,PLACE ,53240,53179,52,48.25,-0.783333,1.14
+ Pommerieux ,POMMERIEUX ,53400,53180,52,47.833333,-0.9,1.57
+ Pontmain ,PONTMAIN ,53220,53181,52,48.433333,-1.05,1.74
+ Port-Brillet ,PORT BRILLET ,53410,53182,52,48.116667,-0.966667,1.37
+ Poulay ,POULAY ,53640,53183,52,48.366667,-0.516667,1.18
+ Préaux ,PREAUX ,53340,53184,52,47.933333,-0.466667,1.68
+ Pré-en-Pail ,PRE EN PAIL ,53140,53185,52,48.45,-0.2,2.06
+ Ravigny ,RAVIGNY ,61420,53187,52,48.45,-0.066667,2.66
+ Renazé ,RENAZE ,53800,53188,52,47.8,-1.05,1.75
+ Rennes-en-Grenouilles ,RENNES EN GRENOUILLES ,53110,53189,52,48.483333,-0.483333,1.78
+ Le Ribay ,LE RIBAY ,53640,53190,52,48.383333,-0.416667,1.26
+ La Roë ,LA ROE ,53350,53191,52,47.9,-1.1,1.97
+ La Rouaudière ,LA ROUAUDIERE ,53390,53192,52,47.833333,-1.183333,2.34
+ Ruillé-Froid-Fonds ,RUILLE FROID FONDS ,53170,53193,52,47.916667,-0.633333,1.2
+ Ruillé-le-Gravelais ,RUILLE LE GRAVELAIS ,53320,53194,52,48.05,-0.95,1.29
+ Saint-Aignan-de-Couptrain ,SAINT AIGNAN DE COUPTRAIN,53250,53196,52,48.45,-0.3,1.61
+ Saint-Aignan-sur-Roë ,SAINT AIGNAN SUR ROE,53390,53197,52,47.85,-1.133333,2.11
+ Saint-Aubin-du-Désert ,SAINT AUBIN DU DESERT,53700,53198,52,48.3,-0.2,2.06
+ Saint-Aubin-Fosse-Louvain ,SAINT AUBIN FOSSE LOUVAIN,53120,53199,52,48.466667,-0.833333,1.69
+ Saint-Baudelle ,SAINT BAUDELLE ,53100,53200,52,48.283333,-0.633333,0.75
+ Saint-Berthevin-la-Tannière ,SAINT BERTHEVIN LA TANNIERE,53220,53202,52,48.4,-0.95,1.52
+ Saint-Brice ,SAINT BRICE ,53290,53203,52,47.866667,-0.45,1.4
+ Saint-Calais-du-Désert ,SAINT CALAIS DU DESERT,53140,53204,52,48.483333,-0.266667,1.78
+ Saint-Céneré ,SAINT CENERE ,53150,53205,52,48.116667,-0.6,1.59
+ Saint-Charles-la-Forêt ,SAINT CHARLES LA FORET,53170,53206,52,47.916667,-0.55,1.15
+ Saint-Christophe-du-Luat ,SAINT CHRISTOPHE DU LUAT,53150,53207,52,48.133333,-0.466667,1.48
+ Saint-Cyr-en-Pail ,SAINT CYR EN PAIL,53140,53208,52,48.433333,-0.25,1.84
+ Saint-Cyr-le-Gravelais ,SAINT CYR LE GRAVELAIS,53320,53209,52,48.033333,-1.033333,1.67
+ Saint-Denis-d'Anjou ,SAINT DENIS D ANJOU,53290,53210,52,47.783333,-0.45,1.83
+ Saint-Denis-de-Gastines ,SAINT DENIS DE GASTINES,53500,53211,52,48.35,-0.85,1.22
+ Saint-Denis-du-Maine ,SAINT DENIS DU MAINE,53170,53212,52,47.966667,-0.533333,0.89
+ Saint-Ellier-du-Maine ,SAINT ELLIER DU MAINE,53220,53213,52,48.4,-1.05,1.74
+ Saint-Erblon ,SAINT ERBLON ,53390,53214,52,47.783333,-1.166667,2.26
+ Saint-Fort ,SAINT FORT ,53200,53215,52,47.8,-0.716667,1.75
+ Saint-Fraimbault-de-Prières ,SAINT FRAIMBAULT DE PRIERES,53300,53216,52,48.35,-0.583333,1.2
+ Saint-Gault ,SAINT GAULT ,53360,53217,52,47.9,-0.783333,1.23
+ Sainte-Gemmes-le-Robert ,SAINTE GEMMES LE ROBERT,53600,53218,52,48.2,-0.366667,1.32
+ Saint-Georges-Buttavent ,SAINT GEORGES BUTTAVENT ,53100,53219,52,48.316667,-0.7,1
+ Saint-Georges-le-Fléchard ,SAINT GEORGES LE FLECHARD,53480,53220,52,48.033333,-0.516667,1
+ Saint-Georges-sur-Erve ,SAINT GEORGES SUR ERVE,53600,53221,52,48.166667,-0.3,1.61
+ Saint-Germain-d'Anxure ,SAINT GERMAIN D ANXURE,53240,53222,52,48.216667,-0.733333,1.09
+ Saint-Germain-de-Coulamer ,SAINT GERMAIN DE COULAMER,53700,53223,52,48.266667,-0.166667,2.21
+ Saint-Germain-le-Fouilloux ,SAINT GERMAIN LE FOUILLOUX,53240,53224,52,48.133333,-0.783333,1.14
+ Saint-Germain-le-Guillaume ,SAINT GERMAIN LE GUILLAUME,53240,53225,52,48.2,-0.816667,0.7
+ Saint-Hilaire-du-Maine ,SAINT HILAIRE DU MAINE,53380,53226,52,48.233333,-0.933333,1.44
+ Saint-Isle ,SAINT ISLE ,53940,53227,52,48.083333,-0.916667,1.15
+ Saint-Jean-sur-Erve ,SAINT JEAN SUR ERVE,53270,53228,52,48.033333,-0.383333,1.24
+ Saint-Jean-sur-Mayenne ,SAINT JEAN SUR MAYENNE,53240,53229,52,48.133333,-0.75,1.31
+ Saint-Julien-du-Terroux ,SAINT JULIEN DU TERROUX,53110,53230,52,48.483333,-0.416667,1.78
+ Saint-Laurent-des-Mortiers ,SAINT LAURENT DES MORTIERS,53290,53231,52,47.766667,-0.55,1.92
+ Saint-Loup-du-Dorat ,SAINT LOUP DU DORAT,53290,53233,52,47.9,-0.416667,1.36
+ Saint-Loup-du-Gast ,SAINT LOUP DU GAST,53300,53234,52,48.383333,-0.583333,1.26
+ Sainte-Marie-du-Bois ,SAINTE MARIE DU BOIS,53110,53235,52,48.466667,-0.483333,1.69
+ Saint-Mars-sur-Colmont ,SAINT MARS SUR COLMONT,53300,53237,52,48.366667,-0.7,1.18
+ Saint-Mars-sur-la-Futaie ,SAINT MARS SUR LA,53220,53238,52,48.433333,-1.016667,1.59
+ Saint-Martin-de-Connée ,SAINT MARTIN DE CONNEE,53160,53239,52,48.216667,-0.216667,1.99
+ Saint-Martin-du-Limet ,SAINT MARTIN DU LIMET,53800,53240,52,47.816667,-1.016667,1.66
+ Saint-Michel-de-Feins ,SAINT MICHEL DE FEINS,53290,53241,52,47.783333,-0.566667,1.83
+ Saint-Michel de la Roë ,SAINT MICHEL DE LA,53350,53242,52,47.883333,-1.133333,2.11
+ Saint-Ouen-des-Toits ,SAINT OUEN DES TOITS,53410,53243,52,48.133333,-0.9,1.46
+ Saint-Ouen-des-Vallons ,SAINT OUEN DES VALLONS,53150,53244,52,48.166667,-0.55,0.53
+ Saint-Pierre-des-Landes ,SAINT PIERRE DES LANDES,53500,53245,52,48.266667,-1.016667,1.86
+ Saint-Pierre-des-Nids ,SAINT PIERRE DES NIDS,53370,53246,52,48.4,-0.1,2.51
+ Saint-Pierre-la-Cour ,SAINT PIERRE LA COUR,53410,53247,52,48.116667,-1.033333,1.67
+ Saint-Pierre-sur-Erve ,SAINT PIERRE SUR ERVE,53270,53248,52,48.016667,-0.4,1.17
+ Saint-Pierre-sur-Orthe ,SAINT PIERRE SUR ORTHE,53160,53249,52,48.216667,-0.2,2.06
+ Saint-Poix ,SAINT POIX ,53540,53250,52,47.966667,-1.05,1.74
+ Saint-Quentin-les-Anges ,SAINT QUENTIN LES ANGES,53400,53251,52,47.766667,-0.883333,1.92
+ Saint-Samson ,SAINT SAMSON ,53140,53252,52,48.483333,-0.183333,2.14
+ Saint-Saturnin-du-Limet ,SAINT SATURNIN DU LIMET,53800,53253,52,47.816667,-1.066667,1.82
+ Saint-Sulpice ,SAINT SULPICE ,53360,53254,52,47.9,-0.716667,1.23
+ Sainte-Suzanne ,SAINTE SUZANNE ,53270,53255,52,48.1,-0.35,1.4
+ Saint-Thomas-de-Courceriers ,SAINT THOMAS DE COURCERIERS,53160,53256,52,48.266667,-0.266667,1.76
+ Saulges ,SAULGES ,53340,53257,52,47.983333,-0.4,1.17
+ La Selle-Craonnaise ,LA SELLE CRAONNAISE ,53800,53258,52,47.85,-1.033333,1.67
+ Senonnes ,SENONNES ,53390,53259,52,47.8,-1.2,2.41
+ Simplé ,SIMPLE ,53360,53260,52,47.883333,-0.85,1.61
+ Soucé ,SOUCE ,53300,53261,52,48.466667,-0.666667,1.69
+ Thuboeuf ,THUBOEUF ,53110,53263,52,48.5,-0.45,1.86
+ Thorigné-en-Charnie ,THORIGNE EN CHARNIE ,53270,53264,52,48,-0.366667,1.32
+ Trans ,TRANS ,53160,53266,52,48.283333,-0.316667,1.54
+ Vaiges ,VAIGES ,53480,53267,52,48.05,-0.466667,1
+ Vaucé ,VAUCE ,53300,53268,52,48.466667,-0.716667,1.69
+ Vautorte ,VAUTORTE ,53500,53269,52,48.3,-0.833333,1.19
+ Vieuvy ,VIEUVY ,53120,53270,52,48.45,-0.866667,1.6
+ Villaines-la-Juhel ,VILLAINES LA JUHEL ,53700,53271,52,48.35,-0.283333,1.69
+ Villepail ,VILLEPAIL ,53250,53272,52,48.4,-0.266667,1.76
+ Villiers-Charlemagne ,VILLIERS CHARLEMAGNE ,53170,53273,52,47.916667,-0.666667,1.68
+ Vimarcé ,VIMARCE ,53160,53274,52,48.2,-0.216667,1.99
+ Voutré ,VOUTRE ,53600,53276,52,48.15,-0.283333,1.69
+ Abaucourt ,ABAUCOURT ,54610,54001,41,48.9,6.25,0.47
+ Abbéville-lès-Conflans ,ABBEVILLE LES CONFLANS ,54800,54002,41,49.2,5.85,1.54
+ Aboncourt ,ABONCOURT ,54115,54003,41,48.358333,5.966667,-1
+ Affléville ,AFFLEVILLE ,54800,54004,41,49.266667,5.766667,1.96
+ Affracourt ,AFFRACOURT ,54740,54005,41,48.466667,6.166667,1.2
+ Agincourt ,AGINCOURT ,54770,54006,41,48.733333,6.233333,1.75
+ Aingeray ,AINGERAY ,54460,54007,41,48.733333,6,1
+ Allain ,ALLAIN ,54170,54008,41,48.55,5.916667,0.89
+ Allamont ,ALLAMONT ,54800,54009,41,49.116667,5.766667,1.42
+ Allamps ,ALLAMPS ,54112,54010,41,48.55,5.816667,1.47
+ Allondrelle-la-Malmaison ,ALLONDRELLE LA MALMAISON ,54260,54011,41,49.516667,5.566667,2.73
+ Amance ,AMANCE ,54770,54012,41,48.766667,6.283333,0.93
+ Amenoncourt ,AMENONCOURT ,54450,54013,41,48.633333,6.783333,2.23
+ Ancerviller ,ANCERVILLER ,54450,54014,41,48.533333,6.833333,2.41
+ Anderny ,ANDERNY ,54560,54015,41,49.333333,5.866667,2.04
+ Andilly ,ANDILLY ,54200,54016,41,48.766667,5.883333,1
+ Angomont ,ANGOMONT ,54540,54017,41,48.516667,6.95,2.83
+ Anoux ,ANOUX ,54150,54018,41,49.266667,5.866667,1.79
+ Ansauville ,ANSAUVILLE ,54470,54019,41,48.816667,5.833333,1.36
+ Anthelupt ,ANTHELUPT ,54110,54020,41,48.616667,6.416667,1.25
+ Armaucourt ,ARMAUCOURT ,54760,54021,41,48.816667,6.3,0.67
+ Arnaville ,ARNAVILLE ,54530,54022,41,49,6.033333,1.39
+ Arracourt ,ARRACOURT ,54370,54023,41,48.733333,6.533333,1.33
+ Arraye-et-Han ,ARRAYE ET HAN ,54760,54024,41,48.833333,6.3,0.88
+ Art-sur-Meurthe ,ART SUR MEURTHE ,54510,54025,41,48.65,6.266667,1
+ Athienville ,ATHIENVILLE ,54370,54026,41,48.716667,6.5,1.21
+ Atton ,ATTON ,54700,54027,41,48.9,6.083333,0.42
+ Auboué ,AUBOUE ,54580,54028,41,49.216667,5.983333,1.6
+ Audun-le-Roman ,AUDUN LE ROMAN ,54560,54029,41,49.366667,5.883333,2.16
+ Autrepierre ,AUTREPIERRE ,54450,54030,41,48.616667,6.8,2.29
+ Autreville-sur-Moselle ,AUTREVILLE SUR MOSELLE ,54380,54031,41,48.816667,6.116667,1.23
+ Avrainville ,AVRAINVILLE ,54385,54034,41,48.766667,5.933333,1.12
+ Avril ,AVRIL ,54150,54036,41,49.283333,5.966667,2.07
+ Azelot ,AZELOT ,54210,54037,41,48.583333,6.233333,0.95
+ Azerailles ,AZERAILLES ,54122,54038,41,48.483333,6.7,1.93
+ Baccarat ,BACCARAT ,54120,54039,41,48.45,6.75,2.11
+ Badonviller ,BADONVILLER ,54540,54040,41,48.5,6.9,2.65
+ Bagneux ,BAGNEUX ,54170,54041,41,48.55,5.883333,1
+ Bainville-aux-Miroirs ,BAINVILLE AUX MIROIRS ,54290,54042,41,48.433333,6.283333,1.33
+ Bainville-sur-Madon ,BAINVILLE SUR MADON ,54550,54043,41,48.583333,6.083333,0.77
+ Barbas ,BARBAS ,54450,54044,41,48.566667,6.85,2.47
+ Barbonville ,BARBONVILLE ,54360,54045,41,48.55,6.35,1.17
+ Barisey-au-Plain ,BARISEY AU PLAIN ,54170,54046,41,48.533333,5.85,1.12
+ Barisey-la-Côte ,BARISEY LA COTE ,54170,54047,41,48.55,5.85,1.12
+ Les Baroches ,LES BAROCHES ,54150,54048,41,49.233333,5.883333,1.67
+ Baslieux ,BASLIEUX ,54620,54049,41,49.433333,5.766667,2.41
+ Bathelémont-lès-Bauzemont ,BATHELEMONT LES BAUZEMONT ,54370,54050,41,48.7,6.533333,1.33
+ Batilly ,BATILLY ,54980,54051,41,49.166667,5.966667,1.42
+ Battigny ,BATTIGNY ,54115,54052,41,48.45,5.983333,1.26
+ Bauzemont ,BAUZEMONT ,54370,54053,41,48.666667,6.533333,1.33
+ Bayon ,BAYON ,54290,54054,41,48.483333,6.316667,1.14
+ Bayonville-sur-Mad ,BAYONVILLE SUR MAD ,54890,54055,41,49.016667,5.983333,1.09
+ Beaumont ,BEAUMONT ,54470,54057,41,48.85,5.783333,1.36
+ Béchamps ,BECHAMPS ,54800,54058,41,49.216667,5.733333,1.83
+ Belleau ,BELLEAU ,54610,54059,41,48.833333,6.183333,1.13
+ Belleville ,BELLEVILLE ,54940,54060,41,48.816667,6.1,0.22
+ Bénaménil ,BENAMENIL ,54450,54061,41,48.566667,6.666667,1.84
+ Benney ,BENNEY ,54740,54062,41,48.516667,6.216667,1.46
+ Bernécourt ,BERNECOURT ,54470,54063,41,48.85,5.833333,1.18
+ Bertrambois ,BERTRAMBOIS ,54480,54064,41,48.6,6.983333,2.95
+ Bertrichamps ,BERTRICHAMPS ,54120,54065,41,48.433333,6.8,2.29
+ Bettainvillers ,BETTAINVILLERS ,54640,54066,41,49.3,5.9,1.92
+ Beuveille ,BEUVEILLE ,54620,54067,41,49.433333,5.683333,2.41
+ Beuvezin ,BEUVEZIN ,54115,54068,41,48.383333,5.966667,1.51
+ Beuvillers ,BEUVILLERS ,54560,54069,41,49.383333,5.916667,2.23
+ Bey-sur-Seille ,BEY SUR SEILLE ,54760,54070,41,48.8,6.333333,1.5
+ Bezange-la-Grande ,BEZANGE LA GRANDE ,54370,54071,41,48.75,6.466667,1.31
+ Bezaumont ,BEZAUMONT ,54380,54072,41,48.85,6.1,0.93
+ Bicqueley ,BICQUELEY ,54200,54073,41,48.633333,5.916667,1.43
+ Bienville-la-Petite ,BIENVILLE LA PETITE ,54300,54074,41,48.633333,6.516667,1.27
+ Bionville ,BIONVILLE ,54540,54075,41,48.483333,7.016667,-1
+ Blainville-sur-l'Eau ,BLAINVILLE SUR L EAU,54360,54076,41,48.55,6.4,0.89
+ Blâmont ,BLAMONT ,54450,54077,41,48.583333,6.85,2.47
+ Blénod-lès-Pont-à-Mousson ,BLENOD LES PONT A,54700,54079,41,48.883333,6.05,0.66
+ Blénod-lès-Toul ,BLENOD LES TOUL ,54113,54080,41,48.6,5.833333,1.18
+ Boismont ,BOISMONT ,54620,54081,41,49.4,5.733333,2.29
+ Boncourt ,BONCOURT ,54800,54082,41,49.166667,5.833333,1.42
+ Bonviller ,BONVILLER ,54300,54083,41,48.633333,6.5,1.21
+ Mont-Bonvillers ,MONT BONVILLERS ,54111,54084,41,49.333333,5.85,2.04
+ Borville ,BORVILLE ,54290,54085,41,48.45,6.4,1.26
+ Boucq ,BOUCQ ,54200,54086,41,48.75,5.766667,1.88
+ Bouillonville ,BOUILLONVILLE ,54470,54087,41,48.95,5.85,1.12
+ Bouvron ,BOUVRON ,54200,54088,41,48.733333,5.883333,1
+ Bouxières-aux-Chênes ,BOUXIERES AUX CHENES ,54770,54089,41,48.766667,6.266667,0.56
+ Bouxières-aux-Dames ,BOUXIERES AUX DAMES ,54136,54090,41,48.75,6.166667,0.14
+ Bouxières-sous-Froidmont ,BOUXIERES SOUS FROIDMONT ,54700,54091,41,48.95,6.083333,0.81
+ Bouzanville ,BOUZANVILLE ,54930,54092,41,48.366667,6.1,1.58
+ Bralleville ,BRALLEVILLE ,54740,54094,41,48.4,6.183333,1.45
+ Bratte ,BRATTE ,54610,54095,41,48.816667,6.216667,1.07
+ Bréhain-la-Ville ,BREHAIN LA VILLE ,54190,54096,41,49.433333,5.883333,2.41
+ Bréménil ,BREMENIL ,54540,54097,41,48.516667,6.916667,2.71
+ Brémoncourt ,BREMONCOURT ,54290,54098,41,48.483333,6.35,1.14
+ Briey ,BRIEY ,54150,54099,41,49.25,5.933333,1.73
+ Brin-sur-Seille ,BRIN SUR SEILLE ,54280,54100,41,48.783333,6.35,0.82
+ Brouville ,BROUVILLE ,54120,54101,41,48.5,6.75,2.11
+ Bruley ,BRULEY ,54200,54102,41,48.716667,5.85,1.12
+ Bruville ,BRUVILLE ,54800,54103,41,49.133333,5.916667,1.29
+ Buissoncourt ,BUISSONCOURT ,54110,54104,41,48.683333,6.35,0.95
+ Bulligny ,BULLIGNY ,54113,54105,41,48.583333,5.85,1.12
+ Bures ,BURES ,54370,54106,41,48.7,6.583333,1.51
+ Buriville ,BURIVILLE ,54450,54107,41,48.533333,6.7,1.93
+ Burthecourt-aux-Chênes ,BURTHECOURT AUX CHENES ,54210,54108,41,48.583333,6.25,0.77
+ Ceintrey ,CEINTREY ,54134,54109,41,48.533333,6.166667,1
+ Cerville ,CERVILLE ,54420,54110,41,48.7,6.316667,1.44
+ Chaligny ,CHALIGNY ,54230,54111,41,48.633333,6.083333,0.58
+ Chambley-Bussières ,CHAMBLEY BUSSIERES ,54890,54112,41,49.05,5.898,-1
+ Champenoux ,CHAMPENOUX ,54280,54113,41,48.75,6.35,0.68
+ Champey-sur-Moselle ,CHAMPEY SUR MOSELLE ,54700,54114,41,48.95,6.066667,0.75
+ Champigneulles ,CHAMPIGNEULLES ,54250,54115,41,48.733333,6.166667,0.2
+ Chanteheux ,CHANTEHEUX ,54300,54116,41,48.6,6.533333,1.33
+ Chaouilley ,CHAOUILLEY ,54330,54117,41,48.433333,6.066667,1.33
+ Charency-Vezin ,CHARENCY VEZIN ,54260,54118,41,49.483333,5.516667,2.6
+ Charey ,CHAREY ,54470,54119,41,49,5.883333,1.13
+ Charmes-la-Côte ,CHARMES LA COTE ,54113,54120,41,48.633333,5.833333,1.39
+ Charmois ,CHARMOIS ,54360,54121,41,48.533333,6.383333,0.95
+ Chaudeney-sur-Moselle ,CHAUDENEY SUR MOSELLE ,54200,54122,41,48.65,5.9,1.08
+ Chavigny ,CHAVIGNY ,54230,54123,41,48.633333,6.133333,1.55
+ Chazelles-sur-Albe ,CHAZELLES SUR ALBE ,54450,54124,41,48.583333,6.783333,2.23
+ Chenevières ,CHENEVIERES ,54122,54125,41,48.516667,6.633333,1.69
+ Chenicourt ,CHENICOURT ,54610,54126,41,48.85,6.283333,0.97
+ Chénières ,CHENIERES ,54720,54127,41,49.466667,5.766667,2.54
+ Clayeures ,CLAYEURES ,54290,54130,41,48.466667,6.4,1.2
+ Clémery ,CLEMERY ,54610,54131,41,48.9,6.183333,0.92
+ Clérey-sur-Brénon ,CLEREY SUR BRENON ,54330,54132,41,48.5,6.133333,1.4
+ Coincourt ,COINCOURT ,54370,54133,41,48.7,6.616667,1.63
+ Colmey ,COLMEY ,54260,54134,41,49.45,5.55,2.48
+ Colombey-les-Belles ,COLOMBEY LES BELLES ,54170,54135,41,48.533333,5.9,0.95
+ Conflans-en-Jarnisy ,CONFLANS EN JARNISY ,54800,54136,41,49.166667,5.85,1.42
+ Cons-la-Grandville ,CONS LA GRANDVILLE ,54870,54137,41,49.483333,5.7,2.6
+ Cosnes-et-Romain ,COSNES ET ROMAIN ,54400,54138,41,49.516667,5.716667,2.73
+ Courbesseaux ,COURBESSEAUX ,54110,54139,41,48.683333,6.4,1.07
+ Coyviller ,COYVILLER ,54210,54141,41,48.583333,6.283333,0.77
+ Crantenoy ,CRANTENOY ,54740,54142,41,48.466667,6.233333,1.2
+ Crépey ,CREPEY ,54170,54143,41,48.533333,5.966667,0.95
+ Crévéchamps ,CREVECHAMPS ,54290,54144,41,48.533333,6.266667,1.64
+ Crévic ,CREVIC ,54110,54145,41,48.633333,6.4,0.86
+ Crézilles ,CREZILLES ,54113,54146,41,48.583333,5.883333,1.04
+ Crion ,CRION ,54300,54147,41,48.633333,6.533333,1.33
+ Croismare ,CROISMARE ,54300,54148,41,48.6,6.566667,1.45
+ Crusnes ,CRUSNES ,54680,54149,41,49.433333,5.916667,2.41
+ Custines ,CUSTINES ,54670,54150,41,48.8,6.15,0.39
+ Cutry ,CUTRY ,54720,54151,41,49.483333,5.75,2.6
+ Damelevières ,DAMELEVIERES ,54360,54152,41,48.55,6.383333,0.89
+ Dampvitoux ,DAMPVITOUX ,54470,54153,41,49.016667,5.85,1.3
+ Deneuvre ,DENEUVRE ,54120,54154,41,48.45,6.733333,2.05
+ Deuxville ,DEUXVILLE ,54370,54155,41,48.616667,6.45,1.43
+ Diarville ,DIARVILLE ,54930,54156,41,48.4,6.133333,1.45
+ Dieulouard ,DIEULOUARD ,54380,54157,41,48.85,6.066667,0.4
+ Dolcourt ,DOLCOURT ,54170,54158,41,48.483333,5.983333,1.39
+ Dombasle-sur-Meurthe ,DOMBASLE SUR MEURTHE ,54110,54159,41,48.633333,6.35,0.68
+ Domèvre-en-Haye ,DOMEVRE EN HAYE ,54385,54160,41,48.816667,5.916667,0.88
+ Domèvre-sur-Vezouze ,DOMEVRE SUR VEZOUZE ,54450,54161,41,48.566667,6.8,2.29
+ Domgermain ,DOMGERMAIN ,54119,54162,41,48.65,5.816667,1.24
+ Domjevin ,DOMJEVIN ,54450,54163,41,48.583333,6.7,1.93
+ Dommarie-Eulmont ,DOMMARIE EULMONT ,54115,54164,41,48.433333,6.033333,1.33
+ Dommartemont ,DOMMARTEMONT ,54130,54165,41,48.716667,6.216667,1
+ Dommartin-lès-Toul ,DOMMARTIN LES TOUL ,54200,54167,41,48.666667,5.9,0.94
+ Domprix ,DOMPRIX ,54490,54169,41,49.333333,5.75,2.04
+ Domptail-en l'Air ,DOMPTAIL EN L AIR,54290,54170,41,48.516667,6.333333,1.01
+ Doncourt-lès-Conflans ,DONCOURT LES CONFLANS ,54800,54171,41,49.15,5.933333,1.35
+ Doncourt-lès-Longuyon ,DONCOURT LES LONGUYON ,54620,54172,41,49.433333,5.716667,2.41
+ Drouville ,DROUVILLE ,54370,54173,41,48.666667,6.4,1.81
+ Écrouves ,ECROUVES ,54200,54174,41,48.683333,5.85,1.12
+ Einvaux ,EINVAUX ,54360,54175,41,48.483333,6.4,1.43
+ Einville-au-Jard ,EINVILLE AU JARD ,54370,54176,41,48.65,6.483333,1.15
+ Emberménil ,EMBERMENIL ,54370,54177,41,48.633333,6.7,1.93
+ Épiez-sur-Chiers ,EPIEZ SUR CHIERS ,54260,54178,41,49.483333,5.5,2.6
+ Éply ,EPLY ,54610,54179,41,48.916667,6.183333,1.07
+ Erbéviller-sur-Amezule ,ERBEVILLER SUR AMEZULE ,54280,54180,41,48.733333,6.383333,0.8
+ Errouville ,ERROUVILLE ,54680,54181,41,49.416667,5.9,2.35
+ Essey-et-Maizerais ,ESSEY ET MAIZERAIS ,54470,54182,41,48.916667,5.816667,1.24
+ Essey-la-Côte ,ESSEY LA COTE ,54830,54183,41,48.433333,6.466667,1.33
+ Essey-lès-Nancy ,ESSEY LES NANCY ,54270,54184,41,48.7,6.233333,0.33
+ Étreval ,ETREVAL ,54330,54185,41,48.45,6.05,1.26
+ Eulmont ,EULMONT ,54690,54186,41,48.75,6.233333,1
+ Euvezin ,EUVEZIN ,54470,54187,41,48.916667,5.833333,1.18
+ Faulx ,FAULX ,54760,54188,41,48.8,6.2,1.86
+ Favières ,FAVIERES ,54115,54189,41,48.466667,5.95,1.2
+ Fécocourt ,FECOCOURT ,54115,54190,41,48.4,6,1.45
+ Fenneviller ,FENNEVILLER ,54540,54191,41,48.483333,6.883333,2.59
+ Ferrières ,FERRIERES ,54210,54192,41,48.55,6.3,1.31
+ Fey-en-Haye ,FEY EN HAYE ,54470,54193,41,48.9,5.966667,1.44
+ Fillières ,FILLIERES ,54560,54194,41,49.4,5.833333,2.29
+ Flainval ,FLAINVAL ,54110,54195,41,48.616667,6.4,0.95
+ Flavigny-sur-Moselle ,FLAVIGNY SUR MOSELLE ,54630,54196,41,48.566667,6.183333,1
+ Fléville-devant-Nancy ,FLEVILLE DEVANT NANCY ,54710,54197,41,48.633333,6.216667,1
+ Fléville-Lixières ,FLEVILLE LIXIERES ,54150,54198,41,49.25,5.816667,1.73
+ Flin ,FLIN ,54122,54199,41,48.5,6.65,1.75
+ Flirey ,FLIREY ,54470,54200,41,48.883333,5.833333,1.18
+ Fontenoy-la-Joûte ,FONTENOY LA JOUTE ,54122,54201,41,48.45,6.666667,1.81
+ Fontenoy-sur-Moselle ,FONTENOY SUR MOSELLE ,54840,54202,41,48.716667,5.983333,0.73
+ Forcelles-Saint-Gorgon ,FORCELLES SAINT GORGON ,54330,54203,41,48.45,6.1,1.26
+ Forcelles-sous-Gugney ,FORCELLES SOUS GUGNEY ,54930,54204,41,48.4,6.083333,1.45
+ Foug ,FOUG ,54570,54205,41,48.683333,5.783333,1.36
+ Fraimbois ,FRAIMBOIS ,54300,54206,41,48.533333,6.55,1.39
+ Fraisnes-en-Saintois ,FRAISNES EN SAINTOIS ,54930,54207,41,48.383333,6.05,1.51
+ Francheville ,FRANCHEVILLE ,54200,54208,41,48.733333,5.933333,0.93
+ Franconville ,FRANCONVILLE ,54830,54209,41,48.5,6.45,1.36
+ Fréménil ,FREMENIL ,54450,54210,41,48.566667,6.716667,1.99
+ Frémonville ,FREMONVILLE ,54450,54211,41,48.6,6.883333,2.59
+ Fresnois-la-Montagne ,FRESNOIS LA MONTAGNE ,54260,54212,41,49.5,5.65,2.66
+ Friauville ,FRIAUVILLE ,54800,54213,41,49.15,5.85,1.35
+ Frolois ,FROLOIS ,54160,54214,41,48.566667,6.133333,0.83
+ Frouard ,FROUARD ,54390,54215,41,48.766667,6.133333,0.1
+ Froville ,FROVILLE ,54290,54216,41,48.466667,6.35,1.2
+ Gélacourt ,GELACOURT ,54120,54217,41,48.483333,6.733333,2.05
+ Gélaucourt ,GELAUCOURT ,54115,54218,41,48.45,5.983333,1.26
+ Gellenoncourt ,GELLENONCOURT ,54110,54219,41,48.683333,6.383333,0.89
+ Gémonville ,GEMONVILLE ,54115,54220,41,48.416667,5.883333,2.02
+ Gerbécourt-et-Haplemont ,GERBECOURT ET HAPLEMONT ,54740,54221,41,48.483333,6.166667,1.14
+ Gerbéviller ,GERBEVILLER ,54830,54222,41,48.5,6.516667,1.27
+ Germiny ,GERMINY ,54170,54223,41,48.55,6,1.41
+ Germonville ,GERMONVILLE ,54740,54224,41,48.4,6.216667,1.45
+ Gézoncourt ,GEZONCOURT ,54380,54225,41,48.833333,6,0.89
+ Gibeaumeix ,GIBEAUMEIX ,54112,54226,41,48.583333,5.733333,1.54
+ Giraumont ,GIRAUMONT ,54780,54227,41,49.166667,5.916667,1.42
+ Giriviller ,GIRIVILLER ,54830,54228,41,48.45,6.483333,1.26
+ Glonville ,GLONVILLE ,54122,54229,41,48.466667,6.683333,1.87
+ Gogney ,GOGNEY ,54450,54230,41,48.616667,6.866667,2.53
+ Gondrecourt-Aix ,GONDRECOURT AIX ,54800,54231,41,49.25,5.766667,1.77
+ Gondreville ,GONDREVILLE ,54840,54232,41,48.7,5.966667,1
+ Gondrexon ,GONDREXON ,54450,54233,41,48.6,6.766667,2.17
+ Goviller ,GOVILLER ,54330,54235,41,48.5,6.016667,1.34
+ Grand-Failly ,GRAND FAILLY ,54260,54236,41,49.416667,5.5,2.38
+ Grimonviller ,GRIMONVILLER ,54115,54237,41,48.383333,6,1.51
+ Gripport ,GRIPPORT ,54290,54238,41,48.416667,6.25,1.78
+ Griscourt ,GRISCOURT ,54380,54239,41,48.833333,6.016667,0.59
+ Grosrouvres ,GROSROUVRES ,54470,54240,41,48.833333,5.833333,1.18
+ Gugney ,GUGNEY ,54930,54241,41,48.4,6.066667,1.45
+ Gye ,GYE ,54113,54242,41,48.616667,5.883333,1
+ Hablainville ,HABLAINVILLE ,54120,54243,41,48.516667,6.733333,2.05
+ Hagéville ,HAGEVILLE ,54470,54244,41,49.033333,5.866667,1.52
+ Haigneville ,HAIGNEVILLE ,54290,54245,41,48.483333,6.35,1.14
+ Halloville ,HALLOVILLE ,54450,54246,41,48.55,6.866667,2.53
+ Hammeville ,HAMMEVILLE ,54330,54247,41,48.5,6.066667,1.08
+ Hamonville ,HAMONVILLE ,54470,54248,41,48.833333,5.816667,1.24
+ Hannonville-Suzémont ,HANNONVILLE SUZEMONT ,54800,54249,41,49.1,5.833333,1.18
+ Haraucourt ,HARAUCOURT ,54110,54250,41,48.666667,6.366667,0.74
+ Harbouey ,HARBOUEY ,54450,54251,41,48.566667,6.883333,2.59
+ Haroué ,HAROUE ,54740,54252,41,48.466667,6.183333,1.2
+ Hatrize ,HATRIZE ,54800,54253,41,49.2,5.916667,1.54
+ Haucourt-Moulaine ,HAUCOURT MOULAINE ,54860,54254,41,49.483333,5.8,2.6
+ Haudonville ,HAUDONVILLE ,54830,54255,41,48.5,6.5,1.21
+ Haussonville ,HAUSSONVILLE ,54290,54256,41,48.533333,6.333333,1.11
+ Heillecourt ,HEILLECOURT ,54180,54257,41,48.65,6.2,1
+ Hénaménil ,HENAMENIL ,54370,54258,41,48.666667,6.566667,1.45
+ Herbéviller ,HERBEVILLER ,54450,54259,41,48.55,6.75,2.11
+ Hériménil ,HERIMENIL ,54300,54260,41,48.566667,6.5,1.21
+ Herserange ,HERSERANGE ,54440,54261,41,49.516667,5.783333,2.73
+ Hoéville ,HOEVILLE ,54370,54262,41,48.7,6.433333,1.43
+ Homécourt ,HOMECOURT ,54310,54263,41,49.233333,5.983333,1.67
+ Houdelmont ,HOUDELMONT ,54330,54264,41,48.533333,6.083333,1.09
+ Houdémont ,HOUDEMONT ,54180,54265,41,48.65,6.183333,1
+ Houdreville ,HOUDREVILLE ,54330,54266,41,48.5,6.1,1.08
+ Housséville ,HOUSSEVILLE ,54930,54268,41,48.4,6.116667,1.45
+ Hudiviller ,HUDIVILLER ,54110,54269,41,48.6,6.4,1.25
+ Hussigny-Godbrange ,HUSSIGNY GODBRANGE ,54590,54270,41,49.483333,5.866667,2.6
+ Jaillon ,JAILLON ,54200,54272,41,48.75,5.966667,1.53
+ Jarny ,JARNY ,54800,54273,41,49.15,5.883333,1.35
+ Jarville-la-Malgrange ,JARVILLE LA MALGRANGE ,54140,54274,41,48.666667,6.216667,0.45
+ Jaulny ,JAULNY ,54470,54275,41,48.966667,5.883333,1
+ Jeandelaincourt ,JEANDELAINCOURT ,54114,54276,41,48.85,6.233333,0.26
+ Jeandelize ,JEANDELIZE ,54800,54277,41,49.166667,5.8,1.42
+ Jevoncourt ,JEVONCOURT ,54740,54278,41,48.416667,6.166667,1.39
+ Jezainville ,JEZAINVILLE ,54700,54279,41,48.866667,6.033333,1.12
+ Joeuf ,JOEUF ,54240,54280,41,49.233333,6.016667,1.67
+ Jolivet ,JOLIVET ,54300,54281,41,48.6,6.5,1.21
+ Joppécourt ,JOPPECOURT ,54620,54282,41,49.383333,5.783333,2.23
+ Jouaville ,JOUAVILLE ,54800,54283,41,49.166667,5.95,1.44
+ Joudreville ,JOUDREVILLE ,54490,54284,41,49.3,5.783333,1.92
+ Juvrecourt ,JUVRECOURT ,54370,54285,41,48.733333,6.566667,1.45
+ Labry ,LABRY ,54800,54286,41,49.166667,5.866667,1.42
+ Lachapelle ,LACHAPELLE ,54120,54287,41,48.416667,6.783333,2.23
+ Lagney ,LAGNEY ,54200,54288,41,48.733333,5.833333,1.18
+ Laitre-sous-Amance ,LAITRE SOUS AMANCE ,54770,54289,41,48.75,6.283333,0.77
+ Laix ,LAIX ,54720,54290,41,49.45,5.783333,2.48
+ Laloeuf ,LALOEUF ,54115,54291,41,48.466667,6.016667,1.24
+ Lamath ,LAMATH ,54300,54292,41,48.533333,6.45,1.61
+ Landécourt ,LANDECOURT ,54360,54293,41,48.5,6.416667,1.25
+ Landremont ,LANDREMONT ,54380,54294,41,48.85,6.133333,1.51
+ Landres ,LANDRES ,54970,54295,41,49.316667,5.8,1.98
+ Laneuvelotte ,LANEUVELOTTE ,54280,54296,41,48.733333,6.3,1.15
+ Laneuveville-aux-Bois ,LANEUVEVILLE AUX BOIS ,54370,54297,41,48.616667,6.65,1.75
+ Laneuveville-devant-Bayon ,LANEUVEVILLE DEVANT BAYON ,54740,54299,41,48.466667,6.266667,1.48
+ Laneuveville-devant-Nancy ,LANEUVEVILLE DEVANT NANCY ,54410,54300,41,48.65,6.233333,1
+ Lanfroicourt ,LANFROICOURT ,54760,54301,41,48.8,6.333333,1.5
+ Lantéfontaine ,LANTEFONTAINE ,54150,54302,41,49.25,5.9,1.73
+ Laronxe ,LARONXE ,54950,54303,41,48.55,6.6,1.57
+ Laxou ,LAXOU ,54520,54304,41,48.683333,6.15,0.39
+ Lay-Saint-Christophe ,LAY SAINT CHRISTOPHE ,54690,54305,41,48.75,6.2,1
+ Lay-Saint-Rémy ,LAY SAINT REMY ,54570,54306,41,48.683333,5.766667,1.42
+ Lebeuville ,LEBEUVILLE ,54740,54307,41,48.433333,6.25,1.33
+ Leintrey ,LEINTREY ,54450,54308,41,48.616667,6.733333,2.05
+ Lemainville ,LEMAINVILLE ,54740,54309,41,48.5,6.2,1.08
+ Leménil-Mitry ,LEMENIL MITRY ,54740,54310,41,48.45,6.25,1.26
+ Lenoncourt ,LENONCOURT ,54110,54311,41,48.666667,6.3,1.65
+ Lesménils ,LESMENILS ,54700,54312,41,48.933333,6.1,0.76
+ Létricourt ,LETRICOURT ,54610,54313,41,48.883333,6.3,1.13
+ Lexy ,LEXY ,54720,54314,41,49.5,5.733333,2.66
+ Leyr ,LEYR ,54760,54315,41,48.8,6.266667,0.38
+ Lironville ,LIRONVILLE ,54470,54317,41,48.866667,5.916667,1.01
+ Liverdun ,LIVERDUN ,54460,54318,41,48.75,6.05,1
+ Lixières ,LIXIERES ,54610,54319,41,48.85,6.2,0.73
+ Loisy ,LOISY ,54700,54320,41,48.866667,6.1,1.1
+ Longlaville ,LONGLAVILLE ,54810,54321,41,49.533333,5.783333,2.79
+ Longuyon ,LONGUYON ,54260,54322,41,49.433333,5.6,2.41
+ Longwy ,LONGWY ,54400,54323,41,49.516667,5.766667,2.73
+ Lorey ,LOREY ,54290,54324,41,48.5,6.3,1.08
+ Loromontzey ,LOROMONTZEY ,54290,54325,41,48.433333,6.383333,1.33
+ Lubey ,LUBEY ,54150,54326,41,49.25,5.866667,1.73
+ Lucey ,LUCEY ,54200,54327,41,48.716667,5.833333,1.18
+ Ludres ,LUDRES ,54710,54328,41,48.616667,6.166667,1
+ Lunéville ,LUNEVILLE ,54300,54329,41,48.6,6.5,1.21
+ Lupcourt ,LUPCOURT ,54210,54330,41,48.616667,6.233333,1.24
+ Magnières ,MAGNIERES ,54129,54331,41,48.45,6.566667,1.45
+ Maidières ,MAIDIERES ,54700,54332,41,48.9,6.033333,0.71
+ Mailly-sur-Seille ,MAILLY SUR SEILLE ,54610,54333,41,48.916667,6.25,0.71
+ Maixe ,MAIXE ,54370,54335,41,48.65,6.433333,1.45
+ Maizières ,MAIZIERES ,54550,54336,41,48.583333,6.066667,0.77
+ Malavillers ,MALAVILLERS ,54560,54337,41,49.35,5.866667,2.1
+ Malleloy ,MALLELOY ,54670,54338,41,48.8,6.166667,1.22
+ Malzéville ,MALZEVILLE ,54220,54339,41,48.716667,6.2,0.27
+ Mamey ,MAMEY ,54470,54340,41,48.866667,5.95,1.37
+ Mance ,MANCE ,54150,54341,41,49.266667,5.916667,1.79
+ Mancieulles ,MANCIEULLES ,54790,54342,41,49.283333,5.883333,1.85
+ Mangonville ,MANGONVILLE ,54290,54344,41,48.45,6.283333,1.26
+ Manoncourt-en-Vermois ,MANONCOURT EN VERMOIS ,54210,54345,41,48.6,6.266667,0.7
+ Manoncourt-en-Woëvre ,MANONCOURT EN WOEVRE ,54385,54346,41,48.783333,5.933333,0.82
+ Manoncourt-sur-Seille ,MANONCOURT SUR SEILLE ,54610,54347,41,48.866667,6.366667,2.26
+ Manonville ,MANONVILLE ,54385,54348,41,48.833333,5.916667,0.91
+ Manonviller ,MANONVILLER ,54300,54349,41,48.583333,6.65,2.17
+ Marainviller ,MARAINVILLER ,54300,54350,41,48.583333,6.6,1.57
+ Marbache ,MARBACHE ,54820,54351,41,48.8,6.083333,0.28
+ Maron ,MARON ,54230,54352,41,48.633333,6.05,1.55
+ Mars-la-Tour ,MARS LA TOUR ,54800,54353,41,49.1,5.9,1.17
+ Marthemont ,MARTHEMONT ,54330,54354,41,48.566667,6.033333,2.05
+ Martincourt ,MARTINCOURT ,54380,54355,41,48.85,5.95,1.8
+ Mattexey ,MATTEXEY ,54830,54356,41,48.45,6.516667,1.27
+ Maxéville ,MAXEVILLE ,54320,54357,41,48.716667,6.166667,0.27
+ Mazerulles ,MAZERULLES ,54280,54358,41,48.75,6.383333,0.8
+ Méhoncourt ,MEHONCOURT ,54360,54359,41,48.516667,6.383333,1.01
+ Ménil-la-Tour ,MENIL LA TOUR ,54200,54360,41,48.766667,5.866667,1.06
+ Ménillot ,MENILLOT ,54200,54361,41,48.666667,5.816667,1.25
+ Mercy-le-Bas ,MERCY LE BAS ,54960,54362,41,49.383333,5.75,2.23
+ Mercy-le-Haut ,MERCY LE HAUT ,54560,54363,41,49.366667,5.833333,2.16
+ Méréville ,MEREVILLE ,54850,54364,41,48.6,6.15,1
+ Merviller ,MERVILLER ,54120,54365,41,48.483333,6.783333,2.23
+ Messein ,MESSEIN ,54850,54366,41,48.616667,6.15,1
+ Mexy ,MEXY ,54135,54367,41,49.5,5.783333,2.66
+ Mignéville ,MIGNEVILLE ,54540,54368,41,48.533333,6.783333,2.23
+ Millery ,MILLERY ,54670,54369,41,48.816667,6.133333,1.39
+ Minorville ,MINORVILLE ,54385,54370,41,48.816667,5.9,0.94
+ Moineville ,MOINEVILLE ,54580,54371,41,49.2,5.95,1.54
+ Moivrons ,MOIVRONS ,54760,54372,41,48.816667,6.25,0.63
+ Moncel-lès-Lunéville ,MONCEL LES LUNEVILLE ,54300,54373,41,48.566667,6.533333,1.33
+ Moncel-sur-Seille ,MONCEL SUR SEILLE ,54280,54374,41,48.766667,6.416667,1.4
+ Montauville ,MONTAUVILLE ,54700,54375,41,48.9,6.016667,1.03
+ Montenoy ,MONTENOY ,54760,54376,41,48.8,6.233333,1.04
+ Montigny ,MONTIGNY ,54540,54377,41,48.516667,6.8,2.29
+ Montigny-sur-Chiers ,MONTIGNY SUR CHIERS ,54870,54378,41,49.483333,5.666667,2.6
+ Mont-l'Étroit ,MONT L ETROIT ,54170,54379,41,48.5,5.783333,2
+ Mont-le-Vignoble ,MONT LE VIGNOBLE ,54113,54380,41,48.616667,5.85,1.12
+ Montreux ,MONTREUX ,54450,54381,41,48.533333,6.883333,2.59
+ Mont-Saint-Martin ,MONT SAINT MARTIN ,54350,54382,41,49.533333,5.783333,2.79
+ Mont-sur-Meurthe ,MONT SUR MEURTHE ,54360,54383,41,48.55,6.45,1.88
+ Morey ,MOREY ,54610,54384,41,48.833333,6.166667,1.35
+ Morfontaine ,MORFONTAINE ,54920,54385,41,49.45,5.8,2.48
+ Moriviller ,MORIVILLER ,54830,54386,41,48.483333,6.45,1.14
+ Morville-sur-Seille ,MORVILLE SUR SEILLE ,54700,54387,41,48.916667,6.15,1.62
+ Mouacourt ,MOUACOURT ,54370,54388,41,48.683333,6.633333,1.69
+ Mouaville ,MOUAVILLE ,54800,54389,41,49.216667,5.766667,1.6
+ Mousson ,MOUSSON ,54700,54390,41,48.9,6.083333,0.42
+ Moutiers ,MOUTIERS ,54660,54391,41,49.233333,5.966667,1.67
+ Moutrot ,MOUTROT ,54113,54392,41,48.6,5.9,1.32
+ Moyen ,MOYEN ,54118,54393,41,48.483333,6.566667,1.45
+ Murville ,MURVILLE ,54490,54394,41,49.333333,5.833333,2.04
+ Nancy ,NANCY ,54100,54395,41,48.683333,6.2,0.39
+ Neufmaisons ,NEUFMAISONS ,54540,54396,41,48.466667,6.85,2.47
+ Neuves-Maisons ,NEUVES MAISONS ,54230,54397,41,48.616667,6.1,0.64
+ Neuviller-lès-Badonviller ,NEUVILLER LES BADONVILLER ,54540,54398,41,48.516667,6.883333,2.59
+ Neuviller-sur-Moselle ,NEUVILLER SUR MOSELLE ,54290,54399,41,48.5,6.283333,1.08
+ Nomény ,NOMENY ,54610,54400,41,48.9,6.233333,0.42
+ Nonhigny ,NONHIGNY ,54450,54401,41,48.55,6.883333,2.59
+ Norroy-le-Sec ,NORROY LE SEC ,54150,54402,41,49.283333,5.816667,1.85
+ Norroy-lès-Pont-à-Mousson ,NORROY LES PONT A,54700,54403,41,48.933333,6.033333,0.79
+ Noviant-aux-Prés ,NOVIANT AUX PRES ,54385,54404,41,48.833333,5.883333,1.54
+ Ochey ,OCHEY ,54170,54405,41,48.583333,5.95,0.96
+ Ogéviller ,OGEVILLER ,54450,54406,41,48.55,6.716667,1.99
+ Ognéville ,OGNEVILLE ,54330,54407,41,48.483333,6.066667,1.14
+ Olley ,OLLEY ,54800,54408,41,49.166667,5.766667,1.42
+ Omelmont ,OMELMONT ,54330,54409,41,48.5,6.116667,1.08
+ Onville ,ONVILLE ,54890,54410,41,49.016667,5.966667,0.86
+ Ormes-et-Ville ,ORMES ET VILLE ,54740,54411,41,48.483333,6.2,1.14
+ Othe ,OTHE ,54260,54412,41,49.5,5.433333,2.66
+ Ozerailles ,OZERAILLES ,54150,54413,41,49.233333,5.85,1.67
+ Pagney-derrière Barine ,PAGNEY DERRIERE BARINE ,54200,54414,41,48.7,5.85,1.12
+ Pagny-sur-Moselle ,PAGNY SUR MOSELLE ,54530,54415,41,48.983333,6.016667,0.73
+ Pannes ,PANNES ,54470,54416,41,48.933333,5.8,1.3
+ Parey-Saint-Césaire ,PAREY SAINT CESAIRE ,54330,54417,41,48.533333,6.066667,1.08
+ Parroy ,PARROY ,54370,54418,41,48.683333,6.6,1.57
+ Parux ,PARUX ,54480,54419,41,48.533333,6.916667,2.71
+ Petit Failly ,PETIT FAILLY ,54260,54420,41,49.433333,5.5,2.41
+ Petitmont ,PETITMONT ,54480,54421,41,48.55,6.95,2.83
+ Pettonville ,PETTONVILLE ,54120,54422,41,48.533333,6.75,2.11
+ Pexonne ,PEXONNE ,54540,54423,41,48.483333,6.866667,2.53
+ Phlin ,PHLIN ,54610,54424,41,48.916667,6.283333,1.07
+ Piennes ,PIENNES ,54490,54425,41,49.316667,5.783333,1.98
+ Pierre-la Treiche ,PIERRE LA TREICHE ,54200,54426,41,48.65,5.933333,1.35
+ Pierre-Percée ,PIERRE PERCEE ,54540,54427,41,48.466667,6.933333,2.77
+ Pierrepont ,PIERREPONT ,54620,54428,41,49.416667,5.716667,2.35
+ Pierreville ,PIERREVILLE ,54160,54429,41,48.55,6.116667,1.14
+ Pompey ,POMPEY ,54340,54430,41,48.766667,6.116667,0.16
+ Pont-à-Mousson ,PONT A MOUSSON ,54700,54431,41,48.9,6.066667,0.42
+ Pont-Saint-Vincent ,PONT SAINT VINCENT ,54550,54432,41,48.6,6.1,1.15
+ Port-sur-Seille ,PORT SUR SEILLE ,54700,54433,41,48.9,6.166667,1.96
+ Praye ,PRAYE ,54116,54434,41,48.433333,6.1,1.33
+ Prény ,PRENY ,54530,54435,41,48.983333,6,1.22
+ Preutin-Higny ,PREUTIN HIGNY ,54490,54436,41,49.35,5.8,2.1
+ Pulligny ,PULLIGNY ,54160,54437,41,48.55,6.15,1.14
+ Pulney ,PULNEY ,54115,54438,41,48.4,6.033333,1.45
+ Pulnoy ,PULNOY ,54420,54439,41,48.7,6.266667,0.46
+ Puxe ,PUXE ,54800,54440,41,49.15,5.8,1.35
+ Puxieux ,PUXIEUX ,54800,54441,41,49.083333,5.883333,1.1
+ Quévilloncourt ,QUEVILLONCOURT ,54330,54442,41,48.466667,6.1,1.2
+ Raon-lès-Leau ,RAON LES LEAU ,54540,54443,41,48.508333,7.1,-1
+ Raucourt ,RAUCOURT ,54610,54444,41,48.933333,6.216667,0.98
+ Raville-sur-Sânon ,RAVILLE SUR SANON ,54370,54445,41,48.65,6.5,1.21
+ Réchicourt-la-Petite ,RECHICOURT LA PETITE ,54370,54446,41,48.716667,6.566667,1.45
+ Réclonville ,RECLONVILLE ,54450,54447,41,48.533333,6.733333,2.05
+ Rehainviller ,REHAINVILLER ,54300,54449,41,48.566667,6.466667,1.1
+ Reherrey ,REHERREY ,54120,54450,41,48.516667,6.766667,2.17
+ Réhon ,REHON ,54430,54451,41,49.5,5.75,2.66
+ Reillon ,REILLON ,54450,54452,41,48.6,6.75,2.11
+ Rembercourt-sur-Mad ,REMBERCOURT SUR MAD ,54470,54453,41,48.983333,5.9,1.02
+ Remenoville ,REMENOVILLE ,54830,54455,41,48.466667,6.466667,1.2
+ Réméréville ,REMEREVILLE ,54110,54456,41,48.7,6.383333,1.25
+ Repaix ,REPAIX ,54450,54458,41,48.616667,6.833333,2.41
+ Richardménil ,RICHARDMENIL ,54630,54459,41,48.6,6.166667,1
+ Rogéville ,ROGEVILLE ,54380,54460,41,48.816667,5.983333,1.23
+ Romain ,ROMAIN ,54360,54461,41,48.516667,6.366667,1.01
+ Rosières-aux-Salines ,ROSIERES AUX SALINES ,54110,54462,41,48.6,6.333333,1.34
+ Rosières-en-Haye ,ROSIERES EN HAYE ,54385,54463,41,48.783333,6,2.22
+ Rouves ,ROUVES ,54610,54464,41,48.9,6.2,0.68
+ Roville-devant-Bayon ,ROVILLE DEVANT BAYON ,54290,54465,41,48.466667,6.283333,1.2
+ Royaumeix ,ROYAUMEIX ,54200,54466,41,48.783333,5.866667,1.12
+ Rozelieures ,ROZELIEURES ,54290,54467,41,48.45,6.433333,1.81
+ Saffais ,SAFFAIS ,54210,54468,41,48.55,6.316667,1.64
+ Saint-Baussant ,SAINT BAUSSANT ,54470,54470,41,48.9,5.8,1.3
+ Saint-Boingt ,SAINT BOINGT ,54290,54471,41,48.433333,6.433333,1.89
+ Saint-Clément ,SAINT CLEMENT ,54950,54472,41,48.533333,6.6,1.57
+ Saint-Firmin ,SAINT FIRMIN ,54930,54473,41,48.416667,6.133333,1.44
+ Sainte-Geneviève ,SAINTE GENEVIEVE ,54700,54474,41,48.866667,6.116667,1.31
+ Saint-Germain ,SAINT GERMAIN ,54290,54475,41,48.433333,6.333333,1.33
+ Saint-Jean-lès-Longuyon ,SAINT JEAN LES LONGUYON,54260,54476,41,49.45,5.466667,2.5
+ Saint-Julien-lès-Gorze ,SAINT JULIEN LES GORZE,54470,54477,41,49.016667,5.9,1.41
+ Saint-Marcel ,SAINT MARCEL ,54800,54478,41,49.116667,5.95,1.51
+ Saint-Mard ,SAINT MARD ,54290,54479,41,48.5,6.3,1.08
+ Saint-Maurice-aux-Forges ,SAINT MAURICE AUX FORGES,54540,54481,41,48.516667,6.85,2.47
+ Saint-Max ,SAINT MAX ,54130,54482,41,48.7,6.216667,1
+ Saint-Nicolas-de-Port ,SAINT NICOLAS DE PORT,54210,54483,41,48.633333,6.3,1.52
+ Sainte-Pôle ,SAINTE POLE ,54540,54484,41,48.516667,6.816667,2.35
+ Saint-Pancré ,SAINT PANCRE ,54730,54485,41,49.533333,5.65,2.79
+ Saint-Rémy-aux Bois ,SAINT REMY AUX BOIS,54290,54487,41,48.416667,6.4,1.52
+ Saint-Sauveur ,SAINT SAUVEUR ,54480,54488,41,48.533333,6.983333,2.95
+ Saint-Supplet ,SAINT SUPPLET ,54620,54489,41,49.383333,5.733333,2.23
+ Saizerais ,SAIZERAIS ,54380,54490,41,48.8,6.05,0.62
+ Sanzey ,SANZEY ,54200,54492,41,48.766667,5.833333,1.18
+ Saulnes ,SAULNES ,54650,54493,41,49.533333,5.816667,2.79
+ Saulxerotte ,SAULXEROTTE ,54115,54494,41,48.466667,5.95,1.2
+ Saulxures-lès-Nancy ,SAULXURES LES NANCY ,54420,54495,41,48.683333,6.25,1.1
+ Saulxures-lès-Vannes ,SAULXURES LES VANNES ,54170,54496,41,48.533333,5.8,1.67
+ Saxon-Sion ,SAXON SION ,54330,54497,41,48.433333,6.083333,1.33
+ Seichamps ,SEICHAMPS ,54280,54498,41,48.716667,6.266667,1.91
+ Seicheprey ,SEICHEPREY ,54470,54499,41,48.866667,5.8,1.3
+ Selaincourt ,SELAINCOURT ,54170,54500,41,48.5,5.966667,1.08
+ Séranville ,SERANVILLE ,54830,54501,41,48.466667,6.516667,1.27
+ Serres ,SERRES ,54370,54502,41,48.683333,6.466667,1.1
+ Serrières ,SERRIERES ,54610,54503,41,48.85,6.183333,0.97
+ Serrouville ,SERROUVILLE ,54560,54504,41,49.4,5.883333,2.29
+ Sexey-aux-Forges ,SEXEY AUX FORGES ,54550,54505,41,48.616667,6.05,1.48
+ Sexey-les Bois ,SEXEY LES BOIS ,54840,54506,41,48.716667,6.016667,1.08
+ Sionviller ,SIONVILLER ,54300,54507,41,48.633333,6.533333,1.33
+ Sivry ,SIVRY ,54610,54508,41,48.833333,6.2,0.94
+ Sommerviller ,SOMMERVILLER ,54110,54509,41,48.633333,6.383333,0.8
+ Sornéville ,SORNEVILLE ,54280,54510,41,48.75,6.416667,1.32
+ Sponville ,SPONVILLE ,54800,54511,41,49.066667,5.833333,1.21
+ Tanconville ,TANCONVILLE ,54480,54512,41,48.6,6.933333,2.77
+ Tantonville ,TANTONVILLE ,54116,54513,41,48.466667,6.133333,1.2
+ Tellancourt ,TELLANCOURT ,54260,54514,41,49.5,5.633333,2.66
+ Thelod ,THELOD ,54330,54515,41,48.55,6.05,1.55
+ They-sous-Vaudémont ,THEY SOUS VAUDEMONT ,54930,54516,41,48.4,6.066667,1.45
+ Thézey-Saint-Martin ,THEZEY SAINT MARTIN ,54610,54517,41,48.9,6.3,1.19
+ Thiaville-sur-Meurthe ,THIAVILLE SUR MEURTHE ,54120,54519,41,48.416667,6.8,2.29
+ Thiébauménil ,THIEBAUMENIL ,54300,54520,41,48.583333,6.616667,1.63
+ Thil ,THIL ,54880,54521,41,49.466667,5.9,2.54
+ Thorey-Lyautey ,THOREY LYAUTEY ,54115,54522,41,48.45,6.033333,1.29
+ Thuilley-aux-Groseilles ,THUILLEY AUX GROSEILLES ,54170,54523,41,48.566667,5.966667,1
+ Thumeréville ,THUMEREVILLE ,54800,54524,41,49.2,5.8,1.54
+ Tiercelet ,TIERCELET ,54190,54525,41,49.466667,5.883333,2.54
+ Tomblaine ,TOMBLAINE ,54510,54526,41,48.683333,6.216667,1
+ Tonnoy ,TONNOY ,54210,54527,41,48.55,6.25,1.11
+ Toul ,TOUL ,54200,54528,41,48.683333,5.9,0.94
+ Tramont-Émy ,TRAMONT EMY ,54115,54529,41,48.4,5.95,1.45
+ Tramont-Lassus ,TRAMONT LASSUS ,54115,54530,41,48.4,5.966667,1.45
+ Tramont-Saint-André ,TRAMONT SAINT ANDRE ,54115,54531,41,48.4,5.933333,1.45
+ Tremblecourt ,TREMBLECOURT ,54385,54532,41,48.8,5.933333,0.82
+ Trieux ,TRIEUX ,54750,54533,41,49.333333,5.933333,2.04
+ Trondes ,TRONDES ,54570,54534,41,48.716667,5.766667,1.42
+ Tronville ,TRONVILLE ,54800,54535,41,49.083333,5.916667,1.36
+ Tucquegnieux ,TUCQUEGNIEUX ,54640,54536,41,49.3,5.883333,1.92
+ Ugny ,UGNY ,54870,54537,41,49.466667,5.7,2.54
+ Uruffe ,URUFFE ,54112,54538,41,48.566667,5.75,1.48
+ Vacqueville ,VACQUEVILLE ,54540,54539,41,48.483333,6.816667,2.35
+ Val-et-Châtillon ,VAL ET CHATILLON ,54480,54540,41,48.566667,6.966667,2.89
+ Valhey ,VALHEY ,54370,54541,41,48.683333,6.5,1.21
+ Valleroy ,VALLEROY ,54910,54542,41,49.2,5.916667,1.54
+ Vallois ,VALLOIS ,54830,54543,41,48.466667,6.55,1.66
+ Vandelainville ,VANDELAINVILLE ,54890,54544,41,49.016667,5.966667,0.86
+ Vandeléville ,VANDELEVILLE ,54115,54545,41,48.433333,6,1.33
+ Vandières ,VANDIERES ,54121,54546,41,48.95,6.033333,0.61
+ Vandoeuvre-lès-Nancy ,VANDOEUVRE LES NANCY ,54500,54547,41,48.65,6.183333,0.52
+ Vannes-le-Châtel ,VANNES LE CHATEL ,54112,54548,41,48.55,5.783333,1.36
+ Varangéville ,VARANGEVILLE ,54110,54549,41,48.633333,6.316667,1.25
+ Vathiménil ,VATHIMENIL ,54122,54550,41,48.5,6.616667,1.63
+ Vaucourt ,VAUCOURT ,54370,54551,41,48.666667,6.7,1.93
+ Vaudémont ,VAUDEMONT ,54330,54552,41,48.416667,6.05,1.7
+ Vaudeville ,VAUDEVILLE ,54740,54553,41,48.466667,6.2,1.2
+ Vaudigny ,VAUDIGNY ,54740,54554,41,48.433333,6.2,1.33
+ Vaxainville ,VAXAINVILLE ,54120,54555,41,48.516667,6.75,2.11
+ Vého ,VEHO ,54450,54556,41,48.6,6.716667,1.99
+ Velaine-en-Haye ,VELAINE EN HAYE ,54840,54557,41,48.7,6.016667,0.88
+ Velaine-sous-Amance ,VELAINE SOUS AMANCE ,54280,54558,41,48.716667,6.316667,0.97
+ Velle-sur-Moselle ,VELLE SUR MOSELLE ,54290,54559,41,48.533333,6.283333,1.43
+ Veney ,VENEY ,54540,54560,41,48.466667,6.816667,2.35
+ Vennezey ,VENNEZEY ,54830,54561,41,48.45,6.466667,1.26
+ Verdenal ,VERDENAL ,54450,54562,41,48.583333,6.816667,2.35
+ Vézelise ,VEZELISE ,54330,54563,41,48.483333,6.083333,1.14
+ Viéville-en-Haye ,VIEVILLE EN HAYE ,54470,54564,41,48.933333,5.933333,1.01
+ Vigneulles ,VIGNEULLES ,54360,54565,41,48.566667,6.333333,1.82
+ Vilcey-sur-Trey ,VILCEY SUR TREY ,54700,54566,41,48.933333,5.983333,1.71
+ Villacourt ,VILLACOURT ,54290,54567,41,48.45,6.35,1.26
+ Ville-au-Montois ,VILLE AU MONTOIS ,54620,54568,41,49.416667,5.783333,2.35
+ Ville-au-Val ,VILLE AU VAL ,54380,54569,41,48.85,6.116667,1.22
+ Villecey-sur-Mad ,VILLECEY SUR MAD ,54890,54570,41,49,5.966667,0.79
+ Ville-en-Vermois ,VILLE EN VERMOIS ,54210,54571,41,48.616667,6.25,0.95
+ Ville-Houdlémont ,VILLE HOUDLEMONT ,54730,54572,41,49.55,5.65,2.85
+ Villers-en-Haye ,VILLERS EN HAYE ,54380,54573,41,48.833333,6.016667,0.59
+ Villers-la-Chèvre ,VILLERS LA CHEVRE ,54870,54574,41,49.5,5.7,2.66
+ Villers-la-Montagne ,VILLERS LA MONTAGNE ,54920,54575,41,49.466667,5.816667,2.54
+ Villers-le-Rond ,VILLERS LE ROND ,54260,54576,41,49.466667,5.483333,2.54
+ Villers-lès-Moivrons ,VILLERS LES MOIVRONS ,54760,54577,41,48.816667,6.25,0.63
+ Villers-lès-Nancy ,VILLERS LES NANCY ,54600,54578,41,48.666667,6.15,0.45
+ Villers-sous-Prény ,VILLERS SOUS PRENY ,54700,54579,41,48.95,6,1.52
+ Villerupt ,VILLERUPT ,54190,54580,41,49.466667,5.933333,2.54
+ Ville-sur-Yron ,VILLE SUR YRON ,54800,54581,41,49.116667,5.866667,1.23
+ Villette ,VILLETTE ,54260,54582,41,49.466667,5.55,2.54
+ Villey-le-Sec ,VILLEY LE SEC ,54840,54583,41,48.666667,5.983333,1.31
+ Villey-Saint-Étienne ,VILLEY SAINT ETIENNE ,54200,54584,41,48.733333,5.983333,1.71
+ Virecourt ,VIRECOURT ,54290,54585,41,48.466667,6.316667,1.2
+ Viterne ,VITERNE ,54123,54586,41,48.583333,6.033333,0.77
+ Vitrey ,VITREY ,54330,54587,41,48.483333,6.05,1.14
+ Vitrimont ,VITRIMONT ,54300,54588,41,48.6,6.433333,1.6
+ Vittonville ,VITTONVILLE ,54700,54589,41,48.966667,6.05,1.13
+ Viviers-sur-Chiers ,VIVIERS SUR CHIERS ,54260,54590,41,49.466667,5.633333,2.54
+ Voinémont ,VOINEMONT ,54134,54591,41,48.516667,6.166667,1.01
+ Vroncourt ,VRONCOURT ,54330,54592,41,48.466667,6.083333,1.2
+ Waville ,WAVILLE ,54890,54593,41,49,5.95,0.79
+ Xammes ,XAMMES ,54470,54594,41,48.966667,5.85,1.12
+ Xermaménil ,XERMAMENIL ,54300,54595,41,48.533333,6.466667,1.38
+ Xeuilley ,XEUILLEY ,54990,54596,41,48.566667,6.1,0.83
+ Xirocourt ,XIROCOURT ,54740,54597,41,48.433333,6.166667,1.33
+ Xivry-Circourt ,XIVRY CIRCOURT ,54490,54598,41,49.35,5.766667,2.1
+ Xonville ,XONVILLE ,54800,54599,41,49.05,5.85,1.43
+ Xousse ,XOUSSE ,54370,54600,41,48.658333,6.708333,-1
+ Xures ,XURES ,54370,54601,41,48.683333,6.65,1.75
+ Boudrezy ,BOUDREZY ,54560,54906,41,49.366667,5.8,2.16
+ Braumont ,BRAUMONT ,54260,54907,41,49.466667,5.633333,2.54
+ Cantebonne ,CANTEBONNE ,54190,54908,41,49.466667,5.933333,2.54
+ Droitaumont ,DROITAUMONT ,54800,54910,41,49.15,5.883333,1.35
+ Fermont ,FERMONT ,54870,54911,41,49.466667,5.666667,2.54
+ Flabeuville ,FLABEUVILLE ,54260,54912,41,49.466667,5.533333,2.54
+ La Madeleine ,LA MADELEINE ,54410,54919,41,48.65,6.25,1
+ Revemont ,REVEMONT ,54260,54924,41,49.466667,5.633333,2.54
+ Villancy ,VILLANCY ,54260,54927,41,49.483333,5.6,2.6
+ Abainville ,ABAINVILLE ,55130,55001,41,48.533333,5.5,1.94
+ Ailly-sur-Meuse ,AILLY SUR MEUSE ,55300,55003,41,48.866667,5.55,0.84
+ Aincreville ,AINCREVILLE ,55110,55004,41,49.366667,5.116667,1.48
+ Amanty ,AMANTY ,55130,55005,41,48.516667,5.616667,2.01
+ Amblaincourt ,AMBLAINCOURT ,55250,55006,41,48.966667,5.216667,1.25
+ Ambly-sur-Meuse ,AMBLY SUR MEUSE ,55300,55007,41,49.016667,5.45,1.73
+ Amel-sur-l'Étang ,AMEL SUR L ETANG,55230,55008,41,49.266667,5.65,1.37
+ Ancemont ,ANCEMONT ,55320,55009,41,49.066667,5.416667,0.92
+ Andernay ,ANDERNAY ,55800,55011,41,48.8,4.95,2.3
+ Apremont-la-Forêt ,APREMONT LA FORET ,55300,55012,41,48.85,5.633333,1.28
+ Aubréville ,AUBREVILLE ,55120,55014,41,49.15,5.083333,1.6
+ Aulnois-en-Perthois ,AULNOIS EN PERTHOIS ,55170,55015,41,48.633333,5.133333,1.53
+ Aulnois-sous-Vertuzey ,AULNOIS SOUS VERTUZEY ,55200,55016,41,48.75,5.666667,1.46
+ Autrecourt-sur-Aire ,AUTRECOURT SUR AIRE ,55120,55017,41,49.033333,5.133333,1.34
+ Autréville-Saint-Lambert ,AUTREVILLE SAINT LAMBERT ,55700,55018,41,49.566667,5.116667,2.3
+ Auzécourt ,AUZECOURT ,55800,55019,41,48.883333,4.983333,2.13
+ Auzéville-en-Argonne ,AUZEVILLE EN ARGONNE ,55120,55020,41,49.1,5.1,1.52
+ Avillers-Sainte-Croix ,AVILLERS SAINTE CROIX ,55210,55021,41,49.033333,5.7,1.63
+ Avioth ,AVIOTH ,55600,55022,41,49.566667,5.4,2.3
+ Avocourt ,AVOCOURT ,55270,55023,41,49.2,5.15,1.25
+ Azannes-et-Soumazannes ,AZANNES ET SOUMAZANNES ,55150,55024,41,49.3,5.466667,1.2
+ Baâlon ,BAALON ,55700,55025,41,49.483333,5.25,1.96
+ Bannoncourt ,BANNONCOURT ,55300,55027,41,48.95,5.5,0.93
+ Bantheville ,BANTHEVILLE ,55110,55028,41,49.35,5.083333,1.6
+ Bar-le-Duc ,BAR LE DUC ,55000,55029,41,48.783333,5.166667,1.17
+ Baudignécourt ,BAUDIGNECOURT ,55130,55030,41,48.566667,5.466667,1.8
+ Baudonvilliers ,BAUDONVILLIERS ,55170,55031,41,48.683333,5.016667,1.95
+ Baudrémont ,BAUDREMONT ,55260,55032,41,48.833333,5.383333,0.86
+ Baulny ,BAULNY ,55270,55033,41,49.266667,5.016667,1.95
+ Bazeilles-sur-Othain ,BAZEILLES SUR OTHAIN ,55600,55034,41,49.5,5.433333,2.03
+ Bazincourt-sur-Saulx ,BAZINCOURT SUR SAULX ,55170,55035,41,48.683333,5.133333,1.34
+ Beauclair ,BEAUCLAIR ,55700,55036,41,49.466667,5.116667,1.89
+ Beaufort-en-Argonne ,BEAUFORT EN ARGONNE ,55700,55037,41,49.466667,5.116667,1.89
+ Beaulieu-en-Argonne ,BEAULIEU EN ARGONNE ,55250,55038,41,49.033333,5.066667,1.69
+ Behonne ,BEHONNE ,55000,55041,41,48.8,5.183333,1.08
+ Belleray ,BELLERAY ,55100,55042,41,49.133333,5.4,1.13
+ Belleville-sur-Meuse ,BELLEVILLE SUR MEUSE ,55430,55043,41,49.183333,5.383333,0.73
+ Belrain ,BELRAIN ,55260,55044,41,48.866667,5.316667,0.57
+ Belrupt-en-Verdunois ,BELRUPT EN VERDUNOIS ,55100,55045,41,49.133333,5.433333,1.51
+ Beney-en-Woëvre ,BENEY EN WOEVRE ,55210,55046,41,48.966667,5.833333,2.33
+ Béthelainville ,BETHELAINVILLE ,55100,55047,41,49.166667,5.233333,1.14
+ Béthincourt ,BETHINCOURT ,55270,55048,41,49.25,5.233333,1.97
+ Beurey-sur-Saulx ,BEUREY SUR SAULX ,55000,55049,41,48.75,5.033333,1.87
+ Biencourt-sur-Orge ,BIENCOURT SUR ORGE ,55290,55051,41,48.566667,5.35,1.8
+ Billy-sous-les-Côtes ,BILLY SOUS LES COTES,55210,55052,41,49.016667,5.683333,1.54
+ Billy-sous-Mangiennes ,BILLY SOUS MANGIENNES ,55230,55053,41,49.333333,5.583333,1.34
+ Bislée ,BISLEE ,55300,55054,41,48.866667,5.5,0.93
+ Blanzée ,BLANZEE ,55400,55055,41,49.166667,5.533333,0.91
+ Blercourt ,BLERCOURT ,55120,55056,41,49.1,5.233333,1.66
+ Boinville-en-Woëvre ,BOINVILLE EN WOEVRE ,55400,55057,41,49.183333,5.666667,1.46
+ Boncourt-sur-Meuse ,BONCOURT SUR MEUSE ,55200,55058,41,48.8,5.566667,0.93
+ Bonnet ,BONNET ,55130,55059,41,48.516667,5.433333,2.01
+ Le Bouchon-sur-Saulx ,LE BOUCHON SUR SAULX,55500,55061,41,48.616667,5.233333,1.6
+ Bouconville-sur-Madt ,BOUCONVILLE SUR MADT ,55300,55062,41,48.85,5.716667,1.72
+ Bouligny ,BOULIGNY ,55240,55063,41,49.283333,5.75,1.89
+ Bouquemont ,BOUQUEMONT ,55300,55064,41,48.983333,5.45,1.54
+ Boureuilles ,BOUREUILLES ,55270,55065,41,49.2,5.05,1.78
+ Bovée-sur-Barboure ,BOVEE SUR BARBOURE ,55190,55066,41,48.65,5.516667,1.46
+ Boviolles ,BOVIOLLES ,55500,55067,41,48.65,5.416667,1.46
+ Brabant-en-Argonne ,BRABANT EN ARGONNE ,55120,55068,41,49.116667,5.133333,1.34
+ Brabant-le-Roi ,BRABANT LE ROI ,55800,55069,41,48.85,4.983333,2.13
+ Brabant-sur-Meuse ,BRABANT SUR MEUSE ,55100,55070,41,49.266667,5.316667,1.1
+ Brandeville ,BRANDEVILLE ,55150,55071,41,49.383333,5.3,1.86
+ Braquis ,BRAQUIS ,55400,55072,41,49.15,5.616667,1.19
+ Bras-sur-Meuse ,BRAS SUR MEUSE ,55100,55073,41,49.216667,5.383333,0.89
+ Brasseitte ,BRASSEITTE ,55300,55074,41,48.85,5.516667,0.88
+ Brauvilliers ,BRAUVILLIERS ,55170,55075,41,48.583333,5.15,1.74
+ Bréhéville ,BREHEVILLE ,55150,55076,41,49.383333,5.333333,1.55
+ Breux ,BREUX ,55600,55077,41,49.6,5.383333,2.44
+ Brieulles-sur-Meuse ,BRIEULLES SUR MEUSE ,55110,55078,41,49.333333,5.183333,1.34
+ Brillon-en-Barrois ,BRILLON EN BARROIS ,55000,55079,41,48.716667,5.1,1.52
+ Brixey-aux-Chanoines ,BRIXEY AUX CHANOINES ,55140,55080,41,48.466667,5.716667,2.22
+ Brizeaux ,BRIZEAUX ,55250,55081,41,49,5.05,1.78
+ Brocourt-en-Argonne ,BROCOURT EN ARGONNE ,55120,55082,41,49.116667,5.166667,1.17
+ Brouennes ,BROUENNES ,55700,55083,41,49.516667,5.25,2.09
+ Broussey-en-Blois ,BROUSSEY EN BLOIS ,55190,55084,41,48.633333,5.55,1.53
+ Bulainville ,BULAINVILLE ,55250,55086,41,49,5.183333,1.08
+ Burey-en-Vaux ,BUREY EN VAUX ,55140,55088,41,48.566667,5.666667,1.8
+ Burey-la-Côte ,BUREY LA COTE ,55140,55089,41,48.5,5.7,2.08
+ Bussy-la-Côte ,BUSSY LA COTE ,55000,55090,41,48.816667,5.083333,1.6
+ Butgnéville ,BUTGNEVILLE ,55160,55091,41,49.083333,5.716667,1.72
+ Buxerulles ,BUXERULLES ,55300,55092,41,48.9,5.666667,1.46
+ Buxières-sous-les-Côtes ,BUXIERES SOUS LES COTES,55300,55093,41,48.916667,5.666667,1.46
+ Cesse ,CESSE ,55700,55095,41,49.516667,5.166667,2.09
+ Chaillon ,CHAILLON ,55210,55096,41,48.95,5.633333,1.55
+ Chalaines ,CHALAINES ,55140,55097,41,48.6,5.683333,1.67
+ Champlon ,CHAMPLON ,55160,55098,41,49.083333,5.65,1.37
+ Champneuville ,CHAMPNEUVILLE ,55100,55099,41,49.233333,5.316667,0.93
+ Champougny ,CHAMPOUGNY ,55140,55100,41,48.55,5.7,1.87
+ Chardogne ,CHARDOGNE ,55000,55101,41,48.833333,5.116667,1.43
+ Charny-sur-Meuse ,CHARNY SUR MEUSE ,55100,55102,41,49.2,5.366667,0.79
+ Charpentry ,CHARPENTRY ,55270,55103,41,49.266667,5.033333,1.87
+ Chassey-Beaupré ,CHASSEY BEAUPRE ,55130,55104,41,48.466667,5.433333,2.22
+ Châtillon-sous-les-Côtes ,CHATILLON SOUS LES COTES,55400,55105,41,49.15,5.533333,1.02
+ Chattancourt ,CHATTANCOURT ,55100,55106,41,49.216667,5.266667,0.86
+ Chaumont-sur-Aire ,CHAUMONT SUR AIRE ,55260,55108,41,48.933333,5.25,1.54
+ Chauvency-le-Château ,CHAUVENCY LE CHATEAU ,55600,55109,41,49.516667,5.3,2.09
+ Chauvency-Saint-Hubert ,CHAUVENCY SAINT HUBERT ,55600,55110,41,49.533333,5.3,2.16
+ Chauvoncourt ,CHAUVONCOURT ,55300,55111,41,48.9,5.516667,0.67
+ Chennevières ,CHENNEVIERES ,55500,55112,41,48.666667,5.4,1.39
+ Cheppy ,CHEPPY ,55270,55113,41,49.233333,5.066667,1.69
+ Cierges-sous-Montfaucon ,CIERGES SOUS MONTFAUCON ,55270,55115,41,49.3,5.083333,1.6
+ Le Claon ,LE CLAON ,55120,55116,41,49.133333,4.966667,2.22
+ Clermont-en-Argonne ,CLERMONT EN ARGONNE ,55120,55117,41,49.1,5.066667,1.69
+ Cléry-Grand ,CLERY GRAND ,55110,55118,41,49.366667,5.15,1.48
+ Cléry-Petit ,CLERY PETIT ,55110,55119,41,49.366667,5.183333,1.48
+ Combles-en-Barrois ,COMBLES EN BARROIS ,55000,55120,41,48.75,5.116667,1.43
+ Combres-sous-les-Côtes ,COMBRES SOUS LES COTES,55160,55121,41,49.05,5.633333,1.28
+ Commercy ,COMMERCY ,55200,55122,41,48.75,5.583333,1.05
+ Consenvoye ,CONSENVOYE ,55110,55124,41,49.283333,5.283333,1.59
+ Contrisson ,CONTRISSON ,55800,55125,41,48.8,4.95,2.3
+ Corniéville ,CORNIEVILLE ,55200,55126,41,48.766667,5.7,1.63
+ Courcelles-en-Barrois ,COURCELLES EN BARROIS ,55260,55127,41,48.816667,5.45,1.74
+ Courcelles-sur-Aire ,COURCELLES SUR AIRE ,55260,55128,41,48.933333,5.25,1.54
+ Courouvre ,COUROUVRE ,55260,55129,41,48.933333,5.366667,0.81
+ Cousances-aux-Bois ,COUSANCES AUX BOIS ,55500,55131,41,48.783333,5.433333,1.62
+ Couvertpuis ,COUVERTPUIS ,55290,55133,41,48.583333,5.3,1.74
+ Couvonges ,COUVONGES ,55800,55134,41,48.783333,5.033333,1.87
+ Crépion ,CREPION ,55150,55135,41,49.3,5.383333,1.2
+ Creuë ,CREUE ,55210,55136,41,48.966667,5.666667,1.46
+ Cuisy ,CUISY ,55270,55137,41,49.266667,5.183333,1.26
+ Culey ,CULEY ,55000,55138,41,48.75,5.266667,1.08
+ Cunel ,CUNEL ,55110,55140,41,49.333333,5.116667,1.43
+ Dagonville ,DAGONVILLE ,55500,55141,41,48.783333,5.4,1.4
+ Dainville-Bertheléville ,DAINVILLE BERTHELEVILLE ,55130,55142,41,48.433333,5.516667,2.35
+ Damloup ,DAMLOUP ,55400,55143,41,49.2,5.5,1.26
+ Dammarie-sur-Saulx ,DAMMARIE SUR SAULX ,55500,55144,41,48.6,5.233333,1.67
+ Damvillers ,DAMVILLERS ,55150,55145,41,49.333333,5.4,1.34
+ Dannevoux ,DANNEVOUX ,55110,55146,41,49.3,5.233333,1.2
+ Darmont ,DARMONT ,55400,55147,41,49.183333,5.7,1.63
+ Delut ,DELUT ,55150,55149,41,49.4,5.433333,1.61
+ Demange-aux-Eaux ,DEMANGE AUX EAUX ,55130,55150,41,48.583333,5.466667,1.74
+ Deuxnouds-aux-Bois ,DEUXNOUDS AUX BOIS ,55300,55151,41,48.983333,5.616667,1.19
+ Deuxnouds-devant-Beauzée ,DEUXNOUDS DEVANT BEAUZEE ,55250,55152,41,48.983333,5.233333,1.49
+ Dieppe-sous-Douaumont ,DIEPPE SOUS DOUAUMONT ,55400,55153,41,49.216667,5.516667,1.07
+ Dieue-sur-Meuse ,DIEUE SUR MEUSE ,55320,55154,41,49.066667,5.416667,0.92
+ Dombasle-en-Argonne ,DOMBASLE EN ARGONNE ,55120,55155,41,49.133333,5.183333,1.08
+ Dombras ,DOMBRAS ,55150,55156,41,49.383333,5.466667,1.55
+ Dommartin-la-Montagne ,DOMMARTIN LA MONTAGNE ,55160,55157,41,49.033333,5.616667,1.19
+ Dommary-Baroncourt ,DOMMARY BARONCOURT ,55240,55158,41,49.283333,5.7,1.63
+ Dompcevrin ,DOMPCEVRIN ,55300,55159,41,48.933333,5.483333,1.03
+ Dompierre-aux-Bois ,DOMPIERRE AUX BOIS ,55300,55160,41,49,5.583333,1.02
+ Domrémy-aux-Bois ,DOMREMY AUX BOIS ,55500,55161,41,48.733333,5.416667,1.12
+ Domrémy-la-Canne ,DOMREMY LA CANNE ,55240,55162,41,49.3,5.7,1.63
+ Doncourt-aux-Templiers ,DONCOURT AUX TEMPLIERS ,55160,55163,41,49.066667,5.733333,1.81
+ Doulcon ,DOULCON ,55110,55165,41,49.366667,5.166667,1.48
+ Dugny-sur-Meuse ,DUGNY SUR MEUSE ,55100,55166,41,49.1,5.383333,1.26
+ Dun-sur-Meuse ,DUN SUR MEUSE ,55110,55167,41,49.383333,5.183333,1.55
+ Duzey ,DUZEY ,55230,55168,41,49.366667,5.633333,1.48
+ Écouviez ,ECOUVIEZ ,55600,55169,41,49.533333,5.45,2.16
+ Eix ,EIX ,55400,55171,41,49.183333,5.5,1.27
+ Les Éparges ,LES EPARGES ,55160,55172,41,49.05,5.583333,1.37
+ Épiez-sur-Meuse ,EPIEZ SUR MEUSE ,55140,55173,41,48.55,5.633333,1.87
+ Épinonville ,EPINONVILLE ,55270,55174,41,49.283333,5.083333,1.6
+ Érize-la-Brûlée ,ERIZE LA BRULEE ,55260,55175,41,48.85,5.266667,1.19
+ Érize-la-Grande ,ERIZE LA GRANDE ,55260,55176,41,48.9,5.233333,1.6
+ Érize-la-Petite ,ERIZE LA PETITE ,55260,55177,41,48.916667,5.25,1.44
+ Érize-Saint-Dizier ,ERIZE SAINT DIZIER ,55000,55178,41,48.816667,5.283333,1.3
+ Esnes-en-Argonne ,ESNES EN ARGONNE ,55100,55180,41,49.216667,5.216667,1.42
+ Étain ,ETAIN ,55400,55181,41,49.216667,5.633333,1.28
+ Éton ,ETON ,55240,55182,41,49.283333,5.666667,1.47
+ Étraye ,ETRAYE ,55150,55183,41,49.333333,5.383333,1.34
+ Euville ,EUVILLE ,55200,55184,41,48.75,5.616667,1.19
+ Évres ,EVRES ,55250,55185,41,48.983333,5.116667,1.43
+ Flabas ,FLABAS ,55150,55187,41,49.283333,5.4,1.14
+ Flassigny ,FLASSIGNY ,55600,55188,41,49.466667,5.433333,1.89
+ Fleury-sur-Aire ,FLEURY SUR AIRE ,55250,55190,41,49.016667,5.166667,1.17
+ Fontaines-Saint-Clair ,FONTAINES SAINT CLAIR ,55110,55192,41,49.366667,5.233333,-1
+ Forges-sur-Meuse ,FORGES SUR MEUSE ,55110,55193,41,49.266667,5.283333,1.74
+ Foucaucourt-sur-Thabas ,FOUCAUCOURT SUR THABAS ,55250,55194,41,49,5.1,1.52
+ Fouchères-aux-Bois ,FOUCHERES AUX BOIS ,55500,55195,41,48.616667,5.25,1.6
+ Fresnes-au-Mont ,FRESNES AU MONT ,55260,55197,41,48.9,5.433333,1.28
+ Fresnes-en-Woëvre ,FRESNES EN WOEVRE ,55160,55198,41,49.1,5.616667,1.19
+ Froidos ,FROIDOS ,55120,55199,41,49.05,5.116667,1.43
+ Fromeréville-les-Vallons ,FROMEREVILLE LES VALLONS ,55100,55200,41,49.15,5.283333,0.63
+ Fromezey ,FROMEZEY ,55400,55201,41,49.216667,5.583333,1.02
+ Futeau ,FUTEAU ,55120,55202,41,49.083333,5,2.04
+ Génicourt-sous-Condé ,GENICOURT SOUS CONDE ,55000,55203,41,48.866667,5.166667,1.17
+ Génicourt-sur-Meuse ,GENICOURT SUR MEUSE ,55320,55204,41,49.033333,5.433333,0.7
+ Gérauvilliers ,GERAUVILLIERS ,55130,55205,41,48.55,5.566667,1.87
+ Gercourt-et-Drillancourt ,GERCOURT ET DRILLANCOURT ,55110,55206,41,49.283333,5.233333,1.14
+ Géry ,GERY ,55000,55207,41,48.783333,5.3,1.41
+ Gesnes-en-Argonne ,GESNES EN ARGONNE ,55110,55208,41,49.3,5.066667,1.82
+ Gimécourt ,GIMECOURT ,55260,55210,41,48.85,5.366667,0.64
+ Gincrey ,GINCREY ,55400,55211,41,49.25,5.566667,1
+ Girauvoisin ,GIRAUVOISIN ,55200,55212,41,48.8,5.633333,1.28
+ Gironville-sous-les-Côtes ,GIRONVILLE SOUS LES COTES,55200,55213,41,48.8,5.666667,1.46
+ Givrauval ,GIVRAUVAL ,55500,55214,41,48.666667,5.316667,1.39
+ Gondrecourt-le-Château ,GONDRECOURT LE CHATEAU ,55130,55215,41,48.516667,5.5,2.01
+ Gouraincourt ,GOURAINCOURT ,55230,55216,41,49.3,5.65,1.37
+ Goussaincourt ,GOUSSAINCOURT ,55140,55217,41,48.483333,5.7,2.15
+ Grimaucourt-en-Woëvre ,GRIMAUCOURT EN WOEVRE ,55400,55219,41,49.166667,5.55,0.84
+ Grimaucourt-près-Sampigny ,GRIMAUCOURT PRES SAMPIGNY ,55500,55220,41,48.8,5.466667,2.03
+ Guerpont ,GUERPONT ,55000,55221,41,48.733333,5.266667,1.14
+ Gussainville ,GUSSAINVILLE ,55400,55222,41,49.166667,5.683333,1.54
+ Haironville ,HAIRONVILLE ,55000,55224,41,48.683333,5.083333,1.6
+ Halles-sous-les-Côtes ,HALLES SOUS LES COTES,55700,55225,41,49.45,5.116667,1.82
+ Han-lès-Juvigny ,HAN LES JUVIGNY ,55600,55226,41,49.483333,5.333333,1.96
+ Han-devant-Pierrepont ,HAN DEVANT PIERREPONT ,54620,55227,41,49.4,5.7,1.63
+ Han-sur-Meuse ,HAN SUR MEUSE ,55300,55229,41,48.866667,5.533333,0.76
+ Haraumont ,HARAUMONT ,55110,55230,41,49.35,5.266667,1.41
+ Hargeville-sur-Chée ,HARGEVILLE SUR CHEE ,55000,55231,41,48.85,5.183333,1.08
+ Harville ,HARVILLE ,55160,55232,41,49.1,5.733333,1.81
+ Hattonchâtel ,HATTONCHATEL ,55210,55233,41,48.983333,5.7,1.63
+ Hattonville ,HATTONVILLE ,55210,55234,41,48.983333,5.716667,1.72
+ Haucourt-la-Rigole ,HAUCOURT LA RIGOLE ,55230,55235,41,49.316667,5.733333,1.81
+ Haudainville ,HAUDAINVILLE ,55100,55236,41,49.116667,5.416667,1.42
+ Haudiomont ,HAUDIOMONT ,55160,55237,41,49.116667,5.566667,1.5
+ Haumont-lès-Lachaussée ,HAUMONT LES LACHAUSSEE ,55210,55238,41,49.016667,5.816667,2.24
+ Hautecourt-lès-Broville ,HAUTECOURT LES BROVILLE ,55400,55240,41,49.2,5.566667,0.93
+ Heippes ,HEIPPES ,55220,55241,41,49,5.3,0.47
+ Hennemont ,HENNEMONT ,55160,55242,41,49.133333,5.666667,1.46
+ Herbeuville ,HERBEUVILLE ,55210,55243,41,49.05,5.633333,1.63
+ Herméville-en-Woëvre ,HERMEVILLE EN WOEVRE ,55400,55244,41,49.183333,5.583333,1.02
+ Heudicourt-sous-les-Côtes ,HEUDICOURT SOUS LES COTES,55210,55245,41,48.933333,5.7,1.63
+ Hévilliers ,HEVILLIERS ,55290,55246,41,48.6,5.333333,1.67
+ Horville-en-Ornois ,HORVILLE EN ORNOIS ,55130,55247,41,48.5,5.466667,2.08
+ Houdelaincourt ,HOUDELAINCOURT ,55130,55248,41,48.55,5.466667,1.87
+ Houdelaucourt-sur-Othain ,HOUDELAUCOURT SUR OTHAIN ,55230,55249,41,49.316667,5.683333,1.54
+ Inor ,INOR ,55700,55250,41,49.55,5.15,2.23
+ Ippécourt ,IPPECOURT ,55220,55251,41,49.033333,5.2,1.5
+ Iré-le-Sec ,IRE LE SEC ,55600,55252,41,49.483333,5.383333,1.96
+ Les Islettes ,LES ISLETTES ,55120,55253,41,49.1,5,2.04
+ Jametz ,JAMETZ ,55600,55255,41,49.433333,5.383333,1.75
+ Jonville-en-Woëvre ,JONVILLE EN WOEVRE ,55160,55256,41,49.066667,5.783333,2.07
+ Jouy-en-Argonne ,JOUY EN ARGONNE ,55120,55257,41,49.133333,5.216667,1.48
+ Jubécourt ,JUBECOURT ,55120,55259,41,49.083333,5.166667,1.17
+ Julvécourt ,JULVECOURT ,55120,55260,41,49.066667,5.183333,1.13
+ Juvigny-en-Perthois ,JUVIGNY EN PERTHOIS ,55170,55261,41,48.6,5.15,1.67
+ Juvigny-sur-Loison ,JUVIGNY SUR LOISON ,55600,55262,41,49.466667,5.333333,1.89
+ Koeur-la-Grande ,KOEUR LA GRANDE ,55300,55263,41,48.85,5.483333,1.16
+ Koeur-la-Petite ,KOEUR LA PETITE ,55300,55264,41,48.85,5.5,1.02
+ Labeuville ,LABEUVILLE ,55160,55265,41,49.1,5.8,2.16
+ Lachalade ,LACHALADE ,55120,55266,41,49.166667,4.966667,2.22
+ Lachaussée ,LACHAUSSEE ,55210,55267,41,49.033333,5.816667,2.24
+ Lacroix-sur-Meuse ,LACROIX SUR MEUSE ,55300,55268,41,48.966667,5.516667,0.89
+ Lahaymeix ,LAHAYMEIX ,55260,55269,41,48.933333,5.416667,1.26
+ Lahayville ,LAHAYVILLE ,55300,55270,41,48.883333,5.783333,2.08
+ Laheycourt ,LAHEYCOURT ,55800,55271,41,48.883333,5.016667,1.95
+ Laimont ,LAIMONT ,55800,55272,41,48.833333,5.05,1.78
+ Lamarche-en-Woëvre ,LAMARCHE EN WOEVRE ,55210,55273,41,48.95,5.783333,2.07
+ Lamorville ,LAMORVILLE ,55300,55274,41,48.966667,5.583333,1.02
+ Lamouilly ,LAMOUILLY ,55700,55275,41,49.55,5.233333,2.23
+ Laneuville-au-Rupt ,LANEUVILLE AU RUPT ,55190,55278,41,48.7,5.583333,1.26
+ Laneuville-sur-Meuse ,LANEUVILLE SUR MEUSE ,55700,55279,41,49.483333,5.15,1.96
+ Lanhères ,LANHERES ,55400,55280,41,49.2,5.716667,1.72
+ Latour-en-Woëvre ,LATOUR EN WOEVRE ,55160,55281,41,49.083333,5.816667,2.24
+ Lavallée ,LAVALLEE ,55260,55282,41,48.816667,5.333333,0.92
+ Lavignéville ,LAVIGNEVILLE ,55300,55283,41,48.95,5.6,1.11
+ Lavincourt ,LAVINCOURT ,55170,55284,41,48.666667,5.15,1.39
+ Lavoye ,LAVOYE ,55120,55285,41,49.033333,5.133333,1.34
+ Lemmes ,LEMMES ,55220,55286,41,49.066667,5.283333,0.73
+ Lempire-aux-Bois ,LEMPIRE AUX BOIS ,55100,55287,41,49.083333,5.316667,1.22
+ Lérouville ,LEROUVILLE ,55200,55288,41,48.783333,5.55,1
+ Levoncourt ,LEVONCOURT ,55260,55289,41,48.833333,5.35,0.71
+ Lignières-sur-Aire ,LIGNIERES SUR AIRE ,55260,55290,41,48.816667,5.383333,1.05
+ Ligny-en-Barrois ,LIGNY EN BARROIS ,55500,55291,41,48.683333,5.333333,1.33
+ Liny-devant-Dun ,LINY DEVANT DUN ,55110,55292,41,49.35,5.2,1.41
+ Lion-devant-Dun ,LION DEVANT DUN ,55110,55293,41,49.416667,5.216667,1.68
+ Liouville ,LIOUVILLE ,55300,55294,41,48.816667,5.616667,1.19
+ Lisle-en-Barrois ,LISLE EN BARROIS ,55250,55295,41,48.9,5.133333,1.34
+ Lisle-en-Rigault ,LISLE EN RIGAULT ,55000,55296,41,48.716667,5.05,1.78
+ Lissey ,LISSEY ,55150,55297,41,49.366667,5.35,1.48
+ Loison ,LOISON ,55230,55299,41,49.316667,5.616667,1.27
+ Longeaux ,LONGEAUX ,55500,55300,41,48.65,5.333333,1.46
+ Longchamps-sur-Aire ,LONGCHAMPS SUR AIRE ,55260,55301,41,48.916667,5.316667,0.65
+ Longeville-en-Barrois ,LONGEVILLE EN BARROIS ,55000,55302,41,48.733333,5.216667,1.12
+ Loupmont ,LOUPMONT ,55300,55303,41,48.866667,5.666667,1.46
+ Louppy-le-Château ,LOUPPY LE CHATEAU ,55800,55304,41,48.866667,5.066667,1.69
+ Louppy-sur-Chée ,LOUPPY SUR CHEE ,55000,55305,41,48.866667,5.133333,1.34
+ Louppy-sur-Loison ,LOUPPY SUR LOISON ,55600,55306,41,49.45,5.35,1.82
+ Loxéville ,LOXEVILLE ,55500,55308,41,48.75,5.4,1.07
+ Luméville-en-Ornois ,LUMEVILLE EN ORNOIS ,55130,55309,41,48.466667,5.433333,2.22
+ Luzy-Saint-Martin ,LUZY SAINT MARTIN ,55700,55310,41,49.533333,5.15,2.16
+ Maizeray ,MAIZERAY ,55160,55311,41,49.1,5.7,1.63
+ Maizey ,MAIZEY ,55300,55312,41,48.916667,5.516667,0.67
+ Malancourt ,MALANCOURT ,55270,55313,41,49.233333,5.183333,1.27
+ Malaumont ,MALAUMONT ,55200,55314,41,48.783333,5.5,1.8
+ Mandres-en-Barrois ,MANDRES EN BARROIS ,55290,55315,41,48.5,5.383333,2.08
+ Mangiennes ,MANGIENNES ,55150,55316,41,49.35,5.533333,1.58
+ Manheulles ,MANHEULLES ,55160,55317,41,49.116667,5.6,1.11
+ Les Marats ,LES MARATS ,55000,55318,41,48.883333,5.216667,1.27
+ Marbotte ,MARBOTTE ,55300,55319,41,48.833333,5.583333,1.02
+ Marchéville-en-Woëvre ,MARCHEVILLE EN WOEVRE ,55160,55320,41,49.083333,5.683333,1.54
+ Marre ,MARRE ,55100,55321,41,49.2,5.3,0.79
+ Marson-sur-Barboure ,MARSON SUR BARBOURE ,55190,55322,41,48.633333,5.45,1.6
+ Martincourt-sur-Meuse ,MARTINCOURT SUR MEUSE ,55700,55323,41,49.533333,5.166667,2.16
+ Marville ,MARVILLE ,55600,55324,41,49.45,5.45,1.82
+ Maucourt-sur-Orne ,MAUCOURT SUR ORNE ,55400,55325,41,49.25,5.5,1.44
+ Maulan ,MAULAN ,55500,55326,41,48.666667,5.25,1.39
+ Mauvages ,MAUVAGES ,55190,55327,41,48.6,5.55,1.67
+ Maxey-sur-Vaise ,MAXEY SUR VAISE ,55140,55328,41,48.533333,5.666667,1.94
+ Mécrin ,MECRIN ,55300,55329,41,48.816667,5.533333,1.05
+ Méligny-le-Grand ,MELIGNY LE GRAND ,55190,55330,41,48.683333,5.483333,1.33
+ Méligny-le-Petit ,MELIGNY LE PETIT ,55190,55331,41,48.666667,5.466667,1.39
+ Menaucourt ,MENAUCOURT ,55500,55332,41,48.65,5.35,1.46
+ Ménil-aux-Bois ,MENIL AUX BOIS ,55260,55333,41,48.8,5.45,1.87
+ Ménil-la-Horgne ,MENIL LA HORGNE ,55190,55334,41,48.7,5.533333,1.26
+ Ménil-sur-Saulx ,MENIL SUR SAULX ,55500,55335,41,48.633333,5.216667,1.54
+ Merles-sur-Loison ,MERLES SUR LOISON ,55150,55336,41,49.383333,5.483333,1.55
+ Mesnil-sous-les-Côtes ,MESNIL SOUS LES COTES,55160,55337,41,49.083333,5.583333,1.22
+ Milly-sur-Bradon ,MILLY SUR BRADON ,55110,55338,41,49.4,5.2,1.61
+ Mogeville ,MOGEVILLE ,55400,55339,41,49.233333,5.533333,0.95
+ Mognéville ,MOGNEVILLE ,55800,55340,41,48.783333,5,2.04
+ Mondrecourt ,MONDRECOURT ,55220,55342,41,48.983333,5.283333,0.61
+ Montblainville ,MONTBLAINVILLE ,55270,55343,41,49.25,5.016667,1.95
+ Mont-devant-Sassey ,MONT DEVANT SASSEY ,55110,55345,41,49.416667,5.166667,1.68
+ Les Monthairons ,LES MONTHAIRONS ,55320,55347,41,49.05,5.416667,0.88
+ Montiers-sur-Saulx ,MONTIERS SUR SAULX ,55290,55348,41,48.533333,5.266667,1.94
+ Montigny-devant-Sassey ,MONTIGNY DEVANT SASSEY ,55110,55349,41,49.433333,5.15,1.75
+ Montigny-lès-Vaucouleurs ,MONTIGNY LES VAUCOULEURS ,55140,55350,41,48.583333,5.633333,1.74
+ Montmédy ,MONTMEDY ,55600,55351,41,49.516667,5.366667,2.09
+ Montplonne ,MONTPLONNE ,55000,55352,41,48.7,5.166667,1.26
+ Montsec ,MONTSEC ,55300,55353,41,48.883333,5.716667,1.72
+ Montzéville ,MONTZEVILLE ,55100,55355,41,49.183333,5.233333,1.13
+ Moranville ,MORANVILLE ,55400,55356,41,49.166667,5.55,0.84
+ Morgemoulin ,MORGEMOULIN ,55400,55357,41,49.233333,5.583333,1.02
+ Morley ,MORLEY ,55290,55359,41,48.583333,5.25,1.74
+ Mouilly ,MOUILLY ,55320,55360,41,49.033333,5.533333,2.04
+ Moulins-Saint-Hubert ,MOULINS SAINT HUBERT ,55700,55362,41,49.583333,5.116667,2.37
+ Moulotte ,MOULOTTE ,55160,55363,41,49.1,5.733333,1.81
+ Mouzay ,MOUZAY ,55700,55364,41,49.466667,5.216667,1.89
+ Murvaux ,MURVAUX ,55110,55365,41,49.383333,5.25,1.55
+ Muzeray ,MUZERAY ,55230,55367,41,49.333333,5.616667,1.34
+ Naives-en-Blois ,NAIVES EN BLOIS ,55190,55368,41,48.666667,5.55,1.39
+ Naix-aux-Forges ,NAIX AUX FORGES ,55500,55370,41,48.633333,5.383333,1.53
+ Nançois-le-Grand ,NANCOIS LE GRAND ,55500,55371,41,48.716667,5.383333,1.19
+ Nançois-sur-Ornain ,NANCOIS SUR ORNAIN ,55500,55372,41,48.716667,5.3,1.19
+ Nant-le-Grand ,NANT LE GRAND ,55500,55373,41,48.683333,5.233333,1.33
+ Nant-le-Petit ,NANT LE PETIT ,55500,55374,41,48.65,5.216667,1.49
+ Nantillois ,NANTILLOIS ,55270,55375,41,49.3,5.133333,1.34
+ Nantois ,NANTOIS ,55500,55376,41,48.633333,5.35,1.53
+ Nepvant ,NEPVANT ,55700,55377,41,49.55,5.216667,2.23
+ Nettancourt ,NETTANCOURT ,55800,55378,41,48.866667,4.95,2.3
+ Le Neufour ,LE NEUFOUR ,55120,55379,41,49.133333,4.983333,2.13
+ Neuville-en-Verdunois ,NEUVILLE EN VERDUNOIS ,55260,55380,41,48.95,5.3,1.17
+ Neuville-lès-Vaucouleurs ,NEUVILLE LES VAUCOULEURS ,55140,55381,41,48.583333,5.666667,1.74
+ Neuville-sur-Ornain ,NEUVILLE SUR ORNAIN ,55800,55382,41,48.816667,5.05,1.78
+ Neuvilly-en-Argonne ,NEUVILLY EN ARGONNE ,55120,55383,41,49.166667,5.066667,1.69
+ Nicey-sur-Aire ,NICEY SUR AIRE ,55260,55384,41,48.883333,5.333333,0.51
+ Nouillonpont ,NOUILLONPONT ,55230,55387,41,49.35,5.633333,1.41
+ Nubécourt ,NUBECOURT ,55250,55389,41,49,5.166667,1.17
+ Oëy ,OEY ,55500,55390,41,48.683333,5.4,1.33
+ Olizy-sur-Chiers ,OLIZY SUR CHIERS ,55700,55391,41,49.55,5.216667,2.23
+ Ollières ,OLLIERES ,55230,55392,41,49.35,5.716667,1.72
+ Ornel ,ORNEL ,55400,55393,41,49.25,5.616667,1.19
+ Osches ,OSCHES ,55220,55395,41,49.05,5.25,0.85
+ Ourches-sur-Meuse ,OURCHES SUR MEUSE ,55190,55396,41,48.666667,5.7,1.7
+ Pagny-la-Blanche-Côte ,PAGNY LA BLANCHE COTE,55140,55397,41,48.533333,5.716667,1.94
+ Pagny-sur-Meuse ,PAGNY SUR MEUSE ,55190,55398,41,48.683333,5.716667,1.93
+ Pareid ,PAREID ,55160,55399,41,49.116667,5.716667,1.72
+ Parfondrupt ,PARFONDRUPT ,55400,55400,41,49.15,5.733333,1.89
+ Les Paroches ,LES PAROCHES ,55300,55401,41,48.9,5.5,0.83
+ Parois ,PAROIS ,55120,55402,41,49.133333,5.116667,1.43
+ Peuvillers ,PEUVILLERS ,55150,55403,41,49.366667,5.4,1.48
+ Pierrefitte-sur-Aire ,PIERREFITTE SUR AIRE ,55260,55404,41,48.9,5.333333,0.44
+ Pillon ,PILLON ,55230,55405,41,49.383333,5.583333,1.67
+ Pintheville ,PINTHEVILLE ,55160,55406,41,49.116667,5.666667,1.46
+ Pont-sur-Meuse ,PONT SUR MEUSE ,55200,55407,41,48.8,5.55,1.06
+ Pouilly-sur-Meuse ,POUILLY SUR MEUSE ,55700,55408,41,49.533333,5.116667,2.16
+ Pretz-en-Argonne ,PRETZ EN ARGONNE ,55250,55409,41,48.95,5.15,1.25
+ Quincy-Landzécourt ,QUINCY LANDZECOURT ,55600,55410,41,49.5,5.283333,2.03
+ Rambluzin-et-Benoîte-Vaux ,RAMBLUZIN ET BENOITE VAUX,55220,55411,41,49,5.333333,0.64
+ Rambucourt ,RAMBUCOURT ,55300,55412,41,48.833333,5.75,1.89
+ Rampont ,RAMPONT ,55220,55413,41,49.1,5.216667,1.73
+ Rancourt-sur-Ornain ,RANCOURT SUR ORNAIN ,55800,55414,41,48.816667,4.916667,2.48
+ Ranzières ,RANZIERES ,55300,55415,41,49.016667,5.5,1.38
+ Rarécourt ,RARECOURT ,55120,55416,41,49.083333,5.116667,1.43
+ Raulecourt ,RAULECOURT ,55200,55417,41,48.816667,5.733333,2.03
+ Réchicourt ,RECHICOURT ,55230,55418,41,49.333333,5.716667,1.72
+ Récicourt ,RECICOURT ,55120,55419,41,49.15,5.15,1.25
+ Récourt-le-Creux ,RECOURT LE CREUX ,55220,55420,41,49,5.383333,1.36
+ Reffroy ,REFFROY ,55190,55421,41,48.633333,5.466667,1.53
+ Regnéville-sur-Meuse ,REGNEVILLE SUR MEUSE ,55110,55422,41,49.25,5.333333,2.4
+ Remennecourt ,REMENNECOURT ,55800,55424,41,48.8,4.916667,2.48
+ Rémoiville ,REMOIVILLE ,55600,55425,41,49.441667,5.366667,-1
+ Resson ,RESSON ,55000,55426,41,48.766667,5.233333,0.98
+ Revigny-sur-Ornain ,REVIGNY SUR ORNAIN ,55800,55427,41,48.833333,4.983333,2.13
+ Réville-aux-Bois ,REVILLE AUX BOIS ,55150,55428,41,49.35,5.35,1.41
+ Riaville ,RIAVILLE ,55160,55429,41,49.1,5.666667,1.46
+ Ribeaucourt ,RIBEAUCOURT ,55290,55430,41,48.55,5.35,1.87
+ Richecourt ,RICHECOURT ,55300,55431,41,48.883333,5.766667,1.98
+ Rignaucourt ,RIGNAUCOURT ,55220,55432,41,48.966667,5.266667,0.95
+ Rigny-la-Salle ,RIGNY LA SALLE ,55140,55433,41,48.616667,5.7,1.63
+ Rigny-Saint-Martin ,RIGNY SAINT MARTIN ,55140,55434,41,48.616667,5.716667,1.72
+ Robert-Espagne ,ROBERT ESPAGNE ,55000,55435,41,48.75,5.033333,1.87
+ Les Roises ,LES ROISES ,55130,55436,41,48.45,5.633333,2.28
+ Romagne-sous-les-Côtes ,ROMAGNE SOUS LES COTES,55150,55437,41,49.316667,5.483333,1.27
+ Romagne-sous-Montfaucon ,ROMAGNE SOUS MONTFAUCON ,55110,55438,41,49.333333,5.083333,1.6
+ Ronvaux ,RONVAUX ,55160,55439,41,49.133333,5.55,1.81
+ Rosières-devant-Bar ,ROSIERES DEVANT BAR ,55000,55440,41,48.8,5.233333,0.85
+ Rouvres-en-Woëvre ,ROUVRES EN WOEVRE ,55400,55443,41,49.216667,5.683333,1.54
+ Rouvrois-sur-Meuse ,ROUVROIS SUR MEUSE ,55300,55444,41,48.95,5.516667,0.78
+ Rouvrois-sur-Othain ,ROUVROIS SUR OTHAIN ,55230,55445,41,49.383333,5.633333,1.55
+ Rumont ,RUMONT ,55000,55446,41,48.833333,5.283333,1.38
+ Rupt-aux-Nonains ,RUPT AUX NONAINS ,55170,55447,41,48.666667,5.116667,1.43
+ Rupt-devant-Saint-Mihiel ,RUPT DEVANT SAINT MIHIEL,55260,55448,41,48.883333,5.416667,1.01
+ Rupt-en-Woëvre ,RUPT EN WOEVRE ,55320,55449,41,49.05,5.483333,0.76
+ Rupt-sur-Othain ,RUPT SUR OTHAIN ,55150,55450,41,49.416667,5.5,1.68
+ Saint-Amand-sur-Ornain ,SAINT AMAND SUR ORNAIN,55500,55452,41,48.633333,5.383333,1.53
+ Saint-André-en-Barrois ,SAINT ANDRE EN BARROIS,55220,55453,41,49.016667,5.233333,0.98
+ Saint-Aubin-sur-Aire ,SAINT AUBIN SUR AIRE,55500,55454,41,48.7,5.45,1.29
+ Saint-Benoît-en-Woëvre ,SAINT BENOIT EN WOEVRE,55210,55455,41,48.983333,5.783333,2.07
+ Saint-Germain-sur-Meuse ,SAINT GERMAIN SUR MEUSE,55140,55456,41,48.65,5.683333,1.74
+ Saint-Hilaire-en-Woëvre ,SAINT HILAIRE EN WOEVRE,55160,55457,41,49.083333,5.7,1.63
+ Saint-Jean-lès-Buzy ,SAINT JEAN LES BUZY,55400,55458,41,49.166667,5.733333,1.83
+ Saint-Joire ,SAINT JOIRE ,55130,55459,41,48.6,5.416667,1.67
+ Saint-Julien-sous-les-Côtes ,SAINT JULIEN SOUS LES,55200,55460,41,48.816667,5.616667,1.19
+ Saint-Laurent-sur-Othain ,SAINT LAURENT SUR OTHAIN,55150,55461,41,49.4,5.516667,1.61
+ Saint-Maurice-sous-les-Côtes ,SAINT MAURICE SOUS LES,55210,55462,41,49.016667,5.683333,1.54
+ Saint-Mihiel ,SAINT MIHIEL ,55300,55463,41,48.9,5.55,0.84
+ Saint-Rémy-la-Calonne ,SAINT REMY LA CALONNE,55160,55465,41,49.05,5.6,1.15
+ Salmagne ,SALMAGNE ,55000,55466,41,48.75,5.333333,1.78
+ Sampigny ,SAMPIGNY ,55300,55467,41,48.833333,5.516667,1.01
+ Samogneux ,SAMOGNEUX ,55100,55468,41,49.25,5.333333,1
+ Sassey-sur-Meuse ,SASSEY SUR MEUSE ,55110,55469,41,49.416667,5.183333,1.68
+ Saudrupt ,SAUDRUPT ,55000,55470,41,48.7,5.066667,1.69
+ Saulmory-et-Villefranche ,SAULMORY ET VILLEFRANCHE ,55110,55471,41,49.433333,5.166667,1.75
+ Sauvigny ,SAUVIGNY ,55140,55474,41,48.5,5.716667,2.08
+ Sauvoy ,SAUVOY ,55190,55475,41,48.633333,5.6,1.53
+ Savonnières-devant-Bar ,SAVONNIERES DEVANT BAR ,55000,55476,41,48.75,5.166667,1.17
+ Savonnières-en-Perthois ,SAVONNIERES EN PERTHOIS ,55170,55477,41,48.6,5.133333,1.67
+ Savonnières-en-Woëvre ,SAVONNIERES EN WOEVRE ,55300,55478,41,48.916667,5.633333,1.28
+ Seigneulles ,SEIGNEULLES ,55000,55479,41,48.85,5.233333,1.06
+ Senard ,SENARD ,55250,55480,41,48.983333,5.016667,1.95
+ Senon ,SENON ,55230,55481,41,49.283333,5.633333,1.28
+ Senoncourt-lés-Maujouy ,SENONCOURT LES MAUJOUY ,55220,55482,41,49.05,5.333333,0.72
+ Senonville ,SENONVILLE ,55300,55483,41,48.933333,5.583333,1.02
+ Septsarges ,SEPTSARGES ,55270,55484,41,49.283333,5.166667,1.17
+ Sepvigny ,SEPVIGNY ,55140,55485,41,48.566667,5.683333,1.8
+ Seraucourt ,SERAUCOURT ,55250,55486,41,48.966667,5.25,1.74
+ Seuzey ,SEUZEY ,55300,55487,41,48.983333,5.566667,0.93
+ Silmont ,SILMONT ,55000,55488,41,48.733333,5.25,1.12
+ Sivry-la-Perche ,SIVRY LA PERCHE ,55100,55489,41,49.15,5.25,1
+ Sivry-sur-Meuse ,SIVRY SUR MEUSE ,55110,55490,41,49.316667,5.266667,1.27
+ Sommaisne ,SOMMAISNE ,55250,55491,41,48.95,5.166667,1.17
+ Sommedieue ,SOMMEDIEUE ,55320,55492,41,49.083333,5.466667,0.78
+ Sommeilles ,SOMMEILLES ,55800,55493,41,48.9,4.95,2.3
+ Sommelonne ,SOMMELONNE ,55170,55494,41,48.666667,5.033333,1.87
+ Sorcy-Saint-Martin ,SORCY SAINT MARTIN ,55190,55496,41,48.716667,5.633333,1.28
+ Souilly ,SOUILLY ,55220,55498,41,49.016667,5.283333,0.55
+ Spada ,SPADA ,55300,55499,41,48.95,5.55,0.84
+ Spincourt ,SPINCOURT ,55230,55500,41,49.333333,5.666667,1.46
+ Stainville ,STAINVILLE ,55500,55501,41,48.65,5.183333,1.87
+ Stenay ,STENAY ,55700,55502,41,49.483333,5.183333,1.96
+ Taillancourt ,TAILLANCOURT ,55140,55503,41,48.533333,5.7,1.94
+ Tannois ,TANNOIS ,55000,55504,41,48.716667,5.233333,1.19
+ Thierville-sur-Meuse ,THIERVILLE SUR MEUSE ,55840,55505,41,49.166667,5.35,0.66
+ Thillombois ,THILLOMBOIS ,55260,55506,41,48.95,5.4,1.25
+ Thonne-la-Long ,THONNE LA LONG ,55600,55508,41,49.566667,5.416667,2.3
+ Thonne-le-Thil ,THONNE LE THIL ,55600,55509,41,49.583333,5.35,2.37
+ Thonne-les-Prés ,THONNE LES PRES ,55600,55510,41,49.533333,5.35,2.16
+ Thonnelle ,THONNELLE ,55600,55511,41,49.55,5.366667,2.23
+ Tilly-sur-Meuse ,TILLY SUR MEUSE ,55220,55512,41,49,5.433333,2.12
+ Tourailles-sous-Bois ,TOURAILLES SOUS BOIS ,55130,55513,41,48.483333,5.45,2.15
+ Trémont-sur-Saulx ,TREMONT SUR SAULX ,55000,55514,41,48.75,5.05,1.78
+ Trésauvaux ,TRESAUVAUX ,55160,55515,41,49.083333,5.6,1.11
+ Tréveray ,TREVERAY ,55130,55516,41,48.616667,5.4,1.76
+ Tronville-en-Barrois ,TRONVILLE EN BARROIS ,55310,55519,41,48.716667,5.283333,1.19
+ Troussey ,TROUSSEY ,55190,55520,41,48.7,5.7,1.77
+ Ugny-sur-Meuse ,UGNY SUR MEUSE ,55140,55522,41,48.633333,5.7,1.63
+ Vacherauville ,VACHERAUVILLE ,55100,55523,41,49.216667,5.366667,0.86
+ Vacon ,VACON ,55190,55524,41,48.666667,5.6,1.39
+ Vadelaincourt ,VADELAINCOURT ,55220,55525,41,49.066667,5.266667,0.84
+ Vadonville ,VADONVILLE ,55200,55526,41,48.8,5.516667,1.57
+ Varennes-en-Argonne ,VARENNES EN ARGONNE ,55270,55527,41,49.233333,5.033333,1.87
+ Varnéville ,VARNEVILLE ,55300,55528,41,48.866667,5.65,1.37
+ Varney ,VARNEY ,55000,55529,41,48.816667,5.1,1.52
+ Vassincourt ,VASSINCOURT ,55800,55531,41,48.8,5.033333,1.87
+ Vaubecourt ,VAUBECOURT ,55250,55532,41,48.933333,5.116667,1.43
+ Vaucouleurs ,VAUCOULEURS ,55140,55533,41,48.6,5.666667,1.67
+ Vaudeville-le-Haut ,VAUDEVILLE LE HAUT ,55130,55534,41,48.45,5.6,2.28
+ Vauquois ,VAUQUOIS ,55270,55536,41,49.2,5.066667,1.69
+ Vaux-devant-Damloup ,VAUX DEVANT DAMLOUP ,55400,55537,41,49.216667,5.466667,1.71
+ Vaux-la-Grande ,VAUX LA GRANDE ,55500,55538,41,48.683333,5.45,1.33
+ Vaux-la-Petite ,VAUX LA PETITE ,55500,55539,41,48.666667,5.433333,1.39
+ Vaux-lès-Palameix ,VAUX LES PALAMEIX ,55300,55540,41,49.016667,5.533333,1.21
+ Vavincourt ,VAVINCOURT ,55000,55541,41,48.816667,5.216667,0.9
+ Véel ,VEEL ,55000,55542,41,48.766667,5.116667,1.43
+ Velaines ,VELAINES ,55500,55543,41,48.7,5.3,1.26
+ Velosnes ,VELOSNES ,55600,55544,41,49.5,5.45,2.03
+ Verneuil-Grand ,VERNEUIL GRAND ,55600,55546,41,49.533333,5.416667,2.16
+ Verneuil-Petit ,VERNEUIL PETIT ,55600,55547,41,49.55,5.416667,2.23
+ Vertuzey ,VERTUZEY ,55200,55548,41,48.733333,5.666667,1.46
+ Véry ,VERY ,55270,55549,41,49.25,5.066667,1.69
+ Viéville-sous-les-Côtes ,VIEVILLE SOUS LES COTES,55210,55550,41,49,5.683333,1.54
+ Vigneul-sous-Montmédy ,VIGNEUL SOUS MONTMEDY ,55600,55552,41,49.516667,5.333333,2.09
+ Vignot ,VIGNOT ,55200,55553,41,48.766667,5.6,1.11
+ Villécloye ,VILLECLOYE ,55600,55554,41,49.516667,5.4,2.09
+ Ville-devant-Belrain ,VILLE DEVANT BELRAIN ,55260,55555,41,48.866667,5.333333,0.57
+ Ville-devant-Chaumont ,VILLE DEVANT CHAUMONT ,55150,55556,41,49.3,5.433333,1.2
+ Ville-en-Woëvre ,VILLE EN WOEVRE ,55160,55557,41,49.133333,5.633333,1.28
+ Ville-Issey ,VILLE ISSEY ,55200,55558,41,48.733333,5.633333,1.28
+ Villeroy-sur-Méholle ,VILLEROY SUR MEHOLLE ,55190,55559,41,48.616667,5.583333,1.6
+ Villers-aux-Vents ,VILLERS AUX VENTS ,55800,55560,41,48.85,5.016667,1.95
+ Villers-devant-Dun ,VILLERS DEVANT DUN ,55110,55561,41,49.4,5.116667,1.61
+ Villers-le-Sec ,VILLERS LE SEC ,55500,55562,41,48.616667,5.3,1.6
+ Villers-les-Mangiennes ,VILLERS LES MANGIENNES ,55150,55563,41,49.366667,5.5,1.48
+ Villers-sous-Pareid ,VILLERS SOUS PAREID ,55160,55565,41,49.116667,5.733333,1.81
+ Villers-sur-Meuse ,VILLERS SUR MEUSE ,55220,55566,41,49.016667,5.4,1.58
+ Ville-sur-Cousances ,VILLE SUR COUSANCES ,55120,55567,41,49.083333,5.166667,1.17
+ Ville-sur-Saulx ,VILLE SUR SAULX ,55000,55568,41,48.716667,5.066667,1.69
+ Villotte-devant-Louppy ,VILLOTTE DEVANT LOUPPY ,55250,55569,41,48.883333,5.083333,1.6
+ Villotte-sur-Aire ,VILLOTTE SUR AIRE ,55260,55570,41,48.85,5.35,0.64
+ Vittarville ,VITTARVILLE ,55150,55572,41,49.383333,5.416667,1.55
+ Vouthon-Bas ,VOUTHON BAS ,55130,55574,41,48.483333,5.6,2.15
+ Vouthon-Haut ,VOUTHON HAUT ,55130,55575,41,48.483333,5.616667,2.15
+ Wadonville-en-Woëvre ,WADONVILLE EN WOEVRE ,55160,55576,41,49.066667,5.683333,1.54
+ Waly ,WALY ,55250,55577,41,49.016667,5.1,1.52
+ Warcq ,WARCQ ,55400,55578,41,49.183333,5.65,1.37
+ Watronville ,WATRONVILLE ,55160,55579,41,49.133333,5.55,1.81
+ Wavrille ,WAVRILLE ,55150,55580,41,49.333333,5.383333,1.34
+ Willeroncourt ,WILLERONCOURT ,55500,55581,41,48.716667,5.366667,1.19
+ Wiseppe ,WISEPPE ,55700,55582,41,49.466667,5.166667,1.89
+ Woël ,WOEL ,55210,55583,41,49.033333,5.733333,1.81
+ Woimbey ,WOIMBEY ,55300,55584,41,48.966667,5.466667,1.31
+ Woinville ,WOINVILLE ,55300,55585,41,48.9,5.666667,1.46
+ Xivray-et-Marvoisin ,XIVRAY ET MARVOISIN ,55300,55586,41,48.866667,5.75,1.89
+ Triaucourt-en-Argonne ,TRIAUCOURT EN ARGONNE ,55250,55900,41,48.983333,5.066667,1.69
+ Issoncourt ,ISSONCOURT ,55220,55902,41,48.966667,5.283333,0.86
+ Allaire ,ALLAIRE ,56350,56001,53,47.633333,-2.166667,1.73
+ Ambon ,AMBON ,56190,56002,53,47.55,-2.566667,1.6
+ Arradon ,ARRADON ,56610,56003,53,47.633333,-2.833333,1.09
+ Arzal ,ARZAL ,56190,56004,53,47.516667,-2.366667,1.8
+ Arzon ,ARZON ,56640,56005,53,47.55,-2.9,1.6
+ Augan ,AUGAN ,56800,56006,53,47.916667,-2.283333,1.69
+ Auray ,AURAY ,56400,56007,53,47.666667,-2.983333,0.89
+ Baden ,BADEN ,56870,56008,53,47.616667,-2.916667,1.2
+ Bangor ,BANGOR ,56360,56009,53,47.316667,-3.189,-1
+ Baud ,BAUD ,56150,56010,53,47.866667,-3.016667,0.88
+ Béganne ,BEGANNE ,56350,56011,53,47.6,-2.25,1.66
+ Beignon ,BEIGNON ,56380,56012,53,47.966667,-2.166667,1.73
+ Belz ,BELZ ,56550,56013,53,47.683333,-3.166667,1.21
+ Berné ,BERNE ,56240,56014,53,48,-3.4,1.89
+ Berric ,BERRIC ,56230,56015,53,47.633333,-2.516667,1.33
+ Bignan ,BIGNAN ,56500,56017,53,47.883333,-2.766667,1.07
+ Billiers ,BILLIERS ,56190,56018,53,47.533333,-2.483333,1.7
+ Billio ,BILLIO ,56420,56019,53,47.866667,-2.633333,0.36
+ Bohal ,BOHAL ,56140,56020,53,47.783333,-2.433333,1.42
+ Brandérion ,BRANDERION ,56700,56021,53,47.783333,-3.2,1.31
+ Brandivy ,BRANDIVY ,56390,56022,53,47.783333,-2.95,1.7
+ Brech ,BRECH ,56400,56023,53,47.716667,-2.983333,0.67
+ Brignac ,BRIGNAC ,56430,56025,53,48.116667,-2.383333,1.83
+ Bubry ,BUBRY ,56310,56026,53,47.966667,-3.166667,1.21
+ Buléon ,BULEON ,56420,56027,53,47.933333,-2.7,1.51
+ Caden ,CADEN ,56220,56028,53,47.633333,-2.283333,1.39
+ Calan ,CALAN ,56240,56029,53,47.866667,-3.316667,1.65
+ Camoël ,CAMOEL ,56130,56030,53,47.483333,-2.4,2
+ Camors ,CAMORS ,56330,56031,53,47.85,-3,1
+ Campénéac ,CAMPENEAC ,56800,56032,53,47.95,-2.3,1.49
+ Carentoir ,CARENTOIR ,56910,56033,53,47.816667,-2.133333,1.83
+ Carnac ,CARNAC ,56340,56034,53,47.583333,-3.083333,1.4
+ Caro ,CARO ,56140,56035,53,47.866667,-2.316667,1.29
+ Caudan ,CAUDAN ,56850,56036,53,47.816667,-3.333333,1.7
+ La Chapelle-Gaceline ,LA CHAPELLE GACELINE ,56200,56038,53,47.783333,-2.1,1.92
+ La Chapelle-Neuve ,LA CHAPELLE NEUVE ,56500,56039,53,47.866667,-2.95,1.63
+ Cléguérec ,CLEGUEREC ,56480,56041,53,48.116667,-3.083333,1.83
+ Colpo ,COLPO ,56390,56042,53,47.816667,-2.816667,0.85
+ Concoret ,CONCORET ,56430,56043,53,48.066667,-2.2,1.63
+ Cournon ,COURNON ,56200,56044,53,47.75,-2.1,1.92
+ Le Cours ,LE COURS ,56230,56045,53,47.733333,-2.5,0.75
+ Crach ,CRACH ,56950,56046,53,47.616667,-3.008333,1.2
+ Crédin ,CREDIN ,56580,56047,53,48.033333,-2.766667,2
+ Croixanvec ,CROIXANVEC ,56920,56049,53,48.133333,-2.866667,1.93
+ La Croix-Helléan ,LA CROIX HELLEAN ,56120,56050,53,47.95,-2.5,0.97
+ Cruguel ,CRUGUEL ,56420,56051,53,47.883333,-2.6,1.02
+ Damgan ,DAMGAN ,56750,56052,53,47.516667,-2.583333,1.8
+ Elven ,ELVEN ,56250,56053,53,47.733333,-2.583333,0.54
+ Erdeven ,ERDEVEN ,56410,56054,53,47.633333,-3.15,1.16
+ Étel ,ETEL ,56410,56055,53,47.65,-3.2,1.31
+ Évriguet ,EVRIGUET ,56490,56056,53,48.083333,-2.416667,1.63
+ Le Faouët ,LE FAOUET ,56320,56057,53,48.041667,-3.5,-1
+ Férel ,FEREL ,56130,56058,53,47.483333,-2.35,2
+ Les Forges ,LES FORGES ,56120,56059,53,48.016667,-2.65,1.37
+ Les Fougerêts ,LES FOUGERETS ,56200,56060,53,47.733333,-2.216667,1.91
+ La Gacilly ,LA GACILLY ,56200,56061,53,47.766667,-2.15,1.78
+ Gâvres ,GAVRES ,56290,56062,53,47.683333,-3.35,1.75
+ Gestel ,GESTEL ,56830,56063,53,47.8,-3.45,2.04
+ Glénac ,GLENAC ,56200,56064,53,47.733333,-2.133333,1.83
+ Gourhel ,GOURHEL ,56800,56065,53,47.933333,-2.366667,1.14
+ Gourin ,GOURIN ,56110,56066,53,48.133333,-3.6,2.48
+ Grand-Champ ,GRAND CHAMP ,56390,56067,53,47.766667,-2.85,0.29
+ La Grée-Saint-Laurent ,LA GREE SAINT LAURENT,56120,56068,53,48,-2.5,1.12
+ Groix ,GROIX ,56590,56069,53,47.633333,-3.466667,2.09
+ Guégon ,GUEGON ,56120,56070,53,47.933333,-2.566667,0.72
+ Guéhenno ,GUEHENNO ,56420,56071,53,47.9,-2.633333,0.71
+ Gueltas ,GUELTAS ,56920,56072,53,48.1,-2.8,1.73
+ Guéméné-sur-Scorff ,GUEMENE SUR SCORFF ,56160,56073,53,48.066667,-3.2,1.53
+ Guénin ,GUENIN ,56150,56074,53,47.9,-2.983333,0.88
+ Guer ,GUER ,56380,56075,53,47.9,-2.116667,1.88
+ Guern ,GUERN ,56310,56076,53,48.033333,-3.083333,1.55
+ Le Guerno ,LE GUERNO ,56190,56077,53,47.583333,-2.4,1.4
+ Guillac ,GUILLAC ,56800,56079,53,47.916667,-2.466667,1.27
+ Guilliers ,GUILLIERS ,56490,56080,53,48.05,-2.4,1.43
+ Guiscriff ,GUISCRIFF ,56560,56081,53,48.05,-3.65,2.63
+ Helléan ,HELLEAN ,56120,56082,53,47.966667,-2.466667,1.41
+ Hennebont ,HENNEBONT ,56700,56083,53,47.8,-3.283333,1.74
+ Le Hézo ,LE HEZO ,56450,56084,53,47.583333,-2.7,1.4
+ Hoëdic ,HOEDIC ,56170,56085,53,47.333333,-2.883333,2.91
+ Inguiniel ,INGUINIEL ,56240,56089,53,47.983333,-3.283333,1.55
+ Josselin ,JOSSELIN ,56120,56091,53,47.95,-2.55,0.82
+ Kerfourn ,KERFOURN ,56920,56092,53,48.033333,-2.833333,1.33
+ Kergrist ,KERGRIST ,56300,56093,53,48.15,-2.966667,2.03
+ Kervignac ,KERVIGNAC ,56700,56094,53,47.766667,-3.233333,1.4
+ Landaul ,LANDAUL ,56690,56096,53,47.75,-3.066667,1.29
+ Landévant ,LANDEVANT ,56690,56097,53,47.766667,-3.116667,1.06
+ Lanester ,LANESTER ,56600,56098,53,47.75,-3.35,1.75
+ Langoëlan ,LANGOELAN ,56160,56099,53,48.116667,-3.233333,1.83
+ Langonnet ,LANGONNET ,56630,56100,53,48.1,-3.5,2.19
+ Languidic ,LANGUIDIC ,56440,56101,53,47.833333,-3.166667,1.21
+ Lanouée ,LANOUEE ,56120,56102,53,48,-2.583333,1.12
+ Lantillac ,LANTILLAC ,56120,56103,53,47.95,-2.65,1.2
+ Lanvaudan ,LANVAUDAN ,56240,56104,53,47.9,-3.266667,1.5
+ Lanvénégen ,LANVENEGEN ,56320,56105,53,48,-3.55,2.33
+ Larmor-Baden ,LARMOR BADEN ,56870,56106,53,47.583333,-2.9,1.4
+ Larmor-Plage ,LARMOR PLAGE ,56260,56107,53,47.7,-3.383333,1.84
+ Larré ,LARRE ,56230,56108,53,47.716667,-2.516667,0.71
+ Lauzach ,LAUZACH ,56190,56109,53,47.616667,-2.533333,1.2
+ Lignol ,LIGNOL ,56160,56110,53,48.033333,-3.266667,1.5
+ Limerzel ,LIMERZEL ,56220,56111,53,47.633333,-2.366667,1.52
+ Lizio ,LIZIO ,56460,56112,53,47.866667,-2.516667,0.94
+ Locmalo ,LOCMALO ,56160,56113,53,48.075,-3.191667,-1
+ Locmaria ,LOCMARIA ,56360,56114,53,47.291667,-3.083333,-1
+ Locmaria-Grand-Champ ,LOCMARIA GRAND CHAMP ,56390,56115,53,47.75,-2.783333,1.24
+ Locmariaquer ,LOCMARIAQUER ,56740,56116,53,47.566667,-2.95,1.5
+ Locminé ,LOCMINE ,56500,56117,53,47.883333,-2.833333,0.48
+ Locmiquélic ,LOCMIQUELIC ,56570,56118,53,47.716667,-3.35,1.75
+ Locoal-Mendon ,LOCOAL MENDON ,56550,56119,53,47.716667,-3.1,1.01
+ Lorient ,LORIENT ,56100,56121,53,47.75,-3.366667,1.8
+ Loyat ,LOYAT ,56800,56122,53,47.983333,-2.4,1.04
+ Malansac ,MALANSAC ,56220,56123,53,47.683333,-2.3,1.34
+ Malestroit ,MALESTROIT ,56140,56124,53,47.816667,-2.383333,1.09
+ Malguénac ,MALGUENAC ,56300,56125,53,48.083333,-3.05,1.63
+ Marzan ,MARZAN ,56130,56126,53,47.533333,-2.316667,1.7
+ Mauron ,MAURON ,56430,56127,53,48.083333,-2.3,1.63
+ Melrand ,MELRAND ,56310,56128,53,47.983333,-3.116667,1.06
+ Ménéac ,MENEAC ,56490,56129,53,48.15,-2.466667,2.03
+ Merlevenez ,MERLEVENEZ ,56700,56130,53,47.733333,-3.233333,1.4
+ Meslan ,MESLAN ,56320,56131,53,48,-3.433333,1.99
+ Meucon ,MEUCON ,56890,56132,53,47.716667,-2.766667,0.72
+ Missiriac ,MISSIRIAC ,56140,56133,53,47.833333,-2.35,1.19
+ Mohon ,MOHON ,56490,56134,53,48.05,-2.533333,1.43
+ Molac ,MOLAC ,56230,56135,53,47.75,-2.4,1.65
+ Monteneuf ,MONTENEUF ,56380,56136,53,47.866667,-2.2,1.63
+ Monterblanc ,MONTERBLANC ,56250,56137,53,47.75,-2.683333,1.54
+ Monterrein ,MONTERREIN ,56800,56138,53,47.883333,-2.35,1.19
+ Montertelot ,MONTERTELOT ,56800,56139,53,47.883333,-2.416667,0.99
+ Moréac ,MOREAC ,56500,56140,53,47.916667,-2.816667,0.62
+ Moustoir-Ac ,MOUSTOIR AC ,56500,56141,53,47.85,-2.833333,0.92
+ Moustoir-Remungol ,MOUSTOIR REMUNGOL ,56500,56142,53,48,-2.9,1.34
+ Muzillac ,MUZILLAC ,56190,56143,53,47.55,-2.483333,1.6
+ Naizin ,NAIZIN ,56500,56144,53,47.983333,-2.833333,1.02
+ Néant-sur-Yvel ,NEANT SUR YVEL ,56430,56145,53,48.016667,-2.333333,1.24
+ Neulliac ,NEULLIAC ,56300,56146,53,48.133333,-2.983333,1.93
+ Nivillac ,NIVILLAC ,56130,56147,53,47.533333,-2.283333,1.7
+ Nostang ,NOSTANG ,56690,56148,53,47.75,-3.183333,1.42
+ Noyal-Muzillac ,NOYAL MUZILLAC ,56190,56149,53,47.583333,-2.45,1.4
+ Noyalo ,NOYALO ,56450,56150,53,47.616667,-2.683333,1.2
+ Noyal-Pontivy ,NOYAL PONTIVY ,56920,56151,53,48.066667,-2.883333,1.53
+ Le Palais ,LE PALAIS ,56360,56152,53,47.35,-3.15,2.81
+ Péaule ,PEAULE ,56130,56153,53,47.583333,-2.366667,1.4
+ Peillac ,PEILLAC ,56220,56154,53,47.716667,-2.216667,1.58
+ Pénestin ,PENESTIN ,56760,56155,53,47.483333,-2.483333,2
+ Persquen ,PERSQUEN ,56160,56156,53,48.033333,-3.166667,1.33
+ Plaudren ,PLAUDREN ,56420,56157,53,47.783333,-2.7,1.77
+ Plescop ,PLESCOP ,56890,56158,53,47.7,-2.8,1.14
+ Pleucadeuc ,PLEUCADEUC ,56140,56159,53,47.75,-2.366667,1.14
+ Pleugriffet ,PLEUGRIFFET ,56120,56160,53,47.983333,-2.683333,1.66
+ Ploemel ,PLOEMEL ,56400,56161,53,47.65,-3.066667,1.96
+ Ploemeur ,PLOEMEUR ,56270,56162,53,47.733333,-3.433333,1.99
+ Ploërdut ,PLOERDUT ,56160,56163,53,48.083333,-3.283333,1.63
+ Ploeren ,PLOEREN ,56880,56164,53,47.65,-2.883333,0.99
+ Ploërmel ,PLOERMEL ,56800,56165,53,47.933333,-2.4,1.04
+ Plouay ,PLOUAY ,56240,56166,53,47.916667,-3.333333,1.7
+ Plougoumelen ,PLOUGOUMELEN ,56400,56167,53,47.65,-2.933333,1.1
+ Plouharnel ,PLOUHARNEL ,56340,56168,53,47.6,-3.116667,1.3
+ Plouray ,PLOURAY ,56770,56170,53,48.15,-3.383333,2.03
+ Pluherlin ,PLUHERLIN ,56220,56171,53,47.7,-2.366667,1.27
+ Plumelec ,PLUMELEC ,56420,56172,53,47.833333,-2.65,0.62
+ Pluméliau ,PLUMELIAU ,56930,56173,53,47.966667,-2.966667,0.92
+ Plumelin ,PLUMELIN ,56500,56174,53,47.866667,-2.883333,0.91
+ Plumergat ,PLUMERGAT ,56400,56175,53,47.75,-2.916667,1.72
+ Pluneret ,PLUNERET ,56400,56176,53,47.683333,-2.966667,0.79
+ Pluvigner ,PLUVIGNER ,56330,56177,53,47.766667,-3.016667,1
+ Pontivy ,PONTIVY ,56300,56178,53,48.066667,-2.983333,1.53
+ Porcaro ,PORCARO ,56380,56180,53,47.916667,-2.2,1.63
+ Port-Louis ,PORT LOUIS ,56290,56181,53,47.716667,-3.35,1.75
+ Priziac ,PRIZIAC ,56320,56182,53,48.066667,-3.416667,1.94
+ Quelneuc ,QUELNEUC ,56910,56183,53,47.816667,-2.066667,2.02
+ Questembert ,QUESTEMBERT ,56230,56184,53,47.666667,-2.466667,0.89
+ Quéven ,QUEVEN ,56530,56185,53,47.783333,-3.416667,1.94
+ Quiberon ,QUIBERON ,56170,56186,53,47.483333,-3.116667,2
+ Quily ,QUILY ,56800,56187,53,47.883333,-2.466667,1.42
+ Quistinic ,QUISTINIC ,56310,56188,53,47.916667,-3.133333,1.27
+ Radenac ,RADENAC ,56500,56189,53,47.966667,-2.716667,1.74
+ Réguiny ,REGUINY ,56500,56190,53,47.966667,-2.75,1.33
+ Réminiac ,REMINIAC ,56140,56191,53,47.85,-2.25,1.48
+ Remungol ,REMUNGOL ,56500,56192,53,47.933333,-2.9,0.83
+ Riantec ,RIANTEC ,56670,56193,53,47.716667,-3.316667,1.65
+ Rieux ,RIEUX ,56350,56194,53,47.6,-2.1,1.92
+ La Roche-Bernard ,LA ROCHE BERNARD ,56130,56195,53,47.516667,-2.3,1.8
+ Rochefort-en-Terre ,ROCHEFORT EN TERRE ,56220,56196,53,47.7,-2.333333,1.24
+ Le Roc-Saint-André ,LE ROC SAINT ANDRE,56460,56197,53,47.866667,-2.45,1.35
+ Rohan ,ROHAN ,56580,56198,53,48.066667,-2.766667,1.53
+ Roudouallec ,ROUDOUALLEC ,56110,56199,53,48.125,-3.716667,-1
+ Ruffiac ,RUFFIAC ,56140,56200,53,47.816667,-2.283333,1.39
+ Le Saint ,LE SAINT ,56110,56201,53,48.083333,-3.566667,2.38
+ Saint-Abraham ,SAINT ABRAHAM ,56140,56202,53,47.85,-2.4,1.04
+ Saint-Aignan ,SAINT AIGNAN ,56480,56203,53,48.183333,-3.016667,2.23
+ Saint-Allouestre ,SAINT ALLOUESTRE ,56500,56204,53,47.916667,-2.883333,0.62
+ Saint-Armel ,SAINT ARMEL ,56450,56205,53,47.566667,-2.716667,1.5
+ Saint-Avé ,SAINT AVE ,56890,56206,53,47.683333,-2.75,1.14
+ Saint-Barthélemy ,SAINT BARTHELEMY ,56150,56207,53,47.933333,-3.05,1.24
+ Saint-Brieuc-de-Mauron ,SAINT BRIEUC DE MAURON,56430,56208,53,48.083333,-2.366667,1.63
+ Saint-Caradec-Trégomel ,SAINT CARADEC TREGOMEL ,56540,56210,53,48.033333,-3.35,1.75
+ Saint-Congard ,SAINT CONGARD ,56140,56211,53,47.766667,-2.316667,1.29
+ Saint-Dolay ,SAINT DOLAY ,56130,56212,53,47.55,-2.15,1.78
+ Saint-Gérand ,SAINT GERAND ,56920,56213,53,48.1,-2.883333,1.73
+ Saint-Gildas-de-Rhuys ,SAINT GILDAS DE RHUYS,56730,56214,53,47.5,-2.833333,1.9
+ Saint-Gonnery ,SAINT GONNERY ,56920,56215,53,48.116667,-2.816667,1.83
+ Saint-Gorgon ,SAINT GORGON ,56350,56216,53,47.65,-2.233333,1.53
+ Saint-Gouvry ,SAINT GOUVRY ,56580,56217,53,48.083333,-2.766667,1.63
+ Saint-Gravé ,SAINT GRAVE ,56220,56218,53,47.716667,-2.283333,1.39
+ Saint-Guyomard ,SAINT GUYOMARD ,56460,56219,53,47.783333,-2.516667,1.29
+ Sainte-Hélène ,SAINTE HELENE ,56700,56220,53,47.716667,-3.2,1.37
+ Saint-Jacut-les-Pins ,SAINT JACUT LES PINS,56220,56221,53,47.683333,-2.216667,1.58
+ Saint-Jean-Brévelay ,SAINT JEAN BREVELAY ,56660,56222,53,47.85,-2.716667,0.22
+ Saint-Jean-la-Poterie ,SAINT JEAN LA POTERIE,56350,56223,53,47.633333,-2.133333,1.83
+ Saint-Léry ,SAINT LERY ,56430,56225,53,48.083333,-2.25,1.63
+ Saint-Malo-de-Beignon ,SAINT MALO DE BEIGNON,56380,56226,53,47.95,-2.15,1.78
+ Saint-Malo-des-Trois-Fontaines ,SAINT MALO DES TROIS,56490,56227,53,48.016667,-2.466667,1.23
+ Saint-Marcel ,SAINT MARCEL ,56140,56228,53,47.8,-2.416667,1.13
+ Saint-Nicolas-du-Tertre ,SAINT NICOLAS DU TERTRE,56910,56230,53,47.8,-2.216667,1.58
+ Saint-Nolff ,SAINT NOLFF ,56250,56231,53,47.7,-2.65,0.85
+ Saint-Perreux ,SAINT PERREUX ,56350,56232,53,47.666667,-2.1,1.92
+ Saint-Philibert ,SAINT PHILIBERT ,56470,56233,53,47.583333,-3,1.4
+ Saint-Pierre-Quiberon ,SAINT PIERRE QUIBERON ,56510,56234,53,47.516667,-3.133333,1.8
+ Saint-Samson ,SAINT SAMSON ,56580,56235,53,48.083333,-2.766667,1.63
+ Saint-Servant ,SAINT SERVANT ,56120,56236,53,47.916667,-2.516667,1
+ Saint-Thuriau ,SAINT THURIAU ,56300,56237,53,48.016667,-2.95,1.47
+ Saint-Vincent-sur-Oust ,SAINT VINCENT SUR OUST,56350,56239,53,47.7,-2.15,1.78
+ Sarzeau ,SARZEAU ,56370,56240,53,47.533333,-2.766667,1.7
+ Sauzon ,SAUZON ,56360,56241,53,47.366667,-3.216667,2.71
+ Séglien ,SEGLIEN ,56160,56242,53,48.116667,-3.15,1.83
+ Séné ,SENE ,56860,56243,53,47.616667,-2.75,1.2
+ Sérent ,SERENT ,56460,56244,53,47.816667,-2.5,0.75
+ Silfiac ,SILFIAC ,56480,56245,53,48.15,-3.15,2.03
+ Le Sourn ,LE SOURN ,56300,56246,53,48.05,-2.983333,1.43
+ Sulniac ,SULNIAC ,56250,56247,53,47.683333,-2.566667,0.97
+ Surzur ,SURZUR ,56450,56248,53,47.583333,-2.633333,1.4
+ Taupont ,TAUPONT ,56800,56249,53,47.95,-2.433333,0.95
+ Théhillac ,THEHILLAC ,56130,56250,53,47.566667,-2.116667,2.07
+ Theix ,THEIX ,56450,56251,53,47.633333,-2.666667,1.09
+ Le Tour-du-Parc ,LE TOUR DU PARC,56370,56252,53,47.516667,-2.65,1.8
+ Tréal ,TREAL ,56140,56253,53,47.833333,-2.216667,1.77
+ Trédion ,TREDION ,56250,56254,53,47.783333,-2.6,1.24
+ Treffléan ,TREFFLEAN ,56250,56255,53,47.683333,-2.616667,0.79
+ Tréhorenteuc ,TREHORENTEUC ,56430,56256,53,48.016667,-2.283333,1.39
+ La Trinité-Porhoët ,LA TRINITE PORHOET ,56710,56257,53,48.1,-2.55,1.73
+ La Trinité-sur-Mer ,LA TRINITE SUR MER,56470,56258,53,47.583333,-3.033333,1.4
+ La Trinité-Surzur ,LA TRINITE SURZUR ,56190,56259,53,47.6,-2.6,1.66
+ Vannes ,VANNES ,56000,56260,53,47.666667,-2.75,0.89
+ La Vraie-Croix ,LA VRAIE CROIX ,56250,56261,53,47.683333,-2.55,1.22
+ Kernascléden ,KERNASCLEDEN ,56540,56264,53,48,-3.316667,1.65
+ Port-Navalo ,PORT NAVALO ,56640,56905,53,47.55,-2.9,1.6
+ Aboncourt ,ABONCOURT ,57920,57001,41,49.266667,6.35,1.26
+ Aboncourt-sur-Seille ,ABONCOURT SUR SEILLE ,57590,57002,41,48.816667,6.35,1.49
+ Abreschviller ,ABRESCHVILLER ,57560,57003,41,48.633333,7.1,2.41
+ Achain ,ACHAIN ,57340,57004,41,48.916667,6.583333,0.77
+ Achen ,ACHEN ,57410,57006,41,49.05,7.183333,1.78
+ Adaincourt ,ADAINCOURT ,57580,57007,41,49,6.433333,0.56
+ Adelange ,ADELANGE ,57380,57008,41,49,6.616667,0.69
+ Ajoncourt ,AJONCOURT ,57590,57009,41,48.85,6.3,1.84
+ Alaincourt-la-Côte ,ALAINCOURT LA COTE ,57590,57010,41,48.9,6.35,0.88
+ Albestroff ,ALBESTROFF ,57670,57011,41,48.933333,6.85,0.74
+ Algrange ,ALGRANGE ,57440,57012,41,49.35,6.05,1.76
+ Alsting ,ALSTING ,57520,57013,41,49.183333,6.983333,1.77
+ Altrippe ,ALTRIPPE ,57660,57014,41,49.033333,6.816667,0.83
+ Altviller ,ALTVILLER ,57730,57015,41,49.083333,6.733333,0.38
+ Alzing ,ALZING ,57320,57016,41,49.283333,6.55,1.36
+ Amanvillers ,AMANVILLERS ,57111,57017,41,49.166667,6.033333,1.81
+ Amélécourt ,AMELECOURT ,57170,57018,41,48.833333,6.5,1.25
+ Amnéville ,AMNEVILLE ,57360,57019,41,49.266667,6.15,1.45
+ Ancerville ,ANCERVILLE ,57580,57020,41,49.033333,6.383333,0.85
+ Ancy-sur-Moselle ,ANCY SUR MOSELLE ,57130,57021,41,49.05,6.066667,1.71
+ Angevillers ,ANGEVILLERS ,57440,57022,41,49.383333,6.033333,1.94
+ Angviller-lès-Bisping ,ANGVILLER LES BISPING ,57930,57023,41,48.816667,6.883333,1.53
+ Antilly ,ANTILLY ,57640,57024,41,49.2,6.25,1.14
+ Anzeling ,ANZELING ,57320,57025,41,49.266667,6.466667,1.26
+ Apach ,APACH ,57480,57026,41,49.45,6.366667,2.32
+ Arraincourt ,ARRAINCOURT ,57380,57027,41,48.966667,6.533333,1.24
+ Argancy ,ARGANCY ,57640,57028,41,49.2,6.2,1.68
+ Arriance ,ARRIANCE ,57580,57029,41,49.016667,6.5,1.53
+ Arry ,ARRY ,57680,57030,41,49,6.066667,1.71
+ Ars-Laquenexy ,ARS LAQUENEXY ,57530,57031,41,49.083333,6.283333,1.39
+ Ars-sur-Moselle ,ARS SUR MOSELLE ,57130,57032,41,49.083333,6.066667,1.71
+ Arzviller ,ARZVILLER ,57400,57033,41,48.716667,7.166667,1.93
+ Aspach ,ASPACH ,57790,57034,41,48.65,6.966667,2.31
+ Assenoncourt ,ASSENONCOURT ,57810,57035,41,48.766667,6.8,1.64
+ Attilloncourt ,ATTILLONCOURT ,57170,57036,41,48.783333,6.383333,1.87
+ Aube ,AUBE ,57580,57037,41,49.033333,6.333333,1.59
+ Audun-le-Tiche ,AUDUN LE TICHE ,57390,57038,41,49.466667,5.95,2.42
+ Augny ,AUGNY ,57176,57039,41,49.066667,6.116667,1.55
+ Aulnois-sur-Seille ,AULNOIS SUR SEILLE ,57590,57040,41,48.866667,6.316667,1.48
+ Aumetz ,AUMETZ ,57710,57041,41,49.416667,5.933333,2.13
+ Avricourt ,AVRICOURT ,57810,57042,41,48.65,6.8,2.31
+ Ay-sur-Moselle ,AY SUR MOSELLE ,57300,57043,41,49.25,6.2,1.29
+ Azoudange ,AZOUDANGE ,57810,57044,41,48.733333,6.816667,1.83
+ Bacourt ,BACOURT ,57590,57045,41,48.933333,6.416667,0.87
+ Baerenthal ,BAERENTHAL ,57230,57046,41,48.983333,7.516667,2.83
+ Bambiderstroff ,BAMBIDERSTROFF ,57690,57047,41,49.1,6.583333,1.07
+ Bannay ,BANNAY ,57220,57048,41,49.133333,6.466667,0.88
+ Ban-Saint-Martin ,BAN SAINT MARTIN ,57050,57049,41,49.116667,6.15,1.45
+ Barchain ,BARCHAIN ,57830,57050,41,48.7,6.966667,2.02
+ Baronville ,BARONVILLE ,57340,57051,41,48.933333,6.6,0.67
+ Bassing ,BASSING ,57260,57053,41,48.866667,6.8,1.4
+ Baudrecourt ,BAUDRECOURT ,57580,57054,41,48.966667,6.45,0.82
+ Bazoncourt ,BAZONCOURT ,57530,57055,41,49.05,6.366667,0.85
+ Bébing ,BEBING ,57830,57056,41,48.7,7,2.02
+ Béchy ,BECHY ,57580,57057,41,48.983333,6.383333,0.72
+ Behren-lès-Forbach ,BEHREN LES FORBACH ,57460,57058,41,49.166667,6.95,1.05
+ Bellange ,BELLANGE ,57340,57059,41,48.9,6.583333,0.86
+ Bénestroff ,BENESTROFF ,57670,57060,41,48.916667,6.75,1.78
+ Béning-lès-Saint-Avold ,BENING LES SAINT AVOLD,57800,57061,41,49.133333,6.833333,0.69
+ Berg-sur-Moselle ,BERG SUR MOSELLE ,57570,57062,41,49.433333,6.316667,2.22
+ Bérig-Vintrange ,BERIG VINTRANGE ,57660,57063,41,48.966667,6.7,1.86
+ Berling ,BERLING ,57370,57064,41,48.8,7.25,1.99
+ Bermering ,BERMERING ,57340,57065,41,48.933333,6.7,1.41
+ Berthelming ,BERTHELMING ,57930,57066,41,48.816667,7,1.35
+ Bertrange ,BERTRANGE ,57310,57067,41,49.3,6.183333,1.45
+ Berviller-en-Moselle ,BERVILLER EN MOSELLE ,57550,57069,41,49.266667,6.65,1.26
+ Bettange ,BETTANGE ,57220,57070,41,49.233333,6.483333,1.07
+ Bettborn ,BETTBORN ,57930,57071,41,48.8,7.016667,1.44
+ Bettelainville ,BETTELAINVILLE ,57640,57072,41,49.233333,6.3,1.19
+ Betting-lès-Saint-Avold ,BETTING LES SAINT AVOLD,57800,57073,41,49.116667,6.816667,1.21
+ Bettviller ,BETTVILLER ,57410,57074,41,49.083333,7.283333,2.1
+ Beux ,BEUX ,57580,57075,41,49,6.316667,1.76
+ Beyren-lès-Sierck ,BEYREN LES SIERCK ,57570,57076,41,49.466667,6.283333,2.42
+ Bezange-la-Petite ,BEZANGE LA PETITE ,57630,57077,41,48.733333,6.616667,1.83
+ Bibiche ,BIBICHE ,57320,57079,41,49.333333,6.483333,1.65
+ Bickenholtz ,BICKENHOLTZ ,57370,57080,41,48.8,7.166667,1.73
+ Bidestroff ,BIDESTROFF ,57260,57081,41,48.85,6.783333,1.15
+ Biding ,BIDING ,57660,57082,41,49.05,6.783333,0.74
+ Bining ,BINING ,57410,57083,41,49.033333,7.25,1.99
+ Bioncourt ,BIONCOURT ,57170,57084,41,48.783333,6.366667,2.08
+ Bionville-sur-Nied ,BIONVILLE SUR NIED ,57220,57085,41,49.1,6.483333,1.31
+ Bisten-en-Lorraine ,BISTEN EN LORRAINE ,57220,57087,41,49.166667,6.6,1.67
+ Bistroff ,BISTROFF ,57660,57088,41,49,6.716667,1.31
+ Bitche ,BITCHE ,57230,57089,41,49.05,7.433333,2.57
+ Blanche-Église ,BLANCHE EGLISE ,57260,57090,41,48.8,6.666667,1.44
+ Bliesbruck ,BLIESBRUCK ,57200,57091,41,49.116667,7.183333,1.78
+ Blies-Ébersing ,BLIES EBERSING ,57200,57092,41,49.116667,7.15,1.68
+ Blies-Guersviller ,BLIES GUERSVILLER ,57200,57093,41,49.15,7.083333,1.47
+ Boucheporn ,BOUCHEPORN ,57220,57095,41,49.15,6.6,1.73
+ Boulange ,BOULANGE ,57113,57096,41,49.383333,5.95,2.08
+ Boulay-Moselle ,BOULAY MOSELLE ,57220,57097,41,49.183333,6.5,0.78
+ Bourgaltroff ,BOURGALTROFF ,57260,57098,41,48.866667,6.75,1.06
+ Bourdonnay ,BOURDONNAY ,57810,57099,41,48.716667,6.716667,1.93
+ Bourscheid ,BOURSCHEID ,57370,57100,41,48.766667,7.183333,1.78
+ Bousbach ,BOUSBACH ,57460,57101,41,49.15,6.95,1.38
+ Bousse ,BOUSSE ,57310,57102,41,49.283333,6.2,1.36
+ Bousseviller ,BOUSSEVILLER ,57230,57103,41,49.116667,7.466667,2.67
+ Boust ,BOUST ,57570,57104,41,49.433333,6.183333,2.22
+ Boustroff ,BOUSTROFF ,57380,57105,41,49,6.633333,1.02
+ Bouzonville ,BOUZONVILLE ,57320,57106,41,49.3,6.533333,1.45
+ Bréhain ,BREHAIN ,57340,57107,41,48.916667,6.533333,1.36
+ Breidenbach ,BREIDENBACH ,57720,57108,41,49.133333,7.416667,2.51
+ Breistroff-la-Grande ,BREISTROFF LA GRANDE ,57570,57109,41,49.45,6.216667,2.32
+ Brettnach ,BRETTNACH ,57320,57110,41,49.25,6.566667,1.16
+ Bronvaux ,BRONVAUX ,57159,57111,41,49.2,6.083333,1.66
+ Brouck ,BROUCK ,57220,57112,41,49.133333,6.516667,0.88
+ Brouderdorff ,BROUDERDORFF ,57116,57113,41,48.7,7.1,2.02
+ Brouviller ,BROUVILLER ,57119,57114,41,48.766667,7.15,1.68
+ Brulange ,BRULANGE ,57340,57115,41,48.966667,6.55,1.31
+ Buchy ,BUCHY ,57420,57116,41,48.983333,6.283333,1.03
+ Buding ,BUDING ,57920,57117,41,49.333333,6.316667,1.65
+ Budling ,BUDLING ,57110,57118,41,49.35,6.35,1.88
+ Buhl-Lorraine ,BUHL LORRAINE ,57400,57119,41,48.716667,7.083333,1.93
+ Burtoncourt ,BURTONCOURT ,57220,57121,41,49.216667,6.416667,1.24
+ Cappel ,CAPPEL ,57450,57122,41,49.066667,6.85,1.31
+ Carling ,CARLING ,57490,57123,41,49.166667,6.716667,1
+ Cattenom ,CATTENOM ,57570,57124,41,49.416667,6.25,2.13
+ Chailly-lès-Ennery ,CHAILLY LES ENNERY ,57365,57125,41,49.2,6.233333,1.19
+ Chambrey ,CHAMBREY ,57170,57126,41,48.783333,6.466667,1.54
+ Chanville ,CHANVILLE ,57580,57127,41,49.05,6.433333,0.97
+ Charleville-sous-Bois ,CHARLEVILLE SOUS BOIS ,57220,57128,41,49.183333,6.416667,1.15
+ Charly-Oradour ,CHARLY ORADOUR ,57640,57129,41,49.166667,6.25,1.14
+ Château-Bréhain ,CHATEAU BREHAIN ,57340,57130,41,48.9,6.516667,1.67
+ Château-Rouge ,CHATEAU ROUGE ,57320,57131,41,49.283333,6.6,1.36
+ Château-Salins ,CHATEAU SALINS ,57170,57132,41,48.816667,6.5,1.35
+ Château-Voué ,CHATEAU VOUE ,57170,57133,41,48.85,6.616667,1.38
+ Châtel-Saint-Germain ,CHATEL SAINT GERMAIN ,57160,57134,41,49.116667,6.083333,1.66
+ Chémery ,CHEMERY ,57380,57135,41,49,6.583333,0.29
+ Chémery-les-Deux ,CHEMERY LES DEUX ,57320,57136,41,49.3,6.433333,1.45
+ Cheminot ,CHEMINOT ,57420,57137,41,48.933333,6.133333,1.5
+ Chenois ,CHENOIS ,57580,57138,41,48.966667,6.5,1.59
+ Chérisey ,CHERISEY ,57420,57139,41,49.016667,6.233333,1.19
+ Chesny ,CHESNY ,57245,57140,41,49.05,6.25,1.14
+ Chicourt ,CHICOURT ,57590,57141,41,48.916667,6.5,1.84
+ Chieulles ,CHIEULLES ,57070,57142,41,49.166667,6.233333,1.21
+ Clouange ,CLOUANGE ,57120,57143,41,49.266667,6.1,1.61
+ Cocheren ,COCHEREN ,57800,57144,41,49.15,6.85,0.86
+ Coincy ,COINCY ,57530,57145,41,49.1,6.283333,1.36
+ Coin-lès-Cuvry ,COIN LES CUVRY ,57420,57146,41,49.033333,6.15,1.45
+ Coin-sur-Seille ,COIN SUR SEILLE ,57420,57147,41,49,6.166667,1.4
+ Colligny ,COLLIGNY ,57530,57148,41,49.1,6.333333,0.88
+ Colmen ,COLMEN ,57320,57149,41,49.35,6.533333,1.74
+ Condé-Northen ,CONDE NORTHEN ,57220,57150,41,49.166667,6.433333,0.94
+ Conthil ,CONTHIL ,57340,57151,41,48.9,6.65,0.86
+ Contz-les-Bains ,CONTZ LES BAINS ,57480,57152,41,49.45,6.35,2.32
+ Corny-sur-Moselle ,CORNY SUR MOSELLE ,57680,57153,41,49.033333,6.066667,1.71
+ Coume ,COUME ,57220,57154,41,49.2,6.566667,1.16
+ Courcelles-Chaussy ,COURCELLES CHAUSSY ,57530,57155,41,49.116667,6.4,0.78
+ Courcelles-sur-Nied ,COURCELLES SUR NIED ,57530,57156,41,49.066667,6.3,1.2
+ Craincourt ,CRAINCOURT ,57590,57158,41,48.883333,6.316667,1.44
+ Créhange ,CREHANGE ,57690,57159,41,49.05,6.583333,1.47
+ Cutting ,CUTTING ,57260,57161,41,48.85,6.833333,1.82
+ Cuvry ,CUVRY ,57420,57162,41,49.033333,6.166667,1.4
+ Dabo ,DABO ,57850,57163,41,48.65,7.233333,2.31
+ Dalem ,DALEM ,57550,57165,41,49.233333,6.6,1.07
+ Dalhain ,DALHAIN ,57340,57166,41,48.883333,6.55,1.26
+ Dalstein ,DALSTEIN ,57320,57167,41,49.3,6.4,1.77
+ Danne-et-Quatre-Vents ,DANNE ET QUATRE VENTS,57370,57168,41,48.766667,7.3,2.15
+ Dannelbourg ,DANNELBOURG ,57820,57169,41,48.733333,7.233333,1.94
+ Dédeling ,DEDELING ,57170,57170,41,48.85,6.616667,1.38
+ Delme ,DELME ,57590,57171,41,48.883333,6.4,0.96
+ Denting ,DENTING ,57220,57172,41,49.2,6.533333,0.87
+ Desseling ,DESSELING ,57930,57173,41,48.783333,6.833333,2.35
+ Destry ,DESTRY ,57340,57174,41,48.95,6.583333,0.7
+ Diane-Capelle ,DIANE CAPELLE ,57830,57175,41,48.733333,6.933333,1.83
+ Diebling ,DIEBLING ,57980,57176,41,49.116667,6.933333,1
+ Dieuze ,DIEUZE ,57260,57177,41,48.816667,6.716667,1.35
+ Diffembach-lès-Hellimer ,DIFFEMBACH LES HELLIMER ,57660,57178,41,49,6.833333,1.09
+ Distroff ,DISTROFF ,57134,57179,41,49.333333,6.266667,1.65
+ Dolving ,DOLVING ,57400,57180,41,48.766667,7.016667,1.64
+ Donjeux ,DONJEUX ,57590,57182,41,48.883333,6.4,0.96
+ Donnelay ,DONNELAY ,57810,57183,41,48.75,6.683333,1.73
+ Dornot ,DORNOT ,57130,57184,41,49.05,6.05,1.76
+ Ebersviller ,EBERSVILLER ,57320,57186,41,49.283333,6.4,1.79
+ Éblange ,EBLANGE ,57220,57187,41,49.216667,6.483333,0.97
+ Éguelshardt ,EGUELSHARDT ,57230,57188,41,49.016667,7.5,2.77
+ Eincheville ,EINCHEVILLE ,57340,57189,41,48.983333,6.6,1.04
+ Elvange ,ELVANGE ,57690,57190,41,49.066667,6.55,0.59
+ Elzange ,ELZANGE ,57110,57191,41,49.366667,6.283333,1.84
+ Enchenberg ,ENCHENBERG ,57410,57192,41,49.016667,7.333333,2.25
+ Ennery ,ENNERY ,57365,57193,41,49.216667,6.216667,1.24
+ Entrange ,ENTRANGE ,57330,57194,41,49.416667,6.1,2.13
+ Erching ,ERCHING ,57136,57196,41,49.116667,7.266667,2.04
+ Ernestviller ,ERNESTVILLER ,57510,57197,41,49.066667,6.966667,1.11
+ Erstroff ,ERSTROFF ,57660,57198,41,48.983333,6.766667,0.66
+ Escherange ,ESCHERANGE ,57330,57199,41,49.416667,6.066667,2.13
+ Les Étangs ,LES ETANGS ,57530,57200,41,49.15,6.383333,1.01
+ Etting ,ETTING ,57410,57201,41,49.033333,7.183333,1.78
+ Etzling ,ETZLING ,57460,57202,41,49.183333,6.966667,1.38
+ Évrange ,EVRANGE ,57570,57203,41,49.5,6.2,2.61
+ Failly ,FAILLY ,57640,57204,41,49.15,6.266667,1.08
+ Falck ,FALCK ,57550,57205,41,49.233333,6.633333,1.07
+ Fameck ,FAMECK ,57290,57206,41,49.3,6.116667,1.55
+ Farébersviller ,FAREBERSVILLER ,57450,57207,41,49.116667,6.85,0.74
+ Farschviller ,FARSCHVILLER ,57450,57208,41,49.1,6.9,1.16
+ Faulquemont ,FAULQUEMONT ,57380,57209,41,49.05,6.6,0.93
+ Fénétrange ,FENETRANGE ,57930,57210,41,48.85,7.016667,1.26
+ Fèves ,FEVES ,57210,57211,41,49.2,6.116667,1.55
+ Féy ,FEY ,57420,57212,41,49.033333,6.1,1.78
+ Filstroff ,FILSTROFF ,57320,57213,41,49.316667,6.55,1.55
+ Fixem ,FIXEM ,57570,57214,41,49.433333,6.266667,2.22
+ Flastroff ,FLASTROFF ,57320,57215,41,49.366667,6.533333,1.84
+ Fleisheim ,FLEISHEIM ,57119,57216,41,48.783333,7.166667,1.73
+ Flétrange ,FLETRANGE ,57690,57217,41,49.066667,6.566667,0.77
+ Fleury ,FLEURY ,57420,57218,41,49.033333,6.2,1.29
+ Flévy ,FLEVY ,57365,57219,41,49.233333,6.25,1.24
+ Flocourt ,FLOCOURT ,57580,57220,41,48.966667,6.416667,0.62
+ Florange ,FLORANGE ,57190,57221,41,49.333333,6.116667,1.65
+ Folkling ,FOLKLING ,57600,57222,41,49.15,6.9,0.96
+ Folschviller ,FOLSCHVILLER ,57730,57224,41,49.066667,6.683333,1.59
+ Fonteny ,FONTENY ,57590,57225,41,48.883333,6.466667,1.19
+ Fontoy ,FONTOY ,57650,57226,41,49.35,6,1.92
+ Forbach ,FORBACH ,57600,57227,41,49.183333,6.9,0.9
+ Fossieux ,FOSSIEUX ,57590,57228,41,48.85,6.333333,1.31
+ Foulcrey ,FOULCREY ,57830,57229,41,48.633333,6.866667,2.41
+ Fouligny ,FOULIGNY ,57220,57230,41,49.1,6.5,1.31
+ Foville ,FOVILLE ,57420,57231,41,48.916667,6.333333,2.03
+ Francaltroff ,FRANCALTROFF ,57670,57232,41,48.966667,6.8,1.26
+ Fraquelfing ,FRAQUELFING ,57790,57233,41,48.633333,6.983333,2.41
+ Frauenberg ,FRAUENBERG ,57200,57234,41,49.133333,7.133333,1.63
+ Freistroff ,FREISTROFF ,57320,57235,41,49.283333,6.483333,1.36
+ Frémery ,FREMERY ,57590,57236,41,48.916667,6.466667,1.3
+ Frémestroff ,FREMESTROFF ,57660,57237,41,49.016667,6.783333,0.53
+ Fresnes-en-Saulnois ,FRESNES EN SAULNOIS ,57170,57238,41,48.833333,6.433333,1.25
+ Freybouse ,FREYBOUSE ,57660,57239,41,49,6.766667,0.48
+ Fribourg ,FRIBOURG ,57810,57241,41,48.766667,6.85,1.64
+ Gandrange ,GANDRANGE ,57175,57242,41,49.266667,6.133333,1.5
+ Garche ,GARCHE ,57100,57243,41,49.4,6.2,2.03
+ Garrebourg ,GARREBOURG ,57820,57244,41,48.716667,7.233333,1.94
+ Gavisse ,GAVISSE ,57570,57245,41,49.433333,6.283333,2.22
+ Gélucourt ,GELUCOURT ,57260,57246,41,48.766667,6.716667,1.64
+ Gerbécourt ,GERBECOURT ,57170,57247,41,48.85,6.516667,1.15
+ Givrycourt ,GIVRYCOURT ,57670,57248,41,48.916667,6.916667,1.08
+ Glatigny ,GLATIGNY ,57530,57249,41,49.15,6.333333,1.04
+ Goetzenbruck ,GOETZENBRUCK ,57620,57250,41,48.983333,7.383333,2.41
+ Goin ,GOIN ,57420,57251,41,48.983333,6.216667,1.24
+ Gomelange ,GOMELANGE ,57220,57252,41,49.25,6.466667,1.16
+ Gondrexange ,GONDREXANGE ,57142,57253,41,48.683333,6.933333,2.12
+ Gorze ,GORZE ,57680,57254,41,49.05,6,1.92
+ Gosselming ,GOSSELMING ,57930,57255,41,48.783333,7,1.54
+ Gravelotte ,GRAVELOTTE ,57130,57256,41,49.116667,6.016667,1.87
+ Grémecey ,GREMECEY ,57170,57257,41,48.8,6.416667,1.44
+ Gréning ,GRENING ,57660,57258,41,48.966667,6.85,1.67
+ Grindorff ,GRINDORFF ,57480,57259,41,49.383333,6.516667,1.94
+ Grosbliederstroff ,GROSBLIEDERSTROFF ,57520,57260,41,49.15,7.016667,1.26
+ Gros-Réderching ,GROS REDERCHING ,57410,57261,41,49.066667,7.216667,1.89
+ Grostenquin ,GROSTENQUIN ,57660,57262,41,48.983333,6.733333,1.12
+ Grundviller ,GRUNDVILLER ,57510,57263,41,49.05,6.966667,1.11
+ Guebenhouse ,GUEBENHOUSE ,57510,57264,41,49.083333,6.95,1.1
+ Guébestroff ,GUEBESTROFF ,57260,57265,41,48.833333,6.716667,1.25
+ Guéblange-lès-Dieuze ,GUEBLANGE LES DIEUZE ,57260,57266,41,48.766667,6.7,1.64
+ Le Val-de-Guéblange ,LE VAL DE GUEBLANGE,57430,57267,41,48.966667,6.966667,1.11
+ Guébling ,GUEBLING ,57260,57268,41,48.866667,6.733333,1.06
+ Guénange ,GUENANGE ,57310,57269,41,49.3,6.183333,1.45
+ Guenviller ,GUENVILLER ,57470,57271,41,49.1,6.8,1
+ Guermange ,GUERMANGE ,57810,57272,41,48.8,6.8,1.44
+ Guerstling ,GUERSTLING ,57320,57273,41,49.333333,6.583333,1.65
+ Guerting ,GUERTING ,57880,57274,41,49.183333,6.616667,1.14
+ Guessling-Hémering ,GUESSLING HEMERING ,57380,57275,41,49.033333,6.65,1.44
+ Guinglange ,GUINGLANGE ,57690,57276,41,49.066667,6.516667,1.16
+ Guinkirchen ,GUINKIRCHEN ,57220,57277,41,49.2,6.45,0.87
+ Guinzeling ,GUINZELING ,57670,57278,41,48.883333,6.833333,0.96
+ Guirlange ,GUIRLANGE ,57220,57279,41,49.216667,6.466667,0.97
+ Guntzviller ,GUNTZVILLER ,57400,57280,41,48.716667,7.166667,1.93
+ Haboudange ,HABOUDANGE ,57340,57281,41,48.883333,6.616667,0.96
+ Hagen ,HAGEN ,57570,57282,41,49.5,6.166667,2.61
+ Hagondange ,HAGONDANGE ,57300,57283,41,49.25,6.166667,1.4
+ Hallering ,HALLERING ,57690,57284,41,49.116667,6.55,0.89
+ Halling-lès-Boulay ,HALLING LES BOULAY ,57220,57285,41,49.15,6.516667,0.66
+ Halstroff ,HALSTROFF ,57480,57286,41,49.4,6.483333,2.03
+ Basse-Ham ,BASSE HAM ,57110,57287,41,49.383333,6.25,1.94
+ Ham-sous-Varsberg ,HAM SOUS VARSBERG ,57880,57288,41,49.183333,6.633333,0.78
+ Hambach ,HAMBACH ,57910,57289,41,49.066667,7.033333,1.31
+ Hampont ,HAMPONT ,57170,57290,41,48.833333,6.583333,1.25
+ Hangviller ,HANGVILLER ,57370,57291,41,48.816667,7.233333,1.94
+ Hannocourt ,HANNOCOURT ,57590,57292,41,48.9,6.466667,1.21
+ Han-sur-Nied ,HAN SUR NIED ,57580,57293,41,48.983333,6.433333,0.56
+ Hanviller ,HANVILLER ,57230,57294,41,49.1,7.466667,2.67
+ Haraucourt-sur-Seille ,HARAUCOURT SUR SEILLE ,57630,57295,41,48.8,6.6,1.44
+ Hargarten-aux-Mines ,HARGARTEN AUX MINES ,57550,57296,41,49.216667,6.6,1.36
+ Harprich ,HARPRICH ,57340,57297,41,48.966667,6.65,0.93
+ Harreberg ,HARREBERG ,57870,57298,41,48.666667,7.166667,2.22
+ Hartzviller ,HARTZVILLER ,57870,57299,41,48.666667,7.083333,2.22
+ Haselbourg ,HASELBOURG ,57850,57300,41,48.683333,7.2,2.12
+ Haspelschiedt ,HASPELSCHIEDT ,57230,57301,41,49.083333,7.483333,2.72
+ Hattigny ,HATTIGNY ,57790,57302,41,48.633333,6.966667,2.41
+ Hauconcourt ,HAUCONCOURT ,57210,57303,41,49.216667,6.183333,1.49
+ Haut-Clocher ,HAUT CLOCHER ,57400,57304,41,48.75,7,1.73
+ Havange ,HAVANGE ,57650,57305,41,49.383333,6,1.94
+ Hayange ,HAYANGE ,57700,57306,41,49.333333,6.05,1.76
+ Hayes ,HAYES ,57530,57307,41,49.166667,6.366667,1.23
+ Hazembourg ,HAZEMBOURG ,57430,57308,41,48.966667,6.933333,1
+ Heining-lès-Bouzonville ,HEINING LES BOUZONVILLE ,57320,57309,41,49.316667,6.583333,1.55
+ Hellering-lès-Fénétrange ,HELLERING LES FENETRANGE ,57930,57310,41,48.816667,7.066667,1.42
+ Hellimer ,HELLIMER ,57660,57311,41,49,6.816667,0.77
+ Helstroff ,HELSTROFF ,57220,57312,41,49.15,6.483333,0.58
+ Hémilly ,HEMILLY ,57690,57313,41,49.066667,6.5,1.6
+ Héming ,HEMING ,57830,57314,41,48.7,6.95,2.02
+ Henridorff ,HENRIDORFF ,57820,57315,41,48.733333,7.216667,1.89
+ Henriville ,HENRIVILLE ,57450,57316,41,49.1,6.85,0.74
+ Hérange ,HERANGE ,57119,57317,41,48.766667,7.166667,1.73
+ Hermelange ,HERMELANGE ,57790,57318,41,48.683333,7.016667,2.12
+ Herny ,HERNY ,57580,57319,41,49,6.483333,1.19
+ Hertzing ,HERTZING ,57830,57320,41,48.683333,6.95,2.12
+ Hesse ,HESSE ,57400,57321,41,48.7,7.05,2.02
+ Hestroff ,HESTROFF ,57320,57322,41,49.266667,6.433333,1.38
+ Hettange-Grande ,HETTANGE GRANDE ,57330,57323,41,49.4,6.15,2.03
+ Hilbesheim ,HILBESHEIM ,57400,57324,41,48.766667,7.1,1.64
+ Hilsprich ,HILSPRICH ,57510,57325,41,49.016667,6.916667,0.97
+ Hinckange ,HINCKANGE ,57220,57326,41,49.183333,6.45,0.78
+ Holacourt ,HOLACOURT ,57380,57328,41,48.966667,6.516667,1.51
+ Holling ,HOLLING ,57220,57329,41,49.266667,6.5,1.26
+ Holving ,HOLVING ,57510,57330,41,49,6.95,1.25
+ Hombourg-Budange ,HOMBOURG BUDANGE ,57920,57331,41,49.3,6.333333,1.45
+ Hombourg-Haut ,HOMBOURG HAUT ,57470,57332,41,49.133333,6.766667,1
+ Hommarting ,HOMMARTING ,57400,57333,41,48.733333,7.15,1.83
+ Hommert ,HOMMERT ,57870,57334,41,48.683333,7.183333,2.12
+ Honskirch ,HONSKIRCH ,57670,57335,41,48.933333,6.983333,2.24
+ L'Hôpital ,L HOPITAL ,57490,57336,41,49.166667,6.733333,1
+ Hottviller ,HOTTVILLER ,57720,57338,41,49.066667,7.366667,2.36
+ Hultehouse ,HULTEHOUSE ,57820,57339,41,48.716667,7.266667,2.04
+ Hundling ,HUNDLING ,57990,57340,41,49.1,6.983333,1.16
+ Hunting ,HUNTING ,57480,57341,41,49.416667,6.333333,2.13
+ Ibigny ,IBIGNY ,57830,57342,41,48.65,6.9,2.31
+ Illange ,ILLANGE ,57110,57343,41,49.333333,6.183333,2.12
+ Imling ,IMLING ,57400,57344,41,48.716667,7.016667,1.93
+ Inglange ,INGLANGE ,57110,57345,41,49.35,6.3,1.74
+ Insming ,INSMING ,57670,57346,41,48.95,6.866667,0.79
+ Insviller ,INSVILLER ,57670,57347,41,48.883333,6.9,0.98
+ Ippling ,IPPLING ,57990,57348,41,49.1,7,1.22
+ Jallaucourt ,JALLAUCOURT ,57590,57349,41,48.833333,6.4,1.25
+ Jouy-aux-Arches ,JOUY AUX ARCHES ,57130,57350,41,49.066667,6.083333,1.66
+ Jury ,JURY ,57245,57351,41,49.066667,6.25,1.14
+ Jussy ,JUSSY ,57130,57352,41,49.1,6.083333,1.66
+ Juvelize ,JUVELIZE ,57630,57353,41,48.766667,6.65,1.64
+ Juville ,JUVILLE ,57590,57354,41,48.933333,6.35,1.18
+ Kalhausen ,KALHAUSEN ,57410,57355,41,49.016667,7.15,1.68
+ Kanfen ,KANFEN ,57330,57356,41,49.433333,6.1,2.22
+ Kappelkinger ,KAPPELKINGER ,57430,57357,41,48.966667,6.916667,1.3
+ Kédange-sur-Canner ,KEDANGE SUR CANNER ,57920,57358,41,49.316667,6.333333,1.55
+ Kemplich ,KEMPLICH ,57920,57359,41,49.333333,6.4,1.65
+ Kerbach ,KERBACH ,57460,57360,41,49.166667,6.966667,1.11
+ Kerling-lès-Sierck ,KERLING LES SIERCK ,57480,57361,41,49.4,6.35,2.03
+ Kerprich-aux-Bois ,KERPRICH AUX BOIS ,57830,57362,41,48.733333,6.966667,1.83
+ Kerprich-lès-Dieuze ,KERPRICH LES DIEUZE ,57260,57363,41,48.816667,6.7,1.35
+ Kirsch-lès-Sierck ,KIRSCH LES SIERCK ,57480,57364,41,49.45,6.4,2.32
+ Kirschnaumen ,KIRSCHNAUMEN ,57480,57365,41,49.4,6.433333,2.03
+ Kirviller ,KIRVILLER ,57430,57366,41,48.95,6.983333,1.16
+ Knutange ,KNUTANGE ,57240,57368,41,49.333333,6.033333,1.81
+ Koeking ,KOEKING ,57100,57369,41,49.4,6.216667,2.03
+ Koenigsmacker ,KOENIGSMACKER ,57110,57370,41,49.4,6.283333,2.03
+ Haute-Kontz ,HAUTE KONTZ ,57480,57371,41,49.45,6.316667,2.32
+ Kuntzig ,KUNTZIG ,57110,57372,41,49.35,6.233333,1.74
+ Lachambre ,LACHAMBRE ,57730,57373,41,49.083333,6.75,0.8
+ Lafrimbolle ,LAFRIMBOLLE ,57560,57374,41,48.6,7.016667,2.6
+ Lagarde ,LAGARDE ,57810,57375,41,48.7,6.7,2.02
+ Lambach ,LAMBACH ,57410,57376,41,49.033333,7.366667,2.36
+ Landange ,LANDANGE ,57830,57377,41,48.666667,6.966667,2.22
+ Landonvillers ,LANDONVILLERS ,57530,57378,41,49.133333,6.4,0.94
+ Landroff ,LANDROFF ,57340,57379,41,48.966667,6.616667,0.74
+ Laneuveville-lès-Lorquin ,LANEUVEVILLE LES LORQUIN ,57790,57380,41,48.65,7,2.31
+ Laneuveville-en-Saulnois ,LANEUVEVILLE EN SAULNOIS ,57590,57381,41,48.866667,6.433333,1.06
+ Langatte ,LANGATTE ,57400,57382,41,48.75,6.983333,1.73
+ Languimberg ,LANGUIMBERG ,57810,57383,41,48.75,6.866667,1.73
+ Laning ,LANING ,57660,57384,41,49.033333,6.766667,0.49
+ Laquenexy ,LAQUENEXY ,57530,57385,41,49.083333,6.316667,0.93
+ Laudrefang ,LAUDREFANG ,57114,57386,41,49.083333,6.633333,0.73
+ Laumesfeld ,LAUMESFELD ,57480,57387,41,49.366667,6.45,1.84
+ Launstroff ,LAUNSTROFF ,57480,57388,41,49.433333,6.5,2.22
+ Lelling ,LELLING ,57660,57389,41,49.05,6.716667,1.48
+ Lemberg ,LEMBERG ,57620,57390,41,49,7.383333,2.41
+ Lemoncourt ,LEMONCOURT ,57590,57391,41,48.866667,6.4,1.06
+ Lemud ,LEMUD ,57580,57392,41,49.033333,6.366667,1.08
+ Lengelsheim ,LENGELSHEIM ,57720,57393,41,49.1,7.416667,2.51
+ Léning ,LENING ,57670,57394,41,48.95,6.8,1.08
+ Lesse ,LESSE ,57580,57395,41,48.966667,6.516667,1.87
+ Lessy ,LESSY ,57160,57396,41,49.116667,6.1,1.61
+ Ley ,LEY ,57810,57397,41,48.733333,6.65,1.83
+ Leyviller ,LEYVILLER ,57660,57398,41,49.033333,6.833333,1.13
+ Lezey ,LEZEY ,57630,57399,41,48.75,6.633333,1.73
+ Lidrezing ,LIDREZING ,57340,57401,41,48.883333,6.7,1.54
+ Liederschiedt ,LIEDERSCHIEDT ,57230,57402,41,49.116667,7.5,2.77
+ Liéhon ,LIEHON ,57420,57403,41,49,6.25,1.14
+ Lindre-Basse ,LINDRE BASSE ,57260,57404,41,48.8,6.75,1.44
+ Lindre-Haute ,LINDRE HAUTE ,57260,57405,41,48.816667,6.75,1.35
+ Liocourt ,LIOCOURT ,57590,57406,41,48.9,6.35,0.88
+ Lixheim ,LIXHEIM ,57119,57407,41,48.783333,7.133333,1.63
+ Lixing-lès-Rouhling ,LIXING LES ROUHLING ,57520,57408,41,49.15,7,1.21
+ Lixing-lès-Saint-Avold ,LIXING LES SAINT AVOLD,57660,57409,41,49.033333,6.75,0.74
+ Lhor ,LHOR ,57670,57410,41,48.883333,6.866667,0.96
+ Lommerange ,LOMMERANGE ,57650,57411,41,49.333333,5.966667,2.02
+ Longeville-lès-Metz ,LONGEVILLE LES METZ ,57050,57412,41,49.116667,6.133333,1.5
+ Longeville-lès-Saint-Avold ,LONGEVILLE LES SAINT AVOLD,57740,57413,41,49.116667,6.633333,0.39
+ Lorquin ,LORQUIN ,57790,57414,41,48.666667,7,2.22
+ Lorry-Mardigny ,LORRY MARDIGNY ,57420,57416,41,48.983333,6.083333,1.9
+ Lostroff ,LOSTROFF ,57670,57417,41,48.85,6.85,1.15
+ Loudrefing ,LOUDREFING ,57670,57418,41,48.85,6.866667,1.16
+ Loupershouse ,LOUPERSHOUSE ,57510,57419,41,49.083333,6.916667,1.22
+ Loutremange ,LOUTREMANGE ,57220,57420,41,49.15,6.45,0.84
+ Loutzviller ,LOUTZVILLER ,57720,57421,41,49.15,7.383333,2.41
+ Louvigny ,LOUVIGNY ,57420,57422,41,48.966667,6.183333,1.35
+ Lubécourt ,LUBECOURT ,57170,57423,41,48.85,6.516667,1.15
+ Lucy ,LUCY ,57590,57424,41,48.95,6.466667,1.62
+ Luppy ,LUPPY ,57580,57425,41,48.983333,6.35,1.2
+ Luttange ,LUTTANGE ,57144,57426,41,49.266667,6.316667,1.26
+ Lutzelbourg ,LUTZELBOURG ,57820,57427,41,48.733333,7.25,1.99
+ Macheren ,MACHEREN ,57730,57428,41,49.1,6.766667,1.48
+ Mainvillers ,MAINVILLERS ,57380,57430,41,49.016667,6.533333,0.98
+ Maizeroy ,MAIZEROY ,57530,57431,41,49.083333,6.4,0.75
+ Maizery ,MAIZERY ,57530,57432,41,49.1,6.333333,0.88
+ Maizières-lès-Metz ,MAIZIERES LES METZ ,57210,57433,41,49.216667,6.15,1.45
+ Maizières-lès-Vic ,MAIZIERES LES VIC ,57810,57434,41,48.716667,6.766667,1.93
+ Malancourt-la-Montagne ,MALANCOURT LA MONTAGNE ,57860,57435,41,49.216667,6.066667,1.71
+ Malaucourt-sur-Seille ,MALAUCOURT SUR SEILLE ,57590,57436,41,48.833333,6.366667,1.25
+ Malling ,MALLING ,57480,57437,41,49.416667,6.3,2.13
+ Malroy ,MALROY ,57640,57438,41,49.183333,6.2,1.66
+ Manderen ,MANDEREN ,57480,57439,41,49.45,6.433333,2.32
+ Manhoué ,MANHOUE ,57590,57440,41,48.833333,6.35,1.27
+ Manom ,MANOM ,57100,57441,41,49.366667,6.183333,1.84
+ Many ,MANY ,57380,57442,41,49,6.516667,1.29
+ Marange-Silvange ,MARANGE SILVANGE ,57159,57443,41,49.216667,6.1,1.61
+ Marange-Zondrange ,MARANGE ZONDRANGE ,57690,57444,41,49.116667,6.533333,1.02
+ Marieulles ,MARIEULLES ,57420,57445,41,49,6.1,1.67
+ Marsal ,MARSAL ,57630,57448,41,48.8,6.6,1.44
+ Marsilly ,MARSILLY ,57530,57449,41,49.1,6.3,1.07
+ Marspich ,MARSPICH ,57700,57450,41,49.333333,6.083333,1.66
+ Marthille ,MARTHILLE ,57340,57451,41,48.916667,6.566667,0.81
+ La Maxe ,LA MAXE ,57140,57452,41,49.166667,6.2,1.84
+ Maxstadt ,MAXSTADT ,57660,57453,41,49.05,6.8,0.84
+ Mécleuves ,MECLEUVES ,57245,57454,41,49.05,6.266667,1.3
+ Mégange ,MEGANGE ,57220,57455,41,49.216667,6.433333,1.01
+ Meisenthal ,MEISENTHAL ,57960,57456,41,48.966667,7.35,2.3
+ Menskirch ,MENSKIRCH ,57320,57457,41,49.316667,6.416667,1.55
+ Merlebach ,MERLEBACH ,57800,57458,41,49.15,6.8,1.25
+ Merschweiller ,MERSCHWEILLER ,57480,57459,41,49.466667,6.416667,2.42
+ Merten ,MERTEN ,57550,57460,41,49.25,6.666667,1.16
+ Métairies-Saint-Quirin ,METAIRIES SAINT QUIRIN ,57560,57461,41,48.633333,7.033333,2.41
+ Metting ,METTING ,57370,57462,41,48.816667,7.216667,1.89
+ Metz ,METZ ,57050,57463,41,49.133333,6.166667,1.4
+ Metzeresche ,METZERESCHE ,57920,57464,41,49.3,6.316667,1.45
+ Metzervisse ,METZERVISSE ,57940,57465,41,49.316667,6.283333,1.55
+ Metzing ,METZING ,57980,57466,41,49.1,6.966667,1.5
+ Mey ,MEY ,57070,57467,41,49.133333,6.233333,1.19
+ Mittelbronn ,MITTELBRONN ,57370,57468,41,48.766667,7.216667,1.89
+ Mittersheim ,MITTERSHEIM ,57930,57469,41,48.866667,6.933333,1.06
+ Molring ,MOLRING ,57670,57470,41,48.883333,6.816667,0.96
+ Momerstroff ,MOMERSTROFF ,57220,57471,41,49.166667,6.533333,0.69
+ Moncheux ,MONCHEUX ,57420,57472,41,48.933333,6.35,2.14
+ Moncourt ,MONCOURT ,57810,57473,41,48.716667,6.633333,1.93
+ Mondelange ,MONDELANGE ,57300,57474,41,49.266667,6.166667,1.4
+ Monneren ,MONNEREN ,57920,57476,41,49.35,6.4,1.74
+ Montbronn ,MONTBRONN ,57410,57477,41,48.983333,7.316667,2.2
+ Montdidier ,MONTDIDIER ,57670,57478,41,48.933333,6.816667,0.7
+ Montenach ,MONTENACH ,57480,57479,41,49.416667,6.383333,2.13
+ Montigny-lès-Metz ,MONTIGNY LES METZ ,57158,57480,41,49.1,6.15,1.45
+ Montois-la-Montagne ,MONTOIS LA MONTAGNE ,57860,57481,41,49.216667,6.016667,1.87
+ Morhange ,MORHANGE ,57340,57483,41,48.916667,6.633333,0.77
+ Morsbach ,MORSBACH ,57600,57484,41,49.166667,6.866667,1.01
+ Morville-lès-Vic ,MORVILLE LES VIC ,57170,57485,41,48.816667,6.55,1.35
+ Morville-sur-Nied ,MORVILLE SUR NIED ,57590,57486,41,48.95,6.433333,1.26
+ Moulins-lès-Metz ,MOULINS LES METZ ,57160,57487,41,49.1,6.1,1.61
+ Mouterhouse ,MOUTERHOUSE ,57620,57489,41,48.983333,7.45,2.62
+ Moyenvic ,MOYENVIC ,57630,57490,41,48.783333,6.55,1.54
+ Moyeuvre-Grande ,MOYEUVRE GRANDE ,57250,57491,41,49.25,6.033333,1.81
+ Moyeuvre-Petite ,MOYEUVRE PETITE ,57250,57492,41,49.266667,6.016667,1.87
+ Mulcey ,MULCEY ,57260,57493,41,48.8,6.666667,1.44
+ Munster ,MUNSTER ,57670,57494,41,48.916667,6.9,0.9
+ Narbéfontaine ,NARBEFONTAINE ,57220,57495,41,49.133333,6.55,1.19
+ Nébing ,NEBING ,57670,57496,41,48.9,6.816667,0.86
+ Nelling ,NELLING ,57670,57497,41,48.966667,6.866667,0.89
+ Neufchef ,NEUFCHEF ,57700,57498,41,49.316667,6.016667,1.87
+ Neufgrange ,NEUFGRANGE ,57910,57499,41,49.066667,7.066667,1.42
+ Neufmoulins ,NEUFMOULINS ,57830,57500,41,48.683333,6.966667,2.12
+ Neufvillage ,NEUFVILLAGE ,57670,57501,41,48.933333,6.783333,1.24
+ Niderhoff ,NIDERHOFF ,57560,57504,41,48.633333,7.016667,2.41
+ Niderviller ,NIDERVILLER ,57116,57505,41,48.716667,7.116667,1.93
+ Niederstinzel ,NIEDERSTINZEL ,57930,57506,41,48.866667,7.033333,1.31
+ Niedervisse ,NIEDERVISSE ,57220,57507,41,49.166667,6.566667,1.17
+ Nilvange ,NILVANGE ,57240,57508,41,49.35,6.05,1.76
+ Nitting ,NITTING ,57790,57509,41,48.666667,7.033333,2.22
+ Noisseville ,NOISSEVILLE ,57117,57510,41,49.133333,6.283333,1.03
+ Norroy-le-Veneur ,NORROY LE VENEUR ,57140,57511,41,49.183333,6.1,1.61
+ Nouilly ,NOUILLY ,57117,57512,41,49.133333,6.266667,1.5
+ Nousseviller-lès-Bitche ,NOUSSEVILLER LES BITCHE ,57720,57513,41,49.1,7.366667,2.36
+ Nousseviller-Saint-Nabor ,NOUSSEVILLER SAINT NABOR ,57990,57514,41,49.116667,6.966667,1.39
+ Novéant-sur-Moselle ,NOVEANT SUR MOSELLE ,57680,57515,41,49.033333,6.05,1.76
+ Oberdorff ,OBERDORFF ,57320,57516,41,49.266667,6.6,1.3
+ Obergailbach ,OBERGAILBACH ,57720,57517,41,49.116667,7.216667,-1
+ Oberstinzel ,OBERSTINZEL ,57930,57518,41,48.8,7.033333,1.44
+ Obervisse ,OBERVISSE ,57220,57519,41,49.15,6.583333,1.49
+ Obreck ,OBRECK ,57170,57520,41,48.85,6.583333,1.15
+ Oeting ,OETING ,57600,57521,41,49.166667,6.916667,1.15
+ Oeutrange ,OEUTRANGE ,57100,57522,41,49.4,6.1,2.03
+ Ogy ,OGY ,57530,57523,41,49.1,6.316667,0.93
+ Ommeray ,OMMERAY ,57810,57524,41,48.716667,6.683333,1.93
+ Oriocourt ,ORIOCOURT ,57590,57525,41,48.866667,6.416667,1.06
+ Ormersviller ,ORMERSVILLER ,57720,57526,41,49.133333,7.333333,2.25
+ Orny ,ORNY ,57420,57527,41,49.016667,6.25,1.14
+ Oron ,ORON ,57590,57528,41,48.9,6.483333,1.5
+ Ottange ,OTTANGE ,57840,57529,41,49.433333,6.033333,2.22
+ Oudrenne ,OUDRENNE ,57110,57531,41,49.383333,6.316667,1.94
+ Pagny-lès-Goin ,PAGNY LES GOIN ,57420,57532,41,48.966667,6.216667,1.24
+ Pange ,PANGE ,57530,57533,41,49.083333,6.366667,0.77
+ Peltre ,PELTRE ,57245,57534,41,49.083333,6.233333,1.66
+ Petit-Réderching ,PETIT REDERCHING ,57410,57535,41,49.05,7.3,2.15
+ Petit-Tenquin ,PETIT TENQUIN ,57660,57536,41,48.983333,6.866667,1.83
+ Petite-Rosselle ,PETITE ROSSELLE ,57540,57537,41,49.2,6.833333,0.87
+ Pettoncourt ,PETTONCOURT ,57170,57538,41,48.783333,6.416667,1.54
+ Pévange ,PEVANGE ,57340,57539,41,48.9,6.616667,0.86
+ Phalsbourg ,PHALSBOURG ,57370,57540,41,48.766667,7.266667,2.04
+ Philippsbourg ,PHILIPPSBOURG ,57230,57541,41,48.983333,7.566667,2.98
+ Piblange ,PIBLANGE ,57220,57542,41,49.25,6.416667,1.51
+ Pierrevillers ,PIERREVILLERS ,57120,57543,41,49.216667,6.1,1.67
+ Plappeville ,PLAPPEVILLE ,57050,57545,41,49.133333,6.116667,1.55
+ Plesnois ,PLESNOIS ,57140,57546,41,49.166667,6.1,1.61
+ Pommérieux ,POMMERIEUX ,57420,57547,41,49,6.166667,1.4
+ Pontoy ,PONTOY ,57420,57548,41,49.016667,6.283333,1.09
+ Pontpierre ,PONTPIERRE ,57380,57549,41,49.05,6.65,1.59
+ Porcelette ,PORCELETTE ,57890,57550,41,49.15,6.65,1
+ Postroff ,POSTROFF ,57930,57551,41,48.85,7.083333,1.56
+ Pouilly ,POUILLY ,57420,57552,41,49.05,6.183333,1.35
+ Pournoy-la-Chétive ,POURNOY LA CHETIVE ,57420,57553,41,49.016667,6.15,1.45
+ Pournoy-la-Grasse ,POURNOY LA GRASSE ,57420,57554,41,49.016667,6.216667,1.24
+ Prévocourt ,PREVOCOURT ,57590,57555,41,48.916667,6.433333,0.8
+ Puttelange-lès-Thionville ,PUTTELANGE LES THIONVILLE ,57570,57557,41,49.483333,6.266667,2.51
+ Puttigny ,PUTTIGNY ,57170,57558,41,48.85,6.55,1.15
+ Puzieux ,PUZIEUX ,57590,57559,41,48.9,6.366667,0.86
+ Racrange ,RACRANGE ,57340,57560,41,48.916667,6.666667,0.85
+ Rahling ,RAHLING ,57410,57561,41,48.983333,7.216667,1.89
+ Ranguevaux ,RANGUEVAUX ,57700,57562,41,49.3,6.05,1.76
+ Raville ,RAVILLE ,57530,57563,41,49.083333,6.483333,2.19
+ Réchicourt-le-Château ,RECHICOURT LE CHATEAU ,57810,57564,41,48.666667,6.85,2.22
+ Rédange ,REDANGE ,57390,57565,41,49.483333,5.916667,2.51
+ Réding ,REDING ,57444,57566,41,48.75,7.1,1.73
+ Rémelfang ,REMELFANG ,57320,57567,41,49.266667,6.516667,1.26
+ Rémelfing ,REMELFING ,57200,57568,41,49.1,7.083333,1.47
+ Rémeling ,REMELING ,57480,57569,41,49.4,6.483333,2.03
+ Rémering-lès-Puttelange ,REMERING LES PUTTELANGE ,57510,57571,41,49.033333,6.933333,1
+ Rémilly ,REMILLY ,57580,57572,41,49.016667,6.4,0.67
+ Réning ,RENING ,57670,57573,41,48.95,6.85,0.74
+ Basse-Rentgen ,BASSE RENTGEN ,57570,57574,41,49.483333,6.2,2.51
+ Retonfey ,RETONFEY ,57117,57575,41,49.133333,6.3,1.5
+ Rettel ,RETTEL ,57480,57576,41,49.45,6.333333,2.32
+ Reyersviller ,REYERSVILLER ,57230,57577,41,49.033333,7.4,2.46
+ Rezonville ,REZONVILLE ,57130,57578,41,49.1,6,1.92
+ Rhodes ,RHODES ,57810,57579,41,48.75,6.9,1.73
+ Riche ,RICHE ,57340,57580,41,48.883333,6.616667,0.96
+ Richeling ,RICHELING ,57510,57581,41,49.033333,6.966667,1.11
+ Richemont ,RICHEMONT ,57270,57582,41,49.283333,6.166667,1.4
+ Richeval ,RICHEVAL ,57830,57583,41,48.633333,6.916667,2.41
+ Rimling ,RIMLING ,57136,57584,41,49.1,7.266667,2.04
+ Ritzing ,RITZING ,57480,57585,41,49.433333,6.466667,2.22
+ Rochonvillers ,ROCHONVILLERS ,57840,57586,41,49.416667,6.016667,2.13
+ Rodalbe ,RODALBE ,57340,57587,41,48.9,6.683333,1.18
+ Rodemack ,RODEMACK ,57570,57588,41,49.466667,6.233333,2.42
+ Rohrbach-lès-Bitche ,ROHRBACH LES BITCHE ,57410,57589,41,49.05,7.266667,2.04
+ Rolbing ,ROLBING ,57720,57590,41,49.166667,7.45,2.62
+ Rombas ,ROMBAS ,57120,57591,41,49.25,6.083333,1.66
+ Romelfing ,ROMELFING ,57930,57592,41,48.833333,7.016667,1.26
+ Roppeviller ,ROPPEVILLER ,57230,57594,41,49.1,7.5,2.77
+ Rorbach-lès-Dieuze ,RORBACH LES DIEUZE ,57260,57595,41,48.833333,6.833333,1.75
+ Rosbruck ,ROSBRUCK ,57800,57596,41,49.166667,6.85,1.25
+ Rosselange ,ROSSELANGE ,57780,57597,41,49.266667,6.066667,1.71
+ Rouhling ,ROUHLING ,57520,57598,41,49.133333,7,1.21
+ Roupeldange ,ROUPELDANGE ,57220,57599,41,49.2,6.466667,0.87
+ Roussy-le-Village ,ROUSSY LE VILLAGE ,57330,57600,41,49.45,6.166667,2.32
+ Rozérieulles ,ROZERIEULLES ,57160,57601,41,49.1,6.083333,1.66
+ Rurange-lès-Thionville ,RURANGE LES THIONVILLE ,57310,57602,41,49.283333,6.233333,1.72
+ Russange ,RUSSANGE ,57390,57603,41,49.483333,5.95,2.51
+ Rustroff ,RUSTROFF ,57480,57604,41,49.433333,6.366667,2.22
+ Saint-Avold ,SAINT AVOLD ,57500,57606,41,49.1,6.7,0.29
+ Saint-Bernard ,SAINT BERNARD ,57220,57608,41,49.25,6.383333,1.92
+ Saint-Epvre ,SAINT EPVRE ,57580,57609,41,48.966667,6.45,0.82
+ Saint-Georges ,SAINT GEORGES ,57830,57611,41,48.666667,6.933333,2.22
+ Saint-Hubert ,SAINT HUBERT ,57640,57612,41,49.233333,6.333333,1.69
+ Saint-Jean-de-Bassel ,SAINT JEAN DE BASSEL,57930,57613,41,48.8,6.983333,1.44
+ Saint-Jean-Kourtzerode ,SAINT JEAN KOURTZERODE ,57370,57614,41,48.75,7.183333,1.78
+ Saint-Jean-Rohrbach ,SAINT JEAN ROHRBACH ,57510,57615,41,49.033333,6.883333,1.55
+ Saint-Julien-lès-Metz ,SAINT JULIEN LES METZ,57070,57616,41,49.133333,6.2,1.62
+ Saint-Jure ,SAINT JURE ,57420,57617,41,48.933333,6.216667,1.24
+ Saint-Louis ,SAINT LOUIS ,57820,57618,41,48.716667,7.183333,2.06
+ Saint-Louis-lès-Bitche ,SAINT LOUIS LES BITCHE,57620,57619,41,48.983333,7.35,2.3
+ Sainte-Marie-aux-Chênes ,SAINTE MARIE AUX CHENES,57118,57620,41,49.2,6,1.92
+ Saint-Médard ,SAINT MEDARD ,57260,57621,41,48.816667,6.633333,1.93
+ Saint-Privat-la-Montagne ,SAINT PRIVAT LA MONTAGNE,57124,57622,41,49.183333,6.05,1.76
+ Saint-Quirin ,SAINT QUIRIN ,57560,57623,41,48.616667,7.066667,2.51
+ Sainte-Ruffine ,SAINTE RUFFINE ,57130,57624,41,49.1,6.1,1.61
+ Salonnes ,SALONNES ,57170,57625,41,48.783333,6.5,1.54
+ Sanry-lès-Vigy ,SANRY LES VIGY ,57640,57626,41,49.183333,6.283333,1.03
+ Sanry-sur-Nied ,SANRY SUR NIED ,57530,57627,41,49.05,6.35,0.86
+ Sarralbe ,SARRALBE ,57430,57628,41,49,7.016667,1.26
+ Sarraltroff ,SARRALTROFF ,57400,57629,41,48.783333,7.05,1.54
+ Sarrebourg ,SARREBOURG ,57400,57630,41,48.733333,7.05,1.83
+ Sarreguemines ,SARREGUEMINES ,57200,57631,41,49.1,7.05,1.53
+ Sarreinsming ,SARREINSMING ,57115,57633,41,49.083333,7.1,1.52
+ Saulny ,SAULNY ,57140,57634,41,49.166667,6.1,1.61
+ Schalbach ,SCHALBACH ,57370,57635,41,48.816667,7.183333,1.78
+ Schmittviller ,SCHMITTVILLER ,57410,57636,41,49,7.183333,1.78
+ Schneckenbusch ,SCHNECKENBUSCH ,57400,57637,41,48.7,7.083333,2.02
+ Schoeneck ,SCHOENECK ,57350,57638,41,49.216667,6.916667,1.22
+ Schorbach ,SCHORBACH ,57230,57639,41,49.083333,7.416667,2.51
+ Schwerdorff ,SCHWERDORFF ,57320,57640,41,49.366667,6.583333,1.84
+ Schweyen ,SCHWEYEN ,57720,57641,41,49.166667,7.4,2.46
+ Scy-Chazelles ,SCY CHAZELLES ,57160,57642,41,49.116667,6.116667,1.55
+ Secourt ,SECOURT ,57420,57643,41,48.95,6.283333,1.16
+ Seingbouse ,SEINGBOUSE ,57450,57644,41,49.116667,6.833333,1.03
+ Semécourt ,SEMECOURT ,57210,57645,41,49.183333,6.133333,1.5
+ Serémange-Erzange ,SEREMANGE ERZANGE ,57290,57647,41,49.316667,6.083333,1.66
+ Servigny-lès-Raville ,SERVIGNY LES RAVILLE ,57530,57648,41,49.083333,6.45,1.61
+ Servigny-lès-Sainte-Barbe ,SERVIGNY LES SAINTE BARBE,57640,57649,41,49.15,6.283333,1.03
+ Sierck-les-Bains ,SIERCK LES BAINS ,57480,57650,41,49.433333,6.35,2.22
+ Siersthal ,SIERSTHAL ,57410,57651,41,49.033333,7.35,2.3
+ Sillegny ,SILLEGNY ,57420,57652,41,48.983333,6.166667,1.4
+ Silly-en-Saulnois ,SILLY EN SAULNOIS ,57420,57653,41,48.983333,6.283333,1.03
+ Silly-sur-Nied ,SILLY SUR NIED ,57530,57654,41,49.116667,6.366667,0.77
+ Solgne ,SOLGNE ,57420,57655,41,48.966667,6.3,1.29
+ Sorbey ,SORBEY ,57580,57656,41,49.05,6.316667,1.99
+ Sotzeling ,SOTZELING ,57170,57657,41,48.866667,6.633333,1.65
+ Soucht ,SOUCHT ,57960,57658,41,48.966667,7.333333,2.25
+ Spicheren ,SPICHEREN ,57350,57659,41,49.2,6.966667,1.39
+ Stiring-Wendel ,STIRING WENDEL ,57350,57660,41,49.2,6.933333,1
+ Sturzelbronn ,STURZELBRONN ,57230,57661,41,49.05,7.583333,-1
+ Suisse ,SUISSE ,57340,57662,41,48.966667,6.583333,0.91
+ Talange ,TALANGE ,57525,57663,41,49.25,6.183333,1.35
+ Tarquimpol ,TARQUIMPOL ,57260,57664,41,48.783333,6.75,1.54
+ Tenteling ,TENTELING ,57980,57665,41,49.116667,6.933333,1
+ Terville ,TERVILLE ,57180,57666,41,49.35,6.15,1.74
+ Téterchen ,TETERCHEN ,57220,57667,41,49.233333,6.566667,1.35
+ Téting-sur-Nied ,TETING SUR NIED ,57114,57668,41,49.05,6.666667,1.35
+ Théding ,THEDING ,57450,57669,41,49.133333,6.9,1.45
+ Thicourt ,THICOURT ,57380,57670,41,48.983333,6.55,0.78
+ Thimonville ,THIMONVILLE ,57580,57671,41,48.95,6.4,0.89
+ Thionville ,THIONVILLE ,57100,57672,41,49.366667,6.166667,1.84
+ Thonville ,THONVILLE ,57380,57673,41,48.983333,6.566667,0.55
+ Tincry ,TINCRY ,57590,57674,41,48.9,6.416667,0.86
+ Torcheville ,TORCHEVILLE ,57670,57675,41,48.9,6.85,0.86
+ Tragny ,TRAGNY ,57580,57676,41,48.966667,6.383333,0.8
+ Trémery ,TREMERY ,57300,57677,41,49.25,6.25,1.79
+ Tressange ,TRESSANGE ,57710,57678,41,49.4,5.983333,2.03
+ Tritteling ,TRITTELING ,57114,57679,41,49.066667,6.616667,0.92
+ Tromborn ,TROMBORN ,57320,57681,41,49.266667,6.583333,1.26
+ Uckange ,UCKANGE ,57270,57683,41,49.3,6.15,1.45
+ Vahl-Ebersing ,VAHL EBERSING ,57660,57684,41,49.05,6.75,0.96
+ Vahl-lès-Bénestroff ,VAHL LES BENESTROFF ,57670,57685,41,48.916667,6.783333,1.21
+ Vahl-lés-Faulquemont ,VAHL LES FAULQUEMONT ,57380,57686,41,49.033333,6.616667,0.86
+ Vallerange ,VALLERANGE ,57340,57687,41,48.933333,6.683333,1.14
+ Valmestroff ,VALMESTROFF ,57110,57689,41,49.366667,6.266667,1.84
+ Valmont ,VALMONT ,57730,57690,41,49.083333,6.7,0.91
+ Valmunster ,VALMUNSTER ,57220,57691,41,49.25,6.5,1.16
+ Vannecourt ,VANNECOURT ,57340,57692,41,48.883333,6.55,1.26
+ Vantoux ,VANTOUX ,57070,57693,41,49.133333,6.233333,1.19
+ Vany ,VANY ,57070,57694,41,49.15,6.25,1.14
+ Varize ,VARIZE ,57220,57695,41,49.133333,6.45,1.02
+ Varsberg ,VARSBERG ,57880,57696,41,49.166667,6.633333,1.14
+ Vasperviller ,VASPERVILLER ,57560,57697,41,48.633333,7.066667,2.41
+ Vatimont ,VATIMONT ,57580,57698,41,48.983333,6.466667,0.93
+ Vaudreching ,VAUDRECHING ,57320,57700,41,49.283333,6.533333,1.36
+ Vaxy ,VAXY ,57170,57702,41,48.85,6.533333,1.15
+ Veckersviller ,VECKERSVILLER ,57370,57703,41,48.833333,7.183333,1.78
+ Veckring ,VECKRING ,57920,57704,41,49.333333,6.383333,1.65
+ Velving ,VELVING ,57220,57705,41,49.233333,6.533333,1.07
+ Vergaville ,VERGAVILLE ,57260,57706,41,48.833333,6.733333,1.25
+ Vernéville ,VERNEVILLE ,57130,57707,41,49.15,6,1.92
+ Verny ,VERNY ,57420,57708,41,49.016667,6.2,1.29
+ Vescheim ,VESCHEIM ,57370,57709,41,48.8,7.233333,1.94
+ Vibersviller ,VIBERSVILLER ,57670,57711,41,48.916667,6.933333,1.37
+ Vic-sur-Seille ,VIC SUR SEILLE ,57630,57712,41,48.783333,6.533333,1.54
+ Vieux-Lixheim ,VIEUX LIXHEIM ,57119,57713,41,48.783333,7.133333,1.63
+ Haute-Vigneulles ,HAUTE VIGNEULLES ,57690,57714,41,49.1,6.55,0.4
+ Vigny ,VIGNY ,57420,57715,41,48.966667,6.25,1.14
+ Vigy ,VIGY ,57640,57716,41,49.2,6.3,0.98
+ Viller ,VILLER ,57340,57717,41,48.983333,6.65,1.16
+ Villers-Stoncourt ,VILLERS STONCOURT ,57530,57718,41,49.05,6.433333,1.54
+ Villers-sur-Nied ,VILLERS SUR NIED ,57340,57719,41,48.916667,6.533333,1.36
+ Villing ,VILLING ,57550,57720,41,49.283333,6.633333,1.36
+ Vilsberg ,VILSBERG ,57370,57721,41,48.783333,7.25,1.99
+ Vionville ,VIONVILLE ,57130,57722,41,49.083333,5.95,2.08
+ Virming ,VIRMING ,57340,57723,41,48.933333,6.733333,1.96
+ Vitry-sur-Orne ,VITRY SUR ORNE ,57120,57724,41,49.266667,6.1,1.61
+ Vittersbourg ,VITTERSBOURG ,57670,57725,41,48.95,6.933333,1.48
+ Vittoncourt ,VITTONCOURT ,57580,57726,41,49.016667,6.433333,0.56
+ Viviers ,VIVIERS ,57590,57727,41,48.883333,6.433333,0.96
+ Voimhaut ,VOIMHAUT ,57580,57728,41,49.016667,6.416667,0.62
+ Volmérange-lès-Boulay ,VOLMERANGE LES BOULAY ,57220,57730,41,49.166667,6.45,0.7
+ Volmerange-les-Mines ,VOLMERANGE LES MINES ,57330,57731,41,49.45,6.083333,2.32
+ Volmunster ,VOLMUNSTER ,57720,57732,41,49.116667,7.35,2.3
+ Volstroff ,VOLSTROFF ,57940,57733,41,49.3,6.266667,1.45
+ Voyer ,VOYER ,57560,57734,41,48.65,7.083333,2.31
+ Vrémy ,VREMY ,57640,57735,41,49.166667,6.283333,1.03
+ Vry ,VRY ,57640,57736,41,49.183333,6.333333,1.34
+ Vulmont ,VULMONT ,57420,57737,41,48.916667,6.3,1.63
+ Waldhouse ,WALDHOUSE ,57720,57738,41,49.15,7.466667,2.67
+ Waldweistroff ,WALDWEISTROFF ,57320,57739,41,49.366667,6.5,1.84
+ Waldwisse ,WALDWISSE ,57480,57740,41,49.416667,6.533333,2.13
+ Walschbronn ,WALSCHBRONN ,57720,57741,41,49.15,7.483333,2.72
+ Walscheid ,WALSCHEID ,57870,57742,41,48.65,7.15,2.31
+ Waltembourg ,WALTEMBOURG ,57370,57743,41,48.75,7.2,1.84
+ Wiesviller ,WIESVILLER ,57200,57745,41,49.083333,7.166667,1.73
+ Willerwald ,WILLERWALD ,57430,57746,41,49.033333,7.033333,1.71
+ Wintersbourg ,WINTERSBOURG ,57119,57747,41,48.783333,7.183333,1.78
+ Wittring ,WITTRING ,57137,57748,41,49.05,7.133333,1.63
+ Voelfling-lès-Bouzonville ,VOELFLING LES BOUZONVILLE ,57320,57749,41,49.3,6.6,1.45
+ Woippy ,WOIPPY ,57140,57751,41,49.15,6.15,1.45
+ Woustviller ,WOUSTVILLER ,57145,57752,41,49.066667,7.016667,1.26
+ Wuisse ,WUISSE ,57170,57753,41,48.85,6.65,1.81
+ Xanrey ,XANREY ,57630,57754,41,48.75,6.566667,1.73
+ Xocourt ,XOCOURT ,57590,57755,41,48.9,6.383333,0.86
+ Xouaxange ,XOUAXANGE ,57830,57756,41,48.7,7,2.02
+ Zarbeling ,ZARBELING ,57340,57759,41,48.883333,6.683333,1.29
+ Zilling ,ZILLING ,57370,57761,41,48.783333,7.216667,1.89
+ Zimming ,ZIMMING ,57690,57762,41,49.116667,6.566667,1.02
+ Zommange ,ZOMMANGE ,57260,57763,41,48.816667,6.8,1.35
+ Zoufftgen ,ZOUFFTGEN ,57330,57764,41,49.45,6.133333,2.32
+ Diesen ,DIESEN ,57890,57765,41,49.183333,6.666667,1
+ Stuckange ,STUCKANGE ,57110,57767,41,49.333333,6.233333,1.65
+ Sarreinsberg ,SARREINSBERG ,57620,57900,41,48.966667,7.383333,2.41
+ Bisping ,BISPING ,57930,57901,41,48.8,6.883333,1.56
+ Vallerysthal ,VALLERYSTHAL ,57870,57904,41,48.683333,7.133333,2.12
+ Ébange ,EBANGE ,57190,57909,41,49.316667,6.133333,1.55
+ Marienau ,MARIENAU ,57600,57911,41,49.183333,6.866667,1.15
+ Bure ,BURE ,57710,57916,41,49.416667,6,-1
+ Achun ,ACHUN ,58110,58001,26,47.116667,3.666667,0.8
+ Alligny-Cosne ,ALLIGNY COSNE ,58200,58002,26,47.45,3.066667,1.76
+ Alligny-en-Morvan ,ALLIGNY EN MORVAN ,58230,58003,26,47.2,4.166667,2.93
+ Alluy ,ALLUY ,58110,58004,26,47.033333,3.633333,0.66
+ Amazy ,AMAZY ,58190,58005,26,47.383333,3.583333,1.36
+ Anlezy ,ANLEZY ,58270,58006,26,46.966667,3.5,0.95
+ Annay ,ANNAY ,58450,58007,26,47.533333,2.933333,2.33
+ Anthien ,ANTHIEN ,58800,58008,26,47.3,3.733333,1.17
+ Arbourse ,ARBOURSE ,58350,58009,26,47.25,3.233333,1.05
+ Arleuf ,ARLEUF ,58430,58010,26,47.05,4.016667,2.29
+ Armes ,ARMES ,58500,58011,26,47.466667,3.55,1.73
+ Arquian ,ARQUIAN ,58310,58012,26,47.55,2.983333,2.17
+ Arthel ,ARTHEL ,58700,58013,26,47.233333,3.416667,0.87
+ Arzembouy ,ARZEMBOUY ,58700,58014,26,47.25,3.366667,0.57
+ Asnan ,ASNAN ,58420,58015,26,47.316667,3.55,1.16
+ Asnois ,ASNOIS ,58190,58016,26,47.4,3.6,1.37
+ Aunay-en-Bazois ,AUNAY EN BAZOIS ,58110,58017,26,47.116667,3.7,0.94
+ Authiou ,AUTHIOU ,58700,58018,26,47.266667,3.416667,1.08
+ Avrée ,AVREE ,58170,58019,26,46.816667,3.866667,1.75
+ Avril-sur-Loire ,AVRIL SUR LOIRE ,58300,58020,26,46.816667,3.366667,1.75
+ Azy-le-Vif ,AZY LE VIF ,58240,58021,26,46.783333,3.233333,1.93
+ Balleray ,BALLERAY ,58130,58022,26,47.083333,3.283333,0.84
+ Bazoches ,BAZOCHES ,58190,58023,26,47.383333,3.783333,2.08
+ Bazolles ,BAZOLLES ,58110,58024,26,47.133333,3.6,1.3
+ Béard ,BEARD ,58160,58025,26,46.866667,3.333333,1.49
+ Beaulieu ,BEAULIEU ,58420,58026,26,47.25,3.533333,0.57
+ Beaumont-la-Ferrière ,BEAUMONT LA FERRIERE ,58700,58027,26,47.183333,3.216667,1.61
+ Beaumont-Sardolles ,BEAUMONT SARDOLLES ,58270,58028,26,46.933333,3.4,1.13
+ Beuvron ,BEUVRON ,58210,58029,26,47.366667,3.5,1.33
+ Biches ,BICHES ,58110,58030,26,47,3.65,0.84
+ Billy-Chevannes ,BILLY CHEVANNES ,58270,58031,26,47.016667,3.45,0.68
+ Billy-sur-Oisy ,BILLY SUR OISY ,58500,58032,26,47.483333,3.416667,1.82
+ Bitry ,BITRY ,58310,58033,26,47.483333,3.083333,1.82
+ Blismes ,BLISMES ,58120,58034,26,47.116667,3.816667,1.44
+ Bona ,BONA ,58330,58035,26,47.066667,3.416667,1.23
+ Bouhy ,BOUHY ,58310,58036,26,47.483333,3.166667,1.82
+ Brassy ,BRASSY ,58140,58037,26,47.266667,3.933333,1.93
+ Breugnon ,BREUGNON ,58460,58038,26,47.433333,3.45,1.55
+ Brèves ,BREVES ,58530,58039,26,47.416667,3.6,1.46
+ Brinay ,BRINAY ,58110,58040,26,47,3.7,0.94
+ Brinon-sur-Beuvron ,BRINON SUR BEUVRON ,58420,58041,26,47.283333,3.5,0.75
+ Bulcy ,BULCY ,58400,58042,26,47.25,3.033333,1.9
+ Bussy-la-Pesle ,BUSSY LA PESLE ,58420,58043,26,47.266667,3.466667,1.27
+ La Celle-sur-Loire ,LA CELLE SUR LOIRE,58440,58044,26,47.466667,2.933333,2.33
+ La Celle-sur-Nièvre ,LA CELLE SUR NIEVRE,58700,58045,26,47.2,3.216667,1.59
+ Cercy-la-Tour ,CERCY LA TOUR ,58340,58046,26,46.866667,3.65,1.49
+ Cervon ,CERVON ,58800,58047,26,47.233333,3.75,1.15
+ Cessy-les-Bois ,CESSY LES BOIS ,58220,58048,26,47.333333,3.2,1.34
+ Chalaux ,CHALAUX ,58140,58049,26,47.333333,3.916667,1.86
+ Challement ,CHALLEMENT ,58420,58050,26,47.316667,3.583333,1.57
+ Challuy ,CHALLUY ,58000,58051,26,46.95,3.15,1.4
+ Champallement ,CHAMPALLEMENT ,58420,58052,26,47.233333,3.483333,1.14
+ Champlemy ,CHAMPLEMY ,58210,58053,26,47.283333,3.35,1.35
+ Champlin ,CHAMPLIN ,58700,58054,26,47.233333,3.433333,1.06
+ Champvert ,CHAMPVERT ,58300,58055,26,46.833333,3.516667,1.66
+ Champvoux ,CHAMPVOUX ,58400,58056,26,47.133333,3.083333,1.69
+ Chantenay-Saint-Imbert ,CHANTENAY SAINT IMBERT ,58240,58057,26,46.733333,3.183333,2.2
+ La Chapelle-Saint-André ,LA CHAPELLE SAINT ANDRE,58210,58058,26,47.4,3.35,1.37
+ Charrin ,CHARRIN ,58300,58060,26,46.783333,3.6,1.93
+ Chasnay ,CHASNAY ,58350,58061,26,47.25,3.183333,1.3
+ Châteauneuf-Val-de-Bargis ,CHATEAUNEUF VAL DE BARGIS,58350,58064,26,47.283333,3.233333,1.05
+ Châtillon-en-Bazois ,CHATILLON EN BAZOIS ,58110,58065,26,47.05,3.666667,0.8
+ Châtin ,CHATIN ,58120,58066,26,47.1,3.866667,1.65
+ Chaulgnes ,CHAULGNES ,58400,58067,26,47.133333,3.1,1.62
+ Chaumard ,CHAUMARD ,58120,58068,26,47.133333,3.916667,1.86
+ Chazeuil ,CHAZEUIL ,58700,58070,26,47.283333,3.4,1.1
+ Chevenon ,CHEVENON ,58160,58072,26,46.916667,3.216667,1.22
+ Chevroches ,CHEVROCHES ,58500,58073,26,47.45,3.55,1.64
+ Chitry-les-Mines ,CHITRY LES MINES ,58800,58075,26,47.25,3.65,0.73
+ Chougny ,CHOUGNY ,58110,58076,26,47.083333,3.766667,1.25
+ Ciez ,CIEZ ,58220,58077,26,47.433333,3.166667,1.55
+ Cizely ,CIZELY ,58270,58078,26,47,3.483333,0.77
+ Clamecy ,CLAMECY ,58500,58079,26,47.45,3.516667,1.64
+ La Collancelle ,LA COLLANCELLE ,58800,58080,26,47.183333,3.65,0.9
+ Colméry ,COLMERY ,58350,58081,26,47.35,3.25,1.74
+ Corancy ,CORANCY ,58120,58082,26,47.1,3.95,2
+ Corbigny ,CORBIGNY ,58800,58083,26,47.25,3.666667,0.8
+ Corvol-d'Embernard ,CORVOL D EMBERNARD ,58210,58084,26,47.283333,3.4,1.06
+ Corvol-l'Orgueilleux ,CORVOL L ORGUEILLEUX ,58460,58085,26,47.433333,3.4,1.55
+ Cossaye ,COSSAYE ,58300,58087,26,46.75,3.466667,2.11
+ Coulanges-lès-Nevers ,COULANGES LES NEVERS ,58660,58088,26,47,3.183333,1.26
+ Couloutre ,COULOUTRE ,58220,58089,26,47.4,3.233333,1.37
+ Crux-la-Ville ,CRUX LA VILLE ,58330,58092,26,47.166667,3.516667,1.64
+ Cuncy-lès-Varzy ,CUNCY LES VARZY ,58210,58093,26,47.366667,3.466667,1.19
+ Dampierre-sous-Bouhy ,DAMPIERRE SOUS BOUHY ,58310,58094,26,47.5,3.133333,1.91
+ Decize ,DECIZE ,58300,58095,26,46.833333,3.466667,1.66
+ Devay ,DEVAY ,58300,58096,26,46.8,3.55,1.84
+ Diennes-Aubigny ,DIENNES AUBIGNY ,58340,58097,26,46.916667,3.583333,1.4
+ Dirol ,DIROL ,58190,58098,26,47.316667,3.65,0.92
+ Dommartin ,DOMMARTIN ,58120,58099,26,47.066667,3.85,1.58
+ Dompierre-sur-Héry ,DOMPIERRE SUR HERY ,58420,58100,26,47.266667,3.566667,0.81
+ Dompierre-sur-Nièvre ,DOMPIERRE SUR NIEVRE ,58350,58101,26,47.233333,3.25,1.15
+ Dornecy ,DORNECY ,58530,58103,26,47.433333,3.583333,1.55
+ Dornes ,DORNES ,58390,58104,26,46.716667,3.35,2.29
+ Druy-Parigny ,DRUY PARIGNY ,58160,58105,26,46.866667,3.366667,1.49
+ Dun-les-Places ,DUN LES PLACES ,58230,58106,26,47.283333,4,2.22
+ Dun-sur-Grandry ,DUN SUR GRANDRY ,58110,58107,26,47.083333,3.8,1.67
+ Empury ,EMPURY ,58140,58108,26,47.35,3.816667,1.44
+ Entrains-sur-Nohain ,ENTRAINS SUR NOHAIN ,58410,58109,26,47.45,3.25,1.64
+ Épiry ,EPIRY ,58800,58110,26,47.183333,3.716667,1.01
+ Fâchin ,FACHIN ,58430,58111,26,47,3.966667,2.07
+ La Fermeté ,LA FERMETE ,58160,58112,26,46.966667,3.333333,0.95
+ Fertrève ,FERTREVE ,58270,58113,26,46.966667,3.583333,1.94
+ Fléty ,FLETY ,58170,58114,26,46.783333,3.9,1.93
+ Fleury-sur-Loire ,FLEURY SUR LOIRE ,58240,58115,26,46.833333,3.316667,1.66
+ Fourchambault ,FOURCHAMBAULT ,58180,58117,26,47.016667,3.083333,1.69
+ Fours ,FOURS ,58250,58118,26,46.816667,3.716667,1.75
+ Frasnay-Reugny ,FRASNAY REUGNY ,58270,58119,26,47,3.516667,1.01
+ Gâcogne ,GACOGNE ,58140,58120,26,47.233333,3.866667,1.65
+ Garchizy ,GARCHIZY ,58600,58121,26,47.05,3.1,1.62
+ Garchy ,GARCHY ,58150,58122,26,47.266667,3.066667,1.76
+ Germenay ,GERMENAY ,58800,58123,26,47.283333,3.6,1.42
+ Gien-sur-Cure ,GIEN SUR CURE ,58230,58125,26,47.133333,4.1,2.64
+ Gimouille ,GIMOUILLE ,58470,58126,26,46.95,3.083333,1.69
+ Giry ,GIRY ,58700,58127,26,47.216667,3.366667,0.48
+ Gouloux ,GOULOUX ,58230,58129,26,47.25,4.083333,2.57
+ Grenois ,GRENOIS ,58420,58130,26,47.316667,3.533333,1.07
+ Guérigny ,GUERIGNY ,58130,58131,26,47.083333,3.2,1.19
+ Guipy ,GUIPY ,58420,58132,26,47.233333,3.583333,1.33
+ Héry ,HERY ,58800,58133,26,47.266667,3.583333,1.55
+ Imphy ,IMPHY ,58160,58134,26,46.933333,3.25,1.13
+ Lamenay-sur-Loire ,LAMENAY SUR LOIRE ,58300,58137,26,46.766667,3.566667,2.02
+ Langeron ,LANGERON ,58240,58138,26,46.816667,3.083333,1.75
+ Lanty ,LANTY ,58250,58139,26,46.816667,3.85,1.75
+ Larochemillay ,LAROCHEMILLAY ,58370,58140,26,46.883333,4,2.22
+ Lavault-de-Frétoy ,LAVAULT DE FRETOY ,58230,58141,26,47.1,4.016667,2.29
+ Limanton ,LIMANTON ,58290,58142,26,46.983333,3.75,1.15
+ Limon ,LIMON ,58270,58143,26,46.966667,3.383333,0.95
+ Livry ,LIVRY ,58240,58144,26,46.783333,3.083333,1.93
+ Lormes ,LORMES ,58140,58145,26,47.283333,3.816667,1.44
+ Lucenay-lès-Aix ,LUCENAY LES AIX ,58380,58146,26,46.7,3.466667,2.38
+ Lurcy-le-Bourg ,LURCY LE BOURG ,58700,58147,26,47.166667,3.383333,0.63
+ Luthenay-Uxeloup ,LUTHENAY UXELOUP ,58240,58148,26,46.85,3.266667,1.57
+ Luzy ,LUZY ,58170,58149,26,46.783333,3.966667,2.07
+ Lys ,LYS ,58190,58150,26,47.35,3.6,1.1
+ La Machine ,LA MACHINE ,58260,58151,26,46.883333,3.466667,1.4
+ Magny-Cours ,MAGNY COURS ,58470,58152,26,46.883333,3.15,1.41
+ Magny-Lormes ,MAGNY LORMES ,58800,58153,26,47.3,3.75,1.32
+ La Maison-Dieu ,LA MAISON DIEU ,58190,58154,26,47.416667,3.65,1.46
+ La Marche ,LA MARCHE ,58400,58155,26,47.133333,3.033333,1.9
+ Marigny-l'Église ,MARIGNY L EGLISE ,58140,58157,26,47.366667,3.933333,1.93
+ Mars-sur-Allier ,MARS SUR ALLIER ,58240,58158,26,46.866667,3.083333,1.69
+ Marigny-sur-Yonne ,MARIGNY SUR YONNE ,58800,58159,26,47.266667,3.65,0.73
+ Marzy ,MARZY ,58180,58160,26,46.983333,3.1,1.62
+ Maux ,MAUX ,58290,58161,26,47.05,3.783333,1.29
+ Ménestreau ,MENESTREAU ,58410,58162,26,47.416667,3.25,1.46
+ Menou ,MENOU ,58210,58163,26,47.366667,3.283333,1.8
+ Mesves-sur-Loire ,MESVES SUR LOIRE ,58400,58164,26,47.25,3,2.04
+ Metz-le-Comte ,METZ LE COMTE ,58190,58165,26,47.4,3.633333,1.37
+ Mhère ,MHERE ,58140,58166,26,47.2,3.85,1.58
+ Michaugues ,MICHAUGUES ,58420,58167,26,47.266667,3.516667,0.66
+ Millay ,MILLAY ,58170,58168,26,46.833333,3.983333,2.15
+ Moissy-Moulinot ,MOISSY MOULINOT ,58190,58169,26,47.316667,3.7,1
+ Monceaux-le-Comte ,MONCEAUX LE COMTE ,58190,58170,26,47.333333,3.666667,1.01
+ Montapas ,MONTAPAS ,58110,58171,26,47.083333,3.583333,1.17
+ Montaron ,MONTARON ,58250,58173,26,46.883333,3.75,1.4
+ Montenoison ,MONTENOISON ,58700,58174,26,47.216667,3.433333,1.02
+ Mont-et-Marré ,MONT ET MARRE ,58110,58175,26,47.083333,3.633333,0.66
+ Montigny-aux-Amognes ,MONTIGNY AUX AMOGNES ,58130,58176,26,47.016667,3.283333,1.4
+ Montigny-en-Morvan ,MONTIGNY EN MORVAN ,58120,58177,26,47.133333,3.85,1.58
+ Montigny-sur-Canne ,MONTIGNY SUR CANNE ,58340,58178,26,46.933333,3.65,1.13
+ Montreuillon ,MONTREUILLON ,58800,58179,26,47.166667,3.783333,1.71
+ Moraches ,MORACHES ,58420,58181,26,47.283333,3.55,0.75
+ Moulins-Engilbert ,MOULINS ENGILBERT ,58290,58182,26,46.983333,3.816667,1.44
+ Mouron-sur-Yonne ,MOURON SUR YONNE ,58800,58183,26,47.183333,3.733333,1.08
+ Moussy ,MOUSSY ,58700,58184,26,47.183333,3.45,1.25
+ Murlin ,MURLIN ,58700,58186,26,47.2,3.183333,1.99
+ Myennes ,MYENNES ,58440,58187,26,47.45,2.933333,2.33
+ Nannay ,NANNAY ,58350,58188,26,47.266667,3.2,1.19
+ Narcy ,NARCY ,58400,58189,26,47.233333,3.066667,1.76
+ Neuffontaines ,NEUFFONTAINES ,58190,58190,26,47.366667,3.75,1.49
+ Neuilly ,NEUILLY ,58420,58191,26,47.233333,3.5,0.88
+ Neuville-lès-Decize ,NEUVILLE LES DECIZE ,58300,58192,26,46.766667,3.316667,2.02
+ Neuvy-sur-Loire ,NEUVY SUR LOIRE ,58450,58193,26,47.516667,2.883333,2.54
+ Nevers ,NEVERS ,58000,58194,26,46.983333,3.166667,1.33
+ La Nocle-Maulaix ,LA NOCLE MAULAIX ,58250,58195,26,46.766667,3.783333,2.02
+ Nolay ,NOLAY ,58700,58196,26,47.116667,3.316667,1.15
+ Nuars ,NUARS ,58190,58197,26,47.383333,3.683333,1.28
+ Oisy ,OISY ,58500,58198,26,47.466667,3.45,1.73
+ Onlay ,ONLAY ,58370,58199,26,46.966667,3.9,1.79
+ Ouagne ,OUAGNE ,58500,58200,26,47.4,3.5,1.37
+ Oudan ,OUDAN ,58210,58201,26,47.35,3.35,1.1
+ Ougny ,OUGNY ,58110,58202,26,47.066667,3.716667,1.01
+ Oulon ,OULON ,58700,58203,26,47.2,3.4,0.62
+ Ourouër ,OUROUER ,58130,58204,26,47.066667,3.3,1.15
+ Parigny-la-Rose ,PARIGNY LA ROSE ,58210,58206,26,47.333333,3.433333,1.01
+ Parigny-les-Vaux ,PARIGNY LES VAUX ,58320,58207,26,47.083333,3.15,1.4
+ Pazy ,PAZY ,58800,58208,26,47.233333,3.633333,0.76
+ Perroy ,PERROY ,58220,58209,26,47.4,3.166667,1.37
+ Planchez ,PLANCHEZ ,58230,58210,26,47.133333,4.016667,2.29
+ Poil ,POIL ,58170,58211,26,46.866667,4.066667,2.5
+ Poiseux ,POISEUX ,58130,58212,26,47.116667,3.233333,1.05
+ Pougny ,POUGNY ,58200,58213,26,47.383333,3,2.04
+ Pougues-les-Eaux ,POUGUES LES EAUX ,58320,58214,26,47.066667,3.1,1.62
+ Pouilly-sur-Loire ,POUILLY SUR LOIRE ,58150,58215,26,47.283333,2.95,2.26
+ Pouques-Lormes ,POUQUES LORMES ,58140,58216,26,47.316667,3.783333,1.29
+ Pousseaux ,POUSSEAUX ,58500,58217,26,47.516667,3.533333,2
+ Prémery ,PREMERY ,58700,58218,26,47.166667,3.333333,0.62
+ Préporché ,PREPORCHE ,58360,58219,26,46.916667,3.85,1.58
+ Raveau ,RAVEAU ,58400,58220,26,47.183333,3.083333,1.69
+ Rémilly ,REMILLY ,58250,58221,26,46.816667,3.816667,1.75
+ Rix ,RIX ,58500,58222,26,47.433333,3.5,1.55
+ Rouy ,ROUY ,58110,58223,26,47.016667,3.533333,1.87
+ Ruages ,RUAGES ,58190,58224,26,47.316667,3.683333,0.92
+ Saincaize-Meauce ,SAINCAIZE MEAUCE ,58470,58225,26,46.916667,3.083333,1.69
+ Saint-Amand-en-Puisaye ,SAINT AMAND EN PUISAYE,58310,58227,26,47.516667,3.066667,2
+ Saint-Andelain ,SAINT ANDELAIN ,58150,58228,26,47.316667,2.966667,2.18
+ Saint-André-en-Morvan ,SAINT ANDRE EN MORVAN,58140,58229,26,47.4,3.85,1.58
+ Saint-Aubin-des-Chaumes ,SAINT AUBIN DES CHAUMES,58190,58230,26,47.383333,3.766667,1.8
+ Saint-Aubin-les-Forges ,SAINT AUBIN LES FORGES,58130,58231,26,47.15,3.2,1.56
+ Saint-Benin-d'Azy ,SAINT BENIN D AZY,58270,58232,26,47,3.4,0.77
+ Saint-Bénin-des-Bois ,SAINT BENIN DES BOIS,58330,58233,26,47.116667,3.416667,0.94
+ Saint-Bonnot ,SAINT BONNOT ,58700,58234,26,47.25,3.316667,0.69
+ Saint-Brisson ,SAINT BRISSON ,58230,58235,26,47.266667,4.083333,2.57
+ Saint-Didier ,SAINT DIDIER ,58190,58237,26,47.35,3.616667,1.1
+ Saint-Éloi ,SAINT ELOI ,58000,58238,26,46.966667,3.216667,1.12
+ Saint-Firmin ,SAINT FIRMIN ,58270,58239,26,47.05,3.4,0.95
+ Saint-Franchy ,SAINT FRANCHY ,58330,58240,26,47.133333,3.466667,0.54
+ Saint-Germain-Chassenay ,SAINT GERMAIN CHASSENAY ,58300,58241,26,46.783333,3.383333,1.93
+ Saint-Germain-des-Bois ,SAINT GERMAIN DES BOIS,58210,58242,26,47.383333,3.516667,1.6
+ Saint-Gratien-Savigny ,SAINT GRATIEN SAVIGNY ,58340,58243,26,46.883333,3.666667,1.4
+ Saint-Hilaire-en-Morvan ,SAINT HILAIRE EN MORVAN,58120,58244,26,47.083333,3.883333,1.72
+ Saint-Hilaire-Fontaine ,SAINT HILAIRE FONTAINE ,58300,58245,26,46.766667,3.616667,2.02
+ Saint-Jean-aux-Amognes ,SAINT JEAN AUX AMOGNES,58270,58247,26,47.016667,3.333333,1.49
+ Saint-Laurent-l'Abbaye ,SAINT LAURENT L ABBAYE,58150,58248,26,47.341667,2.991667,-1
+ Saint-Léger-de-Fougeret ,SAINT LEGER DE FOUGERET,58120,58249,26,47.016667,3.9,1.79
+ Saint-Léger-des-Vignes ,SAINT LEGER DES VIGNES,58300,58250,26,46.833333,3.45,1.66
+ Saint-Loup ,SAINT LOUP ,58200,58251,26,47.45,3,2.04
+ Saint-Malo-en-Donziois ,SAINT MALO EN DONZIOIS,58350,58252,26,47.316667,3.266667,1.23
+ Sainte-Marie ,SAINTE MARIE ,58330,58253,26,47.116667,3.433333,0.61
+ Saint-Martin-d'Heuille ,SAINT MARTIN D HEUILLE,58130,58254,26,47.05,3.216667,1.12
+ Saint-Martin-du-Puy ,SAINT MARTIN DU PUY,58140,58255,26,47.333333,3.866667,1.65
+ Saint-Martin-sur-Nohain ,SAINT MARTIN SUR NOHAIN,58150,58256,26,47.366667,2.983333,2.11
+ Saint-Parize-en-Viry ,SAINT PARIZE EN VIRY,58300,58259,26,46.75,3.383333,2.11
+ Saint-Parize-le-Châtel ,SAINT PARIZE LE CHATEL,58490,58260,26,46.85,3.183333,1.57
+ Saint-Péreuse ,SAINT PEREUSE ,58110,58262,26,47.066667,3.8,1.64
+ Saint-Pierre-du-Mont ,SAINT PIERRE DU MONT,58210,58263,26,47.4,3.433333,1.37
+ Saint-Pierre-le-Moûtier ,SAINT PIERRE LE MOUTIER,58240,58264,26,46.8,3.116667,1.84
+ Saint-Quentin-sur Nohain ,SAINT QUENTIN SUR NOHAIN,58150,58265,26,47.35,3.016667,1.97
+ Saint-Révérien ,SAINT REVERIEN ,58420,58266,26,47.216667,3.5,1.17
+ Saint-Saulge ,SAINT SAULGE ,58330,58267,26,47.1,3.5,0.79
+ Saint-Seine ,SAINT SEINE ,58250,58268,26,46.733333,3.833333,2.2
+ Saint-Sulpice ,SAINT SULPICE ,58270,58269,26,47.05,3.35,1.45
+ Saint-Vérain ,SAINT VERAIN ,58310,58270,26,47.483333,3.05,1.83
+ Saizy ,SAIZY ,58190,58271,26,47.35,3.7,1.1
+ Sardy-lès-Épiry ,SARDY LES EPIRY ,58800,58272,26,47.183333,3.7,0.94
+ Sauvigny-les-Bois ,SAUVIGNY LES BOIS ,58160,58273,26,46.966667,3.266667,0.95
+ Savigny-Poil-Fol ,SAVIGNY POIL FOL ,58170,58274,26,46.783333,3.85,1.93
+ Saxi-Bourdon ,SAXI BOURDON ,58330,58275,26,47.05,3.483333,1.24
+ Sémelay ,SEMELAY ,58360,58276,26,46.85,3.85,1.58
+ Sermages ,SERMAGES ,58290,58277,26,47.016667,3.85,1.58
+ Sichamps ,SICHAMPS ,58700,58279,26,47.15,3.283333,1.04
+ Sougy-sur-Loire ,SOUGY SUR LOIRE ,58300,58280,26,46.85,3.4,1.57
+ Suilly-la-Tour ,SUILLY LA TOUR ,58150,58281,26,47.35,3.066667,1.76
+ Surgy ,SURGY ,58500,58282,26,47.516667,3.516667,2
+ Taconnay ,TACONNAY ,58420,58283,26,47.3,3.483333,1.17
+ Talon ,TALON ,58190,58284,26,47.333333,3.566667,1.66
+ Tamnay-en-Bazois ,TAMNAY EN BAZOIS ,58110,58285,26,47.05,3.716667,1.01
+ Tannay ,TANNAY ,58190,58286,26,47.35,3.6,1.1
+ Tazilly ,TAZILLY ,58170,58287,26,46.766667,3.916667,2.02
+ Teigny ,TEIGNY ,58190,58288,26,47.383333,3.666667,1.28
+ Thaix ,THAIX ,58250,58290,26,46.85,3.716667,1.57
+ Thianges ,THIANGES ,58260,58291,26,46.916667,3.5,1.22
+ Tintury ,TINTURY ,58110,58292,26,47,3.583333,1.38
+ Toury-Lurcy ,TOURY LURCY ,58300,58293,26,46.733333,3.416667,2.2
+ Toury-sur-Jour ,TOURY SUR JOUR ,58240,58294,26,46.733333,3.25,2.2
+ Tracy-sur-Loire ,TRACY SUR LOIRE ,58150,58295,26,47.316667,2.883333,2.54
+ Tresnay ,TRESNAY ,58240,58296,26,46.7,3.183333,2.38
+ Trois-Vêvres ,TROIS VEVRES ,58260,58297,26,46.916667,3.416667,1.26
+ Tronsanges ,TRONSANGES ,58400,58298,26,47.116667,3.05,1.83
+ Trucy-l'Orgueilleux ,TRUCY L ORGUEILLEUX ,58460,58299,26,47.45,3.416667,1.64
+ Urzy ,URZY ,58130,58300,26,47.05,3.2,1.19
+ Vandenesse ,VANDENESSE ,58290,58301,26,46.916667,3.766667,1.45
+ Varennes-lès-Narcy ,VARENNES LES NARCY ,58400,58302,26,47.233333,3.066667,1.76
+ Varzy ,VARZY ,58210,58304,26,47.366667,3.383333,1.19
+ Vauclaix ,VAUCLAIX ,58140,58305,26,47.233333,3.816667,1.44
+ Verneuil ,VERNEUIL ,58300,58306,26,46.866667,3.55,1.49
+ Vielmanay ,VIELMANAY ,58150,58307,26,47.266667,3.116667,1.81
+ Vignol ,VIGNOL ,58190,58308,26,47.366667,3.666667,1.19
+ Villapourçon ,VILLAPOURCON ,58370,58309,26,46.95,3.95,2
+ Villiers-le-Sec ,VILLIERS LE SEC ,58210,58310,26,47.383333,3.433333,1.28
+ Ville-Langy ,VILLE LANGY ,58270,58311,26,46.95,3.5,1.04
+ Villiers-sur-Yonne ,VILLIERS SUR YONNE ,58500,58312,26,47.416667,3.583333,1.62
+ Vitry-Laché ,VITRY LACHE ,58420,58313,26,47.2,3.566667,1.58
+ Forges ,FORGES ,58160,58905,26,47.066667,3.366667,1.8
+ Moiry ,MOIRY ,58490,58907,26,46.85,3.15,1.57
+ Moulot ,MOULOT ,58500,58908,26,47.45,3.466667,1.64
+ Plagny ,PLAGNY ,58000,58909,26,46.85,3.166667,1.65
+ Abancourt ,ABANCOURT ,59265,59001,31,50.233333,3.216667,1.19
+ Abscon ,ABSCON ,59215,59002,31,50.333333,3.3,0.41
+ Aibes ,AIBES ,59149,59003,31,50.233333,4.1,2.17
+ Aix ,AIX ,59310,59004,31,50.483333,3.283333,0.69
+ Allennes-les-Marais ,ALLENNES LES MARAIS ,59251,59005,31,50.533333,2.95,0.75
+ Amfroipret ,AMFROIPRET ,59144,59006,31,50.283333,3.733333,1.73
+ Anhiers ,ANHIERS ,59194,59007,31,50.4,3.15,1
+ Aniche ,ANICHE ,59580,59008,31,50.333333,3.25,1
+ Villeneuve-d'Ascq ,VILLENEUVE D ASCQ ,59491,59009,31,50.683333,3.141667,1.11
+ Anneux ,ANNEUX ,59400,59010,31,50.15,3.116667,2.26
+ Annoeullin ,ANNOEULLIN ,59112,59011,31,50.533333,2.933333,1
+ Anor ,ANOR ,59186,59012,31,50,4.1,2.17
+ Anstaing ,ANSTAING ,59152,59013,31,50.6,3.2,0.87
+ Anzin ,ANZIN ,59410,59014,31,50.366667,3.5,0.65
+ Arleux ,ARLEUX ,59151,59015,31,50.283333,3.1,0.63
+ Armbouts-Cappel ,ARMBOUTS CAPPEL ,59380,59016,31,50.983333,2.35,2.41
+ Armentières ,ARMENTIERES ,59280,59017,31,50.683333,2.883333,1.11
+ Arnèke ,ARNEKE ,59285,59018,31,50.833333,2.416667,2.1
+ Artres ,ARTRES ,59269,59019,31,50.3,3.55,0.78
+ Assevent ,ASSEVENT ,59600,59021,31,50.283333,4.016667,1.96
+ Attiches ,ATTICHES ,59551,59022,31,50.516667,3.05,1
+ Aubencheul-au-Bac ,AUBENCHEUL AU BAC ,59265,59023,31,50.25,3.166667,0.77
+ Auberchicourt ,AUBERCHICOURT ,59165,59024,31,50.333333,3.233333,0.41
+ Aubers ,AUBERS ,59249,59025,31,50.6,2.833333,1.04
+ Aubigny-au-Bac ,AUBIGNY AU BAC ,59265,59026,31,50.266667,3.166667,1.21
+ Auby ,AUBY ,59950,59028,31,50.416667,3.05,0.49
+ Auchy-lès-Orchies ,AUCHY LES ORCHIES ,59310,59029,31,50.483333,3.2,0.86
+ Audencourt ,AUDENCOURT ,59540,59030,31,50.116667,3.433333,1.35
+ Audignies ,AUDIGNIES ,59570,59031,31,50.283333,3.816667,1.45
+ Aulnoye-Aymeries ,AULNOYE AYMERIES ,59620,59033,31,50.2,3.833333,1.49
+ Avelin ,AVELIN ,59710,59034,31,50.533333,3.083333,1.53
+ Avesnelles ,AVESNELLES ,59440,59035,31,50.116667,3.95,1.79
+ Avesnes-sur-Helpe ,AVESNES SUR HELPE ,59440,59036,31,50.116667,3.933333,1.75
+ Avesnes-lès-Aubert ,AVESNES LES AUBERT ,59129,59037,31,50.2,3.383333,0.99
+ Avesnes-le-Sec ,AVESNES LE SEC ,59296,59038,31,50.25,3.383333,0.77
+ Awoingt ,AWOINGT ,59400,59039,31,50.15,3.283333,1.21
+ Bachant ,BACHANT ,59138,59041,31,50.216667,3.866667,1.58
+ Bachy ,BACHY ,59830,59042,31,50.55,3.266667,1.28
+ Bailleul ,BAILLEUL ,59270,59043,31,50.733333,2.733333,1.33
+ Baisieux ,BAISIEUX ,59780,59044,31,50.6,3.25,0.75
+ Baives ,BAIVES ,59132,59045,31,50.066667,4.183333,2.38
+ Bambecque ,BAMBECQUE ,59470,59046,31,50.9,2.55,2.05
+ Banteux ,BANTEUX ,59266,59047,31,50.066667,3.2,1.57
+ Bantigny ,BANTIGNY ,59554,59048,31,50.233333,3.233333,0.93
+ Bantouzelle ,BANTOUZELLE ,59266,59049,31,50.05,3.2,1.64
+ Bas-Lieu ,BAS LIEU ,59440,59050,31,50.133333,3.95,1.79
+ La Bassée ,LA BASSEE ,59480,59051,31,50.533333,2.8,1.13
+ Bauvin ,BAUVIN ,59221,59052,31,50.516667,2.883333,0.92
+ Bavay ,BAVAY ,59570,59053,31,50.3,3.783333,1.37
+ Bavinchove ,BAVINCHOVE ,59670,59054,31,50.783333,2.466667,1.97
+ Bazuel ,BAZUEL ,59360,59055,31,50.1,3.583333,1.43
+ Beaucamps-Ligny ,BEAUCAMPS LIGNY ,59134,59056,31,50.6,2.916667,1.46
+ Beaudignies ,BEAUDIGNIES ,59530,59057,31,50.233333,3.583333,1.38
+ Beaufort ,BEAUFORT ,59330,59058,31,50.216667,3.966667,1.83
+ Beaumont-en-Cambrésis ,BEAUMONT EN CAMBRESIS ,59540,59059,31,50.116667,3.45,1.35
+ Beaurain ,BEAURAIN ,59730,59060,31,50.166667,3.55,1.35
+ Beaurepaire-sur-Sambre ,BEAUREPAIRE SUR SAMBRE ,59550,59061,31,50.05,3.8,1.64
+ Beaurieux ,BEAURIEUX ,59740,59062,31,50.183333,4.116667,2.21
+ Beauvois-en-Cambrésis ,BEAUVOIS EN CAMBRESIS ,59157,59063,31,50.133333,3.383333,1.28
+ Bellaing ,BELLAING ,59135,59064,31,50.366667,3.433333,1
+ Bellignies ,BELLIGNIES ,59570,59065,31,50.333333,3.766667,1.33
+ Berelles ,BERELLES ,59740,59066,31,50.216667,4.1,2.17
+ Bergues ,BERGUES ,59380,59067,31,50.966667,2.433333,2.34
+ Berlaimont ,BERLAIMONT ,59145,59068,31,50.2,3.816667,1.45
+ Bermerain ,BERMERAIN ,59213,59069,31,50.25,3.533333,0.77
+ Bermeries ,BERMERIES ,59570,59070,31,50.283333,3.766667,1.33
+ Bersée ,BERSEE ,59235,59071,31,50.483333,3.15,0.24
+ Bersillies ,BERSILLIES ,59600,59072,31,50.316667,4,1.92
+ Berthen ,BERTHEN ,59270,59073,31,50.783333,2.7,1.54
+ Bertry ,BERTRY ,59980,59074,31,50.083333,3.45,1.5
+ Béthencourt ,BETHENCOURT ,59540,59075,31,50.133333,3.433333,1.28
+ Bettignies ,BETTIGNIES ,59600,59076,31,50.333333,3.966667,1.83
+ Bettrechies ,BETTRECHIES ,59570,59077,31,50.316667,3.75,1.28
+ Beugnies ,BEUGNIES ,59216,59078,31,50.166667,4.016667,1.96
+ Beuvrages ,BEUVRAGES ,59192,59079,31,50.383333,3.5,0.65
+ Bévillers ,BEVILLERS ,59217,59081,31,50.15,3.383333,1.22
+ Bierne ,BIERNE ,59380,59082,31,50.966667,2.416667,2.34
+ Bissezeele ,BISSEZEELE ,59380,59083,31,50.916667,2.416667,2.12
+ Blaringhem ,BLARINGHEM ,59173,59084,31,50.7,2.4,2.14
+ Blécourt ,BLECOURT ,59268,59085,31,50.216667,3.216667,0.92
+ Boeschèpe ,BOESCHEPE ,59299,59086,31,50.8,2.7,1.62
+ Boeseghem ,BOESEGHEM ,59189,59087,31,50.666667,2.45,2.01
+ Bois-Grenier ,BOIS GRENIER ,59280,59088,31,50.65,2.883333,1
+ Bollezeele ,BOLLEZEELE ,59470,59089,31,50.866667,2.333333,2.31
+ Bondues ,BONDUES ,59910,59090,31,50.7,3.1,1.18
+ Borre ,BORRE ,59190,59091,31,50.733333,2.583333,1.68
+ Bouchain ,BOUCHAIN ,59111,59092,31,50.283333,3.316667,0.63
+ Boulogne-sur-Helpe ,BOULOGNE SUR HELPE ,59440,59093,31,50.083333,3.9,1.66
+ Bourbourg ,BOURBOURG ,59630,59094,31,50.95,2.2,2.65
+ Bourghelles ,BOURGHELLES ,59830,59096,31,50.566667,3.25,0.67
+ Boursies ,BOURSIES ,62147,59097,31,50.133333,3.016667,1.28
+ Bousbecque ,BOUSBECQUE ,59166,59098,31,50.766667,3.083333,1.47
+ Bousies ,BOUSIES ,59222,59099,31,50.15,3.616667,1.21
+ Bousignies ,BOUSIGNIES ,59178,59100,31,50.433333,3.35,0.65
+ Bousignies-sur-Roc ,BOUSIGNIES SUR ROC ,59149,59101,31,50.266667,4.183333,2.38
+ Boussières-en-Cambrésis ,BOUSSIERES EN CAMBRESIS ,59217,59102,31,50.15,3.366667,1.21
+ Boussières-sur-Sambre ,BOUSSIERES SUR SAMBRE ,59330,59103,31,50.233333,3.883333,1.62
+ Boussois ,BOUSSOIS ,59168,59104,31,50.283333,4.05,2.04
+ Bouvignies ,BOUVIGNIES ,59870,59105,31,50.433333,3.25,1.03
+ Bouvines ,BOUVINES ,59830,59106,31,50.583333,3.183333,1.78
+ Bray-Dunes ,BRAY DUNES ,59123,59107,31,51.083333,2.516667,2.85
+ Briastre ,BRIASTRE ,59730,59108,31,50.166667,3.483333,1.19
+ Brillon ,BRILLON ,59178,59109,31,50.433333,3.333333,1.28
+ Brouckerque ,BROUCKERQUE ,59630,59110,31,50.95,2.283333,2.44
+ Broxeele ,BROXEELE ,59470,59111,31,50.833333,2.316667,2.35
+ Bruay-sur-l'Escaut ,BRUAY SUR L ESCAUT,59860,59112,31,50.383333,3.533333,0.73
+ Bruille-lez-Marchiennes ,BRUILLE LEZ MARCHIENNES ,59490,59113,31,50.366667,3.25,1
+ Bruille-Saint-Amand ,BRUILLE SAINT AMAND ,59199,59114,31,50.466667,3.5,1
+ Brunémont ,BRUNEMONT ,59151,59115,31,50.266667,3.133333,1.1
+ Bry ,BRY ,59144,59116,31,50.316667,3.683333,1.11
+ Bugnicourt ,BUGNICOURT ,59151,59117,31,50.3,3.15,1.49
+ Busigny ,BUSIGNY ,59137,59118,31,50.033333,3.466667,1.72
+ Buysscheure ,BUYSSCHEURE ,59285,59119,31,50.8,2.333333,2.31
+ Caëstre ,CAESTRE ,59190,59120,31,50.75,2.6,1.63
+ Cagnoncles ,CAGNONCLES ,59161,59121,31,50.183333,3.3,1.1
+ Cambrai ,CAMBRAI ,59400,59122,31,50.166667,3.233333,1.14
+ Camphin-en-Carembault ,CAMPHIN EN CAREMBAULT ,59133,59123,31,50.516667,2.983333,1
+ Camphin-en-Pévèle ,CAMPHIN EN PEVELE ,59780,59124,31,50.583333,3.25,1.13
+ Cantaing-sur-Escaut ,CANTAING SUR ESCAUT ,59267,59125,31,50.15,3.166667,1.21
+ Cantin ,CANTIN ,59169,59126,31,50.3,3.116667,0.58
+ Capelle ,CAPELLE ,59213,59127,31,50.233333,3.55,1.36
+ Capinghem ,CAPINGHEM ,59160,59128,31,50.65,2.966667,1
+ Cappelle-en-Pévèle ,CAPPELLE EN PEVELE ,59242,59129,31,50.516667,3.166667,0.84
+ Cappelle-la-Grande ,CAPPELLE LA GRANDE ,59180,59131,31,51,2.35,2.49
+ Carnières ,CARNIERES ,59217,59132,31,50.166667,3.35,1.14
+ Carnin ,CARNIN ,59112,59133,31,50.516667,2.966667,1
+ Cartignies ,CARTIGNIES ,59244,59134,31,50.1,3.85,1.54
+ Cassel ,CASSEL ,59670,59135,31,50.8,2.483333,1.93
+ Catillon-sur-Sambre ,CATILLON SUR SAMBRE ,59360,59137,31,50.066667,3.633333,1.57
+ Cattenières ,CATTENIERES ,59217,59138,31,50.133333,3.333333,1.47
+ Caudry ,CAUDRY ,59540,59139,31,50.133333,3.416667,1.47
+ Caullery ,CAULLERY ,59191,59140,31,50.083333,3.366667,1.5
+ Cauroir ,CAUROIR ,59400,59141,31,50.166667,3.3,1.14
+ Cerfontaine ,CERFONTAINE ,59680,59142,31,50.266667,4.033333,2
+ La Chapelle d'Armentières ,LA CHAPELLE D ARMENTIERES,59930,59143,31,50.683333,2.9,1.11
+ Château-l'Abbaye ,CHATEAU L ABBAYE ,59230,59144,31,50.483333,3.466667,1.34
+ Chemy ,CHEMY ,59147,59145,31,50.533333,2.983333,1.14
+ Chéreng ,CHERENG ,59152,59146,31,50.616667,3.216667,1.4
+ Choisies ,CHOISIES ,59740,59147,31,50.216667,4.05,2.04
+ Clairfayts ,CLAIRFAYTS ,59740,59148,31,50.15,4.116667,2.21
+ Clary ,CLARY ,59225,59149,31,50.083333,3.4,1.5
+ Cobrieux ,COBRIEUX ,59830,59150,31,50.55,3.233333,0.53
+ Colleret ,COLLERET ,59680,59151,31,50.25,4.083333,2.13
+ Comines ,COMINES ,59560,59152,31,50.766667,3.016667,1.47
+ Condé-sur-l'Escaut ,CONDE SUR L ESCAUT,59163,59153,31,50.45,3.583333,1
+ Coudekerque ,COUDEKERQUE ,59380,59154,31,51,2.416667,2.49
+ Coudekerque-Branche ,COUDEKERQUE BRANCHE ,59210,59155,31,51.033333,2.4,2.63
+ Courchelettes ,COURCHELETTES ,59552,59156,31,50.35,3.05,0.49
+ Cousolre ,COUSOLRE ,59149,59157,31,50.25,4.15,2.3
+ Coutiches ,COUTICHES ,59310,59158,31,50.45,3.2,1.04
+ Craywick ,CRAYWICK ,59279,59159,31,50.966667,2.233333,2.56
+ Crespin ,CRESPIN ,59154,59160,31,50.416667,3.65,1.03
+ Crèvecoeur-sur-l'Escaut ,CREVECOEUR SUR L ESCAUT,59258,59161,31,50.1,3.25,1.43
+ Crochte ,CROCHTE ,59380,59162,31,50.933333,2.383333,2.2
+ Croix ,CROIX ,59170,59163,31,50.666667,3.15,1.04
+ Croix-Caluyau ,CROIX CALUYAU ,59222,59164,31,50.15,3.583333,1.21
+ Cuincy ,CUINCY ,59553,59165,31,50.383333,3.05,0.75
+ Curgies ,CURGIES ,59990,59166,31,50.333333,3.6,0.9
+ Cuvillers ,CUVILLERS ,59554,59167,31,50.216667,3.233333,0.92
+ Cysoing ,CYSOING ,59830,59168,31,50.566667,3.216667,0.6
+ Damousies ,DAMOUSIES ,59680,59169,31,50.216667,4.016667,1.96
+ Déchy ,DECHY ,59187,59170,31,50.35,3.116667,0.34
+ Dehéries ,DEHERIES ,59127,59171,31,50.05,3.316667,1.64
+ Denain ,DENAIN ,59220,59172,31,50.333333,3.383333,1.5
+ Deûlemont ,DEULEMONT ,59890,59173,31,50.733333,2.95,1.33
+ Dimechaux ,DIMECHAUX ,59740,59174,31,50.2,4.033333,2
+ Dimont ,DIMONT ,59216,59175,31,50.183333,4.016667,1.96
+ Doignies ,DOIGNIES ,62147,59176,31,50.116667,3,1.35
+ Dompierre-sur-Helpe ,DOMPIERRE SUR HELPE ,59440,59177,31,50.141667,3.866667,-1
+ Douai ,DOUAI ,59500,59178,31,50.366667,3.066667,1.13
+ Douchy-les-Mines ,DOUCHY LES MINES ,59282,59179,31,50.3,3.383333,1
+ Le Doulieu ,LE DOULIEU ,59940,59180,31,50.683333,2.716667,1.34
+ Dourlers ,DOURLERS ,59440,59181,31,50.166667,3.933333,1.75
+ Drincham ,DRINCHAM ,59630,59182,31,50.9,2.316667,2.35
+ Dunkerque ,DUNKERQUE ,59240,59183,31,51.05,2.366667,2.7
+ Ebblinghem ,EBBLINGHEM ,59173,59184,31,50.733333,2.4,2.14
+ Écaillon ,ECAILLON ,59176,59185,31,50.35,3.216667,1
+ Eccles ,ECCLES ,59740,59186,31,50.2,4.1,2.17
+ Éclaibes ,ECLAIBES ,59330,59187,31,50.2,3.933333,1.75
+ Écuelin ,ECUELIN ,59620,59188,31,50.2,3.916667,1.91
+ Eecke ,EECKE ,59114,59189,31,50.783333,2.6,1.63
+ Élesmes ,ELESMES ,59600,59190,31,50.3,4.016667,1.96
+ Élincourt ,ELINCOURT ,59127,59191,31,50.05,3.366667,1.64
+ Émerchicourt ,EMERCHICOURT ,59580,59192,31,50.316667,3.25,1
+ Emmerin ,EMMERIN ,59320,59193,31,50.6,3,1.57
+ Englefontaine ,ENGLEFONTAINE ,59530,59194,31,50.183333,3.65,1.25
+ Englos ,ENGLOS ,59320,59195,31,50.633333,2.966667,0.89
+ Ennetières-en-Weppes ,ENNETIERES EN WEPPES ,59320,59196,31,50.633333,2.95,0.89
+ Ennevelin ,ENNEVELIN ,59710,59197,31,50.533333,3.133333,1.17
+ Eppe-Sauvage ,EPPE SAUVAGE ,59132,59198,31,50.116667,4.183333,2.38
+ Erchin ,ERCHIN ,59169,59199,31,50.316667,3.166667,1.34
+ Eringhem ,ERINGHEM ,59470,59200,31,50.9,2.35,2.27
+ Erquinghem-le-Sec ,ERQUINGHEM LE SEC ,59320,59201,31,50.616667,2.933333,0.87
+ Erquinghem-Lys ,ERQUINGHEM LYS ,59193,59202,31,50.683333,2.85,1.11
+ Erre ,ERRE ,59171,59203,31,50.366667,3.316667,1.2
+ Escarmain ,ESCARMAIN ,59213,59204,31,50.233333,3.55,1.36
+ Escaudain ,ESCAUDAIN ,59124,59205,31,50.333333,3.35,0.41
+ Escaudoeuvres ,ESCAUDOEUVRES ,59161,59206,31,50.2,3.266667,0.99
+ Escautpont ,ESCAUTPONT ,59278,59207,31,50.416667,3.566667,0.82
+ Escobecques ,ESCOBECQUES ,59320,59208,31,50.616667,2.933333,0.87
+ Esnes ,ESNES ,59127,59209,31,50.1,3.316667,1.43
+ Esquelbecq ,ESQUELBECQ ,59470,59210,31,50.883333,2.433333,2.06
+ Esquerchin ,ESQUERCHIN ,59553,59211,31,50.366667,3.016667,1.5
+ Estaires ,ESTAIRES ,59940,59212,31,50.633333,2.716667,1.34
+ Estourmel ,ESTOURMEL ,59400,59213,31,50.133333,3.333333,1.47
+ Estrées ,ESTREES ,59151,59214,31,50.3,3.066667,1.39
+ Estreux ,ESTREUX ,59990,59215,31,50.35,3.6,0.9
+ Eswars ,ESWARS ,59400,59216,31,50.216667,3.266667,1.01
+ Eth ,ETH ,59144,59217,31,50.316667,3.666667,1.07
+ Étroeungt ,ETROEUNGT ,59219,59218,31,50.05,3.933333,1.75
+ Estrun ,ESTRUN ,59295,59219,31,50.25,3.283333,0.77
+ Fâches-Thumesnil ,FACHES THUMESNIL ,59155,59220,31,50.583333,3.066667,0.68
+ Famars ,FAMARS ,59300,59221,31,50.316667,3.516667,1
+ Faumont ,FAUMONT ,59310,59222,31,50.466667,3.133333,2.12
+ Le Favril ,LE FAVRIL ,59550,59223,31,50.1,3.733333,1.43
+ Féchain ,FECHAIN ,59247,59224,31,50.266667,3.216667,0.72
+ Feignies ,FEIGNIES ,59750,59225,31,50.3,3.916667,1.71
+ Felleries ,FELLERIES ,59740,59226,31,50.15,4.033333,2
+ Fenain ,FENAIN ,59179,59227,31,50.366667,3.3,0.27
+ Férin ,FERIN ,59169,59228,31,50.333333,3.066667,1.57
+ Féron ,FERON ,59610,59229,31,50.033333,4.016667,1.96
+ Ferrière-la-Grande ,FERRIERE LA GRANDE ,59680,59230,31,50.25,4,1.92
+ Ferrière-la-Petite ,FERRIERE LA PETITE ,59680,59231,31,50.233333,4.016667,1.96
+ La Flamengrie ,LA FLAMENGRIE ,59570,59232,31,50.316667,3.716667,1.88
+ Flers-en-Escrebieux ,FLERS EN ESCREBIEUX ,59128,59234,31,50.4,3.05,0.49
+ Flesquières ,FLESQUIERES ,59267,59236,31,50.116667,3.116667,1.5
+ Flêtre ,FLETRE ,59270,59237,31,50.75,2.65,1.51
+ Floursies ,FLOURSIES ,59440,59240,31,50.183333,3.966667,1.83
+ Floyon ,FLOYON ,59219,59241,31,50.033333,3.9,1.72
+ Fontaine-au-Bois ,FONTAINE AU BOIS ,59550,59242,31,50.15,3.65,1.46
+ Fontaine-au-Pire ,FONTAINE AU PIRE ,59157,59243,31,50.133333,3.366667,1.28
+ Fontaine-Notre-Dame ,FONTAINE NOTRE DAME ,59400,59244,31,50.166667,3.166667,1.41
+ Forest-sur-Marque ,FOREST SUR MARQUE ,59510,59247,31,50.633333,3.183333,1
+ Fort-Mardyck ,FORT MARDYCK ,59430,59248,31,51.033333,2.3,2.63
+ Fourmies ,FOURMIES ,59610,59249,31,50,4.05,2.04
+ Fournes-en-Weppes ,FOURNES EN WEPPES ,59134,59250,31,50.583333,2.883333,0.92
+ Frasnoy ,FRASNOY ,59530,59251,31,50.266667,3.683333,1.23
+ Frélinghien ,FRELINGHIEN ,59236,59252,31,50.716667,2.933333,1.26
+ Fresnes-sur-Escaut ,FRESNES SUR ESCAUT ,59970,59253,31,50.433333,3.583333,0.86
+ Fressain ,FRESSAIN ,59234,59254,31,50.283333,3.2,0.72
+ Fressies ,FRESSIES ,59247,59255,31,50.25,3.2,1.14
+ Fretin ,FRETIN ,59273,59256,31,50.55,3.133333,1
+ Fromelles ,FROMELLES ,59249,59257,31,50.6,2.85,1
+ Genech ,GENECH ,59242,59258,31,50.533333,3.216667,1.42
+ Ghissignies ,GHISSIGNIES ,59530,59259,31,50.233333,3.616667,0.95
+ Ghyvelde ,GHYVELDE ,59254,59260,31,51.05,2.533333,2.7
+ Glageon ,GLAGEON ,59132,59261,31,50.05,4.066667,2.09
+ Godewaersvelde ,GODEWAERSVELDE ,59270,59262,31,50.8,2.65,1.62
+ Goeulzin ,GOEULZIN ,59169,59263,31,50.316667,3.1,0.58
+ Gognies-Chaussée ,GOGNIES CHAUSSEE ,59600,59264,31,50.333333,3.95,1.79
+ Gommegnies ,GOMMEGNIES ,59144,59265,31,50.266667,3.716667,1.53
+ Gondecourt ,GONDECOURT ,59147,59266,31,50.55,2.983333,0.72
+ Gonnelieu ,GONNELIEU ,59231,59267,31,50.05,3.15,1.64
+ La Gorgue ,LA GORGUE ,59253,59268,31,50.633333,2.7,1.38
+ Gouzeaucourt ,GOUZEAUCOURT ,59231,59269,31,50.05,3.116667,1.64
+ Grand-Fayt ,GRAND FAYT ,59244,59270,31,50.1,3.816667,1.5
+ Grande-Synthe ,GRANDE SYNTHE ,59760,59271,31,51.016667,2.283333,2.56
+ Grand-Fort-Philippe ,GRAND FORT PHILIPPE ,59153,59272,31,51,2.108333,-1
+ Gravelines ,GRAVELINES ,59820,59273,31,50.983333,2.125,-1
+ La Groise ,LA GROISE ,59360,59274,31,50.083333,3.683333,1.76
+ Gruson ,GRUSON ,59152,59275,31,50.6,3.216667,0.87
+ Guesnain ,GUESNAIN ,59287,59276,31,50.35,3.15,1
+ Gussignies ,GUSSIGNIES ,59570,59277,31,50.333333,3.75,1.28
+ Halluin ,HALLUIN ,59250,59279,31,50.783333,3.133333,1.54
+ Hamel ,HAMEL ,59151,59280,31,50.283333,3.083333,0.78
+ Hantay ,HANTAY ,59496,59281,31,50.533333,2.866667,1
+ Hardifort ,HARDIFORT ,59670,59282,31,50.816667,2.483333,1.93
+ Hargnies ,HARGNIES ,59138,59283,31,50.25,3.85,1.54
+ Hasnon ,HASNON ,59178,59284,31,50.416667,3.383333,0.79
+ Haspres ,HASPRES ,59198,59285,31,50.25,3.416667,0.77
+ Haubourdin ,HAUBOURDIN ,59320,59286,31,50.6,2.983333,1.05
+ Haucourt-en-Cambrésis ,HAUCOURT EN CAMBRESIS ,59191,59287,31,50.1,3.35,1.43
+ Haulchin ,HAULCHIN ,59121,59288,31,50.316667,3.433333,1
+ Haussy ,HAUSSY ,59294,59289,31,50.216667,3.483333,0.92
+ Hautmont ,HAUTMONT ,59330,59291,31,50.25,3.933333,1.75
+ Haveluy ,HAVELUY ,59255,59292,31,50.35,3.4,0.4
+ Haverskerque ,HAVERSKERQUE ,62350,59293,31,50.633333,2.533333,1.8
+ Haynecourt ,HAYNECOURT ,59265,59294,31,50.216667,3.166667,0.92
+ Hazebrouck ,HAZEBROUCK ,59190,59295,31,50.716667,2.533333,1.8
+ Hecq ,HECQ ,59530,59296,31,50.183333,3.633333,1.25
+ Hélesmes ,HELESMES ,59171,59297,31,50.366667,3.366667,1.5
+ Hellemmes-Lille ,HELLEMMES LILLE ,59260,59298,31,50.616667,3.116667,0.82
+ Hem ,HEM ,59510,59299,31,50.65,3.2,1
+ Hem-Lenglet ,HEM LENGLET ,59247,59300,31,50.25,3.233333,1.14
+ Hergnies ,HERGNIES ,59199,59301,31,50.466667,3.516667,1
+ Hérin ,HERIN ,59195,59302,31,50.35,3.45,1
+ Herlies ,HERLIES ,59134,59303,31,50.566667,2.85,1.35
+ Herrin ,HERRIN ,59147,59304,31,50.55,2.966667,1.14
+ Herzeele ,HERZEELE ,59470,59305,31,50.883333,2.533333,1.98
+ Hestrud ,HESTRUD ,59740,59306,31,50.2,4.133333,2.26
+ Holque ,HOLQUE ,59143,59307,31,50.85,2.2,2.65
+ Hondeghem ,HONDEGHEM ,59190,59308,31,50.766667,2.516667,1.85
+ Hondschoote ,HONDSCHOOTE ,59122,59309,31,50.983333,2.583333,2.41
+ Hon-Hergies ,HON HERGIES ,59570,59310,31,50.333333,3.833333,1.49
+ Honnechy ,HONNECHY ,59980,59311,31,50.066667,3.45,1.57
+ Hordain ,HORDAIN ,59111,59313,31,50.266667,3.316667,0.7
+ Hornaing ,HORNAING ,59171,59314,31,50.366667,3.333333,0.3
+ Houdain-lez-Bavay ,HOUDAIN LEZ BAVAY ,59570,59315,31,50.316667,3.783333,1.37
+ Houplin-Ancoisne ,HOUPLIN ANCOISNE ,59263,59316,31,50.566667,3,0.62
+ Houplines ,HOUPLINES ,59116,59317,31,50.7,2.916667,1.18
+ Houtkerque ,HOUTKERQUE ,59470,59318,31,50.883333,2.6,1.98
+ Hoymille ,HOYMILLE ,59492,59319,31,50.983333,2.45,2.41
+ Illies ,ILLIES ,59480,59320,31,50.566667,2.833333,1.04
+ Inchy ,INCHY ,59540,59321,31,50.116667,3.466667,1.59
+ Iwuy ,IWUY ,59141,59322,31,50.233333,3.316667,1.14
+ Jenlain ,JENLAIN ,59144,59323,31,50.316667,3.616667,1.85
+ Jeumont ,JEUMONT ,59460,59324,31,50.3,4.1,2.17
+ Jolimetz ,JOLIMETZ ,59530,59325,31,50.233333,3.683333,1.11
+ Killem ,KILLEM ,59122,59326,31,50.966667,2.566667,2.34
+ Lallaing ,LALLAING ,59167,59327,31,50.383333,3.166667,0.2
+ Lambersart ,LAMBERSART ,59130,59328,31,50.65,3.033333,0.97
+ Landas ,LANDAS ,59310,59330,31,50.483333,3.3,1
+ Landrecies ,LANDRECIES ,59550,59331,31,50.133333,3.7,1.28
+ Lannoy ,LANNOY ,59390,59332,31,50.666667,3.216667,1.04
+ Larouillies ,LAROUILLIES ,59219,59333,31,50.033333,3.933333,1.75
+ Lauwin-Planque ,LAUWIN PLANQUE ,59553,59334,31,50.383333,3.05,0.75
+ Lecelles ,LECELLES ,59226,59335,31,50.466667,3.4,1
+ Lécluse ,LECLUSE ,59259,59336,31,50.266667,3.033333,0.7
+ Lederzeele ,LEDERZEELE ,59143,59337,31,50.816667,2.283333,2.44
+ Ledringhem ,LEDRINGHEM ,59470,59338,31,50.85,2.433333,2.06
+ Leers ,LEERS ,59115,59339,31,50.683333,3.25,1.11
+ Leffrinckoucke ,LEFFRINCKOUCKE ,59495,59340,31,51.033333,2.466667,2.63
+ Lesdain ,LESDAIN ,59258,59341,31,50.1,3.266667,1.43
+ Lesquin ,LESQUIN ,59810,59343,31,50.583333,3.116667,0.68
+ Leval ,LEVAL ,59620,59344,31,50.183333,3.833333,1.49
+ Lewarde ,LEWARDE ,59287,59345,31,50.35,3.166667,1
+ Lezennes ,LEZENNES ,59260,59346,31,50.616667,3.116667,0.82
+ Liessies ,LIESSIES ,59740,59347,31,50.116667,4.083333,2.13
+ Lieu-Saint-Amand ,LIEU SAINT AMAND ,59111,59348,31,50.266667,3.35,1.6
+ Lille ,LILLE ,59800,59350,31,50.633333,3.066667,0.89
+ Limont-Fontaine ,LIMONT FONTAINE ,59330,59351,31,50.2,3.933333,1.75
+ Linselles ,LINSELLES ,59126,59352,31,50.733333,3.083333,1.33
+ Locquignol ,LOCQUIGNOL ,59530,59353,31,50.2,3.716667,1.96
+ Loffre ,LOFFRE ,59182,59354,31,50.35,3.166667,0.34
+ Lomme ,LOMME ,59160,59355,31,50.65,2.983333,1
+ Lompret ,LOMPRET ,59840,59356,31,50.666667,3,1.39
+ La Longueville ,LA LONGUEVILLE ,59570,59357,31,50.283333,3.866667,1.99
+ Looberghe ,LOOBERGHE ,59630,59358,31,50.916667,2.266667,2.48
+ Loon-Plage ,LOON PLAGE ,59279,59359,31,50.983333,2.216667,2.61
+ Loos ,LOOS ,59120,59360,31,50.616667,3.016667,0.82
+ Lourches ,LOURCHES ,59156,59361,31,50.316667,3.35,0.48
+ Louvignies-Bavay ,LOUVIGNIES BAVAY ,59570,59362,31,50.3,3.8,1.41
+ Louvignies-Quesnoy ,LOUVIGNIES QUESNOY ,59530,59363,31,50.233333,3.633333,0.99
+ Louvil ,LOUVIL ,59830,59364,31,50.55,3.2,1.13
+ Louvroil ,LOUVROIL ,59720,59365,31,50.266667,3.966667,1.83
+ Lynde ,LYNDE ,59173,59366,31,50.716667,2.416667,2.1
+ La Madeleine ,LA MADELEINE ,59110,59368,31,50.65,3.066667,0.97
+ Maing ,MAING ,59233,59369,31,50.3,3.483333,0.61
+ Mairieux ,MAIRIEUX ,59600,59370,31,50.316667,3.983333,1.88
+ Le Maisnil ,LE MAISNIL ,59134,59371,31,50.616667,2.883333,1.13
+ Malo-les-Bains ,MALO LES BAINS ,59240,59373,31,51.05,2.4,2.7
+ Marbaix ,MARBAIX ,59440,59374,31,50.133333,3.85,1.69
+ Marcoing ,MARCOING ,59159,59377,31,50.116667,3.183333,1.35
+ Marcq-en-Baroeul ,MARCQ EN BAROEUL ,59700,59378,31,50.666667,3.083333,1.04
+ Marcq-en-Ostrevent ,MARCQ EN OSTREVENT ,59252,59379,31,50.283333,3.25,1.14
+ Mardyck ,MARDYCK ,59279,59380,31,51.016667,2.25,2.56
+ Maresches ,MARESCHES ,59990,59381,31,50.3,3.583333,1.28
+ Maretz ,MARETZ ,59238,59382,31,50.05,3.416667,1.64
+ Marly ,MARLY ,59770,59383,31,50.35,3.55,0.78
+ Maroilles ,MAROILLES ,59550,59384,31,50.133333,3.75,1.28
+ Marpent ,MARPENT ,59164,59385,31,50.3,4.083333,2.13
+ Marquette-en-Ostrevent ,MARQUETTE EN OSTREVENT ,59252,59387,31,50.283333,3.266667,0.72
+ Marquillies ,MARQUILLIES ,59274,59388,31,50.55,2.866667,0.96
+ Masnières ,MASNIERES ,59241,59389,31,50.116667,3.216667,1.35
+ Masny ,MASNY ,59176,59390,31,50.35,3.2,1
+ Mastaing ,MASTAING ,59172,59391,31,50.3,3.3,1
+ Maubeuge ,MAUBEUGE ,59600,59392,31,50.283333,3.966667,1.83
+ Maulde ,MAULDE ,59158,59393,31,50.5,3.433333,0.92
+ Maurois ,MAUROIS ,59980,59394,31,50.066667,3.45,1.57
+ Mazinghien ,MAZINGHIEN ,59360,59395,31,50.05,3.6,1.64
+ Mecquignies ,MECQUIGNIES ,59570,59396,31,50.283333,3.8,1.41
+ Merckeghem ,MERCKEGHEM ,59470,59397,31,50.866667,2.283333,2.44
+ Mérignies ,MERIGNIES ,59710,59398,31,50.5,3.116667,1.02
+ Merris ,MERRIS ,59270,59399,31,50.716667,2.666667,1.47
+ Merville ,MERVILLE ,59660,59400,31,50.633333,2.633333,1.55
+ Météren ,METEREN ,59270,59401,31,50.733333,2.7,1.38
+ Millam ,MILLAM ,59143,59402,31,50.85,2.25,2.52
+ Millonfosse ,MILLONFOSSE ,59178,59403,31,50.433333,3.4,1.28
+ Les Moëres ,LES MOERES ,59122,59404,31,51.016667,2.55,2.56
+ Moeuvres ,MOEUVRES ,62147,59405,31,50.15,3.066667,1.21
+ Monceau-Saint-Waast ,MONCEAU SAINT WAAST ,59620,59406,31,50.166667,3.85,1.54
+ Monchaux-sur-Écaillon ,MONCHAUX SUR ECAILLON ,59224,59407,31,50.283333,3.466667,1
+ Moncheaux ,MONCHEAUX ,59283,59408,31,50.45,3.083333,1
+ Monchecourt ,MONCHECOURT ,59234,59409,31,50.3,3.216667,1.14
+ Montay ,MONTAY ,59360,59412,31,50.116667,3.55,1.35
+ Montigny-en-Cambrésis ,MONTIGNY EN CAMBRESIS ,59225,59413,31,50.1,3.416667,1.43
+ Montrécourt ,MONTRECOURT ,59227,59415,31,50.233333,3.45,0.85
+ Morbecque ,MORBECQUE ,59190,59416,31,50.7,2.516667,1.85
+ Mortagne-du-Nord ,MORTAGNE DU NORD ,59158,59418,31,50.5,3.45,0.73
+ Mouchin ,MOUCHIN ,59310,59419,31,50.516667,3.283333,0.95
+ Moustier-en-Fagne ,MOUSTIER EN FAGNE ,59132,59420,31,50.1,4.183333,2.38
+ Mouvaux ,MOUVAUX ,59420,59421,31,50.7,3.133333,1.18
+ Naves ,NAVES ,59161,59422,31,50.2,3.3,0.99
+ Neuf-Berquin ,NEUF BERQUIN ,59940,59423,31,50.65,2.666667,1.47
+ Neuf-Mesnil ,NEUF MESNIL ,59330,59424,31,50.266667,3.9,1.66
+ Neuville-en-Avesnois ,NEUVILLE EN AVESNOIS ,59218,59425,31,50.2,3.583333,0.99
+ Neuville-en-Ferrain ,NEUVILLE EN FERRAIN ,59960,59426,31,50.75,3.15,1.4
+ La Neuville ,LA NEUVILLE ,59239,59427,31,50.5,3.05,1
+ Neuville-Saint-Rémy ,NEUVILLE SAINT REMY ,59554,59428,31,50.183333,3.233333,1.06
+ Neuvilly ,NEUVILLY ,59360,59430,31,50.133333,3.516667,1.39
+ Nieppe ,NIEPPE ,59850,59431,31,50.7,2.833333,1.18
+ Niergnies ,NIERGNIES ,59400,59432,31,50.15,3.25,1.21
+ Nieurlet ,NIEURLET ,59143,59433,31,50.783333,2.283333,2.44
+ Nomain ,NOMAIN ,59310,59435,31,50.5,3.25,0.35
+ Noordpeene ,NOORDPEENE ,59670,59436,31,50.8,2.4,2.14
+ Noyelles-lès-Seclin ,NOYELLES LES SECLIN ,59139,59437,31,50.583333,3.016667,1
+ Noyelles-sur-Sambre ,NOYELLES SUR SAMBRE ,59550,59439,31,50.15,3.8,1.41
+ Noyelles-sur-Selle ,NOYELLES SUR SELLE ,59282,59440,31,50.283333,3.383333,1
+ Obies ,OBIES ,59570,59441,31,50.266667,3.783333,1.37
+ Obrechies ,OBRECHIES ,59680,59442,31,50.216667,4.033333,2
+ Ochtezeele ,OCHTEZEELE ,59670,59443,31,50.816667,2.4,2.14
+ Odomez ,ODOMEZ ,59970,59444,31,50.45,3.55,1.48
+ Ohain ,OHAIN ,59132,59445,31,50.05,4.116667,2.21
+ Oisy ,OISY ,59195,59446,31,50.35,3.433333,1
+ Onnaing ,ONNAING ,59264,59447,31,50.383333,3.6,0.9
+ Oost-Cappel ,OOST CAPPEL ,59122,59448,31,50.916667,2.6,2.12
+ Orchies ,ORCHIES ,59310,59449,31,50.466667,3.233333,0.37
+ Ors ,ORS ,59360,59450,31,50.1,3.633333,1.43
+ Orsinval ,ORSINVAL ,59530,59451,31,50.266667,3.633333,0.99
+ Ostricourt ,OSTRICOURT ,59162,59452,31,50.45,3.033333,0.53
+ Oudezeele ,OUDEZEELE ,59670,59453,31,50.833333,2.516667,1.85
+ Oxelaere ,OXELAERE ,59670,59454,31,50.783333,2.483333,1.93
+ Paillencourt ,PAILLENCOURT ,59295,59455,31,50.25,3.283333,0.77
+ Pecquencourt ,PECQUENCOURT ,59146,59456,31,50.383333,3.216667,0.19
+ Pérenchies ,PERENCHIES ,59840,59457,31,50.666667,2.966667,1.04
+ Péronne-en-Mélantois ,PERONNE EN MELANTOIS ,59273,59458,31,50.566667,3.166667,1
+ Petite Forêt ,PETITE FORET ,59494,59459,31,50.366667,3.483333,0.61
+ Petite-Synthe ,PETITE SYNTHE ,59640,59460,31,51.016667,2.316667,2.56
+ Petit-Fayt ,PETIT FAYT ,59244,59461,31,50.1,3.833333,1.49
+ Phalempin ,PHALEMPIN ,59133,59462,31,50.516667,3.016667,1
+ Pitgam ,PITGAM ,59284,59463,31,50.933333,2.333333,2.31
+ Poix-du-Nord ,POIX DU NORD ,59218,59464,31,50.2,3.6,1.38
+ Pommereuil ,POMMEREUIL ,59360,59465,31,50.1,3.6,1.43
+ Pont-à-Marcq ,PONT A MARCQ ,59710,59466,31,50.516667,3.116667,0.39
+ Pont-sur-Sambre ,PONT SUR SAMBRE ,59138,59467,31,50.216667,3.833333,1.49
+ Pradelles ,PRADELLES ,59190,59469,31,50.733333,2.6,1.63
+ Prémesques ,PREMESQUES ,59840,59470,31,50.65,2.95,1.22
+ Préseau ,PRESEAU ,59990,59471,31,50.316667,3.566667,1.31
+ Preux-au-Bois ,PREUX AU BOIS ,59288,59472,31,50.166667,3.65,1.14
+ Preux-au-Sart ,PREUX AU SART ,59144,59473,31,50.283333,3.683333,1.11
+ Prisches ,PRISCHES ,59550,59474,31,50.083333,3.766667,1.5
+ Prouvy ,PROUVY ,59121,59475,31,50.316667,3.45,1
+ Proville ,PROVILLE ,59267,59476,31,50.166667,3.2,1.28
+ Provin ,PROVIN ,59185,59477,31,50.516667,2.916667,0.83
+ Quaëdypre ,QUAEDYPRE ,59380,59478,31,50.933333,2.466667,2.2
+ Quarouble ,QUAROUBLE ,59243,59479,31,50.383333,3.616667,0.95
+ Quérénaing ,QUERENAING ,59269,59480,31,50.283333,3.516667,1.34
+ Le Quesnoy ,LE QUESNOY ,59530,59481,31,50.25,3.633333,0.99
+ Quesnoy-sur-Deûle ,QUESNOY SUR DEULE ,59890,59482,31,50.716667,3,1.26
+ Quiévelon ,QUIEVELON ,59680,59483,31,50.233333,4.083333,2.13
+ Quiévrechain ,QUIEVRECHAIN ,59920,59484,31,50.383333,3.666667,1.07
+ Quiévy ,QUIEVY ,59214,59485,31,50.166667,3.416667,1.14
+ Râches ,RACHES ,59194,59486,31,50.416667,3.133333,1
+ Radinghem-en-Weppes ,RADINGHEM EN WEPPES ,59320,59487,31,50.616667,2.916667,1.46
+ Raimbeaucourt ,RAIMBEAUCOURT ,59283,59489,31,50.433333,3.083333,1
+ Rainsars ,RAINSARS ,59177,59490,31,50.066667,4,1.92
+ Raismes ,RAISMES ,59590,59491,31,50.383333,3.483333,0.61
+ Ramillies ,RAMILLIES ,59161,59492,31,50.2,3.25,1.34
+ Ramousies ,RAMOUSIES ,59177,59493,31,50.116667,4.033333,2
+ Raucourt-au-Bois ,RAUCOURT AU BOIS ,59530,59494,31,50.216667,3.65,1.03
+ Recquignies ,RECQUIGNIES ,59245,59495,31,50.283333,4.05,2.04
+ Rejet-de-Beaulieu ,REJET DE BEAULIEU ,59360,59496,31,50.033333,3.616667,1.72
+ Renescure ,RENESCURE ,59173,59497,31,50.733333,2.366667,2.23
+ Reumont ,REUMONT ,59980,59498,31,50.083333,3.483333,1.5
+ Rexpoëde ,REXPOEDE ,59122,59499,31,50.933333,2.533333,2.2
+ Ribécourt-la-Tour ,RIBECOURT LA TOUR ,59159,59500,31,50.1,3.116667,1.43
+ Rieulay ,RIEULAY ,59870,59501,31,50.383333,3.266667,0.82
+ Rieux-en-Cambrésis ,RIEUX EN CAMBRESIS ,59277,59502,31,50.2,3.35,0.99
+ Robersart ,ROBERSART ,59550,59503,31,50.15,3.633333,1.71
+ Roeulx ,ROEULX ,59172,59504,31,50.3,3.333333,1
+ Rombies-et-Marchipont ,ROMBIES ET MARCHIPONT ,59990,59505,31,50.366667,3.65,1.68
+ Romeries ,ROMERIES ,59730,59506,31,50.2,3.533333,0.99
+ Ronchin ,RONCHIN ,59790,59507,31,50.6,3.1,0.75
+ Roncq ,RONCQ ,59223,59508,31,50.75,3.116667,1.4
+ Roost-Warendin ,ROOST WARENDIN ,59286,59509,31,50.416667,3.083333,0.41
+ Rosendaël ,ROSENDAEL ,59240,59510,31,51.033333,2.4,2.63
+ Rosult ,ROSULT ,59230,59511,31,50.45,3.35,0.81
+ Roubaix ,ROUBAIX ,59100,59512,31,50.7,3.166667,1.18
+ Roucourt ,ROUCOURT ,59169,59513,31,50.333333,3.15,0.94
+ Rousies ,ROUSIES ,59131,59514,31,50.266667,4,1.92
+ Rouvignies ,ROUVIGNIES ,59220,59515,31,50.333333,3.433333,1.2
+ Rubrouck ,RUBROUCK ,59285,59516,31,50.833333,2.35,2.27
+ Les Rues-des-Vignes ,LES RUES DES VIGNES,59258,59517,31,50.083333,3.233333,1.5
+ Ruesnes ,RUESNES ,59530,59518,31,50.266667,3.583333,1.56
+ Rumegies ,RUMEGIES ,59226,59519,31,50.483333,3.35,1
+ Rumilly-en-Cambrésis ,RUMILLY EN CAMBRESIS ,59281,59520,31,50.133333,3.216667,1.28
+ Sailly-lez-Cambrai ,SAILLY LEZ CAMBRAI ,59554,59521,31,50.2,3.166667,1.57
+ Sainghin-en-Mélantois ,SAINGHIN EN MELANTOIS ,59262,59523,31,50.583333,3.166667,0.68
+ Sainghin-en-Weppes ,SAINGHIN EN WEPPES ,59184,59524,31,50.55,2.9,0.87
+ Sains-du-Nord ,SAINS DU NORD ,59177,59525,31,50.1,4,1.92
+ Saint-Amand-les-Eaux ,SAINT AMAND LES EAUX,59230,59526,31,50.433333,3.433333,0.75
+ Saint-Aubert ,SAINT AUBERT ,59188,59528,31,50.216667,3.416667,1
+ Saint-Aybert ,SAINT AYBERT ,59163,59530,31,50.45,3.65,1.03
+ Saint-Benin ,SAINT BENIN ,59360,59531,31,50.066667,3.516667,1.57
+ Saint-Georges-sur-l'Aa ,SAINT GEORGES SUR L,59820,59532,31,50.966667,2.166667,2.73
+ Saint-Hilaire-sur-Helpe ,SAINT HILAIRE SUR HELPE,59440,59534,31,50.133333,3.9,1.66
+ Saint-Jans-Cappel ,SAINT JANS CAPPEL ,59270,59535,31,50.766667,2.716667,1.47
+ Sainte-Marie-Cappel ,SAINTE MARIE CAPPEL ,59670,59536,31,50.783333,2.516667,1.85
+ Saint-Martin-sur-Écaillon ,SAINT MARTIN SUR ECAILLON,59213,59537,31,50.25,3.533333,0.77
+ Saint-Momelin ,SAINT MOMELIN ,59143,59538,31,50.8,2.25,2.52
+ Saint-Pierre-Brouck ,SAINT PIERRE BROUCK ,59630,59539,31,50.9,2.183333,2.69
+ Saint-Pol-sur-Mer ,SAINT POL SUR MER,59430,59540,31,51.033333,2.35,2.63
+ Saint-Python ,SAINT PYTHON ,59730,59541,31,50.183333,3.483333,1.06
+ Saint-Remy-Chaussée ,SAINT REMY CHAUSSEE ,59620,59542,31,50.166667,3.866667,1.58
+ Saint-Rémy-du-Nord ,SAINT REMY DU NORD,59330,59543,31,50.233333,3.916667,1.71
+ Saint-Saulve ,SAINT SAULVE ,59880,59544,31,50.366667,3.55,0.78
+ Saint-Souplet ,SAINT SOUPLET ,59360,59545,31,50.05,3.533333,1.64
+ Saint-Sylvestre-Cappel ,SAINT SYLVESTRE CAPPEL ,59114,59546,31,50.766667,2.55,1.76
+ Salesches ,SALESCHES ,59218,59549,31,50.2,3.583333,0.99
+ Salomé ,SALOME ,59496,59550,31,50.533333,2.833333,1.04
+ Saméon ,SAMEON ,59310,59551,31,50.483333,3.333333,1.62
+ Sancourt ,SANCOURT ,59265,59552,31,50.216667,3.2,0.92
+ Santes ,SANTES ,59211,59553,31,50.6,2.95,0.75
+ Sars-et-Rosières ,SARS ET ROSIERES ,59230,59554,31,50.45,3.333333,1.1
+ Sars-Poteries ,SARS POTERIES ,59216,59555,31,50.166667,4.016667,1.96
+ Sassegnies ,SASSEGNIES ,59145,59556,31,50.183333,3.8,1.41
+ Saultain ,SAULTAIN ,59990,59557,31,50.333333,3.583333,0.86
+ Saulzoir ,SAULZOIR ,59227,59558,31,50.233333,3.45,0.85
+ Sebourg ,SEBOURG ,59990,59559,31,50.35,3.65,1.45
+ Seclin ,SECLIN ,59113,59560,31,50.55,3.033333,0.53
+ Selvigny ,SELVIGNY ,59127,59561,31,50.066667,3.35,1.57
+ Sémeries ,SEMERIES ,59440,59562,31,50.116667,4,1.92
+ Semousies ,SEMOUSIES ,59440,59563,31,50.166667,3.966667,1.83
+ La Sentinelle ,LA SENTINELLE ,59174,59564,31,50.35,3.483333,0.61
+ Sepmeries ,SEPMERIES ,59269,59565,31,50.283333,3.566667,1.08
+ Sequedin ,SEQUEDIN ,59320,59566,31,50.616667,2.983333,0.87
+ Sercus ,SERCUS ,59173,59568,31,50.7,2.45,2.01
+ Sin-le-Noble ,SIN LE NOBLE ,59450,59569,31,50.366667,3.116667,0.32
+ Socx ,SOCX ,59380,59570,31,50.933333,2.416667,2.2
+ Solesmes ,SOLESMES ,59730,59571,31,50.183333,3.5,1.06
+ Solre-le-Château ,SOLRE LE CHATEAU ,59740,59572,31,50.166667,4.083333,2.13
+ Solrinnes ,SOLRINNES ,59740,59573,31,50.2,4.066667,2.09
+ Somain ,SOMAIN ,59490,59574,31,50.366667,3.283333,1
+ Sommaing ,SOMMAING ,59213,59575,31,50.266667,3.5,1.84
+ Spycker ,SPYCKER ,59380,59576,31,50.966667,2.316667,2.35
+ Staple ,STAPLE ,59190,59577,31,50.75,2.45,2.01
+ Steenbecque ,STEENBECQUE ,59189,59578,31,50.666667,2.483333,1.93
+ Steene ,STEENE ,59380,59579,31,50.95,2.383333,2.27
+ Steenvoorde ,STEENVOORDE ,59114,59580,31,50.8,2.583333,1.68
+ Steenwerck ,STEENWERCK ,59181,59581,31,50.7,2.783333,1.18
+ Strazeele ,STRAZEELE ,59270,59582,31,50.716667,2.633333,1.55
+ Taisnières-en-Thiérache ,TAISNIERES EN THIERACHE ,59550,59583,31,50.15,3.816667,1.45
+ Taisnières-sur-Hon ,TAISNIERES SUR HON ,59570,59584,31,50.316667,3.85,1.54
+ Templemars ,TEMPLEMARS ,59175,59585,31,50.566667,3.05,1
+ Templeuve ,TEMPLEUVE ,59242,59586,31,50.533333,3.166667,0.74
+ Terdeghem ,TERDEGHEM ,59114,59587,31,50.8,2.533333,1.8
+ Téteghem ,TETEGHEM ,59229,59588,31,51.016667,2.433333,2.56
+ Thiant ,THIANT ,59224,59589,31,50.3,3.45,1
+ Thiennes ,THIENNES ,59189,59590,31,50.65,2.466667,1.97
+ Thumeries ,THUMERIES ,59239,59592,31,50.483333,3.05,1
+ Thun-l'Evêque ,THUN L EVEQUE ,59141,59593,31,50.233333,3.283333,1.14
+ Thun-Saint-Amand ,THUN SAINT AMAND ,59158,59594,31,50.466667,3.45,1.35
+ Thun-Saint-Martin ,THUN SAINT MARTIN ,59141,59595,31,50.216667,3.3,0.92
+ Tilloy-lez-Marchiennes ,TILLOY LEZ MARCHIENNES ,59870,59596,31,50.433333,3.316667,0.91
+ Toufflers ,TOUFFLERS ,59390,59598,31,50.666667,3.233333,1.04
+ Tourcoing ,TOURCOING ,59200,59599,31,50.716667,3.15,1.26
+ Tourmignies ,TOURMIGNIES ,59551,59600,31,50.5,3.083333,1
+ Trélon ,TRELON ,59132,59601,31,50.066667,4.1,2.17
+ Tressin ,TRESSIN ,59152,59602,31,50.6,3.2,0.87
+ Trith-Saint-Léger ,TRITH SAINT LEGER ,59125,59603,31,50.316667,3.483333,0.61
+ Troisvilles ,TROISVILLES ,59980,59604,31,50.1,3.466667,1.43
+ Uxem ,UXEM ,59229,59605,31,51.016667,2.483333,2.56
+ Valenciennes ,VALENCIENNES ,59300,59606,31,50.35,3.533333,1
+ Vendegies-au-Bois ,VENDEGIES AU BOIS ,59218,59607,31,50.183333,3.583333,1.38
+ Vendegies-sur-Écaillon ,VENDEGIES SUR ECAILLON ,59213,59608,31,50.266667,3.516667,1.15
+ Vendeville ,VENDEVILLE ,59175,59609,31,50.566667,3.066667,1
+ Verchain-Maugré ,VERCHAIN MAUGRE ,59227,59610,31,50.266667,3.483333,1.5
+ Verlinghem ,VERLINGHEM ,59237,59611,31,50.683333,3,1.11
+ Vertain ,VERTAIN ,59730,59612,31,50.216667,3.533333,1.19
+ Vicq ,VICQ ,59970,59613,31,50.416667,3.6,1.27
+ Viesly ,VIESLY ,59271,59614,31,50.15,3.466667,1.21
+ Vieux-Berquin ,VIEUX BERQUIN ,59232,59615,31,50.7,2.633333,1.55
+ Vieux Condé ,VIEUX CONDE ,59690,59616,31,50.483333,3.333333,0.24
+ Vieux-Mesnil ,VIEUX MESNIL ,59138,59617,31,50.25,3.866667,1.58
+ Vieux-Reng ,VIEUX RENG ,59600,59618,31,50.333333,4.05,2.04
+ Villereau ,VILLEREAU ,59530,59619,31,50.25,3.666667,1.07
+ Villers-au-Tertre ,VILLERS AU TERTRE ,59234,59620,31,50.3,3.183333,1.14
+ Villers-en-Cauchies ,VILLERS EN CAUCHIES ,59188,59622,31,50.216667,3.4,1
+ Villers-Guislain ,VILLERS GUISLAIN ,59297,59623,31,50.033333,3.15,1.72
+ Villers-Outréaux ,VILLERS OUTREAUX ,59142,59624,31,50.033333,3.3,1.72
+ Villers-Plouich ,VILLERS PLOUICH ,59231,59625,31,50.083333,3.133333,1.5
+ Villers-Pol ,VILLERS POL ,59530,59626,31,50.283333,3.616667,1.27
+ Villers-Sire-Nicole ,VILLERS SIRE NICOLE ,59600,59627,31,50.333333,4.016667,1.96
+ Volckerinckhove ,VOLCKERINCKHOVE ,59470,59628,31,50.833333,2.3,2.4
+ Vred ,VRED ,59870,59629,31,50.4,3.233333,1.3
+ Wahagnies ,WAHAGNIES ,59261,59630,31,50.483333,3.033333,0.53
+ Wallers ,WALLERS ,59135,59632,31,50.366667,3.4,1
+ Wallers-Trélon ,WALLERS TRELON ,59132,59633,31,50.066667,4.166667,2.34
+ Wallon-Cappel ,WALLON CAPPEL ,59190,59634,31,50.733333,2.483333,1.93
+ Wambaix ,WAMBAIX ,59400,59635,31,50.133333,3.3,1.28
+ Wambrechies ,WAMBRECHIES ,59118,59636,31,50.683333,3.05,1.11
+ Wandignies-Hamage ,WANDIGNIES HAMAGE ,59870,59637,31,50.4,3.316667,0.79
+ Wannehain ,WANNEHAIN ,59830,59638,31,50.566667,3.266667,1.22
+ Wargnies-le-Grand ,WARGNIES LE GRAND ,59144,59639,31,50.316667,3.65,1.03
+ Wargnies-le-Petit ,WARGNIES LE PETIT ,59144,59640,31,50.3,3.666667,1.07
+ Warhem ,WARHEM ,59380,59641,31,50.983333,2.5,2.41
+ Warlaing ,WARLAING ,59870,59642,31,50.416667,3.333333,1.15
+ Wasnes-au-Bac ,WASNES AU BAC ,59252,59645,31,50.266667,3.266667,1.14
+ Wasquehal ,WASQUEHAL ,59290,59646,31,50.666667,3.15,1.04
+ Watten ,WATTEN ,59143,59647,31,50.833333,2.216667,2.61
+ Wattignies ,WATTIGNIES ,59139,59648,31,50.583333,3.05,1
+ Wattignies-la-Victoire ,WATTIGNIES LA VICTOIRE ,59680,59649,31,50.2,4.016667,1.96
+ Wattrelos ,WATTRELOS ,59150,59650,31,50.7,3.216667,1.18
+ Wavrechain-sous-Denain ,WAVRECHAIN SOUS DENAIN ,59220,59651,31,50.333333,3.416667,0.44
+ Wavrechain-sous-Faulx ,WAVRECHAIN SOUS FAULX ,59111,59652,31,50.266667,3.283333,1.6
+ Wavrin ,WAVRIN ,59136,59653,31,50.566667,2.916667,0.83
+ Waziers ,WAZIERS ,59119,59654,31,50.383333,3.116667,0.32
+ Wemaers-Cappel ,WEMAERS CAPPEL ,59670,59655,31,50.8,2.45,2.01
+ Wervicq-Sud ,WERVICQ SUD ,59117,59656,31,50.766667,3.05,1.47
+ West-Cappel ,WEST CAPPEL ,59380,59657,31,50.933333,2.5,2.2
+ Wicres ,WICRES ,59134,59658,31,50.566667,2.866667,0.96
+ Wignehies ,WIGNEHIES ,59212,59659,31,50.016667,4,1.92
+ Willems ,WILLEMS ,59780,59660,31,50.633333,3.233333,1.48
+ Willies ,WILLIES ,59740,59661,31,50.116667,4.1,2.17
+ Winnezeele ,WINNEZEELE ,59670,59662,31,50.833333,2.55,2.01
+ Wormhout ,WORMHOUT ,59470,59663,31,50.883333,2.466667,1.98
+ Wulverdinghe ,WULVERDINGHE ,59143,59664,31,50.833333,2.25,2.52
+ Wylder ,WYLDER ,59380,59665,31,50.916667,2.5,2.12
+ Zermezeele ,ZERMEZEELE ,59670,59667,31,50.833333,2.45,2.01
+ Zuydcoote ,ZUYDCOOTE ,59123,59668,31,51.066667,2.5,2.78
+ Zuytpeene ,ZUYTPEENE ,59670,59669,31,50.8,2.433333,2.06
+ Don ,DON ,59272,59670,31,50.55,2.916667,0.83
+ Blanc-Misseron ,BLANC MISSERON ,59920,59904,31,50.4,3.666667,1.07
+ Croix-du-Bac ,CROIX DU BAC ,59181,59905,31,50.683333,2.8,1.13
+ Dorignies ,DORIGNIES ,59500,59906,31,50.383333,3.083333,0.41
+ Frais Marais ,FRAIS MARAIS ,59500,59910,31,50.4,3.133333,1.48
+ Abancourt ,ABANCOURT ,60220,60001,22,49.7,1.766667,1.98
+ Abbecourt ,ABBECOURT ,60430,60002,22,49.366667,2.15,0.77
+ Abbeville-Saint-Lucien ,ABBEVILLE SAINT LUCIEN ,60480,60003,22,49.516667,2.166667,0.97
+ Achy ,ACHY ,60690,60004,22,49.566667,1.95,1.34
+ Acy-en-Multien ,ACY EN MULTIEN ,60620,60005,22,49.1,2.966667,2.36
+ Les Ageux ,LES AGEUX ,60700,60006,22,49.316667,2.6,0.79
+ Agnetz ,AGNETZ ,60600,60007,22,49.383333,2.383333,1.52
+ Airion ,AIRION ,60600,60008,22,49.433333,2.416667,0.95
+ Allonne ,ALLONNE ,60000,60009,22,49.4,2.116667,1.3
+ Amblainville ,AMBLAINVILLE ,60110,60010,22,49.2,2.116667,1.63
+ Amy ,AMY ,60310,60011,22,49.65,2.833333,1.62
+ Andeville ,ANDEVILLE ,60570,60012,22,49.25,2.166667,1.27
+ Angicourt ,ANGICOURT ,60940,60013,22,49.316667,2.5,1.2
+ Angivillers ,ANGIVILLERS ,60130,60014,22,49.5,2.5,1.25
+ Angy ,ANGY ,60250,60015,22,49.35,2.333333,0.62
+ Ansacq ,ANSACQ ,60250,60016,22,49.35,2.366667,1.34
+ Ansauvillers ,ANSAUVILLERS ,60120,60017,22,49.566667,2.4,1.13
+ Anserville ,ANSERVILLE ,60540,60018,22,49.233333,2.216667,1.39
+ Antheuil-Portes ,ANTHEUIL PORTES ,60162,60019,22,49.5,2.75,1
+ Antilly ,ANTILLY ,60620,60020,22,49.15,2.983333,2
+ Appilly ,APPILLY ,60400,60021,22,49.583333,3.116667,2.01
+ Apremont ,APREMONT ,60300,60022,22,49.233333,2.516667,1.65
+ Armancourt ,ARMANCOURT ,60880,60023,22,49.383333,2.766667,1
+ Arsy ,ARSY ,60190,60024,22,49.4,2.683333,1.1
+ Attichy ,ATTICHY ,60350,60025,22,49.416667,3.05,1.82
+ Auchy-la-Montagne ,AUCHY LA MONTAGNE ,60360,60026,22,49.583333,2.116667,1.14
+ Auger-Saint-Vincent ,AUGER SAINT VINCENT ,60800,60027,22,49.216667,2.8,1.51
+ Auneuil ,AUNEUIL ,60390,60029,22,49.366667,2,1.2
+ Auteuil ,AUTEUIL ,60390,60030,22,49.35,2.083333,1.7
+ Autheuil-en-Valois ,AUTHEUIL EN VALOIS ,60890,60031,22,49.166667,3.066667,1.88
+ Autrêches ,AUTRECHES ,60350,60032,22,49.45,3.116667,2.06
+ Avilly-Saint-Léonard ,AVILLY SAINT LEONARD ,60300,60033,22,49.2,2.533333,1.63
+ Avrechy ,AVRECHY ,60130,60034,22,49.45,2.433333,0.81
+ Avricourt ,AVRICOURT ,60310,60035,22,49.65,2.866667,1.62
+ Avrigny ,AVRIGNY ,60190,60036,22,49.383333,2.583333,1.05
+ Baboeuf ,BABOEUF ,60400,60037,22,49.583333,3.083333,1.91
+ Bachivillers ,BACHIVILLERS ,60240,60038,22,49.283333,1.966667,1.3
+ Bacouël ,BACOUEL ,60120,60039,22,49.616667,2.383333,1.38
+ Bailleul-le-Soc ,BAILLEUL LE SOC ,60190,60040,22,49.416667,2.583333,0.71
+ Bailleul-sur-Thérain ,BAILLEUL SUR THERAIN ,60930,60041,22,49.4,2.233333,0.53
+ Bailleval ,BAILLEVAL ,60140,60042,22,49.35,2.45,1.27
+ Bailly ,BAILLY ,60170,60043,22,49.5,2.966667,1.58
+ Balagny-sur-Thérain ,BALAGNY SUR THERAIN ,60250,60044,22,49.3,2.333333,0.91
+ Barbery ,BARBERY ,60810,60045,22,49.216667,2.666667,1.51
+ Bargny ,BARGNY ,60620,60046,22,49.183333,2.966667,1.75
+ Baron ,BARON ,60300,60047,22,49.166667,2.733333,1.88
+ Baugy ,BAUGY ,60113,60048,22,49.466667,2.75,0.96
+ Bazancourt ,BAZANCOURT ,60380,60049,22,49.55,1.733333,1.97
+ Bazicourt ,BAZICOURT ,60700,60050,22,49.35,2.616667,1.09
+ Beaudéduit ,BEAUDEDUIT ,60210,60051,22,49.683333,2.066667,2.05
+ Beaugies-sous-Bois ,BEAUGIES SOUS BOIS ,60640,60052,22,49.633333,3.1,1.96
+ Beaulieu-les-Fontaines ,BEAULIEU LES FONTAINES ,60310,60053,22,49.65,2.916667,1.62
+ Beaumont-les-Nonains ,BEAUMONT LES NONAINS ,60390,60054,22,49.333333,2,1.2
+ Beaurains-lès-Noyon ,BEAURAINS LES NOYON ,60400,60055,22,49.616667,2.966667,1.58
+ Beaurepaire ,BEAUREPAIRE ,60700,60056,22,49.3,2.583333,0.91
+ Beauvais ,BEAUVAIS ,60155,60057,22,49.433333,2.083333,1
+ Beauvoir ,BEAUVOIR ,60120,60058,22,49.6,2.333333,1.26
+ Béhéricourt ,BEHERICOURT ,60400,60059,22,49.591667,3.066667,-1
+ Belle-Église ,BELLE EGLISE ,60540,60060,22,49.2,2.216667,1.63
+ Belloy ,BELLOY ,60490,60061,22,49.533333,2.65,1.59
+ Berlancourt ,BERLANCOURT ,60640,60062,22,49.666667,3.066667,-1
+ Berneuil-en-Bray ,BERNEUIL EN BRAY ,60390,60063,22,49.35,2.066667,1.39
+ Berneuil-sur-Aisne ,BERNEUIL SUR AISNE ,60350,60064,22,49.416667,3.016667,1.72
+ Berthecourt ,BERTHECOURT ,60370,60065,22,49.366667,2.233333,1.2
+ Béthancourt-en-Valois ,BETHANCOURT EN VALOIS ,60129,60066,22,49.283333,2.883333,1.34
+ Béthisy-Saint-Martin ,BETHISY SAINT MARTIN ,60320,60067,22,49.3,2.816667,1.15
+ Béthisy-Saint-Pierre ,BETHISY SAINT PIERRE ,60320,60068,22,49.3,2.816667,1.15
+ Betz ,BETZ ,60620,60069,22,49.15,2.95,2
+ Bienville ,BIENVILLE ,60200,60070,22,49.45,2.833333,1.2
+ Biermont ,BIERMONT ,60490,60071,22,49.583333,2.733333,1.14
+ Bitry ,BITRY ,60350,60072,22,49.416667,3.083333,1.91
+ Blacourt ,BLACOURT ,60650,60073,22,49.466667,1.866667,1.58
+ Blancfossé ,BLANCFOSSE ,60120,60075,22,49.65,2.2,1.62
+ Blargies ,BLARGIES ,60220,60076,22,49.666667,1.766667,1.87
+ Blicourt ,BLICOURT ,60860,60077,22,49.55,2.05,1.47
+ Blincourt ,BLINCOURT ,60190,60078,22,49.383333,2.616667,0.85
+ Boissy-Fresnoy ,BOISSY FRESNOY ,60440,60079,22,49.166667,2.866667,1.88
+ Boissy-le-Bois ,BOISSY LE BOIS ,60240,60080,22,49.283333,1.95,1.34
+ Bonlier ,BONLIER ,60510,60081,22,49.483333,2.15,1.35
+ Bonneuil-les-Eaux ,BONNEUIL LES EAUX ,60120,60082,22,49.683333,2.233333,1.86
+ Bonneuil-en-Valois ,BONNEUIL EN VALOIS ,60123,60083,22,49.283333,3,1.68
+ Bonnières ,BONNIERES ,60112,60084,22,49.516667,1.966667,1.3
+ Bonvillers ,BONVILLERS ,60120,60085,22,49.583333,2.35,1.14
+ Boran-sur-Oise ,BORAN SUR OISE ,60820,60086,22,49.166667,2.35,1.88
+ Borest ,BOREST ,60300,60087,22,49.183333,2.666667,1.75
+ Bornel ,BORNEL ,60540,60088,22,49.2,2.216667,1.63
+ Boubiers ,BOUBIERS ,60240,60089,22,49.216667,1.866667,1.58
+ Bouconvillers ,BOUCONVILLERS ,60240,60090,22,49.183333,1.9,1.75
+ Bouillancy ,BOUILLANCY ,60620,60091,22,49.116667,2.933333,2.24
+ Boullarre ,BOULLARRE ,60620,60092,22,49.133333,3.016667,2.12
+ Boulogne-la-Grasse ,BOULOGNE LA GRASSE ,60490,60093,22,49.6,2.716667,1.26
+ Boursonne ,BOURSONNE ,60141,60094,22,49.2,3.05,1.82
+ Boury-en-Vexin ,BOURY EN VEXIN ,60240,60095,22,49.233333,1.75,1.92
+ Boutencourt ,BOUTENCOURT ,60590,60097,22,49.333333,1.85,1.63
+ Bouvresse ,BOUVRESSE ,60220,60098,22,49.65,1.75,1.92
+ Braisnes ,BRAISNES ,60113,60099,22,49.483333,2.766667,1.5
+ Brasseuse ,BRASSEUSE ,60810,60100,22,49.266667,2.683333,1.15
+ Brégy ,BREGY ,60440,60101,22,49.083333,2.866667,2.48
+ Brenouille ,BRENOUILLE ,60870,60102,22,49.3,2.55,1.36
+ Bresles ,BRESLES ,60510,60103,22,49.416667,2.25,0.7
+ Breteuil ,BRETEUIL ,60120,60104,22,49.633333,2.3,1.5
+ Brétigny ,BRETIGNY ,60400,60105,22,49.566667,3.1,1.96
+ Breuil-le-Sec ,BREUIL LE SEC ,60600,60106,22,49.383333,2.45,0.48
+ Breuil-le-Vert ,BREUIL LE VERT ,60600,60107,22,49.366667,2.433333,0.91
+ Briot ,BRIOT ,60210,60108,22,49.65,1.916667,1.62
+ Brombos ,BROMBOS ,60210,60109,22,49.65,1.883333,1.62
+ Broquiers ,BROQUIERS ,60220,60110,22,49.666667,1.833333,1.74
+ Broyes ,BROYES ,60120,60111,22,49.633333,2.45,1.5
+ Brunvillers-la-Motte ,BRUNVILLERS LA MOTTE ,60130,60112,22,49.55,2.45,1
+ Bucamps ,BUCAMPS ,60480,60113,22,49.516667,2.316667,1.56
+ Buicourt ,BUICOURT ,60380,60114,22,49.533333,1.816667,1.73
+ Bulles ,BULLES ,60130,60115,22,49.466667,2.333333,1.71
+ Bury ,BURY ,60250,60116,22,49.316667,2.35,0.92
+ Bussy ,BUSSY ,60400,60117,22,49.633333,2.983333,1.63
+ Caisnes ,CAISNES ,60400,60118,22,49.516667,3.066667,1.87
+ Cambronne-lès-Ribécourt ,CAMBRONNE LES RIBECOURT ,60170,60119,22,49.5,2.9,1.77
+ Cambronne-lès-Clermont ,CAMBRONNE LES CLERMONT ,60290,60120,22,49.333333,2.4,1.2
+ Campeaux ,CAMPEAUX ,60220,60122,22,49.616667,1.75,1.92
+ Campremy ,CAMPREMY ,60480,60123,22,49.566667,2.3,1.3
+ Candor ,CANDOR ,60310,60124,22,49.616667,2.883333,1.38
+ Canly ,CANLY ,60680,60125,22,49.383333,2.7,0.81
+ Cannectancourt ,CANNECTANCOURT ,60310,60126,22,49.55,2.9,1.39
+ Canny-sur-Matz ,CANNY SUR MATZ ,60310,60127,22,49.6,2.8,1.26
+ Canny-sur-Thérain ,CANNY SUR THERAIN ,60220,60128,22,49.6,1.716667,2.02
+ Carlepont ,CARLEPONT ,60170,60129,22,49.516667,3.016667,1.72
+ Catenoy ,CATENOY ,60600,60130,22,49.383333,2.5,1.27
+ Catheux ,CATHEUX ,60360,60131,22,49.65,2.116667,1.62
+ Cauffry ,CAUFFRY ,60290,60134,22,49.316667,2.45,0.79
+ Cauvigny ,CAUVIGNY ,60730,60135,22,49.3,2.25,0.91
+ Cempuis ,CEMPUIS ,60210,60136,22,49.65,1.983333,1.62
+ Cernoy ,CERNOY ,60190,60137,22,49.433333,2.55,1.15
+ Chamant ,CHAMANT ,60300,60138,22,49.216667,2.616667,1.51
+ Chambly ,CHAMBLY ,60230,60139,22,49.166667,2.25,1.88
+ Chambors ,CHAMBORS ,60240,60140,22,49.266667,1.816667,1.73
+ Chantilly ,CHANTILLY ,60500,60141,22,49.2,2.466667,1.63
+ La Chapelle-en-Serval ,LA CHAPELLE EN SERVAL,60520,60142,22,49.133333,2.533333,2.12
+ Chaumont-en-Vexin ,CHAUMONT EN VEXIN ,60240,60143,22,49.266667,1.883333,1.54
+ Chavençon ,CHAVENCON ,60240,60144,22,49.183333,2,1.75
+ Chelles ,CHELLES ,60350,60145,22,49.35,3.033333,1.77
+ Chepoix ,CHEPOIX ,60120,60146,22,49.6,2.383333,1.26
+ Chevincourt ,CHEVINCOURT ,60150,60147,22,49.5,2.85,1.24
+ Chèvreville ,CHEVREVILLE ,60440,60148,22,49.116667,2.85,2.24
+ Chevrières ,CHEVRIERES ,60710,60149,22,49.35,2.683333,1
+ Choisy-au-Bac ,CHOISY AU BAC ,60750,60151,22,49.433333,2.883333,1.34
+ Choisy-la-Victoire ,CHOISY LA VICTOIRE ,60190,60152,22,49.383333,2.583333,1.05
+ Choqueuse-les-Bénards ,CHOQUEUSE LES BENARDS ,60360,60153,22,49.666667,2.083333,1.74
+ Cinqueux ,CINQUEUX ,60940,60154,22,49.316667,2.516667,0.79
+ Cires-lès-Mello ,CIRES LES MELLO ,60660,60155,22,49.266667,2.366667,1.15
+ Clairoix ,CLAIROIX ,60200,60156,22,49.45,2.833333,1.2
+ Clermont ,CLERMONT ,60600,60157,22,49.383333,2.4,1.17
+ Coivrel ,COIVREL ,60420,60158,22,49.55,2.55,0.9
+ Compiègne ,COMPIEGNE ,60200,60159,22,49.416667,2.833333,1.2
+ Conchy-les-Pots ,CONCHY LES POTS ,60490,60160,22,49.6,2.733333,1.26
+ Corbeil-Cerf ,CORBEIL CERF ,60110,60162,22,49.283333,2.1,1.49
+ Cormeilles ,CORMEILLES ,60120,60163,22,49.65,2.2,1.62
+ Le Coudray-Saint-Germer ,LE COUDRAY SAINT GERMER,60850,60164,22,49.416667,1.833333,1.68
+ Le Coudray-sur-Thelle ,LE COUDRAY SUR THELLE,60430,60165,22,49.3,2.133333,1.34
+ Coudun ,COUDUN ,60150,60166,22,49.466667,2.816667,1.22
+ Couloisy ,COULOISY ,60350,60167,22,49.4,3.033333,1.77
+ Courcelles-Épayelles ,COURCELLES EPAYELLES ,60420,60168,22,49.566667,2.616667,1.1
+ Courteuil ,COURTEUIL ,60300,60170,22,49.2,2.533333,1.63
+ Coye-la-Forêt ,COYE LA FORET ,60580,60172,22,49.15,2.466667,2
+ Cramoisy ,CRAMOISY ,60660,60173,22,49.25,2.4,1.54
+ Crapeaumesnil ,CRAPEAUMESNIL ,60310,60174,22,49.633333,2.8,1.5
+ Creil ,CREIL ,60100,60175,22,49.266667,2.483333,1.15
+ Crépy-en-Valois ,CREPY EN VALOIS ,60800,60176,22,49.233333,2.9,1.39
+ Cressonsacq ,CRESSONSACQ ,60190,60177,22,49.45,2.566667,0.91
+ Crèvecoeur-le-Grand ,CREVECOEUR LE GRAND ,60360,60178,22,49.6,2.083333,1.26
+ Crèvecoeur-le-Petit ,CREVECOEUR LE PETIT ,60420,60179,22,49.583333,2.5,1.21
+ Crillon ,CRILLON ,60112,60180,22,49.516667,1.933333,1.39
+ Crisolles ,CRISOLLES ,60400,60181,22,49.616667,3.016667,1.72
+ Le Crocq ,LE CROCQ ,60120,60182,22,49.616667,2.183333,1.46
+ Croissy-sur-Celle ,CROISSY SUR CELLE ,60120,60183,22,49.7,2.183333,1.98
+ Croutoy ,CROUTOY ,60350,60184,22,49.383333,3.05,1.82
+ Crouy-en-Thelle ,CROUY EN THELLE ,60530,60185,22,49.216667,2.316667,1.51
+ Cuignières ,CUIGNIERES ,60130,60186,22,49.466667,2.466667,0.85
+ Cuigy-en-Bray ,CUIGY EN BRAY ,60850,60187,22,49.433333,1.833333,1.68
+ Cuise-la-Motte ,CUISE LA MOTTE ,60350,60188,22,49.4,3.016667,1.72
+ Cuts ,CUTS ,60400,60189,22,49.533333,3.1,1.96
+ Cuvergnon ,CUVERGNON ,60620,60190,22,49.183333,2.983333,1.75
+ Cuvilly ,CUVILLY ,60490,60191,22,49.55,2.7,0.9
+ Cuy ,CUY ,60310,60192,22,49.583333,2.9,1.39
+ Dameraucourt ,DAMERAUCOURT ,60210,60193,22,49.7,1.916667,1.98
+ Dargies ,DARGIES ,60210,60194,22,49.7,2,1.98
+ Délincourt ,DELINCOURT ,60240,60195,22,49.25,1.833333,1.68
+ Le Déluge ,LE DELUGE ,60790,60196,22,49.3,2.116667,0.92
+ Dieudonne ,DIEUDONNE ,60530,60197,22,49.233333,2.25,1.68
+ Dives ,DIVES ,60310,60198,22,49.583333,2.883333,1.34
+ Doméliers ,DOMELIERS ,60360,60199,22,49.633333,2.166667,1.53
+ Domfront ,DOMFRONT ,60420,60200,22,49.6,2.566667,1.26
+ Dompierre ,DOMPIERRE ,60420,60201,22,49.6,2.533333,1.26
+ Duvy ,DUVY ,60800,60203,22,49.233333,2.866667,1.39
+ Écuvilly ,ECUVILLY ,60310,60204,22,49.633333,2.916667,1.5
+ Élencourt ,ELENCOURT ,60210,60205,22,49.683333,1.9,1.86
+ Élincourt-Sainte-Marguerite ,ELINCOURT SAINTE MARGUERITE ,60157,60206,22,49.533333,2.816667,1.15
+ Éméville ,EMEVILLE ,60123,60207,22,49.283333,3.033333,1.77
+ Énencourt-Léage ,ENENCOURT LEAGE ,60590,60208,22,49.3,1.85,1.63
+ Énencourt-le-Sec ,ENENCOURT LE SEC ,60240,60209,22,49.3,1.933333,1.39
+ Épineuse ,EPINEUSE ,60190,60210,22,49.4,2.55,1.28
+ Éragny-sur-Epte ,ERAGNY SUR EPTE ,60590,60211,22,49.316667,1.783333,1.82
+ Ercuis ,ERCUIS ,60530,60212,22,49.233333,2.3,1.39
+ Ermenonville ,ERMENONVILLE ,60950,60213,22,49.133333,2.7,2.12
+ Ernemont-Boutavent ,ERNEMONT BOUTAVENT ,60380,60214,22,49.583333,1.8,1.78
+ Erquery ,ERQUERY ,60600,60215,22,49.416667,2.45,0.27
+ Erquinvillers ,ERQUINVILLERS ,60130,60216,22,49.466667,2.466667,0.85
+ Escames ,ESCAMES ,60380,60217,22,49.55,1.8,1.78
+ Esches ,ESCHES ,60110,60218,22,49.216667,2.166667,1.51
+ Escles-Saint-Pierre ,ESCLES SAINT PIERRE ,60220,60219,22,49.75,1.8,2.34
+ Espaubourg ,ESPAUBOURG ,60650,60220,22,49.433333,1.866667,1.58
+ Esquennoy ,ESQUENNOY ,60120,60221,22,49.65,2.266667,1.62
+ Estrées-Saint-Denis ,ESTREES SAINT DENIS ,60190,60223,22,49.433333,2.65,0.67
+ Étavigny ,ETAVIGNY ,60620,60224,22,49.116667,2.983333,2.24
+ Étouy ,ETOUY ,60600,60225,22,49.433333,2.366667,1.93
+ Éve ,EVE ,60330,60226,22,49.083333,2.7,2.48
+ Évricourt ,EVRICOURT ,60310,60227,22,49.566667,2.9,1.39
+ Fay-les-Étangs ,FAY LES ETANGS ,60240,60228,22,49.25,1.95,1.34
+ Le Fayel ,LE FAYEL ,60680,60229,22,49.383333,2.7,0.81
+ Le Fay-Saint-Quentin ,LE FAY SAINT QUENTIN,60510,60230,22,49.466667,2.25,0.48
+ Feigneux ,FEIGNEUX ,60800,60231,22,49.266667,2.933333,1.75
+ Ferrières ,FERRIERES ,60420,60232,22,49.583333,2.516667,1.14
+ Feuquières ,FEUQUIERES ,60960,60233,22,49.65,1.85,1.63
+ Fitz-James ,FITZ JAMES ,60600,60234,22,49.4,2.433333,0.34
+ Flavacourt ,FLAVACOURT ,60590,60235,22,49.35,1.816667,1.73
+ Flavy-le-Meldeux ,FLAVY LE MELDEUX ,60640,60236,22,49.683333,3.05,1.86
+ Fléchy ,FLECHY ,60120,60237,22,49.65,2.233333,1.62
+ Fleurines ,FLEURINES ,60700,60238,22,49.25,2.583333,1.8
+Fleury, ,60240,60239,22,49.25,1.966667,1.3
+ Fontaine-Bonneleau ,FONTAINE BONNELEAU ,60360,60240,22,49.666667,2.15,1.74
+ Fontaine-Chaâlis ,FONTAINE CHAALIS ,60300,60241,22,49.166667,2.683333,1.88
+ Fontaine-Lavaganne ,FONTAINE LAVAGANNE ,60690,60242,22,49.6,1.933333,1.39
+ Fontaine-Saint-Lucien ,FONTAINE SAINT LUCIEN ,60480,60243,22,49.5,2.133333,1.56
+ Fontenay-Torcy ,FONTENAY TORCY ,60380,60244,22,49.566667,1.766667,1.87
+ Formerie ,FORMERIE ,60220,60245,22,49.65,1.733333,1.97
+ Fosseuse ,FOSSEUSE ,60540,60246,22,49.216667,2.2,1.51
+ Fouilleuse ,FOUILLEUSE ,60190,60247,22,49.433333,2.55,1.15
+ Foulangues ,FOULANGUES ,60250,60249,22,49.283333,2.316667,1.22
+ Fouquenies ,FOUQUENIES ,60000,60250,22,49.466667,2.05,1.06
+ Fouquerolles ,FOUQUEROLLES ,60510,60251,22,49.466667,2.216667,0.58
+ Fournival ,FOURNIVAL ,60130,60252,22,49.466667,2.383333,0.92
+ Francastel ,FRANCASTEL ,60480,60253,22,49.583333,2.15,1.3
+ Francières ,FRANCIERES ,60190,60254,22,49.45,2.683333,0.95
+ Fréniches ,FRENICHES ,60640,60255,22,49.666667,3,1.74
+ Fresneaux-Montchevreuil ,FRESNEAUX MONTCHEVREUIL ,60240,60256,22,49.283333,2,1.43
+ Fresnières ,FRESNIERES ,60310,60258,22,49.616667,2.816667,1.38
+ Fresnoy-en-Thelle ,FRESNOY EN THELLE ,60530,60259,22,49.2,2.266667,1.63
+ Fresnoy-la-Rivière ,FRESNOY LA RIVIERE ,60127,60260,22,49.283333,2.916667,1.44
+ Fresnoy-le-Luat ,FRESNOY LE LUAT ,60800,60261,22,49.216667,2.766667,1.66
+ Le Frestoy-Vaux ,LE FRESTOY VAUX ,60420,60262,22,49.6,2.6,1.26
+ Frétoy-le-Château ,FRETOY LE CHATEAU ,60640,60263,22,49.666667,2.983333,1.74
+ Frocourt ,FROCOURT ,60000,60264,22,49.383333,2.083333,1.11
+ Froissy ,FROISSY ,60480,60265,22,49.566667,2.216667,1.02
+ Le Gallet ,LE GALLET ,60360,60267,22,49.616667,2.1,1.38
+ Gannes ,GANNES ,60120,60268,22,49.566667,2.433333,1.44
+ Gaudechart ,GAUDECHART ,60210,60269,22,49.6,1.95,1.34
+ Genvry ,GENVRY ,60400,60270,22,49.6,2.983333,1.63
+ Gerberoy ,GERBEROY ,60380,60271,22,49.533333,1.85,1.63
+ Gilocourt ,GILOCOURT ,60129,60272,22,49.3,2.883333,1.34
+ Giraumont ,GIRAUMONT ,60150,60273,22,49.466667,2.816667,1.22
+ Glaignes ,GLAIGNES ,60129,60274,22,49.266667,2.85,1.66
+ Glatigny ,GLATIGNY ,60650,60275,22,49.5,1.9,1.49
+ Godenvillers ,GODENVILLERS ,60420,60276,22,49.583333,2.55,1.14
+ Goincourt ,GOINCOURT ,60000,60277,22,49.433333,2.033333,1.1
+ Golancourt ,GOLANCOURT ,60640,60278,22,49.7,3.066667,1.98
+ Gondreville ,GONDREVILLE ,60117,60279,22,49.216667,2.95,1.53
+ Gourchelles ,GOURCHELLES ,60220,60280,22,49.733333,1.783333,2.22
+ Gournay-sur-Aronde ,GOURNAY SUR ARONDE ,60190,60281,22,49.483333,2.683333,1.17
+ Gouvieux ,GOUVIEUX ,60270,60282,22,49.183333,2.416667,1.75
+ Grandfresnoy ,GRANDFRESNOY ,60680,60284,22,49.366667,2.65,1.99
+ Grandvillers-aux-Bois ,GRANDVILLERS AUX BOIS ,60190,60285,22,49.45,2.6,0.52
+ Grandvilliers ,GRANDVILLIERS ,60210,60286,22,49.666667,1.933333,1.74
+ Grandrû ,GRANDRU ,60400,60287,22,49.6,3.083333,1.91
+ Grémévillers ,GREMEVILLERS ,60380,60288,22,49.566667,1.9,1.49
+ Grez ,GREZ ,60210,60289,22,49.633333,1.966667,1.5
+ Guignecourt ,GUIGNECOURT ,60480,60290,22,49.483333,2.116667,1.92
+ Guiscard ,GUISCARD ,60640,60291,22,49.65,3.05,1.82
+ Gury ,GURY ,60310,60292,22,49.566667,2.816667,1.15
+ Hainvillers ,HAINVILLERS ,60490,60294,22,49.591667,2.683333,1.2
+ Halloy ,HALLOY ,60210,60295,22,49.65,1.933333,1.62
+ Hannaches ,HANNACHES ,60650,60296,22,49.5,1.816667,1.73
+ Hanvoile ,HANVOILE ,60650,60298,22,49.516667,1.883333,1.54
+ Hardivillers ,HARDIVILLERS ,60120,60299,22,49.616667,2.216667,1.38
+ Hardivillers-en-Vexin ,HARDIVILLERS EN VEXIN ,60240,60300,22,49.3,1.933333,1.39
+ Haucourt ,HAUCOURT ,60112,60301,22,49.516667,1.933333,1.39
+ Haudivillers ,HAUDIVILLERS ,60510,60302,22,49.483333,2.25,0.62
+ Hautbos ,HAUTBOS ,60210,60303,22,49.633333,1.866667,1.58
+ Haute-Épine ,HAUTE EPINE ,60690,60304,22,49.583333,2,1.2
+ Hautefontaine ,HAUTEFONTAINE ,60350,60305,22,49.366667,3.066667,1.87
+ Hécourt ,HECOURT ,60380,60306,22,49.516667,1.766667,1.87
+ Heilles ,HEILLES ,60250,60307,22,49.35,2.266667,1.34
+ Hémévillers ,HEMEVILLERS ,60190,60308,22,49.466667,2.666667,0.81
+ Hénonville ,HENONVILLE ,60119,60309,22,49.2,2.05,1.63
+ Herchies ,HERCHIES ,60112,60310,22,49.5,2.016667,1.15
+ La Hérelle ,LA HERELLE ,60120,60311,22,49.583333,2.416667,1.19
+ Héricourt-sur-Thérain ,HERICOURT SUR THERAIN ,60380,60312,22,49.583333,1.766667,1.87
+ Hermes ,HERMES ,60370,60313,22,49.366667,2.25,0.48
+ Hétomesnil ,HETOMESNIL ,60360,60314,22,49.633333,2.033333,1.5
+ Hodenc-en-Bray ,HODENC EN BRAY ,60650,60315,22,49.483333,1.9,1.49
+ Hodenc-l'Evêque ,HODENC L EVEQUE ,60430,60316,22,49.35,2.15,0.77
+ Hondainville ,HONDAINVILLE ,60250,60317,22,49.35,2.3,0.62
+ Houdancourt ,HOUDANCOURT ,60710,60318,22,49.35,2.65,1
+ La Houssoye ,LA HOUSSOYE ,60390,60319,22,49.366667,1.933333,1.39
+ Ivors ,IVORS ,60141,60320,22,49.2,3.016667,1.72
+ Ivry-le-Temple ,IVRY LE TEMPLE ,60173,60321,22,49.233333,2.033333,1.39
+ Jaméricourt ,JAMERICOURT ,60240,60322,22,49.3,1.883333,1.54
+ Janville ,JANVILLE ,60150,60323,22,49.45,2.866667,1.29
+ Jaulzy ,JAULZY ,60350,60324,22,49.383333,3.05,1.82
+ Jaux ,JAUX ,60880,60325,22,49.383333,2.766667,1
+ Jonquières ,JONQUIERES ,60680,60326,22,49.4,2.733333,1.67
+ Jouy-sous-Thelle ,JOUY SOUS THELLE ,60240,60327,22,49.333333,1.966667,1.43
+ Juvignies ,JUVIGNIES ,60112,60328,22,49.516667,2.083333,1.38
+ Laberlière ,LABERLIERE ,60310,60329,22,49.583333,2.766667,1.67
+ Laboissière-en-Thelle ,LABOISSIERE EN THELLE ,60570,60330,22,49.3,2.15,1.35
+ Labosse ,LABOSSE ,60590,60331,22,49.35,1.9,1.57
+ Labruyère ,LABRUYERE ,60140,60332,22,49.366667,2.516667,1.54
+ Lachapelle-aux-Pots ,LACHAPELLE AUX POTS ,60650,60333,22,49.466667,1.9,1.49
+ Lachapelle-Saint-Pierre ,LACHAPELLE SAINT PIERRE ,60730,60334,22,49.266667,2.233333,1.15
+ Lachapelle-sous-Gerberoy ,LACHAPELLE SOUS GERBEROY ,60380,60335,22,49.533333,1.866667,1.58
+ Lachelle ,LACHELLE ,60190,60337,22,49.45,2.733333,1.72
+ Lacroix-Saint-Ouen ,LACROIX SAINT OUEN ,60610,60338,22,49.35,2.783333,1.05
+ Lafraye ,LAFRAYE ,60510,60339,22,49.5,2.216667,0.78
+ Lagny ,LAGNY ,60310,60340,22,49.616667,2.916667,1.44
+ Lagny-le-Sec ,LAGNY LE SEC ,60330,60341,22,49.083333,2.75,2.48
+ Laigneville ,LAIGNEVILLE ,60290,60342,22,49.3,2.45,0.95
+ Lalande-en-Son ,LALANDE EN SON ,60590,60343,22,49.383333,1.783333,1.82
+ Lalandelle ,LALANDELLE ,60850,60344,22,49.4,1.883333,1.8
+ Lamécourt ,LAMECOURT ,60600,60345,22,49.433333,2.466667,0.77
+ Lamorlaye ,LAMORLAYE ,60260,60346,22,49.15,2.433333,2
+ Lannoy-Cuillère ,LANNOY CUILLERE ,60220,60347,22,49.7,1.75,1.98
+ Lassigny ,LASSIGNY ,60310,60350,22,49.583333,2.85,1.24
+ Lataule ,LATAULE ,60490,60351,22,49.55,2.683333,0.93
+ Lattainville ,LATTAINVILLE ,60240,60352,22,49.25,1.816667,1.73
+ Lavacquerie ,LAVACQUERIE ,60120,60353,22,49.683333,2.1,2.45
+ Laverrière ,LAVERRIERE ,60210,60354,22,49.683333,2.016667,1.86
+ Laversines ,LAVERSINES ,60510,60355,22,49.433333,2.2,0.63
+ Lavilletertre ,LAVILLETERTRE ,60240,60356,22,49.2,1.933333,1.63
+ Léglantiers ,LEGLANTIERS ,60420,60357,22,49.5,2.533333,1.33
+ Levignen ,LEVIGNEN ,60800,60358,22,49.2,2.916667,1.63
+ Lhéraule ,LHERAULE ,60650,60359,22,49.483333,1.933333,1.39
+ Liancourt ,LIANCOURT ,60140,60360,22,49.333333,2.466667,0.69
+ Liancourt-Saint-Pierre ,LIANCOURT SAINT PIERRE ,60240,60361,22,49.233333,1.916667,1.44
+ Libermont ,LIBERMONT ,60640,60362,22,49.7,2.966667,1.98
+ Lierville ,LIERVILLE ,60240,60363,22,49.183333,1.883333,1.75
+ Lieuvillers ,LIEUVILLERS ,60130,60364,22,49.483333,2.5,1.27
+ Lihus ,LIHUS ,60360,60365,22,49.6,2.05,1.26
+ Litz ,LITZ ,60510,60366,22,49.433333,2.333333,1.76
+ Loconville ,LOCONVILLE ,60240,60367,22,49.266667,1.916667,1.44
+ Longueil-Annel ,LONGUEIL ANNEL ,60150,60368,22,49.466667,2.866667,1.29
+ Longueil-Sainte-Marie ,LONGUEIL SAINTE MARIE ,60126,60369,22,49.35,2.716667,1
+ Lormaison ,LORMAISON ,60110,60370,22,49.25,2.1,1.27
+ Loueuse ,LOUEUSE ,60380,60371,22,49.6,1.833333,1.68
+ Luchy ,LUCHY ,60360,60372,22,49.55,2.116667,1.38
+ Machemont ,MACHEMONT ,60150,60373,22,49.5,2.866667,1.29
+ Maimbeville ,MAIMBEVILLE ,60600,60375,22,49.416667,2.516667,1.57
+ Maisoncelle-Saint-Pierre ,MAISONCELLE SAINT PIERRE ,60112,60376,22,49.516667,2.116667,1.89
+ Maisoncelle-Tuilerie ,MAISONCELLE TUILERIE ,60480,60377,22,49.583333,2.216667,1.14
+ Marest-sur-Matz ,MAREST SUR MATZ ,60490,60378,22,49.516667,2.833333,1.93
+ Mareuil-la-Motte ,MAREUIL LA MOTTE ,60490,60379,22,49.55,2.8,1.2
+ Mareuil-sur-Ourcq ,MAREUIL SUR OURCQ ,60890,60380,22,49.133333,3.066667,2.12
+ Margny-aux-Cerises ,MARGNY AUX CERISES ,60310,60381,22,49.683333,2.866667,1.86
+ Margny-lès-Compiègne ,MARGNY LES COMPIEGNE ,60280,60382,22,49.433333,2.816667,1.15
+ Margny-sur-Matz ,MARGNY SUR MATZ ,60490,60383,22,49.516667,2.783333,1.14
+ Marolles ,MAROLLES ,60890,60385,22,49.166667,3.1,1.96
+ Marquéglise ,MARQUEGLISE ,60490,60386,22,49.516667,2.766667,1
+ Marseille-en-Beauvaisis ,MARSEILLE EN BEAUVAISIS ,60860,60387,22,49.583333,1.95,1.58
+ Martincourt ,MARTINCOURT ,60112,60388,22,49.533333,1.9,1.49
+ Maulers ,MAULERS ,60480,60390,22,49.55,2.166667,0.9
+ Maysel ,MAYSEL ,60660,60391,22,49.266667,2.383333,1.15
+ Mélicocq ,MELICOCQ ,60150,60392,22,49.5,2.85,1.24
+ Mello ,MELLO ,60660,60393,22,49.266667,2.366667,1.15
+ Ménévillers ,MENEVILLERS ,60420,60394,22,49.516667,2.6,1.2
+ Méru ,MERU ,60110,60395,22,49.233333,2.133333,1.39
+ Méry-la-Bataille ,MERY LA BATAILLE ,60420,60396,22,49.55,2.633333,1.44
+ Le Mesnil-Conteville ,LE MESNIL CONTEVILLE ,60210,60397,22,49.666667,2.066667,2.02
+ Le Mesnil-en-Thelle ,LE MESNIL EN THELLE,60530,60398,22,49.183333,2.283333,1.75
+ Le Mesnil-Saint-Firmin ,LE MESNIL SAINT FIRMIN,60120,60399,22,49.633333,2.416667,1.5
+ Le Mesnil-sur-Bulles ,LE MESNIL SUR BULLES,60130,60400,22,49.5,2.35,1.34
+ Le Mesnil-Théribus ,LE MESNIL THERIBUS ,60240,60401,22,49.3,1.983333,1.32
+ Le Meux ,LE MEUX ,60880,60402,22,49.366667,2.733333,1.5
+ Milly-sur-Thérain ,MILLY SUR THERAIN ,60112,60403,22,49.5,2,1.2
+ Mogneville ,MOGNEVILLE ,60140,60404,22,49.316667,2.466667,1.11
+ Moliens ,MOLIENS ,60220,60405,22,49.666667,1.816667,1.74
+ Monceaux ,MONCEAUX ,60940,60406,22,49.316667,2.55,1.5
+ Monceaux-l'Abbaye ,MONCEAUX L ABBAYE ,60220,60407,22,49.65,1.783333,1.82
+ Monchy-Humières ,MONCHY HUMIERES ,60113,60408,22,49.466667,2.75,0.96
+ Monchy-Saint-Éloi ,MONCHY SAINT ELOI ,60290,60409,22,49.3,2.466667,1.37
+ Mondescourt ,MONDESCOURT ,60400,60410,22,49.583333,3.116667,2.01
+ Monneville ,MONNEVILLE ,60240,60411,22,49.216667,1.983333,1.51
+ Montagny-en-Vexin ,MONTAGNY EN VEXIN ,60240,60412,22,49.2,1.8,1.78
+ Montataire ,MONTATAIRE ,60160,60414,22,49.266667,2.433333,1.15
+ Montépilloy ,MONTEPILLOY ,60810,60415,22,49.216667,2.7,1.51
+ Montgérain ,MONTGERAIN ,60420,60416,22,49.533333,2.583333,0.78
+ Montherlant ,MONTHERLANT ,60790,60417,22,49.283333,2.05,1.06
+ Montiers ,MONTIERS ,60190,60418,22,49.5,2.583333,1.16
+ Montjavoult ,MONTJAVOULT ,60240,60420,22,49.216667,1.783333,1.82
+ Mont-l'Evêque ,MONT L EVEQUE ,60300,60421,22,49.2,2.633333,1.63
+ Montlognon ,MONTLOGNON ,60300,60422,22,49.166667,2.683333,1.88
+ Montmacq ,MONTMACQ ,60150,60423,22,49.483333,2.9,1.39
+ Montmartin ,MONTMARTIN ,60190,60424,22,49.466667,2.7,1.27
+ Montreuil-sur-Brêche ,MONTREUIL SUR BRECHE ,60480,60425,22,49.516667,2.266667,0.83
+ Montreuil-sur-Thérain ,MONTREUIL SUR THERAIN ,60134,60426,22,49.383333,2.2,1
+ Monts ,MONTS ,60119,60427,22,49.216667,2.016667,1.51
+ Le Mont-Saint-Adrien ,LE MONT SAINT ADRIEN,60650,60428,22,49.45,2,1.48
+ Morangles ,MORANGLES ,60530,60429,22,49.2,2.3,1.63
+ Morienval ,MORIENVAL ,60127,60430,22,49.3,2.933333,1.48
+ Morlincourt ,MORLINCOURT ,60400,60431,22,49.566667,3.05,1.82
+ Mortefontaine ,MORTEFONTAINE ,60128,60432,22,49.116667,2.6,2.24
+ Mortefontaine-en-Thelle ,MORTEFONTAINE EN THELLE ,60570,60433,22,49.266667,2.183333,1.15
+ Mortemer ,MORTEMER ,60490,60434,22,49.583333,2.666667,1.33
+ Morvillers ,MORVILLERS ,60380,60435,22,49.583333,1.866667,1.58
+ Mory-Montcrux ,MORY MONTCRUX ,60120,60436,22,49.583333,2.4,1.14
+ Mouchy-le-Châtel ,MOUCHY LE CHATEL ,60250,60437,22,49.333333,2.25,1.68
+ Mouy ,MOUY ,60250,60439,22,49.316667,2.316667,0.79
+ Moyvillers ,MOYVILLERS ,60190,60441,22,49.416667,2.65,0.67
+ Muidorge ,MUIDORGE ,60480,60442,22,49.533333,2.133333,1.41
+ Muirancourt ,MUIRANCOURT ,60640,60443,22,49.65,3,1.68
+ Mureaumont ,MUREAUMONT ,60220,60444,22,49.633333,1.783333,1.82
+ Nampcel ,NAMPCEL ,60400,60445,22,49.483333,3.1,1.96
+ Nanteuil-le-Haudouin ,NANTEUIL LE HAUDOUIN ,60440,60446,22,49.133333,2.8,2.12
+ Néry ,NERY ,60320,60447,22,49.283333,2.783333,1.17
+ Neufchelles ,NEUFCHELLES ,60890,60448,22,49.116667,3.066667,2.24
+ Neufvy-sur-Aronde ,NEUFVY SUR ARONDE ,60190,60449,22,49.5,2.666667,1.18
+ Neuilly-en-Thelle ,NEUILLY EN THELLE ,60530,60450,22,49.216667,2.283333,1.51
+ Neuilly-sous-Clermont ,NEUILLY SOUS CLERMONT ,60290,60451,22,49.35,2.4,1.49
+ Neuville-Bosc ,NEUVILLE BOSC ,60119,60452,22,49.2,2.016667,1.63
+ La Neuville-d'Aumont ,LA NEUVILLE D AUMONT,60790,60453,22,49.316667,2.1,0.91
+ La Neuville-en-Hez ,LA NEUVILLE EN HEZ,60510,60454,22,49.416667,2.333333,1.83
+ La Neuville-Garnier ,LA NEUVILLE GARNIER ,60390,60455,22,49.35,2.033333,1.1
+ Laneuvilleroy ,LANEUVILLEROY ,60190,60456,22,49.483333,2.583333,0.95
+ La Neuville-Saint-Pierre ,LA NEUVILLE SAINT PIERRE,60480,60457,22,49.533333,2.2,0.78
+ La Neuville-sur-Oudeuil ,LA NEUVILLE SUR OUDEUIL,60690,60458,22,49.583333,2,1.2
+ La Neuville-Vault ,LA NEUVILLE VAULT ,60112,60460,22,49.483333,1.95,1.34
+ Nivillers ,NIVILLERS ,60510,60461,22,49.466667,2.166667,1.01
+ Noailles ,NOAILLES ,60430,60462,22,49.333333,2.2,1.49
+ Nogent-sur-Oise ,NOGENT SUR OISE ,60180,60463,22,49.266667,2.466667,1.15
+ Nointel ,NOINTEL ,60600,60464,22,49.383333,2.483333,0.94
+ Noirémont ,NOIREMONT ,60480,60465,22,49.55,2.216667,0.9
+ Noroy ,NOROY ,60130,60466,22,49.45,2.5,1.49
+ Nourard-le-Franc ,NOURARD LE FRANC ,60130,60468,22,49.5,2.366667,1.05
+ Noyers-Saint-Martin ,NOYERS SAINT MARTIN ,60480,60470,22,49.55,2.266667,0.9
+ Noyon ,NOYON ,60400,60471,22,49.583333,3,1.68
+ Ognes ,OGNES ,60440,60473,22,49.1,2.825,-1
+ Ognolles ,OGNOLLES ,60310,60474,22,49.683333,2.9,1.86
+ Ognon ,OGNON ,60810,60475,22,49.233333,2.65,1.39
+ Omécourt ,OMECOURT ,60220,60476,22,49.616667,1.85,1.67
+ Ons-en-Bray ,ONS EN BRAY ,60650,60477,22,49.416667,1.916667,1.44
+ Ormoy-le-Davien ,ORMOY LE DAVIEN ,60620,60478,22,49.2,2.966667,1.63
+ Ormoy-Villers ,ORMOY VILLERS ,60800,60479,22,49.2,2.833333,1.63
+ Oroër ,OROER ,60510,60480,22,49.5,2.166667,1.25
+ Orrouy ,ORROUY ,60129,60481,22,49.283333,2.866667,1.29
+ Orry-la-Ville ,ORRY LA VILLE ,60560,60482,22,49.133333,2.516667,2.12
+ Orvillers-Sorel ,ORVILLERS SOREL ,60490,60483,22,49.583333,2.7,1.14
+ Oudeuil ,OUDEUIL ,60860,60484,22,49.55,2.016667,1.15
+ Paillart ,PAILLART ,60120,60486,22,49.666667,2.316667,1.74
+ Parnes ,PARNES ,60240,60487,22,49.2,1.733333,2.08
+ Passel ,PASSEL ,60400,60488,22,49.55,2.95,1.53
+ Péroy-les-Gombries ,PEROY LES GOMBRIES ,60440,60489,22,49.166667,2.85,1.88
+ Pierrefonds ,PIERREFONDS ,60350,60491,22,49.35,2.983333,1.63
+ Pimprez ,PIMPREZ ,60170,60492,22,49.516667,2.95,1.53
+ Plailly ,PLAILLY ,60128,60494,22,49.1,2.583333,2.36
+ Plainval ,PLAINVAL ,60130,60495,22,49.533333,2.45,0.78
+ Plainville ,PLAINVILLE ,60120,60496,22,49.6,2.45,1.49
+ Le Plessier-sur-Bulles ,LE PLESSIER SUR BULLES,60130,60497,22,49.5,2.316667,1.92
+ Le Plessier-sur-Saint-Just ,LE PLESSIER SUR SAINT,60130,60498,22,49.516667,2.45,0.66
+ Plessis-de-Roye ,PLESSIS DE ROYE ,60310,60499,22,49.583333,2.833333,1.2
+ Le Plessis-Belleville ,LE PLESSIS BELLEVILLE ,60330,60500,22,49.1,2.766667,2.36
+ Le Plessis-Brion ,LE PLESSIS BRION ,60150,60501,22,49.466667,2.9,1.39
+ Le Ployron ,LE PLOYRON ,60420,60503,22,49.583333,2.583333,1.14
+ Ponchon ,PONCHON ,60430,60504,22,49.35,2.2,1.32
+ Pontarmé ,PONTARME ,60520,60505,22,49.15,2.55,2
+ Pont-l'Évêque ,PONT L EVEQUE ,60400,60506,22,49.566667,2.983333,1.63
+ Pontoise-lès-Noyon ,PONTOISE LES NOYON ,60400,60507,22,49.55,3.05,1.82
+ Pontpoint ,PONTPOINT ,60700,60508,22,49.3,2.65,1.47
+ Pont-Sainte-Maxence ,PONT SAINTE MAXENCE ,60700,60509,22,49.3,2.6,0.91
+ Porcheux ,PORCHEUX ,60390,60510,22,49.35,1.916667,1.45
+ Porquéricourt ,PORQUERICOURT ,60400,60511,22,49.583333,2.966667,1.58
+ Pouilly ,POUILLY ,60790,60512,22,49.266667,2.033333,1.38
+ Précy-sur-Oise ,PRECY SUR OISE ,60460,60513,22,49.2,2.366667,1.63
+ Prévillers ,PREVILLERS ,60360,60514,22,49.6,2,1.91
+ Pronleroy ,PRONLEROY ,60190,60515,22,49.466667,2.55,1.23
+ Puiseux-en-Bray ,PUISEUX EN BRAY ,60850,60516,22,49.416667,1.783333,1.82
+ Puiseux-le-Hauberger ,PUISEUX LE HAUBERGER ,60540,60517,22,49.216667,2.233333,1.51
+ Puits-la-Vallée ,PUITS LA VALLEE ,60480,60518,22,49.583333,2.2,1.14
+ Quesmy ,QUESMY ,60640,60519,22,49.616667,3.05,1.82
+ Le Quesnel-Aubry ,LE QUESNEL AUBRY ,60480,60520,22,49.516667,2.3,1.31
+ Quincampoix-Fleuzy ,QUINCAMPOIX FLEUZY ,60220,60521,22,49.75,1.766667,2.34
+ Quinquempoix ,QUINQUEMPOIX ,60130,60522,22,49.55,2.416667,0.94
+ Rainvillers ,RAINVILLERS ,60650,60523,22,49.416667,2,1.64
+ Rantigny ,RANTIGNY ,60290,60524,22,49.333333,2.433333,0.67
+ Raray ,RARAY ,60810,60525,22,49.266667,2.716667,1.15
+ Ravenel ,RAVENEL ,60130,60526,22,49.516667,2.5,1.3
+ Réez-Fosse-Martin ,REEZ FOSSE MARTIN ,60620,60527,22,49.1,2.95,2.36
+ Reilly ,REILLY ,60240,60528,22,49.25,1.85,1.63
+ Rémécourt ,REMECOURT ,60600,60529,22,49.433333,2.483333,1.03
+ Rémérangles ,REMERANGLES ,60510,60530,22,49.45,2.283333,0.92
+ Rémy ,REMY ,60190,60531,22,49.433333,2.716667,1.45
+ Ressons-sur-Matz ,RESSONS SUR MATZ ,60490,60533,22,49.55,2.75,0.96
+ Rethondes ,RETHONDES ,60153,60534,22,49.416667,2.95,1.53
+ Reuil-sur-Brêche ,REUIL SUR BRECHE ,60480,60535,22,49.516667,2.216667,0.66
+ Rhuis ,RHUIS ,60410,60536,22,49.3,2.7,0.91
+ Ricquebourg ,RICQUEBOURG ,60490,60538,22,49.566667,2.75,1.02
+ Rieux ,RIEUX ,60870,60539,22,49.3,2.516667,0.91
+ Rivecourt ,RIVECOURT ,60126,60540,22,49.35,2.733333,1
+ Roberval ,ROBERVAL ,60410,60541,22,49.3,2.683333,1.13
+ Rochy-Condé ,ROCHY CONDE ,60510,60542,22,49.416667,2.183333,0.93
+ Rocquemont ,ROCQUEMONT ,60800,60543,22,49.266667,2.816667,1.15
+ Rocquencourt ,ROCQUENCOURT ,60120,60544,22,49.65,2.416667,1.62
+ Romescamps ,ROMESCAMPS ,60220,60545,22,49.716667,1.8,2.1
+ Rosières ,ROSIERES ,60440,60546,22,49.183333,2.783333,1.75
+ Rosoy ,ROSOY ,60140,60547,22,49.35,2.5,0.69
+ Rosoy-en-Multien ,ROSOY EN MULTIEN ,60620,60548,22,49.083333,3,2.48
+ Rotangy ,ROTANGY ,60360,60549,22,49.583333,2.083333,1.14
+ Rothois ,ROTHOIS ,60690,60550,22,49.6,2,1.26
+ Rousseloy ,ROUSSELOY ,60660,60551,22,49.3,2.4,2.09
+ Rouville ,ROUVILLE ,60800,60552,22,49.216667,2.866667,1.51
+ Rouvillers ,ROUVILLERS ,60190,60553,22,49.45,2.6,0.52
+ Rouvroy-les-Merles ,ROUVROY LES MERLES ,60120,60555,22,49.65,2.35,1.62
+ Royaucourt ,ROYAUCOURT ,60420,60556,22,49.6,2.533333,1.26
+ Roy-Boissy ,ROY BOISSY ,60690,60557,22,49.583333,1.916667,1.44
+ Roye-sur-Matz ,ROYE SUR MATZ ,60310,60558,22,49.583333,2.783333,1.4
+ La Rue-Saint-Pierre ,LA RUE SAINT PIERRE,60510,60559,22,49.416667,2.3,1.33
+ Rully ,RULLY ,60810,60560,22,49.233333,2.733333,1.39
+ Russy-Bémont ,RUSSY BEMONT ,60117,60561,22,49.25,2.966667,1.58
+ Sacy-le-Grand ,SACY LE GRAND ,60700,60562,22,49.35,2.55,1.62
+ Sacy-le-Petit ,SACY LE PETIT ,60190,60563,22,49.366667,2.633333,1.11
+ Sains-Morainvillers ,SAINS MORAINVILLERS ,60420,60564,22,49.566667,2.483333,1.47
+ Saint-André-Farivillers ,SAINT ANDRE FARIVILLERS ,60480,60565,22,49.583333,2.3,1.39
+ Saint-Arnoult ,SAINT ARNOULT ,60220,60566,22,49.633333,1.816667,1.73
+ Saint-Aubin-en-Bray ,SAINT AUBIN EN BRAY,60650,60567,22,49.433333,1.883333,1.54
+ Saint-Aubin-sous-Erquery ,SAINT AUBIN SOUS ERQUERY,60600,60568,22,49.416667,2.483333,0.85
+ Saint-Crépin-aux-Bois ,SAINT CREPIN AUX BOIS,60170,60569,22,49.433333,2.983333,1.63
+ Saint-Crépin-Ibouvillers ,SAINT CREPIN IBOUVILLERS ,60149,60570,22,49.266667,2.066667,1.15
+ Saint-Deniscourt ,SAINT DENISCOURT ,60380,60571,22,49.6,1.866667,1.58
+ Saint-Etienne-Roilaye ,SAINT ETIENNE ROILAYE ,60350,60572,22,49.35,3.016667,1.72
+ Sainte-Eusoye ,SAINTE EUSOYE ,60480,60573,22,49.583333,2.233333,1.14
+ Saint-Félix ,SAINT FELIX ,60370,60574,22,49.366667,2.283333,1.5
+ Sainte-Geneviève ,SAINTE GENEVIEVE ,60730,60575,22,49.283333,2.2,1.38
+ Saint-Germain-la-Poterie ,SAINT GERMAIN LA POTERIE,60650,60576,22,49.45,1.983333,1.25
+ Saint-Germer-de-Fly ,SAINT GERMER DE FLY,60850,60577,22,49.45,1.783333,1.82
+ Saintines ,SAINTINES ,60410,60578,22,49.3,2.766667,1.69
+ Saint-Jean-aux-Bois ,SAINT JEAN AUX BOIS,60350,60579,22,49.35,2.916667,2.22
+ Saint-Just-en-Chaussée ,SAINT JUST EN CHAUSSEE,60130,60581,22,49.5,2.433333,0.54
+ Saint-Léger-aux-Bois ,SAINT LEGER AUX BOIS,60170,60582,22,49.483333,2.95,1.53
+ Saint-Léger-en-Bray ,SAINT LEGER EN BRAY,60155,60583,22,49.4,2.016667,1.15
+ Saint-Leu-d'Esserent ,SAINT LEU D ESSERENT,60340,60584,22,49.216667,2.416667,1.51
+ Saint-Martin-aux-Bois ,SAINT MARTIN AUX BOIS,60420,60585,22,49.516667,2.566667,0.92
+ Saint-Martin-le-Noeud ,SAINT MARTIN LE NOEUD,60000,60586,22,49.416667,2.033333,1.1
+ Saint-Martin-Longueau ,SAINT MARTIN LONGUEAU ,60700,60587,22,49.35,2.6,0.97
+ Saint-Maur ,SAINT MAUR ,60210,60588,22,49.6,1.916667,1.44
+ Saint-Maximin ,SAINT MAXIMIN ,60740,60589,22,49.216667,2.45,1.51
+ Saint-Omer-en-Chaussée ,SAINT OMER EN CHAUSSEE,60860,60590,22,49.533333,2,1.2
+ Saint-Paul ,SAINT PAUL ,60650,60591,22,49.433333,2,1.54
+ Saint-Pierre-lès-Bitry ,SAINT PIERRE LES BITRY,60350,60593,22,49.433333,3.083333,1.91
+ Saint-Quentin-des-Prés ,SAINT QUENTIN DES PRES,60380,60594,22,49.516667,1.75,1.92
+ Saint-Rémy-en-l'Eau ,SAINT REMY EN L,60130,60595,22,49.483333,2.433333,0.42
+ Saint-Sauveur ,SAINT SAUVEUR ,60320,60597,22,49.316667,2.783333,1.17
+ Saint-Sulpice ,SAINT SULPICE ,60430,60598,22,49.366667,2.116667,1.27
+ Saint-Thibault ,SAINT THIBAULT ,60210,60599,22,49.7,1.85,1.98
+ Saint-Vaast-de-Longmont ,SAINT VAAST DE LONGMONT,60410,60600,22,49.3,2.733333,0.91
+ Saint-Vaast-lès-Mello ,SAINT VAAST LES MELLO,60660,60601,22,49.266667,2.383333,1.15
+ Salency ,SALENCY ,60400,60603,22,49.583333,3.05,1.82
+ Sarcus ,SARCUS ,60210,60604,22,49.683333,1.866667,1.86
+ Sarnois ,SARNOIS ,60210,60605,22,49.683333,1.9,1.86
+ Sauqueuse-Saint-Lucien ,SAUQUEUSE SAINT LUCIEN ,60112,60607,22,49.516667,2.066667,1.13
+ Savignies ,SAVIGNIES ,60650,60609,22,49.466667,1.966667,1.3
+ Sempigny ,SEMPIGNY ,60400,60610,22,49.55,3,1.68
+ Senantes ,SENANTES ,60650,60611,22,49.5,1.833333,1.68
+ Senlis ,SENLIS ,60300,60612,22,49.2,2.583333,1.63
+ Senots ,SENOTS ,60240,60613,22,49.266667,2,1.37
+ Serans ,SERANS ,60240,60614,22,49.183333,1.833333,1.75
+ Sérévillers ,SEREVILLERS ,60120,60615,22,49.633333,2.433333,1.5
+ Sérifontaine ,SERIFONTAINE ,60590,60616,22,49.35,1.766667,1.87
+ Sermaize ,SERMAIZE ,60400,60617,22,49.616667,2.95,1.53
+ Séry-Magneval ,SERY MAGNEVAL ,60800,60618,22,49.266667,2.85,1.24
+ Silly-le-Long ,SILLY LE LONG ,60330,60619,22,49.1,2.8,2.36
+ Silly-Tillard ,SILLY TILLARD ,60430,60620,22,49.333333,2.15,0.77
+ Solente ,SOLENTE ,60310,60621,22,49.7,2.883333,1.98
+ Sommereux ,SOMMEREUX ,60210,60622,22,49.683333,2,1.86
+ Songeons ,SONGEONS ,60380,60623,22,49.55,1.866667,1.58
+ Sully ,SULLY ,60380,60624,22,49.55,1.783333,1.82
+ Suzoy ,SUZOY ,60400,60625,22,49.583333,2.933333,1.5
+ Talmontiers ,TALMONTIERS ,60590,60626,22,49.383333,1.733333,1.97
+ Tartigny ,TARTIGNY ,60120,60627,22,49.633333,2.35,1.5
+ Therdonne ,THERDONNE ,60510,60628,22,49.416667,2.15,1.39
+ Thérines ,THERINES ,60380,60629,22,49.6,1.9,1.65
+ Thibivillers ,THIBIVILLERS ,60240,60630,22,49.3,1.9,1.49
+ Thiers-sur-Thève ,THIERS SUR THEVE ,60520,60631,22,49.15,2.583333,2
+ Thiescourt ,THIESCOURT ,60310,60632,22,49.566667,2.883333,1.34
+ Thieuloy-Saint-Antoine ,THIEULOY SAINT ANTOINE ,60210,60633,22,49.633333,1.95,1.5
+ Thieux ,THIEUX ,60480,60634,22,49.533333,2.316667,1.51
+ Thiverny ,THIVERNY ,60160,60635,22,49.25,2.433333,1.27
+ Thourotte ,THOUROTTE ,60150,60636,22,49.483333,2.883333,1.34
+ Thury-en-Valois ,THURY EN VALOIS ,60890,60637,22,49.166667,3.033333,1.88
+ Thury-sous-Clermont ,THURY SOUS CLERMONT ,60250,60638,22,49.366667,2.333333,0.98
+ Tillé ,TILLE ,60000,60639,22,49.466667,2.116667,1.42
+ Tourly ,TOURLY ,60240,60640,22,49.216667,1.933333,1.51
+ Tracy-le-Mont ,TRACY LE MONT ,60170,60641,22,49.466667,3,1.68
+ Tracy-le-Val ,TRACY LE VAL ,60170,60642,22,49.483333,3.016667,1.72
+ Tricot ,TRICOT ,60420,60643,22,49.566667,2.583333,1.02
+ Trie-Château ,TRIE CHATEAU ,60590,60644,22,49.283333,1.833333,1.68
+ Trie-la-Ville ,TRIE LA VILLE ,60590,60645,22,49.3,1.833333,1.68
+ Troissereux ,TROISSEREUX ,60112,60646,22,49.483333,2.05,1.06
+ Trosly-Breuil ,TROSLY BREUIL ,60350,60647,22,49.4,2.966667,1.58
+ Troussencourt ,TROUSSENCOURT ,60120,60648,22,49.6,2.25,1.26
+ Troussures ,TROUSSURES ,60390,60649,22,49.4,1.966667,1.3
+ Trumilly ,TRUMILLY ,60800,60650,22,49.25,2.8,1.27
+ Ully-Saint-Georges ,ULLY SAINT GEORGES ,60730,60651,22,49.283333,2.283333,1.38
+ Valdampierre ,VALDAMPIERRE ,60790,60652,22,49.3,2.05,1.06
+ Valescourt ,VALESCOURT ,60130,60653,22,49.483333,2.433333,0.42
+ Vandélicourt ,VANDELICOURT ,60490,60654,22,49.5,2.8,1.57
+ Varesnes ,VARESNES ,60400,60655,22,49.55,3.066667,1.87
+ Varinfroy ,VARINFROY ,60890,60656,22,49.1,3.05,2.36
+ Vauchelles ,VAUCHELLES ,60400,60657,22,49.583333,2.966667,1.58
+ Vauciennes ,VAUCIENNES ,60117,60658,22,49.233333,3.033333,1.77
+ Vaudancourt ,VAUDANCOURT ,60240,60659,22,49.233333,1.766667,1.87
+ Le Vaumain ,LE VAUMAIN ,60590,60660,22,49.35,1.866667,1.58
+ Vaumoise ,VAUMOISE ,60117,60661,22,49.233333,2.983333,1.63
+ Le Vauroux ,LE VAUROUX ,60390,60662,22,49.383333,1.916667,1.5
+ Velennes ,VELENNES ,60510,60663,22,49.483333,2.183333,0.87
+ Vendeuil-Caply ,VENDEUIL CAPLY ,60120,60664,22,49.616667,2.3,1.38
+ Venette ,VENETTE ,60200,60665,22,49.416667,2.8,1.4
+ Ver-sur-Launette ,VER SUR LAUNETTE ,60950,60666,22,49.1,2.683333,2.36
+ Verberie ,VERBERIE ,60410,60667,22,49.316667,2.733333,0.91
+ Verderonne ,VERDERONNE ,60140,60669,22,49.333333,2.5,0.69
+ Verneuil-en-Halatte ,VERNEUIL EN HALATTE ,60550,60670,22,49.283333,2.516667,1.03
+ Vez ,VEZ ,60117,60672,22,49.266667,3,1.68
+ Viefvillers ,VIEFVILLERS ,60360,60673,22,49.6,2.116667,1.26
+ Vieux-Moulin ,VIEUX MOULIN ,60350,60674,22,49.383333,2.933333,1.77
+ Vignemont ,VIGNEMONT ,60162,60675,22,49.5,2.783333,1.05
+ Ville ,VILLE ,60400,60676,22,49.55,2.95,1.53
+ Villembray ,VILLEMBRAY ,60650,60677,22,49.483333,1.866667,1.58
+ Villeneuve-les-Sablons ,VILLENEUVE LES SABLONS ,60175,60678,22,49.233333,2.083333,1.39
+ Villeneuve-sur-Verberie ,VILLENEUVE SUR VERBERIE ,60410,60680,22,49.283333,2.683333,1.26
+ Villers-Saint-Barthélemy ,VILLERS SAINT BARTHELEMY ,60650,60681,22,49.4,1.95,1.34
+ Villers-Saint-Frambourg ,VILLERS SAINT FRAMBOURG ,60810,60682,22,49.266667,2.633333,1.45
+ Villers-Saint-Genest ,VILLERS SAINT GENEST ,60620,60683,22,49.15,2.916667,2
+ Villers-Saint-Paul ,VILLERS SAINT PAUL ,60870,60684,22,49.283333,2.483333,1.42
+ Villers-Saint-Sépulcre ,VILLERS SAINT SEPULCRE ,60134,60685,22,49.383333,2.216667,1
+ Villers-sous-Saint-Leu ,VILLERS SOUS SAINT LEU,60340,60686,22,49.216667,2.4,1.51
+ Villers-sur-Auchy ,VILLERS SUR AUCHY ,60650,60687,22,49.5,1.8,1.84
+ Villers-sur-Bonnières ,VILLERS SUR BONNIERES ,60860,60688,22,49.533333,1.966667,1.3
+ Villers-sur-Coudun ,VILLERS SUR COUDUN ,60150,60689,22,49.483333,2.8,1.67
+ Villers-Vermont ,VILLERS VERMONT ,60380,60691,22,49.583333,1.75,1.92
+ Villers-Vicomte ,VILLERS VICOMTE ,60120,60692,22,49.633333,2.233333,1.5
+ Villeselve ,VILLESELVE ,60640,60693,22,49.683333,3.116667,2.01
+ Villotran ,VILLOTRAN ,60390,60694,22,49.35,2.016667,1.15
+ Vineuil-Saint-Firmin ,VINEUIL SAINT FIRMIN ,60500,60695,22,49.2,2.483333,1.63
+ Vrocourt ,VROCOURT ,60112,60697,22,49.533333,1.883333,1.67
+ Wacquemoulin ,WACQUEMOULIN ,60420,60698,22,49.5,2.616667,1.65
+ Wambez ,WAMBEZ ,60380,60699,22,49.516667,1.85,1.63
+ Warluis ,WARLUIS ,60430,60700,22,49.4,2.133333,1.49
+ Wavignies ,WAVIGNIES ,60130,60701,22,49.55,2.366667,1.4
+ Welles-Pérennes ,WELLES PERENNES ,60420,60702,22,49.616667,2.483333,1.78
+ Aux Marais ,AUX MARAIS ,60000,60703,22,49.433333,2.05,1.06
+ Alençon ,ALENCON ,61000,61001,25,48.433333,0.083333,1.55
+ Almenêches ,ALMENECHES ,61570,61002,25,48.7,0.116667,1.49
+ Antoigny ,ANTOIGNY ,61410,61004,25,48.516667,-0.366667,1.26
+ Appenai-sous-Bellême ,APPENAI SOUS BELLEME ,61130,61005,25,48.35,0.566667,2.19
+ Argentan ,ARGENTAN ,61200,61006,25,48.75,-0.016667,0.87
+ Aubry-en-Exmes ,AUBRY EN EXMES ,61160,61009,25,48.8,0.083333,1.26
+ Aubry-le-Panthou ,AUBRY LE PANTHOU ,61120,61010,25,48.85,0.233333,1.64
+ Aubusson ,AUBUSSON ,61100,61011,25,48.783333,-0.55,1.75
+ Auguaise ,AUGUAISE ,61270,61012,25,48.7,0.55,1.17
+ Aunay-les-Bois ,AUNAY LES BOIS ,61500,61013,25,48.55,0.3,1.74
+ Aunou-le-Faucon ,AUNOU LE FAUCON ,61200,61014,25,48.733333,0.033333,1.39
+ Aunou-sur-Orne ,AUNOU SUR ORNE ,61500,61015,25,48.616667,0.233333,0.93
+ Autheuil ,AUTHEUIL ,61190,61016,25,48.566667,0.666667,1.48
+ Les Authieux-du-Puits ,LES AUTHIEUX DU PUITS,61240,61017,25,48.716667,0.333333,1.2
+ Avernes-Saint-Gourgon ,AVERNES SAINT GOURGON ,61470,61018,25,48.933333,0.333333,2.28
+ Avernes-sous-Exmes ,AVERNES SOUS EXMES ,61310,61019,25,48.8,0.216667,1.26
+ Avoine ,AVOINE ,61150,61020,25,48.666667,-0.1,1.32
+ Avrilly ,AVRILLY ,61700,61021,25,48.533333,-0.616667,1.93
+ Bagnoles-de-l'Orne ,BAGNOLES DE L ORNE,61140,61022,25,48.566667,-0.416667,1.4
+ Bailleul ,BAILLEUL ,61160,61023,25,48.8, ,1.26
+ Banvou ,BANVOU ,61450,61024,25,48.666667,-0.55,1.75
+ La Baroche-sous-Lucé ,LA BAROCHE SOUS LUCE,61330,61025,25,48.533333,-0.583333,1.84
+ Barville ,BARVILLE ,61170,61026,25,48.483333,0.333333,1.17
+ Batilly ,BATILLY ,61150,61027,25,48.716667,-0.2,1.01
+ Bazoches-au-Houlme ,BAZOCHES AU HOULME ,61210,61028,25,48.816667,-0.233333,1.39
+ Bazoches-sur-Hoëne ,BAZOCHES SUR HOENE ,61560,61029,25,48.55,0.466667,0.95
+ Beauchêne ,BEAUCHENE ,61800,61031,25,48.683333,-0.716667,2.19
+ Beaufai ,BEAUFAI ,61270,61032,25,48.75,0.516667,1.39
+ Beaulandais ,BEAULANDAIS ,61140,61033,25,48.55,-0.55,1.75
+ Beaulieu ,BEAULIEU ,61190,61034,25,48.683333,0.741667,-1
+ Beauvain ,BEAUVAIN ,61600,61035,25,48.616667,-0.316667,1.13
+ Belfonds ,BELFONDS ,61500,61036,25,48.616667,0.116667,0.72
+ Bellavilliers ,BELLAVILLIERS ,61360,61037,25,48.416667,0.5,1.68
+ Bellême ,BELLEME ,61130,61038,25,48.366667,0.566667,2.06
+ La Bellière ,LA BELLIERE ,61570,61039,25,48.633333,-0.033333,1.31
+ Bellou-en-Houlme ,BELLOU EN HOULME ,61220,61040,25,48.7,-0.45,1.49
+ Bellou-le-Trichard ,BELLOU LE TRICHARD ,61130,61041,25,48.283333,0.55,2.7
+ Bellou-sur-Huisne ,BELLOU SUR HUISNE ,61110,61042,25,48.416667,0.766667,1.75
+ Berd'huis ,BERD HUIS ,61340,61043,25,48.35,0.75,2.19
+ Berjou ,BERJOU ,61430,61044,25,48.85,-0.483333,1.64
+ Bivilliers ,BIVILLIERS ,61190,61045,25,48.583333,0.616667,1.35
+ Bizou ,BIZOU ,61290,61046,25,48.5,0.75,1.7
+ Bocquencé ,BOCQUENCE ,61550,61047,25,48.833333,0.466667,1.51
+ Boëcé ,BOECE ,61560,61048,25,48.516667,0.466667,1.17
+ Boissei-la-Lande ,BOISSEI LA LANDE ,61570,61049,25,48.683333,0.066667,0.59
+ Boissy-Maugis ,BOISSY MAUGIS ,61110,61050,25,48.433333,0.716667,1.61
+ Boitron ,BOITRON ,61500,61051,25,48.566667,0.266667,1.29
+ Bonnefoi ,BONNEFOI ,61270,61052,25,48.666667,0.566667,1.21
+ Bonsmoulins ,BONSMOULINS ,61380,61053,25,48.65,0.533333,1.13
+ Le Bosc-Renoult ,LE BOSC RENOULT ,61470,61054,25,48.916667,0.316667,2.15
+ Boucé ,BOUCE ,61570,61055,25,48.65,-0.1,2.34
+ Le Bouillon ,LE BOUILLON ,61500,61056,25,48.566667,0.1,0.86
+ Bréel ,BREEL ,61100,61058,25,48.816667,-0.383333,1.46
+ Brésolettes ,BRESOLETTES ,61190,61059,25,48.633333,0.633333,1.39
+ Bréthel ,BRETHEL ,61270,61060,25,48.716667,0.533333,1.13
+ Bretoncelles ,BRETONCELLES ,61110,61061,25,48.433333,0.883333,2.06
+ Brieux ,BRIEUX ,61160,61062,25,48.833333,-0.083333,1.51
+ Briouze ,BRIOUZE ,61220,61063,25,48.7,-0.366667,1.26
+ Brullemail ,BRULLEMAIL ,61390,61064,25,48.65,0.333333,0.59
+ Bubertré ,BUBERTRE ,61190,61065,25,48.6,0.6,1.3
+ Buré ,BURE ,61170,61066,25,48.516667,0.416667,1.18
+ Bures ,BURES ,61170,61067,25,48.566667,0.4,0.91
+ Bursard ,BURSARD ,61500,61068,25,48.55,0.216667,0.78
+ Cahan ,CAHAN ,61430,61069,25,48.866667,-0.45,1.77
+ Caligny ,CALIGNY ,61100,61070,25,48.816667,-0.6,1.88
+ Camembert ,CAMEMBERT ,61120,61071,25,48.9,0.166667,2.02
+ Canapville ,CANAPVILLE ,61120,61072,25,48.95,0.266667,2.41
+ La Carneille ,LA CARNEILLE ,61100,61073,25,48.783333,-0.45,1.49
+ Carrouges ,CARROUGES ,61320,61074,25,48.566667,-0.15,0.69
+ Céaucé ,CEAUCE ,61330,61075,25,48.5,-0.616667,1.93
+ Le Cercueil ,LE CERCUEIL ,61500,61076,25,48.6,0.016667,1.87
+ Cérisé ,CERISE ,61000,61077,25,48.45,0.133333,1.48
+ Ceton ,CETON ,61260,61079,25,48.225,0.75,-1
+ Chahains ,CHAHAINS ,61320,61080,25,48.566667,-0.116667,0.6
+ Chailloué ,CHAILLOUE ,61500,61081,25,48.65,0.2,0.9
+ Le Chalange ,LE CHALANGE ,61390,61082,25,48.6,0.316667,0.79
+ Chambois ,CHAMBOIS ,61160,61083,25,48.8,0.116667,1.28
+ Champcerie ,CHAMPCERIE ,61210,61084,25,48.8,-0.216667,1.26
+ Le Champ-de-la-Pierre ,LE CHAMP DE LA,61320,61085,25,48.6,-0.216667,1.57
+ Les Champeaux ,LES CHAMPEAUX ,61120,61086,25,48.9,0.133333,2.02
+ Champeaux-sur-Sarthe ,CHAMPEAUX SUR SARTHE ,61560,61087,25,48.583333,0.433333,0.86
+ Champ-Haut ,CHAMP HAUT ,61240,61088,25,48.716667,0.316667,0.85
+ Champosoult ,CHAMPOSOULT ,61120,61089,25,48.866667,0.166667,1.77
+ Champs ,CHAMPS ,61190,61090,25,48.583333,0.55,1.8
+ Champsecret ,CHAMPSECRET ,61700,61091,25,48.616667,-0.55,1.75
+ Chandai ,CHANDAI ,61300,61092,25,48.75,0.75,1.7
+ Chanu ,CHANU ,61800,61093,25,48.733333,-0.683333,2.11
+ La Chapelle-au-Moine ,LA CHAPELLE AU MOINE,61100,61094,25,48.7,-0.583333,1.84
+ La Chapelle-Biche ,LA CHAPELLE BICHE ,61100,61095,25,48.716667,-0.633333,1.97
+ La Chapelle-Montligeon ,LA CHAPELLE MONTLIGEON ,61400,61097,25,48.483333,0.65,1.44
+ La Chapelle-près-Sées ,LA CHAPELLE PRES SEES,61500,61098,25,48.566667,0.15,0.53
+ La Chapelle-Souëf ,LA CHAPELLE SOUEF ,61130,61099,25,48.316667,0.6,2.44
+ La Chapelle-Viel ,LA CHAPELLE VIEL ,61270,61100,25,48.7,0.616667,1.68
+ Le Château-d'Almenêches ,LE CHATEAU D ALMENECHES,61570,61101,25,48.683333,0.116667,1.4
+ Le Châtellier ,LE CHATELLIER ,61450,61102,25,48.683333,-0.583333,1.84
+ Chaumont ,CHAUMONT ,61230,61103,25,48.833333,0.333333,1.51
+ La Chaux ,LA CHAUX ,61600,61104,25,48.616667,-0.25,1.47
+ Chemilli ,CHEMILLI ,61360,61105,25,48.366667,0.45,2.06
+ Chênedouit ,CHENEDOUIT ,61210,61106,25,48.766667,-0.333333,1.18
+ Ciral ,CIRAL ,61320,61107,25,48.5,-0.15,1.1
+ Cisai-Saint-Aubin ,CISAI SAINT AUBIN ,61230,61108,25,48.783333,0.35,1.13
+ Clairefougère ,CLAIREFOUGERE ,61800,61109,25,48.8,-0.7,2.15
+ La Cochère ,LA COCHERE ,61310,61110,25,48.716667,0.15,1.7
+ Colombiers ,COLOMBIERS ,61250,61111,25,48.466667,0.05,1.29
+ Colonard-Corubert ,COLONARD CORUBERT ,61340,61112,25,48.416667,0.65,1.68
+ Comblot ,COMBLOT ,61400,61113,25,48.466667,0.6,1.3
+ Commeaux ,COMMEAUX ,61200,61114,25,48.783333,-0.116667,1.75
+ Condeau ,CONDEAU ,61110,61115,25,48.383333,0.833333,1.93
+ Condé-sur-Huisne ,CONDE SUR HUISNE ,61110,61116,25,48.383333,0.866667,2.01
+ Condé-sur-Sarthe ,CONDE SUR SARTHE ,61250,61117,25,48.433333,0.033333,1.55
+ Corbon ,CORBON ,61400,61118,25,48.45,0.625,-1
+ Coudehard ,COUDEHARD ,61160,61120,25,48.85,0.133333,1.64
+ Coulimer ,COULIMER ,61360,61121,25,48.483333,0.466667,1.39
+ Coulmer ,COULMER ,61230,61122,25,48.766667,0.3,1
+ Coulonces ,COULONCES ,61160,61123,25,48.833333,0.016667,1.51
+ La Coulonche ,LA COULONCHE ,61220,61124,25,48.65,-0.45,1.49
+ Coulonges-les-Sablons ,COULONGES LES SABLONS ,61110,61125,25,48.4,0.9,2.1
+ Coulonges-sur-Sarthe ,COULONGES SUR SARTHE ,61170,61126,25,48.533333,0.4,0.8
+ La Courbe ,LA COURBE ,61150,61127,25,48.75,-0.183333,1.09
+ Courcerault ,COURCERAULT ,61340,61128,25,48.433333,0.666667,1.55
+ Courgeon ,COURGEON ,61400,61129,25,48.483333,0.616667,1.35
+ Courgeout ,COURGEOUT ,61560,61130,25,48.5,0.483333,1.66
+ Courménil ,COURMENIL ,61310,61131,25,48.783333,0.233333,1.13
+ Courtomer ,COURTOMER ,61390,61133,25,48.633333,0.366667,0.68
+ Couterne ,COUTERNE ,61410,61135,25,48.516667,-0.416667,1.4
+ Couvains ,COUVAINS ,61550,61136,25,48.858333,0.558333,-1
+ Crâménil ,CRAMENIL ,61220,61137,25,48.75,-0.383333,1.31
+ Croisilles ,CROISILLES ,61230,61138,25,48.766667,0.266667,1.15
+ Crouttes ,CROUTTES ,61120,61139,25,48.916667,0.133333,2.15
+ Crulai ,CRULAI ,61300,61140,25,48.7,0.666667,1.48
+ Cuissai ,CUISSAI ,61250,61141,25,48.466667,0.016667,1.29
+ Dame-Marie ,DAME MARIE ,61130,61142,25,48.35,0.616667,2.19
+ Dancé ,DANCE ,61340,61144,25,48.366667,0.766667,2.06
+ Domfront ,DOMFRONT ,61700,61145,25,48.6,-0.65,2.02
+ Dompierre ,DOMPIERRE ,61700,61146,25,48.616667,-0.55,1.75
+ Dorceau ,DORCEAU ,61110,61147,25,48.416667,0.8,1.83
+ Durcet ,DURCET ,61100,61148,25,48.75,-0.433333,1.44
+ Échalou ,ECHALOU ,61440,61149,25,48.733333,-0.5,1.62
+ Échauffour ,ECHAUFFOUR ,61370,61150,25,48.733333,0.383333,0.75
+ Écorcei ,ECORCEI ,61270,61151,25,48.716667,0.583333,1.26
+ Écorches ,ECORCHES ,61160,61152,25,48.866667,0.1,1.77
+ Écouché ,ECOUCHE ,61150,61153,25,48.716667,-0.133333,0.65
+ Éperrais ,EPERRAIS ,61400,61154,25,48.416667,0.55,1.68
+ L'Épinay-le-Comte ,L EPINAY LE COMTE,61350,61155,25,48.466667,-0.816667,2.46
+ Essay ,ESSAY ,61500,61156,25,48.55,0.25,1.15
+ Exmes ,EXMES ,61310,61157,25,48.766667,0.183333,1
+ Faverolles ,FAVEROLLES ,61600,61158,25,48.666667,-0.3,1.18
+ Fay ,FAY ,61390,61159,25,48.666667,0.416667,1.77
+ Feings ,FEINGS ,61400,61160,25,48.55,0.633333,1.51
+ Fel ,FEL ,61160,61161,25,48.8,0.116667,1.28
+ La Ferrière-au-Doyen ,LA FERRIERE AU DOYEN,61380,61162,25,48.666667,0.5,1.04
+ La Ferrière-aux-Étangs ,LA FERRIERE AUX ETANGS,61450,61163,25,48.666667,-0.533333,1.71
+ La Ferrière-Béchet ,LA FERRIERE BECHET ,61500,61164,25,48.583333,0.066667,1.24
+ La Ferrière-Bochard ,LA FERRIERE BOCHARD ,61420,61165,25,48.416667,-0.033333,1.68
+ Ferrières-la-Verrerie ,FERRIERES LA VERRERIE ,61390,61166,25,48.65,0.383333,1
+ La Ferté-Frênel ,LA FERTE FRENEL ,61550,61167,25,48.833333,0.5,1.51
+ La Ferté-Macé ,LA FERTE MACE ,61600,61168,25,48.6,-0.366667,1.26
+ Flers ,FLERS ,61100,61169,25,48.75,-0.566667,1.8
+ Fleuré ,FLEURE ,61200,61170,25,48.683333,-0.066667,1.36
+ Fontaine-les-Bassets ,FONTAINE LES BASSETS ,61160,61171,25,48.85, ,1.64
+ Fontenai-les-Louvets ,FONTENAI LES LOUVETS ,61420,61172,25,48.533333, ,1.8
+ Fontenai-sur-Orne ,FONTENAI SUR ORNE ,61200,61173,25,48.716667,-0.066667,0.82
+ La Forêt-Auvray ,LA FORET AUVRAY ,61210,61174,25,48.816667,-0.333333,1.39
+ Forges ,FORGES ,61250,61175,25,48.5,0.116667,1.04
+ Frênes ,FRENES ,61800,61177,25,48.783333,-0.683333,2.11
+ La Fresnaie-Fayel ,LA FRESNAIE FAYEL ,61230,61178,25,48.833333,0.233333,1.69
+ La Fresnaye-au-Sauvage ,LA FRESNAYE AU SAUVAGE,61210,61179,25,48.733333,-0.25,0.95
+ Fresnay-le-Samson ,FRESNAY LE SAMSON ,61120,61180,25,48.883333,0.216667,1.9
+ Gacé ,GACE ,61230,61181,25,48.8,0.3,1.26
+ Gandelain ,GANDELAIN ,61420,61182,25,48.483333,-0.083333,1.17
+ Gâprée ,GAPREE ,61390,61183,25,48.616667,0.3,0.85
+ Gauville ,GAUVILLE ,61550,61184,25,48.833333,0.55,1.51
+ Gémages ,GEMAGES ,61130,61185,25,48.3,0.616667,2.57
+ Geneslay ,GENESLAY ,61140,61186,25,48.516667,-0.483333,1.57
+ Les Genettes ,LES GENETTES ,61270,61187,25,48.666667,0.566667,1.21
+ La Génevraie ,LA GENEVRAIE ,61240,61188,25,48.683333,0.316667,1
+ Glos-la-Ferrière ,GLOS LA FERRIERE ,61550,61191,25,48.85,0.6,1.64
+ Godisson ,GODISSON ,61240,61192,25,48.683333,0.25,0.79
+ La Gonfrière ,LA GONFRIERE ,61550,61193,25,48.816667,0.466667,1.39
+ Goulet ,GOULET ,61150,61194,25,48.733333,-0.1,1.16
+ Le Grais ,LE GRAIS ,61600,61195,25,48.633333,-0.333333,1.18
+ Le Gué-de-la-Chaîne ,LE GUE DE LA,61130,61196,25,48.366667,0.516667,2.06
+ Guêprei ,GUEPREI ,61160,61197,25,48.833333, ,1.51
+ Guerquesalles ,GUERQUESALLES ,61120,61198,25,48.9,0.216667,2.02
+ Habloville ,HABLOVILLE ,61210,61199,25,48.783333,-0.166667,1.53
+ Haleine ,HALEINE ,61410,61200,25,48.516667,-0.433333,1.44
+ La Haute-Chapelle ,LA HAUTE CHAPELLE ,61700,61201,25,48.6,-0.666667,2.06
+ Hauterive ,HAUTERIVE ,61250,61202,25,48.483333,0.2,1.28
+ Héloup ,HELOUP ,61250,61203,25,48.4,0.033333,1.8
+ L'Hermitière ,L HERMITIERE ,61260,61204,25,48.283333,0.65,2.7
+ Heugon ,HEUGON ,61470,61205,25,48.85,0.4,1.64
+ L'Hôme-Chamondot ,L HOME CHAMONDOT ,61290,61206,25,48.583333,0.716667,1.61
+ Igé ,IGE ,61130,61207,25,48.316667,0.516667,2.44
+ Irai ,IRAI ,61190,61208,25,48.666667,0.7,1.57
+ Joué-du-Bois ,JOUE DU BOIS ,61320,61209,25,48.583333,-0.233333,1.75
+ Joué-du-Plain ,JOUE DU PLAIN ,61150,61210,25,48.683333,-0.133333,0.65
+ Juvigny-sous-Andaine ,JUVIGNY SOUS ANDAINE ,61140,61211,25,48.55,-0.516667,1.66
+ Juvigny-sur-Orne ,JUVIGNY SUR ORNE ,61200,61212,25,48.733333,0.016667,1.07
+ Lalacelle ,LALACELLE ,61320,61213,25,48.466667,-0.15,1.65
+ L'Aigle ,L AIGLE ,61300,61214,25,48.75,0.633333,1.39
+ Laleu ,LALEU ,61170,61215,25,48.55,0.366667,0.68
+ La Lande-de-Goult ,LA LANDE DE GOULT,61320,61216,25,48.583333,-0.05,1.41
+ La Lande-de-Lougé ,LA LANDE DE LOUGE,61210,61217,25,48.7,-0.25,1.17
+ La Lande-Patry ,LA LANDE PATRY ,61100,61218,25,48.766667,-0.6,1.88
+ La Lande-Saint-Siméon ,LA LANDE SAINT SIMEON,61100,61219,25,48.816667,-0.433333,1.44
+ La Lande-sur-Eure ,LA LANDE SUR EURE,61290,61220,25,48.55,0.866667,2.01
+ Landigou ,LANDIGOU ,61100,61221,25,48.75,-0.466667,1.53
+ Landisacq ,LANDISACQ ,61100,61222,25,48.75,-0.65,2.02
+ Larchamp ,LARCHAMP ,61800,61223,25,48.7,-0.683333,2.11
+ Larré ,LARRE ,61250,61224,25,48.5,0.166667,1.04
+ Lignères ,LIGNERES ,61240,61225,25,48.733333,0.316667,0.98
+ Lignerolles ,LIGNEROLLES ,61190,61226,25,48.583333,0.583333,1.35
+ Lignou ,LIGNOU ,61220,61227,25,48.666667,-0.35,1.22
+ Livaie ,LIVAIE ,61420,61228,25,48.516667,-0.033333,1.04
+ Loisail ,LOISAIL ,61400,61229,25,48.5,0.6,1.3
+ Longny-au-Perche ,LONGNY AU PERCHE ,61290,61230,25,48.533333,0.75,1.7
+ Longuenoë ,LONGUENOE ,61320,61231,25,48.516667,-0.083333,1.12
+ Lonlay-l'Abbaye ,LONLAY L ABBAYE ,61700,61232,25,48.65,-0.716667,2.19
+ Lonlay-le-Tesson ,LONLAY LE TESSON ,61600,61233,25,48.633333,-0.35,1.22
+ Lonrai ,LONRAI ,61250,61234,25,48.466667,0.033333,1.29
+ Loré ,LORE ,61330,61235,25,48.483333,-0.583333,1.84
+ Loucé ,LOUCE ,61150,61236,25,48.7,-0.1,1.05
+ Lougé-sur-Maire ,LOUGE SUR MAIRE ,61150,61237,25,48.7,-0.233333,1.68
+ Louvières-en-Auge ,LOUVIERES EN AUGE ,61160,61238,25,48.866667,0.033333,1.77
+ Lucé ,LUCE ,61330,61239,25,48.55,-0.6,1.88
+ Macé ,MACE ,61500,61240,25,48.633333,0.15,0.62
+ La Madeleine-Bouvet ,LA MADELEINE BOUVET ,61110,61241,25,48.466667,0.9,2.1
+ Le Mage ,LE MAGE ,61290,61242,25,48.5,0.8,1.83
+ Magny-le-Désert ,MAGNY LE DESERT ,61600,61243,25,48.583333,-0.333333,1.18
+ Mahéru ,MAHERU ,61380,61244,25,48.65,0.433333,1.84
+ Maison-Maugis ,MAISON MAUGIS ,61110,61245,25,48.45,0.7,1.63
+ Mâle ,MALE ,61260,61246,25,48.266667,0.733333,2.83
+ Malétable ,MALETABLE ,61290,61247,25,48.566667,0.7,1.57
+ Mantilly ,MANTILLY ,61350,61248,25,48.516667,-0.816667,2.46
+ Marcei ,MARCEI ,61570,61249,25,48.666667,0.05,0.24
+ Marchainville ,MARCHAINVILLE ,61290,61250,25,48.583333,0.816667,1.88
+ Marchemaisons ,MARCHEMAISONS ,61170,61251,25,48.516667,0.3,1.15
+ Mardilly ,MARDILLY ,61230,61252,25,48.833333,0.283333,1.51
+ Marmouille ,MARMOUILLE ,61240,61253,25,48.666667,0.2,1.87
+ Marnefer ,MARNEFER ,61550,61254,25,48.883333,0.583333,1.9
+ Mauves-sur-Huisne ,MAUVES SUR HUISNE ,61400,61255,25,48.45,0.616667,1.42
+ Médavy ,MEDAVY ,61570,61256,25,48.683333,0.083333,0.85
+ Méhoudin ,MEHOUDIN ,61410,61257,25,48.5,-0.383333,1.31
+ Le Mêle-sur-Sarthe ,LE MELE SUR SARTHE,61170,61258,25,48.516667,0.35,0.91
+ Le Ménil-Bérard ,LE MENIL BERARD ,61270,61259,25,48.7,0.516667,1.08
+ Le Ménil-de-Briouze ,LE MENIL DE BRIOUZE,61220,61260,25,48.666667,-0.4,1.35
+ Le Ménil-Brout ,LE MENIL BROUT ,61250,61261,25,48.483333,0.233333,1.68
+ Le Ménil-Ciboult ,LE MENIL CIBOULT ,61800,61262,25,48.766667,-0.783333,2.37
+ Ménil-Erreux ,MENIL ERREUX ,61250,61263,25,48.5,0.183333,1.14
+ Ménil-Froger ,MENIL FROGER ,61240,61264,25,48.733333,0.266667,0.75
+ Ménil-Gondouin ,MENIL GONDOUIN ,61210,61265,25,48.75,-0.283333,1.04
+ Le Ménil-Guyon ,LE MENIL GUYON ,61170,61266,25,48.583333,0.283333,1.56
+ Ménil-Hermei ,MENIL HERMEI ,61210,61267,25,48.833333,-0.316667,1.51
+ Ménil-Hubert-en-Exmes ,MENIL HUBERT EN EXMES,61230,61268,25,48.816667,0.233333,1.59
+ Ménil-Hubert-sur-Orne ,MENIL HUBERT SUR ORNE,61430,61269,25,48.85,-0.416667,1.64
+ Ménil-Jean ,MENIL JEAN ,61210,61270,25,48.733333,-0.233333,0.91
+ Le Ménil-Scelleur ,LE MENIL SCELLEUR ,61320,61271,25,48.616667,-0.116667,0.94
+ Le Ménil-Vicomte ,LE MENIL VICOMTE ,61240,61272,25,48.75,0.3,0.99
+ Ménil-Vin ,MENIL VIN ,61210,61273,25,48.85,-0.316667,1.64
+ Les Menus ,LES MENUS ,61290,61274,25,48.516667,0.933333,2.19
+ Le Merlerault ,LE MERLERAULT ,61240,61275,25,48.7,0.3,0.52
+ Merri ,MERRI ,61160,61276,25,48.85,-0.05,1.64
+ Mieuxcé ,MIEUXCE ,61250,61279,25,48.4,0.016667,1.8
+ Moncy ,MONCY ,61800,61281,25,48.816667,-0.683333,2.11
+ Monnai ,MONNAI ,61470,61282,25,48.883333,0.4,1.9
+ Montabard ,MONTABARD ,61160,61283,25,48.816667,-0.083333,1.47
+ Montchevrel ,MONTCHEVREL ,61170,61284,25,48.566667,0.35,0.64
+ Montgaroult ,MONTGAROULT ,61150,61285,25,48.75,-0.133333,0.94
+ Montgaudry ,MONTGAUDRY ,61360,61286,25,48.4,0.4,1.8
+ Montilly-sur-Noireau ,MONTILLY SUR NOIREAU ,61100,61287,25,48.816667,-0.566667,1.8
+ Montmerrei ,MONTMERREI ,61570,61288,25,48.633333,0.05,0.62
+ Mont-Ormel ,MONT ORMEL ,61160,61289,25,48.833333,0.15,1.63
+ Montreuil-au-Houlme ,MONTREUIL AU HOULME ,61210,61290,25,48.683333,-0.266667,1.4
+ Montreuil-la-Cambe ,MONTREUIL LA CAMBE ,61160,61291,25,48.883333,0.033333,1.9
+ Montsecret ,MONTSECRET ,61800,61292,25,48.8,-0.675,-1
+ Mortagne-au-Perche ,MORTAGNE AU PERCHE ,61400,61293,25,48.516667,0.55,1.17
+ Mortrée ,MORTREE ,61570,61294,25,48.633333,0.083333,0.99
+ La Motte-Fouquet ,LA MOTTE FOUQUET ,61600,61295,25,48.566667,-0.283333,1.15
+ Moulicent ,MOULICENT ,61290,61296,25,48.566667,0.766667,1.75
+ Moulins-la-Marche ,MOULINS LA MARCHE ,61380,61297,25,48.65,0.483333,0.99
+ Moulins-sur-Orne ,MOULINS SUR ORNE ,61200,61298,25,48.766667,-0.066667,1
+ Moussonvilliers ,MOUSSONVILLIERS ,61190,61299,25,48.633333,0.8,1.86
+ Moutiers-au-Perche ,MOUTIERS AU PERCHE ,61110,61300,25,48.483333,0.85,1.97
+ Neauphe-sous-Essai ,NEAUPHE SOUS ESSAI ,61500,61301,25,48.566667,0.2,0.53
+ Nécy ,NECY ,61160,61303,25,48.833333,-0.116667,1.89
+ Neuilly-le-Bisson ,NEUILLY LE BISSON ,61250,61304,25,48.5,0.233333,1.71
+ Neuilly-sur-Eure ,NEUILLY SUR EURE ,61290,61305,25,48.533333,0.916667,2.14
+ Neuville-près-Sées ,NEUVILLE PRES SEES ,61500,61306,25,48.65,0.233333,1.16
+ Neuville-sur-Touques ,NEUVILLE SUR TOUQUES ,61120,61307,25,48.85,0.283333,1.64
+ Neuvy-au-Houlme ,NEUVY AU HOULME ,61210,61308,25,48.816667,-0.2,1.39
+ Nocé ,NOCE ,61340,61309,25,48.366667,0.7,2.06
+ Nonant-le-Pin ,NONANT LE PIN ,61240,61310,25,48.7,0.216667,1.3
+ Normandel ,NORMANDEL ,61190,61311,25,48.65,0.716667,1.61
+ Notre-Dame-du-Rocher ,NOTRE DAME DU ROCHER,61100,61313,25,48.8,-0.4,1.35
+ Occagnes ,OCCAGNES ,61200,61314,25,48.783333,-0.066667,1.13
+ Omméel ,OMMEEL ,61160,61315,25,48.8,0.15,1.7
+ Ommoy ,OMMOY ,61160,61316,25,48.85,-0.016667,1.64
+ Orgères ,ORGERES ,61230,61317,25,48.766667,0.35,1.13
+ Origny-le-Butin ,ORIGNY LE BUTIN ,61130,61318,25,48.366667,0.466667,2.06
+ Origny-le-Roux ,ORIGNY LE ROUX ,61130,61319,25,48.35,0.416667,2.19
+ Orville ,ORVILLE ,61120,61320,25,48.883333,0.266667,1.9
+ Pacé ,PACE ,61250,61321,25,48.45, ,1.42
+ Parfondeval ,PARFONDEVAL ,61400,61322,25,48.483333,0.5,1.58
+ Le Pas-Saint-l'Homer ,LE PAS SAINT L,61290,61323,25,48.5,0.933333,2.19
+ La Perrière ,LA PERRIERE ,61360,61325,25,48.383333,0.433333,1.93
+ Perrou ,PERROU ,61700,61326,25,48.583333,-0.55,1.75
+ Pervenchères ,PERVENCHERES ,61360,61327,25,48.433333,0.433333,1.55
+ Le Pin-au-Haras ,LE PIN AU HARAS,61310,61328,25,48.733333,0.15,1.38
+ Le Pin-la-Garenne ,LE PIN LA GARENNE,61400,61329,25,48.45,0.55,1.42
+ Planches ,PLANCHES ,61370,61330,25,48.7,0.366667,1.06
+ Le Plantis ,LE PLANTIS ,61170,61331,25,48.6,0.383333,1.17
+ Pointel ,POINTEL ,61220,61332,25,48.7,-0.35,1.22
+ Pontchardon ,PONTCHARDON ,61120,61333,25,48.933333,0.266667,2.28
+ La Poterie-au-Perche ,LA POTERIE AU PERCHE,61190,61335,25,48.633333,0.716667,1.61
+ Pouvrai ,POUVRAI ,61130,61336,25,48.283333,0.516667,2.7
+ Prépotin ,PREPOTIN ,61190,61338,25,48.616667,0.583333,1.26
+ Putanges-Pont-Ecrepin ,PUTANGES PONT ECREPIN ,61210,61339,25,48.766667,-0.25,1
+ Rabodanges ,RABODANGES ,61210,61340,25,48.8,-0.283333,1.26
+ Radon ,RADON ,61250,61341,25,48.516667,0.1,0.91
+ Randonnai ,RANDONNAI ,61190,61343,25,48.65,0.683333,1.52
+ Rânes ,RANES ,61150,61344,25,48.65,-0.216667,1.77
+ Rémalard ,REMALARD ,61110,61345,25,48.433333,0.783333,1.79
+ Le Renouard ,LE RENOUARD ,61120,61346,25,48.9,0.1,2.02
+ Résenlieu ,RESENLIEU ,61230,61347,25,48.8,0.283333,1.26
+ Réveillon ,REVEILLON ,61400,61348,25,48.483333,0.566667,1.21
+ Ri ,RI ,61210,61349,25,48.8,-0.133333,2.06
+ La Roche-Mabile ,LA ROCHE MABILE ,61420,61350,25,48.483333,-0.05,1.17
+ Roiville ,ROIVILLE ,61120,61351,25,48.883333,0.233333,1.9
+ Rônai ,RONAI ,61160,61352,25,48.816667,-0.133333,2.13
+ Ronfeugerai ,RONFEUGERAI ,61100,61353,25,48.783333,-0.466667,1.53
+ Les Rotours ,LES ROTOURS ,61210,61354,25,48.783333,-0.25,1.13
+ Rouellé ,ROUELLE ,61700,61355,25,48.6,-0.716667,2.19
+ La Rouge ,LA ROUGE ,61260,61356,25,48.283333,0.716667,2.7
+ Rouperroux ,ROUPERROUX ,61320,61357,25,48.55,-0.083333,0.84
+ Saint-Agnan-sur-Erre ,SAINT AGNAN SUR ERRE,61340,61359,25,48.316667,0.733333,2.44
+ Saint-Agnan-sur-Sarthe ,SAINT AGNAN SUR SARTHE,61170,61360,25,48.616667,0.433333,1.96
+ Saint-André-de-Briouze ,SAINT ANDRE DE BRIOUZE,61220,61361,25,48.733333,-0.3,1.55
+ Saint-André-de-Messei ,SAINT ANDRE DE MESSEI,61440,61362,25,48.7,-0.516667,1.66
+ Saint-Aquilin-de-Corbion ,SAINT AQUILIN DE CORBION,61380,61363,25,48.633333,0.516667,1.08
+ Saint-Aubert-sur-Orne ,SAINT AUBERT SUR ORNE,61210,61364,25,48.783333,-0.333333,1.18
+ Saint-Aubin-d'Appenai ,SAINT AUBIN D APPENAI,61170,61365,25,48.533333,0.333333,0.78
+ Saint-Aubin-de-Bonneval ,SAINT AUBIN DE BONNEVAL,61470,61366,25,48.933333,0.383333,2.28
+ Saint-Aubin-de-Courteraie ,SAINT AUBIN DE COURTERAIE,61560,61367,25,48.616667,0.433333,1.46
+ Saint-Aubin-des-Grois ,SAINT AUBIN DES GROIS,61340,61368,25,48.35,0.65,2.19
+ Saint-Bômer-les-Forges ,SAINT BOMER LES FORGES,61700,61369,25,48.65,-0.65,2.02
+ Saint-Brice ,SAINT BRICE ,61700,61370,25,48.558333,-0.641667,-1
+ Saint-Brice-sous-Rânes ,SAINT BRICE SOUS RANES,61150,61371,25,48.683333,-0.2,1.11
+ Saint-Céneri-le-Gérei ,SAINT CENERI LE GEREI,61250,61372,25,48.383333,-0.05,2
+ Sainte-Céronne-lès-Mortagne ,SAINTE CERONNE LES MORTAGNE,61380,61373,25,48.566667,0.533333,1.92
+ Saint-Christophe-de-Chaulieu ,SAINT CHRISTOPHE DE CHAULIEU,61800,61374,25,48.75,-0.816667,2.46
+ Saint-Christophe-le-Jajolet ,SAINT CHRISTOPHE LE JAJOLET,61570,61375,25,48.666667, ,0.62
+ Saint-Clair-de-Halouze ,SAINT CLAIR DE HALOUZE,61490,61376,25,48.683333,-0.633333,1.97
+ Saint-Cornier-des-Landes ,SAINT CORNIER DES LANDES,61800,61377,25,48.716667,-0.716667,2.19
+ Sainte-Croix-sur-Orne ,SAINTE CROIX SUR ORNE,61210,61378,25,48.783333,-0.283333,1.13
+ Saint-Cyr-la-Rosière ,SAINT CYR LA ROSIERE,61130,61379,25,48.333333,0.633333,2.31
+ Saint-Denis-de-Villenette ,SAINT DENIS DE VILLENETTE,61330,61380,25,48.516667,-0.533333,1.71
+ Saint-Denis-sur-Huisne ,SAINT DENIS SUR HUISNE,61400,61381,25,48.466667,0.55,1.29
+ Saint-Denis-sur-Sarthon ,SAINT DENIS SUR SARTHON,61420,61382,25,48.45,-0.05,1.42
+ Saint-Didier-sous-Écouves ,SAINT DIDIER SOUS ECOUVES,61320,61383,25,48.55,-0.033333,1.66
+ Saint-Ellier-les-Bois ,SAINT ELLIER LES BOIS,61320,61384,25,48.516667,-0.1,0.94
+ Saint-Évroult-de-Montfort ,SAINT EVROULT DE MONTFORT,61230,61385,25,48.8,0.316667,1.26
+ Saint-Évroult-Notre-Dame-du-Bois ,SAINT EVROULT NOTRE DAME,61550,61386,25,48.8,0.466667,1.26
+ Saint-Fulgent-des-Ormes ,SAINT FULGENT DES ORMES,61130,61388,25,48.316667,0.45,2.44
+ Saint-Georges-d'Annebecq ,SAINT GEORGES D ANNEBECQ,61600,61390,25,48.633333,-0.266667,1.25
+ Saint-Germain-d'Aunay ,SAINT GERMAIN D AUNAY,61470,61392,25,48.916667,0.383333,2.15
+ Saint-Germain-de-Clairefeuille ,SAINT GERMAIN DE CLAIREFEUILLE,61240,61393,25,48.716667,0.233333,0.94
+ Saint-Germain-de-la-Coudre ,SAINT GERMAIN DE LA,61130,61394,25,48.283333,0.616667,2.7
+ Saint-Germain-des-Grois ,SAINT GERMAIN DES GROIS,61110,61395,25,48.4,0.833333,1.92
+ Saint-Germain-de-Martigny ,SAINT GERMAIN DE MARTIGNY,61560,61396,25,48.583333,0.466667,0.95
+ Saint-Germain-du-Corbéis ,SAINT GERMAIN DU CORBEIS,61000,61397,25,48.416667,0.066667,1.68
+ Saint-Germain-le-Vieux ,SAINT GERMAIN LE VIEUX,61390,61398,25,48.616667,0.316667,0.55
+ Saint-Gervais-des-Sablons ,SAINT GERVAIS DES SABLONS,61160,61399,25,48.9,0.083333,2.02
+ Saint-Gervais-du-Perron ,SAINT GERVAIS DU PERRON,61500,61400,25,48.533333,0.15,0.78
+ Saint-Gilles-des-Marais ,SAINT GILLES DES MARAIS,61700,61401,25,48.583333,-0.683333,2.11
+ Saint-Hilaire-de-Briouze ,SAINT HILAIRE DE BRIOUZE,61220,61402,25,48.7,-0.316667,1.15
+ Saint-Hilaire-le-Châtel ,SAINT HILAIRE LE CHATEL,61400,61404,25,48.55,0.533333,1.49
+ Saint-Hilaire-sur-Erre ,SAINT HILAIRE SUR ERRE,61340,61405,25,48.316667,0.733333,2.44
+ Saint-Hilaire-sur-Rîle ,SAINT HILAIRE SUR RILE,61270,61406,25,48.733333,0.5,1.43
+ Sainte-Honorine-la-Chardonne ,SAINTE HONORINE LA CHARDONNE,61430,61407,25,48.816667,-0.483333,1.57
+ Sainte-Honorine-la-Guillaume ,SAINTE HONORINE LA GUILLAUME,61210,61408,25,48.783333,-0.383333,1.78
+ Saint-Jean-de-la-Forêt ,SAINT JEAN DE LA,61340,61409,25,48.383333,0.633333,1.93
+ Saint-Jean-des-Bois ,SAINT JEAN DES BOIS,61800,61410,25,48.716667,-0.8,2.42
+ Saint-Jouin-de-Blavou ,SAINT JOUIN DE BLAVOU,61360,61411,25,48.45,0.466667,1.42
+ Saint-Julien-sur-Sarthe ,SAINT JULIEN SUR SARTHE,61170,61412,25,48.483333,0.35,1.17
+ Saint-Langis-lès-Mortagne ,SAINT LANGIS LES MORTAGNE,61400,61414,25,48.516667,0.533333,1.13
+ Saint-Léger-sur-Sarthe ,SAINT LEGER SUR SARTHE,61170,61415,25,48.5,0.333333,1.04
+ Saint-Léonard-des-Parcs ,SAINT LEONARD DES PARCS,61390,61416,25,48.65,0.283333,1.19
+ Saint-Loyer-des-Champs ,SAINT LOYER DES CHAMPS,61570,61417,25,48.7,0.016667,0.66
+ Saint-Mard-de-Réno ,SAINT MARD DE RENO,61400,61418,25,48.516667,0.633333,1.39
+ Sainte-Marguerite-de-Carrouges ,SAINTE MARGUERITE DE CARROUGES,61320,61419,25,48.583333,-0.15,0.69
+ Sainte-Marie-la-Robert ,SAINTE MARIE LA ROBERT,61320,61420,25,48.616667,-0.166667,1.08
+ Saint-Mars-d'Égrenne ,SAINT MARS D EGRENNE,61350,61421,25,48.566667,-0.733333,2.24
+ Saint-Martin-d'Écublei ,SAINT MARTIN D ECUBLEI,61300,61423,25,48.783333,0.683333,1.52
+ Saint-Martin-des-Landes ,SAINT MARTIN DES LANDES,61320,61424,25,48.55,-0.133333,0.66
+ Saint-Martin-des-Pézérits ,SAINT MARTIN DES PEZERITS,61380,61425,25,48.633333,0.483333,0.99
+ Saint-Martin-l'Aiguillon ,SAINT MARTIN L AIGUILLON,61320,61427,25,48.616667,-0.183333,1.26
+ Saint-Maurice-du-Désert ,SAINT MAURICE DU DESERT,61600,61428,25,48.616667,-0.383333,1.31
+ Saint-Maurice-lès-Charencey ,SAINT MAURICE LES CHARENCEY,61190,61429,25,48.65,0.766667,1.75
+ Saint-Maurice-sur-Huisne ,SAINT MAURICE SUR HUISNE,61110,61430,25,48.45,0.7,1.63
+ Saint-Michel-des-Andaines ,SAINT MICHEL DES ANDAINES,61600,61431,25,48.583333,-0.416667,1.58
+ Saint-Nicolas-des-Bois ,SAINT NICOLAS DES BOIS,61250,61433,25,48.5,0.016667,1.04
+ Saint-Nicolas-des-Laitiers ,SAINT NICOLAS DES LAITIERS,61550,61434,25,48.833333,0.416667,1.51
+ Saint-Nicolas-de-Sommaire ,SAINT NICOLAS DE SOMMAIRE,61550,61435,25,48.816667,0.6,1.48
+ Sainte-Opportune ,SAINTE OPPORTUNE ,61100,61436,25,48.733333,-0.416667,1.4
+ Saint-ouen-de-la-Cour ,SAINT OUEN DE LA,61130,61437,25,48.416667,0.583333,1.68
+ Saint-Ouen-de-Sècherouvre ,SAINT OUEN DE SECHEROUVRE,61560,61438,25,48.6,0.483333,1.02
+ Saint-Ouen-le-Brisoult ,SAINT OUEN LE BRISOULT,61410,61439,25,48.516667,-0.333333,1.73
+ Saint-Ouen-sur-Iton ,SAINT OUEN SUR ITON,61300,61440,25,48.733333,0.7,1.57
+ Saint-Ouen-sur-Maire ,SAINT OUEN SUR MAIRE,61150,61441,25,48.7,-0.183333,0.78
+ Saint-Patrice-du-Désert ,SAINT PATRICE DU DESERT,61600,61442,25,48.533333,-0.3,1.47
+ Saint-Paul ,SAINT PAUL ,61100,61443,25,48.75,-0.633333,1.97
+ Saint-Philbert-sur-Orne ,SAINT PHILBERT SUR ORNE,61430,61444,25,48.833333,-0.4,1.51
+ Saint-Pierre-d'Entremont ,SAINT PIERRE D ENTREMONT,61800,61445,25,48.816667,-0.65,2.02
+ Saint-Pierre-des-Loges ,SAINT PIERRE DES LOGES,61370,61446,25,48.75,0.466667,1.44
+ Saint-Pierre-du-Regard ,SAINT PIERRE DU REGARD,61790,61447,25,48.85,-0.55,1.75
+ Saint-Pierre-la-Bruyère ,SAINT PIERRE LA BRUYERE,61340,61448,25,48.366667,0.8,2.06
+ Saint-Pierre-la-Rivière ,SAINT PIERRE LA RIVIERE,61310,61449,25,48.816667,0.2,1.39
+ Saint-Quentin-de-Blavou ,SAINT QUENTIN DE BLAVOU,61360,61450,25,48.466667,0.416667,1.29
+ Saint-Roch-sur-Égrenne ,SAINT ROCH SUR EGRENNE,61350,61452,25,48.583333,-0.75,2.28
+ Saint-Sauveur-de-Carrouges ,SAINT SAUVEUR DE CARROUGES,61320,61453,25,48.583333,-0.116667,0.6
+ Sainte-Scolasse-sur-Sarthe ,SAINTE SCOLASSE SUR SARTHE,61170,61454,25,48.583333,0.4,1.09
+ Saint-Siméon ,SAINT SIMEON ,61350,61455,25,48.466667,-0.75,2.28
+ Saint-Victor-de-Réno ,SAINT VICTOR DE RENO,61290,61458,25,48.5,0.7,1.57
+ Saires-la-Verrerie ,SAIRES LA VERRERIE ,61220,61459,25,48.683333,-0.5,1.87
+ Le Sap ,LE SAP ,61470,61460,25,48.9,0.333333,2.02
+ Le Sap-André ,LE SAP ANDRE ,61230,61461,25,48.833333,0.383333,1.67
+ Sarceaux ,SARCEAUX ,61200,61462,25,48.716667,-0.05,0.63
+ La Sauvagère ,LA SAUVAGERE ,61600,61463,25,48.633333,-0.416667,1.58
+ Sées ,SEES ,61500,61464,25,48.6,0.166667,0.27
+ Ségrie-Fontaine ,SEGRIE FONTAINE ,61100,61465,25,48.816667,-0.416667,1.4
+ La Selle-la-Forge ,LA SELLE LA FORGE,61100,61466,25,48.733333,-0.55,1.75
+ Semallé ,SEMALLE ,61250,61467,25,48.466667,0.15,1.29
+ Sentilly ,SENTILLY ,61150,61468,25,48.766667,-0.116667,1.39
+ Sept-Forges ,SEPT FORGES ,61330,61469,25,48.483333,-0.533333,1.71
+ Sérans ,SERANS ,61150,61470,25,48.716667,-0.15,0.69
+ Sérigny ,SERIGNY ,61130,61471,25,48.366667,0.583333,2.06
+ Sévigny ,SEVIGNY ,61200,61472,25,48.783333,-0.016667,1.13
+ Sevrai ,SEVRAI ,61150,61473,25,48.7,-0.15,0.69
+ Soligny-la-Trappe ,SOLIGNY LA TRAPPE ,61380,61475,25,48.616667,0.533333,1.13
+ Suré ,SURE ,61360,61476,25,48.366667,0.4,2.06
+ Survie ,SURVIE ,61310,61477,25,48.833333,0.2,1.51
+ Taillebois ,TAILLEBOIS ,61100,61478,25,48.8,-0.433333,1.44
+ Tanques ,TANQUES ,61150,61479,25,48.683333,-0.083333,1.46
+ Tanville ,TANVILLE ,61500,61480,25,48.566667, ,2.08
+ Tellières-le-Plessis ,TELLIERES LE PLESSIS ,61390,61481,25,48.633333,0.4,1.27
+ Tessé-Froulay ,TESSE FROULAY ,61410,61482,25,48.533333,-0.433333,1.44
+ Tessé-la-Madeleine ,TESSE LA MADELEINE ,61140,61483,25,48.566667,-0.433333,1.44
+ Ticheville ,TICHEVILLE ,61120,61485,25,48.9,0.266667,2.02
+ Tinchebray ,TINCHEBRAY ,61800,61486,25,48.766667,-0.733333,2.24
+ Torchamp ,TORCHAMP ,61330,61487,25,48.55,-0.7,2.2
+ Touquettes ,TOUQUETTES ,61550,61488,25,48.8,0.416667,1.53
+ Les Tourailles ,LES TOURAILLES ,61100,61489,25,48.75,-0.4,1.35
+ Tourouvre ,TOUROUVRE ,61190,61491,25,48.583333,0.666667,1.48
+ Trémont ,TREMONT ,61390,61492,25,48.6,0.266667,1.61
+ La Trinité-des-Laitiers ,LA TRINITE DES LAITIERS,61230,61493,25,48.8,0.383333,1.54
+ Trun ,TRUN ,61160,61494,25,48.85,0.033333,1.64
+ Urou-et-Crennes ,UROU ET CRENNES ,61200,61496,25,48.75,0.016667,1.05
+ Valframbert ,VALFRAMBERT ,61250,61497,25,48.466667,0.116667,1.29
+ Vaunoise ,VAUNOISE ,61130,61498,25,48.35,0.483333,2.19
+ Les Ventes-de-Bourse ,LES VENTES DE BOURSE,61170,61499,25,48.516667,0.283333,1.43
+ La Ventrouze ,LA VENTROUZE ,61190,61500,25,48.616667,0.7,1.57
+ Verrières ,VERRIERES ,61110,61501,25,48.383333,0.766667,1.93
+ Vidai ,VIDAI ,61360,61502,25,48.45,0.383333,1.42
+ Villebadin ,VILLEBADIN ,61310,61504,25,48.783333,0.166667,1.13
+ Villedieu-lès-Bailleul ,VILLEDIEU LES BAILLEUL ,61160,61505,25,48.816667,0.016667,1.39
+ Villers-en-Ouche ,VILLERS EN OUCHE ,61550,61506,25,48.866667,0.466667,1.77
+ Villiers-sous-Mortagne ,VILLIERS SOUS MORTAGNE ,61400,61507,25,48.533333,0.6,1.3
+ Vimoutiers ,VIMOUTIERS ,61120,61508,25,48.916667,0.2,2.15
+ Vingt-Hanaps ,VINGT HANAPS ,61250,61509,25,48.516667,0.133333,0.91
+ Vrigny ,VRIGNY ,61570,61511,25,48.666667,-0.016667,0.9
+ Les Yveteaux ,LES YVETEAUX ,61210,61512,25,48.7,-0.283333,1.17
+ Yvrandes ,YVRANDES ,61800,61513,25,48.716667,-0.75,2.28
+ Ablain-Saint-Nazaire ,ABLAIN SAINT NAZAIRE ,62153,62001,31,50.383333,2.716667,1.1
+ Ablainzevelle ,ABLAINZEVELLE ,62116,62002,31,50.15,2.733333,1.81
+ Acheville ,ACHEVILLE ,62320,62003,31,50.383333,2.883333,1.67
+ Achicourt ,ACHICOURT ,62217,62004,31,50.266667,2.766667,1.24
+ Achiet-le-Grand ,ACHIET LE GRAND ,62121,62005,31,50.133333,2.783333,1.91
+ Achiet-le-Petit ,ACHIET LE PETIT ,62121,62006,31,50.116667,2.75,2.01
+ Acq ,ACQ ,62144,62007,31,50.35,2.65,0.91
+ Adinfer ,ADINFER ,62116,62009,31,50.183333,2.7,1.62
+ Affringues ,AFFRINGUES ,62380,62010,31,50.683333,2.066667,1.29
+ Agnez-lès-Duisans ,AGNEZ LES DUISANS ,62161,62011,31,50.3,2.666667,1.45
+ Agnières ,AGNIERES ,62690,62012,31,50.35,2.6,0.76
+ Agny ,AGNY ,62217,62013,31,50.266667,2.766667,1.24
+ Aire-sur-la-Lys ,AIRE SUR LA LYS,62120,62014,31,50.633333,2.4,1
+ Airon-Notre-Dame ,AIRON NOTRE DAME ,62180,62015,31,50.433333,1.666667,1.89
+ Airon-Saint-Vaast ,AIRON SAINT VAAST ,62180,62016,31,50.433333,1.666667,1.89
+ Aix-en-Ergny ,AIX EN ERGNY ,62650,62017,31,50.583333,2,1.32
+ Aix-en-Issart ,AIX EN ISSART ,62170,62018,31,50.483333,1.85,1.42
+ Aix-Noulette ,AIX NOULETTE ,62160,62019,31,50.416667,2.7,1.5
+ Alembon ,ALEMBON ,62850,62020,31,50.783333,1.883333,1.87
+ Alette ,ALETTE ,62650,62021,31,50.516667,1.816667,1.7
+ Alincthun ,ALINCTHUN ,62142,62022,31,50.733333,1.8,1.58
+ Allouagne ,ALLOUAGNE ,62157,62023,31,50.533333,2.5,0.48
+ Alquines ,ALQUINES ,62850,62024,31,50.75,2,1.9
+ Ambleteuse ,AMBLETEUSE ,62164,62025,31,50.8,1.6,2.08
+ Ambricourt ,AMBRICOURT ,62310,62026,31,50.466667,2.183333,1.17
+ Ambrines ,AMBRINES ,62127,62027,31,50.316667,2.466667,0.9
+ Ames ,AMES ,62190,62028,31,50.55,2.416667,0.65
+ Amettes ,AMETTES ,62260,62029,31,50.533333,2.4,1.39
+ Amplier ,AMPLIER ,62760,62030,31,50.133333,2.4,1.91
+ Andres ,ANDRES ,62340,62031,31,50.866667,1.916667,2.35
+ Angres ,ANGRES ,62143,62032,31,50.416667,2.75,1.19
+ Annay ,ANNAY ,62880,62033,31,50.466667,2.883333,1.57
+ Annequin ,ANNEQUIN ,62149,62034,31,50.5,2.716667,1.1
+ Annezin ,ANNEZIN ,62232,62035,31,50.533333,2.616667,0.81
+ Anvin ,ANVIN ,62134,62036,31,50.45,2.25,0.36
+ Anzin-Saint-Aubin ,ANZIN SAINT AUBIN ,62223,62037,31,50.316667,2.75,1.34
+ Ardres ,ARDRES ,62610,62038,31,50.85,1.983333,2.26
+ Arleux-en-Gohelle ,ARLEUX EN GOHELLE ,62580,62039,31,50.366667,2.866667,1.52
+ Arques ,ARQUES ,62510,62040,31,50.733333,2.283333,1.58
+ Arras ,ARRAS ,62000,62041,31,50.283333,2.783333,1.29
+ Athies ,ATHIES ,62223,62042,31,50.3,2.833333,1.43
+ Les Attaques ,LES ATTAQUES ,62730,62043,31,50.9,1.933333,2.55
+ Attin ,ATTIN ,62170,62044,31,50.483333,1.75,1.66
+ Aubin-Saint-Vaast ,AUBIN SAINT VAAST ,62140,62046,31,50.4,1.983333,1.02
+ Aubrometz ,AUBROMETZ ,62390,62047,31,50.3,2.183333,1.18
+ Auchel ,AUCHEL ,62260,62048,31,50.5,2.466667,1.26
+ Auchy-au-Bois ,AUCHY AU BOIS ,62190,62049,31,50.55,2.366667,2.22
+ Auchy-lès-Hesdin ,AUCHY LES HESDIN ,62770,62050,31,50.4,2.1,0.82
+ Auchy-les-Mines ,AUCHY LES MINES ,62138,62051,31,50.516667,2.783333,1.29
+ Audembert ,AUDEMBERT ,62250,62052,31,50.866667,1.7,2.35
+ Audinghen ,AUDINGHEN ,62179,62054,31,50.85,1.6,2.26
+ Audrehem ,AUDREHEM ,62890,62055,31,50.783333,1.983333,1.87
+ Audresselles ,AUDRESSELLES ,62164,62056,31,50.816667,1.583333,2.13
+ Audruicq ,AUDRUICQ ,62370,62057,31,50.883333,2.083333,2.45
+ Aumerval ,AUMERVAL ,62550,62058,31,50.516667,2.4,0.86
+ Autingues ,AUTINGUES ,62610,62059,31,50.833333,1.983333,2.16
+ Auxi-le-Château ,AUXI LE CHATEAU ,62390,62060,31,50.233333,2.116667,1.33
+ Averdoingt ,AVERDOINGT ,62127,62061,31,50.35,2.45,0.65
+ Avesnes ,AVESNES ,62650,62062,31,50.55,1.966667,1.04
+ Avesnes-le-Comte ,AVESNES LE COMTE ,62810,62063,31,50.283333,2.533333,1.04
+ Avesnes-lès-Bapaume ,AVESNES LES BAPAUME ,62450,62064,31,50.1,2.833333,2.11
+ Avion ,AVION ,62210,62065,31,50.4,2.833333,1.43
+ Avondance ,AVONDANCE ,62310,62066,31,50.483333,2.1,0.68
+ Avroult ,AVROULT ,62560,62067,31,50.633333,2.15,1.06
+ Ayette ,AYETTE ,62116,62068,31,50.166667,2.733333,1.72
+ Azincourt ,AZINCOURT ,62310,62069,31,50.466667,2.133333,0.64
+ Bailleul-aux-Cornailles ,BAILLEUL AUX CORNAILLES ,62127,62070,31,50.366667,2.45,0.55
+ Bailleul-lès-Pernes ,BAILLEUL LES PERNES ,62550,62071,31,50.516667,2.383333,0.73
+ Bailleulmont ,BAILLEULMONT ,62123,62072,31,50.216667,2.616667,1.43
+ Bailleul-Sir-Berthoult ,BAILLEUL SIR BERTHOULT ,62580,62073,31,50.333333,2.85,1.48
+ Bailleulval ,BAILLEULVAL ,62123,62074,31,50.216667,2.633333,1.43
+ Baincthun ,BAINCTHUN ,62360,62075,31,50.716667,1.683333,1.85
+ Bainghen ,BAINGHEN ,62850,62076,31,50.75,1.9,1.68
+ Bajus ,BAJUS ,62150,62077,31,50.416667,2.483333,1.68
+ Balinghem ,BALINGHEM ,62610,62078,31,50.866667,1.95,2.35
+ Bancourt ,BANCOURT ,62450,62079,31,50.1,2.883333,2.11
+ Bapaume ,BAPAUME ,62450,62080,31,50.1,2.85,2.11
+ Baralle ,BARALLE ,62860,62081,31,50.216667,3.05,2.05
+ Barastre ,BARASTRE ,62124,62082,31,50.066667,2.933333,2.3
+ Barlin ,BARLIN ,62620,62083,31,50.45,2.616667,0.97
+ Barly ,BARLY ,62810,62084,31,50.25,2.55,1.23
+ Basseux ,BASSEUX ,62123,62085,31,50.233333,2.65,1.33
+ Bavincourt ,BAVINCOURT ,62158,62086,31,50.233333,2.566667,1.33
+ Bayenghem-lès-Éperlecques ,BAYENGHEM LES EPERLECQUES ,62910,62087,31,50.8,2.116667,1.97
+ Bayenghem-lès-Seninghem ,BAYENGHEM LES SENINGHEM ,62380,62088,31,50.7,2.083333,1.38
+ Bazinghen ,BAZINGHEN ,62250,62089,31,50.833333,1.666667,2.16
+ Béalencourt ,BEALENCOURT ,62770,62090,31,50.433333,2.116667,1.25
+ Beaudricourt ,BEAUDRICOURT ,62810,62091,31,50.25,2.416667,1.23
+ Beaufort-Blavincourt ,BEAUFORT BLAVINCOURT ,62810,62092,31,50.283333,2.5,1.04
+ Béaulencourt ,BEAULENCOURT ,62450,62093,31,50.066667,2.866667,2.3
+ Beaumerie-Saint-Martin ,BEAUMERIE SAINT MARTIN ,62170,62094,31,50.45,1.8,1.51
+ Beaumetz-lès-Aire ,BEAUMETZ LES AIRE ,62960,62095,31,50.533333,2.233333,1.17
+ Beaumetz-lès-Cambrai ,BEAUMETZ LES CAMBRAI ,62124,62096,31,50.116667,2.983333,2.01
+ Beaumetz-lès-Loges ,BEAUMETZ LES LOGES ,62123,62097,31,50.233333,2.65,1.33
+ Beaurains ,BEAURAINS ,62217,62099,31,50.266667,2.783333,1.29
+ Beaurainville ,BEAURAINVILLE ,62990,62100,31,50.416667,1.9,1.23
+ Beauvois ,BEAUVOIS ,62130,62101,31,50.366667,2.233333,1.21
+ Bécourt ,BECOURT ,62240,62102,31,50.633333,1.916667,1.2
+ Béhagnies ,BEHAGNIES ,62121,62103,31,50.133333,2.833333,1.91
+ Bellebrune ,BELLEBRUNE ,62142,62104,31,50.733333,1.783333,1.58
+ Belle-et-Houllefort ,BELLE ET HOULLEFORT ,62142,62105,31,50.75,1.75,1.8
+ Bellonne ,BELLONNE ,62490,62106,31,50.3,3.05,2.05
+ Bénifontaine ,BENIFONTAINE ,62410,62107,31,50.483333,2.833333,1.43
+ Bergueneuse ,BERGUENEUSE ,62134,62109,31,50.466667,2.25,0.23
+ Berguette ,BERGUETTE ,62330,62110,31,50.6,2.466667,0.87
+ Berlencourt-le-Cauroy ,BERLENCOURT LE CAUROY ,62810,62111,31,50.283333,2.433333,1.04
+ Berles-au-Bois ,BERLES AU BOIS ,62123,62112,31,50.2,2.633333,1.52
+ Berles-Monchel ,BERLES MONCHEL ,62690,62113,31,50.35,2.533333,1.15
+ Bermicourt ,BERMICOURT ,62130,62114,31,50.416667,2.233333,1.4
+ Berneville ,BERNEVILLE ,62123,62115,31,50.266667,2.666667,1.14
+ Bernieulles ,BERNIEULLES ,62170,62116,31,50.55,1.766667,1.61
+ Bertincourt ,BERTINCOURT ,62124,62117,31,50.083333,2.983333,2.2
+ Béthonsart ,BETHONSART ,62690,62118,31,50.383333,2.55,0.96
+ Béthune ,BETHUNE ,62400,62119,31,50.533333,2.633333,1.41
+ Beugin ,BEUGIN ,62150,62120,31,50.45,2.516667,0.99
+ Beugnâtre ,BEUGNATRE ,62450,62121,31,50.116667,2.883333,2.01
+ Beugny ,BEUGNY ,62124,62122,31,50.116667,2.933333,2.01
+ Beussent ,BEUSSENT ,62170,62123,31,50.55,1.8,1.51
+ Beutin ,BEUTIN ,62170,62124,31,50.483333,1.716667,1.75
+ Beuvrequen ,BEUVREQUEN ,62250,62125,31,50.8,1.666667,1.97
+ Beuvry ,BEUVRY ,62660,62126,31,50.516667,2.683333,1
+ Bezinghem ,BEZINGHEM ,62650,62127,31,50.6,1.816667,1.65
+ Biache-Saint-Vaast ,BIACHE SAINT VAAST ,62118,62128,31,50.3,2.95,1.76
+ Biefvillers-lès-Bapaume ,BIEFVILLERS LES BAPAUME ,62450,62129,31,50.116667,2.816667,2.01
+ Bienvillers-au-Bois ,BIENVILLERS AU BOIS ,62111,62130,31,50.166667,2.616667,1.72
+ Bihucourt ,BIHUCOURT ,62121,62131,31,50.116667,2.783333,2.01
+ Billy-Berclau ,BILLY BERCLAU ,62138,62132,31,50.516667,2.866667,1.78
+ Billy-Montigny ,BILLY MONTIGNY ,62420,62133,31,50.416667,2.9,1.62
+ Bimont ,BIMONT ,62650,62134,31,50.55,1.9,1.23
+ Blairville ,BLAIRVILLE ,62173,62135,31,50.216667,2.716667,1.43
+ Blangermont ,BLANGERMONT ,62270,62136,31,50.333333,2.216667,1.25
+ Blangerval Blangermont ,BLANGERVAL BLANGERMONT ,62270,62137,31,50.316667,2.233333,0.87
+ Blangy-sur-Ternoise ,BLANGY SUR TERNOISE ,62770,62138,31,50.416667,2.166667,1.17
+ Blendecques ,BLENDECQUES ,62575,62139,31,50.716667,2.266667,1.48
+ Bléquin ,BLEQUIN ,62380,62140,31,50.666667,1.983333,1.54
+ Blessy ,BLESSY ,62120,62141,31,50.616667,2.333333,0.9
+ Blingel ,BLINGEL ,62770,62142,31,50.416667,2.15,0.94
+ Boffles ,BOFFLES ,62390,62143,31,50.25,2.2,1.37
+ Boiry-Becquerelle ,BOIRY BECQUERELLE ,62128,62144,31,50.216667,2.816667,1.43
+ Boiry-Notre-Dame ,BOIRY NOTRE DAME ,62156,62145,31,50.266667,2.95,1.76
+ Boiry-Saint-Martin ,BOIRY SAINT MARTIN ,62175,62146,31,50.2,2.766667,1.52
+ Boiry-Sainte-Rictrude ,BOIRY SAINTE RICTRUDE ,62175,62147,31,50.2,2.75,1.52
+ Bois-Bernard ,BOIS BERNARD ,62320,62148,31,50.383333,2.916667,1.67
+ Boisdinghem ,BOISDINGHEM ,62500,62149,31,50.75,2.1,1.94
+ Boisleux-au-Mont ,BOISLEUX AU MONT ,62175,62151,31,50.2,2.783333,1.52
+ Boisleux-Saint-Marc ,BOISLEUX SAINT MARC ,62175,62152,31,50.216667,2.8,1.68
+ Bomy ,BOMY ,62960,62153,31,50.566667,2.233333,1.17
+ Bonnières ,BONNIERES ,62270,62154,31,50.25,2.25,1.23
+ Bonningues-lès-Ardres ,BONNINGUES LES ARDRES ,62890,62155,31,50.783333,2.016667,1.87
+ Bonningues-lès-Calais ,BONNINGUES LES CALAIS ,62340,62156,31,50.883333,1.783333,2.45
+ Boubers-lès-Hesmond ,BOUBERS LES HESMOND ,62990,62157,31,50.466667,1.95,1.09
+ Boubers-sur-Canche ,BOUBERS SUR CANCHE ,62270,62158,31,50.283333,2.233333,1.04
+ Bouin ,BOUIN ,62140,62159,31,50.383333,1.983333,0.99
+ Boulogne-sur-Mer ,BOULOGNE SUR MER ,62200,62160,31,50.716667,1.616667,2.04
+ Bouquehault ,BOUQUEHAULT ,62340,62161,31,50.816667,1.9,2.06
+ Bourecq ,BOURECQ ,62190,62162,31,50.566667,2.433333,0.61
+ Bourlon ,BOURLON ,62860,62164,31,50.166667,3.1,2.19
+ Bournonville ,BOURNONVILLE ,62240,62165,31,50.7,1.85,1.38
+ Bours ,BOURS ,62550,62166,31,50.45,2.416667,1.3
+ Boursin ,BOURSIN ,62132,62167,31,50.766667,1.833333,1.77
+ Bourthes ,BOURTHES ,62650,62168,31,50.6,1.933333,1.13
+ Bouvelinghem ,BOUVELINGHEM ,62380,62169,31,50.733333,2.033333,1.58
+ Bouvigny-Boyeffles ,BOUVIGNY BOYEFFLES ,62172,62170,31,50.416667,2.666667,0.95
+ Boyaval ,BOYAVAL ,62134,62171,31,50.466667,2.3,1.23
+ Boyelles ,BOYELLES ,62128,62172,31,50.2,2.816667,1.52
+ Brébières ,BREBIERES ,62117,62173,31,50.333333,3.016667,1.95
+ Brêmes ,BREMES ,62610,62174,31,50.85,1.966667,2.26
+ Brévillers ,BREVILLERS ,62140,62175,31,50.35,2.016667,0.9
+ Bréxent-Énocq ,BREXENT ENOCQ ,62170,62176,31,50.516667,1.733333,1.7
+ Brimeux ,BRIMEUX ,62170,62177,31,50.45,1.833333,1.42
+ Brunembert ,BRUNEMBERT ,62240,62179,31,50.716667,1.9,1.48
+ Bryas ,BRYAS ,62130,62180,31,50.4,2.383333,1.24
+ Bucquoy ,BUCQUOY ,62116,62181,31,50.133333,2.7,1.91
+ Buire-au-Bois ,BUIRE AU BOIS ,62390,62182,31,50.266667,2.15,1.14
+ Buire-le-Sec ,BUIRE LE SEC ,62870,62183,31,50.383333,1.833333,1.42
+ Buissy ,BUISSY ,62860,62184,31,50.2,3.033333,2
+ Bullecourt ,BULLECOURT ,62128,62185,31,50.183333,2.916667,1.67
+ Bully-les-Mines ,BULLY LES MINES ,62160,62186,31,50.433333,2.716667,1.1
+ Buneville ,BUNEVILLE ,62130,62187,31,50.316667,2.35,1.07
+ Burbure ,BURBURE ,62151,62188,31,50.533333,2.466667,0.41
+ Bus ,BUS ,62124,62189,31,50.05,2.966667,2.4
+ Busnes ,BUSNES ,62350,62190,31,50.583333,2.516667,1.71
+ Caffiers ,CAFFIERS ,62132,62191,31,50.833333,1.8,2.16
+ Cagnicourt ,CAGNICOURT ,62182,62192,31,50.216667,3,1.9
+ Calais ,CALAIS ,62100,62193,31,50.95,1.833333,2.84
+ Calonne-Ricouart ,CALONNE RICOUART ,62470,62194,31,50.483333,2.483333,1
+ Calonne-sur-la-Lys ,CALONNE SUR LA LYS,62350,62195,31,50.616667,2.616667,2
+ La Calotterie ,LA CALOTTERIE ,62170,62196,31,50.483333,1.716667,1.75
+ Camblain-Châtelain ,CAMBLAIN CHATELAIN ,62470,62197,31,50.483333,2.466667,1
+ Cambligneul ,CAMBLIGNEUL ,62690,62198,31,50.383333,2.616667,1.09
+ Camblain-l'Abbé ,CAMBLAIN L ABBE ,62690,62199,31,50.366667,2.633333,1.32
+ Cambrin ,CAMBRIN ,62149,62200,31,50.5,2.733333,1.14
+ Camiers ,CAMIERS ,62176,62201,31,50.566667,1.616667,2.04
+ Campagne-lès-Boulonnais ,CAMPAGNE LES BOULONNAIS ,62650,62202,31,50.616667,1.983333,1.32
+ Campagne-lès-Guînes ,CAMPAGNE LES GUINES ,62340,62203,31,50.833333,1.9,2.16
+ Campagne-lès-Hesdin ,CAMPAGNE LES HESDIN ,62870,62204,31,50.4,1.866667,1.32
+ Campagne-lès-Wardrecques ,CAMPAGNE LES WARDRECQUES ,62120,62205,31,50.716667,2.333333,1.75
+ Campigneulles-les-Grandes ,CAMPIGNEULLES LES GRANDES ,62170,62206,31,50.433333,1.716667,1.75
+ Campigneulles-les-Petites ,CAMPIGNEULLES LES PETITES ,62170,62207,31,50.45,1.733333,1.7
+ Canettemont ,CANETTEMONT ,62270,62208,31,50.283333,2.366667,1.46
+ Canlers ,CANLERS ,62310,62209,31,50.483333,2.15,0.52
+ Capelle-Fermont ,CAPELLE FERMONT ,62690,62211,31,50.35,2.616667,0.91
+ Capelle-lès Hesdin ,CAPELLE LES HESDIN ,62140,62212,31,50.333333,2,0.94
+ Carency ,CARENCY ,62144,62213,31,50.383333,2.7,1.38
+ Carly ,CARLY ,62830,62214,31,50.65,1.7,1.8
+ Carvin ,CARVIN ,62220,62215,31,50.483333,2.966667,1.81
+ La Cauchie ,LA CAUCHIE ,62158,62216,31,50.2,2.583333,1.52
+ Cauchy-à-la-Tour ,CAUCHY A LA TOUR,62260,62217,31,50.5,2.45,0.74
+ Caucourt ,CAUCOURT ,62150,62218,31,50.4,2.566667,0.99
+ Caumont ,CAUMONT ,62140,62219,31,50.283333,2.033333,1.49
+ Cavron-Saint-Martin ,CAVRON SAINT MARTIN ,62140,62220,31,50.416667,2,1.18
+ Chelers ,CHELERS ,62127,62221,31,50.366667,2.483333,0.67
+ Chériennes ,CHERIENNES ,62140,62222,31,50.316667,2.033333,0.87
+ Chérisy ,CHERISY ,62128,62223,31,50.233333,2.916667,1.67
+ Chocques ,CHOCQUES ,62920,62224,31,50.533333,2.566667,0.96
+ Clairmarais ,CLAIRMARAIS ,62500,62225,31,50.766667,2.3,2.1
+ Clarques ,CLARQUES ,62129,62226,31,50.65,2.283333,1.1
+ Clenleu ,CLENLEU ,62650,62227,31,50.533333,1.883333,1.28
+ Clerques ,CLERQUES ,62890,62228,31,50.8,2,1.97
+ Cléty ,CLETY ,62380,62229,31,50.65,2.183333,1.52
+ Colembert ,COLEMBERT ,62142,62230,31,50.75,1.833333,1.68
+ Colline-Beaumont ,COLLINE BEAUMONT ,62180,62231,31,50.333333,1.683333,1.85
+ La Comté ,LA COMTE ,62150,62232,31,50.433333,2.5,1.21
+ Conchil-le-Temple ,CONCHIL LE TEMPLE ,62180,62233,31,50.366667,1.666667,1.89
+ Conchy-sur-Canche ,CONCHY SUR CANCHE ,62270,62234,31,50.3,2.2,1.34
+ Condette ,CONDETTE ,62360,62235,31,50.65,1.65,1.94
+ Contes ,CONTES ,62990,62236,31,50.4,1.966667,1.32
+ Conteville-lès-Boulogne ,CONTEVILLE LES BOULOGNE ,62126,62237,31,50.75,1.733333,1.7
+ Coquelles ,COQUELLES ,62231,62239,31,50.933333,1.8,2.74
+ Corbehem ,CORBEHEM ,62112,62240,31,50.333333,3.05,2.05
+ Cormont ,CORMONT ,62630,62241,31,50.566667,1.733333,1.7
+ Couin ,COUIN ,62760,62242,31,50.133333,2.533333,1.91
+ Coullemont ,COULLEMONT ,62158,62243,31,50.2,2.483333,1.55
+ Coulogne ,COULOGNE ,62137,62244,31,50.916667,1.883333,2.64
+ Coulomby ,COULOMBY ,62380,62245,31,50.7,2,1.38
+ Coupelle-Neuve ,COUPELLE NEUVE ,62310,62246,31,50.5,2.116667,0.61
+ Coupelle-Vieille ,COUPELLE VIEILLE ,62310,62247,31,50.533333,2.1,0.86
+ Courcelles-le-Comte ,COURCELLES LE COMTE ,62121,62248,31,50.166667,2.783333,1.72
+ Courcelles-les-Lens ,COURCELLES LES LENS ,62970,62249,31,50.416667,3.016667,1.95
+ Courrières ,COURRIERES ,62710,62250,31,50.45,2.933333,1.71
+ Courset ,COURSET ,62240,62251,31,50.65,1.833333,1.42
+ La Couture ,LA COUTURE ,62136,62252,31,50.583333,2.716667,1.1
+ Couturelle ,COUTURELLE ,62158,62253,31,50.2,2.5,1.52
+ Coyecques ,COYECQUES ,62560,62254,31,50.6,2.183333,1.41
+ Crémarest ,CREMAREST ,62240,62255,31,50.7,1.783333,1.67
+ Crépy ,CREPY ,62310,62256,31,50.483333,2.2,1.34
+ Créquy ,CREQUY ,62310,62257,31,50.483333,2.05,1.58
+ Croisette ,CROISETTE ,62130,62258,31,50.35,2.25,1
+ Croisilles ,CROISILLES ,62128,62259,31,50.2,2.883333,1.57
+ Cucq ,CUCQ ,62780,62261,31,50.483333,1.616667,2.04
+ Cuinchy ,CUINCHY ,62149,62262,31,50.516667,2.75,1.19
+ Dainville ,DAINVILLE ,62000,62263,31,50.283333,2.716667,1.1
+ Dannes ,DANNES ,62187,62264,31,50.583333,1.6,2.08
+ Delettes ,DELETTES ,62129,62265,31,50.616667,2.2,1.7
+ Denier ,DENIER ,62810,62266,31,50.283333,2.45,1.04
+ Dennebroeucq ,DENNEBROEUCQ ,62560,62267,31,50.566667,2.15,0.94
+ Desvres ,DESVRES ,62240,62268,31,50.666667,1.833333,1.42
+ Diéval ,DIEVAL ,62460,62269,31,50.433333,2.45,1.48
+ Divion ,DIVION ,62460,62270,31,50.466667,2.5,1.27
+ Dohem ,DOHEM ,62380,62271,31,50.633333,2.183333,1.62
+ Douchy-lès-Ayette ,DOUCHY LES AYETTE ,62116,62272,31,50.166667,2.716667,1.72
+ Doudeauville ,DOUDEAUVILLE ,62830,62273,31,50.616667,1.833333,2.25
+ Dourges ,DOURGES ,62119,62274,31,50.433333,2.983333,1.86
+ Douriez ,DOURIEZ ,62870,62275,31,50.333333,1.883333,1.28
+ Douvrin ,DOUVRIN ,62138,62276,31,50.516667,2.833333,1.43
+ Drocourt ,DROCOURT ,62320,62277,31,50.383333,2.916667,1.67
+ Duisans ,DUISANS ,62161,62279,31,50.3,2.683333,1
+ Dury ,DURY ,62156,62280,31,50.25,3.016667,1.95
+ Echinghen ,ECHINGHEN ,62360,62281,31,50.7,1.65,1.94
+ Éclimeux ,ECLIMEUX ,62770,62282,31,50.4,2.183333,1.29
+ Écoivres ,ECOIVRES ,62270,62283,31,50.325,2.291667,-1
+ Écourt-Saint-Quentin ,ECOURT SAINT QUENTIN ,62860,62284,31,50.25,3.066667,2.09
+ Écoust-Saint-Mein ,ECOUST SAINT MEIN ,62128,62285,31,50.183333,2.916667,1.67
+ Ecquedecques ,ECQUEDECQUES ,62190,62286,31,50.566667,2.45,0.65
+ Ecques ,ECQUES ,62129,62288,31,50.666667,2.283333,1.24
+ Écuires ,ECUIRES ,62170,62289,31,50.45,1.766667,1.61
+ Écurie ,ECURIE ,62223,62290,31,50.333333,2.766667,1.24
+ Éleu-dit-Leauwette ,ELEU DIT LEAUWETTE ,62300,62291,31,50.416667,2.816667,1.38
+ Elnes ,ELNES ,62380,62292,31,50.683333,2.133333,1.29
+ Embry ,EMBRY ,62990,62293,31,50.483333,1.966667,1.04
+ Enquin-les-Mines ,ENQUIN LES MINES ,62145,62295,31,50.583333,2.283333,1.36
+ Enquin-sur-Baillons ,ENQUIN SUR BAILLONS ,62650,62296,31,50.566667,1.833333,1.42
+ Éperlecques ,EPERLECQUES ,62910,62297,31,50.8,2.15,1.97
+ Eps ,EPS ,62134,62299,31,50.45,2.3,1.28
+ Équihen-Plage ,EQUIHEN PLAGE ,62224,62300,31,50.683333,1.566667,2.18
+ Équirre ,EQUIRRE ,62134,62301,31,50.466667,2.233333,0.53
+ Ergny ,ERGNY ,62650,62302,31,50.583333,1.983333,1.08
+ Érin ,ERIN ,62134,62303,31,50.433333,2.216667,1.25
+ Erny-Saint-Julien ,ERNY SAINT JULIEN ,62960,62304,31,50.583333,2.25,1.05
+ Erquières ,ERQUIERES ,62140,62305,31,50.316667,2.083333,1.56
+ Ervillers ,ERVILLERS ,62121,62306,31,50.166667,2.833333,1.72
+ Escalles ,ESCALLES ,62179,62307,31,50.916667,1.716667,2.64
+ Escoeuilles ,ESCOEUILLES ,62850,62308,31,50.733333,1.933333,1.58
+ Esquerdes ,ESQUERDES ,62380,62309,31,50.7,2.183333,1.44
+ Essars ,ESSARS ,62400,62310,31,50.55,2.666667,0.95
+ Estevelles ,ESTEVELLES ,62880,62311,31,50.466667,2.916667,2
+ Estrée ,ESTREE ,62170,62312,31,50.5,1.783333,1.56
+ Estrée-Blanche ,ESTREE BLANCHE ,62145,62313,31,50.583333,2.316667,0.71
+ Estrée-Cauchy ,ESTREE CAUCHY ,62690,62314,31,50.4,2.616667,1.36
+ Estréelles ,ESTREELLES ,62170,62315,31,50.5,1.783333,1.56
+ Estrée-Wamin ,ESTREE WAMIN ,62810,62316,31,50.283333,2.4,1.39
+ Étaing ,ETAING ,62156,62317,31,50.266667,3,1.9
+ Étaples ,ETAPLES ,62630,62318,31,50.516667,1.65,1.94
+ Éterpigny ,ETERPIGNY ,62156,62319,31,50.266667,2.983333,1.86
+ Étrun ,ETRUN ,62161,62320,31,50.316667,2.7,1.05
+ Évin-Malmaison ,EVIN MALMAISON ,62141,62321,31,50.433333,3.033333,2
+ Famechon ,FAMECHON ,62760,62322,31,50.133333,2.466667,1.91
+ Fampoux ,FAMPOUX ,62118,62323,31,50.3,2.883333,1.57
+ Farbus ,FARBUS ,62580,62324,31,50.35,2.833333,1.43
+ Fauquembergues ,FAUQUEMBERGUES ,62560,62325,31,50.6,2.083333,0.8
+ Favreuil ,FAVREUIL ,62450,62326,31,50.116667,2.85,2.01
+ Febvin-Palfart ,FEBVIN PALFART ,62960,62327,31,50.533333,2.316667,0.83
+ Ferfay ,FERFAY ,62260,62328,31,50.516667,2.416667,0.61
+ Ferques ,FERQUES ,62250,62329,31,50.833333,1.766667,2.16
+ Festubert ,FESTUBERT ,62149,62330,31,50.55,2.733333,1.48
+ Feuchy ,FEUCHY ,62223,62331,31,50.283333,2.85,2.03
+ Ficheux ,FICHEUX ,62173,62332,31,50.233333,2.733333,1.34
+ Fiefs ,FIEFS ,62134,62333,31,50.5,2.316667,1.93
+ Fiennes ,FIENNES ,62132,62334,31,50.833333,1.833333,2.16
+ Fillièvres ,FILLIEVRES ,62770,62335,31,50.316667,2.166667,1.67
+ Fléchin ,FLECHIN ,62960,62336,31,50.55,2.283333,0.51
+ Flers ,FLERS ,62270,62337,31,50.316667,2.25,0.85
+ Fleurbaix ,FLEURBAIX ,62840,62338,31,50.65,2.833333,1.43
+ Fleury ,FLEURY ,62134,62339,31,50.416667,2.25,1.23
+ Floringhem ,FLORINGHEM ,62550,62340,31,50.5,2.433333,1.33
+ Foncquevillers ,FONCQUEVILLERS ,62111,62341,31,50.133333,2.633333,1.91
+ Fontaine-lès-Boulans ,FONTAINE LES BOULANS ,62134,62342,31,50.5,2.266667,1.03
+ Fontaine-lès-Croisilles ,FONTAINE LES CROISILLES ,62128,62343,31,50.216667,2.916667,1.67
+ Fontaine-lès-Hermans ,FONTAINE LES HERMANS ,62550,62344,31,50.533333,2.35,1.42
+ Fontaine-l'Etalon ,FONTAINE L ETALON ,62390,62345,31,50.3,2.066667,1.13
+ Fortel-en-Artois ,FORTEL EN ARTOIS ,62270,62346,31,50.25,2.233333,1.23
+ Fosseux ,FOSSEUX ,62810,62347,31,50.25,2.566667,1.49
+ Foufflin-Ricametz ,FOUFFLIN RICAMETZ ,62130,62348,31,50.35,2.383333,1.2
+ Fouquereuil ,FOUQUEREUIL ,62232,62349,31,50.516667,2.6,1.36
+ Fouquières-lès-Béthune ,FOUQUIERES LES BETHUNE ,62232,62350,31,50.516667,2.616667,1.08
+ Fouquières-lès-Lens ,FOUQUIERES LES LENS ,62740,62351,31,50.433333,2.916667,1.67
+ Framecourt ,FRAMECOURT ,62130,62352,31,50.333333,2.3,0.75
+ Frémicourt ,FREMICOURT ,62450,62353,31,50.116667,2.9,2.01
+ Frencq ,FRENCQ ,62630,62354,31,50.566667,1.7,1.8
+ Fresnicourt-le-Dolmen ,FRESNICOURT LE DOLMEN ,62150,62356,31,50.416667,2.6,1.63
+ Fresnoy ,FRESNOY ,62770,62357,31,50.366667,2.133333,0.56
+ Fresnoy-en-Gohelle ,FRESNOY EN GOHELLE ,62580,62358,31,50.366667,2.883333,1.57
+ Fressin ,FRESSIN ,62140,62359,31,50.45,2.05,1.93
+ Fréthun ,FRETHUN ,62185,62360,31,50.916667,1.816667,2.64
+ Frévent ,FREVENT ,62270,62361,31,50.266667,2.283333,1.14
+ Frévillers ,FREVILLERS ,62127,62362,31,50.4,2.516667,1.78
+ Frévin-Capelle ,FREVIN CAPELLE ,62690,62363,31,50.35,2.633333,1.31
+ Fruges ,FRUGES ,62310,62364,31,50.516667,2.133333,0.56
+ Galametz ,GALAMETZ ,62770,62365,31,50.333333,2.133333,1.07
+ Gauchin-Légal ,GAUCHIN LEGAL ,62150,62366,31,50.416667,2.583333,1.17
+ Gauchin-Verloingt ,GAUCHIN VERLOINGT ,62130,62367,31,50.383333,2.316667,0.46
+ Gaudiempré ,GAUDIEMPRE ,62760,62368,31,50.183333,2.533333,1.62
+ Gavrelle ,GAVRELLE ,62580,62369,31,50.333333,2.883333,1.57
+ Gennes-Ivergny ,GENNES IVERGNY ,62390,62370,31,50.266667,2.033333,1.57
+ Givenchy-en-Gohelle ,GIVENCHY EN GOHELLE ,62580,62371,31,50.383333,2.766667,1.96
+ Givenchy-le-Noble ,GIVENCHY LE NOBLE ,62810,62372,31,50.3,2.5,0.94
+ Gomiécourt ,GOMIECOURT ,62121,62374,31,50.133333,2.8,1.91
+ Gommécourt ,GOMMECOURT ,62111,62375,31,50.133333,2.65,1.91
+ Gonnehem ,GONNEHEM ,62920,62376,31,50.566667,2.566667,0.96
+ Gosnay ,GOSNAY ,62199,62377,31,50.516667,2.583333,0.72
+ Gouves ,GOUVES ,62123,62378,31,50.3,2.633333,1.09
+ Gouy-en-Artois ,GOUY EN ARTOIS ,62123,62379,31,50.25,2.583333,1.25
+ Gouy-en-Ternois ,GOUY EN TERNOIS ,62127,62381,31,50.316667,2.416667,1.34
+ Gouy-Saint-André ,GOUY SAINT ANDRE ,62870,62382,31,50.366667,1.9,1.34
+ Gouy-sous-Bellonne ,GOUY SOUS BELLONNE ,62112,62383,31,50.316667,3.05,2.05
+ Grand Rullecourt ,GRAND RULLECOURT ,62810,62385,31,50.25,2.483333,1.23
+ Grenay ,GRENAY ,62160,62386,31,50.45,2.733333,1.5
+ Grévillers ,GREVILLERS ,62450,62387,31,50.1,2.816667,2.11
+ Grigny ,GRIGNY ,62140,62388,31,50.383333,2.066667,1.14
+ Grincourt-lès-Pas ,GRINCOURT LES PAS ,62760,62389,31,50.166667,2.5,1.72
+ Groffliers ,GROFFLIERS ,62600,62390,31,50.383333,1.616667,2.04
+ Guarbecque ,GUARBECQUE ,62330,62391,31,50.616667,2.483333,1.4
+ Guémappe ,GUEMAPPE ,62128,62392,31,50.25,2.883333,1.57
+ Guemps ,GUEMPS ,62370,62393,31,50.916667,2,2.64
+ Guigny ,GUIGNY ,62140,62395,31,50.333333,2,0.94
+ Guinecourt ,GUINECOURT ,62130,62396,31,50.35,2.233333,1.25
+ Guînes ,GUINES ,62340,62397,31,50.866667,1.866667,2.35
+ Guisy ,GUISY ,62140,62398,31,50.383333,2,0.94
+ Habarcq ,HABARCQ ,62123,62399,31,50.3,2.616667,1.15
+ Haillicourt ,HAILLICOURT ,62940,62400,31,50.466667,2.583333,0.72
+ Haisnes ,HAISNES ,62138,62401,31,50.516667,2.8,1.33
+ Halinghen ,HALINGHEN ,62830,62402,31,50.6,1.7,1.8
+ Hallines ,HALLINES ,62570,62403,31,50.716667,2.216667,1.48
+ Halloy ,HALLOY ,62760,62404,31,50.166667,2.416667,1.72
+ Hamblain-les-Prés ,HAMBLAIN LES PRES ,62118,62405,31,50.3,2.966667,1.81
+ Hamelincourt ,HAMELINCOURT ,62121,62406,31,50.183333,2.816667,1.62
+ Ham-en-Artois ,HAM EN ARTOIS ,62190,62407,31,50.583333,2.466667,1.39
+ Hames-Boucres ,HAMES BOUCRES ,62340,62408,31,50.883333,1.85,2.45
+ Hannescamps ,HANNESCAMPS ,62111,62409,31,50.166667,2.633333,1.72
+ Haplincourt ,HAPLINCOURT ,62124,62410,31,50.083333,2.933333,2.2
+ Haravesnes ,HARAVESNES ,62390,62411,31,50.283333,2.133333,1.04
+ Hardinghen ,HARDINGHEN ,62132,62412,31,50.8,1.816667,1.97
+ Harnes ,HARNES ,62440,62413,31,50.45,2.9,1.62
+ Haucourt ,HAUCOURT ,62156,62414,31,50.25,2.95,1.76
+ Haute Avesnes ,HAUTE AVESNES ,62144,62415,31,50.333333,2.633333,1.49
+ Hautecloque ,HAUTECLOQUE ,62130,62416,31,50.333333,2.3,0.75
+ Hautecôte ,HAUTECOTE ,62270,62417,31,50.3,2.283333,0.94
+ Hauteville ,HAUTEVILLE ,62810,62418,31,50.266667,2.566667,1.46
+ Haut-Maînil ,HAUT MAINIL ,62390,62420,31,50.3,2.116667,0.94
+ Havrincourt ,HAVRINCOURT ,62147,62421,31,50.116667,3.083333,2.14
+ Hébuterne ,HEBUTERNE ,62111,62422,31,50.116667,2.633333,2.01
+ Helfaut ,HELFAUT ,62570,62423,31,50.7,2.25,1.38
+ Hendecourt-lès-Cagnicourt ,HENDECOURT LES CAGNICOURT ,62182,62424,31,50.216667,2.95,1.76
+ Hendecourt-lès-Ransart ,HENDECOURT LES RANSART ,62175,62425,31,50.2,2.733333,1.57
+ Héninel ,HENINEL ,62128,62426,31,50.233333,2.866667,1.52
+ Hénin-Beaumont ,HENIN BEAUMONT ,62110,62427,31,50.416667,2.933333,1.71
+ Hénin-sur-Cojeul ,HENIN SUR COJEUL ,62128,62428,31,50.233333,2.833333,1.43
+ Henneveux ,HENNEVEUX ,62142,62429,31,50.716667,1.85,1.48
+ Hénu ,HENU ,62760,62430,31,50.15,2.533333,1.81
+ Herbelles ,HERBELLES ,62129,62431,31,50.65,2.216667,1.09
+ Herbinghen ,HERBINGHEN ,62850,62432,31,50.766667,1.916667,1.77
+ Héricourt ,HERICOURT ,62130,62433,31,50.35,2.25,1
+ La Herlière ,LA HERLIERE ,62158,62434,31,50.216667,2.55,1.43
+ Herlincourt ,HERLINCOURT ,62130,62435,31,50.35,2.3,0.65
+ Herlin-le-Sec ,HERLIN LE SEC ,62130,62436,31,50.35,2.333333,0.65
+ Herly ,HERLY ,62650,62437,31,50.55,1.983333,1.05
+ Hermaville ,HERMAVILLE ,62690,62438,31,50.316667,2.583333,1
+ Hermelinghen ,HERMELINGHEN ,62132,62439,31,50.8,1.85,1.97
+ Hermies ,HERMIES ,62147,62440,31,50.116667,3.033333,2.01
+ Hermin ,HERMIN ,62150,62441,31,50.416667,2.55,0.62
+ Hernicourt ,HERNICOURT ,62130,62442,31,50.4,2.3,0.48
+ Hersin-Coupigny ,HERSIN COUPIGNY ,62530,62443,31,50.45,2.65,1
+ Hervelinghen ,HERVELINGHEN ,62179,62444,31,50.883333,1.716667,2.45
+ Hesdigneul-lès-Béthune ,HESDIGNEUL LES BETHUNE ,62196,62445,31,50.5,2.6,0.76
+ Hesdigneul-lès-Boulogne ,HESDIGNEUL LES BOULOGNE ,62360,62446,31,50.65,1.666667,1.89
+ Hesdin ,HESDIN ,62140,62447,31,50.366667,2.033333,0.85
+ Hesdin-l'Abbé ,HESDIN L ABBE ,62360,62448,31,50.666667,1.683333,1.85
+ Hesmond ,HESMOND ,62990,62449,31,50.45,1.95,1.09
+ Hestrus ,HESTRUS ,62550,62450,31,50.45,2.333333,1.57
+ Heuchin ,HEUCHIN ,62134,62451,31,50.466667,2.266667,0.36
+ Heuringhem ,HEURINGHEM ,62575,62452,31,50.7,2.283333,1.38
+ Hezecques ,HEZECQUES ,62310,62453,31,50.533333,2.183333,1.16
+ Hinges ,HINGES ,62232,62454,31,50.566667,2.616667,2.13
+ Hocquinghen ,HOCQUINGHEN ,62850,62455,31,50.766667,1.933333,1.77
+ Houchin ,HOUCHIN ,62620,62456,31,50.483333,2.616667,1.25
+ Houdain ,HOUDAIN ,62150,62457,31,50.45,2.533333,0.72
+ Houlle ,HOULLE ,62910,62458,31,50.8,2.166667,1.97
+ Houvin-Houvigneul ,HOUVIN HOUVIGNEUL ,62270,62459,31,50.3,2.383333,1.73
+ Hubersent ,HUBERSENT ,62630,62460,31,50.583333,1.733333,1.7
+ Huby-Saint-Leu ,HUBY SAINT LEU ,62140,62461,31,50.383333,2.033333,0.85
+ Huclier ,HUCLIER ,62130,62462,31,50.433333,2.35,1.16
+ Hucqueliers ,HUCQUELIERS ,62650,62463,31,50.566667,1.9,1.23
+ Hulluch ,HULLUCH ,62410,62464,31,50.483333,2.816667,1.38
+ Humbercamps ,HUMBERCAMPS ,62158,62465,31,50.183333,2.583333,1.62
+ Humbert ,HUMBERT ,62650,62466,31,50.5,1.9,1.23
+ Humeroeuille ,HUMEROEUILLE ,62130,62467,31,50.4,2.216667,1.54
+ Humières ,HUMIERES ,62130,62468,31,50.383333,2.2,1.74
+ Inchy-en-Artois ,INCHY EN ARTOIS ,62860,62469,31,50.166667,3.05,2.05
+ Incourt ,INCOURT ,62770,62470,31,50.383333,2.15,0.52
+ Inghem ,INGHEM ,62129,62471,31,50.666667,2.25,1.19
+ Inxent ,INXENT ,62170,62472,31,50.533333,1.783333,1.56
+ Isbergues ,ISBERGUES ,62330,62473,31,50.616667,2.45,0.9
+ Isques ,ISQUES ,62360,62474,31,50.666667,1.65,1.94
+ Ivergny ,IVERGNY ,62810,62475,31,50.233333,2.4,1.47
+ Izel-lès-Équerchin ,IZEL LES EQUERCHIN ,62490,62476,31,50.366667,2.95,1.76
+ Izel-lès-Hameaux ,IZEL LES HAMEAUX ,62690,62477,31,50.316667,2.533333,1.51
+ Journy ,JOURNY ,62850,62478,31,50.75,1.983333,1.68
+ Labeuvrière ,LABEUVRIERE ,62122,62479,31,50.516667,2.566667,1
+ Labourse ,LABOURSE ,62113,62480,31,50.5,2.7,1.05
+ Labroye ,LABROYE ,62140,62481,31,50.283333,1.983333,1.56
+ Labuissière ,LABUISSIERE ,62700,62482,31,50.483333,2.566667,0.67
+ Lacres ,LACRES ,62830,62483,31,50.6,1.75,1.66
+ Lagnicourt-Marcel ,LAGNICOURT MARCEL ,62159,62484,31,50.15,2.95,1.81
+ Laires ,LAIRES ,62960,62485,31,50.533333,2.25,0.83
+ Lambres ,LAMBRES ,62120,62486,31,50.616667,2.4,0.9
+ Landrethun-le-Nord ,LANDRETHUN LE NORD ,62250,62487,31,50.85,1.783333,2.26
+ Landrethun-lès-Ardres ,LANDRETHUN LES ARDRES ,62610,62488,31,50.816667,1.966667,2.06
+ Lapugnoy ,LAPUGNOY ,62122,62489,31,50.516667,2.533333,1
+ Lattre-Saint-Quentin ,LATTRE SAINT QUENTIN ,62810,62490,31,50.283333,2.583333,1.77
+ Laventie ,LAVENTIE ,62840,62491,31,50.633333,2.766667,1.24
+ Lebiez ,LEBIEZ ,62990,62492,31,50.466667,1.983333,1.04
+ Lebucquière ,LEBUCQUIERE ,62124,62493,31,50.116667,2.966667,2.01
+ Léchelle ,LECHELLE ,62124,62494,31,50.05,2.983333,2.4
+ Ledinghem ,LEDINGHEM ,62380,62495,31,50.65,1.983333,1.61
+ Lefaux ,LEFAUX ,62630,62496,31,50.55,1.65,1.94
+ Leforest ,LEFOREST ,62790,62497,31,50.433333,3.066667,2.09
+ Lens ,LENS ,62300,62498,31,50.433333,2.833333,1.43
+ Lépine ,LEPINE ,62170,62499,31,50.383333,1.716667,1.78
+ Lespesses ,LESPESSES ,62190,62500,31,50.566667,2.416667,0.61
+ Lespinoy ,LESPINOY ,62990,62501,31,50.433333,1.866667,1.64
+ Lestrem ,LESTREM ,62136,62502,31,50.616667,2.683333,1.41
+ Leubringhen ,LEUBRINGHEN ,62250,62503,31,50.85,1.716667,2.26
+ Leulinghem ,LEULINGHEM ,62500,62504,31,50.733333,2.166667,1.58
+ Leulinghen-Bernes ,LEULINGHEN BERNES ,62250,62505,31,50.833333,1.716667,2.16
+ Licques ,LICQUES ,62850,62506,31,50.783333,1.933333,1.87
+ Liencourt ,LIENCOURT ,62810,62507,31,50.266667,2.45,1.14
+ Lières ,LIERES ,62190,62508,31,50.55,2.416667,0.65
+ Liettres ,LIETTRES ,62145,62509,31,50.6,2.35,1.42
+ Liévin ,LIEVIN ,62800,62510,31,50.416667,2.766667,1.24
+ Lignereuil ,LIGNEREUIL ,62810,62511,31,50.283333,2.466667,1.04
+ Ligny-lès-Aire ,LIGNY LES AIRE ,62960,62512,31,50.55,2.35,1.48
+ Ligny-sur-Canche ,LIGNY SUR CANCHE ,62270,62513,31,50.283333,2.25,1.04
+ Ligny-Saint-Flochel ,LIGNY SAINT FLOCHEL ,62127,62514,31,50.35,2.433333,0.65
+ Ligny-Thilloy ,LIGNY THILLOY ,62450,62515,31,50.083333,2.833333,2.2
+ Lillers ,LILLERS ,62190,62516,31,50.566667,2.483333,1.77
+ Linghem ,LINGHEM ,62120,62517,31,50.6,2.366667,0.8
+ Linzeux ,LINZEUX ,62270,62518,31,50.35,2.2,1.64
+ Lisbourg ,LISBOURG ,62134,62519,31,50.5,2.216667,1.37
+ Locon ,LOCON ,62400,62520,31,50.566667,2.666667,1.02
+ La Loge ,LA LOGE ,62140,62521,31,50.4,2.033333,0.91
+ Loison-sur-Créquoise ,LOISON SUR CREQUOISE ,62990,62522,31,50.433333,1.916667,1.18
+ Loison-sous-Lens ,LOISON SOUS LENS ,62218,62523,31,50.433333,2.866667,1.52
+ Longfossé ,LONGFOSSE ,62240,62524,31,50.65,1.8,1.51
+ Longuenesse ,LONGUENESSE ,62219,62525,31,50.733333,2.233333,1.58
+ Longueville ,LONGUEVILLE ,62142,62526,31,50.733333,1.883333,1.58
+ Longvillers ,LONGVILLERS ,62630,62527,31,50.55,1.716667,1.75
+ Loos-en-Gohelle ,LOOS EN GOHELLE ,62750,62528,31,50.45,2.783333,1.29
+ Lorgies ,LORGIES ,62840,62529,31,50.566667,2.783333,1.29
+ Lottinghen ,LOTTINGHEN ,62240,62530,31,50.683333,1.933333,1.29
+ Louches ,LOUCHES ,62610,62531,31,50.833333,2,2.16
+ Lozinghem ,LOZINGHEM ,62540,62532,31,50.516667,2.5,1
+ Lugy ,LUGY ,62310,62533,31,50.516667,2.183333,1.03
+ Lumbres ,LUMBRES ,62380,62534,31,50.7,2.133333,1.38
+ Magnicourt-en-Comté ,MAGNICOURT EN COMTE ,62127,62536,31,50.4,2.5,1.49
+ Magnicourt-sur-Canche ,MAGNICOURT SUR CANCHE ,62270,62537,31,50.3,2.416667,2.29
+ Maintenay ,MAINTENAY ,62870,62538,31,50.366667,1.816667,1.47
+ Maisnil ,MAISNIL ,62130,62539,31,50.341667,2.366667,-1
+ Maisnil-lès-Ruitz ,MAISNIL LES RUITZ ,62620,62540,31,50.45,2.583333,0.97
+ Maisoncelle ,MAISONCELLE ,62310,62541,31,50.441667,2.141667,1.13
+ Maizières ,MAIZIERES ,62127,62542,31,50.316667,2.45,0.91
+ Mametz ,MAMETZ ,62120,62543,31,50.633333,2.333333,1
+ Manin ,MANIN ,62810,62544,31,50.3,2.516667,0.94
+ Maninghem ,MANINGHEM ,62650,62545,31,50.533333,1.95,1.09
+ Maninghen-Henne ,MANINGHEN HENNE ,62250,62546,31,50.766667,1.666667,1.89
+ Marant ,MARANT ,62170,62547,31,50.466667,1.833333,1.42
+ Marck ,MARCK ,62730,62548,31,50.95,1.95,2.84
+ Marconne ,MARCONNE ,62140,62549,31,50.366667,2.05,0.8
+ Marconnelle ,MARCONNELLE ,62140,62550,31,50.366667,2.016667,0.9
+ Marenla ,MARENLA ,62990,62551,31,50.45,1.866667,1.59
+ Marest ,MAREST ,62550,62553,31,50.466667,2.416667,1.03
+ Maresville ,MARESVILLE ,62630,62554,31,50.533333,1.733333,1.7
+ Marles-les-Mines ,MARLES LES MINES ,62540,62555,31,50.5,2.516667,1
+ Marles-sur-Canche ,MARLES SUR CANCHE ,62170,62556,31,50.45,1.833333,1.42
+ Maroeuil ,MAROEUIL ,62161,62557,31,50.316667,2.7,1.05
+ Marquay ,MARQUAY ,62127,62558,31,50.383333,2.416667,1.24
+ Marquion ,MARQUION ,62860,62559,31,50.216667,3.083333,2.14
+ Marquise ,MARQUISE ,62250,62560,31,50.816667,1.7,2.06
+ Martinpuich ,MARTINPUICH ,62450,62561,31,50.033333,2.766667,2.49
+ Matringhem ,MATRINGHEM ,62310,62562,31,50.55,2.166667,1.15
+ Mazingarbe ,MAZINGARBE ,62670,62563,31,50.466667,2.7,1.05
+ Mazinghem ,MAZINGHEM ,62120,62564,31,50.6,2.4,0.92
+ Mencas ,MENCAS ,62310,62565,31,50.55,2.133333,0.94
+ Menneville ,MENNEVILLE ,62240,62566,31,50.683333,1.866667,1.32
+ Mercatel ,MERCATEL ,62217,62568,31,50.233333,2.8,1.33
+ Merck-Saint-Liévin ,MERCK SAINT LIEVIN ,62560,62569,31,50.616667,2.116667,0.9
+ Méricourt ,MERICOURT ,62680,62570,31,50.4,2.866667,1.52
+ Merlimont ,MERLIMONT ,62155,62571,31,50.45,1.616667,2.04
+ Metz-en-Couture ,METZ EN COUTURE ,62124,62572,31,50.066667,3.066667,2.32
+ Meurchin ,MEURCHIN ,62410,62573,31,50.5,2.883333,1.8
+ Mingoval ,MINGOVAL ,62690,62574,31,50.366667,2.566667,0.67
+ Molinghem ,MOLINGHEM ,62330,62575,31,50.616667,2.45,0.9
+ Monchel-sur Canche ,MONCHEL SUR CANCHE ,62270,62577,31,50.3,2.216667,1.06
+ Monchiet ,MONCHIET ,62123,62578,31,50.233333,2.633333,1.33
+ Monchy-au-Bois ,MONCHY AU BOIS ,62111,62579,31,50.183333,2.666667,1.62
+ Monchy-Breton ,MONCHY BRETON ,62127,62580,31,50.4,2.433333,1.28
+ Monchy-Cayeux ,MONCHY CAYEUX ,62134,62581,31,50.433333,2.266667,0.86
+ Monchy-le-Preux ,MONCHY LE PREUX ,62118,62582,31,50.266667,2.9,1.62
+ Mondicourt ,MONDICOURT ,62760,62583,31,50.166667,2.466667,1.72
+ Montcavrel ,MONTCAVREL ,62170,62585,31,50.516667,1.8,1.51
+ Montenescourt ,MONTENESCOURT ,62123,62586,31,50.3,2.616667,1.15
+ Montigny-en-Gohelle ,MONTIGNY EN GOHELLE ,62640,62587,31,50.433333,2.933333,1.71
+ Mont-Saint-Éloi ,MONT SAINT ELOI ,62144,62589,31,50.35,2.7,1.05
+ Monts-en-Ternois ,MONTS EN TERNOIS ,62130,62590,31,50.316667,2.383333,1.44
+ Morchies ,MORCHIES ,62124,62591,31,50.133333,2.95,1.91
+ Moringhem ,MORINGHEM ,62910,62592,31,50.766667,2.133333,1.77
+ Morval ,MORVAL ,62450,62593,31,50.033333,2.866667,2.49
+ Mory ,MORY ,62159,62594,31,50.15,2.85,1.81
+ Moulle ,MOULLE ,62910,62595,31,50.783333,2.183333,1.87
+ Mouriez ,MOURIEZ ,62140,62596,31,50.35,1.95,1.25
+ Moyenneville ,MOYENNEVILLE ,62121,62597,31,50.183333,2.766667,1.62
+ Muncq-Nieurlet ,MUNCQ NIEURLET ,62890,62598,31,50.85,2.116667,2.26
+ Nabringhen ,NABRINGHEN ,62142,62599,31,50.75,1.866667,1.68
+ Nédon ,NEDON ,62550,62600,31,50.533333,2.366667,1.22
+ Nédonchel ,NEDONCHEL ,62550,62601,31,50.516667,2.366667,0.83
+ Nempont-Saint-Firmin ,NEMPONT SAINT FIRMIN ,62180,62602,31,50.35,1.733333,1.7
+ Nesles ,NESLES ,62152,62603,31,50.616667,1.65,1.94
+ Neufchâtel-Hardelot ,NEUFCHATEL HARDELOT ,62152,62604,31,50.616667,1.633333,1.99
+ Neulette ,NEULETTE ,62770,62605,31,50.383333,2.166667,0.83
+ Neuve-Chapelle ,NEUVE CHAPELLE ,62840,62606,31,50.583333,2.783333,1.29
+ Neuville-au-Cornet ,NEUVILLE AU CORNET ,62130,62607,31,50.333333,2.366667,1.08
+ Neuville-Saint-Vaast ,NEUVILLE SAINT VAAST ,62580,62609,31,50.35,2.766667,1.84
+ Neuville-sous-Montreuil ,NEUVILLE SOUS MONTREUIL ,62170,62610,31,50.466667,1.766667,1.61
+ Neuville-Vitasse ,NEUVILLE VITASSE ,62217,62611,31,50.25,2.816667,1.38
+ Neuvireuil ,NEUVIREUIL ,62580,62612,31,50.35,2.916667,1.77
+ Nielles-lès-Bléquin ,NIELLES LES BLEQUIN ,62380,62613,31,50.666667,2.016667,1.19
+ Nielles-lès-Ardres ,NIELLES LES ARDRES ,62610,62614,31,50.833333,2.016667,2.16
+ Nielles-lès-Calais ,NIELLES LES CALAIS ,62185,62615,31,50.9,1.833333,2.55
+ Noeux-lès-Auxi ,NOEUX LES AUXI ,62390,62616,31,50.233333,2.183333,1.33
+ Noeux-les-Mines ,NOEUX LES MINES ,62290,62617,31,50.483333,2.666667,0.95
+ Nordausques ,NORDAUSQUES ,62890,62618,31,50.816667,2.083333,2.06
+ Noreuil ,NOREUIL ,62128,62619,31,50.166667,2.916667,1.72
+ Norrent-Fontès ,NORRENT FONTES ,62120,62620,31,50.583333,2.4,1.17
+ Nortkerque ,NORTKERQUE ,62370,62621,31,50.883333,2.033333,2.45
+ Nort-Leulinghem ,NORT LEULINGHEM ,62890,62622,31,50.8,2.1,1.97
+ Nouvelle-Église ,NOUVELLE EGLISE ,62370,62623,31,50.933333,2.05,2.74
+ Noyelles-Godault ,NOYELLES GODAULT ,62950,62624,31,50.416667,2.983333,1.86
+ Noyelles-lès-Vermelles ,NOYELLES LES VERMELLES ,62980,62626,31,50.483333,2.716667,1.1
+ Noyelles-sous-Bellonne ,NOYELLES SOUS BELLONNE ,62490,62627,31,50.316667,3.033333,2
+ Noyelles-sous-Lens ,NOYELLES SOUS LENS ,62221,62628,31,50.433333,2.866667,1.52
+ Noyellette ,NOYELLETTE ,62123,62629,31,50.3,2.6,1.36
+ Noyelle-Vion ,NOYELLE VION ,62810,62630,31,50.3,2.55,1.31
+ Nuncq Hautecote ,NUNCQ HAUTECOTE ,62270,62631,31,50.3,2.283333,0.94
+ Oblinghem ,OBLINGHEM ,62920,62632,31,50.55,2.6,1.07
+ Oeuf-en-Ternois ,OEUF EN TERNOIS ,62130,62633,31,50.366667,2.216667,1.47
+ Offekerque ,OFFEKERQUE ,62370,62634,31,50.95,2.016667,2.84
+ Offin ,OFFIN ,62990,62635,31,50.45,1.95,1.09
+ Offrethun ,OFFRETHUN ,62250,62636,31,50.783333,1.683333,1.87
+ Oignies ,OIGNIES ,62590,62637,31,50.466667,2.983333,1.86
+ Oisy-le-Verger ,OISY LE VERGER ,62860,62638,31,50.25,3.116667,2.24
+ Oppy ,OPPY ,62580,62639,31,50.35,2.883333,1.57
+ Orville ,ORVILLE ,62760,62640,31,50.116667,2.416667,2.01
+ Ostreville ,OSTREVILLE ,62130,62641,31,50.4,2.4,1.49
+ Ourton ,OURTON ,62460,62642,31,50.45,2.483333,0.43
+ Outreau ,OUTREAU ,62230,62643,31,50.7,1.583333,2.13
+ Ouve-Wirquin ,OUVE WIRQUIN ,62380,62644,31,50.65,2.133333,1.09
+ Oye-Plage ,OYE PLAGE ,62215,62645,31,50.983333,2.05,-1
+ Palluel ,PALLUEL ,62860,62646,31,50.266667,3.1,2.19
+ Le Parcq ,LE PARCQ ,62770,62647,31,50.383333,2.1,0.7
+ Parenty ,PARENTY ,62650,62648,31,50.583333,1.8,1.83
+ Pas-en-Artois ,PAS EN ARTOIS ,62760,62649,31,50.15,2.5,1.81
+ Pelves ,PELVES ,62118,62650,31,50.283333,2.916667,1.67
+ Penin ,PENIN ,62127,62651,31,50.333333,2.483333,0.76
+ Pernes ,PERNES ,62550,62652,31,50.483333,2.416667,0.88
+ Pernes-lès-Boulogne ,PERNES LES BOULOGNE ,62126,62653,31,50.75,1.7,1.8
+ Peuplingues ,PEUPLINGUES ,62231,62654,31,50.916667,1.766667,2.64
+ Pierremont ,PIERREMONT ,62130,62655,31,50.4,2.266667,0.82
+ Pihem ,PIHEM ,62570,62656,31,50.683333,2.216667,1.29
+ Pihen-lès-Guînes ,PIHEN LES GUINES ,62340,62657,31,50.866667,1.783333,2.35
+ Pittefaux ,PITTEFAUX ,62126,62658,31,50.766667,1.683333,1.85
+ Planques ,PLANQUES ,62310,62659,31,50.466667,2.083333,1.11
+ Plouvain ,PLOUVAIN ,62118,62660,31,50.3,2.916667,1.67
+ Polincove ,POLINCOVE ,62370,62662,31,50.85,2.1,2.26
+ Pommera ,POMMERA ,62760,62663,31,50.166667,2.433333,1.72
+ Pommier ,POMMIER ,62111,62664,31,50.183333,2.6,1.62
+ Le Ponchel ,LE PONCHEL ,62390,62665,31,50.25,2.083333,1.23
+ Pont-à-Vendin ,PONT A VENDIN ,62880,62666,31,50.466667,2.883333,1.57
+ Le Portel ,LE PORTEL ,62480,62667,31,50.7,1.566667,2.18
+ Prédefin ,PREDEFIN ,62134,62668,31,50.5,2.25,0.97
+ Pressy ,PRESSY ,62550,62669,31,50.483333,2.4,0.47
+ Preures ,PREURES ,62650,62670,31,50.566667,1.866667,1.32
+ Pronville ,PRONVILLE ,62860,62671,31,50.166667,3,1.9
+ Puisieux ,PUISIEUX ,62116,62672,31,50.116667,2.7,2.01
+ Quéant ,QUEANT ,62860,62673,31,50.183333,2.983333,1.92
+ Quelmes ,QUELMES ,62500,62674,31,50.733333,2.133333,1.58
+ Quercamps ,QUERCAMPS ,62380,62675,31,50.75,2.05,1.68
+ Quernes ,QUERNES ,62120,62676,31,50.6,2.366667,0.8
+ Le Quesnoy-en-Artois ,LE QUESNOY EN ARTOIS,62140,62677,31,50.333333,2.05,0.84
+ Quesques ,QUESQUES ,62240,62678,31,50.7,1.933333,1.38
+ Questrecques ,QUESTRECQUES ,62830,62679,31,50.666667,1.75,1.66
+ Quiéry-la-Motte ,QUIERY LA MOTTE ,62490,62680,31,50.366667,2.983333,1.86
+ Quiestède ,QUIESTEDE ,62120,62681,31,50.683333,2.333333,1.29
+ Quilen ,QUILEN ,62650,62682,31,50.533333,1.933333,1.13
+ Quoeux-Haut-Mainil ,QUOEUX HAUT MAINIL ,62390,62683,31,50.3,2.1,0.94
+ Racquinghem ,RACQUINGHEM ,62120,62684,31,50.7,2.366667,1.38
+ Radinghem ,RADINGHEM ,62310,62685,31,50.55,2.133333,0.94
+ Ramecourt ,RAMECOURT ,62130,62686,31,50.366667,2.316667,0.55
+ Ranchicourt ,RANCHICOURT ,62150,62687,31,50.433333,2.55,0.62
+ Rang-du-Fliers ,RANG DU FLIERS ,62180,62688,31,50.416667,1.65,1.94
+ Ransart ,RANSART ,62173,62689,31,50.216667,2.683333,1.43
+ Raye-sur-Authie ,RAYE SUR AUTHIE ,62140,62690,31,50.3,1.95,1.67
+ Rebecques ,REBECQUES ,62120,62691,31,50.65,2.3,1.34
+ Rebergues ,REBERGUES ,62850,62692,31,50.75,1.966667,1.68
+ Rebreuve-sur-Canche ,REBREUVE SUR CANCHE ,62270,62694,31,50.266667,2.35,1.26
+ Rébreuviette ,REBREUVIETTE ,62270,62695,31,50.266667,2.366667,1.52
+ Réclinghem ,RECLINGHEM ,62560,62696,31,50.566667,2.183333,1.51
+ Récourt ,RECOURT ,62860,62697,31,50.25,3.033333,2
+ Recques-sur-Course ,RECQUES SUR COURSE ,62170,62698,31,50.516667,1.783333,1.56
+ Recques-sur-Hem ,RECQUES SUR HEM ,62890,62699,31,50.833333,2.083333,2.16
+ Régnauville ,REGNAUVILLE ,62140,62700,31,50.316667,2.016667,0.9
+ Rely ,RELY ,62120,62701,31,50.566667,2.366667,1.3
+ Remilly-Wirquin ,REMILLY WIRQUIN ,62380,62702,31,50.666667,2.166667,1.21
+ Rémy ,REMY ,62156,62703,31,50.25,2.966667,1.81
+ Renty ,RENTY ,62560,62704,31,50.583333,2.066667,0.91
+ Réty ,RETY ,62720,62705,31,50.8,1.766667,1.97
+ Riencourt-lès-Bapaume ,RIENCOURT LES BAPAUME ,62450,62708,31,50.083333,2.883333,2.2
+ Riencourt-lès-Cagnicourt ,RIENCOURT LES CAGNICOURT ,62182,62709,31,50.2,2.95,1.76
+ Rimboval ,RIMBOVAL ,62990,62710,31,50.5,1.983333,1.44
+ Rinxent ,RINXENT ,62720,62711,31,50.8,1.733333,1.97
+ Rivière ,RIVIERE ,62173,62712,31,50.233333,2.683333,1.33
+ Robecq ,ROBECQ ,62350,62713,31,50.6,2.566667,0.8
+ Roclincourt ,ROCLINCOURT ,62223,62714,31,50.316667,2.783333,1.29
+ Rocquigny ,ROCQUIGNY ,62450,62715,31,50.05,2.916667,2.4
+ Rodelinghem ,RODELINGHEM ,62610,62716,31,50.833333,1.933333,2.16
+ Roëllecourt ,ROELLECOURT ,62130,62717,31,50.366667,2.383333,1.16
+ Rollancourt ,ROLLANCOURT ,62770,62719,31,50.416667,2.116667,0.88
+ Rombly ,ROMBLY ,62120,62720,31,50.6,2.383333,0.8
+ Roquetoire ,ROQUETOIRE ,62120,62721,31,50.666667,2.35,1.19
+ Rougefay ,ROUGEFAY ,62390,62722,31,50.266667,2.166667,1.14
+ Roussent ,ROUSSENT ,62870,62723,31,50.366667,1.783333,1.64
+ Rouvroy ,ROUVROY ,62320,62724,31,50.383333,2.9,1.62
+ Royon ,ROYON ,62990,62725,31,50.466667,2,1.4
+ Ruisseauville ,RUISSEAUVILLE ,62310,62726,31,50.483333,2.116667,0.61
+ Ruitz ,RUITZ ,62620,62727,31,50.466667,2.583333,0.8
+ Rumaucourt ,RUMAUCOURT ,62860,62728,31,50.25,3.066667,2.09
+ Rumilly ,RUMILLY ,62650,62729,31,50.583333,2.016667,1.58
+ Ruminghem ,RUMINGHEM ,62370,62730,31,50.866667,2.15,2.35
+ Ruyaulcourt ,RUYAULCOURT ,62124,62731,31,50.083333,3.016667,2.2
+ Sachin ,SACHIN ,62550,62732,31,50.483333,2.383333,0.15
+ Sailly-au-Bois ,SAILLY AU BOIS ,62111,62733,31,50.116667,2.583333,2.01
+ Sailly-en-Ostrevent ,SAILLY EN OSTREVENT ,62490,62734,31,50.283333,3,1.9
+ Sailly-Labourse ,SAILLY LABOURSE ,62113,62735,31,50.5,2.7,1.05
+ Sailly-sur-la-Lys ,SAILLY SUR LA LYS,62840,62736,31,50.65,2.766667,1.24
+ Sains-en-Gohelle ,SAINS EN GOHELLE ,62114,62737,31,50.45,2.683333,1
+ Sains-lès-Fressin ,SAINS LES FRESSIN ,62310,62738,31,50.466667,2.05,1.67
+ Sains-lès-Marquion ,SAINS LES MARQUION ,62860,62739,31,50.2,3.066667,2.09
+ Sains-lès-Pernes ,SAINS LES PERNES ,62550,62740,31,50.483333,2.35,0.83
+ Saint-Amand ,SAINT AMAND ,62760,62741,31,50.166667,2.566667,1.93
+ Saint-Aubin ,SAINT AUBIN ,62170,62742,31,50.458333,1.666667,-1
+ Sainte-Austreberthe ,SAINTE AUSTREBERTHE ,62140,62743,31,50.366667,2.05,0.8
+ Sainte-Catherine ,SAINTE CATHERINE ,62223,62744,31,50.3,2.766667,1.24
+ Saint-Denoeux ,SAINT DENOEUX ,62990,62745,31,50.466667,1.9,1.23
+ Saint-Étienne-au-Mont ,SAINT ETIENNE AU MONT,62360,62746,31,50.666667,1.616667,2.04
+ Saint-Floris ,SAINT FLORIS ,62350,62747,31,50.616667,2.566667,0.9
+ Saint-Folquin ,SAINT FOLQUIN ,62370,62748,31,50.966667,2.133333,2.94
+ Saint-Georges ,SAINT GEORGES ,62770,62749,31,50.35,2.083333,1.28
+ Saint-Hilaire-Cottes ,SAINT HILAIRE COTTES ,62120,62750,31,50.566667,2.416667,1.63
+ Saint-Inglevert ,SAINT INGLEVERT ,62250,62751,31,50.866667,1.733333,2.35
+ Saint-Josse ,SAINT JOSSE ,62170,62752,31,50.466667,1.666667,1.89
+ Saint-Laurent-Blangy ,SAINT LAURENT BLANGY ,62223,62753,31,50.3,2.8,1.33
+ Saint-Léger ,SAINT LEGER ,62128,62754,31,50.183333,2.85,-1
+ Saint-Léonard ,SAINT LEONARD ,62360,62755,31,50.683333,1.616667,2.04
+ Sainte-Marie-Kerque ,SAINTE MARIE KERQUE ,62370,62756,31,50.9,2.133333,2.55
+ Saint-Martin-au-Laërt ,SAINT MARTIN AU LAERT,62500,62757,31,50.75,2.233333,1.68
+ Saint-Martin-Boulogne ,SAINT MARTIN BOULOGNE ,62280,62758,31,50.716667,1.633333,1.99
+ Saint-Martin-Choquel ,SAINT MARTIN CHOQUEL ,62240,62759,31,50.666667,1.883333,1.28
+ Saint-Martin-d'Hardinghem ,SAINT MARTIN D HARDINGHEM,62560,62760,31,50.6,2.1,0.8
+ Saint-Michel-sous-Bois ,SAINT MICHEL SOUS BOIS,62650,62762,31,50.516667,1.933333,1.13
+ Saint-Nicolas-des-Bois ,SAINT NICOLAS DES BOIS,62223,62764,31,50.3,2.775,-1
+ Saint-Omer ,SAINT OMER ,62500,62765,31,50.75,2.25,1.68
+ Saint-Omer-Capelle ,SAINT OMER CAPELLE ,62162,62766,31,50.933333,2.1,2.74
+ Saint-Pol-sur-Ternoise ,SAINT POL SUR TERNOISE,62130,62767,31,50.383333,2.333333,0.46
+ Saint-Tricat ,SAINT TRICAT ,62185,62769,31,50.883333,1.833333,2.45
+ Saint-Venant ,SAINT VENANT ,62350,62770,31,50.616667,2.55,0.9
+ Sallaumines ,SALLAUMINES ,62430,62771,31,50.416667,2.866667,1.52
+ Salperwick ,SALPERWICK ,62500,62772,31,50.766667,2.233333,1.77
+ Samer ,SAMER ,62830,62773,31,50.633333,1.75,1.66
+ Sangatte ,SANGATTE ,62231,62774,31,50.933333,1.75,2.74
+ Sanghen ,SANGHEN ,62850,62775,31,50.783333,1.9,1.87
+ Sapignies ,SAPIGNIES ,62121,62776,31,50.133333,2.833333,1.91
+ Le Sars ,LE SARS ,62450,62777,31,50.066667,2.783333,2.3
+ Sars-le-Bois ,SARS LE BOIS ,62810,62778,31,50.3,2.433333,0.98
+ Sarton ,SARTON ,62760,62779,31,50.116667,2.433333,2.01
+ Sauchy-Cauchy ,SAUCHY CAUCHY ,62860,62780,31,50.233333,3.1,2.19
+ Sauchy-Lestrée ,SAUCHY LESTREE ,62860,62781,31,50.233333,3.116667,2.24
+ Saudemont ,SAUDEMONT ,62860,62782,31,50.25,3.05,2.05
+ Saulchoy ,SAULCHOY ,62870,62783,31,50.35,1.85,1.37
+ Savy-Berlette ,SAVY BERLETTE ,62690,62785,31,50.35,2.55,0.75
+ Selles ,SELLES ,62240,62786,31,50.7,1.9,1.38
+ Sempy ,SEMPY ,62170,62787,31,50.483333,1.866667,1.69
+ Seninghem ,SENINGHEM ,62380,62788,31,50.7,2.033333,1.38
+ Senlecques ,SENLECQUES ,62240,62789,31,50.65,1.933333,1.29
+ Senlis ,SENLIS ,62310,62790,31,50.533333,2.15,0.72
+ Séricourt ,SERICOURT ,62270,62791,31,50.3,2.316667,0.94
+ Serques ,SERQUES ,62910,62792,31,50.8,2.2,1.97
+ Servins ,SERVINS ,62530,62793,31,50.416667,2.65,1
+ Setques ,SETQUES ,62380,62794,31,50.716667,2.15,1.48
+ Sibiville ,SIBIVILLE ,62270,62795,31,50.3,2.316667,0.94
+ Simencourt ,SIMENCOURT ,62123,62796,31,50.266667,2.65,1.14
+ Siracourt ,SIRACOURT ,62130,62797,31,50.366667,2.266667,0.69
+ Sombrin ,SOMBRIN ,62810,62798,31,50.233333,2.5,1.33
+ Sorrus ,SORRUS ,62170,62799,31,50.466667,1.716667,1.75
+ Souastre ,SOUASTRE ,62111,62800,31,50.15,2.566667,1.81
+ Souchez ,SOUCHEZ ,62153,62801,31,50.383333,2.75,1.19
+ Le Souich ,LE SOUICH ,62810,62802,31,50.216667,2.366667,2.1
+ Surques ,SURQUES ,62850,62803,31,50.733333,1.916667,1.58
+ Sus-Saint-Léger ,SUS SAINT LEGER ,62810,62804,31,50.233333,2.433333,1.33
+ Tangry ,TANGRY ,62550,62805,31,50.466667,2.35,0.98
+ Tardinghen ,TARDINGHEN ,62179,62806,31,50.866667,1.633333,2.35
+ Tatinghem ,TATINGHEM ,62500,62807,31,50.75,2.2,1.68
+ Teneur ,TENEUR ,62134,62808,31,50.45,2.216667,1.03
+ Ternas ,TERNAS ,62127,62809,31,50.333333,2.4,1.49
+ Thélus ,THELUS ,62580,62810,31,50.35,2.8,1.33
+ Thérouanne ,THEROUANNE ,62129,62811,31,50.633333,2.25,1
+ Thiembronne ,THIEMBRONNE ,62560,62812,31,50.616667,2.05,1.28
+ La Thieuloye ,LA THIEULOYE ,62130,62813,31,50.416667,2.433333,2.07
+ Thièvres ,THIEVRES ,62760,62814,31,50.133333,2.45,1.91
+ Tigny-Noyelle ,TIGNY NOYELLE ,62180,62815,31,50.35,1.7,1.8
+ Tilloy-lès-Hermaville ,TILLOY LES HERMAVILLE ,62690,62816,31,50.333333,2.55,0.94
+ Tilloy-lès-Mofflaines ,TILLOY LES MOFFLAINES ,62217,62817,31,50.266667,2.816667,1.38
+ Tilly-Capelle ,TILLY CAPELLE ,62134,62818,31,50.45,2.2,1.45
+ Tilques ,TILQUES ,62500,62819,31,50.766667,2.2,1.77
+ Tincques ,TINCQUES ,62127,62820,31,50.35,2.483333,0.65
+ Tingry ,TINGRY ,62830,62821,31,50.616667,1.733333,1.7
+ Tollent ,TOLLENT ,62390,62822,31,50.283333,2.016667,1.88
+ Torcy ,TORCY ,62310,62823,31,50.483333,2.016667,2.2
+ Tortefontaine ,TORTEFONTAINE ,62140,62824,31,50.316667,1.916667,2.05
+ Tortequesne ,TORTEQUESNE ,62490,62825,31,50.283333,3.033333,2
+ Le Touquet-Paris-Plage ,LE TOUQUET PARIS PLAGE,62520,62826,31,50.516667,1.583333,2.13
+ Tramecourt ,TRAMECOURT ,62310,62828,31,50.466667,2.15,0.73
+ Trescault ,TRESCAULT ,62147,62830,31,50.083333,3.083333,2.2
+ Troisvaux ,TROISVAUX ,62130,62831,31,50.4,2.35,0.77
+ Tubersent ,TUBERSENT ,62630,62832,31,50.516667,1.7,1.8
+ Vacquerie-le-Boucq ,VACQUERIE LE BOUCQ ,62270,62833,31,50.266667,2.216667,1.15
+ Valhuon ,VALHUON ,62550,62835,31,50.433333,2.366667,1.44
+ Vaudricourt ,VAUDRICOURT ,62131,62836,31,50.5,2.633333,0.86
+ Vaudringhem ,VAUDRINGHEM ,62380,62837,31,50.666667,2.033333,1.19
+ Vaulx-Vraucourt ,VAULX VRAUCOURT ,62159,62839,31,50.133333,2.916667,1.91
+ Vélu ,VELU ,62124,62840,31,50.1,2.966667,2.11
+ Vendin-lès-Béthune ,VENDIN LES BETHUNE ,62232,62841,31,50.533333,2.616667,0.81
+ Vendin-le-Vieil ,VENDIN LE VIEIL ,62880,62842,31,50.466667,2.866667,1.52
+ Verchin ,VERCHIN ,62310,62843,31,50.483333,2.183333,1.03
+ Verchocq ,VERCHOCQ ,62560,62844,31,50.566667,2.033333,1.63
+ Verlincthun ,VERLINCTHUN ,62830,62845,31,50.633333,1.683333,1.85
+ Vermelles ,VERMELLES ,62980,62846,31,50.483333,2.733333,1.14
+ Verquigneul ,VERQUIGNEUL ,62113,62847,31,50.5,2.666667,1.5
+ Verquin ,VERQUIN ,62131,62848,31,50.5,2.633333,0.86
+ Verton ,VERTON ,62180,62849,31,50.4,1.65,1.94
+ Vieil-Hesdin ,VIEIL HESDIN ,62770,62850,31,50.366667,2.1,0.76
+ Vieille-Chapelle ,VIEILLE CHAPELLE ,62136,62851,31,50.583333,2.7,1.05
+ Vieille-Église ,VIEILLE EGLISE ,62162,62852,31,50.933333,2.083333,2.74
+ Vieil-Moutier ,VIEIL MOUTIER ,62240,62853,31,50.683333,1.916667,1.29
+ Villers-au-Bois ,VILLERS AU BOIS ,62144,62854,31,50.366667,2.666667,0.95
+ Villers-au-Flos ,VILLERS AU FLOS ,62450,62855,31,50.083333,2.916667,2.2
+ Villers-Brûlin ,VILLERS BRULIN ,62690,62856,31,50.366667,2.533333,1.16
+ Villers-Châtel ,VILLERS CHATEL ,62690,62857,31,50.383333,2.583333,0.72
+ Villers-l'Hôpital ,VILLERS L HOPITAL ,62390,62859,31,50.233333,2.216667,1.73
+ Villers-Sir-Simon ,VILLERS SIR SIMON ,62127,62860,31,50.316667,2.5,1.32
+ Vimy ,VIMY ,62580,62861,31,50.366667,2.816667,1.38
+ Vincly ,VINCLY ,62310,62862,31,50.566667,2.166667,1.42
+ Violaines ,VIOLAINES ,62138,62863,31,50.533333,2.783333,1.29
+ Vis-en-Artois ,VIS EN ARTOIS ,62156,62864,31,50.25,2.933333,1.71
+ Vitry-en-Artois ,VITRY EN ARTOIS ,62490,62865,31,50.333333,2.983333,1.86
+ Waben ,WABEN ,62180,62866,31,50.383333,1.65,1.94
+ Wacquinghen ,WACQUINGHEN ,62250,62867,31,50.783333,1.666667,1.89
+ Wail ,WAIL ,62770,62868,31,50.333333,2.133333,1.07
+ Wailly ,WAILLY ,62217,62869,31,50.241667,2.725,-1
+ Wailly-Beaucamp ,WAILLY BEAUCAMP ,62170,62870,31,50.416667,1.733333,1.7
+ Wambercourt ,WAMBERCOURT ,62140,62871,31,50.433333,2.016667,1.48
+ Wamin ,WAMIN ,62770,62872,31,50.416667,2.066667,1.67
+ Wancourt ,WANCOURT ,62128,62873,31,50.25,2.866667,1.52
+ Wanquetin ,WANQUETIN ,62123,62874,31,50.266667,2.616667,1.14
+ Wardrecques ,WARDRECQUES ,62120,62875,31,50.716667,2.35,1.66
+ Warlencourt-Eaucourt ,WARLENCOURT EAUCOURT ,62450,62876,31,50.083333,2.816667,2.2
+ Warlincourt-lès-Pas ,WARLINCOURT LES PAS ,62760,62877,31,50.166667,2.5,1.72
+ Warlus ,WARLUS ,62123,62878,31,50.283333,2.666667,1.13
+ Warluzel ,WARLUZEL ,62810,62879,31,50.233333,2.466667,1.33
+ Le Wast ,LE WAST ,62142,62880,31,50.75,1.8,1.68
+ Wavrans-sur-l'Aa ,WAVRANS SUR L AA,62380,62882,31,50.683333,2.133333,1.29
+ Wavrans-sur-Ternoise ,WAVRANS SUR TERNOISE ,62130,62883,31,50.416667,2.283333,0.83
+ Westbécourt ,WESTBECOURT ,62380,62884,31,50.733333,2.066667,1.58
+ Westrehem ,WESTREHEM ,62960,62885,31,50.55,2.35,1.48
+ Wicquinghem ,WICQUINGHEM ,62650,62886,31,50.566667,1.966667,1.04
+ Widehem ,WIDEHEM ,62630,62887,31,50.583333,1.666667,1.89
+ Wierre-au-Bois ,WIERRE AU BOIS ,62830,62888,31,50.65,1.766667,1.61
+ Wierre-Effroy ,WIERRE EFFROY ,62720,62889,31,50.783333,1.733333,1.87
+ Willeman ,WILLEMAN ,62770,62890,31,50.35,2.15,0.82
+ Willencourt ,WILLENCOURT ,62390,62891,31,50.25,2.083333,1.23
+ Willerval ,WILLERVAL ,62580,62892,31,50.35,2.85,1.48
+ Wimereux ,WIMEREUX ,62930,62893,31,50.766667,1.616667,2.04
+ Wimille ,WIMILLE ,62126,62894,31,50.766667,1.633333,1.99
+ Wingles ,WINGLES ,62410,62895,31,50.483333,2.85,1.48
+ Wirwignes ,WIRWIGNES ,62240,62896,31,50.683333,1.766667,1.93
+ Wismes ,WISMES ,62380,62897,31,50.65,2.066667,1.09
+ Wisques ,WISQUES ,62219,62898,31,50.716667,2.2,1.48
+ Wissant ,WISSANT ,62179,62899,31,50.883333,1.666667,2.45
+ Witternesse ,WITTERNESSE ,62120,62900,31,50.616667,2.366667,0.9
+ Wittes ,WITTES ,62120,62901,31,50.666667,2.4,1.19
+ Wizernes ,WIZERNES ,62570,62902,31,50.716667,2.233333,1.48
+ Zoteux ,ZOTEUX ,62650,62903,31,50.616667,1.883333,1.28
+ Zouafques ,ZOUAFQUES ,62890,62904,31,50.816667,2.05,2.06
+ Zudausques ,ZUDAUSQUES ,62500,62905,31,50.75,2.15,1.68
+ Zutkerque ,ZUTKERQUE ,62370,62906,31,50.85,2.066667,2.26
+ Libercourt ,LIBERCOURT ,62820,62907,31,50.483333,3.016667,1.95
+ La Capelle-lès-Boulogne ,LA CAPELLE LES BOULOGNE,62360,62908,31,50.733333,1.7,1.85
+ Ytres ,YTRES ,62124,62909,31,50.066667,3,2.3
+ Bois-en-Ardres ,BOIS EN ARDRES ,62610,62914,31,50.866667,1.983333,2.35
+ Trépied ,TREPIED ,62780,62918,31,50.5,1.616667,2.04
+ Hardelot-Plage ,HARDELOT PLAGE ,62152,62919,31,50.633333,1.583333,2.13
+ Aigueperse ,AIGUEPERSE ,63260,63001,83,46.016667,3.2,1.61
+ Aix-la-Fayette ,AIX LA FAYETTE ,63980,63002,83,45.516667,3.533333,1.39
+ Ambert ,AMBERT ,63600,63003,83,45.55,3.75,2.24
+ Les Ancizes-Comps ,LES ANCIZES COMPS ,63770,63004,83,45.916667,2.8,1.48
+ Antoingt ,ANTOINGT ,63340,63005,83,45.5,3.183333,1.31
+ Anzat-le-Luguet ,ANZAT LE LUGUET ,63420,63006,83,45.333333,3.05,2.25
+ Apchat ,APCHAT ,63420,63007,83,45.383333,3.15,1.97
+ Arconsat ,ARCONSAT ,63250,63008,83,45.9,3.7,2.05
+ Arlanc ,ARLANC ,63220,63010,83,45.416667,3.733333,2.18
+ Ars-les-Favets ,ARS LES FAVETS ,63700,63011,83,46.2,2.75,2.65
+ Artonne ,ARTONNE ,63460,63012,83,46,3.133333,1.52
+ Aubiat ,AUBIAT ,63260,63013,83,45.9785,3.16927,-1
+ Aubière ,AUBIERE ,63170,63014,83,45.75,3.116667,1
+ Aubusson-d'Auvergne ,AUBUSSON D AUVERGNE ,63120,63015,83,45.75,3.616667,1.72
+ Augnat ,AUGNAT ,63340,63017,83,45.416667,3.2,1.78
+ Aulhat-Saint-Privat ,AULHAT SAINT PRIVAT ,63500,63018,83,45.566667,3.316667,1.06
+ Aulnat ,AULNAT ,63510,63019,83,45.8,3.166667,1
+ Aurières ,AURIERES ,63210,63020,83,45.683333,2.916667,1.36
+ Authézat ,AUTHEZAT ,63730,63021,83,45.633333,3.2,0.55
+ Auzat-sur-Allier ,AUZAT SUR ALLIER ,63570,63022,83,45.45,3.316667,1.59
+ Auzelles ,AUZELLES ,63590,63023,83,45.616667,3.533333,1.39
+ Avèze ,AVEZE ,63690,63024,83,45.6,2.6,2.26
+ Ayat-sur-Sioule ,AYAT SUR SIOULE ,63390,63025,83,46.05,2.9,1.8
+ Aydat ,AYDAT ,63970,63026,83,45.666667,2.983333,1
+ Baffie ,BAFFIE ,63600,63027,83,45.466667,3.816667,2.5
+ Bagnols ,BAGNOLS ,63810,63028,83,45.5,2.633333,2.13
+ Bansat ,BANSAT ,63570,63029,83,45.483333,3.35,1.4
+ Bas-et-Lezat ,BAS ET LEZAT ,63310,63030,83,46.016667,3.3,1.61
+ Beaulieu ,BEAULIEU ,63570,63031,83,45.45,3.283333,1.59
+ Beaumont ,BEAUMONT ,63110,63032,83,45.75,3.1,0.3
+ Beaumont-lès Randan ,BEAUMONT LES RANDAN ,63310,63033,83,46,3.383333,1.52
+ Beauregard-l'Évêque ,BEAUREGARD L EVEQUE ,63116,63034,83,45.816667,3.3,0.48
+ Beauregard-Vendon ,BEAUREGARD VENDON ,63460,63035,83,45.966667,3.1,1.33
+ Bergonne ,BERGONNE ,63500,63036,83,45.5,3.233333,1.31
+ Bertignat ,BERTIGNAT ,63480,63037,83,45.616667,3.683333,1.98
+ Billom ,BILLOM ,63160,63040,83,45.716667,3.35,0.68
+ Biollet ,BIOLLET ,63640,63041,83,46,2.683333,1.94
+ Blanzat ,BLANZAT ,63112,63042,83,45.833333,3.083333,0.58
+ Blot-l'Église ,BLOT L EGLISE ,63440,63043,83,46.033333,2.95,1.71
+ Bongheat ,BONGHEAT ,63160,63044,83,45.733333,3.433333,1.08
+ Bort-l'Étang ,BORT L ETANG ,63190,63045,83,45.783333,3.433333,1
+ Boudes ,BOUDES ,63340,63046,83,45.466667,3.2,1.5
+ La Bourboule ,LA BOURBOULE ,63150,63047,83,45.583333,2.75,1.67
+ Bourg-Lastic ,BOURG LASTIC ,63760,63048,83,45.65,2.566667,2.39
+ Bouzel ,BOUZEL ,63910,63049,83,45.783333,3.316667,1.14
+ Brassac-les-Mines ,BRASSAC LES MINES ,63570,63050,83,45.4,3.333333,1.87
+ Brenat ,BRENAT ,63500,63051,83,45.55,3.316667,1.03
+ Le Breuil-sur-Couze ,LE BREUIL SUR COUZE,63340,63052,83,45.466667,3.266667,1.5
+ Briffons ,BRIFFONS ,63820,63053,83,45.7,2.666667,2
+ Le Broc ,LE BROC ,63500,63054,83,45.5,3.25,1.31
+ Bromont-Lamothe ,BROMONT LAMOTHE ,63230,63055,83,45.833333,2.833333,1.35
+ Brousse ,BROUSSE ,63490,63056,83,45.6,3.466667,1.77
+ Le Brugeron ,LE BRUGERON ,63880,63057,83,45.716667,3.716667,2.11
+ Bulhon ,BULHON ,63350,63058,83,45.9,3.383333,0.95
+ Busséol ,BUSSEOL ,63270,63059,83,45.683333,3.25,1.04
+ Bussières ,BUSSIERES ,63330,63060,83,46.066667,2.633333,2.13
+ Bussières-et-Pruns ,BUSSIERES ET PRUNS ,63260,63061,83,46,3.233333,1.52
+ Buxières-sous-Montaigut ,BUXIERES SOUS MONTAIGUT ,63700,63062,83,46.2,2.85,2.65
+ Cébazat ,CEBAZAT ,63118,63063,83,45.833333,3.1,0.58
+ Ceilloux ,CEILLOUX ,63520,63065,83,45.65,3.516667,1.33
+ Celles-sur-Durolle ,CELLES SUR DUROLLE ,63250,63066,83,45.85,3.633333,1.79
+ La Cellette ,LA CELLETTE ,63330,63067,83,46.1,2.733333,2.08
+ Cellule ,CELLULE ,63200,63068,83,45.95,3.133333,1.23
+ Le Cendre ,LE CENDRE ,63670,63069,83,45.733333,3.2,1.16
+ Ceyrat ,CEYRAT ,63122,63070,83,45.733333,3.066667,1.13
+ Chabreloche ,CHABRELOCHE ,63250,63072,83,45.883333,3.7,2.05
+ Chadeleuf ,CHADELEUF ,63320,63073,83,45.583333,3.183333,1.48
+ Chalus ,CHALUS ,63340,63074,83,45.466667,3.216667,1.5
+ Chamalières ,CHAMALIERES ,63400,63075,83,45.783333,3.066667,0.43
+ Chambon-sur-Dolore ,CHAMBON SUR DOLORE ,63980,63076,83,45.5,3.616667,1.72
+ Chambon-sur-Lac ,CHAMBON SUR LAC ,63790,63077,83,45.566667,2.9,1.09
+ Chaméane ,CHAMEANE ,63580,63078,83,45.516667,3.466667,1.21
+ Champagnat-le-Jeune ,CHAMPAGNAT LE JEUNE ,63580,63079,83,45.45,3.433333,1.59
+ Champeix ,CHAMPEIX ,63320,63080,83,45.583333,3.133333,0.84
+ Champétières ,CHAMPETIERES ,63600,63081,83,45.516667,3.7,2.05
+ Champs ,CHAMPS ,63440,63082,83,46.05,3.083333,1.8
+ Chanat-la-Mouteyre ,CHANAT LA MOUTEYRE ,63530,63083,83,45.833333,3.016667,1.26
+ Chanonat ,CHANONAT ,63450,63084,83,45.683333,3.1,0.79
+ Chapdes-Beaufort ,CHAPDES BEAUFORT ,63230,63085,83,45.883333,2.866667,1.22
+ La Chapelle-Marcousse ,LA CHAPELLE MARCOUSSE ,63420,63087,83,45.45,3.1,1.59
+ La Chapelle-sur-Usson ,LA CHAPELLE SUR USSON,63580,63088,83,45.466667,3.4,1.5
+ Chappes ,CHAPPES ,63720,63089,83,45.866667,3.233333,0.9
+ Chaptuzat ,CHAPTUZAT ,63260,63090,83,46.033333,3.166667,1.71
+ Charbonnier-les-Mines ,CHARBONNIER LES MINES ,63340,63091,83,45.416667,3.283333,1.78
+ Charbonnières-les-Vieilles ,CHARBONNIERES LES VIEILLES ,63410,63093,83,46,3,1.52
+ Charensat ,CHARENSAT ,63640,63094,83,45.983333,2.65,2.07
+ Charnat ,CHARNAT ,63290,63095,83,45.95,3.433333,1.23
+ Chas ,CHAS ,63160,63096,83,45.75,3.3,1.7
+ Chassagne ,CHASSAGNE ,63320,63097,83,45.5,3.083333,1.31
+ Chastreix ,CHASTREIX ,63680,63098,83,45.516667,2.75,1.67
+ Châteaugay ,CHATEAUGAY ,63119,63099,83,45.85,3.1,0.67
+ Châteauneuf-les-Bains ,CHATEAUNEUF LES BAINS ,63390,63100,83,46.033333,2.9,1.71
+ Château-sur-Cher ,CHATEAU SUR CHER ,63330,63101,83,46.116667,2.55,2.46
+ Châteldon ,CHATELDON ,63290,63102,83,45.966667,3.516667,1.33
+ Châtelguyon ,CHATELGUYON ,63140,63103,83,45.916667,3.066667,1.05
+ La Chaulme ,LA CHAULME ,63660,63104,83,45.466667,3.94464,-1
+ Chauriat ,CHAURIAT ,63117,63106,83,45.75,3.283333,0.41
+ Chavaroux ,CHAVAROUX ,63720,63107,83,45.85,3.266667,1.57
+ Chidrac ,CHIDRAC ,63320,63109,83,45.55,3.166667,1.09
+ Cisternes-la-Forêt ,CISTERNES LA FORET ,63740,63110,83,45.783333,2.7,1.87
+ Clerlande ,CLERLANDE ,63720,63112,83,45.916667,3.183333,1.22
+ Clermont-Ferrand ,CLERMONT FERRAND ,63000,63113,83,45.783333,3.083333,0.37
+ Collanges ,COLLANGES ,63340,63114,83,45.433333,3.233333,1.68
+ Combrailles ,COMBRAILLES ,63380,63115,83,45.833333,2.633333,2.13
+ Combronde ,COMBRONDE ,63460,63116,83,45.983333,3.083333,1.42
+ Compains ,COMPAINS ,63610,63117,83,45.45,2.933333,1.59
+ Corent ,CORENT ,63730,63120,83,45.666667,3.2,0.52
+ Coudes ,COUDES ,63114,63121,83,45.616667,3.216667,0.65
+ Courgoul ,COURGOUL ,63320,63122,83,45.516667,3.05,1.36
+ Cournols ,COURNOLS ,63450,63123,83,45.65,3.05,1.47
+ Cournon-d'Auvergne ,COURNON D AUVERGNE ,63800,63124,83,45.75,3.216667,1.31
+ Courpière ,COURPIERE ,63120,63125,83,45.75,3.55,1.46
+ Le Crest ,LE CREST ,63450,63126,83,45.683333,3.133333,1.26
+ Creste ,CRESTE ,63320,63127,83,45.55,3.05,1.13
+ Crevant-Laveine ,CREVANT LAVEINE ,63350,63128,83,45.916667,3.383333,1.05
+ La Crouzille ,LA CROUZILLE ,63700,63130,83,46.183333,2.75,2.55
+ Culhat ,CULHAT ,63350,63131,83,45.866667,3.333333,0.85
+ Cunlhat ,CUNLHAT ,63590,63132,83,45.633333,3.583333,1.59
+ Dallet ,DALLET ,63111,63133,83,45.766667,3.233333,0.22
+ Dauzat-sur-Vodable ,DAUZAT SUR VODABLE ,63340,63134,83,45.483333,3.1,2.46
+ Davayat ,DAVAYAT ,63200,63135,83,45.95,3.116667,1.23
+ Domaize ,DOMAIZE ,63520,63136,83,45.683333,3.55,1.46
+ Doranges ,DORANGES ,63220,63137,83,45.4,3.616667,1.87
+ Dorat ,DORAT ,63300,63138,83,45.883333,3.483333,1.46
+ Dore-l'Église ,DORE L EGLISE ,63220,63139,83,45.383333,3.75,2.24
+ Durmignat ,DURMIGNAT ,63700,63140,83,46.183333,2.9,2.55
+ Durtol ,DURTOL ,63830,63141,83,45.8,3.05,1
+ Échandelys ,ECHANDELYS ,63980,63142,83,45.55,3.55,1.46
+ Effiat ,EFFIAT ,63260,63143,83,46.033333,3.25,1.71
+ Égliseneuve-des-Liards ,EGLISENEUVE DES LIARDS ,63490,63145,83,45.566667,3.433333,1
+ Égliseneuve-près-Billom ,EGLISENEUVE PRES BILLOM ,63160,63146,83,45.716667,3.4,0.87
+ Églisolles ,EGLISOLLES ,63840,63147,83,45.45,3.883333,2.76
+ Ennezat ,ENNEZAT ,63720,63148,83,45.9,3.216667,0.95
+ Entraigues ,ENTRAIGUES ,63720,63149,83,45.883333,3.266667,0.99
+ Enval ,ENVAL ,63530,63150,83,45.9,3.05,1.37
+ Escoutoux ,ESCOUTOUX ,63300,63151,83,45.816667,3.583333,1.59
+ Espirat ,ESPIRAT ,63160,63154,83,45.75,3.333333,1.1
+ Estandeuil ,ESTANDEUIL ,63520,63155,83,45.683333,3.45,1.2
+ Esteil ,ESTEIL ,63570,63156,83,45.45,3.366667,1.59
+ Fayet-le-Château ,FAYET LE CHATEAU ,63160,63157,83,45.683333,3.416667,1.03
+ Fayet-Ronaye ,FAYET RONAYE ,63630,63158,83,45.416667,3.55,1.78
+ Fernoël ,FERNOEL ,63620,63159,83,45.816667,2.45,2.85
+ Flat ,FLAT ,63500,63160,83,45.566667,3.3,0.93
+ La Forie ,LA FORIE ,63600,63161,83,45.6,3.766667,2.31
+ Fournols ,FOURNOLS ,63980,63162,83,45.516667,3.583333,1.59
+ Gelles ,GELLES ,63740,63163,83,45.766667,2.766667,1.61
+ Gerzat ,GERZAT ,63360,63164,83,45.833333,3.15,1.22
+ Giat ,GIAT ,63620,63165,83,45.8,2.483333,2.72
+ Gignat ,GIGNAT ,63340,63166,83,45.483333,3.233333,1.4
+ Gimeaux ,GIMEAUX ,63200,63167,83,45.95,3.083333,1.23
+ Glaine-Montaigut ,GLAINE MONTAIGUT ,63160,63168,83,45.75,3.4,0.87
+ La Godivelle ,LA GODIVELLE ,63850,63169,83,45.383333,2.933333,1.97
+ Gouttières ,GOUTTIERES ,63390,63171,83,46.066667,2.766667,1.89
+ Grandeyrolles ,GRANDEYROLLES ,63320,63172,83,45.583333,3.066667,0.94
+ Grandrif ,GRANDRIF ,63600,63173,83,45.5,3.816667,2.5
+ Grandval ,GRANDVAL ,63890,63174,83,45.6,3.666667,1.92
+ Herment ,HERMENT ,63470,63175,83,45.75,2.566667,2.39
+ Heume-l'Église ,HEUME L EGLISE ,63210,63176,83,45.716667,2.733333,2.11
+ Isserteaux ,ISSERTEAUX ,63270,63177,83,45.65,3.4,2.28
+ Issoire ,ISSOIRE ,63500,63178,83,45.55,3.25,1.03
+ Job ,JOB ,63990,63179,83,45.616667,3.75,2.24
+ Joze ,JOZE ,63350,63180,83,45.866667,3.316667,1.05
+ Joserand ,JOSERAND ,63460,63181,83,46.033333,3.1,1.71
+ Jumeaux ,JUMEAUX ,63570,63182,83,45.433333,3.35,1.68
+ Labessette ,LABESSETTE ,63690,63183,83,45.5,2.533333,2.52
+ Lamontgie ,LAMONTGIE ,63570,63185,83,45.466667,3.333333,1.5
+ Landogne ,LANDOGNE ,63380,63186,83,45.866667,2.666667,2
+ Lapeyrouse ,LAPEYROUSE ,63700,63187,83,46.216667,2.866667,2.74
+ Laps ,LAPS ,63270,63188,83,45.666667,3.266667,0.57
+ Laqueuille ,LAQUEUILLE ,63820,63189,83,45.65,2.733333,1.74
+ Larodde ,LARODDE ,63690,63190,83,45.533333,2.55,2.46
+ La Tour-d'Auvergne ,LA TOUR D AUVERGNE,63680,63192,83,45.533333,2.7,1.87
+ Lempdes ,LEMPDES ,63370,63193,83,45.766667,3.216667,0.2
+ Lempty ,LEMPTY ,63190,63194,83,45.833333,3.333333,1.18
+ Lezoux ,LEZOUX ,63190,63195,83,45.833333,3.383333,0.81
+ Limons ,LIMONS ,63290,63196,83,45.966667,3.433333,1.33
+ Lisseuil ,LISSEUIL ,63440,63197,83,46.066667,2.916667,1.89
+ Loubeyrat ,LOUBEYRAT ,63410,63198,83,45.933333,3.016667,1.14
+ Ludesse ,LUDESSE ,63320,63199,83,45.616667,3.116667,1.13
+ Lussat ,LUSSAT ,63360,63200,83,45.833333,3.233333,1.39
+ Luzillat ,LUZILLAT ,63350,63201,83,45.933333,3.383333,1.21
+ Madriat ,MADRIAT ,63340,63202,83,45.433333,3.2,1.68
+ Malauzat ,MALAUZAT ,63200,63203,83,45.85,3.05,2.04
+ Malintrat ,MALINTRAT ,63510,63204,83,45.816667,3.2,1
+ Manglieu ,MANGLIEU ,63270,63205,83,45.616667,3.35,1.41
+ Manzat ,MANZAT ,63410,63206,83,45.966667,2.933333,1.33
+ Marat ,MARAT ,63480,63207,83,45.666667,3.683333,1.98
+ Marcillat ,MARCILLAT ,63440,63208,83,46.083333,3.05,1.99
+ Mareugheol ,MAREUGHEOL ,63340,63209,83,45.483333,3.183333,1.4
+ Maringues ,MARINGUES ,63350,63210,83,45.916667,3.333333,1.05
+ Marsac-en-Livradois ,MARSAC EN LIVRADOIS ,63940,63211,83,45.483333,3.733333,2.18
+ Marsat ,MARSAT ,63200,63212,83,45.883333,3.083333,0.97
+ Martres-sur-Morge ,MARTRES SUR MORGE ,63720,63215,83,45.933333,3.216667,1.14
+ Mauzun ,MAUZUN ,63160,63216,83,45.7,3.433333,1.13
+ La Mayrand ,LA MAYRAND ,63420,63217,83,45.433333,3.016667,1.68
+ Mayres ,MAYRES ,63220,63218,83,45.383333,3.7,2.05
+ Mazaye ,MAZAYE ,63230,63219,83,45.783333,2.866667,1.34
+ Mazoires ,MAZOIRES ,63420,63220,83,45.4,3.083333,1.87
+ Medeyrolles ,MEDEYROLLES ,63220,63221,83,45.4,3.8,2.44
+ Meilhaud ,MEILHAUD ,63320,63222,83,45.55,3.166667,1.09
+ Menat ,MENAT ,63560,63223,83,46.1,2.9,2.08
+ Ménétrol ,MENETROL ,63200,63224,83,45.866667,3.133333,1.38
+ Messeix ,MESSEIX ,63750,63225,83,45.616667,2.55,2.46
+ Mezel ,MEZEL ,63115,63226,83,45.75,3.233333,0.22
+ Mirefleurs ,MIREFLEURS ,63730,63227,83,45.7,3.233333,1.84
+ Miremont ,MIREMONT ,63380,63228,83,45.9,2.716667,1.8
+ Moissat ,MOISSAT ,63190,63229,83,45.766667,3.35,1.14
+ Le Monestier ,LE MONESTIER ,63890,63230,83,45.566667,3.666667,1.92
+ La Monnerie-le Montel ,LA MONNERIE LE MONTEL,63650,63231,83,45.866667,3.6,1.66
+ Mons ,MONS ,63310,63232,83,46,3.416667,1.52
+ Montaigut ,MONTAIGUT ,63700,63233,83,46.183333,2.808333,-1
+ Montaigut-le-Blanc ,MONTAIGUT LE BLANC ,63320,63234,83,45.583333,3.1,0.84
+ Montcel ,MONTCEL ,63460,63235,83,46.016667,3.05,1.61
+ Montel-de-Gelat ,MONTEL DE GELAT ,63380,63237,83,45.933333,2.583333,2.33
+ Montfermy ,MONTFERMY ,63230,63238,83,45.883333,2.816667,1.41
+ Montmorin ,MONTMORIN ,63160,63239,83,45.683333,3.366667,0.79
+ Montpensier ,MONTPENSIER ,63260,63240,83,46.033333,3.216667,1.71
+ Montpeyroux ,MONTPEYROUX ,63114,63241,83,45.616667,3.216667,0.65
+ Moureuille ,MOUREUILLE ,63700,63243,83,46.166667,2.916667,2.46
+ La Moutade ,LA MOUTADE ,63200,63244,83,45.966667,3.15,1.51
+ Mozac ,MOZAC ,63200,63245,83,45.883333,3.1,0.86
+ Murat-le-Quaire ,MURAT LE QUAIRE ,63150,63246,83,45.6,2.733333,1.74
+ Murol ,MUROL ,63790,63247,83,45.583333,2.95,1
+ Nébouzat ,NEBOUZAT ,63210,63248,83,45.716667,2.9,1.09
+ Néronde-sur-Dore ,NERONDE SUR DORE ,63120,63249,83,45.8,3.533333,1.39
+ Neschers ,NESCHERS ,63320,63250,83,45.583333,3.166667,1.19
+ Neuf-Église ,NEUF EGLISE ,63560,63251,83,46.1,2.9,2.08
+ Neuville ,NEUVILLE ,63160,63252,83,45.741667,3.433333,-1
+ Noalhat ,NOALHAT ,63290,63253,83,45.916667,3.45,1.17
+ Nohanent ,NOHANENT ,63830,63254,83,45.816667,3.066667,1
+ Nonette ,NONETTE ,63340,63255,83,45.483333,3.283333,1.46
+ Novacelles ,NOVACELLES ,63220,63256,83,45.433333,3.65,1.85
+ Olby ,OLBY ,63210,63257,83,45.75,2.883333,1.15
+ Olliergues ,OLLIERGUES ,63880,63258,83,45.666667,3.633333,1.79
+ Olloix ,OLLOIX ,63450,63259,83,45.616667,3.05,1.87
+ Orbeil ,ORBEIL ,63500,63261,83,45.566667,3.283333,0.93
+ Orcet ,ORCET ,63670,63262,83,45.7,3.183333,0.51
+ Orcines ,ORCINES ,63870,63263,83,45.783333,3.016667,0.63
+ Orcival ,ORCIVAL ,63210,63264,83,45.683333,2.85,1.28
+ Orléat ,ORLEAT ,63190,63265,83,45.866667,3.433333,1.38
+ Orsonnette ,ORSONNETTE ,63340,63266,83,45.466667,3.3,1.73
+ Palladuc ,PALLADUC ,63550,63267,83,45.9,3.633333,1.79
+ Parent ,PARENT ,63270,63269,83,45.633333,3.25,0.78
+ Parentignat ,PARENTIGNAT ,63500,63270,83,45.533333,3.3,1.12
+ Paslières ,PASLIERES ,63290,63271,83,45.933333,3.5,1.26
+ Pérignat-lès-Sarliève ,PERIGNAT LES SARLIEVE ,63170,63272,83,45.733333,3.15,1
+ Pérignat-sur-Allier ,PERIGNAT SUR ALLIER ,63800,63273,83,45.733333,3.25,0.48
+ Perpezat ,PERPEZAT ,63210,63274,83,45.683333,2.775,-1
+ Perrier ,PERRIER ,63500,63275,83,45.55,3.216667,1.03
+ Peschadoires ,PESCHADOIRES ,63920,63276,83,45.816667,3.516667,1.33
+ Peslières ,PESLIERES ,63580,63277,83,45.433333,3.466667,1.68
+ Pessat-Villeneuve ,PESSAT VILLENEUVE ,63200,63278,83,45.933333,3.15,1.14
+ Picherande ,PICHERANDE ,63113,63279,83,45.466667,2.783333,1.54
+ Pignols ,PIGNOLS ,63270,63280,83,45.65,3.283333,0.46
+ Pionsat ,PIONSAT ,63330,63281,83,46.1,2.7,2.08
+ Plauzat ,PLAUZAT ,63730,63282,83,45.616667,3.15,1.57
+ Pontaumur ,PONTAUMUR ,63380,63283,83,45.866667,2.683333,1.94
+ Pont-du-Château ,PONT DU CHATEAU ,63430,63284,83,45.8,3.25,0.39
+ Pontgibaud ,PONTGIBAUD ,63230,63285,83,45.833333,2.866667,1.22
+ Les Pradeaux ,LES PRADEAUX ,63500,63287,83,45.516667,3.3,1.21
+ Prompsat ,PROMPSAT ,63200,63288,83,45.95,3.066667,1.23
+ Prondines ,PRONDINES ,63470,63289,83,45.766667,2.683333,1.94
+ Pulvérières ,PULVERIERES ,63230,63290,83,45.883333,2.916667,1.38
+ Puy-Guillaume ,PUY GUILLAUME ,63290,63291,83,45.95,3.483333,1.23
+ Puy Saint-Gulmier ,PUY SAINT GULMIER ,63470,63292,83,45.783333,2.633333,2.13
+ Le Quartier ,LE QUARTIER ,63330,63293,83,46.116667,2.766667,2.18
+ Queuille ,QUEUILLE ,63780,63294,83,45.966667,2.85,1.33
+ Randan ,RANDAN ,63310,63295,83,46.016667,3.366667,1.61
+ Ravel ,RAVEL ,63190,63296,83,45.783333,3.4,0.87
+ La Renaudie ,LA RENAUDIE ,63930,63298,83,45.733333,3.733333,2.18
+ Rentières ,RENTIERES ,63420,63299,83,45.416667,3.1,1.78
+ Riom ,RIOM ,63200,63300,83,45.9,3.116667,0.95
+ Ris ,RIS ,63290,63301,83,46,3.5,1.52
+ La Roche-Blanche ,LA ROCHE BLANCHE ,63670,63302,83,45.7,3.133333,1.32
+ Roche-d'Agoux ,ROCHE D AGOUX ,63330,63304,83,46.05,2.633333,2.13
+ Rochefort-Montagne ,ROCHEFORT MONTAGNE ,63210,63305,83,45.683333,2.816667,1.41
+ La Roche-Noire ,LA ROCHE NOIRE ,63800,63306,83,45.7,3.233333,1.09
+ Romagnat ,ROMAGNAT ,63540,63307,83,45.733333,3.1,1
+ Royat ,ROYAT ,63130,63308,83,45.766667,3.05,0.5
+ Saillant ,SAILLANT ,63840,63309,83,45.566667,3.016667,1.99
+ Sainte-Agathe ,SAINTE AGATHE ,63120,63310,83,45.816667,3.616667,1.72
+ Saint-Agoulin ,SAINT AGOULIN ,63260,63311,83,46.033333,3.133333,1.71
+ Saint-Alyre-d'Arlanc ,SAINT ALYRE D ARLANC,63220,63312,83,45.366667,3.633333,2.06
+ Saint-Alyre-ès-Montagne ,SAINT ALYRE ES MONTAGNE,63420,63313,83,45.4,3,1.87
+ Saint-Amant-Roche-Savine ,SAINT AMANT ROCHE SAVINE,63890,63314,83,45.566667,3.633333,1.79
+ Saint-Amant-Tallende ,SAINT AMANT TALLENDE ,63450,63315,83,45.666667,3.116667,0.58
+ Saint-Anastaise ,SAINT ANASTAISE ,63610,63316,83,45.466667,2.983333,1.5
+ Saint-André-le-Coq ,SAINT ANDRE LE COQ,63310,63317,83,45.966667,3.316667,1.33
+ Saint-Anthème ,SAINT ANTHEME ,63660,63319,83,45.516667,3.916667,2.9
+ Saint-Avit ,SAINT AVIT ,63380,63320,83,45.866667,2.533333,2.52
+ Saint-Babel ,SAINT BABEL ,63500,63321,83,45.6,3.3,1.24
+ Saint-Beauzire ,SAINT BEAUZIRE ,63360,63322,83,45.85,3.183333,0.67
+ Saint-Bonnet-le-Bourg ,SAINT BONNET LE BOURG,63630,63323,83,45.433333,3.616667,1.72
+ Saint-Bonnet-le-Chastel ,SAINT BONNET LE CHASTEL,63630,63324,83,45.45,3.633333,1.79
+ Saint-Bonnet-lès-Allier ,SAINT BONNET LES ALLIER,63800,63325,83,45.75,3.25,1
+ Saint-Bonnet-près-Orcival ,SAINT BONNET PRES ORCIVAL,63210,63326,83,45.7,2.866667,1.22
+ Saint-Bonnet-près-Riom ,SAINT BONNET PRES RIOM,63200,63327,83,45.933333,3.1,1.14
+ Sainte-Catherine ,SAINTE CATHERINE ,63580,63328,83,45.45,3.483333,1.59
+ Sainte-Christine ,SAINTE CHRISTINE ,63390,63329,83,46.066667,2.833333,1.89
+ Saint-Cirgues-sur-Couze ,SAINT CIRGUES SUR COUZE,63320,63330,83,45.55,3.15,1.03
+ Saint-Clément-de-Régnat ,SAINT CLEMENT DE REGNAT,63310,63332,83,46,3.3,1.52
+ Saint-Denis-Combarnazat ,SAINT DENIS COMBARNAZAT ,63310,63333,83,45.966667,3.333333,1.33
+ Saint-Dier-d'Auvergne ,SAINT DIER D AUVERGNE,63520,63334,83,45.683333,3.5,1.26
+ Saint-Diéry ,SAINT DIERY ,63320,63335,83,45.55,3.033333,1.44
+ Saint-Donat ,SAINT DONAT ,63680,63336,83,45.466667,2.716667,1.8
+ Saint-Éloy-les-Mines ,SAINT ELOY LES MINES,63700,63338,83,46.15,2.833333,2.36
+ Saint-Étienne-des-Champs ,SAINT ETIENNE DES CHAMPS,63380,63339,83,45.833333,2.583333,2.33
+ Saint-Étienne-sur-Usson ,SAINT ETIENNE SUR USSON,63580,63340,83,45.5,3.416667,1.31
+ Saint-Ferréol-des-Côtes ,SAINT FERREOL DES COTES,63600,63341,83,45.533333,3.716667,2.11
+ Saint-Floret ,SAINT FLORET ,63320,63342,83,45.55,3.116667,1.03
+ Saint-Flour ,SAINT FLOUR ,63520,63343,83,45.7,3.516667,1.33
+ Saint-Gal-sur-Sioule ,SAINT GAL SUR SIOULE,63440,63344,83,46.116667,3.016667,2.18
+ Saint-Genès-Champanelle ,SAINT GENES CHAMPANELLE ,63122,63345,83,45.716667,3.016667,1.06
+ Saint-Genès-Champespe ,SAINT GENES CHAMPESPE ,63850,63346,83,45.416667,2.733333,1.78
+ Saint-Genès-du-Retz ,SAINT GENES DU RETZ,63260,63347,83,46.066667,3.216667,1.89
+ Saint-Genès-la-Tourette ,SAINT GENES LA TOURETTE,63580,63348,83,45.516667,3.483333,1.36
+ Saint-Georges-de-Mons ,SAINT GEORGES DE MONS,63780,63349,83,45.933333,2.833333,1.35
+ Saint-Georges-sur-Allier ,SAINT GEORGES SUR ALLIER,63800,63350,83,45.7,3.25,1.13
+ Saint-Germain-près-Herment ,SAINT GERMAIN PRES HERMENT,63470,63351,83,45.75,2.55,2.46
+ Saint-Germain-Lembron ,SAINT GERMAIN LEMBRON ,63340,63352,83,45.45,3.25,1.59
+ Saint-Germain-l'Herm ,SAINT GERMAIN L HERM,63630,63353,83,45.45,3.566667,1.59
+ Saint-Gervais-d'Auvergne ,SAINT GERVAIS D AUVERGNE,63390,63354,83,46.033333,2.816667,1.71
+ Saint-Gervais-sous-Meymont ,SAINT GERVAIS SOUS MEYMONT,63880,63355,83,45.683333,3.6,1.66
+ Saint-Gervazy ,SAINT GERVAZY ,63340,63356,83,45.416667,3.233333,1.78
+ Saint-Hérent ,SAINT HERENT ,63340,63357,83,45.466667,3.166667,1.5
+ Saint-Hilaire-la-Croix ,SAINT HILAIRE LA CROIX,63440,63358,83,46.05,3.05,1.8
+ Saint-Hilaire-les-Monges ,SAINT HILAIRE LES MONGES,63380,63359,83,45.816667,2.666667,2
+ Saint-Hilaire-près-Pionsat ,SAINT HILAIRE PRES PIONSAT,63330,63360,83,46.108333,2.633333,-1
+ Saint-Hippolyte ,SAINT HIPPOLYTE ,63140,63361,83,45.916667,3.066667,1.05
+ Saint-Ignat ,SAINT IGNAT ,63720,63362,83,45.916667,3.266667,1.05
+ Saint-Jacques-d'Ambur ,SAINT JACQUES D AMBUR,63230,63363,83,45.9,2.783333,1.74
+ Saint-Jean-d'Heurs ,SAINT JEAN D HEURS,63190,63364,83,45.816667,3.45,1.18
+ Saint-Jean-des-Ollières ,SAINT JEAN DES OLLIERES,63520,63365,83,45.65,3.45,1.45
+ Saint-Jean-en-Val ,SAINT JEAN EN VAL,63490,63366,83,45.516667,3.366667,1.36
+ Saint-Jean-Saint-Gervais ,SAINT JEAN SAINT GERVAIS,63570,63367,83,45.416667,3.383333,1.78
+ Saint-Julien-de-Coppel ,SAINT JULIEN DE COPPEL,63160,63368,83,45.7,3.316667,1.33
+ Saint-Julien-la-Geneste ,SAINT JULIEN LA GENESTE,63390,63369,83,46.05,2.733333,1.8
+ Saint-Julien-Puy-Lavèze ,SAINT JULIEN PUY LAVEZE,63820,63370,83,45.666667,2.683333,1.94
+ Saint-Just ,SAINT JUST ,63600,63371,83,45.466667,3.791667,-1
+ Saint-Laure ,SAINT LAURE ,63350,63372,83,45.9,3.283333,1.48
+ Saint-Maigner ,SAINT MAIGNER ,63330,63373,83,46.083333,2.7,1.99
+ Saint-Martin-des-Olmes ,SAINT MARTIN DES OLMES,63600,63374,83,45.533333,3.8,2.44
+ Saint-Martin-des-Plains ,SAINT MARTIN DES PLAINS,63570,63375,83,45.483333,3.316667,1.4
+ Saint-Martin-d'Ollières ,SAINT MARTIN D OLLIERES,63580,63376,83,45.416667,3.466667,1.78
+ Saint-Maurice-près-Pionsat ,SAINT MAURICE PRES PIONSAT,63330,63377,83,46.066667,2.6,2.26
+ Saint-Maurice ,SAINT MAURICE ,63270,63378,83,45.666667,3.233333,1.15
+ Saint-Myon ,SAINT MYON ,63460,63379,83,46,3.116667,1.52
+ Saint-Nectaire ,SAINT NECTAIRE ,63710,63380,83,45.6,3,1
+ Saint-Ours ,SAINT OURS ,63230,63381,83,45.85,2.9,1.09
+ Saint-Pierre-Colamine ,SAINT PIERRE COLAMINE ,63610,63383,83,45.533333,3.016667,1.64
+ Saint-Pierre-la-Bourlhonne ,SAINT PIERRE LA BOURLHONNE,63480,63384,83,45.666667,3.75,2.24
+ Saint-Pierre-le-Chastel ,SAINT PIERRE LE CHASTEL,63230,63385,83,45.8,2.85,1.28
+ Saint-Pierre-Roche ,SAINT PIERRE ROCHE ,63210,63386,83,45.733333,2.833333,1.35
+ Saint-Priest-Bramefant ,SAINT PRIEST BRAMEFANT ,63310,63387,83,46.033333,3.433333,1.71
+ Saint-Priest-des-Champs ,SAINT PRIEST DES CHAMPS,63640,63388,83,45.983333,2.766667,1.61
+ Saint-Quentin-sur-Sauxillanges ,SAINT QUENTIN SUR SAUXILLANGES,63490,63389,83,45.55,3.4,1.03
+ Saint-Quintin-sur-Sioule ,SAINT QUINTIN SUR SIOULE,63440,63390,83,46.1,3.066667,2.08
+ Saint-Rémy-de-Blot ,SAINT REMY DE BLOT,63440,63391,83,46.083333,2.933333,1.99
+ Saint-Rémy-de-Chargnat ,SAINT REMY DE CHARGNAT,63500,63392,83,45.516667,3.333333,1.37
+ Saint-Rémy-sur-Durolle ,SAINT REMY SUR DUROLLE,63550,63393,83,45.883333,3.6,1.66
+ Saint-Romain ,SAINT ROMAIN ,63660,63394,83,45.483333,3.9,2.83
+ Saint-Sandoux ,SAINT SANDOUX ,63450,63395,83,45.633333,3.116667,0.83
+ Saint-Saturnin ,SAINT SATURNIN ,63450,63396,83,45.65,3.1,0.46
+ Saint-Sauves-d'Auvergne ,SAINT SAUVES D AUVERGNE,63950,63397,83,45.6,2.683333,1.94
+ Saint-Sulpice ,SAINT SULPICE ,63760,63399,83,45.65,2.633333,2.13
+ Saint-Sylvestre-Pragoulin ,SAINT SYLVESTRE PRAGOULIN ,63310,63400,83,46.05,3.383333,1.8
+ Saint-Victor-Montvianeix ,SAINT VICTOR MONTVIANEIX ,63550,63402,83,45.933333,3.6,1.66
+ Saint-Vincent ,SAINT VINCENT ,63320,63403,83,45.55,3.15,1.03
+ Saint-Yvoine ,SAINT YVOINE ,63500,63404,83,45.583333,3.233333,0.92
+ Sallèdes ,SALLEDES ,63270,63405,83,45.65,3.333333,0.94
+ Sardon ,SARDON ,63260,63406,83,45.966667,3.216667,1.33
+ Saulzet-le-Froid ,SAULZET LE FROID ,63970,63407,83,45.633333,2.916667,1.02
+ Sauret-Besserve ,SAURET BESSERVE ,63390,63408,83,46,2.816667,1.52
+ Saurier ,SAURIER ,63320,63409,83,45.533333,3.05,1.21
+ Sauvagnat ,SAUVAGNAT ,63470,63410,83,45.766667,2.616667,2.2
+ Sauvagnat-Sainte-Marthe ,SAUVAGNAT SAINTE MARTHE ,63500,63411,83,45.583333,3.216667,1.14
+ Sauvessanges ,SAUVESSANGES ,63840,63412,83,45.383333,3.866667,2.7
+ La Sauvetat ,LA SAUVETAT ,63730,63413,83,45.633333,3.183333,0.56
+ Sauviat ,SAUVIAT ,63120,63414,83,45.716667,3.55,1.46
+ Sauxillanges ,SAUXILLANGES ,63490,63415,83,45.566667,3.383333,0.93
+ Savennes ,SAVENNES ,63750,63416,83,45.6,2.516667,2.59
+ Sayat ,SAYAT ,63530,63417,83,45.833333,3.066667,1.07
+ Sermentizon ,SERMENTIZON ,63120,63418,83,45.766667,3.516667,1.33
+ Servant ,SERVANT ,63560,63419,83,46.133333,2.916667,2.27
+ Seychalles ,SEYCHALLES ,63190,63420,83,45.8,3.333333,1.11
+ Singles ,SINGLES ,63690,63421,83,45.55,2.533333,2.52
+ Solignat ,SOLIGNAT ,63500,63422,83,45.516667,3.183333,1.55
+ Sugères ,SUGERES ,63490,63423,83,45.6,3.416667,0.96
+ Surat ,SURAT ,63720,63424,83,45.933333,3.25,1.14
+ Tallende ,TALLENDE ,63450,63425,83,45.666667,3.133333,1.02
+ Tauves ,TAUVES ,63690,63426,83,45.566667,2.633333,2.13
+ Teilhède ,TEILHEDE ,63460,63427,83,45.95,3.066667,1.42
+ Teilhet ,TEILHET ,63560,63428,83,46.1,2.816667,2.08
+ Ternant-les-Eaux ,TERNANT LES EAUX ,63340,63429,83,45.483333,3.15,1.46
+ Thiers ,THIERS ,63300,63430,83,45.85,3.566667,1.52
+ Thiolières ,THIOLIERES ,63600,63431,83,45.583333,3.7,2.05
+ Thuret ,THURET ,63260,63432,83,45.966667,3.266667,1.33
+ Tortebesse ,TORTEBESSE ,63470,63433,83,45.733333,2.65,2.07
+ Tours-sur-Meymont ,TOURS SUR MEYMONT ,63590,63434,83,45.666667,3.583333,1.59
+ Tourzel-Ronzières ,TOURZEL RONZIERES ,63320,63435,83,45.533333,3.133333,1.12
+ Tralaigues ,TRALAIGUES ,63380,63436,83,45.9,2.6,2.26
+ Trémouille-Saint-Loup ,TREMOUILLE SAINT LOUP ,63810,63437,83,45.5,2.566667,2.39
+ Trézioux ,TREZIOUX ,63520,63438,83,45.716667,3.483333,1.2
+ Usson ,USSON ,63490,63439,83,45.533333,3.35,1.41
+ Valbeleix ,VALBELEIX ,63610,63440,83,45.466667,3,1.5
+ Valcivières ,VALCIVIERES ,63600,63441,83,45.583333,3.8,2.44
+ Varennes-sur-Morge ,VARENNES SUR MORGE ,63720,63443,83,45.933333,3.183333,1.38
+ Varennes-sur-Usson ,VARENNES SUR USSON ,63500,63444,83,45.533333,3.3,1.12
+ Vassel ,VASSEL ,63910,63445,83,45.766667,3.316667,0.72
+ Vensat ,VENSAT ,63260,63446,83,46.05,3.183333,1.8
+ Vergheas ,VERGHEAS ,63330,63447,83,46.033333,2.616667,2.2
+ Vernet-la-Varenne ,VERNET LA VARENNE ,63580,63448,83,45.466667,3.466667,1.5
+ Le Vernet-Sainte-Marguerite ,LE VERNET SAINTE MARGUERITE,63710,63449,83,45.6,2.95,1
+ Verneugheol ,VERNEUGHEOL ,63470,63450,83,45.766667,2.533333,2.52
+ Vernines ,VERNINES ,63210,63451,83,45.666667,2.883333,1.15
+ Verrières ,VERRIERES ,63320,63452,83,45.566667,3.05,1.13
+ Vertaizon ,VERTAIZON ,63910,63453,83,45.766667,3.3,1.14
+ Vertolaye ,VERTOLAYE ,63480,63454,83,45.65,3.7,2.05
+ Veyre-Monton ,VEYRE MONTON ,63960,63455,83,45.683333,3.166667,0.27
+ Vichel ,VICHEL ,63340,63456,83,45.433333,3.233333,1.68
+ Vic-le-Comte ,VIC LE COMTE ,63270,63457,83,45.633333,3.25,0.78
+ Villeneuve ,VILLENEUVE ,63340,63458,83,45.483333,3.2,1.4
+ Villeneuve-lès-Cerfs ,VILLENEUVE LES CERFS ,63310,63459,83,46.016667,3.333333,1.61
+ Viverols ,VIVEROLS ,63840,63465,83,45.433333,3.883333,2.76
+ Vodable ,VODABLE ,63500,63466,83,45.5,3.15,2.23
+ Voingt ,VOINGT ,63620,63467,83,45.8,2.533333,2.52
+ Vollore-Montagne ,VOLLORE MONTAGNE ,63120,63468,83,45.783333,3.683333,1.98
+ Vollore-Ville ,VOLLORE VILLE ,63120,63469,83,45.783333,3.6,1.66
+ Volvic ,VOLVIC ,63530,63470,83,45.866667,3.05,0.76
+ Youx ,YOUX ,63700,63471,83,46.133333,2.8,2.27
+ Yronde-et-Buron ,YRONDE ET BURON ,63270,63472,83,45.616667,3.25,0.95
+ Yssac-la-Tourette ,YSSAC LA TOURETTE ,63200,63473,83,45.933333,3.083333,1.14
+ Boisséjour ,BOISSEJOUR ,63122,63902,83,45.75,3.05,0.9
+ Chazelles ,CHAZELLES ,63260,63903,83,45.991667,3.216667,-1
+ La Combelle ,LA COMBELLE ,63570,63904,83,45.433333,3.316667,1.68
+ Les Sarraix ,LES SARRAIX ,63250,63906,83,45.883333,3.65,1.85
+ Montjoie ,MONTJOIE ,63700,63908,83,46.133333,2.816667,2.27
+ Saulzet-le-Chaud ,SAULZET LE CHAUD ,63540,63911,83,45.716667,3.066667,1
+ Pont-de-Dore ,PONT DE DORE ,63920,63913,83,45.833333,3.5,1.26
+ Berzet ,BERZET ,63122,63914,83,45.733333,3.05,0.5
+ Manson ,MANSON ,63122,63916,83,45.75,3.016667,1.19
+ Theix ,THEIX ,63122,63917,83,45.7,3.033333,1.25
+ Aast ,AAST ,64460,64001,72,43.283333,-0.083333,1.73
+ Abère ,ABERE ,64160,64002,72,43.383333,-0.166667,1.49
+ Abidos ,ABIDOS ,64150,64003,72,43.4,-0.616667,0.67
+ Abitain ,ABITAIN ,64390,64004,72,43.416667,-0.983333,1.47
+ Abos ,ABOS ,64360,64005,72,43.35,-0.566667,0.72
+ Accous ,ACCOUS ,64490,64006,72,42.983333,-0.6,2.88
+ Agnos ,AGNOS ,64400,64007,72,43.166667,-0.616667,1.34
+ Ahaxe-Alciette-Bascassan ,AHAXE ALCIETTE BASCASSAN ,64220,64008,72,43.15,-1.166667,1.48
+ Ahetze ,AHETZE ,64210,64009,72,43.4,-1.566667,2.64
+ Aincille ,AINCILLE ,64220,64011,72,43.15,-1.2,1.56
+ Ainharp ,AINHARP ,64130,64012,72,43.266667,-0.933333,1.13
+ Ainhice-Mongelos ,AINHICE MONGELOS ,64220,64013,72,43.2,-1.15,1.41
+ Aïnhoa ,AINHOA ,64250,64014,72,43.3,-1.5,2.44
+ Aldudes ,ALDUDES ,64430,64016,72,43.1,-1.433333,2.25
+ Amendeuix-Oneix ,AMENDEUIX ONEIX ,64120,64018,72,43.35,-1.033333,1.07
+ Amorots-Succos ,AMOROTS SUCCOS ,64120,64019,72,43.366667,-1.1,1.26
+ Ance ,ANCE ,64570,64020,72,43.15,-0.7,1.48
+ Andoins ,ANDOINS ,64420,64021,72,43.3,-0.233333,1.49
+ Andrein ,ANDREIN ,64390,64022,72,43.383333,-0.9,0.67
+ Angaïs ,ANGAIS ,64510,64023,72,43.233333,-0.25,1.64
+ Anglet ,ANGLET ,64600,64024,72,43.483333,-1.533333,2.54
+ Angous ,ANGOUS ,64190,64025,72,43.3,-0.816667,0.72
+ Anhaux ,ANHAUX ,64220,64026,72,43.166667,-1.283333,1.81
+ Anos ,ANOS ,64160,64027,72,43.4,-0.283333,1.14
+ Anoye ,ANOYE ,64350,64028,72,43.4,-0.133333,1.59
+ Aramits ,ARAMITS ,64570,64029,72,43.116667,-0.716667,1.76
+ Arance ,ARANCE ,64300,64030,72,43.416667,-0.65,1.49
+ Arancou ,ARANCOU ,64270,64031,72,43.433333,-1.05,1.33
+ Araujuzon ,ARAUJUZON ,64190,64032,72,43.366667,-0.816667,0.77
+ Araux ,ARAUX ,64190,64033,72,43.35,-0.8,0.38
+ Arberats-Sillègue ,ARBERATS SILLEGUE ,64120,64034,72,43.35,-0.983333,0.92
+ Arbonne ,ARBONNE ,64210,64035,72,43.433333,-1.55,2.59
+ Arbouet-Sussaute ,ARBOUET SUSSAUTE ,64120,64036,72,43.366667,-1,0.97
+ Arbus ,ARBUS ,64230,64037,72,43.333333,-0.5,1.31
+ Arcangues ,ARCANGUES ,64200,64038,72,43.433333,-1.516667,2.49
+ Aren ,AREN ,64400,64039,72,43.266667,-0.683333,1.2
+ Arette ,ARETTE ,64570,64040,72,43.1,-0.716667,1.9
+ Aressy ,ARESSY ,64320,64041,72,43.283333,-0.316667,1.05
+ Argagnon ,ARGAGNON ,64300,64042,72,43.45,-0.683333,1.03
+ Argelos ,ARGELOS ,64450,64043,72,43.45,-0.35,1.03
+ Arget ,ARGET ,64410,64044,72,43.55,-0.533333,1.86
+ Arhansus ,ARHANSUS ,64120,64045,72,43.25,-1.033333,1.07
+ Armendarits ,ARMENDARITS ,64640,64046,72,43.3,-1.166667,1.46
+ Arnéguy ,ARNEGUY ,64220,64047,72,43.116667,-1.283333,1.81
+ Arnos ,ARNOS ,64370,64048,72,43.45,-0.533333,1.03
+ Arrast-Larrebieu ,ARRAST LARREBIEU ,64130,64050,72,43.3,-0.85,1.29
+ Arraute-Charritte ,ARRAUTE CHARRITTE ,64120,64051,72,43.4,-1.1,1.39
+ Arricau-Bordes ,ARRICAU BORDES ,64350,64052,72,43.5,-0.133333,1.59
+ Arrien ,ARRIEN ,64420,64053,72,43.316667,-0.15,1.54
+ Arros-d'Oloron ,ARROS D OLORON ,64660,64055,72,43.15,-0.6,1.48
+ Arrosés ,ARROSES ,64350,64056,72,43.55,-0.116667,1.86
+ Arthez-de-Béarn ,ARTHEZ DE BEARN ,64370,64057,72,43.466667,-0.6,1.17
+ Arthez-d'Asson ,ARTHEZ D ASSON ,64800,64058,72,43.083333,-0.25,2.04
+ Artigueloutan ,ARTIGUELOUTAN ,64420,64059,72,43.266667,-0.25,1.78
+ Artiguelouve ,ARTIGUELOUVE ,64230,64060,72,43.316667,-0.466667,1.28
+ Artix ,ARTIX ,64170,64061,72,43.4,-0.55,0.61
+ Arudy ,ARUDY ,64260,64062,72,43.116667,-0.433333,1.76
+ Arzacq-Arraziguet ,ARZACQ ARRAZIGUET ,64410,64063,72,43.533333,-0.416667,1.72
+ Ascain ,ASCAIN ,64310,64065,72,43.35,-1.616667,2.79
+ Ascarat ,ASCARAT ,64220,64066,72,43.166667,-1.25,1.71
+ Assat ,ASSAT ,64510,64067,72,43.25,-0.3,1.09
+ Asson ,ASSON ,64800,64068,72,43.15,-0.25,1.48
+ Aste-Béon ,ASTE BEON ,64260,64069,72,43.016667,-0.416667,2.6
+ Astis ,ASTIS ,64450,64070,72,43.433333,-0.333333,1
+ Athos-Aspis ,ATHOS ASPIS ,64390,64071,72,43.4,-0.966667,1
+ Aubertin ,AUBERTIN ,64290,64072,72,43.266667,-0.483333,0.82
+ Aubin ,AUBIN ,64230,64073,72,43.433333,-0.416667,1.22
+ Aubous ,AUBOUS ,64330,64074,72,43.566667,-0.133333,2
+ Audaux ,AUDAUX ,64190,64075,72,43.366667,-0.783333,0.64
+ Audéjos ,AUDEJOS ,64170,64076,72,43.433333,-0.616667,1.79
+ Auga ,AUGA ,64450,64077,72,43.483333,-0.366667,1.3
+ Auriac ,AURIAC ,64450,64078,72,43.45,-0.3,1.1
+ Aurions-Idernes ,AURIONS IDERNES ,64350,64079,72,43.533333,-0.133333,1.72
+ Aussevielle ,AUSSEVIELLE ,64230,64080,72,43.35,-0.483333,0.85
+ Aussurucq ,AUSSURUCQ ,64130,64081,72,43.15,-0.933333,1.6
+ Auterrive ,AUTERRIVE ,64270,64082,72,43.466667,-1,1.17
+ Autevielle-Saint-Martin-Bideren ,AUTEVIELLE SAINT MARTIN BIDEREN,64390,64083,72,43.383333,-0.966667,1.03
+ Aydie ,AYDIE ,64330,64084,72,43.566667,-0.1,2.02
+ Aydius ,AYDIUS ,64490,64085,72,43,-0.533333,2.74
+ Ayherre ,AYHERRE ,64240,64086,72,43.383333,-1.25,1.71
+ Baigts-de-Béarn ,BAIGTS DE BEARN ,64300,64087,72,43.516667,-0.833333,1.58
+ Balansun ,BALANSUN ,64300,64088,72,43.483333,-0.7,1.3
+ Baleix ,BALEIX ,64460,64089,72,43.383333,-0.133333,1.59
+ Baliracq-Maumusson ,BALIRACQ MAUMUSSON ,64330,64090,72,43.55,-0.25,1.86
+ Baliros ,BALIROS ,64510,64091,72,43.233333,-0.3,1.09
+ Banca ,BANCA ,64430,64092,72,43.116667,-1.366667,2.05
+ Barcus ,BARCUS ,64130,64093,72,43.183333,-0.766667,2
+ Bardos ,BARDOS ,64520,64094,72,43.483333,-1.2,1.56
+ Barinque ,BARINQUE ,64160,64095,72,43.4,-0.266667,1.19
+ Barraute-Camu ,BARRAUTE CAMU ,64390,64096,72,43.383333,-0.9,0.67
+ Barzun ,BARZUN ,64530,64097,72,43.216667,-0.133333,1.59
+ Bastanès ,BASTANES ,64190,64099,72,43.35,-0.766667,0.54
+ Bassussarry ,BASSUSSARRY ,64200,64100,72,43.45,-1.5,2.44
+ Baudreix ,BAUDREIX ,64800,64101,72,43.2,-0.25,1.24
+ Bayonne ,BAYONNE ,64100,64102,72,43.483333,-1.483333,2.4
+ Bedeille ,BEDEILLE ,64460,64103,72,43.35,-0.1,1.68
+ Bedous ,BEDOUS ,64490,64104,72,43,-0.6,2.74
+ Béguios ,BEGUIOS ,64120,64105,72,43.35,-1.083333,1.22
+ Béhasque-Lapiste ,BEHASQUE LAPISTE ,64120,64106,72,43.333333,-1,0.97
+ Béhorléguy ,BEHORLEGUY ,64220,64107,72,43.133333,-1.116667,1.69
+ Bellocq ,BELLOCQ ,64270,64108,72,43.516667,-0.916667,1.58
+ Bénéjacq ,BENEJACQ ,64800,64109,72,43.2,-0.216667,1.34
+ Béost ,BEOST ,64440,64110,72,43,-0.416667,2.74
+ Bentayou-Sérée ,BENTAYOU SEREE ,64460,64111,72,43.4,-0.066667,1.78
+ Berenx ,BERENX ,64300,64112,72,43.5,-0.85,1.55
+ Bernadets ,BERNADETS ,64160,64114,72,43.383333,-0.283333,1.14
+ Berrogain-Laruns ,BERROGAIN LARUNS ,64130,64115,72,43.25,-0.85,0.65
+ Bescat ,BESCAT ,64260,64116,72,43.133333,-0.416667,1.62
+ Bésingrand ,BESINGRAND ,64150,64117,72,43.366667,-0.566667,1.49
+ Bétracq ,BETRACQ ,64350,64118,72,43.516667,-0.05,1.83
+ Beuste ,BEUSTE ,64800,64119,72,43.216667,-0.233333,1.29
+ Beyrie-en-Béarn ,BEYRIE EN BEARN ,64230,64121,72,43.366667,-0.466667,0.6
+ Biarritz ,BIARRITZ ,64200,64122,72,43.483333,-1.566667,2.64
+ Bidache ,BIDACHE ,64520,64123,72,43.483333,-1.133333,1.36
+ Bidarray ,BIDARRAY ,64780,64124,72,43.266667,-1.35,2
+ Bidart ,BIDART ,64210,64125,72,43.433333,-1.583333,2.69
+ Bielle ,BIELLE ,64260,64127,72,43.05,-0.433333,2.32
+ Bilhères ,BILHERES ,64260,64128,72,43.066667,-0.45,2.18
+ Billère ,BILLERE ,64140,64129,72,43.3,-0.4,1
+ Biriatou ,BIRIATOU ,64700,64130,72,43.333333,-1.741667,-1
+ Biron ,BIRON ,64300,64131,72,43.466667,-0.733333,1.17
+ Bizanos ,BIZANOS ,64320,64132,72,43.283333,-0.35,1.57
+ Boeil-Bezing ,BOEIL BEZING ,64510,64133,72,43.216667,-0.266667,1.35
+ Bonloc ,BONLOC ,64240,64134,72,43.366667,-1.266667,1.76
+ Bonnut ,BONNUT ,64300,64135,72,43.55,-0.766667,1.86
+ Borce ,BORCE ,64490,64136,72,42.908333,-0.575,-1
+ Bordères ,BORDERES ,64800,64137,72,43.2,-0.216667,1.34
+ Bordes ,BORDES ,64510,64138,72,43.233333,-0.283333,1.14
+ Bosdarros ,BOSDARROS ,64290,64139,72,43.216667,-0.366667,1.31
+ Boucau ,BOUCAU ,64340,64140,72,43.533333,-1.5,2.44
+ Boueilh-Boueilho-Lasque ,BOUEILH BOUEILHO LASQUE ,64330,64141,72,43.55,-0.316667,1.99
+ Bougarber ,BOUGARBER ,64230,64142,72,43.4,-0.466667,0.61
+ Bouillon ,BOUILLON ,64410,64143,72,43.5,-0.5,1.44
+ Boumourt ,BOUMOURT ,64370,64144,72,43.433333,-0.516667,1.33
+ Bourdettes ,BOURDETTES ,64800,64145,72,43.2,-0.266667,1.19
+ Bournos ,BOURNOS ,64450,64146,72,43.433333,-0.383333,1.4
+ Briscous ,BRISCOUS ,64240,64147,72,43.466667,-1.333333,1.95
+ Bugnein ,BUGNEIN ,64190,64149,72,43.35,-0.783333,0.35
+ Bunus ,BUNUS ,64120,64150,72,43.216667,-1.066667,1.29
+ Burgaronne ,BURGARONNE ,64390,64151,72,43.416667,-0.9,0.75
+ Buros ,BUROS ,64160,64152,72,43.35,-0.3,1.27
+ Burosse-Mendousse ,BUROSSE MENDOUSSE ,64330,64153,72,43.516667,-0.216667,1.58
+ Bussunarits-Sarrasquette ,BUSSUNARITS SARRASQUETTE ,64220,64154,72,43.166667,-1.166667,1.46
+ Bustince-Iriberry ,BUSTINCE IRIBERRY ,64220,64155,72,43.183333,-1.183333,1.51
+ Buziet ,BUZIET ,64680,64156,72,43.133333,-0.466667,1.62
+ Buzy ,BUZY ,64260,64157,72,43.133333,-0.45,1.62
+ Cabidos ,CABIDOS ,64410,64158,72,43.55,-0.466667,1.86
+ Cadillon ,CADILLON ,64330,64159,72,43.533333,-0.15,1.72
+ Cambo-les-Bains ,CAMBO LES BAINS ,64250,64160,72,43.366667,-1.4,2.15
+ Came ,CAME ,64520,64161,72,43.483333,-1.116667,1.31
+ Camou-Cihigue ,CAMOU CIHIGUE ,64470,64162,72,43.116667,-0.9,1.76
+ Camou-Mixe-Suhast ,CAMOU MIXE SUHAST ,64120,64163,72,43.366667,-1.016667,1.02
+ Capbis ,CAPBIS ,64800,64164,72,43.1,-0.3,1.9
+ Cardesse ,CARDESSE ,64360,64165,72,43.266667,-0.583333,1.13
+ Caro ,CARO ,64220,64166,72,43.15,-1.216667,1.61
+ Carrère ,CARRERE ,64160,64167,72,43.466667,-0.283333,1.67
+ Cassaber ,CASSABER ,64270,64169,72,43.483333,-1,1.3
+ Castagnède ,CASTAGNEDE ,64270,64170,72,43.45,-0.983333,1.03
+ Casteide-Cami ,CASTEIDE CAMI ,64170,64171,72,43.416667,-0.516667,0.75
+ Casteide-Candau ,CASTEIDE CANDAU ,64370,64172,72,43.516667,-0.566667,1.58
+ Casteide-Doat ,CASTEIDE DOAT ,64460,64173,72,43.383333,-0.016667,1.93
+ Castéra-Loubix ,CASTERA LOUBIX ,64460,64174,72,43.4,-0.033333,1.88
+ Castet ,CASTET ,64260,64175,72,43.066667,-0.416667,2.18
+ Castetbon ,CASTETBON ,64190,64176,72,43.383333,-0.783333,0.93
+ Castétis ,CASTETIS ,64300,64177,72,43.466667,-0.716667,1.17
+ Castetnau-Camblong ,CASTETNAU CAMBLONG ,64190,64178,72,43.333333,-0.783333,0.33
+ Castetner ,CASTETNER ,64300,64179,72,43.45,-0.75,1.03
+ Castetpugon ,CASTETPUGON ,64330,64180,72,43.566667,-0.233333,2
+ Caubios-Loos ,CAUBIOS LOOS ,64230,64183,72,43.416667,-0.4,1.22
+ Cescau ,CESCAU ,64170,64184,72,43.416667,-0.5,1.06
+ Cette-Eygun ,CETTE EYGUN ,64490,64185,72,42.933333,-0.591667,-1
+ Charre ,CHARRE ,64190,64186,72,43.316667,-0.866667,1.37
+ Charritte-de-Bas ,CHARRITTE DE BAS ,64130,64187,72,43.3,-0.883333,1.2
+ Chéraute ,CHERAUTE ,64130,64188,72,43.233333,-0.85,0.79
+ Ciboure ,CIBOURE ,64500,64189,72,43.383333,-1.666667,-1
+ Claracq ,CLARACQ ,64330,64190,72,43.5,-0.3,1.86
+ Coarraze ,COARRAZE ,64800,64191,72,43.166667,-0.233333,1.34
+ Conchez-de-Béarn ,CONCHEZ DE BEARN ,64330,64192,72,43.55,-0.166667,1.86
+ Coslédaà-Lube-Boast ,COSLEDAA LUBE BOAST ,64160,64194,72,43.466667,-0.233333,1.4
+ Coublucq ,COUBLUCQ ,64410,64195,72,43.533333,-0.366667,1.72
+ Crouseilles ,CROUSEILLES ,64350,64196,72,43.516667,-0.083333,1.73
+ Cuqueron ,CUQUERON ,64360,64197,72,43.316667,-0.55,0.36
+ Denguin ,DENGUIN ,64230,64198,72,43.366667,-0.5,0.96
+ Diusse ,DIUSSE ,64330,64199,72,43.566667,-0.166667,2
+ Doazon ,DOAZON ,64370,64200,72,43.45,-0.55,1.03
+ Dognen ,DOGNEN ,64190,64201,72,43.283333,-0.733333,1.33
+ Domezain-Berraute ,DOMEZAIN BERRAUTE ,64120,64202,72,43.333333,-0.966667,1.03
+ Doumy ,DOUMY ,64450,64203,72,43.45,-0.366667,1.03
+ Eaux-Bonnes ,EAUX BONNES ,64440,64204,72,42.975,-0.391667,-1
+ Escos ,ESCOS ,64270,64205,72,43.45,-1,1.03
+ Escot ,ESCOT ,64490,64206,72,43.083333,-0.6,2.04
+ Escou ,ESCOU ,64870,64207,72,43.183333,-0.533333,1.21
+ Escoubès ,ESCOUBES ,64160,64208,72,43.416667,-0.233333,1.29
+ Escout ,ESCOUT ,64870,64209,72,43.183333,-0.55,1.21
+ Escurès ,ESCURES ,64350,64210,72,43.466667,-0.116667,1.64
+ Eslourenties-Daban ,ESLOURENTIES DABAN ,64420,64211,72,43.3,-0.133333,1.59
+ Espéchède ,ESPECHEDE ,64160,64212,72,43.316667,-0.183333,1.44
+ Espelette ,ESPELETTE ,64250,64213,72,43.333333,-1.45,2.3
+ Espès-Undurein ,ESPES UNDUREIN ,64130,64214,72,43.266667,-0.883333,0.65
+ Espiute ,ESPIUTE ,64390,64215,72,43.366667,-0.916667,0.72
+ Espoey ,ESPOEY ,64420,64216,72,43.25,-0.166667,1.49
+ Esquiule ,ESQUIULE ,64400,64217,72,43.2,-0.716667,1.38
+ Esterençuby ,ESTERENCUBY ,64220,64218,72,43.1,-1.183333,1.9
+ Estialescq ,ESTIALESCQ ,64290,64219,72,43.216667,-0.55,1.48
+ Estos ,ESTOS ,64400,64220,72,43.216667,-0.616667,0.93
+ Etcharry ,ETCHARRY ,64120,64221,72,43.333333,-0.933333,1.45
+ Etchebar ,ETCHEBAR ,64470,64222,72,43.083333,-0.883333,2.04
+ Etsaut ,ETSAUT ,64490,64223,72,42.908333,-0.575,-1
+ Eysus ,EYSUS ,64400,64224,72,43.133333,-0.583333,1.95
+ Féas ,FEAS ,64570,64225,72,43.166667,-0.683333,1.34
+ Fichous-Riumayou ,FICHOUS RIUMAYOU ,64410,64226,72,43.483333,-0.45,1.3
+ Gabaston ,GABASTON ,64160,64227,72,43.366667,-0.2,1.39
+ Gabat ,GABAT ,64120,64228,72,43.366667,-1.033333,1.07
+ Gamarthe ,GAMARTHE ,64220,64229,72,43.2,-1.133333,1.51
+ Gan ,GAN ,64290,64230,72,43.233333,-0.383333,1.07
+ Garindein ,GARINDEIN ,64130,64231,72,43.216667,-0.9,0.93
+ Garlède-Mondebat ,GARLEDE MONDEBAT ,64450,64232,72,43.5,-0.333333,1.44
+ Garlin ,GARLIN ,64330,64233,72,43.566667,-0.25,2
+ Garos ,GAROS ,64410,64234,72,43.5,-0.466667,1.44
+ Garris ,GARRIS ,64120,64235,72,43.35,-1.05,1.12
+ Gayon ,GAYON ,64350,64236,72,43.483333,-0.166667,1.49
+ Gélos ,GELOS ,64110,64237,72,43.283333,-0.366667,0.9
+ Ger ,GER ,64530,64238,72,43.25,-0.05,1.96
+ Gerderest ,GERDEREST ,64160,64239,72,43.416667,-0.183333,1.44
+ Gère-Belesten ,GERE BELESTEN ,64260,64240,72,43.016667,-0.433333,2.6
+ Géronce ,GERONCE ,64400,64241,72,43.233333,-0.683333,0.79
+ Gestas ,GESTAS ,64190,64242,72,43.35,-0.883333,1.67
+ Géus-d'Arzacq ,GEUS D ARZACQ ,64370,64243,72,43.483333,-0.516667,1.3
+ Géus-d'Oloron ,GEUS D OLORON ,64400,64244,72,43.25,-0.7,1.22
+ Goès ,GOES ,64400,64245,72,43.2,-0.583333,1.21
+ Gomer ,GOMER ,64420,64246,72,43.25,-0.183333,1.44
+ Gotein-Libarrenx ,GOTEIN LIBARRENX ,64130,64247,72,43.2,-0.9,1.07
+ Gouze ,GOUZE ,64300,64248,72,43.433333,-0.683333,0.98
+ Guéthary ,GUETHARY ,64210,64249,72,43.416667,-1.6,2.74
+ Guiche ,GUICHE ,64520,64250,72,43.516667,-1.2,1.58
+ Guinarthe-Parenties ,GUINARTHE PARENTIES ,64390,64251,72,43.383333,-0.95,0.82
+ Gurmençon ,GURMENCON ,64400,64252,72,43.15,-0.6,1.51
+ Gurs ,GURS ,64190,64253,72,43.283333,-0.75,1.12
+ Hagetaubin ,HAGETAUBIN ,64370,64254,72,43.516667,-0.616667,1.58
+ Halsou ,HALSOU ,64480,64255,72,43.366667,-1.416667,2.2
+ Hasparren ,HASPARREN ,64240,64256,72,43.383333,-1.3,1.85
+ Haut-de-Bosdarros ,HAUT DE BOSDARROS ,64800,64257,72,43.183333,-0.316667,1.29
+ Haux ,HAUX ,64470,64258,72,43.083333,-0.85,2.04
+ Hélette ,HELETTE ,64640,64259,72,43.3,-1.233333,1.66
+ Hendaye ,HENDAYE ,64700,64260,72,43.358333,-1.775,-1
+ Herrère ,HERRERE ,64680,64261,72,43.166667,-0.533333,1.5
+ Higuères-Souye ,HIGUERES SOUYE ,64160,64262,72,43.383333,-0.266667,1.19
+ L'Hôpital-d'Orion ,L HOPITAL D ORION,64270,64263,72,43.433333,-0.85,2.18
+ L'Hôpital-Saint-Blaise ,L HOPITAL SAINT BLAISE,64130,64264,72,43.25,-0.766667,1.9
+ Hosta ,HOSTA ,64120,64265,72,43.15,-1.083333,2.19
+ Hours ,HOURS ,64420,64266,72,43.233333,-0.166667,1.49
+ Ibarrolle ,IBARROLLE ,64120,64267,72,43.2,-1.083333,1.56
+ Idaux-Mendy ,IDAUX MENDY ,64130,64268,72,43.183333,-0.916667,1.21
+ Igon ,IGON ,64800,64270,72,43.166667,-0.233333,1.34
+ Iholdy ,IHOLDY ,64640,64271,72,43.283333,-1.166667,1.46
+ Ilharre ,ILHARRE ,64120,64272,72,43.383333,-1.033333,1.07
+ Irissarry ,IRISSARRY ,64780,64273,72,43.266667,-1.233333,1.66
+ Irouléguy ,IROULEGUY ,64220,64274,72,43.183333,-1.3,1.96
+ Ispoure ,ISPOURE ,64220,64275,72,43.166667,-1.233333,1.66
+ Issor ,ISSOR ,64570,64276,72,43.1,-0.666667,1.9
+ Isturits ,ISTURITS ,64240,64277,72,43.366667,-1.2,1.56
+ Ithorots-Olhaïby ,ITHOROTS OLHAIBY ,64120,64278,72,43.316667,-0.95,1.21
+ Itxassou ,ITXASSOU ,64250,64279,72,43.316667,-1.4,2.15
+ Jasses ,JASSES ,64190,64281,72,43.316667,-0.75,0.77
+ Jatxou ,JATXOU ,64480,64282,72,43.383333,-1.433333,2.25
+ Jaxu ,JAXU ,64220,64283,72,43.2,-1.183333,1.51
+ Jurançon ,JURANCON ,64110,64284,72,43.3,-0.383333,0.85
+ Juxue ,JUXUE ,64120,64285,72,43.233333,-1.05,1.12
+ Laa-Mondrans ,LAA MONDRANS ,64300,64286,72,43.45,-0.766667,1.03
+ Laas ,LAAS ,64390,64287,72,43.383333,-0.85,1.74
+ Labastide-Cézéracq ,LABASTIDE CEZERACQ ,64170,64288,72,43.383333,-0.533333,0.71
+ Labastide-Monrejeau ,LABASTIDE MONREJEAU ,64170,64290,72,43.4,-0.516667,0.71
+ Labastide-Villefranche ,LABASTIDE VILLEFRANCHE ,64270,64291,72,43.45,-1.016667,1.03
+ Labatmale ,LABATMALE ,64530,64292,72,43.183333,-0.15,1.54
+ Labatut ,LABATUT ,64460,64293,72,43.425,-0.016667,-1
+ Labets-Biscay ,LABETS BISCAY ,64120,64294,72,43.383333,-1.05,1.12
+ Labeyrie ,LABEYRIE ,64300,64295,72,43.533333,-0.616667,1.85
+ Lacadée ,LACADEE ,64300,64296,72,43.533333,-0.65,1.72
+ Lacarre ,LACARRE ,64220,64297,72,43.183333,-1.166667,1.46
+ Lacommande ,LACOMMANDE ,64360,64299,72,43.283333,-0.5,1.6
+ Lacq ,LACQ ,64170,64300,72,43.416667,-0.633333,2.11
+ Lagor ,LAGOR ,64150,64301,72,43.383333,-0.65,0.73
+ Lagos ,LAGOS ,64800,64302,72,43.216667,-0.216667,1.34
+ Laguinge-Restoue ,LAGUINGE RESTOUE ,64470,64303,72,43.1,-0.85,1.9
+ Lahonce ,LAHONCE ,64990,64304,72,43.483333,-1.383333,2.1
+ Lahontan ,LAHONTAN ,64270,64305,72,43.533333,-0.966667,1.72
+ Lahourcade ,LAHOURCADE ,64150,64306,72,43.35,-0.616667,0.67
+ Lalongue ,LALONGUE ,64350,64307,72,43.483333,-0.183333,1.44
+ Lalonquette ,LALONQUETTE ,64450,64308,72,43.483333,-0.316667,1.3
+ Lamayou ,LAMAYOU ,64460,64309,72,43.383333,-0.033333,1.88
+ Lannecaube ,LANNECAUBE ,64350,64311,72,43.483333,-0.216667,1.73
+ Lanneplaa ,LANNEPLAA ,64300,64312,72,43.45,-0.816667,1.13
+ Lantabat ,LANTABAT ,64640,64313,72,43.25,-1.116667,1.87
+ Larceveau-Arros-Cibits ,LARCEVEAU ARROS CIBITS ,64120,64314,72,43.233333,-1.083333,1.22
+ Laroin ,LAROIN ,64110,64315,72,43.3,-0.433333,1.42
+ Larrau ,LARRAU ,64560,64316,72,43.016667,-0.95,2.6
+ Larressore ,LARRESSORE ,64480,64317,72,43.366667,-1.433333,2.25
+ Larreule ,LARREULE ,64410,64318,72,43.483333,-0.466667,1.3
+ Larribar-Sorhapuru ,LARRIBAR SORHAPURU ,64120,64319,72,43.3,-1.016667,1.02
+ Laruns ,LARUNS ,64440,64320,72,42.983333,-0.416667,2.88
+ Lasclaveries ,LASCLAVERIES ,64450,64321,72,43.433333,-0.283333,1.68
+ Lasse ,LASSE ,64220,64322,72,43.15,-1.266667,1.76
+ Lasseube ,LASSEUBE ,64290,64324,72,43.233333,-0.483333,0.79
+ Lasseubetat ,LASSEUBETAT ,64290,64325,72,43.166667,-0.45,1.34
+ Lay-Lamidou ,LAY LAMIDOU ,64190,64326,72,43.283333,-0.716667,1.57
+ Lecumberry ,LECUMBERRY ,64220,64327,72,43.133333,-1.133333,1.62
+ Ledeuix ,LEDEUIX ,64400,64328,72,43.216667,-0.616667,0.93
+ Lée ,LEE ,64320,64329,72,43.283333,-0.283333,1.14
+ Lées-Athas ,LEES ATHAS ,64490,64330,72,42.975,-0.616667,-1
+ Lembeye ,LEMBEYE ,64350,64331,72,43.45,-0.1,1.68
+ Lème ,LEME ,64450,64332,72,43.5,-0.366667,1.44
+ Lendresse ,LENDRESSE ,64300,64333,72,43.416667,-0.666667,1.3
+ Léren ,LEREN ,64270,64334,72,43.5,-1.033333,1.44
+ Lescar ,LESCAR ,64230,64335,72,43.333333,-0.416667,1.15
+ Lescun ,LESCUN ,64490,64336,72,42.933333,-0.591667,-1
+ Lespourcy ,LESPOURCY ,64160,64338,72,43.366667,-0.15,1.54
+ Lestelle-Bétharram ,LESTELLE BETHARRAM ,64800,64339,72,43.133333,-0.216667,1.62
+ Lichans-Sunhar ,LICHANS SUNHAR ,64470,64340,72,43.1,-0.866667,1.9
+ Lichos ,LICHOS ,64130,64341,72,43.3,-0.866667,1.22
+ Licq-Athérey ,LICQ ATHEREY ,64560,64342,72,43.066667,-0.866667,2.18
+ Limendous ,LIMENDOUS ,64420,64343,72,43.283333,-0.183333,1.44
+ Livron ,LIVRON ,64530,64344,72,43.233333,-0.133333,1.59
+ Lohitzun-Oyhercq ,LOHITZUN OYHERCQ ,64120,64345,72,43.283333,-0.966667,1.06
+ Lombia ,LOMBIA ,64160,64346,72,43.333333,-0.133333,1.64
+ Lonçon ,LONCON ,64410,64347,72,43.466667,-0.416667,1.17
+ Lons ,LONS ,64140,64348,72,43.316667,-0.4,1
+ Loubieng ,LOUBIENG ,64300,64349,72,43.433333,-0.75,0.89
+ Louhossoa ,LOUHOSSOA ,64250,64350,72,43.316667,-1.35,2
+ Lourdios-Ichère ,LOURDIOS ICHERE ,64570,64351,72,43.05,-0.666667,2.32
+ Lourenties ,LOURENTIES ,64420,64352,72,43.283333,-0.166667,1.49
+ Louvie-Juzon ,LOUVIE JUZON ,64260,64353,72,43.1,-0.416667,1.9
+ Louvie-Soubiron ,LOUVIE SOUBIRON ,64440,64354,72,43,-0.433333,2.74
+ Louvigny ,LOUVIGNY ,64410,64355,72,43.5,-0.45,1.44
+ Lucarré ,LUCARRE ,64350,64357,72,43.4,-0.083333,1.73
+ Lucgarier ,LUCGARIER ,64420,64358,72,43.233333,-0.183333,1.44
+ Lucq-de-Béarn ,LUCQ DE BEARN ,64360,64359,72,43.3,-0.666667,2.17
+ Lurbe-Saint-Christau ,LURBE SAINT CHRISTAU ,64660,64360,72,43.116667,-0.616667,1.76
+ Lussagnet-Lusson ,LUSSAGNET LUSSON ,64160,64361,72,43.433333,-0.2,1.39
+ Luxe-Sumberraute ,LUXE SUMBERRAUTE ,64120,64362,72,43.35,-1.083333,1.22
+ Lys ,LYS ,64260,64363,72,43.133333,-0.35,1.69
+ Macaye ,MACAYE ,64240,64364,72,43.333333,-1.316667,1.9
+ Malaussanne ,MALAUSSANNE ,64410,64365,72,43.566667,-0.466667,2
+ Mascaraas-Haron ,MASCARAAS HARON ,64330,64366,72,43.55,-0.216667,1.86
+ Maslacq ,MASLACQ ,64300,64367,72,43.433333,-0.7,0.89
+ Masparraute ,MASPARRAUTE ,64120,64368,72,43.383333,-1.083333,1.22
+ Maucor ,MAUCOR ,64160,64370,72,43.35,-0.283333,1.14
+ Mauléon-Licharre ,MAULEON LICHARRE ,64130,64371,72,43.233333,-0.883333,0.79
+ Maure ,MAURE ,64460,64372,72,43.383333,-0.066667,1.78
+ Mazères-Lezons ,MAZERES LEZONS ,64110,64373,72,43.266667,-0.35,0.95
+ Mazerolles ,MAZEROLLES ,64230,64374,72,43.45,-0.466667,1.36
+ Méharin ,MEHARIN ,64120,64375,72,43.333333,-1.15,1.45
+ Meillon ,MEILLON ,64510,64376,72,43.266667,-0.316667,1.48
+ Mendionde ,MENDIONDE ,64240,64377,72,43.35,-1.3,1.85
+ Menditte ,MENDITTE ,64130,64378,72,43.166667,-0.9,1.34
+ Mendive ,MENDIVE ,64220,64379,72,43.133333,-1.133333,1.62
+ Méracq ,MERACQ ,64410,64380,72,43.516667,-0.383333,1.58
+ Méritein ,MERITEIN ,64190,64381,72,43.333333,-0.766667,0.43
+ Mesplède ,MESPLEDE ,64370,64382,72,43.483333,-0.65,1.79
+ Mialos ,MIALOS ,64410,64383,72,43.5,-0.4,1.44
+ Mifaget ,MIFAGET ,64800,64384,72,43.116667,-0.316667,1.76
+ Miossens-Lanusse ,MIOSSENS LANUSSE ,64450,64385,72,43.466667,-0.3,1.17
+ Mirepeix ,MIREPEIX ,64800,64386,72,43.183333,-0.25,1.24
+ Momas ,MOMAS ,64230,64387,72,43.45,-0.433333,1.38
+ Momy ,MOMY ,64350,64388,72,43.4,-0.116667,1.64
+ Monassut-Audiracq ,MONASSUT AUDIRACQ ,64160,64389,72,43.416667,-0.2,1.39
+ Moncaup ,MONCAUP ,64350,64390,72,43.483333,-0.066667,1.78
+ Moncla ,MONCLA ,64330,64392,72,43.583333,-0.233333,2.14
+ Monein ,MONEIN ,64360,64393,72,43.333333,-0.583333,0.51
+ Monpézat ,MONPEZAT ,64350,64394,72,43.5,-0.066667,1.78
+ Monségur ,MONSEGUR ,64460,64395,72,43.4318,-0.01679,-1
+ Mont ,MONT ,64300,64396,72,43.433333,-0.65,1.37
+ Montagut ,MONTAGUT ,64410,64397,72,43.566667,-0.5,2
+ Montaner ,MONTANER ,64460,64398,72,43.35, ,1.98
+ Montardon ,MONTARDON ,64121,64399,72,43.366667,-0.35,1
+ Mont-Disse ,MONT DISSE ,64330,64401,72,43.566667,-0.15,2
+ Montestrucq ,MONTESTRUCQ ,64300,64402,72,43.433333,-0.816667,1.23
+ Montfort ,MONTFORT ,64190,64403,72,43.366667,-0.85,1.22
+ Montory ,MONTORY ,64470,64404,72,43.1,-0.816667,1.9
+ Morlaas ,MORLAAS ,64160,64405,72,43.35,-0.266667,1.19
+ Morlanne ,MORLANNE ,64370,64406,72,43.516667,-0.533333,1.58
+ Mouguerre ,MOUGUERRE ,64990,64407,72,43.466667,-1.416667,2.2
+ Mouhous ,MOUHOUS ,64330,64408,72,43.483333,-0.25,1.34
+ Moumour ,MOUMOUR ,64400,64409,72,43.216667,-0.666667,0.93
+ Mourenx ,MOURENX ,64150,64410,72,43.383333,-0.6,0.65
+ Musculdy ,MUSCULDY ,64130,64411,72,43.2,-0.95,1.29
+ Nabas ,NABAS ,64190,64412,72,43.333333,-0.866667,1.34
+ Narcastet ,NARCASTET ,64510,64413,72,43.25,-0.316667,1.11
+ Narp ,NARP ,64190,64414,72,43.366667,-0.833333,0.97
+ Navailles-Angos ,NAVAILLES ANGOS ,64450,64415,72,43.416667,-0.333333,1.2
+ Navarrenx ,NAVARRENX ,64190,64416,72,43.333333,-0.75,0.73
+ Noguères ,NOGUERES ,64150,64418,72,43.366667,-0.6,0.65
+ Nousty ,NOUSTY ,64420,64419,72,43.266667,-0.216667,1.34
+ Ogenne-Camptort ,OGENNE CAMPTORT ,64190,64420,72,43.316667,-0.7,1.64
+ Ogeu-les-Bains ,OGEU LES BAINS ,64680,64421,72,43.15,-0.5,1.48
+ Oloron-Sainte-Marie ,OLORON SAINTE MARIE ,64400,64422,72,43.2,-0.6,1.07
+ Oraas ,ORAAS ,64390,64423,72,43.433333,-0.983333,1.64
+ Ordiarp ,ORDIARP ,64130,64424,72,43.183333,-0.933333,1.21
+ Orègue ,OREGUE ,64120,64425,72,43.4,-1.133333,1.67
+ Orin ,ORIN ,64400,64426,72,43.233333,-0.666667,0.79
+ Orion ,ORION ,64390,64427,72,43.416667,-0.866667,1.42
+ Orriule ,ORRIULE ,64390,64428,72,43.4,-0.866667,1.33
+ Orsanco ,ORSANCO ,64120,64429,72,43.3,-1.066667,1.17
+ Orthez ,ORTHEZ ,64300,64430,72,43.483333,-0.766667,1.3
+ Os-Marsillon ,OS MARSILLON ,64150,64431,72,43.383333,-0.616667,0.47
+ Ossas-Suhare ,OSSAS SUHARE ,64470,64432,72,43.133333,-0.883333,1.62
+ Osse-en-Aspe ,OSSE EN ASPE ,64490,64433,72,43,-0.616667,2.74
+ Ossenx ,OSSENX ,64190,64434,72,43.366667,-0.816667,0.77
+ Osserain-Rivareyte ,OSSERAIN RIVAREYTE ,64390,64435,72,43.383333,-0.95,0.82
+ Ossès ,OSSES ,64780,64436,72,43.233333,-1.283333,1.81
+ Ostabat-Asme ,OSTABAT ASME ,64120,64437,72,43.25,-1.066667,1.17
+ Ouillon ,OUILLON ,64160,64438,72,43.316667,-0.233333,1.29
+ Ousse ,OUSSE ,64320,64439,72,43.283333,-0.266667,1.29
+ Ozenx Montestrucq ,OZENX MONTESTRUCQ ,64300,64440,72,43.45,-0.783333,1.03
+ Pagolle ,PAGOLLE ,64120,64441,72,43.233333,-0.983333,1.28
+ Parbayse ,PARBAYSE ,64360,64442,72,43.333333,-0.55,0.51
+ Pardies ,PARDIES ,64150,64443,72,43.366667,-0.583333,1.06
+ Pardies-Piétat ,PARDIES PIETAT ,64800,64444,72,43.216667,-0.3,1.29
+ Pau ,PAU ,64000,64445,72,43.3,-0.366667,0.9
+ Peyrelongue-Abos ,PEYRELONGUE ABOS ,64350,64446,72,43.416667,-0.1,1.68
+ Piets-Plasence-Moustrou ,PIETS PLASENCE MOUSTROU ,64410,64447,72,43.516667,-0.5,1.58
+ Poey-de-Lescar ,POEY DE LESCAR ,64230,64448,72,43.35,-0.466667,0.66
+ Poey-d'Oloron ,POEY D OLORON ,64400,64449,72,43.25,-0.666667,0.76
+ Pomps ,POMPS ,64370,64450,72,43.5,-0.533333,1.44
+ Ponson-Debat-Pouts ,PONSON DEBAT POUTS ,64460,64451,72,43.333333,-0.033333,1.88
+ Ponson-Dessus ,PONSON DESSUS ,64460,64452,72,43.316667,-0.05,1.83
+ Pontacq ,PONTACQ ,64530,64453,72,43.183333,-0.116667,1.64
+ Pontiacq-Viellepinte ,PONTIACQ VIELLEPINTE ,64460,64454,72,43.366667,-0.05,1.83
+ Portet ,PORTET ,64330,64455,72,43.566667,-0.183333,2
+ Pouliacq ,POULIACQ ,64410,64456,72,43.533333,-0.35,1.72
+ Poursiugues-Boucoue ,POURSIUGUES BOUCOUE ,64410,64457,72,43.55,-0.366667,1.86
+ Préchacq-Josbaig ,PRECHACQ JOSBAIG ,64190,64458,72,43.266667,-0.716667,1.75
+ Préchacq-Navarrenx ,PRECHACQ NAVARRENX ,64190,64459,72,43.283333,-0.716667,1.57
+ Précilhon ,PRECILHON ,64400,64460,72,43.2,-0.583333,1.21
+ Puyoô ,PUYOO ,64270,64461,72,43.533333,-0.916667,1.72
+ Ramous ,RAMOUS ,64270,64462,72,43.516667,-0.9,1.58
+ Rébénacq ,REBENACQ ,64260,64463,72,43.166667,-0.383333,1.75
+ Ribarrouy ,RIBARROUY ,64330,64464,72,43.533333,-0.266667,1.72
+ Riupeyrous ,RIUPEYROUS ,64160,64465,72,43.4,-0.233333,1.29
+ Rivehaute ,RIVEHAUTE ,64190,64466,72,43.35,-0.883333,1.67
+ Rontignon ,RONTIGNON ,64110,64467,72,43.266667,-0.333333,1.13
+ Roquiague ,ROQUIAGUE ,64130,64468,72,43.2,-0.833333,1.07
+ Saint-Abit ,SAINT ABIT ,64800,64469,72,43.2,-0.3,1.1
+ Saint-Armou ,SAINT ARMOU ,64160,64470,72,43.416667,-0.3,1.32
+ Saint-Boès ,SAINT BOES ,64300,64471,72,43.533333,-0.8,1.72
+ Saint-Castin ,SAINT CASTIN ,64160,64472,72,43.383333,-0.3,1.18
+ Sainte-Colome ,SAINTE COLOME ,64260,64473,72,43.1,-0.4,1.9
+ Saint-Dos ,SAINT DOS ,64270,64474,72,43.466667,-1.016667,1.17
+ Sainte-Engrâce ,SAINTE ENGRACE ,64560,64475,72,43,-0.816667,2.74
+ Saint-Esteben ,SAINT ESTEBEN ,64640,64476,72,43.333333,-1.216667,1.61
+ Saint-Étienne-de-Baïgorry ,SAINT ETIENNE DE BAIGORRY,64430,64477,72,43.166667,-1.35,2
+ Saint-Faust ,SAINT FAUST ,64110,64478,72,43.266667,-0.45,1.74
+ Saint-Girons ,SAINT GIRONS ,64300,64479,72,43.55,-0.833333,1.86
+ Saint-Gladie-Arrive-Munein ,SAINT GLADIE ARRIVE MUNEIN,64390,64480,72,43.383333,-0.933333,0.77
+ Saint-Goin ,SAINT GOIN ,64400,64481,72,43.25,-0.7,1.22
+ Saint-Jammes ,SAINT JAMMES ,64160,64482,72,43.35,-0.25,1.24
+ Saint-Jean-de-Luz ,SAINT JEAN DE LUZ,64500,64483,72,43.383333,-1.666667,-1
+ Saint-Jean-le-Vieux ,SAINT JEAN LE VIEUX,64220,64484,72,43.166667,-1.183333,1.51
+ Saint-Jean-Pied-de-Port ,SAINT JEAN PIED DE,64220,64485,72,43.166667,-1.233333,1.66
+ Saint-Jean-Poudge ,SAINT JEAN POUDGE ,64330,64486,72,43.533333,-0.183333,1.72
+ Saint-Just-Ibarre ,SAINT JUST IBARRE ,64120,64487,72,43.2,-1.05,1.47
+ Saint-Laurent-Bretagne ,SAINT LAURENT BRETAGNE ,64160,64488,72,43.383333,-0.2,1.39
+ Saint-Martin-d'Arberoue ,SAINT MARTIN D ARBEROUE,64640,64489,72,43.35,-1.2,1.56
+ Saint-Martin-d'Arrossa ,SAINT MARTIN D ARROSSA,64780,64490,72,43.233333,-1.316667,1.9
+ Saint-Médard ,SAINT MEDARD ,64370,64491,72,43.533333,-0.583333,1.72
+ Saint-Michel ,SAINT MICHEL ,64220,64492,72,43.133333,-1.216667,-1
+ Saint-Palais ,SAINT PALAIS ,64120,64493,72,43.333333,-1.033333,1.07
+ Saint-Pé-de-Léren ,SAINT PE DE LEREN,64270,64494,72,43.483333,-1.033333,1.3
+ Saint-Pée-sur-Nivelle ,SAINT PEE SUR NIVELLE,64310,64495,72,43.35,-1.55,2.59
+ Saint-Pierre-d'Irube ,SAINT PIERRE D IRUBE,64990,64496,72,43.483333,-1.466667,2.35
+ Sainte-Suzanne ,SAINTE SUZANNE ,64300,64497,72,43.483333,-0.8,1.3
+ Saint-Vincent ,SAINT VINCENT ,64800,64498,72,43.158333,-0.15,-1
+ Salies-de-Béarn ,SALIES DE BEARN ,64270,64499,72,43.483333,-0.916667,1.3
+ Salles-Mongiscard ,SALLES MONGISCARD ,64300,64500,72,43.5,-0.833333,1.44
+ Sallespisse ,SALLESPISSE ,64300,64501,72,43.533333,-0.716667,1.72
+ Sames ,SAMES ,64520,64502,72,43.516667,-1.15,1.58
+ Samsons-Lion ,SAMSONS LION ,64350,64503,72,43.433333,-0.116667,1.64
+ Sare ,SARE ,64310,64504,72,43.316667,-1.583333,2.69
+ Sarpourenx ,SARPOURENX ,64300,64505,72,43.45,-0.7,1.03
+ Sarrance ,SARRANCE ,64490,64506,72,43.05,-0.6,2.32
+ Saubole ,SAUBOLE ,64420,64507,72,43.316667,-0.116667,1.9
+ Saucède ,SAUCEDE ,64400,64508,72,43.266667,-0.683333,1.2
+ Sauguis-Saint-Étienne ,SAUGUIS SAINT ETIENNE ,64470,64509,72,43.15,-0.883333,1.48
+ Sault-de-Navailles ,SAULT DE NAVAILLES ,64300,64510,72,43.55,-0.666667,1.86
+ Sauvagnon ,SAUVAGNON ,64230,64511,72,43.4,-0.383333,1.38
+ Sauvelade ,SAUVELADE ,64150,64512,72,43.4,-0.7,2.1
+ Séby ,SEBY ,64410,64514,72,43.483333,-0.4,1.3
+ Sedze-Maubecq ,SEDZE MAUBECQ ,64160,64515,72,43.35,-0.116667,1.79
+ Sedzère ,SEDZERE ,64160,64516,72,43.35,-0.166667,1.49
+ Séméacq-Blachon ,SEMEACQ BLACHON ,64350,64517,72,43.5,-0.116667,1.64
+ Serres-Castet ,SERRES CASTET ,64121,64519,72,43.383333,-0.35,1
+ Serres-Morlaas ,SERRES MORLAAS ,64160,64520,72,43.333333,-0.25,1.24
+ Serres-Sainte-Marie ,SERRES SAINTE MARIE ,64170,64521,72,43.416667,-0.55,0.75
+ Sévignacq-Meyracq ,SEVIGNACQ MEYRACQ ,64260,64522,72,43.116667,-0.416667,1.76
+ Simacourbe ,SIMACOURBE ,64350,64524,72,43.45,-0.166667,1.49
+ Siros ,SIROS ,64230,64525,72,43.35,-0.483333,0.85
+ Soumoulou ,SOUMOULOU ,64420,64526,72,43.266667,-0.183333,1.44
+ Souraïde ,SOURAIDE ,64250,64527,72,43.35,-1.466667,2.35
+ Suhescun ,SUHESCUN ,64780,64528,72,43.233333,-1.2,1.56
+ Sus ,SUS ,64190,64529,72,43.3,-0.766667,0.71
+ Susmiou ,SUSMIOU ,64190,64530,72,43.316667,-0.766667,0.51
+ Tabaille-Usquain ,TABAILLE USQUAIN ,64190,64531,72,43.366667,-0.9,2.03
+ Tadousse-Ussau ,TADOUSSE USSAU ,64330,64532,72,43.55,-0.183333,1.86
+ Tardets-Sorholus ,TARDETS SORHOLUS ,64470,64533,72,43.116667,-0.85,1.76
+ Taron-Sadirac-Viellenave ,TARON SADIRAC VIELLENAVE ,64330,64534,72,43.516667,-0.25,1.58
+ Tarsacq ,TARSACQ ,64360,64535,72,43.35,-0.533333,1.01
+ Thèze ,THEZE ,64450,64536,72,43.483333,-0.35,1.3
+ Trois-Villes ,TROIS VILLES ,64470,64537,72,43.133333,-0.866667,1.62
+ Uhart-Cize ,UHART CIZE ,64220,64538,72,43.166667,-1.233333,1.66
+ Uhart-Mixe ,UHART MIXE ,64120,64539,72,43.283333,-1.016667,1.02
+ Urcuit ,URCUIT ,64990,64540,72,43.483333,-1.333333,1.95
+ Urdès ,URDES ,64370,64541,72,43.45,-0.583333,1.03
+ Urdos ,URDOS ,64490,64542,72,42.875,-0.558333,-1
+ Urepel ,UREPEL ,64430,64543,72,43.066667,-1.416667,2.2
+ Urost ,UROST ,64160,64544,72,43.333333,-0.15,1.54
+ Urrugne ,URRUGNE ,64122,64545,72,43.358333,-1.7,-1
+ Urt ,URT ,64240,64546,72,43.5,-1.283333,1.81
+ Ustaritz ,USTARITZ ,64480,64547,72,43.4,-1.45,2.3
+ Uzan ,UZAN ,64370,64548,72,43.483333,-0.5,1.3
+ Uzein ,UZEIN ,64230,64549,72,43.4,-0.433333,0.7
+ Uzos ,UZOS ,64110,64550,72,43.266667,-0.333333,1.13
+ Verdets ,VERDETS ,64400,64551,72,43.233333,-0.65,0.79
+ Vialer ,VIALER ,64330,64552,72,43.5,-0.166667,1.49
+ Viellenave-sur-Bidouze ,VIELLENAVE SUR BIDOUZE ,64270,64553,72,43.416667,-1.066667,1.7
+ Viellenave-d'Arthez ,VIELLENAVE D ARTHEZ ,64170,64554,72,43.416667,-0.483333,1.46
+ Viellenave-de-Navarrenx ,VIELLENAVE DE NAVARRENX ,64190,64555,72,43.35,-0.783333,0.35
+ Vielleségure ,VIELLESEGURE ,64150,64556,72,43.35,-0.683333,1.69
+ Vignes ,VIGNES ,64410,64557,72,43.516667,-0.416667,1.58
+ Villefranque ,VILLEFRANQUE ,64990,64558,72,43.433333,-1.45,2.3
+ Viodos-Abense-de-Bas ,VIODOS ABENSE DE BAS,64130,64559,72,43.25,-0.883333,0.65
+ Viven ,VIVEN ,64450,64560,72,43.466667,-0.366667,1.17
+ Gabas ,GABAS ,64440,64901,72,42.883333,-0.425,-1
+ Béhobie ,BEHOBIE ,64700,64902,72,43.358333,-1.758333,-1
+ Gourette ,GOURETTE ,64440,64904,72,42.975,-0.391667,-1
+ Adast ,ADAST ,65260,65001,72,42.966667,-0.083333,1.7
+ Adé ,ADE ,65100,65002,72,43.133333,-0.033333,1.41
+ Agos-Vidalos ,AGOS VIDALOS ,65400,65004,72,43.033333,-0.066667,1.6
+ Allier ,ALLIER ,65360,65005,72,43.183333,0.116667,0.91
+ Ancizan ,ANCIZAN ,65440,65006,72,42.883333,0.333333,1.77
+ Andrest ,ANDREST ,65390,65007,72,43.316667,0.066667,1.26
+ Anéran-Camors ,ANERAN CAMORS ,65510,65008,72,42.833333,0.416667,2.12
+ Anères ,ANERES ,65150,65009,72,43.066667,0.483333,1.58
+ Angos ,ANGOS ,65690,65010,72,43.2,0.15,0.73
+ Les Angles ,LES ANGLES ,65100,65011,72,43.083333,0.016667,1.12
+ Anla ,ANLA ,65370,65012,72,43,0.583333,2.15
+ Ansost ,ANSOST ,65140,65013,72,43.433333,0.116667,2.08
+ Antichan ,ANTICHAN ,65370,65014,72,43,0.583333,2.15
+ Antin ,ANTIN ,65220,65015,72,43.333333,0.283333,1.38
+ Antist ,ANTIST ,65200,65016,72,43.116667,0.133333,0.58
+ Aragnouet ,ARAGNOUET ,65170,65017,72,42.791667,0.225,-1
+ Arbéost ,ARBEOST ,65560,65018,72,43,-0.283333,2.86
+ Arcizac-Adour ,ARCIZAC ADOUR ,65360,65019,72,43.15,0.1,1.04
+ Arcizac-ez-Angles ,ARCIZAC EZ ANGLES ,65100,65020,72,43.1,0.016667,1.12
+ Arcizans-Avant ,ARCIZANS AVANT ,65400,65021,72,42.983333,-0.1,1.8
+ Arcizans-Dessus ,ARCIZANS DESSUS ,65400,65022,72,42.983333,-0.15,2.09
+ Ardengost ,ARDENGOST ,65240,65023,72,42.933333,0.4,1.42
+ Argelès ,ARGELES ,65200,65024,72,43.083333,0.2,0.9
+ Argelès-Gazost ,ARGELES GAZOST ,65400,65025,72,43.016667,-0.1,1.8
+ Aries-Espénan ,ARIES ESPENAN ,65230,65026,72,43.283333,0.533333,1.87
+ Armenteule ,ARMENTEULE ,65510,65027,72,42.816667,0.416667,2.24
+ Arné ,ARNE ,65670,65028,72,43.183333,0.516667,1.77
+ Arras-en-Lavedan ,ARRAS EN LAVEDAN ,65400,65029,72,42.983333,-0.133333,1.99
+ Arreau ,ARREAU ,65240,65031,72,42.9,0.366667,1.66
+ Arrodets-ez-Angles ,ARRODETS EZ ANGLES ,65100,65033,72,43.066667,0.033333,1.1
+ Arrodets ,ARRODETS ,65130,65034,72,43.033333,0.283333,1.07
+ Artagnan ,ARTAGNAN ,65500,65035,72,43.4,0.083333,1.85
+ Artalens-Souin ,ARTALENS SOUIN ,65400,65036,72,42.966667,-0.05,1.51
+ Artiguemy ,ARTIGUEMY ,65130,65037,72,43.133333,0.25,1.47
+ Aspin-Aure ,ASPIN AURE ,65240,65039,72,42.933333,0.35,1.42
+ Aspin-en-Lavedan ,ASPIN EN LAVEDAN ,65100,65040,72,43.083333,-0.05,1.51
+ Asque ,ASQUE ,65130,65041,72,43.05,0.25,0.96
+ Asté ,ASTE ,65200,65042,72,43.033333,0.166667,1.02
+ Astugue ,ASTUGUE ,65200,65043,72,43.1,0.066667,1.48
+ Aubarède ,AUBAREDE ,65350,65044,72,43.266667,0.25,1.23
+ Aucun ,AUCUN ,65400,65045,72,42.966667,-0.166667,2.18
+ Aureilhan ,AUREILHAN ,65800,65047,72,43.25,0.1,1.48
+ Aurensan ,AURENSAN ,65390,65048,72,43.3,0.083333,1.15
+ Auriébat ,AURIEBAT ,65700,65049,72,43.5,0.083333,2.55
+ Avajan ,AVAJAN ,65240,65050,72,42.833333,0.4,2.12
+ Aventignan ,AVENTIGNAN ,65660,65051,72,43.066667,0.55,1.96
+ Averan ,AVERAN ,65380,65052,72,43.133333, ,1.22
+ Aveux ,AVEUX ,65370,65053,72,43,0.566667,2.06
+ Ayros-Arbouix ,AYROS ARBOUIX ,65400,65055,72,43,-0.066667,1.6
+ Ayzac-Ost ,AYZAC OST ,65400,65056,72,43.016667,-0.1,1.8
+ Azereix ,AZEREIX ,65380,65057,72,43.216667,-0.016667,1.36
+ Azet ,AZET ,65170,65058,72,42.816667,0.35,2.24
+ Bagnères-de-Bigorre ,BAGNERES DE BIGORRE ,65200,65059,72,43.066667,0.15,0.49
+ Banios ,BANIOS ,65200,65060,72,43.033333,0.233333,1.78
+ Barbachen ,BARBACHEN ,65140,65061,72,43.433333,0.133333,2.08
+ Barbazan-Debat ,BARBAZAN DEBAT ,65690,65062,72,43.2,0.116667,1.35
+ Barbazan-Dessus ,BARBAZAN DESSUS ,65360,65063,72,43.166667,0.133333,1.36
+Bareilles, ,65240,65064,72,42.9,0.433333,1.72
+ Barlest ,BARLEST ,65100,65065,72,43.15,-0.1,2.24
+ Barrancoueu ,BARRANCOUEU ,65240,65066,72,42.916667,0.333333,1.54
+ Barry ,BARRY ,65380,65067,72,43.15,0.016667,1.12
+ Barthe ,BARTHE ,65230,65068,72,43.283333,0.466667,1.48
+ La Barthe-de-Neste ,LA BARTHE DE NESTE,65250,65069,72,43.083333,0.383333,1.26
+ Bartrés ,BARTRES ,65100,65070,72,43.116667,-0.033333,1.41
+ Batsère ,BATSERE ,65130,65071,72,43.066667,0.283333,0.49
+ Bazet ,BAZET ,65460,65072,72,43.3,0.083333,1.15
+ Bazillac ,BAZILLAC ,65140,65073,72,43.35,0.1,1.5
+ Bazordan ,BAZORDAN ,65670,65074,72,43.216667,0.533333,1.87
+ Bazus-Aure ,BAZUS AURE ,65170,65075,72,42.85,0.35,2.01
+ Bazus-Neste ,BAZUS NESTE ,65250,65076,72,43.033333,0.383333,1
+ Beaucens ,BEAUCENS ,65400,65077,72,42.966667,-0.05,1.51
+ Beaudéan ,BEAUDEAN ,65710,65078,72,43.033333,0.166667,1.1
+ Bégole ,BEGOLE ,65190,65079,72,43.15,0.333333,1.84
+ Bénac ,BENAC ,65380,65080,72,43.15,0.016667,1.12
+ Benqué ,BENQUE ,65130,65081,72,43.1,0.283333,0.52
+ Berbérust-Lias ,BERBERUST LIAS ,65100,65082,72,43.033333,-0.033333,1.41
+ Bernac-Debat ,BERNAC DEBAT ,65360,65083,72,43.166667,0.116667,0.54
+ Bernac-Dessus ,BERNAC DESSUS ,65360,65084,72,43.166667,0.116667,0.54
+ Bernadets-Debat ,BERNADETS DEBAT ,65220,65085,72,43.35,0.316667,1.5
+ Bernadets-Dessus ,BERNADETS DESSUS ,65190,65086,72,43.216667,0.3,1.26
+ Bertren ,BERTREN ,65370,65087,72,43,0.616667,2.35
+ Betbèze ,BETBEZE ,65230,65088,72,43.283333,0.566667,2.06
+ Betpouey ,BETPOUEY ,65120,65089,72,42.883333,0.033333,1.77
+ Betpouy ,BETPOUY ,65230,65090,72,43.283333,0.45,1.38
+ Bettes ,BETTES ,65130,65091,72,43.083333,0.216667,1.48
+ Beyrède-Jumet ,BEYREDE JUMET ,65410,65092,72,42.95,0.383333,1.31
+ Bize ,BIZE ,65150,65093,72,43.033333,0.483333,1.58
+ Bizous ,BIZOUS ,65150,65094,72,43.066667,0.433333,1.39
+ Bonnefont ,BONNEFONT ,65220,65095,72,43.25,0.35,1.47
+ Bonnemazon ,BONNEMAZON ,65130,65096,72,43.1,0.266667,0.59
+ Bonrepos ,BONREPOS ,65330,65097,72,43.2,0.383333,1
+ Bôo-Silhen ,BOO SILHEN ,65400,65098,72,43.016667,-0.066667,1.6
+ Bordères-Louron ,BORDERES LOURON ,65590,65099,72,42.883333,0.4,1.77
+ Bordères-sur-l'Échez ,BORDERES SUR L ECHEZ,65320,65100,72,43.266667,0.05,1.31
+ Bordes ,BORDES ,65190,65101,72,43.2,0.216667,0.44
+ Bouilh-Devant ,BOUILH DEVANT ,65140,65102,72,43.333333,0.266667,1.88
+ Bouilh-Pereuilh ,BOUILH PEREUILH ,65350,65103,72,43.3,0.183333,1.15
+ Boulin ,BOULIN ,65350,65104,72,43.25,0.133333,1.32
+ Bourisp ,BOURISP ,65170,65106,72,42.833333,0.333333,2.12
+ Bourréac ,BOURREAC ,65100,65107,72,43.1, ,1.22
+ Bours ,BOURS ,65460,65108,72,43.283333,0.1,1.03
+ Bramevaque ,BRAMEVAQUE ,65370,65109,72,42.983333,0.566667,2.06
+ Bugard ,BUGARD ,65220,65110,72,43.266667,0.316667,0.95
+ Bulan ,BULAN ,65130,65111,72,43.033333,0.283333,1.07
+ Bun ,BUN ,65400,65112,72,42.966667,-0.15,2.09
+ Burg ,BURG ,65190,65113,72,43.183333,0.333333,1.73
+ Buzon ,BUZON ,65140,65114,72,43.433333,0.15,2.08
+ Cabanac ,CABANAC ,65350,65115,72,43.266667,0.233333,0.91
+ Cadéac ,CADEAC ,65240,65116,72,42.9,0.35,1.66
+ Cadeilhan-Trachère ,CADEILHAN TRACHERE ,65170,65117,72,42.816667,0.316667,2.24
+ Caharet ,CAHARET ,65190,65118,72,43.133333,0.316667,1.71
+ Caixon ,CAIXON ,65500,65119,72,43.4,0.016667,1.85
+ Calavanté ,CALAVANTE ,65190,65120,72,43.2,0.166667,1.23
+ Camalès ,CAMALES ,65500,65121,72,43.366667,0.083333,1.61
+ Camous ,CAMOUS ,65410,65122,72,42.95,0.383333,1.31
+ Campan ,CAMPAN ,65710,65123,72,43.016667,0.166667,0.87
+ Camparan ,CAMPARAN ,65170,65124,72,42.833333,0.35,2.12
+ Campistrous ,CAMPISTROUS ,65300,65125,72,43.15,0.383333,1
+ Campuzan ,CAMPUZAN ,65230,65126,72,43.266667,0.416667,1.72
+ Capvern ,CAPVERN ,65130,65127,72,43.1,0.316667,1.03
+ Castelbajac ,CASTELBAJAC ,65330,65128,72,43.183333,0.35,1.39
+ Castelnau-Magnoac ,CASTELNAU MAGNOAC ,65230,65129,72,43.3,0.5,1.67
+ Castelnau-Rivière-Basse ,CASTELNAU RIVIERE BASSE ,65700,65130,72,43.583333,-0.03127,-1
+ Castelvieilh ,CASTELVIEILH ,65350,65131,72,43.283333,0.2,1.03
+ Castera-Lanusse ,CASTERA LANUSSE ,65190,65132,72,43.166667,0.283333,0.91
+ Castera-Lou ,CASTERA LOU ,65350,65133,72,43.316667,0.15,1.26
+ Casterets ,CASTERETS ,65230,65134,72,43.316667,0.583333,2.15
+ Castillon ,CASTILLON ,65130,65135,72,43.083333,0.216667,1.48
+ Caussade-Rivière ,CAUSSADE RIVIERE ,65700,65137,72,43.516667,0.033333,2.66
+ Cauterets ,CAUTERETS ,65110,65138,72,42.883333,-0.116667,1.89
+ Cazarilh ,CAZARILH ,65370,65139,72,42.966667,0.583333,2.15
+ Cazaux-Debat ,CAZAUX DEBAT ,65590,65140,72,42.883333,0.383333,1.77
+ Chelle-Debat ,CHELLE DEBAT ,65350,65142,72,43.3,0.233333,1.15
+ Chelle-Spou ,CHELLE SPOU ,65130,65143,72,43.133333,0.25,1.47
+ Cheust ,CHEUST ,65100,65144,72,43.05,0.016667,1.12
+ Chèze ,CHEZE ,65120,65145,72,42.9,-0.033333,1.66
+ Chis ,CHIS ,65800,65146,72,43.3,0.116667,1.15
+ Cieutat ,CIEUTAT ,65200,65147,72,43.133333,0.216667,1.44
+ Cizos ,CIZOS ,65230,65148,72,43.25,0.483333,1.58
+ Clarac ,CLARAC ,65190,65149,72,43.216667,0.25,0.6
+ Clarens ,CLARENS ,65300,65150,72,43.166667,0.416667,1.19
+ Collongues ,COLLONGUES ,65350,65151,72,43.283333,0.166667,1.03
+ Coussan ,COUSSAN ,65350,65153,72,43.25,0.2,0.79
+ Créchets ,CRECHETS ,65370,65154,72,43,0.583333,2.15
+ Devèze ,DEVEZE ,65230,65155,72,43.266667,0.55,1.96
+ Dours ,DOURS ,65350,65156,72,43.3,0.133333,1.34
+ Ens ,ENS ,65170,65157,72,42.8,0.35,2.36
+ Esbareich ,ESBAREICH ,65370,65158,72,42.95,0.566667,2.06
+ Escala ,ESCALA ,65250,65159,72,43.083333,0.4,1.23
+ Escaunets ,ESCAUNETS ,65500,65160,72,43.35,-0.083333,2.09
+ Escondeaux ,ESCONDEAUX ,65140,65161,72,43.333333,0.133333,1.38
+ Esconnets ,ESCONNETS ,65130,65162,72,43.066667,0.233333,1.12
+ Escots ,ESCOTS ,65130,65163,72,43.066667,0.266667,0.49
+ Escoubès-Pouts ,ESCOUBES POUTS ,65100,65164,72,43.116667,0.033333,1.28
+ Esparros ,ESPARROS ,65130,65165,72,43.033333,0.316667,1.39
+ Espèche ,ESPECHE ,65130,65166,72,43.05,0.3,0.84
+ Espieilh ,ESPIEILH ,65130,65167,72,43.083333,0.25,0.7
+ Esquièze-Sère ,ESQUIEZE SERE ,65120,65168,72,42.883333, ,1.77
+ Estaing ,ESTAING ,65400,65169,72,42.941667,-0.175,-1
+ Estampures ,ESTAMPURES ,65220,65170,72,43.375,0.283333,-1
+ Estarvielle ,ESTARVIELLE ,65510,65171,72,42.816667,0.416667,2.24
+ Estensan ,ESTENSAN ,65170,65172,72,42.816667,0.35,2.24
+ Esterre ,ESTERRE ,65120,65173,72,42.866667, ,1.89
+ Estirac ,ESTIRAC ,65700,65174,72,43.5,0.033333,2.55
+ Ferrère ,FERRERE ,65370,65175,72,42.95,0.533333,1.97
+ Fontrailles ,FONTRAILLES ,65220,65177,72,43.35,0.35,1.5
+ Fréchède ,FRECHEDE ,65220,65178,72,43.366667,0.266667,1.8
+ Fréchendets ,FRECHENDETS ,65130,65179,72,43.066667,0.25,0.74
+ Fréchet-Aure ,FRECHET AURE ,65240,65180,72,42.933333,0.366667,1.42
+ Fréchou-Fréchet ,FRECHOU FRECHET ,65190,65181,72,43.183333,0.166667,1.21
+ Gaillagos ,GAILLAGOS ,65400,65182,72,42.983333,-0.183333,2.28
+ Galan ,GALAN ,65330,65183,72,43.233333,0.416667,1.19
+ Galez ,GALEZ ,65330,65184,72,43.183333,0.4,1.09
+ Gardères ,GARDERES ,65320,65185,72,43.283333,-0.116667,1.89
+ Gaudent ,GAUDENT ,65370,65186,72,43,0.566667,2.06
+ Gaussan ,GAUSSAN ,65670,65187,72,43.233333,0.483333,1.58
+ Gavarnie ,GAVARNIE ,65120,65188,72,42.733333,-0.008333,-1
+ Gayan ,GAYAN ,65320,65189,72,43.3,0.05,1.24
+ Gazave ,GAZAVE ,65250,65190,72,43.033333,0.45,1.92
+ Gazost ,GAZOST ,65100,65191,72,43.033333,0.016667,1.24
+ Gèdre ,GEDRE ,65120,65192,72,42.783333,0.016667,2.47
+ Gembrie ,GEMBRIE ,65370,65193,72,42.983333,0.566667,2.06
+ Générest ,GENEREST ,65150,65194,72,43.033333,0.533333,1.87
+ Ger ,GER ,65100,65197,72,43.05,-0.033333,1.41
+ Gerde ,GERDE ,65200,65198,72,43.05,0.166667,0.74
+ Germ ,GERM ,65510,65199,72,42.8,0.433333,2.36
+ Geu ,GEU ,65100,65201,72,43.033333,-0.05,1.51
+ Gez ,GEZ ,65400,65202,72,43.016667,-0.1,1.8
+ Gez-ez-Angles ,GEZ EZ ANGLES ,65100,65203,72,43.083333,0.033333,1.06
+ Gonez ,GONEZ ,65350,65204,72,43.233333,0.216667,1
+ Gouaux ,GOUAUX ,65440,65205,72,42.866667,0.366667,1.89
+ Goudon ,GOUDON ,65190,65206,72,43.25,0.233333,1.13
+ Gourgue ,GOURGUE ,65130,65207,72,43.133333,0.266667,1.33
+ Grailhen ,GRAILHEN ,65170,65208,72,42.85,0.366667,2.01
+ Grézian ,GREZIAN ,65440,65209,72,42.883333,0.35,1.77
+ Grust ,GRUST ,65120,65210,72,42.883333,-0.033333,1.77
+ Guchan ,GUCHAN ,65170,65211,72,42.85,0.35,2.01
+ Guchen ,GUCHEN ,65440,65212,72,42.866667,0.333333,1.89
+ Guizerix ,GUIZERIX ,65230,65213,72,43.316667,0.45,1.38
+ Hachan ,HACHAN ,65230,65214,72,43.283333,0.45,1.38
+ Hagedet ,HAGEDET ,65700,65215,72,43.516667,-0.033333,2.66
+ Hauban ,HAUBAN ,65200,65216,72,43.1,0.166667,0.38
+ Hautaget ,HAUTAGET ,65150,65217,72,43.05,0.466667,1.48
+ Hèches ,HECHES ,65250,65218,72,43.016667,0.366667,1.36
+ Héres ,HERES ,65700,65219,72,43.55, ,2.9
+ Hibarette ,HIBARETTE ,65380,65220,72,43.166667,0.033333,1.03
+ Hiis ,HIIS ,65200,65221,72,43.133333,0.1,1.19
+ Hitte ,HITTE ,65190,65222,72,43.15,0.166667,1.36
+ Horgues ,HORGUES ,65310,65223,72,43.2,0.083333,1.5
+ Houeydets ,HOUEYDETS ,65330,65224,72,43.166667,0.35,1.67
+ Hourc ,HOURC ,65350,65225,72,43.25,0.166667,0.79
+ Ibos ,IBOS ,65420,65226,72,43.233333, ,1.22
+ Ilhan ,ILHAN ,65590,65227,72,42.866667,0.383333,1.89
+ Ilhet ,ILHET ,65410,65228,72,42.966667,0.383333,1.19
+ Ilheu ,ILHEU ,65370,65229,72,43,0.6,2.25
+ Izaourt ,IZAOURT ,65370,65230,72,43.016667,0.6,2.25
+ Izaux ,IZAUX ,65250,65231,72,43.066667,0.383333,1
+ Jacque ,JACQUE ,65350,65232,72,43.316667,0.216667,1.26
+ Jarret ,JARRET ,65100,65233,72,43.083333,-0.016667,1.32
+ Jézeau ,JEZEAU ,65240,65234,72,42.9,0.383333,1.66
+ Juillan ,JUILLAN ,65290,65235,72,43.2,0.016667,1.12
+ Julos ,JULOS ,65100,65236,72,43.133333, ,1.22
+ Juncalas ,JUNCALAS ,65100,65237,72,43.05, ,1.22
+ Labassère ,LABASSERE ,65200,65238,72,43.05,0.1,1.1
+ Labastide ,LABASTIDE ,65130,65239,72,43.033333,0.35,1.99
+ Labatut-Rivière ,LABATUT RIVIERE ,65700,65240,72,43.533333,0.033333,2.78
+ Laborde ,LABORDE ,65130,65241,72,43.033333,0.3,1.18
+ Lacassagne ,LACASSAGNE ,65140,65242,72,43.35,0.15,1.5
+ Lafitole ,LAFITOLE ,65700,65243,72,43.45,0.066667,2.2
+ Lagarde ,LAGARDE ,65320,65244,72,43.3,0.033333,1.15
+ Lagrange ,LAGRANGE ,65300,65245,72,43.133333,0.35,1.31
+ Lahitte ,LAHITTE ,65130,65246,72,43.066667,0.316667,0.93
+ Lahitte-ez-Angles ,LAHITTE EZ ANGLES ,65100,65247,72,43.1,0.05,1.46
+ Lahitte-Toupière ,LAHITTE TOUPIERE ,65700,65248,72,43.45,-0.016667,2.2
+ Lalanne ,LALANNE ,65230,65249,72,43.266667,0.575,-1
+ Lalanne-Trie ,LALANNE TRIE ,65220,65250,72,43.316667,0.333333,1.26
+ Laloubère ,LALOUBERE ,65310,65251,72,43.2,0.066667,0.83
+ Lamarque-Pontacq ,LAMARQUE PONTACQ ,65380,65252,72,43.175,-0.116667,-1
+ Lamarque-Rustaing ,LAMARQUE RUSTAING ,65220,65253,72,43.283333,0.3,1.03
+ Laméac ,LAMEAC ,65140,65254,72,43.333333,0.233333,1.38
+ Lançon ,LANCON ,65240,65255,72,42.883333,0.366667,1.77
+ Lanespède ,LANESPEDE ,65190,65256,72,43.166667,0.266667,0.65
+ Lanne ,LANNE ,65380,65257,72,43.166667,0.016667,1.12
+ Lannemezan ,LANNEMEZAN ,65300,65258,72,43.133333,0.383333,1
+ Lansac ,LANSAC ,65350,65259,72,43.216667,0.166667,1.31
+ Lapeyre ,LAPEYRE ,65220,65260,72,43.316667,0.333333,1.26
+ Laran ,LARAN ,65670,65261,72,43.233333,0.466667,1.48
+ Larreule ,LARREULE ,65700,65262,72,43.45,0.016667,2.2
+ Lascazères ,LASCAZERES ,65700,65264,72,43.5,-0.033333,2.55
+ Laslades ,LASLADES ,65350,65265,72,43.233333,0.166667,1
+ Lassales ,LASSALES ,65670,65266,72,43.216667,0.483333,1.58
+ Lau-Balagnas ,LAU BALAGNAS ,65400,65267,72,43,-0.083333,1.7
+ Layrisse ,LAYRISSE ,65380,65268,72,43.133333,0.033333,1.04
+ Lescurry ,LESCURRY ,65140,65269,72,43.333333,0.15,1.38
+ Lespouey ,LESPOUEY ,65190,65270,72,43.216667,0.166667,1.32
+ Lézignan ,LEZIGNAN ,65100,65271,72,43.1, ,1.22
+ Lhez ,LHEZ ,65190,65272,72,43.2,0.2,0.67
+ Liac ,LIAC ,65140,65273,72,43.416667,0.1,1.96
+ Libaros ,LIBAROS ,65330,65274,72,43.25,0.383333,1
+ Lies ,LIES ,65200,65275,72,43.066667,0.216667,1.26
+ Lizos ,LIZOS ,65350,65276,72,43.266667,0.15,0.91
+ Lombrès ,LOMBRES ,65150,65277,72,43.05,0.516667,1.77
+ Lomné ,LOMNE ,65130,65278,72,43.05,0.3,0.84
+ Lortet ,LORTET ,65250,65279,72,43.05,0.383333,1
+ Loubajac ,LOUBAJAC ,65100,65280,72,43.133333,-0.083333,1.75
+ Loucrup ,LOUCRUP ,65200,65281,72,43.116667,0.066667,1.55
+ Loudenvielle ,LOUDENVIELLE ,65510,65282,72,42.8,0.416667,2.36
+ Loudervielle ,LOUDERVIELLE ,65510,65283,72,42.816667,0.433333,2.24
+ Louey ,LOUEY ,65290,65284,72,43.183333,0.016667,1.12
+ Louit ,LOUIT ,65350,65285,72,43.3,0.15,1.15
+ Lourdes ,LOURDES ,65100,65286,72,43.1,-0.05,1.51
+ Loures-Barousse ,LOURES BAROUSSE ,65370,65287,72,43.016667,0.616667,2.35
+ Lubret-Saint-Luc ,LUBRET SAINT LUC ,65220,65288,72,43.316667,0.3,1.26
+ Luby-Betmont ,LUBY BETMONT ,65220,65289,72,43.3,0.3,1.15
+ Luc ,LUC ,65190,65290,72,43.15,0.183333,1.11
+ Lugagnan ,LUGAGNAN ,65100,65291,72,43.05,-0.033333,1.41
+ Luquet ,LUQUET ,65320,65292,72,43.266667,-0.116667,1.89
+ Lustar ,LUSTAR ,65220,65293,72,43.266667,0.333333,0.98
+ Lutilhous ,LUTILHOUS ,65300,65294,72,43.133333,0.333333,1.69
+ Luz-Saint-Sauveur ,LUZ SAINT SAUVEUR ,65120,65295,72,42.866667, ,1.89
+ Madiran ,MADIRAN ,65700,65296,72,43.55,-0.05,2.9
+ Mansan ,MANSAN ,65140,65297,72,43.35,0.2,1.5
+ Marquerie ,MARQUERIE ,65350,65298,72,43.266667,0.2,0.91
+ Marsas ,MARSAS ,65200,65300,72,43.05,0.233333,1.64
+ Marseillan ,MARSEILLAN ,65350,65301,72,43.3,0.216667,1.15
+ Marsous ,MARSOUS ,65400,65302,72,42.966667,-0.2,2.38
+ Mascaras ,MASCARAS ,65190,65303,72,43.183333,0.166667,1.21
+ Maubourguet ,MAUBOURGUET ,65700,65304,72,43.466667,0.033333,2.31
+ Mauléon-Barousse ,MAULEON BAROUSSE ,65370,65305,72,42.966667,0.566667,2.06
+ Mauvezin ,MAUVEZIN ,65130,65306,72,43.116667,0.283333,0.91
+ Mazerolles ,MAZEROLLES ,65220,65308,72,43.35,0.283333,1.5
+ Mazouau ,MAZOUAU ,65250,65309,72,43.033333,0.4,1.09
+ Mérilheu ,MERILHEU ,65200,65310,72,43.1,0.183333,0.64
+ Mingot ,MINGOT ,65140,65311,72,43.366667,0.166667,1.61
+ Molère ,MOLERE ,65130,65312,72,43.1,0.3,0.71
+ Momères ,MOMERES ,65360,65313,72,43.183333,0.083333,1.48
+ Monfaucon ,MONFAUCON ,65140,65314,72,43.45,0.116667,2.2
+ Monléon-Magnoac ,MONLEON MAGNOAC ,65670,65315,72,43.25,0.533333,1.87
+ Monlong ,MONLONG ,65670,65316,72,43.2,0.466667,1.48
+ Mont ,MONT ,65510,65317,72,42.816667,0.433333,2.24
+ Montégut ,MONTEGUT ,65150,65319,72,43.066667,0.508333,-1
+ Montignac ,MONTIGNAC ,65690,65321,72,43.183333,0.15,0.92
+ Montoussé ,MONTOUSSE ,65250,65322,72,43.066667,0.416667,1.19
+ Montsérié ,MONTSERIE ,65150,65323,72,43.05,0.433333,1.36
+ Mouledous ,MOULEDOUS ,65190,65324,72,43.233333,0.233333,0.84
+ Moumoulous ,MOUMOULOUS ,65140,65325,72,43.366667,0.233333,1.61
+ Mun ,MUN ,65350,65326,72,43.283333,0.266667,1.58
+ Nestier ,NESTIER ,65150,65327,72,43.066667,0.5,1.67
+ Neuilh ,NEUILH ,65200,65328,72,43.083333,0.066667,1.47
+ Nouilhan ,NOUILHAN ,65500,65330,72,43.416667,0.033333,1.96
+ Odos ,ODOS ,65310,65331,72,43.2,0.05,1.5
+ Oléac-Debat ,OLEAC DEBAT ,65350,65332,72,43.266667,0.133333,1.23
+ Oléac-Dessus ,OLEAC DESSUS ,65190,65333,72,43.166667,0.183333,0.97
+ Omex ,OMEX ,65100,65334,72,43.083333,-0.083333,1.7
+ Ordizan ,ORDIZAN ,65200,65335,72,43.1,0.133333,0.45
+ Organ ,ORGAN ,65230,65336,72,43.283333,0.483333,1.58
+ Orieux ,ORIEUX ,65190,65337,72,43.233333,0.3,1.41
+ Orignac ,ORIGNAC ,65200,65338,72,43.116667,0.166667,0.6
+ Orincles ,ORINCLES ,65380,65339,72,43.133333,0.033333,1.04
+ Orleix ,ORLEIX ,65800,65340,72,43.283333,0.116667,1.03
+ Oroix ,OROIX ,65320,65341,72,43.3,-0.033333,1.41
+ Osmets ,OSMETS ,65350,65342,72,43.3,0.266667,1.66
+ Ossen ,OSSEN ,65100,65343,72,43.066667,-0.066667,1.6
+ Ossun ,OSSUN ,65380,65344,72,43.183333,-0.033333,1.41
+ Ossun-ez-Angles ,OSSUN EZ ANGLES ,65100,65345,72,43.083333,0.05,1.41
+ Oueilloux ,OUEILLOUX ,65190,65346,72,43.166667,0.183333,0.97
+ Ourde ,OURDE ,65370,65347,72,42.966667,0.55,1.96
+ Ourdon ,OURDON ,65100,65349,72,43.033333,-0.016667,1.32
+ Oursbelille ,OURSBELILLE ,65490,65350,72,43.283333,0.033333,1.03
+ Ousté ,OUSTE ,65100,65351,72,43.05, ,1.22
+ Ouzous ,OUZOUS ,65400,65352,72,43.033333,-0.1,1.8
+ Ozon ,OZON ,65190,65353,72,43.166667,0.266667,0.65
+ Pailhac ,PAILHAC ,65240,65354,72,42.916667,0.366667,1.54
+ Paréac ,PAREAC ,65100,65355,72,43.116667,0.016667,1.12
+ Péré ,PERE ,65130,65356,72,43.133333,0.3,1.39
+ Peyraube ,PEYRAUBE ,65190,65357,72,43.2,0.25,0.44
+ Peyret-Saint-André ,PEYRET SAINT ANDRE ,65230,65358,72,43.316667,0.516667,1.77
+ Peyriguère ,PEYRIGUERE ,65350,65359,72,43.25,0.266667,1.65
+ Peyrouse ,PEYROUSE ,65270,65360,72,43.1,-0.116667,1.89
+ Peyrun ,PEYRUN ,65140,65361,72,43.333333,0.183333,1.38
+ Pierrefitte-Nestalas ,PIERREFITTE NESTALAS ,65260,65362,72,42.966667,-0.066667,1.6
+ Pinas ,PINAS ,65300,65363,72,43.116667,0.433333,1.29
+ Pintac ,PINTAC ,65320,65364,72,43.283333, ,1.22
+ Pouchergues ,POUCHERGUES ,65240,65365,72,42.816667,0.4,2.36
+ Poueyferré ,POUEYFERRE ,65100,65366,72,43.116667,-0.066667,1.6
+ Poumarous ,POUMAROUS ,65190,65367,72,43.15,0.216667,0.71
+ Pouy ,POUY ,65230,65368,72,43.25,0.566667,2.06
+ Pouyastruc ,POUYASTRUC ,65350,65369,72,43.266667,0.166667,0.91
+ Pouzac ,POUZAC ,65200,65370,72,43.083333,0.133333,0.45
+ Pujo ,PUJO ,65500,65372,72,43.35,0.066667,1.5
+ Puntous ,PUNTOUS ,65230,65373,72,43.3,0.45,1.38
+ Puydarrieux ,PUYDARRIEUX ,65220,65374,72,43.283333,0.383333,1.5
+ Rabastens-de-Bigorre ,RABASTENS DE BIGORRE ,65140,65375,72,43.383333,0.15,1.73
+ Recurt ,RECURT ,65330,65376,72,43.216667,0.433333,1.29
+ Réjaumont ,REJAUMONT ,65300,65377,72,43.15,0.45,1.38
+ Ricaud ,RICAUD ,65190,65378,72,43.15,0.266667,0.84
+ Ris ,RIS ,65590,65379,72,42.883333,0.4,1.77
+ Sabalos ,SABALOS ,65350,65380,72,43.283333,0.133333,1.24
+ Sabarros ,SABARROS ,65330,65381,72,43.233333,0.433333,1.29
+ Sacoué ,SACOUE ,65370,65382,72,42.983333,0.55,1.96
+ Sadournin ,SADOURNIN ,65220,65383,72,43.316667,0.4,1.77
+ Sailhan ,SAILHAN ,65170,65384,72,42.816667,0.333333,2.24
+ Saint-Arroman ,SAINT ARROMAN ,65250,65385,72,43.05,0.4,1.09
+ Saint-Créac ,SAINT CREAC ,65100,65386,72,43.05,-0.016667,1.32
+ Saint-Lanne ,SAINT LANNE ,65700,65387,72,43.591667,-0.058333,-1
+ Saint-Lary-Soulan ,SAINT LARY SOULAN ,65170,65388,72,42.816667,0.316667,2.24
+ Saint-Laurent-de-Neste ,SAINT LAURENT DE NESTE,65150,65389,72,43.083333,0.483333,1.58
+ Saint-Lezer ,SAINT LEZER ,65500,65390,72,43.366667,0.05,1.61
+ Saint-Martin ,SAINT MARTIN ,65360,65392,72,43.166667,0.083333,1.26
+ Saint-Pastous ,SAINT PASTOUS ,65400,65393,72,43.016667,-0.05,1.51
+ Saint-Pé-de-Bigorre ,SAINT PE DE BIGORRE,65270,65395,72,43.116667,-0.15,2.09
+ Saint-Savin ,SAINT SAVIN ,65400,65396,72,42.983333,-0.083333,1.7
+ Saint-Sever-de-Rustan ,SAINT SEVER DE RUSTAN,65140,65397,72,43.35,0.233333,1.5
+ Saléchan ,SALECHAN ,65370,65398,72,42.95,0.633333,2.44
+ Saligos ,SALIGOS ,65120,65399,72,42.9,-0.016667,1.66
+ Salles-Adour ,SALLES ADOUR ,65360,65401,72,43.183333,0.1,0.87
+ Samuran ,SAMURAN ,65370,65402,72,42.983333,0.6,2.25
+ Sanous ,SANOUS ,65500,65403,72,43.383333, ,1.73
+ Sariac-Magnoac ,SARIAC MAGNOAC ,65230,65404,72,43.316667,0.55,1.96
+ Sarlabous ,SARLABOUS ,65130,65405,72,43.083333,0.283333,0.42
+ Sarniguet ,SARNIGUET ,65390,65406,72,43.316667,0.083333,1.26
+ Sarp ,SARP ,65370,65407,72,43.016667,0.583333,2.15
+ Sarrancolin ,SARRANCOLIN ,65410,65408,72,42.966667,0.383333,1.19
+ Sarriac-Bigorre ,SARRIAC BIGORRE ,65140,65409,72,43.383333,0.133333,1.73
+ Sarrouilles ,SARROUILLES ,65600,65410,72,43.233333,0.133333,1
+ Sassis ,SASSIS ,65120,65411,72,42.866667,-0.016667,1.89
+ Sazos ,SAZOS ,65120,65413,72,42.883333,-0.016667,1.77
+ Ségalas ,SEGALAS ,65140,65414,72,43.416667,0.116667,1.96
+ Ségus ,SEGUS ,65100,65415,72,43.066667,-0.066667,1.6
+ Seich ,SEICH ,65150,65416,72,43.016667,0.483333,1.58
+ Séméac ,SEMEAC ,65600,65417,72,43.233333,0.116667,1
+ Sénac ,SENAC ,65140,65418,72,43.35,0.183333,1.5
+ Sentous ,SENTOUS ,65330,65419,72,43.266667,0.383333,1.21
+ Sère-en-Lavedan ,SERE EN LAVEDAN ,65400,65420,72,43.016667,-0.116667,1.89
+ Sère-Lanso ,SERE LANSO ,65100,65421,72,43.066667,0.016667,1.12
+ Séron ,SERON ,65320,65422,72,43.316667,-0.1,1.8
+ Sère-Rustaing ,SERE RUSTAING ,65220,65423,72,43.266667,0.3,1.06
+ Sers ,SERS ,65120,65424,72,42.883333,0.033333,1.77
+ Siarrouy ,SIARROUY ,65500,65425,72,43.316667,0.033333,1.26
+ Sinzos ,SINZOS ,65190,65426,72,43.216667,0.216667,0.63
+ Siradan ,SIRADAN ,65370,65427,72,42.966667,0.616667,2.35
+ Sireix ,SIREIX ,65400,65428,72,42.966667,-0.15,2.09
+ Sombrun ,SOMBRUN ,65700,65429,72,43.483333, ,2.43
+ Soréac ,SOREAC ,65350,65430,72,43.316667,0.166667,1.26
+ Sost ,SOST ,65370,65431,72,42.933333,0.55,1.98
+ Soublecause ,SOUBLECAUSE ,65700,65432,72,43.533333,-0.016667,2.78
+ Soues ,SOUES ,65430,65433,72,43.2,0.1,0.64
+ Soulom ,SOULOM ,65260,65435,72,42.95,-0.066667,1.6
+ Souyeaux ,SOUYEAUX ,65350,65436,72,43.233333,0.183333,0.87
+ Tajan ,TAJAN ,65300,65437,72,43.183333,0.466667,1.68
+ Talazac ,TALAZAC ,65500,65438,72,43.333333,0.033333,1.38
+ Tarasteix ,TARASTEIX ,65320,65439,72,43.316667, ,1.26
+ Tarbes ,TARBES ,65000,65440,72,43.233333,0.083333,0.74
+ Thèbe ,THEBE ,65370,65441,72,42.966667,0.583333,2.15
+ Thermes-Magnoac ,THERMES MAGNOAC ,65230,65442,72,43.3,0.583333,2.15
+ Thuy ,THUY ,65350,65443,72,43.266667,0.25,1.23
+ Tibiran-Jaunac ,TIBIRAN JAUNAC ,65660,65444,72,43.05,0.566667,2.06
+ Tilhouse ,TILHOUSE ,65130,65445,72,43.083333,0.316667,0.9
+ Tostat ,TOSTAT ,65140,65446,72,43.333333,0.1,1.38
+ Tournay ,TOURNAY ,65190,65447,72,43.183333,0.25,0.33
+ Tournous-Darré ,TOURNOUS DARRE ,65220,65448,72,43.283333,0.366667,1.16
+ Tournous-Devant ,TOURNOUS DEVANT ,65330,65449,72,43.25,0.416667,1.19
+ Tramezaïgues ,TRAMEZAIGUES ,65170,65450,72,42.8,0.291667,2.36
+ Trébons ,TREBONS ,65200,65451,72,43.1,0.116667,0.62
+ Troubat ,TROUBAT ,65370,65453,72,42.983333,0.583333,2.15
+ Trouley-Labarthe ,TROULEY LABARTHE ,65140,65454,72,43.316667,0.25,1.75
+ Tuzaguet ,TUZAGUET ,65150,65455,72,43.083333,0.433333,1.57
+ Uglas ,UGLAS ,65300,65456,72,43.133333,0.433333,1.29
+ Ugnouas ,UGNOUAS ,65140,65457,72,43.35,0.1,1.5
+ Uzer ,UZER ,65200,65459,72,43.083333,0.2,0.9
+ Vic-en-Bigorre ,VIC EN BIGORRE ,65500,65460,72,43.383333,0.05,1.73
+ Vidou ,VIDOU ,65220,65461,72,43.3,0.316667,1.15
+ Vidouze ,VIDOUZE ,65700,65462,72,43.45,-0.05,2.2
+ Vielle-Adour ,VIELLE ADOUR ,65360,65464,72,43.15,0.116667,1.08
+ Vielle-Aure ,VIELLE AURE ,65170,65465,72,42.833333,0.333333,2.12
+ Vier-Bordes ,VIER BORDES ,65400,65467,72,43,-0.05,1.51
+ Vieuzos ,VIEUZOS ,65230,65468,72,43.266667,0.45,1.38
+ Viey ,VIEY ,65120,65469,72,42.883333,0.016667,1.77
+ Viger ,VIGER ,65100,65470,72,43.066667,-0.05,1.51
+ Vignec ,VIGNEC ,65170,65471,72,42.833333,0.316667,2.12
+ Villefranque ,VILLEFRANQUE ,65700,65472,72,43.5, ,2.55
+ Villelongue ,VILLELONGUE ,65260,65473,72,42.95,-0.05,1.51
+ Villembits ,VILLEMBITS ,65220,65474,72,43.283333,0.316667,1.03
+ Villemur ,VILLEMUR ,65230,65475,72,43.25,0.55,1.96
+ Villenave-près-Béarn ,VILLENAVE PRES BEARN ,65500,65476,72,43.366667,-0.083333,2.07
+ Villenave-près-Marsac ,VILLENAVE PRES MARSAC ,65500,65477,72,43.333333,0.083333,1.38
+ Viscos ,VISCOS ,65120,65478,72,42.916667,-0.05,1.65
+ Visker ,VISKER ,65200,65479,72,43.133333,0.066667,1.67
+ Vizos ,VIZOS ,65120,65480,72,42.883333,-0.016667,1.77
+ Barèges ,BAREGES ,65120,65481,72,42.9,0.066667,1.83
+ Gripp ,GRIPP ,65710,65900,72,42.95,0.233333,1.31
+ Rebouc ,REBOUC ,65250,65904,72,43,0.366667,1.81
+ Sainte-Marie-de-Campan ,SAINTE MARIE DE CAMPAN,65710,65905,72,42.983333,0.233333,1.07
+ Cazaux-Fréchet ,CAZAUX FRECHET ,65510,65941,72,42.833333,0.416667,2.12
+ L'Albère ,L ALBERE ,66480,66001,91,42.483333,2.9,1.39
+ Alénya ,ALENYA ,66200,66002,91,42.633333,2.983333,1.7
+ Amélie-les-Bains-Palalda ,AMELIE LES BAINS PALALDA,66110,66003,91,42.466667,2.666667,1.53
+ Ansignan ,ANSIGNAN ,66220,66006,91,42.766667,2.516667,1.71
+ Arboussols ,ARBOUSSOLS ,66320,66007,91,42.666667,2.483333,1.31
+ Argelès-sur-Mer ,ARGELES SUR MER ,66700,66008,91,42.55,3.016667,1.83
+ Arles-sur-Tech ,ARLES SUR TECH ,66150,66009,91,42.45,2.633333,1.67
+ Baho ,BAHO ,66540,66012,91,42.7,2.833333,1.11
+ Baillestavy ,BAILLESTAVY ,66320,66013,91,42.566667,2.533333,1.27
+ Baixas ,BAIXAS ,66390,66014,91,42.75,2.816667,1.53
+ Banyuls-dels-Aspres ,BANYULS DELS ASPRES ,66300,66015,91,42.566667,2.866667,1.63
+ Banyuls-sur-Mer ,BANYULS SUR MER ,66650,66016,91,42.483333,3.133333,2.29
+ Le Barcarès ,LE BARCARES ,66420,66017,91,42.783333,3.033333,1.9
+ La Bastide ,LA BASTIDE ,66110,66018,91,42.55,2.583333,1.65
+ Bélesta ,BELESTA ,66720,66019,91,42.716667,2.6,1.18
+ Bolquère ,BOLQUERE ,66210,66020,91,42.5,2.083333,1.82
+ Bompas ,BOMPAS ,66430,66021,91,42.733333,2.933333,1.51
+ Boule-d'Amont ,BOULE D AMONT ,66130,66022,91,42.583333,2.616667,1.12
+ Bouleternère ,BOULETERNERE ,66130,66023,91,42.65,2.583333,0.61
+ Le Boulou ,LE BOULOU ,66160,66024,91,42.516667,2.833333,1.11
+ Bourg-Madame ,BOURG MADAME ,66760,66025,91,42.433333,1.933333,2.41
+ Brouilla ,BROUILLA ,66620,66026,91,42.566667,2.9,1.38
+ La Cabanasse ,LA CABANASSE ,66210,66027,91,42.5,2.116667,1.69
+ Cabestany ,CABESTANY ,66330,66028,91,42.683333,2.933333,1.51
+ Caixas ,CAIXAS ,66300,66029,91,42.583333,2.683333,1.59
+ Calce ,CALCE ,66600,66030,91,42.766667,2.75,1.71
+ Caldégas ,CALDEGAS ,66760,66031,91,42.45,1.95,2.34
+ Calmeilles ,CALMEILLES ,66400,66032,91,42.55,2.683333,0.98
+ Camélas ,CAMELAS ,66300,66033,91,42.633333,2.683333,1.71
+ Campôme ,CAMPOME ,66500,66034,91,42.65,2.366667,0.71
+ Campoussy ,CAMPOUSSY ,66730,66035,91,42.716667,2.45,1.18
+ Canaveilles ,CANAVEILLES ,66360,66036,91,42.533333,2.25,1.17
+ Canohès ,CANOHES ,66680,66038,91,42.65,2.833333,1.11
+ Caramany ,CARAMANY ,66720,66039,91,42.733333,2.566667,1.45
+ Casefabre ,CASEFABRE ,66130,66040,91,42.616667,2.616667,0.52
+ Cases-de-Pène ,CASES DE PENE ,66600,66041,91,42.783333,2.783333,1.89
+ Cassagnes ,CASSAGNES ,66720,66042,91,42.75,2.616667,1.53
+ Casteil ,CASTEIL ,66820,66043,91,42.533333,2.4,1.26
+ Castelnou ,CASTELNOU ,66300,66044,91,42.616667,2.7,1.34
+ Catllar ,CATLLAR ,66500,66045,91,42.633333,2.416667,0.56
+ Caudiès-de-Fenouillèdes ,CAUDIES DE FENOUILLEDES ,66220,66046,91,42.816667,2.383333,2.25
+ Cerbère ,CERBERE ,66290,66048,91,42.45,3.166667,2.42
+ Céret ,CERET ,66400,66049,91,42.483333,2.75,1.31
+ Claira ,CLAIRA ,66530,66050,91,42.75,2.95,1.57
+ Clara ,CLARA ,66500,66051,91,42.583333,2.433333,1.11
+ Codalet ,CODALET ,66500,66052,91,42.616667,2.416667,0.52
+ Collioure ,COLLIOURE ,66190,66053,91,42.516667,3.083333,2.09
+ Conat ,CONAT ,66500,66054,91,42.616667,2.35,0.78
+ Corbère ,CORBERE ,66130,66055,91,42.65,2.666667,0.91
+ Corbère-les-Cabanes ,CORBERE LES CABANES ,66130,66056,91,42.65,2.683333,1.22
+ Corneilla-de-Conflent ,CORNEILLA DE CONFLENT ,66820,66057,91,42.566667,2.383333,0.65
+ Corneilla-la-Rivière ,CORNEILLA LA RIVIERE ,66550,66058,91,42.7,2.733333,1
+ Corneilla-del-Vercol ,CORNEILLA DEL VERCOL ,66200,66059,91,42.633333,2.95,1.57
+ Corsavy ,CORSAVY ,66150,66060,91,42.466667,2.583333,1.49
+ Coustouges ,COUSTOUGES ,66260,66061,91,42.366667,2.65,2.56
+ Dorres ,DORRES ,66760,66062,91,42.483333,1.933333,2.41
+ Égat ,EGAT ,66120,66064,91,42.5,2.016667,2.08
+ Elne ,ELNE ,66200,66065,91,42.6,2.966667,1.64
+ Enveitg ,ENVEITG ,66760,66066,91,42.466667,1.916667,2.47
+ Err ,ERR ,66800,66067,91,42.433333,2.016667,2.08
+ Escaro ,ESCARO ,66360,66068,91,42.533333,2.316667,0.91
+ Espira-de-l'Agly ,ESPIRA DE L AGLY,66600,66069,91,42.783333,2.833333,1.89
+ Espira-de-Conflent ,ESPIRA DE CONFLENT ,66320,66070,91,42.616667,2.5,0.48
+ Estagel ,ESTAGEL ,66310,66071,91,42.766667,2.7,1.71
+ Estavar ,ESTAVAR ,66800,66072,91,42.466667,1.983333,2.21
+ Estoher ,ESTOHER ,66320,66073,91,42.6,2.483333,0.97
+ Eus ,EUS ,66500,66074,91,42.65,2.45,1.27
+ Eyne ,EYNE ,66800,66075,91,42.466667,2.066667,1.89
+ Felluns ,FELLUNS ,66730,66076,91,42.766667,2.483333,1.71
+ Fenouillet ,FENOUILLET ,66220,66077,91,42.8,2.383333,2.07
+ Fillols ,FILLOLS ,66820,66078,91,42.566667,2.416667,1.41
+ Finestret ,FINESTRET ,66320,66079,91,42.616667,2.516667,0.14
+ Fontpédrouse ,FONTPEDROUSE ,66360,66080,91,42.516667,2.183333,1.51
+ Fontrabiouse ,FONTRABIOUSE ,66210,66081,91,42.633333,2.1,1.76
+ Formiguères ,FORMIGUERES ,66210,66082,91,42.616667,2.1,1.76
+ Fosse ,FOSSE ,66220,66083,91,42.783333,2.433333,1.89
+ Fourques ,FOURQUES ,66300,66084,91,42.583333,2.783333,0.92
+ Fuilla ,FUILLA ,66820,66085,91,42.566667,2.366667,1.26
+ Glorianes ,GLORIANES ,66320,66086,91,42.583333,2.566667,1.35
+ Las Illas ,LAS ILLAS ,66480,66087,91,42.433333,2.783333,1.84
+ Ille-sur-Têt ,ILLE SUR TET ,66130,66088,91,42.666667,2.616667,0.65
+ Joch ,JOCH ,66320,66089,91,42.616667,2.533333,0.31
+ Jujols ,JUJOLS ,66360,66090,91,42.575,2.3,0.97
+ Lamanère ,LAMANERE ,66230,66091,91,42.366667,2.516667,2.56
+ Lansac ,LANSAC ,66720,66092,91,42.766667,2.566667,1.71
+ Laroque-des-Albères ,LAROQUE DES ALBERES ,66740,66093,91,42.516667,2.933333,1.51
+ Latour-Bas-Elne ,LATOUR BAS ELNE ,66200,66094,91,42.616667,3,1.77
+ Latour-de-Carol ,LATOUR DE CAROL ,66760,66095,91,42.466667,1.9,2.54
+ Latour-de-France ,LATOUR DE FRANCE ,66720,66096,91,42.766667,2.65,1.71
+ Lesquerde ,LESQUERDE ,66220,66097,91,42.8,2.533333,2.07
+ La Llagonne ,LA LLAGONNE ,66210,66098,91,42.533333,2.116667,1.69
+ Llauro ,LLAURO ,66300,66099,91,42.55,2.733333,1.06
+ Llo ,LLO ,66800,66100,91,42.45,2.05,1.95
+ Llupia ,LLUPIA ,66300,66101,91,42.616667,2.766667,0.85
+ Mantet ,MANTET ,66360,66102,91,42.483333,2.3,1.31
+ Marquixanes ,MARQUIXANES ,66320,66103,91,42.65,2.483333,1.05
+ Los Masos ,LOS MASOS ,66500,66104,91,42.633333,2.45,1.18
+ Matemale ,MATEMALE ,66210,66105,91,42.583333,2.116667,1.69
+ Maury ,MAURY ,66460,66107,91,42.816667,2.6,2.25
+ Millas ,MILLAS ,66170,66108,91,42.7,2.7,1
+ Montalba-le-Château ,MONTALBA LE CHATEAU ,66130,66111,91,42.7,2.566667,1.35
+ Montauriol ,MONTAURIOL ,66300,66112,91,42.583333,2.716667,1.03
+ Montbolo ,MONTBOLO ,66110,66113,91,42.483333,2.65,1.31
+ Montescot ,MONTESCOT ,66200,66114,91,42.616667,2.933333,1.51
+ Montferrer ,MONTFERRER ,66150,66116,91,42.433333,2.566667,1.84
+ Mont-Louis ,MONT LOUIS ,66210,66117,91,42.516667,2.116667,1.69
+ Montner ,MONTNER ,66720,66118,91,42.75,2.683333,1.53
+ Mosset ,MOSSET ,66500,66119,91,42.666667,2.35,1.15
+ Nahuja ,NAHUJA ,66340,66120,91,42.416667,1.983333,2.21
+ Néfiach ,NEFIACH ,66170,66121,91,42.7,2.666667,1.65
+ Nohèdes ,NOHEDES ,66500,66122,91,42.616667,2.3,1.72
+ Nyer ,NYER ,66360,66123,91,42.533333,2.283333,1.04
+ Olette ,OLETTE ,66360,66125,91,42.55,2.266667,1.1
+ Oms ,OMS ,66400,66126,91,42.55,2.7,0.74
+ Oreilla ,OREILLA ,66360,66128,91,42.566667,2.25,1.17
+ Ortaffa ,ORTAFFA ,66560,66129,91,42.583333,2.933333,1.51
+ Osséja ,OSSEJA ,66340,66130,91,42.416667,1.983333,2.21
+ Palau-de-Cerdagne ,PALAU DE CERDAGNE ,66340,66132,91,42.416667,1.95,2.34
+ Palau-del-Vidre ,PALAU DEL VIDRE ,66690,66133,91,42.566667,2.966667,1.64
+ Passa ,PASSA ,66300,66134,91,42.583333,2.816667,1.05
+ Périllos ,PERILLOS ,66600,66135,91,42.883333,2.85,2.96
+ Perpignan ,PERPIGNAN ,66100,66136,91,42.683333,2.883333,1.31
+ Le Perthus ,LE PERTHUS ,66480,66137,91,42.466667,2.866667,1.49
+ Peyrestortes ,PEYRESTORTES ,66600,66138,91,42.75,2.85,1.53
+ Pézilla-de-Conflent ,PEZILLA DE CONFLENT ,66730,66139,91,42.75,2.483333,1.53
+ Pézilla-la-Rivière ,PEZILLA LA RIVIERE ,66370,66140,91,42.7,2.766667,1
+ Pia ,PIA ,66380,66141,91,42.75,2.916667,1.53
+ Planès ,PLANES ,66210,66142,91,42.5,2.133333,1.63
+ Planèzes ,PLANEZES ,66720,66143,91,42.766667,2.633333,1.71
+ Pollestres ,POLLESTRES ,66450,66144,91,42.633333,2.866667,1.24
+ Ponteilla ,PONTEILLA ,66300,66145,91,42.633333,2.816667,1.05
+ Porta ,PORTA ,66760,66146,91,42.533333,1.816667,2.87
+ Porté-Puymorens ,PORTE PUYMORENS ,66760,66147,91,42.55,1.833333,2.8
+ Port-Vendres ,PORT VENDRES ,66660,66148,91,42.516667,3.116667,2.22
+ Prades ,PRADES ,66500,66149,91,42.616667,2.433333,0.84
+ Prats-de-Mollo-la-Preste ,PRATS DE MOLLO LA,66230,66150,91,42.4,2.483333,2.2
+ Prats-de-Sournia ,PRATS DE SOURNIA ,66730,66151,91,42.75,2.45,1.53
+ Prugnanes ,PRUGNANES ,66220,66152,91,42.833333,2.433333,2.42
+ Prunet-et-Belpuig ,PRUNET ET BELPUIG ,66130,66153,91,42.566667,2.65,1.55
+ Puyvalador ,PUYVALADOR ,66210,66154,91,42.65,2.116667,1.69
+ Py ,PY ,66360,66155,91,42.5,2.35,1.62
+ Rabouillet ,RABOUILLET ,66730,66156,91,42.733333,2.383333,2.28
+ Railleu ,RAILLEU ,66360,66157,91,42.583333,2.183333,1.58
+ Rasiguères ,RASIGUERES ,66720,66158,91,42.766667,2.616667,1.71
+ Réal ,REAL ,66210,66159,91,42.633333,2.133333,1.63
+ Reynès ,REYNES ,66400,66160,91,42.483333,2.7,1.31
+ Rigarda ,RIGARDA ,66320,66162,91,42.633333,2.533333,0.39
+ Riunoguès ,RIUNOGUES ,66480,66163,91,42.466667,2.816667,1.49
+ Rivesaltes ,RIVESALTES ,66600,66164,91,42.766667,2.866667,1.71
+ Rodès ,RODES ,66320,66165,91,42.65,2.566667,1.22
+ Sahorre ,SAHORRE ,66360,66166,91,42.533333,2.366667,1.73
+ Saillagouse ,SAILLAGOUSE ,66800,66167,91,42.45,2.033333,2.02
+Saint-André,ANDRE ,66690,66168,91,42.55,2.966667,1.64
+ Saint-Arnac ,SAINT ARNAC ,66220,66169,91,42.783333,2.533333,1.89
+ Saint-Cyprien ,SAINT CYPRIEN ,66750,66171,91,42.616667,3,1.77
+ Saint-Estève ,SAINT ESTEVE ,66240,66172,91,42.7,2.85,1.18
+ Saint-Féliu-d'Amont ,SAINT FELIU D AMONT,66170,66173,91,42.683333,2.716667,0.82
+ Saint-Féliu-d'Avall ,SAINT FELIU D AVALL,66170,66174,91,42.683333,2.733333,1.3
+ Saint-Hippolyte ,SAINT HIPPOLYTE ,66510,66176,91,42.783333,2.966667,1.89
+ Saint-Jean-Lasseille ,SAINT JEAN LASSEILLE ,66300,66177,91,42.583333,2.866667,1.57
+ Saint-Jean-Pla-de-Corts ,SAINT JEAN PLA DE,66400,66178,91,42.516667,2.783333,1.28
+ Saint-Laurent-de-Cerdans ,SAINT LAURENT DE CERDANS,66260,66179,91,42.383333,2.616667,2.38
+ Saint-Laurent-de-la-Salanque ,SAINT LAURENT DE LA,66250,66180,91,42.766667,2.983333,1.71
+ Sainte-Léocadie ,SAINTE LEOCADIE ,66800,66181,91,42.433333,1.983333,2.21
+ Saint-Marsal ,SAINT MARSAL ,66110,66183,91,42.533333,2.616667,0.78
+ Saint-Martin ,SAINT MARTIN ,66220,66184,91,42.783333,2.466667,1.89
+ Saint-Michel-de-Llotes ,SAINT MICHEL DE LLOTES,66130,66185,91,42.65,2.633333,0.47
+ Saint-Paul-de-Fenouillet ,SAINT PAUL DE FENOUILLET,66220,66187,91,42.816667,2.5,2.25
+ Saint-Pierre-dels-Forcats ,SAINT PIERRE DELS FORCATS,66210,66188,91,42.5,2.116667,1.69
+ Saleilles ,SALEILLES ,66280,66189,91,42.65,2.95,1.57
+ Sansa ,SANSA ,66360,66191,91,42.6,2.166667,1.97
+ Sauto ,SAUTO ,66210,66192,91,42.516667,2.15,1.56
+ Serdinya ,SERDINYA ,66360,66193,91,42.566667,2.333333,1.21
+ Serralongue ,SERRALONGUE ,66230,66194,91,42.4,2.566667,2.2
+ Le Soler ,LE SOLER ,66270,66195,91,42.683333,2.8,0.98
+ Sorède ,SOREDE ,66690,66196,91,42.533333,2.95,1.57
+ Souanyas ,SOUANYAS ,66360,66197,91,42.55,2.283333,1.04
+ Sournia ,SOURNIA ,66730,66198,91,42.733333,2.45,1.36
+ Taillet ,TAILLET ,66400,66199,91,42.533333,2.666667,1.16
+ Talau ,TALAU ,66360,66200,91,42.566667,2.2,1.37
+ Tarerach ,TARERACH ,66320,66201,91,42.7,2.5,1.82
+ Targassonne ,TARGASSONNE ,66120,66202,91,42.5,2,2.15
+ Taulis ,TAULIS ,66110,66203,91,42.516667,2.633333,0.96
+ Taurinya ,TAURINYA ,66500,66204,91,42.583333,2.416667,0.9
+ Tautavel ,TAUTAVEL ,66720,66205,91,42.816667,2.75,-1
+ Le Tech ,LE TECH ,66230,66206,91,42.416667,2.55,2.02
+ Terrats ,TERRATS ,66300,66207,91,42.616667,2.766667,0.85
+ Théza ,THEZA ,66200,66208,91,42.633333,2.95,1.57
+ Thuès-entre-Valls ,THUES ENTRE VALLS ,66360,66209,91,42.516667,2.233333,1.23
+ Thuir ,THUIR ,66300,66210,91,42.633333,2.75,0.79
+ Tordères ,TORDERES ,66300,66211,91,42.566667,2.75,0.79
+ Torreilles ,TORREILLES ,66440,66212,91,42.75,2.983333,1.7
+ Toulouges ,TOULOUGES ,66350,66213,91,42.666667,2.833333,1.11
+ Tresserre ,TRESSERRE ,66300,66214,91,42.566667,2.833333,1.11
+ Trévillach ,TREVILLACH ,66130,66215,91,42.716667,2.533333,2
+ Trilla ,TRILLA ,66220,66216,91,42.75,2.516667,1.53
+ Trouillas ,TROUILLAS ,66300,66217,91,42.616667,2.816667,1.05
+ Ur ,UR ,66760,66218,91,42.466667,1.933333,2.41
+ Urbanya ,URBANYA ,66500,66219,91,42.633333,2.316667,1.42
+ Valcebollère ,VALCEBOLLERE ,66340,66220,91,42.383333,2.033333,2.38
+ Valmanya ,VALMANYA ,66320,66221,91,42.533333,2.533333,2.01
+ Vernet-les-Bains ,VERNET LES BAINS ,66820,66222,91,42.55,2.383333,0.65
+ Villefranche-de-Conflent ,VILLEFRANCHE DE CONFLENT ,66500,66223,91,42.583333,2.366667,0.86
+ Villelongue-dels-Monts ,VILLELONGUE DELS MONTS ,66740,66225,91,42.533333,2.9,1.38
+ Villemolaque ,VILLEMOLAQUE ,66300,66226,91,42.583333,2.833333,1.11
+ Villeneuve-de-la-Raho ,VILLENEUVE DE LA RAHO,66180,66227,91,42.633333,2.916667,1.44
+ Villeneuve-la-Rivière ,VILLENEUVE LA RIVIERE ,66610,66228,91,42.7,2.8,1
+ Villeneuve-des-Escaldes ,VILLENEUVE DES ESCALDES ,66760,66229,91,42.466667,1.95,2.34
+ Vinça ,VINCA ,66320,66230,91,42.65,2.533333,0.7
+ Vingrau ,VINGRAU ,66600,66231,91,42.85,2.783333,2.6
+ Vira ,VIRA ,66220,66232,91,42.766667,2.416667,1.71
+ Vivès ,VIVES ,66400,66233,91,42.533333,2.766667,0.96
+ Le Vivier ,LE VIVIER ,66730,66234,91,42.766667,2.45,1.71
+ Canet-Plage ,CANET PLAGE ,66140,66920,91,42.7,3.033333,1.9
+ Saint-Cyprien-Plage ,SAINT CYPRIEN PLAGE ,66750,66930,91,42.616667,3.033333,1.9
+ Odeillo-Via ,ODEILLO VIA ,66120,66940,91,42.5,2.033333,2.02
+ Achenheim ,ACHENHEIM ,67204,67001,73,48.583333,7.633333,0.5
+ Adamswiller ,ADAMSWILLER ,67320,67002,73,48.9,7.2,1.78
+ Albé ,ALBE ,67220,67003,73,48.35,7.316667,1.74
+ Allenwiller ,ALLENWILLER ,67310,67004,73,48.666667,7.383333,1.6
+ Alteckendorf ,ALTECKENDORF ,67270,67005,73,48.783333,7.6,1.2
+ Altenheim ,ALTENHEIM ,67490,67006,73,48.716667,7.466667,1.1
+ Altenstadt ,ALTENSTADT ,67160,67007,73,49.033333,7.966667,2.15
+ Altorf ,ALTORF ,67120,67008,73,48.516667,7.533333,0.86
+ Altwiller ,ALTWILLER ,67260,67009,73,48.933333,6.966667,2.98
+ Artolsheim ,ARTOLSHEIM ,67390,67011,73,48.216667,7.566667,2.45
+ Aschbach ,ASCHBACH ,67250,67012,73,48.933333,7.983333,2.24
+ Asswiller ,ASSWILLER ,67320,67013,73,48.883333,7.216667,1.69
+ Auenheim ,AUENHEIM ,67480,67014,73,48.816667,8.016667,2.41
+ Avenheim ,AVENHEIM ,67370,67015,73,48.666667,7.55,0.9
+ Avolsheim ,AVOLSHEIM ,67120,67016,73,48.55,7.5,0.69
+ Baerendorf ,BAERENDORF ,67320,67017,73,48.833333,7.083333,2.38
+ Baldenheim ,BALDENHEIM ,67600,67019,73,48.233333,7.533333,2.36
+ Barembach ,BAREMBACH ,67130,67020,73,48.483333,7.233333,1.61
+ Barr ,BARR ,67140,67021,73,48.4,7.45,1.47
+ Bassemberg ,BASSEMBERG ,67220,67022,73,48.333333,7.283333,1.83
+ Batzendorf ,BATZENDORF ,67500,67023,73,48.783333,7.7,1.39
+ Behlenheim ,BEHLENHEIM ,67370,67024,73,48.65,7.616667,0.57
+ Beinheim ,BEINHEIM ,67930,67025,73,48.866667,8.083333,2.75
+ Bellefosse ,BELLEFOSSE ,67130,67026,73,48.4,7.216667,1.69
+ Belmont ,BELMONT ,67130,67027,73,48.4,7.233333,1.61
+ Benfeld ,BENFELD ,67230,67028,73,48.366667,7.6,1.65
+ Berg ,BERG ,67320,67029,73,48.9,7.166667,1.95
+ Bergbieten ,BERGBIETEN ,67310,67030,73,48.566667,7.433333,1.21
+ Bernardswiller ,BERNARDSWILLER ,67210,67031,73,48.45,7.466667,1.21
+ Bernardvillé ,BERNARDVILLE ,67140,67032,73,48.366667,7.4,1.65
+ Bernolsheim ,BERNOLSHEIM ,67170,67033,73,48.75,7.683333,0.7
+ Berstett ,BERSTETT ,67370,67034,73,48.683333,7.666667,1.59
+ Berstheim ,BERSTHEIM ,67170,67035,73,48.8,7.683333,1.54
+ Bettwiller ,BETTWILLER ,67320,67036,73,48.883333,7.183333,1.86
+ Biblisheim ,BIBLISHEIM ,67360,67037,73,48.9,7.8,1.34
+ Bietlenheim ,BIETLENHEIM ,67720,67038,73,48.716667,7.783333,1.21
+ Bilwisheim ,BILWISHEIM ,67170,67039,73,48.716667,7.666667,0.61
+ Bindernheim ,BINDERNHEIM ,67600,67040,73,48.283333,7.6,2.09
+ Birkenwald ,BIRKENWALD ,67440,67041,73,48.666667,7.35,1.01
+ Birlenbach ,BIRLENBACH ,67160,67042,73,48.983333,7.883333,1.73
+ Bischheim ,BISCHHEIM ,67800,67043,73,48.616667,7.75,1.04
+ Bischholtz ,BISCHHOLTZ ,67340,67044,73,48.9,7.55,1.3
+ Bischoffsheim ,BISCHOFFSHEIM ,67870,67045,73,48.483333,7.483333,1.03
+ Bischwiller ,BISCHWILLER ,67240,67046,73,48.766667,7.866667,1.64
+ Bissert ,BISSERT ,67260,67047,73,48.933333,7.033333,2.63
+ Bitschhoffen ,BITSCHHOFFEN ,67350,67048,73,48.85,7.616667,0.91
+ Blaesheim ,BLAESHEIM ,67113,67049,73,48.5,7.6,0.94
+ Blancherupt ,BLANCHERUPT ,67130,67050,73,48.4,7.2,1.78
+ Blienschwiller ,BLIENSCHWILLER ,67650,67051,73,48.333333,7.416667,1.83
+ Boersch ,BOERSCH ,67530,67052,73,48.483333,7.433333,1.72
+ Boesenbiesen ,BOESENBIESEN ,67390,67053,73,48.216667,7.566667,2.45
+ Bolsenheim ,BOLSENHEIM ,67150,67054,73,48.416667,7.616667,1.39
+ Boofzheim ,BOOFZHEIM ,67860,67055,73,48.333333,7.683333,1.83
+ Bootzheim ,BOOTZHEIM ,67390,67056,73,48.183333,7.566667,2.62
+ Bosselshausen ,BOSSELSHAUSEN ,67330,67057,73,48.8,7.516667,1.04
+ Bossendorf ,BOSSENDORF ,67270,67058,73,48.783333,7.566667,0.86
+ Bourg-Bruche ,BOURG BRUCHE ,67420,67059,73,48.35,7.15,2.04
+ Bourgheim ,BOURGHEIM ,67140,67060,73,48.416667,7.483333,1.39
+ Breitenau ,BREITENAU ,67220,67062,73,48.316667,7.3,1.92
+ Breitenbach ,BREITENBACH ,67220,67063,73,48.366667,7.3,1.65
+ Bremmelbach ,BREMMELBACH ,67160,67064,73,48.983333,7.9,1.81
+ Breuschwickersheim ,BREUSCHWICKERSHEIM ,67112,67065,73,48.583333,7.6,0.5
+ La Broque ,LA BROQUE ,67130,67066,73,48.466667,7.216667,1.69
+ Brumath ,BRUMATH ,67170,67067,73,48.733333,7.716667,0.9
+ Buswiller ,BUSWILLER ,67350,67068,73,48.816667,7.566667,1.46
+ Burbach ,BURBACH ,67260,67070,73,48.883333,7.1,2.29
+ Bust ,BUST ,67320,67071,73,48.833333,7.233333,1.61
+ Butten ,BUTTEN ,67430,67072,73,48.966667,7.216667,1.69
+ Châtenois ,CHATENOIS ,67730,67073,73,48.266667,7.4,2.18
+ Cleebourg ,CLEEBOURG ,67160,67074,73,49,7.9,1.81
+ Climbach ,CLIMBACH ,67510,67075,73,49.016667,7.85,1.79
+ Colroy-la-Roche ,COLROY LA ROCHE ,67420,67076,73,48.383333,7.183333,1.86
+ Cosswiller ,COSSWILLER ,67310,67077,73,48.633333,7.4,1.06
+ Croettwiller ,CROETTWILLER ,67470,67079,73,48.933333,8.033333,2.5
+ Dachstein ,DACHSTEIN ,67120,67080,73,48.566667,7.533333,0.59
+ Dahlenheim ,DAHLENHEIM ,67310,67081,73,48.583333,7.516667,1.49
+ Dalhunden ,DALHUNDEN ,67770,67082,73,48.766667,7.983333,2.24
+ Dambach ,DAMBACH ,67110,67083,73,49,7.633333,1.7
+ Dambach-la-Ville ,DAMBACH LA VILLE ,67650,67084,73,48.333333,7.433333,1.83
+ Dangolsheim ,DANGOLSHEIM ,67310,67085,73,48.566667,7.466667,1.18
+ Daubensand ,DAUBENSAND ,67150,67086,73,48.35,7.716667,2.01
+ Dauendorf ,DAUENDORF ,67350,67087,73,48.833333,7.65,1.27
+ Dehlingen ,DEHLINGEN ,67430,67088,73,48.983333,7.2,1.78
+ Dettwiller ,DETTWILLER ,67490,67089,73,48.75,7.466667,0.63
+ Diebolsheim ,DIEBOLSHEIM ,67230,67090,73,48.283333,7.666667,2.09
+ Diedendorf ,DIEDENDORF ,67260,67091,73,48.883333,7.05,2.55
+ Dieffenbach-au-Val ,DIEFFENBACH AU VAL ,67220,67092,73,48.316667,7.333333,1.92
+ Dieffenbach-lès-Woerth ,DIEFFENBACH LES WOERTH ,67360,67093,73,48.933333,7.783333,1.35
+ Dieffenthal ,DIEFFENTHAL ,67650,67094,73,48.3,7.416667,2
+ Diemeringen ,DIEMERINGEN ,67430,67095,73,48.933333,7.183333,1.86
+ Dimbsthal ,DIMBSTHAL ,67440,67096,73,48.666667,7.366667,0.92
+ Dingsheim ,DINGSHEIM ,67370,67097,73,48.633333,7.666667,1.67
+ Dinsheim ,DINSHEIM ,67190,67098,73,48.533333,7.433333,0.77
+ Domfessel ,DOMFESSEL ,67430,67099,73,48.95,7.15,2.04
+ Donnenheim ,DONNENHEIM ,67170,67100,73,48.716667,7.65,0.78
+ Dorlisheim ,DORLISHEIM ,67120,67101,73,48.533333,7.483333,1.16
+ Dossenheim-Kochersberg ,DOSSENHEIM KOCHERSBERG ,67117,67102,73,48.633333,7.566667,0.67
+ Dossenheim-sur-Zinsel ,DOSSENHEIM SUR ZINSEL ,67330,67103,73,48.8,7.4,1.25
+ Drulingen ,DRULINGEN ,67320,67105,73,48.866667,7.183333,1.86
+ Drusenheim ,DRUSENHEIM ,67410,67106,73,48.766667,7.95,2.07
+ Duntzenheim ,DUNTZENHEIM ,67270,67107,73,48.716667,7.533333,0.85
+ Duppigheim ,DUPPIGHEIM ,67120,67108,73,48.533333,7.583333,1.43
+ Durningen ,DURNINGEN ,67270,67109,73,48.683333,7.566667,1.33
+ Durrenbach ,DURRENBACH ,67360,67110,73,48.9,7.766667,1.17
+ Durstel ,DURSTEL ,67320,67111,73,48.883333,7.2,1.78
+ Duttlenheim ,DUTTLENHEIM ,67120,67112,73,48.516667,7.566667,1.25
+ Ebersheim ,EBERSHEIM ,67600,67115,73,48.3,7.5,2
+ Ebersmunster ,EBERSMUNSTER ,67600,67116,73,48.3,7.516667,2
+ Eckartswiller ,ECKARTSWILLER ,67700,67117,73,48.766667,7.35,1.24
+ Eckbolsheim ,ECKBOLSHEIM ,67201,67118,73,48.583333,7.683333,0.7
+ Eckwersheim ,ECKWERSHEIM ,67550,67119,73,48.683333,7.7,1
+ Eichhoffen ,EICHHOFFEN ,67140,67120,73,48.383333,7.433333,1.56
+ Elsenheim ,ELSENHEIM ,67390,67121,73,48.166667,7.5,2.71
+ Engwiller ,ENGWILLER ,67350,67123,73,48.883333,7.616667,1.33
+ Entzheim ,ENTZHEIM ,67960,67124,73,48.533333,7.633333,0.77
+ Epfig ,EPFIG ,67680,67125,73,48.366667,7.45,1.65
+ Erckartswiller ,ERCKARTSWILLER ,67290,67126,73,48.866667,7.366667,1.27
+ Ergersheim ,ERGERSHEIM ,67120,67127,73,48.566667,7.516667,0.59
+ Ernolsheim-Bruche ,ERNOLSHEIM BRUCHE ,67120,67128,73,48.566667,7.566667,1.06
+ Ernolsheim-lès-Saverne ,ERNOLSHEIM LES SAVERNE ,67330,67129,73,48.783333,7.383333,1.65
+ Erstein ,ERSTEIN ,67150,67130,73,48.433333,7.666667,1.3
+ Eschau ,ESCHAU ,67114,67131,73,48.483333,7.716667,1.03
+ Eschbach ,ESCHBACH ,67360,67132,73,48.866667,7.733333,1.63
+ Eschbourg ,ESCHBOURG ,67320,67133,73,48.816667,7.3,1.96
+ Eschwiller ,ESCHWILLER ,67320,67134,73,48.866667,7.116667,2.21
+ Ettendorf ,ETTENDORF ,67350,67135,73,48.816667,7.583333,1.05
+ Eywiller ,EYWILLER ,67320,67136,73,48.866667,7.116667,2.21
+ Fegersheim ,FEGERSHEIM ,67640,67137,73,48.483333,7.683333,1.03
+ Fessenheim-le-Bas ,FESSENHEIM LE BAS ,67117,67138,73,48.633333,7.533333,1.75
+ Flexbourg ,FLEXBOURG ,67310,67139,73,48.566667,7.433333,1.21
+ Forstfeld ,FORSTFELD ,67480,67140,73,48.85,8.033333,2.5
+ Forstheim ,FORSTHEIM ,67580,67141,73,48.9,7.716667,1.17
+ Fort-Louis ,FORT LOUIS ,67480,67142,73,48.8,8.05,2.58
+ Fouchy ,FOUCHY ,67220,67143,73,48.333333,7.283333,1.83
+ Fouday ,FOUDAY ,67130,67144,73,48.416667,7.183333,1.86
+ Friedolsheim ,FRIEDOLSHEIM ,67490,67145,73,48.7,7.483333,1.68
+ Friesenheim ,FRIESENHEIM ,67860,67146,73,48.3,7.666667,2
+ Froeschwiller ,FROESCHWILLER ,67360,67147,73,48.95,7.716667,1.5
+ Frohmuhl ,FROHMUHL ,67290,67148,73,48.9,7.283333,1.35
+ Furchhausen ,FURCHHAUSEN ,67700,67149,73,48.716667,7.433333,0.71
+ Furdenheim ,FURDENHEIM ,67117,67150,73,48.616667,7.566667,0.38
+ Gambsheim ,GAMBSHEIM ,67760,67151,73,48.7,7.883333,1.73
+ Geispolsheim ,GEISPOLSHEIM ,67400,67152,73,48.516667,7.65,1
+ Geiswiller ,GEISWILLER ,67270,67153,73,48.783333,7.5,1.57
+ Gerstheim ,GERSTHEIM ,67150,67154,73,48.383333,7.716667,1.56
+ Gertwiller ,GERTWILLER ,67140,67155,73,48.4,7.466667,1.47
+ Geudertheim ,GEUDERTHEIM ,67170,67156,73,48.716667,7.75,1.73
+ Gimbrett ,GIMBRETT ,67370,67157,73,48.7,7.616667,0.9
+ Gingsheim ,GINGSHEIM ,67270,67158,73,48.716667,7.583333,0.77
+ Goerlingen ,GOERLINGEN ,67320,67159,73,48.8,7.083333,2.38
+ Goersdorf ,GOERSDORF ,67360,67160,73,48.95,7.766667,1.44
+ Gottenhouse ,GOTTENHOUSE ,67700,67161,73,48.716667,7.366667,0.92
+ Gottesheim ,GOTTESHEIM ,67490,67162,73,48.766667,7.483333,1.1
+ Gougenheim ,GOUGENHEIM ,67270,67163,73,48.7,7.566667,0.97
+ Goxwiller ,GOXWILLER ,67210,67164,73,48.433333,7.483333,1.3
+ Grandfontaine ,GRANDFONTAINE ,67130,67165,73,48.5,7.166667,1.95
+ Grassendorf ,GRASSENDORF ,67350,67166,73,48.816667,7.616667,0.75
+ Grendelbruch ,GRENDELBRUCH ,67190,67167,73,48.5,7.316667,2.3
+ Gresswiller ,GRESSWILLER ,67190,67168,73,48.533333,7.433333,0.77
+ Gries ,GRIES ,67240,67169,73,48.75,7.816667,1.38
+ Griesbach ,GRIESBACH ,67110,67170,73,48.883333,7.683333,1.28
+ Griesbach-le-Bastberg ,GRIESBACH LE BASTBERG ,67330,67171,73,48.816667,7.433333,0.73
+ Griesheim-près-Molsheim ,GRIESHEIM PRES MOLSHEIM ,67210,67172,73,48.5,7.533333,1.57
+ Gumbrechtshoffen ,GUMBRECHTSHOFFEN ,67110,67174,73,48.9,7.633333,1.17
+ Gundershoffen ,GUNDERSHOFFEN ,67110,67176,73,48.9,7.666667,1.17
+ Gunstett ,GUNSTETT ,67360,67177,73,48.916667,7.766667,1.26
+ Gungwiller ,GUNGWILLER ,67320,67178,73,48.883333,7.15,2.04
+ Haegen ,HAEGEN ,67700,67179,73,48.716667,7.333333,1.31
+ Haguenau ,HAGUENAU ,67500,67180,73,48.816667,7.783333,1.21
+ Handschuheim ,HANDSCHUHEIM ,67117,67181,73,48.6,7.583333,0.79
+ Hangenbieten ,HANGENBIETEN ,67980,67182,73,48.566667,7.6,0.59
+ Harskirchen ,HARSKIRCHEN ,67260,67183,73,48.916667,7.016667,2.72
+ Hatten ,HATTEN ,67690,67184,73,48.9,7.983333,2.24
+ Hattmatt ,HATTMATT ,67330,67185,73,48.783333,7.416667,1.11
+ Hegeney ,HEGENEY ,67360,67186,73,48.883333,7.733333,1.21
+ Heidolsheim ,HEIDOLSHEIM ,67390,67187,73,48.2,7.516667,2.53
+ Heiligenberg ,HEILIGENBERG ,67190,67188,73,48.533333,7.4,0.77
+ Heiligenstein ,HEILIGENSTEIN ,67140,67189,73,48.416667,7.45,1.39
+ Hengwiller ,HENGWILLER ,67440,67190,73,48.666667,7.333333,1.36
+ Herbitzheim ,HERBITZHEIM ,67260,67191,73,49.016667,7.083333,2.38
+ Herbsheim ,HERBSHEIM ,67230,67192,73,48.35,7.633333,1.74
+ Hermerswiller ,HERMERSWILLER ,67250,67193,73,48.933333,7.916667,1.9
+ Herrlisheim ,HERRLISHEIM ,67850,67194,73,48.733333,7.9,1.81
+ Hessenheim ,HESSENHEIM ,67390,67195,73,48.2,7.55,2.53
+ Hilsenheim ,HILSENHEIM ,67600,67196,73,48.283333,7.566667,2.09
+ Hindisheim ,HINDISHEIM ,67150,67197,73,48.466667,7.633333,1.12
+ Hinsbourg ,HINSBOURG ,67290,67198,73,48.9,7.283333,1.35
+ Hinsingen ,HINSINGEN ,67260,67199,73,48.95,7,2.81
+ Hipsheim ,HIPSHEIM ,67150,67200,73,48.466667,7.683333,1.17
+ Hirschland ,HIRSCHLAND ,67320,67201,73,48.833333,7.116667,2.21
+ Hochfelden ,HOCHFELDEN ,67270,67202,73,48.75,7.566667,0.38
+ Hochstett ,HOCHSTETT ,67170,67203,73,48.783333,7.683333,1.15
+ Hoenheim ,HOENHEIM ,67800,67204,73,48.616667,7.75,1.04
+ Hoerdt ,HOERDT ,67720,67205,73,48.7,7.783333,1.21
+ Hoffen ,HOFFEN ,67250,67206,73,48.933333,7.95,2.07
+ Hohatzenheim ,HOHATZENHEIM ,67170,67207,73,48.716667,7.616667,1.49
+ Hohengoeft ,HOHENGOEFT ,67310,67208,73,48.666667,7.483333,1.01
+ Hohfrankenheim ,HOHFRANKENHEIM ,67270,67209,73,48.733333,7.583333,0.54
+ Le Hohwald ,LE HOHWALD ,67140,67210,73,48.40352,7.32448,-1
+ Hohwiller ,HOHWILLER ,67250,67211,73,48.916667,7.9,1.81
+ Holtzheim ,HOLTZHEIM ,67810,67212,73,48.55,7.633333,0.68
+ Hunspach ,HUNSPACH ,67250,67213,73,48.95,7.95,2.07
+ Hurtigheim ,HURTIGHEIM ,67117,67214,73,48.616667,7.616667,1.57
+ Huttendorf ,HUTTENDORF ,67270,67215,73,48.8,7.633333,1.99
+ Huttenheim ,HUTTENHEIM ,67230,67216,73,48.35,7.583333,1.74
+ Ichtratzheim ,ICHTRATZHEIM ,67640,67217,73,48.483333,7.683333,1.03
+ Illkirch-Graffenstaden ,ILLKIRCH GRAFFENSTADEN ,67400,67218,73,48.533333,7.716667,1
+ Imbsheim ,IMBSHEIM ,67330,67219,73,48.8,7.45,0.64
+ Ingenheim ,INGENHEIM ,67270,67220,73,48.733333,7.516667,0.99
+ Ingolsheim ,INGOLSHEIM ,67250,67221,73,48.966667,7.933333,1.98
+ Ingwiller ,INGWILLER ,67340,67222,73,48.866667,7.483333,1
+ Innenheim ,INNENHEIM ,67880,67223,73,48.5,7.566667,1
+ Irmstett ,IRMSTETT ,67310,67224,73,48.583333,7.483333,1.01
+ Issenhausen ,ISSENHAUSEN ,67330,67225,73,48.8,7.533333,1.34
+ Ittenheim ,ITTENHEIM ,67117,67226,73,48.6,7.6,1.18
+ Itterswiller ,ITTERSWILLER ,67140,67227,73,48.35,7.416667,1.74
+ Kaltenhouse ,KALTENHOUSE ,67240,67230,73,48.8,7.833333,1.47
+ Kauffenheim ,KAUFFENHEIM ,67480,67231,73,48.85,8.033333,2.5
+ Keffenach ,KEFFENACH ,67250,67232,73,48.966667,7.883333,1.73
+ Kertzfeld ,KERTZFELD ,67230,67233,73,48.383333,7.566667,1.56
+ Keskastel ,KESKASTEL ,67260,67234,73,48.966667,7.033333,2.63
+ Kesseldorf ,KESSELDORF ,67930,67235,73,48.883333,8.066667,2.67
+ Kienheim ,KIENHEIM ,67270,67236,73,48.683333,7.583333,1.41
+ Kilstett ,KILSTETT ,67840,67237,73,48.683333,7.85,1.55
+ Kindwiller ,KINDWILLER ,67350,67238,73,48.866667,7.6,1
+ Kintzheim ,KINTZHEIM ,67600,67239,73,48.25,7.4,2.27
+ Kirchheim ,KIRCHHEIM ,67520,67240,73,48.616667,7.5,0.33
+ Kirrberg ,KIRRBERG ,67320,67241,73,48.816667,7.066667,2.46
+ Kleinfrankenheim ,KLEINFRANKENHEIM ,67370,67243,73,48.666667,7.583333,0.21
+ Kleingoeft ,KLEINGOEFT ,67440,67244,73,48.683333,7.45,2.25
+ Knoersheim ,KNOERSHEIM ,67310,67245,73,48.683333,7.466667,1.18
+ Kogenheim ,KOGENHEIM ,67230,67246,73,48.333333,7.533333,1.83
+ Kolbsheim ,KOLBSHEIM ,67120,67247,73,48.566667,7.583333,1.45
+ Krautergersheim ,KRAUTERGERSHEIM ,67880,67248,73,48.483333,7.566667,1.03
+ Krautwiller ,KRAUTWILLER ,67170,67249,73,48.733333,7.683333,0.7
+ Kriegsheim ,KRIEGSHEIM ,67170,67250,73,48.75,7.733333,1.34
+ Kuhlendorf ,KUHLENDORF ,67660,67251,73,48.916667,7.916667,1.9
+ Kurtzenhouse ,KURTZENHOUSE ,67240,67252,73,48.733333,7.8,1.71
+ Kuttolsheim ,KUTTOLSHEIM ,67520,67253,73,48.65,7.533333,1.91
+ Kutzenhausen ,KUTZENHAUSEN ,67250,67254,73,48.933333,7.85,1.55
+ Lalaye ,LALAYE ,67220,67255,73,48.333333,7.266667,1.83
+ Lampertheim ,LAMPERTHEIM ,67450,67256,73,48.65,7.7,0.79
+ Lampertsloch ,LAMPERTSLOCH ,67250,67257,73,48.95,7.816667,1.57
+ Landersheim ,LANDERSHEIM ,67700,67258,73,48.683333,7.5,2.17
+ Langensoultzbach ,LANGENSOULTZBACH ,67360,67259,73,48.966667,7.733333,1.57
+ Laubach ,LAUBACH ,67580,67260,73,48.883333,7.716667,1.09
+ Lauterbourg ,LAUTERBOURG ,67630,67261,73,48.97529,8.17583,-1
+ Leiterswiller ,LEITERSWILLER ,67250,67262,73,48.916667,7.95,2.07
+ Lembach ,LEMBACH ,67510,67263,73,49,7.8,1.7
+ Leutenheim ,LEUTENHEIM ,67480,67264,73,48.85,8.016667,2.41
+ Lichtenberg ,LICHTENBERG ,67340,67265,73,48.916667,7.483333,1.26
+ Limersheim ,LIMERSHEIM ,67150,67266,73,48.45,7.633333,1.21
+ Lingolsheim ,LINGOLSHEIM ,67380,67267,73,48.566667,7.683333,0.7
+ Lipsheim ,LIPSHEIM ,67640,67268,73,48.483333,7.666667,2
+ Littenheim ,LITTENHEIM ,67490,67269,73,48.733333,7.483333,0.35
+ Lixhausen ,LIXHAUSEN ,67270,67270,73,48.8,7.55,1.24
+ Lobsann ,LOBSANN ,67250,67271,73,48.966667,7.85,1.55
+ Lochwiller ,LOCHWILLER ,67440,67272,73,48.7,7.416667,1.42
+ Lohr ,LOHR ,67290,67273,73,48.85,7.25,1.52
+ Lorentzen ,LORENTZEN ,67430,67274,73,48.95,7.166667,1.95
+ Lupstein ,LUPSTEIN ,67490,67275,73,48.733333,7.483333,0.35
+ Lutzelhouse ,LUTZELHOUSE ,67130,67276,73,48.516667,7.283333,1.58
+ Mackenheim ,MACKENHEIM ,67390,67277,73,48.183333,7.566667,2.62
+ Mackwiller ,MACKWILLER ,67430,67278,73,48.916667,7.183333,1.86
+ Maennolsheim ,MAENNOLSHEIM ,67700,67279,73,48.7,7.466667,1.44
+ Maisonsgoutte ,MAISONSGOUTTE ,67220,67280,73,48.35,7.266667,1.74
+ Marckolsheim ,MARCKOLSHEIM ,67390,67281,73,48.166667,7.55,2.71
+ Marlenheim ,MARLENHEIM ,67520,67282,73,48.616667,7.5,0.33
+ Marmoutier ,MARMOUTIER ,67440,67283,73,48.683333,7.383333,0.84
+ Mattstall ,MATTSTALL ,67510,67284,73,48.983333,7.766667,1.62
+ Matzenheim ,MATZENHEIM ,67150,67285,73,48.4,7.616667,1.47
+ Meistratzheim ,MEISTRATZHEIM ,67210,67286,73,48.45,7.55,1.24
+ Melsheim ,MELSHEIM ,67270,67287,73,48.75,7.516667,0.97
+ Memmelshoffen ,MEMMELSHOFFEN ,67250,67288,73,48.966667,7.866667,1.64
+ Menchhoffen ,MENCHHOFFEN ,67340,67289,73,48.866667,7.5,1
+ Merkwiller-Pechelbronn ,MERKWILLER PECHELBRONN ,67250,67290,73,48.933333,7.833333,1.47
+ Mertzwiller ,MERTZWILLER ,67580,67291,73,48.866667,7.683333,1
+ Mietesheim ,MIETESHEIM ,67580,67292,73,48.883333,7.65,1.44
+ Minversheim ,MINVERSHEIM ,67270,67293,73,48.783333,7.616667,1.48
+ Mitschdorf ,MITSCHDORF ,67360,67294,73,48.95,7.783333,1.44
+ Mittelbergheim ,MITTELBERGHEIM ,67140,67295,73,48.4,7.433333,1.47
+ Mittelhausbergen ,MITTELHAUSBERGEN ,67206,67296,73,48.616667,7.7,0.79
+ Mittelhausen ,MITTELHAUSEN ,67170,67297,73,48.7,7.633333,1.32
+ Mittelschaeffolsheim ,MITTELSCHAEFFOLSHEIM ,67170,67298,73,48.7,7.65,1.04
+ Mollkirch ,MOLLKIRCH ,67190,67299,73,48.5,7.383333,0.94
+ Molsheim ,MOLSHEIM ,67120,67300,73,48.533333,7.483333,1.16
+ Mommenheim ,MOMMENHEIM ,67670,67301,73,48.75,7.65,0.73
+ Monswiller ,MONSWILLER ,67700,67302,73,48.75,7.383333,0.84
+ Morsbronn-les-Bains ,MORSBRONN LES BAINS ,67360,67303,73,48.9,7.733333,1.17
+ Morschwiller ,MORSCHWILLER ,67350,67304,73,48.816667,7.633333,1.03
+ Mothern ,MOTHERN ,67470,67305,73,48.933333,8.15,-1
+ Muhlbach-sur-Bruche ,MUHLBACH SUR BRUCHE ,67130,67306,73,48.516667,7.3,1.84
+ Munchhausen ,MUNCHHAUSEN ,67470,67308,73,48.9334,8.1516,-1
+ Mundolsheim ,MUNDOLSHEIM ,67450,67309,73,48.65,7.7,0.79
+ Mussig ,MUSSIG ,67600,67310,73,48.233333,7.516667,2.36
+ Muttersholtz ,MUTTERSHOLTZ ,67600,67311,73,48.266667,7.533333,2.18
+ Mutzenhouse ,MUTZENHOUSE ,67270,67312,73,48.733333,7.583333,0.54
+ Mutzig ,MUTZIG ,67190,67313,73,48.533333,7.466667,1.29
+ Natzwiller ,NATZWILLER ,67130,67314,73,48.433333,7.25,1.52
+ Neubois ,NEUBOIS ,67220,67317,73,48.3,7.333333,2
+ Neugartheim ,NEUGARTHEIM ,67370,67318,73,48.666667,7.533333,1.25
+ Neuhaeusel ,NEUHAEUSEL ,67480,67319,73,48.816667,8.083333,2.75
+ Neuve-Église ,NEUVE EGLISE ,67220,67320,73,48.333333,7.316667,1.83
+ Neuwiller-lès-Saverne ,NEUWILLER LES SAVERNE ,67330,67322,73,48.816667,7.4,1.2
+ Niederbronn-les-Bains ,NIEDERBRONN LES BAINS ,67110,67324,73,48.95,7.633333,1.44
+ Niederhaslach ,NIEDERHASLACH ,67280,67325,73,48.55,7.35,1.01
+ Niederhausbergen ,NIEDERHAUSBERGEN ,67207,67326,73,48.616667,7.7,0.79
+ Niederlauterbach ,NIEDERLAUTERBACH ,67630,67327,73,48.966667,8.1,2.84
+ Niedermodern ,NIEDERMODERN ,67350,67328,73,48.85,7.616667,0.91
+ Niedernai ,NIEDERNAI ,67210,67329,73,48.45,7.516667,1.21
+ Niederroedern ,NIEDERROEDERN ,67470,67330,73,48.9,8.05,2.58
+ Niederschaeffolsheim ,NIEDERSCHAEFFOLSHEIM ,67500,67331,73,48.766667,7.733333,0.96
+ Niederseebach ,NIEDERSEEBACH ,67160,67332,73,48.95,8,2.32
+ Niedersoultzbach ,NIEDERSOULTZBACH ,67330,67333,73,48.85,7.466667,0.91
+ Niedersteinbach ,NIEDERSTEINBACH ,67510,67334,73,49.033333,7.716667,1.88
+ Nordheim ,NORDHEIM ,67520,67335,73,48.633333,7.516667,0.88
+ Nordhouse ,NORDHOUSE ,67150,67336,73,48.45,7.666667,1.21
+ Nothalten ,NOTHALTEN ,67680,67337,73,48.35,7.416667,1.74
+ Obenheim ,OBENHEIM ,67230,67338,73,48.366667,7.7,2.01
+ Oberbronn ,OBERBRONN ,67110,67340,73,48.933333,7.6,1.35
+ Oberdorf-Spachbach ,OBERDORF SPACHBACH ,67360,67341,73,48.916667,7.75,1.26
+ Oberhaslach ,OBERHASLACH ,67280,67342,73,48.55,7.333333,1.1
+ Oberhausbergen ,OBERHAUSBERGEN ,67205,67343,73,48.616667,7.683333,0.7
+ Oberhoffen-sur-Moder ,OBERHOFFEN SUR MODER ,67240,67345,73,48.783333,7.866667,1.64
+ Oberlauterbach ,OBERLAUTERBACH ,67160,67346,73,48.95,8.066667,2.67
+ Obernai ,OBERNAI ,67210,67348,73,48.466667,7.483333,1.12
+ Oberroedern ,OBERROEDERN ,67250,67349,73,48.916667,7.966667,2.15
+ Oberschaeffolsheim ,OBERSCHAEFFOLSHEIM ,67203,67350,73,48.583333,7.633333,0.5
+ Obersoultzbach ,OBERSOULTZBACH ,67330,67352,73,48.85,7.45,0.91
+ Obersteinbach ,OBERSTEINBACH ,67510,67353,73,49.033333,7.683333,1.88
+ Odratzheim ,ODRATZHEIM ,67520,67354,73,48.6,7.483333,1.22
+ Oermingen ,OERMINGEN ,67970,67355,73,49,7.116667,2.21
+ Offendorf ,OFFENDORF ,67850,67356,73,48.716667,7.916667,1.9
+ Offenheim ,OFFENHEIM ,67370,67357,73,48.633333,7.616667,0.81
+ Offwiller ,OFFWILLER ,67340,67358,73,48.916667,7.55,1.41
+ Ohlungen ,OHLUNGEN ,67590,67359,73,48.816667,7.7,1
+ Ohnenheim ,OHNENHEIM ,67390,67360,73,48.183333,7.5,2.62
+ Olwisheim ,OLWISHEIM ,67170,67361,73,48.7,7.666667,0.85
+ Orschwiller ,ORSCHWILLER ,67600,67362,73,48.233333,7.383333,2.36
+ Osthoffen ,OSTHOFFEN ,67990,67363,73,48.583333,7.55,0.5
+ Osthouse ,OSTHOUSE ,67150,67364,73,48.4,7.633333,1.47
+ Ostwald ,OSTWALD ,67540,67365,73,48.55,7.716667,0.87
+ Ottersthal ,OTTERSTHAL ,67700,67366,73,48.75,7.35,1.06
+ Otterswiller ,OTTERSWILLER ,67700,67367,73,48.716667,7.383333,0.84
+ Ottrott ,OTTROTT ,67530,67368,73,48.45,7.416667,1.21
+ Ottwiller ,OTTWILLER ,67320,67369,73,48.866667,7.233333,1.61
+ Petersbach ,PETERSBACH ,67290,67370,73,48.866667,7.266667,1.44
+ La Petite-Pierre ,LA PETITE PIERRE ,67290,67371,73,48.866667,7.316667,1.18
+ Pfaffenhoffen ,PFAFFENHOFFEN ,67350,67372,73,48.85,7.616667,0.91
+ Pfalzweyer ,PFALZWEYER ,67320,67373,73,48.8,7.25,1.52
+ Pfettisheim ,PFETTISHEIM ,67370,67374,73,48.666667,7.633333,0.84
+ Pfulgriesheim ,PFULGRIESHEIM ,67370,67375,73,48.65,7.666667,1.57
+ Bischtroff-sur-Sarre ,BISCHTROFF SUR SARRE ,67260,67376,73,48.9,7.066667,2.46
+ Plaine ,PLAINE ,67420,67377,73,48.416667,7.15,2.04
+ Plobsheim ,PLOBSHEIM ,67115,67378,73,48.466667,7.716667,1.12
+ Preuschdorf ,PREUSCHDORF ,67250,67379,73,48.95,7.8,1.88
+ Printzheim ,PRINTZHEIM ,67490,67380,73,48.783333,7.483333,1.78
+ Puberg ,PUBERG ,67290,67381,73,48.916667,7.316667,1.26
+ Quatzenheim ,QUATZENHEIM ,67117,67382,73,48.633333,7.566667,0.67
+ Rangen ,RANGEN ,67310,67383,73,48.666667,7.483333,1.01
+ Ratzwiller ,RATZWILLER ,67430,67385,73,48.95,7.233333,1.61
+ Rauwiller ,RAUWILLER ,67320,67386,73,48.816667,7.1,2.29
+ Reichsfeld ,REICHSFELD ,67140,67387,73,48.366667,7.383333,1.65
+ Reichshoffen ,REICHSHOFFEN ,67110,67388,73,48.933333,7.666667,1.35
+ Reichstett ,REICHSTETT ,67116,67389,73,48.65,7.75,1.04
+ Reimerswiller ,REIMERSWILLER ,67660,67390,73,48.916667,7.883333,1.73
+ Reinhardsmunster ,REINHARDSMUNSTER ,67440,67391,73,48.683333,7.316667,1.84
+ Reipertswiller ,REIPERTSWILLER ,67340,67392,73,48.933333,7.466667,1.35
+ Reitwiller ,REITWILLER ,67370,67393,73,48.683333,7.616667,0.64
+ Retschwiller ,RETSCHWILLER ,67250,67394,73,48.95,7.866667,1.64
+ Reutenbourg ,REUTENBOURG ,67440,67395,73,48.683333,7.4,0.75
+ Rexingen ,REXINGEN ,67320,67396,73,48.9,7.183333,1.86
+ Rhinau ,RHINAU ,67860,67397,73,48.316667,7.7,1.92
+ Richtolsheim ,RICHTOLSHEIM ,67390,67398,73,48.216667,7.6,2.45
+ Riedheim ,RIEDHEIM ,67330,67399,73,48.816667,7.483333,0.73
+ Riedseltz ,RIEDSELTZ ,67160,67400,73,49,7.95,2.07
+ Rimsdorf ,RIMSDORF ,67260,67401,73,48.933333,7.133333,2.12
+ Ringeldorf ,RINGELDORF ,67350,67402,73,48.833333,7.616667,0.82
+ Ringendorf ,RINGENDORF ,67350,67403,73,48.816667,7.55,1.92
+ Rittershoffen ,RITTERSHOFFEN ,67690,67404,73,48.9,7.95,2.07
+ Roeschwoog ,ROESCHWOOG ,67480,67405,73,48.833333,8.033333,2.5
+ Rohr ,ROHR ,67270,67406,73,48.7,7.55,0.99
+ Rohrwiller ,ROHRWILLER ,67410,67407,73,48.75,7.9,1.81
+ Romanswiller ,ROMANSWILLER ,67310,67408,73,48.65,7.416667,0.87
+ Rosenwiller ,ROSENWILLER ,67560,67410,73,48.5,7.45,0.94
+ Rosheim ,ROSHEIM ,67190,67411,73,48.5,7.466667,1.37
+ Rossfeld ,ROSSFELD ,67230,67412,73,48.333333,7.616667,1.83
+ Rosteig ,ROSTEIG ,67290,67413,73,48.933333,7.35,1.35
+ Rothau ,ROTHAU ,67570,67414,73,48.45,7.216667,1.69
+ Rothbach ,ROTHBACH ,67340,67415,73,48.9,7.533333,1.17
+ Rott ,ROTT ,67160,67416,73,49.016667,7.9,1.81
+ Rottelsheim ,ROTTELSHEIM ,67170,67417,73,48.75,7.716667,0.97
+ Rountzenheim ,ROUNTZENHEIM ,67480,67418,73,48.816667,8,2.32
+ Rumersheim ,RUMERSHEIM ,67370,67419,73,48.683333,7.633333,0.93
+ Russ ,RUSS ,67130,67420,73,48.5,7.25,1.52
+ Saales ,SAALES ,67420,67421,73,48.35,7.116667,2.21
+ Saasenheim ,SAASENHEIM ,67390,67422,73,48.233333,7.616667,2.36
+ Saessolsheim ,SAESSOLSHEIM ,67270,67423,73,48.7,7.516667,1.36
+ Saint-Blaise-la-Roche ,SAINT BLAISE LA ROCHE,67420,67424,73,48.4,7.166667,1.95
+ Saint-Jean-Saverne ,SAINT JEAN SAVERNE ,67700,67425,73,48.766667,7.366667,1.01
+ Saint-Martin ,SAINT MARTIN ,67220,67426,73,48.35,7.3,1.74
+ Saint-Maurice ,SAINT MAURICE ,67220,67427,73,48.333333,7.333333,1.83
+ Saint-Nabor ,SAINT NABOR ,67530,67428,73,48.45,7.416667,1.21
+ Saint-Pierre ,SAINT PIERRE ,67140,67429,73,48.383333,7.466667,1.56
+ Saint-Pierre-Bois ,SAINT PIERRE BOIS ,67220,67430,73,48.333333,7.366667,1.88
+ Salenthal ,SALENTHAL ,67440,67431,73,48.666667,7.366667,0.92
+ Salmbach ,SALMBACH ,67160,67432,73,48.983333,8.066667,2.67
+ Sand ,SAND ,67230,67433,73,48.383333,7.616667,1.56
+ Sarre-Union ,SARRE UNION ,67260,67434,73,48.933333,7.083333,2.38
+ Sarrewerden ,SARREWERDEN ,67260,67435,73,48.916667,7.083333,2.38
+ Saulxures ,SAULXURES ,67420,67436,73,48.383333,7.133333,2.12
+ Saverne ,SAVERNE ,67700,67437,73,48.733333,7.366667,0.92
+ Schaeffersheim ,SCHAEFFERSHEIM ,67150,67438,73,48.433333,7.616667,1.3
+ Schaffhouse-sur-Zorn ,SCHAFFHOUSE SUR ZORN ,67270,67439,73,48.733333,7.566667,0.29
+ Schaffhouse-près-Seltz ,SCHAFFHOUSE PRES SELTZ ,67470,67440,73,48.9,8.1,2.84
+ Schalkendorf ,SCHALKENDORF ,67350,67441,73,48.833333,7.566667,1.29
+ Scheibenhard ,SCHEIBENHARD ,67630,67443,73,48.983333,8.133333,-1
+ Scherlenheim ,SCHERLENHEIM ,67270,67444,73,48.766667,7.533333,0.77
+ Scherwiller ,SCHERWILLER ,67750,67445,73,48.283333,7.416667,2.09
+ Schillersdorf ,SCHILLERSDORF ,67340,67446,73,48.866667,7.516667,1
+ Schiltigheim ,SCHILTIGHEIM ,67300,67447,73,48.6,7.75,1.04
+ Schirmeck ,SCHIRMECK ,67130,67448,73,48.483333,7.216667,1.69
+ Schirrhein ,SCHIRRHEIN ,67240,67449,73,48.8,7.9,1.81
+ Schirrhoffen ,SCHIRRHOFFEN ,67240,67450,73,48.8,7.916667,1.9
+ Schleithal ,SCHLEITHAL ,67160,67451,73,48.983333,8.033333,2.5
+ Schnersheim ,SCHNERSHEIM ,67370,67452,73,48.666667,7.583333,0.21
+ Schoenau ,SCHOENAU ,67390,67453,73,48.233333,7.65,2.36
+ Schoenbourg ,SCHOENBOURG ,67320,67454,73,48.833333,7.266667,1.44
+ Schoenenbourg ,SCHOENENBOURG ,67250,67455,73,48.95,7.916667,1.9
+ Schopperten ,SCHOPPERTEN ,67260,67456,73,48.95,7.05,2.55
+ Schwabwiller ,SCHWABWILLER ,67660,67457,73,48.9,7.866667,1.64
+ Schwindratzheim ,SCHWINDRATZHEIM ,67270,67460,73,48.75,7.6,0.86
+ Schwobsheim ,SCHWOBSHEIM ,67390,67461,73,48.233333,7.566667,2.36
+ Sélestat ,SELESTAT ,67600,67462,73,48.266667,7.45,2.18
+ Seltz ,SELTZ ,67470,67463,73,48.883333,8.1,2.84
+ Sermersheim ,SERMERSHEIM ,67230,67464,73,48.333333,7.55,1.83
+ Sessenheim ,SESSENHEIM ,67770,67465,73,48.8,7.983333,2.24
+ Siegen ,SIEGEN ,67160,67466,73,48.95,8.05,2.58
+ Siewiller ,SIEWILLER ,67320,67467,73,48.85,7.2,1.78
+ Siltzheim ,SILTZHEIM ,67260,67468,73,49.066667,7.083333,2.45
+ Singrist ,SINGRIST ,67440,67469,73,48.666667,7.383333,0.84
+ Solbach ,SOLBACH ,67130,67470,73,48.433333,7.2,1.78
+ Souffelweyersheim ,SOUFFELWEYERSHEIM ,67460,67471,73,48.633333,7.733333,0.96
+ Soufflenheim ,SOUFFLENHEIM ,67620,67472,73,48.833333,7.966667,2.15
+ Soultz-les-Bains ,SOULTZ LES BAINS ,67120,67473,73,48.566667,7.483333,1.19
+ Soultz-sous-Forêts ,SOULTZ SOUS FORETS ,67250,67474,73,48.933333,7.883333,1.73
+ Sparsbach ,SPARSBACH ,67340,67475,73,48.883333,7.416667,1.47
+ Stattmatten ,STATTMATTEN ,67770,67476,73,48.8,8,2.32
+ Steige ,STEIGE ,67220,67477,73,48.366667,7.233333,2.06
+ Steinbourg ,STEINBOURG ,67790,67478,73,48.766667,7.416667,0.67
+ Steinseltz ,STEINSELTZ ,67160,67479,73,49.016667,7.933333,1.98
+ Still ,STILL ,67190,67480,73,48.55,7.4,0.75
+ Stotzheim ,STOTZHEIM ,67140,67481,73,48.383333,7.483333,1.56
+ Strasbourg ,STRASBOURG ,67000,67482,73,48.583333,7.75,1.04
+ Struth ,STRUTH ,67290,67483,73,48.883333,7.25,1.52
+ Stundwiller ,STUNDWILLER ,67250,67484,73,48.916667,7.983333,2.24
+ Sundhouse ,SUNDHOUSE ,67920,67486,73,48.25,7.6,2.27
+ Surbourg ,SURBOURG ,67250,67487,73,48.916667,7.85,1.55
+ Thanvillé ,THANVILLE ,67220,67490,73,48.316667,7.35,1.92
+ Tieffenbach ,TIEFFENBACH ,67290,67491,73,48.9,7.25,1.52
+ Traenheim ,TRAENHEIM ,67310,67492,73,48.6,7.466667,0.56
+ Triembach-au-Val ,TRIEMBACH AU VAL ,67220,67493,73,48.333333,7.333333,1.83
+ Trimbach ,TRIMBACH ,67470,67494,73,48.933333,8.016667,2.41
+ Truchtersheim ,TRUCHTERSHEIM ,67370,67495,73,48.666667,7.6,0.27
+ Uberach ,UBERACH ,67350,67496,73,48.85,7.633333,0.91
+ Uhlwiller ,UHLWILLER ,67350,67497,73,48.816667,7.666667,1.89
+ Uhrwiller ,UHRWILLER ,67350,67498,73,48.883333,7.583333,1.52
+ Urbeis ,URBEIS ,67220,67499,73,48.333333,7.233333,1.88
+ Urmatt ,URMATT ,67280,67500,73,48.516667,7.333333,1.35
+ Uttenheim ,UTTENHEIM ,67150,67501,73,48.4,7.6,1.47
+ Uttenhoffen ,UTTENHOFFEN ,67110,67502,73,48.883333,7.65,1.09
+ Uttwiller ,UTTWILLER ,67330,67503,73,48.85,7.483333,0.91
+ Valff ,VALFF ,67210,67504,73,48.416667,7.516667,1.39
+ La Vancelle ,LA VANCELLE ,67730,67505,73,48.283333,7.3,2.09
+ Vendenheim ,VENDENHEIM ,67550,67506,73,48.666667,7.716667,1
+ Villé ,VILLE ,67220,67507,73,48.333333,7.3,1.83
+ Voellerdingen ,VOELLERDINGEN ,67430,67508,73,48.966667,7.133333,2.12
+ Volksberg ,VOLKSBERG ,67290,67509,73,48.95,7.3,1.44
+ Wahlenheim ,WAHLENHEIM ,67170,67510,73,48.766667,7.683333,0.76
+ Walbourg ,WALBOURG ,67360,67511,73,48.883333,7.783333,1.25
+ La Walck ,LA WALCK ,67350,67512,73,48.85,7.616667,0.91
+ Waldersbach ,WALDERSBACH ,67130,67513,73,48.416667,7.216667,1.69
+ Waldhambach ,WALDHAMBACH ,67430,67514,73,48.916667,7.216667,1.69
+ Waldolwisheim ,WALDOLWISHEIM ,67700,67515,73,48.733333,7.433333,0.69
+ Waltenheim-sur-Zorn ,WALTENHEIM SUR ZORN ,67670,67516,73,48.75,7.633333,0.92
+ Wangen ,WANGEN ,67520,67517,73,48.616667,7.466667,1.49
+ Wangenbourg ,WANGENBOURG ,67710,67518,73,48.616667,7.316667,1.18
+ La Wantzenau ,LA WANTZENAU ,67610,67519,73,48.666667,7.833333,1.47
+ Wasselonne ,WASSELONNE ,67310,67520,73,48.633333,7.45,0.5
+ Weinbourg ,WEINBOURG ,67340,67521,73,48.866667,7.45,1
+ Weislingen ,WEISLINGEN ,67290,67522,73,48.916667,7.25,1.52
+ Weitbruch ,WEITBRUCH ,67500,67523,73,48.75,7.783333,1.21
+ Weiterswiller ,WEITERSWILLER ,67340,67524,73,48.85,7.416667,1.66
+ Westhoffen ,WESTHOFFEN ,67310,67525,73,48.6,7.433333,0.63
+ Weyer ,WEYER ,67320,67528,73,48.85,7.166667,1.95
+ Weyersheim ,WEYERSHEIM ,67720,67529,73,48.716667,7.8,1.3
+ Wildersbach ,WILDERSBACH ,67130,67531,73,48.433333,7.233333,1.61
+ Willgottheim ,WILLGOTTHEIM ,67370,67532,73,48.666667,7.516667,1.59
+ Wilshausen ,WILSHAUSEN ,67270,67533,73,48.783333,7.55,0.88
+ Wilwisheim ,WILWISHEIM ,67270,67534,73,48.75,7.516667,0.97
+ Wimmenau ,WIMMENAU ,67290,67535,73,48.916667,7.416667,2.08
+ Windstein ,WINDSTEIN ,67110,67536,73,49,7.683333,1.7
+ Wingen ,WINGEN ,67510,67537,73,49.033333,7.816667,1.88
+ Wingen-sur-Moder ,WINGEN SUR MODER ,67290,67538,73,48.916667,7.366667,1.26
+ Wingersheim ,WINGERSHEIM ,67170,67539,73,48.716667,7.633333,1.13
+ Wintershouse ,WINTERSHOUSE ,67590,67540,73,48.8,7.7,1
+ Wintzenbach ,WINTZENBACH ,67470,67541,73,48.933333,8.1,2.84
+ Wintzenheim-Kochersberg ,WINTZENHEIM KOCHERSBERG ,67370,67542,73,48.65,7.516667,1.62
+ Wisches ,WISCHES ,67130,67543,73,48.5,7.266667,1.44
+ Wissembourg ,WISSEMBOURG ,67160,67544,73,49.033333,7.95,2.07
+ Witternheim ,WITTERNHEIM ,67230,67545,73,48.316667,7.6,1.92
+ Wittersheim ,WITTERSHEIM ,67670,67546,73,48.783333,7.65,1.35
+ Wittisheim ,WITTISHEIM ,67820,67547,73,48.266667,7.583333,2.18
+ Wiwersheim ,WIWERSHEIM ,67370,67548,73,48.633333,7.6,0.66
+ Woellenheim ,WOELLENHEIM ,67370,67549,73,48.683333,7.5,1.98
+ Woerth ,WOERTH ,67360,67550,73,48.933333,7.75,-1
+ Wolfisheim ,WOLFISHEIM ,67202,67551,73,48.583333,7.666667,0.61
+ Wolfskirchen ,WOLFSKIRCHEN ,67260,67552,73,48.866667,7.066667,2.46
+ Wolschheim ,WOLSCHHEIM ,67700,67553,73,48.7,7.45,1.14
+ Wolxheim ,WOLXHEIM ,67120,67554,73,48.566667,7.5,0.82
+ Zehnacker ,ZEHNACKER ,67310,67555,73,48.666667,7.45,0.82
+ Zeinheim ,ZEINHEIM ,67310,67556,73,48.666667,7.483333,1.01
+ Zellwiller ,ZELLWILLER ,67140,67557,73,48.4,7.5,1.5
+ Zinswiller ,ZINSWILLER ,67110,67558,73,48.916667,7.583333,1.28
+ Zittersheim ,ZITTERSHEIM ,67290,67559,73,48.9,7.35,1.17
+ Zollingen ,ZOLLINGEN ,67260,67561,73,48.916667,7.066667,2.46
+ Zutzendorf ,ZUTZENDORF ,67330,67562,73,48.85,7.55,1.7
+ Graufthal ,GRAUFTHAL ,67320,67900,73,48.816667,7.283333,1.71
+ Champenay ,CHAMPENAY ,67420,67905,73,48.416667,7.133333,2.12
+ Engenthal ,ENGENTHAL ,67710,67908,73,48.633333,7.3,1.27
+ Fréconrupt ,FRECONRUPT ,67130,67909,73,48.466667,7.183333,1.86
+ Hersbach ,HERSBACH ,67130,67914,73,48.5,7.25,1.52
+ Ittlenheim ,ITTLENHEIM ,67370,67917,73,48.666667,7.55,0.9
+ Krafft ,KRAFFT ,67150,67920,73,48.416667,7.7,1.39
+ Netzenbach ,NETZENBACH ,67130,67921,73,48.516667,7.266667,1.44
+ Obermodern ,OBERMODERN ,67330,67926,73,48.85,7.533333,1.41
+ Oberseebach ,OBERSEEBACH ,67160,67927,73,48.966667,7.983333,2.24
+ Ohnheim ,OHNHEIM ,67640,67928,73,48.483333,7.7,2
+ Steinbach ,STEINBACH ,67130,67937,73,48.433333,7.225,-1
+ Wagenbach ,WAGENBACH ,67220,67938,73,48.35,7.25,1.74
+ Wackenbach ,WACKENBACH ,67130,67939,73,48.483333,7.183333,1.86
+ Klingenthal ,KLINGENTHAL ,67530,67947,73,48.466667,7.416667,1.12
+ Marienthal ,MARIENTHAL ,67500,67948,73,48.783333,7.816667,1.38
+ Algolsheim ,ALGOLSHEIM ,68600,68001,72,48,7.566667,2.29
+ Altenach ,ALTENACH ,68210,68002,72,47.616667,7.116667,1.25
+ Altenbach ,ALTENBACH ,68760,68003,72,47.883333,7.083333,1.51
+ Altkirch ,ALTKIRCH ,68130,68004,72,47.616667,7.25,1.37
+ Ammerschwihr ,AMMERSCHWIHR ,68770,68005,72,48.116667,7.283333,1.73
+ Ammerzwiller ,AMMERZWILLER ,68210,68006,72,47.683333,7.166667,1.37
+ Andolsheim ,ANDOLSHEIM ,68280,68007,72,48.066667,7.416667,1.66
+ Appenwihr ,APPENWIHR ,68280,68008,72,48.016667,7.433333,1.24
+ Artzenheim ,ARTZENHEIM ,68320,68009,72,48.116667,7.533333,2.03
+ Aspach ,ASPACH ,68130,68010,72,47.65,7.233333,1.88
+ Aspach-le-Bas ,ASPACH LE BAS ,68700,68011,72,47.766667,7.15,1.14
+ Aspach-le-Haut ,ASPACH LE HAUT ,68700,68012,72,47.783333,7.133333,1.12
+ Attenschwiller ,ATTENSCHWILLER ,68220,68013,72,47.566667,7.466667,1.51
+ Aubure ,AUBURE ,68150,68014,72,48.2,7.216667,2.19
+ Baldersheim ,BALDERSHEIM ,68390,68015,72,47.8,7.366667,0.72
+ Balgau ,BALGAU ,68740,68016,72,47.916667,7.533333,2.03
+ Ballersdorf ,BALLERSDORF ,68210,68017,72,47.633333,7.166667,1.2
+ Balschwiller ,BALSCHWILLER ,68210,68018,72,47.666667,7.166667,1.23
+ Baltzenheim ,BALTZENHEIM ,68320,68019,72,48.083333,7.55,2.16
+ Bantzenheim ,BANTZENHEIM ,68490,68020,72,47.833333,7.5,1.77
+ Bartenheim ,BARTENHEIM ,68870,68021,72,47.633333,7.466667,1.51
+ Battenheim ,BATTENHEIM ,68390,68022,72,47.833333,7.383333,1.48
+ Beblenheim ,BEBLENHEIM ,68980,68023,72,48.15,7.333333,1.91
+ Bellemagny ,BELLEMAGNY ,68210,68024,72,47.7,7.066667,1.64
+ Bendorf ,BENDORF ,68480,68025,72,47.483333,7.283333,1.74
+ Bennwihr ,BENNWIHR ,68630,68026,72,48.15,7.316667,1.91
+ Berentzwiller ,BERENTZWILLER ,68130,68027,72,47.583333,7.383333,1.87
+ Bergheim ,BERGHEIM ,68750,68028,72,48.2,7.366667,2.19
+ Bergholtz ,BERGHOLTZ ,68500,68029,72,47.916667,7.25,0.93
+ Bergholtz-Zell ,BERGHOLTZ ZELL ,68500,68030,72,47.933333,7.233333,0.96
+ Bernwiller ,BERNWILLER ,68210,68031,72,47.7,7.183333,1.82
+ Berrwiller ,BERRWILLER ,68500,68032,72,47.85,7.216667,1.13
+ Bettendorf ,BETTENDORF ,68560,68033,72,47.583333,7.283333,1.45
+ Bettlach ,BETTLACH ,68480,68034,72,47.5,7.416667,1.65
+ Biederthal ,BIEDERTHAL ,68480,68035,72,47.466667,7.45,2.02
+ Biesheim ,BIESHEIM ,68600,68036,72,48.033333,7.55,2.16
+ Bischwihr ,BISCHWIHR ,68320,68038,72,48.083333,7.433333,1.55
+ Bisel ,BISEL ,68580,68039,72,47.533333,7.216667,1.47
+ Bitschwiller-lès-Thann ,BITSCHWILLER LES THANN ,68620,68040,72,47.833333,7.083333,1.51
+ Blodelsheim ,BLODELSHEIM ,68740,68041,72,47.9,7.533333,2.03
+ Blotzheim ,BLOTZHEIM ,68730,68042,72,47.6,7.483333,1.64
+ Bollwiller ,BOLLWILLER ,68540,68043,72,47.866667,7.25,1
+ Le Bonhomme ,LE BONHOMME ,68650,68044,72,48.166667,7.116667,2
+ Bourbach-le-Bas ,BOURBACH LE BAS ,68290,68045,72,47.783333,7.066667,2.21
+ Bourbach-le-Haut ,BOURBACH LE HAUT ,68290,68046,72,47.8,7.033333,1.9
+ Bourgfelden ,BOURGFELDEN ,68300,68047,72,47.583333,7.55,2.16
+ Bouxwiller ,BOUXWILLER ,68480,68049,72,47.508333,7.341667,-1
+ Bréchaumont ,BRECHAUMONT ,68210,68050,72,47.666667,7.066667,1.64
+ Breitenbach-Haut-Rhin ,BREITENBACH HAUT RHIN ,68380,68051,72,48.016667,7.1,1.38
+ Bretten ,BRETTEN ,68780,68052,72,47.7,7.066667,1.64
+ Brinighoffen ,BRINIGHOFFEN ,68720,68053,72,47.666667,7.216667,1.13
+ Brinckheim ,BRINCKHEIM ,68870,68054,72,47.633333,7.45,1.38
+ Bruebach ,BRUEBACH ,68440,68055,72,47.7,7.366667,0.74
+ Brunstatt ,BRUNSTATT ,68350,68056,72,47.716667,7.316667,1
+ Buethwiller ,BUETHWILLER ,68210,68057,72,47.65,7.15,0.98
+ Buhl ,BUHL ,68530,68058,72,47.933333,7.183333,1
+ Burnhaupt-le-Bas ,BURNHAUPT LE BAS ,68520,68059,72,47.716667,7.166667,1
+ Burnhaupt-le-Haut ,BURNHAUPT LE HAUT ,68520,68060,72,47.733333,7.15,1
+ Buschwiller ,BUSCHWILLER ,68220,68061,72,47.566667,7.516667,1.9
+ Carspach ,CARSPACH ,68130,68062,72,47.616667,7.216667,2.13
+ Cernay ,CERNAY ,68700,68063,72,47.816667,7.166667,0.85
+ Chalampé ,CHALAMPE ,68490,68064,72,47.816667,7.55,2.16
+ Chavannes-sur-l'Étang ,CHAVANNES SUR L ETANG,68210,68065,72,47.633333,7.033333,1.9
+ Colmar ,COLMAR ,68000,68066,72,48.083333,7.366667,1.55
+ Courtavon ,COURTAVON ,68480,68067,72,47.45,7.2,1.92
+ Dannemarie ,DANNEMARIE ,68210,68068,72,47.633333,7.133333,1.12
+ Dessenheim ,DESSENHEIM ,68600,68069,72,47.966667,7.483333,1.64
+ Didenheim ,DIDENHEIM ,68350,68070,72,47.716667,7.3,1
+ Diefmatten ,DIEFMATTEN ,68780,68071,72,47.7,7.116667,1.55
+ Dietwiller ,DIETWILLER ,68440,68072,72,47.7,7.416667,1.11
+ Dolleren ,DOLLEREN ,68290,68073,72,47.8,6.933333,2.69
+ Durlinsdorf ,DURLINSDORF ,68480,68074,72,47.483333,7.25,1.74
+ Durmenach ,DURMENACH ,68480,68075,72,47.533333,7.333333,1.47
+ Durrenentzen ,DURRENENTZEN ,68320,68076,72,48.083333,7.5,1.77
+ Eglingen ,EGLINGEN ,68720,68077,72,47.666667,7.183333,2.07
+ Eguisheim ,EGUISHEIM ,68420,68078,72,48.05,7.3,1.6
+ Elbach ,ELBACH ,68210,68079,72,47.65,7.083333,1.51
+ Emlingen ,EMLINGEN ,68130,68080,72,47.633333,7.3,0.92
+ Ensisheim ,ENSISHEIM ,68190,68082,72,47.866667,7.35,1.42
+ Eschbach-au-Val ,ESCHBACH AU VAL ,68140,68083,72,48.016667,7.15,1.18
+ Eschentzwiller ,ESCHENTZWILLER ,68440,68084,72,47.716667,7.4,0.98
+ Éteimbes ,ETEIMBES ,68210,68085,72,47.7,7.05,1.77
+ Falkwiller ,FALKWILLER ,68210,68086,72,47.683333,7.133333,1.12
+ Feldbach ,FELDBACH ,68640,68087,72,47.533333,7.266667,1.49
+ Feldkirch ,FELDKIRCH ,68540,68088,72,47.866667,7.283333,1
+ Fellering ,FELLERING ,68470,68089,72,47.9,6.983333,2.3
+ Ferrette ,FERRETTE ,68480,68090,72,47.5,7.316667,1.65
+ Fessenheim ,FESSENHEIM ,68740,68091,72,47.916667,7.533333,2.03
+ Fislis ,FISLIS ,68480,68092,72,47.5,7.366667,1.65
+ Flaxlanden ,FLAXLANDEN ,68720,68093,72,47.7,7.316667,1.88
+ Folgensbourg ,FOLGENSBOURG ,68220,68094,72,47.55,7.45,1.38
+ Fortschwihr ,FORTSCHWIHR ,68320,68095,72,48.083333,7.45,1.55
+ Franken ,FRANKEN ,68130,68096,72,47.6,7.35,1.1
+ Fréland ,FRELAND ,68240,68097,72,48.166667,7.2,2
+ Friesen ,FRIESEN ,68580,68098,72,47.566667,7.15,1.28
+ Froeningen ,FROENINGEN ,68720,68099,72,47.683333,7.266667,0.64
+ Fulleren ,FULLEREN ,68210,68100,72,47.6,7.15,1.24
+ Galfingue ,GALFINGUE ,68990,68101,72,47.7,7.216667,1
+ Geishouse ,GEISHOUSE ,68690,68102,72,47.883333,7.066667,1.64
+ Geispitzen ,GEISPITZEN ,68510,68103,72,47.666667,7.416667,1.11
+ Geiswasser ,GEISWASSER ,68600,68104,72,47.966667,7.6,2.56
+ Gommersdorf ,GOMMERSDORF ,68210,68107,72,47.633333,7.133333,1.12
+ Grentzingen ,GRENTZINGEN ,68960,68108,72,47.566667,7.3,1.28
+ Griesbach-au-Val ,GRIESBACH AU VAL ,68140,68109,72,48.033333,7.183333,1.46
+ Grussenheim ,GRUSSENHEIM ,68320,68110,72,48.133333,7.483333,1.82
+ Gueberschwihr ,GUEBERSCHWIHR ,68420,68111,72,48,7.283333,1.5
+ Guebwiller ,GUEBWILLER ,68500,68112,72,47.916667,7.2,0.63
+ Guémar ,GUEMAR ,68970,68113,72,48.183333,7.4,2.09
+ Guevenatten ,GUEVENATTEN ,68210,68114,72,47.683333,7.083333,1.51
+ Guewenheim ,GUEWENHEIM ,68116,68115,72,47.75,7.083333,1.51
+ Gundolsheim ,GUNDOLSHEIM ,68250,68116,72,47.916667,7.3,0.96
+ Gunsbach ,GUNSBACH ,68140,68117,72,48.05,7.183333,1.46
+ Habsheim ,HABSHEIM ,68440,68118,72,47.733333,7.416667,1.67
+ Hagenbach ,HAGENBACH ,68210,68119,72,47.65,7.166667,1.17
+ Hagenthal-le-Bas ,HAGENTHAL LE BAS ,68220,68120,72,47.516667,7.466667,1.56
+ Hagenthal-le-Haut ,HAGENTHAL LE HAUT ,68220,68121,72,47.516667,7.466667,1.56
+ Hartmannswiller ,HARTMANNSWILLER ,68500,68122,72,47.866667,7.216667,0.73
+ Hattstatt ,HATTSTATT ,68420,68123,72,48.016667,7.3,1.18
+ Hausgauen ,HAUSGAUEN ,68130,68124,72,47.6,7.333333,1.1
+ Hecken ,HECKEN ,68210,68125,72,47.683333,7.133333,1.12
+ Hégenheim ,HEGENHEIM ,68220,68126,72,47.566667,7.533333,2.03
+ Heidwiller ,HEIDWILLER ,68720,68127,72,47.666667,7.25,0.74
+ Heimersdorf ,HEIMERSDORF ,68560,68128,72,47.566667,7.25,1.28
+ Heimsbrunn ,HEIMSBRUNN ,68990,68129,72,47.733333,7.233333,1
+ Heiteren ,HEITEREN ,68600,68130,72,47.966667,7.533333,2.03
+ Heiwiller ,HEIWILLER ,68130,68131,72,47.616667,7.316667,1.01
+ Helfrantzkirch ,HELFRANTZKIRCH ,68510,68132,72,47.6,7.416667,1.4
+ Henflingen ,HENFLINGEN ,68960,68133,72,47.566667,7.3,1.28
+ Herrlisheim-près-Colmar ,HERRLISHEIM PRES COLMAR ,68420,68134,72,48.016667,7.316667,1.18
+ Hésingue ,HESINGUE ,68220,68135,72,47.583333,7.516667,1.9
+ Hettenschlag ,HETTENSCHLAG ,68600,68136,72,48,7.45,2.02
+ Hindlingen ,HINDLINGEN ,68580,68137,72,47.566667,7.133333,1.31
+ Hirsingue ,HIRSINGUE ,68560,68138,72,47.583333,7.25,1.19
+ Hirtzbach ,HIRTZBACH ,68118,68139,72,47.6,7.216667,1.1
+ Hirtzfelden ,HIRTZFELDEN ,68740,68140,72,47.916667,7.45,1.38
+ Hochstatt ,HOCHSTATT ,68720,68141,72,47.716667,7.283333,1.42
+ Hohrod ,HOHROD ,68140,68142,72,48.05,7.133333,1.36
+ Holtzwihr ,HOLTZWIHR ,68320,68143,72,48.116667,7.416667,1.73
+ Hombourg ,HOMBOURG ,68490,68144,72,47.766667,7.5,1.77
+ Houssen ,HOUSSEN ,68125,68146,72,48.116667,7.383333,1.73
+ Hunawihr ,HUNAWIHR ,68150,68147,72,48.166667,7.316667,2
+ Hundsbach ,HUNDSBACH ,68130,68148,72,47.6,7.333333,1.1
+ Huningue ,HUNINGUE ,68330,68149,72,47.6,7.583333,2.42
+ Husseren-les-Châteaux ,HUSSEREN LES CHATEAUX ,68420,68150,72,48.033333,7.283333,1.27
+ Husseren-Wesserling ,HUSSEREN WESSERLING ,68470,68151,72,47.883333,6.983333,2.3
+ Illfurth ,ILLFURTH ,68720,68152,72,47.666667,7.266667,0.74
+ Illhaeusern ,ILLHAEUSERN ,68970,68153,72,48.183333,7.433333,2.09
+ Illzach ,ILLZACH ,68110,68154,72,47.783333,7.333333,0.46
+ Ingersheim ,INGERSHEIM ,68040,68155,72,48.1,7.3,1.64
+ Issenheim ,ISSENHEIM ,68500,68156,72,47.9,7.266667,1.2
+ Jebsheim ,JEBSHEIM ,68320,68157,72,48.116667,7.483333,1.73
+ Jettingen ,JETTINGEN ,68130,68158,72,47.6,7.366667,1.37
+ Jungholtz ,JUNGHOLTZ ,68500,68159,72,47.883333,7.183333,0.86
+ Kappelen ,KAPPELEN ,68510,68160,72,47.616667,7.433333,1.24
+ Katzenthal ,KATZENTHAL ,68230,68161,72,48.1,7.283333,1.64
+ Kaysersberg ,KAYSERSBERG ,68240,68162,72,48.133333,7.25,1.82
+ Kembs ,KEMBS ,68680,68163,72,47.683333,7.5,1.77
+ Kientzheim ,KIENTZHEIM ,68240,68164,72,48.133333,7.283333,1.82
+ Kiffis ,KIFFIS ,68480,68165,72,47.433333,7.366667,2.01
+ Kingersheim ,KINGERSHEIM ,68260,68166,72,47.8,7.333333,0.46
+ Kirchberg ,KIRCHBERG ,68290,68167,72,47.8,6.966667,2.43
+ Knoeringue ,KNOERINGUE ,68220,68168,72,47.566667,7.4,1.63
+ Koestlach ,KOESTLACH ,68480,68169,72,47.5,7.283333,1.65
+ Koetzingue ,KOETZINGUE ,68510,68170,72,47.65,7.383333,1.03
+ Kruth ,KRUTH ,68820,68171,72,47.933333,6.966667,2.43
+ Kunheim ,KUNHEIM ,68320,68172,72,48.083333,7.533333,2.03
+ Labaroche ,LABAROCHE ,68910,68173,72,48.116667,7.2,1.73
+ Landser ,LANDSER ,68440,68174,72,47.683333,7.383333,0.85
+ Lapoutroie ,LAPOUTROIE ,68650,68175,72,48.15,7.166667,1.91
+ Largitzen ,LARGITZEN ,68580,68176,72,47.566667,7.183333,1.28
+ Lautenbach ,LAUTENBACH ,68610,68177,72,47.95,7.15,1.14
+ Lautenbachzell ,LAUTENBACHZELL ,68610,68178,72,47.933333,7.15,0.98
+ Lauw ,LAUW ,68290,68179,72,47.75,7.016667,2.03
+ Leimbach ,LEIMBACH ,68800,68180,72,47.8,7.1,1.38
+ Lévoncourt ,LEVONCOURT ,68480,68181,72,47.45,7.216667,1.92
+ Leymen ,LEYMEN ,68220,68182,72,47.483333,7.483333,1.74
+ Liebenswiller ,LIEBENSWILLER ,68220,68183,72,47.5,7.45,1.65
+ Liebsdorf ,LIEBSDORF ,68480,68184,72,47.466667,7.233333,1.83
+ Lièpvre ,LIEPVRE ,68660,68185,72,48.266667,7.283333,2.55
+ Ligsdorf ,LIGSDORF ,68480,68186,72,47.466667,7.316667,1.83
+ Linsdorf ,LINSDORF ,68480,68187,72,47.5,7.383333,1.65
+ Linthal ,LINTHAL ,68610,68188,72,47.933333,7.133333,1.14
+ Logelheim ,LOGELHEIM ,68280,68189,72,48.016667,7.4,1.18
+ Luemschwiller ,LUEMSCHWILLER ,68720,68191,72,47.65,7.3,1.45
+ Luttenbach-près-Munster ,LUTTENBACH PRES MUNSTER ,68140,68193,72,48.016667,7.116667,1.25
+ Lutter ,LUTTER ,68480,68194,72,47.466667,7.383333,1.83
+ Lutterbach ,LUTTERBACH ,68460,68195,72,47.766667,7.283333,0.19
+ Magny ,MAGNY ,68210,68196,72,47.6,7.05,1.77
+ Magstatt-le-Bas ,MAGSTATT LE BAS ,68510,68197,72,47.633333,7.4,0.98
+ Magstatt-le-Haut ,MAGSTATT LE HAUT ,68510,68198,72,47.633333,7.383333,1.02
+ Malmerspach ,MALMERSPACH ,68550,68199,72,47.866667,7.033333,1.9
+ Manspach ,MANSPACH ,68210,68200,72,47.616667,7.1,1.38
+ Masevaux ,MASEVAUX ,68290,68201,72,47.783333,7,2.16
+ Mertzen ,MERTZEN ,68210,68202,72,47.583333,7.133333,1.35
+ Merxheim ,MERXHEIM ,68500,68203,72,47.916667,7.283333,1.67
+ Metzeral ,METZERAL ,68380,68204,72,48.016667,7.066667,1.64
+ Meyenheim ,MEYENHEIM ,68890,68205,72,47.916667,7.35,1
+ Michelbach ,MICHELBACH ,68700,68206,72,47.766667,7.116667,1.56
+ Michelbach-le-Bas ,MICHELBACH LE BAS ,68730,68207,72,47.6,7.45,1.38
+ Michelbach-le-Haut ,MICHELBACH LE HAUT ,68220,68208,72,47.566667,7.433333,1.28
+ Mittelwihr ,MITTELWIHR ,68630,68209,72,48.15,7.316667,1.91
+ Mitzach ,MITZACH ,68470,68211,72,47.866667,7,2.16
+ Moernach ,MOERNACH ,68480,68212,72,47.5,7.25,1.65
+ Mollau ,MOLLAU ,68470,68213,72,47.866667,6.966667,2.43
+ Montreux-Jeune ,MONTREUX JEUNE ,68210,68214,72,47.616667,7.033333,1.9
+ Montreux-Vieux ,MONTREUX VIEUX ,68210,68215,72,47.616667,7.033333,1.9
+ Moosch ,MOOSCH ,68690,68217,72,47.866667,7.033333,1.9
+ Morschwiller-le-Bas ,MORSCHWILLER LE BAS ,68790,68218,72,47.75,7.266667,0.28
+ Mortzwiller ,MORTZWILLER ,68780,68219,72,47.75,7.033333,1.9
+ Moyen-Muespach ,MOYEN MUESPACH ,68640,68220,72,47.55,7.383333,1.38
+ Muespach-le-Haut ,MUESPACH LE HAUT ,68640,68222,72,47.55,7.416667,1.69
+ Muhlbach-sur-Munster ,MUHLBACH SUR MUNSTER ,68380,68223,72,48.033333,7.083333,1.51
+ Mulhouse ,MULHOUSE ,68100,68224,72,47.75,7.333333,0.46
+ Munchhouse ,MUNCHHOUSE ,68740,68225,72,47.866667,7.45,1.38
+ Munster ,MUNSTER ,68140,68226,72,48.05,7.133333,1.36
+ Muntzenheim ,MUNTZENHEIM ,68320,68227,72,48.1,7.466667,1.64
+ Munwiller ,MUNWILLER ,68250,68228,72,47.916667,7.35,0.69
+ Murbach ,MURBACH ,68530,68229,72,47.916667,7.166667,1
+ Nambsheim ,NAMBSHEIM ,68740,68230,72,47.916667,7.55,2.16
+ Neuf-Brisach ,NEUF BRISACH ,68600,68231,72,48.016667,7.533333,2.03
+ Neuwiller ,NEUWILLER ,68220,68232,72,47.516667,7.516667,1.9
+ Niederbruck ,NIEDERBRUCK ,68290,68233,72,47.783333,6.966667,2.43
+ Niederentzen ,NIEDERENTZEN ,68250,68234,72,47.95,7.383333,0.85
+ Niederhergheim ,NIEDERHERGHEIM ,68250,68235,72,47.983333,7.4,1.21
+ Niederlarg ,NIEDERLARG ,68580,68236,72,47.516667,7.216667,1.72
+ Niedermorschwihr ,NIEDERMORSCHWIHR ,68230,68237,72,48.1,7.283333,1.64
+ Niffer ,NIFFER ,68680,68238,72,47.716667,7.516667,1.9
+ Oberbruck ,OBERBRUCK ,68290,68239,72,47.8,6.95,2.56
+ Oberdorf ,OBERDORF ,68960,68240,72,47.566667,7.316667,1.28
+ Oberentzen ,OBERENTZEN ,68250,68241,72,47.95,7.383333,0.85
+ Oberhergheim ,OBERHERGHEIM ,68250,68242,72,47.966667,7.4,1.11
+ Oberlarg ,OBERLARG ,68480,68243,72,47.45,7.233333,1.92
+ Obermorschwihr ,OBERMORSCHWIHR ,68420,68244,72,48.016667,7.3,1.18
+ Obermorschwiller ,OBERMORSCHWILLER ,68130,68245,72,47.65,7.316667,0.83
+ Obersaasheim ,OBERSAASHEIM ,68600,68246,72,47.983333,7.55,2.16
+ Oderen ,ODEREN ,68830,68247,72,47.916667,6.983333,2.3
+ Oltingue ,OLTINGUE ,68480,68248,72,47.483333,7.383333,1.74
+ Orbey ,ORBEY ,68370,68249,72,48.133333,7.166667,1.82
+ Osenbach ,OSENBACH ,68570,68251,72,47.983333,7.216667,1
+ Ostheim ,OSTHEIM ,68150,68252,72,48.15,7.366667,1.91
+ Ottmarsheim ,OTTMARSHEIM ,68490,68253,72,47.783333,7.5,1.77
+ Petit-Landau ,PETIT LANDAU ,68490,68254,72,47.716667,7.516667,1.9
+ Pfaffenheim ,PFAFFENHEIM ,68250,68255,72,47.983333,7.283333,1.12
+ Pfastatt ,PFASTATT ,68120,68256,72,47.783333,7.3,1
+ Pfetterhouse ,PFETTERHOUSE ,68480,68257,72,47.5,7.166667,2.25
+ Pulversheim ,PULVERSHEIM ,68840,68258,72,47.85,7.3,0.27
+ Raedersdorf ,RAEDERSDORF ,68480,68259,72,47.466667,7.366667,1.83
+ Raedersheim ,RAEDERSHEIM ,68190,68260,72,47.883333,7.283333,1.36
+ Rammersmatt ,RAMMERSMATT ,68800,68261,72,47.8,7.066667,1.64
+ Ranspach ,RANSPACH ,68470,68262,72,47.883333,7.016667,2.03
+ Ranspach-le-Bas ,RANSPACH LE BAS ,68730,68263,72,47.583333,7.45,1.38
+ Ranspach-le-Haut ,RANSPACH LE HAUT ,68220,68264,72,47.583333,7.416667,1.46
+ Rantzwiller ,RANTZWILLER ,68510,68265,72,47.65,7.366667,1.58
+ Reguisheim ,REGUISHEIM ,68890,68266,72,47.9,7.35,1
+ Reiningue ,REININGUE ,68950,68267,72,47.75,7.233333,0.33
+ Retzwiller ,RETZWILLER ,68210,68268,72,47.633333,7.1,1.38
+ Ribeauvillé ,RIBEAUVILLE ,68150,68269,72,48.2,7.316667,2.19
+ Richwiller ,RICHWILLER ,68120,68270,72,47.783333,7.283333,1
+ Riedisheim ,RIEDISHEIM ,68400,68271,72,47.75,7.366667,0.72
+ Riedwihr ,RIEDWIHR ,68320,68272,72,48.116667,7.433333,1.73
+ Riespach ,RIESPACH ,68640,68273,72,47.55,7.283333,1.38
+ Rimbach-près-Guebwiller ,RIMBACH PRES GUEBWILLER ,68500,68274,72,47.9,7.15,1.6
+ Rimbach-près-Masevaux ,RIMBACH PRES MASEVAUX ,68290,68275,72,47.833333,6.95,2.56
+ Rimbachzell ,RIMBACHZELL ,68500,68276,72,47.9,7.183333,0.8
+ Riquewihr ,RIQUEWIHR ,68340,68277,72,48.166667,7.3,2
+ Rixheim ,RIXHEIM ,68170,68278,72,47.766667,7.4,0.98
+ Roderen ,RODEREN ,68800,68279,72,47.783333,7.083333,1.51
+ Rodern ,RODERN ,68590,68280,72,48.233333,7.35,2.37
+ Roggenhouse ,ROGGENHOUSE ,68740,68281,72,47.883333,7.466667,1.51
+ Romagny ,ROMAGNY ,68210,68282,72,47.616667,7.066667,1.64
+ Rombach-le-Franc ,ROMBACH LE FRANC ,68660,68283,72,48.283333,7.266667,2.64
+ Roppentzwiller ,ROPPENTZWILLER ,68480,68284,72,47.55,7.333333,1.38
+ Rorschwihr ,RORSCHWIHR ,68590,68285,72,48.216667,7.366667,2.28
+ Rosenau ,ROSENAU ,68128,68286,72,47.633333,7.533333,2.03
+ Rouffach ,ROUFFACH ,68250,68287,72,47.966667,7.283333,1.02
+ Ruederbach ,RUEDERBACH ,68560,68288,72,47.566667,7.266667,1.28
+ Ruelisheim ,RUELISHEIM ,68270,68289,72,47.833333,7.366667,1
+ Rustenhart ,RUSTENHART ,68740,68290,72,47.933333,7.45,1.38
+ Rumersheim-le-Haut ,RUMERSHEIM LE HAUT ,68740,68291,72,47.85,7.516667,1.9
+ Saint-Amarin ,SAINT AMARIN ,68550,68292,72,47.883333,7.016667,2.03
+ Saint-Cosme ,SAINT COSME ,68210,68293,72,47.683333,7.066667,1.64
+ Sainte-Croix-aux-Mines ,SAINTE CROIX AUX MINES,68160,68294,72,48.266667,7.216667,2.55
+ Sainte-Croix-en-Plaine ,SAINTE CROIX EN PLAINE,68127,68295,72,48.016667,7.383333,1.18
+ Saint-Hippolyte ,SAINT HIPPOLYTE ,68590,68296,72,48.233333,7.366667,2.37
+ Saint-Louis ,SAINT LOUIS ,68128,68297,72,47.583333,7.566667,2.29
+ Sainte-Marie-aux-Mines ,SAINTE MARIE AUX MINES,68160,68298,72,48.25,7.183333,2.46
+ Saint-Ulrich ,SAINT ULRICH ,68210,68299,72,47.6,7.116667,1.25
+ Sausheim ,SAUSHEIM ,68390,68300,72,47.783333,7.366667,1.13
+ Schlierbach ,SCHLIERBACH ,68440,68301,72,47.683333,7.4,0.98
+ Schwoben ,SCHWOBEN ,68130,68303,72,47.616667,7.3,1.01
+ Sentheim ,SENTHEIM ,68780,68304,72,47.75,7.066667,1.64
+ Seppois-le-Bas ,SEPPOIS LE BAS ,68580,68305,72,47.55,7.166667,1.38
+ Seppois-le-Haut ,SEPPOIS LE HAUT ,68580,68306,72,47.516667,7.183333,1.56
+ Sewen ,SEWEN ,68290,68307,72,47.8,6.9,2.95
+ Sickert ,SICKERT ,68290,68308,72,47.783333,6.983333,2.3
+ Sierentz ,SIERENTZ ,68510,68309,72,47.666667,7.466667,2.06
+ Sigolsheim ,SIGOLSHEIM ,68240,68310,72,48.133333,7.3,1.82
+ Sondernach ,SONDERNACH ,68380,68311,72,47.983333,7.083333,1.51
+ Sondersdorf ,SONDERSDORF ,68480,68312,72,47.483333,7.35,1.74
+ Soppe-le-Bas ,SOPPE LE BAS ,68780,68313,72,47.716667,7.083333,1.51
+ Soppe-le-Haut ,SOPPE LE HAUT ,68780,68314,72,47.733333,7.066667,1.64
+ Soultz-Haut-Rhin ,SOULTZ HAUT RHIN ,68360,68315,72,47.883333,7.233333,0.45
+ Soultzbach-les-Bains ,SOULTZBACH LES BAINS ,68230,68316,72,48.033333,7.2,1.27
+ Soultzeren ,SOULTZEREN ,68140,68317,72,48.066667,7.1,1.45
+ Soultzmatt ,SOULTZMATT ,68570,68318,72,47.966667,7.233333,1.14
+ Spechbach-le-Bas ,SPECHBACH LE BAS ,68720,68319,72,47.666667,7.233333,0.74
+ Spechbach-le-Haut ,SPECHBACH LE HAUT ,68720,68320,72,47.683333,7.216667,1.13
+ Staffelfelden ,STAFFELFELDEN ,68850,68321,72,47.816667,7.25,0.2
+ Steinbach ,STEINBACH ,68700,68322,72,47.816667,7.15,0.98
+ Steinbrunn-le-Bas ,STEINBRUNN LE BAS ,68440,68323,72,47.675,7.366667,-1
+ Steinbrunn-le-Haut ,STEINBRUNN LE HAUT ,68440,68324,72,47.666667,7.35,1.72
+ Steinsoultz ,STEINSOULTZ ,68640,68325,72,47.55,7.35,1.38
+ Sternenberg ,STERNENBERG ,68780,68326,72,47.7,7.1,1.38
+ Stetten ,STETTEN ,68510,68327,72,47.633333,7.416667,1.11
+ Storckensohn ,STORCKENSOHN ,68470,68328,72,47.883333,6.95,2.56
+ Stosswihr ,STOSSWIHR ,68140,68329,72,48.05,7.1,1.38
+ Strueth ,STRUETH ,68580,68330,72,47.583333,7.133333,1.59
+ Sundhoffen ,SUNDHOFFEN ,68280,68331,72,48.033333,7.416667,1.27
+ Tagolsheim ,TAGOLSHEIM ,68720,68332,72,47.65,7.266667,0.83
+ Tagsdorf ,TAGSDORF ,68130,68333,72,47.633333,7.3,0.92
+ Thann ,THANN ,68800,68334,72,47.816667,7.083333,1.51
+ Thannenkirch ,THANNENKIRCH ,68590,68335,72,48.233333,7.3,2.37
+ Traubach-le-Bas ,TRAUBACH LE BAS ,68210,68336,72,47.666667,7.1,1.38
+ Traubach-le-Haut ,TRAUBACH LE HAUT ,68210,68337,72,47.666667,7.1,1.38
+ Turckheim ,TURCKHEIM ,68230,68338,72,48.083333,7.283333,1.55
+ Ueberkumen ,UEBERKUMEN ,68210,68339,72,47.666667,7.166667,1.23
+ Ueberstrass ,UEBERSTRASS ,68580,68340,72,47.55,7.166667,1.38
+ Uffheim ,UFFHEIM ,68510,68341,72,47.65,7.433333,1.24
+ Uffholtz ,UFFHOLTZ ,68700,68342,72,47.816667,7.166667,0.85
+ Ungersheim ,UNGERSHEIM ,68190,68343,72,47.883333,7.316667,0.45
+ Urbès ,URBES ,68121,68344,72,47.883333,6.95,2.56
+ Urschenheim ,URSCHENHEIM ,68320,68345,72,48.083333,7.483333,1.64
+ Valdieu ,VALDIEU ,68210,68346,72,47.633333,7.066667,1.64
+ Vieux-Ferrette ,VIEUX FERRETTE ,68480,68347,72,47.5,7.3,1.65
+ Vieux-Thann ,VIEUX THANN ,68800,68348,72,47.8,7.133333,1.78
+ Village-Neuf ,VILLAGE NEUF ,68128,68349,72,47.6,7.566667,2.29
+ Vogelgrun ,VOGELGRUN ,68600,68351,72,48.016667,7.566667,2.29
+ Wahlbach ,WAHLBACH ,68130,68353,72,47.633333,7.35,0.97
+ Walbach ,WALBACH ,68230,68354,72,48.066667,7.233333,1.45
+ Waldighofen ,WALDIGHOFEN ,68640,68355,72,47.55,7.316667,1.38
+ Walheim ,WALHEIM ,68130,68356,72,47.65,7.266667,1.2
+ Waltenheim ,WALTENHEIM ,68510,68357,72,47.65,7.416667,1.11
+ Wasserbourg ,WASSERBOURG ,68230,68358,72,48,7.166667,2.07
+ Wattwiller ,WATTWILLER ,68700,68359,72,47.85,7.166667,1.62
+ Weckolsheim ,WECKOLSHEIM ,68600,68360,72,48,7.516667,1.9
+ Wegscheid ,WEGSCHEID ,68290,68361,72,47.8,6.95,2.56
+ Wentzwiller ,WENTZWILLER ,68220,68362,72,47.55,7.483333,1.64
+ Werentzhouse ,WERENTZHOUSE ,68480,68363,72,47.516667,7.35,1.56
+ Westhalten ,WESTHALTEN ,68250,68364,72,47.95,7.266667,1.29
+ Wettolsheim ,WETTOLSHEIM ,68920,68365,72,48.066667,7.316667,1.45
+ Wickerschwihr ,WICKERSCHWIHR ,68320,68366,72,48.1,7.433333,1.64
+ Wihr-au-Val ,WIHR AU VAL ,68230,68368,72,48.05,7.2,1.36
+ Wihr-en-Plaine ,WIHR EN PLAINE ,68180,68369,72,48.083333,7.4,1.55
+ Wildenstein ,WILDENSTEIN ,68820,68370,72,47.983333,6.966667,2.43
+ Willer ,WILLER ,68960,68371,72,47.583333,7.316667,1.4
+ Willer-sur-Thur ,WILLER SUR THUR ,68760,68372,72,47.85,7.083333,1.51
+ Winkel ,WINKEL ,68480,68373,72,47.466667,7.266667,1.83
+ Wintzenheim ,WINTZENHEIM ,68920,68374,72,48.066667,7.283333,1.45
+ Wittelsheim ,WITTELSHEIM ,68310,68375,72,47.816667,7.25,0.2
+ Wittenheim ,WITTENHEIM ,68270,68376,72,47.816667,7.333333,1
+ Wittersdorf ,WITTERSDORF ,68130,68377,72,47.616667,7.283333,1.01
+ Wolfersdorf ,WOLFERSDORF ,68210,68378,72,47.633333,7.116667,1.25
+ Wolfgantzen ,WOLFGANTZEN ,68600,68379,72,48.033333,7.516667,1.9
+ Wolschwiller ,WOLSCHWILLER ,68480,68380,72,47.466667,7.4,1.83
+ Wuenheim ,WUENHEIM ,68500,68381,72,47.883333,7.2,0.59
+ Zaessingue ,ZAESSINGUE ,68130,68382,72,47.616667,7.366667,1.3
+ Zellenberg ,ZELLENBERG ,68340,68383,72,48.166667,7.316667,2
+ Zillisheim ,ZILLISHEIM ,68720,68384,72,47.683333,7.266667,0.64
+ Zimmerbach ,ZIMMERBACH ,68230,68385,72,48.066667,7.233333,1.45
+ Zimmersheim ,ZIMMERSHEIM ,68440,68386,72,47.716667,7.383333,0.85
+ Trois-Épis ,TROIS EPIS ,68410,68900,72,48.1,7.233333,1.64
+ Wintzfelden ,WINTZFELDEN ,68570,68909,72,47.966667,7.2,1.14
+ Logelbach ,LOGELBACH ,68124,68911,72,48.083333,7.333333,1.55
+ Échery ,ECHERY ,68160,68912,72,48.233333,7.166667,2.37
+ Affoux ,AFFOUX ,69170,69001,82,45.833333,4.4,1.94
+ Aigueperse ,AIGUEPERSE ,69790,69002,82,46.283333,4.433333,2.64
+ Albigny-sur-Saône ,ALBIGNY SUR SAONE ,69250,69003,82,45.816667,4.45,2.5
+ Alix ,ALIX ,69380,69004,82,45.916667,4.65,1.49
+ Amplepuis ,AMPLEPUIS ,69550,69006,82,45.983333,4.333333,2.45
+ Ampuis ,AMPUIS ,69420,69007,82,45.483333,4.816667,2.34
+ Ancy ,ANCY ,69490,69008,82,45.833333,4.516667,1.31
+ Anse ,ANSE ,69480,69009,82,45.933333,4.716667,1.24
+ L'Arbresle ,L ARBRESLE ,69210,69010,82,45.833333,4.616667,0.4
+ Arbuissonnas ,ARBUISSONNAS ,69460,69011,82,46.05,4.633333,1.19
+ Les Ardillats ,LES ARDILLATS ,69430,69012,82,46.183333,4.55,2.02
+ Arnas ,ARNAS ,69400,69013,82,46.016667,4.7,1.49
+ Aveize ,AVEIZE ,69610,69014,82,45.683333,4.483333,1.3
+ Avenas ,AVENAS ,69430,69015,82,46.2,4.616667,2.12
+ Azolette ,AZOLETTE ,69790,69016,82,46.2,4.416667,2.12
+ Bagnols ,BAGNOLS ,69620,69017,82,45.916667,4.616667,1.33
+ Beaujeu ,BEAUJEU ,69430,69018,82,46.15,4.6,1.81
+ Belleville ,BELLEVILLE ,69220,69019,82,46.108333,4.75,1.55
+ Bessenay ,BESSENAY ,69690,69021,82,45.783333,4.55,0.79
+ Bibost ,BIBOST ,69690,69022,82,45.8,4.55,0.79
+ Blacé ,BLACE ,69460,69023,82,46.033333,4.65,1.26
+ Le Bois-d'Oingt ,LE BOIS D OINGT,69620,69024,82,45.916667,4.583333,0.65
+ Bourg-de-Thizy ,BOURG DE THIZY ,69240,69025,82,46.033333,4.3,2.7
+ Le Breuil ,LE BREUIL ,69620,69026,82,45.9,4.566667,1.04
+ Brignais ,BRIGNAIS ,69530,69027,82,45.666667,4.75,1.2
+ Brindas ,BRINDAS ,69126,69028,82,45.716667,4.683333,0.89
+ Bron ,BRON ,69500,69029,82,45.733333,4.916667,2.01
+ Brullioles ,BRULLIOLES ,69690,69030,82,45.766667,4.5,1.18
+ Brussieu ,BRUSSIEU ,69690,69031,82,45.75,4.516667,1.05
+ Bully ,BULLY ,69210,69032,82,45.85,4.583333,1.25
+ Cailloux-sur-Fontaines ,CAILLOUX SUR FONTAINES ,69270,69033,82,45.85,4.866667,1.62
+ Caluire-et-Cuire ,CALUIRE ET CUIRE ,69300,69034,82,45.8,4.85,1.5
+ Cenves ,CENVES ,69840,69035,82,46.266667,4.65,2.54
+ Cercié ,CERCIE ,69220,69036,82,46.116667,4.666667,1.6
+ Chambost-Allières ,CHAMBOST ALLIERES ,69870,69037,82,46.016667,4.5,1.18
+ Chambost-Longessaigne ,CHAMBOST LONGESSAIGNE ,69770,69038,82,45.766667,4.366667,2.19
+ Chamelet ,CHAMELET ,69620,69039,82,45.983333,4.516667,1.95
+ Champagne-au-Mont-d'Or ,CHAMPAGNE AU MONT D,69410,69040,82,45.8,4.783333,0.99
+ La Chapelle-de-Mardore ,LA CHAPELLE DE MARDORE,69240,69041,82,46.05,4.35,2.32
+ La Chapelle-sur-Coise ,LA CHAPELLE SUR COISE,69590,69042,82,45.65,4.5,1.3
+ Chaponost ,CHAPONOST ,69630,69043,82,45.7,4.75,0.99
+ Charbonnières-les-Bains ,CHARBONNIERES LES BAINS ,69260,69044,82,45.783333,4.733333,0.61
+ Charentay ,CHARENTAY ,69220,69045,82,46.083333,4.683333,1.4
+ Charly ,CHARLY ,69390,69046,82,45.65,4.8,1.3
+ Charnay ,CHARNAY ,69380,69047,82,45.9,4.666667,0.96
+ Chassagny ,CHASSAGNY ,69700,69048,82,45.6,4.733333,1.61
+ Chasselay ,CHASSELAY ,69380,69049,82,45.866667,4.783333,1.89
+ Châtillon ,CHATILLON ,69380,69050,82,45.875,4.65,1.13
+ Chaussan ,CHAUSSAN ,69440,69051,82,45.633333,4.633333,1.41
+ Chazay-d'Azergues ,CHAZAY D AZERGUES ,69380,69052,82,45.866667,4.716667,0.48
+ Chénas ,CHENAS ,69840,69053,82,46.216667,4.716667,2.23
+ Chénelette ,CHENELETTE ,69430,69054,82,46.166667,4.483333,1.98
+ Les Chères ,LES CHERES ,69380,69055,82,45.883333,4.733333,0.78
+ Chessy ,CHESSY ,69380,69056,82,45.9,4.616667,1.97
+ Chevinay ,CHEVINAY ,69210,69057,82,45.766667,4.6,1.68
+ Chiroubles ,CHIROUBLES ,69115,69058,82,46.183333,4.666667,2.02
+ Civrieux-d'Azergues ,CIVRIEUX D AZERGUES ,69380,69059,82,45.85,4.716667,0.65
+ Claveisolles ,CLAVEISOLLES ,69870,69060,82,46.1,4.5,1.5
+ Cogny ,COGNY ,69640,69061,82,45.983333,4.633333,0.77
+ Coise ,COISE ,69590,69062,82,45.616667,4.483333,1.51
+ Collonges-au-Mont-d'Or ,COLLONGES AU MONT D,69660,69063,82,45.816667,4.833333,1.37
+ Condrieu ,CONDRIEU ,69420,69064,82,45.45,4.766667,2.55
+ Corcelles-en-Beaujolais ,CORCELLES EN BEAUJOLAIS ,69220,69065,82,46.15,4.716667,1.81
+ Courzieu ,COURZIEU ,69690,69067,82,45.733333,4.566667,0.78
+ Couzon-au-Mont-d'Or ,COUZON AU MONT D,69270,69068,82,45.833333,4.833333,1.37
+ Craponne ,CRAPONNE ,69290,69069,82,45.733333,4.716667,0.86
+ Cublize ,CUBLIZE ,69550,69070,82,46.016667,4.383333,2.07
+ Dardilly ,DARDILLY ,69570,69072,82,45.8,4.733333,0.61
+ Dareizé ,DAREIZE ,69490,69073,82,45.9,4.5,1.18
+ Denicé ,DENICE ,69640,69074,82,46,4.65,0.88
+ Dième ,DIEME ,69170,69075,82,45.966667,4.466667,1.43
+ Dommartin ,DOMMARTIN ,69380,69076,82,45.833333,4.716667,0.99
+ Dracé ,DRACE ,69220,69077,82,46.15,4.766667,1.81
+ Duerne ,DUERNE ,69850,69078,82,45.683333,4.533333,1.09
+ Durette ,DURETTE ,69430,69079,82,46.133333,4.633333,1.71
+ Échalas ,ECHALAS ,69700,69080,82,45.55,4.716667,1.92
+ Écully ,ECULLY ,69130,69081,82,45.766667,4.766667,0.86
+ Émeringes ,EMERINGES ,69840,69082,82,46.216667,4.666667,2.23
+ Éveux ,EVEUX ,69210,69083,82,45.833333,4.616667,0.4
+ Fleurie ,FLEURIE ,69820,69084,82,46.183333,4.7,2.02
+ Fleurieu-sur-Saône ,FLEURIEU SUR SAONE ,69250,69085,82,45.866667,4.85,1.5
+ Fleurieux-sur-l'Arbresle ,FLEURIEUX SUR L ARBRESLE,69210,69086,82,45.833333,4.65,1.2
+ Fontaines-Saint-Martin ,FONTAINES SAINT MARTIN ,69270,69087,82,45.85,4.866667,1.62
+ Fontaines-sur-Saône ,FONTAINES SUR SAONE ,69270,69088,82,45.833333,4.85,1.5
+ Francheville ,FRANCHEVILLE ,69340,69089,82,45.733333,4.766667,0.86
+ Frontenas ,FRONTENAS ,69620,69090,82,45.933333,4.616667,1.2
+ Givors ,GIVORS ,69700,69091,82,45.583333,4.766667,1.72
+ Gleizé ,GLEIZE ,69400,69092,82,45.983333,4.683333,0.77
+ Grandris ,GRANDRIS ,69870,69093,82,46.033333,4.483333,1.3
+ Grézieu-la-Varenne ,GREZIEU LA VARENNE ,69290,69094,82,45.75,4.7,0.68
+ Grigny ,GRIGNY ,69520,69096,82,45.616667,4.783333,1.51
+ Les Haies ,LES HAIES ,69420,69097,82,45.5,4.75,2.24
+ Les Halles ,LES HALLES ,69610,69098,82,45.716667,4.433333,1.69
+ Haute-Rivoire ,HAUTE RIVOIRE ,69610,69099,82,45.716667,4.4,1.94
+ Irigny ,IRIGNY ,69540,69100,82,45.666667,4.816667,1.24
+ Jarnioux ,JARNIOUX ,69640,69101,82,45.966667,4.633333,1.06
+ Joux ,JOUX ,69170,69102,82,45.9,4.366667,2.19
+ Juliénas ,JULIENAS ,69840,69103,82,46.233333,4.716667,2.33
+ Jullié ,JULLIE ,69840,69104,82,46.233333,4.683333,2.33
+ Lacenas ,LACENAS ,69640,69105,82,46,4.65,0.88
+ Lachassagne ,LACHASSAGNE ,69480,69106,82,45.933333,4.683333,0.73
+ Lamure-sur-Azergues ,LAMURE SUR AZERGUES ,69870,69107,82,46.066667,4.5,1.29
+ Lancié ,LANCIE ,69220,69108,82,46.166667,4.716667,1.92
+ Lantignié ,LANTIGNIE ,69430,69109,82,46.15,4.633333,1.81
+ Larajasse ,LARAJASSE ,69590,69110,82,45.616667,4.5,1.51
+ Légny ,LEGNY ,69620,69111,82,45.916667,4.583333,0.65
+ Lentilly ,LENTILLY ,69210,69112,82,45.816667,4.666667,1.64
+ Létra ,LETRA ,69620,69113,82,45.966667,4.533333,1.32
+ Liergues ,LIERGUES ,69400,69114,82,45.966667,4.666667,0.92
+ Limas ,LIMAS ,69400,69115,82,45.966667,4.7,0.76
+ Limonest ,LIMONEST ,69760,69116,82,45.833333,4.766667,0.86
+ Lissieu ,LISSIEU ,69380,69117,82,45.866667,4.75,1.14
+ Longes ,LONGES ,69420,69119,82,45.5,4.683333,2.24
+ Longessaigne ,LONGESSAIGNE ,69770,69120,82,45.8,4.433333,1.69
+ Lozanne ,LOZANNE ,69380,69121,82,45.866667,4.683333,0.41
+ Lucenay ,LUCENAY ,69480,69122,82,45.916667,4.7,0.52
+ Marchampt ,MARCHAMPT ,69430,69124,82,46.116667,4.583333,1.6
+ Marcilly-d'Azergues ,MARCILLY D AZERGUES ,69380,69125,82,45.866667,4.733333,0.77
+ Marcy ,MARCY ,69480,69126,82,45.916667,4.683333,0.73
+ Marcy-l'Étoile ,MARCY L ETOILE ,69280,69127,82,45.783333,4.716667,1
+ Mardore ,MARDORE ,69240,69128,82,46.066667,4.333333,2.45
+ Marnand ,MARNAND ,69240,69129,82,46.033333,4.333333,2.45
+ Meaux-la-Montagne ,MEAUX LA MONTAGNE ,69550,69130,82,46.05,4.433333,1.85
+ Meys ,MEYS ,69610,69132,82,45.683333,4.383333,2.07
+ Millery ,MILLERY ,69390,69133,82,45.633333,4.766667,1.41
+ Moiré ,MOIRE ,69620,69134,82,45.933333,4.6,0.75
+ Monsols ,MONSOLS ,69860,69135,82,46.216667,4.516667,2.23
+ Montagny ,MONTAGNY ,69700,69136,82,45.616667,4.75,-1
+ Montmélas-Saint-Sorlin ,MONTMELAS SAINT SORLIN ,69640,69137,82,46.016667,4.616667,0.98
+ Montromant ,MONTROMANT ,69610,69138,82,45.7,4.516667,1.58
+ Montrottier ,MONTROTTIER ,69770,69139,82,45.783333,4.466667,1.43
+ Morancé ,MORANCE ,69480,69140,82,45.9,4.7,1.34
+ Mornant ,MORNANT ,69440,69141,82,45.616667,4.666667,1.51
+ La Mulatière ,LA MULATIERE ,69350,69142,82,45.733333,4.8,1.11
+ Neuville-sur-Saône ,NEUVILLE SUR SAONE ,69250,69143,82,45.866667,4.85,1.5
+ Nuelles ,NUELLES ,69210,69144,82,45.85,4.616667,0.89
+ Odenas ,ODENAS ,69460,69145,82,46.083333,4.65,1.4
+ Oingt ,OINGT ,69620,69146,82,45.95,4.583333,0.57
+ Les Olmes ,LES OLMES ,69490,69147,82,45.883333,4.5,1.18
+ Orliénas ,ORLIENAS ,69530,69148,82,45.666667,4.716667,1.2
+ Oullins ,OULLINS ,69600,69149,82,45.716667,4.8,1.11
+ Ouroux ,OUROUX ,69860,69150,82,46.233333,4.6,2.33
+ Le Perréon ,LE PERREON ,69460,69151,82,46.066667,4.6,1.29
+ Pierre-Bénite ,PIERRE BENITE ,69310,69152,82,45.7,4.816667,1.24
+ Poleymieux-au-Mont-d'Or ,POLEYMIEUX AU MONT D,69250,69153,82,45.866667,4.816667,1.24
+ Pollionnay ,POLLIONNAY ,69290,69154,82,45.766667,4.65,1.92
+ Pomeys ,POMEYS ,69590,69155,82,45.65,4.45,1.56
+ Pommiers ,POMMIERS ,69480,69156,82,45.95,4.683333,1.43
+ Pontcharra-sur-Turdine ,PONTCHARRA SUR TURDINE ,69490,69157,82,45.866667,4.483333,1.3
+ Pont-Trambouze ,PONT TRAMBOUZE ,69240,69158,82,46.066667,4.316667,2.58
+ Pouilly-le-Monial ,POUILLY LE MONIAL ,69400,69159,82,45.966667,4.65,1.49
+ Poule-lès-Écharmeaux ,POULE LES ECHARMEAUX ,69870,69160,82,46.15,4.466667,1.81
+ Propières ,PROPIERES ,69790,69161,82,46.183333,4.433333,2.02
+ Quincié-en-Beaujolais ,QUINCIE EN BEAUJOLAIS ,69430,69162,82,46.116667,4.6,1.6
+ Quincieux ,QUINCIEUX ,69650,69163,82,45.916667,4.783333,1
+ Ranchal ,RANCHAL ,69470,69164,82,46.133333,4.4,1.94
+ Riverie ,RIVERIE ,69440,69166,82,45.6,4.6,1.61
+ Rivolet ,RIVOLET ,69640,69167,82,46,4.6,1.22
+ Ronno ,RONNO ,69550,69169,82,45.983333,4.383333,2.07
+ Rontalon ,RONTALON ,69510,69170,82,45.666667,4.633333,1.2
+ Sain-Bel ,SAIN BEL ,69210,69171,82,45.816667,4.6,0.41
+ Sarcey ,SARCEY ,69490,69173,82,45.883333,4.533333,1.09
+ Savigny ,SAVIGNY ,69210,69175,82,45.816667,4.566667,1.39
+ Soucieu-en-Jarrest ,SOUCIEU EN JARREST ,69510,69176,82,45.683333,4.7,1.78
+ Sourcieux-les-Mines ,SOURCIEUX LES MINES ,69210,69177,82,45.8,4.616667,0.64
+ Souzy ,SOUZY ,69610,69178,82,45.7,4.45,1.56
+ Saint-Andéol-le-Château ,SAINT ANDEOL LE CHATEAU,69700,69179,82,45.583333,4.7,1.72
+ Saint-André-la-Côte ,SAINT ANDRE LA COTE,69440,69180,82,45.633333,4.6,1.41
+ Saint-Appolinaire ,SAINT APPOLINAIRE ,69170,69181,82,45.983333,4.416667,1.81
+ Saint-Bonnet-des-Bruyères ,SAINT BONNET DES BRUYERES,69790,69182,82,46.266667,4.466667,2.54
+ Saint-Bonnet-le-Troncy ,SAINT BONNET LE TRONCY,69870,69183,82,46.083333,4.433333,1.69
+ Saint-Clément-de-Vers ,SAINT CLEMENT DE VERS,69790,69186,82,46.216667,4.4,2.23
+ Saint-Clément-les-Places ,SAINT CLEMENT LES PLACES,69930,69187,82,45.75,4.433333,1.69
+ Saint-Clément-sur-Valsonne ,SAINT CLEMENT SUR VALSONNE,69170,69188,82,45.933333,4.45,1.56
+ Sainte-Colombe ,SAINTE COLOMBE ,69560,69189,82,45.516667,4.866667,2.13
+ Sainte-Consorce ,SAINTE CONSORCE ,69280,69190,82,45.766667,4.7,1
+ Saint-Cyr-au-Mont-d'Or ,SAINT CYR AU MONT,69450,69191,82,45.8,4.816667,1.24
+ Saint-Cyr-le-Chatoux ,SAINT CYR LE CHATOUX,69870,69192,82,46.033333,4.566667,1.65
+ Saint-Cyr-sur-le-Rhône ,SAINT CYR SUR LE,69560,69193,82,45.516667,4.85,2.13
+ Saint-Didier-au-Mont-d'Or ,SAINT DIDIER AU MONT,69370,69194,82,45.8,4.8,1.11
+ Saint-Didier-sous-Riverie ,SAINT DIDIER SOUS RIVERIE,69440,69195,82,45.6,4.6,1.61
+ Saint-Didier-sur-Beaujeu ,SAINT DIDIER SUR BEAUJEU,69430,69196,82,46.15,4.55,1.81
+ Saint-Étienne-des-Oullières ,SAINT ETIENNE DES OULLIERES,69460,69197,82,46.066667,4.65,1.29
+ Saint-Étienne-la-Varenne ,SAINT ETIENNE LA VARENNE,69460,69198,82,46.083333,4.633333,1.4
+ Saint-Fons ,SAINT FONS ,69190,69199,82,45.7,4.866667,1.62
+ Saint-Forgeux ,SAINT FORGEUX ,69490,69200,82,45.85,4.483333,1.3
+ Sainte-Foy-l'Argentière ,SAINTE FOY L ARGENTIERE,69610,69201,82,45.7,4.466667,1.43
+ Sainte-Foy-lès-Lyon ,SAINTE FOY LES LYON,69110,69202,82,45.733333,4.8,1.11
+ Saint-Genis-l'Argentière ,SAINT GENIS L ARGENTIERE,69610,69203,82,45.716667,4.5,1.21
+ Saint-Genis-Laval ,SAINT GENIS LAVAL ,69230,69204,82,45.683333,4.8,1.11
+ Saint-Genis-les-Ollières ,SAINT GENIS LES OLLIERES,69290,69205,82,45.75,4.733333,1.22
+ Saint-Georges-de-Reneins ,SAINT GEORGES DE RENEINS,69830,69206,82,46.066667,4.716667,1.29
+ Saint-Germain-au-Mont-d'Or ,SAINT GERMAIN AU MONT,69650,69207,82,45.866667,4.8,1.11
+ Saint-Germain-sur-l'Arbresle ,SAINT GERMAIN SUR L,69210,69208,82,45.85,4.6,0.96
+ Saint-Igny-de-Vers ,SAINT IGNY DE VERS,69790,69209,82,46.233333,4.433333,2.33
+ Saint-Jacques-des-Arrêts ,SAINT JACQUES DES ARRETS,69860,69210,82,46.25,4.6,2.43
+ Saint-Jean-d'Ardières ,SAINT JEAN D ARDIERES,69220,69211,82,46.116667,4.733333,1.6
+ Saint-Jean-des-Vignes ,SAINT JEAN DES VIGNES,69380,69212,82,45.866667,4.683333,0.41
+ Saint-Jean-de-Touslas ,SAINT JEAN DE TOUSLAS,69700,69213,82,45.583333,4.666667,1.8
+ Saint-Jean-la-Bussière ,SAINT JEAN LA BUSSIERE,69550,69214,82,46,4.333333,2.45
+ Saint-Julien ,SAINT JULIEN ,69640,69215,82,46.033333,4.666667,1.82
+ Saint-Julien-sur-Bibost ,SAINT JULIEN SUR BIBOST,69690,69216,82,45.8,4.516667,1.05
+ Saint-Just-d'Avray ,SAINT JUST D AVRAY,69870,69217,82,46,4.45,1.56
+ Saint-Lager ,SAINT LAGER ,69220,69218,82,46.116667,4.666667,1.6
+ Saint-Laurent-d'Agny ,SAINT LAURENT D AGNY,69440,69219,82,45.633333,4.683333,1.41
+ Saint-Laurent-de-Chamousset ,SAINT LAURENT DE CHAMOUSSET,69930,69220,82,45.733333,4.466667,1.43
+ Saint-Laurent-de-Vaux ,SAINT LAURENT DE VAUX,69670,69221,82,45.716667,4.633333,1
+ Saint-Laurent-d'Oingt ,SAINT LAURENT D OINGT,69620,69222,82,45.95,4.566667,0.67
+ Saint-Loup ,SAINT LOUP ,69490,69223,82,45.9,4.466667,1.49
+ Saint-Mamert ,SAINT MAMERT ,69860,69224,82,46.25,4.583333,2.43
+ Saint-Marcel-l'Éclairé ,SAINT MARCEL L ECLAIRE,69170,69225,82,45.866667,4.433333,1.69
+ Saint-Martin-en-Haut ,SAINT MARTIN EN HAUT,69850,69227,82,45.65,4.55,1.3
+ Saint-Maurice-sur-Dargoire ,SAINT MAURICE SUR DARGOIRE,42800,69228,82,45.583333,4.633333,1.72
+ Saint-Nizier-d'Azergues ,SAINT NIZIER D AZERGUES,69870,69229,82,46.083333,4.466667,1.43
+ Sainte-Paule ,SAINTE PAULE ,69620,69230,82,45.966667,4.566667,0.79
+ Saint-Pierre-la-Palud ,SAINT PIERRE LA PALUD,69210,69231,82,45.783333,4.616667,1.14
+ Saint-Romain-au-Mont-d'Or ,SAINT ROMAIN AU MONT,69270,69233,82,45.833333,4.833333,1.37
+ Saint-Romain-de-Popey ,SAINT ROMAIN DE POPEY,69490,69234,82,45.85,4.533333,1.22
+ Saint-Romain-en-Gal ,SAINT ROMAIN EN GAL,69560,69235,82,45.533333,4.866667,2.03
+ Saint-Romain-en-Gier ,SAINT ROMAIN EN GIER,69700,69236,82,45.566667,4.716667,1.82
+ Saint-Sorlin ,SAINT SORLIN ,69440,69237,82,45.616667,4.633333,1.51
+ Saint-Symphorien-sur-Coise ,SAINT SYMPHORIEN SUR COISE,69590,69238,82,45.633333,4.45,1.56
+ Saint-Vérand ,SAINT VERAND ,69620,69239,82,45.916667,4.533333,1.21
+ Saint-Vincent-de-Reins ,SAINT VINCENT DE REINS,69240,69240,82,46.083333,4.4,2.37
+ Taluyers ,TALUYERS ,69440,69241,82,45.65,4.733333,1.54
+ Taponas ,TAPONAS ,69220,69242,82,46.116667,4.766667,1.6
+ Tarare ,TARARE ,69170,69243,82,45.9,4.433333,1.69
+ Tassin-la-Demi-Lune ,TASSIN LA DEMI LUNE,69160,69244,82,45.766667,4.783333,0.99
+ Ternand ,TERNAND ,69620,69245,82,45.95,4.533333,1.11
+ Theizé ,THEIZE ,69620,69246,82,45.933333,4.616667,1.2
+ Thel ,THEL ,69470,69247,82,46.116667,4.383333,2.07
+ Thizy ,THIZY ,69240,69248,82,46.033333,4.316667,2.58
+ Thurins ,THURINS ,69510,69249,82,45.683333,4.633333,1.09
+ La Tour-de-Salvagny ,LA TOUR DE SALVAGNY,69890,69250,82,45.816667,4.716667,0.48
+ Trades ,TRADES ,69860,69251,82,46.266667,4.566667,2.54
+ Tréves ,TREVES ,69420,69252,82,45.533333,4.666667,2.03
+ Tupin-et-Semons ,TUPIN ET SEMONS ,69420,69253,82,45.483333,4.8,2.34
+ Valsonne ,VALSONNE ,69170,69254,82,45.95,4.433333,1.69
+ Vaugneray ,VAUGNERAY ,69670,69255,82,45.733333,4.65,1
+ Vaulx-en-Velin ,VAULX EN VELIN ,69120,69256,82,45.783333,4.933333,2.13
+ Vaux-en-Beaujolais ,VAUX EN BEAUJOLAIS ,69460,69257,82,46.05,4.583333,1.65
+ Vauxrenard ,VAUXRENARD ,69820,69258,82,46.2,4.65,2.12
+ Vénissieux ,VENISSIEUX ,69200,69259,82,45.683333,4.883333,1.75
+Vernaison, ,69390,69260,82,45.65,4.816667,1.76
+ Vernay ,VERNAY ,69430,69261,82,46.15,4.533333,1.81
+ Villechenève ,VILLECHENEVE ,69770,69263,82,45.816667,4.416667,1.81
+ Villefranche-sur-Saône ,VILLEFRANCHE SUR SAONE ,69400,69264,82,45.983333,4.716667,1.18
+ Ville-sur-Jarnioux ,VILLE SUR JARNIOUX ,69640,69265,82,45.966667,4.616667,1.22
+ Villeurbanne ,VILLEURBANNE ,69100,69266,82,45.766667,4.883333,1.75
+ Villié-Morgon ,VILLIE MORGON ,69910,69267,82,46.166667,4.683333,1.92
+ Vourles ,VOURLES ,69390,69268,82,45.666667,4.783333,1.2
+ Yzeron ,YZERON ,69510,69269,82,45.7,4.583333,1.61
+ Chaponnay ,CHAPONNAY ,69970,69270,82,45.616667,4.933333,2.13
+ Chassieu ,CHASSIEU ,69680,69271,82,45.75,4.966667,2.39
+ Communay ,COMMUNAY ,69360,69272,82,45.6,4.833333,1.61
+ Corbas ,CORBAS ,69960,69273,82,45.666667,4.9,1.88
+ Crépieux-la-Pape ,CREPIEUX LA PAPE ,69140,69274,82,45.8,4.866667,1.62
+ Décines-Charpieu ,DECINES CHARPIEU ,69150,69275,82,45.75,4.966667,2.39
+ Feyzin ,FEYZIN ,69320,69276,82,45.666667,4.85,1.5
+ Genas ,GENAS ,69740,69277,82,45.733333,5,2.64
+ Genay ,GENAY ,69730,69278,82,45.9,4.833333,1.37
+ Jonage ,JONAGE ,69330,69279,82,45.8,5.033333,2.9
+ Jons ,JONS ,69330,69280,82,45.8077,5.07919,-1
+ Marennes ,MARENNES ,69970,69281,82,45.616667,4.9,1.88
+ Mions ,MIONS ,69780,69283,82,45.666667,4.95,2.26
+ Montanay ,MONTANAY ,69250,69284,82,45.883333,4.85,1.5
+ Pusignan ,PUSIGNAN ,69330,69285,82,45.75,5.066667,-1
+ Saint-Bonnet-de-Mure ,SAINT BONNET DE MURE,69720,69287,82,45.683333,5.033333,2.9
+ Saint-Laurent-de-Mure ,SAINT LAURENT DE MURE,69720,69288,82,45.683333,5.033333,2.9
+ Saint-Pierre-de-Chandieu ,SAINT PIERRE DE CHANDIEU,69780,69289,82,45.65,5.016667,2.77
+ Saint-Priest ,SAINT PRIEST ,69800,69290,82,45.691667,4.933333,-1
+ Saint-Symphorien-d'Ozon ,SAINT SYMPHORIEN D OZON,69360,69291,82,45.633333,4.866667,1.62
+ Sathonay-Camp ,SATHONAY CAMP ,69580,69292,82,45.816667,4.866667,1.62
+ Sathonay-Village ,SATHONAY VILLAGE ,69580,69293,82,45.833333,4.883333,1.75
+ Sérézin-du-Rhône ,SEREZIN DU RHONE ,69360,69294,82,45.633333,4.833333,1.41
+ Simandres ,SIMANDRES ,69360,69295,82,45.616667,4.866667,1.62
+ Ternay ,TERNAY ,69360,69297,82,45.616667,4.816667,1.51
+ Toussieu ,TOUSSIEU ,69780,69298,82,45.65,4.983333,2.52
+ Colombier-Saugnieu ,COLOMBIER SAUGNIEU ,69124,69299,82,45.71243,5.1116,-1
+ Lyon ,LYON ,69000,69380,82,45.75,4.85,1.5
+ Glay ,GLAY ,69850,69903,82,45.866667,4.6,1.49
+ Dargoire ,DARGOIRE ,69440,69918,82,45.566667,4.666667,1.82
+ Fillonnière ,FILLONNIERE ,69440,69920,82,45.608333,4.633333,-1
+ La Flachère ,LA FLACHERE ,69440,69921,82,45.583333,4.808333,-1
+ Saint-Vincent ,SAINT VINCENT ,69440,69926,82,45.65,4.666667,1.3
+ Lurcieux ,LURCIEUX ,69690,69953,82,45.766667,4.533333,0.92
+ Les Roches ,LES ROCHES ,69690,69955,82,45.708333,4.741667,-1
+ Les Écharmeaux ,LES ECHARMEAUX ,69870,69961,82,46.166667,4.45,1.92
+ Sourzy ,SOURZY ,69700,69971,82,45.616667,4.75,1.51
+ Saint-Martin-de-Cornas ,SAINT MARTIN DE CORNAS,69700,69972,82,45.583333,4.716667,1.72
+ Saugnieu ,SAUGNIEU ,69124,69992,82,45.72436,5.10426,-1
+ Abelcourt ,ABELCOURT ,70300,70001,72,47.783333,6.3,1.14
+ Achey ,ACHEY ,70180,70003,72,47.566667,5.6,1.78
+ Aillevans ,AILLEVANS ,70110,70005,72,47.583333,6.416667,1.14
+ Aillevillers-et-Lyaumont ,AILLEVILLERS ET LYAUMONT ,70320,70006,72,47.916667,6.333333,2.11
+ Ailloncourt ,AILLONCOURT ,70300,70007,72,47.75,6.383333,1.02
+ Ainvelle ,AINVELLE ,70800,70008,72,47.85,6.25,1.62
+ Aisey-et-Richecourt ,AISEY ET RICHECOURT ,70500,70009,72,47.883333,5.95,1.87
+ Alaincourt ,ALAINCOURT ,70210,70010,72,47.933333,6.1,2.23
+ Amage ,AMAGE ,70280,70011,72,47.833333,6.5,1.5
+ Amance ,AMANCE ,70160,70012,72,47.8,6.066667,1.26
+ Ambiévillers ,AMBIEVILLERS ,70210,70013,72,47.966667,6.15,2.48
+ Amblans-et-Velotte ,AMBLANS ET VELOTTE ,70200,70014,72,47.683333,6.416667,1.34
+ Amoncourt ,AMONCOURT ,70170,70015,72,47.733333,6.066667,0.77
+ Anchenoncourt-et-Chazel ,ANCHENONCOURT ET CHAZEL ,70210,70017,72,47.866667,6.116667,1.74
+ Ancier ,ANCIER ,70100,70018,72,47.45,5.633333,1.66
+ Andelarre ,ANDELARRE ,70000,70019,72,47.583333,6.1,0.67
+ Andelarrot ,ANDELARROT ,70000,70020,72,47.583333,6.1,0.67
+ Andornay ,ANDORNAY ,70200,70021,72,47.65,6.6,1.79
+ Angirey ,ANGIREY ,70700,70022,72,47.45,5.783333,1.3
+ Anjeux ,ANJEUX ,70800,70023,72,47.883333,6.2,1.87
+ Apremont ,APREMONT ,70100,70024,72,47.4,5.55,1.96
+ Arbecey ,ARBECEY ,70160,70025,72,47.733333,5.933333,2.3
+ Argillières ,ARGILLIERES ,70600,70027,72,47.666667,5.633333,1.66
+ Aroz ,AROZ ,70360,70028,72,47.616667,6,1
+ Arpenans ,ARPENANS ,70200,70029,72,47.616667,6.4,1.73
+ Arsans ,ARSANS ,70100,70030,72,47.366667,5.633333,1.91
+ Attricourt ,ATTRICOURT ,70100,70032,72,47.483333,5.4,2.5
+ Aubertans ,AUBERTANS ,70190,70033,72,47.45,6.166667,1.47
+ Aubigney ,AUBIGNEY ,70140,70034,72,47.333333,5.533333,2.16
+ Augicourt ,AUGICOURT ,70500,70035,72,47.783333,5.9,1.14
+ Aulx-lès-Cromary ,AULX LES CROMARY ,70190,70036,72,47.383333,6.116667,1.79
+ Autet ,AUTET ,70180,70037,72,47.55,5.7,1.42
+ Authoison ,AUTHOISON ,70190,70038,72,47.483333,6.15,1.45
+ Autoreille ,AUTOREILLE ,70700,70039,72,47.366667,5.816667,1.91
+ Autrey-lès-Cerre ,AUTREY LES CERRE ,70110,70040,72,47.616667,6.35,1.95
+ Autrey-lès-Gray ,AUTREY LES GRAY ,70100,70041,72,47.483333,5.5,2.14
+ Autrey-le-Vay ,AUTREY LE VAY ,70110,70042,72,47.533333,6.4,1.08
+ Auvet-et-la-Chapelotte ,AUVET ET LA CHAPELOTTE,70100,70043,72,47.516667,5.516667,2.08
+ Auxon ,AUXON ,70000,70044,72,47.683333,6.166667,1.02
+ Les Aynans ,LES AYNANS ,70200,70046,72,47.616667,6.45,1.26
+ Baignes ,BAIGNES ,70000,70047,72,47.583333,6.05,1.28
+ Bard-lès-Pesmes ,BARD LES PESMES ,70140,70048,72,47.266667,5.633333,2.64
+ Barges ,BARGES ,70500,70049,72,47.866667,5.85,1.74
+ La Basse-Vaivre ,LA BASSE VAIVRE ,70210,70051,72,47.95,6.05,2.35
+ Bassigney ,BASSIGNEY ,70800,70052,72,47.816667,6.183333,1.41
+ Les Bâties ,LES BATIES ,70130,70053,72,47.5,5.9,1.04
+ Battrans ,BATTRANS ,70100,70054,72,47.433333,5.633333,1.66
+ Baudoncourt ,BAUDONCOURT ,70300,70055,72,47.783333,6.35,1.14
+ Baulay ,BAULAY ,70160,70056,72,47.783333,6.016667,1.14
+ Bay ,BAY ,70150,70057,72,47.283333,5.716667,2.52
+ Beaumotte-lès-Pin ,BEAUMOTTE LES PIN ,70150,70060,72,47.316667,5.833333,2.28
+ Belfahy ,BELFAHY ,70290,70061,72,47.783333,6.733333,2.27
+ Belonchamp ,BELONCHAMP ,70270,70063,72,47.766667,6.616667,1.85
+ Belverne ,BELVERNE ,70400,70064,72,47.633333,6.65,1.97
+ Besnans ,BESNANS ,70230,70065,72,47.45,6.266667,1.3
+ Bétaucourt ,BETAUCOURT ,70500,70066,72,47.866667,5.916667,1.74
+ Betoncourt-lès-Brotte ,BETONCOURT LES BROTTE ,70300,70067,72,47.75,6.333333,0.89
+ Bétoncourt-les-Ménétriers ,BETONCOURT LES MENETRIERS ,70120,70068,72,47.683333,5.8,1.07
+ Betoncourt-Saint-Pancras ,BETONCOURT SAINT PANCRAS ,70210,70069,72,47.916667,6.166667,2.11
+ Betoncourt-sur-Mance ,BETONCOURT SUR MANCE ,70500,70070,72,47.833333,5.75,1.66
+ Beulotte-Saint-Laurent ,BEULOTTE SAINT LAURENT ,70310,70071,72,47.866667,6.683333,2.09
+ Beveuge ,BEVEUGE ,70110,70072,72,47.55,6.483333,1.38
+ Blondefontaine ,BLONDEFONTAINE ,70500,70074,72,47.883333,5.866667,1.87
+ Bonboillon ,BONBOILLON ,70150,70075,72,47.333333,5.7,2.16
+ Borey ,BOREY ,70110,70077,72,47.6,6.35,1.81
+ Bougey ,BOUGEY ,70500,70078,72,47.783333,5.866667,1.14
+ Bougnon ,BOUGNON ,70170,70079,72,47.7,6.116667,1.21
+ Bouhans-et-Feurg ,BOUHANS ET FEURG ,70100,70080,72,47.483333,5.5,2.14
+ Bouhans-lès-Lure ,BOUHANS LES LURE ,70200,70081,72,47.7,6.416667,1.38
+ Bouhans-lès-Montbozon ,BOUHANS LES MONTBOZON ,70230,70082,72,47.483333,6.283333,1.06
+ Bouligney ,BOULIGNEY ,70800,70083,72,47.9,6.25,1.99
+ Boulot ,BOULOT ,70190,70084,72,47.35,5.966667,2.04
+ Boult ,BOULT ,70190,70085,72,47.383333,6,1.79
+ Bourbévelle ,BOURBEVELLE ,70500,70086,72,47.916667,5.933333,2.11
+ Bourguignon-lès-Conflans ,BOURGUIGNON LES CONFLANS ,70800,70087,72,47.8,6.166667,1.87
+ Bourguignon-lès-Morey ,BOURGUIGNON LES MOREY ,70120,70089,72,47.716667,5.7,1.46
+ Boursières ,BOURSIERES ,70000,70090,72,47.616667,6.05,1.24
+ Bousseraucourt ,BOUSSERAUCOURT ,70500,70091,72,47.966667,5.933333,2.48
+ Brésilley ,BRESILLEY ,70140,70092,72,47.25,5.65,2.77
+ Breuches ,BREUCHES ,70300,70093,72,47.8,6.333333,1.26
+ Breuchotte ,BREUCHOTTE ,70280,70094,72,47.833333,6.466667,1.5
+ Breurey-lès-Faverney ,BREUREY LES FAVERNEY ,70160,70095,72,47.75,6.133333,0.97
+ Brevilliers ,BREVILLIERS ,70400,70096,72,47.583333,6.783333,2.45
+ Briaucourt ,BRIAUCOURT ,70800,70097,72,47.816667,6.25,1.38
+ Brotte-lès-Luxeuil ,BROTTE LES LUXEUIL ,70300,70098,72,47.75,6.35,0.9
+ Brotte-lès-Ray ,BROTTE LES RAY ,70180,70099,72,47.6,5.733333,1.3
+ Brussey ,BRUSSEY ,70150,70102,72,47.3,5.816667,2.4
+ La Bruyère ,LA BRUYERE ,70280,70103,72,47.833333,6.483333,1.5
+ Bucey-lès-Gy ,BUCEY LES GY ,70700,70104,72,47.416667,5.85,1.55
+ Bucey-lès-Traves ,BUCEY LES TRAVES ,70360,70105,72,47.616667,5.983333,0.76
+ Buffignécourt ,BUFFIGNECOURT ,70500,70106,72,47.816667,6.016667,1.39
+ Bussières ,BUSSIERES ,70190,70107,72,47.333333,5.983333,2.16
+ Bussurel ,BUSSUREL ,70400,70108,72,47.55,6.783333,2.45
+ Buthiers ,BUTHIERS ,70190,70109,72,47.35,6.033333,2.04
+ Byans ,BYANS ,70400,70110,72,47.566667,6.733333,2.27
+ Calmoutier ,CALMOUTIER ,70240,70111,72,47.65,6.283333,0.76
+ Cemboing ,CEMBOING ,70500,70112,72,47.833333,5.85,1.5
+ Cenans ,CENANS ,70230,70113,72,47.433333,6.2,1.43
+ Cendrecourt ,CENDRECOURT ,70500,70114,72,47.85,5.933333,1.62
+ Cerre-lès-Noroy ,CERRE LES NOROY ,70000,70115,72,47.6,6.316667,2.25
+ Chagey ,CHAGEY ,70400,70116,72,47.616667,6.733333,2.27
+ Châlonvillars ,CHALONVILLARS ,70400,70117,72,47.633333,6.783333,2.45
+ Chambornay-les-Bellevaux ,CHAMBORNAY LES BELLEVAUX ,70190,70118,72,47.383333,6.1,1.79
+ Chambornay-lès-Pin ,CHAMBORNAY LES PIN ,70150,70119,72,47.333333,5.9,2.16
+ Champey ,CHAMPEY ,70400,70121,72,47.583333,6.683333,2.09
+ Champlitte-la-Ville ,CHAMPLITTE LA VILLE ,70600,70123,72,47.616667,5.533333,2.02
+ Champtonnay ,CHAMPTONNAY ,70100,70124,72,47.383333,5.666667,1.79
+ Chancey ,CHANCEY ,70140,70126,72,47.316667,5.683333,2.28
+ Chantes ,CHANTES ,70360,70127,72,47.633333,5.933333,1.17
+ La Chapelle-lès-Luxeuil ,LA CHAPELLE LES LUXEUIL,70300,70128,72,47.766667,6.366667,1.01
+ La Chapelle-Saint-Quillain ,LA CHAPELLE SAINT QUILLAIN,70700,70129,72,47.483333,5.816667,1.06
+ Charcenne ,CHARCENNE ,70700,70130,72,47.366667,5.783333,1.91
+ Charentenay ,CHARENTENAY ,70130,70131,72,47.583333,5.85,0.89
+ Chargey-lès-Gray ,CHARGEY LES GRAY ,70100,70132,72,47.483333,5.583333,1.84
+ Chargey-lès-Port ,CHARGEY LES PORT ,70170,70133,72,47.733333,6,1.62
+ Chariez ,CHARIEZ ,70000,70134,72,47.616667,6.083333,0.81
+ Charmes-Saint-Valbert ,CHARMES SAINT VALBERT ,70120,70135,72,47.733333,5.716667,1.36
+ Charmoille ,CHARMOILLE ,70000,70136,72,47.666667,6.1,0.96
+ Chassey-lès-Montbozon ,CHASSEY LES MONTBOZON ,70230,70137,72,47.516667,6.333333,1.78
+ Chassey-lès-Scey ,CHASSEY LES SCEY ,70360,70138,72,47.65,5.983333,0.41
+ Château-Lambert ,CHATEAU LAMBERT ,70440,70139,72,47.866667,6.766667,2.39
+ Châtenois ,CHATENOIS ,70240,70141,72,47.683333,6.316667,0.78
+ Chaumercenne ,CHAUMERCENNE ,70140,70142,72,47.3,5.633333,2.4
+ Chauvirey-le-Châtel ,CHAUVIREY LE CHATEL ,70500,70143,72,47.783333,5.75,1.81
+ Chauvirey-le-Vieil ,CHAUVIREY LE VIEIL ,70500,70144,72,47.783333,5.75,1.81
+ Chaux-la-Lotière ,CHAUX LA LOTIERE ,70190,70145,72,47.383333,5.983333,1.79
+ Chaux-lès-Port ,CHAUX LES PORT ,70170,70146,72,47.716667,6.033333,0.77
+ Chemilly ,CHEMILLY ,70360,70148,72,47.65,6.016667,1.16
+ Chenebier ,CHENEBIER ,70400,70149,72,47.65,6.716667,2.21
+ Chenevrey-et-Morogne ,CHENEVREY ET MOROGNE ,70150,70150,72,47.283333,5.75,2.52
+ Choye ,CHOYE ,70700,70152,72,47.383333,5.75,1.79
+ Cintrey ,CINTREY ,70120,70153,72,47.75,5.75,1.25
+ Cirey ,CIREY ,70190,70154,72,47.4,6.133333,1.67
+ Citers ,CITERS ,70300,70155,72,47.733333,6.4,1.08
+ Citey ,CITEY ,70700,70156,72,47.433333,5.783333,1.43
+ Clairegoutte ,CLAIREGOUTTE ,70200,70157,72,47.666667,6.616667,1.85
+ Clans ,CLANS ,70000,70158,72,47.6,6.033333,1.46
+ Cognières ,COGNIERES ,70230,70159,72,47.483333,6.3,1.06
+ Coisevaux ,COISEVAUX ,70400,70160,72,47.583333,6.7,2.15
+ Colombe-lès-Bithaine ,COLOMBE LES BITHAINE ,70200,70161,72,47.716667,6.366667,2.06
+ Colombe-lès-Vesoul ,COLOMBE LES VESOUL ,70000,70162,72,47.616667,6.216667,0.95
+ Colombier ,COLOMBIER ,70000,70163,72,47.666667,6.216667,1.21
+ Colombotte ,COLOMBOTTE ,70240,70164,72,47.666667,6.283333,0.66
+ Combeaufontaine ,COMBEAUFONTAINE ,70120,70165,72,47.716667,5.883333,1.2
+ Comberjon ,COMBERJON ,70000,70166,72,47.65,6.2,0.91
+ Conflandey ,CONFLANDEY ,70170,70167,72,47.733333,6.05,0.79
+ Confracourt ,CONFRACOURT ,70120,70169,72,47.666667,5.883333,1.2
+ Contréglise ,CONTREGLISE ,70160,70170,72,47.833333,6.033333,1.5
+ Corbenay ,CORBENAY ,70320,70171,72,47.9,6.333333,1.99
+ La Corbière ,LA CORBIERE ,70300,70172,72,47.8,6.5,2.35
+ Corcelles ,CORCELLES ,70400,70173,72,47.55,6.616667,1.85
+ Cornot ,CORNOT ,70120,70175,72,47.7,5.833333,0.95
+ Corre ,CORRE ,70500,70177,72,47.916667,6,2.11
+ La Côte ,LA COTE ,70200,70178,72,47.683333,6.583333,1.73
+ Coulevon ,COULEVON ,70000,70179,72,47.65,6.183333,0.75
+ Courchaton ,COURCHATON ,70110,70180,72,47.516667,6.533333,1.58
+ Courcuire ,COURCUIRE ,70150,70181,72,47.35,5.816667,2.04
+ Courmont ,COURMONT ,70400,70182,72,47.616667,6.633333,1.91
+ Courtesoult-et-Gatey ,COURTESOULT ET GATEY ,70600,70183,72,47.616667,5.616667,1.72
+ Couthenans ,COUTHENANS ,70400,70184,72,47.583333,6.733333,2.27
+ Crésancey ,CRESANCEY ,70100,70185,72,47.4,5.65,1.67
+ La Creuse ,LA CREUSE ,70240,70186,72,47.683333,6.35,0.93
+ Creveney ,CREVENEY ,70240,70188,72,47.683333,6.3,0.72
+ Cromary ,CROMARY ,70190,70189,72,47.366667,6.083333,1.91
+ Cubry-lès-Faverney ,CUBRY LES FAVERNEY ,70160,70190,72,47.816667,6.133333,1.38
+ Cubry-lès-Soing ,CUBRY LES SOING ,70130,70191,72,47.6,5.916667,1.16
+ Cugney ,CUGNEY ,70700,70192,72,47.366667,5.716667,1.91
+ Cult ,CULT ,70150,70193,72,47.316667,5.733333,2.28
+ Cuve ,CUVE ,70800,70194,72,47.9,6.216667,1.99
+ Dampierre-lès-Conflans ,DAMPIERRE LES CONFLANS ,70800,70196,72,47.85,6.183333,1.62
+ Dampierre-sur-Linotte ,DAMPIERRE SUR LINOTTE ,70230,70197,72,47.516667,6.233333,0.82
+ Dampierre-sur-Salon ,DAMPIERRE SUR SALON ,70180,70198,72,47.55,5.683333,1.48
+ Dampvalley-lès-Colombe ,DAMPVALLEY LES COLOMBE ,70000,70199,72,47.633333,6.25,1.42
+ Dampvalley-Saint-Pancras ,DAMPVALLEY SAINT PANCRAS ,70210,70200,72,47.916667,6.2,2.11
+ Delain ,DELAIN ,70180,70201,72,47.583333,5.633333,1.66
+ Demangevelle ,DEMANGEVELLE ,70210,70202,72,47.933333,6.033333,2.23
+ La Demie ,LA DEMIE ,70000,70203,72,47.583333,6.166667,0.44
+ Denèvre ,DENEVRE ,70180,70204,72,47.566667,5.65,1.6
+ Échavanne ,ECHAVANNE ,70400,70205,72,47.65,6.733333,2.27
+ Échenoz-la-Méline ,ECHENOZ LA MELINE ,70000,70207,72,47.6,6.133333,0.21
+ Échenoz-le-Sec ,ECHENOZ LE SEC ,70000,70208,72,47.533333,6.116667,1.05
+ Écromagny ,ECROMAGNY ,70270,70210,72,47.8,6.566667,1.67
+ Écuelle ,ECUELLE ,70600,70211,72,47.55,5.55,1.96
+ Éhuns ,EHUNS ,70300,70213,72,47.766667,6.316667,1.01
+ Équevilley ,EQUEVILLEY ,70160,70214,72,47.766667,6.183333,1.62
+ Errevet ,ERREVET ,70400,70215,72,47.683333,6.766667,2.39
+ Esboz-Brest ,ESBOZ BREST ,70300,70216,72,47.8,6.45,1.55
+ Esmoulières ,ESMOULIERES ,70310,70217,72,47.85,6.616667,1.85
+ Esmoulins ,ESMOULINS ,70100,70218,72,47.4,5.566667,1.9
+ Esprels ,ESPRELS ,70110,70219,72,47.533333,6.366667,1.38
+ Essertenne-et-Cecey ,ESSERTENNE ET CECEY ,70100,70220,72,47.4,5.483333,2.2
+ Étobon ,ETOBON ,70400,70221,72,47.65,6.683333,2.09
+ Étuz ,ETUZ ,70150,70224,72,47.35,5.933333,2.12
+ Fahy-lès-Autrey ,FAHY LES AUTREY ,70100,70225,72,47.516667,5.483333,2.2
+ Fallon ,FALLON ,70110,70226,72,47.5,6.483333,1.38
+ Faucogney-et-la-Mer ,FAUCOGNEY ET LA MER,70310,70227,72,47.85,6.566667,1.67
+ Faverney ,FAVERNEY ,70160,70228,72,47.766667,6.1,1.01
+ Faymont ,FAYMONT ,70200,70229,72,47.616667,6.583333,1.73
+ Fédry ,FEDRY ,70120,70230,72,47.616667,5.883333,1.55
+ Ferrières-lès-Ray ,FERRIERES LES RAY ,70130,70231,72,47.583333,5.8,1.07
+ Ferrières-lès-Scey ,FERRIERES LES SCEY ,70360,70232,72,47.65,6,0.71
+ Filain ,FILAIN ,70230,70234,72,47.516667,6.183333,1.52
+ Flagy ,FLAGY ,70000,70235,72,47.7,6.183333,1.3
+ Fleurey-lès-Faverney ,FLEUREY LES FAVERNEY ,70160,70236,72,47.75,6.083333,0.89
+ Fleurey-lès-Lavoncourt ,FLEUREY LES LAVONCOURT ,70120,70237,72,47.666667,5.783333,1.13
+ Fleurey-lès-Saint-Loup ,FLEUREY LES SAINT LOUP,70800,70238,72,47.916667,6.3,2.11
+ Fondremand ,FONDREMAND ,70190,70239,72,47.466667,6.033333,1.18
+ Fontaine-lès-Luxeuil ,FONTAINE LES LUXEUIL ,70800,70240,72,47.85,6.333333,1.87
+ Les Fontenis ,LES FONTENIS ,70190,70241,72,47.45,6.066667,1.3
+ Fontenois-la-Ville ,FONTENOIS LA VILLE ,70210,70242,72,47.933333,6.166667,2.23
+ Fontenois-lès-Montbozon ,FONTENOIS LES MONTBOZON ,70230,70243,72,47.483333,6.233333,1.06
+ Fouchécourt ,FOUCHECOURT ,70160,70244,72,47.783333,6,1.17
+ Fougerolles ,FOUGEROLLES ,70220,70245,72,47.883333,6.4,1.87
+ Fouvent-le-Bas ,FOUVENT LE BAS ,70600,70246,72,47.65,5.666667,1.54
+ Frahier-et-Châtebier ,FRAHIER ET CHATEBIER ,70400,70248,72,47.666667,6.75,2.33
+ Francalmont ,FRANCALMONT ,70800,70249,72,47.833333,6.266667,1.5
+ Franchevelle ,FRANCHEVELLE ,70200,70250,72,47.733333,6.466667,1.32
+ Francourt ,FRANCOURT ,70180,70251,72,47.65,5.75,1.61
+ Frasne-le-Château ,FRASNE LE CHATEAU ,70700,70253,72,47.466667,5.9,1.29
+ Frédéric-Fontaine ,FREDERIC FONTAINE ,70200,70254,72,47.65,6.633333,1.91
+ Fresne-Saint-Mamès ,FRESNE SAINT MAMES ,70130,70255,72,47.55,5.866667,0.83
+ Fresse ,FRESSE ,70270,70256,72,47.75,6.666667,2.03
+ Froideconche ,FROIDECONCHE ,70300,70258,72,47.816667,6.416667,1.38
+ Froideterre ,FROIDETERRE ,70200,70259,72,47.7,6.533333,1.55
+ Frotey-lès-Lure ,FROTEY LES LURE ,70200,70260,72,47.65,6.55,1.61
+ Frotey-lès-Vesoul ,FROTEY LES VESOUL ,70000,70261,72,47.616667,6.183333,0.52
+ Genevreuille ,GENEVREUILLE ,70240,70262,72,47.666667,6.383333,1.61
+ Genevrey ,GENEVREY ,70240,70263,72,47.716667,6.316667,0.78
+ Georfans ,GEORFANS ,70110,70264,72,47.516667,6.533333,1.58
+ Gevigney-et-Mercey ,GEVIGNEY ET MERCEY ,70500,70267,72,47.8,5.933333,1.26
+ Gézier-et-Fontenelay ,GEZIER ET FONTENELAY ,70700,70268,72,47.35,5.9,2.04
+ Girefontaine ,GIREFONTAINE ,70210,70269,72,47.9,6.183333,1.99
+ Gonvillars ,GONVILLARS ,70400,70270,72,47.533333,6.633333,1.91
+ Gouhenans ,GOUHENANS ,70110,70271,72,47.6,6.466667,1.32
+ Gourgeon ,GOURGEON ,70120,70272,72,47.716667,5.85,0.89
+ Grammont ,GRAMMONT ,70110,70273,72,47.516667,6.516667,1.49
+ Grandecourt ,GRANDECOURT ,70120,70274,72,47.633333,5.85,1.06
+ Granges-la-Ville ,GRANGES LA VILLE ,70400,70276,72,47.566667,6.566667,1.78
+ Granges-le-Bourg ,GRANGES LE BOURG ,70400,70277,72,47.566667,6.583333,1.73
+ Grattery ,GRATTERY ,70170,70278,72,47.666667,6.083333,0.91
+ Gray ,GRAY ,70100,70279,72,47.45,5.583333,1.84
+ Gray-la-Ville ,GRAY LA VILLE ,70100,70280,72,47.433333,5.566667,1.9
+ Greucourt ,GREUCOURT ,70130,70281,72,47.533333,5.866667,0.83
+ Gy ,GY ,70700,70282,72,47.4,5.816667,1.67
+ Hautevelle ,HAUTEVELLE ,70800,70284,72,47.85,6.283333,1.62
+ Héricourt ,HERICOURT ,70400,70285,72,47.583333,6.75,2.33
+ Hugier ,HUGIER ,70150,70286,72,47.316667,5.716667,2.28
+ Hurecourt ,HURECOURT ,70210,70287,72,47.9,6.066667,1.99
+ Hyet ,HYET ,70190,70288,72,47.483333,6.083333,1.06
+ Igny ,IGNY ,70700,70289,72,47.483333,5.766667,1.19
+ Jasney ,JASNEY ,70800,70290,72,47.866667,6.183333,1.74
+ Jonvelle ,JONVELLE ,70500,70291,72,47.933333,5.916667,2.23
+ Jussey ,JUSSEY ,70500,70292,72,47.816667,5.9,1.38
+ Lambrey ,LAMBREY ,70500,70293,72,47.766667,5.933333,1.03
+ Lantenot ,LANTENOT ,70200,70294,72,47.75,6.5,1.43
+ Larians-et-Munans ,LARIANS ET MUNANS ,70230,70296,72,47.416667,6.233333,1.55
+ Larrêt ,LARRET ,70600,70297,72,47.633333,5.633333,1.66
+ Lavigney ,LAVIGNEY ,70120,70298,72,47.716667,5.816667,1.01
+ Lavoncourt ,LAVONCOURT ,70120,70299,72,47.633333,5.783333,1.13
+ Leffond ,LEFFOND ,70600,70300,72,47.666667,5.466667,2.26
+ Lieffrans ,LIEFFRANS ,70190,70301,72,47.516667,5.966667,1.86
+ Lieucourt ,LIEUCOURT ,70140,70302,72,47.35,5.616667,2.04
+ Liévans ,LIEVANS ,70240,70303,72,47.633333,6.35,1.35
+ Linexert ,LINEXERT ,70200,70304,72,47.75,6.483333,1.38
+ Loeuilley ,LOEUILLEY ,70100,70305,72,47.466667,5.383333,2.56
+ Lomont ,LOMONT ,70200,70306,72,47.616667,6.616667,1.85
+ La Longine ,LA LONGINE ,70310,70308,72,47.883333,6.583333,1.87
+ Lure ,LURE ,70200,70310,72,47.683333,6.5,1.43
+ Luxeuil-les-Bains ,LUXEUIL LES BAINS ,70300,70311,72,47.816667,6.383333,1.38
+ Luze ,LUZE ,70400,70312,72,47.6,6.733333,2.27
+ Lyoffans ,LYOFFANS ,70200,70313,72,47.65,6.583333,1.73
+ Magnivray ,MAGNIVRAY ,70300,70314,72,47.783333,6.466667,1.79
+ Magnoncourt ,MAGNONCOURT ,70800,70315,72,47.9,6.283333,1.99
+ Le Magnoray ,LE MAGNORAY ,70000,70316,72,47.533333,6.1,1.14
+ Les Magny ,LES MAGNY ,70110,70317,72,47.533333,6.45,1.26
+ Magny-Jobert ,MAGNY JOBERT ,70200,70319,72,47.65,6.6,1.79
+ Magny-lès-Jussey ,MAGNY LES JUSSEY ,70500,70320,72,47.866667,5.983333,1.74
+ Magny-Vernois ,MAGNY VERNOIS ,70200,70321,72,47.666667,6.483333,1.38
+ Mailleroncourt-Charette ,MAILLERONCOURT CHARETTE ,70240,70322,72,47.733333,6.266667,1.17
+ Mailleroncourt-Saint-Pancras ,MAILLERONCOURT SAINT PANCRAS ,70210,70323,72,47.916667,6.133333,2.11
+ Mailley-et-Chazelot ,MAILLEY ET CHAZELOT ,70000,70324,72,47.533333,6.05,1.58
+ Maizières ,MAIZIERES ,70190,70325,72,47.5,6.016667,1.23
+ La Malachère ,LA MALACHERE ,70190,70326,72,47.45,6.083333,1.3
+ Malbouhans ,MALBOUHANS ,70200,70328,72,47.716667,6.583333,1.73
+ Malvillers ,MALVILLERS ,70120,70329,72,47.733333,5.783333,1.13
+ Mandrevillars ,MANDREVILLARS ,70400,70330,72,47.616667,6.783333,2.45
+ Mantoche ,MANTOCHE ,70100,70331,72,47.416667,5.533333,2.02
+ Marast ,MARAST ,70110,70332,72,47.55,6.383333,1.07
+ Margilley ,MARGILLEY ,70600,70333,72,47.6,5.55,1.96
+ Marnay ,MARNAY ,70150,70334,72,47.283333,5.766667,2.52
+ Maussans ,MAUSSANS ,70230,70335,72,47.433333,6.25,1.43
+ Mélecey ,MELECEY ,70110,70336,72,47.516667,6.483333,1.38
+ Melin ,MELIN ,70120,70337,72,47.733333,5.833333,0.95
+ Melincourt ,MELINCOURT ,70210,70338,72,47.883333,6.133333,1.87
+ Mélisey ,MELISEY ,70270,70339,72,47.75,6.583333,1.73
+ Membrey ,MEMBREY ,70180,70340,72,47.583333,5.75,1.25
+ Menoux ,MENOUX ,70160,70341,72,47.8,6.1,1.26
+ Mercey-sur-Saône ,MERCEY SUR SAONE ,70130,70342,72,47.533333,5.733333,1.73
+ Mersuay ,MERSUAY ,70160,70343,72,47.783333,6.133333,1.14
+ Meurcourt ,MEURCOURT ,70300,70344,72,47.766667,6.233333,2.03
+ Miellin ,MIELLIN ,70440,70345,72,47.816667,6.733333,2.27
+ Mignafans ,MIGNAFANS ,70110,70346,72,47.55,6.55,1.74
+ Mignavillers ,MIGNAVILLERS ,70400,70347,72,47.583333,6.55,1.98
+ Moffans-et-Vacheresse ,MOFFANS ET VACHERESSE ,70200,70348,72,47.633333,6.55,1.61
+ Moimay ,MOIMAY ,70110,70349,72,47.55,6.416667,1.14
+ Mollans ,MOLLANS ,70240,70351,72,47.65,6.366667,1.41
+ La Montagne ,LA MONTAGNE ,70310,70352,72,47.916667,6.6,2.11
+ Montarlot-lès-Rioz ,MONTARLOT LES RIOZ ,70190,70355,72,47.416667,6,1.55
+ Montboillon ,MONTBOILLON ,70700,70356,72,47.366667,5.916667,1.91
+ Montbozon ,MONTBOZON ,70230,70357,72,47.466667,6.266667,1.18
+ Montcey ,MONTCEY ,70000,70358,72,47.65,6.233333,1.28
+ Montcourt ,MONTCOURT ,70500,70359,72,47.933333,5.95,2.23
+ Montdoré ,MONTDORE ,70210,70360,72,47.916667,6.083333,2.11
+ Montessaux ,MONTESSAUX ,70270,70361,72,47.75,6.566667,1.67
+ Montigny-lès-Cherlieu ,MONTIGNY LES CHERLIEU ,70500,70362,72,47.8,5.816667,1.26
+ Montigny-lès-Vesoul ,MONTIGNY LES VESOUL ,70000,70363,72,47.633333,6.066667,1.07
+ Mont-le-Frânois ,MONT LE FRANOIS ,70600,70365,72,47.583333,5.583333,1.84
+ Mont-le-Vernois ,MONT LE VERNOIS ,70000,70367,72,47.6,6.066667,1.02
+ Montot ,MONTOT ,70180,70368,72,47.566667,5.616667,1.72
+ Mont-Saint-Léger ,MONT SAINT LEGER ,70120,70369,72,47.633333,5.783333,1.13
+ Montseugny ,MONTSEUGNY ,70140,70370,72,47.35,5.533333,2.04
+ Montureux-et-Prantigny ,MONTUREUX ET PRANTIGNY ,70100,70371,72,47.5,5.633333,1.66
+ Montureux-lès-Baulay ,MONTUREUX LES BAULAY ,70500,70372,72,47.816667,5.983333,1.38
+ Motey-Besuche ,MOTEY BESUCHE ,70140,70374,72,47.3,5.666667,2.4
+ Motey-sur-Saône ,MOTEY SUR SAONE ,70130,70375,72,47.533333,5.75,1.5
+ Nantilly ,NANTILLY ,70100,70376,72,47.466667,5.533333,2.02
+ Nantouard ,NANTOUARD ,70100,70377,72,47.433333,5.716667,1.51
+ Navenne ,NAVENNE ,70000,70378,72,47.6,6.166667,0.31
+ Neurey-en-Vaux ,NEUREY EN VAUX ,70160,70380,72,47.75,6.2,1.91
+ Neurey-lès-la-Demie ,NEUREY LES LA DEMIE,70000,70381,72,47.566667,6.2,0.91
+ Neuvelle-lès-Champlitte ,NEUVELLE LES CHAMPLITTE ,70600,70382,72,47.583333,5.55,1.96
+ Neuvelle-lès-Cromary ,NEUVELLE LES CROMARY ,70190,70383,72,47.4,6.083333,1.67
+ Neuvelle-lès-la-Charité ,NEUVELLE LES LA CHARITE,70130,70384,72,47.533333,5.95,1.45
+ La Neuvelle-lès-Lure ,LA NEUVELLE LES LURE,70200,70385,72,47.716667,6.55,1.61
+ La Neuvelle-lès-Scey ,LA NEUVELLE LES SCEY,70360,70386,72,47.7,5.933333,1.94
+ Noidans-le-Ferroux ,NOIDANS LE FERROUX ,70130,70387,72,47.566667,5.95,1.43
+ Noidans-lès-Vesoul ,NOIDANS LES VESOUL ,70000,70388,72,47.616667,6.133333,0.18
+ Noiron ,NOIRON ,70100,70389,72,47.383333,5.633333,1.79
+ Noroy-le-Bourg ,NOROY LE BOURG ,70000,70390,72,47.616667,6.3,2.04
+ Noroy-lès-Jussey ,NOROY LES JUSSEY ,70500,70391,72,47.816667,5.833333,1.38
+ Oigney ,OIGNEY ,70120,70392,72,47.766667,5.85,1.25
+ Oiselay-et-Grachaux ,OISELAY ET GRACHAUX ,70700,70393,72,47.416667,5.933333,1.6
+ Onay ,ONAY ,70100,70394,72,47.383333,5.683333,1.79
+ Oppenans ,OPPENANS ,70110,70395,72,47.583333,6.383333,1.18
+ Oricourt ,ORICOURT ,70110,70396,72,47.6,6.4,1.12
+ Ormenans ,ORMENANS ,70230,70397,72,47.45,6.2,1.3
+ Ormoiche ,ORMOICHE ,70300,70398,72,47.8,6.316667,1.26
+ Ormoy ,ORMOY ,70500,70399,72,47.883333,5.983333,1.87
+ Ouge ,OUGE ,70500,70400,72,47.8,5.7,2.28
+ Ovanches ,OVANCHES ,70360,70401,72,47.633333,5.95,0.74
+ Oyrières ,OYRIERES ,70600,70402,72,47.533333,5.566667,1.9
+ Palante ,PALANTE ,70200,70403,72,47.65,6.583333,1.73
+ Passavant-la-Rochère ,PASSAVANT LA ROCHERE ,70210,70404,72,47.966667,6.033333,2.48
+ Pennesières ,PENNESIERES ,70190,70405,72,47.483333,6.1,1.06
+ Percey-le-Grand ,PERCEY LE GRAND ,70600,70406,72,47.60966,5.38949,-1
+ Perrouse ,PERROUSE ,70190,70407,72,47.366667,6.05,1.91
+ Pesmes ,PESMES ,70140,70408,72,47.283333,5.566667,2.52
+ Pierrecourt ,PIERRECOURT ,70600,70409,72,47.65,5.6,1.78
+ La Pisseure ,LA PISSEURE ,70800,70411,72,47.866667,6.233333,1.74
+ Plainemont ,PLAINEMONT ,70800,70412,72,47.85,6.216667,1.62
+ Plancher-Bas ,PLANCHER BAS ,70290,70413,72,47.716667,6.733333,2.27
+ Plancher-les-Mines ,PLANCHER LES MINES ,70290,70414,72,47.766667,6.75,2.33
+ Pomoy ,POMOY ,70240,70416,72,47.666667,6.35,0.99
+ Pontcey ,PONTCEY ,70360,70417,72,47.633333,6.033333,1.62
+ Le Pont-de-Planches ,LE PONT DE PLANCHES,70130,70418,72,47.533333,5.916667,0.98
+ Pont-du-Bois ,PONT DU BOIS ,70210,70419,72,47.966667,6.133333,2.48
+ Pont-sur-l'Ognon ,PONT SUR L OGNON,70110,70420,72,47.516667,6.383333,1.22
+ Port-sur-Saône ,PORT SUR SAONE ,70170,70421,72,47.683333,6.05,0.52
+ Poyans ,POYANS ,70100,70422,72,47.45,5.466667,2.26
+ Preigney ,PREIGNEY ,70120,70423,72,47.766667,5.783333,1.13
+ Presle ,PRESLE ,70230,70424,72,47.533333,6.266667,1.11
+ La Proiselière-et-Langle ,LA PROISELIERE ET LANGLE,70310,70425,72,47.833333,6.5,1.5
+ Provenchère ,PROVENCHERE ,70170,70426,72,47.716667,6.133333,1.62
+ Purgerot ,PURGEROT ,70160,70427,72,47.75,6,1.27
+ Pusey ,PUSEY ,70000,70428,72,47.65,6.133333,0.56
+ Pusy-et-Épenoux ,PUSY ET EPENOUX ,70000,70429,72,47.666667,6.15,0.77
+ La Quarte ,LA QUARTE ,70120,70430,72,47.766667,5.7,1.76
+ Quenoche ,QUENOCHE ,70190,70431,72,47.466667,6.1,1.18
+ Quers ,QUERS ,70200,70432,72,47.733333,6.433333,1.36
+ Quincey ,QUINCEY ,70000,70433,72,47.616667,6.183333,0.52
+ Quitteur ,QUITTEUR ,70100,70434,72,47.533333,5.683333,1.55
+ Raddon-et-Chapendu ,RADDON ET CHAPENDU ,70280,70435,72,47.85,6.483333,1.62
+ Raincourt ,RAINCOURT ,70500,70436,72,47.866667,5.883333,1.74
+ Ranzevelle ,RANZEVELLE ,70500,70437,72,47.9,5.983333,1.99
+ Ray-sur-Saône ,RAY SUR SAONE ,70130,70438,72,47.583333,5.833333,0.95
+ Raze ,RAZE ,70000,70439,72,47.583333,6.016667,1.7
+ Recologne ,RECOLOGNE ,70130,70440,72,47.583333,5.783333,1.13
+ Recologne-lès-Rioz ,RECOLOGNE LES RIOZ ,70190,70441,72,47.466667,5.983333,1.26
+ Renaucourt ,RENAUCOURT ,70120,70442,72,47.633333,5.766667,1.19
+ La Grande-Résie ,LA GRANDE RESIE ,70140,70443,72,47.333333,5.566667,2.16
+ La Résie-Saint-Martin ,LA RESIE SAINT MARTIN,70140,70444,72,47.316667,5.616667,2.28
+ Rignovelle ,RIGNOVELLE ,70200,70445,72,47.766667,6.483333,1.38
+ Rigny ,RIGNY ,70100,70446,72,47.466667,5.633333,1.66
+ Rioz ,RIOZ ,70190,70447,72,47.416667,6.066667,1.55
+ Roche-et-Raucourt ,ROCHE ET RAUCOURT ,70180,70448,72,47.616667,5.716667,1.36
+ La Rochelle ,LA ROCHELLE ,70120,70450,72,47.75,5.733333,1.3
+ Ronchamp ,RONCHAMP ,70250,70451,72,47.7,6.65,1.97
+ Rosey ,ROSEY ,70000,70452,72,47.566667,6.033333,1.55
+ La Rosière ,LA ROSIERE ,70310,70453,72,47.916667,6.633333,2.11
+ Rosières-sur-Mance ,ROSIERES SUR MANCE ,70500,70454,72,47.833333,5.8,1.5
+ Roye ,ROYE ,70200,70455,72,47.666667,6.55,1.61
+ Ruhans ,RUHANS ,70190,70456,72,47.466667,6.133333,1.18
+ Rupt-sur-Saône ,RUPT SUR SAONE ,70360,70457,72,47.65,5.933333,1.16
+ Saint-Andoche ,SAINT ANDOCHE ,70600,70458,72,47.633333,5.683333,1.54
+ Saint-Barthélemy ,SAINT BARTHELEMY ,70270,70459,72,47.75,6.583333,1.73
+ Saint-Bresson ,SAINT BRESSON ,70280,70460,72,47.866667,6.516667,1.84
+ Saint-Broing ,SAINT BROING ,70100,70461,72,47.45,5.7,1.42
+ Saint-Ferjeux ,SAINT FERJEUX ,70110,70462,72,47.55,6.516667,1.49
+ Saint-Gand ,SAINT GAND ,70130,70463,72,47.516667,5.85,0.89
+ Saint-Germain ,SAINT GERMAIN ,70200,70464,72,47.716667,6.533333,1.55
+ Saint-Loup-Nantouard ,SAINT LOUP NANTOUARD ,70100,70466,72,47.416667,5.733333,1.72
+ Saint-Loup-sur-Semouse ,SAINT LOUP SUR SEMOUSE,70800,70467,72,47.883333,6.266667,1.87
+ Saint-Marcel ,SAINT MARCEL ,70500,70468,72,47.833333,5.833333,1.5
+ Sainte-Marie-en-Chanois ,SAINTE MARIE EN CHANOIS,70310,70469,72,47.833333,6.516667,1.5
+ Sainte-Marie-en-Chaux ,SAINTE MARIE EN CHAUX,70300,70470,72,47.783333,6.316667,1.14
+ Sainte-Reine ,SAINTE REINE ,70700,70471,72,47.5,5.783333,1.22
+ Saint-Rémy ,SAINT REMY ,70160,70472,72,47.833333,6.1,1.5
+ Saint-Sauveur ,SAINT SAUVEUR ,70300,70473,72,47.8,6.383333,1.26
+ Saint-Sulpice ,SAINT SULPICE ,70110,70474,72,47.566667,6.45,1.26
+ Saint-Valbert ,SAINT VALBERT ,70300,70475,72,47.85,6.4,1.62
+ Saponcourt ,SAPONCOURT ,70210,70476,72,47.866667,6.033333,1.74
+ Saulnot ,SAULNOT ,70400,70477,72,47.566667,6.633333,1.91
+ Sauvigney-lès-Pesmes ,SAUVIGNEY LES PESMES ,70140,70480,72,47.3,5.566667,2.4
+ Savoyeux ,SAVOYEUX ,70130,70481,72,47.55,5.75,1.47
+ Scey-sur-Saône-et-Saint-Albin ,SCEY SUR SAONE ET,70360,70482,72,47.666667,5.966667,0.69
+ Scye ,SCYE ,70170,70483,72,47.65,6.05,1.21
+ Secenans ,SECENANS ,70400,70484,72,47.55,6.566667,1.84
+ Selles ,SELLES ,70210,70485,72,47.966667,6.083333,2.48
+ Semmadon ,SEMMADON ,70120,70486,72,47.733333,5.866667,1.09
+ Senoncourt ,SENONCOURT ,70160,70488,72,47.833333,6.066667,1.5
+ Servance ,SERVANCE ,70440,70489,72,47.816667,6.683333,2.09
+ Servigney ,SERVIGNEY ,70240,70490,72,47.716667,6.3,0.72
+ Seveux ,SEVEUX ,70130,70491,72,47.55,5.75,1.47
+ Sorans-lès-Breurey ,SORANS LES BREUREY ,70190,70493,72,47.4,6.05,1.67
+ Sornay ,SORNAY ,70150,70494,72,47.283333,5.7,2.52
+ Suaucourt-et-Pisseloup ,SUAUCOURT ET PISSELOUP ,70120,70495,72,47.683333,5.733333,1.3
+ Tartécourt ,TARTECOURT ,70500,70496,72,47.833333,5.983333,1.5
+ Tavey ,TAVEY ,70400,70497,72,47.566667,6.733333,2.27
+ Theuley ,THEULEY ,70120,70499,72,47.616667,5.8,1.07
+ Thieffrans ,THIEFFRANS ,70230,70500,72,47.5,6.316667,1.35
+ Thiénans ,THIENANS ,70230,70501,72,47.466667,6.283333,1.18
+ Tincey-et-Pontrebeau ,TINCEY ET PONTREBEAU ,70120,70502,72,47.6,5.8,1.28
+ Traitiéfontaine ,TRAITIEFONTAINE ,70190,70503,72,47.416667,6.1,1.55
+ Traves ,TRAVES ,70360,70504,72,47.616667,5.966667,0.76
+ Le Tremblois ,LE TREMBLOIS ,70100,70505,72,47.383333,5.583333,1.84
+ Trémoins ,TREMOINS ,70400,70506,72,47.566667,6.7,2.15
+ Trésilley ,TRESILLEY ,70190,70507,72,47.45,6.033333,1.3
+ Trevey ,TREVEY ,70230,70508,72,47.516667,6.25,0.82
+ Tromarey ,TROMAREY ,70150,70509,72,47.333333,5.716667,2.16
+ Vaîte ,VAITE ,70180,70511,72,47.583333,5.733333,1.3
+ Vaivre-et-Montoille ,VAIVRE ET MONTOILLE ,70000,70513,72,47.633333,6.1,0.67
+ Valay ,VALAY ,70140,70514,72,47.333333,5.633333,2.16
+ Le Val-de-Gouhenans ,LE VAL DE GOUHENANS,70200,70515,72,47.616667,6.483333,1.38
+ Vallerois-le-Bois ,VALLEROIS LE BOIS ,70000,70516,72,47.55,6.283333,1.97
+ Vallerois-Lorioz ,VALLEROIS LORIOZ ,70000,70517,72,47.566667,6.15,0.55
+ Vandelans ,VANDELANS ,70190,70519,72,47.4,6.166667,1.67
+ Vanne ,VANNE ,70130,70520,72,47.6,5.833333,0.95
+ Vantoux-et-Longevelle ,VANTOUX ET LONGEVELLE ,70700,70521,72,47.433333,5.85,1.43
+ Varogne ,VAROGNE ,70240,70522,72,47.716667,6.2,2.07
+ Vars ,VARS ,70600,70523,72,47.533333,5.533333,2.02
+ Vauchoux ,VAUCHOUX ,70170,70524,72,47.666667,6.033333,1.05
+ Vauvillers ,VAUVILLERS ,70210,70526,72,47.916667,6.1,2.11
+ Vaux-le-Moncelot ,VAUX LE MONCELOT ,70700,70527,72,47.466667,5.9,1.29
+ Velet ,VELET ,70100,70529,72,47.433333,5.566667,1.9
+ Velleclaire ,VELLECLAIRE ,70700,70531,72,47.433333,5.866667,1.43
+ Vellefaux ,VELLEFAUX ,70000,70532,72,47.55,6.133333,0.78
+ Vellefrie ,VELLEFRIE ,70240,70534,72,47.7,6.216667,1.68
+ Velleguindry-et-Levrecey ,VELLEGUINDRY ET LEVRECEY ,70000,70535,72,47.55,6.1,0.96
+ Velle-le-Châtel ,VELLE LE CHATEL ,70000,70536,72,47.6,6.05,1.24
+ Velleminfroy ,VELLEMINFROY ,70240,70537,72,47.666667,6.316667,0.78
+ Vellemoz ,VELLEMOZ ,70700,70538,72,47.466667,5.8,1.18
+ Velloreille-lès-Choye ,VELLOREILLE LES CHOYE ,70700,70540,72,47.4,5.733333,1.67
+ Velorcey ,VELORCEY ,70300,70541,72,47.783333,6.25,1.74
+ Venère ,VENERE ,70100,70542,72,47.366667,5.666667,1.91
+ Verchamp ,VERCHAMP ,70230,70543,72,47.433333,6.216667,1.43
+ La Vergenne ,LA VERGENNE ,70200,70544,72,47.616667,6.533333,1.55
+ Venisey ,VENISEY ,70500,70545,72,47.833333,6,1.5
+ Véreux ,VEREUX ,70180,70546,72,47.516667,5.65,1.6
+ Verlans ,VERLANS ,70400,70547,72,47.566667,6.716667,2.21
+ Vernois-sur-Mance ,VERNOIS SUR MANCE ,70500,70548,72,47.85,5.783333,1.62
+ La Vernotte ,LA VERNOTTE ,70130,70549,72,47.516667,5.866667,0.83
+ Vesoul ,VESOUL ,70000,70550,72,47.633333,6.166667,0.44
+ Vezet ,VEZET ,70130,70551,72,47.533333,5.883333,0.77
+ Villafans ,VILLAFANS ,70110,70552,72,47.583333,6.466667,1.32
+ Villargent ,VILLARGENT ,70110,70553,72,47.55,6.483333,1.38
+ Villars-le-Pautel ,VILLARS LE PAUTEL ,70500,70554,72,47.9,5.933333,1.99
+ Villefrancon ,VILLEFRANCON ,70700,70557,72,47.4,5.75,1.67
+ Villeparois ,VILLEPAROIS ,70000,70559,72,47.65,6.183333,0.75
+ Villers-Bouton ,VILLERS BOUTON ,70190,70560,72,47.45,5.983333,1.3
+ Villersexel ,VILLERSEXEL ,70110,70561,72,47.55,6.433333,1.2
+ Villers-la-Ville ,VILLERS LA VILLE ,70110,70562,72,47.55,6.466667,1.32
+ Villers-le-Sec ,VILLERS LE SEC ,70000,70563,72,47.6,6.216667,0.95
+ Villers-lès-Luxeuil ,VILLERS LES LUXEUIL ,70300,70564,72,47.766667,6.283333,1.22
+ Villers-Pater ,VILLERS PATER ,70190,70565,72,47.466667,6.166667,1.54
+ Villers-sur-Port ,VILLERS SUR PORT ,70170,70566,72,47.716667,6.083333,0.65
+ Villers-sur-Saulnot ,VILLERS SUR SAULNOT ,70400,70567,72,47.55,6.65,1.97
+ Villers-Vaudey ,VILLERS VAUDEY ,70120,70568,72,47.666667,5.766667,1.19
+ Vilory ,VILORY ,70240,70569,72,47.716667,6.233333,1.47
+ Virey ,VIREY ,70150,70570,72,47.35,5.75,2.04
+ Visoncourt ,VISONCOURT ,70300,70571,72,47.75,6.316667,0.89
+ La Voivre ,LA VOIVRE ,70310,70573,72,47.833333,6.533333,1.55
+ Volon ,VOLON ,70180,70574,72,47.616667,5.733333,1.3
+ Vougécourt ,VOUGECOURT ,70500,70576,72,47.933333,6,2.23
+ Vouhenans ,VOUHENANS ,70200,70577,72,47.65,6.483333,1.38
+ Vrégille ,VREGILLE ,70150,70578,72,47.316667,5.9,2.28
+ Vy-le-Ferroux ,VY LE FERROUX ,70130,70580,72,47.583333,5.983333,1.95
+ Vy-lès-Lure ,VY LES LURE ,70200,70581,72,47.65,6.45,1.26
+ Vy-lès-Rupt ,VY LES RUPT ,70120,70582,72,47.633333,5.9,1.6
+ Vy-lès-Filain ,VY LES FILAIN ,70230,70583,72,47.516667,6.2,1.25
+ Frettes ,FRETTES ,70600,70902,72,47.683333,5.566667,1.9
+ Port d'Atelier ,PORT D ATELIER ,70160,70903,72,47.766667,6.033333,1.01
+ L'Abergement-de-Cuisery ,L ABERGEMENT DE CUISERY,71290,71001,26,46.566667,4.95,1.04
+ Allériot ,ALLERIOT ,71380,71004,26,46.816667,4.95,2.45
+ Aluze ,ALUZE ,71510,71005,26,46.85,4.683333,1.26
+ Amanzé ,AMANZE ,71610,71006,26,46.333333,4.233333,1.58
+ Ameugny ,AMEUGNY ,71460,71007,26,46.516667,4.683333,1.4
+ Anglure-sous-Dun ,ANGLURE SOUS DUN ,71170,71008,26,46.233333,4.366667,2.13
+ Anost ,ANOST ,71550,71009,26,47.066667,4.1,2.45
+ Antully ,ANTULLY ,71400,71010,26,46.9,4.416667,1.72
+ Anzy-le-Duc ,ANZY LE DUC ,71110,71011,26,46.316667,4.066667,1.88
+ Artaix ,ARTAIX ,71110,71012,26,46.25,4,2.1
+ Authumes ,AUTHUMES ,71270,71013,26,46.883333,5.3,2.2
+ Autun ,AUTUN ,71400,71014,26,46.95,4.3,1.81
+ Auxy ,AUXY ,71400,71015,26,46.95,4.4,1.81
+ Azé ,AZE ,71260,71016,26,46.433333,4.766667,1.3
+ Ballore ,BALLORE ,71220,71017,26,46.533333,4.366667,1.31
+ Bantanges ,BANTANGES ,71500,71018,26,46.616667,5.1,2.31
+ Barizey ,BARIZEY ,71640,71019,26,46.783333,4.683333,1.25
+ Barnay ,BARNAY ,71540,71020,26,47.083333,4.333333,2.54
+ Baron ,BARON ,71120,71021,26,46.483333,4.283333,1.16
+ Baudrières ,BAUDRIERES ,71370,71023,26,46.666667,5,1.21
+ Beaubery ,BEAUBERY ,71220,71025,26,46.4,4.4,1.43
+ Beaumont-sur-Grosne ,BEAUMONT SUR GROSNE ,71240,71026,26,46.666667,4.866667,0.77
+ Beaurepaire-en-Bresse ,BEAUREPAIRE EN BRESSE ,71580,71027,26,46.666667,5.383333,2.48
+ Beauvernois ,BEAUVERNOIS ,71270,71028,26,46.833333,5.4385,-1
+ Bellevesvre ,BELLEVESVRE ,71270,71029,26,46.833333,5.366667,2.42
+ Bergesserin ,BERGESSERIN ,71250,71030,26,46.4,4.566667,1.32
+ Berzé-le-Châtel ,BERZE LE CHATEL ,71960,71031,26,46.383333,4.7,1.3
+ Berzé-la-Ville ,BERZE LA VILLE ,71960,71032,26,46.366667,4.7,1.4
+ Bey ,BEY ,71620,71033,26,46.816667,4.966667,1.33
+ Bissey-sous-Cruchaud ,BISSEY SOUS CRUCHAUD ,71390,71034,26,46.733333,4.683333,0.62
+ Bissy-la-Mâconnaise ,BISSY LA MACONNAISE ,71260,71035,26,46.483333,4.783333,1.29
+ Bissy-sous-Uxelles ,BISSY SOUS UXELLES ,71460,71036,26,46.566667,4.716667,1.31
+ Bissy-sur-Fley ,BISSY SUR FLEY ,71460,71037,26,46.666667,4.616667,0.92
+ Les Bizots ,LES BIZOTS ,71710,71038,26,46.75,4.383333,1.35
+ Blanot ,BLANOT ,71250,71039,26,46.466667,4.733333,1.64
+ Blanzy ,BLANZY ,71450,71040,26,46.7,4.383333,0.83
+ Bois-Sainte-Marie ,BOIS SAINTE MARIE ,71800,71041,26,46.316667,4.35,1.67
+ Bonnay ,BONNAY ,71460,71042,26,46.55,4.616667,0.74
+ Bosjean ,BOSJEAN ,71330,71044,26,46.766667,5.333333,2.31
+ Bouhans ,BOUHANS ,71330,71045,26,46.766667,5.3,2.2
+ La Boulaye ,LA BOULAYE ,71320,71046,26,46.75,4.116667,1.72
+ Bourbon-Lancy ,BOURBON LANCY ,71140,71047,26,46.616667,3.783333,2.82
+ Bourg-le-Comte ,BOURG LE COMTE ,71110,71048,26,46.3,3.983333,2.16
+ Bourgneuf-Val-d'Or ,BOURGNEUF VAL D OR,71640,71049,26,46.833333,4.716667,1.17
+ Bourgvilain ,BOURGVILAIN ,71630,71050,26,46.366667,4.633333,1.4
+ Bouzeron ,BOUZERON ,71150,71051,26,46.883333,4.733333,1.44
+ Boyer ,BOYER ,71700,71052,26,46.583333,4.883333,1.07
+ Bragny-en-Charollais ,BRAGNY EN CHAROLLAIS ,71430,71053,26,46.533333,4.133333,1.66
+ Bragny-sur-Saône ,BRAGNY SUR SAONE ,71350,71054,26,46.916667,5.033333,1.62
+ Brandon ,BRANDON ,71520,71055,26,46.366667,4.566667,1.4
+ Branges ,BRANGES ,71500,71056,26,46.633333,5.183333,1.82
+ Bray ,BRAY ,71250,71057,26,46.5,4.716667,1.48
+ Bresse-sur-Grosne ,BRESSE SUR GROSNE ,71460,71058,26,46.583333,4.75,1.7
+ Le Breuil ,LE BREUIL ,71670,71059,26,46.8,4.483333,1.07
+ Briant ,BRIANT ,71110,71060,26,46.3,4.15,1.76
+ Brienne ,BRIENNE ,71290,71061,26,46.566667,5.016667,1.26
+ Brion ,BRION ,71190,71062,26,46.908333,4.208333,-1
+ Broye ,BROYE ,71190,71063,26,46.866667,4.3,1.59
+ Bruailles ,BRUAILLES ,71500,71064,26,46.6,5.233333,1.98
+ Buffières ,BUFFIERES ,71250,71065,26,46.433333,4.533333,1.46
+ Burgy ,BURGY ,71260,71066,26,46.466667,4.833333,0.85
+ Burnand ,BURNAND ,71460,71067,26,46.6,4.633333,0.12
+ Burzy ,BURZY ,71460,71068,26,46.6,4.583333,0.64
+ Buxy ,BUXY ,71390,71070,26,46.716667,4.683333,0.52
+ Céron ,CERON ,71110,71071,26,46.283333,3.933333,2.32
+ Cersot ,CERSOT ,71390,71072,26,46.7,4.633333,0.85
+ Chagny ,CHAGNY ,71150,71073,26,46.916667,4.75,1.62
+ Chaintré ,CHAINTRE ,71570,71074,26,46.266667,4.766667,1.94
+ Chalmoux ,CHALMOUX ,71140,71075,26,46.6,3.833333,2.65
+ Chalon-sur-Saône ,CHALON SUR SAONE ,71530,71076,26,46.783333,4.85,1.13
+ Chambilly ,CHAMBILLY ,71110,71077,26,46.283333,4.016667,2.05
+ Chamilly ,CHAMILLY ,71510,71078,26,46.866667,4.683333,1.35
+ Champagnat ,CHAMPAGNAT ,71480,71079,26,46.483333,5.383333,2.48
+ Champagny-sous-Uxelles ,CHAMPAGNY SOUS UXELLES ,71460,71080,26,46.583333,4.733333,1.47
+ Champforgeuil ,CHAMPFORGEUIL ,71530,71081,26,46.816667,4.833333,1.07
+ Champlecy ,CHAMPLECY ,71120,71082,26,46.466667,4.25,1.27
+ Champlieu ,CHAMPLIEU ,71240,71083,26,46.6,4.783333,1.26
+ Chânes ,CHANES ,71570,71084,26,46.25,4.75,2.04
+ Change ,CHANGE ,21340,71085,26,46.933333,4.633333,1.71
+ Chapaize ,CHAPAIZE ,71460,71087,26,46.55,4.75,1.83
+ La Chapelle-au-Mans ,LA CHAPELLE AU MANS,71130,71088,26,46.633333,3.966667,2.21
+ La Chapelle-de-Bragny ,LA CHAPELLE DE BRAGNY,71240,71089,26,46.633333,4.766667,1.36
+ La Chapelle-de-Guinchay ,LA CHAPELLE DE GUINCHAY,71570,71090,26,46.2,4.75,2.31
+ La Chapelle-Naude ,LA CHAPELLE NAUDE ,71500,71092,26,46.6,5.183333,1.82
+ La Chapelle-Saint-Sauveur ,LA CHAPELLE SAINT SAUVEUR,71310,71093,26,46.833333,5.266667,2.09
+ La Chapelle-sous-Brancion ,LA CHAPELLE SOUS BRANCION,71700,71094,26,46.55,4.783333,1.71
+ La Chapelle-sous-Dun ,LA CHAPELLE SOUS DUN,71800,71095,26,46.266667,4.3,1.94
+ La Chapelle-sous-Uchon ,LA CHAPELLE SOUS UCHON,71190,71096,26,46.833333,4.233333,1.33
+ La Chapelle-Thècle ,LA CHAPELLE THECLE ,71470,71097,26,46.55,5.116667,1.6
+ Charbonnat ,CHARBONNAT ,71320,71098,26,46.783333,4.116667,1.72
+ Charbonnières ,CHARBONNIERES ,71260,71099,26,46.383333,4.833333,1.3
+ Chardonnay ,CHARDONNAY ,71700,71100,26,46.5,4.866667,0.79
+ Charette ,CHARETTE ,71270,71101,26,46.916667,5.2,1.87
+ La Charmée ,LA CHARMEE ,71100,71102,26,46.716667,4.8,1.6
+ Charnay-lès-Chalon ,CHARNAY LES CHALON ,71350,71104,26,46.933333,5.1,1.71
+ Charnay-lès-Mâcon ,CHARNAY LES MACON ,71850,71105,26,46.3,4.783333,1.76
+ Charolles ,CHAROLLES ,71120,71106,26,46.433333,4.283333,1.16
+ Charrecey ,CHARRECEY ,71510,71107,26,46.833333,4.666667,1.17
+ Chasselas ,CHASSELAS ,71570,71108,26,46.283333,4.716667,1.85
+ Chassey-le-Camp ,CHASSEY LE CAMP ,71150,71109,26,46.883333,4.7,1.44
+ Chassigny-sous-Dun ,CHASSIGNY SOUS DUN ,71170,71110,26,46.233333,4.3,2.13
+ Château ,CHATEAU ,71250,71112,26,46.433333,4.6,1.03
+ Châteaurenaud ,CHATEAURENAUD ,71500,71114,26,46.633333,5.233333,1.98
+ Châtel-Moron ,CHATEL MORON ,71510,71115,26,46.8,4.65,0.98
+ Châtenay ,CHATENAY ,71800,71116,26,46.291667,4.383333,-1
+ Châtenoy-en-Bresse ,CHATENOY EN BRESSE ,71380,71117,26,46.783333,4.916667,0.93
+ Châtenoy-le-Royal ,CHATENOY LE ROYAL ,71880,71118,26,46.783333,4.8,0.89
+ Chaudenay ,CHAUDENAY ,71150,71119,26,46.916667,4.783333,1.62
+ Chauffailles ,CHAUFFAILLES ,71170,71120,26,46.2,4.333333,2.31
+ La Chaux ,LA CHAUX ,71310,71121,26,46.833333,5.266667,2.09
+ Cheilly-lès-Maranges ,CHEILLY LES MARANGES ,71150,71122,26,46.9,4.666667,1.53
+ Chenay-le-Châtel ,CHENAY LE CHATEL ,71340,71123,26,46.233333,3.95,2.35
+ Chenoves ,CHENOVES ,71940,71124,26,46.666667,4.666667,0.92
+ Chérizet ,CHERIZET ,71250,71125,26,46.516667,4.566667,1.15
+ Chevagny-sur-Guye ,CHEVAGNY SUR GUYE ,71220,71127,26,46.533333,4.516667,0.91
+ Chiddes ,CHIDDES ,71220,71128,26,46.45,4.516667,0.94
+ Chissey-en-Morvan ,CHISSEY EN MORVAN ,71540,71129,26,47.116667,4.233333,2.72
+ Chissey-lès-Mâcon ,CHISSEY LES MACON ,71460,71130,26,46.516667,4.733333,1.87
+ Ciel ,CIEL ,71350,71131,26,46.883333,5.05,1.44
+ Ciry-le-Noble ,CIRY LE NOBLE ,71420,71132,26,46.6,4.3,1.82
+ La Clayette ,LA CLAYETTE ,71800,71133,26,46.283333,4.3,1.85
+ Clermain ,CLERMAIN ,71520,71134,26,46.366667,4.583333,1.4
+ Clessé ,CLESSE ,71260,71135,26,46.416667,4.816667,1.12
+ Clessy ,CLESSY ,71130,71136,26,46.55,4.083333,1.83
+ Cluny ,CLUNY ,71250,71137,26,46.433333,4.65,1.03
+ Clux ,CLUX ,71270,71138,26,46.95,5.183333,1.82
+ Collonge-en-Charollais ,COLLONGE EN CHAROLLAIS ,71460,71139,26,46.633333,4.533333,1.41
+ Collonge-la-Madeleine ,COLLONGE LA MADELEINE ,71360,71140,26,46.933333,4.516667,1.71
+ Colombier-en-Brionnais ,COLOMBIER EN BRIONNAIS ,71800,71141,26,46.35,4.333333,1.49
+ La Comelle ,LA COMELLE ,71990,71142,26,46.883333,4.116667,1.72
+ Condal ,CONDAL ,71480,71143,26,46.466667,5.283333,2.15
+ Cordesse ,CORDESSE ,71540,71144,26,47.033333,4.333333,2.26
+ Cormatin ,CORMATIN ,71460,71145,26,46.55,4.683333,1.04
+ Cortambert ,CORTAMBERT ,71250,71146,26,46.483333,4.716667,1.41
+ Cortevaix ,CORTEVAIX ,71460,71147,26,46.533333,4.633333,0.96
+ Coublanc ,COUBLANC ,71170,71148,26,46.166667,4.283333,2.49
+ Crêches-sur-Saône ,CRECHES SUR SAONE ,71680,71150,26,46.25,4.783333,2.04
+ Créot ,CREOT ,71490,71151,26,46.916667,4.616667,1.62
+ Cressy-sur-Somme ,CRESSY SUR SOMME ,71760,71152,26,46.7,3.866667,2.54
+ Le Creusot ,LE CREUSOT ,71200,71153,26,46.8,4.433333,1
+ Crissey ,CRISSEY ,71530,71154,26,46.816667,4.883333,1.07
+ Cronat ,CRONAT ,71140,71155,26,46.72282,3.683333,-1
+ Cruzille ,CRUZILLE ,71260,71156,26,46.5,4.8,1.38
+ Cuiseaux ,CUISEAUX ,71480,71157,26,46.5,5.4,2.53
+ Cuisery ,CUISERY ,71290,71158,26,46.55,5,1.21
+ Culles-les-Roches ,CULLES LES ROCHES ,71460,71159,26,46.65,4.65,0.73
+ Curbigny ,CURBIGNY ,71800,71160,26,46.3,4.316667,1.76
+ Curdin ,CURDIN ,71130,71161,26,46.6,3.983333,2.16
+ Curgy ,CURGY ,71400,71162,26,46.983333,4.383333,1.99
+ Curtil-sous-Buffières ,CURTIL SOUS BUFFIERES ,71520,71163,26,46.4,4.516667,1.21
+ Curtil-sous-Burnand ,CURTIL SOUS BURNAND ,71460,71164,26,46.583333,4.616667,0.31
+ Cussy-en-Morvan ,CUSSY EN MORVAN ,71550,71165,26,47.083333,4.166667,2.54
+ Cuzy ,CUZY ,71320,71166,26,46.766667,4.033333,1.99
+ Damerey ,DAMEREY ,71620,71167,26,46.833333,4.983333,1.17
+ Dampierre-en-Bresse ,DAMPIERRE EN BRESSE ,71310,71168,26,46.833333,5.2,1.87
+ Davayé ,DAVAYE ,71960,71169,26,46.3,4.733333,1.76
+ Demigny ,DEMIGNY ,71150,71170,26,46.933333,4.833333,1.96
+ Dennevy ,DENNEVY ,71510,71171,26,46.866667,4.65,1.35
+ Dettey ,DETTEY ,71190,71172,26,46.766667,4.183333,1.49
+ Devrouze ,DEVROUZE ,71330,71173,26,46.766667,5.166667,1.76
+ Dezize-lès-Maranges ,DEZIZE LES MARANGES ,71150,71174,26,46.916667,4.65,1.62
+ Diconne ,DICONNE ,71330,71175,26,46.766667,5.133333,1.65
+ Digoin ,DIGOIN ,71160,71176,26,46.483333,3.983333,2.16
+ Dommartin-lès-Cuiseaux ,DOMMARTIN LES CUISEAUX ,71480,71177,26,46.5,5.3,2.2
+ Dompierre-les-Ormes ,DOMPIERRE LES ORMES ,71520,71178,26,46.35,4.483333,1.49
+ Donzy-le-National ,DONZY LE NATIONAL ,71250,71180,26,46.45,4.566667,0.94
+ Donzy-le-Pertuis ,DONZY LE PERTUIS ,71250,71181,26,46.45,4.716667,1.41
+ Dracy-le-Fort ,DRACY LE FORT ,71640,71182,26,46.8,4.766667,1.97
+ Dracy-lès-Couches ,DRACY LES COUCHES ,71490,71183,26,46.883333,4.583333,1.44
+ Dracy-Saint-Loup ,DRACY SAINT LOUP ,71400,71184,26,47.016667,4.333333,2.17
+ Dyo ,DYO ,71610,71185,26,46.35,4.283333,1.49
+ Écuelles ,ECUELLES ,71350,71186,26,46.95,5.066667,1.81
+ Écuisses ,ECUISSES ,71210,71187,26,46.75,4.533333,1.03
+ Épertully ,EPERTULLY ,71360,71188,26,46.933333,4.6,1.71
+ Épervans ,EPERVANS ,71380,71189,26,46.75,4.9,1.74
+ Essertenne ,ESSERTENNE ,71510,71191,26,46.816667,4.55,1.7
+ Étang-sur-Arroux ,ETANG SUR ARROUX ,71190,71192,26,46.866667,4.183333,1.49
+ Étrigny ,ETRIGNY ,71240,71193,26,46.583333,4.8,1.23
+ Farges-lès-Chalon ,FARGES LES CHALON ,71150,71194,26,46.833333,4.8,1.63
+ Farges-lès-Mâcon ,FARGES LES MACON ,71700,71195,26,46.516667,4.9,0.9
+ Flacé-lès-Mâcon ,FLACE LES MACON ,71000,71197,26,46.316667,4.816667,1.67
+ Flacey-en-Bresse ,FLACEY EN BRESSE ,71580,71198,26,46.6,5.4,2.53
+ Flagy ,FLAGY ,71250,71199,26,46.5,4.65,0.66
+ Fleury-la-Montagne ,FLEURY LA MONTAGNE ,71340,71200,26,46.2,4.133333,2.31
+ Fley ,FLEY ,71390,71201,26,46.666667,4.65,1.16
+ Fontaines ,FONTAINES ,71150,71202,26,46.85,4.766667,1.26
+ Fontenay ,FONTENAY ,71120,71203,26,46.466667,4.3,1.11
+ Fragnes ,FRAGNES ,71530,71204,26,46.833333,4.833333,1.17
+ La Frette ,LA FRETTE ,71440,71206,26,46.633333,5.05,1.4
+ Fretterans ,FRETTERANS ,71270,71207,26,46.916667,5.283333,2.15
+ Frontenard ,FRONTENARD ,71270,71208,26,46.916667,5.166667,1.76
+ Frontenaud ,FRONTENAUD ,71580,71209,26,46.55,5.3,2.2
+ Fuissé ,FUISSE ,71960,71210,26,46.283333,4.733333,1.85
+ Géanges ,GEANGES ,71133,71211,26,46.95,4.916667,1.81
+ Génelard ,GENELARD ,71420,71212,26,46.583333,4.233333,1.33
+ La Genête ,LA GENETE ,71290,71213,26,46.55,5.05,1.38
+ Genouilly ,GENOUILLY ,71460,71214,26,46.65,4.566667,1.1
+ Gergy ,GERGY ,71590,71215,26,46.866667,4.933333,1.35
+ Germagny ,GERMAGNY ,71460,71216,26,46.666667,4.6,0.99
+ Gibles ,GIBLES ,71800,71218,26,46.316667,4.383333,1.67
+ Gigny-sur-Saône ,GIGNY SUR SAONE ,71240,71219,26,46.666667,4.933333,1.57
+ Gilly-sur-Loire ,GILLY SUR LOIRE ,71160,71220,26,46.533333,3.783333,2.82
+ Gourdon ,GOURDON ,71690,71222,26,46.633333,4.45,0.91
+ La Grande-Verrière ,LA GRANDE VERRIERE ,71990,71223,26,46.966667,4.133333,1.9
+ Grandvaux ,GRANDVAUX ,71430,71224,26,46.5,4.183333,1.49
+ Granges ,GRANGES ,71390,71225,26,46.733333,4.733333,1.33
+ Grevilly ,GREVILLY ,71700,71226,26,46.516667,4.816667,1.07
+ Grury ,GRURY ,71760,71227,26,46.666667,3.9,2.43
+ Guerfand ,GUERFAND ,71620,71228,26,46.783333,5.033333,1.32
+ Les Guerreaux ,LES GUERREAUX ,71160,71229,26,46.533333,4.283333,2.36
+ Gueugnon ,GUEUGNON ,71130,71230,26,46.6,4.066667,1.88
+ La Guiche ,LA GUICHE ,71220,71231,26,46.55,4.45,0.75
+ L'Hôpital-le-Mercier ,L HOPITAL LE MERCIER,71600,71233,26,46.383333,4.016667,2.05
+ Hurigny ,HURIGNY ,71870,71235,26,46.35,4.8,1.49
+ Igé ,IGE ,71960,71236,26,46.4,4.75,1.88
+ Igornay ,IGORNAY ,71540,71237,26,47.05,4.383333,2.35
+ Iguerande ,IGUERANDE ,71340,71238,26,46.2,4.083333,2.31
+ Issy-l'Évêque ,ISSY L EVEQUE ,71760,71239,26,46.716667,3.966667,2.21
+ Jalogny ,JALOGNY ,71250,71240,26,46.416667,4.633333,1.12
+ Jambles ,JAMBLES ,71640,71241,26,46.766667,4.7,1.42
+ Joncy ,JONCY ,71460,71242,26,46.616667,4.55,1.12
+ Joudes ,JOUDES ,71480,71243,26,46.466667,5.366667,2.42
+ Jouvençon ,JOUVENCON ,71290,71244,26,46.583333,5.066667,1.43
+ Jugy ,JUGY ,71240,71245,26,46.6,4.85,0.71
+ Juif ,JUIF ,71440,71246,26,46.683333,5.166667,1.76
+ Jully-lès-Buxy ,JULLY LES BUXY ,71390,71247,26,46.683333,4.7,0.97
+ Lacrost ,LACROST ,71700,71248,26,46.566667,4.916667,1.3
+ Laives ,LAIVES ,71240,71249,26,46.633333,4.833333,0.66
+ Laizé ,LAIZE ,71870,71250,26,46.4,4.8,1.31
+ Laizy ,LAIZY ,71190,71251,26,46.9,4.2,1.53
+ Lalheue ,LALHEUE ,71240,71252,26,46.65,4.783333,1.09
+ Lans ,LANS ,71380,71253,26,46.766667,4.916667,0.93
+ Lays-sur-le-Doubs ,LAYS SUR LE DOUBS,71270,71254,26,46.916667,5.25,2.04
+ Lesme ,LESME ,71140,71255,26,46.65,3.716667,-1
+ Lessard-en-Bresse ,LESSARD EN BRESSE ,71440,71256,26,46.733333,5.083333,1.49
+ Lessard-le-National ,LESSARD LE NATIONAL ,71530,71257,26,46.866667,4.833333,1.35
+ Leynes ,LEYNES ,71570,71258,26,46.266667,4.716667,1.94
+ Ligny-en-Brionnais ,LIGNY EN BRIONNAIS ,71110,71259,26,46.233333,4.2,2.13
+ Loché ,LOCHE ,71000,71260,26,46.283333,4.766667,1.85
+ Loisy ,LOISY ,71290,71261,26,46.583333,5.033333,1.32
+ Longepierre ,LONGEPIERRE ,71270,71262,26,46.933333,5.2,1.87
+ Louhans ,LOUHANS ,71500,71263,26,46.633333,5.216667,1.93
+ Lournand ,LOURNAND ,71250,71264,26,46.45,4.65,0.94
+ La Loyère ,LA LOYERE ,71530,71265,26,46.833333,4.833333,1.17
+ Lucenay-l'Évêque ,LUCENAY L EVEQUE ,71540,71266,26,47.083333,4.25,2.54
+ Lugny ,LUGNY ,71260,71267,26,46.466667,4.816667,0.85
+ Lugny-lès-Charolles ,LUGNY LES CHAROLLES ,71120,71268,26,46.416667,4.216667,1.4
+ Lux ,LUX ,71100,71269,26,46.75,4.85,-1
+ Mâcon ,MACON ,71870,71270,26,46.3,4.833333,1.76
+ Mailly ,MAILLY ,71340,71271,26,46.216667,4.116667,2.22
+ Malay ,MALAY ,71460,71272,26,46.566667,4.683333,0.9
+ Maltat ,MALTAT ,71140,71273,26,46.683333,3.816667,2.71
+ Mancey ,MANCEY ,71240,71274,26,46.566667,4.833333,1.25
+ Marcilly-la-Gueurce ,MARCILLY LA GUEURCE ,71120,71276,26,46.4,4.3,1.21
+ Marigny ,MARIGNY ,71690,71278,26,46.683333,4.466667,1.47
+ Marizy ,MARIZY ,71220,71279,26,46.566667,4.416667,1.1
+ Marly-sous-Issy ,MARLY SOUS ISSY ,71760,71280,26,46.716667,3.933333,2.32
+ Marly-sur-Arroux ,MARLY SUR ARROUX ,71420,71281,26,46.616667,4.133333,1.66
+ Marmagne ,MARMAGNE ,71710,71282,26,46.833333,4.35,1.17
+ Marnay ,MARNAY ,71240,71283,26,46.7,4.916667,1.61
+ Martailly-lès-Brancion ,MARTAILLY LES BRANCION ,71700,71284,26,46.533333,4.8,1.33
+ Martigny-le-Comte ,MARTIGNY LE COMTE ,71220,71285,26,46.533333,4.333333,1.71
+ Mary ,MARY ,71690,71286,26,46.616667,4.5,1.22
+ Massilly ,MASSILLY ,71250,71287,26,46.483333,4.666667,0.76
+ Massy ,MASSY ,71250,71288,26,46.483333,4.616667,0.76
+ Matour ,MATOUR ,71520,71289,26,46.3,4.483333,1.76
+ Mazillé ,MAZILLE ,71250,71290,26,46.383333,4.6,1.3
+ Mellecey ,MELLECEY ,71640,71292,26,46.816667,4.733333,1.07
+ Ménétreuil ,MENETREUIL ,71470,71293,26,46.583333,5.1,1.54
+ Mervans ,MERVANS ,71310,71295,26,46.8,5.183333,1.82
+ Messey-sur-Grosne ,MESSEY SUR GROSNE ,71940,71296,26,46.65,4.75,1.93
+ Mesvres ,MESVRES ,71190,71297,26,46.866667,4.25,1.35
+ Meulin ,MEULIN ,71520,71298,26,46.366667,4.5,1.4
+ Milly-Lamartine ,MILLY LAMARTINE ,71960,71299,26,46.35,4.7,1.49
+ Le Miroir ,LE MIROIR ,71480,71300,26,46.516667,5.333333,2.31
+ Mont ,MONT ,71140,71301,26,46.616667,3.833333,2.65
+ Montagny-lès-Buxy ,MONTAGNY LES BUXY ,71390,71302,26,46.7,4.666667,0.43
+ Montagny-près-Louhans ,MONTAGNY PRES LOUHANS ,71500,71303,26,46.65,5.266667,2.09
+ Montagny-sur-Grosne ,MONTAGNY SUR GROSNE ,71520,71304,26,46.35,4.55,1.49
+ Montbellet ,MONTBELLET ,71260,71305,26,46.483333,4.866667,1.23
+ Montceau-les-Mines ,MONTCEAU LES MINES ,71300,71306,26,46.666667,4.366667,1
+ Montceaux-l'Étoile ,MONTCEAUX L ETOILE ,71110,71307,26,46.35,4.033333,1.99
+ Montceaux-Ragny ,MONTCEAUX RAGNY ,71240,71308,26,46.616667,4.85,0.71
+ Montcenis ,MONTCENIS ,71710,71309,26,46.783333,4.383333,0.89
+ Montchanin ,MONTCHANIN ,71210,71310,26,46.75,4.45,1.03
+ Montcony ,MONTCONY ,71500,71311,26,46.7,5.3,2.2
+ Montcoy ,MONTCOY ,71620,71312,26,46.8,5,1.21
+ Monthelon ,MONTHELON ,71400,71313,26,46.95,4.233333,1.81
+ Montjay ,MONTJAY ,71310,71314,26,46.816667,5.316667,2.26
+ Mont-lès-Seurre ,MONT LES SEURRE ,71270,71315,26,46.95,5.116667,1.81
+ Montmelard ,MONTMELARD ,71520,71316,26,46.333333,4.416667,1.92
+ Montmort ,MONTMORT ,71320,71317,26,46.733333,4.083333,1.83
+ Montpont-en-Bresse ,MONTPONT EN BRESSE ,71470,71318,26,46.55,5.15,1.71
+ Montret ,MONTRET ,71440,71319,26,46.683333,5.116667,1.6
+ Mont-Saint-Vincent ,MONT SAINT VINCENT ,71690,71320,26,46.633333,4.483333,0.5
+ Morey ,MOREY ,71510,71321,26,46.8,4.6,-1
+ Morlet ,MORLET ,71360,71322,26,46.95,4.516667,1.81
+ Mornay ,MORNAY ,71220,71323,26,46.5,4.383333,0.98
+ Moroges ,MOROGES ,71390,71324,26,46.75,4.683333,0.71
+ La Motte-Saint-Jean ,LA MOTTE SAINT JEAN,71160,71325,26,46.483333,3.95,2.27
+ Mouthier-en-Bresse ,MOUTHIER EN BRESSE ,71270,71326,26,46.85,5.383333,2.48
+ Mussy-sous-Dun ,MUSSY SOUS DUN ,71170,71327,26,46.233333,4.333333,2.13
+ Nanton ,NANTON ,71240,71328,26,46.616667,4.8,0.87
+ Navilly ,NAVILLY ,71270,71329,26,46.933333,5.15,1.71
+ Neuvy-Grandchamp ,NEUVY GRANDCHAMP ,71130,71330,26,46.583333,3.933333,2.32
+ Ormes ,ORMES ,71290,71332,26,46.633333,4.966667,1.34
+ Oslon ,OSLON ,71380,71333,26,46.783333,4.916667,0.93
+ Oudry ,OUDRY ,71420,71334,26,46.566667,4.15,1.61
+ Ouroux-sur-Saône ,OUROUX SUR SAONE ,71370,71336,26,46.716667,4.95,1.04
+ Oyé ,OYE ,71610,71337,26,46.316667,4.183333,1.86
+ Ozenay ,OZENAY ,71700,71338,26,46.533333,4.85,0.71
+ Ozolles ,OZOLLES ,71120,71339,26,46.383333,4.35,1.3
+ Palinges ,PALINGES ,71430,71340,26,46.55,4.216667,1.38
+ Palleau ,PALLEAU ,71350,71341,26,46.95,5.033333,1.81
+ Paray-le-Monial ,PARAY LE MONIAL ,71600,71342,26,46.45,4.116667,1.72
+ Paris-l'Hôpital ,PARIS L HOPITAL ,71150,71343,26,46.916667,4.633333,1.62
+ Passy ,PASSY ,71220,71344,26,46.533333,4.533333,1.1
+ Péronne ,PERONNE ,71260,71345,26,46.433333,4.816667,1.03
+ Perrecy-les-Forges ,PERRECY LES FORGES ,71420,71346,26,46.616667,4.2,1.44
+ Perreuil ,PERREUIL ,71510,71347,26,46.816667,4.566667,1.38
+ Perrigny-sur-Loire ,PERRIGNY SUR LOIRE ,71160,71348,26,46.533333,3.833333,2.65
+ La Petite-Verrière ,LA PETITE VERRIERE ,71400,71349,26,47.05,4.133333,2.37
+ Pierreclos ,PIERRECLOS ,71960,71350,26,46.333333,4.683333,1.58
+ Le Planois ,LE PLANOIS ,71330,71352,26,46.783333,5.333333,2.31
+ Plottes ,PLOTTES ,71700,71353,26,46.533333,4.866667,0.77
+ Pontoux ,PONTOUX ,71270,71355,26,46.916667,5.1,1.62
+ Pouilloux ,POUILLOUX ,71230,71356,26,46.6,4.366667,0.96
+ Pourlans ,POURLANS ,71270,71357,26,46.95,5.233333,1.98
+ Pressy-sous-Dondin ,PRESSY SOUS DONDIN ,71220,71358,26,46.466667,4.516667,0.85
+ Préty ,PRETY ,71290,71359,26,46.533333,4.933333,1.47
+ Prissé ,PRISSE ,71960,71360,26,46.316667,4.75,1.67
+ Prizy ,PRIZY ,71610,71361,26,46.35,4.216667,1.49
+ Pruzilly ,PRUZILLY ,71570,71362,26,46.25,4.7,2.04
+ Le Puley ,LE PULEY ,71460,71363,26,46.683333,4.55,1.58
+ La Racineuse ,LA RACINEUSE ,71310,71364,26,46.833333,5.15,1.71
+ Rancy ,RANCY ,71290,71365,26,46.6,5.083333,1.55
+ Ratenelle ,RATENELLE ,71290,71366,26,46.533333,5.016667,1.26
+ Ratte ,RATTE ,71500,71367,26,46.65,5.3,2.2
+ Reclesne ,RECLESNE ,71540,71368,26,47.033333,4.266667,2.26
+ Remigny ,REMIGNY ,71150,71369,26,46.9,4.716667,1.53
+ Rigny-sur-Arroux ,RIGNY SUR ARROUX ,71160,71370,26,46.533333,4.016667,2.05
+ La Roche-Vineuse ,LA ROCHE VINEUSE ,71960,71371,26,46.35,4.716667,1.49
+ Romanèche-Thorins ,ROMANECHE THORINS ,71570,71372,26,46.183333,4.733333,2.4
+ Rosey ,ROSEY ,71390,71374,26,46.75,4.7,0.88
+ Le Rousset ,LE ROUSSET ,71220,71375,26,46.566667,4.466667,0.96
+ Roussillon-en-Morvan ,ROUSSILLON EN MORVAN ,71550,71376,26,47.016667,4.1,2.17
+ Royer ,ROYER ,71700,71377,26,46.55,4.816667,1.02
+ Rully ,RULLY ,71150,71378,26,46.866667,4.75,1.35
+ Sagy ,SAGY ,71580,71379,26,46.6,5.316667,2.26
+ Saillenard ,SAILLENARD ,71580,71380,26,46.683333,5.366667,2.42
+ Sailly ,SAILLY ,71250,71381,26,46.533333,4.566667,1.32
+ Saint-Albain ,SAINT ALBAIN ,71260,71383,26,46.433333,4.883333,1.22
+ Saint-Ambreuil ,SAINT AMBREUIL ,71240,71384,26,46.683333,4.866667,0.85
+ Saint-Amour-Bellevue ,SAINT AMOUR BELLEVUE ,71570,71385,26,46.25,4.75,2.04
+ Saint-André-en-Bresse ,SAINT ANDRE EN BRESSE,71440,71386,26,46.65,5.083333,1.49
+ Saint-André-le-Désert ,SAINT ANDRE LE DESERT,71220,71387,26,46.5,4.533333,0.97
+ Saint-Aubin-en-Charollais ,SAINT AUBIN EN CHAROLLAIS,71430,71388,26,46.5,4.216667,1.38
+ Saint-Aubin-sur-Loire ,SAINT AUBIN SUR LOIRE,71140,71389,26,46.566667,3.75,2.93
+ Saint-Berain-sous-Sanvignes ,SAINT BERAIN SOUS SANVIGNES,71300,71390,26,46.7,4.3,1.11
+ Saint-Berain-sur-Dheune ,SAINT BERAIN SUR DHEUNE,71510,71391,26,46.816667,4.6,1.07
+ Saint-Boil ,SAINT BOIL ,71940,71392,26,46.65,4.683333,0.31
+ Saint-Bonnet-de-Cray ,SAINT BONNET DE CRAY,71340,71393,26,46.216667,4.15,2.22
+ Saint-Bonnet-de-Joux ,SAINT BONNET DE JOUX,71220,71394,26,46.483333,4.45,0.76
+ Saint-Bonnet-en-Bresse ,SAINT BONNET EN BRESSE,71310,71396,26,46.85,5.166667,1.76
+ Sainte-Cécile ,SAINTE CECILE ,71250,71397,26,46.383333,4.616667,1.3
+ Saint-Christophe-en-Bresse ,SAINT CHRISTOPHE EN BRESSE,71370,71398,26,46.75,4.983333,1.15
+ Saint-Clément-sur-Guye ,SAINT CLEMENT SUR GUYE,71460,71400,26,46.616667,4.583333,0.67
+ Sainte-Croix ,SAINTE CROIX ,71470,71401,26,46.566667,5.25,2.04
+ Saint-Cyr ,SAINT CYR ,71240,71402,26,46.683333,4.9,1.2
+ Saint-Denis-de-Vaux ,SAINT DENIS DE VAUX,71640,71403,26,46.8,4.7,0.98
+ Saint-Désert ,SAINT DESERT ,71390,71404,26,46.75,4.7,0.88
+ Saint-Didier-en-Bresse ,SAINT DIDIER EN BRESSE,71620,71405,26,46.85,5.083333,1.49
+ Saint-Didier-en-Brionnais ,SAINT DIDIER EN BRIONNAIS,71110,71406,26,46.333333,4.116667,1.72
+ Saint-Didier-sur-Arroux ,SAINT DIDIER SUR ARROUX,71190,71407,26,46.833333,4.116667,1.72
+ Saint-Edmond ,SAINT EDMOND ,71740,71408,26,46.2,4.216667,2.31
+ Saint-Émiland ,SAINT EMILAND ,71490,71409,26,46.9,4.483333,1.53
+ Saint-Étienne-en-Bresse ,SAINT ETIENNE EN BRESSE,71370,71410,26,46.7,5.05,1.43
+ Saint-Eugène ,SAINT EUGENE ,71320,71411,26,46.733333,4.183333,1.49
+ Saint-Eusèbe ,SAINT EUSEBE ,71210,71412,26,46.716667,4.466667,0.97
+ Saint-Firmin ,SAINT FIRMIN ,71670,71413,26,46.833333,4.466667,1.17
+ Saint-Forgeot ,SAINT FORGEOT ,71400,71414,26,47,4.3,2.08
+ Saint-Gengoux-de-Scissé ,SAINT GENGOUX DE SCISSE,71260,71416,26,46.466667,4.783333,1.08
+ Saint-Gengoux-le-National ,SAINT GENGOUX LE NATIONAL,71460,71417,26,46.616667,4.65,0.35
+ Saint-Germain-des-Rives ,SAINT GERMAIN DES RIVES,71600,71418,26,46.433333,4.033333,1.99
+ Saint-Germain-du-Bois ,SAINT GERMAIN DU BOIS,71330,71419,26,46.75,5.25,2.04
+ Saint-Germain-du-Plain ,SAINT GERMAIN DU PLAIN,71370,71420,26,46.7,4.966667,1.1
+ Saint-Germain-en-Brionnais ,SAINT GERMAIN EN BRIONNAIS,71610,71421,26,46.35,4.266667,1.49
+ Saint-Germain-lès-Buxy ,SAINT GERMAIN LES BUXY,71390,71422,26,46.7,4.766667,2.03
+ Saint-Gervais-en-Vallière ,SAINT GERVAIS EN VALLIERE,71350,71423,26,46.933333,4.95,2.15
+ Saint-Gervais-sur-Couches ,SAINT GERVAIS SUR COUCHES,71490,71424,26,46.916667,4.583333,1.62
+ Saint-Gilles ,SAINT GILLES ,71510,71425,26,46.883333,4.666667,1.44
+ Sainte-Hélène ,SAINTE HELENE ,71390,71426,26,46.75,4.65,0.74
+ Saint-Huruge ,SAINT HURUGE ,71460,71427,26,46.583333,4.566667,0.91
+ Saint-Igny-de-Roche ,SAINT IGNY DE ROCHE,71170,71428,26,46.183333,4.3,2.4
+ Saint-Jean-de-Vaux ,SAINT JEAN DE VAUX,71640,71430,26,46.816667,4.7,1.07
+ Saint-Jean-de-Trézy ,SAINT JEAN DE TREZY,71490,71431,26,46.833333,4.583333,1.28
+ Saint-Jean-le-Priche ,SAINT JEAN LE PRICHE,71000,71432,26,46.366667,4.85,1.48
+ Saint-Julien-de-Civry ,SAINT JULIEN DE CIVRY,71610,71433,26,46.366667,4.233333,1.4
+ Saint-Julien-sur-Dheune ,SAINT JULIEN SUR DHEUNE,71210,71435,26,46.766667,4.533333,1.13
+ Saint-Laurent-d'Andenay ,SAINT LAURENT D ANDENAY,71210,71436,26,46.733333,4.516667,0.7
+ Saint-Laurent-en-Brionnais ,SAINT LAURENT EN BRIONNAIS,71800,71437,26,46.266667,4.25,1.94
+ Saint-Léger-du-Bois ,SAINT LEGER DU BOIS,71360,71438,26,47.016667,4.45,2.17
+ Saint-Léger-sous-Beuvray ,SAINT LEGER SOUS BEUVRAY,71990,71440,26,46.916667,4.1,1.77
+ Saint-Léger-sur-Dheune ,SAINT LEGER SUR DHEUNE,71510,71442,26,46.85,4.633333,1.26
+ Saint-Loup-de-la-Salle ,SAINT LOUP DE LA,71133,71443,26,46.95,4.9,1.81
+ Saint-Marcel ,SAINT MARCEL ,71380,71445,26,46.783333,4.9,0.89
+ Saint-Marcelin-de-Cray ,SAINT MARCELIN DE CRAY,71460,71446,26,46.566667,4.533333,1.42
+ Saint-Mard-de-Vaux ,SAINT MARD DE VAUX,71640,71447,26,46.816667,4.683333,1.07
+ Saint-Martin-Belle-Roche ,SAINT MARTIN BELLE ROCHE,71118,71448,26,46.383333,4.85,1.3
+ Saint-Martin-d'Auxy ,SAINT MARTIN D AUXY,71390,71449,26,46.716667,4.55,2.46
+ Saint-Martin-de-Commune ,SAINT MARTIN DE COMMUNE,71490,71450,26,46.9,4.516667,1.53
+ Saint-Martin-de-Lixy ,SAINT MARTIN DE LIXY,71740,71451,26,46.2,4.25,2.31
+ Saint-Martin-de-Salencey ,SAINT MARTIN DE SALENCEY,71220,71452,26,46.516667,4.5,0.62
+ Saint-Martin-du-Lac ,SAINT MARTIN DU LAC,71110,71453,26,46.25,4.033333,2.04
+ Saint-Martin-du-Mont ,SAINT MARTIN DU MONT,71580,71454,26,46.616667,5.291667,-1
+ Saint-Martin-du-Tartre ,SAINT MARTIN DU TARTRE,71460,71455,26,46.633333,4.616667,0.47
+ Saint-Martin-en-Bresse ,SAINT MARTIN EN BRESSE,71620,71456,26,46.816667,5.066667,1.43
+ Saint-Martin-en-Gâtinois ,SAINT MARTIN EN GATINOIS,71350,71457,26,46.933333,5.016667,1.71
+ Saint-Martin-la-Patrouille ,SAINT MARTIN LA PATROUILLE,71460,71458,26,46.583333,4.533333,1.36
+ Saint-Martin-sous-Montaigu ,SAINT MARTIN SOUS MONTAIGU,71640,71459,26,46.816667,4.716667,1.07
+ Saint-Maurice-de-Satonnay ,SAINT MAURICE DE SATONNAY,71260,71460,26,46.416667,4.783333,1.12
+ Saint-Maurice-des-Champs ,SAINT MAURICE DES CHAMPS,71460,71461,26,46.633333,4.616667,0.47
+ Saint-Maurice-en-Rivière ,SAINT MAURICE EN RIVIERE,71620,71462,26,46.85,5.016667,1.26
+ Saint-Maurice-lès-Couches ,SAINT MAURICE LES COUCHES,71490,71464,26,46.883333,4.6,1.44
+ Saint-Micaud ,SAINT MICAUD ,71460,71465,26,46.683333,4.55,1.58
+ Saint-Nizier-sur-Arroux ,SAINT NIZIER SUR ARROUX,71190,71466,26,46.8,4.133333,1.66
+ Saint-Pantaléon ,SAINT PANTALEON ,71400,71467,26,46.95,4.316667,1.81
+ Saint-Pierre-de-Varennes ,SAINT PIERRE DE VARENNES,71670,71468,26,46.833333,4.5,1.17
+ Saint-Pierre-le-Vieux ,SAINT PIERRE LE VIEUX,71520,71469,26,46.283333,4.533333,1.85
+ Saint-Point ,SAINT POINT ,71630,71470,26,46.333333,4.616667,1.58
+ Saint-Prix ,SAINT PRIX ,71990,71472,26,46.95,4.066667,1.88
+ Saint-Racho ,SAINT RACHO ,71800,71473,26,46.266667,4.366667,1.94
+ Sainte-Radegonde ,SAINTE RADEGONDE ,71320,71474,26,46.683333,4.066667,1.88
+ Saint-Rémy ,SAINT REMY ,71100,71475,26,46.766667,4.833333,0.96
+ Saint-Romain-des-Îles ,SAINT ROMAIN DES ILES,71570,71476,26,46.183333,4.766667,2.4
+ Saint-Romain-sous-Gourdon ,SAINT ROMAIN SOUS GOURDON,71230,71477,26,46.616667,4.4,1.07
+ Saint-Romain-sous-Versigny ,SAINT ROMAIN SOUS VERSIGNY,71420,71478,26,46.65,4.183333,1.49
+ Saint-Sernin-du-Bois ,SAINT SERNIN DU BOIS,71200,71479,26,46.833333,4.433333,1.17
+ Saint-Sernin-du-Plain ,SAINT SERNIN DU PLAIN,71510,71480,26,46.9,4.616667,1.53
+ Saint-Symphorien-d'Ancelles ,SAINT SYMPHORIEN D ANCELLES,71570,71481,26,46.2,4.766667,2.31
+ Saint-Symphorien-de-Marmagne ,SAINT SYMPHORIEN DE MARMAGNE,71710,71482,26,46.833333,4.333333,1.17
+ Saint-Symphorien-des-Bois ,SAINT SYMPHORIEN DES BOIS,71800,71483,26,46.333333,4.283333,1.58
+ Saint-Usuge ,SAINT USUGE ,71500,71484,26,46.683333,5.25,2.04
+ Saint-Vallerin ,SAINT VALLERIN ,71390,71485,26,46.683333,4.666667,0.75
+ Saint-Vallier ,SAINT VALLIER ,71230,71486,26,46.633333,4.366667,0.96
+ Saint-Vincent-des-Prés ,SAINT VINCENT DES PRES,71250,71488,26,46.466667,4.566667,0.87
+ Saint-Vincent-en-Bresse ,SAINT VINCENT EN BRESSE,71440,71489,26,46.666667,5.066667,1.43
+ Saint-Yan ,SAINT YAN ,71600,71491,26,46.416667,4.033333,1.99
+ Saint-Ythaire ,SAINT YTHAIRE ,71460,71492,26,46.566667,4.616667,0.52
+ Saisy ,SAISY ,71360,71493,26,46.95,4.55,1.81
+ La Salle ,LA SALLE ,71260,71494,26,46.4,4.866667,1.23
+ Salornay-sur-Guye ,SALORNAY SUR GUYE ,71250,71495,26,46.516667,4.6,0.84
+ Sampigny-lès-Maranges ,SAMPIGNY LES MARANGES ,71150,71496,26,46.9,4.65,1.53
+ Sancé ,SANCE ,71000,71497,26,46.333333,4.833333,1.58
+ Santilly ,SANTILLY ,71460,71498,26,46.616667,4.7,1
+ Sanvignes-les-Mines ,SANVIGNES LES MINES ,71410,71499,26,46.666667,4.3,1.11
+ Sassangy ,SASSANGY ,71390,71501,26,46.716667,4.633333,0.75
+ Sassenay ,SASSENAY ,71530,71502,26,46.833333,4.933333,1.98
+ Saules ,SAULES ,71940,71503,26,46.65,4.666667,0.84
+ Saunières ,SAUNIERES ,71350,71504,26,46.9,5.083333,1.53
+ Savianges ,SAVIANGES ,71460,71505,26,46.683333,4.6,1.2
+ Savigny-en-Revermont ,SAVIGNY EN REVERMONT ,71580,71506,26,46.633333,5.416667,2.59
+ Savigny-sur-Grosne ,SAVIGNY SUR GROSNE ,71460,71507,26,46.583333,4.666667,0.58
+ Savigny-sur-Seille ,SAVIGNY SUR SEILLE ,71440,71508,26,46.616667,5.1,1.54
+ Semur-en-Brionnais ,SEMUR EN BRIONNAIS ,71110,71510,26,46.266667,4.083333,1.94
+ Sennecé-lès-Mâcon ,SENNECE LES MACON ,71000,71511,26,46.35,4.833333,1.49
+ Sennecey-le-Grand ,SENNECEY LE GRAND ,71240,71512,26,46.65,4.866667,0.77
+ Senozan ,SENOZAN ,71260,71513,26,46.383333,4.866667,1.51
+ Sercy ,SERCY ,71460,71515,26,46.6,4.683333,0.75
+ Serley ,SERLEY ,71310,71516,26,46.783333,5.216667,1.93
+ Sermesse ,SERMESSE ,71350,71517,26,46.9,5.1,1.54
+ Serrières ,SERRIERES ,71960,71518,26,46.3,4.683333,1.76
+ Serrigny-en-Bresse ,SERRIGNY EN BRESSE ,71310,71519,26,46.816667,5.116667,1.62
+ Sevrey ,SEVREY ,71100,71520,26,46.733333,4.85,0.72
+ Sigy-le-Châtel ,SIGY LE CHATEL ,71250,71521,26,46.55,4.583333,1.4
+ Simandre ,SIMANDRE ,71290,71522,26,46.633333,4.983333,1.21
+ Simard ,SIMARD ,71330,71523,26,46.716667,5.183333,1.82
+ Sivignon ,SIVIGNON ,71220,71524,26,46.416667,4.5,1.13
+ Sologny ,SOLOGNY ,71960,71525,26,46.35,4.683333,1.49
+ Solutré-Pouilly ,SOLUTRE POUILLY ,71960,71526,26,46.3,4.716667,1.76
+ Sommant ,SOMMANT ,71540,71527,26,47.05,4.216667,2.35
+ Sornay ,SORNAY ,71500,71528,26,46.633333,5.183333,1.82
+ Suin ,SUIN ,71220,71529,26,46.433333,4.483333,1.03
+ La Tagnière ,LA TAGNIERE ,71190,71531,26,46.783333,4.2,1.44
+ Taizé ,TAIZE ,71250,71532,26,46.516667,4.683333,1.16
+ Tancon ,TANCON ,71740,71533,26,46.2,4.266667,2.31
+ Le Tartre ,LE TARTRE ,71330,71534,26,46.75,5.366667,2.42
+ Tavernay ,TAVERNAY ,71400,71535,26,47.016667,4.233333,2.17
+ Terrans ,TERRANS ,71270,71536,26,46.883333,5.216667,1.93
+ Thil-sur-Arroux ,THIL SUR ARROUX ,71190,71537,26,46.8,4.1,1.77
+ Thurey ,THUREY ,71440,71538,26,46.75,5.116667,1.6
+ Tintry ,TINTRY ,71490,71539,26,46.933333,4.5,1.71
+ Torcy ,TORCY ,71210,71540,26,46.766667,4.45,1.13
+ Torpes ,TORPES ,71270,71541,26,46.833333,5.333333,2.31
+ Toulon-sur-Arroux ,TOULON SUR ARROUX ,71320,71542,26,46.683333,4.133333,1.66
+ Tournus ,TOURNUS ,71700,71543,26,46.566667,4.9,1.01
+ Toutenant ,TOUTENANT ,71350,71544,26,46.866667,5.116667,1.7
+ Tramayes ,TRAMAYES ,71520,71545,26,46.3,4.6,1.76
+ Trambly ,TRAMBLY ,71520,71546,26,46.316667,4.533333,1.67
+ Trivy ,TRIVY ,71520,71547,26,46.383333,4.5,1.3
+ Tronchy ,TRONCHY ,71440,71548,26,46.716667,5.066667,1.43
+ La Truchère ,LA TRUCHERE ,71290,71549,26,46.516667,4.95,1.41
+ Uchizy ,UCHIZY ,71700,71550,26,46.5,4.883333,0.9
+ Uchon ,UCHON ,71190,71551,26,46.816667,4.25,1.27
+ Uxeau ,UXEAU ,71130,71552,26,46.666667,4.016667,2.05
+ Varenne-l'Arconce ,VARENNE L ARCONCE ,71110,71554,26,46.333333,4.15,1.61
+ Varennes-le-Grand ,VARENNES LE GRAND ,71240,71555,26,46.716667,4.883333,1.49
+ Varennes-lès-Mâcon ,VARENNES LES MACON ,71000,71556,26,46.266667,4.8,1.94
+ Varennes-Saint-Sauveur ,VARENNES SAINT SAUVEUR ,71480,71558,26,46.483333,5.25,2.04
+ Varennes-sous-Dun ,VARENNES SOUS DUN ,71800,71559,26,46.283333,4.333333,1.85
+ Vauban ,VAUBAN ,71800,71561,26,46.266667,4.216667,2.12
+ Vaudebarrier ,VAUDEBARRIER ,71120,71562,26,46.416667,4.316667,1.12
+ Vaux-en-Pré ,VAUX EN PRE ,71460,71563,26,46.633333,4.6,0.6
+ Vendenesse-lès-Charolles ,VENDENESSE LES CHAROLLES ,71120,71564,26,46.45,4.333333,1
+ Vendenesse-sur-Arroux ,VENDENESSE SUR ARROUX ,71130,71565,26,46.633333,4.066667,1.88
+ Verdun-sur-le-Doubs ,VERDUN SUR LE DOUBS,71350,71566,26,46.9,5.016667,1.53
+ Vergisson ,VERGISSON ,71960,71567,26,46.3,4.716667,1.76
+ Vérissey ,VERISSEY ,71440,71568,26,46.7,5.116667,1.6
+ Verjux ,VERJUX ,71590,71570,26,46.883333,4.966667,1.44
+ Vérosvres ,VEROSVRES ,71220,71571,26,46.4,4.433333,1.25
+ Vers ,VERS ,71240,71572,26,46.583333,4.85,0.94
+ Versaugues ,VERSAUGUES ,71110,71573,26,46.35,4.066667,1.88
+ Verzé ,VERZE ,71960,71574,26,46.366667,4.733333,1.4
+ Vigny-lès-Paray ,VIGNY LES PARAY ,71160,71575,26,46.5,4.083333,1.83
+ Le Villars ,LE VILLARS ,71700,71576,26,46.533333,4.933333,1.5
+ Villegaudin ,VILLEGAUDIN ,71620,71577,26,46.8,5.1,1.54
+ La Villeneuve ,LA VILLENEUVE ,71270,71578,26,46.95,5.166667,1.81
+ Villeneuve-en-Montagne ,VILLENEUVE EN MONTAGNE ,71390,71579,26,46.766667,4.616667,1.45
+ Vindecy ,VINDECY ,71110,71581,26,46.35,4.016667,2.05
+ La Vineuse ,LA VINEUSE ,71250,71582,26,46.466667,4.6,0.85
+ Vinzelles ,VINZELLES ,71680,71583,26,46.266667,4.766667,1.94
+ Viré ,VIRE ,71260,71584,26,46.45,4.833333,0.94
+ Viry ,VIRY ,71120,71586,26,46.283333,4.333333,2.48
+ Vitry-lès-Cluny ,VITRY LES CLUNY ,71250,71587,26,46.483333,4.583333,0.76
+ Vitry-en-Charollais ,VITRY EN CHAROLLAIS ,71600,71588,26,46.45479,4.05953,-1
+ Vitry-sur-Loire ,VITRY SUR LOIRE ,71140,71589,26,46.683333,3.7084,-1
+ Volesvres ,VOLESVRES ,71600,71590,26,46.466667,4.15,1.61
+ Fleurville ,FLEURVILLE ,71260,71591,26,46.45,4.883333,1.22
+ Aigné ,AIGNE ,72650,72001,52,48.066667,0.116667,0.9
+ Allonnes ,ALLONNES ,72700,72003,52,47.966667,0.15,0.76
+ Ancinnes ,ANCINNES ,72610,72005,52,48.366667,0.183333,1.83
+ Arçonnay ,ARCONNAY ,72610,72006,52,48.4,0.083333,2.01
+ Ardenay-sur-Mérize ,ARDENAY SUR MERIZE ,72370,72007,52,48,0.416667,1.65
+ Arnage ,ARNAGE ,72230,72008,52,47.933333,0.183333,0.64
+ Arthezé ,ARTHEZE ,72270,72009,52,47.783333,-0.116667,1.51
+ Asnières-sur-Vègre ,ASNIERES SUR VEGRE ,72430,72010,52,47.883333,-0.233333,2.01
+ Assé-le-Boisne ,ASSE LE BOISNE ,72130,72011,52,48.333333, ,1.64
+ Assé-le-Riboul ,ASSE LE RIBOUL ,72170,72012,52,48.2,0.083333,0.9
+ Aubigné-Racan ,AUBIGNE RACAN ,72800,72013,52,47.683333,0.266667,1.99
+ Les Aulneaux ,LES AULNEAUX ,72670,72015,52,48.433333,0.333333,2.2
+ Auvers-le-Hamon ,AUVERS LE HAMON ,72300,72016,52,47.9,-0.35,2.52
+ Auvers-sous-Montfaucon ,AUVERS SOUS MONTFAUCON ,72540,72017,52,48.016667,-0.066667,1.29
+ Avessé ,AVESSE ,72350,72019,52,47.95,-0.25,2.09
+ Avezé ,AVEZE ,72400,72020,52,48.233333,0.683333,1.96
+ Avoise ,AVOISE ,72430,72021,52,47.866667,-0.2,1.87
+ Le Bailleul ,LE BAILLEUL ,72200,72022,52,47.766667,-0.158333,-1
+ Ballon ,BALLON ,72290,72023,52,48.166667,0.233333,0.71
+ La Bazoge ,LA BAZOGE ,72650,72024,52,48.1,0.15,1.59
+ Bazouges-sur-le-Loir ,BAZOUGES SUR LE LOIR,72200,72025,52,47.683333,-0.166667,1.99
+ Beaufay ,BEAUFAY ,72110,72026,52,48.15,0.366667,1.15
+ Beaumont-sur-Dême ,BEAUMONT SUR DEME ,72340,72027,52,47.7,0.566667,1.89
+ Beaumont-Pied-de-Boeuf ,BEAUMONT PIED DE BOEUF,72500,72028,52,47.766667,0.4,1.52
+ Beaumont-sur-Sarthe ,BEAUMONT SUR SARTHE ,72170,72029,52,48.216667,0.133333,0.99
+ Beillé ,BEILLE ,72160,72031,52,48.083333,0.516667,1.24
+ Berfay ,BERFAY ,72320,72032,52,48,0.766667,2.32
+ Bernay ,BERNAY ,72240,72033,52,48.066667,-0.066667,1.37
+ Bérus ,BERUS ,72610,72034,52,48.383333,0.05,1.92
+ Bessé-sur-Braye ,BESSE SUR BRAYE ,72310,72035,52,47.833333,0.75,2.25
+ Béthon ,BETHON ,72610,72036,52,48.366667,0.083333,1.83
+ Blèves ,BLEVES ,72670,72037,52,48.45,0.35,2.29
+ Boëssé-le-Sec ,BOESSE LE SEC ,72400,72038,52,48.133333,0.566667,1.45
+ Bonnétable ,BONNETABLE ,72110,72039,52,48.183333,0.433333,0.88
+ La Bosse ,LA BOSSE ,72400,72040,52,48.166667,0.533333,1.49
+ Bouër ,BOUER ,72390,72041,52,48.083333,0.633333,1.74
+ Bouloire ,BOULOIRE ,72440,72042,52,47.966667,0.55,1.38
+ Bourg-le-Roi ,BOURG LE ROI ,72610,72043,52,48.333333,0.133333,1.64
+ Bousse ,BOUSSE ,72270,72044,52,47.766667,-0.05,1.52
+ Brains-sur-Gée ,BRAINS SUR GEE ,72550,72045,52,48.016667,-0.033333,1.81
+ Le Breil-sur-Mérize ,LE BREIL SUR MERIZE,72370,72046,52,48.016667,0.483333,1.09
+ Brette-les-Pins ,BRETTE LES PINS ,72250,72047,52,47.916667,0.333333,1.3
+ La Bruère-sur-Loir ,LA BRUERE SUR LOIR,72500,72049,52,47.65,0.35,2.17
+ Brûlon ,BRULON ,72350,72050,52,47.966667,-0.233333,2.01
+ Cérans-Foulletourte ,CERANS FOULLETOURTE ,72330,72051,52,47.833333,0.066667,1.15
+ Chahaignes ,CHAHAIGNES ,72340,72052,52,47.733333,0.516667,1.71
+ Challes ,CHALLES ,72250,72053,52,47.933333,0.416667,1.44
+ Champagné ,CHAMPAGNE ,72470,72054,52,48.033333,0.333333,1.08
+ Champfleur ,CHAMPFLEUR ,72610,72056,52,48.383333,0.133333,1.92
+ Changé ,CHANGE ,72560,72058,52,47.983333,0.283333,0.31
+ Chantenay-Villedieu ,CHANTENAY VILLEDIEU ,72430,72059,52,47.916667,-0.166667,1.73
+ La Chapelle-aux-Choux ,LA CHAPELLE AUX CHOUX,72800,72060,52,47.633333,0.233333,2.26
+ La Chapelle-d'Aligné ,LA CHAPELLE D ALIGNE,72300,72061,52,47.733333,-0.233333,2.01
+ La Chapelle-du-Bois ,LA CHAPELLE DU BOIS,72400,72062,52,48.216667,0.6,1.6
+ La Chapelle-Huon ,LA CHAPELLE HUON ,72310,72064,52,47.85,0.75,2.25
+ La Chapelle-Saint-Aubin ,LA CHAPELLE SAINT AUBIN,72650,72065,52,48.05,0.166667,1.18
+ La Chapelle-Saint-Fray ,LA CHAPELLE SAINT FRAY,72240,72066,52,48.116667,0.083333,1.73
+ La Chapelle-Saint-Rémy ,LA CHAPELLE SAINT REMY,72160,72067,52,48.1,0.45,1.91
+ La Chartre-sur-le-Loir ,LA CHARTRE SUR LE,72340,72068,52,47.733333,0.583333,1.71
+ Chassé ,CHASSE ,72670,72069,52,48.45,0.2,2.29
+ Chassillé ,CHASSILLE ,72540,72070,52,48.016667,-0.116667,1.51
+ Château-du-Loir ,CHATEAU DU LOIR ,72500,72071,52,47.7,0.416667,1.89
+ Chaufour-Notre-Dame ,CHAUFOUR NOTRE DAME ,72550,72073,52,48.033333,0.066667,1.01
+ Chemiré-en-Charnie ,CHEMIRE EN CHARNIE ,72540,72074,52,48.05,-0.2,1.9
+ Chemiré-le-Gaudin ,CHEMIRE LE GAUDIN ,72210,72075,52,47.933333,-0.016667,1.08
+ Chenay ,CHENAY ,72610,72076,52,48.45,0.166667,2.29
+ Chenu ,CHENU ,72500,72077,52,47.616667,0.35,2.36
+ Chérancé ,CHERANCE ,72170,72078,52,48.283333,0.183333,1.57
+ Chérisay ,CHERISAY ,72610,72079,52,48.35,0.1,1.73
+ Cherreau ,CHERREAU ,72400,72081,52,48.2,0.683333,1.96
+ Le Chevain ,LE CHEVAIN ,72610,72082,52,48.433333,0.133333,2.2
+ Chevillé ,CHEVILLE ,72350,72083,52,47.95,-0.216667,1.94
+ Clermont-Créans ,CLERMONT CREANS ,72200,72084,52,47.716667,-0.016667,1.8
+ Cogners ,COGNERS ,72310,72085,52,47.866667,0.666667,1.89
+ Commerveil ,COMMERVEIL ,72600,72086,52,48.316667,0.35,1.55
+ Conflans-sur-Anille ,CONFLANS SUR ANILLE ,72120,72087,52,47.95,0.75,2.25
+ Congé-sur-Orne ,CONGE SUR ORNE ,72290,72088,52,48.2,0.25,1
+ Conlie ,CONLIE ,72240,72089,52,48.116667,-0.016667,1.08
+ Connerré ,CONNERRE ,72160,72090,52,48.05,0.5,1.16
+ Contilly ,CONTILLY ,72600,72091,52,48.4,0.366667,2.01
+ Cormes ,CORMES ,72400,72093,52,48.166667,0.716667,2.1
+ Coudrecieux ,COUDRECIEUX ,72440,72094,52,47.983333,0.633333,1.74
+ Coulaines ,COULAINES ,72190,72095,52,48.016667,0.2,0.96
+ Coulans-sur-Gée ,COULANS SUR GEE ,72550,72096,52,48.016667,0.016667,0.93
+ Coulombiers ,COULOMBIERS ,72130,72097,52,48.3,0.133333,1.85
+ Coulongé ,COULONGE ,72800,72098,52,47.7,0.2,1.89
+ Courceboeufs ,COURCEBOEUFS ,72290,72099,52,48.133333,0.283333,1.75
+ Courcelles-la-Forêt ,COURCELLES LA FORET ,72270,72100,52,47.783333,-0.016667,1.43
+ Courcemont ,COURCEMONT ,72110,72101,52,48.166667,0.366667,1.04
+ Courcival ,COURCIVAL ,72110,72102,52,48.233333,0.4,1.08
+ Courdemanche ,COURDEMANCHE ,72150,72103,52,47.816667,0.566667,1.45
+ Courgains ,COURGAINS ,72260,72104,52,48.283333,0.283333,1.36
+ Courgenard ,COURGENARD ,72320,72105,52,48.15,0.733333,2.18
+ Courtillers ,COURTILLERS ,72300,72106,52,47.8,-0.3,2.3
+ Crannes-en-Champagne ,CRANNES EN CHAMPAGNE ,72540,72107,52,47.983333,-0.05,1.44
+ Cré ,CRE ,72200,72108,52,47.683333,-0.15,1.99
+ Crissé ,CRISSE ,72140,72109,52,48.166667,-0.066667,1.29
+ Crosmières ,CROSMIERES ,72200,72110,52,47.75,-0.15,1.65
+ Cures ,CURES ,72240,72111,52,48.1, ,1
+ Dangeul ,DANGEUL ,72260,72112,52,48.25,0.25,1.18
+ Degré ,DEGRE ,72550,72113,52,48.05,0.066667,1.11
+ Dehault ,DEHAULT ,72400,72114,52,48.216667,0.566667,1.45
+ Dissay-sous-Courcillon ,DISSAY SOUS COURCILLON ,72500,72115,52,47.666667,0.466667,2.08
+ Dissé-sous-Ballon ,DISSE SOUS BALLON ,72260,72116,52,48.233333,0.3,1.08
+ Dissé-sous-le-Lude ,DISSE SOUS LE LUDE,72800,72117,52,47.616667,0.15,2.36
+ Dollon ,DOLLON ,72390,72118,52,48.033333,0.583333,1.53
+ Domfront-en-Champagne ,DOMFRONT EN CHAMPAGNE ,72240,72119,52,48.1,0.016667,0.93
+ Doucelles ,DOUCELLES ,72170,72120,52,48.25,0.166667,1.18
+ Duneau ,DUNEAU ,72160,72122,52,48.066667,0.516667,1.24
+ Dureil ,DUREIL ,72270,72123,52,47.85,-0.15,1.77
+ Écommoy ,ECOMMOY ,72220,72124,52,47.833333,0.266667,1.15
+ Écorpain ,ECORPAIN ,72120,72125,52,47.933333,0.666667,1.89
+ Épineu-le-Chevreuil ,EPINEU LE CHEVREUIL ,72540,72126,52,48.033333,-0.116667,1.51
+ Étival-lès-Le Mans ,ETIVAL LES LE MANS,72700,72127,52,47.95,0.083333,1.16
+ Évaillé ,EVAILLE ,72120,72128,52,47.9,0.633333,1.74
+ Fatines ,FATINES ,72470,72129,52,48.05,0.35,0.59
+ Fercé-sur-Sarthe ,FERCE SUR SARTHE ,72430,72131,52,47.9,-0.033333,1.15
+ La Ferté-Bernard ,LA FERTE BERNARD ,72400,72132,52,48.183333,0.666667,1.89
+ Fillé ,FILLE ,72210,72133,52,47.9,0.133333,1.85
+ Flée ,FLEE ,72500,72134,52,47.733333,0.45,1.71
+ La Fontaine-Saint-Martin ,LA FONTAINE SAINT MARTIN,72330,72135,52,47.783333,0.05,1.59
+ Fontenay-sur-Vègre ,FONTENAY SUR VEGRE ,72350,72136,52,47.9,-0.216667,1.94
+ La Fresnaye-sur-Chédouet ,LA FRESNAYE SUR CHEDOUET,72670,72137,52,48.45,0.25,2.29
+ Fresnay-sur-Sarthe ,FRESNAY SUR SARTHE ,72130,72138,52,48.283333,0.016667,1.36
+ Fyé ,FYE ,72610,72139,52,48.333333,0.083333,1.64
+ Gesnes-le-Gandelin ,GESNES LE GANDELIN ,72130,72141,52,48.35,0.016667,1.73
+ Grandchamp ,GRANDCHAMP ,72610,72142,52,48.3,0.183333,1.45
+ Le Grand-Lucé ,LE GRAND LUCE ,72150,72143,52,47.866667,0.466667,1.09
+ Gréez-sur-Roc ,GREEZ SUR ROC ,72320,72144,52,48.133333,0.8,2.46
+ Guécélard ,GUECELARD ,72230,72146,52,47.883333,0.133333,1.65
+ La Guierche ,LA GUIERCHE ,72380,72147,52,48.116667,0.2,0.61
+ Jauzé ,JAUZE ,72110,72148,52,48.216667,0.383333,0.99
+ Joué-en-Charnie ,JOUE EN CHARNIE ,72540,72149,52,48.016667,-0.183333,1.8
+ Joué-l'Abbé ,JOUE L ABBE ,72380,72150,52,48.116667,0.216667,0.92
+ Juigné-sur-Sarthe ,JUIGNE SUR SARTHE ,72300,72151,52,47.866667,-0.283333,2.23
+ Juillé ,JUILLE ,72170,72152,52,48.25,0.116667,1.18
+ Jupilles ,JUPILLES ,72500,72153,52,47.783333,0.416667,1.45
+ La Flèche ,LA FLECHE ,72200,72154,52,47.7,-0.083333,1.89
+ Laigné-en-Belin ,LAIGNE EN BELIN ,72220,72155,52,47.883333,0.233333,0.87
+ Lamnay ,LAMNAY ,72320,72156,52,48.116667,0.716667,2.1
+ Lavardin ,LAVARDIN ,72240,72157,52,48.083333,0.066667,1.46
+ Lavaré ,LAVARE ,72390,72158,52,48.05,0.65,1.81
+ Lavenay ,LAVENAY ,72310,72159,52,47.783333,0.7,2.03
+ Lavernat ,LAVERNAT ,72500,72160,52,47.716667,0.333333,1.8
+ Lhomme ,LHOMME ,72340,72161,52,47.75,0.55,1.61
+ Lignières-la-Carelle ,LIGNIERES LA CARELLE ,72610,72162,52,48.433333,0.183333,2.2
+ Ligron ,LIGRON ,72270,72163,52,47.766667,0.016667,1.52
+ Livet-en-Saosnois ,LIVET EN SAOSNOIS ,72610,72164,52,48.366667,0.216667,1.83
+ Lombron ,LOMBRON ,72450,72165,52,48.083333,0.433333,0.88
+ Longnes ,LONGNES ,72540,72166,52,48.016667,-0.083333,1.36
+ Louailles ,LOUAILLES ,72300,72167,52,47.8,-0.25,2.09
+ Loué ,LOUE ,72540,72168,52,48,-0.15,1.65
+ Louplande ,LOUPLANDE ,72210,72169,52,47.95,-0.05,1.27
+ Louvigny ,LOUVIGNY ,72600,72170,52,48.333333,0.2,2.24
+ Louzes ,LOUZES ,72670,72171,52,48.433333,0.3,2.2
+ Le Luart ,LE LUART ,72390,72172,52,48.066667,0.583333,1.53
+ Luceau ,LUCEAU ,72500,72173,52,47.716667,0.4,1.8
+ Lucé-sous-Ballon ,LUCE SOUS BALLON ,72290,72174,52,48.2,0.216667,1.07
+ Luché-Pringé ,LUCHE PRINGE ,72800,72175,52,47.7,0.083333,1.89
+ Le Lude ,LE LUDE ,72800,72176,52,47.65,0.15,2.17
+ Maigné ,MAIGNE ,72210,72177,52,47.95,-0.05,1.27
+ Maisoncelles ,MAISONCELLES ,72440,72178,52,47.933333,0.566667,1.45
+ Malicorne-sur-Sarthe ,MALICORNE SUR SARTHE ,72270,72179,52,47.816667,-0.083333,1.36
+ Mamers ,MAMERS ,72600,72180,52,48.35,0.383333,1.73
+ Le Mans ,LE MANS ,72100,72181,52,48,0.2,0.22
+ Mansigné ,MANSIGNE ,72510,72182,52,47.75,0.133333,1.61
+ Marçon ,MARCON ,72340,72183,52,47.716667,0.516667,1.8
+ Mareil-en-Champagne ,MAREIL EN CHAMPAGNE ,72540,72184,52,47.983333,-0.166667,1.73
+ Mareil-sur-Loir ,MAREIL SUR LOIR ,72200,72185,52,47.716667,0.016667,1.8
+ Maresché ,MARESCHE ,72170,72186,52,48.2,0.166667,0.99
+ Marigné-Laillé ,MARIGNE LAILLE ,72220,72187,52,47.816667,0.333333,1.6
+ Marolles-les-Braults ,MAROLLES LES BRAULTS ,72260,72189,52,48.25,0.316667,1.18
+ Marolles-lès-Saint-Calais ,MAROLLES LES SAINT CALAIS,72120,72190,52,47.916667,0.783333,2.39
+ Mayet ,MAYET ,72360,72191,52,47.766667,0.283333,1.52
+ Les Mées ,LES MEES ,72260,72192,52,48.316667,0.233333,1.55
+ Melleray ,MELLERAY ,72320,72193,52,48.1,0.8,2.46
+ Meurcé ,MEURCE ,72170,72194,52,48.233333,0.2,1.48
+ Mézeray ,MEZERAY ,72270,72195,52,47.833333,-0.016667,1.15
+ Mézières-sous-Lavardin ,MEZIERES SOUS LAVARDIN ,72240,72197,52,48.15,0.033333,1.16
+ La Milesse ,LA MILESSE ,72650,72198,52,48.066667,0.133333,0.42
+ Moitron-sur-Sarthe ,MOITRON SUR SARTHE ,72170,72199,52,48.233333,0.033333,1.34
+ Moncé-en-Belin ,MONCE EN BELIN ,72230,72200,52,47.9,0.2,0.78
+ Moncé-en-Saosnois ,MONCE EN SAOSNOIS ,72260,72201,52,48.283333,0.383333,1.46
+ Monhoudou ,MONHOUDOU ,72260,72202,52,48.283333,0.333333,1.36
+ Montabon ,MONTABON ,72500,72203,52,47.683333,0.383333,1.99
+ Montaillé ,MONTAILLE ,72120,72204,52,47.933333,0.7,2.03
+ Montbizot ,MONTBIZOT ,72380,72205,52,48.15,0.2,0.87
+ Montigny ,MONTIGNY ,72670,72207,52,48.45,0.183333,2.29
+ Montmirail ,MONTMIRAIL ,72320,72208,52,48.1,0.8,2.46
+ Montreuil-le-Chétif ,MONTREUIL LE CHETIF ,72130,72209,52,48.25,-0.033333,1.56
+ Montreuil-le-Henri ,MONTREUIL LE HENRI ,72150,72210,52,47.866667,0.566667,1.45
+ Mont-Saint-Jean ,MONT SAINT JEAN ,72140,72211,52,48.25,-0.1,1.44
+ Moulins-le-Carbonnel ,MOULINS LE CARBONNEL ,72130,72212,52,48.366667,-0.016667,1.83
+ Mulsanne ,MULSANNE ,72230,72213,52,47.9,0.25,0.94
+ Nauvay ,NAUVAY ,72260,72214,52,48.25,0.4,1.73
+ Neufchâtel-en-Saosnois ,NEUFCHATEL EN SAOSNOIS ,72600,72215,52,48.366667,0.25,1.83
+ Neuvillalais ,NEUVILLALAIS ,72240,72216,52,48.15, ,1
+ Neuville-sur-Sarthe ,NEUVILLE SUR SARTHE ,72190,72217,52,48.066667,0.2,1.16
+ Neuvillette-en-Charnie ,NEUVILLETTE EN CHARNIE ,72140,72218,52,48.1,-0.216667,1.94
+ Neuvy-en-Champagne ,NEUVY EN CHAMPAGNE ,72240,72219,52,48.083333,-0.033333,1.15
+ Nogent-le-Bernard ,NOGENT LE BERNARD ,72110,72220,52,48.233333,0.483333,1.28
+ Nogent-sur-Loir ,NOGENT SUR LOIR ,72500,72221,52,47.666667,0.4,2.08
+ Nouans ,NOUANS ,72260,72222,52,48.233333,0.216667,1.4
+ Noyen-sur-Sarthe ,NOYEN SUR SARTHE ,72430,72223,52,47.866667,-0.1,1.44
+ Nuillé-le-Jalais ,NUILLE LE JALAIS ,72370,72224,52,48.016667,0.483333,1.09
+ Oisseau-le-Petit ,OISSEAU LE PETIT ,72610,72225,52,48.35,0.083333,1.73
+ Oizé ,OIZE ,72330,72226,52,47.816667,0.1,1.24
+ Panon ,PANON ,72600,72227,52,48.333333,0.3,1.64
+ Parcé-sur-Sarthe ,PARCE SUR SARTHE ,72300,72228,52,47.85,-0.2,1.87
+ Parennes ,PARENNES ,72140,72229,52,48.116667,-0.183333,1.8
+ Parigné-le-Pôlin ,PARIGNE LE POLIN ,72330,72230,52,47.85,0.116667,1.06
+ Parigné-l'Évêque ,PARIGNE L EVEQUE ,72250,72231,52,47.933333,0.366667,0.59
+ Notre-Dame-du-Pé ,NOTRE DAME DU PE,72300,72232,52,47.733333,-0.316667,2.38
+ Peray ,PERAY ,72260,72233,52,48.25,0.366667,1.19
+ Pézé-le-Robert ,PEZE LE ROBERT ,72140,72234,52,48.2,-0.066667,1.29
+ Piacé ,PIACE ,72170,72235,52,48.25,0.116667,1.18
+ Pincé ,PINCE ,72300,72236,52,47.8,-0.366667,2.59
+ Pirmil ,PIRMIL ,72430,72237,52,47.916667,-0.1,1.44
+ Pizieux ,PIZIEUX ,72600,72238,52,48.316667,0.333333,1.55
+ Poillé-sur-Vègre ,POILLE SUR VEGRE ,72350,72239,52,47.916667,-0.266667,2.16
+ Pontvallain ,PONTVALLAIN ,72510,72243,52,47.75,0.2,1.61
+ Précigné ,PRECIGNE ,72300,72244,52,47.766667,-0.316667,2.38
+ Préval ,PREVAL ,72400,72245,52,48.233333,0.616667,1.67
+ Prévelles ,PREVELLES ,72110,72246,52,48.15,0.483333,1.12
+ Pruillé-le-Chétif ,PRUILLE LE CHETIF ,72700,72247,52,48,0.116667,0.93
+ Pruillé-l'Éguillé ,PRUILLE L EGUILLE ,72150,72248,52,47.833333,0.433333,1.53
+ La Quinte ,LA QUINTE ,72550,72249,52,48.05,0.033333,0.86
+ Rahay ,RAHAY ,72120,72250,52,47.966667,0.833333,2.61
+ René ,RENE ,72260,72251,52,48.283333,0.216667,1.36
+ Requeil ,REQUEIL ,72510,72252,52,47.783333,0.166667,1.43
+ Roézé-sur-Sarthe ,ROEZE SUR SARTHE ,72210,72253,52,47.9,0.066667,0.85
+ Rouessé-Fontaine ,ROUESSE FONTAINE ,72610,72254,52,48.316667,0.15,1.55
+ Rouëssé-Vassé ,ROUESSE VASSE ,72140,72255,52,48.166667,-0.2,1.87
+ Rouez ,ROUEZ ,72140,72256,52,48.15,-0.116667,1.51
+ Rouillon ,ROUILLON ,72700,72257,52,48,0.133333,0.97
+ Roullée ,ROULLEE ,72670,72258,52,48.466667,0.3,2.38
+ Rouperroux-le-Coquet ,ROUPERROUX LE COQUET ,72110,72259,52,48.216667,0.433333,0.99
+ Ruaudin ,RUAUDIN ,72230,72260,52,47.95,0.266667,1.46
+ Ruillé-en-Champagne ,RUILLE EN CHAMPAGNE ,72240,72261,52,48.066667,-0.083333,1.65
+ Ruillé-sur-Loir ,RUILLE SUR LOIR ,72340,72262,52,47.75,0.616667,1.67
+ Sablé-sur-Sarthe ,SABLE SUR SARTHE ,72300,72264,52,47.833333,-0.333333,2.45
+ Saint-Aignan ,SAINT AIGNAN ,72110,72265,52,48.216667,0.35,1.41
+ Saint-Aubin-de-Locquenay ,SAINT AUBIN DE LOCQUENAY,72130,72266,52,48.266667,0.016667,1.27
+ Saint-Aubin-des-Coudrais ,SAINT AUBIN DES COUDRAIS,72400,72267,52,48.166667,0.583333,1.53
+ Saint-Biez-en-Belin ,SAINT BIEZ EN BELIN,72220,72268,52,47.816667,0.233333,1.24
+ Saint-Calais ,SAINT CALAIS ,72120,72269,52,47.916667,0.75,2.25
+ Saint-Calez-en-Saosnois ,SAINT CALEZ EN SAOSNOIS,72600,72270,52,48.316667,0.3,1.55
+ Saint-Célerin ,SAINT CELERIN ,72110,72271,52,48.116667,0.433333,1.13
+ Sainte-Cérotte ,SAINTE CEROTTE ,72120,72272,52,47.9,0.683333,1.96
+ Saint-Christophe-du-Jambet ,SAINT CHRISTOPHE DU JAMBET,72170,72273,52,48.233333,0.033333,1.34
+ Saint-Corneille ,SAINT CORNEILLE ,72460,72275,52,48.066667,0.35,0.89
+ Saint-Denis-des-Coudrais ,SAINT DENIS DES COUDRAIS,72110,72277,52,48.15,0.516667,1.63
+ Saint-Denis-d'Orques ,SAINT DENIS D ORQUES,72350,72278,52,48.033333,-0.266667,2.16
+ Saint-Georges-de-la-Couée ,SAINT GEORGES DE LA,72150,72279,52,47.833333,0.583333,1.53
+ Saint-Georges-du-Bois ,SAINT GEORGES DU BOIS,72700,72280,52,47.966667,0.1,0.61
+ Saint-Georges-du-Rosay ,SAINT GEORGES DU ROSAY,72110,72281,52,48.2,0.5,1.28
+ Saint-Georges-le-Gaultier ,SAINT GEORGES LE GAULTIER,72590,72282,52,48.3,-0.1,1.45
+ Saint-Germain-d'Arcé ,SAINT GERMAIN D ARCE,72500,72283,52,47.616667,0.3,2.36
+ Saint-Germain-sur-Sarthe ,SAINT GERMAIN SUR SARTHE,72130,72284,52,48.283333,0.1,1.36
+ Saint-Gervais-de-Vic ,SAINT GERVAIS DE VIC,72120,72286,52,47.883333,0.733333,2.18
+ Saint-Gervais-en-Belin ,SAINT GERVAIS EN BELIN,72220,72287,52,47.883333,0.216667,1.12
+ Saint-Hilaire-le-Lierru ,SAINT HILAIRE LE LIERRU,72160,72288,52,48.116667,0.533333,1.31
+ Sainte-Jamme-sur-Sarthe ,SAINTE JAMME SUR SARTHE,72380,72289,52,48.15,0.183333,0.69
+ Saint-Jean-d'Assé ,SAINT JEAN D ASSE,72380,72290,52,48.15,0.116667,1.11
+ Saint-Jean-de-la-Motte ,SAINT JEAN DE LA,72510,72291,52,47.75,0.066667,1.66
+ Saint-Jean-des-Échelles ,SAINT JEAN DES ECHELLES,72320,72292,52,48.133333,0.716667,2.1
+ Saint-Jean-du-Bois ,SAINT JEAN DU BOIS,72430,72293,52,47.866667,-0.033333,1.15
+ Saint-Léonard-des-Bois ,SAINT LEONARD DES BOIS,72590,72294,52,48.366667,-0.083333,1.83
+ Saint-Longis ,SAINT LONGIS ,72600,72295,52,48.35,0.35,1.73
+ Saint-Maixent ,SAINT MAIXENT ,72320,72296,52,48.083333,0.666667,1.89
+ Saint-Marceau ,SAINT MARCEAU ,72170,72297,52,48.183333,0.133333,0.8
+ Saint-Mars-de-Locquenay ,SAINT MARS DE LOCQUENAY,72440,72298,52,47.933333,0.483333,1.16
+ Saint-Mars-d'Outillé ,SAINT MARS D OUTILLE,72220,72299,52,47.866667,0.333333,1.46
+ Saint-Mars-la-Brière ,SAINT MARS LA BRIERE,72470,72300,52,48.033333,0.383333,1.34
+ Saint-Mars-sous-Ballon ,SAINT MARS SOUS BALLON,72290,72301,52,48.166667,0.25,0.71
+ Saint-Martin-des-Monts ,SAINT MARTIN DES MONTS,72400,72302,52,48.15,0.6,1.6
+ Saint-Michel-de-Chavaignes ,SAINT MICHEL DE CHAVAIGNES,72440,72303,52,48.016667,0.566667,1.45
+ Sainte-Osmane ,SAINTE OSMANE ,72120,72304,52,47.883333,0.616667,1.7
+ Saint-Ouen-de-Mimbré ,SAINT OUEN DE MIMBRE,72130,72305,52,48.3,0.05,1.45
+ Saint-Ouen-en-Belin ,SAINT OUEN EN BELIN,72220,72306,52,47.833333,0.216667,1.15
+ Saint-Ouen-en-Champagne ,SAINT OUEN EN CHAMPAGNE,72350,72307,52,47.95,-0.183333,1.8
+ Saint-Paterne ,SAINT PATERNE ,72610,72308,52,48.4,0.116667,2.01
+ Saint-Paul-le-Gaultier ,SAINT PAUL LE GAULTIER,72590,72309,52,48.316667,-0.1,1.55
+ Saint-Pierre-de-Chevillé ,SAINT PIERRE DE CHEVILLE,72500,72311,52,47.65,0.433333,2.17
+ Saint-Pierre-des-Bois ,SAINT PIERRE DES BOIS,72430,72312,52,47.95,-0.133333,1.58
+ Saint-Pierre-des-Ormes ,SAINT PIERRE DES ORMES,72600,72313,52,48.3,0.416667,1.69
+ Saint-Pierre-du-Lorouër ,SAINT PIERRE DU LOROUER,72150,72314,52,47.8,0.516667,1.33
+ Saint-Rémy-de-Sillé ,SAINT REMY DE SILLE,72140,72315,52,48.183333,-0.083333,1.36
+ Saint-Rémy-des-Monts ,SAINT REMY DES MONTS,72600,72316,52,48.3,0.4,1.45
+ Saint-Rigomer-des-Bois ,SAINT RIGOMER DES BOIS,72610,72318,52,48.383333,0.166667,1.92
+ Sainte-Sabine-sur-Longève ,SAINTE SABINE SUR LONGEVE,72380,72319,52,48.133333,0.1,1.27
+ Saint-Saturnin ,SAINT SATURNIN ,72650,72320,52,48.05,0.15,0.62
+ Saint-Ulphace ,SAINT ULPHACE ,72320,72322,52,48.166667,0.816667,2.54
+ Saint-Victeur ,SAINT VICTEUR ,72130,72323,52,48.316667,0.033333,1.55
+ Saint-Vincent-des-Prés ,SAINT VINCENT DES PRES,72600,72324,52,48.3,0.383333,1.45
+ Saint-Vincent-du-Lorouër ,SAINT VINCENT DU LOROUER,72150,72325,52,47.833333,0.483333,1.15
+ Saosnes ,SAOSNES ,72600,72326,52,48.333333,0.283333,1.64
+ Sarcé ,SARCE ,72360,72327,52,47.716667,0.216667,1.8
+ Sargé-lès-Le Mans ,SARGE LES LE MANS,72190,72328,52,48.033333,0.233333,0.88
+ Savigné-l'Évêque ,SAVIGNE L EVEQUE ,72460,72329,52,48.083333,0.3,1.08
+ Savigné-sous-le-Lude ,SAVIGNE SOUS LE LUDE,72800,72330,52,47.616667,0.066667,2.36
+ Sceaux-sur-Huisne ,SCEAUX SUR HUISNE ,72160,72331,52,48.1,0.583333,1.64
+ Ségrie ,SEGRIE ,72170,72332,52,48.2,0.033333,1.37
+ Semur-en-Vallon ,SEMUR EN VALLON ,72390,72333,52,48.016667,0.65,1.81
+ Sillé-le-Guillaume ,SILLE LE GUILLAUME ,72140,72334,52,48.2,-0.133333,1.58
+ Sillé-le-Philippe ,SILLE LE PHILIPPE ,72460,72335,52,48.116667,0.35,1.03
+ Solesmes ,SOLESMES ,72300,72336,52,47.85,-0.3,2.3
+ Sougé-le-Ganelon ,SOUGE LE GANELON ,72130,72337,52,48.316667,-0.033333,1.55
+ Souillé ,SOUILLE ,72380,72338,52,48.116667,0.183333,0.43
+ Souligné-Flacé ,SOULIGNE FLACE ,72210,72339,52,47.983333,0.016667,0.93
+ Souligné-sous-Ballon ,SOULIGNE SOUS BALLON ,72290,72340,52,48.133333,0.233333,1.05
+ Soulitré ,SOULITRE ,72370,72341,52,48.016667,0.45,0.95
+ Souvigné-sur-Même ,SOUVIGNE SUR MEME ,72400,72342,52,48.216667,0.633333,1.74
+ Souvigné-sur-Sarthe ,SOUVIGNE SUR SARTHE ,72300,72343,52,47.833333,-0.383333,2.66
+ Spay ,SPAY ,72700,72344,52,47.916667,0.15,1.57
+ Surfonds ,SURFONDS ,72370,72345,52,47.983333,0.466667,1.02
+ La Suze-sur-Sarthe ,LA SUZE SUR SARTHE,72210,72346,52,47.9,0.033333,0.86
+ Tassé ,TASSE ,72430,72347,52,47.88937,-0.13678,-1
+ Tassillé ,TASSILLE ,72540,72348,52,48,-0.083333,1.36
+ Teillé ,TEILLE ,72290,72349,52,48.183333,0.183333,1.6
+ Teloché ,TELOCHE ,72220,72350,52,47.883333,0.266667,0.87
+ Tennie ,TENNIE ,72240,72351,52,48.116667,-0.066667,1.29
+ Terrehault ,TERREHAULT ,72110,72352,52,48.2,0.4,0.9
+ Théligny ,THELIGNY ,72320,72353,52,48.166667,0.8,2.46
+ Thoigné ,THOIGNE ,72260,72354,52,48.283333,0.25,1.36
+ Thoiré-sous-Contensor ,THOIRE SOUS CONTENSOR ,72610,72355,52,48.316667,0.2,1.55
+ Thoiré-sur-Dinan ,THOIRE SUR DINAN ,72500,72356,52,47.75,0.45,1.61
+ Thorée-les-Pins ,THOREE LES PINS ,72800,72357,52,47.683333,0.05,1.99
+ Thorigné-sur-Dué ,THORIGNE SUR DUE ,72160,72358,52,48.033333,0.533333,1.32
+ Torcé-en-Vallée ,TORCE EN VALLEE ,72110,72359,52,48.133333,0.416667,0.86
+ Trangé ,TRANGE ,72650,72360,52,48.033333,0.116667,1.4
+ Tresson ,TRESSON ,72440,72361,52,47.9,0.566667,1.45
+ Le Tronchet ,LE TRONCHET ,72170,72362,52,48.183333,0.083333,0.81
+ Tuffé ,TUFFE ,72160,72363,52,48.116667,0.516667,1.24
+ Vaas ,VAAS ,72500,72364,52,47.666667,0.316667,2.08
+ Valennes ,VALENNES ,72320,72366,52,48,0.816667,2.54
+ Vallon-sur-Gée ,VALLON SUR GEE ,72540,72367,52,47.966667,-0.066667,1.31
+ Vancé ,VANCE ,72310,72368,52,47.833333,0.65,1.81
+ Verneil-le-Chétif ,VERNEIL LE CHETIF ,72360,72369,52,47.733333,0.3,1.71
+ Vernie ,VERNIE ,72170,72370,52,48.183333,0.033333,1.48
+ Vézot ,VEZOT ,72600,72372,52,48.35,0.3,1.73
+ Vibraye ,VIBRAYE ,72320,72373,52,48.05,0.733333,2.18
+ Villaines-la-Carelle ,VILLAINES LA CARELLE ,72600,72374,52,48.383333,0.3,1.92
+ Villaines-la-Gonais ,VILLAINES LA GONAIS ,72400,72375,52,48.133333,0.6,1.6
+ Villaines-sous-Lucé ,VILLAINES SOUS LUCE ,72150,72376,52,47.866667,0.483333,1.09
+ Villaines-sous-Malicorne ,VILLAINES SOUS MALICORNE ,72270,72377,52,47.766667,-0.1,1.52
+ Vion ,VION ,72300,72378,52,47.816667,-0.233333,2.01
+ Viré-en-Champagne ,VIRE EN CHAMPAGNE ,72350,72379,52,47.983333,-0.3,2.3
+ Vivoin ,VIVOIN ,72170,72380,52,48.233333,0.166667,1.08
+ Voivres-lès-le-Mans ,VOIVRES LES LE MANS,72210,72381,52,47.933333,0.066667,0.71
+ Volnay ,VOLNAY ,72440,72382,52,47.933333,0.466667,1.44
+ Vouvray-sur-Huisne ,VOUVRAY SUR HUISNE ,72160,72383,52,48.083333,0.55,1.38
+ Vouvray-sur-Loir ,VOUVRAY SUR LOIR ,72500,72384,52,47.7,0.466667,1.89
+ Yvré-le-Pôlin ,YVRE LE POLIN ,72330,72385,52,47.816667,0.15,1.43
+ Yvré-l'Évêque ,YVRE L EVEQUE ,72530,72386,52,48.016667,0.266667,0.15
+ Antoigné ,ANTOIGNE ,72380,72900,52,48,0.133333,-1
+ Brives ,BRIVES ,72150,72901,52,47.791667,0.541667,-1
+ Le Buisson ,LE BUISSON ,72610,72902,52,48.408333,0.191667,-1
+ La Hutte ,LA HUTTE ,72130,72905,52,48.3,0.1,1.45
+ Pont-de-Braye ,PONT DE BRAYE ,72310,72906,52,47.766667,0.7,2.03
+ Aiguebelette-le-Lac ,AIGUEBELETTE LE LAC ,73610,73001,11,45.533333,5.816667,1.43
+ Aiguebelle ,AIGUEBELLE ,73220,73002,11,45.533333,6.3,0.61
+ Aigueblanche ,AIGUEBLANCHE ,73260,73003,11,45.5,6.5,1.03
+ Aillon-le-Jeune ,AILLON LE JEUNE ,73340,73004,11,45.616667,6.083333,1.66
+ Aillon-le-Vieux ,AILLON LE VIEUX ,73340,73005,11,45.65,6.1,0.91
+ Aime ,AIME ,73210,73006,11,45.55,6.65,1.57
+ Aiton ,AITON ,73220,73007,11,45.566667,6.25,1.61
+ Aix-les-Bains ,AIX LES BAINS ,73100,73008,11,45.7,5.916667,1.33
+ Albens ,ALBENS ,73410,73010,11,45.783333,5.95,2.02
+ Albertville ,ALBERTVILLE ,73200,73011,11,45.683333,6.383333,1.19
+ Albiez-le-Jeune ,ALBIEZ LE JEUNE ,73300,73012,11,45.216667,6.35,2.68
+ Albiez-Montrond ,ALBIEZ MONTROND ,73300,73013,11,45.216667,6.333333,2.68
+ Allondaz ,ALLONDAZ ,73200,73014,11,45.7,6.366667,1.33
+ Les Allues ,LES ALLUES ,73550,73015,11,45.433333,6.55,1.21
+ Ansigny ,ANSIGNY ,73410,73016,11,45.8,5.933333,2.16
+ Apremont ,APREMONT ,73190,73017,11,45.5,5.95,1.58
+ Arbin ,ARBIN ,73800,73018,11,45.5,6.066667,0.53
+ Argentine ,ARGENTINE ,73220,73019,11,45.5,6.316667,0.6
+ Arith ,ARITH ,73340,73020,11,45.716667,6.083333,1.47
+ Arvillard ,ARVILLARD ,73110,73021,11,45.45,6.116667,0.76
+ Attignat-Oncin ,ATTIGNAT ONCIN ,73610,73022,11,45.5,5.783333,1.55
+ Aussois ,AUSSOIS ,73500,73023,11,45.233333,6.75,2.54
+ Avressieux ,AVRESSIEUX ,73240,73025,11,45.566667,5.7,1.85
+ Avrieux ,AVRIEUX ,73500,73026,11,45.216667,6.716667,2.68
+ Ayn ,AYN ,73470,73027,11,45.566667,5.75,1.67
+ Barberaz ,BARBERAZ ,73000,73029,11,45.55,5.933333,1.01
+ Barby ,BARBY ,73230,73030,11,45.566667,5.983333,0.88
+ Bassens ,BASSENS ,73000,73031,11,45.583333,5.933333,1.01
+ La Bâthie ,LA BATHIE ,73540,73032,11,45.633333,6.45,1
+ La Bauche ,LA BAUCHE ,73360,73033,11,45.483333,5.766667,1.61
+ Beaufort-sur-Doron ,BEAUFORT SUR DORON ,73270,73034,11,45.716667,6.575,-1
+ Beaune ,BEAUNE ,73140,73035,11,45.25,6.466667,2.41
+ Bellentre ,BELLENTRE ,73210,73038,11,45.566667,6.716667,1.81
+ Belmont-Tramonet ,BELMONT TRAMONET ,73330,73039,11,45.55,5.683333,1.91
+ Bessans ,BESSANS ,73480,73040,11,45.316667,6.991667,-1
+ Betton-Bettonet ,BETTON BETTONET ,73390,73041,11,45.533333,6.183333,0.54
+ Billième ,BILLIEME ,73170,73042,11,45.716667,5.816667,1.47
+ La Biolle ,LA BIOLLE ,73410,73043,11,45.75,5.933333,1.74
+ Le Bois ,LE BOIS ,73260,73045,11,45.483333,6.5,1.17
+ Bonneval ,BONNEVAL ,73260,73046,11,45.516667,6.45,0.85
+ Bonneval-sur-Arc ,BONNEVAL SUR ARC ,73480,73047,11,45.366667,7.05,-1
+ Bonvillaret ,BONVILLARET ,73220,73049,11,45.566667,6.3,1.34
+ Bourdeau ,BOURDEAU ,73370,73050,11,45.683333,5.85,1.31
+ Le Bourget-du-Lac ,LE BOURGET DU LAC,73370,73051,11,45.65,5.866667,1.25
+ Bourget-en-Huile ,BOURGET EN HUILE ,73110,73052,11,45.483333,6.2,1.73
+ Bourgneuf ,BOURGNEUF ,73390,73053,11,45.55,6.216667,1
+ Bourg-Saint-Maurice ,BOURG SAINT MAURICE ,73700,73054,11,45.616667,6.766667,1.99
+ Bozel ,BOZEL ,73350,73055,11,45.45,6.65,1.57
+ Bramans ,BRAMANS ,73500,73056,11,45.216667,6.766667,2.68
+ Brides-les-Bains ,BRIDES LES BAINS ,73570,73057,11,45.45,6.566667,1.27
+ La Bridoire ,LA BRIDOIRE ,73520,73058,11,45.516667,5.75,1.67
+ Brison-Saint-Innocent ,BRISON SAINT INNOCENT ,73100,73059,11,45.716667,5.883333,1.8
+ Celliers ,CELLIERS ,73260,73060,11,45.466667,6.416667,2.1
+ Césarches ,CESARCHES ,73200,73061,11,45.7,6.416667,1.33
+ Cessens ,CESSENS ,73410,73062,11,45.8,5.883333,2.16
+ Cevins ,CEVINS ,73730,73063,11,45.583333,6.466667,1.22
+ Challes-les-Eaux ,CHALLES LES EAUX ,73190,73064,11,45.55,5.983333,0.83
+ Chambéry ,CHAMBERY ,73000,73065,11,45.566667,5.933333,1.01
+ La Chambre ,LA CHAMBRE ,73130,73067,11,45.366667,6.3,1.44
+ Chamousset ,CHAMOUSSET ,73390,73068,11,45.55,6.2,0.54
+ Chamoux-sur-Gelon ,CHAMOUX SUR GELON ,73390,73069,11,45.533333,6.216667,0.87
+ Champagneux ,CHAMPAGNEUX ,73240,73070,11,45.616667,5.666667,1.97
+ Chanaz ,CHANAZ ,73310,73073,11,45.8,5.783333,2.16
+ La Chapelle-Blanche ,LA CHAPELLE BLANCHE ,73110,73075,11,45.45,6.066667,1.99
+ Les Chapelles ,LES CHAPELLES ,73700,73077,11,45.583333,6.733333,1.87
+ La Chapelle-Saint-Martin ,LA CHAPELLE SAINT MARTIN,73170,73078,11,45.65,5.75,1.67
+ Châteauneuf ,CHATEAUNEUF ,73390,73079,11,45.55,6.166667,1.3
+ Le Châtel ,LE CHATEL ,73300,73080,11,45.3,6.366667,1.99
+ Le Châtelard ,LE CHATELARD ,73630,73081,11,45.683333,6.15,1.19
+ Chignin ,CHIGNIN ,73800,73084,11,45.516667,6.016667,1.18
+ Chindrieux ,CHINDRIEUX ,73310,73085,11,45.816667,5.85,2.3
+ Cléry ,CLERY ,73460,73086,11,45.633333,6.283333,0.77
+ Cognin ,COGNIN ,73160,73087,11,45.566667,5.9,1.42
+ Cohennoz ,COHENNOZ ,73400,73088,11,45.75,6.483333,1.74
+ Coise-Saint-Jean-Pied-Gauthier ,COISE SAINT JEAN PIED,73800,73089,11,45.533333,6.133333,1.92
+ La Compôte ,LA COMPOTE ,73630,73090,11,45.666667,6.166667,1.05
+ Conjux ,CONJUX ,73310,73091,11,45.783333,5.816667,2.02
+ Corbel ,CORBEL ,73160,73092,11,45.433333,5.816667,1.57
+ La Côte-d'Aime ,LA COTE D AIME,73210,73093,11,45.566667,6.666667,1.63
+ Crest-Voland ,CREST VOLAND ,73590,73094,11,45.8,6.5,2.16
+ La Croix-de la Rochette ,LA CROIX DE LA,73110,73095,11,45.466667,6.116667,0.61
+ Cruet ,CRUET ,73800,73096,11,45.516667,6.083333,0.68
+ Curienne ,CURIENNE ,73190,73097,11,45.566667,6,0.77
+ Les Déserts ,LES DESERTS ,73230,73098,11,45.616667,6.016667,1.09
+ Détrier ,DETRIER ,73110,73099,11,45.433333,6.1,1.4
+ Domessin ,DOMESSIN ,73330,73100,11,45.533333,5.7,1.85
+ Doucy ,DOUCY ,73260,73102,11,45.5,6.466667,0.91
+ Drumettaz-Clarafond ,DRUMETTAZ CLARAFOND ,73420,73103,11,45.666667,5.916667,1.07
+ Dullin ,DULLIN ,73610,73104,11,45.55,5.75,1.67
+ Les Échelles ,LES ECHELLES ,73360,73105,11,45.433333,5.75,1.67
+ École ,ECOLE ,73630,73106,11,45.65,6.166667,0.91
+ Entremont-le-Vieux ,ENTREMONT LE VIEUX ,73670,73107,11,45.433333,5.883333,1.19
+ Épersy ,EPERSY ,73410,73108,11,45.733333,5.95,1.6
+ Épierre ,EPIERRE ,73220,73109,11,45.466667,6.3,0.94
+ Esserts-Blay ,ESSERTS BLAY ,73540,73110,11,45.616667,6.433333,1
+ Étable ,ETABLE ,73110,73111,11,45.466667,6.133333,0.61
+ Feissons-sur-Isère ,FEISSONS SUR ISERE ,73260,73112,11,45.566667,6.466667,1.53
+ Feissons-sur-Salins ,FEISSONS SUR SALINS ,73350,73113,11,45.466667,6.566667,1.27
+ Flumet ,FLUMET ,73590,73114,11,45.816667,6.5,2.3
+ Fontaine-le-Puits ,FONTAINE LE PUITS ,73600,73115,11,45.45,6.5,1.56
+ Fourneaux ,FOURNEAUX ,73500,73117,11,45.191667,6.65,-1
+ Francin ,FRANCIN ,73800,73118,11,45.5,6.033333,0.69
+ Freney ,FRENEY ,73500,73119,11,45.2,6.633333,2.82
+ Fréterive ,FRETERIVE ,73250,73120,11,45.583333,6.2,1.48
+ Gerbaix ,GERBAIX ,73470,73122,11,45.6,5.75,1.67
+ La Giettaz ,LA GIETTAZ ,73590,73123,11,45.866667,6.5,-1
+ Gilly-sur-Isère ,GILLY SUR ISERE ,73200,73124,11,45.666667,6.35,1.05
+ Granier ,GRANIER ,73210,73126,11,45.566667,6.65,1.57
+ Grésy-sur-Aix ,GRESY SUR AIX ,73100,73128,11,45.716667,5.95,1.47
+ Grésy-sur-Isère ,GRESY SUR ISERE ,73460,73129,11,45.6,6.25,2.22
+ Grignon ,GRIGNON ,73200,73130,11,45.65,6.383333,0.91
+ Hautecour ,HAUTECOUR ,73600,73131,11,45.5,6.55,1.21
+ Hauteluce ,HAUTELUCE ,73620,73132,11,45.75,6.583333,1.74
+ Hauteville ,HAUTEVILLE ,73390,73133,11,45.533333,6.166667,1.21
+ Hermillon ,HERMILLON ,73300,73135,11,45.3,6.366667,1.99
+ Jacob-Bellecombette ,JACOB BELLECOMBETTE ,73000,73137,11,45.55,5.916667,1.07
+ Jarrier ,JARRIER ,73300,73138,11,45.283333,6.316667,2.13
+ Jarsy ,JARSY ,73630,73139,11,45.65,6.183333,0.97
+ Jongieux ,JONGIEUX ,73170,73140,11,45.733333,5.8,1.6
+ Laissaud ,LAISSAUD ,73800,73141,11,45.45,6.033333,1.37
+ Landry ,LANDRY ,73210,73142,11,45.566667,6.75,1.93
+ Lanslebourg-Mont-Cenis ,LANSLEBOURG MONT CENIS ,73480,73143,11,45.283333,6.866667,2.35
+ Lanslevillard ,LANSLEVILLARD ,73480,73144,11,45.283333,6.916667,2.53
+ Lepin-le-Lac ,LEPIN LE LAC ,73610,73145,11,45.533333,5.783333,1.55
+ Lescheraines ,LESCHERAINES ,73340,73146,11,45.7,6.1,1.33
+ Loisieux ,LOISIEUX ,73170,73147,11,45.65,5.733333,1.73
+ Lucey ,LUCEY ,73170,73149,11,45.75,5.783333,1.74
+ Les Marches ,LES MARCHES ,73800,73151,11,45.483333,6,1.55
+ Marcieux ,MARCIEUX ,73470,73152,11,45.616667,5.766667,1.61
+ Marthod ,MARTHOD ,73400,73153,11,45.716667,6.4,1.47
+ Méry ,MERY ,73420,73155,11,45.65,5.933333,1.01
+ Meyrieux-Trouet ,MEYRIEUX TROUET ,73170,73156,11,45.65,5.783333,1.55
+ Modane ,MODANE ,73500,73157,11,45.2,6.666667,2.82
+ Mognard ,MOGNARD ,73410,73158,11,45.716667,5.95,1.47
+ Les Mollettes ,LES MOLLETTES ,73800,73159,11,45.466667,6.066667,0.79
+ Montagnole ,MONTAGNOLE ,73000,73160,11,45.533333,5.9,1.51
+ Montagny ,MONTAGNY ,73350,73161,11,45.716667,6.083333,2
+ Montailleur ,MONTAILLEUR ,73460,73162,11,45.616667,6.283333,0.77
+ Montaimont ,MONTAIMONT ,73130,73163,11,45.366667,6.35,1.56
+ Montcel ,MONTCEL ,73100,73164,11,45.716667,5.983333,1.47
+ Montendry ,MONTENDRY ,73390,73166,11,45.533333,6.233333,1.55
+ Montgellafrey ,MONTGELLAFREY ,73130,73167,11,45.383333,6.316667,1.3
+ Montgirod ,MONTGIROD ,73210,73169,11,45.533333,6.583333,1.9
+ Monthion ,MONTHION ,73200,73170,11,45.633333,6.366667,1.35
+ Montmélian ,MONTMELIAN ,73800,73171,11,45.5,6.066667,0.53
+ Montpascal ,MONTPASCAL ,73300,73172,11,45.333333,6.366667,1.71
+ Montrond ,MONTROND ,73530,73174,11,45.2,6.316667,2.82
+ Montsapey ,MONTSAPEY ,73220,73175,11,45.516667,6.333333,0.97
+ Montvalezan ,MONTVALEZAN ,73700,73176,11,45.616667,6.833333,2.23
+ Montvernier ,MONTVERNIER ,73300,73177,11,45.316667,6.35,1.85
+ La Motte-Servolex ,LA MOTTE SERVOLEX ,73290,73179,11,45.6,5.883333,1.19
+ Motz ,MOTZ ,73310,73180,11,45.9207,5.84684,-1
+ Moutiers ,MOUTIERS ,73600,73181,11,45.483333,6.533333,1.15
+ Mouxy ,MOUXY ,73100,73182,11,45.683333,5.933333,1.19
+ Myans ,MYANS ,73800,73183,11,45.516667,5.983333,1.95
+ Nances ,NANCES ,73470,73184,11,45.583333,5.8,1.52
+ Naves ,NAVES ,73260,73185,11,45.55,6.5,1.3
+ Notre-Dame-de-Bellecombe ,NOTRE DAME DE BELLECOMBE,73590,73186,11,45.8,6.516667,2.16
+ La Léchère ,LA LECHERE ,73260,73187,11,45.5,6.466667,-1
+ Notre-Dame-des-Millières ,NOTRE DAME DES MILLIERES,73460,73188,11,45.633333,6.35,1.96
+ Notre-Dame-du-Cruet ,NOTRE DAME DU CRUET,73130,73189,11,45.366667,6.316667,1.44
+ Notre-Dame-du-Pré ,NOTRE DAME DU PRE,73600,73190,11,45.516667,6.6,1.84
+ Novalaise ,NOVALAISE ,73470,73191,11,45.6,5.766667,1.61
+ Le Noyer ,LE NOYER ,73340,73192,11,45.683333,6.066667,1.19
+ Ontex ,ONTEX ,73310,73193,11,45.75,5.816667,1.74
+ Orelle ,ORELLE ,73140,73194,11,45.216667,6.533333,2.68
+ Pallud ,PALLUD ,73200,73196,11,45.683333,6.4,1.19
+ Peisey-Nancroix ,PEISEY NANCROIX ,73210,73197,11,45.55,6.75,1.93
+ La Perrière ,LA PERRIERE ,73600,73198,11,45.45,6.591667,-1
+ Petit-Coeur ,PETIT COEUR ,73260,73199,11,45.516667,6.5,1.03
+ Planaise ,PLANAISE ,73800,73200,11,45.5,6.083333,0.52
+ Planay ,PLANAY ,73350,73201,11,45.416667,6.7,1.75
+ Plancherine ,PLANCHERINE ,73200,73202,11,45.666667,6.316667,1.86
+ Le Pont-de-Beauvoisin ,LE PONT DE BEAUVOISIN,73330,73204,11,45.533333,5.666667,1.97
+ Le Pontet ,LE PONTET ,73110,73205,11,45.5,6.233333,-1
+ Pralognan-la-Vanoise ,PRALOGNAN LA VANOISE ,73710,73206,11,45.383333,6.716667,1.81
+ Presle ,PRESLE ,73110,73207,11,45.45,6.133333,0.75
+ Pugny-Chatenod ,PUGNY CHATENOD ,73100,73208,11,45.7,5.95,1.33
+ Pussy ,PUSSY ,73260,73209,11,45.55,6.45,1.23
+ Puygros ,PUYGROS ,73190,73210,11,45.566667,6.033333,1.29
+ Queige ,QUEIGE ,73720,73211,11,45.716667,6.466667,1.47
+ Randens ,RANDENS ,73220,73212,11,45.55,6.316667,1.11
+ La Ravoire ,LA RAVOIRE ,73490,73213,11,45.55,5.966667,0.89
+ Rochefort ,ROCHEFORT ,73240,73214,11,45.583333,5.716667,1.79
+ La Rochette ,LA ROCHETTE ,73110,73215,11,45.458333,6.108333,-1
+ Rognaix ,ROGNAIX ,73730,73216,11,45.583333,6.45,0.85
+ Rotherens ,ROTHERENS ,73110,73217,11,45.466667,6.133333,0.61
+ Ruffieux ,RUFFIEUX ,73310,73218,11,45.85,5.833333,2.57
+ Saint-Alban-de-Montbel ,SAINT ALBAN DE MONTBEL,73610,73219,11,45.55,5.783333,1.55
+ Saint-Alban-des-Hurtières ,SAINT ALBAN DES HURTIERES,73220,73220,11,45.483333,6.266667,0.77
+ Saint-Alban-des-Villards ,SAINT ALBAN DES VILLARDS,73130,73221,11,45.316667,6.25,1.85
+ Saint-André ,SAINT ANDRE ,73500,73223,11,45.2,6.616667,2.82
+ Saint-Avre ,SAINT AVRE ,73130,73224,11,45.35,6.316667,1.58
+ Saint-Baldoph ,SAINT BALDOPH ,73190,73225,11,45.533333,5.95,1.17
+ Saint-Béron ,SAINT BERON ,73520,73226,11,45.5,5.716667,1.79
+ Saint-Bon-Tarentaise ,SAINT BON TARENTAISE ,73120,73227,11,45.433333,6.633333,1.51
+ Saint-Cassin ,SAINT CASSIN ,73160,73228,11,45.533333,5.883333,1.19
+ Saint-Colomban-des-Villards ,SAINT COLOMBAN DES VILLARDS,73130,73230,11,45.3,6.233333,2.18
+ Saint-Étienne-de-Cuines ,SAINT ETIENNE DE CUINES,73130,73231,11,45.35,6.283333,1.58
+ Sainte-Foy-Tarentaise ,SAINTE FOY TARENTAISE ,73640,73232,11,45.583333,6.883333,2.41
+ Saint-Franc ,SAINT FRANC ,73360,73233,11,45.483333,5.733333,1.73
+ Saint-François-de-Sales ,SAINT FRANCOIS DE SALES,73340,73234,11,45.683333,6.05,1.19
+ Saint-Genix-sur-Guiers ,SAINT GENIX SUR GUIERS,73240,73236,11,45.6,5.633333,2.09
+ Saint-Georges-des-Hurtières ,SAINT GEORGES DES HURTIERES,73220,73237,11,45.5,6.283333,0.33
+ Saint-Germain-la-Chambotte ,SAINT GERMAIN LA CHAMBOTTE,73410,73238,11,45.783333,5.9,2.02
+ Saint-Girod ,SAINT GIROD ,73410,73239,11,45.783333,5.95,2.02
+ Sainte-Hélène-du-Lac ,SAINTE HELENE DU LAC,73800,73240,11,45.483333,6.066667,0.53
+ Sainte-Hélène-sur-Isère ,SAINTE HELENE SUR ISERE,73460,73241,11,45.616667,6.316667,0.77
+ Saint-Jean-d'Arves ,SAINT JEAN D ARVES,73530,73242,11,45.2,6.266667,2.82
+ Saint-Jean-d'Arvey ,SAINT JEAN D ARVEY,73230,73243,11,45.583333,6,0.77
+ Saint-Jean-de-Belleville ,SAINT JEAN DE BELLEVILLE,73440,73244,11,45.433333,6.483333,1
+ Saint-Jean-de-Chevelu ,SAINT JEAN DE CHEVELU,73170,73245,11,45.7,5.833333,1.37
+ Saint-Jean-de-Couz ,SAINT JEAN DE COUZ,73160,73246,11,45.466667,5.816667,1.43
+ Saint-Jean-de-la-Porte ,SAINT JEAN DE LA,73250,73247,11,45.55,6.133333,1.13
+ Saint-Jean-de-Maurienne ,SAINT JEAN DE MAURIENNE,73300,73248,11,45.283333,6.35,2.13
+ Saint-Jeoire-Prieuré ,SAINT JEOIRE PRIEURE ,73190,73249,11,45.533333,5.983333,0.83
+ Saint-Léger ,SAINT LEGER ,73220,73252,11,45.433333,6.266667,1.75
+ Sainte-Marie-d'Alvey ,SAINTE MARIE D ALVEY,73240,73254,11,45.583333,5.716667,1.79
+ Sainte-Marie-de-Cuines ,SAINTE MARIE DE CUINES,73130,73255,11,45.333333,6.3,1.71
+ Saint-Martin-d'Arc ,SAINT MARTIN D ARC,73140,73256,11,45.216667,6.466667,2.68
+ Saint-Martin-de-Belleville ,SAINT MARTIN DE BELLEVILLE,73440,73257,11,45.383333,6.5,1.3
+ Saint-Martin-de-la-Porte ,SAINT MARTIN DE LA,73140,73258,11,45.233333,6.45,2.54
+ Saint-Maurice-de-Rotherens ,SAINT MAURICE DE ROTHERENS,73240,73260,11,45.616667,5.7,1.85
+ Saint-Michel-de-Maurienne ,SAINT MICHEL DE MAURIENNE,73140,73261,11,45.216667,6.466667,2.68
+ Saint-Nicolas-la-Chapelle ,SAINT NICOLAS LA CHAPELLE,73590,73262,11,45.816667,6.5,2.3
+ Saint-Offenge-Dessous ,SAINT OFFENGE DESSOUS ,73100,73263,11,45.733333,6,1.69
+ Saint-Offenge-Dessus ,SAINT OFFENGE DESSUS ,73100,73264,11,45.716667,6,1.52
+ Saint-Ours ,SAINT OURS ,73410,73265,11,45.75,6,1.74
+ Saint-Oyen ,SAINT OYEN ,73260,73266,11,45.5,6.483333,0.97
+ Saint-Pancrace ,SAINT PANCRACE ,73300,73267,11,45.266667,6.333333,2.27
+ Saint-Paul-sur-Isère ,SAINT PAUL SUR ISERE,73730,73268,11,45.6,6.433333,1.39
+ Saint-Pierre-d'Albigny ,SAINT PIERRE D ALBIGNY,73250,73270,11,45.566667,6.15,0.39
+ Saint-Pierre-d'Alvey ,SAINT PIERRE D ALVEY,73170,73271,11,45.633333,5.733333,1.73
+ Saint-Pierre-de-Belleville ,SAINT PIERRE DE BELLEVILLE,73220,73272,11,45.466667,6.266667,1.06
+ Saint-Pierre-de-Curtille ,SAINT PIERRE DE CURTILLE,73310,73273,11,45.783333,5.816667,2.02
+ Saint-Pierre-d'Entremont ,SAINT PIERRE D ENTREMONT,73670,73274,11,45.408333,5.85,1.31
+ Saint-Pierre-de-Génébroz ,SAINT PIERRE DE GENEBROZ,73360,73275,11,45.45,5.75,1.67
+ Saint-Pierre-de-Soucy ,SAINT PIERRE DE SOUCY,73800,73276,11,45.5,6.1,0.92
+ Sainte-Reine ,SAINTE REINE ,73630,73277,11,45.616667,6.116667,1.95
+ Saint-Sorlin-d'Arves ,SAINT SORLIN D ARVES,73530,73280,11,45.216667,6.233333,2.68
+ Saint-Thibaud-de-Couz ,SAINT THIBAUD DE COUZ,73160,73282,11,45.5,5.833333,1.37
+ Saint-Vital ,SAINT VITAL ,73460,73283,11,45.633333,6.3,0.77
+ Salins-les-Thermes ,SALINS LES THERMES ,73600,73284,11,45.466667,6.533333,1.15
+ Séez ,SEEZ ,73700,73285,11,45.616667,6.8,2.11
+ Serrières-en-Chautagne ,SERRIERES EN CHAUTAGNE ,73310,73286,11,45.883333,5.833333,2.85
+ Sollières-Sardières ,SOLLIERES SARDIERES ,73500,73287,11,45.266667,6.8,2.27
+ Sonnaz ,SONNAZ ,73000,73288,11,45.616667,5.916667,1.9
+ La Table ,LA TABLE ,73110,73289,11,45.483333,6.166667,0.88
+ Termignon ,TERMIGNON ,73500,73290,11,45.283333,6.816667,2.17
+ Tessens ,TESSENS ,73210,73291,11,45.55,6.633333,1.51
+ Thénésol ,THENESOL ,73200,73292,11,45.716667,6.4,1.47
+ Thoiry ,THOIRY ,73230,73293,11,45.583333,6.033333,1.22
+ La Thuile ,LA THUILE ,73190,73294,11,45.533333,6.05,1.55
+ Thyl ,THYL ,73140,73295,11,45.216667,6.483333,2.68
+ Tignes ,TIGNES ,73320,73296,11,45.5,6.916667,2.53
+ Tournon ,TOURNON ,73460,73297,11,45.633333,6.3,0.77
+ Tours-en-Savoie ,TOURS EN SAVOIE ,73790,73298,11,45.65,6.433333,0.91
+ Traize ,TRAIZE ,73170,73299,11,45.666667,5.75,1.67
+ Tresserve ,TRESSERVE ,73100,73300,11,45.666667,5.9,1.69
+ Trévignin ,TREVIGNIN ,73100,73301,11,45.7,5.95,1.33
+ La Trinité ,LA TRINITE ,73110,73302,11,45.5,6.15,0.91
+ Ugine ,UGINE ,73400,73303,11,45.75,6.416667,1.74
+ Val-d'Isère ,VAL D ISERE ,73150,73304,11,45.45,6.983333,2.77
+ Valezan ,VALEZAN ,73210,73305,11,45.583333,6.7,1.75
+ Valloire ,VALLOIRE ,73450,73306,11,45.165,6.4262,-1
+ Valmeinier ,VALMEINIER ,73450,73307,11,45.183333,6.483333,2.96
+ Venthon ,VENTHON ,73200,73308,11,45.683333,6.416667,1.19
+ Vérel-de-Montbel ,VEREL DE MONTBEL ,73330,73309,11,45.55,5.716667,1.79
+ Vérel-Pragondran ,VEREL PRAGONDRAN ,73230,73310,11,45.6,5.95,1.56
+ Verrens-Arvey ,VERRENS ARVEY ,73460,73312,11,45.65,6.316667,1.1
+ Verthemex ,VERTHEMEX ,73170,73313,11,45.633333,5.783333,1.55
+ Villard-d'Héry ,VILLARD D HERY ,73800,73314,11,45.516667,6.133333,1.79
+ Villard-Léger ,VILLARD LEGER ,73390,73315,11,45.516667,6.183333,1
+ Villard-Sallet ,VILLARD SALLET ,73110,73316,11,45.483333,6.133333,0.47
+ Villard-sur-Doron ,VILLARD SUR DORON ,73270,73317,11,45.716667,6.533333,1.47
+ Villarembert ,VILLAREMBERT ,73300,73318,11,45.25,6.283333,2.41
+ Villargondran ,VILLARGONDRAN ,73300,73320,11,45.266667,6.366667,2.27
+ Villarlurin ,VILLARLURIN ,73600,73321,11,45.466667,6.533333,1.15
+ Villarodin-Bourget ,VILLARODIN BOURGET ,73500,73322,11,45.2,6.716667,2.82
+ Villaroger ,VILLAROGER ,73640,73323,11,45.583333,6.866667,2.35
+ Villette ,VILLETTE ,73210,73325,11,45.55,6.616667,-1
+ Vimines ,VIMINES ,73160,73326,11,45.55,5.866667,1.25
+ Vions ,VIONS ,73310,73327,11,45.833333,5.8,2.43
+ Voglans ,VOGLANS ,73420,73329,11,45.633333,5.9,1.24
+ Yenne ,YENNE ,73170,73330,11,45.7,5.766667,1.61
+ Courchevel ,COURCHEVEL ,73120,73920,11,45.416667,6.65,1.57
+ Arêches ,ARECHES ,73270,73922,11,45.683333,6.566667,1.27
+ Hauteville-Gondon ,HAUTEVILLE GONDON ,73700,73929,11,45.583333,6.75,1.93
+ Abondance ,ABONDANCE ,74360,74001,72,46.283333,6.733333,1.93
+ Alex ,ALEX ,74290,74003,72,45.883333,6.233333,1.29
+ Allèves ,ALLEVES ,74540,74004,72,45.75,6.083333,2.15
+ Allinges ,ALLINGES ,74200,74005,72,46.333333,6.466667,1.87
+ Allonzier-la-Caille ,ALLONZIER LA CAILLE ,74350,74006,72,46,6.116667,0.82
+ Amancy ,AMANCY ,74800,74007,72,46.066667,6.333333,0.54
+ Andilly ,ANDILLY ,74350,74009,72,46.05,6.066667,1.04
+ Annecy ,ANNECY ,74000,74010,72,45.9,6.116667,1.12
+ Annecy-le-Vieux ,ANNECY LE VIEUX ,74940,74011,72,45.916667,6.15,1
+ Annemasse ,ANNEMASSE ,74100,74012,72,46.2,6.25,0.95
+ Arâches ,ARACHES ,74300,74014,72,46.033333,6.65,1.56
+ Arbusigny ,ARBUSIGNY ,74930,74015,72,46.1,6.216667,1.61
+ Archamps ,ARCHAMPS ,74160,74016,72,46.133333,6.133333,1.08
+ Arcine ,ARCINE ,74270,74017,72,46.083333,5.9,1.79
+ Arenthon ,ARENTHON ,74800,74018,72,46.1,6.333333,1.06
+ Armoy ,ARMOY ,74200,74020,72,46.35,6.516667,1.99
+ Arthaz-Pont-Notre-Dame ,ARTHAZ PONT NOTRE DAME,74380,74021,72,46.15,6.283333,1.34
+ Aviernoz ,AVIERNOZ ,74570,74022,72,45.966667,6.216667,0.93
+ Avregny ,AVREGNY ,74350,74023,72,46.016667,6.083333,0.97
+ Ayse ,AYSE ,74130,74024,72,46.083333,6.433333,0.59
+ Ballaison ,BALLAISON ,74140,74025,72,46.3,6.333333,1.64
+ La Balme-de-Sillingy ,LA BALME DE SILLINGY,74330,74026,72,45.966667,6.033333,1.19
+ La Balme-de-Thuy ,LA BALME DE THUY,74230,74027,72,45.9,6.283333,1.12
+ Balmont ,BALMONT ,74600,74028,72,45.833333,6.05,1.58
+ Bassy ,BASSY ,74910,74029,72,45.983333,5.816667,2.16
+ La Baume ,LA BAUME ,74430,74030,72,46.283333,6.616667,1.57
+ Beaumont ,BEAUMONT ,74160,74031,72,46.1,6.116667,0.82
+ Bernex ,BERNEX ,74500,74033,72,46.366667,6.666667,2.1
+ Le Biot ,LE BIOT ,74430,74034,72,46.266667,6.633333,1.49
+ Bloye ,BLOYE ,74150,74035,72,45.816667,5.933333,1.69
+ Bluffy ,BLUFFY ,74290,74036,72,45.866667,6.216667,1.35
+ Boëge ,BOEGE ,74420,74037,72,46.216667,6.416667,1.07
+ Bogève ,BOGEVE ,74250,74038,72,46.2,6.433333,1.61
+ Bonneguête ,BONNEGUETE ,74150,74039,72,45.95,5.9,1.79
+ Bonnevaux ,BONNEVAUX ,74360,74041,72,46.3,6.666667,1.64
+ Bonneville ,BONNEVILLE ,74130,74042,72,46.083333,6.416667,0.52
+ Bossey ,BOSSEY ,74160,74044,72,46.15,6.166667,2.18
+ Boussy ,BOUSSY ,74150,74046,72,45.85,5.983333,1.46
+ Brenthonne ,BRENTHONNE ,74890,74048,72,46.283333,6.4,1.53
+ Brizon ,BRIZON ,74130,74049,72,46.05,6.45,0.67
+ Burdignin ,BURDIGNIN ,74420,74050,72,46.216667,6.433333,1.07
+ Cercier ,CERCIER ,74350,74051,72,46.033333,6.066667,1.04
+ Cernex ,CERNEX ,74350,74052,72,46.066667,6.05,1.4
+ Cervens ,CERVENS ,74550,74053,72,46.283333,6.433333,1.53
+ Chainaz-les-Frasses ,CHAINAZ LES FRASSES ,74540,74054,72,45.766667,6,2.04
+ Challonges ,CHALLONGES ,74910,74055,72,46.016667,5.833333,2.08
+ Chamonix-Mont-Blanc ,CHAMONIX MONT BLANC ,74400,74056,72,45.916667,6.866667,2.53
+ Champanges ,CHAMPANGES ,74500,74057,72,46.366667,6.55,2.1
+ La Chapelle-d'Abondance ,LA CHAPELLE D ABONDANCE,74360,74058,72,46.3,6.783333,2.16
+ La Chapelle-Rambaud ,LA CHAPELLE RAMBAUD ,74800,74059,72,46.066667,6.25,2.11
+ La Chapelle-Saint-Maurice ,LA CHAPELLE SAINT MAURICE,74410,74060,72,45.783333,6.15,1.92
+ Charvonnex ,CHARVONNEX ,74370,74062,72,45.966667,6.15,0.67
+ Châtel ,CHATEL ,74390,74063,72,46.283333,6.833333,2.38
+ Châtillon-sur-Cluses ,CHATILLON SUR CLUSES ,74300,74064,72,46.083333,6.583333,1.26
+ Chavannaz ,CHAVANNAZ ,74270,74066,72,46.05,6.016667,1.58
+ Chavanod ,CHAVANOD ,74650,74067,72,45.883333,6.05,1.23
+ Chêne-en-Semine ,CHENE EN SEMINE ,74270,74068,72,46.05,5.85,2.01
+ Chênex ,CHENEX ,74520,74069,72,46.116667,6,1.43
+ Chens-sur-Léman ,CHENS SUR LEMAN ,74140,74070,72,46.333333,6.266667,1.87
+ Chessenaz ,CHESSENAZ ,74270,74071,72,46.033333,5.9,1.79
+ Chevaline ,CHEVALINE ,74210,74072,72,45.766667,6.216667,2.04
+ Chevenoz ,CHEVENOZ ,74500,74073,72,46.333333,6.65,1.87
+ Chevrier ,CHEVRIER ,74520,74074,72,46.116667,5.916667,1.71
+ Chilly ,CHILLY ,74270,74075,72,45.983333,5.95,1.56
+ Choisy ,CHOISY ,74330,74076,72,45.983333,6.05,1.12
+ Clermont ,CLERMONT ,74270,74078,72,45.966667,5.9,1.79
+ Les Clefs ,LES CLEFS ,74230,74079,72,45.866667,6.333333,1.35
+ La Clusaz ,LA CLUSAZ ,74220,74080,72,45.9,6.416667,1.12
+ Cluses ,CLUSES ,74300,74081,72,46.066667,6.6,1.34
+ Combloux ,COMBLOUX ,74920,74083,72,45.9,6.65,1.56
+ Cons-Sainte-Colombe ,CONS SAINTE COLOMBE ,74210,74084,72,45.75,6.333333,2.15
+ Les Contamines-Montjoie ,LES CONTAMINES MONTJOIE ,74170,74085,72,45.833333,6.733333,1.93
+ Contamine-Sarzin ,CONTAMINE SARZIN ,74270,74086,72,46.033333,5.983333,1.41
+ Contamine-sur-Arve ,CONTAMINE SUR ARVE ,74130,74087,72,46.133333,6.333333,1.69
+ Copponex ,COPPONEX ,74350,74088,72,46.05,6.066667,1.04
+ Cornier ,CORNIER ,74800,74090,72,46.1,6.3,1.06
+ La Côte d'Arbroz ,LA COTE D ARBROZ,74110,74091,72,46.183333,6.666667,1.64
+ Cran-Gévrier ,CRAN GEVRIER ,74960,74093,72,45.9,6.1,1.12
+ Cranves-Sales ,CRANVES SALES ,74380,74094,72,46.183333,6.3,0.84
+ Cruseilles ,CRUSEILLES ,74350,74096,72,46.033333,6.116667,0.82
+ Cusy ,CUSY ,74540,74097,72,45.766667,6.033333,2.04
+ Cuvat ,CUVAT ,74350,74098,72,45.966667,6.116667,1.43
+ Desingy ,DESINGY ,74270,74100,72,46,5.883333,1.86
+ Dingy-en-Vuache ,DINGY EN VUACHE ,74520,74101,72,46.1,5.933333,1.64
+ Dingy-Saint-Clair ,DINGY SAINT CLAIR ,74230,74102,72,45.9,6.216667,2.03
+ Domancy ,DOMANCY ,74700,74103,72,45.916667,6.65,1.56
+ Doussard ,DOUSSARD ,74210,74104,72,45.766667,6.216667,2.04
+ Douvaine ,DOUVAINE ,74140,74105,72,46.316667,6.3,1.76
+ Draillant ,DRAILLANT ,74550,74106,72,46.3,6.45,1.64
+ Droisy ,DROISY ,74270,74107,72,45.966667,5.883333,1.86
+ Duingt ,DUINGT ,74410,74108,72,45.833333,6.2,1.58
+ Éloise ,ELOISE ,1200,74109,72,46.083333,5.866667,1.94
+ Entremont ,ENTREMONT ,74130,74110,72,45.95,6.383333,1.88
+ Entrevernes ,ENTREVERNES ,74410,74111,72,45.8,6.183333,1.81
+ Épagny ,EPAGNY ,74330,74112,72,45.933333,6.1,1.51
+ Ésery ,ESERY ,74930,74113,72,46.15,6.25,0.92
+ Essert-Romand ,ESSERT ROMAND ,74110,74114,72,46.2,6.666667,1.64
+ Esserts-Salève ,ESSERTS SALEVE ,74560,74115,72,46.15,6.216667,0.61
+ Étaux ,ETAUX ,74800,74116,72,46.066667,6.3,0.54
+ Étercy ,ETERCY ,74150,74117,72,45.883333,6,1.34
+ Étrembières ,ETREMBIERES ,74100,74118,72,46.183333,6.233333,1.17
+ Évian-les-Bains ,EVIAN LES BAINS ,74500,74119,72,46.383333,6.583333,2.22
+ Évires ,EVIRES ,74570,74120,72,46.033333,6.233333,0.99
+ Excénevex ,EXCENEVEX ,74140,74121,72,46.35,6.35,1.99
+ Faucigny ,FAUCIGNY ,74130,74122,72,46.116667,6.366667,1.13
+ Faverges ,FAVERGES ,74210,74123,72,45.75,6.3,2.15
+ Feigères ,FEIGERES ,74160,74124,72,46.116667,6.083333,0.97
+ Ferrières ,FERRIERES ,74370,74125,72,45.966667,6.1,1.35
+ Fessy ,FESSY ,74890,74126,72,46.266667,6.416667,1.41
+ Féternes ,FETERNES ,74500,74127,72,46.35,6.566667,1.99
+ Fillinges ,FILLINGES ,74250,74128,72,46.166667,6.333333,1.67
+ La Forclaz ,LA FORCLAZ ,74200,74129,72,46.316667,6.616667,1.76
+ Franclens ,FRANCLENS ,74910,74130,72,46.033333,5.816667,2.16
+ Frangy ,FRANGY ,74270,74131,72,46.016667,5.933333,1.64
+ La Frasse ,LA FRASSE ,74300,74132,72,46.058333,6.633333,-1
+ Gaillard ,GAILLARD ,74240,74133,72,46.183333,6.216667,0.84
+ Les Gets ,LES GETS ,74260,74134,72,46.15,6.666667,1.64
+ Giez ,GIEZ ,74210,74135,72,45.75,6.25,2.15
+ Le Grand-Bornand ,LE GRAND BORNAND ,74450,74136,72,45.95,6.433333,1
+ Groisy ,GROISY ,74570,74137,72,46.016667,6.183333,1.14
+ Gruffy ,GRUFFY ,74540,74138,72,45.783333,6.05,1.92
+ Habère-Lullin ,HABERE LULLIN ,74420,74139,72,46.233333,6.466667,1.18
+ Habère-Poche ,HABERE POCHE ,74420,74140,72,46.25,6.483333,1.77
+ Hauteville-sur-Fier ,HAUTEVILLE SUR FIER ,74150,74141,72,45.9,5.983333,1.41
+ Héry-sur-Alby ,HERY SUR ALBY ,74540,74142,72,45.8,6,1.81
+ Les Houches ,LES HOUCHES ,74310,74143,72,45.883333,6.8,2.23
+ Jonzier-Épagny ,JONZIER EPAGNY ,74520,74144,72,46.066667,5.983333,1.41
+ Juvigny ,JUVIGNY ,74100,74145,72,46.216667,6.283333,1.64
+ Larringes ,LARRINGES ,74500,74146,72,46.366667,6.583333,2.1
+ Lathuile ,LATHUILE ,74210,74147,72,45.783333,6.2,1.92
+ Loëx ,LOEX ,74380,74149,72,46.166667,6.3,0.72
+ Loisin ,LOISIN ,74140,74150,72,46.3,6.3,1.64
+ Lornay ,LORNAY ,74150,74151,72,45.916667,5.9,1.79
+ Lovagny ,LOVAGNY ,74330,74152,72,45.9,6.033333,1.19
+ Lucinges ,LUCINGES ,74380,74153,72,46.2,6.316667,1.77
+ Lugrin ,LUGRIN ,74500,74154,72,46.4,6.683333,2.33
+ Lullin ,LULLIN ,74470,74155,72,46.283333,6.533333,1.53
+ Lully ,LULLY ,74890,74156,72,46.283333,6.416667,1.53
+ Lyaud ,LYAUD ,74200,74157,72,46.333333,6.533333,1.87
+ Machilly ,MACHILLY ,74140,74158,72,46.25,6.333333,1.38
+ Magland ,MAGLAND ,74300,74159,72,46.016667,6.616667,1.41
+ Manigod ,MANIGOD ,74230,74160,72,45.866667,6.366667,1.35
+ Marcellaz-Albanais ,MARCELLAZ ALBANAIS ,74150,74161,72,45.866667,6,1.35
+ Marcellaz ,MARCELLAZ ,74250,74162,72,46.15,6.35,1.18
+ Margencel ,MARGENCEL ,74200,74163,72,46.333333,6.433333,1.87
+ Marignier ,MARIGNIER ,74970,74164,72,46.1,6.516667,0.97
+ Marigny-Saint-Marcel ,MARIGNY SAINT MARCEL ,74150,74165,72,45.833333,5.983333,1.58
+ Marin ,MARIN ,74200,74166,72,46.383333,6.533333,2.22
+ Marlens ,MARLENS ,74210,74167,72,45.766667,6.35,2.04
+ Marlioz ,MARLIOZ ,74270,74168,72,46.033333,6,1.34
+ Marnaz ,MARNAZ ,74460,74169,72,46.066667,6.533333,1.04
+ Massingy ,MASSINGY ,74150,74170,72,45.833333,5.933333,1.64
+ Massongy ,MASSONGY ,74140,74171,72,46.316667,6.333333,1.76
+ Maxilly-sur-Léman ,MAXILLY SUR LEMAN ,74500,74172,72,46.4,6.65,2.33
+ Megève ,MEGEVE ,74120,74173,72,45.866667,6.616667,1.41
+ Mégevette ,MEGEVETTE ,74490,74174,72,46.2,6.5,1.27
+ Meillerie ,MEILLERIE ,74500,74175,72,46.4,6.716667,2.33
+ Menthon-Saint-Bernard ,MENTHON SAINT BERNARD ,74290,74176,72,45.85,6.2,1.46
+ Menthonnex-en-Bornes ,MENTHONNEX EN BORNES ,74350,74177,72,46.05,6.183333,1.48
+ Menthonnex-Sous-Clermont ,MENTHONNEX SOUS CLERMONT ,74270,74178,72,45.966667,5.933333,1.64
+ Mésigny ,MESIGNY ,74330,74179,72,45.983333,6,1.56
+ Messery ,MESSERY ,74140,74180,72,46.35,6.3,1.99
+ Metz-Tessy ,METZ TESSY ,74370,74181,72,45.933333,6.1,1.39
+ Meythet ,MEYTHET ,74960,74182,72,45.933333,6.1,1
+ Mieussy ,MIEUSSY ,74440,74183,72,46.15,6.533333,1.94
+ Minzier ,MINZIER ,74270,74184,72,46.05,5.983333,1.41
+ Monnetier-Mornex ,MONNETIER MORNEX ,74560,74185,72,46.166667,6.2,1.08
+ Montagny-les-Lanches ,MONTAGNY LES LANCHES ,74600,74186,72,45.866667,6.033333,1.35
+ Montmin ,MONTMIN ,74210,74187,72,45.8,6.266667,1.81
+ Montriond ,MONTRIOND ,74110,74188,72,46.2,6.683333,1.71
+ Mont-Saxonnex ,MONT SAXONNEX ,74130,74189,72,46.05,6.483333,0.99
+ Morillon ,MORILLON ,74440,74190,72,46.083333,6.683333,1.71
+ Morzine ,MORZINE ,74110,74191,72,46.183333,6.716667,1.86
+ Moye ,MOYE ,74150,74192,72,45.866667,5.916667,1.71
+ La Muraz ,LA MURAZ ,74560,74193,72,46.116667,6.2,1.34
+ Mûres ,MURES ,74540,74194,72,45.8,6.033333,1.81
+ Musièges ,MUSIEGES ,74270,74195,72,46.016667,5.95,1.56
+ Nancy-sur-Cluses ,NANCY SUR CLUSES ,74300,74196,72,46.033333,6.583333,1.26
+ Nangy ,NANGY ,74380,74197,72,46.15,6.3,1.03
+ Nâves-Parmelan ,NAVES PARMELAN ,74370,74198,72,45.933333,6.183333,1.28
+ Nernier ,NERNIER ,74140,74199,72,46.366667,6.3,2.1
+ Neuvecelle ,NEUVECELLE ,74500,74200,72,46.4,6.6,2.33
+ Neydens ,NEYDENS ,74160,74201,72,46.116667,6.1,0.89
+ Nonglard ,NONGLARD ,74330,74202,72,45.916667,6.033333,1.19
+ Novel ,NOVEL ,74500,74203,72,46.366667,6.791667,-1
+ Les Ollières ,LES OLLIERES ,74370,74204,72,45.966667,6.183333,1.24
+ Onnion ,ONNION ,74490,74205,72,46.183333,6.483333,0.84
+ Orcier ,ORCIER ,74550,74206,72,46.316667,6.5,1.96
+ Passy ,PASSY ,74480,74208,72,45.916667,6.683333,1.71
+ Peillonnex ,PEILLONNEX ,74250,74209,72,46.133333,6.383333,0.54
+ Perrignier ,PERRIGNIER ,74550,74210,72,46.3,6.45,1.64
+ Pers-Jussy ,PERS JUSSY ,74930,74211,72,46.116667,6.283333,0.41
+ Poisy ,POISY ,74330,74213,72,45.916667,6.066667,1.04
+ Praz-sur-Arly ,PRAZ SUR ARLY ,74120,74215,72,45.833333,6.566667,1.58
+ Présilly ,PRESILLY ,74160,74216,72,46.1,6.083333,0.97
+ Pringy ,PRINGY ,74370,74217,72,45.95,6.116667,0.82
+ Publier ,PUBLIER ,74500,74218,72,46.383333,6.55,2.22
+ Quintal ,QUINTAL ,74600,74219,72,45.833333,6.083333,1.58
+ Reignier ,REIGNIER ,74930,74220,72,46.133333,6.266667,0.49
+ Reyvroz ,REYVROZ ,74200,74222,72,46.333333,6.566667,1.87
+ La Rivière-Enverse ,LA RIVIERE ENVERSE ,74440,74223,72,46.1,6.633333,1.49
+ La Roche-sur-Foron ,LA ROCHE SUR FORON,74800,74224,72,46.066667,6.316667,0.13
+ Rumilly ,RUMILLY ,74150,74225,72,45.866667,5.95,1.56
+ Saint-André-de-Boëge ,SAINT ANDRE DE BOEGE,74420,74226,72,46.2,6.4,1.42
+ Saint-André-Val-de-Fier ,SAINT ANDRE VAL DE,74150,74227,72,45.933333,5.9,1.79
+ Saint-Blaise ,SAINT BLAISE ,74350,74228,72,46.066667,6.083333,0.97
+ Saint-Cergues ,SAINT CERGUES ,74140,74229,72,46.233333,6.316667,1.67
+ Saint-Eusèbe ,SAINT EUSEBE ,74150,74231,72,45.933333,5.966667,1.49
+ Saint-Eustache ,SAINT EUSTACHE ,74410,74232,72,45.8,6.15,1.81
+ Saint-Félix ,SAINT FELIX ,74540,74233,72,45.8,5.966667,1.81
+ Saint-Ferréol ,SAINT FERREOL ,74210,74234,72,45.766667,6.3,2.04
+ Saint-Germain-sur-Rhône ,SAINT GERMAIN SUR RHONE,1200,74235,72,46.066667,5.816667,2.16
+ Saint-Gervais-les-Bains ,SAINT GERVAIS LES BAINS,74190,74236,72,45.9,6.716667,1.86
+ Saint-Gingolph ,SAINT GINGOLPH ,74500,74237,72,46.383333,6.666667,2.22
+ Saint-Jean-d'Aulps ,SAINT JEAN D AULPS,74430,74238,72,46.233333,6.65,1.57
+ Saint-Jean-de-Sixt ,SAINT JEAN DE SIXT,74450,74239,72,45.916667,6.4,1
+ Saint-Jean-de-Tholome ,SAINT JEAN DE THOLOME,74250,74240,72,46.116667,6.4,0.87
+ Saint-Jeoire ,SAINT JEOIRE ,74490,74241,72,46.15,6.466667,1.48
+ Saint-Jorioz ,SAINT JORIOZ ,74410,74242,72,45.833333,6.166667,1.58
+ Saint-Julien-en-Genevois ,SAINT JULIEN EN GENEVOIS,74160,74243,72,46.133333,6.083333,0.97
+ Saint-Laurent ,SAINT LAURENT ,74800,74244,72,46.05,6.366667,1.71
+ Saint-Martin-Bellevue ,SAINT MARTIN BELLEVUE ,74370,74245,72,45.95,6.133333,0.77
+ Saint-Nicolas-de-Véroce ,SAINT NICOLAS DE VEROCE,74190,74248,72,45.85,6.733333,1.93
+ Saint-Paul-en-Chablais ,SAINT PAUL EN CHABLAIS,74500,74249,72,46.383333,6.633333,2.22
+ Saint-Sixt ,SAINT SIXT ,74800,74253,72,46.05,6.333333,0.84
+ Sales ,SALES ,74150,74255,72,45.866667,5.95,1.56
+ Sallanches ,SALLANCHES ,74700,74256,72,45.933333,6.633333,1.49
+ Sallenôves ,SALLENOVES ,74270,74257,72,46,6,1.34
+ Samoëns ,SAMOENS ,74340,74258,72,46.083333,6.733333,1.93
+ Le Sappey ,LE SAPPEY ,74350,74259,72,46.083333,6.166667,1.46
+ Saxel ,SAXEL ,74420,74261,72,46.25,6.4,1.37
+ Scientrier ,SCIENTRIER ,74930,74262,72,46.116667,6.333333,1.76
+ Sciez ,SCIEZ ,74140,74263,72,46.333333,6.383333,1.87
+ Scionzier ,SCIONZIER ,74950,74264,72,46.05,6.566667,1.19
+ Serraval ,SERRAVAL ,74230,74265,72,45.8,6.35,1.81
+ Servoz ,SERVOZ ,74310,74266,72,45.933333,6.766667,2.08
+ Sévrier ,SEVRIER ,74320,74267,72,45.866667,6.133333,1.35
+ Seynod ,SEYNOD ,74600,74268,72,45.883333,6.083333,1.23
+ Seythenex ,SEYTHENEX ,74210,74270,72,45.716667,6.3,2.38
+ Seytroux ,SEYTROUX ,74430,74271,72,46.25,6.633333,1.49
+ Sillingy ,SILLINGY ,74330,74272,72,45.95,6.033333,1.19
+ Talloires ,TALLOIRES ,74290,74275,72,45.85,6.216667,1.46
+ Taninges ,TANINGES ,74440,74276,72,46.116667,6.6,1.34
+ Thyez ,THYEZ ,74300,74278,72,46.083333,6.533333,1.86
+ Thônes ,THONES ,74230,74280,72,45.883333,6.333333,1.23
+ Thonon-les-Bains ,THONON LES BAINS ,74200,74281,72,46.366667,6.483333,2.1
+ Thorens-Glières ,THORENS GLIERES ,74570,74282,72,45.983333,6.25,0.93
+ Thusy ,THUSY ,74150,74283,72,45.95,5.95,1.56
+ La Tour ,LA TOUR ,74250,74284,72,46.133333,6.433333,1.06
+ Usinens ,USINENS ,74910,74285,72,46,5.833333,2.08
+ Vacheresse ,VACHERESSE ,74360,74286,72,46.333333,6.683333,1.87
+ Vailly ,VAILLY ,74470,74287,72,46.316667,6.55,1.76
+ Valleiry ,VALLEIRY ,74520,74288,72,46.116667,5.966667,1.49
+ Vallières ,VALLIERES ,74150,74289,72,45.9,5.933333,1.64
+ Vallorcine ,VALLORCINE ,74660,74290,72,46.033333,6.933333,2.83
+ Vanzy ,VANZY ,74270,74291,72,46.05,5.883333,1.86
+ Vaulx ,VAULX ,74150,74292,72,45.933333,6,1.34
+ Veigy-Foncenex ,VEIGY FONCENEX ,74140,74293,72,46.266667,6.25,1.67
+ Verchaix ,VERCHAIX ,74440,74294,72,46.1,6.683333,1.71
+ La Vernaz ,LA VERNAZ ,74200,74295,72,46.316667,6.6,1.76
+ Vers ,VERS ,74160,74296,72,46.1,6.033333,2.05
+ Vétraz-Monthoux ,VETRAZ MONTHOUX ,74100,74298,72,46.166667,6.266667,1.32
+ Veyrier-du-Lac ,VEYRIER DU LAC ,74290,74299,72,45.883333,6.166667,1.77
+ Villard ,VILLARD ,74420,74301,72,46.216667,6.441667,-1
+ Les Villards-sur-Thônes ,LES VILLARDS SUR THONES,74230,74302,72,45.916667,6.366667,1.15
+ Villaz ,VILLAZ ,74370,74303,72,45.95,6.183333,1.16
+ Ville-en-Sallaz ,VILLE EN SALLAZ ,74250,74304,72,46.15,6.416667,0.61
+ Ville-la-Grand ,VILLE LA GRAND ,74100,74305,72,46.2,6.25,0.95
+ Villy-le-Bouveret ,VILLY LE BOUVERET ,74350,74306,72,46.033333,6.166667,1.12
+ Villy-le-Pelloux ,VILLY LE PELLOUX ,74350,74307,72,46,6.133333,0.87
+ Vinzier ,VINZIER ,74500,74308,72,46.35,6.633333,1.99
+ Viry ,VIRY ,74580,74309,72,46.116667,6.033333,1.19
+ Viuz-la-Chiésaz ,VIUZ LA CHIESAZ ,74540,74310,72,45.8,6.066667,1.81
+ Viuz-en-Sallaz ,VIUZ EN SALLAZ ,74250,74311,72,46.15,6.416667,0.61
+ Vougy ,VOUGY ,74130,74312,72,46.066667,6.5,1.21
+ Vovray-en-Bornes ,VOVRAY EN BORNES ,74350,74313,72,46.066667,6.15,0.98
+ Vulbens ,VULBENS ,74520,74314,72,46.1,5.933333,1.64
+ Yvoire ,YVOIRE ,74140,74315,72,46.366667,6.333333,2.1
+ Argentière ,ARGENTIERE ,74400,74920,72,45.983333,6.933333,2.83
+ Les Bossons ,LES BOSSONS ,74400,74921,72,45.9,6.85,2.46
+ Chedde ,CHEDDE ,74190,74922,72,45.933333,6.716667,1.86
+ Le Fayet ,LE FAYET ,74190,74923,72,45.916667,6.7,1.79
+ Plateau d'Assy ,PLATEAU D ASSY ,74480,74924,72,45.933333,6.7,1.79
+ Les Praz-de-Chamonix ,LES PRAZ DE CHAMONIX,74400,74925,72,45.933333,6.866667,2.53
+ Vieugy ,VIEUGY ,74600,74926,72,45.866667,6.083333,1.35
+ Avoriaz ,AVORIAZ ,74110,74950,72,46.2,6.766667,2.08
+ Sion ,SION ,74150,74954,72,45.916667,5.916667,1.71
+ Paris ,PARIS ,75000,75100,25,48.866667,2.333333,
+ Allouville-Bellefosse ,ALLOUVILLE BELLEFOSSE ,76190,76001,23,49.6,0.683333,1.25
+ Alvimare ,ALVIMARE ,76640,76002,23,49.6,0.633333,1.17
+ Ambourville ,AMBOURVILLE ,76480,76003,23,49.466667,0.933333,1.57
+ Ambrumesnil ,AMBRUMESNIL ,76550,76004,23,49.866667,1,1.74
+ Amfreville-la-Mi-Voie ,AMFREVILLE LA MI VOIE,76920,76005,23,49.4,1.116667,2.07
+ Amfreville-les-Champs ,AMFREVILLE LES CHAMPS ,76560,76006,23,49.7,0.816667,0.54
+ Anceaumeville ,ANCEAUMEVILLE ,76710,76007,23,49.583333,1.05,0.92
+ Ancourt ,ANCOURT ,76370,76008,23,49.9,1.183333,1.69
+ Ancretteville-sur-Mer ,ANCRETTEVILLE SUR MER ,76540,76011,23,49.783333,0.516667,1.36
+ Angerville-Bailleul ,ANGERVILLE BAILLEUL ,76110,76012,23,49.666667,0.45,1.56
+ Angerville-la-Martel ,ANGERVILLE LA MARTEL ,76540,76013,23,49.766667,0.5,1.41
+ Angerville-l'Orcher ,ANGERVILLE L ORCHER ,76280,76014,23,49.583333,0.283333,2.05
+ Angiens ,ANGIENS ,76740,76015,23,49.833333,0.783333,1.33
+ Anglesqueville-l'Esneval ,ANGLESQUEVILLE L ESNEVAL ,76280,76017,23,49.633333,0.233333,2.2
+ Anneville-sur-Scie ,ANNEVILLE SUR SCIE ,76590,76019,23,49.833333,1.083333,1.19
+ Anneville-Ambourville ,ANNEVILLE AMBOURVILLE ,76480,76020,23,49.466667,0.883333,1.57
+ Annouville-Vilmesnil ,ANNOUVILLE VILMESNIL ,76110,76021,23,49.683333,0.433333,1.61
+ Anquetierville ,ANQUETIERVILLE ,76490,76022,23,49.533333,0.633333,1.07
+ Anvéville ,ANVEVILLE ,76560,76023,23,49.7,0.733333,0.97
+ Ardouval ,ARDOUVAL ,76680,76024,23,49.75,1.266667,1.23
+ Argueil ,ARGUEIL ,76780,76025,23,49.533333,1.516667,1.59
+ Arques-la-Bataille ,ARQUES LA BATAILLE ,76880,76026,23,49.883333,1.133333,1.57
+ Assigny ,ASSIGNY ,76630,76027,23,49.983333,1.3,2.32
+ Aubéguimont ,AUBEGUIMONT ,76390,76028,23,49.8,1.666667,2.04
+ Aubermesnil-Beaumais ,AUBERMESNIL BEAUMAIS ,76550,76030,23,49.85,1.116667,1.78
+ Auberville-la-Campagne ,AUBERVILLE LA CAMPAGNE ,76170,76031,23,49.533333,0.6,1.12
+ Auberville-la-Manuel ,AUBERVILLE LA MANUEL ,76450,76032,23,49.833333,0.583333,1.2
+ Auberville-la-Renault ,AUBERVILLE LA RENAULT ,76110,76033,23,49.683333,0.366667,1.81
+ Aumale ,AUMALE ,76390,76035,23,49.766667,1.75,2.28
+ Auppegard ,AUPPEGARD ,76730,76036,23,49.833333,1.033333,1.8
+ Auquemesnil ,AUQUEMESNIL ,76630,76037,23,49.95,1.333333,2.07
+ Authieux-Ratiéville ,AUTHIEUX RATIEVILLE ,76690,76038,23,49.6,1.15,0.57
+ Autigny ,AUTIGNY ,76740,76040,23,49.8,0.866667,0.94
+ Autretot ,AUTRETOT ,76190,76041,23,49.65,0.733333,0.8
+ Auvilliers ,AUVILLIERS ,76270,76042,23,49.766667,1.583333,1.79
+ Auzebosc ,AUZEBOSC ,76190,76043,23,49.6,0.733333,0.72
+ Auzouville-Auberbosc ,AUZOUVILLE AUBERBOSC ,76640,76044,23,49.633333,0.566667,1.22
+ Auzouville-l'Esneval ,AUZOUVILLE L ESNEVAL ,76760,76045,23,49.633333,0.883333,1.07
+ Auzouville-sur-Ry ,AUZOUVILLE SUR RY ,76116,76046,23,49.433333,1.316667,1.82
+ Auzouville-sur-Saâne ,AUZOUVILLE SUR SAANE ,76730,76047,23,49.75,0.933333,1.03
+ Avesnes-en-Bray ,AVESNES EN BRAY ,76220,76048,23,49.466667,1.666667,2.04
+ Avesnes-en-Val ,AVESNES EN VAL ,76630,76049,23,49.916667,1.4,1.98
+ Avremesnil ,AVREMESNIL ,76730,76050,23,49.85,0.933333,1.37
+ Bacqueville-en-Caux ,BACQUEVILLE EN CAUX ,76730,76051,23,49.783333,1,0.87
+ Bailleul-Neuville ,BAILLEUL NEUVILLE ,76660,76052,23,49.8,1.416667,1.3
+ Baillolet ,BAILLOLET ,76660,76053,23,49.8,1.433333,1.35
+ Bailly-en-Rivière ,BAILLY EN RIVIERE ,76630,76054,23,49.916667,1.35,1.82
+ Baons-le-Comte ,BAONS LE COMTE ,76190,76055,23,49.65,0.783333,0.72
+ Bardouville ,BARDOUVILLE ,76480,76056,23,49.433333,0.933333,1.82
+ Barentin ,BARENTIN ,76360,76057,23,49.55,0.95,0.94
+ Baromesnil ,BAROMESNIL ,76260,76058,23,49.983333,1.416667,2.32
+ Bazinval ,BAZINVAL ,76340,76059,23,49.966667,1.55,2.19
+ Beaubec-la-Rosière ,BEAUBEC LA ROSIERE ,76440,76060,23,49.65,1.533333,1.64
+ Beaumont-le-Hareng ,BEAUMONT LE HARENG ,76850,76062,23,49.666667,1.216667,1.22
+ Beaurepaire ,BEAUREPAIRE ,76280,76064,23,49.666667,0.216667,2.25
+ Beaussault ,BEAUSSAULT ,76870,76065,23,49.683333,1.566667,1.74
+ Beauvoir-en-Lyons ,BEAUVOIR EN LYONS ,76220,76067,23,49.5,1.583333,1.79
+ Bec-de-Mortagne ,BEC DE MORTAGNE ,76110,76068,23,49.7,0.45,1.56
+ Belbeuf ,BELBEUF ,76240,76069,23,49.4,1.15,2.07
+ Bellencombre ,BELLENCOMBRE ,76680,76070,23,49.7,1.233333,1
+ Bellengreville ,BELLENGREVILLE ,76630,76071,23,49.9,1.216667,1.69
+ Belleville-en-Caux ,BELLEVILLE EN CAUX ,76890,76072,23,49.7,0.983333,0.82
+ Belleville-sur-Mer ,BELLEVILLE SUR MER ,76370,76073,23,49.95,1.166667,2.07
+ La Bellière ,LA BELLIERE ,76440,76074,23,49.6,1.6,1.84
+ Belmesnil ,BELMESNIL ,76590,76075,23,49.766667,1.05,1.58
+ Bénarville ,BENARVILLE ,76110,76076,23,49.666667,0.5,1.53
+ Bénesville ,BENESVILLE ,76560,76077,23,49.75,0.833333,0.71
+ Bennetot ,BENNETOT ,76640,76078,23,49.666667,0.55,1.27
+ Bénouville ,BENOUVILLE ,76790,76079,23,49.716667,0.25,2.15
+ Bermonville ,BERMONVILLE ,76640,76080,23,49.633333,0.633333,1.02
+ Berneval-le-Grand ,BERNEVAL LE GRAND ,76370,76081,23,49.966667,1.183333,2.19
+ Bernières ,BERNIERES ,76210,76082,23,49.616667,0.483333,1.46
+ Bertheauville ,BERTHEAUVILLE ,76450,76083,23,49.85,0.65,1.31
+ Bertreville ,BERTREVILLE ,76450,76084,23,49.766667,0.583333,1.17
+ Bertreville-Saint-Ouen ,BERTREVILLE SAINT OUEN ,76590,76085,23,49.8,1.05,1.45
+ Bertrimont ,BERTRIMONT ,76890,76086,23,49.666667,1,0.52
+ Berville ,BERVILLE ,76560,76087,23,49.716667,0.833333,0.63
+ Berville-sur-Seine ,BERVILLE SUR SEINE ,76480,76088,23,49.466667,0.9,1.57
+ Betteville ,BETTEVILLE ,76190,76089,23,49.55,0.8,1.05
+ Beuzeville-la-Grenier ,BEUZEVILLE LA GRENIER ,76210,76090,23,49.6,0.433333,1.61
+ Beuzeville-la-Guérard ,BEUZEVILLE LA GUERARD ,76450,76091,23,49.716667,0.616667,1.16
+ Beuzevillette ,BEUZEVILLETTE ,76210,76092,23,49.566667,0.533333,1.31
+ Bézancourt ,BEZANCOURT ,76220,76093,23,49.45,1.633333,1.94
+ Bierville ,BIERVILLE ,76750,76094,23,49.533333,1.266667,1.43
+ Bihorel ,BIHOREL ,76420,76095,23,49.466667,1.116667,1.57
+ Biville-la-Baignarde ,BIVILLE LA BAIGNARDE ,76890,76096,23,49.716667,1.05,0.77
+ Biville-la-Rivière ,BIVILLE LA RIVIERE ,76730,76097,23,49.783333,0.933333,0.81
+ Biville-sur-Mer ,BIVILLE SUR MER ,76630,76098,23,49.983333,1.266667,2.32
+ Blacqueville ,BLACQUEVILLE ,76190,76099,23,49.566667,0.866667,1.7
+ Blainville-Crevon ,BLAINVILLE CREVON ,76116,76100,23,49.5,1.3,1.32
+ Blangy-sur-Bresle ,BLANGY SUR BRESLE ,76340,76101,23,49.933333,1.633333,1.94
+ Bonsecours ,BONSECOURS ,76240,76103,23,49.433333,1.133333,1.82
+ Blosseville ,BLOSSEVILLE ,76460,76104,23,49.85,0.8,1.82
+ Bois-d'Ennebourg ,BOIS D ENNEBOURG ,76160,76106,23,49.433333,1.25,1.82
+ Bois-Guilbert ,BOIS GUILBERT ,76750,76107,23,49.55,1.416667,1.3
+ Bois-Guillaume ,BOIS GUILLAUME ,76230,76108,23,49.466667,1.133333,1.57
+ Bois-Héroult ,BOIS HEROULT ,76750,76109,23,49.566667,1.4,1.25
+ Bois-Himont ,BOIS HIMONT ,76190,76110,23,49.583333,0.7,1.05
+ Bois-l'Évêque ,BOIS L EVEQUE ,76160,76111,23,49.45,1.266667,1.69
+ Le Bois-Robert ,LE BOIS ROBERT ,76590,76112,23,49.833333,1.15,1.19
+ Bolbec ,BOLBEC ,76210,76114,23,49.566667,0.483333,1.46
+ Bolleville ,BOLLEVILLE ,76210,76115,23,49.6,0.566667,1.62
+ Boos ,BOOS ,76520,76116,23,49.383333,1.2,2.2
+ Bordeaux-Saint-Clair ,BORDEAUX SAINT CLAIR ,76790,76117,23,49.7,0.25,2.15
+ Bornambusc ,BORNAMBUSC ,76110,76118,23,49.633333,0.35,1.86
+ Bosc-Bérenger ,BOSC BERENGER ,76680,76119,23,49.633333,1.25,0.9
+ Bosc-Bordel ,BOSC BORDEL ,76750,76120,23,49.6,1.416667,1.47
+ Bosc-Édeline ,BOSC EDELINE ,76750,76121,23,49.566667,1.433333,1.54
+ Bosc-Guérard-Saint-Adrien ,BOSC GUERARD SAINT ADRIEN,76710,76123,23,49.55,1.116667,1.35
+ Bosc-Hyons ,BOSC HYONS ,76220,76124,23,49.45,1.666667,2.04
+ Bosc-le-Hard ,BOSC LE HARD ,76850,76125,23,49.633333,1.183333,0.83
+ Bosc-Mesnil ,BOSC MESNIL ,76680,76126,23,49.666667,1.35,1.1
+ Bosc-Roger-sur-Buchy ,BOSC ROGER SUR BUCHY,76750,76127,23,49.583333,1.366667,1.15
+ Bosville ,BOSVILLE ,76450,76128,23,49.75,0.683333,0.97
+ Boudeville ,BOUDEVILLE ,76560,76129,23,49.716667,0.883333,1.37
+ Bouelles ,BOUELLES ,76270,76130,23,49.716667,1.5,1.54
+ La Bouille ,LA BOUILLE ,76530,76131,23,49.35,0.933333,2.45
+ Bourdainville ,BOURDAINVILLE ,76760,76132,23,49.666667,0.95,1.32
+ Le Bourg-Dun ,LE BOURG DUN ,76740,76133,23,49.866667,0.9,1.56
+ Bourville ,BOURVILLE ,76740,76134,23,49.8,0.816667,0.94
+ Bouville ,BOUVILLE ,76360,76135,23,49.566667,0.9,1.3
+ Brachy ,BRACHY ,76730,76136,23,49.816667,0.95,1.06
+ Bracquemont ,BRACQUEMONT ,76370,76137,23,49.95,1.15,2.07
+ Bracquetuit ,BRACQUETUIT ,76850,76138,23,49.666667,1.166667,0.56
+ Bradiancourt ,BRADIANCOURT ,76680,76139,23,49.666667,1.383333,1.34
+ Brametot ,BRAMETOT ,76740,76140,23,49.783333,0.866667,1.09
+ Bréauté ,BREAUTE ,76110,76141,23,49.633333,0.4,1.71
+ Brémontier-Merval ,BREMONTIER MERVAL ,76220,76142,23,49.5,1.616667,1.89
+ Brunville ,BRUNVILLE ,76630,76145,23,49.966667,1.266667,2.19
+ Buchy ,BUCHY ,76750,76146,23,49.583333,1.366667,1.15
+ Bully ,BULLY ,76270,76147,23,49.733333,1.366667,1.55
+ Bures-en-Bray ,BURES EN BRAY ,76660,76148,23,49.783333,1.333333,1.38
+ Butot ,BUTOT ,76890,76149,23,49.616667,1.033333,1.15
+ Butot-en-Caux ,BUTOT EN CAUX ,76450,76150,23,49.816667,0.6,1.12
+ Cailleville ,CAILLEVILLE ,76460,76151,23,49.833333,0.733333,1.19
+ Cailly ,CAILLY ,76690,76152,23,49.583333,1.233333,1.02
+ Campneuseville ,CAMPNEUSEVILLE ,76340,76154,23,49.866667,1.666667,2.04
+ Canehan ,CANEHAN ,76260,76155,23,49.983333,1.35,2.32
+ Canouville ,CANOUVILLE ,76450,76156,23,49.8,0.6,1.12
+ Canteleu ,CANTELEU ,76380,76157,23,49.45,1.033333,1.69
+ Canville-les-Deux-Églises ,CANVILLE LES DEUX EGLISES,76560,76158,23,49.766667,0.833333,0.86
+ Cany-Barville ,CANY BARVILLE ,76450,76159,23,49.783333,0.633333,1.02
+ Carville-la-Folletière ,CARVILLE LA FOLLETIERE ,76190,76160,23,49.566667,0.816667,1.03
+ Carville-Pot-de-Fer ,CARVILLE POT DE FER,76560,76161,23,49.716667,0.716667,1.14
+ Le Catelier ,LE CATELIER ,76590,76162,23,49.75,1.15,1.17
+ Catenay ,CATENAY ,76116,76163,23,49.516667,1.333333,1.19
+ Caudebec-en-Caux ,CAUDEBEC EN CAUX ,76490,76164,23,49.533333,0.733333,1.24
+ Caudebec-lès-Elbeuf ,CAUDEBEC LES ELBEUF ,76320,76165,23,49.283333,1.033333,2.95
+ Le Caule-Sainte-Beuve ,LE CAULE SAINTE BEUVE,76390,76166,23,49.766667,1.583333,1.79
+ Cauville ,CAUVILLE ,76930,76167,23,49.6,0.133333,2.5
+ Les Cent-Acres ,LES CENT ACRES ,76590,76168,23,49.766667,1.15,0.9
+ La Cerlangue ,LA CERLANGUE ,76430,76169,23,49.5,0.416667,1.66
+ La Chapelle-du-Bourgay ,LA CHAPELLE DU BOURGAY,76590,76170,23,49.816667,1.15,1.06
+ La Chapelle-sur-Dun ,LA CHAPELLE SUR DUN,76740,76172,23,49.866667,0.85,1.44
+ La Chaussée ,LA CHAUSSEE ,76590,76173,23,49.833333,1.116667,1.19
+ Cideville ,CIDEVILLE ,76570,76174,23,49.616667,0.9,1.44
+ Clais ,CLAIS ,76660,76175,23,49.8,1.45,1.4
+ Clasville ,CLASVILLE ,76450,76176,23,49.8,0.616667,1.07
+ Claville-Motteville ,CLAVILLE MOTTEVILLE ,76690,76177,23,49.6,1.2,0.66
+ Cléon ,CLEON ,76410,76178,23,49.316667,1.033333,2.7
+ Cléres ,CLERES ,76690,76179,23,49.6,1.116667,1.03
+ Cleuville ,CLEUVILLE ,76450,76180,23,49.716667,0.633333,1.12
+ Cléville ,CLEVILLE ,76640,76181,23,49.616667,0.616667,1.07
+ Cliponville ,CLIPONVILLE ,76640,76182,23,49.683333,0.666667,1.44
+ Colleville ,COLLEVILLE ,76400,76183,23,49.75,0.466667,1.51
+ Colmesnil-Manneville ,COLMESNIL MANNEVILLE ,76550,76184,23,49.85,1.033333,1.31
+ Compainville ,COMPAINVILLE ,76440,76185,23,49.666667,1.566667,1.74
+ Contremoulins ,CONTREMOULINS ,76400,76187,23,49.733333,0.433333,1.61
+ Cottévrard ,COTTEVRARD ,76850,76188,23,49.633333,1.216667,1.44
+ Crasville-la-Mallet ,CRASVILLE LA MALLET ,76450,76189,23,49.8,0.716667,1.36
+ Crasville-la-Rocquefort ,CRASVILLE LA ROCQUEFORT ,76740,76190,23,49.8,0.866667,0.94
+ Cressy ,CRESSY ,76720,76191,23,49.716667,1.166667,1.1
+ Criel-sur-Mer ,CRIEL SUR MER ,76910,76192,23,50.016667,1.316667,2.57
+ La Crique ,LA CRIQUE ,76850,76193,23,49.683333,1.2,0.96
+ Criquebeuf-en-Caux ,CRIQUEBEUF EN CAUX ,76111,76194,23,49.733333,0.333333,1.91
+ Criquetot-le-Mauconduit ,CRIQUETOT LE MAUCONDUIT ,76540,76195,23,49.8,0.566667,1.3
+ Criquetot-l'Esneval ,CRIQUETOT L ESNEVAL ,76280,76196,23,49.65,0.266667,2.1
+ Criquetot-sur-Longueville ,CRIQUETOT SUR LONGUEVILLE ,76590,76197,23,49.783333,1.083333,0.81
+ Criquetot-sur-Ouville ,CRIQUETOT SUR OUVILLE ,76760,76198,23,49.683333,0.85,1.46
+ Criquiers ,CRIQUIERS ,76390,76199,23,49.683333,1.7,2.14
+ Critot ,CRITOT ,76680,76200,23,49.616667,1.25,1.09
+ Croixdalle ,CROIXDALLE ,76660,76202,23,49.816667,1.366667,1.15
+ Croix-Mare ,CROIX MARE ,76190,76203,23,49.6,0.85,1.33
+ Cropus ,CROPUS ,76720,76204,23,49.733333,1.15,0.51
+ Crosville-sur-Scie ,CROSVILLE SUR SCIE ,76590,76205,23,49.816667,1.083333,1.06
+ Cuverville-sur-Yères ,CUVERVILLE SUR YERES ,76260,76207,23,49.958333,1.4,-1
+ Cuy-Saint-Fiacre ,CUY SAINT FIACRE ,76220,76208,23,49.516667,1.7,2.14
+ Dampierre-Saint-Nicolas ,DAMPIERRE SAINT NICOLAS ,76510,76210,23,49.866667,1.2,1.44
+ Dancourt ,DANCOURT ,76340,76211,23,49.9,1.55,1.69
+ Darnétal ,DARNETAL ,76160,76212,23,49.45,1.15,1.69
+ Daubeuf-Serville ,DAUBEUF SERVILLE ,76110,76213,23,49.7,0.483333,1.47
+ Dénestanville ,DENESTANVILLE ,76590,76214,23,49.816667,1.083333,1.06
+ Derchigny ,DERCHIGNY ,76370,76215,23,49.933333,1.216667,1.94
+ Déville-lès-Rouen ,DEVILLE LES ROUEN ,76250,76216,23,49.466667,1.033333,1.57
+ Dieppe ,DIEPPE ,76200,76217,23,49.933333,1.083333,1.94
+ Doudeville ,DOUDEVILLE ,76560,76219,23,49.716667,0.8,0.53
+ Douvrend ,DOUVREND ,76630,76220,23,49.866667,1.316667,1.44
+ Drosay ,DROSAY ,76460,76221,23,49.8,0.733333,0.94
+ Duclair ,DUCLAIR ,76480,76222,23,49.483333,0.883333,1.44
+ Écalles-Alix ,ECALLES ALIX ,76190,76223,23,49.616667,0.833333,1.08
+ Écrainville ,ECRAINVILLE ,76110,76224,23,49.65,0.333333,1.91
+ Écretteville-lès-Baons ,ECRETTEVILLE LES BAONS ,76190,76225,23,49.633333,0.666667,1.55
+ Écretteville-sur-Mer ,ECRETTEVILLE SUR MER ,76540,76226,23,49.8,0.483333,1.46
+ Ectot-l'Auber ,ECTOT L AUBER ,76760,76227,23,49.65,0.933333,1
+ Ectot-lès-Baons ,ECTOT LES BAONS ,76970,76228,23,49.65,0.8,1.34
+ Elbeuf-en-Bray ,ELBEUF EN BRAY ,76220,76229,23,49.483333,1.65,1.99
+ Elbeuf-sur-Andelle ,ELBEUF SUR ANDELLE ,76780,76230,23,49.466667,1.4,1.79
+ Elbeuf ,ELBEUF ,76500,76231,23,49.283333,1,2.95
+ Életot ,ELETOT ,76540,76232,23,49.783333,0.45,1.56
+ Ellecourt ,ELLECOURT ,76390,76233,23,49.8,1.716667,2.18
+ Émanville ,EMANVILLE ,76570,76234,23,49.616667,0.966667,0.61
+ Envermeu ,ENVERMEU ,76630,76235,23,49.9,1.266667,1.69
+ Envronville ,ENVRONVILLE ,76640,76236,23,49.666667,0.666667,1.32
+ Épinay-sur-Duclair ,EPINAY SUR DUCLAIR ,76480,76237,23,49.533333,0.85,1.34
+ Épouville ,EPOUVILLE ,76133,76238,23,49.566667,0.216667,2.25
+ Épretot ,EPRETOT ,76430,76239,23,49.533333,0.316667,1.96
+ Épreville ,EPREVILLE ,76400,76240,23,49.7,0.366667,1.81
+ Ermenouville ,ERMENOUVILLE ,76740,76241,23,49.8,0.783333,1.44
+ Ernemont-sur-Buchy ,ERNEMONT SUR BUCHY ,76750,76243,23,49.533333,1.366667,1.15
+ Esclavelles ,ESCLAVELLES ,76270,76244,23,49.7,1.383333,1.45
+ Eslettes ,ESLETTES ,76710,76245,23,49.55,1.05,0.94
+ Les Essarts-Varimpré ,LES ESSARTS VARIMPRE ,76270,76246,23,49.816667,1.516667,1.59
+ Esteville ,ESTEVILLE ,76690,76247,23,49.6,1.233333,1.05
+ Estouteville-Écalles ,ESTOUTEVILLE ECALLES ,76750,76248,23,49.583333,1.316667,1
+ Étaimpuis ,ETAIMPUIS ,76850,76249,23,49.65,1.133333,1.08
+ Étainhus ,ETAINHUS ,76430,76250,23,49.566667,0.316667,1.96
+ Étalleville ,ETALLEVILLE ,76560,76251,23,49.733333,0.833333,0.62
+ Étalondes ,ETALONDES ,76260,76252,23,50.033333,1.383333,2.69
+ Étoutteville ,ETOUTTEVILLE ,76190,76253,23,49.666667,0.783333,0.96
+ Étretat ,ETRETAT ,76790,76254,23,49.7,0.2,2.3
+ Eu ,EU ,76260,76255,23,50.05,1.416667,2.82
+ Fallencourt ,FALLENCOURT ,76340,76257,23,49.866667,1.566667,1.74
+ Fauville-en-Caux ,FAUVILLE EN CAUX ,76640,76258,23,49.65,0.583333,1.17
+ Fécamp ,FECAMP ,76400,76259,23,49.75,0.366667,1.81
+ Ferrières-en-Bray ,FERRIERES EN BRAY ,76220,76260,23,49.483333,1.75,2.28
+ La Ferté-Saint-Samson ,LA FERTE SAINT SAMSON,76440,76261,23,49.583333,1.533333,1.64
+ Fesques ,FESQUES ,76270,76262,23,49.783333,1.483333,1.49
+ La Feuillie ,LA FEUILLIE ,76220,76263,23,49.466667,1.516667,2.25
+ Flamanville ,FLAMANVILLE ,76970,76264,23,49.633333,0.833333,0.6
+ Flamets-Frétils ,FLAMETS FRETILS ,76270,76265,23,49.733333,1.6,1.84
+ Flocques ,FLOCQUES ,76260,76266,23,50.033333,1.366667,2.69
+ La Folletière ,LA FOLLETIERE ,76190,76267,23,49.566667,0.8,0.84
+ Fongueusemare ,FONGUEUSEMARE ,76280,76268,23,49.683333,0.3,2
+ Fontaine-en-Bray ,FONTAINE EN BRAY ,76440,76269,23,49.683333,1.416667,2.16
+ Fontaine-la-Mallet ,FONTAINE LA MALLET ,76290,76270,23,49.533333,0.15,2.45
+ Fontaine-le-Bourg ,FONTAINE LE BOURG ,76690,76271,23,49.566667,1.166667,0.82
+ Fontaine-le-Dun ,FONTAINE LE DUN ,76740,76272,23,49.816667,0.85,1.06
+ Fontaine-sous-Préaux ,FONTAINE SOUS PREAUX ,76160,76273,23,49.483333,1.183333,1.44
+ La Fontelaye ,LA FONTELAYE ,76890,76274,23,49.683333,0.95,1.34
+ Forges-les-Eaux ,FORGES LES EAUX ,76440,76276,23,49.616667,1.55,1.69
+ Le Fossé ,LE FOSSE ,76440,76277,23,49.6,1.566667,1.74
+ Foucarmont ,FOUCARMONT ,76340,76278,23,49.85,1.566667,1.74
+ Foucart ,FOUCART ,76640,76279,23,49.616667,0.6,1.12
+ Fréauville ,FREAUVILLE ,76660,76280,23,49.833333,1.416667,1.3
+ La Frenaye ,LA FRENAYE ,76170,76281,23,49.525,0.575,-1
+ Freneuse ,FRENEUSE ,76410,76282,23,49.316667,1.083333,2.7
+ Fresles ,FRESLES ,76270,76283,23,49.75,1.35,1.78
+ Fresnay-le-Long ,FRESNAY LE LONG ,76850,76284,23,49.65,1.1,1.96
+ Fresne-le-Plan ,FRESNE LE PLAN ,76520,76285,23,49.416667,1.3,1.95
+ Fresnoy-Folny ,FRESNOY FOLNY ,76660,76286,23,49.883333,1.433333,1.57
+ Freulleville ,FREULLEVILLE ,76510,76288,23,49.833333,1.233333,1.19
+ Fréville ,FREVILLE ,76190,76289,23,49.566667,0.833333,1.24
+ Frichemesnil ,FRICHEMESNIL ,76690,76290,23,49.616667,1.133333,0.89
+ Froberville ,FROBERVILLE ,76400,76291,23,49.716667,0.333333,1.91
+ Fry ,FRY ,76780,76292,23,49.533333,1.533333,1.64
+ Fultot ,FULTOT ,76560,76293,23,49.75,0.8,0.56
+ La Gaillarde ,LA GAILLARDE ,76740,76294,23,49.833333,0.866667,1.19
+ Gaillefontaine ,GAILLEFONTAINE ,76870,76295,23,49.65,1.616667,1.89
+ Gainneville ,GAINNEVILLE ,76700,76296,23,49.516667,0.25,2.15
+ Gancourt-Saint-Étienne ,GANCOURT SAINT ETIENNE ,76220,76297,23,49.55,1.716667,2.18
+ Ganzeville ,GANZEVILLE ,76400,76298,23,49.733333,0.416667,1.66
+ Gerponville ,GERPONVILLE ,76540,76299,23,49.75,0.566667,1.22
+ Gerville ,GERVILLE ,76790,76300,23,49.7,0.333333,2.02
+ Glicourt ,GLICOURT ,76630,76301,23,49.933333,1.25,1.94
+ Goderville ,GODERVILLE ,76110,76302,23,49.65,0.366667,1.81
+ Gommerville ,GOMMERVILLE ,76430,76303,23,49.55,0.366667,1.81
+ Gonfreville-Caillot ,GONFREVILLE CAILLOT ,76110,76304,23,49.65,0.433333,1.61
+ Gonfreville-l'Orcher ,GONFREVILLE L ORCHER ,76700,76305,23,49.5,0.233333,2.2
+ Gonnetot ,GONNETOT ,76730,76306,23,49.766667,0.9,1.37
+ Gonneville-la-Mallet ,GONNEVILLE LA MALLET ,76280,76307,23,49.633333,0.216667,2.25
+ Gonneville-sur-Scie ,GONNEVILLE SUR SCIE ,76590,76308,23,49.75,1.083333,1.24
+ Gonzeville ,GONZEVILLE ,76560,76309,23,49.766667,0.816667,0.7
+ Gouchaupré ,GOUCHAUPRE ,76630,76310,23,49.933333,1.3,1.94
+ Goupillières ,GOUPILLIERES ,76570,76311,23,49.583333,0.983333,1.06
+ Gournay-en-Bray ,GOURNAY EN BRAY ,76220,76312,23,49.483333,1.733333,2.23
+ Gouy ,GOUY ,76520,76313,23,49.35,1.15,2.45
+ Graimbouville ,GRAIMBOUVILLE ,76430,76314,23,49.583333,0.333333,1.91
+ Grainville-la-Teinturière ,GRAINVILLE LA TEINTURIERE ,76450,76315,23,49.75,0.65,0.97
+ Grainville-sur-Ry ,GRAINVILLE SUR RY ,76116,76316,23,49.483333,1.3,1.44
+ Grainville-Ymauville ,GRAINVILLE YMAUVILLE ,76110,76317,23,49.666667,0.416667,1.66
+ Grand Camp ,GRAND CAMP ,76170,76318,23,49.558333,0.591667,1.14
+ Grand-Couronne ,GRAND COURONNE ,76530,76319,23,49.35,1,2.45
+ Grandcourt ,GRANDCOURT ,76660,76320,23,49.916667,1.5,1.86
+ Les Grandes-Ventes ,LES GRANDES VENTES ,76950,76321,23,49.783333,1.233333,0.81
+ Le Grand-Quevilly ,LE GRAND QUEVILLY ,76120,76322,23,49.416667,1.033333,1.95
+ Graval ,GRAVAL ,76270,76323,23,49.733333,1.55,1.69
+ Grèges ,GREGES ,76370,76324,23,49.916667,1.15,1.82
+ Grémonville ,GREMONVILLE ,76970,76325,23,49.666667,0.833333,0.96
+ Greny ,GRENY ,76630,76326,23,49.95,1.316667,2.07
+ Greuville ,GREUVILLE ,76810,76327,23,49.816667,0.916667,1.06
+ Grigneuseville ,GRIGNEUSEVILLE ,76850,76328,23,49.65,1.183333,0.61
+ Gruchet-le-Valasse ,GRUCHET LE VALASSE ,76210,76329,23,49.55,0.483333,1.46
+ Gruchet-Saint-Siméon ,GRUCHET SAINT SIMEON ,76810,76330,23,49.816667,0.9,1.14
+ Grugny ,GRUGNY ,76690,76331,23,49.616667,1.116667,1.14
+ Grumesnil ,GRUMESNIL ,76440,76332,23,49.616667,1.683333,2.09
+ Guerville ,GUERVILLE ,76340,76333,23,49.966667,1.516667,2.19
+ Gueures ,GUEURES ,76730,76334,23,49.833333,0.966667,1.19
+ Gueutteville ,GUEUTTEVILLE ,76890,76335,23,49.65,1,0.71
+ Guilmécourt ,GUILMECOURT ,76630,76337,23,49.966667,1.3,2.19
+ La Hallotière ,LA HALLOTIERE ,76780,76338,23,49.516667,1.466667,1.45
+ Le Hanouard ,LE HANOUARD ,76450,76339,23,49.733333,0.666667,0.98
+ Harcanville ,HARCANVILLE ,76560,76340,23,49.716667,0.716667,1.14
+ Harfleur ,HARFLEUR ,76700,76341,23,49.5,0.2,2.3
+ Hattenville ,HATTENVILLE ,76640,76342,23,49.65,0.533333,1.36
+ Haucourt ,HAUCOURT ,76440,76343,23,49.633333,1.666667,2.04
+ Haudricourt ,HAUDRICOURT ,76390,76344,23,49.733333,1.7,2.14
+ Haussez ,HAUSSEZ ,76440,76345,23,49.583333,1.666667,2.04
+ Hautot-l'Auvray ,HAUTOT L AUVRAY ,76450,76346,23,49.766667,0.75,1.91
+ Hautot-le-Vatois ,HAUTOT LE VATOIS ,76190,76347,23,49.65,0.683333,1.4
+ Hautot-Saint-Sulpice ,HAUTOT SAINT SULPICE ,76190,76348,23,49.683333,0.75,1.19
+ Hautot-sur-Mer ,HAUTOT SUR MER ,76550,76349,23,49.9,1.033333,1.69
+ Hautot-sur-Seine ,HAUTOT SUR SEINE ,76113,76350,23,49.366667,0.983333,2.32
+ Le Havre ,LE HAVRE ,76620,76351,23,49.5,0.133333,2.5
+ Héberville ,HEBERVILLE ,76740,76353,23,49.766667,0.8,1.62
+ Hénouville ,HENOUVILLE ,76840,76354,23,49.483333,0.966667,1.44
+ Héricourt-en-Caux ,HERICOURT EN CAUX ,76560,76355,23,49.7,0.7,1.44
+ Hermanville ,HERMANVILLE ,76730,76356,23,49.816667,0.983333,1.06
+ Hermeville ,HERMEVILLE ,76280,76357,23,49.6,0.266667,2.1
+ Le Héron ,LE HERON ,76780,76358,23,49.483333,1.4,1.67
+ Héronchelles ,HERONCHELLES ,76750,76359,23,49.533333,1.383333,1.2
+ Heugleville-sur-Scie ,HEUGLEVILLE SUR SCIE ,76720,76360,23,49.733333,1.1,1.44
+ Heurteauville ,HEURTEAUVILLE ,76940,76362,23,49.45,0.816667,1.88
+ Hodeng-au-Bosc ,HODENG AU BOSC ,76340,76363,23,49.866667,1.716667,2.18
+ Hodeng-Hodenger ,HODENG HODENGER ,76780,76364,23,49.533333,1.566667,1.74
+ Houdetot ,HOUDETOT ,76740,76365,23,49.816667,0.8,1.06
+ Le Houlme ,LE HOULME ,76770,76366,23,49.516667,1.033333,1.19
+ Houppeville ,HOUPPEVILLE ,76770,76367,23,49.516667,1.083333,1.42
+ Houquetot ,HOUQUETOT ,76110,76368,23,49.608333,0.391667,-1
+ Hugleville-en-Caux ,HUGLEVILLE EN CAUX ,76570,76370,23,49.633333,0.983333,1.26
+ Les Ifs ,LES IFS ,76630,76371,23,49.883333,1.4,2.17
+ Illois ,ILLOIS ,76390,76372,23,49.75,1.65,1.99
+ Imbleville ,IMBLEVILLE ,76890,76373,23,49.716667,0.95,1.48
+ Incheville ,INCHEVILLE ,76117,76374,23,50.016667,1.5,2.57
+ Ingouville ,INGOUVILLE ,76460,76375,23,49.833333,0.683333,1.19
+ Intraville ,INTRAVILLE ,76630,76376,23,49.933333,1.283333,1.94
+ Isneauville ,ISNEAUVILLE ,76230,76377,23,49.5,1.15,1.32
+ Jumièges ,JUMIEGES ,76480,76378,23,49.433333,0.816667,1.82
+ Lamberville ,LAMBERVILLE ,76730,76379,23,49.766667,1,0.99
+ Lammerville ,LAMMERVILLE ,76730,76380,23,49.8,0.983333,0.94
+ Lanquetot ,LANQUETOT ,76210,76382,23,49.583333,0.533333,1.31
+ Lestanville ,LESTANVILLE ,76730,76383,23,49.75,0.966667,0.88
+ Lillebonne ,LILLEBONNE ,76170,76384,23,49.516667,0.55,1.27
+ Limésy ,LIMESY ,76570,76385,23,49.616667,0.933333,0.61
+ Limpiville ,LIMPIVILLE ,76540,76386,23,49.683333,0.5,1.68
+ Lindebeuf ,LINDEBEUF ,76760,76387,23,49.7,0.916667,0.95
+ Lintot ,LINTOT ,76210,76388,23,49.566667,0.566667,1.63
+ Lintot-les-Bois ,LINTOT LES BOIS ,76590,76389,23,49.8,1.066667,1.1
+ Les Loges ,LES LOGES ,76790,76390,23,49.7,0.283333,2.05
+ La Londe ,LA LONDE ,76500,76391,23,49.3,0.966667,2.82
+ Londinières ,LONDINIERES ,76660,76392,23,49.833333,1.4,1.25
+ Longmesnil ,LONGMESNIL ,76440,76393,23,49.616667,1.616667,1.89
+ Longroy ,LONGROY ,76260,76394,23,49.983333,1.533333,2.32
+ Longueil ,LONGUEIL ,76860,76395,23,49.883333,0.966667,1.57
+ Longuerue ,LONGUERUE ,76750,76396,23,49.55,1.3,0.95
+ Longueville-sur-Scie ,LONGUEVILLE SUR SCIE ,76590,76397,23,49.8,1.1,0.94
+ Lucy ,LUCY ,76270,76399,23,49.783333,1.45,1.4
+ Luneray ,LUNERAY ,76810,76400,23,49.833333,0.916667,1.19
+ La Mailleraye-sur-Seine ,LA MAILLERAYE SUR SEINE,76940,76401,23,49.483333,0.766667,1.44
+ Malaunay ,MALAUNAY ,76770,76402,23,49.533333,1.033333,1.07
+ Malleville-les-Grès ,MALLEVILLE LES GRES ,76450,76403,23,49.833333,0.6,1.19
+ Manéglise ,MANEGLISE ,76133,76404,23,49.566667,0.25,2.15
+ Manéhouville ,MANEHOUVILLE ,76590,76405,23,49.833333,1.083333,1.19
+ Maniquerville ,MANIQUERVILLE ,76400,76406,23,49.7,0.333333,1.91
+ Manneville-ès-Plains ,MANNEVILLE ES PLAINS ,76460,76407,23,49.85,0.75,1.31
+ Manneville-la-Goupil ,MANNEVILLE LA GOUPIL ,76110,76408,23,49.616667,0.35,1.86
+ Mannevillette ,MANNEVILLETTE ,76290,76409,23,49.6,0.183333,2.35
+ Maromme ,MAROMME ,76150,76410,23,49.466667,1.033333,1.57
+ Marques ,MARQUES ,76390,76411,23,49.783333,1.7,2.14
+ Martainville-Épreville ,MARTAINVILLE EPREVILLE ,76116,76412,23,49.466667,1.283333,1.57
+ Martigny ,MARTIGNY ,76880,76413,23,49.866667,1.15,1.44
+ Martin-Église ,MARTIN EGLISE ,76370,76414,23,49.9,1.15,1.69
+ Massy ,MASSY ,76270,76415,23,49.683333,1.4,1.38
+ Mathonville ,MATHONVILLE ,76680,76416,23,49.616667,1.383333,1.59
+ Maucomble ,MAUCOMBLE ,76680,76417,23,49.683333,1.333333,1.05
+ Mauny ,MAUNY ,76530,76419,23,49.383333,0.883333,2.2
+ Mauquenchy ,MAUQUENCHY ,76440,76420,23,49.6,1.466667,1.45
+ Mélamare ,MELAMARE ,76170,76421,23,49.533333,0.45,1.64
+ Melleville ,MELLEVILLE ,76260,76422,23,49.95,1.466667,2.07
+ Ménerval ,MENERVAL ,76220,76423,23,49.566667,1.666667,2.04
+ Ménonval ,MENONVAL ,76270,76424,23,49.766667,1.5,1.54
+ Mentheville ,MENTHEVILLE ,76110,76425,23,49.7,0.416667,1.66
+ Mésangueville ,MESANGUEVILLE ,76780,76426,23,49.55,1.566667,1.74
+ Mesnières-en-Bray ,MESNIERES EN BRAY ,76270,76427,23,49.766667,1.383333,1.34
+ Le Mesnil-Durdent ,LE MESNIL DURDENT ,76460,76428,23,49.816667,0.766667,1.06
+ Le Mesnil-Esnard ,LE MESNIL ESNARD ,76240,76429,23,49.416667,1.15,1.95
+ Mesnil-Follemprise ,MESNIL FOLLEMPRISE ,76660,76430,23,49.783333,1.3,1.83
+ Le Mesnil-Lieubray ,LE MESNIL LIEUBRAY ,76780,76431,23,49.5,1.516667,1.59
+ Mesnil-Mauger ,MESNIL MAUGER ,76440,76432,23,49.666667,1.516667,1.59
+ Mesnil-Panneville ,MESNIL PANNEVILLE ,76570,76433,23,49.583333,0.9,1.47
+ Mesnil-Raoul ,MESNIL RAOUL ,76520,76434,23,49.4,1.266667,2.07
+ Le Mesnil-Réaume ,LE MESNIL REAUME ,76260,76435,23,49.966667,1.45,2.19
+ Le Mesnil-sous-Jumièges ,LE MESNIL SOUS JUMIEGES,76480,76436,23,49.416667,0.866667,1.95
+ Meulers ,MEULERS ,76510,76437,23,49.85,1.216667,1.31
+ Millebosc ,MILLEBOSC ,76260,76438,23,49.966667,1.5,2.19
+ Mirville ,MIRVILLE ,76210,76439,23,49.616667,0.45,1.56
+ Monchaux-Soreng ,MONCHAUX SORENG ,76340,76441,23,49.95,1.583333,2.07
+ Monchy-sur-Eu ,MONCHY SUR EU ,76260,76442,23,50,1.45,2.44
+ Mont-Cauvaire ,MONT CAUVAIRE ,76690,76443,23,49.566667,1.116667,1.05
+ Mont-de-l'If ,MONT DE L IF,76190,76444,23,49.583333,0.816667,0.89
+ Montérolier ,MONTEROLIER ,76680,76445,23,49.633333,1.35,1.1
+ Montigny ,MONTIGNY ,76380,76446,23,49.466667,1,1.57
+ Montivilliers ,MONTIVILLIERS ,76290,76447,23,49.55,0.2,2.3
+ Montmain ,MONTMAIN ,76520,76448,23,49.416667,1.25,1.95
+ Montreuil-en-Caux ,MONTREUIL EN CAUX ,76850,76449,23,49.683333,1.15,0.83
+ Mont-Saint-Aignan ,MONT SAINT AIGNAN ,76130,76451,23,49.466667,1.083333,1.57
+ Morgny-la-Pommeraye ,MORGNY LA POMMERAYE ,76750,76453,23,49.516667,1.25,1.8
+ Mortemer ,MORTEMER ,76270,76454,23,49.75,1.55,1.69
+ Morville-sur-Andelle ,MORVILLE SUR ANDELLE ,76780,76455,23,49.483333,1.433333,1.44
+ Motteville ,MOTTEVILLE ,76970,76456,23,49.633333,0.85,1.1
+ Moulineaux ,MOULINEAUX ,76530,76457,23,49.35,0.966667,2.45
+ Muchedent ,MUCHEDENT ,76590,76458,23,49.766667,1.183333,1.47
+ Nesle-Hodeng ,NESLE HODENG ,76270,76459,23,49.7,1.5,1.54
+ Nesle-Normandeuse ,NESLE NORMANDEUSE ,76340,76460,23,49.916667,1.666667,2.04
+ Neufchâtel-en-Bray ,NEUFCHATEL EN BRAY ,76270,76462,23,49.733333,1.45,1.4
+ Neuville-Ferrières ,NEUVILLE FERRIERES ,76270,76465,23,49.716667,1.466667,1.45
+ Neuville-lès-Dieppe ,NEUVILLE LES DIEPPE ,76370,76466,23,49.916667,1.1,1.82
+ Néville ,NEVILLE ,76460,76467,23,49.816667,0.716667,1.06
+ Nointot ,NOINTOT ,76210,76468,23,49.6,0.483333,1.46
+ Nolléval ,NOLLEVAL ,76780,76469,23,49.5,1.483333,1.49
+ Normanville ,NORMANVILLE ,76640,76470,23,49.7,0.6,1.12
+ Norville ,NORVILLE ,76330,76471,23,49.466667,0.633333,1.57
+ Notre-Dame-d'Aliermont ,NOTRE DAME D ALIERMONT,76510,76472,23,49.85,1.283333,1.31
+ Notre-Dame-de-Bliquetuit ,NOTRE DAME DE BLIQUETUIT,76940,76473,23,49.5,0.766667,1.32
+ Notre-Dame-de-Bondeville ,NOTRE DAME DE BONDEVILLE,76960,76474,23,49.483333,1.05,1.44
+ Notre-Dame-de-Gravenchon ,NOTRE DAME DE GRAVENCHON,76330,76476,23,49.483333,0.583333,1.44
+ Notre-Dame-du-Bec ,NOTRE DAME DU BEC,76133,76477,23,49.6,0.216667,2.25
+ Notre-Dame-du-Parc ,NOTRE DAME DU PARC,76590,76478,23,49.75,1.133333,1.02
+ Nullemont ,NULLEMONT ,76390,76479,23,49.766667,1.633333,1.94
+ Ocqueville ,OCQUEVILLE ,76450,76480,23,49.8,0.683333,0.94
+ Octeville-sur-Mer ,OCTEVILLE SUR MER ,76930,76481,23,49.55,0.116667,2.55
+ Offranville ,OFFRANVILLE ,76550,76482,23,49.866667,1.05,1.44
+ Oherville ,OHERVILLE ,76560,76483,23,49.733333,0.683333,1.63
+ Oissel ,OISSEL ,76350,76484,23,49.333333,1.1,2.57
+ Omonville ,OMONVILLE ,76730,76485,23,49.8,1.05,1.92
+ Orival ,ORIVAL ,76500,76486,23,49.3,0.983333,2.82
+ Osmoy-Saint-Valery ,OSMOY SAINT VALERY ,76660,76487,23,49.8,1.316667,1.5
+ Ouainville ,OUAINVILLE ,76450,76488,23,49.783333,0.583333,1.17
+ Oudalle ,OUDALLE ,76430,76489,23,49.5,0.3,2
+ Ourville-en-Caux ,OURVILLE EN CAUX ,76450,76490,23,49.733333,0.6,1.12
+ Ouville-l'Abbaye ,OUVILLE L ABBAYE ,76760,76491,23,49.7,0.866667,1.28
+ Ouville-la-Rivière ,OUVILLE LA RIVIERE ,76860,76492,23,49.866667,0.966667,1.44
+ Paluel ,PALUEL ,76450,76493,23,49.833333,0.633333,1.19
+ Parc-d'Anxtot ,PARC D ANXTOT ,76210,76494,23,49.583333,0.383333,2.01
+ Pavilly ,PAVILLY ,76570,76495,23,49.566667,0.966667,1.08
+ Penly ,PENLY ,76630,76496,23,49.983333,1.233333,2.32
+ Le Petit-Quevilly ,LE PETIT QUEVILLY ,76140,76498,23,49.433333,1.033333,1.82
+ Petiville ,PETIVILLE ,76330,76499,23,49.466667,0.583333,1.57
+ Pierrecourt ,PIERRECOURT ,76340,76500,23,49.9,1.666667,2.04
+ Pierrefiques ,PIERREFIQUES ,76280,76501,23,49.683333,0.233333,2.2
+ Pierreval ,PIERREVAL ,76750,76502,23,49.55,1.25,1.68
+ Pissy-Pôville ,PISSY POVILLE ,76360,76503,23,49.533333,1,1.66
+ Pleine-Sève ,PLEINE SEVE ,76460,76504,23,49.816667,0.75,1.06
+ Pommereux ,POMMEREUX ,76440,76505,23,49.6,1.616667,1.89
+ Pommeréval ,POMMEREVAL ,76680,76506,23,49.733333,1.316667,1
+ Ponts-et-Marais ,PONTS ET MARAIS ,76260,76507,23,50.05,1.45,2.82
+ La Poterie-Cap-d'Antifer ,LA POTERIE CAP D,76280,76508,23,49.666667,0.183333,2.35
+ Préaux ,PREAUX ,76160,76509,23,49.483333,1.216667,1.44
+ Prétot-Vicquemare ,PRETOT VICQUEMARE ,76560,76510,23,49.733333,0.85,0.87
+ Preuseville ,PREUSEVILLE ,76660,76511,23,49.866667,1.516667,1.69
+ Puisenval ,PUISENVAL ,76660,76512,23,49.883333,1.466667,1.57
+ Quevillon ,QUEVILLON ,76840,76513,23,49.416667,0.95,1.95
+ Quévreville-la-Poterie ,QUEVREVILLE LA POTERIE ,76520,76514,23,49.35,1.2,2.45
+ Quiberville ,QUIBERVILLE ,76860,76515,23,49.9,0.916667,1.75
+ Quiévrecourt ,QUIEVRECOURT ,76270,76516,23,49.733333,1.416667,1.3
+ Quincampoix ,QUINCAMPOIX ,76230,76517,23,49.533333,1.183333,1.46
+ Raffetot ,RAFFETOT ,76210,76518,23,49.6,0.516667,1.36
+ Rainfreville ,RAINFREVILLE ,76730,76519,23,49.783333,0.933333,0.81
+ Réalcamp ,REALCAMP ,76340,76520,23,49.85,1.633333,1.94
+ Rebets ,REBETS ,76750,76521,23,49.5,1.383333,1.32
+ La Remuée ,LA REMUEE ,76430,76522,23,49.533333,0.4,1.71
+ Rétonval ,RETONVAL ,76340,76523,23,49.816667,1.6,1.84
+ Reuville ,REUVILLE ,76560,76524,23,49.75,0.866667,1.16
+ Ricarville ,RICARVILLE ,76640,76525,23,49.633333,0.6,1.12
+ Ricarville-du-Val ,RICARVILLE DU VAL ,76510,76526,23,49.816667,1.283333,1.4
+ Richemont ,RICHEMONT ,76390,76527,23,49.8,1.65,1.99
+ Rieux ,RIEUX ,76340,76528,23,49.933333,1.583333,1.94
+ Riville ,RIVILLE ,76540,76529,23,49.733333,0.566667,1.22
+ Robertot ,ROBERTOT ,76560,76530,23,49.716667,0.7,1.39
+ Rocquefort ,ROCQUEFORT ,76640,76531,23,49.666667,0.7,1.96
+ Rocquemont ,ROCQUEMONT ,76680,76532,23,49.6,1.283333,1.12
+ Rogerville ,ROGERVILLE ,76700,76533,23,49.5,0.266667,2.1
+ Rolleville ,ROLLEVILLE ,76133,76534,23,49.583333,0.216667,2.25
+ Roncherolles-en-Bray ,RONCHEROLLES EN BRAY ,76440,76535,23,49.616667,1.466667,1.45
+ Ronchois ,RONCHOIS ,76390,76537,23,49.716667,1.633333,1.94
+ Rosay ,ROSAY ,76680,76538,23,49.7,1.25,0.8
+ Rouelles ,ROUELLES ,76610,76539,23,49.516667,0.166667,2.4
+ Rouen ,ROUEN ,76100,76540,23,49.433333,1.083333,1.82
+ Roumare ,ROUMARE ,76480,76541,23,49.516667,0.966667,1.76
+ Routes ,ROUTES ,76560,76542,23,49.733333,0.75,0.67
+ Rouvray-Catillon ,ROUVRAY CATILLON ,76440,76544,23,49.566667,1.483333,1.49
+ Rouxmesnil-Bouteilles ,ROUXMESNIL BOUTEILLES ,76370,76545,23,49.9,1.083333,1.85
+ Royville ,ROYVILLE ,76730,76546,23,49.783333,0.95,0.81
+ La Rue-Saint-Pierre ,LA RUE SAINT PIERRE,76690,76547,23,49.566667,1.25,1.35
+ Ry ,RY ,76116,76548,23,49.483333,1.35,1.44
+ Saâne-Saint-Just ,SAANE SAINT JUST ,76730,76549,23,49.766667,0.933333,0.76
+ Sahurs ,SAHURS ,76113,76550,23,49.35,0.933333,2.45
+ Sainneville ,SAINNEVILLE ,76430,76551,23,49.55,0.283333,2.05
+ Sainte-Adresse ,SAINTE ADRESSE ,76310,76552,23,49.5,0.083333,2.65
+ Sainte-Agathe-d'Aliermont ,SAINTE AGATHE D ALIERMONT,76660,76553,23,49.833333,1.316667,1.41
+ Saint-Aignan-sur-Ry ,SAINT AIGNAN SUR RY,76116,76554,23,49.5,1.35,1.32
+ Saint-André-sur-Cailly ,SAINT ANDRE SUR CAILLY,76690,76555,23,49.55,1.216667,0.96
+ Saint-Antoine-la-Forêt ,SAINT ANTOINE LA FORET,76170,76556,23,49.533333,0.466667,1.51
+ Saint-Arnoult ,SAINT ARNOULT ,76490,76557,23,49.533333,0.666667,1.07
+ Saint-Aubin-Celloville ,SAINT AUBIN CELLOVILLE ,76520,76558,23,49.366667,1.166667,2.32
+ Saint-Aubin-de-Crétot ,SAINT AUBIN DE CRETOT,76190,76559,23,49.566667,0.633333,2.11
+ Saint-Aubin-Epinay ,SAINT AUBIN EPINAY ,76160,76560,23,49.416667,1.166667,1.95
+ Saint-Aubin-lès-Elbeuf ,SAINT AUBIN LES ELBEUF,76410,76561,23,49.3,1.016667,2.82
+ Saint-Aubin-le-Cauf ,SAINT AUBIN LE CAUF,76510,76562,23,49.866667,1.183333,1.51
+ Saint-Aubin-Routot ,SAINT AUBIN ROUTOT ,76430,76563,23,49.516667,0.333333,1.91
+ Saint-Aubin-sur-Mer ,SAINT AUBIN SUR MER,76740,76564,23,49.883333,0.883333,1.57
+ Saint-Aubin-sur-Scie ,SAINT AUBIN SUR SCIE,76550,76565,23,49.866667,1.066667,1.44
+ Sainte-Austreberthe ,SAINTE AUSTREBERTHE ,76570,76566,23,49.6,0.966667,0.57
+ Sainte-Beuve-en-Rivière ,SAINTE BEUVE EN RIVIERE,76270,76567,23,49.766667,1.533333,1.64
+ Saint-Clair-sur-les-Monts ,SAINT CLAIR SUR LES,76190,76568,23,49.6,0.8,0.57
+ Sainte-Colombe ,SAINTE COLOMBE ,76460,76569,23,49.8,0.766667,1.16
+ Saint-Crespin ,SAINT CRESPIN ,76590,76570,23,49.783333,1.116667,0.81
+ Sainte-Croix-sur-Buchy ,SAINTE CROIX SUR BUCHY,76750,76571,23,49.566667,1.35,1.1
+ Saint-Denis-d'Aclon ,SAINT DENIS D ACLON,76860,76572,23,49.866667,0.95,1.44
+ Saint-Denis-le-Thiboult ,SAINT DENIS LE THIBOULT,76116,76573,23,49.466667,1.366667,1.57
+ Saint-Denis-sur-Scie ,SAINT DENIS SUR SCIE,76890,76574,23,49.716667,1.1,1.46
+ Saint-Étienne-du-Rouvray ,SAINT ETIENNE DU ROUVRAY,76800,76575,23,49.383333,1.1,2.2
+ Saint-Eustache-la-Forêt ,SAINT EUSTACHE LA FORET,76210,76576,23,49.55,0.466667,1.51
+ Sainte-Foy ,SAINTE FOY ,76590,76577,23,49.8,1.133333,0.94
+ Saint-Georges-sur-Fontaine ,SAINT GEORGES SUR FONTAINE,76690,76580,23,49.55,1.183333,0.94
+ Saint-Germain-des-Essourts ,SAINT GERMAIN DES ESSOURTS,76750,76581,23,49.533333,1.316667,1.07
+ Saint-Germain-d'Étables ,SAINT GERMAIN D ETABLES,76590,76582,23,49.833333,1.183333,1.53
+ Saint-Germain-sous-Cailly ,SAINT GERMAIN SOUS CAILLY,76690,76583,23,49.583333,1.216667,0.73
+ Saint-Germain-sur-Eaulne ,SAINT GERMAIN SUR EAULNE,76270,76584,23,49.766667,1.516667,1.59
+ Saint-Gilles-de-Crétot ,SAINT GILLES DE CRETOT,76490,76585,23,49.566667,0.65,0.97
+ Saint-Gilles-de-la-Neuville ,SAINT GILLES DE LA,76430,76586,23,49.566667,0.383333,1.76
+ Sainte-Hélène-Bondeville ,SAINTE HELENE BONDEVILLE ,76400,76587,23,49.766667,0.466667,1.63
+ Saint-Hellier ,SAINT HELLIER ,76680,76588,23,49.733333,1.183333,1.9
+ Saint-Honoré ,SAINT HONORE ,76590,76589,23,49.783333,1.15,0.81
+ Saint-Jacques-d'Aliermont ,SAINT JACQUES D ALIERMONT,76510,76590,23,49.85,1.266667,1.31
+ Saint-Jacques-sur-Darnétal ,SAINT JACQUES SUR DARNETAL,76160,76591,23,49.433333,1.2,1.82
+ Saint-Jean-de-Folleville ,SAINT JEAN DE FOLLEVILLE,76170,76592,23,49.516667,0.5,1.41
+ Saint-Jean-de-la-Neuville ,SAINT JEAN DE LA,76210,76593,23,49.583333,0.416667,1.66
+ Saint-Jean-du-Cardonnay ,SAINT JEAN DU CARDONNAY,76150,76594,23,49.5,1.016667,1.32
+ Saint-Jouin-Bruneval ,SAINT JOUIN BRUNEVAL ,76280,76595,23,49.65,0.166667,2.4
+ Saint-Laurent-de-Brévedent ,SAINT LAURENT DE BREVEDENT,76700,76596,23,49.533333,0.25,2.15
+ Saint-Laurent-en-Caux ,SAINT LAURENT EN CAUX,76560,76597,23,49.75,0.883333,1.4
+ Saint-Léger-aux-Bois ,SAINT LEGER AUX BOIS,76340,76598,23,49.833333,1.616667,1.89
+ Saint-Léger-du-Bourg-Denis ,SAINT LEGER DU BOURG,76160,76599,23,49.433333,1.15,1.82
+ Saint-Léonard ,SAINT LEONARD ,76400,76600,23,49.75,0.366667,1.81
+ Saint-Lucien ,SAINT LUCIEN ,76780,76601,23,49.5,1.45,1.4
+ Saint-Maclou-de-Folleville ,SAINT MACLOU DE FOLLEVILLE,76890,76602,23,49.683333,1.1,1.32
+ Saint-Maclou-la-Brière ,SAINT MACLOU LA BRIERE,76110,76603,23,49.65,0.466667,1.51
+ Saint-Mards ,SAINT MARDS ,76730,76604,23,49.766667,1.016667,1.31
+ Morienne ,MORIENNE ,76390,76606,23,49.783333,1.716667,2.18
+ Sainte-Marguerite-sur-Fauville ,SAINTE MARGUERITE SUR FAUVILLE,76640,76607,23,49.666667,0.6,1.12
+ Sainte-Marguerite-sur-Duclair ,SAINTE MARGUERITE SUR DUCLAIR,76480,76608,23,49.516667,0.85,1.19
+ Sainte-Marie-au-Bosc ,SAINTE MARIE AU BOSC,76280,76609,23,49.666667,0.2,2.3
+ Sainte-Marie-des-Champs ,SAINTE MARIE DES CHAMPS,76190,76610,23,49.616667,0.783333,0.58
+ Saint-Martin-aux-Arbres ,SAINT MARTIN AUX ARBRES,76760,76611,23,49.65,0.883333,0.71
+ Saint-Martin-au-Bosc ,SAINT MARTIN AU BOSC,76340,76612,23,49.833333,1.666667,2.04
+ Saint-Martin-aux-Buneaux ,SAINT MARTIN AUX BUNEAUX,76450,76613,23,49.833333,0.55,1.65
+ Saint-Martin-de-Boscherville ,SAINT MARTIN DE BOSCHERVILLE,76840,76614,23,49.45,0.966667,1.69
+ Saint-Martin-du-Bec ,SAINT MARTIN DU BEC,76133,76615,23,49.6,0.2,2.3
+ Saint-Martin-du-Manoir ,SAINT MARTIN DU MANOIR,76290,76616,23,49.533333,0.233333,2.2
+ Saint-Martin-du-Vivier ,SAINT MARTIN DU VIVIER,76160,76617,23,49.466667,1.166667,1.57
+ Saint-Martin-en-Campagne ,SAINT MARTIN EN CAMPAGNE,76370,76618,23,49.95,1.233333,2.07
+ Saint-Martin-le-Gaillard ,SAINT MARTIN LE GAILLARD,76260,76619,23,49.983333,1.366667,2.32
+ Saint-Martin-l'Hortier ,SAINT MARTIN L HORTIER,76270,76620,23,49.75,1.4,1.25
+ Saint-Maurice-d'Ételan ,SAINT MAURICE D ETELAN,76330,76622,23,49.466667,0.616667,1.57
+ Saint-Nicolas-d'Aliermont ,SAINT NICOLAS D ALIERMONT,76510,76624,23,49.883333,1.216667,1.57
+ Saint-Nicolas-de-Bliquetuit ,SAINT NICOLAS DE BLIQUETUIT,76940,76625,23,49.516667,0.733333,1.51
+ Saint-Nicolas-de-la-Haie ,SAINT NICOLAS DE LA,76490,76626,23,49.55,0.616667,1.31
+ Saint-Nicolas-de-la-Taille ,SAINT NICOLAS DE LA,76170,76627,23,49.516667,0.466667,1.51
+ Saint-Ouen-du-Breuil ,SAINT OUEN DU BREUIL,76890,76628,23,49.633333,1.016667,0.86
+ Saint-Ouen-le-Mauger ,SAINT OUEN LE MAUGER,76730,76629,23,49.766667,0.966667,0.69
+ Saint-Ouen-sous-Bailly ,SAINT OUEN SOUS BAILLY,76630,76630,23,49.9,1.3,1.69
+ Saint-Paër ,SAINT PAER ,76480,76631,23,49.516667,0.883333,1.19
+ Saint-Pierre-Bénouville ,SAINT PIERRE BENOUVILLE ,76890,76632,23,49.75,0.966667,1.61
+ Saint-Pierre-de-Manneville ,SAINT PIERRE DE MANNEVILLE,76113,76634,23,49.4,0.933333,2.07
+ Saint-Pierre-des-Jonquières ,SAINT PIERRE DES JONQUIERES,76660,76635,23,49.85,1.45,1.4
+ Saint-Pierre-de-Varengeville ,SAINT PIERRE DE VARENGEVILLE,76480,76636,23,49.5,0.933333,1.32
+ Saint-Pierre-en-Port ,SAINT PIERRE EN PORT,76540,76637,23,49.8,0.483333,1.46
+ Saint-Pierre-en-Val ,SAINT PIERRE EN VAL,76260,76638,23,50.016667,1.45,2.57
+ Saint-Pierre-Lavis ,SAINT PIERRE LAVIS ,76640,76639,23,49.666667,0.633333,1.02
+ Saint-Pierre-lès-Elbeuf ,SAINT PIERRE LES ELBEUF,76320,76640,23,49.266667,1.05,-1
+ Saint-Pierre-le-Vieux ,SAINT PIERRE LE VIEUX,76740,76641,23,49.85,0.866667,1.31
+ Saint-Pierre-le-Viger ,SAINT PIERRE LE VIGER,76740,76642,23,49.816667,0.85,1.06
+ Saint-Quentin-au-Bosc ,SAINT QUENTIN AU BOSC,76630,76643,23,49.933333,1.333333,1.94
+ Saint-Rémy-Boscrocourt ,SAINT REMY BOSCROCOURT ,76260,76644,23,50.016667,1.4,2.57
+ Saint-Riquier-en-Rivière ,SAINT RIQUIER EN RIVIERE,76340,76645,23,49.883333,1.566667,1.74
+ Saint-Riquier-ès-Plains ,SAINT RIQUIER ES PLAINS,76460,76646,23,49.816667,0.666667,1.63
+ Saint-Romain-de-Colbosc ,SAINT ROMAIN DE COLBOSC,76430,76647,23,49.533333,0.366667,1.81
+ Saint-Saëns ,SAINT SAENS ,76680,76648,23,49.666667,1.283333,0.9
+ Saint-Saire ,SAINT SAIRE ,76270,76649,23,49.7,1.5,1.54
+ Saint-Sauveur-d'Émalleville ,SAINT SAUVEUR D EMALLEVILLE,76110,76650,23,49.6,0.3,2.05
+ Saint-Sylvain ,SAINT SYLVAIN ,76460,76651,23,49.85,0.666667,1.68
+ Saint-Vaast-d'Équiqueville ,SAINT VAAST D EQUIQUEVILLE,76510,76652,23,49.816667,1.266667,1.08
+ Saint-Vaast-Dieppedalle ,SAINT VAAST DIEPPEDALLE ,76450,76653,23,49.75,0.716667,1.45
+ Saint-Vaast-du-Val ,SAINT VAAST DU VAL,76890,76654,23,49.683333,1.016667,0.16
+ Saint-Valéry-en-Caux ,SAINT VALERY EN CAUX,76460,76655,23,49.866667,0.733333,1.44
+ Saint-Victor-l'Abbaye ,SAINT VICTOR L ABBAYE,76890,76656,23,49.666667,1.116667,1.64
+ Saint-Vigor-d'Ymonville ,SAINT VIGOR D YMONVILLE,76430,76657,23,49.5,0.366667,1.81
+ Saint-Vincent-Cramesnil ,SAINT VINCENT CRAMESNIL ,76430,76658,23,49.5,0.366667,1.81
+ Saint-Wandrille-Rançon ,SAINT WANDRILLE RANCON ,76490,76659,23,49.533333,0.766667,1.95
+ Sandouville ,SANDOUVILLE ,76430,76660,23,49.5,0.316667,1.96
+ Sassetot-le-Malgardé ,SASSETOT LE MALGARDE ,76730,76662,23,49.766667,0.9,1.37
+ Sasseville ,SASSEVILLE ,76450,76664,23,49.783333,0.683333,0.87
+ Sauchay ,SAUCHAY ,76630,76665,23,49.933333,1.2,1.94
+ Saumont-la-Poterie ,SAUMONT LA POTERIE ,76440,76666,23,49.583333,1.616667,1.89
+ Sauqueville ,SAUQUEVILLE ,76550,76667,23,49.85,1.066667,1.31
+ Saussay ,SAUSSAY ,76760,76668,23,49.633333,0.933333,1.28
+ Senneville-sur-Fécamp ,SENNEVILLE SUR FECAMP ,76400,76670,23,49.766667,0.416667,1.66
+ Sept-Meules ,SEPT MEULES ,76260,76671,23,49.95,1.416667,2.07
+ Serqueux ,SERQUEUX ,76440,76672,23,49.633333,1.55,1.69
+ Servaville-Salmonville ,SERVAVILLE SALMONVILLE ,76116,76673,23,49.483333,1.266667,1.44
+ Sévis ,SEVIS ,76850,76674,23,49.7,1.166667,1.04
+ Sierville ,SIERVILLE ,76690,76675,23,49.583333,1.033333,2.45
+ Sigy-en-Bray ,SIGY EN BRAY ,76780,76676,23,49.55,1.5,1.54
+ Smermesnil ,SMERMESNIL ,76660,76677,23,49.833333,1.483333,1.49
+ Sommery ,SOMMERY ,76440,76678,23,49.633333,1.433333,1.75
+ Sommesnil ,SOMMESNIL ,76560,76679,23,49.716667,0.666667,1.89
+ Sorquainville ,SORQUAINVILLE ,76540,76680,23,49.7,0.55,1.42
+ Sotteville-lès-Rouen ,SOTTEVILLE LES ROUEN ,76300,76681,23,49.416667,1.1,1.95
+ Sotteville-sous-le-Val ,SOTTEVILLE SOUS LE VAL,76410,76682,23,49.316667,1.133333,2.7
+ Sotteville-sur-Mer ,SOTTEVILLE SUR MER ,76740,76683,23,49.883333,0.833333,1.57
+ Tancarville ,TANCARVILLE ,76430,76684,23,49.483333,0.466667,2.32
+ Thérouldeville ,THEROULDEVILLE ,76540,76685,23,49.766667,0.516667,1.36
+ Theuville-aux-Maillots ,THEUVILLE AUX MAILLOTS ,76540,76686,23,49.766667,0.55,1.27
+ Thiergeville ,THIERGEVILLE ,76540,76688,23,49.716667,0.516667,1.36
+ Thiétreville ,THIETREVILLE ,76540,76689,23,49.716667,0.516667,1.36
+ Thil-Manneville ,THIL MANNEVILLE ,76730,76690,23,49.833333,0.983333,1.19
+ Le Thil-Riberpré ,LE THIL RIBERPRE ,76440,76691,23,49.65,1.583333,1.79
+ Thiouville ,THIOUVILLE ,76450,76692,23,49.7,0.616667,1.43
+ Le Tilleul ,LE TILLEUL ,76790,76693,23,49.683333,0.2,2.3
+ Tocqueville-en-Caux ,TOCQUEVILLE EN CAUX ,76730,76694,23,49.783333,0.9,1.28
+ Tocqueville-les-Murs ,TOCQUEVILLE LES MURS ,76110,76695,23,49.666667,0.5,1.53
+ Tocqueville-sur-Eu ,TOCQUEVILLE SUR EU ,76910,76696,23,50,1.283333,2.44
+ Torcy-le-Grand ,TORCY LE GRAND ,76590,76697,23,49.8,1.183333,1.33
+ Torcy-le-Petit ,TORCY LE PETIT ,76590,76698,23,49.816667,1.183333,1.39
+ Le Torp-Mesnil ,LE TORP MESNIL ,76560,76699,23,49.716667,0.9,1.61
+ Tôtes ,TOTES ,76890,76700,23,49.683333,1.05,0.44
+ Touffreville-la-Cable ,TOUFFREVILLE LA CABLE ,76170,76701,23,49.516667,0.616667,1.24
+ Touffreville-la-Corbeline ,TOUFFREVILLE LA CORBELINE ,76190,76702,23,49.583333,0.766667,0.69
+ Touffreville-sur-Eu ,TOUFFREVILLE SUR EU ,76910,76703,23,50,1.316667,2.44
+ Tourville-la-Chapelle ,TOURVILLE LA CHAPELLE ,76630,76704,23,49.95,1.266667,2.07
+ Tourville-la-Rivière ,TOURVILLE LA RIVIERE ,76410,76705,23,49.333333,1.1,2.57
+ Tourville-les-Ifs ,TOURVILLE LES IFS ,76400,76706,23,49.716667,0.4,1.71
+ Tourville-sur-Arques ,TOURVILLE SUR ARQUES ,76550,76707,23,49.85,1.1,1.31
+ Toussaint ,TOUSSAINT ,76400,76708,23,49.733333,0.433333,1.61
+ Le Trait ,LE TRAIT ,76580,76709,23,49.466667,0.816667,1.57
+ Trémauville ,TREMAUVILLE ,76640,76710,23,49.666667,0.516667,1.72
+ Le Tréport ,LE TREPORT ,76470,76711,23,50.066667,1.366667,2.94
+ La Trinité-du-Mont ,LA TRINITE DU MONT,76170,76712,23,49.55,0.55,1.27
+ Triquerville ,TRIQUERVILLE ,76170,76713,23,49.5,0.633333,1.58
+ Les Trois Pierres ,LES TROIS PIERRES ,76430,76714,23,49.55,0.416667,1.66
+ Turretot ,TURRETOT ,76280,76716,23,49.616667,0.233333,2.2
+ Val-de-la-Haye ,VAL DE LA HAYE,76380,76717,23,49.383333,1,2.2
+ Valliquerville ,VALLIQUERVILLE ,76190,76718,23,49.616667,0.683333,1.25
+ Valmont ,VALMONT ,76540,76719,23,49.733333,0.516667,1.36
+ Varengeville-sur-Mer ,VARENGEVILLE SUR MER ,76119,76720,23,49.916667,0.983333,1.82
+ Varneville-Bretteville ,VARNEVILLE BRETTEVILLE ,76890,76721,23,49.65,1.05,0.7
+ Vatierville ,VATIERVILLE ,76270,76724,23,49.783333,1.5,1.54
+ Vattetot-sous-Beaumont ,VATTETOT SOUS BEAUMONT ,76110,76725,23,49.633333,0.45,1.56
+ Vattetot-sur-Mer ,VATTETOT SUR MER ,76111,76726,23,49.733333,0.283333,2.05
+ La Vaupalière ,LA VAUPALIERE ,76150,76728,23,49.483333,1.016667,1.44
+ Veauville-les-Baons ,VEAUVILLE LES BAONS ,76190,76729,23,49.65,0.766667,0.65
+ Vénestanville ,VENESTANVILLE ,76730,76731,23,49.8,0.9,1.28
+ Ventes-Saint-Rémy ,VENTES SAINT REMY ,76680,76733,23,49.7,1.3,0.95
+ Vergetot ,VERGETOT ,76280,76734,23,49.616667,0.283333,2.05
+ Veules-les-Roses ,VEULES LES ROSES ,76980,76735,23,49.866667,0.8,1.44
+ Veulettes-sur-Mer ,VEULETTES SUR MER ,76450,76736,23,49.85,0.6,1.31
+ Vibeuf ,VIBEUF ,76760,76737,23,49.7,0.9,0.86
+ Vieux-Manoir ,VIEUX MANOIR ,76750,76738,23,49.566667,1.3,0.95
+ Vieux-Rouen-sur-Bresle ,VIEUX ROUEN SUR BRESLE,76390,76739,23,49.833333,1.716667,2.18
+ La Vieux-Rue ,LA VIEUX RUE ,76160,76740,23,49.5,1.25,1.44
+ Villainville ,VILLAINVILLE ,76280,76741,23,49.65,0.25,2.15
+ Villequier ,VILLEQUIER ,76490,76742,23,49.516667,0.666667,1.19
+ Villers-Écalles ,VILLERS ECALLES ,76360,76743,23,49.533333,0.916667,1.07
+ Villers-sous-Foucarmont ,VILLERS SOUS FOUCARMONT ,76340,76744,23,49.833333,1.566667,1.74
+ Villy-le-Bas ,VILLY LE BAS ,76260,76745,23,49.933333,1.45,1.94
+ Vinnemerville ,VINNEMERVILLE ,76540,76746,23,49.8,0.533333,1.31
+ Virville ,VIRVILLE ,76110,76747,23,49.583333,0.35,1.86
+ Vittefleur ,VITTEFLEUR ,76450,76748,23,49.816667,0.65,1.06
+ Wanchy-Capval ,WANCHY CAPVAL ,76660,76749,23,49.85,1.366667,1.31
+ Yainville ,YAINVILLE ,76480,76750,23,49.45,0.833333,1.69
+ Yébleron ,YEBLERON ,76640,76751,23,49.633333,0.533333,1.39
+ Yerville ,YERVILLE ,76760,76752,23,49.666667,0.9,0.23
+ Ymare ,YMARE ,76520,76753,23,49.35,1.183333,2.45
+ Yport ,YPORT ,76111,76754,23,49.733333,0.316667,1.96
+ Ypreville-Biville ,YPREVILLE BIVILLE ,76540,76755,23,49.7,0.533333,1.31
+ Yquebeuf ,YQUEBEUF ,76690,76756,23,49.6,1.25,1.33
+ Yvecrique ,YVECRIQUE ,76560,76757,23,49.683333,0.816667,0.74
+ Yvetot ,YVETOT ,76190,76758,23,49.616667,0.766667,0.62
+ Yville-sur-Seine ,YVILLE SUR SEINE ,76530,76759,23,49.4,0.883333,2.07
+ Ypreville ,YPREVILLE ,76540,76900,23,49.766667,0.483333,1.46
+ Les Essarts ,LES ESSARTS ,76530,76904,23,49.283333,0.941667,-1
+ Les Grandes Dalles ,LES GRANDES DALLES ,76540,76905,23,49.816667,0.516667,1.36
+ Les Petites-Dalles ,LES PETITES DALLES ,76540,76906,23,49.816667,0.533333,1.31
+ Bapeaume-les-Rouen ,BAPEAUME LES ROUEN ,76380,76920,23,49.45,1.033333,1.69
+ Achères-la-Forêt ,ACHERES LA FORET ,77760,77001,11,48.35,2.566667,1.68
+ Amillis ,AMILLIS ,77120,77002,11,48.733333,3.133333,1.34
+ Amponville ,AMPONVILLE ,77760,77003,11,48.283333,2.533333,1.84
+ Andrezel ,ANDREZEL ,77390,77004,11,48.6,2.816667,0.61
+ Annet-sur-Marne ,ANNET SUR MARNE ,77410,77005,11,48.916667,2.716667,1.19
+ Argentières ,ARGENTIERES ,77390,77007,11,48.65,2.866667,1.08
+ Armentières-en-Brie ,ARMENTIERES EN BRIE ,77440,77008,11,48.983333,3.016667,1.49
+ Arville ,ARVILLE ,77890,77009,11,48.183333,2.55,2.19
+ Aufferville ,AUFFERVILLE ,77570,77011,11,48.216667,2.616667,2.04
+ Augers-en-Brie ,AUGERS EN BRIE ,77560,77012,11,48.683333,3.35,2.07
+ Aulnoy ,AULNOY ,77120,77013,11,48.85,3.1,1.1
+ Avon ,AVON ,77210,77014,11,48.4,2.716667,1.19
+ Baby ,BABY ,77480,77015,11,48.4,3.333333,1.99
+ Bagneaux-sur-Loing ,BAGNEAUX SUR LOING ,77167,77016,11,48.233333,2.7,1.96
+ Bailly-Carrois ,BAILLY CARROIS ,77720,77017,11,48.583333,2.983333,1.62
+ Bailly-Romainvilliers ,BAILLY ROMAINVILLIERS ,77700,77018,11,48.833333,2.816667,1.31
+ Balloy ,BALLOY ,77118,77019,11,48.4,3.133333,1.19
+ Barbey ,BARBEY ,77130,77021,11,48.366667,3.05,1.35
+ Barbizon ,BARBIZON ,77630,77022,11,48.45,2.6,1.52
+ Barcy ,BARCY ,77910,77023,11,49.016667,2.883333,1.65
+ Bassevelle ,BASSEVELLE ,77750,77024,11,48.933333,3.283333,1.75
+ Bazoches-lès-Bray ,BAZOCHES LES BRAY ,77118,77025,11,48.4,3.183333,1.5
+ Beautheil ,BEAUTHEIL ,77120,77028,11,48.75,3.083333,0.79
+ Beauvoir ,BEAUVOIR ,77390,77029,11,48.633333,2.866667,1.04
+ Bellot ,BELLOT ,77510,77030,11,48.85,3.316667,1.91
+ Beton-Bazoches ,BETON BAZOCHES ,77320,77032,11,48.7,3.25,1.59
+ Bézalles ,BEZALLES ,77970,77033,11,48.683333,3.233333,1.51
+ Blandy ,BLANDY ,77115,77034,11,48.566667,2.783333,1
+ Blennes ,BLENNES ,77940,77035,11,48.25,3.016667,1.88
+ Boisdon ,BOISDON ,77970,77036,11,48.683333,3.216667,1.43
+ Bois-le-Roi ,BOIS LE ROI ,77590,77037,11,48.466667,2.7,1.04
+ Boissettes ,BOISSETTES ,77350,77038,11,48.516667,2.616667,1.44
+ Boissise-la-Bertrand ,BOISSISE LA BERTRAND ,77350,77039,11,48.516667,2.583333,1.6
+ Boissise-le-Roi ,BOISSISE LE ROI ,77310,77040,11,48.533333,2.566667,1.68
+ Boissy-aux-Cailles ,BOISSY AUX CAILLES ,77760,77041,11,48.316667,2.5,2
+ Boissy-le-Châtel ,BOISSY LE CHATEL ,77169,77042,11,48.816667,3.133333,1.09
+ Boitron ,BOITRON ,77750,77043,11,48.9,3.266667,1.67
+ Bombon ,BOMBON ,77720,77044,11,48.566667,2.85,0.79
+ Bougligny ,BOUGLIGNY ,77570,77045,11,48.2,2.65,2.11
+ Boulancourt ,BOULANCOURT ,77760,77046,11,48.25,2.433333,2.32
+ Bouleurs ,BOULEURS ,77580,77047,11,48.883333,2.916667,1.03
+ Bourron-Marlotte ,BOURRON MARLOTTE ,77780,77048,11,48.333333,2.7,1.5
+ Boutigny ,BOUTIGNY ,77470,77049,11,48.916667,2.933333,1.21
+ Bransles ,BRANSLES ,77620,77050,11,48.15,2.833333,2.35
+ Bray-sur-Seine ,BRAY SUR SEINE ,77480,77051,11,48.416667,3.233333,1.51
+ Brie-Comte-Robert ,BRIE COMTE ROBERT ,77170,77053,11,48.683333,2.616667,1.44
+ La Brosse-Montceaux ,LA BROSSE MONTCEAUX ,77940,77054,11,48.333333,3.016667,1.5
+ Brou-sur-Chantereine ,BROU SUR CHANTEREINE ,77177,77055,11,48.883333,2.633333,1.36
+ Burcy ,BURCY ,77890,77056,11,48.233333,2.516667,1.96
+ Bussières ,BUSSIERES ,77750,77057,11,48.933333,3.233333,1.51
+ Bussy-Saint-Georges ,BUSSY SAINT GEORGES ,77600,77058,11,48.85,2.7,1.04
+ Bussy-Saint-Martin ,BUSSY SAINT MARTIN ,77600,77059,11,48.85,2.683333,1.16
+ Buthiers ,BUTHIERS ,77760,77060,11,48.283333,2.433333,2.32
+ Carnetin ,CARNETIN ,77400,77062,11,48.9,2.716667,1.17
+ La Celle-sur-Morin ,LA CELLE SUR MORIN,77515,77063,11,48.816667,2.966667,1.2
+ La Celle-sur-Seine ,LA CELLE SUR SEINE,77670,77064,11,48.4,2.816667,1.19
+ Cerneux ,CERNEUX ,77320,77066,11,48.683333,3.35,2.07
+ Cesson ,CESSON ,77240,77067,11,48.566667,2.6,1.52
+ Cessoy-en-Montois ,CESSOY EN MONTOIS ,77520,77068,11,48.5,3.15,1.11
+ Chailly-en-Bière ,CHAILLY EN BIERE ,77930,77069,11,48.466667,2.583333,1.6
+ Chailly-en-Brie ,CHAILLY EN BRIE ,77120,77070,11,48.783333,3.116667,0.95
+ Chaintreaux ,CHAINTREAUX ,77460,77071,11,48.2,2.816667,2.11
+ Chalautre-la-Grande ,CHALAUTRE LA GRANDE ,77171,77072,11,48.533333,3.45,2.55
+ Chalautre-la-Petite ,CHALAUTRE LA PETITE ,77160,77073,11,48.533333,3.316667,1.91
+ Chalautre-la-Reposte ,CHALAUTRE LA REPOSTE ,77520,77074,11,48.483333,3.1,0.98
+ Chalifert ,CHALIFERT ,77144,77075,11,48.883333,2.766667,1.03
+ Chalmaison ,CHALMAISON ,77650,77076,11,48.483333,3.25,1.59
+ Chambry ,CHAMBRY ,77910,77077,11,49,2.9,1.57
+ Chamigny ,CHAMIGNY ,77260,77078,11,48.983333,3.15,1.49
+ Champagne-sur-Seine ,CHAMPAGNE SUR SEINE ,77430,77079,11,48.4,2.8,1.19
+ Champcenest ,CHAMPCENEST ,77560,77080,11,48.666667,3.283333,1.75
+ Champdeuil ,CHAMPDEUIL ,77390,77081,11,48.616667,2.733333,1.32
+ Champeaux ,CHAMPEAUX ,77720,77082,11,48.583333,2.8,1.66
+ Champs-Sur-Marne ,CHAMPS SUR MARNE ,77420,77083,11,48.85,2.6,1.52
+ Changis-sur-Marne ,CHANGIS SUR MARNE ,77660,77084,11,48.966667,3.033333,1.42
+ La Chapelle-Gauthier ,LA CHAPELLE GAUTHIER ,77720,77086,11,48.55,2.9,0.51
+ La Chapelle-Iger ,LA CHAPELLE IGER ,77540,77087,11,48.65,2.983333,1.01
+ La Chapelle-la-Reine ,LA CHAPELLE LA REINE,77760,77088,11,48.316667,2.583333,1.6
+ La Chapelle-Rablais ,LA CHAPELLE RABLAIS ,77370,77089,11,48.516667,2.966667,1.55
+ La Chapelle-Saint-Sulpice ,LA CHAPELLE SAINT SULPICE,77160,77090,11,48.55,3.183333,1.36
+ Les Chapelles-Bourbon ,LES CHAPELLES BOURBON ,77610,77091,11,48.733333,2.833333,0.67
+ La Chapelle-sur-Crécy ,LA CHAPELLE SUR CRECY,77580,77092,11,48.866667,2.933333,0.96
+ Charmentray ,CHARMENTRAY ,77410,77094,11,48.95,2.783333,1.34
+ Charny ,CHARNY ,77410,77095,11,48.966667,2.766667,1.42
+ Chartrettes ,CHARTRETTES ,77590,77096,11,48.483333,2.7,1.04
+ Chartronges ,CHARTRONGES ,77320,77097,11,48.733333,3.266667,1.67
+ Châteaubleau ,CHATEAUBLEAU ,77370,77098,11,48.583333,3.1,0.87
+ Château-Landon ,CHATEAU LANDON ,77570,77099,11,48.15,2.7,2.35
+ Le Châtelet-en-Brie ,LE CHATELET EN BRIE,77820,77100,11,48.5,2.8,0.73
+ Châtenay-sur-Seine ,CHATENAY SUR SEINE ,77126,77101,11,48.416667,3.1,1.12
+ Châtenoy ,CHATENOY ,77167,77102,11,48.233333,2.633333,1.96
+ Châtillon-la-Borde ,CHATILLON LA BORDE ,77820,77103,11,48.533333,2.8,1
+ Châtres ,CHATRES ,77610,77104,11,48.7,2.816667,1.44
+ Chauconin ,CHAUCONIN ,77124,77105,11,48.966667,2.85,1.42
+ Chauffry ,CHAUFFRY ,77169,77106,11,48.816667,3.183333,1.27
+ Chaumes-en-Brie ,CHAUMES EN BRIE ,77390,77107,11,48.666667,2.85,0.95
+ Chelles ,CHELLES ,77500,77108,11,48.883333,2.6,1.52
+ Chenoise ,CHENOISE ,77160,77109,11,48.616667,3.2,1.35
+ Chenou ,CHENOU ,77570,77110,11,48.166667,2.65,2.27
+ Chessy ,CHESSY ,77700,77111,11,48.883333,2.766667,1.16
+ Chevrainvilliers ,CHEVRAINVILLIERS ,77760,77112,11,48.25,2.616667,1.88
+ Chevru ,CHEVRU ,77320,77113,11,48.733333,3.2,1.37
+ Chevry-Cossigny ,CHEVRY COSSIGNY ,77173,77114,11,48.716667,2.666667,1.2
+ Chevry-en-Sereine ,CHEVRY EN SEREINE ,77710,77115,11,48.25,2.95,1.88
+ Choisy-en-Brie ,CHOISY EN BRIE ,77320,77116,11,48.766667,3.216667,1.43
+ Citry ,CITRY ,77730,77117,11,48.966667,3.25,1.69
+ Claye-Souilly ,CLAYE SOUILLY ,77410,77118,11,48.95,2.7,1.34
+ Cocherel ,COCHEREL ,77440,77120,11,49.016667,3.1,1.65
+ Collégien ,COLLEGIEN ,77090,77121,11,48.833333,2.666667,1.2
+ Combs-la-Ville ,COMBS LA VILLE ,77380,77122,11,48.666667,2.566667,1.68
+ Compans ,COMPANS ,77290,77123,11,49,2.666667,1.57
+ Condé-Sainte-Libiaire ,CONDE SAINTE LIBIAIRE ,77450,77125,11,48.9,2.833333,1.11
+ Coubert ,COUBERT ,77170,77127,11,48.666667,2.7,1.45
+ Couilly-Pont-aux-Dames ,COUILLY PONT AUX DAMES,77860,77128,11,48.883333,2.866667,1.03
+ Coulommes ,COULOMMES ,77580,77130,11,48.9,2.933333,1.11
+ Coulommiers ,COULOMMIERS ,77120,77131,11,48.816667,3.083333,0.79
+ Coupvray ,COUPVRAY ,77700,77132,11,48.9,2.8,1.13
+ Courchamp ,COURCHAMP ,77560,77134,11,48.633333,3.283333,1.75
+ Courpalay ,COURPALAY ,77540,77135,11,48.65,2.95,1.21
+ Courquetaine ,COURQUETAINE ,77390,77136,11,48.683333,2.75,1.32
+ Courtacon ,COURTACON ,77560,77137,11,48.7,3.283333,1.75
+ Courtomer ,COURTOMER ,77390,77138,11,48.65,2.9,1.65
+ Courtry ,COURTRY ,77181,77139,11,48.533333,2.766667,1
+ Coutençon ,COUTENCON ,77154,77140,11,48.466667,3,1
+ Coutevroult ,COUTEVROULT ,77580,77141,11,48.866667,2.85,1.89
+ Crégy-lès-Meaux ,CREGY LES MEAUX ,77124,77143,11,48.983333,2.883333,1.49
+ Crèvecoeur-en Brie ,CREVECOEUR EN BRIE ,77610,77144,11,48.75,2.9,1.32
+ Crisenoy ,CRISENOY ,77390,77145,11,48.6,2.75,1.15
+ Croissy-Beaubourg ,CROISSY BEAUBOURG ,77183,77146,11,48.833333,2.666667,1.2
+ La Croix-en-Brie ,LA CROIX EN BRIE,77370,77147,11,48.583333,3.066667,0.71
+ Crouy-sur-Ourcq ,CROUY SUR OURCQ ,77840,77148,11,49.083333,3.066667,1.95
+ Cucharmoy ,CUCHARMOY ,77160,77149,11,48.583333,3.183333,1.32
+ Cuisy ,CUISY ,77165,77150,11,49.016667,2.766667,1.65
+ Dagny ,DAGNY ,77320,77151,11,48.716667,3.166667,1.76
+ Dammartin-en-Goële ,DAMMARTIN EN GOELE ,77230,77153,11,49.05,2.683333,1.8
+ Dammartin-sur-Tigeaux ,DAMMARTIN SUR TIGEAUX ,77163,77154,11,48.816667,2.933333,0.73
+ Dampmart ,DAMPMART ,77400,77155,11,48.883333,2.733333,1.32
+ Darvault ,DARVAULT ,77140,77156,11,48.266667,2.733333,1.81
+ Dhuisy ,DHUISY ,77440,77157,11,49.033333,3.166667,2.47
+ Diant ,DIANT ,77940,77158,11,48.283333,2.983333,1.73
+ Dormelles ,DORMELLES ,77130,77161,11,48.316667,2.9,1.58
+ Doue ,DOUE ,77510,77162,11,48.866667,3.15,2.12
+ Douy-la-Ramée ,DOUY LA RAMEE ,77139,77163,11,49.066667,2.883333,1.88
+ Échouboulains ,ECHOUBOULAINS ,77830,77164,11,48.466667,2.95,1.44
+ Les Écrennes ,LES ECRENNES ,77820,77165,11,48.5,2.85,1.27
+ Écuelles ,ECUELLES ,77250,77166,11,48.35,2.816667,1.42
+ Égligny ,EGLIGNY ,77126,77167,11,48.433333,3.116667,1.04
+ Égreville ,EGREVILLE ,77620,77168,11,48.166667,2.866667,2.27
+ Émerainville ,EMERAINVILLE ,77184,77169,11,48.816667,2.616667,1.44
+ Épisy ,EPISY ,77250,77170,11,48.333333,2.783333,1.5
+ Esbly ,ESBLY ,77450,77171,11,48.9,2.816667,1.11
+ Esmans ,ESMANS ,77940,77172,11,48.35,2.966667,1.42
+ Étrépilly ,ETREPILLY ,77139,77173,11,49.033333,2.933333,1.72
+ Éverly ,EVERLY ,77157,77174,11,48.466667,3.25,1.59
+ Faremoutiers ,FAREMOUTIERS ,77515,77176,11,48.8,3,0.65
+ Favières ,FAVIERES ,77220,77177,11,48.766667,2.783333,1.74
+ Fay-lès-Nemours ,FAY LES NEMOURS ,77167,77178,11,48.233333,2.666667,1.96
+ Féricy ,FERICY ,77133,77179,11,48.45,2.8,1
+ Férolles-Attilly ,FEROLLES ATTILLY ,77150,77180,11,48.733333,2.633333,1.36
+ La Ferté-Gaucher ,LA FERTE GAUCHER ,77320,77182,11,48.783333,3.3,1.83
+ La Ferté-sous-Jouarre ,LA FERTE SOUS JOUARRE,77260,77183,11,48.95,3.133333,1.34
+ Flagy ,FLAGY ,77940,77184,11,48.316667,2.916667,1.58
+ Fleury-en-Bière ,FLEURY EN BIERE ,77930,77185,11,48.45,2.55,1.76
+ Fontainebleau ,FONTAINEBLEAU ,77300,77186,11,48.4,2.7,1.19
+ Fontaine-Fourches ,FONTAINE FOURCHES ,77480,77187,11,48.416667,3.383333,2.23
+ Fontaine-le-Port ,FONTAINE LE PORT ,77590,77188,11,48.483333,2.766667,1.45
+ Fontains ,FONTAINS ,77370,77190,11,48.533333,3,0.98
+ Fontenailles ,FONTENAILLES ,77370,77191,11,48.55,2.95,1.63
+ Fontenay-Trésigny ,FONTENAY TRESIGNY ,77610,77192,11,48.7,2.866667,0.91
+ Forfry ,FORFRY ,77165,77193,11,49.05,2.85,1.8
+ Forges ,FORGES ,77130,77194,11,48.416667,2.95,1.12
+ Fouju ,FOUJU ,77390,77195,11,48.583333,2.783333,0.96
+ Fresnes-sur-Marne ,FRESNES SUR MARNE ,77410,77196,11,48.933333,2.733333,1.26
+ Frétoy ,FRETOY ,77320,77197,11,48.7,3.2,1.49
+ Fromont ,FROMONT ,77760,77198,11,48.25,2.5,2
+ Fublaines ,FUBLAINES ,77470,77199,11,48.933333,2.95,1.26
+ Garentreville ,GARENTREVILLE ,77890,77200,11,48.233333,2.55,1.96
+ Gastins ,GASTINS ,77370,77201,11,48.633333,3.016667,1.19
+ La Genevraye ,LA GENEVRAYE ,77690,77202,11,48.316667,2.75,1.58
+ Germigny-l'Evêque ,GERMIGNY L EVEQUE ,77910,77203,11,49,2.95,1.57
+ Germigny-sous-Coulombs ,GERMIGNY SOUS COULOMBS ,77840,77204,11,49.066667,3.166667,1.88
+ Gesvres-le-Chapitre ,GESVRES LE CHAPITRE ,77165,77205,11,49.05,2.85,1.8
+ Giremoutiers ,GIREMOUTIERS ,77120,77206,11,48.85,3.033333,1.38
+ Gironville ,GIRONVILLE ,77890,77207,11,48.183333,2.533333,2.19
+ Gouaix ,GOUAIX ,77114,77208,11,48.483333,3.283333,1.75
+ Gouvernes ,GOUVERNES ,77400,77209,11,48.866667,2.7,1.04
+ La Grande-Paroisse ,LA GRANDE PAROISSE ,77130,77210,11,48.383333,2.9,1.27
+ Gravon ,GRAVON ,77118,77212,11,48.4,3.116667,1.19
+ Gressy ,GRESSY ,77410,77214,11,48.966667,2.666667,1.42
+ Gretz-Armainvilliers ,GRETZ ARMAINVILLIERS ,77220,77215,11,48.733333,2.733333,1.07
+ Grez-sur-Loing ,GREZ SUR LOING ,77880,77216,11,48.316667,2.7,1.58
+ Grisy-Suisnes ,GRISY SUISNES ,77166,77217,11,48.683333,2.666667,1.2
+ Grisy-sur-Seine ,GRISY SUR SEINE ,77480,77218,11,48.433333,3.316667,1.91
+ Guérard ,GUERARD ,77580,77219,11,48.816667,2.966667,1.24
+ Guercheville ,GUERCHEVILLE ,77760,77220,11,48.25,2.55,1.88
+ Guermantes ,GUERMANTES ,77600,77221,11,48.85,2.7,1.04
+ Gurcy-le-Châtel ,GURCY LE CHATEL ,77520,77223,11,48.466667,3.1,1.01
+ Hautefeuille ,HAUTEFEUILLE ,77515,77224,11,48.766667,2.966667,1.41
+ La Haute-Maison ,LA HAUTE MAISON ,77580,77225,11,48.883333,3,1.14
+ Héricy ,HERICY ,77850,77226,11,48.45,2.766667,0.96
+ Hermé ,HERME ,77114,77227,11,48.483333,3.333333,1.99
+ Hondevilliers ,HONDEVILLIERS ,77510,77228,11,48.9,3.316667,1.91
+ La Houssaye-en-Brie ,LA HOUSSAYE EN BRIE,77610,77229,11,48.75,2.866667,0.6
+ Ichy ,ICHY ,77890,77230,11,48.2,2.55,2.11
+ Isles-les-Meldeuses ,ISLES LES MELDEUSES ,77440,77231,11,49,3.016667,1.57
+ Isles-lès-Villenoy ,ISLES LES VILLENOY ,77450,77232,11,48.916667,2.833333,1.19
+ Iverny ,IVERNY ,77165,77233,11,49,2.783333,1.57
+ Jablines ,JABLINES ,77450,77234,11,48.916667,2.766667,1.5
+ Jaignes ,JAIGNES ,77440,77235,11,49,3.05,1.57
+ Jaulnes ,JAULNES ,77480,77236,11,48.416667,3.266667,1.67
+ Jossigny ,JOSSIGNY ,77600,77237,11,48.833333,2.75,1.99
+ Jouarre ,JOUARRE ,77640,77238,11,48.933333,3.133333,1.26
+ Jouy-le-Châtel ,JOUY LE CHATEL ,77970,77239,11,48.666667,3.133333,1.03
+ Jouy-sur-Morin ,JOUY SUR MORIN ,77320,77240,11,48.8,3.266667,1.67
+ Juilly ,JUILLY ,77230,77241,11,49.016667,2.716667,1.65
+ Jutigny ,JUTIGNY ,77650,77242,11,48.5,3.233333,1.51
+ Lagny-sur-Marne ,LAGNY SUR MARNE ,77400,77243,11,48.866667,2.716667,0.96
+ Larchant ,LARCHANT ,77760,77244,11,48.283333,2.6,1.73
+ Laval-en Brie ,LAVAL EN BRIE ,77148,77245,11,48.416667,2.983333,1.12
+ Léchelle ,LECHELLE ,77171,77246,11,48.583333,3.383333,2.23
+ Lescherolles ,LESCHEROLLES ,77320,77247,11,48.75,3.333333,1.99
+ Lesches ,LESCHES ,77450,77248,11,48.9,2.783333,1.11
+ Lésigny ,LESIGNY ,77150,77249,11,48.733333,2.616667,1.44
+ Leudon-en-Brie ,LEUDON EN BRIE ,77320,77250,11,48.733333,3.266667,1.67
+ Lieusaint ,LIEUSAINT ,77127,77251,11,48.633333,2.55,1.76
+ Limoges-Fourches ,LIMOGES FOURCHES ,77550,77252,11,48.616667,2.666667,1.2
+ Lissy ,LISSY ,77550,77253,11,48.616667,2.683333,1.22
+ Liverdy-en-Brie ,LIVERDY EN BRIE ,77220,77254,11,48.7,2.766667,1.23
+ Livry-sur-Seine ,LIVRY SUR SEINE ,77000,77255,11,48.516667,2.683333,1.12
+ Lizines ,LIZINES ,77650,77256,11,48.533333,3.183333,1.48
+ Lizy-sur-Ourcq ,LIZY SUR OURCQ ,77440,77257,11,49.016667,3.033333,1.65
+ Lognes ,LOGNES ,77185,77258,11,48.833333,2.616667,1.44
+ Longperrier ,LONGPERRIER ,77230,77259,11,49.05,2.666667,1.8
+ Longueville ,LONGUEVILLE ,77650,77260,11,48.516667,3.25,1.59
+ Luisetaines ,LUISETAINES ,77520,77263,11,48.466667,3.183333,1.27
+ Luzancy ,LUZANCY ,77138,77265,11,48.966667,3.183333,1.42
+ Machault ,MACHAULT ,77133,77266,11,48.45,2.833333,1
+ La Madeleine-sur-Loing ,LA MADELEINE SUR LOING,77570,77267,11,48.2,2.7031,-1
+ Magny-le-Hongre ,MAGNY LE HONGRE ,77700,77268,11,48.866667,2.816667,0.96
+ Maincy ,MAINCY ,77950,77269,11,48.55,2.7,1.04
+ Maisoncelles-en-Brie ,MAISONCELLES EN BRIE ,77580,77270,11,48.866667,3,1.14
+ Maisoncelles-en-Gâtinais ,MAISONCELLES EN GATINAIS ,77570,77271,11,48.183333,2.633333,2.19
+ Maison Rouge ,MAISON ROUGE ,77370,77272,11,48.558333,3.15,-1
+ Marchémoret ,MARCHEMORET ,77230,77273,11,49.05,2.766667,1.85
+ Marcilly ,MARCILLY ,77139,77274,11,49.033333,2.883333,1.72
+ Les Marets ,LES MARETS ,77560,77275,11,48.666667,3.316667,1.91
+ Mareuil-lès-Meaux ,MAREUIL LES MEAUX ,77100,77276,11,48.933333,2.866667,1.26
+ Marles-en-Brie ,MARLES EN BRIE ,77610,77277,11,48.716667,2.883333,0.84
+ Marolles-en-Brie ,MAROLLES EN BRIE ,77120,77278,11,48.783333,3.166667,1.48
+ Marolles-sur-Seine ,MAROLLES SUR SEINE ,77130,77279,11,48.383333,3.033333,1.27
+ Mary-sur-Marne ,MARY SUR MARNE ,77440,77280,11,49.016667,3.033333,1.65
+ Mauperthuis ,MAUPERTHUIS ,77120,77281,11,48.766667,3.033333,0.98
+ Mauregard ,MAUREGARD ,77990,77282,11,49.033333,2.583333,1.72
+ May-en-Multien ,MAY EN MULTIEN ,77145,77283,11,49.066667,3.033333,1.88
+ Meaux ,MEAUX ,77100,77284,11,48.95,2.866667,1.34
+ Le Mée-sur-Seine ,LE MEE SUR SEINE,77350,77285,11,48.533333,2.633333,1.36
+ Meigneux ,MEIGNEUX ,77520,77286,11,48.516667,3.1,1.27
+ Meilleray ,MEILLERAY ,77320,77287,11,48.783333,3.416667,2.39
+ Melun ,MELUN ,77000,77288,11,48.533333,2.666667,1.2
+ Melz-sur-Seine ,MELZ SUR SEINE ,77171,77289,11,48.5,3.416667,2.39
+ Méry-sur-Marne ,MERY SUR MARNE ,77730,77290,11,48.966667,3.2,1.42
+ Le Mesnil-Amelot ,LE MESNIL AMELOT ,77990,77291,11,49.016667,2.6,1.65
+ Messy ,MESSY ,77410,77292,11,48.966667,2.7,1.42
+ Misy-sur-Yonne ,MISY SUR YONNE ,77130,77293,11,48.366667,3.083333,1.47
+ Mitry-Mory ,MITRY MORY ,77290,77294,11,48.983333,2.616667,1.49
+ Moisenay ,MOISENAY ,77950,77295,11,48.55,2.733333,1.85
+ Moissy-Cramayel ,MOISSY CRAMAYEL ,77550,77296,11,48.616667,2.6,1.52
+ Mons-en-Montois ,MONS EN MONTOIS ,77520,77298,11,48.483333,3.15,1.11
+ Montarlot ,MONTARLOT ,77250,77299,11,48.35,2.85,1.42
+ Montceaux-lès-Meaux ,MONTCEAUX LES MEAUX ,77470,77300,11,48.95,2.983333,1.34
+ Montceaux-lès-Provins ,MONTCEAUX LES PROVINS ,77151,77301,11,48.683333,3.433333,2.47
+ Montcourt-Fromonville ,MONTCOURT FROMONVILLE ,77140,77302,11,48.3,2.7,1.65
+ Montdauphin ,MONTDAUPHIN ,77320,77303,11,48.85,3.433333,2.47
+ Montenils ,MONTENILS ,77320,77304,11,48.85,3.483333,2.71
+ Montereau-faut-Yonne ,MONTEREAU FAUT YONNE ,77130,77305,11,48.383333,2.95,1.27
+ Montereau-sur-le-Jard ,MONTEREAU SUR LE JARD,77950,77306,11,48.583333,2.666667,1.24
+ Montévrain ,MONTEVRAIN ,77144,77307,11,48.866667,2.75,1
+ Monthyon ,MONTHYON ,77122,77309,11,49.016667,2.833333,1.65
+ Montigny-le-Guesdier ,MONTIGNY LE GUESDIER ,77480,77310,11,48.383333,3.25,1.59
+ Montigny-Lencoup ,MONTIGNY LENCOUP ,77520,77311,11,48.45,3.05,2.17
+ Montigny-sur-Loing ,MONTIGNY SUR LOING ,77690,77312,11,48.333333,2.733333,1.5
+ Montmachoux ,MONTMACHOUX ,77940,77313,11,48.316667,2.983333,1.58
+ Montolivet ,MONTOLIVET ,77320,77314,11,48.833333,3.433333,2.47
+ Montry ,MONTRY ,77450,77315,11,48.883333,2.833333,1.26
+ Moret-sur-Loing ,MORET SUR LOING ,77250,77316,11,48.366667,2.816667,1.35
+ Mormant ,MORMANT ,77720,77317,11,48.6,2.883333,0.43
+ Mortcerf ,MORTCERF ,77163,77318,11,48.783333,2.916667,1.34
+ Mortery ,MORTERY ,77160,77319,11,48.6,3.25,1.59
+ Mouroux ,MOUROUX ,77120,77320,11,48.816667,3.033333,1
+ Mousseaux-lès-Bray ,MOUSSEAUX LES BRAY ,77480,77321,11,48.416667,3.233333,1.51
+ Moussy-le-Neuf ,MOUSSY LE NEUF ,77230,77322,11,49.066667,2.6,1.94
+ Moussy-le-Vieux ,MOUSSY LE VIEUX ,77230,77323,11,49.05,2.616667,1.8
+ Moutils ,MOUTILS ,77320,77324,11,48.766667,3.366667,2.15
+ Mouy-sur-Seine ,MOUY SUR SEINE ,77480,77325,11,48.416667,3.233333,1.51
+ Nandy ,NANDY ,77176,77326,11,48.583333,2.566667,1.68
+ Nangis ,NANGIS ,77370,77327,11,48.55,3,0.87
+ Nanteau-sur-Essonnes ,NANTEAU SUR ESSONNES ,77760,77328,11,48.316667,2.416667,2.4
+ Nanteau-sur-Lunain ,NANTEAU SUR LUNAIN ,77710,77329,11,48.25,2.816667,1.88
+ Nanteuil-lès-Meaux ,NANTEUIL LES MEAUX ,77100,77330,11,48.933333,2.9,1.35
+ Nanteuil-sur-Marne ,NANTEUIL SUR MARNE ,77730,77331,11,48.983333,3.216667,1.49
+ Nantouillet ,NANTOUILLET ,77230,77332,11,49,2.7,1.57
+ Nemours ,NEMOURS ,77140,77333,11,48.266667,2.7,1.81
+ Nesles-la-Gilberde ,NESLES LA GILBERDE ,77540,77334,11,48.7,2.966667,0.47
+ Neufmoutiers-en-Brie ,NEUFMOUTIERS EN BRIE ,77610,77336,11,48.766667,2.833333,1.21
+ Noisiel ,NOISIEL ,77186,77337,11,48.85,2.633333,1.36
+ Noisy-Rudignon ,NOISY RUDIGNON ,77940,77338,11,48.333333,2.933333,1.5
+ Noisy-sur-École ,NOISY SUR ECOLE ,77123,77339,11,48.366667,2.5,2
+ Nonville ,NONVILLE ,77140,77340,11,48.283333,2.783333,1.86
+ Noyen-sur-Seine ,NOYEN SUR SEINE ,77114,77341,11,48.45,3.35,2.07
+ Obsonville ,OBSONVILLE ,77890,77342,11,48.216667,2.566667,2.04
+ Ocquerre ,OCQUERRE ,77440,77343,11,49.033333,3.066667,1.72
+ Oissery ,OISSERY ,77178,77344,11,49.066667,2.816667,1.88
+ Orly-sur-Morin ,ORLY SUR MORIN ,77750,77345,11,48.9,3.233333,1.51
+ Ormeaux ,ORMEAUX ,77540,77346,11,48.716667,2.983333,0.9
+ Les Ormes-sur-Voulzie ,LES ORMES SUR VOULZIE,77134,77347,11,48.466667,3.233333,1.51
+ Ormesson ,ORMESSON ,77167,77348,11,48.233333,2.65,1.96
+ Othis ,OTHIS ,77280,77349,11,49.083333,2.683333,1.95
+ Ozoir-la-Ferrière ,OZOIR LA FERRIERE ,77330,77350,11,48.766667,2.666667,1.2
+ Ozouer-le-Repos ,OZOUER LE REPOS ,77720,77351,11,48.6,2.916667,0.58
+ Ozouer-le-Voulgis ,OZOUER LE VOULGIS ,77390,77352,11,48.65,2.766667,0.76
+ Paley ,PALEY ,77710,77353,11,48.233333,2.85,1.96
+ Pamfou ,PAMFOU ,77830,77354,11,48.45,2.866667,0.96
+ Paroy ,PAROY ,77520,77355,11,48.483333,3.2,1.35
+ Passy-sur-Seine ,PASSY SUR SEINE ,77480,77356,11,48.416667,3.35,2.07
+ Pécy ,PECY ,77970,77357,11,48.65,3.083333,1.76
+ Penchard ,PENCHARD ,77124,77358,11,48.983333,2.866667,1.49
+ Pézarches ,PEZARCHES ,77131,77360,11,48.733333,2.983333,1
+ Pierre-Levée ,PIERRE LEVEE ,77580,77361,11,48.9,3.033333,1.87
+ Le Pin ,LE PIN ,77181,77363,11,48.916667,2.616667,1.44
+ Le Plessis-aux-Bois ,LE PLESSIS AUX BOIS,77165,77364,11,49,2.766667,1.57
+ Le Plessis-Feu-Aussoux ,LE PLESSIS FEU AUSSOUX,77540,77365,11,48.716667,3.033333,1.84
+ Le Plessis-l'Evêque ,LE PLESSIS L EVEQUE,77165,77366,11,49,2.783333,1.57
+ Le Plessis-Placy ,LE PLESSIS PLACY ,77440,77367,11,49.066667,3,1.88
+ Poigny ,POIGNY ,77160,77368,11,48.533333,3.283333,1.75
+ Poincy ,POINCY ,77470,77369,11,48.966667,2.933333,1.55
+ Poligny ,POLIGNY ,77167,77370,11,48.216667,2.75,2.04
+ Pommeuse ,POMMEUSE ,77515,77371,11,48.816667,3.016667,0.94
+ Pomponne ,POMPONNE ,77400,77372,11,48.883333,2.683333,1.21
+ Pontcarré ,PONTCARRE ,77135,77374,11,48.8,2.7,1.04
+ Préaux ,PREAUX ,77710,77375,11,48.216667,2.866667,2.04
+ Précy-sur-Marne ,PRECY SUR MARNE ,77410,77376,11,48.933333,2.783333,1.27
+ Presles-en-Brie ,PRESLES EN BRIE ,77220,77377,11,48.716667,2.75,0.8
+ Pringy ,PRINGY ,77310,77378,11,48.516667,2.566667,1.68
+ Provins ,PROVINS ,77160,77379,11,48.55,3.3,1.83
+ Puisieux ,PUISIEUX ,77139,77380,11,49.066667,2.916667,1.88
+ Quiers ,QUIERS ,77720,77381,11,48.6,2.966667,1.38
+ Quincy-Voisins ,QUINCY VOISINS ,77860,77382,11,48.9,2.883333,1.39
+ Rampillon ,RAMPILLON ,77370,77383,11,48.55,3.066667,0.71
+ Réau ,REAU ,77550,77384,11,48.6,2.616667,1.44
+ Rebais ,REBAIS ,77510,77385,11,48.85,3.233333,1.51
+ Recloses ,RECLOSES ,77760,77386,11,48.35,2.633333,1.45
+ Remauville ,REMAUVILLE ,77710,77387,11,48.216667,2.816667,2.04
+ Reuil-en-Brie ,REUIL EN BRIE ,77260,77388,11,48.966667,3.15,1.42
+ La Rochette ,LA ROCHETTE ,77000,77389,11,48.5,2.666667,1.4
+ Roissy-en-Brie ,ROISSY EN BRIE ,77680,77390,11,48.8,2.65,1.28
+ Rouilly ,ROUILLY ,77160,77391,11,48.583333,3.266667,1.67
+ Rouvres ,ROUVRES ,77230,77392,11,49.066667,2.716667,1.88
+ Rozay-en-Brie ,ROZAY EN BRIE ,77540,77393,11,48.683333,2.966667,0.24
+ Rubelles ,RUBELLES ,77950,77394,11,48.566667,2.683333,1.12
+ Rumont ,RUMONT ,77760,77395,11,48.266667,2.5,2
+ Rupéreux ,RUPEREUX ,77560,77396,11,48.633333,3.333333,1.99
+ Saâcy-sur-Marne ,SAACY SUR MARNE ,77730,77397,11,48.966667,3.216667,1.43
+ Sablonnières ,SABLONNIERES ,77510,77398,11,48.866667,3.283333,1.75
+ Saint-Augustin ,SAINT AUGUSTIN ,77515,77400,11,48.783333,3.033333,1.3
+ Saint-Barthélemy ,SAINT BARTHELEMY ,77320,77402,11,48.816667,3.366667,2.15
+ Saint-Brice ,SAINT BRICE ,77160,77403,11,48.566667,3.316667,1.91
+ Sainte-Colombe ,SAINTE COLOMBE ,77650,77404,11,48.533333,3.25,1.59
+ Saint-Cyr-sur-Morin ,SAINT CYR SUR MORIN,77750,77405,11,48.916667,3.183333,1.44
+ Saint-Denis-lès-Rebais ,SAINT DENIS LES REBAIS,77510,77406,11,48.833333,3.216667,1.43
+ Saint-Fiacre ,SAINT FIACRE ,77470,77408,11,48.916667,2.966667,1.19
+ Saint-Germain-Laval ,SAINT GERMAIN LAVAL ,77130,77409,11,48.4,3,1.19
+ Saint-Germain-Laxis ,SAINT GERMAIN LAXIS ,77950,77410,11,48.583333,2.7,1.04
+ Saint-Germain-sous-Doue ,SAINT GERMAIN SOUS DOUE,77169,77411,11,48.85,3.15,1.11
+ Saint-Germain-sur-École ,SAINT GERMAIN SUR ECOLE,77930,77412,11,48.466667,2.516667,1.92
+ Saint-Germain-sur-Morin ,SAINT GERMAIN SUR MORIN,77860,77413,11,48.883333,2.85,1.22
+ Saint-Hilliers ,SAINT HILLIERS ,77160,77414,11,48.616667,3.266667,1.67
+ Saint-Jean-les-Deux-Jumeaux ,SAINT JEAN LES DEUX,77660,77415,11,48.95,3.016667,1.34
+ Saint-Just-en Brie ,SAINT JUST EN BRIE,77370,77416,11,48.6,3.1,0.88
+ Saint-Léger ,SAINT LEGER ,77510,77417,11,48.833333,3.25,1.59
+ Saint-Loup-de Naud ,SAINT LOUP DE NAUD,77650,77418,11,48.533333,3.2,1.35
+ Saint-Mammès ,SAINT MAMMES ,77670,77419,11,48.383333,2.816667,1.27
+ Saint-Mard ,SAINT MARD ,77230,77420,11,49.033333,2.7,1.72
+ Saint Martin-Chennetron ,SAINT MARTIN CHENNETRON ,77560,77422,11,48.583333,3.433333,2.47
+ Saint-Martin-du-Boschet ,SAINT MARTIN DU BOSCHET,77320,77424,11,48.733333,3.416667,2.39
+ Saint-Martin-en-Bière ,SAINT MARTIN EN BIERE,77630,77425,11,48.433333,2.566667,1.68
+ Saint-Méry ,SAINT MERY ,77720,77426,11,48.566667,2.816667,1.37
+ Saint-Mesmes ,SAINT MESMES ,77410,77427,11,48.983333,2.7,1.49
+ Saint-Ouen-en-Brie ,SAINT OUEN EN BRIE,77720,77428,11,48.55,2.916667,0.66
+ Saint-Ouen-sur-Morin ,SAINT OUEN SUR MORIN,77750,77429,11,48.9,3.2,1.35
+ Saint-Pathus ,SAINT PATHUS ,77178,77430,11,49.066667,2.8,1.88
+ Saint-Pierre-lès-Nemours ,SAINT PIERRE LES NEMOURS,77140,77431,11,48.266667,2.683333,1.81
+ Saints ,SAINTS ,77120,77433,11,48.75,3.05,0.92
+ Saint-Sauveur-lès-Bray ,SAINT SAUVEUR LES BRAY,77480,77434,11,48.433333,3.2,1.67
+ Saint-Sauveur-sur-École ,SAINT SAUVEUR SUR ECOLE,77930,77435,11,48.483333,2.55,1.76
+ Saint-Siméon ,SAINT SIMEON ,77169,77436,11,48.8,3.2,1.35
+ Saint-Soupplets ,SAINT SOUPPLETS ,77165,77437,11,49.033333,2.8,1.72
+ Saint-Thibault-des-Vignes ,SAINT THIBAULT DES VIGNES,77400,77438,11,48.866667,2.683333,1.32
+ Salins ,SALINS ,77148,77439,11,48.416667,3.016667,1.12
+ Sammeron ,SAMMERON ,77260,77440,11,48.95,3.083333,1.34
+ Samois-sur-Seine ,SAMOIS SUR SEINE ,77920,77441,11,48.45,2.75,0.96
+ Samoreau ,SAMOREAU ,77210,77442,11,48.416667,2.75,1.12
+ Sancy-lès-Provins ,SANCY LES PROVINS ,77320,77444,11,48.7,3.383333,2.23
+ Savigny-le-Temple ,SAVIGNY LE TEMPLE ,77176,77445,11,48.566667,2.583333,1.6
+ Savins ,SAVINS ,77650,77446,11,48.516667,3.2,1.35
+ Seine-Port ,SEINE PORT ,77240,77447,11,48.55,2.55,1.76
+ Sept-Sorts ,SEPT SORTS ,77260,77448,11,48.933333,3.1,1.26
+ Serris ,SERRIS ,77700,77449,11,48.85,2.783333,0.88
+ Servon ,SERVON ,77170,77450,11,48.716667,2.583333,1.6
+ Signy-Signets ,SIGNY SIGNETS ,77640,77451,11,48.933333,3.066667,1.26
+ Sigy ,SIGY ,77520,77452,11,48.466667,3.183333,1.27
+ Sivry-Courtry ,SIVRY COURTRY ,77115,77453,11,48.533333,2.75,1
+ Sognolles-en-Montois ,SOGNOLLES EN MONTOIS ,77520,77454,11,48.516667,3.166667,1.19
+ Soignolles-en-Brie ,SOIGNOLLES EN BRIE ,77111,77455,11,48.65,2.683333,1.12
+ Soisy-Bouy ,SOISY BOUY ,77650,77456,11,48.516667,3.3,1.88
+ Solers ,SOLERS ,77111,77457,11,48.65,2.716667,1
+ Souppes-sur-Loing ,SOUPPES SUR LOING ,77460,77458,11,48.183333,2.733333,2.19
+ Sourdun ,SOURDUN ,77171,77459,11,48.533333,3.35,2.07
+ Tancrou ,TANCROU ,77440,77460,11,49,3.05,1.57
+ Thénisy ,THENISY ,77520,77461,11,48.483333,3.183333,1.27
+ Thieux ,THIEUX ,77230,77462,11,49.016667,2.666667,1.65
+ Thomery ,THOMERY ,77810,77463,11,48.4,2.783333,1.19
+ Thorigny-sur-Marne ,THORIGNY SUR MARNE ,77400,77464,11,48.883333,2.716667,1.03
+ Thoury-Férottes ,THOURY FEROTTES ,77156,77465,11,48.283333,2.95,1.73
+ Tigeaux ,TIGEAUX ,77163,77466,11,48.833333,2.916667,1.08
+ La Tombe ,LA TOMBE ,77130,77467,11,48.383333,3.083333,1.48
+ Torcy ,TORCY ,77200,77468,11,48.85,2.65,1.28
+ Touquin ,TOUQUIN ,77131,77469,11,48.733333,3.016667,1
+ Tournan-en-Brie ,TOURNAN EN BRIE ,77220,77470,11,48.733333,2.766667,0.72
+ Tousson ,TOUSSON ,77123,77471,11,48.35,2.466667,2.16
+ La Trétoire ,LA TRETOIRE ,77510,77472,11,48.883333,3.25,1.59
+ Treuzy-Levelay ,TREUZY LEVELAY ,77710,77473,11,48.283333,2.8,1.73
+ Trilbardou ,TRILBARDOU ,77450,77474,11,48.95,2.8,1.34
+ Trilport ,TRILPORT ,77470,77475,11,48.95,2.95,1.34
+ Trocy-en-Multien ,TROCY EN MULTIEN ,77440,77476,11,49.05,2.966667,1.85
+ Ury ,URY ,77760,77477,11,48.333333,2.6,1.52
+ Ussy-sur-Marne ,USSY SUR MARNE ,77260,77478,11,48.95,3.083333,1.34
+ Vaires-sur-Marne ,VAIRES SUR MARNE ,77360,77479,11,48.866667,2.65,1.28
+ Valence-en-Brie ,VALENCE EN BRIE ,77830,77480,11,48.433333,2.883333,1.04
+ Vanvillé ,VANVILLE ,77370,77481,11,48.55,3.1,0.87
+ Varennes-sur-Seine ,VARENNES SUR SEINE ,77130,77482,11,48.366667,2.916667,1.35
+ Varreddes ,VARREDDES ,77910,77483,11,49,2.933333,1.57
+ Vaucourtois ,VAUCOURTOIS ,77580,77484,11,48.9,2.95,1.11
+ Le Vaudoué ,LE VAUDOUE ,77123,77485,11,48.35,2.516667,1.92
+ Vaudoy-en-Brie ,VAUDOY EN BRIE ,77141,77486,11,48.683333,3.083333,0.79
+ Vaux-le-Pénil ,VAUX LE PENIL ,77000,77487,11,48.533333,2.666667,1.2
+ Vaux-sur-Lunain ,VAUX SUR LUNAIN ,77710,77489,11,48.216667,2.933333,2.04
+ Vendrest ,VENDREST ,77440,77490,11,49.05,3.1,1.8
+ Veneux-les-Sablons ,VENEUX LES SABLONS ,77250,77491,11,48.366667,2.8,1.35
+ Verdelot ,VERDELOT ,77510,77492,11,48.866667,3.366667,2.15
+ Verneuil-l'Étang ,VERNEUIL L ETANG ,77390,77493,11,48.633333,2.833333,0.46
+ Vert-Saint-Denis ,VERT SAINT DENIS ,77240,77495,11,48.566667,2.616667,1.44
+ Vieux-Champagne ,VIEUX CHAMPAGNE ,77370,77496,11,48.583333,3.133333,1.25
+ Saint-Mars-Vieux-Maisons ,SAINT MARS VIEUX MAISONS,77320,77497,11,48.733333,3.35,-1
+ Vignely ,VIGNELY ,77450,77498,11,48.933333,2.816667,1.26
+ Vilbert ,VILBERT ,77540,77499,11,48.683333,2.916667,1.63
+ Villebéon ,VILLEBEON ,77710,77500,11,48.2,2.933333,2.11
+ Villecerf ,VILLECERF ,77250,77501,11,48.333333,2.85,1.5
+ Villegagnon ,VILLEGAGNON ,77970,77502,11,48.666667,3.183333,1.27
+ Villegruis ,VILLEGRUIS ,77560,77503,11,48.6,3.466667,2.63
+ Villemaréchal ,VILLEMARECHAL ,77710,77504,11,48.266667,2.866667,1.81
+ Villemareuil ,VILLEMAREUIL ,77470,77505,11,48.916667,2.983333,1.28
+ Villemer ,VILLEMER ,77250,77506,11,48.3,2.833333,1.65
+ Villenauxe-la-Petite ,VILLENAUXE LA PETITE ,77480,77507,11,48.4,3.3,1.83
+ Villeneuve-le-Comte ,VILLENEUVE LE COMTE ,77174,77508,11,48.816667,2.833333,1
+ Villeneuve-les-Bordes ,VILLENEUVE LES BORDES ,77154,77509,11,48.483333,3.05,1
+ Villeneuve-Saint-Denis ,VILLENEUVE SAINT DENIS ,77174,77510,11,48.816667,2.8,1
+ Villeneuve-sous-Dammartin ,VILLENEUVE SOUS DAMMARTIN ,77230,77511,11,49.033333,2.633333,1.72
+ Villeneuve-sur-Bellot ,VILLENEUVE SUR BELLOT ,77510,77512,11,48.866667,3.35,2.07
+ Villenoy ,VILLENOY ,77124,77513,11,48.95,2.866667,1.34
+ Villeparisis ,VILLEPARISIS ,77270,77514,11,48.933333,2.616667,1.44
+ Villeroy ,VILLEROY ,77410,77515,11,48.983333,2.783333,1.49
+ Ville-Saint-Jacques ,VILLE SAINT JACQUES ,77130,77516,11,48.333333,2.9,1.5
+ Villevaudé ,VILLEVAUDE ,77410,77517,11,48.916667,2.65,1.75
+ Villiers-en-Bière ,VILLIERS EN BIERE ,77190,77518,11,48.483333,2.6,1.52
+ Villiers-Saint-Georges ,VILLIERS SAINT GEORGES ,77560,77519,11,48.65,3.416667,2.39
+ Villiers-sous-Grez ,VILLIERS SOUS GREZ ,77760,77520,11,48.316667,2.65,1.58
+ Villiers-sur-Morin ,VILLIERS SUR MORIN ,77580,77521,11,48.866667,2.9,0.96
+ Villiers-sur-Seine ,VILLIERS SUR SEINE ,77114,77522,11,48.45,3.366667,2.15
+ Villuis ,VILLUIS ,77480,77523,11,48.416667,3.35,2.07
+ Vimpelles ,VIMPELLES ,77520,77524,11,48.433333,3.166667,1.19
+ Vinantes ,VINANTES ,77230,77525,11,49.016667,2.733333,1.65
+ Vincy-Manoeuvre ,VINCY MANOEUVRE ,77139,77526,11,49.083333,2.966667,1.95
+ Voinsles ,VOINSLES ,77540,77527,11,48.683333,3,0.7
+ Voisenon ,VOISENON ,77950,77528,11,48.566667,2.666667,1.2
+ Voulangis ,VOULANGIS ,77580,77529,11,48.866667,2.9,0.96
+ Voulton ,VOULTON ,77560,77530,11,48.616667,3.333333,1.99
+ Voulx ,VOULX ,77940,77531,11,48.283333,2.966667,1.73
+ Vulaines-lès-Provins ,VULAINES LES PROVINS ,77160,77532,11,48.55,3.216667,1.43
+ Vulaines-sur-Seine ,VULAINES SUR SEINE ,77870,77533,11,48.433333,2.766667,1.04
+ Yèbles ,YEBLES ,77390,77534,11,48.633333,2.766667,0.72
+ Ponthierry ,PONTHIERRY ,77310,77900,11,48.533333,2.55,1.76
+ Chantereine ,CHANTEREINE ,77500,77905,11,48.883333,2.591667,-1
+ Le Pavé de Pontault ,LE PAVE DE PONTAULT,77340,77910,11,48.766667,2.6,1.52
+ Cossigny ,COSSIGNY ,77173,77913,11,48.716667,2.666667,1.2
+ Suisnes ,SUISNES ,77166,77914,11,48.666667,2.666667,1.2
+ Neufmontiers-lès-Meaux ,NEUFMONTIERS LES MEAUX ,77124,77915,11,48.983333,2.833333,1.49
+ Ablis ,ABLIS ,78660,78003,11,48.516667,1.841667,-1
+ Achères ,ACHERES ,78260,78005,11,48.966667,2.066667,1.45
+ Adainville ,ADAINVILLE ,78113,78006,11,48.716667,1.65,1.31
+ Aigremont ,AIGREMONT ,78240,78007,11,48.9,2.016667,1.13
+ Allainville-aux-Bois ,ALLAINVILLE AUX BOIS ,78660,78009,11,48.458333,1.9,-1
+ Les Alluets-le-Roi ,LES ALLUETS LE ROI,78580,78010,11,48.916667,1.916667,1.49
+ Andelu ,ANDELU ,78770,78013,11,48.883333,1.816667,1.19
+ Andrésy ,ANDRESY ,78570,78015,11,48.983333,2.066667,1.45
+ Arnouville-lès-Mantes ,ARNOUVILLE LES MANTES ,78790,78020,11,48.9,1.733333,1.45
+ Aubergenville ,AUBERGENVILLE ,78410,78029,11,48.966667,1.85,1.07
+ Auffargis ,AUFFARGIS ,78610,78030,11,48.7,1.883333,1.47
+ Aulnay-sur-Mauldre ,AULNAY SUR MAULDRE ,78126,78033,11,48.933333,1.85,0.75
+ Auteuil ,AUTEUIL ,78770,78034,11,48.833333,1.816667,1.65
+ Autouillet ,AUTOUILLET ,78770,78036,11,48.85,1.8,0.67
+ Bailly ,BAILLY ,78870,78043,11,48.85,2.083333,1.56
+ Bazainville ,BAZAINVILLE ,78550,78048,11,48.8,1.666667,1.49
+ Bazemont ,BAZEMONT ,78580,78049,11,48.933333,1.866667,0.75
+ Bazoches-sur-Guyonne ,BAZOCHES SUR GUYONNE ,78490,78050,11,48.783333,1.85,0.97
+ Béhoust ,BEHOUST ,78910,78053,11,48.833333,1.733333,1.27
+ Bennecourt ,BENNECOURT ,78270,78057,11,49.033333,1.566667,1.82
+ Beynes ,BEYNES ,78650,78062,11,48.85,1.866667,0.25
+ Blaru ,BLARU ,78270,78068,11,49.05,1.483333,2.36
+ Boinville-en-Mantois ,BOINVILLE EN MANTOIS ,78930,78070,11,48.933333,1.766667,1.34
+ Boinville-le-Gaillard ,BOINVILLE LE GAILLARD ,78660,78071,11,48.491667,1.866667,-1
+ Boinvilliers ,BOINVILLIERS ,78200,78072,11,48.916667,1.666667,1.22
+ Bois-d'Arcy ,BOIS D ARCY ,78390,78073,11,48.8,2.016667,1.13
+ Boissets ,BOISSETS ,78910,78076,11,48.85,1.583333,1.95
+ La Boissière-École ,LA BOISSIERE ECOLE ,78125,78077,11,48.683333,1.65,1.62
+ Boissy-Mauvoisin ,BOISSY MAUVOISIN ,78200,78082,11,48.966667,1.583333,2.01
+ Boissy-sans-Avoir ,BOISSY SANS AVOIR ,78490,78084,11,48.816667,1.8,0.98
+ Bonnelles ,BONNELLES ,78830,78087,11,48.616667,2.033333,2.26
+ Bonnières-sur-Seine ,BONNIERES SUR SEINE ,78270,78089,11,49.033333,1.583333,1.71
+ Bouafle ,BOUAFLE ,78410,78090,11,48.966667,1.9,1.89
+ Bougival ,BOUGIVAL ,78380,78092,11,48.866667,2.133333,1.89
+ Bourdonné ,BOURDONNE ,78113,78096,11,48.75,1.666667,1.45
+ Breuil-Bois-Robert ,BREUIL BOIS ROBERT ,78930,78104,11,48.95,1.716667,0.91
+ Bréval ,BREVAL ,78980,78107,11,48.95,1.533333,2.04
+ Les Bréviaires ,LES BREVIAIRES ,78610,78108,11,48.7,1.816667,1.47
+ Buc ,BUC ,78530,78117,11,48.766667,2.133333,1.89
+ Buchelay ,BUCHELAY ,78200,78118,11,48.983333,1.666667,1.23
+ Bullion ,BULLION ,78830,78120,11,48.616667,2,2.26
+ Carrières-sous-Poissy ,CARRIERES SOUS POISSY ,78955,78123,11,48.95,2.033333,1.23
+ Carrières-sur-Seine ,CARRIERES SUR SEINE ,78420,78124,11,48.916667,2.183333,2.22
+ La Celle-les-Bordes ,LA CELLE LES BORDES,78720,78125,11,48.633333,1.95,2.1
+ La Celle-Saint-Cloud ,LA CELLE SAINT CLOUD,78170,78126,11,48.85,2.15,2
+ Cernay-la-Ville ,CERNAY LA VILLE ,78720,78128,11,48.666667,1.966667,1.78
+ Chambourcy ,CHAMBOURCY ,78240,78133,11,48.9,2.033333,1.23
+ Chanteloup-les-Vignes ,CHANTELOUP LES VIGNES ,78570,78138,11,48.983333,2.033333,1.23
+ Chapet ,CHAPET ,78130,78140,11,48.966667,1.933333,1.07
+ Châteaufort ,CHATEAUFORT ,78117,78143,11,48.733333,2.1,1.67
+ Chatou ,CHATOU ,78400,78146,11,48.883333,2.15,2
+ Chaufour-lès-Bonnières ,CHAUFOUR LES BONNIERES ,78270,78147,11,49.016667,1.483333,2.36
+ Chavenay ,CHAVENAY ,78450,78152,11,48.85,1.983333,1
+ Le Chesnay ,LE CHESNAY ,78150,78158,11,48.825,2.125,-1
+ Chevreuse ,CHEVREUSE ,78460,78160,11,48.7,2.05,1.47
+ Choisel ,CHOISEL ,78460,78162,11,48.683333,2.016667,1.62
+ Civry-la-Forêt ,CIVRY LA FORET ,78910,78163,11,48.866667,1.616667,1.49
+ Les Clayes-sous-Bois ,LES CLAYES SOUS BOIS,78340,78165,11,48.816667,1.983333,0.91
+ Coignières ,COIGNIERES ,78310,78168,11,48.75,1.916667,1
+ Condé-sur-Vesgre ,CONDE SUR VESGRE ,78113,78171,11,48.733333,1.666667,1.16
+ Conflans-Sainte-Honorine ,CONFLANS SAINTE HONORINE ,78700,78172,11,48.983333,2.1,1.67
+ Courgent ,COURGENT ,78790,78185,11,48.9,1.666667,1.16
+ Craches ,CRACHES ,78660,78187,11,48.55,1.816667,2.89
+ Cravent ,CRAVENT ,78270,78188,11,49,1.483333,2.36
+ Crespières ,CRESPIERES ,78121,78189,11,48.883333,1.933333,0.58
+ Croissy-sur-Seine ,CROISSY SUR SEINE ,78290,78190,11,48.866667,2.133333,1.89
+ Dammartin-en-Serve ,DAMMARTIN EN SERVE ,78111,78192,11,48.9,1.616667,1.49
+ Dannemarie ,DANNEMARIE ,78550,78194,11,48.766667,1.616667,1.49
+ Davron ,DAVRON ,78810,78196,11,48.866667,1.933333,1
+ Drocourt ,DROCOURT ,78440,78202,11,49.05,1.766667,1.86
+ Ecquevilly ,ECQUEVILLY ,78920,78206,11,48.95,1.916667,0.91
+ Élancourt ,ELANCOURT ,78990,78208,11,48.783333,1.95,0.69
+ Émancé ,EMANCE ,78125,78209,11,48.583333,1.733333,2.57
+ Épône ,EPONE ,78680,78217,11,48.95,1.816667,0.91
+ Les Essarts-le-Roi ,LES ESSARTS LE ROI,78690,78220,11,48.716667,1.9,1.31
+ L'Étang-la-Ville ,L ETANG LA VILLE,78620,78224,11,48.866667,2.066667,1.45
+ Évecquemont ,EVECQUEMONT ,78740,78227,11,49.016667,1.95,1.55
+ La Falaise ,LA FALAISE ,78410,78230,11,48.95,1.833333,1.09
+ Favrieux ,FAVRIEUX ,78200,78231,11,48.95,1.65,1.27
+ Feucherolles ,FEUCHEROLLES ,78810,78233,11,48.866667,1.966667,1
+ Flacourt ,FLACOURT ,78200,78234,11,48.933333,1.65,1.27
+ Flexanville ,FLEXANVILLE ,78910,78236,11,48.85,1.733333,1.21
+ Flins-Neuve-Église ,FLINS NEUVE EGLISE ,78790,78237,11,48.883333,1.583333,1.79
+ Flins-sur-Seine ,FLINS SUR SEINE ,78410,78238,11,48.966667,1.866667,1.07
+ Follainville-Dennemont ,FOLLAINVILLE DENNEMONT ,78520,78239,11,49.016667,1.716667,1.55
+ Fontenay-le-Fleury ,FONTENAY LE FLEURY ,78330,78242,11,48.816667,2.05,1.34
+ Fontenay-Mauvoisin ,FONTENAY MAUVOISIN ,78200,78245,11,48.966667,1.65,1.27
+ Fontenay-Saint-Père ,FONTENAY SAINT PERE ,78440,78246,11,49.033333,1.75,1.7
+ Fourqueux ,FOURQUEUX ,78112,78251,11,48.883333,2.066667,1.45
+ Freneuse ,FRENEUSE ,78840,78255,11,49.05,1.6,1.86
+ Galluis ,GALLUIS ,78490,78262,11,48.8,1.8,0.6
+ Gambais ,GAMBAIS ,78950,78263,11,48.766667,1.666667,1.16
+ Gambaiseuil ,GAMBAISEUIL ,78490,78264,11,48.75,1.733333,2.47
+ Garancières ,GARANCIERES ,78890,78265,11,48.816667,1.75,0.62
+ Gargenville ,GARGENVILLE ,78440,78267,11,49,1.816667,1.39
+ Gazeran ,GAZERAN ,78125,78269,11,48.633333,1.766667,2.1
+ Gommécourt ,GOMMECOURT ,78270,78276,11,49.083333,1.6,2.18
+ Goupillières ,GOUPILLIERES ,78770,78278,11,48.883333,1.766667,1.8
+ Goussonville ,GOUSSONVILLE ,78930,78281,11,48.916667,1.766667,1.48
+ Grandchamp ,GRANDCHAMP ,78113,78283,11,48.716667,1.616667,1.49
+ Gressey ,GRESSEY ,78550,78285,11,48.833333,1.6,1.6
+ Grosrouvre ,GROSROUVRE ,78490,78289,11,48.783333,1.766667,1.35
+ Guernes ,GUERNES ,78520,78290,11,49.016667,1.633333,1.64
+ Guerville ,GUERVILLE ,78930,78291,11,48.933333,1.733333,0.75
+ Guitrancourt ,GUITRANCOURT ,78440,78296,11,49.016667,1.783333,1.55
+ Guyancourt ,GUYANCOURT ,78280,78297,11,48.766667,2.066667,1.45
+ Hardricourt ,HARDRICOURT ,78250,78299,11,49,1.9,1.39
+ Hargeville ,HARGEVILLE ,78790,78300,11,48.9,1.733333,1.45
+ La Hauteville ,LA HAUTEVILLE ,78113,78302,11,48.7,1.616667,1.49
+ Herbeville ,HERBEVILLE ,78580,78305,11,48.9,1.883333,0.75
+ Houdan ,HOUDAN ,78550,78310,11,48.783333,1.6,1.6
+ Houilles ,HOUILLES ,78800,78311,11,48.916667,2.2,2.33
+ Issou ,ISSOU ,78440,78314,11,49,1.783333,1.39
+ Jambville ,JAMBVILLE ,78440,78317,11,49.05,1.85,1.86
+ Jeufosse ,JEUFOSSE ,78270,78320,11,49.033333,1.55,1.93
+ Jouars-Pontchartrain ,JOUARS PONTCHARTRAIN ,78760,78321,11,48.783333,1.9,0.67
+ Jouy-en-Josas ,JOUY EN JOSAS ,78350,78322,11,48.766667,2.166667,2.11
+ Jouy-Mauvoisin ,JOUY MAUVOISIN ,78200,78324,11,48.983333,1.65,1.27
+ Jumeauville ,JUMEAUVILLE ,78580,78325,11,48.916667,1.783333,2.02
+ Juziers ,JUZIERS ,78820,78327,11,49,1.85,1.39
+ Lainville ,LAINVILLE ,78440,78329,11,49.066667,1.816667,2.02
+ Lévis-Saint-Nom ,LEVIS SAINT NOM ,78320,78334,11,48.716667,1.95,1.31
+ Limay ,LIMAY ,78520,78335,11,48.983333,1.733333,1.24
+ Les-Loges-en-Josas ,LES LOGES EN JOSAS,78350,78343,11,48.766667,2.133333,1.89
+ Lommoye ,LOMMOYE ,78270,78344,11,49,1.516667,2.15
+ Longnes ,LONGNES ,78980,78346,11,48.916667,1.583333,1.71
+ Longvilliers ,LONGVILLIERS ,78730,78349,11,48.583333,1.983333,2.57
+ Louveciennes ,LOUVECIENNES ,78430,78350,11,48.866667,2.116667,1.78
+ Magnanville ,MAGNANVILLE ,78200,78354,11,48.966667,1.683333,1.07
+ Magny-les-Hameaux ,MAGNY LES HAMEAUX ,78114,78356,11,48.733333,2.066667,1.45
+ Maincourt-sur-Yvette ,MAINCOURT SUR YVETTE ,78720,78357,11,48.716667,1.966667,1.31
+ Maisons-Laffitte ,MAISONS LAFFITTE ,78600,78358,11,48.95,2.15,2
+ Mantes-la-Jolie ,MANTES LA JOLIE ,78200,78361,11,48.983333,1.716667,1.8
+ Mantes-la-Ville ,MANTES LA VILLE ,78200,78362,11,48.966667,1.716667,1.69
+ Marcq ,MARCQ ,78770,78364,11,48.866667,1.816667,0.79
+ Mareil-le-Guyon ,MAREIL LE GUYON ,78490,78366,11,48.783333,1.85,0.97
+ Mareil-Marly ,MAREIL MARLY ,78750,78367,11,48.883333,2.083333,1.56
+ Mareil-sur-Mauldre ,MAREIL SUR MAULDRE ,78124,78368,11,48.9,1.866667,1
+ Marly-le-Roi ,MARLY LE ROI ,78160,78372,11,48.866667,2.083333,1.56
+ Maule ,MAULE ,78580,78380,11,48.916667,1.85,0.6
+ Maulette ,MAULETTE ,78550,78381,11,48.8,1.616667,1.49
+ Maurecourt ,MAURECOURT ,78780,78382,11,49,2.066667,1.45
+ Maurepas ,MAUREPAS ,78310,78383,11,48.766667,1.916667,1
+ Médan ,MEDAN ,78670,78384,11,48.95,2,1.02
+ Ménerville ,MENERVILLE ,78200,78385,11,48.95,1.6,1.6
+ Méré ,MERE ,78490,78389,11,48.783333,1.816667,0.67
+ Méricourt ,MERICOURT ,78270,78391,11,49.033333,1.633333,1.7
+ Le Mesnil-Saint-Denis ,LE MESNIL SAINT DENIS,78320,78397,11,48.733333,1.966667,1.15
+ Les Mesnuls ,LES MESNULS ,78490,78398,11,48.75,1.833333,1.09
+ Meulan ,MEULAN ,78250,78401,11,49.016667,1.9,1.55
+ Mézières-sur-Seine ,MEZIERES SUR SEINE ,78970,78402,11,48.966667,1.8,1.07
+ Millemont ,MILLEMONT ,78940,78404,11,48.8,1.733333,1
+ Milon-la-Chapelle ,MILON LA CHAPELLE ,78470,78406,11,48.733333,2.05,1.34
+ Mittainville ,MITTAINVILLE ,78125,78407,11,48.666667,1.65,1.78
+ Moisson ,MOISSON ,78840,78410,11,49.066667,1.666667,2.02
+ Mondreville ,MONDREVILLE ,78980,78413,11,48.9,1.55,-1
+ Montainville ,MONTAINVILLE ,78124,78415,11,48.883333,1.866667,1
+ Montalet-le-Bois ,MONTALET LE BOIS ,78440,78416,11,49.05,1.833333,1.86
+ Montchauvet ,MONTCHAUVET ,78790,78417,11,48.9,1.633333,1.38
+ Montesson ,MONTESSON ,78360,78418,11,48.916667,2.15,2
+ Montfort-l'Amaury ,MONTFORT L AMAURY ,78490,78420,11,48.783333,1.816667,0.67
+ Montigny-le-Bretonneux ,MONTIGNY LE BRETONNEUX ,78180,78423,11,48.766667,2.033333,1.23
+ Morainvilliers ,MORAINVILLIERS ,78630,78431,11,48.933333,1.933333,1
+ Mousseaux-sur-Seine ,MOUSSEAUX SUR SEINE ,78270,78437,11,49.05,1.65,1.86
+ Mulcent ,MULCENT ,78790,78439,11,48.883333,1.65,1.27
+ Les Mureaux ,LES MUREAUX ,78130,78440,11,49,1.916667,1.39
+ Neauphle-le-Château ,NEAUPHLE LE CHATEAU ,78640,78442,11,48.816667,1.9,0.91
+ Neauphle-le-Vieux ,NEAUPHLE LE VIEUX ,78640,78443,11,48.816667,1.866667,1.47
+ Neauphlette ,NEAUPHLETTE ,78980,78444,11,48.933333,1.533333,2.04
+ Nézel ,NEZEL ,78410,78451,11,48.95,1.833333,1.09
+ Noisy-le-Roi ,NOISY LE ROI ,78590,78455,11,48.85,2.066667,1.45
+ Oinville-sur-Montcient ,OINVILLE SUR MONTCIENT ,78250,78460,11,49.033333,1.85,1.85
+ Orcemont ,ORCEMONT ,78125,78464,11,48.583333,1.816667,2.57
+ Orgerus ,ORGERUS ,78910,78465,11,48.833333,1.7,0.95
+ Orgeval ,ORGEVAL ,78630,78466,11,48.916667,1.983333,1
+ Orphin ,ORPHIN ,78125,78470,11,48.583333,1.783333,2.57
+ Orvilliers ,ORVILLIERS ,78910,78474,11,48.866667,1.633333,1.38
+ Osmoy ,OSMOY ,78910,78475,11,48.866667,1.716667,0.91
+ Paray-Douaville ,PARAY DOUAVILLE ,78660,78478,11,48.466667,1.875,-1
+ Le Pecq ,LE PECQ ,78230,78481,11,48.9,2.1,1.67
+ Perdreauville ,PERDREAUVILLE ,78200,78484,11,48.958333,1.625,-1
+ Le Perray-en-Yvelines ,LE PERRAY EN YVELINES,78610,78486,11,48.7,1.85,1.47
+ Plaisir ,PLAISIR ,78370,78490,11,48.816667,1.95,0.69
+ Poigny-la-Forêt ,POIGNY LA FORET ,78125,78497,11,48.683333,1.75,1.62
+ Poissy ,POISSY ,78300,78498,11,48.933333,2.05,1.34
+ Ponthévrard ,PONTHEVRARD ,78730,78499,11,48.55,1.9,2.89
+ Porcheville ,PORCHEVILLE ,78440,78501,11,48.966667,1.766667,1.74
+ Le Port-Marly ,LE PORT MARLY ,78560,78502,11,48.883333,2.116667,1.78
+ Port-Villez ,PORT VILLEZ ,78270,78503,11,49.05,1.533333,2.04
+ Prunay-le-Temple ,PRUNAY LE TEMPLE ,78910,78505,11,48.866667,1.683333,1.06
+ La Queue-lès-Yvelines ,LA QUEUE LES YVELINES,78940,78513,11,48.8,1.766667,1
+ Raizeux ,RAIZEUX ,78125,78516,11,48.616667,1.683333,2.26
+ Rambouillet ,RAMBOUILLET ,78120,78517,11,48.65,1.833333,1.94
+ Rennemoulin ,RENNEMOULIN ,78590,78518,11,48.833333,2.05,1.34
+ Richebourg ,RICHEBOURG ,78550,78520,11,48.825,1.641667,1.33
+ Rochefort-en-Yvelines ,ROCHEFORT EN YVELINES ,78730,78522,11,48.583333,1.983333,2.57
+ Rocquencourt ,ROCQUENCOURT ,78150,78524,11,48.833333,2.116667,1.78
+ Rolleboise ,ROLLEBOISE ,78270,78528,11,49.016667,1.616667,1.55
+ Rosay ,ROSAY ,78790,78530,11,48.916667,1.683333,1.06
+ Rosny-sur-Seine ,ROSNY SUR SEINE ,78710,78531,11,49,1.633333,1.39
+ Sailly ,SAILLY ,78440,78536,11,49.033333,1.8,1.7
+ Saint-Arnoult-en-Yvelines ,SAINT ARNOULT EN YVELINES,78730,78537,11,48.566667,1.933333,2.73
+ Saint-Cyr-l'École ,SAINT CYR L ECOLE,78210,78545,11,48.8,2.066667,1.45
+ Saint-Forget ,SAINT FORGET ,78720,78548,11,48.7,2,1.47
+ Saint-Germain-de-la-Grange ,SAINT GERMAIN DE LA,78640,78550,11,48.833333,1.9,1.22
+ Saint-Germain-en-Laye ,SAINT GERMAIN EN LAYE,78100,78551,11,48.9,2.083333,1.56
+ Saint-Hilarion ,SAINT HILARION ,78125,78557,11,48.616667,1.733333,2.26
+ Saint-Illiers-la-Ville ,SAINT ILLIERS LA VILLE,78980,78558,11,48.983333,1.55,1.93
+ Saint-Illiers-le-Bois ,SAINT ILLIERS LE BOIS,78980,78559,11,48.966667,1.5,2.26
+ Saint-Lambert ,SAINT LAMBERT ,78470,78561,11,48.733333,2.016667,1.55
+ Saint-Léger-en-Yvelines ,SAINT LEGER EN YVELINES,78610,78562,11,48.716667,1.766667,1.67
+ Saint-Martin-des-Champs ,SAINT MARTIN DES CHAMPS,78790,78565,11,48.883333,1.716667,1.12
+ Saint-Martin-la-Garenne ,SAINT MARTIN LA GARENNE,78520,78567,11,49.033333,1.7,1.7
+ Sainte-Mesme ,SAINTE MESME ,78730,78569,11,48.52988,1.95604,-1
+ Saint-Nom-la-Bretêche ,SAINT NOM LA BRETECHE,78860,78571,11,48.85,2.016667,1.13
+ Saint-Rémy-lès-Chevreuse ,SAINT REMY LES CHEVREUSE,78470,78575,11,48.7,2.083333,1.56
+ Saint-Rémy-l'Honoré ,SAINT REMY L HONORE,78690,78576,11,48.75,1.883333,1
+ Sartrouville ,SARTROUVILLE ,78500,78586,11,48.95,2.183333,2.22
+ Saulx-Marchais ,SAULX MARCHAIS ,78650,78588,11,48.833333,1.833333,1.48
+ Senlisse ,SENLISSE ,78720,78590,11,48.683333,1.983333,1.62
+ Septeuil ,SEPTEUIL ,78790,78591,11,48.9,1.683333,1.06
+ Soindres ,SOINDRES ,78200,78597,11,48.95,1.666667,1.16
+ Sonchamp ,SONCHAMP ,78120,78601,11,48.583333,1.883333,2.57
+ Tacoignières ,TACOIGNIERES ,78910,78605,11,48.833333,1.683333,1.06
+ Le Tartre-Gaudran ,LE TARTRE GAUDRAN ,78113,78606,11,48.7,1.6,1.6
+ Le Tertre-Saint-Denis ,LE TERTRE SAINT DENIS,78980,78608,11,48.933333,1.616667,1.58
+ Tessancourt-sur-Aubette ,TESSANCOURT SUR AUBETTE ,78250,78609,11,49.016667,1.916667,1.55
+ Thiverval-Grignon ,THIVERVAL GRIGNON ,78850,78615,11,48.85,1.916667,0.47
+ Thoiry ,THOIRY ,78770,78616,11,48.866667,1.8,0.29
+ Tilly ,TILLY ,78790,78618,11,48.883333,1.575,1.96
+ Toussus-le-Noble ,TOUSSUS LE NOBLE ,78117,78620,11,48.75,2.116667,1.78
+ Trappes ,TRAPPES ,78190,78621,11,48.783333,2,1.02
+ Le Tremblay-sur-Mauldre ,LE TREMBLAY SUR MAULDRE,78490,78623,11,48.783333,1.866667,1.43
+ Triel-sur-Seine ,TRIEL SUR SEINE ,78510,78624,11,48.983333,2,1.23
+ Vaux-sur-Seine ,VAUX SUR SEINE ,78740,78638,11,49.016667,1.966667,1.55
+ Vélizy-Villacoublay ,VELIZY VILLACOUBLAY ,78140,78640,11,48.8,2.183333,2.22
+ Verneuil-sur-Seine ,VERNEUIL SUR SEINE ,78480,78642,11,48.983333,1.983333,1.23
+ Vernouillet ,VERNOUILLET ,78540,78643,11,48.966667,1.983333,1.07
+ La Verrière ,LA VERRIERE ,78320,78644,11,48.75,1.95,1.14
+ Versailles ,VERSAILLES ,78000,78646,11,48.8,2.133333,1.89
+ Vert ,VERT ,78930,78647,11,48.933333,1.7,1.14
+ Le Vésinet ,LE VESINET ,78110,78650,11,48.9,2.116667,1.78
+ Vicq ,VICQ ,78490,78653,11,48.816667,1.833333,1.02
+ La Villeneuve-en-Chevrie ,LA VILLENEUVE EN CHEVRIE,78270,78668,11,49.016667,1.533333,2.04
+ Villennes-sur-Seine ,VILLENNES SUR SEINE ,78670,78672,11,48.95,2,1.02
+ Villepreux ,VILLEPREUX ,78450,78674,11,48.833333,2.016667,1.13
+ Villette ,VILLETTE ,78930,78677,11,48.933333,1.7,1.14
+ Villiers-le-Mahieu ,VILLIERS LE MAHIEU ,78770,78681,11,48.866667,1.783333,0.79
+ Villiers-Saint-Frédéric ,VILLIERS SAINT FREDERIC ,78640,78683,11,48.816667,1.883333,0.41
+ Viroflay ,VIROFLAY ,78220,78686,11,48.8,2.166667,2.11
+ Voisins-le-Bretonneux ,VOISINS LE BRETONNEUX ,78960,78688,11,48.75,2.05,1.34
+ Les Grésillons ,LES GRESILLONS ,78955,78908,11,48.916667,2.3,2.98
+ Rhodon ,RHODON ,78470,78917,11,48.716667,2.066667,1.45
+ La Maladrerie ,LA MALADRERIE ,78650,78918,11,48.866667,1.883333,1.27
+ Thionville-sur-Opton ,THIONVILLE SUR OPTON ,78550,78921,11,48.766667,1.6,1.6
+ L'Absie ,L ABSIE ,79240,79001,74,46.633333,-0.583333,1.55
+ Adilly ,ADILLY ,79200,79002,74,46.683333,-0.316667,1.22
+ Aiffres ,AIFFRES ,79230,79003,74,46.283333,-0.416667,1.48
+ Aigonnay ,AIGONNAY ,79370,79004,74,46.316667,-0.25,0.91
+ Airvault ,AIRVAULT ,79600,79005,74,46.833333,-0.15,1.16
+ Les Alleuds ,LES ALLEUDS ,79190,79006,74,46.15, ,1.72
+ Allonne ,ALLONNE ,79130,79007,74,46.583333,-0.383333,0.9
+ Amailloux ,AMAILLOUX ,79350,79008,74,46.75,-0.316667,0.96
+ Amuré ,AMURE ,79210,79009,74,46.266667,-0.616667,1.73
+ Arçais ,ARCAIS ,79210,79010,74,46.3,-0.683333,2.11
+ Ardilleux ,ARDILLEUX ,79110,79011,74,46.1,-0.033333,1.55
+ Ardin ,ARDIN ,79160,79012,74,46.483333,-0.55,1.36
+ Argenton-Château ,ARGENTON CHATEAU ,79150,79013,74,46.983333,-0.45,1.71
+ Argenton-l'Église ,ARGENTON L EGLISE ,79290,79014,74,47.05,-0.266667,1.96
+ Asnières-en-Poitou ,ASNIERES EN POITOU ,79170,79015,74,46.1,-0.183333,1.55
+ Les Aubiers ,LES AUBIERS ,79250,79017,74,46.95,-0.583333,1.59
+ Aubigné ,AUBIGNE ,79110,79018,74,46.05,-0.133333,1.74
+ Aubigny ,AUBIGNY ,79390,79019,74,46.733333,-0.133333,1.01
+ Augé ,AUGE ,79400,79020,74,46.433333,-0.283333,1.52
+ Availles-sur-Chizé ,AVAILLES SUR CHIZE ,79170,79021,74,46.1,-0.35,1.55
+ Availles-Thouarsais ,AVAILLES THOUARSAIS ,79600,79022,74,46.85,-0.15,1.22
+ Avon ,AVON ,79800,79023,74,46.383333, ,1.74
+ Azay-le-Brûlé ,AZAY LE BRULE ,79400,79024,74,46.4,-0.25,0.96
+ Azay-sur-Thouet ,AZAY SUR THOUET ,79130,79025,74,46.616667,-0.35,1.3
+ Bagneux ,BAGNEUX ,79290,79026,74,47.083333,-0.216667,2.09
+ La Bataille ,LA BATAILLE ,79110,79027,74,46.083333,-0.1,1.62
+ Beaulieu-sous-Bressuire ,BEAULIEU SOUS BRESSUIRE ,79300,79028,74,46.866667,-0.533333,1.28
+ Beaulieu-sous-Parthenay ,BEAULIEU SOUS PARTHENAY ,79420,79029,74,46.583333,-0.233333,1.26
+ Beaussais ,BEAUSSAIS ,79370,79030,74,46.283333,-0.15,1.71
+ Beauvoir-sur-Niort ,BEAUVOIR SUR NIORT ,79360,79031,74,46.166667,-0.466667,1.31
+ Béceleuf ,BECELEUF ,79160,79032,74,46.466667,-0.5,1.08
+ Bessines ,BESSINES ,79000,79034,74,46.3,-0.5,1.23
+ Le Beugnon ,LE BEUGNON ,79130,79035,74,46.583333,-0.5,1.54
+ Bilazais ,BILAZAIS ,79100,79036,74,46.933333,-0.1,1.53
+ Boësse ,BOESSE ,79150,79037,74,46.983333,-0.466667,1.71
+ Boismé ,BOISME ,79300,79038,74,46.783333,-0.433333,1.25
+ Boisserolles ,BOISSEROLLES ,79360,79039,74,46.1,-0.466667,1.55
+ La Boissière-en-Gâtine ,LA BOISSIERE EN GATINE,79310,79040,74,46.566667,-0.366667,1.79
+ Borcq-sur-Airvault ,BORCQ SUR AIRVAULT ,79600,79041,74,46.833333,-0.083333,1.26
+ Bougon ,BOUGON ,79800,79042,74,46.366667,-0.066667,1.35
+ Bouillé-Loretz ,BOUILLE LORETZ ,79290,79043,74,47.083333,-0.283333,2.09
+ Bouillé-Saint-Paul ,BOUILLE SAINT PAUL ,79290,79044,74,47.033333,-0.35,1.9
+ Bouin ,BOUIN ,79110,79045,74,46.083333,-0.016667,1.63
+ Le Bourdet ,LE BOURDET ,79210,79046,74,46.233333,-0.616667,1.73
+ Boussais ,BOUSSAIS ,79600,79047,74,46.833333,-0.25,1.71
+ Bressuire ,BRESSUIRE ,79300,79049,74,46.85,-0.483333,1.22
+ Bretignolles ,BRETIGNOLLES ,79140,79050,74,46.866667,-0.6,1.64
+ Le Breuil-Bernard ,LE BREUIL BERNARD ,79320,79051,74,46.716667,-0.55,1.36
+ Breuil-Chaussée ,BREUIL CHAUSSEE ,79300,79052,74,46.833333,-0.55,1.36
+ Le Breuil-sous-Argenton ,LE BREUIL SOUS ARGENTON,79150,79053,74,46.983333,-0.416667,1.71
+ Brieuil-sur-Chizé ,BRIEUIL SUR CHIZE ,79170,79055,74,46.116667,-0.316667,1.49
+ Brion-près-Thouet ,BRION PRES THOUET ,79290,79056,74,47.05,-0.183333,1.96
+ Brioux-sur-Boutonne ,BRIOUX SUR BOUTONNE ,79170,79057,74,46.133333,-0.216667,1.43
+ Brûlain ,BRULAIN ,79230,79058,74,46.2,-0.316667,1.48
+ Le Busseau ,LE BUSSEAU ,79240,79059,74,46.583333,-0.6,1.64
+ Caunay ,CAUNAY ,79190,79060,74,46.2,0.083333,2.19
+ Celles-sur-Belle ,CELLES SUR BELLE ,79370,79061,74,46.266667,-0.2,0.94
+ Cerizay ,CERIZAY ,79140,79062,74,46.816667,-0.666667,2.01
+ Cersay ,CERSAY ,79290,79063,74,47.05,-0.35,1.96
+ Chail ,CHAIL ,79500,79064,74,46.2,-0.1,1.18
+ Chambroutet ,CHAMBROUTET ,79300,79065,74,46.883333,-0.466667,1.34
+ Champeaux ,CHAMPEAUX ,79220,79067,74,46.483333,-0.35,1.14
+ Chantecorps ,CHANTECORPS ,79340,79068,74,46.5,-0.15,1.37
+ Chanteloup ,CHANTELOUP ,79320,79069,74,46.766667,-0.516667,1.47
+ La Chapelle-Bertrand ,LA CHAPELLE BERTRAND ,79200,79071,74,46.616667,-0.183333,1.07
+ La Chapelle-Gaudin ,LA CHAPELLE GAUDIN ,79300,79072,74,46.933333,-0.383333,1.67
+ La Chapelle-Largeau ,LA CHAPELLE LARGEAU ,79700,79073,74,46.95,-0.833333,2.95
+ La Chapelle-Pouilloux ,LA CHAPELLE POUILLOUX ,79190,79074,74,46.133333,0.033333,1.91
+ La Chapelle-Saint-Étienne ,LA CHAPELLE SAINT ETIENNE,79240,79075,74,46.683333,-0.566667,1.45
+ La Chapelle-Saint-Laurent ,LA CHAPELLE SAINT LAURENT,79430,79076,74,46.75,-0.483333,0.99
+ La Chapelle-Thireuil ,LA CHAPELLE THIREUIL ,79160,79077,74,46.566667,-0.55,1.42
+ Châtillon-sur-Thouet ,CHATILLON SUR THOUET ,79200,79080,74,46.65,-0.233333,0.48
+ Chauray ,CHAURAY ,79180,79081,74,46.35,-0.383333,0.63
+ Chef-Boutonne ,CHEF BOUTONNE ,79110,79083,74,46.1,-0.05,1.55
+ Chenay ,CHENAY ,79120,79084,74,46.316667,-0.033333,1.54
+ Chérigné ,CHERIGNE ,79170,79085,74,46.116667,-0.166667,1.49
+ Cherveux ,CHERVEUX ,79410,79086,74,46.416667,-0.35,1.31
+ Chey ,CHEY ,79120,79087,74,46.3,-0.05,1.44
+ Chiché ,CHICHE ,79350,79088,74,46.8,-0.366667,1.04
+ Le Chillou ,LE CHILLOU ,79600,79089,74,46.75,-0.133333,1.13
+ Chizé ,CHIZE ,79170,79090,74,46.116667,-0.35,1.49
+ Cirière ,CIRIERE ,79140,79091,74,46.833333,-0.616667,1.73
+ Clavé ,CLAVE ,79420,79092,74,46.5,-0.216667,1.25
+ Clazay ,CLAZAY ,79300,79093,74,46.8,-0.566667,1.52
+ Clessé ,CLESSE ,79350,79094,74,46.716667,-0.416667,1.47
+ Clussais-la-Pommeraie ,CLUSSAIS LA POMMERAIE ,79190,79095,74,46.2,0.05,2
+ Combrand ,COMBRAND ,79140,79096,74,46.866667,-0.683333,2.11
+ Le Corménier ,LE CORMENIER ,79360,79097,74,46.183333,-0.466667,1.25
+ La Couarde ,LA COUARDE ,79800,79098,74,46.316667,-0.15,1.31
+ La Coudre ,LA COUDRE ,79150,79099,74,46.95,-0.466667,1.59
+ Coulon ,COULON ,79510,79100,74,46.316667,-0.583333,1.55
+ Coulonges-sur-l'Autize ,COULONGES SUR L AUTIZE,79160,79101,74,46.483333,-0.6,1.64
+ Coulonges-Thouarsais ,COULONGES THOUARSAIS ,79330,79102,74,46.933333,-0.316667,1.53
+ Courlay ,COURLAY ,79440,79103,74,46.783333,-0.566667,1.45
+ Cours ,COURS ,79220,79104,74,46.5,-0.416667,0.61
+ Coutières ,COUTIERES ,79340,79105,74,46.5,-0.116667,1.07
+ Couture-d'Argenson ,COUTURE D ARGENSON ,79110,79106,74,46,-0.083333,1.92
+ Crézières ,CREZIERES ,79110,79107,74,46.083333,-0.133333,1.62
+ Doux ,DOUX ,79390,79108,74,46.75,0.016667,1.88
+ Échiré ,ECHIRE ,79410,79109,74,46.383333,-0.4,0.52
+ Ensigné ,ENSIGNE ,79170,79111,74,46.083333,-0.233333,1.62
+ Épannes ,EPANNES ,79270,79112,74,46.233333,-0.583333,1.55
+ Étusson ,ETUSSON ,79150,79113,74,47.016667,-0.516667,1.84
+ Exireuil ,EXIREUIL ,79400,79114,74,46.433333,-0.183333,0.92
+ Exoudun ,EXOUDUN ,79800,79115,74,46.333333,-0.066667,1.35
+ Faye-l'Abbesse ,FAYE L ABBESSE ,79350,79116,74,46.833333,-0.35,1.16
+ Faye-sur-Ardin ,FAYE SUR ARDIN ,79160,79117,74,46.45,-0.516667,1.17
+ Fénery ,FENERY ,79450,79118,74,46.683333,-0.366667,1
+ Fenioux ,FENIOUX ,79160,79119,74,46.55,-0.483333,1.62
+ La Ferrière-en-Parthenay ,LA FERRIERE EN PARTHENAY,79390,79120,74,46.666667,-0.083333,1.26
+ Fomperron ,FOMPERRON ,79340,79121,74,46.483333,-0.1,1.16
+ La Forêt-sur-Sèvre ,LA FORET SUR SEVRE,79380,79123,74,46.766667,-0.65,1.92
+ Les Forges ,LES FORGES ,79340,79124,74,46.55,-0.033333,1.54
+ Fors ,FORS ,79230,79125,74,46.233333,-0.4,1.06
+ Les Fosses ,LES FOSSES ,79360,79126,74,46.166667,-0.366667,2
+ La Foye-Monjault ,LA FOYE MONJAULT ,79360,79127,74,46.183333,-0.533333,1.35
+ François ,FRANCOIS ,79260,79128,74,46.366667,-0.35,1.48
+ Fressines ,FRESSINES ,79370,79129,74,46.325,-0.291667,-1
+ Frontenay-Rohan-Rohan ,FRONTENAY ROHAN ROHAN ,79270,79130,74,46.25,-0.533333,1.27
+ Genneton ,GENNETON ,79150,79132,74,47.05,-0.416667,1.96
+ Glénay ,GLENAY ,79330,79134,74,46.866667,-0.25,1.28
+ Gourgé ,GOURGE ,79200,79135,74,46.733333,-0.166667,1.42
+ Gript ,GRIPT ,79360,79138,74,46.216667,-0.466667,1.12
+ Les Groseillers ,LES GROSEILLERS ,79220,79139,74,46.533333,-0.4,1
+ Hanc ,HANC ,79110,79140,74,46.083333,-0.016667,1.63
+ Irais ,IRAIS ,79600,79141,74,46.883333,-0.083333,1.34
+Juillé, ,79170,79142,74,46.116667,-0.216667,1.49
+ Les Jumeaux ,LES JUMEAUX ,79600,79143,74,46.816667,-0.083333,1.26
+ Juscorps ,JUSCORPS ,79230,79144,74,46.216667,-0.383333,1.12
+ Lageon ,LAGEON ,79200,79145,74,46.733333,-0.25,1.01
+ Lamaire ,LAMAIRE ,79600,79146,74,46.75,-0.133333,1.13
+ Largeasse ,LARGEASSE ,79240,79147,74,46.683333,-0.5,1.25
+ Lezay ,LEZAY ,79120,79148,74,46.266667,-0.016667,1.63
+ Lhoumois ,LHOUMOIS ,79390,79149,74,46.7,-0.133333,0.98
+ Limalonges ,LIMALONGES ,79190,79150,74,46.133333,0.166667,2.66
+ Loizé ,LOIZE ,79110,79151,74,46.133333,-0.033333,1.54
+ Lorigné ,LORIGNE ,79190,79152,74,46.1,0.066667,2.1
+ Loubigné ,LOUBIGNE ,79110,79153,74,46.066667,-0.083333,1.68
+ Loubillé ,LOUBILLE ,79110,79154,74,46.05,-0.066667,1.74
+ Loublande ,LOUBLANDE ,79700,79155,74,46.983333,-0.833333,2.95
+ Louin ,LOUIN ,79600,79156,74,46.8,-0.166667,1.04
+ Louzy ,LOUZY ,79100,79157,74,47.016667,-0.183333,1.84
+ Luché-sur-Brioux ,LUCHE SUR BRIOUX ,79170,79158,74,46.133333,-0.15,1.56
+ Luché-Thouarsais ,LUCHE THOUARSAIS ,79330,79159,74,46.9,-0.333333,1.41
+ Lusseray ,LUSSERAY ,79170,79160,74,46.15,-0.166667,1.37
+ Luzay ,LUZAY ,79100,79161,74,46.933333,-0.2,1.53
+ Magné ,MAGNE ,79460,79162,74,46.316667,-0.55,1.36
+ Maisonnay ,MAISONNAY ,79500,79164,74,46.183333,-0.066667,1.36
+ Maisontiers ,MAISONTIERS ,79600,79165,74,46.783333,-0.25,1.82
+ Marigny ,MARIGNY ,79360,79166,74,46.2,-0.416667,1.25
+ Marnes ,MARNES ,79600,79167,74,46.85,-0.016667,1.81
+ Massais ,MASSAIS ,79150,79168,74,47.016667,-0.35,1.84
+ Maulais ,MAULAIS ,79100,79169,74,46.933333,-0.166667,1.53
+ Mauzé-sur-le-Mignon ,MAUZE SUR LE MIGNON,79210,79170,74,46.2,-0.666667,2.01
+ Mauzé-Thouarsais ,MAUZE THOUARSAIS ,79100,79171,74,46.983333,-0.266667,1.71
+ Mazières-en-Gâtine ,MAZIERES EN GATINE ,79310,79172,74,46.533333,-0.316667,0.67
+ Mazières-sur-Béronne ,MAZIERES SUR BERONNE ,79500,79173,74,46.2,-0.183333,1.25
+ Melle ,MELLE ,79500,79174,74,46.216667,-0.133333,1.12
+ Melleran ,MELLERAN ,79190,79175,74,46.133333, ,1.72
+ Ménigoute ,MENIGOUTE ,79340,79176,74,46.5,-0.05,1.44
+ Messé ,MESSE ,79120,79177,74,46.266667,0.116667,2.38
+ Missé ,MISSE ,79100,79178,74,46.95,-0.2,1.59
+ Moncoutant ,MONCOUTANT ,79320,79179,74,46.716667,-0.583333,1.55
+ Montalembert ,MONTALEMBERT ,79190,79180,74,46.1,0.15,2.56
+ Montigné ,MONTIGNE ,79370,79181,74,46.2,-0.233333,1.41
+ Montigny ,MONTIGNY ,79380,79182,74,46.8,-0.633333,1.83
+ Montravers ,MONTRAVERS ,79140,79183,74,46.833333,-0.716667,2.3
+ La Mothe-Saint-Héray ,LA MOTHE SAINT HERAY,79800,79184,74,46.366667,-0.1,1.16
+ Mougon ,MOUGON ,79370,79185,74,46.291667,-0.283333,-1
+ Moulins ,MOULINS ,79700,79186,74,46.95,-0.8,2.76
+ Moutiers-sous-Argenton ,MOUTIERS SOUS ARGENTON ,79150,79187,74,46.95,-0.383333,1.59
+ Moutiers-sous-Chantemerle ,MOUTIERS SOUS CHANTEMERLE ,79320,79188,74,46.7,-0.616667,1.73
+ Nanteuil ,NANTEUIL ,79400,79189,74,46.416667,-0.166667,1.33
+ Neuvy-Bouin ,NEUVY BOUIN ,79130,79190,74,46.683333,-0.466667,1.51
+ Niort ,NIORT ,79000,79191,74,46.316667,-0.466667,0.89
+ Noirlieu ,NOIRLIEU ,79300,79192,74,46.916667,-0.433333,1.47
+ Noirterre ,NOIRTERRE ,79300,79193,74,46.866667,-0.4,1.28
+ Noizé ,NOIZE ,79100,79194,74,46.9,-0.1,1.41
+ Oiron ,OIRON ,79100,79196,74,46.95,-0.083333,1.59
+ Oroux ,OROUX ,79390,79197,74,46.683333,-0.1,1.16
+ Paizay-le-Chapt ,PAIZAY LE CHAPT ,79170,79198,74,46.083333,-0.183333,1.62
+ Paizay-le-Tort ,PAIZAY LE TORT ,79500,79199,74,46.166667,-0.183333,1.43
+ Pamplie ,PAMPLIE ,79220,79200,74,46.533333,-0.433333,1.14
+ Pamproux ,PAMPROUX ,79800,79201,74,46.383333,-0.05,1.44
+ Parthenay ,PARTHENAY ,79200,79202,74,46.65,-0.25,0.48
+ Pas-de-Jeu ,PAS DE JEU ,79100,79203,74,46.983333,-0.033333,1.88
+ Périgné ,PERIGNE ,79170,79204,74,46.183333,-0.25,1.25
+ Pers ,PERS ,79190,79205,74,46.216667,0.066667,2.1
+ La Petite-Boissière ,LA PETITE BOISSIERE ,79700,79207,74,46.883333,-0.75,2.48
+ La Peyratte ,LA PEYRATTE ,79200,79208,74,46.666667,-0.15,1.27
+ Pierrefitte ,PIERREFITTE ,79330,79209,74,46.866667,-0.3,1.28
+ Pioussay ,PIOUSSAY ,79110,79211,74,46.066667,0.033333,1.91
+ Pliboux ,PLIBOUX ,79190,79212,74,46.166667,0.133333,2.47
+ Pompaire ,POMPAIRE ,79200,79213,74,46.616667,-0.233333,0.74
+ Pouffonds ,POUFFONDS ,79500,79214,74,46.2,-0.1,1.18
+ Pougne-Hérisson ,POUGNE HERISSON ,79130,79215,74,46.65,-0.4,0.76
+ Prahecq ,PRAHECQ ,79230,79216,74,46.25,-0.35,1
+ Prailles ,PRAILLES ,79370,79217,74,46.316667,-0.216667,0.95
+ Pressigny ,PRESSIGNY ,79390,79218,74,46.75,-0.1,1.16
+ Priaires ,PRIAIRES ,79210,79219,74,46.133333,-0.6,2.04
+ Prin-Deyrançon ,PRIN DEYRANCON ,79210,79220,74,46.216667,-0.633333,1.83
+ Prissé ,PRISSE ,79360,79221,74,46.15,-0.5,1.37
+ Pugny ,PUGNY ,79320,79222,74,46.716667,-0.516667,1.17
+ Reffannes ,REFFANNES ,79420,79225,74,46.55,-0.183333,0.7
+ Le Retail ,LE RETAIL ,79130,79226,74,46.566667,-0.433333,0.9
+ La Revêtizon ,LA REVETIZON ,79360,79227,74,46.183333,-0.466667,1.25
+ Rigné ,RIGNE ,79100,79228,74,46.95,-0.25,1.59
+ La Rochénard ,LA ROCHENARD ,79270,79229,74,46.2,-0.583333,1.55
+ Rom ,ROM ,79120,79230,74,46.3,0.116667,2.38
+ Romans ,ROMANS ,79260,79231,74,46.35,-0.233333,0.94
+ Rorthais ,RORTHAIS ,79700,79233,74,46.916667,-0.716667,2.3
+ Rouvre ,ROUVRE ,79220,79234,74,46.433333,-0.4,1.07
+ Saint-Amand-sur-Sèvre ,SAINT AMAND SUR SEVRE,79700,79235,74,46.866667,-0.8,2.76
+ Saint-André-sur-Sèvre ,SAINT ANDRE SUR SEVRE,79380,79236,74,46.783333,-0.666667,2.01
+ Saint-Aubin-de-Baubigné ,SAINT AUBIN DE BAUBIGNE,79700,79237,74,46.95,-0.7,2.2
+ Saint-Aubin-du-Plain ,SAINT AUBIN DU PLAIN,79300,79238,74,46.933333,-0.483333,1.53
+ Saint-Aubin-le-Cloud ,SAINT AUBIN LE CLOUD,79450,79239,74,46.65,-0.35,1
+ Sainte-Blandine ,SAINTE BLANDINE ,79370,79240,74,46.25,-0.266667,1
+ Saint-Christophe-sur-Roc ,SAINT CHRISTOPHE SUR ROC,79220,79241,74,46.45,-0.35,1.35
+ Saint-Clémentin ,SAINT CLEMENTIN ,79150,79242,74,46.95,-0.516667,1.59
+ Saint-Cyr-la-Lande ,SAINT CYR LA LANDE,79100,79244,74,47.05,-0.15,1.96
+ Saint-Denis ,SAINT DENIS ,79220,79245,74,46.483333,-0.383333,0.46
+ Sainte-Éanne ,SAINTE EANNE ,79800,79246,74,46.383333,-0.15,0.94
+ Saint-Étienne-la-Cigogne ,SAINT ETIENNE LA CIGOGNE,79360,79247,74,46.116667,-0.5,1.49
+ Saint-Gelais ,SAINT GELAIS ,79410,79249,74,46.383333,-0.383333,0.73
+ Saint-Génard ,SAINT GENARD ,79500,79251,74,46.183333,-0.133333,1.25
+ Saint-Généroux ,SAINT GENEROUX ,79600,79252,74,46.883333,-0.15,1.34
+ Saint-Georges-de-Noisné ,SAINT GEORGES DE NOISNE,79400,79253,74,46.483333,-0.25,1.53
+ Saint-Georges-de-Rex ,SAINT GEORGES DE REX,79210,79254,74,46.283333,-0.65,1.92
+ Saint-Germain-de-Longue-Chaume ,SAINT GERMAIN DE LONGUE,79200,79255,74,46.716667,-0.35,1.84
+ Saint-Germier ,SAINT GERMIER ,79340,79256,74,46.45,-0.033333,1.54
+ Saint-Hilaire-la-Palud ,SAINT HILAIRE LA PALUD,79210,79257,74,46.266667,-0.716667,2.3
+ Saint-Jacques-de-Thouars ,SAINT JACQUES DE THOUARS,79100,79258,74,46.983333,-0.216667,1.71
+ Saint-Jean-de-Thouars ,SAINT JEAN DE THOUARS,79100,79259,74,46.966667,-0.216667,1.65
+ Saint-Jouin-de-Marnes ,SAINT JOUIN DE MARNES,79600,79260,74,46.883333,-0.05,1.54
+ Saint-Jouin-de-Milly ,SAINT JOUIN DE MILLY,79380,79261,74,46.75,-0.6,1.64
+ Saint-Laurs ,SAINT LAURS ,79160,79263,74,46.516667,-0.566667,1.45
+ Saint-Léger-de-Montbrun ,SAINT LEGER DE MONTBRUN,79100,79265,74,47,-0.133333,1.78
+ Saint-Liguaire ,SAINT LIGUAIRE ,79000,79266,74,46.333333,-0.516667,1.26
+ Saint-Lin ,SAINT LIN ,79420,79267,74,46.533333,-0.233333,1.11
+ Saint-Maixent-de-Beugné ,SAINT MAIXENT DE BEUGNE,79160,79269,74,46.5,-0.6,1.64
+ Saint-Maixent-l'École ,SAINT MAIXENT L ECOLE,79400,79270,74,46.416667,-0.2,0.6
+ Saint-Marsault ,SAINT MARSAULT ,79380,79272,74,46.733333,-0.65,1.92
+ Saint-Martin-de-Bernegoue ,SAINT MARTIN DE BERNEGOUE,79230,79273,74,46.233333,-0.35,1.06
+ Saint-Martin-de-Mâcon ,SAINT MARTIN DE MACON,79100,79274,74,47.016667,-0.116667,1.84
+ Saint-Martin-d'Entraigues ,SAINT MARTIN D ENTRAIGUES,79110,79275,74,46.1,-0.116667,1.55
+ Saint-Martin-de-Saint-Maixent ,SAINT MARTIN DE SAINT,79400,79276,74,46.4,-0.2,0.83
+ Saint-Martin-de-Sanzay ,SAINT MARTIN DE SANZAY,79290,79277,74,47.083333,-0.2,2.09
+ Saint-Martin-du-Fouilloux ,SAINT MARTIN DU FOUILLOUX,79420,79278,74,46.6,-0.116667,1.65
+ Saint-Martin-lès-Melle ,SAINT MARTIN LES MELLE,79500,79279,74,46.216667,-0.15,1.12
+ Saint-Maurice-la-Fougereuse ,SAINT MAURICE LA FOUGEREUSE,79150,79280,74,47.033333,-0.5,1.9
+ Saint-Maxire ,SAINT MAXIRE ,79410,79281,74,46.4,-0.483333,0.99
+ Saint-Médard ,SAINT MEDARD ,79370,79282,74,46.216667,-0.266667,1.23
+ Sainte-Néomaye ,SAINTE NEOMAYE ,79260,79283,74,46.366667,-0.25,0.58
+ Sainte-Ouenne ,SAINTE OUENNE ,79220,79284,74,46.45,-0.45,1.16
+ Saint-Pardoux ,SAINT PARDOUX ,79310,79285,74,46.566667,-0.3,0.42
+ Saint-Paul-en-Gâtine ,SAINT PAUL EN GATINE,79240,79286,74,46.633333,-0.6,1.64
+ Sainte-Pezenne ,SAINTE PEZENNE ,79000,79287,74,46.35,-0.466667,0.89
+ Saint-Pierre-à-Champ ,SAINT PIERRE A CHAMP,79290,79288,74,47.066667,-0.366667,2.02
+ Saint-Pompain ,SAINT POMPAIN ,79160,79290,74,46.433333,-0.6,1.64
+ Saint-Rémy ,SAINT REMY ,79410,79293,74,46.366667,-0.533333,1.64
+ Saint-Romans-des-Champs ,SAINT ROMANS DES CHAMPS,79230,79294,74,46.2,-0.35,1.18
+ Saint-Romans-lès-Melle ,SAINT ROMANS LES MELLE,79500,79295,74,46.2,-0.183333,1.25
+ Sainte-Soline ,SAINTE SOLINE ,79120,79297,74,46.25,0.033333,1.91
+ Saint-Symphorien ,SAINT SYMPHORIEN ,79270,79298,74,46.266667,-0.5,1.51
+ Saint-Varent ,SAINT VARENT ,79330,79299,74,46.883333,-0.233333,1.34
+ Sainte-Verge ,SAINTE VERGE ,79100,79300,74,47.016667,-0.216667,1.84
+ Saint-Vincent-la-Châtre ,SAINT VINCENT LA CHATRE,79500,79301,74,46.216667,-0.033333,2.09
+ Saivres ,SAIVRES ,79400,79302,74,46.433333,-0.233333,0.42
+ Sansais ,SANSAIS ,79270,79304,74,46.266667,-0.583333,1.55
+ Saurais ,SAURAIS ,79200,79306,74,46.616667,-0.15,1.47
+ Sauzé-Vaussais ,SAUZE VAUSSAIS ,79190,79307,74,46.133333,0.1,2.28
+ Sciecq ,SCIECQ ,79000,79308,74,46.366667,-0.466667,0.95
+ Scillé ,SCILLE ,79240,79309,74,46.6,-0.566667,1.45
+ Secondigné-sur-Belle ,SECONDIGNE SUR BELLE ,79170,79310,74,46.166667,-0.3,1.31
+ Secondigny ,SECONDIGNY ,79130,79311,74,46.616667,-0.416667,0.61
+ Séligné ,SELIGNE ,79170,79312,74,46.133333,-0.283333,1.43
+ Sepvret ,SEPVRET ,79120,79313,74,46.283333,-0.083333,1.55
+ Sompt ,SOMPT ,79110,79314,74,46.15,-0.1,1.37
+ Souché ,SOUCHE ,79000,79315,74,46.333333,-0.416667,1.57
+ Soudan ,SOUDAN ,79800,79316,74,46.433333,-0.116667,1.15
+ Soulièvres ,SOULIEVRES ,79600,79317,74,46.816667,-0.15,1.1
+ Soutiers ,SOUTIERS ,79310,79318,74,46.566667,-0.266667,0.78
+ Souvigné ,SOUVIGNE ,79800,79319,74,46.366667,-0.183333,1.5
+ Taizé ,TAIZE ,79100,79321,74,46.916667,-0.116667,1.47
+ Le Tallud ,LE TALLUD ,79200,79322,74,46.633333,-0.3,1.07
+ Terves ,TERVES ,79300,79324,74,46.8,-0.516667,1.17
+ Tessonnière ,TESSONNIERE ,79600,79325,74,46.816667,-0.183333,1.1
+ Thénezay ,THENEZAY ,79390,79326,74,46.716667,-0.033333,1.54
+ Thorigné ,THORIGNE ,79370,79327,74,46.283333,-0.25,0.88
+ Thorigny ,THORIGNY ,79360,79328,74,46.15,-0.55,1.64
+ Thouars ,THOUARS ,79100,79329,74,46.966667,-0.216667,1.65
+ Tillou ,TILLOU ,79110,79330,74,46.15,-0.116667,1.43
+ Tourtenay ,TOURTENAY ,79100,79331,74,47.033333,-0.133333,1.9
+ Trayes ,TRAYES ,79240,79332,74,46.683333,-0.483333,1.5
+ Ulcot ,ULCOT ,79150,79333,74,47.033333,-0.416667,1.9
+ Vallans ,VALLANS ,79270,79335,74,46.216667,-0.55,1.36
+ Vançais ,VANCAIS ,79120,79336,74,46.3,0.05,2
+ Le Vanneau ,LE VANNEAU ,79270,79337,74,46.3,-0.633333,1.85
+ Vanzay ,VANZAY ,79120,79338,74,46.233333,0.1,2.28
+ Vasles ,VASLES ,79340,79339,74,46.583333,-0.016667,1.63
+ Vausseroux ,VAUSSEROUX ,79420,79340,74,46.55,-0.133333,0.98
+ Vautebis ,VAUTEBIS ,79420,79341,74,46.533333,-0.15,0.88
+ Vernoux-en-Gâtine ,VERNOUX EN GATINE ,79240,79342,74,46.633333,-0.516667,1.17
+ Vernoux-sur-Boutonne ,VERNOUX SUR BOUTONNE ,79170,79343,74,46.15,-0.25,1.37
+ Verrines-sous-Celles ,VERRINES SOUS CELLES ,79370,79344,74,46.233333,-0.233333,1.06
+ Verruyes ,VERRUYES ,79310,79345,74,46.516667,-0.283333,0.85
+ Le Vert ,LE VERT ,79170,79346,74,46.083333,-0.383333,1.95
+ Viennay ,VIENNAY ,79200,79347,74,46.683333,-0.25,0.6
+ Villefollet ,VILLEFOLLET ,79170,79348,74,46.116667,-0.266667,1.49
+ Villemain ,VILLEMAIN ,79110,79349,74,46.016667,-0.083333,1.86
+ Villiers-en-Bois ,VILLIERS EN BOIS ,79360,79350,74,46.15,-0.4,1.37
+ Villiers-en-Plaine ,VILLIERS EN PLAINE ,79160,79351,74,46.4,-0.533333,1.51
+ Villiers-sur-Chizé ,VILLIERS SUR CHIZE ,79170,79352,74,46.1,-0.3,1.55
+ Vitré ,VITRE ,79370,79353,74,46.283333,-0.2,0.88
+ Vouhé ,VOUHE ,79310,79354,74,46.55,-0.233333,1.48
+ Vouillé ,VOUILLE ,79230,79355,74,46.316667,-0.366667,1.71
+ Voultegon ,VOULTEGON ,79150,79356,74,46.933333,-0.516667,1.53
+ Xaintray ,XAINTRAY ,79220,79357,74,46.5,-0.466667,1.29
+ La Charrière ,LA CHARRIERE ,79360,79903,74,46.15,-0.483333,1.37
+ Abbeville ,ABBEVILLE ,80132,80001,11,50.1,1.833333,1.23
+ Acheux-en-Amiénois ,ACHEUX EN AMIENOIS ,80560,80003,11,50.066667,2.533333,0.95
+ Acheux-en-Vimeu ,ACHEUX EN VIMEU ,80210,80004,11,50.066667,1.683333,1.62
+ Agenville ,AGENVILLE ,80370,80005,11,50.166667,2.1,1.69
+ Agenvillers ,AGENVILLERS ,80150,80006,11,50.166667,1.916667,1.69
+ Agnières ,AGNIERES ,80290,80007,11,49.716667,1.9,1.63
+ Aigneville ,AIGNEVILLE ,80210,80008,11,50.033333,1.616667,1.8
+ Ailly-le-Haut-Clocher ,AILLY LE HAUT CLOCHER,80690,80009,11,50.083333,2,1.07
+ Ailly-sur-Noye ,AILLY SUR NOYE ,80250,80010,11,49.75,2.366667,1.38
+ Ailly-sur-Somme ,AILLY SUR SOMME ,80470,80011,11,49.916667,2.2,0.33
+ Airaines ,AIRAINES ,80270,80013,11,49.966667,1.95,0.93
+ Aizecourt-le-Bas ,AIZECOURT LE BAS ,80240,80014,11,49.966667,3.05,1.97
+ Aizecourt-le-Haut ,AIZECOURT LE HAUT ,80200,80015,11,49.95,2.983333,1.79
+ Albert ,ALBERT ,80300,80016,11,50,2.65,0.92
+ Allaines ,ALLAINES ,80200,80017,11,49.95,2.95,1.71
+ Allenay ,ALLENAY ,80530,80018,11,50.083333,1.5,2.11
+ Allery ,ALLERY ,80270,80019,11,49.966667,1.9,1.05
+ Allonville ,ALLONVILLE ,80260,80020,11,49.933333,2.35,0.79
+ Amiens ,AMIENS ,80090,80021,11,49.9,2.3,0.28
+ Andainville ,ANDAINVILLE ,80140,80022,11,49.9,1.783333,1.36
+ Andechy ,ANDECHY ,80700,80023,11,49.716667,2.716667,1.63
+ Argoeuves ,ARGOEUVES ,80730,80024,11,49.916667,2.233333,0.75
+ Argoules ,ARGOULES ,80120,80025,11,50.35,1.833333,-1
+ Arguel ,ARGUEL ,80140,80026,11,49.866667,1.8,1.32
+ Arquèves ,ARQUEVES ,80560,80028,11,50.066667,2.483333,0.95
+ Arrest ,ARREST ,80820,80029,11,50.133333,1.616667,1.8
+ Arry ,ARRY ,80120,80030,11,50.283333,1.716667,2.55
+ Arvillers ,ARVILLERS ,80910,80031,11,49.733333,2.65,1.51
+ Assainvillers ,ASSAINVILLERS ,80500,80032,11,49.616667,2.6,2.37
+ Assevillers ,ASSEVILLERS ,80200,80033,11,49.9,2.833333,1.4
+ Athies ,ATHIES ,80200,80034,11,49.85,2.983333,1.79
+ Aubercourt ,AUBERCOURT ,80110,80035,11,49.833333,2.55,1.28
+ Aubigny ,AUBIGNY ,80800,80036,11,49.9,2.483333,0.77
+ Aubvillers ,AUBVILLERS ,80110,80037,11,49.716667,2.483333,1.63
+ Auchonvillers ,AUCHONVILLERS ,80560,80038,11,50.083333,2.616667,1.57
+ Ault ,AULT ,80460,80039,11,50.1,1.45,2.24
+ Aumâtre ,AUMATRE ,80140,80040,11,49.916667,1.783333,1.36
+ Aumont ,AUMONT ,80640,80041,11,49.883333,1.916667,1.01
+ Autheux ,AUTHEUX ,80600,80042,11,50.133333,2.233333,1.44
+ Authie ,AUTHIE ,80560,80043,11,50.116667,2.5,1.32
+ Authieule ,AUTHIEULE ,80600,80044,11,50.133333,2.366667,1.44
+ Authuille ,AUTHUILLE ,80300,80045,11,50.033333,2.666667,0.96
+ Avelesges ,AVELESGES ,80270,80046,11,49.916667,1.916667,1.01
+ Aveluy ,AVELUY ,80300,80047,11,50.016667,2.666667,0.96
+ Avesnes-Chaussoy ,AVESNES CHAUSSOY ,80140,80048,11,49.9,1.866667,1.74
+ Ayencourt ,AYENCOURT ,80500,80049,11,49.616667,2.566667,2.37
+ Bacouel-sur-Selle ,BACOUEL SUR SELLE ,80480,80050,11,49.833333,2.233333,0.77
+ Bailleul ,BAILLEUL ,80490,80051,11,50.033333,1.85,1.19
+ Baizieux ,BAIZIEUX ,80300,80052,11,50,2.516667,1.79
+ Balâtre ,BALATRE ,80700,80053,11,49.716667,2.866667,1.63
+ Barleux ,BARLEUX ,80200,80054,11,49.883333,2.883333,1.53
+ Barly ,BARLY ,80600,80055,11,50.2,2.266667,1.93
+ Bavelincourt ,BAVELINCOURT ,80260,80056,11,49.983333,2.45,1.37
+ Bayencourt ,BAYENCOURT ,80560,80057,11,50.116667,2.583333,1.32
+ Bayonvillers ,BAYONVILLERS ,80170,80058,11,49.866667,2.633333,1.59
+ Bazentin ,BAZENTIN ,80300,80059,11,50.033333,2.766667,1.41
+ Béalcourt ,BEALCOURT ,80370,80060,11,50.2,2.183333,1.93
+ Beaucamps-le-Jeune ,BEAUCAMPS LE JEUNE ,80430,80061,11,49.816667,1.766667,1.41
+ Beaucamps-le-Vieux ,BEAUCAMPS LE VIEUX ,80430,80062,11,49.833333,1.783333,1.36
+ Beauchamps ,BEAUCHAMPS ,80770,80063,11,50.016667,1.516667,2.06
+ Beaucourt-en-Santerre ,BEAUCOURT EN SANTERRE ,80110,80064,11,49.783333,2.583333,1.5
+ Beaucourt-sur-l'Ancre ,BEAUCOURT SUR L ANCRE,80300,80065,11,50.083333,2.666667,1.07
+ Beaucourt-sur-l'Hallue ,BEAUCOURT SUR L HALLUE,80260,80066,11,49.983333,2.45,1.37
+ Beaufort-en-Santerre ,BEAUFORT EN SANTERRE ,80170,80067,11,49.766667,2.666667,1.26
+ Beaumetz ,BEAUMETZ ,80370,80068,11,50.133333,2.116667,1.44
+ Beaumont-Hamel ,BEAUMONT HAMEL ,80300,80069,11,50.083333,2.65,1.07
+ Beauquesne ,BEAUQUESNE ,80600,80070,11,50.083333,2.4,1.48
+ Beauval ,BEAUVAL ,80630,80071,11,50.1,2.333333,1.2
+ Bécordel-Bécourt ,BECORDEL BECOURT ,80300,80073,11,49.983333,2.683333,1.01
+ Becquigny ,BECQUIGNY ,80500,80074,11,49.7,2.616667,1.75
+ Béhen ,BEHEN ,80870,80076,11,50.05,1.75,1.45
+ Béhencourt ,BEHENCOURT ,80260,80077,11,49.966667,2.433333,1.13
+ Bellancourt ,BELLANCOURT ,80132,80078,11,50.083333,1.916667,1.46
+ Belleuse ,BELLEUSE ,80160,80079,11,49.7,2.116667,1.75
+ Belloy-en-Santerre ,BELLOY EN SANTERRE ,80200,80080,11,49.883333,2.85,1.44
+ Belloy-Saint-Léonard ,BELLOY SAINT LEONARD ,80270,80081,11,49.908333,1.9,-1
+ Bergicourt ,BERGICOURT ,80290,80083,11,49.75,2.016667,1.38
+ Bernâtre ,BERNATRE ,80370,80085,11,50.183333,2.083333,1.81
+ Bernaville ,BERNAVILLE ,80370,80086,11,50.133333,2.166667,1.44
+ Bernay-en-Ponthieu ,BERNAY EN PONTHIEU ,80120,80087,11,50.266667,1.75,2.43
+ Bernes ,BERNES ,80240,80088,11,49.9,3.083333,2.06
+ Berneuil ,BERNEUIL ,80620,80089,11,50.1,2.166667,1.89
+ Berny-en-Santerre ,BERNY EN SANTERRE ,80200,80090,11,49.866667,2.85,1.44
+ Bertangles ,BERTANGLES ,80260,80092,11,49.966667,2.283333,1.28
+ Berteaucourt-les-Dames ,BERTEAUCOURT LES DAMES ,80850,80093,11,50.05,2.166667,0.83
+ Berteaucourt-lès-Thennes ,BERTEAUCOURT LES THENNES ,80110,80094,11,49.816667,2.466667,0.89
+ Bertrancourt ,BERTRANCOURT ,80560,80095,11,50.083333,2.55,1.07
+ Béthencourt-sur-Mer ,BETHENCOURT SUR MER ,80530,80096,11,50.083333,1.5,2.11
+ Béthencourt-sur-Somme ,BETHENCOURT SUR SOMME ,80190,80097,11,49.8,2.966667,1.75
+ Bettembos ,BETTEMBOS ,80590,80098,11,49.8,1.883333,1.1
+ Bettencourt-Rivière ,BETTENCOURT RIVIERE ,80270,80099,11,49.983333,1.966667,1.44
+ Bettencourt-Saint-Ouen ,BETTENCOURT SAINT OUEN ,80610,80100,11,50.016667,2.116667,1
+ Beuvraignes ,BEUVRAIGNES ,80700,80101,11,49.65,2.766667,2.12
+ Biaches ,BIACHES ,80200,80102,11,49.916667,2.916667,1.62
+ Biarre ,BIARRE ,80190,80103,11,49.716667,2.866667,1.72
+ Biencourt ,BIENCOURT ,80140,80104,11,49.966667,1.7,1.58
+ Billancourt ,BILLANCOURT ,80190,80105,11,49.716667,2.883333,1.63
+ Blangy-sous-Poix ,BLANGY SOUS POIX ,80290,80106,11,49.766667,2,1.26
+ Blangy-Tronville ,BLANGY TRONVILLE ,80440,80107,11,49.883333,2.416667,1.42
+ Boisbergues ,BOISBERGUES ,80600,80108,11,50.15,2.233333,1.57
+ Le Boisle ,LE BOISLE ,80150,80109,11,50.266667,1.983333,2.43
+ Boismont ,BOISMONT ,80230,80110,11,50.15,1.683333,1.62
+ Boisrault ,BOISRAULT ,80640,80111,11,49.85,1.883333,1.1
+ Bonnay ,BONNAY ,80800,80112,11,49.933333,2.516667,0.57
+ Bonneville ,BONNEVILLE ,80670,80113,11,50.083333,2.25,1.36
+ Bouchavesnes-Bergen ,BOUCHAVESNES BERGEN ,80200,80115,11,49.983333,2.916667,1.62
+ Bouchoir ,BOUCHOIR ,80910,80116,11,49.75,2.683333,1.38
+ Boufflers ,BOUFFLERS ,80150,80118,11,50.266667,2.016667,2.43
+ Bougainville ,BOUGAINVILLE ,80540,80119,11,49.866667,2.033333,0.75
+ Bouillancourt-en-Séry ,BOUILLANCOURT EN SERY ,80220,80120,11,49.966667,1.633333,1.76
+ Bouillancourt-la-Bataille ,BOUILLANCOURT LA BATAILLE ,80500,80121,11,49.7,2.533333,1.75
+ Bouquemaison ,BOUQUEMAISON ,80600,80122,11,50.216667,2.333333,2.06
+ Bourdon ,BOURDON ,80310,80123,11,49.983333,2.066667,0.98
+ Bourseville ,BOURSEVILLE ,80130,80124,11,50.1,1.533333,2.02
+ Boussicourt ,BOUSSICOURT ,80500,80125,11,49.7,2.583333,1.75
+ Bouttencourt ,BOUTTENCOURT ,80220,80126,11,49.933333,1.633333,1.76
+ Bouvaincourt-sur-Bresle ,BOUVAINCOURT SUR BRESLE ,80220,80127,11,50.033333,1.5,2.11
+ Bouvincourt-en-Vermandois ,BOUVINCOURT EN VERMANDOIS ,80200,80128,11,49.883333,3.05,1.97
+ Bouzincourt ,BOUZINCOURT ,80300,80129,11,50.016667,2.616667,0.83
+ Bovelles ,BOVELLES ,80540,80130,11,49.883333,2.133333,1
+ Boves ,BOVES ,80440,80131,11,49.85,2.383333,0.65
+ Braches ,BRACHES ,80110,80132,11,49.733333,2.516667,1.51
+ Brailly-Cornehotte ,BRAILLY CORNEHOTTE ,80150,80133,11,50.216667,1.966667,2.06
+ Brassy ,BRASSY ,80160,80134,11,49.733333,2.05,1.53
+ Bray-lès-Mareuil ,BRAY LES MAREUIL ,80580,80135,11,50.05,1.85,1.53
+ Bray-sur-Somme ,BRAY SUR SOMME ,80340,80136,11,49.933333,2.716667,1.09
+ Breilly ,BREILLY ,80470,80137,11,49.933333,2.183333,0.98
+ Bresle ,BRESLE ,80300,80138,11,49.983333,2.566667,1.22
+ Breuil ,BREUIL ,80400,80139,11,49.716667,2.95,1.71
+ Brévillers ,BREVILLERS ,80600,80140,11,50.216667,2.383333,2.06
+ Briquemesnil-Floxicourt ,BRIQUEMESNIL FLOXICOURT ,80540,80142,11,49.866667,2.083333,0.57
+ Brocourt ,BROCOURT ,80430,80143,11,49.85,1.833333,1.23
+ Brouchy ,BROUCHY ,80400,80144,11,49.716667,3.1,2.1
+ Brucamps ,BRUCAMPS ,80690,80145,11,50.066667,2.05,1
+ Brutelles ,BRUTELLES ,80230,80146,11,50.133333,1.516667,2.06
+ Buigny-l'Abbé ,BUIGNY L ABBE ,80132,80147,11,50.083333,1.933333,1.68
+ Buigny-lès-Gamaches ,BUIGNY LES GAMACHES ,80220,80148,11,50.016667,1.566667,1.93
+ Buigny-Saint-Maclou ,BUIGNY SAINT MACLOU ,80132,80149,11,50.15,1.816667,1.57
+ Buire-Courcelles ,BUIRE COURCELLES ,80200,80150,11,49.933333,3.016667,1.88
+ Buire-sur-l'Ancre ,BUIRE SUR L ANCRE,80300,80151,11,49.966667,2.583333,1.14
+ Bus-la-Mésière ,BUS LA MESIERE ,80700,80152,11,49.633333,2.716667,2.25
+ Bussu ,BUSSU ,80200,80154,11,49.933333,2.966667,1.75
+ Bussus-Bussuel ,BUSSUS BUSSUEL ,80135,80155,11,50.1,2,1.2
+ Bussy-lès-Daours ,BUSSY LES DAOURS ,80800,80156,11,49.916667,2.433333,1.66
+ Bussy-lès-Poix ,BUSSY LES POIX ,80290,80157,11,49.816667,2.016667,1.4
+ Buverchy ,BUVERCHY ,80400,80158,11,49.716667,2.966667,1.75
+ Cachy ,CACHY ,80380,80159,11,49.85,2.483333,0.65
+ Cagny ,CAGNY ,80330,80160,11,49.866667,2.35,0.52
+ Cahon ,CAHON ,80132,80161,11,50.116667,1.716667,1.54
+ Caix ,CAIX ,80170,80162,11,49.816667,2.65,0.92
+ Cambron ,CAMBRON ,80132,80163,11,50.116667,1.766667,1.41
+ Camon ,CAMON ,80450,80164,11,49.883333,2.35,1
+ Camps-en-Amiénois ,CAMPS EN AMIENOIS ,80540,80165,11,49.866667,1.966667,1.9
+ Canaples ,CANAPLES ,80670,80166,11,50.05,2.216667,0.83
+ Canchy ,CANCHY ,80150,80167,11,50.183333,1.883333,1.81
+ Candas ,CANDAS ,80750,80168,11,50.1,2.25,1.2
+ Cannessières ,CANNESSIERES ,80140,80169,11,49.933333,1.766667,1.41
+ Cantigny ,CANTIGNY ,80500,80170,11,49.666667,2.5,2
+ Caours ,CAOURS ,80132,80171,11,50.133333,1.883333,1.44
+ Cappy ,CAPPY ,80340,80172,11,49.916667,2.75,1.18
+ Cardonnette ,CARDONNETTE ,80260,80173,11,49.95,2.35,0.54
+ Le Cardonnois ,LE CARDONNOIS ,80500,80174,11,49.633333,2.483333,2.25
+ Carnoy ,CARNOY ,80300,80175,11,49.983333,2.75,1.27
+ Carrépuis ,CARREPUIS ,80700,80176,11,49.7,2.833333,1.75
+ Cartigny ,CARTIGNY ,80200,80177,11,49.916667,3.016667,1.88
+ Caulières ,CAULIERES ,80590,80179,11,49.783333,1.9,1.33
+ Cavillon ,CAVILLON ,80310,80180,11,49.916667,2.083333,0.64
+ Cayeux-en-Santerre ,CAYEUX EN SANTERRE ,80720,80181,11,49.816667,2.6,1.48
+ Cayeux-sur-Mer ,CAYEUX SUR MER ,80410,80182,11,50.183333,1.483333,2.15
+ Cérisy-Buleux ,CERISY BULEUX ,80140,80183,11,49.983333,1.733333,1.49
+ Champien ,CHAMPIEN ,80700,80185,11,49.683333,2.85,1.88
+ Chaulnes ,CHAULNES ,80320,80186,11,49.816667,2.8,1.31
+ La Chaussée-Tirancourt ,LA CHAUSSEE TIRANCOURT ,80310,80187,11,49.95,2.15,1.38
+ Chaussoy-Épagny ,CHAUSSOY EPAGNY ,80250,80188,11,49.733333,2.333333,1.51
+ La Chavatte ,LA CHAVATTE ,80700,80189,11,49.75,2.766667,1.38
+ Chépy ,CHEPY ,80210,80190,11,50.066667,1.65,1.71
+ Chilly ,CHILLY ,80170,80191,11,49.783333,2.766667,1.52
+ Chipilly ,CHIPILLY ,80800,80192,11,49.916667,2.65,2.4
+ Chirmont ,CHIRMONT ,80250,80193,11,49.7,2.4,1.75
+ Chuignes ,CHUIGNES ,80340,80194,11,49.9,2.75,1.18
+ Chuignolles ,CHUIGNOLLES ,80340,80195,11,49.9,2.733333,1.14
+ Citerne ,CITERNE ,80490,80196,11,49.983333,1.833333,1.23
+ Cizancourt ,CIZANCOURT ,80200,80197,11,49.833333,2.916667,1.62
+ Clairy-Saulchoix ,CLAIRY SAULCHOIX ,80540,80198,11,49.85,2.166667,1.59
+ Cléry-sur-Somme ,CLERY SUR SOMME ,80200,80199,11,49.95,2.883333,1.53
+ Cocquerel ,COCQUEREL ,80510,80200,11,50.033333,1.95,0.92
+ Coigneux ,COIGNEUX ,80560,80201,11,50.116667,2.55,1.32
+ Coisy ,COISY ,80260,80202,11,49.95,2.333333,0.69
+ Colincamps ,COLINCAMPS ,80560,80203,11,50.1,2.6,1.37
+ Combles ,COMBLES ,80360,80204,11,50.016667,2.866667,1.49
+ Condé-Folie ,CONDE FOLIE ,80890,80205,11,50.016667,2.016667,0.75
+ Contalmaison ,CONTALMAISON ,80300,80206,11,50.016667,2.733333,1.14
+ Contay ,CONTAY ,80560,80207,11,50,2.483333,1.44
+ Conteville ,CONTEVILLE ,80370,80208,11,50.175,2.075,-1
+ Contoire ,CONTOIRE ,80500,80209,11,49.716667,2.55,1.63
+ Contre ,CONTRE ,80160,80210,11,49.75,2.1,1.38
+ Conty ,CONTY ,80160,80211,11,49.733333,2.15,1.51
+ Corbie ,CORBIE ,80800,80212,11,49.916667,2.5,0.52
+ Cottenchy ,COTTENCHY ,80440,80213,11,49.8,2.383333,1.13
+ Coullemelle ,COULLEMELLE ,80250,80214,11,49.666667,2.433333,2
+ Coulonvillers ,COULONVILLERS ,80135,80215,11,50.133333,2,1.44
+ Courcelette ,COURCELETTE ,80300,80216,11,50.066667,2.75,1.34
+ Courcelles-au-Bois ,COURCELLES AU BOIS ,80560,80217,11,50.1,2.583333,1.2
+ Courcelles-sous-Thoix ,COURCELLES SOUS THOIX ,80160,80219,11,49.716667,2.083333,1.63
+ Courtemanche ,COURTEMANCHE ,80500,80220,11,49.666667,2.533333,2
+ Cramont ,CRAMONT ,80370,80221,11,50.15,2.05,1.64
+ Crécy-en-Ponthieu ,CRECY EN PONTHIEU ,80150,80222,11,50.25,1.883333,2.3
+ Crémery ,CREMERY ,80700,80223,11,49.75,2.833333,1.4
+ Cressy-Omencourt ,CRESSY OMENCOURT ,80190,80224,11,49.716667,2.916667,1.63
+ Creuse ,CREUSE ,80480,80225,11,49.833333,2.166667,2.27
+ Croix-Moligneaux ,CROIX MOLIGNEAUX ,80400,80226,11,49.8,2.983333,1.79
+ Croixrault ,CROIXRAULT ,80290,80227,11,49.783333,1.983333,1.14
+ Le Crotoy ,LE CROTOY ,80550,80228,11,50.216667,1.616667,2.06
+ Curchy ,CURCHY ,80190,80230,11,49.766667,2.866667,1.49
+ Curlu ,CURLU ,80360,80231,11,49.966667,2.816667,1.36
+ Damery ,DAMERY ,80700,80232,11,49.733333,2.75,1.51
+ Daours ,DAOURS ,80800,80234,11,49.9,2.45,1.37
+ Dargnies ,DARGNIES ,80570,80235,11,50.05,1.533333,2.02
+ Davenescourt ,DAVENESCOURT ,80500,80236,11,49.7,2.6,1.75
+ Démuin ,DEMUIN ,80110,80237,11,49.816667,2.55,1.08
+ Dernancourt ,DERNANCOURT ,80300,80238,11,49.966667,2.633333,0.87
+ Devise ,DEVISE ,80200,80239,11,49.866667,3,1.84
+ Doingt ,DOINGT ,80200,80240,11,49.916667,2.966667,1.75
+ Domart-en-Ponthieu ,DOMART EN PONTHIEU ,80620,80241,11,50.066667,2.116667,0.95
+ Domart-sur-la-Luce ,DOMART SUR LA LUCE,80110,80242,11,49.816667,2.483333,0.89
+ Domesmont ,DOMESMONT ,80370,80243,11,50.116667,2.133333,1.32
+ Dominois ,DOMINOIS ,80120,80244,11,50.333333,1.85,2.92
+ Domléger Longvillers ,DOMLEGER LONGVILLERS ,80370,80245,11,50.166667,2.083333,1.69
+ Dommartin ,DOMMARTIN ,80440,80246,11,49.783333,2.4,1.5
+ Dompierre-sur-Authie ,DOMPIERRE SUR AUTHIE ,80150,80248,11,50.3,1.916667,2.67
+ Domqueur ,DOMQUEUR ,80620,80249,11,50.116667,2.05,1.32
+ Domvast ,DOMVAST ,80150,80250,11,50.2,1.916667,1.93
+ Doudelainville ,DOUDELAINVILLE ,80140,80251,11,50,1.766667,1.41
+ Douilly ,DOUILLY ,80400,80252,11,49.766667,3.05,1.97
+ Doullens ,DOULLENS ,80600,80253,11,50.15,2.35,1.57
+ Dreuil-Hamel ,DREUIL HAMEL ,80270,80255,11,49.966667,1.933333,0.97
+ Dreuil-lès-Amiens ,DREUIL LES AMIENS ,80730,80256,11,49.916667,2.233333,0.75
+ Dreuil-lès-Molliens ,DREUIL LES MOLLIENS ,80540,80257,11,49.9,2.033333,0.9
+ Driencourt ,DRIENCOURT ,80240,80258,11,49.95,3,1.84
+ Dromesnil ,DROMESNIL ,80640,80259,11,49.883333,1.866667,1.14
+ Drucat ,DRUCAT ,80132,80260,11,50.15,1.866667,1.57
+ Dury ,DURY ,80480,80261,11,49.85,2.266667,0.97
+ Eaucourt-sur-Somme ,EAUCOURT SUR SOMME ,80580,80262,11,50.066667,1.883333,1.1
+ L'Échelle-Saint-Aurin ,L ECHELLE SAINT AURIN,80700,80263,11,49.7,2.716667,1.75
+ Éclusier-Vaux ,ECLUSIER VAUX ,80340,80264,11,49.933333,2.783333,1.27
+ Embreville ,EMBREVILLE ,80570,80265,11,50.033333,1.55,1.97
+ Englebelmer ,ENGLEBELMER ,80300,80266,11,50.05,2.6,0.83
+ Ennemain ,ENNEMAIN ,80200,80267,11,49.833333,2.95,1.71
+ Épagne-Épagnette ,EPAGNE EPAGNETTE ,80580,80268,11,50.066667,1.866667,1.14
+ Épaumesnil ,EPAUMESNIL ,80140,80269,11,49.916667,1.85,1.42
+ Épécamps ,EPECAMPS ,80370,80270,11,50.116667,2.15,1.32
+ Épéhy ,EPEHY ,80740,80271,11,50,3.133333,2.19
+ Épénancourt ,EPENANCOURT ,80190,80272,11,49.8,2.916667,1.62
+ Éplessier ,EPLESSIER ,80290,80273,11,49.783333,1.95,1.14
+ Eppeville ,EPPEVILLE ,80400,80274,11,49.733333,3.05,1.97
+ Équancourt ,EQUANCOURT ,80360,80275,11,50.033333,3.016667,1.93
+ Éramecourt ,ERAMECOURT ,80290,80277,11,49.733333,1.966667,1.51
+ Ercheu ,ERCHEU ,80930,80279,11,49.7,2.933333,1.75
+ Ercourt ,ERCOURT ,80210,80280,11,50.05,1.716667,1.63
+ Ergnies ,ERGNIES ,80690,80281,11,50.083333,2.033333,1.07
+ Érondelle ,ERONDELLE ,80580,80282,11,50.05,1.883333,1.1
+ Esclainvillers ,ESCLAINVILLERS ,80250,80283,11,49.683333,2.4,1.88
+ Esmery-Hallon ,ESMERY HALLON ,80400,80284,11,49.716667,3.016667,1.88
+ Essertaux ,ESSERTAUX ,80160,80285,11,49.75,2.25,1.38
+ Estréboeuf ,ESTREBOEUF ,80230,80287,11,50.15,1.616667,1.8
+ Estrées-Deniécourt ,ESTREES DENIECOURT ,80200,80288,11,49.883333,2.816667,1.39
+ Estrées-en-Chaussée ,ESTREES EN CHAUSSEE ,80200,80289,11,49.883333,3.033333,1.93
+ Estrées-lés-Crécy ,ESTREES LES CRECY ,80150,80290,11,50.25,1.916667,2.3
+ Estrées-sur-Noye ,ESTREES SUR NOYE ,80250,80291,11,49.783333,2.333333,1.37
+ Étalon ,ETALON ,80190,80292,11,49.766667,2.85,1.64
+ Ételfay ,ETELFAY ,80500,80293,11,49.666667,2.616667,2
+ Éterpigny ,ETERPIGNY ,80200,80294,11,49.883333,2.916667,1.62
+ Étinehem ,ETINEHEM ,80340,80295,11,49.933333,2.683333,1.19
+ L'Étoile ,L ETOILE ,80830,80296,11,50.033333,2.033333,0.71
+ Étréjust ,ETREJUST ,80140,80297,11,49.916667,1.883333,1.92
+ Étricourt-Manancourt ,ETRICOURT MANANCOURT ,80360,80298,11,50.033333,2.983333,1.79
+ La Faloise ,LA FALOISE ,80250,80299,11,49.7,2.35,1.75
+ Falvy ,FALVY ,80190,80300,11,49.8,2.95,1.71
+ Famechon ,FAMECHON ,80290,80301,11,49.75,2.05,1.53
+ Favières ,FAVIERES ,80120,80303,11,50.233333,1.666667,2.18
+ Fay ,FAY ,80200,80304,11,49.883333,2.8,1.6
+ Ferrières ,FERRIERES ,80470,80305,11,49.9,2.183333,1.35
+ Fescamps ,FESCAMPS ,80500,80306,11,49.633333,2.683333,2.25
+ Feuillères ,FEUILLERES ,80200,80307,11,49.95,2.85,1.44
+ Feuquières-en-Vimeu ,FEUQUIERES EN VIMEU ,80210,80308,11,50.066667,1.6,1.84
+ Fieffes ,FIEFFES ,80670,80309,11,50.083333,2.233333,1.07
+ Fienvillers ,FIENVILLERS ,80750,80310,11,50.116667,2.233333,1.32
+ Fignières ,FIGNIERES ,80500,80311,11,49.683333,2.583333,1.88
+ Fins ,FINS ,80360,80312,11,50.033333,3.05,2.39
+ Flaucourt ,FLAUCOURT ,80200,80313,11,49.916667,2.866667,1.49
+ Flers ,FLERS ,80360,80314,11,50.05,2.816667,1.36
+ Flers-sur-Noye ,FLERS SUR NOYE ,80160,80315,11,49.733333,2.25,1.51
+ Flesselles ,FLESSELLES ,80260,80316,11,50,2.25,1.81
+ Fleury ,FLEURY ,80160,80317,11,49.75,2.116667,1.38
+ Flixecourt ,FLIXECOURT ,80420,80318,11,50.016667,2.083333,0.58
+ Fluy ,FLUY ,80540,80319,11,49.85,2.1,0.65
+ Folies ,FOLIES ,80170,80320,11,49.75,2.666667,1.38
+ Folleville ,FOLLEVILLE ,80250,80321,11,49.683333,2.366667,1.88
+ Fontaine-le-Sec ,FONTAINE LE SEC ,80140,80324,11,49.95,1.8,1.32
+ Fontaine-lès-Cappy ,FONTAINE LES CAPPY ,80340,80325,11,49.9,2.783333,1.27
+ Fontaine-sous-Montdidier ,FONTAINE SOUS MONTDIDIER ,80500,80326,11,49.65,2.516667,2.12
+ Fontaine-sur-Maye ,FONTAINE SUR MAYE ,80150,80327,11,50.233333,1.933333,2.18
+ Fontaine-sur-Somme ,FONTAINE SUR SOMME ,80510,80328,11,50.033333,1.933333,1.34
+ Forceville ,FORCEVILLE ,80560,80329,11,50.05,2.566667,0.83
+ Forceville-en-Vimeu ,FORCEVILLE EN VIMEU ,80140,80330,11,49.966667,1.8,1.32
+ Forest-l'Abbaye ,FOREST L ABBAYE ,80150,80331,11,50.2,1.816667,1.93
+ Forest-Montiers ,FOREST MONTIERS ,80120,80332,11,50.25,1.75,2.3
+ Fort-Mahon-Plage ,FORT MAHON PLAGE ,80790,80333,11,50.341944,1.569722,-1
+ Fossemanant ,FOSSEMANANT ,80160,80334,11,49.8,2.2,1.02
+ Foucaucourt-hors-Nesle ,FOUCAUCOURT HORS NESLE ,80140,80336,11,49.916667,1.733333,1.49
+ Fouencamps ,FOUENCAMPS ,80440,80337,11,49.833333,2.416667,0.77
+ Fouilloy ,FOUILLOY ,80800,80338,11,49.9,2.5,0.52
+ Fouquescourt ,FOUQUESCOURT ,80170,80339,11,49.766667,2.75,1.32
+ Fourcigny ,FOURCIGNY ,80590,80340,11,49.766667,1.833333,1.26
+ Fourdrinoy ,FOURDRINOY ,80310,80341,11,49.9,2.1,1.04
+ Framicourt ,FRAMICOURT ,80140,80343,11,49.95,1.683333,1.62
+ Francières ,FRANCIERES ,80690,80344,11,50.066667,1.933333,2.5
+ Franleu ,FRANLEU ,80210,80345,11,50.1,1.65,1.71
+ Franqueville ,FRANQUEVILLE ,80620,80346,11,50.083333,2.083333,1.07
+ Fransart ,FRANSART ,80700,80347,11,49.766667,2.766667,1.26
+ Fransu ,FRANSU ,80620,80348,11,50.1,2.083333,1.2
+ Fransures ,FRANSURES ,80160,80349,11,49.7,2.233333,1.75
+ Franvillers ,FRANVILLERS ,80800,80350,11,49.966667,2.5,1.06
+ Fréchencourt ,FRECHENCOURT ,80260,80351,11,49.95,2.433333,1.22
+ Frémontiers ,FREMONTIERS ,80160,80352,11,49.75,2.066667,1.38
+ Fresnes-Mazancourt ,FRESNES MAZANCOURT ,80320,80353,11,49.85,2.866667,1.49
+ Fresnes-Tilloloy ,FRESNES TILLOLOY ,80140,80354,11,49.983333,1.766667,1.41
+ Fresneville ,FRESNEVILLE ,80140,80355,11,49.883333,1.833333,1.41
+ Fresnoy-Andainville ,FRESNOY ANDAINVILLE ,80140,80356,11,49.916667,1.8,1.32
+ Fresnoy-au-Val ,FRESNOY AU VAL ,80710,80357,11,49.833333,2.05,1.76
+ Fresnoy-en-Chaussée ,FRESNOY EN CHAUSSEE ,80110,80358,11,49.766667,2.583333,1.54
+ Fresnoy-lès-Roye ,FRESNOY LES ROYE ,80700,80359,11,49.733333,2.783333,1.51
+ Fressenneville ,FRESSENNEVILLE ,80390,80360,11,50.066667,1.566667,1.93
+ Frettecuisse ,FRETTECUISSE ,80140,80361,11,49.916667,1.816667,1.27
+ Frettemolle ,FRETTEMOLLE ,80290,80363,11,49.75,1.866667,1.87
+ Friaucourt ,FRIAUCOURT ,80940,80364,11,50.083333,1.483333,2.15
+ Fricamps ,FRICAMPS ,80290,80365,11,49.816667,2,1.22
+ Fricourt ,FRICOURT ,80300,80366,11,50,2.716667,1.09
+ Frise ,FRISE ,80340,80367,11,49.933333,2.816667,1.75
+ Friville-Escarbotin ,FRIVILLE ESCARBOTIN ,80130,80368,11,50.083333,1.55,1.97
+ Frohen-le-Grand ,FROHEN LE GRAND ,80370,80369,11,50.2,2.2,1.93
+ Frohen-le-Petit ,FROHEN LE PETIT ,80370,80370,11,50.183333,2.2,1.81
+ Froyelles ,FROYELLES ,80150,80371,11,50.233333,1.933333,2.18
+ Frucourt ,FRUCOURT ,80490,80372,11,50,1.816667,1.27
+ Gamaches ,GAMACHES ,80220,80373,11,49.983333,1.55,1.97
+ Gapennes ,GAPENNES ,80150,80374,11,50.183333,1.95,1.81
+ Gauville ,GAUVILLE ,80590,80375,11,49.783333,1.783333,1.97
+ Gentelles ,GENTELLES ,80380,80376,11,49.85,2.45,1.36
+ Gézaincourt ,GEZAINCOURT ,80600,80377,11,50.15,2.316667,1.57
+ Ginchy ,GINCHY ,80360,80378,11,50.033333,2.833333,1.4
+ Glisy ,GLISY ,80440,80379,11,49.866667,2.4,0.87
+ Gorenflos ,GORENFLOS ,80690,80380,11,50.083333,2.033333,1.07
+ Gorges ,GORGES ,80370,80381,11,50.116667,2.166667,1.32
+ Gouy-l'Hôpital ,GOUY L HOPITAL ,80640,80382,11,49.833333,1.95,1.31
+ Goyencourt ,GOYENCOURT ,80700,80383,11,49.716667,2.766667,1.63
+ Grandcourt ,GRANDCOURT ,80300,80384,11,50.083333,2.716667,1.13
+ Grand-Laviers ,GRAND LAVIERS ,80132,80385,11,50.133333,1.783333,1.44
+ Gratibus ,GRATIBUS ,80500,80386,11,49.683333,2.55,1.88
+ Grattepanche ,GRATTEPANCHE ,80680,80387,11,49.783333,2.283333,1.14
+ Grébault-Mesnil ,GREBAULT MESNIL ,80140,80388,11,50.033333,1.716667,1.58
+ Grécourt ,GRECOURT ,80400,80389,11,49.716667,2.983333,1.79
+ Grivesnes ,GRIVESNES ,80250,80390,11,49.683333,2.483333,1.88
+ Grivillers ,GRIVILLERS ,80700,80391,11,49.65,2.733333,2.12
+ Grouches-Luchuel ,GROUCHES LUCHUEL ,80600,80392,11,50.183333,2.383333,1.81
+ Gruny ,GRUNY ,80700,80393,11,49.733333,2.833333,1.51
+ Guémicourt ,GUEMICOURT ,80430,80394,11,49.816667,1.75,1.45
+ Guerbigny ,GUERBIGNY ,80500,80395,11,49.7,2.666667,1.75
+ Gueschart ,GUESCHART ,80150,80396,11,50.233333,2,2.18
+ Gueudecourt ,GUEUDECOURT ,80360,80397,11,50.05,2.833333,1.4
+ Guibermesnil ,GUIBERMESNIL ,80430,80398,11,49.85,1.85,1.65
+ Guignemicourt ,GUIGNEMICOURT ,80540,80399,11,49.866667,2.166667,1.55
+ Guillaucourt ,GUILLAUCOURT ,80170,80400,11,49.85,2.633333,1.36
+ Guillemont ,GUILLEMONT ,80360,80401,11,50.016667,2.833333,1.4
+ Guizancourt ,GUIZANCOURT ,80290,80402,11,49.733333,2,1.51
+ Guyencourt-sur-Noye ,GUYENCOURT SUR NOYE ,80250,80403,11,49.783333,2.366667,1.14
+ Guyencourt-Saulcourt ,GUYENCOURT SAULCOURT ,80240,80404,11,50,3.083333,2.06
+ Hailles ,HAILLES ,80110,80405,11,49.8,2.433333,1.3
+ Hallencourt ,HALLENCOURT ,80490,80406,11,49.983333,1.883333,1.1
+ Hallivillers ,HALLIVILLERS ,80250,80407,11,49.7,2.283333,1.75
+ Halloy-lès-Pernois ,HALLOY LES PERNOIS ,80670,80408,11,50.05,2.2,0.85
+ Hallu ,HALLU ,80320,80409,11,49.783333,2.8,1.31
+ Ham ,HAM ,80400,80410,11,49.75,3.066667,2.01
+ Le Hamel ,LE HAMEL ,80800,80411,11,49.883333,2.566667,1.02
+ Hamelet ,HAMELET ,80800,80412,11,49.9,2.533333,0.61
+ Hancourt ,HANCOURT ,80240,80413,11,49.9,3.066667,2.01
+ Hangard ,HANGARD ,80110,80414,11,49.816667,2.516667,0.89
+ Hangest-en-Santerre ,HANGEST EN SANTERRE ,80134,80415,11,49.75,2.6,1.38
+ Hangest-sur-Somme ,HANGEST SUR SOMME ,80310,80416,11,49.983333,2.066667,0.98
+ Harbonnières ,HARBONNIERES ,80131,80417,11,49.85,2.666667,1
+ Hardecourt-aux-Bois ,HARDECOURT AUX BOIS ,80360,80418,11,49.983333,2.816667,1.36
+ Hargicourt ,HARGICOURT ,80500,80419,11,49.716667,2.533333,1.63
+ Harponville ,HARPONVILLE ,80560,80420,11,50.033333,2.516667,0.71
+ Hattencourt ,HATTENCOURT ,80700,80421,11,49.766667,2.783333,1.27
+ Hautvillers-Ouville ,HAUTVILLERS OUVILLE ,80132,80422,11,50.166667,1.816667,1.69
+ Havernas ,HAVERNAS ,80670,80423,11,50.033333,2.233333,0.82
+ Hébécourt ,HEBECOURT ,80680,80424,11,49.8,2.25,1.44
+ Hédauville ,HEDAUVILLE ,80560,80425,11,50.05,2.566667,0.83
+ Heilly ,HEILLY ,80113,80426,11,49.95,2.533333,1
+ Hem-Hardinval ,HEM HARDINVAL ,80600,80427,11,50.166667,2.3,1.69
+ Hem-Monacu ,HEM MONACU ,80360,80428,11,49.966667,2.833333,1.4
+ Hénencourt ,HENENCOURT ,80300,80429,11,50,2.566667,1.17
+ Herbécourt ,HERBECOURT ,80200,80430,11,49.916667,2.85,1.44
+ Hérissart ,HERISSART ,80260,80431,11,50.016667,2.416667,1.01
+ Herleville ,HERLEVILLE ,80340,80432,11,49.85,2.75,1.36
+ Herly ,HERLY ,80190,80433,11,49.75,2.883333,1.53
+ Hervilly ,HERVILLY ,80240,80434,11,49.933333,3.116667,2.14
+ Hesbécourt ,HESBECOURT ,80240,80435,11,49.933333,3.133333,2.19
+ Heucourt-Croquoison ,HEUCOURT CROQUOISON ,80270,80437,11,49.933333,1.85,1.43
+ Heudicourt ,HEUDICOURT ,80122,80438,11,50.016667,3.083333,2.06
+ Heuzecourt ,HEUZECOURT ,80370,80439,11,50.166667,2.166667,1.69
+ Hiermont ,HIERMONT ,80370,80440,11,50.2,2.083333,1.93
+ Hocquincourt ,HOCQUINCOURT ,80490,80441,11,50,1.85,1.19
+ Hombleux ,HOMBLEUX ,80400,80442,11,49.733333,2.983333,1.79
+ Huchenneville ,HUCHENNEVILLE ,80132,80444,11,50.05,1.8,1.32
+ Humbercourt ,HUMBERCOURT ,80600,80445,11,50.2,2.466667,1.98
+ Huppy ,HUPPY ,80140,80446,11,50.016667,1.766667,1.41
+ Hyencourt-le-Grand ,HYENCOURT LE GRAND ,80320,80447,11,49.816667,2.833333,1.4
+ Ignaucourt ,IGNAUCOURT ,80720,80449,11,49.833333,2.566667,0.77
+ Inval-Boiron ,INVAL BOIRON ,80430,80450,11,49.883333,1.75,1.45
+ Irles ,IRLES ,80300,80451,11,50.1,2.75,1.58
+ Jumel ,JUMEL ,80250,80452,11,49.75,2.35,1.38
+ Laboissière-en-Santerre ,LABOISSIERE EN SANTERRE ,80500,80453,11,49.666667,2.683333,2
+ Laboissière-Saint-Martin ,LABOISSIERE SAINT MARTIN ,80430,80454,11,49.833333,1.816667,1.27
+ Lahaye-Saint-Romain ,LAHAYE SAINT ROMAIN ,80290,80457,11,49.716667,1.983333,1.63
+ Lahoussoye ,LAHOUSSOYE ,80800,80458,11,49.95,2.483333,0.98
+ Laleu ,LALEU ,80270,80459,11,49.933333,1.933333,0.97
+ Lamaronde ,LAMARONDE ,80590,80460,11,49.8,1.9,1.44
+ Lamotte-Brebière ,LAMOTTE BREBIERE ,80450,80461,11,49.883333,2.383333,1
+ Lamotte-Buleux ,LAMOTTE BULEUX ,80150,80462,11,50.183333,1.833333,1.81
+ Lanchères ,LANCHERES ,80230,80464,11,50.166667,1.55,1.97
+ Languevoisin-Quiquery ,LANGUEVOISIN QUIQUERY ,80190,80465,11,49.733333,2.933333,1.66
+ Lanches-Saint-Hilaire ,LANCHES SAINT HILAIRE ,80620,80466,11,50.1,2.133333,1.2
+ Laucourt ,LAUCOURT ,80700,80467,11,49.666667,2.766667,2
+ Laviéville ,LAVIEVILLE ,80300,80468,11,49.983333,2.583333,1.03
+ Lawarde-Mauger-l'Hortoy ,LAWARDE MAUGER L HORTOY,80250,80469,11,49.7,2.283333,1.75
+ Léalvillers ,LEALVILLERS ,80560,80470,11,50.066667,2.516667,0.95
+ Lesboeufs ,LESBOEUFS ,80360,80472,11,50.033333,2.866667,1.49
+ Liancourt-Fosse ,LIANCOURT FOSSE ,80700,80473,11,49.75,2.816667,1.38
+ Licourt ,LICOURT ,80320,80474,11,49.8,2.883333,1.53
+ Liéramont ,LIERAMONT ,80240,80475,11,50,3.05,1.97
+ Liercourt ,LIERCOURT ,80580,80476,11,50.033333,1.9,1.17
+ Ligescourt ,LIGESCOURT ,80150,80477,11,50.283333,1.883333,2.55
+ Lignières-Châtelain ,LIGNIERES CHATELAIN ,80590,80479,11,49.766667,1.866667,1.26
+ Lignières-en-Vimeu ,LIGNIERES EN VIMEU ,80140,80480,11,49.916667,1.733333,1.49
+ Lihons ,LIHONS ,80320,80481,11,49.816667,2.766667,1.66
+ Limeux ,LIMEUX ,80490,80482,11,50.016667,1.816667,1.27
+ Liomer ,LIOMER ,80430,80484,11,49.85,1.816667,1.27
+ Loeuilly ,LOEUILLY ,80160,80485,11,49.783333,2.166667,1.14
+ Long ,LONG ,80510,80486,11,50.033333,1.983333,0.96
+ Longavesnes ,LONGAVESNES ,80240,80487,11,49.966667,3.05,1.97
+ Longpré-les-Corps-Saints ,LONGPRE LES CORPS SAINTS,80510,80488,11,50.016667,1.983333,1.1
+ Longueau ,LONGUEAU ,80330,80489,11,49.866667,2.35,0.52
+ Longuevillette ,LONGUEVILLETTE ,80600,80491,11,50.133333,2.266667,1.44
+ Longvillers ,LONGVILLERS ,80370,80492,11,50.133333,2.083333,1.44
+ Louvencourt ,LOUVENCOURT ,80560,80493,11,50.1,2.5,1.2
+ Louvrechy ,LOUVRECHY ,80250,80494,11,49.733333,2.4,1.51
+ Lucheux ,LUCHEUX ,80600,80495,11,50.2,2.416667,1.93
+ Machiel ,MACHIEL ,80150,80496,11,50.266667,1.833333,2.43
+ Machy ,MACHY ,80150,80497,11,50.266667,1.8,2.43
+ Mailly-Maillet ,MAILLY MAILLET ,80560,80498,11,50.066667,2.6,1.27
+ Mailly-Raineval ,MAILLY RAINEVAL ,80110,80499,11,49.75,2.45,1.38
+ Maisnières ,MAISNIERES ,80220,80500,11,50.016667,1.616667,1.8
+ Maison-Ponthieu ,MAISON PONTHIEU ,80150,80501,11,50.2,2.05,1.93
+ Maison-Roland ,MAISON ROLAND ,80135,80502,11,50.116667,2.016667,1.32
+ Maizicourt ,MAIZICOURT ,80370,80503,11,50.2,2.116667,1.93
+ Malpart ,MALPART ,80250,80504,11,49.683333,2.5,2.03
+ Mametz ,MAMETZ ,80300,80505,11,50,2.75,1.21
+ Manicourt ,MANICOURT ,80190,80506,11,49.766667,2.883333,1.53
+ Marcelcave ,MARCELCAVE ,80720,80507,11,49.85,2.566667,0.7
+ Marché-Allouarde ,MARCHE ALLOUARDE ,80700,80508,11,49.733333,2.866667,1.51
+ Marchélepot ,MARCHELEPOT ,80200,80509,11,49.833333,2.866667,1.49
+ Marcheville ,MARCHEVILLE ,80150,80510,11,50.216667,1.9,2.06
+ Mareuil-Caubert ,MAREUIL CAUBERT ,80132,80512,11,50.066667,1.833333,1.23
+ Maricourt ,MARICOURT ,80360,80513,11,49.966667,2.783333,1.51
+ Marieux ,MARIEUX ,80560,80514,11,50.1,2.433333,1.69
+ Marlers ,MARLERS ,80590,80515,11,49.766667,1.85,1.26
+ Marquaix ,MARQUAIX ,80240,80516,11,49.933333,3.066667,2.01
+ Marquivillers ,MARQUIVILLERS ,80700,80517,11,49.666667,2.7,2
+ Martainneville ,MARTAINNEVILLE ,80140,80518,11,50,1.7,1.58
+ Matigny ,MATIGNY ,80400,80519,11,49.8,3,1.84
+ Maurepas ,MAUREPAS ,80360,80521,11,49.983333,2.833333,1.4
+ Le Mazis ,LE MAZIS ,80430,80522,11,49.883333,1.766667,1.41
+ Méaulte ,MEAULTE ,80810,80523,11,49.983333,2.666667,0.96
+ Méharicourt ,MEHARICOURT ,80170,80524,11,49.8,2.733333,1.14
+ Meigneux ,MEIGNEUX ,80590,80525,11,49.766667,1.883333,1.26
+ Le Meillard ,LE MEILLARD ,80370,80526,11,50.166667,2.2,1.69
+ Méneslies ,MENESLIES ,80520,80527,11,50.05,1.5,2.11
+ Mérélessart ,MERELESSART ,80490,80529,11,49.966667,1.85,1.19
+ Méricourt-l'Abbé ,MERICOURT L ABBE ,80113,80530,11,49.95,2.566667,1
+ Méricourt-en-Vimeu ,MERICOURT EN VIMEU ,80640,80531,11,49.9,1.95,1.66
+ Méricourt-sur-Somme ,MERICOURT SUR SOMME ,80340,80532,11,49.9,2.666667,1.48
+ Mers-les-Bains ,MERS LES BAINS ,80350,80533,11,50.066667,1.383333,2.41
+ Le Mesge ,LE MESGE ,80310,80535,11,49.933333,2.05,0.89
+ Mesnil-Bruntel ,MESNIL BRUNTEL ,80200,80536,11,49.883333,2.966667,1.75
+ Mesnil-Domqueur ,MESNIL DOMQUEUR ,80620,80537,11,50.133333,2.083333,1.44
+ Mesnil-en-Arrouaise ,MESNIL EN ARROUAISE ,80360,80538,11,50.033333,2.95,1.71
+ Mesnil-Eudin ,MESNIL EUDIN ,80140,80539,11,49.9,1.75,1.45
+ Mesnil-Martinsart ,MESNIL MARTINSART ,80300,80540,11,50.05,2.65,0.92
+ Mesnil-Saint-Georges ,MESNIL SAINT GEORGES ,80500,80541,11,49.633333,2.516667,2.25
+ Mesnil-Saint-Nicaise ,MESNIL SAINT NICAISE ,80190,80542,11,49.766667,2.916667,1.62
+ Métigny ,METIGNY ,80270,80543,11,49.933333,1.916667,1.01
+ Mézerolles ,MEZEROLLES ,80600,80544,11,50.183333,2.233333,1.81
+ Mézières-en-Santerre ,MEZIERES EN SANTERRE ,80110,80545,11,49.783333,2.55,1.14
+ Miannay ,MIANNAY ,80132,80546,11,50.1,1.716667,1.54
+ Millencourt ,MILLENCOURT ,80300,80547,11,50,2.583333,0.96
+ Millencourt-en-Ponthieu ,MILLENCOURT EN PONTHIEU ,80135,80548,11,50.15,1.9,2
+ Miraumont ,MIRAUMONT ,80300,80549,11,50.1,2.733333,1.43
+ Mirvaux ,MIRVAUX ,80260,80550,11,50,2.4,0.65
+ Misery ,MISERY ,80320,80551,11,49.833333,2.883333,1.53
+ Moislains ,MOISLAINS ,80760,80552,11,49.983333,2.966667,1.75
+ Molliens-au-Bois ,MOLLIENS AU BOIS ,80260,80553,11,49.983333,2.383333,0.34
+ Monchy-Lagache ,MONCHY LAGACHE ,80200,80555,11,49.85,3.05,1.97
+ Mons-Boubert ,MONS BOUBERT ,80210,80556,11,50.133333,1.666667,1.67
+ Monsures ,MONSURES ,80160,80558,11,49.7,2.166667,1.75
+ Montagne-Fayel ,MONTAGNE FAYEL ,80540,80559,11,49.9,1.983333,1.68
+ Montauban-de-Picardie ,MONTAUBAN DE PICARDIE ,80300,80560,11,50,2.783333,1.63
+ Montdidier ,MONTDIDIER ,80500,80561,11,49.65,2.566667,2.12
+ Montigny-sur-l'Hallue ,MONTIGNY SUR L HALLUE,80260,80562,11,49.966667,2.45,1.39
+ Montigny-les-Jongleurs ,MONTIGNY LES JONGLEURS ,80370,80563,11,50.183333,2.133333,1.81
+ Montmarquet ,MONTMARQUET ,80430,80564,11,49.8,1.8,1.32
+ Morchain ,MORCHAIN ,80190,80568,11,49.783333,2.9,1.57
+ Morcourt ,MORCOURT ,80340,80569,11,49.883333,2.65,1.91
+ Moreuil ,MOREUIL ,80110,80570,11,49.766667,2.483333,1.26
+ Morisel ,MORISEL ,80110,80571,11,49.766667,2.483333,1.26
+ Morlancourt ,MORLANCOURT ,80300,80572,11,49.95,2.633333,0.91
+ Morvillers-Saint-Saturnin ,MORVILLERS SAINT SATURNIN ,80590,80573,11,49.783333,1.833333,1.23
+ Mouflers ,MOUFLERS ,80690,80574,11,50.033333,2.05,1.46
+ Mouflières ,MOUFLIERES ,80140,80575,11,49.916667,1.75,1.45
+ Moyencourt ,MOYENCOURT ,80400,80576,11,49.716667,2.933333,1.72
+ Moyencourt-lès-Poix ,MOYENCOURT LES POIX ,80290,80577,11,49.783333,2.033333,1.29
+ Moyenneville ,MOYENNEVILLE ,80870,80578,11,50.075,1.75,-1
+ Muille-Villette ,MUILLE VILLETTE ,80400,80579,11,49.733333,3.066667,2.01
+ Namps-au-Mont ,NAMPS AU MONT ,80710,80581,11,49.816667,2.1,0.89
+ Nampty ,NAMPTY ,80160,80583,11,49.8,2.2,1.02
+ Naours ,NAOURS ,80260,80584,11,50.033333,2.283333,1.5
+ Nesle ,NESLE ,80190,80585,11,49.766667,2.916667,1.62
+ Nesle-l'Hôpital ,NESLE L HOPITAL ,80140,80586,11,49.9,1.7,1.58
+ Neslette ,NESLETTE ,80140,80587,11,49.916667,1.666667,1.67
+ Neufmoulin ,NEUFMOULIN ,80132,80588,11,50.133333,1.9,1.44
+ Neuilly-le-Dien ,NEUILLY LE DIEN ,80150,80589,11,50.216667,2.05,2.06
+ Neuilly-l'Hôpital ,NEUILLY L HOPITAL ,80132,80590,11,50.166667,1.883333,1.69
+ Neuville-Coppegueule ,NEUVILLE COPPEGUEULE ,80430,80592,11,49.85,1.75,1.45
+ La Neuville-lès-Bray ,LA NEUVILLE LES BRAY,80340,80593,11,49.933333,2.716667,1.09
+ Neuvillette ,NEUVILLETTE ,80600,80596,11,50.2,2.316667,1.93
+ Nibas ,NIBAS ,80390,80597,11,50.1,1.583333,1.89
+ Noyelles-en-Chaussée ,NOYELLES EN CHAUSSEE ,80150,80599,11,50.2,1.983333,1.93
+ Noyelles-sur-Mer ,NOYELLES SUR MER ,80860,80600,11,50.183333,1.716667,1.81
+ Nurlu ,NURLU ,80240,80601,11,50,3.016667,1.88
+ Occoches ,OCCOCHES ,80600,80602,11,50.166667,2.266667,1.69
+ Ochancourt ,OCHANCOURT ,80210,80603,11,50.1,1.616667,1.8
+ Offignies ,OFFIGNIES ,80590,80604,11,49.8,1.85,1.19
+ Offoy ,OFFOY ,80400,80605,11,49.758333,3.008333,-1
+ Oisemont ,OISEMONT ,80140,80606,11,49.95,1.766667,1.41
+ Oissy ,OISSY ,80540,80607,11,49.9,2.05,0.68
+ Omiécourt ,OMIECOURT ,80320,80608,11,49.8,2.833333,1.4
+ Oneux ,ONEUX ,80135,80609,11,50.15,1.966667,1.57
+ Onvillers ,ONVILLERS ,80500,80610,11,49.6,2.666667,2.49
+ Oresmaux ,ORESMAUX ,80160,80611,11,49.766667,2.266667,1.51
+ Orival ,ORIVAL ,80640,80612,11,49.8,1.85,1.79
+ Outrebois ,OUTREBOIS ,80600,80614,11,50.166667,2.25,1.69
+ Pargny ,PARGNY ,80190,80616,11,49.783333,2.95,1.71
+ Pendé ,PENDE ,80230,80618,11,50.166667,1.583333,1.89
+ Pernois ,PERNOIS ,80670,80619,11,50.05,2.183333,1.43
+ Péronne ,PERONNE ,80200,80620,11,49.933333,2.933333,1.66
+ Pertain ,PERTAIN ,80320,80621,11,49.816667,2.866667,1.49
+ Picquigny ,PICQUIGNY ,80310,80622,11,49.95,2.15,1.38
+ Pierregot ,PIERREGOT ,80260,80624,11,50,2.383333,0.46
+ Pierrepont-sur-Avre ,PIERREPONT SUR AVRE ,80500,80625,11,49.716667,2.55,1.63
+ Pissy ,PISSY ,80540,80626,11,49.866667,2.133333,0.98
+ Plachy-Buyon ,PLACHY BUYON ,80160,80627,11,49.816667,2.216667,1.24
+ Poeuilly ,POEUILLY ,80240,80629,11,49.883333,3.1,2.1
+ Ponches-Estruval ,PONCHES ESTRUVAL ,80150,80631,11,50.316667,1.9,2.8
+ Pont-de-Metz ,PONT DE METZ ,80480,80632,11,49.883333,2.25,0.97
+ Ponthoile ,PONTHOILE ,80860,80633,11,50.216667,1.716667,2.06
+ Pont-Noyelles ,PONT NOYELLES ,80115,80634,11,49.933333,2.45,1
+ Pont-Rémy ,PONT REMY ,80580,80635,11,50.05,1.916667,1.53
+ Port-le-Grand ,PORT LE GRAND ,80132,80637,11,50.15,1.75,1.57
+ Potte ,POTTE ,80190,80638,11,49.766667,2.9,1.57
+ Poulainville ,POULAINVILLE ,80260,80639,11,49.933333,2.316667,1.06
+ Pozières ,POZIERES ,80300,80640,11,50.033333,2.716667,1.09
+ Prouville ,PROUVILLE ,80370,80642,11,50.133333,2.116667,1.44
+ Prouzel ,PROUZEL ,80160,80643,11,49.8,2.2,1.02
+ Proyart ,PROYART ,80121,80644,11,49.883333,2.7,1.05
+ Puchevillers ,PUCHEVILLERS ,80560,80645,11,50.05,2.416667,1.94
+ Punchy ,PUNCHY ,80320,80646,11,49.783333,2.816667,1.36
+ Puzeaux ,PUZEAUX ,80320,80647,11,49.8,2.833333,1.4
+ Quend ,QUEND ,80120,80649,11,50.316667,1.633333,2.8
+ Querrieu ,QUERRIEU ,80115,80650,11,49.933333,2.416667,1
+ Le Quesne ,LE QUESNE ,80430,80651,11,49.866667,1.8,1.32
+ Le Quesnel ,LE QUESNEL ,80118,80652,11,49.766667,2.616667,1.26
+ Quesnoy-le-Montant ,QUESNOY LE MONTANT ,80132,80654,11,50.116667,1.683333,1.89
+ Quesnoy-sur-Airaines ,QUESNOY SUR AIRAINES ,80270,80655,11,49.95,1.983333,1.53
+ Quevauvillers ,QUEVAUVILLERS ,80710,80656,11,49.816667,2.083333,0.89
+ Quiry-le-Sec ,QUIRY LE SEC ,80250,80657,11,49.666667,2.383333,2
+ Quivières ,QUIVIERES ,80400,80658,11,49.8,3.033333,1.93
+ Raincheval ,RAINCHEVAL ,80600,80659,11,50.066667,2.433333,1.96
+ Rainneville ,RAINNEVILLE ,80260,80661,11,49.966667,2.35,0.32
+ Ramburelles ,RAMBURELLES ,80140,80662,11,49.966667,1.7,1.58
+ Rambures ,RAMBURES ,80140,80663,11,49.95,1.7,1.58
+ Rancourt ,RANCOURT ,80360,80664,11,50,2.916667,1.62
+ Regnière-Écluse ,REGNIERE ECLUSE ,80120,80665,11,50.283333,1.766667,2.55
+ Remaisnil ,REMAISNIL ,80600,80666,11,50.2,2.25,1.93
+ Remaugies ,REMAUGIES ,80500,80667,11,49.616667,2.666667,2.37
+ Remiencourt ,REMIENCOURT ,80250,80668,11,49.783333,2.383333,1.14
+ Réthonvillers ,RETHONVILLERS ,80700,80669,11,49.733333,2.866667,1.51
+ Revelles ,REVELLES ,80540,80670,11,49.85,2.116667,0.78
+ Ribeaucourt ,RIBEAUCOURT ,80620,80671,11,50.116667,2.1,1.32
+ Riencourt ,RIENCOURT ,80310,80673,11,49.916667,2.05,1.06
+ Rivery ,RIVERY ,80136,80674,11,49.916667,2.316667,0.16
+ Rogy ,ROGY ,80160,80675,11,49.7,2.216667,1.75
+ Roiglise ,ROIGLISE ,80700,80676,11,49.683333,2.833333,1.88
+ Roisel ,ROISEL ,80240,80677,11,49.95,3.1,2.1
+ Rollot ,ROLLOT ,80500,80678,11,49.583333,2.65,2.61
+ Ronssoy ,RONSSOY ,80740,80679,11,49.983333,3.166667,2.28
+ Rosières-en-Santerre ,ROSIERES EN SANTERRE ,80170,80680,11,49.816667,2.716667,1.09
+ Rouvrel ,ROUVREL ,80250,80681,11,49.766667,2.416667,1.26
+ Rouvroy-en-Santerre ,ROUVROY EN SANTERRE ,80170,80682,11,49.766667,2.716667,1.26
+ Rouy-le-Grand ,ROUY LE GRAND ,80190,80683,11,49.783333,2.95,1.71
+ Rouy-le-Petit ,ROUY LE PETIT ,80190,80684,11,49.766667,2.95,1.71
+ Roye ,ROYE ,80700,80685,11,49.7,2.8,1.75
+ Rubempré ,RUBEMPRE ,80260,80686,11,50.016667,2.383333,0.64
+ Rubescourt ,RUBESCOURT ,80500,80687,11,49.6,2.566667,2.49
+ Rue ,RUE ,80120,80688,11,50.266667,1.666667,2.43
+ Rumaisnil ,RUMAISNIL ,80710,80689,11,49.816667,2.133333,0.94
+ Rumigny ,RUMIGNY ,80680,80690,11,49.8,2.283333,1.02
+ Saigneville ,SAIGNEVILLE ,80230,80691,11,50.133333,1.716667,1.84
+ Sailly-Flibeaucourt ,SAILLY FLIBEAUCOURT ,80970,80692,11,50.183333,1.766667,1.81
+ Sailly-Laurette ,SAILLY LAURETTE ,80800,80693,11,49.916667,2.6,1.46
+ Sailly-le-Sec ,SAILLY LE SEC ,80800,80694,11,49.916667,2.583333,1.15
+ Sailly-Saillisel ,SAILLY SAILLISEL ,80360,80695,11,50.033333,2.916667,1.62
+ Sains-en-Amiénois ,SAINS EN AMIENOIS ,80680,80696,11,49.816667,2.316667,1.01
+ Saint-Acheul ,SAINT ACHEUL ,80370,80697,11,50.183333,2.166667,1.81
+ Saint-Aubin-Monténoy ,SAINT AUBIN MONTENOY ,80540,80698,11,49.85,1.983333,1.65
+ Saint-Aubin-Rivière ,SAINT AUBIN RIVIERE ,80430,80699,11,49.866667,1.783333,1.36
+ Saint-Blimont ,SAINT BLIMONT ,80960,80700,11,50.116667,1.566667,1.93
+ Saint-Christ-Briost ,SAINT CHRIST BRIOST ,80200,80701,11,49.833333,2.916667,1.62
+ Saint-Fuscien ,SAINT FUSCIEN ,80680,80702,11,49.833333,2.316667,1.34
+ Saint-Germain-sur-Bresle ,SAINT GERMAIN SUR BRESLE,80430,80703,11,49.833333,1.733333,1.49
+ Saint-Gratien ,SAINT GRATIEN ,80260,80704,11,49.95,2.416667,0.98
+ Saint-Léger-lès-Authie ,SAINT LEGER LES AUTHIE,80560,80705,11,50.116667,2.516667,1.32
+ Saint-Léger-lès-Domart ,SAINT LEGER LES DOMART,80780,80706,11,50.05,2.133333,0.83
+ Saint-Léger-sur-Bresle ,SAINT LEGER SUR BRESLE,80140,80707,11,49.866667,1.716667,1.54
+ Saint-Mard ,SAINT MARD ,80700,80708,11,49.691667,2.758333,-1
+ Saint-Maulvis ,SAINT MAULVIS ,80140,80709,11,49.9,1.833333,1.27
+ Saint-Maxent ,SAINT MAXENT ,80140,80710,11,50,1.733333,1.49
+ Saint-Ouen ,SAINT OUEN ,80610,80711,11,50.033333,2.116667,1
+ Saint-Quentin-en-Tourmont ,SAINT QUENTIN EN TOURMONT,80120,80713,11,50.283333,1.583333,2.55
+ Saint-Riquier ,SAINT RIQUIER ,80135,80716,11,50.133333,1.95,1.44
+ Saint-Sauflieu ,SAINT SAUFLIEU ,80160,80717,11,49.783333,2.25,1.34
+ Saint-Sauveur ,SAINT SAUVEUR ,80470,80718,11,49.933333,2.216667,1.35
+ Sainte-Segrée ,SAINTE SEGREE ,80290,80719,11,49.75,1.916667,1.38
+ Saint-Valéry-sur-Somme ,SAINT VALERY SUR SOMME,80230,80721,11,50.183333,1.633333,1.81
+ Saisseval ,SAISSEVAL ,80540,80723,11,49.883333,2.1,0.53
+ Saleux ,SALEUX ,80480,80724,11,49.866667,2.25,0.55
+ Salouël ,SALOUEL ,80480,80725,11,49.866667,2.25,0.55
+ Sancourt ,SANCOURT ,80400,80726,11,49.766667,3.033333,1.93
+ Saulchoy-sous-Poix ,SAULCHOY SOUS POIX ,80290,80728,11,49.75,1.933333,1.38
+ Sauvillers-Mongival ,SAUVILLERS MONGIVAL ,80110,80729,11,49.733333,2.466667,1.51
+ Saveuse ,SAVEUSE ,80730,80730,11,49.883333,2.216667,1.5
+ Selincourt ,SELINCOURT ,80640,80731,11,49.866667,1.9,1.05
+ Senarpont ,SENARPONT ,80140,80732,11,49.883333,1.716667,1.54
+ Senlis-le-Sec ,SENLIS LE SEC ,80300,80733,11,50.033333,2.566667,1.16
+ Sentelie ,SENTELIE ,80160,80734,11,49.716667,2.033333,1.8
+ Seux ,SEUX ,80540,80735,11,49.866667,2.1,0.53
+ Sorel-en-Vimeu ,SOREL EN VIMEU ,80490,80736,11,50.016667,1.916667,1.56
+ Soues ,SOUES ,80310,80738,11,49.95,2.05,0.86
+ Souplicourt ,SOUPLICOURT ,80290,80739,11,49.75,1.9,1.38
+ Sourdon ,SOURDON ,80250,80740,11,49.7,2.4,1.75
+ Soyécourt ,SOYECOURT ,80200,80741,11,49.866667,2.783333,1.84
+ Surcamps ,SURCAMPS ,80620,80742,11,50.066667,2.066667,0.97
+ Suzanne ,SUZANNE ,80340,80743,11,49.95,2.766667,1.22
+ Taisnil ,TAISNIL ,80710,80745,11,49.8,2.15,1.56
+ Talmas ,TALMAS ,80260,80746,11,50.033333,2.333333,0.94
+ Templeux-la-Fosse ,TEMPLEUX LA FOSSE ,80240,80747,11,49.966667,3.016667,1.88
+ Templeux-le-Guérard ,TEMPLEUX LE GUERARD ,80240,80748,11,49.966667,3.15,2.23
+ Terramesnil ,TERRAMESNIL ,80600,80749,11,50.116667,2.366667,1.32
+ Tertry ,TERTRY ,80200,80750,11,49.866667,3.066667,2.01
+ Thennes ,THENNES ,80110,80751,11,49.8,2.466667,1.02
+ Thézy-Glimont ,THEZY GLIMONT ,80110,80752,11,49.816667,2.433333,1.41
+ Thiepval ,THIEPVAL ,80300,80753,11,50.05,2.7,1.05
+ Thieulloy-l'Abbaye ,THIEULLOY L ABBAYE ,80126,80754,11,49.816667,1.933333,0.97
+ Thieulloy-la-Ville ,THIEULLOY LA VILLE ,80290,80755,11,49.75,1.933333,1.38
+ Thièvres ,THIEVRES ,62760,80756,11,50.116667,2.45,1.32
+ Thoix ,THOIX ,80160,80757,11,49.7,2.066667,1.75
+ Thory ,THORY ,80250,80758,11,49.716667,2.433333,1.63
+ Tilloloy ,TILLOLOY ,80700,80759,11,49.633333,2.75,2.25
+ Tilloy-Floriville ,TILLOY FLORIVILLE ,80220,80760,11,49.983333,1.616667,1.8
+ Tilloy-lès-Conty ,TILLOY LES CONTY ,80160,80761,11,49.75,2.183333,1.38
+ Tincourt-Boucly ,TINCOURT BOUCLY ,80240,80762,11,49.933333,3.05,1.97
+ Le Titre ,LE TITRE ,80132,80763,11,50.183333,1.8,1.81
+ Toeufles ,TOEUFLES ,80870,80764,11,50.066667,1.716667,1.54
+ Tours-en-Vimeu ,TOURS EN VIMEU ,80210,80765,11,50.033333,1.683333,1.62
+ Toutencourt ,TOUTENCOURT ,80560,80766,11,50.033333,2.45,1.48
+ Le Translay ,LE TRANSLAY ,80140,80767,11,49.966667,1.683333,1.62
+ Tronchoy ,TRONCHOY ,80640,80768,11,49.833333,1.866667,1.14
+ Treux ,TREUX ,80300,80769,11,49.95,2.583333,1.27
+ Tully ,TULLY ,80530,80770,11,50.083333,1.516667,2.06
+ Ugny-l'Équipée ,UGNY L EQUIPEE ,80400,80771,11,49.816667,3.066667,2.01
+ Vacquerie ,VACQUERIE ,80370,80772,11,50.116667,2.166667,1.32
+ Vadencourt ,VADENCOURT ,80560,80773,11,50,2.483333,1.44
+ Vaire-sous-Corbie ,VAIRE SOUS CORBIE ,80800,80774,11,49.916667,2.55,0.65
+ Valines ,VALINES ,80210,80775,11,50.083333,1.616667,1.8
+ Varennes ,VARENNES ,80560,80776,11,50.05,2.533333,0.83
+ Vauchelles-lès-Domart ,VAUCHELLES LES DOMART ,80620,80778,11,50.05,2.05,1.57
+ Vauchelles-lès-Quesnoy ,VAUCHELLES LES QUESNOY ,80132,80779,11,50.1,1.883333,1.2
+ Vaudricourt ,VAUDRICOURT ,80230,80780,11,50.116667,1.55,1.97
+ Vauvillers ,VAUVILLERS ,80131,80781,11,49.85,2.7,1.05
+ Vaux-en-Amiénois ,VAUX EN AMIENOIS ,80260,80782,11,49.966667,2.25,1.8
+ Vaux-Marquenneville ,VAUX MARQUENNEVILLE ,80140,80783,11,49.983333,1.783333,1.36
+ Vaux-sur-Somme ,VAUX SUR SOMME ,80800,80784,11,49.916667,2.55,0.65
+ Vecquemont ,VECQUEMONT ,80800,80785,11,49.883333,2.45,1.47
+ Velennes ,VELENNES ,80160,80786,11,49.75,2.1,1.38
+ Vercourt ,VERCOURT ,80120,80787,11,50.3,1.7,2.67
+ Vergies ,VERGIES ,80270,80788,11,49.933333,1.85,1.43
+ Vermandovillers ,VERMANDOVILLERS ,80320,80789,11,49.85,2.783333,1.55
+ Verpillières ,VERPILLIERES ,80700,80790,11,49.666667,2.816667,2
+ La Vicogne ,LA VICOGNE ,80260,80792,11,50.05,2.316667,1.3
+ Vignacourt ,VIGNACOURT ,80650,80793,11,50.016667,2.2,0.58
+ Villecourt ,VILLECOURT ,80190,80794,11,49.766667,2.966667,1.75
+ Ville-le-Marclet ,VILLE LE MARCLET ,80420,80795,11,50.016667,2.083333,0.58
+ Villeroy ,VILLEROY ,80140,80796,11,49.933333,1.733333,1.49
+ Villers-aux-Érables ,VILLERS AUX ERABLES ,80110,80797,11,49.783333,2.533333,1.14
+ Villers-Bocage ,VILLERS BOCAGE ,80260,80798,11,49.983333,2.333333,0.47
+ Villers-Bretonneux ,VILLERS BRETONNEUX ,80380,80799,11,49.866667,2.516667,1.42
+ Villers-Campsart ,VILLERS CAMPSART ,80140,80800,11,49.866667,1.833333,1.58
+ Villers-Carbonnel ,VILLERS CARBONNEL ,80200,80801,11,49.866667,2.9,1.57
+ Villers-Faucon ,VILLERS FAUCON ,80112,80802,11,49.983333,3.1,2.1
+ Villers-lès-Roye ,VILLERS LES ROYE ,80700,80803,11,49.7,2.733333,1.75
+ Villers-sous-Ailly ,VILLERS SOUS AILLY ,80690,80804,11,50.066667,2.016667,0.95
+ Villers-Tournelle ,VILLERS TOURNELLE ,80500,80805,11,49.65,2.466667,2.12
+ Villers-sur-Authie ,VILLERS SUR AUTHIE ,80120,80806,11,50.316667,1.7,2.8
+ Ville-sur-Ancre ,VILLE SUR ANCRE ,80300,80807,11,49.95,2.616667,1
+ Vironchaux ,VIRONCHAUX ,80150,80808,11,50.283333,1.816667,2.55
+ Vismes ,VISMES ,80140,80809,11,50.016667,1.666667,1.85
+ Vitz-sur-Authie ,VITZ SUR AUTHIE ,80150,80810,11,50.25,2.066667,2.3
+ Voyennes ,VOYENNES ,80400,80811,11,49.766667,2.983333,1.79
+ Vraignes-lès-Hornoy ,VRAIGNES LES HORNOY ,80640,80813,11,49.833333,1.916667,1.01
+ Vrély ,VRELY ,80170,80814,11,49.783333,2.683333,1.14
+ Vron ,VRON ,80120,80815,11,50.316667,1.75,2.8
+ Wailly ,WAILLY ,80160,80816,11,49.766667,2.15,1.26
+ Wanel ,WANEL ,80490,80817,11,50,1.916667,1.5
+ Warfusée-Abancourt ,WARFUSEE ABANCOURT ,80720,80818,11,49.866667,2.583333,1.15
+ Wargnies ,WARGNIES ,80670,80819,11,50.033333,2.25,1.19
+ Warloy-Baillon ,WARLOY BAILLON ,80300,80820,11,50.016667,2.516667,1.78
+ Warlus ,WARLUS ,80270,80821,11,49.916667,1.95,0.99
+ Warsy ,WARSY ,80500,80822,11,49.7,2.65,1.75
+ Warvillers ,WARVILLERS ,80170,80823,11,49.766667,2.683333,1.26
+ Wiencourt-l'Équipée ,WIENCOURT L EQUIPEE ,80170,80824,11,49.85,2.616667,1.59
+ Wiry-au-Mont ,WIRY AU MONT ,80270,80825,11,49.966667,1.833333,1.84
+ Woignarue ,WOIGNARUE ,80460,80826,11,50.116667,1.5,2.11
+ Woincourt ,WOINCOURT ,80520,80827,11,50.066667,1.533333,2.02
+ Woirel ,WOIREL ,80140,80828,11,49.966667,1.816667,1.27
+ Y ,Y ,80190,80829,11,49.8,2.983333,1.81
+ Yaucourt-Bussus ,YAUCOURT BUSSUS ,80135,80830,11,50.1,1.966667,1.2
+ Yvrench ,YVRENCH ,80150,80832,11,50.183333,2,1.81
+ Yvrencheux ,YVRENCHEUX ,80150,80833,11,50.183333,1.983333,1.81
+ Yzengremer ,YZENGREMER ,80520,80834,11,50.066667,1.516667,2.06
+ Yzeux ,YZEUX ,80310,80835,11,49.966667,2.116667,0.79
+ Yonval ,YONVAL ,80132,80836,11,50.083333,1.783333,1.36
+ Digeon ,DIGEON ,80590,80901,11,49.766667,1.8,1.55
+ Aguts ,AGUTS ,81470,81001,11,43.533333,1.916667,1.53
+ Aiguefonde ,AIGUEFONDE ,81200,81002,11,43.483333,2.333333,1.82
+ Alban ,ALBAN ,81250,81003,11,43.9,2.466667,1.68
+ Albi ,ALBI ,81990,81004,11,43.933333,2.15,0.79
+ Albine ,ALBINE ,81240,81005,11,43.45,2.533333,2.01
+ Algans ,ALGANS ,81470,81006,11,43.6,1.883333,1.15
+Alos, ,81140,81007,11,44.016667,1.883333,1.27
+ Almayrac ,ALMAYRAC ,81190,81008,11,44.1,2.166667,1.75
+ Amarens ,AMARENS ,81170,81009,11,44.033333,1.933333,1.37
+ Ambialet ,AMBIALET ,81430,81010,11,43.933333,2.383333,1.28
+ Ambres ,AMBRES ,81500,81011,11,43.733333,1.816667,1.47
+ Andillac ,ANDILLAC ,81140,81012,11,44,1.9,1.17
+ Anglès ,ANGLES ,81260,81014,11,43.566667,2.566667,2.17
+ Appelle ,APPELLE ,81700,81015,11,43.583333,1.966667,1.24
+ Arfons ,ARFONS ,81110,81016,11,43.433333,2.166667,2.11
+ Arifat ,ARIFAT ,81360,81017,11,43.766667,2.333333,1.03
+ Arthès ,ARTHES ,81160,81018,11,43.95,2.2,1
+ Assac ,ASSAC ,81340,81019,11,43.983333,2.433333,1.52
+ Aussillon ,AUSSILLON ,81200,81021,11,43.483333,2.366667,1.82
+ Bannières ,BANNIERES ,81500,81022,11,43.633333,1.75,1.8
+ Barre ,BARRE ,81320,81023,11,43.75124,2.82714,-1
+ Beauvais-sur-Tescou ,BEAUVAIS SUR TESCOU ,81630,81024,11,43.9,1.583333,2.61
+ Belcastel ,BELCASTEL ,81500,81025,11,43.65,1.758333,-1
+ Belleserre ,BELLESERRE ,81540,81027,11,43.483333,2.05,1.82
+ Berlats ,BERLATS ,81260,81028,11,43.7,2.566667,2.17
+ Bernac ,BERNAC ,81150,81029,11,43.95,2.016667,0.88
+ Bertre ,BERTRE ,81700,81030,11,43.6,1.95,1.52
+ Le Bez ,LE BEZ ,81260,81031,11,43.616667,2.466667,1.68
+ Blan ,BLAN ,81700,81032,11,43.533333,2,1.53
+ Blaye-les-Mines ,BLAYE LES MINES ,81400,81033,11,44.016667,2.133333,1.27
+ Boissezon ,BOISSEZON ,81490,81034,11,43.583333,2.4,1.36
+ Bout-du-Pont-de-Larn ,BOUT DU PONT DE,81660,81036,11,43.5,2.416667,1.72
+ Brens ,BRENS ,81600,81038,11,43.9,1.916667,0.99
+ Briatexte ,BRIATEXTE ,81390,81039,11,43.75,1.916667,0.99
+ Brousse ,BROUSSE ,81440,81040,11,43.716667,2.083333,1
+ Broze ,BROZE ,81600,81041,11,43.95,1.9,1.45
+ Burlats ,BURLATS ,81100,81042,11,43.633333,2.316667,1.23
+ Busque ,BUSQUE ,81300,81043,11,43.783333,1.966667,1.05
+ Cabanès ,CABANES ,81500,81044,11,43.733333,1.95,2.1
+ Les Cabannes ,LES CABANNES ,81170,81045,11,44.066667,1.941667,-1
+ Cadalen ,CADALEN ,81600,81046,11,43.85,1.983333,1.02
+ Cadix ,CADIX ,81340,81047,11,43.983333,2.483333,1.76
+ Cagnac-les-Mines ,CAGNAC LES MINES ,81130,81048,11,43.983333,2.15,1.61
+Cahuzac, ,81540,81049,11,43.466667,2.066667,1.13
+ Cahuzac-sur-Vère ,CAHUZAC SUR VERE ,81140,81051,11,43.983333,1.916667,1.36
+ Cambon ,CAMBON ,81990,81052,11,43.916667,2.216667,0.8
+ Cambounès ,CAMBOUNES ,81260,81053,11,43.583333,2.45,1.6
+ Cambounet-sur-le-Sor ,CAMBOUNET SUR LE SOR,81580,81054,11,43.583333,2.116667,1.24
+ Les Cammazes ,LES CAMMAZES ,81540,81055,11,43.416667,2.083333,2.21
+ Campes ,CAMPES ,81170,81057,11,44.066667,1.983333,1.56
+ Carbes ,CARBES ,81570,81058,11,43.616667,2.15,1.05
+ Carlus ,CARLUS ,81990,81059,11,43.883333,2.116667,1.29
+ Carmaux ,CARMAUX ,81400,81060,11,44.05,2.15,1.46
+ Castanet ,CASTANET ,81150,81061,11,43.983333,2.033333,1.08
+ Castelnau-de-Brassac ,CASTELNAU DE BRASSAC ,81260,81062,11,43.65,2.516667,1.93
+ Castelnau-de-Lévis ,CASTELNAU DE LEVIS ,81150,81063,11,43.933333,2.083333,1.12
+ Castelnau-de-Montmiral ,CASTELNAU DE MONTMIRAL ,81140,81064,11,43.966667,1.816667,1.47
+ Castres ,CASTRES ,81100,81065,11,43.6,2.25,1.14
+ Caucalières ,CAUCALIERES ,81200,81066,11,43.516667,2.316667,1.63
+ Cestayrols ,CESTAYROLS ,81150,81067,11,43.983333,1.983333,1.5
+ Combefa ,COMBEFA ,81640,81068,11,44.05,2.083333,1.46
+ Coufouleux ,COUFOULEUX ,81800,81070,11,43.816667,1.75,1.8
+ Courris ,COURRIS ,81340,81071,11,43.933333,2.4,1.36
+ Crespinet ,CRESPINET ,81350,81073,11,43.95,2.3,1.02
+ Cunac ,CUNAC ,81990,81074,11,43.933333,2.216667,0.95
+ Cuq ,CUQ ,81570,81075,11,43.65,2.083333,1.6
+ Cuq-Toulza ,CUQ TOULZA ,81470,81076,11,43.55,1.883333,1.43
+ Curvalle ,CURVALLE ,81250,81077,11,43.916667,2.55,2.09
+ Damiatte ,DAMIATTE ,81220,81078,11,43.65,1.983333,0.85
+ Dénat ,DENAT ,81120,81079,11,43.85,2.2,0.41
+ Donnazac ,DONNAZAC ,81170,81080,11,44.016667,1.95,1.27
+ Dourgne ,DOURGNE ,81110,81081,11,43.483333,2.15,1.82
+ Le Dourn ,LE DOURN ,81340,81082,11,44.016667,2.466667,1.68
+ Escoussens ,ESCOUSSENS ,81290,81084,11,43.5,2.216667,1.72
+ Escroux ,ESCROUX ,81530,81085,11,43.75,2.633333,2.49
+ Espérausses ,ESPERAUSSES ,81260,81086,11,43.7,2.533333,2.01
+ Fayssac ,FAYSSAC ,81150,81087,11,43.95,1.966667,1.46
+ Fauch ,FAUCH ,81120,81088,11,43.833333,2.25,0.63
+ Fénols ,FENOLS ,81600,81090,11,43.85,2.05,2.08
+ Fiac ,FIAC ,81500,81092,11,43.7,1.9,1.33
+ Florentin ,FLORENTIN ,81150,81093,11,43.883333,2.033333,1.12
+ Frausseilles ,FRAUSSEILLES ,81170,81095,11,44.033333,1.95,1.37
+ Le Fraysse ,LE FRAYSSE ,81430,81096,11,43.9,2.416667,1.44
+ Fréjairolles ,FREJAIROLLES ,81990,81097,11,43.883333,2.233333,1.19
+ Fréjeville ,FREJEVILLE ,81570,81098,11,43.616667,2.133333,1.05
+ Gaillac ,GAILLAC ,81600,81099,11,43.9,1.916667,0.99
+ Garrevaques ,GARREVAQUES ,81700,81100,11,43.483333,1.966667,1.82
+ Le Garric ,LE GARRIC ,81450,81101,11,44,2.166667,1.17
+ Garrigues ,GARRIGUES ,81500,81102,11,43.7,1.716667,1.96
+ Gijounet ,GIJOUNET ,81530,81103,11,43.716667,2.616667,2.41
+ Giroussens ,GIROUSSENS ,81500,81104,11,43.766667,1.783333,1.64
+ Graulhet ,GRAULHET ,81300,81105,11,43.766667,2,0.58
+ Grazac ,GRAZAC ,81800,81106,11,43.84322,1.6562,-1
+ Guitalens ,GUITALENS ,81220,81107,11,43.65,2.05,1.39
+ Itzac ,ITZAC ,81170,81108,11,44.033333,1.866667,1.48
+ Jonquières ,JONQUIERES ,81440,81109,11,43.65,2.116667,1.22
+ Jouqueviel ,JOUQUEVIEL ,81190,81110,11,44.183333,2.15,2.24
+ Labarthe-Bleys ,LABARTHE BLEYS ,81170,81111,11,44.066667,1.916667,1.56
+ Labastide-de-Lévis ,LABASTIDE DE LEVIS ,81150,81112,11,43.933333,2.016667,0.79
+ Labastide-Dénat ,LABASTIDE DENAT ,81120,81113,11,43.866667,2.2,0.6
+ Labastide-Gabausse ,LABASTIDE GABAUSSE ,81400,81114,11,44.033333,2.1,1.5
+ Labastide-Rouairoux ,LABASTIDE ROUAIROUX ,81270,81115,11,43.466667,2.65,2.57
+ Labastide-Saint-Georges ,LABASTIDE SAINT GEORGES ,81500,81116,11,43.7,1.816667,1.47
+ Labessière-Candeil ,LABESSIERE CANDEIL ,81300,81117,11,43.8,2.016667,0.87
+ Laboulbène ,LABOULBENE ,81100,81118,11,43.65,2.2,1.2
+ Laboutarié ,LABOUTARIE ,81120,81119,11,43.783333,2.116667,1.24
+ Labruguière ,LABRUGUIERE ,81290,81120,11,43.533333,2.266667,1.53
+ Lacabarède ,LACABAREDE ,81240,81121,11,43.45,2.583333,2.25
+ Lacapelle-Pinet ,LACAPELLE PINET ,81340,81122,11,44.066667,2.333333,1.6
+ Lacapelle-Ségalar ,LACAPELLE SEGALAR ,81170,81123,11,44.116667,2,1.85
+ Lacaune ,LACAUNE ,81230,81124,11,43.716667,2.7,2.82
+ Lacaze ,LACAZE ,81330,81125,11,43.733333,2.516667,1.93
+ Lacroisille ,LACROISILLE ,81470,81127,11,43.583333,1.933333,1.24
+ Lacrouzette ,LACROUZETTE ,81210,81128,11,43.666667,2.35,1.79
+ Lagardiolle ,LAGARDIOLLE ,81110,81129,11,43.5,2.083333,1.72
+ Lagarrigue ,LAGARRIGUE ,81090,81130,11,43.566667,2.283333,1.34
+ Lagrave ,LAGRAVE ,81150,81131,11,43.9,2,1.03
+ Lalbarède ,LALBAREDE ,81220,81132,11,43.65,2.05,1.39
+ Lamillarié ,LAMILLARIE ,81120,81133,11,43.85,2.15,0.85
+ Laparrouquial ,LAPARROUQUIAL ,81640,81135,11,44.1,2.033333,1.75
+ Lasgraisses ,LASGRAISSES ,81300,81138,11,43.816667,2.033333,1.42
+ Lautrec ,LAUTREC ,81440,81139,11,43.716667,2.15,0.47
+ Lavaur ,LAVAUR ,81500,81140,11,43.7,1.816667,1.47
+ Lédas-et-Penthiès ,LEDAS ET PENTHIES ,81340,81141,11,44.083333,2.383333,1.66
+ Lempaut ,LEMPAUT ,81700,81142,11,43.533333,2.066667,1.53
+ Lescout ,LESCOUT ,81110,81143,11,43.533333,2.1,1.53
+ Lescure-d'Albigeois ,LESCURE D ALBIGEOIS ,81380,81144,11,43.95,2.166667,0.88
+ Lisle-sur-Tarn ,LISLE SUR TARN ,81310,81145,11,43.85,1.8,1.56
+ Lombers ,LOMBERS ,81120,81147,11,43.8,2.15,0.79
+ Loubers ,LOUBERS ,81170,81148,11,44.05,1.9,1.46
+ Loupiac ,LOUPIAC ,81800,81149,11,43.825,1.783333,-1
+ Lugan ,LUGAN ,81500,81150,11,43.733333,1.716667,-1
+ Magrin ,MAGRIN ,81220,81151,11,43.633333,1.916667,1.58
+ Mailhoc ,MAILHOC ,81130,81152,11,44,2.066667,1.17
+ Marnaves ,MARNAVES ,81170,81154,11,44.1,1.9,1.75
+ Marsal ,MARSAL ,81430,81155,11,43.933333,2.283333,1.22
+ Marssac-sur-Tarn ,MARSSAC SUR TARN ,81150,81156,11,43.916667,2.033333,0.69
+ Marzens ,MARZENS ,81500,81157,11,43.666667,1.833333,1.39
+ Le Masnau-Massuguiès ,LE MASNAU MASSUGUIES ,81530,81158,11,43.783333,2.55,2.09
+ Massac-Séran ,MASSAC SERAN ,81500,81159,11,43.666667,1.85,1.31
+ Massaguel ,MASSAGUEL ,81110,81160,11,43.5,2.166667,1.72
+ Massals ,MASSALS ,81250,81161,11,43.85,2.516667,1.93
+ Maurens-Scopont ,MAURENS SCOPONT ,81470,81162,11,43.6,1.816667,1.88
+ Mazamet ,MAZAMET ,81200,81163,11,43.5,2.4,1.72
+ Mézens ,MEZENS ,81800,81164,11,43.783333,1.666667,2.2
+ Milhars ,MILHARS ,81170,81165,11,44.116667,1.883333,1.85
+ Milhavet ,MILHAVET ,81130,81166,11,44.033333,2.033333,1.37
+ Miolles ,MIOLLES ,81250,81167,11,43.883333,2.55,2.09
+ Mirandol-Bourgnounac ,MIRANDOL BOURGNOUNAC ,81190,81168,11,44.133333,2.166667,1.95
+ Missècle ,MISSECLE ,81300,81169,11,43.716667,2,1.25
+ Monestiès ,MONESTIES ,81640,81170,11,44.066667,2.1,1.56
+ Montans ,MONTANS ,81600,81171,11,43.866667,1.9,1.07
+ Montdragon ,MONTDRAGON ,81440,81174,11,43.783333,2.116667,1.22
+ Montdurausse ,MONTDURAUSSE ,81630,81175,11,43.95,1.566667,2.69
+ Montels ,MONTELS ,81140,81176,11,43.966667,1.9,1.28
+ Montfa ,MONTFA ,81210,81177,11,43.683333,2.216667,1.34
+ Montgey ,MONTGEY ,81470,81179,11,43.516667,1.933333,1.63
+ Montirat ,MONTIRAT ,81190,81180,11,44.15,2.116667,2.04
+ Montpinier ,MONTPINIER ,81440,81181,11,43.666667,2.2,1.32
+ Montredon-Labessonnié ,MONTREDON LABESSONNIE ,81360,81182,11,43.733333,2.35,1.12
+ Mont-Roc ,MONT ROC ,81120,81183,11,43.8,2.366667,1.89
+ Montvalen ,MONTVALEN ,81630,81185,11,43.866667,1.6,2.53
+ Moularès ,MOULARES ,81190,81186,11,44.066667,2.3,1.56
+ Moulayrès ,MOULAYRES ,81300,81187,11,43.716667,2.016667,1.27
+ Moulin-Mage ,MOULIN MAGE ,81320,81188,11,43.71127,2.80464,-1
+ Mouzens ,MOUZENS ,81470,81189,11,43.533333,1.9,1.53
+ Mouzieys-Teulet ,MOUZIEYS TEULET ,81430,81190,11,43.866667,2.283333,1.34
+ Mouzieys-Panens ,MOUZIEYS PANENS ,81170,81191,11,44.1,1.95,1.75
+ Murat-sur-Vèbre ,MURAT SUR VEBRE ,81320,81192,11,43.683333,2.858333,-1
+ Nages ,NAGES ,81320,81193,11,43.67555,2.77966,-1
+ Narthoux ,NARTHOUX ,81190,81194,11,44.15,2.033333,2.04
+ Navès ,NAVES ,81710,81195,11,43.566667,2.225,1.34
+ Noailhac ,NOAILHAC ,81490,81196,11,43.575,2.35,-1
+ Noailles ,NOAILLES ,81170,81197,11,44.016667,1.983333,1.52
+ Orban ,ORBAN ,81120,81198,11,43.833333,2.083333,1.58
+ Padiès ,PADIES ,81340,81199,11,44.05,2.366667,1.46
+ Palleville ,PALLEVILLE ,81700,81200,11,43.5,2,1.72
+ Pampelonne ,PAMPELONNE ,81190,81201,11,44.116667,2.25,1.85
+ Parisot ,PARISOT ,81310,81202,11,43.816667,1.833333,1.39
+ Paulinet ,PAULINET ,81250,81203,11,43.85,2.433333,1.52
+ Payrin-Augmontel ,PAYRIN AUGMONTEL ,81660,81204,11,43.516667,2.366667,1.63
+ Péchaudier ,PECHAUDIER ,81470,81205,11,43.533333,1.95,1.53
+ Penne ,PENNE ,81140,81206,11,44.066667,1.733333,1.88
+ Peyregoux ,PEYREGOUX ,81440,81207,11,43.683333,2.2,1.15
+ Peyrole ,PEYROLE ,81310,81208,11,43.8,1.916667,1.45
+ Pont-de-Larn ,PONT DE LARN ,81660,81209,11,43.5,2.4,1.72
+ Poudis ,POUDIS ,81700,81210,11,43.516667,1.983333,1.63
+ Poulan-Pouzols ,POULAN POUZOLS ,81120,81211,11,43.85,2.116667,1.23
+ Prades ,PRADES ,81220,81212,11,43.6,1.983333,1.14
+ Pratviel ,PRATVIEL ,81500,81213,11,43.65,1.9,1.4
+ Puéchoursi ,PUECHOURSI ,81470,81214,11,43.516667,1.916667,1.63
+ Puybegon ,PUYBEGON ,81390,81215,11,43.783333,1.916667,1.5
+ Puycalvel ,PUYCALVEL ,81440,81216,11,43.683333,2.1,0.92
+ Puycelci ,PUYCELCI ,81140,81217,11,44,1.716667,1.96
+ Puylaurens ,PUYLAURENS ,81700,81219,11,43.566667,2.016667,1.34
+ Rabastens ,RABASTENS ,81800,81220,11,43.833333,1.75,1.8
+ Rayssac ,RAYSSAC ,81330,81221,11,43.816667,2.416667,1.44
+ Réalmont ,REALMONT ,81120,81222,11,43.783333,2.2,0.46
+ Le Rialet ,LE RIALET ,81240,81223,11,43.566667,2.483333,1.76
+ Le Riols ,LE RIOLS ,81170,81224,11,44.15,1.9,2.04
+ Rivières ,RIVIERES ,81600,81225,11,43.916667,1.966667,0.75
+ Ronel ,RONEL ,81120,81226,11,43.816667,2.216667,0.47
+ Roquecourbe ,ROQUECOURBE ,81210,81227,11,43.666667,2.3,0.87
+ Roquemaure ,ROQUEMAURE ,81800,81228,11,43.816667,1.616667,2.45
+ Roquevidal ,ROQUEVIDAL ,81470,81229,11,43.633333,1.866667,1.64
+ Rosières ,ROSIERES ,81400,81230,11,44.05,2.183333,1.64
+ Rouairoux ,ROUAIROUX ,81240,81231,11,43.483333,2.566667,2.17
+ Rouffiac ,ROUFFIAC ,81150,81232,11,43.883333,2.066667,1.35
+ Roumégoux ,ROUMEGOUX ,81120,81233,11,43.8,2.266667,0.71
+ Roussayrolles ,ROUSSAYROLLES ,81140,81234,11,44.1,1.833333,1.75
+ Saint-Amancet ,SAINT AMANCET ,81110,81237,11,43.466667,2.1,1.92
+ Saint-Amans-Soult ,SAINT AMANS SOULT ,81240,81238,11,43.483333,2.5,1.84
+ Saint-Amans-Valtoret ,SAINT AMANS VALTORET ,81240,81239,11,43.483333,2.483333,1.82
+ Saint-Antonin-de-Lacalm ,SAINT ANTONIN DE LACALM,81120,81241,11,43.783333,2.3,1.15
+ Saint-Avit ,SAINT AVIT ,81110,81242,11,43.516667,2.1,1.63
+ Saint-Beauzile ,SAINT BEAUZILE ,81140,81243,11,44.016667,1.833333,1.39
+ Saint-Benoît-de-Carmaux ,SAINT BENOIT DE CARMAUX,81400,81244,11,44.05,2.133333,1.46
+ Saint-Christophe ,SAINT CHRISTOPHE ,81190,81245,11,44.15,2.05,2.04
+ Sainte-Cécile-du-Cayrou ,SAINTE CECILE DU CAYROU,81140,81246,11,44,1.8,1.56
+ Saint-Cirgue ,SAINT CIRGUE ,81340,81247,11,43.966667,2.366667,1.2
+ Saint-Gauzens ,SAINT GAUZENS ,81390,81248,11,43.733333,1.916667,1.2
+ Sainte-Gemme ,SAINTE GEMME ,81190,81249,11,44.083333,2.2,1.66
+ Saint-Genest-de-Contest ,SAINT GENEST DE CONTEST,81440,81250,11,43.766667,2.15,0.87
+ Saint-Germain-des-Prés ,SAINT GERMAIN DES PRES,81700,81251,11,43.566667,2.083333,1.74
+ Saint-Germier ,SAINT GERMIER ,81210,81252,11,43.666667,2.233333,0.95
+ Saint-Grégoire ,SAINT GREGOIRE ,81350,81253,11,43.966667,2.266667,0.98
+ Saint-Jean-de-Marcel ,SAINT JEAN DE MARCEL,81350,81254,11,44.066667,2.25,1.74
+ Saint-Jean-de-Rives ,SAINT JEAN DE RIVES,81500,81255,11,43.733333,1.783333,1.64
+ Saint-Jean-de-Vals ,SAINT JEAN DE VALS,81210,81256,11,43.683333,2.266667,0.71
+ Saint-Juéry ,SAINT JUERY ,81160,81257,11,43.916667,2.7,2.82
+ Saint-Julien-du-Puy ,SAINT JULIEN DU PUY,81440,81258,11,43.766667,2.1,1.12
+ Saint-Julien-Gaulène ,SAINT JULIEN GAULENE ,81340,81259,11,44,2.35,1.17
+ Saint-Lieux-lès-Lavaur ,SAINT LIEUX LES LAVAUR,81500,81261,11,43.766667,1.766667,1.72
+ Saint-Martin-Laguépie ,SAINT MARTIN LAGUEPIE ,81170,81263,11,44.15,1.966667,2.04
+ Saint-Michel-Labadié ,SAINT MICHEL LABADIE ,81340,81264,11,44,2.433333,1.52
+ Saint-Michel-de-Vax ,SAINT MICHEL DE VAX,81140,81265,11,44.1,1.8,1.75
+ Saint-Paul-Cap-de-Joux ,SAINT PAUL CAP DE,81220,81266,11,43.65,1.983333,0.85
+ Saint-Pierre-de-Trivisy ,SAINT PIERRE DE TRIVISY,81330,81267,11,43.766667,2.433333,1.52
+ Saint-Salvy-de-la-Balme ,SAINT SALVY DE LA,81490,81269,11,43.616667,2.4,1.36
+ Saint-Sernin-lès-Lavaur ,SAINT SERNIN LES LAVAUR,81700,81270,11,43.55,1.966667,1.43
+ Saint-Urcisse ,SAINT URCISSE ,81630,81272,11,43.95,1.633333,2.37
+ Saix ,SAIX ,81710,81273,11,43.583333,2.183333,1.24
+ Saliès ,SALIES ,81990,81274,11,43.883333,2.133333,0.99
+ Salles ,SALLES ,81640,81275,11,44.066667,2.05,1.56
+ Salvagnac ,SALVAGNAC ,81630,81276,11,43.916667,1.7,2.04
+ Saussenac ,SAUSSENAC ,81350,81277,11,43.983333,2.283333,1.08
+ La Sauzière-Saint-Jean ,LA SAUZIERE SAINT JEAN,81630,81279,11,43.95,1.65,2.28
+ Sémalens ,SEMALENS ,81570,81281,11,43.583333,2.116667,1.24
+ Senaux ,SENAUX ,81530,81282,11,43.766667,2.616667,2.41
+ Senouillac ,SENOUILLAC ,81600,81283,11,43.933333,1.95,0.83
+ Sérénac ,SERENAC ,81350,81285,11,43.966667,2.333333,1.32
+ Serviès ,SERVIES ,81220,81286,11,43.666667,2.033333,1.1
+ Sieurac ,SIEURAC ,81120,81287,11,43.8,2.1,1.39
+ Sorèze ,SOREZE ,81540,81288,11,43.45,2.066667,2.01
+ Soual ,SOUAL ,81580,81289,11,43.55,2.116667,1.43
+ Taïx ,TAIX ,81130,81291,11,44,2.116667,1.17
+ Tanus ,TANUS ,81190,81292,11,44.116667,2.3,1.85
+ Tauriac ,TAURIAC ,81630,81293,11,43.883333,1.591667,-1
+ Técou ,TECOU ,81600,81294,11,43.85,1.95,0.83
+ Teillet ,TEILLET ,81120,81295,11,43.833333,2.35,1.68
+ Terssac ,TERSSAC ,81150,81297,11,43.933333,2.083333,1.12
+ Teulat ,TEULAT ,81500,81298,11,43.633333,1.7,2.04
+ Teyssode ,TEYSSODE ,81220,81299,11,43.65,1.933333,1.18
+ Tonnac ,TONNAC ,81170,81300,11,44.066667,1.883333,1.56
+ Le Travet ,LE TRAVET ,81120,81301,11,43.816667,2.333333,1.47
+ Tréban ,TREBAN ,81190,81302,11,44.1,2.35,1.88
+ Trébas ,TREBAS ,81340,81303,11,43.95,2.483333,1.76
+ Trévien ,TREVIEN ,81190,81304,11,44.1,2.116667,1.75
+ Vabre ,VABRE ,81330,81305,11,43.683333,2.433333,1.52
+ Valderiès ,VALDERIES ,81350,81306,11,44.016667,2.233333,1.27
+ Valdurenque ,VALDURENQUE ,81090,81307,11,43.566667,2.316667,1.34
+ Valence-d'Albigeois ,VALENCE D ALBIGEOIS ,81340,81308,11,44.016667,2.4,1.36
+ Vaour ,VAOUR ,81140,81309,11,44.066667,1.8,1.56
+ Veilhes ,VEILHES ,81500,81310,11,43.616667,1.833333,1.39
+ Vénès ,VENES ,81440,81311,11,43.733333,2.2,1.04
+ Verdalle ,VERDALLE ,81110,81312,11,43.516667,2.166667,1.63
+ Viane ,VIANE ,81530,81314,11,43.733333,2.583333,2.25
+ Vieux ,VIEUX ,81140,81316,11,44,1.883333,1.17
+ Villefranche-d'Albigeois ,VILLEFRANCHE D ALBIGEOIS ,81430,81317,11,43.9,2.35,1.12
+ Villeneuve-lès-Lavaur ,VILLENEUVE LES LAVAUR ,81500,81318,11,43.616667,1.783333,1.64
+ Villeneuve-sur-Vère ,VILLENEUVE SUR VERE ,81130,81319,11,44,2.033333,1.17
+ Vindrac-Alayrac ,VINDRAC ALAYRAC ,81170,81320,11,44.066667,1.916667,1.56
+ Le Vintrou ,LE VINTROU ,81240,81321,11,43.516667,2.466667,1.68
+ Virac ,VIRAC ,81640,81322,11,44.05,2.05,1.46
+ Viterbe ,VITERBE ,81220,81323,11,43.683333,1.95,1.12
+ Viviers-lès-Lavaur ,VIVIERS LES LAVAUR ,81500,81324,11,43.633333,1.8,1.56
+ Viviers-lès-Montagnes ,VIVIERS LES MONTAGNES ,81290,81325,11,43.55,2.183333,1.43
+ Sainte-Croix ,SAINTE CROIX ,81150,81326,11,43.966667,2.066667,1.03
+ Albefeuille-Lagarde ,ALBEFEUILLE LAGARDE ,82290,82001,11,44.05,1.283333,0.39
+ Albias ,ALBIAS ,82350,82002,11,44.083333,1.45,1.03
+ Angeville ,ANGEVILLE ,82210,82003,11,44,1.033333,0.74
+ Asques ,ASQUES ,82120,82004,11,44,0.916667,1.23
+ Aucamville ,AUCAMVILLE ,82600,82005,11,43.8,1.216667,2.06
+ Auterive ,AUTERIVE ,82500,82006,11,43.858333,0.966667,-1
+ Auty ,AUTY ,82220,82007,11,44.2,1.466667,1.98
+ Auvillar ,AUVILLAR ,82340,82008,11,44.066667,0.9,1.3
+ Balignac ,BALIGNAC ,82120,82009,11,43.95,0.883333,1.37
+ Bardigues ,BARDIGUES ,82340,82010,11,44.033333,0.9,1.3
+ Barry-d'Islemade ,BARRY D ISLEMADE ,82290,82011,11,44.066667,1.266667,0.75
+ Les Barthes ,LES BARTHES ,82100,82012,11,44.1,1.166667,2.21
+ Beaumont-de-Lomagne ,BEAUMONT DE LOMAGNE ,82500,82013,11,43.883333,0.983333,1.39
+ Beaupuy ,BEAUPUY ,82600,82014,11,43.816667,1.133333,1.92
+ Belbèse ,BELBESE ,82500,82015,11,43.9,1.066667,1.43
+ Belvèze ,BELVEZE ,82150,82016,11,44.333333,1.1,2.23
+ Bessens ,BESSENS ,82170,82017,11,43.883333,1.266667,1.39
+ Bioule ,BIOULE ,82800,82018,11,44.083333,1.55,1.45
+ Boudou ,BOUDOU ,82200,82019,11,44.1,1.016667,0.81
+ Bouillac ,BOUILLAC ,82600,82020,11,43.833333,1.133333,1.79
+ Bouloc ,BOULOC ,82110,82021,11,44.3,1.133333,1.96
+ Bourg-de-Visa ,BOURG DE VISA ,82190,82022,11,44.25,0.966667,1.56
+ Bourret ,BOURRET ,82700,82023,11,43.95,1.166667,0.85
+ Brassac ,BRASSAC ,82190,82024,11,44.216667,0.975,-1
+ Bressols ,BRESSOLS ,82710,82025,11,43.966667,1.333333,0.72
+ Bruniquel ,BRUNIQUEL ,82800,82026,11,44.05,1.666667,1.94
+ Campsas ,CAMPSAS ,82370,82027,11,43.9,1.316667,1.82
+ Canals ,CANALS ,82170,82028,11,43.85,1.283333,1.65
+ Castanet ,CASTANET ,82160,82029,11,44.266667,1.95,-1
+ Castelmayran ,CASTELMAYRAN ,82210,82031,11,44.033333,1.05,1.08
+ Castelsagrat ,CASTELSAGRAT ,82400,82032,11,44.183333,0.95,1.25
+ Castelsarrasin ,CASTELSARRASIN ,82100,82033,11,44.033333,1.1,0.71
+ Castérat-Bouzet ,CASTERAT BOUZET ,82120,82034,11,44,0.916667,1.23
+ Caumont ,CAUMONT ,82210,82035,11,44.016667,1,0.88
+ Le Causé ,LE CAUSE ,82500,82036,11,43.8,0.966667,2.06
+ Caussade ,CAUSSADE ,82300,82037,11,44.166667,1.533333,1.38
+ Caylus ,CAYLUS ,82160,82038,11,44.233333,1.783333,2.43
+ Cayrac ,CAYRAC ,82440,82039,11,44.1,1.466667,1.1
+ Cayriech ,CAYRIECH ,82240,82040,11,44.216667,1.616667,1.73
+ Cazes-Mondenard ,CAZES MONDENARD ,82110,82042,11,44.233333,1.216667,1.42
+ Comberouger ,COMBEROUGER ,82600,82043,11,43.866667,1.116667,1.52
+ Corbarieu ,CORBARIEU ,82370,82044,11,43.95,1.366667,0.96
+ Cordes-Tolosannes ,CORDES TOLOSANNES ,82700,82045,11,43.983333,1.166667,1.01
+ Coutures ,COUTURES ,82210,82046,11,43.95,0.95,1.88
+ Cumont ,CUMONT ,82500,82047,11,43.866667,0.9,1.52
+ Dieupentale ,DIEUPENTALE ,82170,82048,11,43.866667,1.266667,1.52
+ Donzac ,DONZAC ,82340,82049,11,44.116667,0.833333,1.58
+ Dunes ,DUNES ,82340,82050,11,44.083333,0.783333,1.79
+ Escatalens ,ESCATALENS ,82700,82052,11,43.983333,1.183333,0.76
+ Escazeaux ,ESCAZEAUX ,82500,82053,11,43.833333,1.033333,1.79
+ Espalais ,ESPALAIS ,82400,82054,11,44.066667,0.9,1.38
+ Esparsac ,ESPARSAC ,82500,82055,11,43.9,0.933333,1.25
+ Espinas ,ESPINAS ,82160,82056,11,44.2,1.833333,2.65
+ Fabas ,FABAS ,82170,82057,11,43.85,1.333333,1.65
+ Fajolles ,FAJOLLES ,82210,82058,11,43.966667,1.016667,1.05
+ Faudoas ,FAUDOAS ,82500,82059,11,43.833333,0.95,1.79
+ Fauroux ,FAUROUX ,82190,82060,11,44.25,1,1.56
+ Féneyrols ,FENEYROLS ,82140,82061,11,44.133333,1.816667,2.58
+ Finhan ,FINHAN ,82700,82062,11,43.916667,1.233333,1.12
+ Garganvillar ,GARGANVILLAR ,82100,82063,11,43.983333,1.083333,0.69
+ Gariès ,GARIES ,82500,82064,11,43.783333,1.033333,2.19
+ Genébrières ,GENEBRIERES ,82230,82066,11,44,1.5,1.24
+ Gensac ,GENSAC ,82120,82067,11,43.95,0.983333,2.08
+ Gimat ,GIMAT ,82500,82068,11,43.85,0.933333,1.65
+ Ginals ,GINALS ,82330,82069,11,44.2,1.866667,2.79
+ Glatens ,GLATENS ,82500,82070,11,43.883333,0.916667,1.39
+ Goas ,GOAS ,82500,82071,11,43.816667,0.95,1.92
+ Golfech ,GOLFECH ,82400,82072,11,44.116667,0.866667,1.44
+ Goudourville ,GOUDOURVILLE ,82400,82073,11,44.116667,0.916667,1.23
+ Gramont ,GRAMONT ,82120,82074,11,43.933333,0.766667,2.27
+ Grisolles ,GRISOLLES ,82170,82075,11,43.833333,1.283333,1.79
+ Labastide-de-Penne ,LABASTIDE DE PENNE ,82240,82078,11,44.283333,1.6,1.83
+ Labastide-Saint-Pierre ,LABASTIDE SAINT PIERRE ,82370,82079,11,43.916667,1.366667,1.12
+ Labourgade ,LABOURGADE ,82100,82081,11,43.95,1.116667,0.98
+ Lacapelle-Livron ,LACAPELLE LIVRON ,82160,82082,11,44.266667,1.783333,2.43
+ Lachapelle ,LACHAPELLE ,82120,82083,11,43.983333,0.85,1.51
+ Lacour ,LACOUR ,82190,82084,11,44.3,0.95,1.96
+ Lacourt-Saint-Pierre ,LACOURT SAINT PIERRE ,82290,82085,11,43.983333,1.25,1.68
+ Lafitte ,LAFITTE ,82100,82086,11,43.966667,1.133333,0.75
+ Lafrançaise ,LAFRANCAISE ,82130,82087,11,44.133333,1.25,1.52
+ Saint-Martin-Laguépie ,SAINT MARTIN LAGUEPIE ,82250,82088,11,44.141667,1.966667,-1
+ Lamagistère ,LAMAGISTERE ,82360,82089,11,44.116667,0.833333,1.58
+ Lamothe-Capdeville ,LAMOTHE CAPDEVILLE ,82130,82090,11,44.083333,1.366667,1.74
+ Lamothe-Cumont ,LAMOTHE CUMONT ,82500,82091,11,43.866667,0.9,1.52
+ Lapenche ,LAPENCHE ,82240,82092,11,44.233333,1.583333,1.59
+ Larrazet ,LARRAZET ,82500,82093,11,43.933333,1.083333,1.89
+ Lauzerte ,LAUZERTE ,82110,82094,11,44.25,1.133333,1.56
+ Lavaurette ,LAVAURETTE ,82240,82095,11,44.216667,1.666667,1.94
+ Lavit ,LAVIT ,82120,82097,11,43.966667,0.916667,1.23
+ Léojac ,LEOJAC ,82230,82098,11,44.016667,1.45,1.72
+ Lizac ,LIZAC ,82200,82099,11,44.1,1.2,1.72
+ Loze ,LOZE ,82160,82100,11,44.283333,1.8,2.51
+ Malause ,MALAUSE ,82200,82101,11,44.1,0.983333,1.17
+ Mansonville ,MANSONVILLE ,82120,82102,11,44.016667,0.85,1.51
+ Marsac ,MARSAC ,82120,82104,11,43.941667,0.825,-1
+ Mas-Grenier ,MAS GRENIER ,82600,82105,11,43.9,1.2,1.25
+ Maubec ,MAUBEC ,82500,82106,11,43.8,0.916667,2.06
+ Maumusson ,MAUMUSSON ,82120,82107,11,43.916667,0.9,1.3
+ Meauzac ,MEAUZAC ,82290,82108,11,44.083333,1.266667,1.2
+ Merles ,MERLES ,82210,82109,11,44.066667,0.966667,1.5
+ Mirabel ,MIRABEL ,82440,82110,11,44.15,1.433333,1.47
+ Moissac ,MOISSAC ,82200,82112,11,44.1,1.083333,0.52
+ Molières ,MOLIERES ,82220,82113,11,44.183333,1.366667,1.02
+ Monbéqui ,MONBEQUI ,82170,82114,11,43.883333,1.25,1.43
+ Monclar-de-Quercy ,MONCLAR DE QUERCY ,82230,82115,11,43.966667,1.583333,1.59
+ Montagudet ,MONTAGUDET ,82110,82116,11,44.25,1.083333,1.56
+ Montaigu-de-Quercy ,MONTAIGU DE QUERCY ,82150,82117,11,44.333333,1.016667,2.23
+ Montain ,MONTAIN ,82100,82118,11,43.95,1.116667,0.98
+ Montalzat ,MONTALZAT ,82270,82119,11,44.216667,1.5,1.29
+ Montastruc ,MONTASTRUC ,82130,82120,11,44.1,1.291667,-1
+ Montauban ,MONTAUBAN ,82000,82121,11,44.016667,1.35,0.6
+ Montbarla ,MONTBARLA ,82110,82122,11,44.216667,1.083333,1.39
+ Montbartier ,MONTBARTIER ,82700,82123,11,43.9,1.266667,1.75
+ Montbeton ,MONTBETON ,82290,82124,11,44.016667,1.3,0.97
+ Montech ,MONTECH ,82700,82125,11,43.95,1.233333,0.85
+ Montesquieu ,MONTESQUIEU ,82200,82127,11,44.2,1.066667,1.16
+ Montfermier ,MONTFERMIER ,82270,82128,11,44.216667,1.4,1.44
+ Montgaillard ,MONTGAILLARD ,82120,82129,11,43.933333,0.875,-1
+ Montpezat-de-Quercy ,MONTPEZAT DE QUERCY ,82270,82131,11,44.233333,1.466667,1.42
+ Montricoux ,MONTRICOUX ,82800,82132,11,44.083333,1.616667,1.73
+ Mouillac ,MOUILLAC ,82160,82133,11,44.266667,1.666667,2.09
+ Nègrepelisse ,NEGREPELISSE ,82800,82134,11,44.066667,1.516667,1.38
+ Nohic ,NOHIC ,82370,82135,11,43.883333,1.433333,1.39
+ Orgueil ,ORGUEIL ,82370,82136,11,43.9,1.416667,1.25
+Parisot, ,82160,82137,11,44.266667,1.85,2.72
+ Perville ,PERVILLE ,82400,82138,11,44.183333,0.883333,1.38
+ Le Pin ,LE PIN ,82340,82139,11,44.05,0.966667,1.7
+ Piquecos ,PIQUECOS ,82130,82140,11,44.1,1.316667,0.47
+ Pommevic ,POMMEVIC ,82400,82141,11,44.1,0.933333,1.16
+ Pompignan ,POMPIGNAN ,82170,82142,11,43.816667,1.3,1.92
+ Poupas ,POUPAS ,82120,82143,11,43.966667,0.85,1.51
+ Puycornet ,PUYCORNET ,82220,82144,11,44.166667,1.333333,0.89
+ Puygaillard-de-Quercy ,PUYGAILLARD DE QUERCY ,82800,82145,11,44.016667,1.633333,1.8
+ Puylagarde ,PUYLAGARDE ,82160,82147,11,44.3,1.85,2.72
+ Puylaroque ,PUYLAROQUE ,82240,82148,11,44.25,1.6,1.66
+ Réalville ,REALVILLE ,82440,82149,11,44.116667,1.466667,1.1
+ Reyniès ,REYNIES ,82370,82150,11,43.916667,1.4,1.12
+ Roquecor ,ROQUECOR ,82150,82151,11,44.316667,0.95,2.09
+ Saint-Aignan ,SAINT AIGNAN ,82100,82152,11,44.016667,1.083333,0.69
+ Saint-Amans-du-Pech ,SAINT AMANS DU PECH,82150,82153,11,44.316667,0.883333,2.09
+ Saint-Amans-de-Pellagal ,SAINT AMANS DE PELLAGAL,82110,82154,11,44.233333,1.116667,1.42
+ Saint-Arroumex ,SAINT ARROUMEX ,82210,82156,11,44,1,0.88
+ Saint-Beauzeil ,SAINT BEAUZEIL ,82150,82157,11,44.35,0.916667,2.36
+ Saint-Cirice ,SAINT CIRICE ,82340,82158,11,44.05,0.85,1.51
+ Saint-Clair ,SAINT CLAIR ,82400,82160,11,44.166667,0.95,-1
+ Saint-Étienne-de-Tulmont ,SAINT ETIENNE DE TULMONT,82410,82161,11,44.05,1.466667,1.1
+ Saint-Georges ,SAINT GEORGES ,82240,82162,11,44.225,1.641667,-1
+ Saint-Jean-du-Bouzet ,SAINT JEAN DU BOUZET,82120,82163,11,43.983333,0.883333,1.37
+ Sainte-Juliette ,SAINTE JULIETTE ,82110,82164,11,44.283333,1.183333,1.83
+ Saint-Loup ,SAINT LOUP ,82340,82165,11,44.083333,0.866667,1.44
+ Saint-Michel ,SAINT MICHEL ,82340,82166,11,44.033333,0.933333,1.24
+ Saint-Nauphary ,SAINT NAUPHARY ,82370,82167,11,43.983333,1.433333,1.6
+ Saint-Nazaire-de-Valentane ,SAINT NAZAIRE DE VALENTANE,82190,82168,11,44.233333,1.016667,1.42
+ Saint-Nicolas-de-la-Grave ,SAINT NICOLAS DE LA,82210,82169,11,44.066667,1.033333,1.35
+ Saint-Paul-d'Espis ,SAINT PAUL D ESPIS,82400,82170,11,44.133333,0.983333,1.27
+ Saint-Porquier ,SAINT PORQUIER ,82700,82171,11,44,1.183333,1.06
+ Saint-Projet ,SAINT PROJET ,82160,82172,11,44.308333,1.791667,-1
+ Saint-Sardos ,SAINT SARDOS ,82600,82173,11,43.9,1.133333,1.25
+ Saint-Vincent ,SAINT VINCENT ,82300,82174,11,44.166667,1.466667,1.1
+ La Salvetat-Belmontet ,LA SALVETAT BELMONTET ,82230,82176,11,43.966667,1.533333,1.38
+ Sauveterre ,SAUVETERRE ,82110,82177,11,44.266667,1.233333,1.69
+ Savenès ,SAVENES ,82600,82178,11,43.833333,1.216667,1.79
+ Septfonds ,SEPTFONDS ,82240,82179,11,44.183333,1.616667,1.73
+ Sérignac ,SERIGNAC ,82500,82180,11,43.916667,1.033333,1.17
+ Sistels ,SISTELS ,82340,82181,11,44.066667,0.783333,1.79
+ Touffailles ,TOUFFAILLES ,82190,82182,11,44.266667,1.05,1.69
+ Tréjouls ,TREJOULS ,82110,82183,11,44.266667,1.25,1.69
+ Vaissac ,VAISSAC ,82800,82184,11,44.033333,1.566667,1.52
+ Valeilles ,VALEILLES ,82150,82185,11,44.366667,0.916667,2.49
+ Valence ,VALENCE ,82400,82186,11,44.1,0.916667,1.23
+ Varen ,VAREN ,82330,82187,11,44.15,1.883333,2.86
+ Vazerac ,VAZERAC ,82220,82189,11,44.183333,1.3,1.3
+ Verdun-sur-Garonne ,VERDUN SUR GARONNE ,82600,82190,11,43.866667,1.233333,1.52
+Verfeil, ,82330,82191,11,44.183333,1.883333,2.86
+ Verlhac-Tescou ,VERLHAC TESCOU ,82230,82192,11,43.933333,1.55,1.45
+ Vigueron ,VIGUERON ,82500,82193,11,43.883333,1.066667,1.39
+ Villebrumier ,VILLEBRUMIER ,82370,82194,11,43.9,1.45,1.25
+ Villemade ,VILLEMADE ,82130,82195,11,44.066667,1.266667,1.09
+ Aiguines ,AIGUINES ,83630,83002,11,43.766667,6.25,2.08
+ Ampus ,AMPUS ,83111,83003,11,43.6,6.383333,1.12
+ Les Arcs ,LES ARCS ,83460,83004,11,43.45,6.483333,1
+ Artignosc-sur-Verdon ,ARTIGNOSC SUR VERDON ,83630,83005,11,43.7,6.1,1.69
+ Artigues ,ARTIGUES ,83560,83006,11,43.6,5.8,1.65
+ Aups ,AUPS ,83630,83007,11,43.616667,6.233333,1.21
+ Bagnols-en-Forêt ,BAGNOLS EN FORET ,83600,83008,11,43.533333,6.7,1.84
+ Bandol ,BANDOL ,83150,83009,11,43.133333,5.75,1.85
+ Bargème ,BARGEME ,83840,83010,11,43.733333,6.566667,1.89
+ Bargemon ,BARGEMON ,83830,83011,11,43.616667,6.533333,1.21
+ Barjols ,BARJOLS ,83670,83012,11,43.55,6,0.88
+ La Bastide ,LA BASTIDE ,83840,83013,11,43.733333,6.616667,1.89
+ Bauduen ,BAUDUEN ,83630,83015,11,43.733333,6.183333,1.89
+ Le Beausset ,LE BEAUSSET ,83330,83016,11,43.2,5.8,1.65
+ Belgentier ,BELGENTIER ,83210,83017,11,43.25,6,2.09
+ Besse-sur-Issole ,BESSE SUR ISSOLE ,83890,83018,11,43.35,6.166667,0.33
+ Bormes-les-Mimosas ,BORMES LES MIMOSAS ,83230,83019,11,43.15,6.333333,1.49
+ Le Bourguet ,LE BOURGUET ,83840,83020,11,43.783333,6.516667,2.18
+ Bras ,BRAS ,83149,83021,11,43.466667,5.95,1.07
+ Brenon ,BRENON ,83840,83022,11,43.766667,6.55,2.08
+ Brignoles ,BRIGNOLES ,83170,83023,11,43.4,6.066667,0.62
+ Brovès ,BROVES ,83440,83024,11,43.683333,6.583333,1.75
+ Brue-Auriac ,BRUE AURIAC ,83119,83025,11,43.533333,5.95,1.07
+ Cabasse ,CABASSE ,83340,83026,11,43.416667,6.233333,1.08
+ La Cadière-d'Azur ,LA CADIERE D AZUR,83740,83027,11,43.2,5.766667,1.78
+ Callas ,CALLAS ,83830,83028,11,43.583333,6.533333,1.19
+ Callian ,CALLIAN ,83440,83029,11,43.633333,6.75,2.03
+ Camps-la-Source ,CAMPS LA SOURCE ,83170,83030,11,43.383333,6.083333,0.76
+ Le Cannet-des-Maures ,LE CANNET DES MAURES,83340,83031,11,43.4,6.35,0.83
+ Carcès ,CARCES ,83570,83032,11,43.466667,6.183333,0.72
+ Carnoules ,CARNOULES ,83660,83033,11,43.3,6.183333,0.62
+ Carqueiranne ,CARQUEIRANNE ,83320,83034,11,43.083333,6.083333,1.87
+ Cavalaire-sur-Mer ,CAVALAIRE SUR MER ,83240,83036,11,43.166667,6.533333,1.39
+ La Celle ,LA CELLE ,83170,83037,11,43.4,6.033333,0.75
+ Châteaudouble ,CHATEAUDOUBLE ,83300,83038,11,43.583333,6.45,1.02
+ Châteauvert ,CHATEAUVERT ,83670,83039,11,43.5,6.016667,1.44
+ Châteauvieux ,CHATEAUVIEUX ,83840,83040,11,43.775,6.575,-1
+ Claviers ,CLAVIERS ,83830,83041,11,43.6,6.566667,1.32
+ Cogolin ,COGOLIN ,83310,83042,11,43.25,6.533333,1.19
+ Collobrières ,COLLOBRIERES ,83610,83043,11,43.233333,6.3,1
+ Comps-sur-Artuby ,COMPS SUR ARTUBY ,83840,83044,11,43.716667,6.5,1.79
+ Correns ,CORRENS ,83570,83045,11,43.483333,6.083333,1.26
+ Cotignac ,COTIGNAC ,83570,83046,11,43.533333,6.15,0.73
+ La Crau ,LA CRAU ,83260,83047,11,43.15,6.066667,1.49
+ La Croix-Valmer ,LA CROIX VALMER ,83420,83048,11,43.2,6.566667,1.32
+ Cuers ,CUERS ,83390,83049,11,43.233333,6.066667,1.09
+ Draguignan ,DRAGUIGNAN ,83300,83050,11,43.533333,6.466667,1
+ Entrecasteaux ,ENTRECASTEAUX ,83570,83051,11,43.516667,6.233333,1.49
+ Esparron ,ESPARRON ,83560,83052,11,43.591667,5.85,-1
+ Évenos ,EVENOS ,83330,83053,11,43.166667,5.85,1.46
+ La Farlède ,LA FARLEDE ,83210,83054,11,43.166667,6.033333,1.39
+ Fayence ,FAYENCE ,83440,83055,11,43.616667,6.683333,1.77
+ Figanières ,FIGANIERES ,83830,83056,11,43.566667,6.5,1.52
+ Flassans-sur-Issole ,FLASSANS SUR ISSOLE ,83340,83057,11,43.366667,6.216667,1.29
+ Flayosc ,FLAYOSC ,83780,83058,11,43.533333,6.4,0.73
+ Forcalqueiret ,FORCALQUEIRET ,83136,83059,11,43.333333,6.083333,0.9
+ Fox-Amphoux ,FOX AMPHOUX ,83670,83060,11,43.583333,6.1,1.25
+ La Garde-Freinet ,LA GARDE FREINET ,83680,83063,11,43.316667,6.466667,0.93
+ Garéoult ,GAREOULT ,83136,83064,11,43.333333,6.05,0.68
+ Gassin ,GASSIN ,83580,83065,11,43.216667,6.583333,1.38
+ Ginasservis ,GINASSERVIS ,83560,83066,11,43.666667,5.85,1.5
+ Gonfaron ,GONFARON ,83590,83067,11,43.316667,6.283333,0.52
+ Grimaud ,GRIMAUD ,83310,83068,11,43.266667,6.516667,1.13
+ Hyères ,HYERES ,83400,83069,11,43.116667,6.116667,1.68
+ Le Lavandou ,LE LAVANDOU ,83980,83070,11,43.133333,6.366667,1.58
+ La Londe-les-Maures ,LA LONDE LES MAURES,83250,83071,11,43.133333,6.233333,1.58
+ Lorgues ,LORGUES ,83510,83072,11,43.483333,6.366667,0.54
+ Le Luc ,LE LUC ,83340,83073,11,43.383333,6.316667,0.35
+ La Martre ,LA MARTRE ,83840,83074,11,43.766667,6.6,2.08
+ Les Mayons ,LES MAYONS ,83340,83075,11,43.316667,6.366667,1.55
+ Mazaugues ,MAZAUGUES ,83136,83076,11,43.333333,5.916667,1.82
+ Méounes-lès-Montrieux ,MEOUNES LES MONTRIEUX ,83136,83077,11,43.283333,5.966667,1.15
+ Moissac-Bellevue ,MOISSAC BELLEVUE ,83630,83078,11,43.65,6.166667,1.41
+ La Môle ,LA MOLE ,83310,83079,11,43.2,6.466667,1.44
+ Mons ,MONS ,83440,83080,11,43.683333,6.716667,1.9
+ Montauroux ,MONTAUROUX ,83440,83081,11,43.616667,6.766667,2.09
+ Montferrat ,MONTFERRAT ,83131,83082,11,43.616667,6.483333,1.21
+ Montfort-sur-Argens ,MONTFORT SUR ARGENS ,83570,83083,11,43.466667,6.116667,0.81
+ Montmeyan ,MONTMEYAN ,83670,83084,11,43.65,6.066667,1.44
+ La Motte ,LA MOTTE ,83920,83085,11,43.483333,6.516667,1.13
+ Le Muy ,LE MUY ,83490,83086,11,43.466667,6.55,1.25
+ Nans-les-Pins ,NANS LES PINS ,83860,83087,11,43.366667,5.783333,1.72
+ Néoules ,NEOULES ,83136,83088,11,43.3,6.016667,0.81
+ Ollières ,OLLIERES ,83470,83089,11,43.483333,5.833333,1.52
+ Ollioules ,OLLIOULES ,83190,83090,11,43.133333,5.85,1.58
+ Pierrefeu-du-Var ,PIERREFEU DU VAR ,83390,83091,11,43.216667,6.133333,1.1
+ Pignans ,PIGNANS ,83790,83092,11,43.3,6.216667,0.62
+ Plan-de-la-Tour ,PLAN DE LA TOUR,83120,83094,11,43.333333,6.55,1.25
+ Pontevès ,PONTEVES ,83670,83095,11,43.566667,6.05,0.92
+ Pourcieux ,POURCIEUX ,83470,83096,11,43.466667,5.783333,1.72
+ Pourrières ,POURRIERES ,83910,83097,11,43.5,5.733333,1.91
+ Le Pradet ,LE PRADET ,83220,83098,11,43.1,6.016667,1.78
+ Puget-sur Argens ,PUGET SUR ARGENS ,83480,83099,11,43.45,6.683333,1.77
+ Puget-Ville ,PUGET VILLE ,83390,83100,11,43.283333,6.133333,1.06
+ Ramatuelle ,RAMATUELLE ,83350,83101,11,43.216667,6.616667,1.51
+ Régusse ,REGUSSE ,83630,83102,11,43.65,6.133333,1.41
+ Le Revest-les-Eaux ,LE REVEST LES EAUX,83200,83103,11,43.366667,6.566667,1.32
+ Rians ,RIANS ,83560,83104,11,43.616667,5.75,1.85
+ Riboux ,RIBOUX ,13780,83105,11,43.3,5.75,1.85
+ Rocbaron ,ROCBARON ,83136,83106,11,43.3,6.083333,0.92
+ Roquebrune-sur Argens ,ROQUEBRUNE SUR ARGENS ,83520,83107,11,43.433333,6.633333,1.58
+ La Roquebrussanne ,LA ROQUEBRUSSANNE ,83136,83108,11,43.333333,5.983333,0.94
+ La Roque-Esclapon ,LA ROQUE ESCLAPON ,83840,83109,11,43.716667,6.633333,1.79
+ Rougiers ,ROUGIERS ,83170,83110,11,43.383333,5.85,1.97
+ Sainte-Anastasie-sur-Issole ,SAINTE ANASTASIE SUR ISSOLE,83136,83111,11,43.333333,6.133333,1.68
+ Saint-Cyr-sur-Mer ,SAINT CYR SUR MER,83270,83112,11,43.183333,5.716667,1.98
+ Saint-Martin ,SAINT MARTIN ,83560,83114,11,43.58918,5.88478,-1
+ Sainte-Maxime ,SAINTE MAXIME ,83120,83115,11,43.3,6.633333,1.58
+ Saint-Maximin-la-Sainte-Baume ,SAINT MAXIMIN LA SAINTE,83470,83116,11,43.45,5.866667,1.39
+ Saint-Paul-en-Forêt ,SAINT PAUL EN FORET,83440,83117,11,43.566667,6.683333,1.77
+ Saint-Raphaël ,SAINT RAPHAEL ,83700,83118,11,43.416667,6.766667,2.09
+ Saint-Tropez ,SAINT TROPEZ ,83990,83119,11,43.266667,6.633333,1.58
+ Saint-Zacharie ,SAINT ZACHARIE ,83640,83120,11,43.383333,5.716667,1.98
+ Salernes ,SALERNES ,83690,83121,11,43.55,6.233333,0.83
+ Les Salles-sur-Verdon ,LES SALLES SUR VERDON,83630,83122,11,43.766667,6.2,2.08
+ Sanary-sur-Mer ,SANARY SUR MER ,83110,83123,11,43.116667,5.8,1.68
+ Seillans ,SEILLANS ,83440,83124,11,43.633333,6.633333,1.58
+ La Seyne-sur-Mer ,LA SEYNE SUR MER,83500,83126,11,43.1,5.883333,1.78
+ Signes ,SIGNES ,83870,83127,11,43.3,5.866667,1.39
+ Sillans-la Cascade ,SILLANS LA CASCADE ,83690,83128,11,43.566667,6.183333,1.5
+ Solliès-Pont ,SOLLIES PONT ,83210,83130,11,43.183333,6.05,1.29
+ Solliès-Toucas ,SOLLIES TOUCAS ,83210,83131,11,43.2,6.016667,1.2
+ Solliès-Ville ,SOLLIES VILLE ,83210,83132,11,43.183333,6.033333,1.29
+ Tanneron ,TANNERON ,83440,83133,11,43.583333,6.883333,2.55
+ Taradeau ,TARADEAU ,83460,83134,11,43.45,6.433333,1
+ Tavernes ,TAVERNES ,83670,83135,11,43.6,6.016667,1.12
+ Le Thoronet ,LE THORONET ,83340,83136,11,43.45,6.3,0.94
+ Toulon ,TOULON ,83200,83137,11,43.116667,5.933333,1.68
+ Tourtour ,TOURTOUR ,83690,83139,11,43.583333,6.3,1.33
+ Tourves ,TOURVES ,83170,83140,11,43.4,5.933333,1.14
+ Trans-en-Provence ,TRANS EN PROVENCE ,83720,83141,11,43.5,6.483333,1
+ Trigance ,TRIGANCE ,83840,83142,11,43.766667,6.45,2.08
+ Le Val ,LE VAL ,83143,83143,11,43.433333,6.083333,0.55
+ La Valette-du-Var ,LA VALETTE DU VAR,83160,83144,11,43.133333,5.983333,1.58
+ Varages ,VARAGES ,83670,83145,11,43.6,5.966667,1.23
+ La Verdière ,LA VERDIERE ,83560,83146,11,43.633333,5.933333,1.31
+ Vérignon ,VERIGNON ,83630,83147,11,43.65,6.266667,1.41
+ Vidauban ,VIDAUBAN ,83550,83148,11,43.416667,6.433333,0.8
+ Villecroze ,VILLECROZE ,83690,83149,11,43.583333,6.266667,1.02
+ Vinon-sur-Verdon ,VINON SUR VERDON ,83560,83150,11,43.716667,5.8,1.79
+ Vins-sur-Caramy ,VINS SUR CARAMY ,83170,83151,11,43.433333,6.15,1.56
+ Saint-Mandrier-sur-Mer ,SAINT MANDRIER SUR MER,83430,83153,11,43.066667,5.933333,1.97
+ Les Sablettes ,LES SABLETTES ,83500,83902,11,43.083333,5.883333,1.87
+ Anthéor ,ANTHEOR ,83530,83904,11,43.433333,6.883333,2.55
+ Ayguade-Ceinturon ,AYGUADE CEINTURON ,83400,83905,11,43.116667,6.166667,1.68
+ Laouque ,LAOUQUE ,83330,83911,11,43.216667,5.75,1.85
+ Les Lecques ,LES LECQUES ,83270,83912,11,43.183333,5.666667,2.17
+ La Moutonne ,LA MOUTONNE ,83260,83919,11,43.116667,6.066667,1.68
+ Agay ,AGAY ,83530,83920,11,43.433333,6.85,2.42
+ Le Brusc ,LE BRUSC ,83140,83921,11,43.066667,5.8,1.97
+ Giens ,GIENS ,83400,83922,11,43.033333,6.133333,2.16
+ Porquerolles ,PORQUEROLLES ,83400,83924,11,43,6.2,2.35
+ Saint-Aygulf ,SAINT AYGULF ,83370,83925,11,43.383333,6.733333,1.97
+ Les Salins d'Hyères ,LES SALINS D HYERES,83400,83926,11,43.116667,6.2,1.68
+ Tamaris-sur-Mer ,TAMARIS SUR MER ,83500,83927,11,43.083333,5.9,1.87
+ Le Trayas ,LE TRAYAS ,83700,83930,11,43.466667,6.916667,2.68
+ Cavalière ,CAVALIERE ,83980,83933,11,43.15,6.433333,1.49
+ La Capte ,LA CAPTE ,83400,83935,11,43.066667,6.15,1.97
+ Althen-des-Paluds ,ALTHEN DES PALUDS ,84210,84001,93,44,4.95,2.4
+ Ansouis ,ANSOUIS ,84240,84002,93,43.733333,5.466667,1.84
+ Apt ,APT ,84400,84003,93,43.883333,5.4,1.27
+ Aubignan ,AUBIGNAN ,84810,84004,93,44.1,5.016667,0.7
+ Aurel ,AUREL ,84390,84005,93,44.133333,5.416667,1.36
+ Avignon ,AVIGNON ,84000,84007,93,43.95,4.816667,1.73
+ Le Barroux ,LE BARROUX ,84330,84008,93,44.133333,5.1,1.16
+ La Bastide-des-Jourdans ,LA BASTIDE DES JOURDANS,84240,84009,93,43.783333,5.633333,2.47
+ La Bastidonne ,LA BASTIDONNE ,84120,84010,93,43.716667,5.566667,2.13
+ Le Beaucet ,LE BEAUCET ,84210,84011,93,43.983333,5.116667,0.68
+ Beaumes-de-Venise ,BEAUMES DE VENISE ,84190,84012,93,44.116667,5.033333,0.87
+ Beaumettes ,BEAUMETTES ,84220,84013,93,43.85,5.233333,1.14
+ Beaumont-de-Pertuis ,BEAUMONT DE PERTUIS ,84120,84014,93,43.733333,5.7,2.82
+ Beaumont-du-Ventoux ,BEAUMONT DU VENTOUX ,84340,84015,93,44.183333,5.166667,1.12
+ Bédarrides ,BEDARRIDES ,84370,84016,93,44.033333,4.9,1.3
+ Bédoin ,BEDOIN ,84410,84017,93,44.116667,5.166667,0.68
+ Blauvac ,BLAUVAC ,84570,84018,93,44.033333,5.2,0.24
+ Bollène ,BOLLENE ,84500,84019,93,44.283333,4.75,2.07
+ Bonnieux ,BONNIEUX ,84480,84020,93,43.816667,5.3,1.29
+ Brantes ,BRANTES ,84390,84021,93,44.183333,5.333333,1.12
+ Buisson ,BUISSON ,84110,84022,93,44.283333,5,1.78
+ Buoux ,BUOUX ,84480,84023,93,43.833333,5.383333,1.47
+ Cabrières-d'Aigues ,CABRIERES D AIGUES ,84240,84024,93,43.783333,5.5,1.79
+ Cabrières-d'Avignon ,CABRIERES D AVIGNON ,84220,84025,93,43.9,5.166667,1.67
+ Cadenet ,CADENET ,84160,84026,93,43.733333,5.366667,1.84
+ Caderousse ,CADEROUSSE ,84860,84027,93,44.1,4.75,2.07
+ Cairanne ,CAIRANNE ,84290,84028,93,44.233333,4.933333,1.45
+ Camaret-sur-Aigues ,CAMARET SUR AIGUES ,84850,84029,93,44.166667,4.883333,1.38
+ Caromb ,CAROMB ,84330,84030,93,44.116667,5.1,0.75
+ Carpentras ,CARPENTRAS ,84200,84031,93,44.05,5.05,0.53
+ Caseneuve ,CASENEUVE ,84750,84032,93,43.883333,5.483333,1.7
+ Castellet ,CASTELLET ,84400,84033,93,43.85,5.483333,1.7
+ Caumont-sur-Durance ,CAUMONT SUR DURANCE ,84510,84034,93,43.9,4.95,1.04
+ Châteauneuf-de-Gadagne ,CHATEAUNEUF DE GADAGNE ,84470,84036,93,43.933333,4.933333,1.13
+ Châteauneuf-du-Pape ,CHATEAUNEUF DU PAPE ,84230,84037,93,44.05,4.833333,1.64
+ Cheval-Blanc ,CHEVAL BLANC ,84460,84038,93,43.8,5.066667,1.4
+ Courthézon ,COURTHEZON ,84350,84039,93,44.083333,4.883333,1.38
+ Crestet ,CRESTET ,84110,84040,93,44.216667,5.083333,1.34
+ Crillon-le-Brave ,CRILLON LE BRAVE ,84410,84041,93,44.116667,5.15,0.95
+ Cucuron ,CUCURON ,84160,84042,93,43.783333,5.433333,1.51
+ Entrechaux ,ENTRECHAUX ,84340,84044,93,44.216667,5.133333,1.34
+ Faucon ,FAUCON ,84110,84045,93,44.266667,5.15,1.67
+ Flassan ,FLASSAN ,84410,84046,93,44.1,5.25,1.5
+ Gargas ,GARGAS ,84400,84047,93,43.9,5.383333,1.19
+ Gignac ,GIGNAC ,84400,84048,93,43.916667,5.533333,1.96
+ Gigondas ,GIGONDAS ,84190,84049,93,44.166667,5,1.1
+ Gordes ,GORDES ,84220,84050,93,43.9,5.2,0.95
+ Goult ,GOULT ,84220,84051,93,43.866667,5.25,0.96
+ Grambois ,GRAMBOIS ,84240,84052,93,43.766667,5.583333,2.22
+ Grillon ,GRILLON ,84600,84053,93,44.4,4.933333,2.55
+ L'Isle-sur-la-Sorgue ,L ISLE SUR LA,84800,84054,93,43.916667,5.05,1.45
+ Jonquerettes ,JONQUERETTES ,84450,84055,93,43.95,4.933333,1.13
+ Jonquières ,JONQUIERES ,84150,84056,93,44.116667,4.9,1.3
+ Joucas ,JOUCAS ,84220,84057,93,43.916667,5.25,0.63
+ Lacoste ,LACOSTE ,84480,84058,93,43.833333,5.3,1.18
+ Lafare ,LAFARE ,84190,84059,93,44.15,5.05,0.9
+ Lagarde-d'Apt ,LAGARDE D APT ,84400,84060,93,43.983333,5.483333,1.7
+ Lagarde-Paréol ,LAGARDE PAREOL ,84290,84061,93,44.216667,4.85,1.56
+ Lagnes ,LAGNES ,84800,84062,93,43.9,5.116667,0.74
+ Lamotte-du-Rhône ,LAMOTTE DU RHONE ,84840,84063,93,44.266667,4.683333,2.41
+ Lapalud ,LAPALUD ,84840,84064,93,44.3,4.683333,2.41
+ Lauris ,LAURIS ,84360,84065,93,43.75,5.316667,1.73
+ Lioux ,LIOUX ,84220,84066,93,43.95,5.316667,1.86
+ Loriol-du-Comtat ,LORIOL DU COMTAT ,84870,84067,93,44.083333,5,0.78
+ Lourmarin ,LOURMARIN ,84160,84068,93,43.766667,5.366667,1.62
+ Malaucène ,MALAUCENE ,84340,84069,93,44.166667,5.133333,1.01
+ Malemort-du-Comtat ,MALEMORT DU COMTAT ,84570,84070,93,44.016667,5.166667,1.4
+ Maubec ,MAUBEC ,84660,84071,93,43.85,5.166667,1.07
+ Mazan ,MAZAN ,84380,84072,93,44.05,5.133333,0.24
+ Ménerbes ,MENERBES ,84560,84073,93,43.833333,5.216667,1.18
+ Mérindol ,MERINDOL ,84360,84074,93,43.75,5.2,1.73
+ Méthamis ,METHAMIS ,84570,84075,93,44.016667,5.216667,0.94
+ Modène ,MODENE ,84330,84077,93,44.1,5.116667,0.57
+ Mondragon ,MONDRAGON ,84430,84078,93,44.233333,4.716667,2.24
+ Monieux ,MONIEUX ,84390,84079,93,44.066667,5.366667,1.1
+ Monteux ,MONTEUX ,84170,84080,93,44.033333,5,0.78
+ Mormoiron ,MORMOIRON ,84570,84082,93,44.066667,5.183333,1.24
+ Mornas ,MORNAS ,84550,84083,93,44.2,4.733333,2.16
+ La Motte-d'Aigues ,LA MOTTE D AIGUES,84240,84084,93,43.766667,5.516667,1.87
+ Murs ,MURS ,84220,84085,93,43.95,5.25,1.04
+ Oppède ,OPPEDE ,84580,84086,93,43.833333,5.183333,1.18
+ Orange ,ORANGE ,84100,84087,93,44.133333,4.8,1.81
+ Pernes-les-Fontaines ,PERNES LES FONTAINES ,84210,84088,93,44,5.05,0.58
+ Pertuis ,PERTUIS ,84120,84089,93,43.683333,5.5,2.17
+ Peypin-d'Aigues ,PEYPIN D AIGUES ,84240,84090,93,43.8,5.566667,2.13
+ Piolenc ,PIOLENC ,84420,84091,93,44.183333,4.766667,1.98
+ Le Pontet ,LE PONTET ,84130,84092,93,43.966667,4.85,1.56
+ Puget ,PUGET ,84360,84093,93,43.75,5.3,1.73
+ Puyméras ,PUYMERAS ,84110,84094,93,44.266667,5.133333,1.67
+ Puyvert ,PUYVERT ,84160,84095,93,43.766667,5.35,1.62
+ Rasteau ,RASTEAU ,84110,84096,93,44.216667,4.983333,1.34
+ Richerenches ,RICHERENCHES ,84600,84097,93,44.366667,4.916667,2.33
+ Roaix ,ROAIX ,84110,84098,93,44.25,5.016667,1.56
+ Robion ,ROBION ,84440,84099,93,43.85,5.116667,1.07
+ La Roque-Alric ,LA ROQUE ALRIC ,84190,84100,93,44.15,5.066667,0.96
+ La Roque-sur-Pernes ,LA ROQUE SUR PERNES,84210,84101,93,43.983333,5.1,0.39
+ Roussillon ,ROUSSILLON ,84220,84102,93,43.9,5.283333,0.83
+ Rustrel ,RUSTREL ,84400,84103,93,43.916667,5.483333,1.7
+ Sablet ,SABLET ,84110,84104,93,44.183333,5,1.33
+ Saignon ,SAIGNON ,84400,84105,93,43.866667,5.433333,1.44
+ Sainte-Cécile-les-Vignes ,SAINTE CECILE LES VIGNES,84290,84106,93,44.25,4.883333,1.56
+ Saint-Christol ,SAINT CHRISTOL ,84390,84107,93,44.033333,5.5,1.79
+ Saint-Didier ,SAINT DIDIER ,84210,84108,93,44,5.116667,0.68
+ Saint-Léger-du-Ventoux ,SAINT LEGER DU VENTOUX,84390,84110,93,44.2,5.266667,1.68
+ Saint-Martin-de-Castillon ,SAINT MARTIN DE CASTILLON,84750,84112,93,43.866667,5.516667,1.87
+ Saint-Martin-de-la-Brasque ,SAINT MARTIN DE LA,84760,84113,93,43.766667,5.533333,1.96
+ Saint-Pantaléon ,SAINT PANTALEON ,84220,84114,93,43.883333,5.25,0.85
+ Saint-Pierre-de-Vassols ,SAINT PIERRE DE VASSOLS,84330,84115,93,44.1,5.15,1.55
+ Saint-Romain-en-Viennois ,SAINT ROMAIN EN VIENNOIS,84110,84116,93,44.266667,5.116667,1.67
+ Saint-Roman-de-Malegarde ,SAINT ROMAN DE MALEGARDE,84290,84117,93,44.266667,4.966667,1.67
+ Saint-Saturnin-lès-Avignon ,SAINT SATURNIN LES AVIGNON,84450,84119,93,43.95,4.933333,1.13
+ Saint-Trinit ,SAINT TRINIT ,84390,84120,93,44.1,5.466667,1.62
+ Sannes ,SANNES ,84240,84121,93,43.75,5.483333,1.73
+ Sarrians ,SARRIANS ,84260,84122,93,44.083333,4.966667,0.96
+ Savoillan ,SAVOILLAN ,84390,84125,93,44.183333,5.383333,1.19
+ Séguret ,SEGURET ,84110,84126,93,44.2,5.016667,1.23
+ Sérignan-du-Comtat ,SERIGNAN DU COMTAT ,84830,84127,93,44.183333,4.85,1.56
+ Sivergues ,SIVERGUES ,84400,84128,93,43.833333,5.4,1.27
+ Sorgues ,SORGUES ,84700,84129,93,44,4.866667,1.47
+ Suzette ,SUZETTE ,84190,84130,93,44.166667,5.066667,1.1
+ Taillades ,TAILLADES ,84300,84131,93,43.833333,5.1,1.18
+ Le Thor ,LE THOR ,84250,84132,93,43.933333,5,0.78
+ La Tour-d'Aigues ,LA TOUR D AIGUES,84240,84133,93,43.733333,5.55,2.04
+ Travaillan ,TRAVAILLAN ,84850,84134,93,44.183333,4.9,1.3
+ Uchaux ,UCHAUX ,84100,84135,93,44.216667,4.8,1.81
+ Vacqueyras ,VACQUEYRAS ,84190,84136,93,44.133333,4.983333,1.48
+ Vaison-la-Romaine ,VAISON LA ROMAINE ,84110,84137,93,44.233333,5.066667,1.45
+ Valréas ,VALREAS ,84600,84138,93,44.383333,4.983333,2.44
+ Fontaine-de-Vaucluse ,FONTAINE DE VAUCLUSE ,84800,84139,93,43.916667,5.133333,0.97
+ Vaugines ,VAUGINES ,84160,84140,93,43.783333,5.416667,1.51
+ Vedène ,VEDENE ,84270,84141,93,43.983333,4.9,1.3
+ Velleron ,VELLERON ,84740,84142,93,43.95,5.033333,0.61
+ Venasque ,VENASQUE ,84210,84143,93,43.983333,5.15,1.28
+ Viens ,VIENS ,84750,84144,93,43.9,5.566667,2.13
+ Villars ,VILLARS ,84400,84145,93,43.916667,5.4,1.27
+ Villedieu ,VILLEDIEU ,84110,84146,93,44.283333,5.033333,1.78
+ Villelaure ,VILLELAURE ,84530,84147,93,43.716667,5.433333,1.95
+ Villes-sur-Auzon ,VILLES SUR AUZON ,84570,84148,93,44.05,5.233333,1.3
+ Violès ,VIOLES ,84150,84149,93,44.166667,4.95,1.04
+ Visan ,VISAN ,84820,84150,93,44.3,4.966667,1.89
+ Les Vignères ,LES VIGNERES ,84300,84900,93,43.883333,5.016667,1
+ Montfavet ,MONTFAVET ,84140,84922,93,43.933333,4.883333,1.38
+ L'Aiguillon-sur-Mer ,L AIGUILLON SUR MER,85460,85001,11,46.333333,-1.3,1.99
+ L'Aiguillon-sur-Vie ,L AIGUILLON SUR VIE,85220,85002,11,46.666667,-1.833333,1.76
+ Aizenay ,AIZENAY ,85190,85003,11,46.733333,-1.616667,1.12
+ Angles ,ANGLES ,85750,85004,11,46.4,-1.4,1.58
+ Antigny ,ANTIGNY ,85120,85005,11,46.616667,-0.766667,1.41
+ Apremont ,APREMONT ,85220,85006,11,46.75,-1.75,1.57
+ Aubigny ,AUBIGNY ,85430,85008,11,46.6,-1.45,1.1
+ Auzay ,AUZAY ,85200,85009,11,46.433333,-0.866667,1.38
+ Avrillé ,AVRILLE ,85440,85010,11,46.466667,-1.5,1.17
+ Barbâtre ,BARBATRE ,85630,85011,11,46.95,-2.183333,2.81
+ La Barre-de-Monts ,LA BARRE DE MONTS,85550,85012,11,46.883333,-2.133333,2.66
+ Bazoges-en-Paillers ,BAZOGES EN PAILLERS ,85130,85013,11,46.9,-1.133333,1.85
+ Bazoges-en-Pareds ,BAZOGES EN PAREDS ,85390,85014,11,46.65,-0.9,1.33
+ Beaulieu-sous-la-Roche ,BEAULIEU SOUS LA ROCHE,85190,85016,11,46.666667,-1.616667,1.12
+ Beaurepaire ,BEAUREPAIRE ,85500,85017,11,46.916667,-1.083333,1.6
+ Beauvoir-sur-Mer ,BEAUVOIR SUR MER ,85230,85018,11,46.916667,-2.05,2.41
+ Belleville-sur-Vie ,BELLEVILLE SUR VIE ,85170,85019,11,46.783333,-1.433333,0.78
+ Benet ,BENET ,85490,85020,11,46.366667,-0.6,1.91
+ La Bernardière ,LA BERNARDIERE ,85610,85021,11,47.05,-1.266667,2.42
+ Le Bernard ,LE BERNARD ,85560,85022,11,46.433333,-1.466667,1.38
+ Bessay ,BESSAY ,85320,85023,11,46.533333,-1.15,0.97
+ Bois-de-Cené ,BOIS DE CENE ,85710,85024,11,46.933333,-1.9,1.96
+ La Boissière-de-Montaigu ,LA BOISSIERE DE MONTAIGU,85600,85025,11,46.95,-1.183333,1.86
+ La Boissière-des-Landes ,LA BOISSIERE DES LANDES,85430,85026,11,46.566667,-1.466667,0.93
+ Boufféré ,BOUFFERE ,85600,85027,11,46.966667,-1.35,1.91
+ Bouillé-Courdault ,BOUILLE COURDAULT ,85420,85028,11,46.383333,-0.683333,1.68
+ Bouin ,BOUIN ,85230,85029,11,46.966667,-2,2.26
+ Boulogne ,BOULOGNE ,85140,85030,11,46.8,-1.316667,1.33
+ Le Boupère ,LE BOUPERE ,85510,85031,11,46.8,-0.916667,1
+ Bourneau ,BOURNEAU ,85200,85033,11,46.55,-0.816667,1.62
+ Bournezeau ,BOURNEZEAU ,85480,85034,11,46.633333,-1.166667,0.22
+ Brétignolles-sur-Mer ,BRETIGNOLLES SUR MER ,85470,85035,11,46.633333,-1.866667,1.86
+ La Bretonnière ,LA BRETONNIERE ,85320,85036,11,46.483333,-1.25,1.07
+ Breuil-Barret ,BREUIL BARRET ,85120,85037,11,46.65,-0.683333,1.66
+ Les Brouzils ,LES BROUZILS ,85260,85038,11,46.883333,-1.316667,1.39
+ La Bruffière ,LA BRUFFIERE ,85530,85039,11,47.016667,-1.2,2.21
+ Chaillé-les-Marais ,CHAILLE LES MARAIS ,85450,85042,11,46.383333,-1.016667,1.68
+ Chaix ,CHAIX ,85200,85044,11,46.433333,-0.866667,1.38
+ La Chaize-Giraud ,LA CHAIZE GIRAUD ,85220,85045,11,46.65,-1.833333,1.76
+ La Chaize-le-Vicomte ,LA CHAIZE LE VICOMTE,85310,85046,11,46.666667,-1.3,1.03
+ Challans ,CHALLANS ,85300,85047,11,46.85,-1.883333,1.91
+ Chambretaud ,CHAMBRETAUD ,85500,85048,11,46.916667,-0.966667,1.6
+ Champagné-les-Marais ,CHAMPAGNE LES MARAIS ,85450,85049,11,46.366667,-1.133333,1.79
+ Le Champ-Saint-Père ,LE CHAMP SAINT PERE,85540,85050,11,46.5,-1.35,0.97
+ Chantonnay ,CHANTONNAY ,85110,85051,11,46.683333,-1.05,0.78
+ La Chapelle-Achard ,LA CHAPELLE ACHARD ,85150,85052,11,46.583333,-1.65,1.22
+ La Chapelle-aux-Lys ,LA CHAPELLE AUX LYS,85120,85053,11,46.633333,-0.65,1.76
+ La Chapelle-Palluau ,LA CHAPELLE PALLUAU ,85670,85055,11,46.783333,-1.616667,1.12
+ La Chapelle-Thémer ,LA CHAPELLE THEMER ,85210,85056,11,46.566667,-0.933333,1.64
+ Chasnais ,CHASNAIS ,85400,85058,11,46.466667,-1.216667,1.17
+ La Châtaigneraie ,LA CHATAIGNERAIE ,85120,85059,11,46.65,-0.733333,1.51
+ Château-d'Olonne ,CHATEAU D OLONNE ,85180,85060,11,46.5,-1.733333,1.47
+ Château-Guibert ,CHATEAU GUIBERT ,85320,85061,11,46.583333,-1.233333,0.97
+ Châteauneuf ,CHATEAUNEUF ,85710,85062,11,46.916667,-1.916667,2.01
+ Chauché ,CHAUCHE ,85140,85064,11,46.816667,-1.266667,0.98
+ Chavagnes-en-Paillers ,CHAVAGNES EN PAILLERS ,85250,85065,11,46.9,-1.25,1.5
+ Chavagnes-les-Redoux ,CHAVAGNES LES REDOUX ,85390,85066,11,46.716667,-0.9,1.63
+ Cheffois ,CHEFFOIS ,85390,85067,11,46.666667,-0.783333,1.52
+ La Claye ,LA CLAYE ,85320,85068,11,46.483333,-1.266667,1.25
+ Les Clouzeaux ,LES CLOUZEAUX ,85430,85069,11,46.616667,-1.516667,1.1
+ Coëx ,COEX ,85220,85070,11,46.683333,-1.766667,1.57
+ Commequiers ,COMMEQUIERS ,85220,85071,11,46.766667,-1.85,1.81
+ La Copechagnière ,LA COPECHAGNIERE ,85260,85072,11,46.85,-1.35,1.19
+ Corpe ,CORPE ,85320,85073,11,46.5,-1.183333,0.97
+ La Couture ,LA COUTURE ,85320,85074,11,46.516667,-1.266667,1
+ Cugand ,CUGAND ,85610,85076,11,47.066667,-1.25,2.52
+ Curzon ,CURZON ,85540,85077,11,46.45,-1.3,1.46
+ Damvix ,DAMVIX ,85420,85078,11,46.316667,-0.733333,2.1
+ Dissais ,DISSAIS ,85320,85079,11,46.533333,-1.166667,0.76
+ Doix ,DOIX ,85200,85080,11,46.383333,-0.8,1.68
+ Dompierre-sur-Yon ,DOMPIERRE SUR YON ,85170,85081,11,46.733333,-1.366667,1.39
+ Les Épesses ,LES EPESSES ,85590,85082,11,46.883333,-0.9,1.39
+ L'Épine ,L EPINE ,85740,85083,11,46.983333,-2.275,-1
+ Les Essarts ,LES ESSARTS ,85140,85084,11,46.766667,-1.233333,0.67
+ Falleron ,FALLERON ,85670,85086,11,46.883333,-1.7,1.39
+ Faymoreau ,FAYMOREAU ,85240,85087,11,46.55,-0.633333,1.81
+ Le Fenouiller ,LE FENOUILLER ,85800,85088,11,46.716667,-1.916667,2.01
+ La Ferrière ,LA FERRIERE ,85280,85089,11,46.716667,-1.316667,0.37
+ La Flocellière ,LA FLOCELLIERE ,85700,85090,11,46.833333,-0.866667,1.22
+ Fontaines ,FONTAINES ,85200,85091,11,46.416667,-0.816667,1.48
+ Fontenay-le-Comte ,FONTENAY LE COMTE ,85200,85092,11,46.466667,-0.816667,1.26
+ Fougeré ,FOUGERE ,85480,85093,11,46.65,-1.233333,0.99
+ Froidfond ,FROIDFOND ,85300,85095,11,46.866667,-1.75,2.04
+ La Garnache ,LA GARNACHE ,85710,85096,11,46.883333,-1.833333,1.76
+ La Gaubretière ,LA GAUBRETIERE ,85130,85097,11,46.95,-1.066667,1.8
+ La Genétouze ,LA GENETOUZE ,85190,85098,11,46.733333,-1.516667,1.11
+ Le Girouard ,LE GIROUARD ,85150,85099,11,46.566667,-1.6,1.1
+ Givrand ,GIVRAND ,85800,85100,11,46.666667,-1.9,1.96
+ Le Givre ,LE GIVRE ,85540,85101,11,46.466667,-1.383333,1.17
+ Grand-Landes ,GRAND LANDES ,85670,85102,11,46.816667,-1.65,1.22
+ Grosbreuil ,GROSBREUIL ,85440,85103,11,46.533333,-1.616667,1.36
+ Grues ,GRUES ,85580,85104,11,46.383333,-1.3,1.68
+ Le Gué-de-Velluire ,LE GUE DE VELLUIRE,85770,85105,11,46.366667,-0.883333,1.79
+ La Guérinière ,LA GUERINIERE ,85680,85106,11,46.966667,-2.233333,-1
+ La Guyonnière ,LA GUYONNIERE ,85600,85107,11,46.966667,-1.25,1.91
+ L'Herbergement ,L HERBERGEMENT ,85260,85108,11,46.916667,-1.383333,1.6
+ Les Herbiers ,LES HERBIERS ,85500,85109,11,46.866667,-1.016667,1.29
+ L'Hermenault ,L HERMENAULT ,85570,85110,11,46.516667,-0.916667,0.97
+ L'Île-d'Elle ,L ILE D ELLE,85770,85111,11,46.333333,-0.95,1.99
+ L'Île-d'Olonne ,L ILE D OLONNE,85340,85112,11,46.566667,-1.783333,1.62
+ Jard-sur-Mer ,JARD SUR MER ,85520,85114,11,46.416667,-1.583333,1.48
+ La Jaudonnière ,LA JAUDONNIERE ,85110,85115,11,46.633333,-0.933333,1.47
+ La Jonchère ,LA JONCHERE ,85540,85116,11,46.433333,-1.366667,1.38
+ Lairoux ,LAIROUX ,85400,85117,11,46.45,-1.25,1.3
+ Landeronde ,LANDERONDE ,85150,85118,11,46.666667,-1.566667,1.51
+ Les Landes-Génusson ,LES LANDES GENUSSON ,85130,85119,11,46.966667,-1.116667,1.91
+ Landevieille ,LANDEVIEILLE ,85220,85120,11,46.633333,-1.816667,1.71
+ Le Langon ,LE LANGON ,85370,85121,11,46.433333,-0.95,1.38
+ Lesson ,LESSON ,85490,85122,11,46.383333,-0.566667,2.01
+ Liez ,LIEZ ,85420,85123,11,46.366667,-0.7,1.79
+ La Limouzinière ,LA LIMOUZINIERE ,85310,85124,11,46.633333,-1.283333,0.83
+ Loge-Fougereuse ,LOGE FOUGEREUSE ,85120,85125,11,46.616667,-0.7,1.61
+ Longèves ,LONGEVES ,85200,85126,11,46.483333,-0.858333,-1
+ Luçon ,LUCON ,85400,85128,11,46.45,-1.166667,1.27
+ Les Lucs-sur-Boulogne ,LES LUCS SUR BOULOGNE,85170,85129,11,46.833333,-1.5,1.35
+ Maché ,MACHE ,85190,85130,11,46.75,-1.683333,1.46
+ Maillezais ,MAILLEZAIS ,85420,85133,11,46.366667,-0.733333,1.79
+ Mallièvre ,MALLIEVRE ,85590,85134,11,46.916667,-0.866667,1.6
+ Marillet ,MARILLET ,85240,85136,11,46.566667,-0.65,1.76
+ Marsais-Sainte-Radégonde ,MARSAIS SAINTE RADEGONDE ,85570,85137,11,46.533333,-0.883333,1.35
+ Martinet ,MARTINET ,85150,85138,11,46.683333,-1.683333,1.32
+ Le Mazeau ,LE MAZEAU ,85420,85139,11,46.333333,-0.666667,1.99
+ La Meilleraie-Tillay ,LA MEILLERAIE TILLAY ,85700,85140,11,46.733333,-0.85,1.16
+ Menomblet ,MENOMBLET ,85700,85141,11,46.733333,-0.716667,1.56
+ La Merlatière ,LA MERLATIERE ,85140,85142,11,46.766667,-1.3,1.08
+ Mervent ,MERVENT ,85200,85143,11,46.533333,-0.75,1.73
+ Mesnard-la-Barotière ,MESNARD LA BAROTIERE ,85500,85144,11,46.866667,-1.1,1.29
+ Monsireigne ,MONSIREIGNE ,85110,85145,11,46.733333,-0.933333,1.07
+ Montaigu ,MONTAIGU ,85600,85146,11,46.983333,-1.316667,2.01
+ Montournais ,MONTOURNAIS ,85700,85147,11,46.75,-0.766667,1.41
+ Montreuil ,MONTREUIL ,85200,85148,11,46.4,-0.833333,1.58
+ Moreilles ,MOREILLES ,85450,85149,11,46.416667,-1.083333,1.48
+ Mortagne-sur-Sèvre ,MORTAGNE SUR SEVRE ,85290,85151,11,47,-0.95,2.11
+ La Mothe-Achard ,LA MOTHE ACHARD ,85150,85152,11,46.616667,-1.666667,1.27
+ Mouchamps ,MOUCHAMPS ,85640,85153,11,46.783333,-1.066667,0.78
+ Mouilleron-en-Pareds ,MOUILLERON EN PAREDS ,85390,85154,11,46.666667,-0.85,1.16
+ Mouilleron-le-Captif ,MOUILLERON LE CAPTIF ,85000,85155,11,46.716667,-1.45,1
+ Moutiers-sur-le-Lay ,MOUTIERS SUR LE LAY,85320,85157,11,46.55,-1.15,1.02
+ Nalliers ,NALLIERS ,85370,85159,11,46.466667,-1.033333,1.17
+ Nesmy ,NESMY ,85310,85160,11,46.583333,-1.4,1.51
+ Nieul-le-Dolent ,NIEUL LE DOLENT ,85430,85161,11,46.583333,-1.516667,0.87
+ Nieul-sur-l'Autise ,NIEUL SUR L AUTISE,85240,85162,11,46.433333,-0.683333,1.66
+ Noirmoutier-en-l'Île ,NOIRMOUTIER EN L ILE,85330,85163,11,47.008333,-2.225,-1
+ Notre-Dame-de-Monts ,NOTRE DAME DE MONTS,85690,85164,11,46.833333,-2.15,2.71
+ L'Oie ,L OIE ,85140,85165,11,46.8,-1.133333,1.36
+ Olonne-sur-Mer ,OLONNE SUR MER ,85340,85166,11,46.533333,-1.783333,1.62
+ L'Orbrie ,L ORBRIE ,85200,85167,11,46.483333,-0.783333,1.36
+ Oulmes ,OULMES ,85420,85168,11,46.4,-0.666667,1.71
+ Palluau ,PALLUAU ,85670,85169,11,46.8,-1.616667,1.12
+ Péault ,PEAULT ,85320,85171,11,46.5,-1.216667,0.97
+ Le Perrier ,LE PERRIER ,85300,85172,11,46.816667,-2,2.26
+ Pétosse ,PETOSSE ,85570,85174,11,46.483333,-0.916667,1.42
+ Les Pineaux ,LES PINEAUX ,85320,85175,11,46.583333,-1.183333,0.97
+ Pissotte ,PISSOTTE ,85200,85176,11,46.483333,-0.8,1.31
+ Le Poiré-sur-Velluire ,LE POIRE SUR VELLUIRE,85770,85177,11,46.4,-0.9,1.58
+ Le Poiré-sur-Vie ,LE POIRE SUR VIE,85170,85178,11,46.766667,-1.516667,1.46
+ La Pommeraie-sur-Sèvre ,LA POMMERAIE SUR SEVRE,85700,85180,11,46.833333,-0.766667,1.41
+ Pouillé ,POUILLE ,85570,85181,11,46.516667,-0.95,1.27
+ Pouzauges ,POUZAUGES ,85700,85182,11,46.783333,-0.833333,1.21
+ Puy-de-Serre ,PUY DE SERRE ,85240,85184,11,46.566667,-0.666667,1.71
+ Puyravault ,PUYRAVAULT ,85450,85185,11,46.366667,-1.083333,1.79
+ La Rabatelière ,LA RABATELIERE ,85250,85186,11,46.866667,-1.25,1.29
+ Réaumur ,REAUMUR ,85700,85187,11,46.716667,-0.8,1.31
+ La Réorthe ,LA REORTHE ,85210,85188,11,46.6,-1.05,1.17
+ Notre-Dame-de-Riez ,NOTRE DAME DE RIEZ,85270,85189,11,46.75,-1.916667,2.01
+ Rocheservière ,ROCHESERVIERE ,85620,85190,11,46.933333,-1.516667,1.7
+ La Roche-sur-Yon ,LA ROCHE SUR YON,85000,85191,11,46.666667,-1.433333,1
+ Rochetrejoux ,ROCHETREJOUX ,85510,85192,11,46.8,-0.983333,1
+ Rosnay ,ROSNAY ,85320,85193,11,46.533333,-1.3,1.52
+ Les Sables-d'Olonne ,LES SABLES D OLONNE,85180,85194,11,46.5,-1.783333,1.62
+ Saint-André-Goule-d'Oie ,SAINT ANDRE GOULE D,85250,85196,11,46.833333,-1.2,1.09
+ Saint-André-Treize-Voies ,SAINT ANDRE TREIZE VOIES,85260,85197,11,46.933333,-1.416667,1.7
+ Saint-Aubin-des-Ormeaux ,SAINT AUBIN DES ORMEAUX,85130,85198,11,46.983333,-1.05,2.01
+ Saint-Aubin-la-Plaine ,SAINT AUBIN LA PLAINE,85210,85199,11,46.516667,-1.05,0.86
+ Saint-Avaugourd-des-Landes ,SAINT AVAUGOURD DES LANDES,85540,85200,11,46.5134,-1.48501,-1
+ Saint-Benoist-sur-Mer ,SAINT BENOIST SUR MER,85540,85201,11,46.416667,-1.35,1.48
+ Sainte-Cécile ,SAINTE CECILE ,85110,85202,11,46.75,-1.116667,1.78
+ Sainte-Christine ,SAINTE CHRISTINE ,85490,85203,11,46.366667,-0.6,-1
+ Saint-Christophe-du-Ligneron ,SAINT CHRISTOPHE DU LIGNERON,85670,85204,11,46.833333,-1.766667,1.98
+ Saint-Cyr-des-Gâts ,SAINT CYR DES GATS,85410,85205,11,46.566667,-0.85,1.16
+ Saint-Cyr-en-Talmondais ,SAINT CYR EN TALMONDAIS,85540,85206,11,46.45,-1.333333,1.27
+ Saint-Denis-du-Payré ,SAINT DENIS DU PAYRE,85580,85207,11,46.416667,-1.266667,1.48
+ Saint-Denis-la-Chevasse ,SAINT DENIS LA CHEVASSE,85170,85208,11,46.816667,-1.35,1.4
+ Saint-Étienne-de-Brillouet ,SAINT ETIENNE DE BRILLOUET,85210,85209,11,46.516667,-0.983333,0.86
+ Saint-Étienne-du-Bois ,SAINT ETIENNE DU BOIS,85670,85210,11,46.833333,-1.6,1.12
+ Sainte-Flaive-des-Loups ,SAINTE FLAIVE DES LOUPS,85150,85211,11,46.616667,-1.583333,1.03
+ Sainte-Florence ,SAINTE FLORENCE ,85140,85212,11,46.8,-1.15,1.13
+ Saint-Florent-des-Bois ,SAINT FLORENT DES BOIS,85310,85213,11,46.583333,-1.316667,0.63
+ Sainte-Foy ,SAINTE FOY ,85150,85214,11,46.55,-1.666667,1.27
+ Saint-Fulgent ,SAINT FULGENT ,85250,85215,11,46.85,-1.183333,1.19
+ Sainte-Gemme-la-Plaine ,SAINTE GEMME LA PLAINE,85400,85216,11,46.483333,-1.1,1.65
+ Saint-Georges-de-Montaigu ,SAINT GEORGES DE MONTAIGU,85600,85217,11,46.95,-1.3,1.8
+ Saint-Georges-de-Pointindoux ,SAINT GEORGES DE POINTINDOUX,85150,85218,11,46.65,-1.616667,1.12
+ Saint-Germain-l'Aiguiller ,SAINT GERMAIN L AIGUILLER,85390,85219,11,46.683333,-0.833333,1.21
+ Saint-Germain-de-Prinçay ,SAINT GERMAIN DE PRINCAY,85110,85220,11,46.716667,-1,0.72
+ Saint-Gervais ,SAINT GERVAIS ,85230,85221,11,46.9,-2.016667,2.31
+ Sainte-Hermine ,SAINTE HERMINE ,85210,85223,11,46.55,-1.05,0.66
+ Saint-Hilaire-de-Loulay ,SAINT HILAIRE DE LOULAY,85600,85224,11,47,-1.333333,2.11
+ Saint-Hilaire-de-Riez ,SAINT HILAIRE DE RIEZ,85270,85226,11,46.716667,-1.95,2.11
+ Saint-Hilaire-des-Loges ,SAINT HILAIRE DES LOGES,85240,85227,11,46.466667,-0.666667,1.71
+ Saint-Hilaire-de-Talmont ,SAINT HILAIRE DE TALMONT,85440,85228,11,46.466667,-1.6,1.17
+ Saint-Hilaire-de-Voust ,SAINT HILAIRE DE VOUST,85120,85229,11,46.6,-0.666667,1.71
+ Saint-Hilaire-du-Bois ,SAINT HILAIRE DU BOIS,85410,85230,11,46.633333,-0.916667,1.29
+ Saint-Hilaire-la-Forêt ,SAINT HILAIRE LA FORET,85440,85231,11,46.45,-1.516667,1.27
+ Saint-Hilaire-le-Vouhis ,SAINT HILAIRE LE VOUHIS,85480,85232,11,46.683333,-1.133333,1.02
+ Saint-Jean-de-Beugné ,SAINT JEAN DE BEUGNE,85210,85233,11,46.516667,-1.083333,1.31
+ Saint-Jean-de-Monts ,SAINT JEAN DE MONTS,85160,85234,11,46.783333,-2.066667,2.46
+ Saint-Julien-des-Landes ,SAINT JULIEN DES LANDES,85150,85236,11,46.633333,-1.716667,1.42
+ Saint-Laurent-de-la-Salle ,SAINT LAURENT DE LA,85410,85237,11,46.566667,-0.916667,1.19
+ Saint-Laurent-sur-Sèvre ,SAINT LAURENT SUR SEVRE,85290,85238,11,46.95,-0.883333,1.8
+ Saint-Maixent-sur-Vie ,SAINT MAIXENT SUR VIE,85220,85239,11,46.733333,-1.833333,1.76
+ Saint-Malo-du-Bois ,SAINT MALO DU BOIS,85590,85240,11,46.933333,-0.9,1.7
+ Saint-Mars-la-Réorthe ,SAINT MARS LA REORTHE,85590,85242,11,46.866667,-0.933333,1.58
+ Saint-Martin-de-Fraigneau ,SAINT MARTIN DE FRAIGNEAU,85200,85244,11,46.433333,-0.75,1.46
+ Saint-Martin-des-Fontaines ,SAINT MARTIN DES FONTAINES,85570,85245,11,46.541667,-0.9,-1
+ Saint-Martin-des-Noyers ,SAINT MARTIN DES NOYERS,85140,85246,11,46.716667,-1.183333,1.11
+ Saint-Martin-des-Tilleuls ,SAINT MARTIN DES TILLEULS,85130,85247,11,46.983333,-1.05,2.01
+ Saint-Maurice-des-Noues ,SAINT MAURICE DES NOUES,85120,85251,11,46.6,-0.7,1.61
+ Saint-Maurice-le-Girard ,SAINT MAURICE LE GIRARD,85390,85252,11,46.633333,-0.8,1.43
+ Saint-Médard-des-Prés ,SAINT MEDARD DES PRES,85200,85253,11,46.45,-0.816667,1.27
+ Saint-Mesmin ,SAINT MESMIN ,85700,85254,11,46.8,-0.733333,1.51
+ Saint-Michel-en-l'Herm ,SAINT MICHEL EN L,85580,85255,11,46.35,-1.25,1.89
+ Saint-Michel-le-Cloucq ,SAINT MICHEL LE CLOUCQ,85200,85256,11,46.483333,-0.75,1.46
+ Saint-Michel-Mont-Mercure ,SAINT MICHEL MONT MERCURE,85700,85257,11,46.833333,-0.883333,1.41
+ Saint-Nicolas-de-Brem ,SAINT NICOLAS DE BREM,85470,85258,11,46.6,-1.833333,1.76
+ Saint-Paul-en-Pareds ,SAINT PAUL EN PAREDS,85500,85259,11,46.816667,-1,1.15
+ Saint-Paul-Mont-Penit ,SAINT PAUL MONT PENIT,85670,85260,11,46.8,-1.666667,1.27
+ Sainte-Péxine ,SAINTE PEXINE ,85320,85261,11,46.566667,-1.133333,1.38
+ Saint-Philbert-de-Bouaine ,SAINT PHILBERT DE BOUAINE,85660,85262,11,46.983333,-1.516667,2.01
+ Saint-Philbert-du-Pont-Charrault ,SAINT PHILBERT DU PONT,85110,85263,11,46.65,-0.966667,0.98
+ Saint-Pierre-du-Chemin ,SAINT PIERRE DU CHEMIN,85120,85264,11,46.683333,-0.7,1.61
+ Saint-Pierre-le-Vieux ,SAINT PIERRE LE VIEUX,85420,85265,11,46.383333,-0.75,1.68
+ Saint-Prouant ,SAINT PROUANT ,85110,85266,11,46.766667,-0.966667,1
+ Sainte-Radégonde-des-Noyers ,SAINTE RADEGONDE DES NOYERS,85450,85267,11,46.366667,-1.05,1.79
+ Saint-Révérend ,SAINT REVEREND ,85220,85268,11,46.7,-1.833333,1.76
+ Saint-Sornin ,SAINT SORNIN ,85540,85270,11,46.483333,-1.366667,1.07
+ Saint-Sulpice-en-Pareds ,SAINT SULPICE EN PAREDS,85410,85271,11,46.6,-0.833333,1.21
+ Saint-Sulpice-le-Verdon ,SAINT SULPICE LE VERDON,85260,85272,11,46.9,-1.416667,1.5
+ Saint-Urbain ,SAINT URBAIN ,85230,85273,11,46.866667,-2.016667,2.31
+ Saint-Valérien ,SAINT VALERIEN ,85570,85274,11,46.533333,-0.933333,0.92
+ Saint-Vincent-Puymaufrais ,SAINT VINCENT PUYMAUFRAIS ,85480,85275,11,46.583333,-1.083333,1.64
+ Saint-Vincent-Sterlanges ,SAINT VINCENT STERLANGES ,85110,85276,11,46.733333,-1.083333,1.25
+ Saint-Vincent-sur-Graon ,SAINT VINCENT SUR GRAON,85540,85277,11,46.516667,-1.383333,0.99
+ Saint-Vincent-sur-Jard ,SAINT VINCENT SUR JARD,85520,85278,11,46.416667,-1.55,1.48
+ Saligny ,SALIGNY ,85170,85279,11,46.8,-1.416667,0.88
+ Sallertaine ,SALLERTAINE ,85300,85280,11,46.85,-1.966667,2.16
+ Sérigné ,SERIGNE ,85200,85281,11,46.5,-0.85,1.16
+ Sigournais ,SIGOURNAIS ,85110,85282,11,46.7,-0.966667,0.82
+ Soullans ,SOULLANS ,85300,85284,11,46.8,-1.916667,2.01
+ La Taillée ,LA TAILLEE ,85450,85286,11,46.383333,-0.933333,1.68
+ Tallud-Sainte-Gemme ,TALLUD SAINTE GEMME ,85390,85287,11,46.683333,-0.866667,1.12
+ La Tardière ,LA TARDIERE ,85120,85289,11,46.666667,-0.733333,1.51
+ Thiré ,THIRE ,85210,85290,11,46.55,-0.983333,0.77
+ Thorigny ,THORIGNY ,85480,85291,11,46.616667,-1.25,1.25
+ Thouarsais-Bouildroux ,THOUARSAIS BOUILDROUX ,85410,85292,11,46.616667,-0.866667,1.12
+ Tiffauges ,TIFFAUGES ,85130,85293,11,47.016667,-1.1,2.21
+ La Tranche-sur-Mer ,LA TRANCHE SUR MER,85360,85294,11,46.333333,-1.433333,1.99
+ Treize-Septiers ,TREIZE SEPTIERS ,85600,85295,11,46.983333,-1.233333,2.01
+ Treize-Vents ,TREIZE VENTS ,85590,85296,11,46.916667,-0.85,1.6
+ Triaize ,TRIAIZE ,85580,85297,11,46.383333,-1.2,1.68
+ Vairé ,VAIRE ,85150,85298,11,46.6,-1.75,1.57
+ Velluire ,VELLUIRE ,85770,85299,11,46.4,-0.9,1.58
+ Venansault ,VENANSAULT ,85190,85300,11,46.683333,-1.516667,1.16
+ Vendrennes ,VENDRENNES ,85250,85301,11,46.816667,-1.116667,1.83
+ La Verrie ,LA VERRIE ,85130,85302,11,46.966667,-1,1.91
+ Vix ,VIX ,85770,85303,11,46.366667,-0.866667,1.79
+ Vouillé-les-Marais ,VOUILLE LES MARAIS ,85450,85304,11,46.383333,-0.95,1.68
+ Vouvant ,VOUVANT ,85120,85305,11,46.566667,-0.783333,1.97
+ Xanton-Chassenon ,XANTON CHASSENON ,85240,85306,11,46.45,-0.7,1.61
+ La Faute-sur-Mer ,LA FAUTE SUR MER,85460,85307,11,46.316667,-1.316667,2.1
+ Fromentine ,FROMENTINE ,85550,85900,11,46.9,-2.15,2.71
+ Port-Joinville ,PORT JOINVILLE ,85350,85901,11,46.725,-2.35,-1
+ Sion-sur-l'Océan ,SION SUR L OCEAN,85270,85904,11,46.716667,-1.983333,2.21
+ Adriers ,ADRIERS ,86430,86001,11,46.25,0.8,1.74
+ Amberre ,AMBERRE ,86110,86002,11,46.783333,0.15,1.08
+ Anché ,ANCHE ,86700,86003,11,46.35,0.266667,1.31
+ Angles-sur-l'Anglin ,ANGLES SUR L ANGLIN,86260,86004,11,46.7,0.883333,2.1
+ Antigny ,ANTIGNY ,86310,86006,11,46.533333,0.85,1.95
+ Antran ,ANTRAN ,86100,86007,11,46.85,0.533333,1.53
+ Arçay ,ARCAY ,86200,86008,11,46.966667,0.016667,1.65
+ Archigny ,ARCHIGNY ,86210,86009,11,46.666667,0.65,1.33
+ Aslonnes ,ASLONNES ,86340,86010,11,46.4,0.333333,1.68
+ Asnières-sur-Blour ,ASNIERES SUR BLOUR ,86430,86011,11,46.166667,0.8,2.05
+ Asnois ,ASNOIS ,86250,86012,11,46.116667,0.416667,2.28
+ Aulnay ,AULNAY ,86330,86013,11,46.908333,0.091667,-1
+ Availles-Limouzine ,AVAILLES LIMOUZINE ,86460,86015,11,46.116667,0.65,2.28
+ Avanton ,AVANTON ,86170,86016,11,46.666667,0.316667,2.03
+ Ayron ,AYRON ,86190,86017,11,46.666667,0.066667,1.44
+ Basses ,BASSES ,86200,86018,11,47.033333,0.116667,1.92
+ Beaumont ,BEAUMONT ,86490,86019,11,46.733333,0.433333,0.73
+ Bellefonds ,BELLEFONDS ,86210,86020,11,46.633333,0.583333,0.92
+ Benassay ,BENASSAY ,86470,86021,11,46.566667,0.05,1.51
+ Berrie ,BERRIE ,86120,86022,11,47.066667,-0.066667,2.08
+ Berthegon ,BERTHEGON ,86420,86023,11,46.9,0.266667,1.31
+ Béruges ,BERUGES ,86190,86024,11,46.566667,0.2,1.81
+ Béthines ,BETHINES ,86310,86025,11,46.55,0.983333,2.53
+ Beuxes ,BEUXES ,86120,86026,11,47.083333,0.183333,2.31
+ Biard ,BIARD ,86000,86027,11,46.566667,0.3,1
+ Bignoux ,BIGNOUX ,86800,86028,11,46.6,0.466667,1.33
+ Blanzay ,BLANZAY ,86400,86029,11,46.2,0.25,1.9
+ Blaslay ,BLASLAY ,86170,86030,11,46.75,0.25,1.22
+ Bonnes ,BONNES ,86300,86031,11,46.6,0.6,1.11
+ Bonneuil-Matours ,BONNEUIL MATOURS ,86210,86032,11,46.683333,0.55,0.65
+ Le Bouchet ,LE BOUCHET ,86200,86033,11,46.9594,0.1569,-1
+ Bouresse ,BOURESSE ,86410,86034,11,46.366667,0.616667,1.65
+ Bourg-Archambault ,BOURG ARCHAMBAULT ,86390,86035,11,46.383333,1,2.6
+ Bournand ,BOURNAND ,86120,86036,11,47.083333,0.066667,2.15
+ Brigueil-le-Chantre ,BRIGUEIL LE CHANTRE ,86290,86037,11,46.4,1.083333,2.96
+ Brion ,BRION ,86160,86038,11,46.35,0.466667,1.54
+ Brux ,BRUX ,86510,86039,11,46.233333,0.2,1.75
+ La Bussière ,LA BUSSIERE ,86310,86040,11,46.616667,0.816667,1.81
+ Buxerolles ,BUXEROLLES ,86180,86041,11,46.616667,0.483333,0.37
+ Buxeuil ,BUXEUIL ,37160,86042,11,46.966667,0.666667,1.62
+ Céaux-en-Couhé ,CEAUX EN COUHE ,86700,86043,11,46.316667,0.233333,1.36
+ Ceaux-en-Loudun ,CEAUX EN LOUDUN ,86200,86044,11,47.016667,0.233333,1.85
+ Celle-Lévescault ,CELLE LEVESCAULT ,86600,86045,11,46.433333,0.183333,1.14
+ Cenon-sur-Vienne ,CENON SUR VIENNE ,86530,86046,11,46.766667,0.533333,1
+ Cernay ,CERNAY ,86140,86047,11,46.833333,0.3,1.01
+ Chabournay ,CHABOURNAY ,86380,86048,11,46.716667,0.266667,1.32
+ Chalandray ,CHALANDRAY ,86190,86050,11,46.666667, ,1.86
+ Champagné-le-Sec ,CHAMPAGNE LE SEC ,86510,86051,11,46.183333,0.2,1.97
+ Champagné-Saint-Hilaire ,CHAMPAGNE SAINT HILAIRE ,86160,86052,11,46.316667,0.333333,1.36
+ Champigny-le-Sec ,CHAMPIGNY LE SEC ,86170,86053,11,46.716667,0.15,1.08
+ La-Chapelle-Bâton ,LA CHAPELLE BATON ,86250,86055,11,46.183333,0.4,1.97
+ Chapelle-Morthemer ,CHAPELLE MORTHEMER ,86300,86057,11,46.483333,0.6,1.2
+ La Chapelle-Moulière ,LA CHAPELLE MOULIERE ,86210,86058,11,46.65,0.566667,0.73
+ Charrais ,CHARRAIS ,86170,86060,11,46.7,0.183333,0.93
+ Charroux ,CHARROUX ,86250,86061,11,46.15,0.4,2.13
+ Chasseneuil-du-Poitou ,CHASSENEUIL DU POITOU ,86360,86062,11,46.65,0.366667,1
+ Chatain ,CHATAIN ,86250,86063,11,46.066667,0.433333,2.51
+ Château-Garnier ,CHATEAU GARNIER ,86350,86064,11,46.266667,0.416667,1.59
+ Château-Larcher ,CHATEAU LARCHER ,86370,86065,11,46.416667,0.316667,1.68
+ Châtellerault ,CHATELLERAULT ,86100,86066,11,46.8,0.533333,1
+ Châtillon ,CHATILLON ,86700,86067,11,46.316667,0.2,1.36
+ Chaunay ,CHAUNAY ,86510,86068,11,46.2,0.166667,1.9
+ La Chaussée ,LA CHAUSSEE ,86330,86069,11,46.883333,0.116667,1.43
+ Chauvigny ,CHAUVIGNY ,86300,86070,11,46.566667,0.65,1.09
+ Chéneché ,CHENECHE ,86380,86071,11,46.733333,0.283333,0.87
+ Chenevelles ,CHENEVELLES ,86450,86072,11,46.716667,0.616667,1.49
+ Cherves ,CHERVES ,86170,86073,11,46.716667,0.016667,1.88
+ Chiré-en-Montreuil ,CHIRE EN MONTREUIL ,86190,86074,11,46.65,0.133333,1.15
+ Chouppes ,CHOUPPES ,86110,86075,11,46.816667,0.166667,1
+ Cissé ,CISSE ,86170,86076,11,46.65,0.25,1.34
+ Civaux ,CIVAUX ,86320,86077,11,46.45,0.666667,1.55
+ Civray ,CIVRAY ,86400,86078,11,46.15,0.3,2.13
+ Cloué ,CLOUE ,86600,86080,11,46.433333,0.166667,1
+ Colombiers ,COLOMBIERS ,86490,86081,11,46.766667,0.433333,1.35
+ Couhé ,COUHE ,86700,86082,11,46.3,0.183333,1.44
+ Coulombiers ,COULOMBIERS ,86600,86083,11,46.483333,0.183333,1.21
+ Coussay ,COUSSAY ,86110,86085,11,46.833333,0.2,1.21
+ Coussay-les-Bois ,COUSSAY LES BOIS ,86270,86086,11,46.8,0.75,1.52
+ Craon ,CRAON ,86110,86087,11,46.783333,0.033333,1.94
+ Croutelle ,CROUTELLE ,86240,86088,11,46.533333,0.283333,0.9
+ Cuhon ,CUHON ,86110,86089,11,46.766667,0.1,1.29
+ Curzay-sur-Vonne ,CURZAY SUR VONNE ,86600,86091,11,46.483333,0.05,1.51
+ Dienné ,DIENNE ,86410,86094,11,46.45,0.55,1.32
+ Dissay ,DISSAY ,86130,86095,11,46.7,0.433333,0.63
+ Doussay ,DOUSSAY ,86140,86096,11,46.833333,0.266667,1.25
+ La Ferrière-Airoux ,LA FERRIERE AIROUX ,86160,86097,11,46.316667,0.4,1.36
+Fleix, ,86300,86098,11,46.55,0.75,1.52
+ Fleuré ,FLEURE ,86340,86099,11,46.483333,0.516667,1.61
+ Fontaine-le-Comte ,FONTAINE LE COMTE ,86240,86100,11,46.533333,0.266667,1.32
+ Frontenay-sur-Dive ,FRONTENAY SUR DIVE ,86330,86101,11,46.85,0.05,1.51
+ Frozes ,FROZES ,86190,86102,11,46.666667,0.15,1.08
+ Gizay ,GIZAY ,86340,86105,11,46.433333,0.416667,0.83
+ Glénouze ,GLENOUZE ,86200,86106,11,47,-0.016667,1.8
+ Gouex ,GOUEX ,86320,86107,11,46.366667,0.683333,1.23
+ La Grimaudière ,LA GRIMAUDIERE ,86330,86108,11,46.8,0.016667,1.65
+ Guesnes ,GUESNES ,86420,86109,11,46.916667,0.166667,1.39
+ Haims ,HAIMS ,86310,86110,11,46.5,0.916667,2.24
+ Ingrandes ,INGRANDES ,86220,86111,11,46.866667,0.566667,1.16
+ L'Isle-Jourdain ,L ISLE JOURDAIN ,86150,86112,11,46.233333,0.683333,1.75
+ Iteuil ,ITEUIL ,86240,86113,11,46.483333,0.316667,0.97
+ Jardres ,JARDRES ,86800,86114,11,46.566667,0.566667,0.84
+ Jaunay-Clan ,JAUNAY CLAN ,86130,86115,11,46.683333,0.366667,1.31
+ Jazeneuil ,JAZENEUIL ,86600,86116,11,46.466667,0.066667,1.44
+ Jouhet ,JOUHET ,86500,86117,11,46.483333,0.833333,1.88
+ Journet ,JOURNET ,86290,86118,11,46.466667,0.966667,2.46
+ Joussé ,JOUSSE ,86350,86119,11,46.233333,0.466667,1.75
+ Latillé ,LATILLE ,86190,86121,11,46.616667,0.066667,1.44
+ Lauthiers ,LAUTHIERS ,86300,86122,11,46.6,0.733333,1.45
+ Lavausseau ,LAVAUSSEAU ,86470,86123,11,46.55,0.083333,1.37
+ Lavoux ,LAVOUX ,86800,86124,11,46.6,0.533333,0.72
+ Leigné-les-Bois ,LEIGNE LES BOIS ,86450,86125,11,46.75,0.7,1.3
+ Leignes-sur-Fontaine ,LEIGNES SUR FONTAINE ,86300,86126,11,46.5,0.783333,1.66
+ Leigné-sur-Usseau ,LEIGNE SUR USSEAU ,86230,86127,11,46.916667,0.466667,1.39
+ Lencloître ,LENCLOITRE ,86140,86128,11,46.816667,0.333333,0.93
+ Lésigny ,LESIGNY ,86270,86129,11,46.85,0.766667,1.59
+ Leugny ,LEUGNY ,86220,86130,11,46.916667,0.7,1.39
+ Lhommaizé ,LHOMMAIZE ,86410,86131,11,46.433333,0.583333,0.83
+ Liglet ,LIGLET ,86290,86132,11,46.516667,1.083333,2.96
+ Ligugé ,LIGUGE ,86240,86133,11,46.516667,0.333333,0.67
+ Linazay ,LINAZAY ,86400,86134,11,46.166667,0.183333,2.05
+ Liniers ,LINIERS ,86800,86135,11,46.616667,0.533333,1.04
+ Lizant ,LIZANT ,86400,86136,11,46.083333,0.283333,2.43
+ Loudun ,LOUDUN ,86200,86137,11,47,0.066667,1.77
+ Luchapt ,LUCHAPT ,86430,86138,11,46.016667,0.783333,2.74
+ Lusignan ,LUSIGNAN ,86600,86139,11,46.433333,0.116667,1.22
+ Lussac-les-Châteaux ,LUSSAC LES CHATEAUX ,86320,86140,11,46.4,0.716667,1.38
+ Magné ,MAGNE ,86160,86141,11,46.35,0.4,1.21
+ Maillé ,MAILLE ,86190,86142,11,46.7,0.1,1.29
+ Mairé ,MAIRE ,86270,86143,11,46.85,0.75,1.52
+ Maisonneuve ,MAISONNEUVE ,86170,86144,11,46.733333,0.083333,1.37
+ Marçay ,MARCAY ,86370,86145,11,46.466667,0.216667,1.38
+ Marigny-Brizay ,MARIGNY BRIZAY ,86380,86146,11,46.733333,0.383333,1.3
+ Marigny-Chemereau ,MARIGNY CHEMEREAU ,86370,86147,11,46.433333,0.233333,0.83
+ Marnay ,MARNAY ,86160,86148,11,46.4,0.35,1.38
+ Martaizé ,MARTAIZE ,86330,86149,11,46.916667,0.066667,1.44
+ Massognes ,MASSOGNES ,86170,86150,11,46.75,0.083333,1.37
+ Maulay ,MAULAY ,86200,86151,11,46.983333,0.216667,1.69
+ Mauprévoir ,MAUPREVOIR ,86460,86152,11,46.166667,0.516667,2.05
+ Mazerolles ,MAZEROLLES ,86320,86153,11,46.4,0.683333,-1
+ Mazeuil ,MAZEUIL ,86110,86154,11,46.783333,0.1,1.29
+ Messais ,MESSAIS ,86330,86155,11,46.866667,0.016667,1.65
+ Messemé ,MESSEME ,86200,86156,11,47.016667,0.166667,1.85
+ Mignaloux-Beauvoir ,MIGNALOUX BEAUVOIR ,86550,86157,11,46.55,0.416667,0.29
+ Migné-Auxances ,MIGNE AUXANCES ,86440,86158,11,46.633333,0.316667,0.36
+ Millac ,MILLAC ,86150,86159,11,46.183333,0.683333,1.97
+ Mirebeau ,MIREBEAU ,86110,86160,11,46.783333,0.183333,0.93
+ Moncontour ,MONCONTOUR ,86330,86161,11,46.883333,-0.016667,1.8
+ Mondion ,MONDION ,86230,86162,11,46.933333,0.483333,1.46
+ Montamisé ,MONTAMISE ,86360,86163,11,46.616667,0.433333,1
+ Monthoiron ,MONTHOIRON ,86210,86164,11,46.733333,0.616667,1.22
+ Montmorillon ,MONTMORILLON ,86500,86165,11,46.433333,0.866667,2.02
+ Montreuil-Bonnin ,MONTREUIL BONNIN ,86470,86166,11,46.55,0.15,1.47
+ Monts-sur-Guesnes ,MONTS SUR GUESNES ,86420,86167,11,46.916667,0.216667,1.39
+ Morthemer ,MORTHEMER ,86300,86168,11,46.466667,0.616667,1.21
+ Morton ,MORTON ,86120,86169,11,47.116667,-0.016667,2.31
+ Moulismes ,MOULISMES ,86500,86170,11,46.333333,0.816667,1.81
+ Mouterre-sur-Blourde ,MOUTERRE SUR BLOURDE ,86430,86172,11,46.2,0.75,1.9
+ Mouterre-Silly ,MOUTERRE SILLY ,86200,86173,11,46.983333,0.066667,1.69
+ Naintré ,NAINTRE ,86530,86174,11,46.766667,0.483333,1
+ Nalliers ,NALLIERS ,86310,86175,11,46.6,0.866667,2.02
+ Nérignac ,NERIGNAC ,86150,86176,11,46.3,0.733333,1.45
+ Nieuil-l'Espoir ,NIEUIL L ESPOIR ,86340,86178,11,46.483333,0.45,0.62
+ Notre-Dame-d'Or ,NOTRE DAME D OR,86330,86179,11,46.816667,0.033333,1.58
+ Nouaillé-Maupertuis ,NOUAILLE MAUPERTUIS ,86340,86180,11,46.516667,0.416667,0.9
+ Nueil-sous-Faye ,NUEIL SOUS FAYE ,86200,86181,11,46.966667,0.266667,1.62
+ Orches ,ORCHES ,86230,86182,11,46.883333,0.316667,1.53
+ Les Ormes ,LES ORMES ,86220,86183,11,46.966667,0.6,1.62
+ Ouzilly ,OUZILLY ,86380,86184,11,46.783333,0.366667,1.32
+ Oyré ,OYRE ,86220,86186,11,46.866667,0.633333,1.16
+ Paizay-le-Sec ,PAIZAY LE SEC ,86300,86187,11,46.583333,0.783333,1.66
+ Payré ,PAYRE ,86700,86188,11,46.333333,0.2,1.29
+ Payroux ,PAYROUX ,86350,86189,11,46.216667,0.483333,1.82
+ Persac ,PERSAC ,86320,86190,11,46.35,0.7,1.3
+ Pindray ,PINDRAY ,86500,86191,11,46.483333,0.816667,1.81
+ Plaisance ,PLAISANCE ,86500,86192,11,46.333333,0.866667,2.02
+ Pleumartin ,PLEUMARTIN ,86450,86193,11,46.75,0.733333,1.45
+ Poitiers ,POITIERS ,86000,86194,11,46.583333,0.333333,1
+ Port-de-Piles ,PORT DE PILES ,86220,86195,11,47,0.6,1.77
+ Pouançay ,POUANCAY ,86120,86196,11,47.083333,-0.083333,2.15
+ Pouant ,POUANT ,86200,86197,11,47,0.266667,1.77
+ Pouillé ,POUILLE ,86800,86198,11,46.533333,0.583333,1.33
+ Pressac ,PRESSAC ,86460,86200,11,46.116667,0.566667,2.28
+ Prinçay ,PRINCAY ,86420,86201,11,46.933333,0.25,1.46
+ La Puye ,LA PUYE ,86260,86202,11,46.65,0.75,1.93
+ Queaux ,QUEAUX ,86150,86203,11,46.333333,0.666667,1.39
+ Ranton ,RANTON ,86200,86205,11,47,-0.033333,1.87
+ La Roche-Posay ,LA ROCHE POSAY ,86270,86207,11,46.783333,0.816667,1.81
+ Le Rochereau ,LE ROCHEREAU ,86170,86208,11,46.716667,0.166667,1
+ Roches-Prémarie-Andillé ,ROCHES PREMARIE ANDILLE ,86340,86209,11,46.466667,0.366667,0.84
+ Roiffé ,ROIFFE ,86120,86210,11,47.133333,0.05,2.38
+ Romagne ,ROMAGNE ,86700,86211,11,46.266667,0.3,2.26
+ Rossay ,ROSSAY ,86200,86212,11,46.983333,0.133333,1.69
+ Rouillé ,ROUILLE ,86480,86213,11,46.416667,0.05,1.51
+ Saint-Benoît ,SAINT BENOIT ,86280,86214,11,46.55,0.333333,0.29
+ Saint-Chartres ,SAINT CHARTRES ,86330,86216,11,46.833333,-0.016667,1.8
+ Saint-Christophe ,SAINT CHRISTOPHE ,86230,86217,11,46.916667,0.366667,1.39
+ Saint-Clair ,SAINT CLAIR ,86330,86218,11,46.883333,0.066667,1.44
+ Saint-Cyr ,SAINT CYR ,86130,86219,11,46.716667,0.45,1.27
+ Saint-Genest-d'Ambière ,SAINT GENEST D AMBIERE,86140,86221,11,46.816667,0.366667,0.93
+ Saint-Georges-lès-Baillargeaux ,SAINT GEORGES LES BAILLARGEAUX,86130,86222,11,46.666667,0.4,0.79
+ Saint-Germain ,SAINT GERMAIN ,86310,86223,11,46.566667,0.866667,2.02
+ Saint-Gervais-les-Trois-Clochers ,SAINT GERVAIS LES TROIS,86230,86224,11,46.9,0.416667,1.31
+ Saint-Jean-de-Sauves ,SAINT JEAN DE SAUVES,86330,86225,11,46.833333,0.083333,1.37
+ Saint-Julien-l'Ars ,SAINT JULIEN L ARS,86800,86226,11,46.55,0.5,0.56
+ Saint-Laon ,SAINT LAON ,86200,86227,11,46.983333,-0.016667,1.8
+ Saint-Laurent-de-Jourdes ,SAINT LAURENT DE JOURDES,86410,86228,11,46.4,0.55,0.98
+ Saint-Léger-de-Montbrillais ,SAINT LEGER DE MONTBRILLAIS,86120,86229,11,47.066667,-0.05,2.08
+ Saint-Léomer ,SAINT LEOMER ,86290,86230,11,46.433333,1,2.6
+ Saint-Macoux ,SAINT MACOUX ,86400,86231,11,46.116667,0.233333,2.28
+ Saint-Martin-l'Ars ,SAINT MARTIN L ARS,86350,86234,11,46.216667,0.533333,1.82
+ Saint-Maurice-la-Clouère ,SAINT MAURICE LA CLOUERE,86160,86235,11,46.366667,0.416667,1.13
+ Saint-Pierre-de-Maillé ,SAINT PIERRE DE MAILLE,86260,86236,11,46.683333,0.85,1.95
+ Sainte-Radegonde ,SAINTE RADEGONDE ,86300,86239,11,46.616667,0.7,1.3
+ Saint-Rémy-en-Montmorillon ,SAINT REMY EN MONTMORILLON,86390,86240,11,46.266667,0.9,2.17
+ Saint-Rémy-sur-Creuse ,SAINT REMY SUR CREUSE,86220,86241,11,46.95,0.683333,1.54
+ Saint-Sauvant ,SAINT SAUVANT ,86600,86244,11,46.358333,0.058333,-1
+ Saint-Sauveur ,SAINT SAUVEUR ,86100,86245,11,46.8,0.616667,1.08
+ Saint-Savin ,SAINT SAVIN ,86310,86246,11,46.566667,0.866667,2.02
+ Saint-Saviol ,SAINT SAVIOL ,86400,86247,11,46.133333,0.233333,2.2
+ Saint-Sécondin ,SAINT SECONDIN ,86350,86248,11,46.333333,0.483333,1.34
+ Saires ,SAIRES ,86420,86249,11,46.883333,0.25,1.24
+ Saix ,SAIX ,86120,86250,11,47.133333, ,2.38
+ Sammarçolles ,SAMMARCOLLES ,86200,86252,11,47.033333,0.15,1.92
+ Sanxay ,SANXAY ,86600,86253,11,46.5, ,1.73
+ Saulgé ,SAULGE ,86500,86254,11,46.383333,0.883333,2.1
+ Savigné ,SAVIGNE ,86400,86255,11,46.166667,0.316667,2.05
+ Savigny-Lévescault ,SAVIGNY LEVESCAULT ,86800,86256,11,46.533333,0.5,0.78
+ Savigny-sous-Faye ,SAVIGNY SOUS FAYE ,86140,86257,11,46.866667,0.283333,1.17
+ Scorbé-Clairvaux ,SCORBE CLAIRVAUX ,86140,86258,11,46.816667,0.416667,1.85
+ Sénillé ,SENILLE ,86100,86259,11,46.766667,0.6,1.13
+ Sérigny ,SERIGNY ,86230,86260,11,46.9,0.35,1.31
+ Sèvres-Anxaumont ,SEVRES ANXAUMONT ,86800,86261,11,46.566667,0.466667,1.13
+ Sillars ,SILLARS ,86320,86262,11,46.416667,0.766667,1.62
+ Smarves ,SMARVES ,86240,86263,11,46.516667,0.35,1.14
+ Sommières-du-Clain ,SOMMIERES DU CLAIN ,86160,86264,11,46.283333,0.35,1.52
+ Sossais ,SOSSAIS ,86230,86265,11,46.85,0.383333,1.08
+ Surin ,SURIN ,86250,86266,11,46.0775,0.37179,-1
+ Targé ,TARGE ,86100,86267,11,46.8,0.583333,0.85
+ Tercé ,TERCE ,86800,86268,11,46.516667,0.566667,1.27
+ Ternay ,TERNAY ,86120,86269,11,47.033333,-0.05,1.94
+ Thollet ,THOLLET ,86290,86270,11,46.42108,1.12298,-1
+ Thurageau ,THURAGEAU ,86110,86271,11,46.766667,0.25,1.8
+ Thuré ,THURE ,86540,86272,11,46.833333,0.45,1.01
+ La Trimouille ,LA TRIMOUILLE ,86290,86273,11,46.466667,1.05,2.82
+ Les-Trois-Moutiers ,LES TROIS MOUTIERS ,86120,86274,11,47.066667,0.016667,2.08
+ Usseau ,USSEAU ,86230,86275,11,46.866667,0.5,1.23
+ Usson-du-Poitou ,USSON DU POITOU ,86350,86276,11,46.283333,0.533333,1.52
+ Varennes ,VARENNES ,86110,86277,11,46.766667,0.2,0.97
+ Vaux ,VAUX ,86700,86278,11,46.3,0.216667,1.44
+ Vaux-sur-Vienne ,VAUX SUR VIENNE ,86220,86279,11,46.9,0.55,1.31
+ Vellèches ,VELLECHES ,86230,86280,11,46.983333,0.516667,1.73
+ Vendeuvre-du-Poitou ,VENDEUVRE DU POITOU ,86380,86281,11,46.733333,0.316667,0.55
+ Verger-sur-Dive ,VERGER SUR DIVE ,86110,86283,11,46.783333,0.083333,1.37
+ Vernon ,VERNON ,86340,86284,11,46.45,0.483333,1.05
+ Verrières ,VERRIERES ,86410,86285,11,46.416667,0.6,0.9
+ Verrue ,VERRUE ,86420,86286,11,46.866667,0.166667,1.48
+ Vézières ,VEZIERES ,86120,86287,11,47.083333,0.1,2.15
+ Vicq-sur-Gartempe ,VICQ SUR GARTEMPE ,86260,86288,11,46.716667,0.866667,2.02
+ Le Vigeant ,LE VIGEANT ,86150,86289,11,46.233333,0.65,1.75
+ La Villedieu-du-Clain ,LA VILLEDIEU DU CLAIN,86340,86290,11,46.45,0.366667,0.85
+ Villemort ,VILLEMORT ,86310,86291,11,46.55,0.916667,2.24
+ Villiers ,VILLIERS ,86190,86292,11,46.683333,0.183333,1.13
+ Vivonne ,VIVONNE ,86370,86293,11,46.433333,0.266667,0.83
+ Vouillé ,VOUILLE ,86190,86294,11,46.633333,0.166667,1
+ Voulême ,VOULEME ,86400,86295,11,46.1,0.233333,2.36
+ Voulon ,VOULON ,86700,86296,11,46.35,0.233333,1.21
+ Vouneuil-sous-Biard ,VOUNEUIL SOUS BIARD ,86580,86297,11,46.583333,0.266667,0.57
+ Vouneuil-sur-Vienne ,VOUNEUIL SUR VIENNE ,86210,86298,11,46.716667,0.533333,1.2
+ Vouzailles ,VOUZAILLES ,86170,86299,11,46.7,0.083333,1.37
+ Yversay ,YVERSAY ,86170,86300,11,46.7,0.216667,0.79
+ Saint-Martin-la-Rivière ,SAINT MARTIN LA RIVIERE,86300,86902,11,46.516667,0.633333,1.01
+ La Tricherie ,LA TRICHERIE ,86490,86903,11,46.733333,0.45,0.92
+ Aixe-sur-Vienne ,AIXE SUR VIENNE ,87700,87001,72,45.8,1.133333,0.52
+ Ambazac ,AMBAZAC ,87240,87002,72,45.95,1.4,1
+ Arnac-la-Poste ,ARNAC LA POSTE ,87160,87003,72,46.266667,1.383333,1.98
+ Augne ,AUGNE ,87120,87004,72,45.783333,1.7,2.29
+ Aureil ,AUREIL ,87220,87005,72,45.8,1.4,1.21
+ Balledent ,BALLEDENT ,87290,87007,72,46.116667,1.216667,1.17
+ La Bazeuge ,LA BAZEUGE ,87210,87008,72,46.25,1.1,1.89
+ Bellac ,BELLAC ,87300,87011,72,46.116667,1.05,1.17
+ Berneuil ,BERNEUIL ,87300,87012,72,46.066667,1.1,0.9
+ Bersac-sur-Rivalier ,BERSAC SUR RIVALIER ,87370,87013,72,46.083333,1.416667,1.27
+ Bessines-sur-Gartempe ,BESSINES SUR GARTEMPE ,87250,87014,72,46.1,1.366667,1.08
+ Beynac ,BEYNAC ,87700,87015,72,45.766667,1.15,1.11
+ Les Billanges ,LES BILLANGES ,87340,87016,72,45.966667,1.533333,1.48
+ Blanzac ,BLANZAC ,87300,87017,72,46.133333,1.116667,1.26
+ Blond ,BLOND ,87300,87018,72,46.05,1.016667,1.16
+ Boisseuil ,BOISSEUIL ,87220,87019,72,45.766667,1.316667,1.3
+ Bonnac-la-Côte ,BONNAC LA COTE ,87270,87020,72,45.933333,1.283333,1.35
+ Breuilaufa ,BREUILAUFA ,87300,87022,72,46.05,1.1,1.08
+ Le Buis ,LE BUIS ,87140,87023,72,46.033333,1.2,0.73
+ Bujaleuf ,BUJALEUF ,87460,87024,72,45.8,1.633333,1.96
+ Burgnac ,BURGNAC ,87800,87025,72,45.716667,1.15,1.12
+ Bussière-Boffy ,BUSSIERE BOFFY ,87330,87026,72,46.05,0.85,1.83
+ Bussière-Galant ,BUSSIERE GALANT ,87230,87027,72,45.616667,1.033333,1.51
+ Bussière-Poitevine ,BUSSIERE POITEVINE ,87320,87028,72,46.233333,0.916667,1.8
+ Les Cars ,LES CARS ,87230,87029,72,45.683333,1.083333,1.15
+ Chaillac-sur-Vienne ,CHAILLAC SUR VIENNE ,87200,87030,72,45.883333,0.866667,1.75
+ Châlus ,CHALUS ,87230,87032,72,45.65,0.983333,1.33
+ Chamboret ,CHAMBORET ,87140,87033,72,46,1.133333,1.17
+ Champagnac-la-Rivière ,CHAMPAGNAC LA RIVIERE ,87150,87034,72,45.7,0.916667,1.51
+ Champnétery ,CHAMPNETERY ,87400,87035,72,45.833333,1.566667,1.64
+ Champsac ,CHAMPSAC ,87230,87036,72,45.7,0.95,1.35
+ La Chapelle-Montbrandeix ,LA CHAPELLE MONTBRANDEIX ,87440,87037,72,45.65,0.85,1.83
+ Chaptelat ,CHAPTELAT ,87270,87038,72,45.9,1.266667,0.19
+ Château-Chervix ,CHATEAU CHERVIX ,87380,87039,72,45.6,1.35,1.71
+ Châteauneuf-la-Forêt ,CHATEAUNEUF LA FORET ,87130,87040,72,45.716667,1.616667,1.88
+ Châteauponsac ,CHATEAUPONSAC ,87290,87041,72,46.133333,1.283333,1.26
+ Le Chatenet-en-Dognon ,LE CHATENET EN DOGNON,87400,87042,72,45.9,1.5,1.32
+ Cheissoux ,CHEISSOUX ,87460,87043,72,45.833333,1.65,2.05
+ Chéronnac ,CHERONNAC ,87600,87044,72,45.766667,0.75,2.32
+ Cieux ,CIEUX ,87520,87045,72,45.983333,1.05,0.86
+ Compreignac ,COMPREIGNAC ,87140,87047,72,46,1.266667,1.55
+ Condat-sur-Vienne ,CONDAT SUR VIENNE ,87920,87048,72,45.8,1.233333,0.52
+ Coussac-Bonneval ,COUSSAC BONNEVAL ,87500,87049,72,45.5,1.316667,2.13
+ Couzeix ,COUZEIX ,87270,87050,72,45.866667,1.233333,1.46
+ La Croisille-sur-Briance ,LA CROISILLE SUR BRIANCE,87130,87051,72,45.633333,1.583333,1.72
+ La Croix-sur-Gartempe ,LA CROIX SUR GARTEMPE,87210,87052,72,46.166667,0.983333,1.44
+ Cromac ,CROMAC ,87160,87053,72,46.35,1.3,2.42
+ Darnac ,DARNAC ,87320,87055,72,46.216667,0.966667,1.71
+ Dinsac ,DINSAC ,87210,87056,72,46.233333,1.116667,1.8
+ Dompierre-les-Églises ,DOMPIERRE LES EGLISES ,87190,87057,72,46.233333,1.25,1.8
+ Domps ,DOMPS ,87120,87058,72,45.666667,1.7,2.29
+ Le Dorat ,LE DORAT ,87210,87059,72,46.216667,1.083333,1.71
+ Dournazac ,DOURNAZAC ,87230,87060,72,45.616667,0.916667,1.6
+ Droux ,DROUX ,87190,87061,72,46.166667,1.15,1.44
+ Eybouleuf ,EYBOULEUF ,87400,87062,72,45.8,1.466667,1.16
+ Eyjeaux ,EYJEAUX ,87220,87063,72,45.783333,1.383333,0.75
+ Eymoutiers ,EYMOUTIERS ,87120,87064,72,45.733333,1.733333,2.45
+ Feytiat ,FEYTIAT ,87220,87065,72,45.8,1.333333,0.78
+ Flavignac ,FLAVIGNAC ,87230,87066,72,45.7,1.1,1.06
+ Folles ,FOLLES ,87250,87067,72,46.116667,1.466667,1.43
+ Fromental ,FROMENTAL ,87250,87068,72,46.166667,1.4,1.44
+ Gajoubert ,GAJOUBERT ,87330,87069,72,46.116667,0.833333,1.92
+ La Geneytouse ,LA GENEYTOUSE ,87400,87070,72,45.783333,1.466667,1.16
+ Glandon ,GLANDON ,87500,87071,72,45.483333,1.216667,2.22
+ Glanges ,GLANGES ,87380,87072,72,45.666667,1.45,1.24
+ Gorre ,GORRE ,87310,87073,72,45.733333,0.983333,1.72
+ Les Grands Chézeaux ,LES GRANDS CHEZEAUX ,87160,87074,72,46.35,1.4,2.42
+ Isle ,ISLE ,87170,87075,72,45.816667,1.216667,0.44
+ Janailhac ,JANAILHAC ,87800,87077,72,45.633333,1.233333,1.42
+ Javerdat ,JAVERDAT ,87520,87078,72,45.95,0.983333,1.25
+ La Jonchère-Saint-Maurice ,LA JONCHERE SAINT MAURICE,87340,87079,72,46,1.466667,1.16
+ Jouac ,JOUAC ,87890,87080,72,46.35,1.266667,2.42
+ Jourgnac ,JOURGNAC ,87800,87081,72,45.716667,1.2,0.97
+ Ladignac-le-Long ,LADIGNAC LE LONG ,87500,87082,72,45.583333,1.116667,1.69
+ Laurière ,LAURIERE ,87370,87083,72,46.083333,1.483333,1.24
+ Lavignac ,LAVIGNAC ,87230,87084,72,45.716667,1.133333,1.55
+ Limoges ,LIMOGES ,87280,87085,72,45.85,1.25,1
+ Linards ,LINARDS ,87130,87086,72,45.7,1.533333,1.48
+ Lussac-les-Églises ,LUSSAC LES EGLISES ,87360,87087,72,46.35,1.183333,2.42
+ Magnac-Bourg ,MAGNAC BOURG ,87380,87088,72,45.616667,1.433333,1.51
+ Magnac-Laval ,MAGNAC LAVAL ,87190,87089,72,46.216667,1.166667,1.71
+ Mailhac-sur-Benaize ,MAILHAC SUR BENAIZE ,87160,87090,72,46.333333,1.333333,2.33
+ Maisonnais-sur-Tardoire ,MAISONNAIS SUR TARDOIRE ,87440,87091,72,45.716667,0.691667,2.6
+ Marval ,MARVAL ,87440,87092,72,45.633333,0.8,2.08
+ Masléon ,MASLEON ,87130,87093,72,45.766667,1.566667,1.64
+ Meilhac ,MEILHAC ,87800,87094,72,45.716667,1.15,1.12
+ Meuzac ,MEUZAC ,87380,87095,72,45.55,1.433333,1.86
+ La Meyze ,LA MEYZE ,87800,87096,72,45.616667,1.216667,1.51
+ Mézières-sur-Issoire ,MEZIERES SUR ISSOIRE ,87330,87097,72,46.1,0.916667,1.51
+ Milhaguet ,MILHAGUET ,87440,87098,72,45.666667,0.783333,2.16
+ Moissannes ,MOISSANNES ,87400,87099,72,45.883333,1.566667,1.64
+ Montrol-Sénard ,MONTROL SENARD ,87330,87100,72,46.033333,0.966667,1.41
+ Mortemart ,MORTEMART ,87330,87101,72,46.05,0.966667,1.27
+ Morterolles-sur-Semme ,MORTEROLLES SUR SEMME ,87250,87102,72,46.15,1.366667,1.35
+ Nantiat ,NANTIAT ,87140,87103,72,46.016667,1.183333,0.64
+ Nedde ,NEDDE ,87120,87104,72,45.716667,1.833333,2.94
+ Neuvic-Entier ,NEUVIC ENTIER ,87130,87105,72,45.716667,1.616667,1.88
+ Nexon ,NEXON ,87800,87106,72,45.683333,1.183333,1.15
+ Nieul ,NIEUL ,87510,87107,72,45.933333,1.183333,0.66
+ Nouic ,NOUIC ,87330,87108,72,46.066667,0.916667,1.51
+ Oradour-Saint-Genest ,ORADOUR SAINT GENEST ,87210,87109,72,46.233333,1.033333,1.8
+ Oradour-sur-Glane ,ORADOUR SUR GLANE ,87520,87110,72,45.933333,1.033333,0.95
+ Oradour-sur-Vayres ,ORADOUR SUR VAYRES ,87150,87111,72,45.733333,0.866667,1.75
+ Pagéas ,PAGEAS ,87230,87112,72,45.683333,1,1.15
+ Le Palais-sur-Vienne ,LE PALAIS SUR VIENNE,87410,87113,72,45.866667,1.316667,0.43
+ Panazol ,PANAZOL ,87350,87114,72,45.833333,1.3,0.35
+ Pensol ,PENSOL ,87440,87115,72,45.616667,0.816667,2
+ Peyrat-de-Bellac ,PEYRAT DE BELLAC ,87300,87116,72,46.15,1.033333,1.35
+ Peyrat-le-Château ,PEYRAT LE CHATEAU ,87470,87117,72,45.816667,1.766667,2.61
+ Peyrilhac ,PEYRILHAC ,87510,87118,72,45.95,1.133333,0.99
+ Pierre-Buffière ,PIERRE BUFFIERE ,87260,87119,72,45.7,1.35,1.06
+ La Porcherie ,LA PORCHERIE ,87380,87120,72,45.583333,1.533333,1.69
+ Rancon ,RANCON ,87290,87121,72,46.133333,1.183333,1.5
+ Razès ,RAZES ,87640,87122,72,46.033333,1.333333,0.73
+ Rempnat ,REMPNAT ,87120,87123,72,45.7,1.883333,-1
+ Rilhac-Lastours ,RILHAC LASTOURS ,87800,87124,72,45.666667,1.116667,1.31
+ Rilhac-Rancon ,RILHAC RANCON ,87570,87125,72,45.9,1.316667,0.43
+ Rochechouart ,ROCHECHOUART ,87600,87126,72,45.816667,0.816667,2
+ La Roche-l'Abeille ,LA ROCHE L ABEILLE,87800,87127,72,45.6,1.25,1.6
+ Roussac ,ROUSSAC ,87140,87128,72,46.083333,1.2,1.13
+ Royères ,ROYERES ,87400,87129,72,45.858333,1.433333,-1
+ Roziers-Saint-Georges ,ROZIERS SAINT GEORGES ,87130,87130,72,45.75,1.55,1.56
+ Saillat-sur-Vienne ,SAILLAT SUR VIENNE ,87720,87131,72,45.866667,0.816667,2
+ Saint-Amand-le-Petit ,SAINT AMAND LE PETIT,87120,87132,72,45.766667,1.75,2.53
+ Saint-Amand-Magnazeix ,SAINT AMAND MAGNAZEIX ,87290,87133,72,46.183333,1.35,1.53
+ Sainte-Anne-Saint-Priest ,SAINTE ANNE SAINT PRIEST,87120,87134,72,45.716667,1.7,2.29
+ Saint-Auvent ,SAINT AUVENT ,87310,87135,72,45.8,0.933333,1.43
+ Saint-Barbant ,SAINT BARBANT ,87330,87136,72,46.166667,0.85,1.83
+ Saint-Bazile ,SAINT BAZILE ,87150,87137,72,45.733333,0.816667,2
+ Saint-Bonnet-Briance ,SAINT BONNET BRIANCE ,87260,87138,72,45.7,1.483333,1.89
+ Saint-Bonnet-de-Bellac ,SAINT BONNET DE BELLAC,87300,87139,72,46.166667,0.95,1.95
+ Saint-Brice-sur-Vienne ,SAINT BRICE SUR VIENNE,87200,87140,72,45.883333,0.95,1.35
+ Saint-Cyr ,SAINT CYR ,87310,87141,72,45.8,0.95,1.35
+ Saint-Denis-des-Murs ,SAINT DENIS DES MURS,87400,87142,72,45.783333,1.533333,1.48
+ Saint-Gence ,SAINT GENCE ,87510,87143,72,45.916667,1.133333,1.12
+ Saint-Genest-sur-Roselle ,SAINT GENEST SUR ROSELLE,87260,87144,72,45.7,1.416667,1.06
+ Saint-Georges-les-Landes ,SAINT GEORGES LES LANDES,87160,87145,72,46.35,1.333333,2.42
+ Saint-Germain-les-Belles ,SAINT GERMAIN LES BELLES,87380,87146,72,45.616667,1.5,1.51
+ Saint-Gilles-les-Forêts ,SAINT GILLES LES FORETS,87130,87147,72,45.633333,1.65,2.05
+ Saint-Hilaire-Bonneval ,SAINT HILAIRE BONNEVAL ,87260,87148,72,45.716667,1.366667,0.97
+ Saint-Hilaire-La-Treille ,SAINT HILAIRE LA TREILLE,87190,87149,72,46.25,1.316667,1.89
+ Saint-Hilaire-les-Places ,SAINT HILAIRE LES PLACES,87800,87150,72,45.666667,1.166667,1.24
+ Saint-Jean-Ligoure ,SAINT JEAN LIGOURE ,87260,87151,72,45.683333,1.316667,1.36
+ Saint-Jouvent ,SAINT JOUVENT ,87510,87152,72,45.95,1.2,1.23
+ Saint-Julien-le-Petit ,SAINT JULIEN LE PETIT,87460,87153,72,45.816667,1.7,2.29
+ Saint-Junien ,SAINT JUNIEN ,87200,87154,72,45.883333,0.9,1.59
+ Saint-Junien-les-Combes ,SAINT JUNIEN LES COMBES,87300,87155,72,46.083333,1.133333,1.15
+ Saint-Just-le-Martel ,SAINT JUST LE MARTEL,87590,87156,72,45.866667,1.383333,0.75
+ Saint-Laurent-les-Églises ,SAINT LAURENT LES EGLISES,87340,87157,72,45.95,1.5,1.32
+ Saint-Laurent-sur-Gorre ,SAINT LAURENT SUR GORRE,87310,87158,72,45.766667,0.95,1.35
+ Saint-Léger-la Montagne ,SAINT LEGER LA MONTAGNE,87340,87159,72,46.033333,1.416667,1.58
+ Saint-Léger-Magnazeix ,SAINT LEGER MAGNAZEIX ,87190,87160,72,46.283333,1.25,2.07
+ Saint-Léonard-de-Noblat ,SAINT LEONARD DE NOBLAT,87400,87161,72,45.833333,1.483333,1.24
+ Sainte-Marie-de-Vaux ,SAINTE MARIE DE VAUX,87420,87162,72,45.866667,1.05,1
+ Saint-Martial-sur-Isop ,SAINT MARTIAL SUR ISOP,87330,87163,72,46.166667,0.85,1.83
+ Saint-Martin-de-Jussac ,SAINT MARTIN DE JUSSAC,87200,87164,72,45.883333,0.933333,1.43
+ Saint-Martin-le-Mault ,SAINT MARTIN LE MAULT,87360,87165,72,46.366667,1.216667,2.51
+ Saint-Martin-le-Vieux ,SAINT MARTIN LE VIEUX,87700,87166,72,45.75,1.116667,1.18
+ Saint-Martin-Terressus ,SAINT MARTIN TERRESSUS ,87400,87167,72,45.916667,1.45,1.26
+ Saint-Mathieu ,SAINT MATHIEU ,87440,87168,72,45.7,0.766667,2.24
+ Saint-Méard ,SAINT MEARD ,87130,87170,72,45.666667,1.55,1.56
+ Saint-Nicolas-Courbefy ,SAINT NICOLAS COURBEFY ,87230,87171,72,45.583333,1.066667,1.69
+ Saint-Ouen-sur-Gartempe ,SAINT OUEN SUR GARTEMPE,87300,87172,72,46.166667,1.066667,1.44
+ Saint-Pardoux ,SAINT PARDOUX ,87250,87173,72,46.05,1.283333,1.83
+ Saint-Priest-le-Betoux ,SAINT PRIEST LE BETOUX,87290,87175,72,46.183333,1.266667,1.53
+ Saint-Priest-Ligoure ,SAINT PRIEST LIGOURE ,87800,87176,72,45.65,1.3,1.71
+ Saint-Priest-sous-Aixe ,SAINT PRIEST SOUS AIXE,87700,87177,72,45.816667,1.1,0.62
+ Saint-Priest-Taurion ,SAINT PRIEST TAURION ,87480,87178,72,45.883333,1.4,0.83
+ Saint-Sornin-la-Marche ,SAINT SORNIN LA MARCHE,87210,87179,72,46.183333,0.983333,1.53
+ Saint-Sornin-Leulac ,SAINT SORNIN LEULAC ,87290,87180,72,46.2,1.3,1.62
+ Saint-Sulpice-Laurière ,SAINT SULPICE LAURIERE ,87370,87181,72,46.05,1.466667,1.16
+ Saint-Sulpice-les-Feuilles ,SAINT SULPICE LES FEUILLES,87160,87182,72,46.316667,1.366667,2.24
+ Saint-Sylvestre ,SAINT SYLVESTRE ,87240,87183,72,46,1.383333,1
+ Saint-Symphorien-sur-Couze ,SAINT SYMPHORIEN SUR COUZE,87140,87184,72,46.05,1.233333,0.96
+ Saint-Victurnien ,SAINT VICTURNIEN ,87420,87185,72,45.883333,1,1.11
+ Saint-Vitte-sur-Briance ,SAINT VITTE SUR BRIANCE,87380,87186,72,45.616667,1.55,1.56
+ Saint-Yrieix-la-Perche ,SAINT YRIEIX LA PERCHE,87500,87187,72,45.516667,1.2,2.04
+ Saint-Yrieix-sous-Aixe ,SAINT YRIEIX SOUS AIXE,87700,87188,72,45.866667,1.083333,1.76
+ Les Salles-Lavauguyon ,LES SALLES LAVAUGUYON ,87440,87189,72,45.75,0.7,2.56
+ Sauviat-sur-Vige ,SAUVIAT SUR VIGE ,87400,87190,72,45.9,1.616667,1.88
+ Séreilhac ,SEREILHAC ,87620,87191,72,45.766667,1.083333,0.7
+ Solignac ,SOLIGNAC ,87110,87192,72,45.75,1.266667,1
+ Surdoux ,SURDOUX ,87130,87193,72,45.6,1.65,2.05
+ Sussac ,SUSSAC ,87130,87194,72,45.666667,1.65,2.05
+ Tersannes ,TERSANNES ,87360,87195,72,46.3,1.116667,2.15
+ Thiat ,THIAT ,87320,87196,72,46.266667,0.966667,1.98
+ Thouron ,THOURON ,87140,87197,72,46,1.216667,0.7
+ Vaulry ,VAULRY ,87140,87198,72,46.016667,1.083333,2.03
+ Vayres ,VAYRES ,87600,87199,72,45.75,0.8,2.08
+ Verneuil-Moustiers ,VERNEUIL MOUSTIERS ,87360,87200,72,46.35,1.133333,2.42
+ Verneuil-sur-Vienne ,VERNEUIL SUR VIENNE ,87430,87201,72,45.85,1.133333,0.46
+ Veyrac ,VEYRAC ,87520,87202,72,45.9,1.116667,1.63
+ Vicq-sur-Breuilh ,VICQ SUR BREUILH ,87260,87203,72,45.65,1.383333,1.33
+ Videix ,VIDEIX ,87600,87204,72,45.783333,0.733333,2.4
+ Le Vigen ,LE VIGEN ,87110,87205,72,45.75,1.283333,1
+ Villefavard ,VILLEFAVARD ,87190,87206,72,46.166667,1.216667,1.44
+ Beaune-les-Mines ,BEAUNE LES MINES ,87280,87929,72,45.916667,1.3,1
+ Les Ableuvenettes ,LES ABLEUVENETTES ,88270,88001,11,48.2,6.183333,0.4
+ Ahéville ,AHEVILLE ,88500,88002,11,48.283333,6.2,1.55
+ Aingeville ,AINGEVILLE ,88140,88003,11,48.2,5.766667,1.51
+ Ainvelle ,AINVELLE ,88320,88004,11,48,5.833333,2.11
+ Allarmont ,ALLARMONT ,88110,88005,11,48.483333,7.016667,2.3
+ Ambacourt ,AMBACOURT ,88500,88006,11,48.35,6.15,1.08
+ Ameuvelle ,AMEUVELLE ,88410,88007,11,47.95,5.95,2.57
+ Anglemont ,ANGLEMONT ,88700,88008,11,48.383333,6.666667,1.39
+ Anould ,ANOULD ,88650,88009,11,48.183333,6.95,1.76
+ Aouze ,AOUZE ,88170,88010,11,48.383333,5.866667,1.39
+ Arches ,ARCHES ,88380,88011,11,48.116667,6.533333,1.05
+ Archettes ,ARCHETTES ,88380,88012,11,48.116667,6.533333,1.05
+ Aroffe ,AROFFE ,88170,88013,11,48.4,5.9,1.54
+ Arrentès-de-Corcieux ,ARRENTES DE CORCIEUX ,88430,88014,11,48.133333,6.866667,1.53
+ Attignéville ,ATTIGNEVILLE ,88300,88015,11,48.383333,5.816667,1.39
+ Attigny ,ATTIGNY ,88260,88016,11,48.066667,6.033333,1.5
+ Aulnois ,AULNOIS ,88300,88017,11,48.25,5.783333,1.46
+ Aumontzey ,AUMONTZEY ,88640,88018,11,48.166667,6.783333,1.3
+ Autigny-la-Tour ,AUTIGNY LA TOUR ,88300,88019,11,48.4,5.766667,1.54
+ Autreville ,AUTREVILLE ,88300,88020,11,48.483333,5.85,2.3
+ Autrey ,AUTREY ,88700,88021,11,48.3,6.683333,1.33
+ Auzainvilliers ,AUZAINVILLIERS ,88140,88022,11,48.233333,5.85,1.28
+ Avillers ,AVILLERS ,88500,88023,11,48.316667,6.216667,1.73
+ Avrainville ,AVRAINVILLE ,88130,88024,11,48.366667,6.216667,1.24
+ Avranville ,AVRANVILLE ,88630,88025,11,48.416667,5.533333,2.15
+ Aydoilles ,AYDOILLES ,88600,88026,11,48.216667,6.566667,1.6
+ Badménil-aux-Bois ,BADMENIL AUX BOIS ,88330,88027,11,48.3,6.516667,1.47
+ La Baffe ,LA BAFFE ,88460,88028,11,48.166667,6.566667,1.7
+ Bains-les-Bains ,BAINS LES BAINS ,88240,88029,11,48,6.266667,2.11
+ Bainville-aux-Saules ,BAINVILLE AUX SAULES ,88270,88030,11,48.2,6.133333,1.05
+ Balléville ,BALLEVILLE ,88170,88031,11,48.333333,5.85,1.28
+ Ban-de-Laveline ,BAN DE LAVELINE ,88520,88032,11,48.25,7.066667,2.08
+ Barbey-Séroux ,BARBEY SEROUX ,88640,88035,11,48.133333,6.833333,1.87
+ Barville ,BARVILLE ,88300,88036,11,48.383333,5.783333,1.46
+ Basse-sur-le-Rupt ,BASSE SUR LE RUPT,88120,88037,11,47.983333,6.75,2.26
+ Battexey ,BATTEXEY ,88130,88038,11,48.383333,6.183333,1.39
+ Baudricourt ,BAUDRICOURT ,88500,88039,11,48.316667,6.05,0.78
+ Bayecourt ,BAYECOURT ,88150,88040,11,48.266667,6.483333,1.26
+ Bazegney ,BAZEGNEY ,88270,88041,11,48.266667,6.233333,0.79
+ Bazien ,BAZIEN ,88700,88042,11,48.416667,6.683333,1.69
+ Bazoilles-et-Ménil ,BAZOILLES ET MENIL ,88500,88043,11,48.266667,6.1,0.66
+ Bazoilles-sur-Meuse ,BAZOILLES SUR MEUSE ,88300,88044,11,48.3,5.65,1.83
+ Beaufremont ,BEAUFREMONT ,88300,88045,11,48.25,5.75,1.55
+ Beauménil ,BEAUMENIL ,88600,88046,11,48.183333,6.733333,1.16
+ Begnécourt ,BEGNECOURT ,88270,88047,11,48.2,6.15,0.82
+ Bellefontaine ,BELLEFONTAINE ,88370,88048,11,48.016667,6.45,1.96
+ Belmont-Lès-Darney ,BELMONT LES DARNEY ,88260,88049,11,48.083333,6.016667,1.35
+ Belmont-sur-Buttant ,BELMONT SUR BUTTANT ,88600,88050,11,48.216667,6.766667,1.25
+ Belmont-sur-Vair ,BELMONT SUR VAIR ,88800,88051,11,48.25,5.9,1.37
+ Belrupt ,BELRUPT ,88260,88052,11,48.083333,6.1,1.35
+ Belval ,BELVAL ,88210,88053,11,48.416667,7.05,2.03
+ Bertrimoutier ,BERTRIMOUTIER ,88520,88054,11,48.266667,7.05,2.03
+ Bettegney-Saint-Brice ,BETTEGNEY SAINT BRICE ,88450,88055,11,48.3,6.3,0.63
+ Bettoncourt ,BETTONCOURT ,88500,88056,11,48.35,6.166667,1.15
+ Le Beulay ,LE BEULAY ,88490,88057,11,48.3,7.066667,2.08
+ Biécourt ,BIECOURT ,88170,88058,11,48.316667,5.95,1.24
+ Biffontaine ,BIFFONTAINE ,88430,88059,11,48.216667,6.8,1.89
+ Blémerey ,BLEMEREY ,88500,88060,11,48.358333,6.05,-1
+ Bleurville ,BLEURVILLE ,88410,88061,11,48.066667,5.966667,1.53
+ Blevaincourt ,BLEVAINCOURT ,88320,88062,11,48.116667,5.683333,1.74
+ Bocquegney ,BOCQUEGNEY ,88270,88063,11,48.216667,6.3,1.32
+ Boulaincourt ,BOULAINCOURT ,88500,88066,11,48.366667,6.083333,1.24
+ Le Boulay ,LE BOULAY ,88600,88067,11,48.15,6.65,1.03
+ La Bourgonce ,LA BOURGONCE ,88470,88068,11,48.316667,6.833333,1.43
+ Bouxières-aux-Bois ,BOUXIERES AUX BOIS ,88270,88069,11,48.266667,6.316667,1.7
+ Bouxurulles ,BOUXURULLES ,88130,88070,11,48.333333,6.233333,0.93
+ Bouzemont ,BOUZEMONT ,88270,88071,11,48.25,6.233333,0.59
+ Brantigny ,BRANTIGNY ,88130,88073,11,48.35,6.283333,1.08
+ Bréchainville ,BRECHAINVILLE ,88350,88074,11,48.366667,5.483333,2.29
+ La Bresse ,LA BRESSE ,88250,88075,11,48,6.883333,2.11
+ Brouvelieures ,BROUVELIEURES ,88600,88076,11,48.233333,6.733333,1.16
+ Brû ,BRU ,88700,88077,11,48.35,6.683333,1.08
+ Bruyères ,BRUYERES ,88600,88078,11,48.2,6.716667,1.11
+ Bulgnéville ,BULGNEVILLE ,88140,88079,11,48.216667,5.833333,1.32
+ Bult ,BULT ,88700,88080,11,48.3,6.6,1
+ Bussang ,BUSSANG ,88540,88081,11,47.87938,6.85014,-1
+ Celles-sur-Plaine ,CELLES SUR PLAINE ,88110,88082,11,48.466667,6.95,2.15
+ Certilleux ,CERTILLEUX ,88300,88083,11,48.316667,5.733333,1.6
+ Chamagne ,CHAMAGNE ,88130,88084,11,48.416667,6.283333,1.69
+ Champdray ,CHAMPDRAY ,88640,88085,11,48.133333,6.75,1.2
+ Champ-le-Duc ,CHAMP LE DUC ,88600,88086,11,48.2,6.716667,1.11
+ Chantraine ,CHANTRAINE ,88000,88087,11,48.166667,6.433333,1.42
+ La Chapelle-aux-Bois ,LA CHAPELLE AUX BOIS,88240,88088,11,48.033333,6.333333,1.81
+ Charmes ,CHARMES ,88130,88090,11,48.366667,6.283333,1.24
+ Charmois-devant-Bruyères ,CHARMOIS DEVANT BRUYERES ,88460,88091,11,48.166667,6.6,0.9
+ Charmois-l'Orgueilleux ,CHARMOIS L ORGUEILLEUX ,88270,88092,11,48.1,6.266667,1.86
+ Châtas ,CHATAS ,88210,88093,11,48.366667,7.033333,1.99
+ Châtel-sur-Moselle ,CHATEL SUR MOSELLE ,88330,88094,11,48.3,6.4,1
+ Châtenois ,CHATENOIS ,88170,88095,11,48.3,5.833333,1.32
+ Châtillon-sur-Saône ,CHATILLON SUR SAONE ,88410,88096,11,47.95,5.883333,2.57
+ Chauffecourt ,CHAUFFECOURT ,88500,88097,11,48.333333,6.15,0.93
+ Chaumousey ,CHAUMOUSEY ,88390,88098,11,48.166667,6.333333,0.79
+ Chavelot ,CHAVELOT ,88150,88099,11,48.233333,6.433333,0.56
+ Chef-Haut ,CHEF HAUT ,88500,88100,11,48.35,6.016667,1.18
+ Cheniménil ,CHENIMENIL ,88460,88101,11,48.133333,6.6,0.89
+ Chermisey ,CHERMISEY ,88630,88102,11,48.416667,5.566667,2.06
+ Circourt ,CIRCOURT ,88270,88103,11,48.25,6.283333,1.18
+ Claudon ,CLAUDON ,88410,88105,11,48.033333,6.033333,2
+ Clefcy ,CLEFCY ,88230,88106,11,48.166667,6.983333,1.85
+ Clérey-la Côte ,CLEREY LA COTE ,88630,88107,11,48.483333,5.766667,2.3
+ Le Clerjus ,LE CLERJUS ,88240,88108,11,47.966667,6.316667,2.42
+ Clézentaine ,CLEZENTAINE ,88700,88110,11,48.416667,6.533333,1.69
+ Coinches ,COINCHES ,88100,88111,11,48.25,7.033333,1.99
+ Colroy-la-Grande ,COLROY LA GRANDE ,88490,88112,11,48.316667,7.116667,2.22
+ Combrimont ,COMBRIMONT ,88490,88113,11,48.283333,7.066667,2.08
+ Contrexéville ,CONTREXEVILLE ,88140,88114,11,48.183333,5.9,1.74
+ Corcieux ,CORCIEUX ,88430,88115,11,48.166667,6.883333,1.57
+ Cornimont ,CORNIMONT ,88310,88116,11,47.966667,6.833333,2.42
+ Courcelles-sous-Châtenois ,COURCELLES SOUS CHATENOIS ,88170,88117,11,48.333333,5.816667,1.37
+ Coussey ,COUSSEY ,88630,88118,11,48.416667,5.683333,1.74
+ Crainvilliers ,CRAINVILLIERS ,88140,88119,11,48.15,5.833333,1.32
+ La Croix-aux-Mines ,LA CROIX AUX MINES,88520,88120,11,48.216667,7.05,2.03
+ Damas-aux-Bois ,DAMAS AUX BOIS ,88330,88121,11,48.4,6.45,1.54
+ Damas-et-Bettegney ,DAMAS ET BETTEGNEY ,88270,88122,11,48.216667,6.266667,0.86
+ Damblain ,DAMBLAIN ,88320,88123,11,48.1,5.65,1.83
+ Darney ,DARNEY ,88260,88124,11,48.083333,6.05,1.35
+ Darney-aux-Chênes ,DARNEY AUX CHENES ,88170,88125,11,48.283333,5.816667,1.37
+ Darnieulles ,DARNIEULLES ,88390,88126,11,48.2,6.35,0.29
+ Deinvillers ,DEINVILLERS ,88700,88127,11,48.416667,6.55,1.69
+ Denipaire ,DENIPAIRE ,88210,88128,11,48.35,6.966667,1.8
+ Derbamont ,DERBAMONT ,88270,88129,11,48.266667,6.266667,1.1
+ Destord ,DESTORD ,88600,88130,11,48.266667,6.616667,1.14
+ Deycimont ,DEYCIMONT ,88600,88131,11,48.166667,6.65,0.93
+ Deyvillers ,DEYVILLERS ,88000,88132,11,48.2,6.516667,0.66
+ Dignonville ,DIGNONVILLE ,88000,88133,11,48.25,6.5,1.16
+ Dinozé ,DINOZE ,88000,88134,11,48.133333,6.483333,1.5
+ Docelles ,DOCELLES ,88460,88135,11,48.15,6.616667,0.84
+ Dogneville ,DOGNEVILLE ,88000,88136,11,48.216667,6.45,0.91
+ Dolaincourt ,DOLAINCOURT ,88170,88137,11,48.333333,5.816667,1.37
+ Dombasle-devant-Darney ,DOMBASLE DEVANT DARNEY ,88260,88138,11,48.133333,6.083333,0.89
+ Dombasle-en-Xaintois ,DOMBASLE EN XAINTOIS ,88500,88139,11,48.3,6,1.31
+ Dombrot-le-Sec ,DOMBROT LE SEC ,88140,88140,11,48.15,5.916667,2.15
+ Dombrot-sur-Vair ,DOMBROT SUR VAIR ,88170,88141,11,48.266667,5.883333,1.18
+ Domèvre-sur-Avière ,DOMEVRE SUR AVIERE ,88390,88142,11,48.216667,6.383333,1.28
+ Domèvre-sur-Durbion ,DOMEVRE SUR DURBION ,88330,88143,11,48.283333,6.466667,0.96
+ Domèvre-sous-Montfort ,DOMEVRE SOUS MONTFORT ,88500,88144,11,48.25,6.066667,0.95
+ Domfaing ,DOMFAING ,88600,88145,11,48.233333,6.75,1.2
+ Domjulien ,DOMJULIEN ,88800,88146,11,48.25,6,0.86
+ Dommartin-aux-Bois ,DOMMARTIN AUX BOIS ,88390,88147,11,48.166667,6.266667,2.25
+ Dommartin-lès-Remiremont ,DOMMARTIN LES REMIREMONT ,88200,88148,11,48,6.65,2.11
+ Dommartin-lès-Vallois ,DOMMARTIN LES VALLOIS ,88260,88149,11,48.15,6.083333,0.74
+ Dommartin-sur-Vraine ,DOMMARTIN SUR VRAINE ,88170,88150,11,48.333333,5.9,1.14
+ Dompaire ,DOMPAIRE ,88270,88151,11,48.216667,6.216667,0.27
+ Dompierre ,DOMPIERRE ,88600,88152,11,48.25,6.566667,1.67
+ Domptail ,DOMPTAIL ,88700,88153,11,48.45,6.616667,2
+ Domrémy-la-Pucelle ,DOMREMY LA PUCELLE ,88630,88154,11,48.45,5.683333,2
+ Domvallier ,DOMVALLIER ,88500,88155,11,48.316667,6.083333,0.78
+ Doncières ,DONCIERES ,88700,88156,11,48.4,6.633333,1.54
+ Dounoux ,DOUNOUX ,88220,88157,11,48.1,6.45,1.2
+ Éloyes ,ELOYES ,88510,88158,11,48.1,6.616667,1.2
+ Entre-deux-Eaux ,ENTRE DEUX EAUX ,88650,88159,11,48.233333,7,1.89
+ Épinal ,EPINAL ,88000,88160,11,48.183333,6.45,0.91
+ Escles ,ESCLES ,88260,88161,11,48.133333,6.183333,1.69
+ Esley ,ESLEY ,88260,88162,11,48.166667,6.066667,0.68
+ Essegney ,ESSEGNEY ,88130,88163,11,48.366667,6.316667,1.51
+ Estrennes ,ESTRENNES ,88500,88164,11,48.266667,6.05,0.88
+ Étival-Clairefontaine ,ETIVAL CLAIREFONTAINE ,88480,88165,11,48.366667,6.883333,1.57
+ Évaux-et-Ménil ,EVAUX ET MENIL ,88450,88166,11,48.333333,6.3,1.05
+ Faucompierre ,FAUCOMPIERRE ,88460,88167,11,48.133333,6.666667,1.2
+ Fauconcourt ,FAUCONCOURT ,88700,88168,11,48.366667,6.533333,1.24
+ Fays ,FAYS ,88600,88169,11,48.2,6.683333,1.02
+ Ferdrupt ,FERDRUPT ,88360,88170,11,47.9,6.74288,-1
+ Fignévelle ,FIGNEVELLE ,88410,88171,11,47.983333,5.916667,2.26
+ Fiménil ,FIMENIL ,88600,88172,11,48.183333,6.716667,1.11
+ Florémont ,FLOREMONT ,88130,88173,11,48.366667,6.25,1.24
+ Fomerey ,FOMEREY ,88390,88174,11,48.216667,6.333333,0.7
+ Fontenay ,FONTENAY ,88600,88175,11,48.216667,6.583333,1.37
+ Fontenoy-le-Château ,FONTENOY LE CHATEAU ,88240,88176,11,47.966667,6.2,2.42
+ La Forge ,LA FORGE ,88530,88177,11,48.066667,6.733333,1.5
+ Les Forges ,LES FORGES ,88390,88178,11,48.183333,6.383333,1.14
+ Fouchécourt ,FOUCHECOURT ,88320,88179,11,48.016667,5.866667,1.96
+ Frain ,FRAIN ,88320,88180,11,48.083333,5.883333,1.35
+ Fraize ,FRAIZE ,88230,88181,11,48.183333,7,1.89
+ Frapelle ,FRAPELLE ,88490,88182,11,48.3,7.066667,2.08
+ Frebécourt ,FREBECOURT ,88630,88183,11,48.383333,5.666667,1.78
+ Frémifontaine ,FREMIFONTAINE ,88600,88184,11,48.266667,6.683333,1.02
+ Frenelle-la-Grande ,FRENELLE LA GRANDE ,88500,88185,11,48.35,6.083333,1.08
+ Frenelle-la-Petite ,FRENELLE LA PETITE ,88500,88186,11,48.35,6.066667,1.08
+ Frénois ,FRENOIS ,88270,88187,11,48.183333,6.116667,1.34
+ Fresse-sur-Moselle ,FRESSE SUR MOSELLE ,88160,88188,11,47.866667,6.791667,-1
+ Fréville ,FREVILLE ,88350,88189,11,48.333333,5.616667,1.92
+ Gelvécourt-et-Adompt ,GELVECOURT ET ADOMPT ,88270,88192,11,48.2,6.183333,0.4
+ Gemaingoutte ,GEMAINGOUTTE ,88520,88193,11,48.25,7.083333,2.12
+ Gemmelaincourt ,GEMMELAINCOURT ,88170,88194,11,48.283333,5.966667,1.68
+ Gendreville ,GENDREVILLE ,88140,88195,11,48.233333,5.716667,1.64
+ Gérardmer ,GERARDMER ,88400,88196,11,48.066667,6.883333,1.57
+ Gerbépal ,GERBEPAL ,88430,88198,11,48.15,6.916667,1.66
+ Gignéville ,GIGNEVILLE ,88320,88199,11,48.116667,5.916667,1.46
+ Gigney ,GIGNEY ,88390,88200,11,48.233333,6.333333,1.14
+ Girancourt ,GIRANCOURT ,88390,88201,11,48.166667,6.316667,1.05
+ Gircourt-lès-Viéville ,GIRCOURT LES VIEVILLE ,88500,88202,11,48.333333,6.2,1.52
+ Girecourt-sur-Durbion ,GIRECOURT SUR DURBION ,88600,88203,11,48.25,6.6,1.23
+ Girmont ,GIRMONT ,88150,88204,11,48.266667,6.433333,0.33
+ Girmont-Val-d'Ajol ,GIRMONT VAL D AJOL,88340,88205,11,47.95,6.55,2.57
+ Gironcourt-sur-Vraine ,GIRONCOURT SUR VRAINE ,88170,88206,11,48.316667,5.933333,1.05
+ Girovillers-sous-Montfort ,GIROVILLERS SOUS MONTFORT ,88800,88207,11,48.25,6.016667,1.03
+ Godoncourt ,GODONCOURT ,88410,88208,11,48,5.916667,2.11
+ Golbey ,GOLBEY ,88190,88209,11,48.2,6.433333,0.33
+ Gorhey ,GORHEY ,88270,88210,11,48.2,6.283333,1.12
+ Grand ,GRAND ,88350,88212,11,48.383333,5.483333,2.29
+ Grandrupt-de-Bains ,GRANDRUPT DE BAINS ,88240,88214,11,48.066667,6.183333,1.5
+ Grandrupt ,GRANDRUPT ,88210,88215,11,48.366667,7.066667,2.08
+ Grandvillers ,GRANDVILLERS ,88600,88216,11,48.233333,6.683333,1.02
+ Granges-sur-Vologne ,GRANGES SUR VOLOGNE ,88640,88218,11,48.15,6.783333,1.3
+ Greux ,GREUX ,88630,88219,11,48.45,5.683333,2
+ Grignoncourt ,GRIGNONCOURT ,88410,88220,11,47.966667,5.9,2.42
+ Gruey-lès-Surance ,GRUEY LES SURANCE ,88240,88221,11,48.033333,6.183333,1.81
+ Gugnécourt ,GUGNECOURT ,88600,88222,11,48.25,6.616667,1.01
+ Gugney-aux-Aulx ,GUGNEY AUX AULX ,88450,88223,11,48.3,6.266667,1.16
+ Hadigny-les-Verrières ,HADIGNY LES VERRIERES ,88330,88224,11,48.316667,6.466667,0.78
+ Hadol ,HADOL ,88220,88225,11,48.083333,6.483333,1.35
+ Hagécourt ,HAGECOURT ,88270,88226,11,48.233333,6.15,0.81
+ Haillainville ,HAILLAINVILLE ,88330,88228,11,48.4,6.483333,1.54
+ Harchéchamp ,HARCHECHAMP ,88300,88229,11,48.383333,5.783333,1.46
+ Hardancourt ,HARDANCOURT ,88700,88230,11,48.383333,6.566667,1.39
+ Haréville ,HAREVILLE ,88800,88231,11,48.2,6,0.86
+ Harmonville ,HARMONVILLE ,88300,88232,11,48.483333,5.866667,2.3
+ Harol ,HAROL ,88270,88233,11,48.15,6.25,1.14
+ Harsault ,HARSAULT ,88240,88234,11,48.066667,6.233333,1.5
+ Hautmougey ,HAUTMOUGEY ,88240,88235,11,48.033333,6.233333,1.81
+ La Haye ,LA HAYE ,88240,88236,11,48.066667,6.216667,1.5
+ Hennecourt ,HENNECOURT ,88270,88237,11,48.216667,6.283333,1.09
+ Hennezel ,HENNEZEL ,88260,88238,11,48.05,6.116667,1.66
+ Hergugney ,HERGUGNEY ,88130,88239,11,48.383333,6.2,1.39
+ Herpelmont ,HERPELMONT ,88600,88240,11,48.166667,6.733333,1.16
+ Houécourt ,HOUECOURT ,88170,88241,11,48.3,5.9,1.14
+ Houéville ,HOUEVILLE ,88300,88242,11,48.366667,5.816667,1.37
+ Housseras ,HOUSSERAS ,88700,88243,11,48.316667,6.716667,1.56
+ La Houssière ,LA HOUSSIERE ,88430,88244,11,48.2,6.85,1.48
+ Hurbache ,HURBACHE ,88210,88245,11,48.35,6.933333,2.15
+ Hymont ,HYMONT ,88500,88246,11,48.266667,6.15,1.03
+ Igney ,IGNEY ,88150,88247,11,48.283333,6.4,0.7
+ Isches ,ISCHES ,88320,88248,11,48.016667,5.833333,1.96
+ Jainvillotte ,JAINVILLOTTE ,88300,88249,11,48.266667,5.7,1.69
+ Jarménil ,JARMENIL ,88550,88250,11,48.116667,6.566667,1.05
+ Jeanménil ,JEANMENIL ,88700,88251,11,48.333333,6.683333,1.04
+ Jésonville ,JESONVILLE ,88260,88252,11,48.133333,6.116667,0.89
+ Jeuxey ,JEUXEY ,88000,88253,11,48.2,6.483333,0.47
+ Jorxey ,JORXEY ,88500,88254,11,48.3,6.233333,1.97
+ Jubainville ,JUBAINVILLE ,88630,88255,11,48.466667,5.75,2.15
+ Jussarupt ,JUSSARUPT ,88640,88256,11,48.166667,6.75,1.2
+ Juvaincourt ,JUVAINCOURT ,88500,88257,11,48.333333,6.05,0.93
+ Lamarche ,LAMARCHE ,88320,88258,11,48.066667,5.783333,1.5
+ Landaville ,LANDAVILLE ,88300,88259,11,48.283333,5.75,1.55
+ Langley ,LANGLEY ,88130,88260,11,48.366667,6.333333,1.86
+ Laval-sur-Vologne ,LAVAL SUR VOLOGNE ,88600,88261,11,48.2,6.7,1.07
+ Laveline-devant-Bruyères ,LAVELINE DEVANT BRUYERES ,88600,88262,11,48.183333,6.75,1.2
+ Laveline-du-Houx ,LAVELINE DU HOUX ,88640,88263,11,48.133333,6.7,1.62
+ Légéville et Bonfays ,LEGEVILLE ET BONFAYS ,88270,88264,11,48.183333,6.15,0.92
+ Lemmecourt ,LEMMECOURT ,88300,88265,11,48.266667,5.733333,1.6
+ Lerrain ,LERRAIN ,88260,88267,11,48.15,6.15,1.26
+ Lesseux ,LESSEUX ,88490,88268,11,48.283333,7.083333,2.12
+ Liézey ,LIEZEY ,88400,88269,11,48.1,6.8,1.45
+ Liffol-le-Grand ,LIFFOL LE GRAND ,88350,88270,11,48.316667,5.583333,2.01
+ Lignéville ,LIGNEVILLE ,88800,88271,11,48.166667,5.95,1.01
+ Lironcourt ,LIRONCOURT ,88410,88272,11,47.966667,5.9,2.42
+ Longchamp ,LONGCHAMP ,88000,88273,11,48.216667,6.516667,0.76
+ Longchamp-sous-Châtenois ,LONGCHAMP SOUS CHATENOIS ,88170,88274,11,48.283333,5.833333,1.32
+ Lubine ,LUBINE ,88490,88275,11,48.316667,7.15,2.31
+ Lusse ,LUSSE ,88490,88276,11,48.283333,7.1,2.17
+ Luvigny ,LUVIGNY ,88110,88277,11,48.5,7.066667,2.45
+ Maconcourt ,MACONCOURT ,88170,88278,11,48.366667,5.933333,1.24
+ Madecourt ,MADECOURT ,88270,88279,11,48.233333,6.116667,1.27
+ Madegney ,MADEGNEY ,88450,88280,11,48.283333,6.283333,1.05
+ Le Magny ,LE MAGNY ,88240,88282,11,47.966667,6.166667,2.42
+ Malaincourt ,MALAINCOURT ,88140,88283,11,48.216667,5.766667,1.51
+ Mandray ,MANDRAY ,88650,88284,11,48.216667,7,1.89
+ Mandres-sur-Vair ,MANDRES SUR VAIR ,88800,88285,11,48.216667,5.9,1.25
+ Marainville-sur-Madon ,MARAINVILLE SUR MADON ,88130,88286,11,48.4,6.166667,1.8
+ Marey ,MAREY ,88320,88287,11,48.1,5.9,1.21
+ Maroncourt ,MARONCOURT ,88270,88288,11,48.25,6.15,0.9
+ Martigny-les-Bains ,MARTIGNY LES BAINS ,88320,88289,11,48.1,5.816667,1.37
+ Martigny-lès-Gerbonvaux ,MARTIGNY LES GERBONVAUX ,88300,88290,11,48.45,5.8,2
+ Martinvelle ,MARTINVELLE ,88410,88291,11,47.966667,6,2.42
+ Mattaincourt ,MATTAINCOURT ,88500,88292,11,48.283333,6.133333,0.7
+ Maxey-sur-Meuse ,MAXEY SUR MEUSE ,88630,88293,11,48.45,5.7,2
+ Mazeley ,MAZELEY ,88150,88294,11,48.25,6.333333,1.86
+ Mazirot ,MAZIROT ,88500,88295,11,48.316667,6.15,0.8
+ Médonville ,MEDONVILLE ,88140,88296,11,48.216667,5.733333,1.6
+ Méménil ,MEMENIL ,88600,88297,11,48.216667,6.616667,0.9
+ Ménarmont ,MENARMONT ,88700,88298,11,48.416667,6.65,1.69
+ Ménil-en-Xaintois ,MENIL EN XAINTOIS ,88500,88299,11,48.316667,5.966667,1.76
+ Ménil-de-Senones ,MENIL DE SENONES ,88210,88300,11,48.383333,7,1.89
+ Ménil-sur-Belvitte ,MENIL SUR BELVITTE ,88700,88301,11,48.383333,6.7,1.39
+ Le Ménil ,LE MENIL ,88160,88302,11,47.89328,6.742881,-1
+ Midrevaux ,MIDREVAUX ,88630,88303,11,48.383333,5.616667,1.92
+ Mirecourt ,MIRECOURT ,88500,88304,11,48.3,6.133333,0.63
+ Le Mont ,LE MONT ,88210,88306,11,48.416667,7.033333,1.99
+ Mont-lès-Lamarche ,MONT LES LAMARCHE ,88320,88307,11,48.016667,5.8,1.96
+ Mont-lès-Neufchâteau ,MONT LES NEUFCHATEAU ,88300,88308,11,48.35,5.633333,1.87
+ Monthureux-le-Sec ,MONTHUREUX LE SEC ,88800,88309,11,48.166667,6.033333,1.5
+ Monthureux-sur-Saône ,MONTHUREUX SUR SAONE ,88410,88310,11,48.033333,5.966667,1.81
+ Montmotier ,MONTMOTIER ,88240,88311,11,47.966667,6.183333,2.42
+ Morelmaison ,MORELMAISON ,88170,88312,11,48.316667,5.916667,1.09
+ Moriville ,MORIVILLE ,88330,88313,11,48.35,6.433333,1.08
+ Morizécourt ,MORIZECOURT ,88320,88314,11,48.066667,5.866667,1.5
+ Mortagne ,MORTAGNE ,88600,88315,11,48.266667,6.75,1.2
+ Morville ,MORVILLE ,88140,88316,11,48.233333,5.8,1.41
+ Moyemont ,MOYEMONT ,88700,88318,11,48.35,6.533333,1.22
+ Moyenmoutier ,MOYENMOUTIER ,88420,88319,11,48.383333,6.916667,1.66
+ Nayemont-les-Fosses ,NAYEMONT LES FOSSES ,88100,88320,11,48.3,7.016667,1.94
+ Neufchâteau ,NEUFCHATEAU ,88300,88321,11,48.35,5.7,1.69
+ Neuvillers-sur-Fave ,NEUVILLERS SUR FAVE ,88100,88326,11,48.283333,7.033333,1.99
+ Nomexy ,NOMEXY ,88440,88327,11,48.3,6.383333,0.63
+ Nompatelize ,NOMPATELIZE ,88470,88328,11,48.333333,6.85,1.48
+ Nonville ,NONVILLE ,88260,88330,11,48.083333,5.983333,1.35
+ Nonzeville ,NONZEVILLE ,88600,88331,11,48.266667,6.633333,0.97
+ Norroy ,NORROY ,88800,88332,11,48.216667,5.916667,1.09
+ Nossoncourt ,NOSSONCOURT ,88700,88333,11,48.4,6.666667,1.54
+ Oëlleville ,OELLEVILLE ,88500,88334,11,48.333333,6.016667,1.1
+ Offroicourt ,OFFROICOURT ,88500,88335,11,48.283333,6.033333,0.93
+ Ollainville ,OLLAINVILLE ,88170,88336,11,48.266667,5.8,1.64
+ Oncourt ,ONCOURT ,88150,88337,11,48.25,6.366667,1.18
+ Ortoncourt ,ORTONCOURT ,88700,88338,11,48.366667,6.516667,1.43
+ Padoux ,PADOUX ,88700,88340,11,48.283333,6.566667,1.4
+ Pair-et-Grandrupt ,PAIR ET GRANDRUPT ,88100,88341,11,48.283333,7.016667,1.94
+ Pallegney ,PALLEGNEY ,88330,88342,11,48.3,6.45,0.63
+ Parey-sous-Montfort ,PAREY SOUS MONTFORT ,88800,88343,11,48.25,5.95,1
+ Pargny-sous-Mureau ,PARGNY SOUS MUREAU ,88350,88344,11,48.366667,5.6,1.96
+ La Petite-Raon ,LA PETITE RAON ,88210,88346,11,48.4,7,1.89
+ Pierrefitte ,PIERREFITTE ,88270,88347,11,48.166667,6.183333,0.78
+ Plainfaing ,PLAINFAING ,88230,88349,11,48.166667,7.016667,1.94
+ Pleuvezain ,PLEUVEZAIN ,88170,88350,11,48.383333,5.916667,1.39
+ Plombières-les-Bains ,PLOMBIERES LES BAINS ,88370,88351,11,47.966667,6.483333,2.42
+ Pompierre ,POMPIERRE ,88300,88352,11,48.266667,5.666667,1.78
+ Pont-lès-Bonfays ,PONT LES BONFAYS ,88260,88353,11,48.166667,6.133333,1.15
+ Pont-sur-Madon ,PONT SUR MADON ,88500,88354,11,48.366667,6.15,1.24
+ Portieux ,PORTIEUX ,88330,88355,11,48.35,6.35,1.82
+ Les Poulières ,LES POULIERES ,88600,88356,11,48.2,6.8,1.68
+ Poussay ,POUSSAY ,88500,88357,11,48.316667,6.116667,0.78
+ Pouxeux ,POUXEUX ,88550,88358,11,48.1,6.566667,1.2
+ Prey ,PREY ,88600,88359,11,48.183333,6.683333,1.02
+ Provenchères-lès-Darney ,PROVENCHERES LES DARNEY ,88260,88360,11,48.133333,5.95,1.67
+ Provenchères-sur-Fave ,PROVENCHERES SUR FAVE ,88490,88361,11,48.316667,7.083333,2.12
+ Le Puid ,LE PUID ,88210,88362,11,48.4,7.05,2.03
+ Punerot ,PUNEROT ,88630,88363,11,48.483333,5.816667,2.3
+ Puzieux ,PUZIEUX ,88500,88364,11,48.333333,6.1,0.93
+ Racécourt ,RACECOURT ,88270,88365,11,48.25,6.183333,0.55
+ Rainville ,RAINVILLE ,88170,88366,11,48.35,5.883333,1.18
+ Rambervillers ,RAMBERVILLERS ,88700,88367,11,48.35,6.633333,1.08
+ Ramecourt ,RAMECOURT ,88500,88368,11,48.316667,6.1,0.78
+ Ramonchamp ,RAMONCHAMP ,88160,88369,11,47.89,6.7379,-1
+ Rancourt ,RANCOURT ,88270,88370,11,48.216667,6.116667,1.25
+ Raon-aux-Bois ,RAON AUX BOIS ,88220,88371,11,48.05,6.516667,1.66
+ Raon-l'Étape ,RAON L ETAPE ,88110,88372,11,48.4,6.85,2.27
+ Raon-sur-Plaine ,RAON SUR PLAINE ,88110,88373,11,48.516667,7.1,2.61
+ Rapey ,RAPEY ,88130,88374,11,48.316667,6.25,1.06
+ Raves ,RAVES ,88520,88375,11,48.266667,7.05,2.03
+ Rebeuville ,REBEUVILLE ,88300,88376,11,48.333333,5.7,1.69
+ Regnévelle ,REGNEVELLE ,88410,88377,11,47.983333,5.966667,2.26
+ Regney ,REGNEY ,88450,88378,11,48.283333,6.3,0.96
+ Rehaincourt ,REHAINCOURT ,88330,88379,11,48.366667,6.466667,1.24
+ Rehaupal ,REHAUPAL ,88640,88380,11,48.116667,6.733333,1.16
+ Relanges ,RELANGES ,88260,88381,11,48.116667,6.016667,1.05
+ Remicourt ,REMICOURT ,88500,88382,11,48.283333,6.066667,0.68
+ Remiremont ,REMIREMONT ,88200,88383,11,48.016667,6.583333,1.96
+ Remoncourt ,REMONCOURT ,88800,88385,11,48.233333,6.05,1.49
+ Rémoville ,REMOVILLE ,88170,88387,11,48.366667,5.833333,1.32
+ Repel ,REPEL ,88500,88389,11,48.35,5.975,-1
+ Robécourt ,ROBECOURT ,88320,88390,11,48.133333,5.7,1.69
+ Rochesson ,ROCHESSON ,88120,88391,11,48.016667,6.783333,1.96
+ Rocourt ,ROCOURT ,88320,88392,11,48.1,5.733333,1.6
+ Rollainville ,ROLLAINVILLE ,88300,88393,11,48.366667,5.733333,1.6
+ Romain-aux-Bois ,ROMAIN AUX BOIS ,88320,88394,11,48.083333,5.716667,1.64
+ Romont ,ROMONT ,88700,88395,11,48.366667,6.583333,1.24
+ Les Rouges-Eaux ,LES ROUGES EAUX ,88600,88398,11,48.266667,6.816667,2.02
+ Le Roulier ,LE ROULIER ,88460,88399,11,48.166667,6.616667,0.84
+ Rouvres-en-Xaintois ,ROUVRES EN XAINTOIS ,88500,88400,11,48.316667,6.033333,0.83
+ Rouvres-la-Chétive ,ROUVRES LA CHETIVE ,88170,88401,11,48.316667,5.783333,1.58
+ Roville-aux-Chênes ,ROVILLE AUX CHENES ,88700,88402,11,48.383333,6.6,1.39
+ Rozerotte ,ROZEROTTE ,88500,88403,11,48.25,6.083333,0.89
+ Rozières-sur-Mouzon ,ROZIERES SUR MOUZON ,88320,88404,11,48.116667,5.7,1.69
+ Ruaux ,RUAUX ,88370,88405,11,47.966667,6.416667,2.42
+ Rugney ,RUGNEY ,88130,88406,11,48.35,6.25,1.08
+ Ruppes ,RUPPES ,88630,88407,11,48.466667,5.766667,2.15
+ Rupt-sur-Moselle ,RUPT SUR MOSELLE ,88360,88408,11,47.933333,6.666667,2.72
+ Saint-Amé ,SAINT AME ,88120,88409,11,48.033333,6.666667,1.81
+ Saint-Baslemont ,SAINT BASLEMONT ,88260,88411,11,48.15,6,1.02
+ Saint-Benoît-la-Chipotte ,SAINT BENOIT LA CHIPOTTE,88700,88412,11,48.366667,6.733333,1.61
+ Saint-Dié ,SAINT DIE ,88100,88413,11,48.283333,6.95,1.76
+ Saint-Étienne-lès-Remiremont ,SAINT ETIENNE LES REMIREMONT,88200,88415,11,48.033333,6.616667,1.81
+ Saint-Genest ,SAINT GENEST ,88700,88416,11,48.35,6.516667,1.45
+ Saint-Gorgon ,SAINT GORGON ,88700,88417,11,48.333333,6.65,0.93
+ Sainte-Hélène ,SAINTE HELENE ,88700,88418,11,48.283333,6.65,1.28
+ Saint-Jean-d'Ormont ,SAINT JEAN D ORMONT,88210,88419,11,48.333333,7,1.89
+ Saint-Jean-du-Marché ,SAINT JEAN DU MARCHE,88600,88420,11,48.15,6.683333,1.02
+ Saint-Julien ,SAINT JULIEN ,88410,88421,11,48.016667,5.9,1.96
+ Saint-Léonard ,SAINT LEONARD ,88650,88423,11,48.216667,6.95,1.76
+ Saint-Maurice-sur-Mortagne ,SAINT MAURICE SUR MORTAGNE,88700,88425,11,48.383333,6.583333,1.39
+ Saint-Maurice-sur-Moselle ,SAINT MAURICE SUR MOSELLE,88560,88426,11,47.866667,6.791667,-1
+ Saint-Menge ,SAINT MENGE ,88170,88427,11,48.283333,5.95,1.44
+ Saint-Michel-sur-Meurthe ,SAINT MICHEL SUR MEURTHE,88470,88428,11,48.316667,6.9,1.62
+ Saint-Nabord ,SAINT NABORD ,88200,88429,11,48.05,6.583333,1.66
+ Saint-Ouen-lès-Parey ,SAINT OUEN LES PAREY,88140,88430,11,48.183333,5.766667,1.51
+ Saint-paul ,SAINT PAUL ,88170,88431,11,48.333333,5.883333,1.18
+ Saint-Pierremont ,SAINT PIERREMONT ,88700,88432,11,48.433333,6.583333,1.85
+ Saint-Prancher ,SAINT PRANCHER ,88500,88433,11,48.35,5.95,2.06
+ Saint-Remimont ,SAINT REMIMONT ,88800,88434,11,48.25,5.9,1.37
+ Saint-Stail ,SAINT STAIL ,88210,88436,11,48.366667,7.066667,2.08
+ Saint-Vallier ,SAINT VALLIER ,88270,88437,11,48.283333,6.316667,1.81
+ La Salle ,LA SALLE ,88470,88438,11,48.333333,6.833333,1.43
+ Sanchey ,SANCHEY ,88390,88439,11,48.183333,6.366667,0.7
+ Sandaucourt ,SANDAUCOURT ,88170,88440,11,48.266667,5.85,1.28
+ Sans-Vallois ,SANS VALLOIS ,88260,88441,11,48.166667,6.1,0.79
+ Sapois ,SAPOIS ,88120,88442,11,48.016667,6.75,1.96
+ Sartes ,SARTES ,88300,88443,11,48.25,5.683333,1.74
+ Le Saulcy ,LE SAULCY ,88210,88444,11,48.416667,7.05,2.03
+ Saulcy-sur-Meurthe ,SAULCY SUR MEURTHE ,88580,88445,11,48.233333,6.966667,1.8
+ Saulxures-lès-Bulgnéville ,SAULXURES LES BULGNEVILLE ,88140,88446,11,48.2,5.8,1.41
+ Saulxures-sur-Moselotte ,SAULXURES SUR MOSELOTTE ,88290,88447,11,47.95,6.766667,2.57
+ Sauville ,SAUVILLE ,88140,88448,11,48.166667,5.733333,1.6
+ Savigny ,SAVIGNY ,88130,88449,11,48.35,6.216667,1.08
+ Senaide ,SENAIDE ,88320,88450,11,47.966667,5.8,2.42
+ Senones ,SENONES ,88210,88451,11,48.4,6.983333,1.85
+ Senonges ,SENONGES ,88260,88452,11,48.15,6.066667,0.74
+ Seraumont ,SERAUMONT ,88630,88453,11,48.433333,5.6,1.96
+ Sercoeur ,SERCOEUR ,88600,88454,11,48.25,6.533333,2.12
+ Serécourt ,SERECOURT ,88320,88455,11,48.05,5.85,1.66
+ Serocourt ,SEROCOURT ,88320,88456,11,48.1,5.9,1.21
+ Sionne ,SIONNE ,88630,88457,11,48.4,5.65,1.83
+ Socourt ,SOCOURT ,88130,88458,11,48.4,6.25,1.54
+ Soncourt ,SONCOURT ,88170,88459,11,48.4,5.916667,1.54
+ Suriauville ,SURIAUVILLE ,88140,88461,11,48.166667,5.866667,1.27
+ Le Syndicat ,LE SYNDICAT ,88120,88462,11,48.016667,6.683333,1.96
+ Taintrux ,TAINTRUX ,88100,88463,11,48.25,6.9,1.96
+ Tendon ,TENDON ,88460,88464,11,48.116667,6.683333,1.79
+ Thaon-les-Vosges ,THAON LES VOSGES ,88150,88465,11,48.25,6.416667,0.29
+ They-sous-Montfort ,THEY SOUS MONTFORT ,88800,88466,11,48.233333,5.983333,0.91
+ Thiéfosse ,THIEFOSSE ,88290,88467,11,47.966667,6.733333,2.42
+ Le Thillot ,LE THILLOT ,88160,88468,11,47.8795,6.76495,-1
+ Thiraucourt ,THIRAUCOURT ,88500,88469,11,48.3,6.066667,0.68
+ Le Tholy ,LE THOLY ,88530,88470,11,48.083333,6.75,1.35
+ Les Thons ,LES THONS ,88410,88471,11,47.983333,5.883333,2.26
+ Thuillières ,THUILLIERES ,88260,88472,11,48.15,6.016667,0.82
+ Tignécourt ,TIGNECOURT ,88320,88473,11,48.05,5.9,1.66
+ Tilleux ,TILLEUX ,88300,88474,11,48.3,5.733333,1.6
+ Tollaincourt ,TOLLAINCOURT ,88320,88475,11,48.1,5.733333,1.6
+ Totainville ,TOTAINVILLE ,88500,88476,11,48.333333,5.983333,1.55
+ Trampot ,TRAMPOT ,88350,88477,11,48.366667,5.433333,2.42
+ Tranqueville-Graux ,TRANQUEVILLE GRAUX ,88300,88478,11,48.433333,5.85,1.85
+ Trémonzey ,TREMONZEY ,88240,88479,11,47.966667,6.233333,2.42
+ Ubéxy ,UBEXY ,88130,88480,11,48.333333,6.266667,0.93
+ Uriménil ,URIMENIL ,88220,88481,11,48.1,6.4,1.2
+ Urville ,URVILLE ,88140,88482,11,48.183333,5.75,1.55
+ Uxegney ,UXEGNEY ,88390,88483,11,48.2,6.366667,0.67
+ Uzemain ,UZEMAIN ,88220,88484,11,48.083333,6.35,1.51
+ Vagney ,VAGNEY ,88120,88486,11,48.016667,6.716667,1.96
+ Le Val-d'Ajol ,LE VAL D AJOL,88340,88487,11,47.916667,6.483333,2.87
+ Valfroicourt ,VALFROICOURT ,88270,88488,11,48.2,6.1,1.51
+ Valleroy-aux-Saules ,VALLEROY AUX SAULES ,88270,88489,11,48.25,6.15,0.9
+ Valleroy-le-Sec ,VALLEROY LE SEC ,88800,88490,11,48.183333,6.016667,1.08
+ Le Valtin ,LE VALTIN ,88230,88492,11,48.1,7.033333,1.99
+ Varmonzey ,VARMONZEY ,88450,88493,11,48.316667,6.283333,0.78
+ Vaubexy ,VAUBEXY ,88500,88494,11,48.283333,6.233333,2
+ Vaudéville ,VAUDEVILLE ,88000,88495,11,48.233333,6.55,1.6
+ Vaudoncourt ,VAUDONCOURT ,88140,88496,11,48.216667,5.808333,-1
+ Vaxoncourt ,VAXONCOURT ,88330,88497,11,48.283333,6.416667,1.01
+ Vecoux ,VECOUX ,88200,88498,11,47.983333,6.633333,2.26
+ Velotte-et-Tatignécourt ,VELOTTE ET TATIGNECOURT ,88270,88499,11,48.266667,6.166667,0.88
+ Ventron ,VENTRON ,88310,88500,11,47.933333,6.866667,2.72
+ Le Vermont ,LE VERMONT ,88210,88501,11,48.383333,7.066667,2.08
+ Vervezelle ,VERVEZELLE ,88600,88502,11,48.216667,6.75,1.2
+ Vexaincourt ,VEXAINCOURT ,88110,88503,11,48.5,7.05,2.45
+ Vicherey ,VICHEREY ,88170,88504,11,48.383333,5.933333,1.39
+ Vienville ,VIENVILLE ,88430,88505,11,48.166667,6.85,1.48
+ Vieux-Moulin ,VIEUX MOULIN ,88210,88506,11,48.4,7,1.89
+ Villers ,VILLERS ,88500,88507,11,48.3,6.166667,1.04
+ Ville-sur-Illon ,VILLE SUR ILLON ,88270,88508,11,48.183333,6.216667,0.51
+ Villoncourt ,VILLONCOURT ,88150,88509,11,48.266667,6.516667,1.95
+ Villotte ,VILLOTTE ,88320,88510,11,48.1,5.766667,1.51
+ Villouxel ,VILLOUXEL ,88350,88511,11,48.35,5.583333,2.01
+ Viménil ,VIMENIL ,88600,88512,11,48.233333,6.633333,0.88
+ Vincey ,VINCEY ,88450,88513,11,48.333333,6.333333,1.83
+ Viocourt ,VIOCOURT ,88170,88514,11,48.333333,5.866667,1.23
+ Vioménil ,VIOMENIL ,88260,88515,11,48.1,6.183333,1.71
+ Vittel ,VITTEL ,88800,88516,11,48.2,5.95,1
+ Viviers-le-Gras ,VIVIERS LE GRAS ,88260,88517,11,48.133333,5.933333,1.9
+ Viviers-lès-Offroicourt ,VIVIERS LES OFFROICOURT ,88500,88518,11,48.266667,6.016667,1.24
+ La Voivre ,LA VOIVRE ,88470,88519,11,48.333333,6.9,1.62
+ Les Voivres ,LES VOIVRES ,88240,88520,11,48.033333,6.3,1.81
+ Vouxey ,VOUXEY ,88170,88523,11,48.35,5.816667,1.37
+ Vrécourt ,VRECOURT ,88140,88524,11,48.166667,5.7,1.69
+ Vroville ,VROVILLE ,88500,88525,11,48.283333,6.166667,1.11
+ Wisembach ,WISEMBACH ,88520,88526,11,48.25,7.116667,2.22
+ Xaffévillers ,XAFFEVILLERS ,88700,88527,11,48.416667,6.616667,1.69
+ Xamontarupt ,XAMONTARUPT ,88460,88528,11,48.133333,6.65,0.93
+ Xaronval ,XARONVAL ,88130,88529,11,48.383333,6.183333,1.39
+ Xertigny ,XERTIGNY ,88220,88530,11,48.05,6.4,1.66
+ Xonrupt-Longemer ,XONRUPT LONGEMER ,88400,88531,11,48.083333,6.916667,1.66
+ Zincourt ,ZINCOURT ,88330,88532,11,48.3,6.433333,0.63
+ Accolay ,ACCOLAY ,89460,89001,11,47.666667,3.716667,1.66
+ Aigremont ,AIGREMONT ,89800,89002,11,47.716667,3.883333,2.07
+ Aillant-sur-Tholon ,AILLANT SUR THOLON ,89110,89003,11,47.866667,3.35,0.87
+ Aisy-sur-Armançon ,AISY SUR ARMANCON ,89390,89004,11,47.65,4.216667,2.24
+ Ancy-le-Franc ,ANCY LE FRANC ,89160,89005,11,47.766667,4.166667,2.06
+ Ancy-le-Libre ,ANCY LE LIBRE ,89160,89006,11,47.8,4.116667,1.88
+ Andryes ,ANDRYES ,89480,89007,11,47.516667,3.483333,1.68
+ Angely ,ANGELY ,89440,89008,11,47.566667,4.016667,1.52
+ Annay-la-Côte ,ANNAY LA COTE ,89200,89009,11,47.533333,3.883333,1.59
+ Annay-sur-Serein ,ANNAY SUR SEREIN ,89310,89010,11,47.733333,3.966667,1.34
+ Annéot ,ANNEOT ,89200,89011,11,47.516667,3.883333,1.68
+ Annoux ,ANNOUX ,89440,89012,11,47.633333,4.05,1.64
+ Appoigny ,APPOIGNY ,89380,89013,11,47.883333,3.533333,0.21
+ Arcy-sur-Cure ,ARCY SUR CURE ,89270,89015,11,47.6,3.75,1.26
+ Argentenay ,ARGENTENAY ,89160,89016,11,47.816667,4.116667,1.88
+ Argenteuil-sur-Armançon ,ARGENTEUIL SUR ARMANCON ,89160,89017,11,47.75,4.1,1.82
+ Armeau ,ARMEAU ,89500,89018,11,48.05,3.316667,0.99
+ Arthonnay ,ARTHONNAY ,89740,89019,11,47.933333,4.216667,2.24
+ Asnières-sous-Bois ,ASNIERES SOUS BOIS ,89660,89020,11,47.483333,3.65,1.84
+ Asquins ,ASQUINS ,89450,89021,11,47.483333,3.75,1.84
+ Augy ,AUGY ,89290,89023,11,47.766667,3.616667,0.66
+ Auxerre ,AUXERRE ,89000,89024,11,47.8,3.566667,0.27
+ Avallon ,AVALLON ,89200,89025,11,47.483333,3.9,1.84
+ Avrolles ,AVROLLES ,89600,89026,11,48,3.683333,1.03
+ Bagneaux ,BAGNEAUX ,89190,89027,11,48.233333,3.583333,1.87
+ Baon ,BAON ,89430,89028,11,47.85,4.133333,1.94
+ Bassou ,BASSOU ,89400,89029,11,47.916667,3.5,1.06
+ Bazarnes ,BAZARNES ,89460,89030,11,47.666667,3.666667,0.93
+ Beaumont ,BEAUMONT ,89250,89031,11,47.916667,3.566667,0.7
+ Beauvilliers ,BEAUVILLIERS ,89630,89032,11,47.416667,4.033333,2.17
+ Beauvoir ,BEAUVOIR ,89240,89033,11,47.8,3.366667,1.07
+ Beine ,BEINE ,89800,89034,11,47.816667,3.716667,1.19
+ Bellechaume ,BELLECHAUME ,89210,89035,11,48.05,3.6,0.96
+ La Belliole ,LA BELLIOLE ,89150,89036,11,48.15,3.083333,1.83
+ Béon ,BEON ,89410,89037,11,47.95,3.316667,1
+ Bernouil ,BERNOUIL ,89360,89038,11,47.9,3.9,1.71
+ Béru ,BERU ,89700,89039,11,47.8,3.9,1.33
+ Bessy-sur-Cure ,BESSY SUR CURE ,89270,89040,11,47.616667,3.733333,1.18
+ Blacy ,BLACY ,89440,89043,11,47.566667,4.05,1.64
+ Blannay ,BLANNAY ,89200,89044,11,47.533333,3.783333,1.59
+ Bleigny-le-Carreau ,BLEIGNY LE CARREAU ,89230,89045,11,47.833333,3.683333,1.34
+ Bléneau ,BLENEAU ,89220,89046,11,47.7,2.95,2.31
+ Bligny-en-Othe ,BLIGNY EN OTHE ,89210,89047,11,48.016667,3.6,0.8
+ Boeurs-en-Othe ,BOEURS EN OTHE ,89770,89048,11,48.133333,3.716667,1.37
+ Bois-d'Arcy ,BOIS D ARCY ,89660,89049,11,47.55,3.716667,1.51
+ Bonnard ,BONNARD ,89400,89050,11,47.933333,3.516667,0.57
+ Les Bordes ,LES BORDES ,89500,89051,11,48.1,3.383333,1.58
+ Bouilly ,BOUILLY ,89600,89052,11,47.966667,3.666667,1.28
+ Branches ,BRANCHES ,89113,89053,11,47.883333,3.483333,0.66
+ Brannay ,BRANNAY ,89150,89054,11,48.233333,3.116667,1.87
+ Brienon-sur-Armançon ,BRIENON SUR ARMANCON ,89210,89055,11,48,3.616667,0.72
+ Brion ,BRION ,89400,89056,11,48,3.483333,1.47
+ Brosses ,BROSSES ,89660,89057,11,47.533333,3.683333,1.59
+ Bussy-en-Othe ,BUSSY EN OTHE ,89400,89059,11,48.016667,3.516667,1.72
+ Bussy-le Repos ,BUSSY LE REPOS ,89500,89060,11,48.05,3.233333,1.29
+ Butteaux ,BUTTEAUX ,89360,89061,11,47.966667,3.816667,0.9
+ Carisey ,CARISEY ,89360,89062,11,47.916667,3.85,0.93
+ La Celle-Saint-Cyr ,LA CELLE SAINT CYR,89116,89063,11,47.966667,3.3,1.74
+ Censy ,CENSY ,89310,89064,11,47.7,4.05,1.64
+ Cérilly ,CERILLY ,89320,89065,11,48.183333,3.616667,1.62
+ Cerisiers ,CERISIERS ,89320,89066,11,48.133333,3.483333,1.37
+ Cézy ,CEZY ,89410,89067,11,47.983333,3.333333,1
+ Chablis ,CHABLIS ,89800,89068,11,47.816667,3.8,0.75
+ Chailley ,CHAILLEY ,89770,89069,11,48.083333,3.7,1.13
+ Chambeugle ,CHAMBEUGLE ,89120,89070,11,47.866667,3.033333,2.01
+ Chamoux ,CHAMOUX ,89660,89071,11,47.45,3.666667,2.01
+ Champcevrais ,CHAMPCEVRAIS ,89220,89072,11,47.75,2.966667,2.25
+ Champignelles ,CHAMPIGNELLES ,89350,89073,11,47.766667,3.066667,1.89
+ Champlay ,CHAMPLAY ,89300,89075,11,47.95,3.433333,1.37
+ Champlost ,CHAMPLOST ,89210,89076,11,48.033333,3.666667,1.03
+ Champvallon ,CHAMPVALLON ,89710,89078,11,47.933333,3.35,0.92
+ Chamvres ,CHAMVRES ,89300,89079,11,47.95,3.366667,0.81
+ La Chapelle-sur-Oreuse ,LA CHAPELLE SUR OREUSE,89260,89080,11,48.283333,3.3,2.12
+ La Chapelle-Vaupelteigne ,LA CHAPELLE VAUPELTEIGNE ,89800,89081,11,47.85,3.766667,0.81
+ Charbuy ,CHARBUY ,89113,89083,11,47.816667,3.466667,1.89
+ Charentenay ,CHARENTENAY ,89580,89084,11,47.65,3.55,1.08
+ Charmoy ,CHARMOY ,89400,89085,11,47.941667,3.491667,-1
+ Charny ,CHARNY ,89120,89086,11,47.883333,3.091667,-1
+ Chassignelles ,CHASSIGNELLES ,89160,89087,11,47.75,4.183333,2.12
+ Chassy ,CHASSY ,89110,89088,11,47.85,3.35,0.87
+ Chastellux-sur-Cure ,CHASTELLUX SUR CURE ,89630,89089,11,47.383333,3.883333,2.33
+ Chastenay ,CHASTENAY ,89560,89090,11,47.65,3.383333,1.02
+ Châtel-Censoir ,CHATEL CENSOIR ,89660,89091,11,47.516667,3.633333,1.68
+ Châtel-Gérard ,CHATEL GERARD ,89310,89092,11,47.633333,4.083333,1.76
+ Chaumont ,CHAUMONT ,89370,89093,11,48.316667,3.1,2.28
+ Chaumot ,CHAUMOT ,89500,89094,11,48.083333,3.216667,-1
+ Chemilly-sur-Serein ,CHEMILLY SUR SEREIN ,89800,89095,11,47.766667,3.85,1.15
+ Chemilly-sur-Yonne ,CHEMILLY SUR YONNE ,89250,89096,11,47.9,3.566667,0.76
+ Chêne-Arnoult ,CHENE ARNOULT ,89120,89097,11,47.9,3.066667,1.89
+ Cheney ,CHENEY ,89700,89098,11,47.9,3.95,1.28
+ Cheny ,CHENY ,89400,89099,11,47.95,3.533333,0.61
+ Chéroy ,CHEROY ,89690,89100,11,48.2,3,2.13
+ Chéu ,CHEU ,89600,89101,11,47.966667,3.766667,1.17
+ Chevannes ,CHEVANNES ,89240,89102,11,47.75,3.5,1.43
+ Chevillon ,CHEVILLON ,89120,89103,11,47.916667,3.183333,1.73
+ Chichée ,CHICHEE ,89800,89104,11,47.8,3.833333,0.87
+ Chichery ,CHICHERY ,89400,89105,11,47.9,3.516667,1.47
+ Chigy ,CHIGY ,89190,89107,11,48.2,3.483333,1.7
+ Chitry ,CHITRY ,89530,89108,11,47.766667,3.7,1
+ Cisery ,CISERY ,89420,89109,11,47.516667,4.066667,1.7
+ Civry-sur-Serein ,CIVRY SUR SEREIN ,89440,89110,11,47.6,4,1.46
+ Les Clérimois ,LES CLERIMOIS ,89190,89111,11,48.233333,3.433333,1.87
+ Collan ,COLLAN ,89700,89112,11,47.85,3.883333,1.1
+ Collemiers ,COLLEMIERS ,89100,89113,11,48.15,3.233333,1.46
+ Commissey ,COMMISSEY ,89430,89114,11,47.85,4.066667,1.7
+ Compigny ,COMPIGNY ,89140,89115,11,48.366667,3.266667,2.53
+ Cornant ,CORNANT ,89500,89116,11,48.133333,3.183333,1.47
+ Coulangeron ,COULANGERON ,89580,89117,11,47.683333,3.466667,1.89
+ Coulanges-la-Vineuse ,COULANGES LA VINEUSE ,89580,89118,11,47.7,3.583333,0.91
+ Coulanges-sur-Yonne ,COULANGES SUR YONNE ,89480,89119,11,47.516667,3.533333,1.68
+ Coulours ,COULOURS ,89320,89120,11,48.166667,3.583333,1.54
+ Courceaux ,COURCEAUX ,89260,89121,11,48.383333,3.383333,2.61
+ Courgenay ,COURGENAY ,89190,89122,11,48.283333,3.55,2.12
+ Courgis ,COURGIS ,89800,89123,11,47.766667,3.75,0.89
+ Courlon-sur-Yonne ,COURLON SUR YONNE ,89140,89124,11,48.333333,3.166667,2.36
+ Courson-les-Carrières ,COURSON LES CARRIERES ,89560,89125,11,47.6,3.5,1.26
+ Courtoin ,COURTOIN ,89150,89126,11,48.116667,3.1,1.77
+ Courtois-sur-Yonne ,COURTOIS SUR YONNE ,89100,89127,11,48.216667,3.25,1.79
+ Coutarnoux ,COUTARNOUX ,89440,89128,11,47.583333,3.966667,1.35
+ Crain ,CRAIN ,89480,89129,11,47.533333,3.55,1.59
+ Cravant ,CRAVANT ,89460,89130,11,47.683333,3.683333,1.16
+ Cruzy-le-Châtel ,CRUZY LE CHATEL ,89740,89131,11,47.85,4.2,2.18
+ Cry ,CRY ,89390,89132,11,47.7,4.233333,2.3
+ Cudot ,CUDOT ,89116,89133,11,47.983333,3.183333,1.77
+ Cussy-les-Forges ,CUSSY LES FORGES ,89420,89134,11,47.466667,4.033333,1.92
+ Cusy ,CUSY ,89160,89135,11,47.766667,4.166667,2.06
+ Cuy ,CUY ,89140,89136,11,48.25,3.266667,1.95
+ Dannemoine ,DANNEMOINE ,89700,89137,11,47.9,3.966667,1.34
+ Dicy ,DICY ,89120,89138,11,47.933333,3.1,1.77
+ Diges ,DIGES ,89240,89139,11,47.733333,3.4,0.73
+ Dilo ,DILO ,89320,89140,11,48.083333,3.55,1.13
+ Dissangis ,DISSANGIS ,89440,89141,11,47.6,3.983333,1.4
+ Dixmont ,DIXMONT ,89500,89142,11,48.083333,3.416667,2.06
+ Dollot ,DOLLOT ,89150,89143,11,48.216667,3.066667,1.89
+ Domats ,DOMATS ,89150,89144,11,48.116667,3.066667,1.89
+ Domecy-sur-Cure ,DOMECY SUR CURE ,89450,89145,11,47.4,3.8,2.25
+ Domecy-sur-le-Vault ,DOMECY SUR LE VAULT,89200,89146,11,47.5,3.816667,1.76
+ Dracy ,DRACY ,89130,89147,11,47.758333,3.25,-1
+ Dyé ,DYE ,89360,89149,11,47.9,3.866667,1.09
+ Égleny ,EGLENY ,89240,89150,11,47.816667,3.366667,1.23
+ Égriselles-le-Bocage ,EGRISELLES LE BOCAGE ,89500,89151,11,48.116667,3.183333,1.47
+ Épineau-les-Voves ,EPINEAU LES VOVES ,89400,89152,11,47.95,3.466667,1.22
+ Épineuil ,EPINEUIL ,89700,89153,11,47.866667,3.983333,1.4
+ Escamps ,ESCAMPS ,89240,89154,11,47.733333,3.466667,1.03
+ Escolives-Sainte-Camille ,ESCOLIVES SAINTE CAMILLE ,89290,89155,11,47.716667,3.616667,0.69
+ Esnon ,ESNON ,89210,89156,11,47.983333,3.583333,1.28
+ Essert ,ESSERT ,89270,89157,11,47.633333,3.783333,1.1
+ Étais-la-Sauvin ,ETAIS LA SAUVIN ,89480,89158,11,47.50379,3.3419,-1
+ Étaule ,ETAULE ,89200,89159,11,47.516667,3.916667,1.68
+ Étigny ,ETIGNY ,89510,89160,11,48.133333,3.283333,1.37
+ Étivey ,ETIVEY ,89310,89161,11,47.666667,4.15,2
+ Évry ,EVRY ,89140,89162,11,48.266667,3.25,2.03
+ La Ferté-Loupière ,LA FERTE LOUPIERE ,89110,89163,11,47.9,3.233333,1.82
+ Festigny ,FESTIGNY ,89480,89164,11,47.55,3.533333,1.51
+ Flacy ,FLACY ,89190,89165,11,48.216667,3.6,1.79
+ Fleurigny ,FLEURIGNY ,89260,89166,11,48.283333,3.366667,2.12
+ Fleury-la-Vallée ,FLEURY LA VALLEE ,89113,89167,11,47.866667,3.45,0.52
+ Fleys ,FLEYS ,89800,89168,11,47.816667,3.866667,1.25
+ Foissy-lès-Vézelay ,FOISSY LES VEZELAY ,89450,89170,11,47.433333,3.766667,2.09
+ Foissy-sur-Vanne ,FOISSY SUR VANNE ,89190,89171,11,48.216667,3.5,1.79
+ Fontaine-la-Gaillarde ,FONTAINE LA GAILLARDE ,89100,89172,11,48.216667,3.383333,1.79
+ Fontaines ,FONTAINES ,89130,89173,11,47.7,3.266667,1.17
+Fontenailles, ,89560,89174,11,47.633333,3.466667,1.1
+ Fontenay-près-Chablis ,FONTENAY PRES CHABLIS ,89800,89175,11,47.85,3.816667,0.83
+ Fontenay-près-Vézelay ,FONTENAY PRES VEZELAY ,89450,89176,11,47.416667,3.733333,2.17
+ Fontenay-sous-Fouronnes ,FONTENAY SOUS FOURONNES ,89660,89177,11,47.616667,3.6,1.7
+ Fontenouilles ,FONTENOUILLES ,89120,89178,11,47.883333,3.05,1.95
+ Fontenoy ,FONTENOY ,89520,89179,11,47.65,3.3,1.21
+ Fouchères ,FOUCHERES ,89150,89180,11,48.166667,3.133333,1.65
+ Fournaudin ,FOURNAUDIN ,89320,89181,11,48.15,3.65,1.58
+ Fouronnes ,FOURONNES ,89560,89182,11,47.616667,3.566667,1.86
+ Fulvy ,FULVY ,89160,89184,11,47.733333,4.166667,2.06
+ Fyé ,FYE ,89800,89185,11,47.833333,3.816667,0.81
+ Germigny ,GERMIGNY ,89600,89186,11,47.983333,3.783333,1.55
+ Gigny ,GIGNY ,89160,89187,11,47.816667,4.3,2.54
+ Girolles ,GIROLLES ,89200,89188,11,47.533333,3.85,1.59
+ Gisy-les-Nobles ,GISY LES NOBLES ,89140,89189,11,48.283333,3.25,2.12
+ Givry ,GIVRY ,89200,89190,11,47.516667,3.8,-1
+ Gland ,GLAND ,89740,89191,11,47.816667,4.216667,2.24
+ Grandchamp ,GRANDCHAMP ,89350,89192,11,47.8,3.15,1.59
+ Grange-le-Bocage ,GRANGE LE BOCAGE ,89260,89193,11,48.333333,3.433333,2.36
+ Grimault ,GRIMAULT ,89310,89194,11,47.65,3.983333,1.4
+ Gron ,GRON ,89100,89195,11,48.15,3.266667,1.46
+ Guerchy ,GUERCHY ,89113,89196,11,47.883333,3.45,0.51
+ Guillon ,GUILLON ,89420,89197,11,47.516667,4.1,1.82
+ Gurgy ,GURGY ,89250,89198,11,47.866667,3.566667,1.51
+ Gy-l'Évêque ,GY L EVEQUE ,89580,89199,11,47.716667,3.55,0.69
+ Hauterive ,HAUTERIVE ,89250,89200,11,47.933333,3.6,0.76
+ Héry ,HERY ,89550,89201,11,47.9,3.633333,0.22
+ Irancy ,IRANCY ,89290,89202,11,47.716667,3.666667,1.2
+ Island ,ISLAND ,89200,89203,11,47.466667,3.85,1.92
+ L'Isle-sur-Serein ,L ISLE SUR SEREIN,89440,89204,11,47.583333,4,1.46
+ Jaulges ,JAULGES ,89360,89205,11,47.966667,3.783333,1.5
+ Joigny ,JOIGNY ,89300,89206,11,47.983333,3.4,0.69
+ Joux-la-Ville ,JOUX LA VILLE ,89440,89208,11,47.616667,3.85,2.08
+ Jouy ,JOUY ,89150,89209,11,48.166667,2.966667,2.25
+ Jully ,JULLY ,89160,89210,11,47.783333,4.283333,2.48
+ Junay ,JUNAY ,89700,89211,11,47.883333,3.95,1.28
+ Jussy ,JUSSY ,89290,89212,11,47.716667,3.583333,1.16
+ Laduz ,LADUZ ,89110,89213,11,47.883333,3.416667,1.68
+ Lailly ,LAILLY ,89190,89214,11,48.25,3.533333,1.95
+ Lain ,LAIN ,89560,89215,11,47.616667,3.35,1.46
+ Lainsecq ,LAINSECQ ,89520,89216,11,47.55,3.266667,1.51
+ Lalande ,LALANDE ,89130,89217,11,47.683333,3.316667,0.99
+ Laroche-Saint-Cydroine ,LAROCHE SAINT CYDROINE ,89400,89218,11,47.966667,3.516667,0.55
+ Lasson ,LASSON ,89570,89219,11,48.066667,3.816667,1.04
+ Lavau ,LAVAU ,89170,89220,11,47.6,2.983333,2.19
+ Leugny ,LEUGNY ,89130,89221,11,47.683333,3.383333,1.71
+ Levis ,LEVIS ,89520,89222,11,47.65,3.316667,1.36
+ Lézinnes ,LEZINNES ,89160,89223,11,47.8,4.083333,1.76
+ Lichères-près-Aigremont ,LICHERES PRES AIGREMONT ,89800,89224,11,47.716667,3.85,1.73
+ Lichères-sur Yonne ,LICHERES SUR YONNE ,89660,89225,11,47.5,3.6,1.76
+ Lignorelles ,LIGNORELLES ,89800,89226,11,47.866667,3.733333,1.34
+ Ligny-le-Châtel ,LIGNY LE CHATEL ,89144,89227,11,47.9,3.75,1
+ Lindry ,LINDRY ,89240,89228,11,47.8,3.416667,0.63
+ Lixy ,LIXY ,89140,89229,11,48.233333,3.1,1.93
+ Looze ,LOOZE ,89300,89230,11,47.983333,3.433333,1.26
+ Lucy-le-Bois ,LUCY LE BOIS ,89200,89232,11,47.55,3.883333,1.51
+ Lucy-sur-Cure ,LUCY SUR CURE ,89270,89233,11,47.633333,3.75,1.1
+ Lucy-sur-Yonne ,LUCY SUR YONNE ,89480,89234,11,47.516667,3.583333,1.68
+ Magny ,MAGNY ,89200,89235,11,47.48414,3.98098,-1
+ Maillot ,MAILLOT ,89100,89236,11,48.183333,3.3,1.62
+ Mailly-la-Ville ,MAILLY LA VILLE ,89270,89237,11,47.6,3.666667,1.68
+ Mailly-le-Château ,MAILLY LE CHATEAU ,89660,89238,11,47.6,3.633333,1.26
+ Malay-le-Grand ,MALAY LE GRAND ,89100,89239,11,48.166667,3.333333,1.54
+ Malay-le-Petit ,MALAY LE PETIT ,89100,89240,11,48.166667,3.383333,1.71
+ Malicorne ,MALICORNE ,89120,89241,11,47.816667,3.1,1.77
+ Maligny ,MALIGNY ,89800,89242,11,47.866667,3.75,1.17
+ Marchais-Beton ,MARCHAIS BETON ,89120,89243,11,47.833333,3.05,1.95
+ Marmeaux ,MARMEAUX ,89420,89244,11,47.583333,4.1,1.82
+ Marsangy ,MARSANGY ,89500,89245,11,48.1,3.25,1.23
+ Massangis ,MASSANGIS ,89440,89246,11,47.616667,3.966667,1.34
+ Mélisey ,MELISEY ,89430,89247,11,47.916667,4.066667,1.7
+ Menades ,MENADES ,89450,89248,11,47.45,3.816667,2.01
+ Mercy ,MERCY ,89210,89249,11,48.033333,3.633333,0.88
+ Méré ,MERE ,89144,89250,11,47.9,3.816667,1
+ Merry-la-Vallée ,MERRY LA VALLEE ,89110,89251,11,47.8,3.333333,0.94
+ Merry-Sec ,MERRY SEC ,89560,89252,11,47.65,3.483333,1.02
+ Merry-sur-Yonne ,MERRY SUR YONNE ,89660,89253,11,47.566667,3.65,1.43
+ Mézilles ,MEZILLES ,89130,89254,11,47.7,3.166667,1.77
+ Michery ,MICHERY ,89140,89255,11,48.3,3.233333,2.2
+ Migé ,MIGE ,89580,89256,11,47.683333,3.55,0.85
+ Migennes ,MIGENNES ,89400,89257,11,47.966667,3.516667,0.55
+ Milly ,MILLY ,89800,89258,11,47.816667,3.766667,0.63
+ Môlay ,MOLAY ,89310,89259,11,47.733333,3.933333,1.22
+ Molesmes ,MOLESMES ,89560,89260,11,47.616667,3.466667,1.18
+ Molinons ,MOLINONS ,89190,89261,11,48.233333,3.533333,1.87
+ Molosmes ,MOLOSMES ,89700,89262,11,47.883333,4.05,1.83
+ Monéteau ,MONETEAU ,89470,89263,11,47.85,3.583333,1
+ Montigny-la-Resle ,MONTIGNY LA RESLE ,89230,89265,11,47.866667,3.683333,0.35
+ Montillot ,MONTILLOT ,89660,89266,11,47.516667,3.716667,1.68
+ Montréal ,MONTREAL ,89420,89267,11,47.533333,4.033333,1.59
+ Mont-Saint-Sulpice ,MONT SAINT SULPICE ,89250,89268,11,47.95,3.633333,1.8
+ Mouffy ,MOUFFY ,89560,89270,11,47.65,3.516667,1.11
+ Moulins-en-Tonnerrois ,MOULINS EN TONNERROIS ,89310,89271,11,47.733333,4.033333,1.58
+ Moulins-sur-Ouanne ,MOULINS SUR OUANNE ,89130,89272,11,47.716667,3.333333,0.93
+ Nailly ,NAILLY ,89100,89274,11,48.225,3.225,-1
+ Neuilly ,NEUILLY ,89113,89275,11,47.916667,3.433333,1.34
+ Neuvy-Sautour ,NEUVY SAUTOUR ,89570,89276,11,48.033333,3.8,0.88
+ Nitry ,NITRY ,89310,89277,11,47.666667,3.883333,1.52
+ Noé ,NOE ,89760,89278,11,48.166667,3.4,1.54
+ Noyers ,NOYERS ,89310,89279,11,47.7,4,1.46
+ Les Ormes ,LES ORMES ,89110,89281,11,47.85,3.266667,1.17
+ Ormoy ,ORMOY ,89400,89282,11,47.95,3.566667,1.51
+ Ouanne ,OUANNE ,89560,89283,11,47.666667,3.416667,0.93
+ Pacy-sur-Armançon ,PACY SUR ARMANCON ,89160,89284,11,47.766667,4.083333,1.76
+ Pailly ,PAILLY ,89140,89285,11,48.35,3.333333,2.45
+ Parly ,PARLY ,89240,89286,11,47.766667,3.35,1.23
+ Paron ,PARON ,89100,89287,11,48.183333,3.25,1.62
+ Paroy-en-Othe ,PAROY EN OTHE ,89210,89288,11,48.033333,3.566667,1.31
+ Paroy-sur-Tholon ,PAROY SUR THOLON ,89300,89289,11,47.95,3.366667,0.81
+ Pasilly ,PASILLY ,89310,89290,11,47.7,4.083333,1.76
+ Percey ,PERCEY ,89360,89292,11,47.966667,3.833333,0.87
+ Perreuse ,PERREUSE ,89520,89293,11,47.533333,3.216667,1.59
+ Perreux ,PERREUX ,89120,89294,11,47.866667,3.15,1.59
+ Perrigny-sur-Armançon ,PERRIGNY SUR ARMANCON ,89390,89296,11,47.683333,4.216667,2.24
+ Pierre-Perthuis ,PIERRE PERTHUIS ,89450,89297,11,47.433333,3.783333,2.09
+ Piffonds ,PIFFONDS ,89330,89298,11,48.05,3.15,1.59
+ Pimelles ,PIMELLES ,89740,89299,11,47.833333,4.166667,2.06
+ Pisy ,PISY ,89420,89300,11,47.55,4.133333,1.94
+ Plessis-du-Mée ,PLESSIS DU MEE ,89260,89301,11,48.366667,3.35,2.53
+ Plessis-Saint-Jean ,PLESSIS SAINT JEAN ,89140,89302,11,48.35,3.3,2.45
+ Poilly-sur-Serein ,POILLY SUR SEREIN ,89310,89303,11,47.766667,3.9,1.48
+ Poilly-sur-Tholon ,POILLY SUR THOLON ,89110,89304,11,47.866667,3.383333,1.04
+ Poinchy ,POINCHY ,89800,89305,11,47.816667,3.766667,0.63
+ Pontaubert ,PONTAUBERT ,89200,89306,11,47.483333,3.866667,1.84
+ Pontigny ,PONTIGNY ,89230,89307,11,47.916667,3.716667,1.6
+ Pont-sur-Vanne ,PONT SUR VANNE ,89190,89308,11,48.183333,3.45,1.62
+ Pont-sur-Yonne ,PONT SUR YONNE ,89140,89309,11,48.283333,3.2,2.12
+ La Postolle ,LA POSTOLLE ,89260,89310,11,48.283333,3.433333,2.12
+ Pourrain ,POURRAIN ,89240,89311,11,47.75,3.416667,0.63
+ Précy-le-Sec ,PRECY LE SEC ,89440,89312,11,47.583333,3.833333,2.34
+ Précy-sur-Vrin ,PRECY SUR VRIN ,89116,89313,11,47.966667,3.25,1.23
+ Prégilbert ,PREGILBERT ,89460,89314,11,47.633333,3.666667,1.1
+ Préhy ,PREHY ,89800,89315,11,47.766667,3.766667,0.73
+ Provency ,PROVENCY ,89200,89316,11,47.55,3.95,1.76
+ Prunoy ,PRUNOY ,89120,89317,11,47.916667,3.133333,1.65
+ Quarré-les-Tombes ,QUARRE LES TOMBES ,89630,89318,11,47.366667,3.983333,2.42
+ Quenne ,QUENNE ,89290,89319,11,47.783333,3.65,1.22
+ Ravières ,RAVIERES ,89390,89321,11,47.733333,4.216667,2.24
+ Rebourseaux ,REBOURSEAUX ,89600,89322,11,47.95,3.683333,1.06
+ Roffey ,ROFFEY ,89700,89323,11,47.916667,3.916667,1.17
+ Ronchères ,RONCHERES ,89170,89325,11,47.65,3.116667,1.71
+ Rosoy ,ROSOY ,89100,89326,11,48.15,3.316667,1.46
+ Rousson ,ROUSSON ,89500,89327,11,48.1,3.266667,1.21
+ Rouvray ,ROUVRAY ,89230,89328,11,47.9,3.666667,0.79
+ Rugny ,RUGNY ,89430,89329,11,47.9,4.15,2
+ Sacy ,SACY ,89270,89330,11,47.666667,3.816667,1.71
+ Sainpuits ,SAINPUITS ,89520,89331,11,47.516667,3.266667,1.68
+ Saint-André-en-Terre-Plaine ,SAINT ANDRE EN TERRE,89420,89333,11,47.483333,4.066667,1.84
+ Saint-Aubin-sur-Yonne ,SAINT AUBIN SUR YONNE,89300,89335,11,48,3.35,1.05
+ Saint-Brancher ,SAINT BRANCHER ,89630,89336,11,47.433333,4,2.09
+ Saint-Bris-le-Vineux ,SAINT BRIS LE VINEUX,89530,89337,11,47.75,3.633333,1
+ Saint-Clément ,SAINT CLEMENT ,89100,89338,11,48.216667,3.3,1.79
+ Sainte-Colombe-sur-Loing ,SAINTE COLOMBE SUR LOING,89520,89340,11,47.566667,3.233333,1.43
+ Saint-Cyr-les-Colons ,SAINT CYR LES COLONS,89800,89341,11,47.75,3.733333,1.27
+ Saint-Denis ,SAINT DENIS ,89100,89342,11,48.233333,3.266667,1.87
+ Saint-Denis-sur-Ouanne ,SAINT DENIS SUR OUANNE,89120,89343,11,47.816667,3.133333,1.65
+ Saint-Fargeau ,SAINT FARGEAU ,89170,89344,11,47.633333,3.066667,1.89
+ Saint-Florentin ,SAINT FLORENTIN ,89600,89345,11,48,3.733333,0.72
+ Saint-Germain-des-Champs ,SAINT GERMAIN DES CHAMPS,89630,89347,11,47.416667,3.916667,2.17
+ Saint-Julien-du-Sault ,SAINT JULIEN DU SAULT,89330,89348,11,48.033333,3.3,1.26
+ Saint-Léger-Vauban ,SAINT LEGER VAUBAN ,89630,89349,11,47.383333,4.05,2.33
+ Saint-Loup-d'Ordon ,SAINT LOUP D ORDON,89330,89350,11,48.016667,3.166667,1.53
+ Sainte-Magnance ,SAINTE MAGNANCE ,89420,89351,11,47.45,4.066667,2.01
+ Saint-Martin-des-Champs ,SAINT MARTIN DES CHAMPS,89170,89352,11,47.65,3.033333,2.01
+ Saint-Martin-d'Ordon ,SAINT MARTIN D ORDON,89330,89353,11,48.016667,3.183333,1.47
+ Saint-Martin-du-Tertre ,SAINT MARTIN DU TERTRE,89100,89354,11,48.216667,3.25,1.79
+ Saint-Martin-sur-Armançon ,SAINT MARTIN SUR ARMANCON,89700,89355,11,47.866667,4.066667,2.08
+ Saint-Martin-sur-Ocre ,SAINT MARTIN SUR OCRE,89110,89356,11,47.816667,3.333333,0.93
+ Saint-Martin-sur-Oreuse ,SAINT MARTIN SUR OREUSE,89260,89357,11,48.3,3.333333,2.2
+ Saint-Martin-sur-Ouanne ,SAINT MARTIN SUR OUANNE,89120,89358,11,47.833333,3.1,1.77
+ Saint-Maurice-le-Vieil ,SAINT MAURICE LE VIEIL,89110,89360,11,47.816667,3.35,0.87
+ Saint-Moré ,SAINT MORE ,89270,89362,11,47.583333,3.783333,1.35
+ Sainte-Pallaye ,SAINTE PALLAYE ,89460,89363,11,47.65,3.666667,1.02
+Saint-Père,PERE ,89450,89364,11,47.466667,3.766667,1.14
+ Saint-Privé ,SAINT PRIVE ,89220,89365,11,47.683333,3,-1
+ Saint-Romain-le-Preux ,SAINT ROMAIN LE PREUX,89116,89366,11,47.933333,3.233333,1.29
+ Saints ,SAINTS ,89520,89367,11,47.616667,3.266667,1.18
+ Saint-Sauveur-en-Puisaye ,SAINT SAUVEUR EN PUISAYE,89520,89368,11,47.616667,3.2,1.41
+ Saint-Sérotin ,SAINT SEROTIN ,89140,89369,11,48.25,3.166667,1.95
+ Saint-Valérien ,SAINT VALERIEN ,89150,89370,11,48.183333,3.1,1.77
+ Sainte-Vertu ,SAINTE VERTU ,89310,89371,11,47.75,3.916667,1.19
+ Saint-Vinnemer ,SAINT VINNEMER ,89430,89372,11,47.833333,4.083333,1.76
+ Saligny ,SALIGNY ,89100,89373,11,48.216667,3.35,1.79
+ Sambourg ,SAMBOURG ,89160,89374,11,47.766667,4.016667,1.89
+ Santigny ,SANTIGNY ,89420,89375,11,47.566667,4.116667,1.88
+ Sauvigny-le-Beuréal ,SAUVIGNY LE BEUREAL ,89420,89377,11,47.483333,4.116667,1.88
+ Sauvigny-le-Bois ,SAUVIGNY LE BOIS ,89200,89378,11,47.5,3.933333,1.76
+ Savigny-en-Terre-Plaine ,SAVIGNY EN TERRE PLAINE,89420,89379,11,47.5,4.083333,1.76
+ Savigny-sur-Clairis ,SAVIGNY SUR CLAIRIS ,89150,89380,11,48.066667,3.1,1.77
+ Sceaux ,SCEAUX ,89420,89381,11,47.533333,4.016667,1.59
+ Seignelay ,SEIGNELAY ,89250,89382,11,47.9,3.6,0.48
+ Sementron ,SEMENTRON ,89560,89383,11,47.65,3.366667,1.21
+ Senan ,SENAN ,89710,89384,11,47.916667,3.35,0.87
+ Sennevoy-le-Bas ,SENNEVOY LE BAS ,89160,89385,11,47.8,4.283333,2.48
+ Sennevoy-le-Haut ,SENNEVOY LE HAUT ,89160,89386,11,47.8,4.283333,2.48
+ Sépeaux ,SEPEAUX ,89116,89388,11,47.95,3.233333,1.29
+ Septfonds ,SEPTFONDS ,89170,89389,11,47.7,3.1,1.77
+ Serbonnes ,SERBONNES ,89140,89390,11,48.316667,3.2,2.28
+ Sergines ,SERGINES ,89140,89391,11,48.333333,3.25,2.36
+ Sermizelles ,SERMIZELLES ,89200,89392,11,47.533333,3.8,1.59
+ Serrigny ,SERRIGNY ,89700,89393,11,47.833333,3.916667,1.17
+ Sery ,SERY ,89270,89394,11,47.616667,3.683333,1.31
+ Les Sièges ,LES SIEGES ,89190,89395,11,48.183333,3.516667,1.62
+ Sognes ,SOGNES ,89260,89396,11,48.366667,3.45,2.53
+ Sommecaise ,SOMMECAISE ,89110,89397,11,47.85,3.233333,1.62
+ Sormery ,SORMERY ,89570,89398,11,48.083333,3.766667,1.22
+ Soucy ,SOUCY ,89100,89399,11,48.25,3.316667,1.95
+ Sougères-en-Puisaye ,SOUGERES EN PUISAYE ,89520,89400,11,47.566667,3.333333,1.43
+ Sougères-sur-Sinotte ,SOUGERES SUR SINOTTE ,89470,89401,11,47.866667,3.616667,1
+ Soumaintrain ,SOUMAINTRAIN ,89570,89402,11,48.016667,3.833333,1.34
+ Stigny ,STIGNY ,89160,89403,11,47.766667,4.233333,2.3
+ Subligny ,SUBLIGNY ,89100,89404,11,48.166667,3.2,1.54
+ Taingy ,TAINGY ,89560,89405,11,47.616667,3.4,1.18
+ Talcy ,TALCY ,89420,89406,11,47.566667,4.066667,1.7
+ Tanlay ,TANLAY ,89430,89407,11,47.833333,4.083333,1.76
+ Tannerre-en-Puisaye ,TANNERRE EN PUISAYE ,89350,89408,11,47.733333,3.133333,1.65
+ Tharoiseau ,THAROISEAU ,89450,89409,11,47.466667,3.8,1.92
+ Tharot ,THAROT ,89200,89410,11,47.533333,3.866667,1.59
+ Theil-sur-Vanne ,THEIL SUR VANNE ,89760,89411,11,48.166667,3.416667,1.54
+ Thizy ,THIZY ,89420,89412,11,47.566667,4.05,1.64
+ Thorigny-sur-Oreuse ,THORIGNY SUR OREUSE ,89260,89414,11,48.283333,3.4,2.12
+ Tissey ,TISSEY ,89700,89417,11,47.85,3.9,1.11
+ Tonnerre ,TONNERRE ,89700,89418,11,47.85,3.966667,1.34
+ Toucy ,TOUCY ,89130,89419,11,47.733333,3.3,1.05
+ Trévilly ,TREVILLY ,89420,89421,11,47.533333,4.066667,1.7
+ Trichey ,TRICHEY ,89430,89422,11,47.933333,4.133333,1.94
+ Tronchoy ,TRONCHOY ,89700,89423,11,47.916667,3.95,1.28
+ Trucy-sur-Yonne ,TRUCY SUR YONNE ,89460,89424,11,47.633333,3.666667,1.1
+ Turny ,TURNY ,89570,89425,11,48.033333,3.75,1.22
+ Val-de-Mercy ,VAL DE MERCY ,89580,89426,11,47.683333,3.583333,0.95
+ Vallan ,VALLAN ,89580,89427,11,47.75,3.533333,1.33
+ Vallery ,VALLERY ,89150,89428,11,48.233333,3.05,1.95
+ Vareilles ,VAREILLES ,89760,89429,11,48.166667,3.466667,1.89
+Varennes, ,89144,89430,11,47.9,3.783333,0.69
+ Vassy ,VASSY ,89420,89431,11,47.566667,4.166667,-1
+ Vaudeurs ,VAUDEURS ,89320,89432,11,48.133333,3.55,1.37
+ Vault-de-Lugny ,VAULT DE LUGNY ,89200,89433,11,47.5,3.85,1.76
+ Vaumort ,VAUMORT ,89320,89434,11,48.15,3.433333,1.7
+ Vaux ,VAUX ,89290,89435,11,47.75,3.583333,1.02
+ Venizy ,VENIZY ,89210,89436,11,48.033333,3.716667,2.15
+ Venouse ,VENOUSE ,89230,89437,11,47.9,3.683333,0.68
+ Venoy ,VENOY ,89290,89438,11,47.8,3.633333,1.47
+ Vergigny ,VERGIGNY ,89600,89439,11,47.966667,3.716667,0.55
+ Verlin ,VERLIN ,89330,89440,11,48.016667,3.233333,1.29
+ Vermenton ,VERMENTON ,89270,89441,11,47.666667,3.733333,1.05
+ Vernoy ,VERNOY ,89150,89442,11,48.083333,3.116667,1.71
+ Véron ,VERON ,89510,89443,11,48.133333,3.3,1.37
+ Vertilly ,VERTILLY ,89260,89444,11,48.35,3.383333,2.45
+ Vézannes ,VEZANNES ,89700,89445,11,47.866667,3.866667,1.37
+ Vézelay ,VEZELAY ,89450,89446,11,47.466667,3.733333,1.92
+ Vézinnes ,VEZINNES ,89700,89447,11,47.883333,3.95,1.28
+ Vignes ,VIGNES ,89420,89448,11,47.533333,4.116667,1.88
+ Villeblevin ,VILLEBLEVIN ,89720,89449,11,48.316667,3.083333,2.28
+ Villebougis ,VILLEBOUGIS ,89150,89450,11,48.2,3.15,1.7
+ Villechétive ,VILLECHETIVE ,89320,89451,11,48.1,3.5,1.21
+ Villecien ,VILLECIEN ,89300,89452,11,48,3.333333,1.4
+ Villefargeau ,VILLEFARGEAU ,89240,89453,11,47.783333,3.5,1.4
+ Villemanoche ,VILLEMANOCHE ,89140,89456,11,48.3,3.183333,2.2
+ Villemer ,VILLEMER ,89113,89457,11,47.916667,3.483333,1.25
+ Villenavotte ,VILLENAVOTTE ,89140,89458,11,48.25,3.233333,1.95
+ Villeneuve-la-Dondagre ,VILLENEUVE LA DONDAGRE ,89150,89459,11,48.133333,3.133333,1.65
+ Villeneuve-la-Guyard ,VILLENEUVE LA GUYARD ,89340,89460,11,48.333333,3.066667,2.36
+ Villeneuve-l'Archevêque ,VILLENEUVE L ARCHEVEQUE ,89190,89461,11,48.233333,3.55,1.87
+ Villeneuve-les-Genêts ,VILLENEUVE LES GENETS ,89350,89462,11,47.733333,3.1,1.77
+ Villeneuve-Saint-Salves ,VILLENEUVE SAINT SALVES ,89230,89463,11,47.85,3.65,1.25
+ Villeneuve-sur-Yonne ,VILLENEUVE SUR YONNE ,89500,89464,11,48.083333,3.3,1.13
+ Villeperrot ,VILLEPERROT ,89140,89465,11,48.266667,3.233333,2.03
+ Villeroy ,VILLEROY ,89100,89466,11,48.166667,3.183333,1.7
+ Villethierry ,VILLETHIERRY ,89140,89467,11,48.266667,3.066667,2.22
+ Villevallier ,VILLEVALLIER ,89330,89468,11,48.016667,3.316667,1.54
+ Villiers-les-Hauts ,VILLIERS LES HAUTS ,89160,89470,11,47.733333,4.15,2
+ Villiers-Louis ,VILLIERS LOUIS ,89760,89471,11,48.183333,3.4,1.62
+ Villiers-Saint-Benoît ,VILLIERS SAINT BENOIT ,89130,89472,11,47.783333,3.216667,1.38
+ Villiers-sur-Tholon ,VILLIERS SUR THOLON ,89110,89473,11,47.883333,3.333333,0.93
+ Villiers-Vineux ,VILLIERS VINEUX ,89360,89474,11,47.933333,3.816667,0.81
+ Villon ,VILLON ,89740,89475,11,47.9,4.183333,2.12
+ Villy ,VILLY ,89800,89477,11,47.866667,3.75,1.17
+ Vincelles ,VINCELLES ,89290,89478,11,47.7,3.633333,1.02
+ Vincelottes ,VINCELOTTES ,89290,89479,11,47.716667,3.633333,0.69
+ Vinneuf ,VINNEUF ,89140,89480,11,48.35,3.133333,2.45
+ Vireaux ,VIREAUX ,89160,89481,11,47.783333,4.05,1.64
+ Viviers ,VIVIERS ,89700,89482,11,47.8,3.916667,1.18
+ Voisines ,VOISINES ,89260,89483,11,48.25,3.383333,1.95
+ Volgré ,VOLGRE ,89710,89484,11,47.916667,3.316667,1.35
+ Voutenay-sur-Cure ,VOUTENAY SUR CURE ,89270,89485,11,47.55,3.783333,1.52
+ Yrouerre ,YROUERRE ,89700,89486,11,47.783333,3.95,1.35
+ Andelnans ,ANDELNANS ,90400,90001,73,47.6,6.866667,1.04
+ Angeot ,ANGEOT ,90150,90002,73,47.7,7.016667,1.37
+ Anjoutey ,ANJOUTEY ,90170,90003,73,47.7,6.933333,1.22
+ Argiésans ,ARGIESANS ,90800,90004,73,47.6,6.816667,1.8
+ Auxelles-Bas ,AUXELLES BAS ,90200,90005,73,47.733333,6.783333,2.3
+ Auxelles-Haut ,AUXELLES HAUT ,90200,90006,73,47.75,6.766667,2.56
+ Banvillars ,BANVILLARS ,90800,90007,73,47.6,6.816667,1.8
+ Bavilliers ,BAVILLIERS ,90850,90008,73,47.616667,6.833333,1.54
+ Beaucourt ,BEAUCOURT ,90500,90009,73,47.483333,6.916667,2.1
+ Belfort ,BELFORT ,90000,90010,73,47.633333,6.866667,1.04
+ Bermont ,BERMONT ,90400,90011,73,47.583333,6.85,1.29
+ Bessoncourt ,BESSONCOURT ,90160,90012,73,47.65,6.933333,1.22
+ Bethonvilliers ,BETHONVILLIERS ,90150,90013,73,47.683333,6.966667,0.97
+ Boron ,BORON ,90100,90014,73,47.566667,7.016667,1.24
+ Botans ,BOTANS ,90400,90015,73,47.6,6.85,1.29
+ Bourg-sous-Châtelet ,BOURG SOUS CHATELET ,90110,90016,73,47.7,6.95,1.36
+ Bourogne ,BOUROGNE ,90140,90017,73,47.566667,6.916667,1.54
+ Brebotte ,BREBOTTE ,90140,90018,73,47.583333,6.966667,0.98
+ Bretagne ,BRETAGNE ,90130,90019,73,47.6,7,1.14
+ Buc ,BUC ,90800,90020,73,47.616667,6.783333,2.3
+ Charmois ,CHARMOIS ,90140,90021,73,47.566667,6.933333,0.82
+ Châtenois-les-Forges ,CHATENOIS LES FORGES ,90700,90022,73,47.566667,6.85,1.29
+ Chaux ,CHAUX ,90330,90023,73,47.716667,6.833333,1.54
+ Chavanatte ,CHAVANATTE ,90100,90024,73,47.583333,7.066667,2
+ Chavannes-les-Grands ,CHAVANNES LES GRANDS ,90100,90025,73,47.583333,7.05,1.74
+ Chèvremont ,CHEVREMONT ,90340,90026,73,47.633333,6.916667,1.48
+ Courtelevant ,COURTELEVANT ,90100,90028,73,47.516667,7.083333,2.25
+ Cravanche ,CRAVANCHE ,90300,90029,73,47.65,6.833333,1.54
+ Croix ,CROIX ,90100,90030,73,47.45,6.95,2.61
+ Cunelières ,CUNELIERES ,90150,90031,73,47.633333,7,1.1
+ Danjoutin ,DANJOUTIN ,90400,90032,73,47.616667,6.866667,1.04
+ Delle ,DELLE ,90100,90033,73,47.5,7,1.85
+ Denney ,DENNEY ,90160,90034,73,47.65,6.916667,0.45
+ Dorans ,DORANS ,90400,90035,73,47.583333,6.833333,1.54
+ Eguenigue ,EGUENIGUE ,90150,90036,73,47.666667,6.933333,1.58
+ Éloie ,ELOIE ,90300,90037,73,47.683333,6.866667,1.04
+ Essert ,ESSERT ,90850,90039,73,47.633333,6.816667,1.8
+ Faverois ,FAVEROIS ,90100,90043,73,47.516667,7.033333,1.59
+ Felon ,FELON ,90110,90044,73,47.7,6.983333,1.22
+ Fêche-l'Église ,FECHE L EGLISE ,90100,90045,73,47.5,6.95,1.85
+ Florimont ,FLORIMONT ,90100,90046,73,47.5,7.066667,2
+ Fontaine ,FONTAINE ,90150,90047,73,47.666667,7,0.98
+ Fontenelle ,FONTENELLE ,90340,90048,73,47.616667,6.95,0.25
+ Foussemagne ,FOUSSEMAGNE ,90150,90049,73,47.633333,7,1.1
+ Frais ,FRAIS ,90150,90050,73,47.65,6.983333,0.73
+ Froidefontaine ,FROIDEFONTAINE ,90140,90051,73,47.566667,6.95,0.82
+ Giromagny ,GIROMAGNY ,90200,90052,73,47.75,6.833333,1.99
+ Grandvillars ,GRANDVILLARS ,90600,90053,73,47.55,6.966667,1.08
+ Grosmagny ,GROSMAGNY ,90200,90054,73,47.716667,6.883333,1.74
+ Grosne ,GROSNE ,90100,90055,73,47.566667,7,0.98
+ Joncherey ,JONCHEREY ,90100,90056,73,47.533333,7,1.34
+ Lachapelle-sous-Chaux ,LACHAPELLE SOUS CHAUX ,90300,90057,73,47.7,6.816667,1.8
+ Lachapelle-sous-Rougemont ,LACHAPELLE SOUS ROUGEMONT ,90360,90058,73,47.716667,7.016667,1.48
+ Lacollonge ,LACOLLONGE ,90150,90059,73,47.666667,6.966667,0.71
+ Lagrange ,LAGRANGE ,90150,90060,73,47.683333,6.983333,0.97
+ Lamadeleine-Val-des-Anges ,LAMADELEINE VAL DES ANGES,90170,90061,73,47.766667,6.916667,2.24
+ Larivière ,LARIVIERE ,90150,90062,73,47.666667,7,0.98
+ Lebétain ,LEBETAIN ,90100,90063,73,47.483333,6.983333,2.1
+ Lepuix-Neuf ,LEPUIX NEUF ,90100,90064,73,47.533333,7.1,2.5
+ Lepuix ,LEPUIX ,90200,90065,73,47.766667,6.816667,2.24
+ Leval ,LEVAL ,90110,90066,73,47.733333,6.983333,1.73
+ Menoncourt ,MENONCOURT ,90150,90067,73,47.666667,6.95,1.08
+ Méziré ,MEZIRE ,90120,90069,73,47.533333,6.916667,1.34
+ Montbouton ,MONTBOUTON ,90500,90070,73,47.466667,6.916667,2.36
+ Montreux-Château ,MONTREUX CHATEAU ,90130,90071,73,47.616667,7,0.98
+ Morvillars ,MORVILLARS ,90120,90072,73,47.55,6.933333,1.08
+ Moval ,MOVAL ,90400,90073,73,47.583333,6.883333,0.86
+ Novillard ,NOVILLARD ,90340,90074,73,47.6,6.966667,1.27
+ Offemont ,OFFEMONT ,90300,90075,73,47.666667,6.883333,1
+ Pérouse ,PEROUSE ,90160,90076,73,47.633333,6.9,1.39
+ Petit-Croix ,PETIT CROIX ,90130,90077,73,47.616667,6.983333,1.14
+ Phaffans ,PHAFFANS ,90150,90080,73,47.666667,6.933333,1.58
+ Réchésy ,RECHESY ,90370,90081,73,47.5,7.116667,2.75
+ Recouvrance ,RECOUVRANCE ,90140,90083,73,47.566667,6.983333,1.54
+ Reppe ,REPPE ,90150,90084,73,47.666667,7.033333,1.49
+ Romagny-sous-Rougemont ,ROMAGNY SOUS ROUGEMONT ,90110,90086,73,47.716667,6.966667,1.48
+ Roppe ,ROPPE ,90380,90087,73,47.666667,6.916667,0.71
+ Rougegoutte ,ROUGEGOUTTE ,90200,90088,73,47.733333,6.85,1.73
+ Rougemont-le-Château ,ROUGEMONT LE CHATEAU ,90110,90089,73,47.733333,6.966667,1.73
+ Saint-Dizier-l'Évêque ,SAINT DIZIER L EVEQUE,90100,90090,73,47.466667,6.966667,2.36
+ Saint-Germain-le-Châtelet ,SAINT GERMAIN LE CHATELET,90110,90091,73,47.7,6.966667,1.22
+ Sermamagny ,SERMAMAGNY ,90300,90093,73,47.7,6.833333,1.54
+ Sevenans ,SEVENANS ,90400,90094,73,47.583333,6.866667,1.04
+ Suarce ,SUARCE ,90100,90095,73,47.566667,7.083333,2.25
+ Thiancourt ,THIANCOURT ,90100,90096,73,47.533333,7,1.34
+ Urcerey ,URCEREY ,90800,90098,73,47.6,6.8,2.05
+ Valdoie ,VALDOIE ,90300,90099,73,47.666667,6.85,1.29
+ Vauthiermont ,VAUTHIERMONT ,90150,90100,73,47.683333,7.033333,1.52
+ Vellescot ,VELLESCOT ,90100,90101,73,47.566667,7.016667,1.24
+ Vescemont ,VESCEMONT ,90200,90102,73,47.75,6.85,1.99
+ Vétrigne ,VETRIGNE ,90300,90103,73,47.666667,6.9,1.53
+ Vézelois ,VEZELOIS ,90400,90104,73,47.6,6.916667,2.21
+ Villars-le-Sec ,VILLARS LE SEC ,90100,90105,73,47.45,7,2.61
+ Abbéville-la-Rivière ,ABBEVILLE LA RIVIERE ,91150,91001,82,48.35,2.166667,2.08
+ Angerville ,ANGERVILLE ,91670,91016,82,48.316667,2,2.42
+ Angervilliers ,ANGERVILLIERS ,91470,91017,82,48.583333,2.066667,1.7
+ Arpajon ,ARPAJON ,91290,91021,82,48.583333,2.25,0.3
+ Arrancourt ,ARRANCOURT ,91690,91022,82,48.333333,2.166667,2.25
+ Athis-Mons ,ATHIS MONS ,91200,91027,82,48.716667,2.4,1.61
+ Authon-la-Plaine ,AUTHON LA PLAINE ,91410,91035,82,48.45,1.95,2.53
+ Auvernaux ,AUVERNAUX ,91830,91037,82,48.533333,2.483333,1.87
+ Auvers-Saint-Georges ,AUVERS SAINT GEORGES ,91580,91038,82,48.483333,2.233333,1.09
+ Avrainville ,AVRAINVILLE ,91630,91041,82,48.566667,2.25,1.26
+ Ballainvilliers ,BALLAINVILLIERS ,91160,91044,82,48.666667,2.283333,1.11
+ Baulne ,BAULNE ,91590,91047,82,48.5,2.35,0.82
+ Bièvres ,BIEVRES ,91570,91064,82,48.75,2.216667,1.94
+ Blandy ,BLANDY ,91150,91067,82,48.316667,2.258333,2.42
+ Boigneville ,BOIGNEVILLE ,91720,91069,82,48.333333,2.366667,2.25
+ Bois-Herpin ,BOIS HERPIN ,91150,91075,82,48.366667,2.233333,1.91
+ Boissy-la-Rivière ,BOISSY LA RIVIERE ,91690,91079,82,48.366667,2.15,1.91
+ Boissy-le-Cutté ,BOISSY LE CUTTE ,91590,91080,82,48.466667,2.283333,1.25
+ Boissy-le-Sec ,BOISSY LE SEC ,91870,91081,82,48.466667,2.083333,1.43
+ Boissy-sous-Saint-Yon ,BOISSY SOUS SAINT YON,91790,91085,82,48.55,2.216667,0.33
+ Bondoufle ,BONDOUFLE ,91070,91086,82,48.616667,2.383333,1.05
+ Boullay-les-Troux ,BOULLAY LES TROUX ,91470,91093,82,48.683333,2.05,1.71
+ Bouray-sur-Juine ,BOURAY SUR JUINE ,91850,91095,82,48.516667,2.3,0.41
+ Boussy-Saint-Antoine ,BOUSSY SAINT ANTOINE ,91800,91097,82,48.683333,2.533333,2.29
+ Boutervilliers ,BOUTERVILLIERS ,91150,91098,82,48.45,2.05,2.45
+ Bouville ,BOUVILLE ,91880,91100,82,48.433333,2.3,1.24
+ Brétigny-sur-Orge ,BRETIGNY SUR ORGE ,91220,91103,82,48.616667,2.316667,0.6
+ Breuillet ,BREUILLET ,91650,91105,82,48.566667,2.166667,1
+ Brières-les-Scellés ,BRIERES LES SCELLES ,91150,91109,82,48.45,2.133333,1.44
+ Briis-sous-Forges ,BRIIS SOUS FORGES ,91640,91111,82,48.616667,2.116667,1.16
+ Brouy ,BROUY ,91150,91112,82,48.316667,2.266667,2.42
+ Brunoy ,BRUNOY ,91800,91114,82,48.7,2.5,2.01
+ Bruyères-le-Châtel ,BRUYERES LE CHATEL ,91680,91115,82,48.6,2.2,1
+ Buno-Bonnevaux ,BUNO BONNEVAUX ,91720,91121,82,48.35,2.383333,2.08
+ Bures-sur-Yvette ,BURES SUR YVETTE ,91440,91122,82,48.7,2.166667,1.44
+ Cerny ,CERNY ,91590,91129,82,48.466667,2.316667,0.91
+ Châlo-Saint-Mars ,CHALO SAINT MARS ,91780,91130,82,48.433333,2.066667,1.57
+ Chalou-Moulineux ,CHALOU MOULINEUX ,91740,91131,82,48.383333,2.016667,1.98
+ Chamarande ,CHAMARANDE ,91730,91132,82,48.516667,2.216667,0.59
+ Champcueil ,CHAMPCUEIL ,91750,91135,82,48.516667,2.45,1.6
+ Champlan ,CHAMPLAN ,91160,91136,82,48.7,2.266667,1.44
+ Champmotteux ,CHAMPMOTTEUX ,91150,91137,82,48.35,2.316667,2.08
+ Chatignonville ,CHATIGNONVILLE ,91410,91145,82,48.466667,1.933333,2.67
+ Chauffour-lès-Étréchy ,CHAUFFOUR LES ETRECHY ,91580,91148,82,48.5,2.166667,0.74
+ Cheptainville ,CHEPTAINVILLE ,91630,91156,82,48.55,2.266667,0.79
+ Chevannes ,CHEVANNES ,91750,91159,82,48.533333,2.433333,1.46
+ Chilly-Mazarin ,CHILLY MAZARIN ,91380,91161,82,48.7,2.3,1.44
+ Congerville ,CONGERVILLE ,91740,91173,82,48.383333,1.983333,2.26
+ Corbeil-Essonnes ,CORBEIL ESSONNES ,91100,91174,82,48.6,2.483333,1.87
+ Corbreuse ,CORBREUSE ,91410,91175,82,48.5,1.95,2.53
+ Le Coudray-Montceaux ,LE COUDRAY MONTCEAUX ,91830,91179,82,48.566667,2.5,2.01
+ Courances ,COURANCES ,91490,91180,82,48.433333,2.466667,1.74
+ Courcouronnes ,COURCOURONNES ,91080,91182,82,48.616667,2.4,1.19
+ Courson-Monteloup ,COURSON MONTELOUP ,91680,91186,82,48.6,2.15,1
+ Crosne ,CROSNE ,91560,91191,82,48.716667,2.45,1.61
+ Dannemois ,DANNEMOIS ,91490,91195,82,48.45,2.466667,1.74
+ D'Huison-Longueville ,D HUISON LONGUEVILLE ,91590,91198,82,48.45,2.333333,1.08
+ Dourdan ,DOURDAN ,91410,91200,82,48.533333,2.016667,1.98
+ Draveil ,DRAVEIL ,91210,91201,82,48.683333,2.416667,1.32
+ Écharcon ,ECHARCON ,91540,91204,82,48.566667,2.4,1.19
+ Égly ,EGLY ,91520,91207,82,48.583333,2.216667,0.33
+ Épinay-sous-Sénart ,EPINAY SOUS SENART ,91860,91215,82,48.683333,2.516667,2.15
+ Épinay-sur-Orge ,EPINAY SUR ORGE ,91360,91216,82,48.666667,2.333333,1.1
+ Estouches ,ESTOUCHES ,91660,91222,82,48.3,2.133333,2.58
+ Étampes ,ETAMPES ,91150,91223,82,48.433333,2.15,1.24
+ Étiolles ,ETIOLLES ,91450,91225,82,48.633333,2.466667,1.74
+ Étréchy ,ETRECHY ,91580,91226,82,48.5,2.2,0.57
+ Évry ,EVRY ,91090,91228,82,48.633333,2.45,1.6
+ La Ferté-Alais ,LA FERTE ALAIS ,91590,91232,82,48.483333,2.35,0.77
+ Fleury-Mérogis ,FLEURY MEROGIS ,91700,91235,82,48.633333,2.366667,1.36
+ Fontaine-la-Rivière ,FONTAINE LA RIVIERE ,91690,91240,82,48.35,2.15,2.08
+ Fontenay-lès-Briis ,FONTENAY LES BRIIS ,91640,91243,82,48.616667,2.15,0.88
+ Fontenay-le-Vicomte ,FONTENAY LE VICOMTE ,91540,91244,82,48.55,2.4,1.19
+ La Forêt-le-Roi ,LA FORET LE ROI,91410,91247,82,48.483333,2.033333,1.85
+ La Forêt-Sainte-Croix ,LA FORET SAINTE CROIX,91150,91248,82,48.383333,2.233333,1.75
+ Forges-les-Bains ,FORGES LES BAINS ,91470,91249,82,48.616667,2.1,1.29
+ Gif-sur-Yvette ,GIF SUR YVETTE ,91190,91272,82,48.683333,2.133333,1.35
+ Gometz-la-Ville ,GOMETZ LA VILLE ,91400,91274,82,48.666667,2.116667,1.35
+ Gometz-le-Châtel ,GOMETZ LE CHATEL ,91940,91275,82,48.683333,2.133333,1.27
+ Les Granges-le-Roi ,LES GRANGES LE ROI,91410,91284,82,48.5,2.016667,1.98
+ Grigny ,GRIGNY ,91350,91286,82,48.65,2.383333,1.05
+ Guibeville ,GUIBEVILLE ,91630,91292,82,48.566667,2.266667,0.57
+ Guillerval ,GUILLERVAL ,91690,91294,82,48.366667,2.1,1.91
+ Igny ,IGNY ,91430,91312,82,48.733333,2.216667,1.77
+ Itteville ,ITTEVILLE ,91760,91315,82,48.516667,2.333333,0.63
+ Janville-sur-Juine ,JANVILLE SUR JUINE ,91510,91318,82,48.516667,2.266667,0.41
+ Janvry ,JANVRY ,91640,91319,82,48.65,2.15,1.42
+ Juvisy-sur-Orge ,JUVISY SUR ORGE ,91260,91326,82,48.683333,2.383333,1.27
+ Lardy ,LARDY ,91510,91330,82,48.516667,2.266667,0.41
+ Leudeville ,LEUDEVILLE ,91630,91332,82,48.566667,2.316667,1.54
+ Leuville-sur-Orge ,LEUVILLE SUR ORGE ,91310,91333,82,48.616667,2.25,1.8
+ Limours ,LIMOURS ,91470,91338,82,48.65,2.083333,1.43
+ Linas ,LINAS ,91310,91339,82,48.633333,2.266667,0.77
+ Lisses ,LISSES ,91090,91340,82,48.6,2.416667,1.32
+ Longjumeau ,LONGJUMEAU ,91160,91345,82,48.7,2.3,1.44
+ Longpont-sur-Orge ,LONGPONT SUR ORGE ,91310,91347,82,48.633333,2.283333,1.48
+ Maisse ,MAISSE ,91720,91359,82,48.4,2.383333,1.58
+ Marcoussis ,MARCOUSSIS ,91460,91363,82,48.633333,2.233333,0.77
+ Marolles-en-Beauce ,MAROLLES EN BEAUCE ,91150,91374,82,48.366667,2.2,1.91
+ Marolles-en-Hurepoix ,MAROLLES EN HUREPOIX ,91630,91376,82,48.566667,2.3,0.85
+ Massy ,MASSY ,91300,91377,82,48.733333,2.283333,1.77
+ Mauchamps ,MAUCHAMPS ,91730,91378,82,48.533333,2.183333,1.34
+ Mennecy ,MENNECY ,91540,91386,82,48.566667,2.433333,1.46
+ Méréville ,MEREVILLE ,91660,91390,82,48.316667,2.083333,2.42
+ Mérobert ,MEROBERT ,91780,91393,82,48.416667,2,2.12
+ Mespuits ,MESPUITS ,91150,91399,82,48.35,2.266667,2.08
+ Milly-la-Forêt ,MILLY LA FORET ,91490,91405,82,48.4,2.466667,1.74
+ Les Molières ,LES MOLIERES ,91470,91411,82,48.666667,2.066667,1.57
+ Mondeville ,MONDEVILLE ,91590,91412,82,48.483333,2.416667,2.1
+ Monnerville ,MONNERVILLE ,91930,91414,82,48.35,2.05,2.08
+ Montgeron ,MONTGERON ,91230,91421,82,48.7,2.45,1.6
+ Montlhéry ,MONTLHERY ,91310,91425,82,48.633333,2.266667,0.77
+ Morangis ,MORANGIS ,91420,91432,82,48.7,2.333333,1.44
+ Morigny-Champigny ,MORIGNY CHAMPIGNY ,91150,91433,82,48.45,2.2,1.08
+ Morsang-sur-Orge ,MORSANG SUR ORGE ,91390,91434,82,48.666667,2.35,1.1
+ Morsang-sur-Seine ,MORSANG SUR SEINE ,91250,91435,82,48.566667,2.5,2.01
+ Nainville-les-Roches ,NAINVILLE LES ROCHES ,91750,91441,82,48.5,2.5,2.01
+ La Norville ,LA NORVILLE ,91290,91457,82,48.583333,2.266667,1.2
+ Nozay ,NOZAY ,91620,91458,82,48.65,2.233333,1
+ Ollainville ,OLLAINVILLE ,91290,91461,82,48.583333,2.216667,1.5
+ Ormoy ,ORMOY ,91540,91468,82,48.566667,2.433333,1.46
+ Ormoy-la-Rivière ,ORMOY LA RIVIERE ,91150,91469,82,48.4,2.15,1.58
+ Orsay ,ORSAY ,91400,91471,82,48.7,2.183333,1.44
+ Orveau ,ORVEAU ,91590,91473,82,48.45,2.283333,1.35
+ Palaiseau ,PALAISEAU ,91120,91477,82,48.716667,2.25,1.61
+ Paray-Vieille-Poste ,PARAY VIEILLE POSTE ,91550,91479,82,48.716667,2.366667,1.61
+ Pecqueuse ,PECQUEUSE ,91470,91482,82,48.65,2.05,1.71
+ Le Plessis-Pâté ,LE PLESSIS PATE ,91220,91494,82,48.616667,2.316667,0.6
+ Plessis-Saint-Benoist ,PLESSIS SAINT BENOIST ,91410,91495,82,48.433333,2,2.12
+ Puiselet-le-Marais ,PUISELET LE MARAIS ,91150,91508,82,48.4,2.266667,1.58
+ Pussay ,PUSSAY ,91740,91511,82,48.35,2,2.12
+ Quincy-sous-Sénart ,QUINCY SOUS SENART ,91480,91514,82,48.666667,2.533333,2.29
+ Richarville ,RICHARVILLE ,91410,91519,82,48.466667,2,2.12
+ Ris-Orangis ,RIS ORANGIS ,91000,91521,82,48.65,2.416667,1.32
+ Roinville ,ROINVILLE ,91410,91525,82,48.533333,2.033333,1.85
+ Roinvilliers ,ROINVILLIERS ,91150,91526,82,48.35,2.233333,2.08
+ Saclas ,SACLAS ,91690,91533,82,48.366667,2.116667,1.91
+ Saclay ,SACLAY ,91400,91534,82,48.733333,2.166667,1.77
+ Saint-Aubin ,SAINT AUBIN ,91190,91538,82,48.716667,2.133333,1.61
+ Saint-Chéron ,SAINT CHERON ,91530,91540,82,48.55,2.116667,1.16
+ Saint-Cyr-la-Rivière ,SAINT CYR LA RIVIERE,91690,91544,82,48.35,2.133333,2.08
+ Saint Cyr-sous-Dourdan ,SAINT CYR SOUS DOURDAN,91410,91546,82,48.566667,2.033333,1.85
+ Sainte-Escobille ,SAINTE ESCOBILLE ,91410,91547,82,48.433333,1.966667,2.4
+ Sainte-Geneviève-des-Bois ,SAINTE GENEVIEVE DES BOIS,91700,91549,82,48.633333,2.333333,0.77
+ Saint-Germain-lès-Arpajon ,SAINT GERMAIN LES ARPAJON,91180,91552,82,48.6,2.25,0.43
+ Saint-Germain-lès-Corbeil ,SAINT GERMAIN LES CORBEIL,91250,91553,82,48.616667,2.483333,1.87
+Saint-Hilaire,HILAIRE ,91780,91556,82,48.433333,2.066667,1.57
+ Saint-Jean-de-Beauregard ,SAINT JEAN DE BEAUREGARD,91940,91560,82,48.666667,2.166667,1.1
+ Saint-Maurice-Montcouronne ,SAINT MAURICE MONTCOURONNE ,91530,91568,82,48.583333,2.116667,1.16
+ Saint-Michel-sur-Orge ,SAINT MICHEL SUR ORGE,91240,91570,82,48.633333,2.3,0.77
+ Saint-Pierre-du-Perray ,SAINT PIERRE DU PERRAY,91280,91573,82,48.616667,2.5,2.01
+ Saintry-sur-Seine ,SAINTRY SUR SEINE ,91250,91577,82,48.6,2.5,2.01
+ Saint-Sulpice-de-Favières ,SAINT SULPICE DE FAVIERES,91910,91578,82,48.533333,2.183333,0.61
+ Saint-Vrain ,SAINT VRAIN ,91770,91579,82,48.533333,2.333333,0.63
+ Saint-Yon ,SAINT YON ,91650,91581,82,48.566667,2.183333,1
+ Saulx-les-Chartreux ,SAULX LES CHARTREUX ,91160,91587,82,48.683333,2.266667,1.27
+ Savigny-sur-Orge ,SAVIGNY SUR ORGE ,91600,91589,82,48.666667,2.35,1.1
+ Sermaise ,SERMAISE ,91530,91593,82,48.533333,2.083333,1.43
+ Soisy-sur-École ,SOISY SUR ECOLE ,91840,91599,82,48.466667,2.483333,1.87
+ Soisy-sur-Seine ,SOISY SUR SEINE ,91450,91600,82,48.65,2.45,1.6
+ Souzy-la-Briche ,SOUZY LA BRICHE ,91580,91602,82,48.533333,2.15,1.07
+ Tigery ,TIGERY ,91250,91617,82,48.633333,2.5,2.01
+ Torfou ,TORFOU ,91730,91619,82,48.533333,2.233333,1.08
+ Valpuiseaux ,VALPUISEAUX ,91720,91629,82,48.383333,2.316667,1.75
+ Le Val-Saint-Germain ,LE VAL SAINT GERMAIN,91530,91630,82,48.566667,2.066667,1.57
+ Vaugrigneuse ,VAUGRIGNEUSE ,91640,91634,82,48.6,2.116667,1.16
+ Vauhallan ,VAUHALLAN ,91430,91635,82,48.733333,2.2,1.77
+ Verrières-le-Buisson ,VERRIERES LE BUISSON ,91370,91645,82,48.75,2.266667,1.94
+ Vert-le-Grand ,VERT LE GRAND ,91810,91648,82,48.566667,2.366667,0.91
+ Vert-le-Petit ,VERT LE PETIT ,91710,91649,82,48.55,2.366667,0.91
+ Videlles ,VIDELLES ,91890,91654,82,48.466667,2.433333,1.46
+ Vigneux-sur-Seine ,VIGNEUX SUR SEINE ,91270,91657,82,48.7,2.416667,1.44
+ Villabé ,VILLABE ,91100,91659,82,48.583333,2.45,1.6
+ Villebon-sur-Yvette ,VILLEBON SUR YVETTE ,91940,91661,82,48.7,2.25,1.9
+ Villeconin ,VILLECONIN ,91580,91662,82,48.516667,2.116667,1.55
+ La Ville-du-Bois ,LA VILLE DU BOIS,91620,91665,82,48.65,2.266667,1
+ Villejust ,VILLEJUST ,91140,91666,82,48.683333,2.233333,1.27
+ Villemoisson-sur-Orge ,VILLEMOISSON SUR ORGE ,91360,91667,82,48.666667,2.316667,1.1
+ Villeneuve-sur-Auvers ,VILLENEUVE SUR AUVERS ,91580,91671,82,48.466667,2.25,1.57
+ Villiers-le-Bâcle ,VILLIERS LE BACLE ,91190,91679,82,48.716667,2.116667,1.61
+ Villiers-sur-Orge ,VILLIERS SUR ORGE ,91700,91685,82,48.65,2.3,1.42
+ Viry-Châtillon ,VIRY CHATILLON ,91170,91687,82,48.666667,2.383333,1.1
+ Wissous ,WISSOUS ,91320,91689,82,48.733333,2.333333,1.77
+ Yerres ,YERRES ,91330,91691,82,48.716667,2.5,2.01
+ Le Plessis-Chenet ,LE PLESSIS CHENET ,91830,91900,82,48.566667,2.483333,1.87
+ Villeziers ,VILLEZIERS ,91940,91903,82,48.666667,2.166667,1.1
+ Montjay ,MONTJAY ,91440,91907,82,48.683333,2.166667,1.27
+ Fretay ,FRETAY ,91140,91910,82,48.666667,2.216667,1.1
+ Mainville ,MAINVILLE ,91210,91912,82,48.683333,2.433333,1.46
+ Antony ,ANTONY ,92160,92002,72,48.75,2.3,2.11
+ Bagneux ,BAGNEUX ,92220,92007,72,48.8,2.3,1.18
+ Bois-Colombes ,BOIS COLOMBES ,92270,92009,72,48.916667,2.266667,1.8
+ Boulogne-Billancourt ,BOULOGNE BILLANCOURT ,92100,92012,72,48.833333,2.25,0.16
+ Bourg-la-Reine ,BOURG LA REINE ,92340,92014,72,48.775,2.316667,-1
+ Châtenay-Malabry ,CHATENAY MALABRY ,92290,92019,72,48.766667,2.266667,1.72
+ Châtillon ,CHATILLON ,92320,92020,72,48.8,2.283333,0.94
+ Chaville ,CHAVILLE ,92370,92022,72,48.8,2.2,1.49
+ Clamart ,CLAMART ,92140,92023,72,48.8,2.266667,0.94
+ Clichy ,CLICHY ,92110,92024,72,48.9,2.3,1.41
+ Colombes ,COLOMBES ,92700,92025,72,48.916667,2.25,1.8
+ Fontenay-aux-Roses ,FONTENAY AUX ROSES ,92260,92032,72,48.783333,2.283333,1.33
+ Garches ,GARCHES ,92380,92033,72,48.841667,2.183333,-1
+ La Garenne-Colombes ,LA GARENNE COLOMBES ,92250,92035,72,48.9,2.25,1.41
+ Gennevilliers ,GENNEVILLIERS ,92230,92036,72,48.933333,2.3,2.19
+ Issy-les-Moulineaux ,ISSY LES MOULINEAUX ,92130,92040,72,48.816667,2.266667,0.55
+ Levallois-Perret ,LEVALLOIS PERRET ,92300,92044,72,48.9,2.283333,1.41
+ Malakoff ,MALAKOFF ,92240,92046,72,48.816667,2.3,1.18
+ Marnes-la-Coquette ,MARNES LA COQUETTE ,92430,92047,72,48.833333,2.175,-1
+ Meudon ,MEUDON ,92190,92048,72,48.808333,2.241667,0.74
+ Montrouge ,MONTROUGE ,92120,92049,72,48.816667,2.316667,1.62
+ Nanterre ,NANTERRE ,92000,92050,72,48.9,2.2,1.49
+ Neuilly-sur-Seine ,NEUILLY SUR SEINE ,92200,92051,72,48.883333,2.266667,1.02
+ Le Plessis-Robinson ,LE PLESSIS ROBINSON ,92350,92060,72,48.783333,2.266667,1.33
+ Puteaux ,PUTEAUX ,92800,92062,72,48.866667,2.233333,0.63
+ Rueil-Malmaison ,RUEIL MALMAISON ,92500,92063,72,48.883333,2.2,1.49
+ Saint-Cloud ,SAINT CLOUD ,92210,92064,72,48.841667,2.216667,-1
+ Sceaux ,SCEAUX ,92330,92071,72,48.783333,2.283333,1.33
+ Sèvres ,SEVRES ,92310,92072,72,48.816667,2.2,1.49
+ Suresnes ,SURESNES ,92150,92073,72,48.866667,2.233333,0.63
+ Vanves ,VANVES ,92170,92075,72,48.833333,2.3,1.18
+ Vaucresson ,VAUCRESSON ,92420,92076,72,48.833333,2.175,-1
+ Ville-d'Avray ,VILLE D AVRAY ,92410,92077,72,48.825,2.191667,-1
+ Villeneuve-la-Garenne ,VILLENEUVE LA GARENNE ,92390,92078,72,48.933333,2.333333,-1
+ Aubervilliers ,AUBERVILLIERS ,93300,93001,11,48.916667,2.383333,1.1
+ Aulnay-sous-Bois ,AULNAY SOUS BOIS ,93600,93005,11,48.95,2.516667,1.52
+ Bagnolet ,BAGNOLET ,93170,93006,11,48.866667,2.416667,1.53
+ Le Blanc-Mesnil ,LE BLANC MESNIL ,93150,93007,11,48.933333,2.45,0.91
+ Bobigny ,BOBIGNY ,93000,93008,11,48.9,2.45,0.31
+ Bondy ,BONDY ,93140,93010,11,48.9,2.466667,0.31
+ Le Bourget ,LE BOURGET ,93350,93013,11,48.933333,2.416667,0.91
+ Clichy-sous-Bois ,CLICHY SOUS BOIS ,93390,93014,11,48.916667,2.55,1.35
+ Coubron ,COUBRON ,93470,93015,11,48.916667,2.583333,1.84
+ La Courneuve ,LA COURNEUVE ,93120,93027,11,48.916667,2.383333,1.1
+ Drancy ,DRANCY ,93700,93029,11,48.933333,2.45,0.91
+ Dugny ,DUGNY ,93440,93030,11,48.95,2.416667,1.52
+ Épinay-sur-Seine ,EPINAY SUR SEINE ,93800,93031,11,48.95,2.308333,-1
+ Gagny ,GAGNY ,93220,93032,11,48.883333,2.533333,1.1
+ Gournay-sur-Marne ,GOURNAY SUR MARNE ,93460,93033,11,48.866667,2.566667,1.59
+ L'Île-Saint-Denis ,L ILE SAINT DENIS,93450,93039,11,48.933333,2.333333,1.83
+ Les Lilas ,LES LILAS ,93260,93045,11,48.883333,2.433333,0.92
+ Livry-Gargan ,LIVRY GARGAN ,93190,93046,11,48.916667,2.55,1.35
+ Montfermeil ,MONTFERMEIL ,93370,93047,11,48.9,2.566667,1.59
+ Montreuil ,MONTREUIL ,93100,93048,11,48.866667,2.433333,1.53
+ Neuilly-Plaisance ,NEUILLY PLAISANCE ,93360,93049,11,48.866667,2.516667,1.53
+ Neuilly-sur-Marne ,NEUILLY SUR MARNE ,93330,93050,11,48.85,2.533333,2.14
+ Noisy-le-Grand ,NOISY LE GRAND ,93160,93051,11,48.85,2.566667,2.14
+ Noisy-le-Sec ,NOISY LE SEC ,93130,93053,11,48.883333,2.466667,0.92
+ Pantin ,PANTIN ,93500,93055,11,48.9,2.4,0.85
+ Les Pavillons-sous-Bois ,LES PAVILLONS SOUS BOIS,93320,93057,11,48.9,2.516667,0.86
+ Pierrefitte-sur-Seine ,PIERREFITTE SUR SEINE ,93380,93059,11,48.966667,2.366667,2.13
+ Le Pré-Saint-Gervais ,LE PRE SAINT GERVAIS,93310,93061,11,48.883333,2.4,0.92
+ Le Raincy ,LE RAINCY ,93340,93062,11,48.9,2.516667,0.86
+ Romainville ,ROMAINVILLE ,93230,93063,11,48.883333,2.433333,0.92
+ Rosny-sous-Bois ,ROSNY SOUS BOIS ,93110,93064,11,48.866667,2.483333,1.53
+ Saint-Denis ,SAINT DENIS ,93200,93066,11,48.933333,2.358333,1.47
+ Saint-Ouen ,SAINT OUEN ,93400,93070,11,48.9,2.333333,1.83
+ Sevran ,SEVRAN ,93270,93071,11,48.933333,2.533333,1.1
+ Stains ,STAINS ,93240,93072,11,48.95,2.383333,1.52
+ Vaujours ,VAUJOURS ,93410,93074,11,48.933333,2.566667,1.59
+ Villemomble ,VILLEMOMBLE ,93250,93077,11,48.883333,2.5,0.92
+ Villepinte ,VILLEPINTE ,93420,93078,11,48.966667,2.533333,2.13
+ Villetaneuse ,VILLETANEUSE ,93430,93079,11,48.958333,2.341667,-1
+ La Plaine-Saint-Denis ,LA PLAINE SAINT DENIS,93210,93900,11,48.9,2.366667,1.34
+ Ablon-sur-Seine ,ABLON SUR SEINE ,94480,94001,11,48.716667,2.416667,2
+ Alfortville ,ALFORTVILLE ,94140,94002,11,48.8,2.416667,0.64
+ Arcueil ,ARCUEIL ,94110,94003,11,48.8,2.333333,1.92
+ Boissy-Saint-Léger ,BOISSY SAINT LEGER ,94470,94004,11,48.75,2.516667,0.99
+ Bonneuil-sur-Marne ,BONNEUIL SUR MARNE ,94380,94011,11,48.766667,2.483333,0.48
+ Bry-sur-Marne ,BRY SUR MARNE ,94360,94015,11,48.833333,2.516667,1.54
+ Cachan ,CACHAN ,94230,94016,11,48.783333,2.333333,1.92
+ Champigny-sur-Marne ,CHAMPIGNY SUR MARNE ,94500,94017,11,48.816667,2.516667,1.04
+ Charenton-le-Pont ,CHARENTON LE PONT ,94220,94018,11,48.816667,2.416667,1.04
+ Chennevières-sur-Marne ,CHENNEVIERES SUR MARNE ,94430,94019,11,48.8,2.516667,0.89
+ Chevilly-Larue ,CHEVILLY LARUE ,94550,94021,11,48.766667,2.35,1.67
+ Choisy-le-Roi ,CHOISY LE ROI ,94600,94022,11,48.766667,2.416667,0.64
+ Créteil ,CRETEIL ,94000,94028,11,48.783333,2.466667,0.13
+ Fontenay-sous-Bois ,FONTENAY SOUS BOIS ,94120,94033,11,48.85,2.483333,2.05
+ Fresnes ,FRESNES ,94260,94034,11,48.75,2.316667,2.18
+ Gentilly ,GENTILLY ,94250,94037,11,48.816667,2.333333,1.92
+ L'Hay-les-Roses ,L HAY LES ROSES,94240,94038,11,48.783333,2.333333,1.92
+ Ivry-sur-Seine ,IVRY SUR SEINE ,94200,94041,11,48.816667,2.383333,1.15
+ Joinville-le-Pont ,JOINVILLE LE PONT ,94340,94042,11,48.816667,2.466667,1.04
+ Le Kremlin-Bicêtre ,LE KREMLIN BICETRE ,94270,94043,11,48.816667,2.366667,1.41
+ Limeil-Brévannes ,LIMEIL BREVANNES ,94450,94044,11,48.733333,2.483333,1.49
+ Maisons-Alfort ,MAISONS ALFORT ,94700,94046,11,48.8,2.433333,0.53
+ Mandres-les-Roses ,MANDRES LES ROSES ,94520,94047,11,48.7,2.55,2.5
+ Marolles-en-Brie ,MAROLLES EN BRIE ,94440,94048,11,48.733333,2.55,1.49
+ Nogent-sur-Marne ,NOGENT SUR MARNE ,94130,94052,11,48.833333,2.483333,1.54
+ Noiseau ,NOISEAU ,94880,94053,11,48.783333,2.55,1.4
+ Orly ,ORLY ,94310,94054,11,48.75,2.4,0.99
+ Ormesson-sur-Marne ,ORMESSON SUR MARNE ,94490,94055,11,48.783333,2.55,1.4
+ Périgny ,PERIGNY ,94520,94056,11,48.7,2.55,2.5
+ Le Perreux-Sur-Marne ,LE PERREUX SUR MARNE,94170,94058,11,48.85,2.5,2.05
+ Le Plessis-Trévise ,LE PLESSIS TREVISE ,94420,94059,11,48.816667,2.566667,1.66
+ La Queue-en-Brie ,LA QUEUE EN BRIE,94510,94060,11,48.783333,2.583333,1.92
+ Rungis ,RUNGIS ,94150,94065,11,48.75,2.35,1.67
+ Saint-Mandé ,SAINT MANDE ,94160,94067,11,48.833333,2.416667,1.54
+ Saint-Maur-des-Fossés ,SAINT MAUR DES FOSSES,94210,94068,11,48.8,2.5,0.64
+ Saint-Maurice ,SAINT MAURICE ,94410,94069,11,48.816667,2.458333,-1
+ Santeny ,SANTENY ,94440,94070,11,48.716667,2.566667,2
+ Sucy-en-Brie ,SUCY EN BRIE ,94880,94071,11,48.766667,2.533333,1.15
+ Thiais ,THIAIS ,94320,94073,11,48.766667,2.383333,1.15
+ Valenton ,VALENTON ,94460,94074,11,48.75,2.466667,1
+ Villecresnes ,VILLECRESNES ,94440,94075,11,48.716667,2.533333,2
+ Villejuif ,VILLEJUIF ,94800,94076,11,48.8,2.366667,1.41
+ Villeneuve-le-Roi ,VILLENEUVE LE ROI ,94290,94077,11,48.733333,2.416667,1.49
+ Villeneuve-Saint-Georges ,VILLENEUVE SAINT GEORGES ,94190,94078,11,48.733333,2.45,1.49
+ Villiers-sur-Marne ,VILLIERS SUR MARNE ,94350,94079,11,48.833333,2.55,1.54
+ Vincennes ,VINCENNES ,94300,94080,11,48.85,2.433333,2.05
+ Vitry-sur-Seine ,VITRY SUR SEINE ,94400,94081,11,48.783333,2.4,0.9
+ Val Pompadour ,VAL POMPADOUR ,94460,94902,11,48.766667,2.45,1
+ Coeuilly ,COEUILLY ,94500,94903,11,48.816667,2.55,1.4
+ Les Bruyères ,LES BRUYERES ,94370,94904,11,48.775,2.516667,-1
+ Ableiges ,ABLEIGES ,95450,95002,11,49.083333,1.983333,1.53
+ Aincourt ,AINCOURT ,95510,95008,11,49.066667,1.783333,1.74
+ Ambleville ,AMBLEVILLE ,95710,95011,11,49.15,1.7,2.14
+ Amenucourt ,AMENUCOURT ,95510,95012,11,49.1,1.65,2.37
+ Andilly ,ANDILLY ,95580,95014,11,49,2.3,1.51
+ Argenteuil ,ARGENTEUIL ,95100,95018,11,48.95,2.25,2.51
+ Arnouville-lès-Gonesse ,ARNOUVILLE LES GONESSE ,95400,95019,11,48.983333,2.416667,1.84
+ Arronville ,ARRONVILLE ,95810,95023,11,49.183333,2.1,2.15
+ Arthies ,ARTHIES ,95420,95024,11,49.1,1.783333,1.74
+ Asnières-sur-Oise ,ASNIERES SUR OISE ,95270,95026,11,49.133333,2.35,1.34
+ Attainville ,ATTAINVILLE ,95570,95028,11,49.05,2.35,0.96
+ Auvers-sur-Oise ,AUVERS SUR OISE ,95760,95039,11,49.066667,2.166667,1
+ Avernes ,AVERNES ,95450,95040,11,49.083333,1.866667,1.34
+ Baillet-en-France ,BAILLET EN FRANCE ,95560,95042,11,49.066667,2.3,0.73
+ Banthelu ,BANTHELU ,95420,95046,11,49.133333,1.816667,1.58
+ Beauchamp ,BEAUCHAMP ,95250,95051,11,49.016667,2.2,1.18
+ Beaumont-sur-Oise ,BEAUMONT SUR OISE ,95260,95052,11,49.133333,2.283333,1.15
+ Le Bellay-en-Vexin ,LE BELLAY EN VEXIN,95750,95054,11,49.15,1.883333,1.49
+ Bellefontaine ,BELLEFONTAINE ,95270,95055,11,49.1,2.466667,1.56
+ Belloy-en-France ,BELLOY EN FRANCE ,95270,95056,11,49.083333,2.383333,1.12
+ Bernes-sur-Oise ,BERNES SUR OISE ,95340,95058,11,49.166667,2.3,1.82
+ Berville ,BERVILLE ,95810,95059,11,49.183333,2.066667,2.15
+ Bessancourt ,BESSANCOURT ,95550,95060,11,49.033333,2.216667,0.84
+ Béthemont-la-Forêt ,BETHEMONT LA FORET ,95840,95061,11,49.05,2.25,1
+ Bezons ,BEZONS ,95870,95063,11,48.933333,2.216667,2.84
+ Boisemont ,BOISEMONT ,95000,95074,11,49.016667,2,1.45
+ Boissy-l'Aillerie ,BOISSY L AILLERIE ,95650,95078,11,49.066667,2.033333,0.55
+ Bonneuil-en-France ,BONNEUIL EN FRANCE ,95500,95088,11,48.966667,2.433333,2.18
+ Bouffémont ,BOUFFEMONT ,95570,95091,11,49.05,2.3,1.52
+ Bouqueval ,BOUQUEVAL ,95720,95094,11,49.016667,2.433333,1.53
+ Bray-et-Lû ,BRAY ET LU ,95710,95101,11,49.133333,1.65,2.37
+ Bréançon ,BREANCON ,95640,95102,11,49.15,2.016667,1.49
+ Brignancourt ,BRIGNANCOURT ,95640,95110,11,49.133333,1.95,1.15
+ Bruyères-sur-Oise ,BRUYERES SUR OISE ,95820,95116,11,49.166667,2.316667,1.82
+ Buhy ,BUHY ,95770,95119,11,49.2,1.683333,2.49
+ Butry-sur-Oise ,BUTRY SUR OISE ,95430,95120,11,49.083333,2.2,0.25
+ Cergy ,CERGY ,95000,95127,11,49.033333,2.066667,0.84
+ Champagne-sur-Oise ,CHAMPAGNE SUR OISE ,95660,95134,11,49.133333,2.25,1.15
+ La Chapelle-en-Vexin ,LA CHAPELLE EN VEXIN,95420,95139,11,49.183333,1.733333,2.15
+ Charmont ,CHARMONT ,95420,95141,11,49.133333,1.783333,1.74
+ Chars ,CHARS ,95750,95142,11,49.166667,1.933333,1.82
+ Châtenay-en-France ,CHATENAY EN FRANCE ,95190,95144,11,49.066667,2.45,1.44
+ Chaumontel ,CHAUMONTEL ,95270,95149,11,49.116667,2.433333,1.36
+ Chaussy ,CHAUSSY ,95710,95150,11,49.116667,1.683333,2.22
+ Chauvry ,CHAUVRY ,95560,95151,11,49.05,2.266667,1.92
+ Chennevières-lès-Louvres ,CHENNEVIERES LES LOUVRES ,95380,95154,11,49.05,2.55,1.92
+ Chérence ,CHERENCE ,95510,95157,11,49.083333,1.683333,2.22
+ Cléry-en-Vexin ,CLERY EN VEXIN ,95420,95166,11,49.133333,1.85,1.51
+ Commeny ,COMMENY ,95450,95169,11,49.116667,1.9,1.18
+ Condécourt ,CONDECOURT ,95450,95170,11,49.033333,1.95,1.36
+ Cormeilles-en-Parisis ,CORMEILLES EN PARISIS ,95240,95176,11,48.983333,2.2,1.84
+ Cormeilles-en-Vexin ,CORMEILLES EN VEXIN ,95830,95177,11,49.116667,2.016667,1
+ Courcelles-sur-Viosne ,COURCELLES SUR VIOSNE ,95650,95181,11,49.083333,2,0.97
+ Courdimanche ,COURDIMANCHE ,95800,95183,11,49.033333,2,0.84
+ Deuil-la-Barre ,DEUIL LA BARRE ,95170,95197,11,48.983333,2.333333,1.84
+ Domont ,DOMONT ,95330,95199,11,49.033333,2.333333,0.88
+ Eaubonne ,EAUBONNE ,95600,95203,11,49,2.283333,1.51
+ Écouen ,ECOUEN ,95440,95205,11,49.016667,2.383333,1.18
+ Enghien-les-Bains ,ENGHIEN LES BAINS ,95880,95210,11,48.966667,2.316667,2.18
+ Ennery ,ENNERY ,95300,95211,11,49.066667,2.1,0.6
+ Épiais-lès-Louvres ,EPIAIS LES LOUVRES ,95380,95212,11,49.033333,2.55,1.92
+ Épiais-Rhus ,EPIAIS RHUS ,95810,95213,11,49.116667,2.066667,1.16
+ Épinay-Champlâtreux ,EPINAY CHAMPLATREUX ,95270,95214,11,49.083333,2.416667,1.28
+ Éragny ,ERAGNY ,95610,95218,11,49.016667,2.1,1.18
+ Ermont ,ERMONT ,95120,95219,11,48.983333,2.266667,1.84
+ Ézanville ,EZANVILLE ,95460,95229,11,49.033333,2.366667,1.04
+ Fontenay-en-Parisis ,FONTENAY EN PARISIS ,95190,95241,11,49.05,2.45,1.44
+ Fosses ,FOSSES ,95470,95250,11,49.1,2.483333,1.8
+ Franconville ,FRANCONVILLE ,95130,95252,11,48.983333,2.233333,1.84
+ Frémainville ,FREMAINVILLE ,95450,95253,11,49.066667,1.866667,1.34
+ Frémécourt ,FREMECOURT ,95830,95254,11,49.116667,2,1
+ Frépillon ,FREPILLON ,95740,95256,11,49.05,2.216667,0.51
+ La Frette-sur-Seine ,LA FRETTE SUR SEINE,95530,95257,11,48.966667,2.183333,2.18
+ Frouville ,FROUVILLE ,95690,95258,11,49.15,2.15,1.49
+ Gadancourt ,GADANCOURT ,95450,95259,11,49.1,1.866667,1.34
+ Garges-lès-Gonesse ,GARGES LES GONESSE ,95140,95268,11,48.966667,2.416667,2.18
+ Génainville ,GENAINVILLE ,95420,95270,11,49.133333,1.75,1.9
+ Génicourt ,GENICOURT ,95650,95271,11,49.083333,2.066667,1.69
+ Gonesse ,GONESSE ,95500,95277,11,48.983333,2.45,1.84
+ Goussainville ,GOUSSAINVILLE ,95190,95280,11,49.016667,2.466667,1.52
+ Gouzangrez ,GOUZANGREZ ,95450,95282,11,49.116667,1.916667,1.1
+ Grisy-les-Plâtres ,GRISY LES PLATRES ,95810,95287,11,49.133333,2.05,1.15
+ Groslay ,GROSLAY ,95410,95288,11,48.983333,2.35,1.84
+ Guiry-en-Vexin ,GUIRY EN VEXIN ,95450,95295,11,49.133333,1.85,1.7
+ Haravilliers ,HARAVILLIERS ,95640,95298,11,49.183333,2.05,2.15
+ Haute-Isle ,HAUTE ISLE ,95780,95301,11,49.083333,1.666667,2.29
+ Le Heaulme ,LE HEAULME ,95640,95303,11,49.166667,2,1.82
+ Hédouville ,HEDOUVILLE ,95690,95304,11,49.15,2.166667,1.49
+ Herblay ,HERBLAY ,95220,95306,11,49,2.166667,1.51
+ Hérouville ,HEROUVILLE ,95300,95308,11,49.1,2.133333,1.3
+ Hodent ,HODENT ,95420,95309,11,49.15,1.766667,1.82
+ L'Isle-Adam ,L ISLE ADAM ,95290,95313,11,49.116667,2.233333,0.82
+ Jagny-sous-Bois ,JAGNY SOUS BOIS ,95850,95316,11,49.083333,2.45,1.44
+ Jouy-le-Moutier ,JOUY LE MOUTIER ,95280,95323,11,49.016667,2.033333,1.18
+ Labbeville ,LABBEVILLE ,95690,95328,11,49.133333,2.15,1.15
+ Lassy ,LASSY ,95270,95331,11,49.1,2.45,1.44
+ Livilliers ,LIVILLIERS ,95300,95341,11,49.1,2.1,0.89
+ Longuesse ,LONGUESSE ,95450,95348,11,49.066667,1.933333,1.02
+ Louvres ,LOUVRES ,95380,95351,11,49.033333,2.5,1.68
+ Luzarches ,LUZARCHES ,95270,95352,11,49.116667,2.416667,1.28
+ Maffliers ,MAFFLIERS ,95560,95353,11,49.083333,2.316667,1.22
+ Magny-en-Vexin ,MAGNY EN VEXIN ,95420,95355,11,49.15,1.783333,1.74
+ Mareil-en-France ,MAREIL EN FRANCE ,95850,95365,11,49.066667,2.433333,1.36
+ Margency ,MARGENCY ,95580,95369,11,49,2.3,1.51
+ Marines ,MARINES ,95640,95370,11,49.15,1.983333,1.49
+ Marly-la-Ville ,MARLY LA VILLE ,95670,95371,11,49.083333,2.5,1.68
+ Maudétour-en-Vexin ,MAUDETOUR EN VEXIN ,95420,95379,11,49.1,1.783333,1.74
+ Ménouville ,MENOUVILLE ,95810,95387,11,49.15,2.1,1.49
+ Menucourt ,MENUCOURT ,95180,95388,11,49.016667,1.983333,1.18
+ Mériel ,MERIEL ,95630,95392,11,49.083333,2.2,0.25
+ Méry-sur-Oise ,MERY SUR OISE ,95540,95394,11,49.066667,2.2,0.25
+ Le Mesnil-Aubry ,LE MESNIL AUBRY ,95720,95395,11,49.05,2.4,1.2
+ Moisselles ,MOISSELLES ,95570,95409,11,49.05,2.333333,0.88
+ Montgeroult ,MONTGEROULT ,95650,95422,11,49.083333,2,0.97
+ Montigny-lès-Cormeilles ,MONTIGNY LES CORMEILLES ,95370,95424,11,48.983333,2.183333,1.84
+ Montlignon ,MONTLIGNON ,95680,95426,11,49.016667,2.283333,1.18
+ Montmagny ,MONTMAGNY ,95360,95427,11,48.966667,2.35,2.18
+ Montmorency ,MONTMORENCY ,95160,95428,11,49,2.333333,1.51
+ Montreuil-sur-Epte ,MONTREUIL SUR EPTE ,95770,95429,11,49.183333,1.683333,2.22
+ Montsoult ,MONTSOULT ,95560,95430,11,49.066667,2.316667,0.86
+ Mours ,MOURS ,95260,95436,11,49.133333,2.266667,1.15
+ Moussy ,MOUSSY ,95640,95438,11,49.133333,1.916667,1.84
+ Nerville-la-Forêt ,NERVILLE LA FORET ,95590,95445,11,49.083333,2.283333,1.48
+ Nesles-la-Vallée ,NESLES LA VALLEE ,95690,95446,11,49.133333,2.183333,1.45
+ Neuilly-en-Vexin ,NEUILLY EN VEXIN ,95640,95447,11,49.166667,1.983333,1.82
+ Neuville-sur-Oise ,NEUVILLE SUR OISE ,95000,95450,11,49.016667,2.066667,1.18
+ Nointel ,NOINTEL ,95590,95452,11,49.133333,2.3,1.15
+ Noisy-sur-Oise ,NOISY SUR OISE ,95270,95456,11,49.133333,2.333333,1.7
+ Nucourt ,NUCOURT ,95420,95459,11,49.166667,1.85,1.82
+ Omerville ,OMERVILLE ,95420,95462,11,49.133333,1.716667,2.06
+ Osny ,OSNY ,95520,95476,11,49.066667,2.066667,0.39
+ Parmain ,PARMAIN ,95620,95480,11,49.116667,2.216667,0.82
+ Le Perchay ,LE PERCHAY ,95450,95483,11,49.116667,1.933333,1.02
+ Persan ,PERSAN ,95340,95487,11,49.15,2.266667,1.49
+ Pierrelaye ,PIERRELAYE ,95480,95488,11,49.016667,2.166667,1.18
+ Piscop ,PISCOP ,95350,95489,11,49.016667,2.35,1.18
+ Le Plessis-Bouchard ,LE PLESSIS BOUCHARD ,95130,95491,11,49,2.233333,1.51
+ Le Plessis-Gassot ,LE PLESSIS GASSOT ,95720,95492,11,49.033333,2.416667,1.28
+ Le Plessis-Luzarches ,LE PLESSIS LUZARCHES ,95270,95493,11,49.1,2.45,1.44
+ Pontoise ,PONTOISE ,95300,95500,11,49.05,2.1,1.21
+ Presles ,PRESLES ,95590,95504,11,49.116667,2.3,0.82
+ Puiseux-en-France ,PUISEUX EN FRANCE ,95380,95509,11,49.066667,2.483333,1.61
+ Puiseux-Pontoise ,PUISEUX PONTOISE ,95650,95510,11,49.05,2.016667,0.92
+ La Roche-Guyon ,LA ROCHE GUYON ,95780,95523,11,49.083333,1.633333,2.45
+ Roissy-en-France ,ROISSY EN FRANCE ,95700,95527,11,49,2.516667,1.76
+ Ronquerolles ,RONQUEROLLES ,95340,95529,11,49.166667,2.216667,1.82
+ Sagy ,SAGY ,95450,95535,11,49.05,1.95,1.1
+ Saint-Brice-sous-Forêt ,SAINT BRICE SOUS FORET,95350,95539,11,49,2.366667,1.51
+ Saint-Clair-sur-Epte ,SAINT CLAIR SUR EPTE,95770,95541,11,49.2,1.683333,2.49
+ Saint-Cyr-en-Arthies ,SAINT CYR EN ARTHIES,95510,95543,11,49.066667,1.75,1.9
+ Saint-Gervais ,SAINT GERVAIS ,95420,95554,11,49.166667,1.766667,1.82
+ Saint-Gratien ,SAINT GRATIEN ,95210,95555,11,48.966667,2.283333,2.18
+ Saint-Leu-la-Forêt ,SAINT LEU LA FORET,95320,95563,11,49.016667,2.25,1.18
+ Saint-Martin-du-Tertre ,SAINT MARTIN DU TERTRE,95270,95566,11,49.1,2.35,1.24
+ Saint-Ouen-l'Aumône ,SAINT OUEN L AUMONE,95310,95572,11,49.05,2.116667,0.51
+ Saint-Prix ,SAINT PRIX ,95390,95574,11,49.016667,2.266667,1.18
+ Saint-Witz ,SAINT WITZ ,95470,95580,11,49.083333,2.566667,2
+ Sannois ,SANNOIS ,95110,95582,11,48.966667,2.25,2.18
+ Santeuil ,SANTEUIL ,95640,95584,11,49.133333,1.95,1.15
+ Sarcelles ,SARCELLES ,95200,95585,11,49,2.383333,1.51
+ Seraincourt ,SERAINCOURT ,95450,95592,11,49.033333,1.866667,1.47
+ Seugy ,SEUGY ,95270,95594,11,49.116667,2.4,1.2
+ Soisy-sous-Montmorency ,SOISY SOUS MONTMORENCY ,95230,95598,11,48.983333,2.3,1.84
+ Survilliers ,SURVILLIERS ,95470,95604,11,49.1,2.55,1.92
+ Taverny ,TAVERNY ,95150,95607,11,49.033333,2.216667,0.84
+ Théméricourt ,THEMERICOURT ,95450,95610,11,49.083333,1.9,1.18
+ Theuville ,THEUVILLE ,95810,95611,11,49.15,2.066667,1.49
+ Le Thillay ,LE THILLAY ,95500,95612,11,49,2.466667,1.52
+ Us ,US ,95450,95625,11,49.1,1.966667,1.21
+ Vallangoujard ,VALLANGOUJARD ,95810,95627,11,49.133333,2.116667,1.26
+ Valmondois ,VALMONDOIS ,95760,95628,11,49.1,2.2,1
+ Vaudherland ,VAUDHERLAND ,95500,95633,11,49,2.483333,1.6
+ Vauréal ,VAUREAL ,95490,95637,11,49.033333,2.033333,0.84
+ Vémars ,VEMARS ,95470,95641,11,49.066667,2.566667,2
+ Vétheuil ,VETHEUIL ,95780,95651,11,49.066667,1.7,2.14
+ Viarmes ,VIARMES ,95270,95652,11,49.133333,2.366667,1.15
+ Vienne-en-Arthies ,VIENNE EN ARTHIES ,95510,95656,11,49.066667,1.733333,1.98
+ Vigny ,VIGNY ,95450,95658,11,49.083333,1.933333,1.02
+ Villaines-sous-Bois ,VILLAINES SOUS BOIS ,95570,95660,11,49.083333,2.366667,1.52
+ Villeron ,VILLERON ,95380,95675,11,49.05,2.533333,1.84
+ Villers-en-Arthies ,VILLERS EN ARTHIES ,95510,95676,11,49.1,1.733333,1.98
+ Villiers-Adam ,VILLIERS ADAM ,95840,95678,11,49.066667,2.233333,1
+ Villiers-le-Bel ,VILLIERS LE BEL ,95400,95680,11,49,2.383333,1.51
+ Villiers-le-Sec ,VILLIERS LE SEC ,95720,95682,11,49.066667,2.4,1.32
+ Wy-dit-Joly-Village ,WY DIT JOLY VILAGE,95420,95690,11,49.1,1.833333,1.5
+Asprières,ASPRIERES,12700,12012,0,44.546666,2.145555,
+Baraqueville,BARAQUEVILLE,12160,12056,0,44.277777,2.433611,
+Bogny-Sur-Meuse,BOGNY SUR MEUSE,8120,8081,0,49.850833,4.767777,
+Bourgoin-Jallieu,BOURGOIN JALLIEU,38300,38053,0,45.591666,5.279722,
+Callac,CALLAC,22160,22025,0,48.405,-3.426666,
+Campagnac,CAMPAGNAC,12560,12047,0,44.418333,3.087777,
+Canet-En-Roussillon,CANET EN ROUSSILLON,66140,66037,0,42.706666,3.007777,
+Cavaillon,CAVAILLON,84300,84035,0,43.8375,5.038055,
+Château-Chinon,CHATEAU CHINON,58120,58062,0,47.065277,3.933055,
+Château-Arnoux Saint-Auban,CHATEAU ARNOUX SAINT AUBAN,4160,4049,0,44.094166,6.009166,
+Cordes-Sur-Ciel,CORDES SUR CIEL,81170,81069,0,44.064444,1.953611,
+Cosne-Cours-sur-Loire,COSNE COURS SUR LOIRE,58200,58086,0,47.412222, ,
+Cours-La-Ville,COURS LA VILLE,69470,69066,0,46.100277,4.321388,
+Deauville,DEAUVILLE,14800,14220,0,49.36,0.075277,
+Digne-Les-Bains,DIGNE LES BAINS,4000,4070,0,44.093333,6.236388,
+Dinan,DINAN,22100,22050,0,48.456388,-2.236388,
+Font-Romeu-Odeillo-Via,FONT ROMEU ODEILLO VIA,66120,66124,0,42.498333,2.034722,
+Fontiers-Cabardes,FONTIERS CABARDES,11310,11150,0,43.370555,2.248611,
+Fréjus,FREJUS,83600,83061,0,43.433888,6.736111,
+Gençay,GENCAY,86160,86103,0,46.373333,0.405833,
+Grenade,GRENADE,31330,31232,0,43.772222,1.293611,
+La Grave,LA GRAVE,5320,5063,0,45.046944,6.306666,
+Laguepie,LAGUEPIE,82250,82088,0,44.145277,1.970555,
+Laragne-Monteglin,LARAGNE MONTEGLIN,5300,5070,0,44.315833,5.822222,
+Lévignac,LEVIGNAC,31530,31297,0,43.666944,1.195277,
+Mauleon,MAULEON,79700,79079,0,46.923611,-0.748333,
+Neuville-De-Poitou,NEUVILLE DE POITOU,86170,86177,0,46.686111,0.245833,
+Ouessant,OUESSANT,29242,29155,0,48.458055,-5.095555,
+Roanne,ROANNE,42300,42187,0,46.036666,4.068888,
+Romorantin-Lanthenay,ROMORANTIN LANTHENAY,41200,41194,0,47.358888,1.743611,
+Royère-De-Vassivière,ROYERE DE VASSIVIERE,23460,23165,0,45.841944,1.911944,
+Saint-Affrique,SAINT AFFRIQUE,12400,12208,0,43.959166,2.887222,
+Saint-Amand-Montrond,SAINT AMAND MONTROND,18200,18197,0,46.723611,2.505555,
+Saint-Fargeau-Ponthierry,SAINT FARGEAU PONTHIERRY,77310,77407,0,48.533333,2.545277,
+Saint-Honoré-Les-Bains,SAINT HONORE LES BAINS,58360,58246,0,46.906666,3.841111,
+Saint-Laurent-En-Grandvaux,SAINT LAURENT EN GRANDVAUX,39150,39487,0,46.576388,5.956666,
+Saint-Denis-En-Margeride,SAINT DENIS EN MARGERIDE,48700,48145,0,44.736388, ,
+Semur-en-Auxois,SEMUR EN AUXOIS,21140,21603,0,47.491388,4.333611,
+Sens,SENS,89100,89387,0,48.198055,3.283888,
+Seyssel,SEYSSEL,1420,1407,0,45.959722,5.831944,
+Seyssel,SEYSSEL,74910,74269,0,45.959722,5.837222,
+Saint-Gilles-Croix-de-Vie,SAINT GILLES CROIX DE VIE,85800,85222,0,46.698333,-1.939444,
+Terrasson-Lavilledieu,TERRASSON LAVILLEDIEU,24120,24547,0,45.130833,1.301944,
+Villefort,VILLEFORT,48800,48198,0,44.440277,3.932777,
+Villefort,VILLEFORT,11230,11424,0,42.954722,2.033056,
+Montreuil,MONTREUIL,62170,62588,0,50.464444,1.764166,
+Mas-Blanc-des-Alpilles,MAS BLANC DES ALPILLES,13103,13057,0,43.79,4.757777,
+Meyzieu,MEYZIEU,69330,69282,0,45.767222,5.003333,
+Rillieux-La-Pape,RILLIEUX LA PAPE,69140,69286,0,45.821388,4.898333,
+Le Puy-en-Velay,LE PUY EN VELAY,43000,43157,0,45.044166,3.885833,
+Rieutort-de-Randon,RIEUTORT DE RANDON,48700,48127,0,44.635277,3.479166,
+Alos,ALOS,9200,9008,0,42.908055, ,
+Antras,ANTRAS,9800,9011,0,42.881666,0.943055,
+Artigues,ARTIGUES,9460,9020,0,42.717777,2.069166,
+La Bastide-de-Lordat,LA BASTIDE DE LORDAT,9700,9040,0,43.143888, ,
+Bonac-Irazein,BONAC IRAZEIN,9800,9059,0,42.876944,0.973888,
+Brassac,BRASSAC,9000,9066,0,42.945833,1.537222,
+Les Cabannes,LES CABANNES,9310,9070,0,42.785555,1.687222,
+Castex,CASTEX,9350,9084,0,43.166111,1.312777,
+Caumont,CAUMONT,9160,9086,0,43.030555,1.085555,
+Cazenave-Serres-et-Allens,CAZENAVE SERRES ET ALLENS,9400,9092,0,42.840277, ,
+Encourtiech,ENCOURTIECH,9200,9110,0,42.959444,1.182222,
+Esplas,ESPLAS,9700,9117,0,43.1875,1.498888,
+Esplas-de-Serou,ESPLAS DE SEROU,9420,9118,0,42.975,1.376111,
+Fabas,FABAS,9230,9120,0,43.108055,1.105833,
+Goulier,GOULIER,9220,9135,0,42.755277,1.503611,
+L'Hospitalet-Près-l'Andorre,L HOSPITALET PRES L ANDORRE,9390,9139,0,42.590833,1.803055,
+Ilhat,ILHAT,9300,9142,0,42.956944,1.784444,
+Lacave,LACAVE,9160,9148,0,43.040277,0.997222,
+Lagarde,LAGARDE,9500,9150,0,43.049444,1.933888,
+Lasserre,LASSERRE,9230,9158,0,43.069166,1.170555,
+Mazères,MAZERES,9270,9185,0,43.251666,1.678055,
+Montaut,MONTAUT,9700,9199,0,43.187222,1.643888,
+Montfa,MONTFA,9350,9205,0,43.099444,1.283611,
+Montgaillard,MONTGAILLARD,9330,9207,0,42.934444,1.634722,
+Pereille,PEREILLE,9300,9227,0,42.938611,1.801666,
+Prades,PRADES,9110,9232,0,42.786944,1.878333,
+Prat-Bonrepaux,PRAT BONREPAUX,9160,9235,0,43.028888,1.018888,
+Sainte-Croix-Volvestre,SAINTE CROIX VOLVESTRE,9230,9257,0,43.125833,1.174166,
+Saint-Félix-de-Rieutord,SAINT FELIX DE RIEUTORD,9120,9258,0,43.046388,1.673055,
+Saint-Lary,SAINT LARY,9800,9267,0,42.929166,0.894444,
+Saint-Michel,SAINT MICHEL,9100,9271,0,43.135, ,
+Lorp-Sentaraille,LORP SENTARAILLE,9190,9289,0,43.008888,1.119444,
+Soueix-Rogalle,SOUEIX ROGALLE,9140,9299,0,42.893333,1.211388,
+Soulan,SOULAN,9320,9301,0,42.913333,1.233055,
+Villeneuve,VILLENEUVE,9800,9335,0,42.938333,0.981666,
Added: cartography/trunk/leaflet/src/main/resources/log4j.properties
===================================================================
--- cartography/trunk/leaflet/src/main/resources/log4j.properties (rev 0)
+++ cartography/trunk/leaflet/src/main/resources/log4j.properties 2013-07-03 16:32:13 UTC (rev 682)
@@ -0,0 +1,10 @@
+# Default to info level output; this is very handy if you eventually use Hibernate as well.
+log4j.rootCategory=warn, A1
+
+# A1 is set to be a ConsoleAppender.
+log4j.appender.A1=org.apache.log4j.ConsoleAppender
+
+# A1 uses PatternLayout.
+log4j.appender.A1.layout=org.apache.log4j.PatternLayout
+
+log4j.logger.org.nuiton.cartography=DEBUG
Added: cartography/trunk/leaflet/src/main/webapp/DEPARTEMENT.json
===================================================================
--- cartography/trunk/leaflet/src/main/webapp/DEPARTEMENT.json (rev 0)
+++ cartography/trunk/leaflet/src/main/webapp/DEPARTEMENT.json 2013-07-03 16:32:13 UTC (rev 682)
@@ -0,0 +1,198 @@
+var depts = {
+"type": "FeatureCollection",
+
+"features": [
+{ "type": "Feature", "properties": { "ID_GEOFLA": "1", "CODE_DEPT": "01", "NOM_DEPT": "AIN", "CODE_CHF": "053", "NOM_CHF": "BOURG-EN-BRESSE", "X_CHF_LIEU": "8717", "Y_CHF_LIEU": "65696", "X_CENTROID": "8814", "Y_CENTROID": "65582", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.829631, 45.93758 ], [ 5.826116, 45.935262 ], [ 5.821881, 45.929241 ], [ 5.828998, 45.91696 ], [ 5.826317, 45.903693 ], [ 5.824882, 45.900386 ], [ 5.815154, 45.877201 ], [ 5.813809, 45.87385 ], [ 5.807525, 45.86064 ], [ 5.805399, 45.857881 ], [ 5.801109, 45.845796 ], [ 5.79585, 45.8298 ], [ 5.79213, 45.8281 ], [ 5.786934, 45.823224 ], [ 5.785319, 45.820075 ], [ 5.784591, 45.797224 ], [ 5.781383, 45.78084 ], [ 5.780056, 45.77802 ], [ 5.783047, 45.772465 ], [ 5.782612, 45.768944 ], [ 5.779509, 45.758712 ], [ 5.783592, 45.745204 ], [ 5.780427, 45.74292 ], [ 5.776639, 45.74258 ], [ 5.769679, 45.740816 ], [ 5.771226, 45.73755 ], [ 5.776366, 45.72792 ], [ 5.753456, 45.7068 ], [ 5.744182, 45.706263 ], [ 5.731321, 45.710153 ], [ 5.727741, 45.70927 ], [ 5.723288, 45.708167 ], [ 5.700599, 45.709948 ], [ 5.699897, 45.706901 ], [ 5.703726, 45.69815 ], [ 5.706277, 45.6951 ], [ 5.709199, 45.684927 ], [ 5.68564, 45.667012 ], [ 5.684166, 45.660199 ], [ 5.687844, 45.65364 ], [ 5.68945, 45.65048 ], [ 5.687901, 45.643964 ], [ 5.684695, 45.64143 ], [ 5.676337, 45.638059 ], [ 5.652818, 45.636679 ], [ 5.648328, 45.627405 ], [ 5.646456, 45.624764 ], [ 5.638412, 45.623025 ], [ 5.636372, 45.617397 ], [ 5.635454, 45.61404 ], [ 5.627389, 45.611 ], [ 5.623748, 45.61327 ], [ 5.621712, 45.61637 ], [ 5.614911, 45.625412 ], [ 5.604439, 45.63618 ], [ 5.601936, 45.652616 ], [ 5.581829, 45.661944 ], [ 5.578845, 45.66464 ], [ 5.579384, 45.66793 ], [ 5.567337, 45.673078 ], [ 5.563144, 45.674111 ], [ 5.555279, 45.671605 ], [ 5.551755, 45.673496 ], [ 5.550315, 45.68185 ], [ 5.547252, 45.68456 ], [ 5.545775, 45.69463 ], [ 5.5523, 45.6984 ], [ 5.556579, 45.696685 ], [ 5.565766, 45.68492 ], [ 5.574246, 45.687588 ], [ 5.575188, 45.69099 ], [ 5.570146, 45.69675 ], [ 5.556418, 45.70043 ], [ 5.552641, 45.7097 ], [ 5.549373, 45.711894 ], [ 5.545542, 45.71359 ], [ 5.527275, 45.71546 ], [ 5.524538, 45.718336 ], [ 5.517509, 45.73119 ], [ 5.514251, 45.733378 ], [ 5.498152, 45.744385 ], [ 5.494597, 45.7466 ], [ 5.483998, 45.75328 ], [ 5.460403, 45.778306 ], [ 5.450481, 45.784234 ], [ 5.447078, 45.786191 ], [ 5.444401, 45.789132 ], [ 5.439151, 45.795056 ], [ 5.435753, 45.79743 ], [ 5.422513, 45.80713 ], [ 5.422726, 45.82372 ], [ 5.436129, 45.826383 ], [ 5.435634, 45.829773 ], [ 5.433658, 45.8323 ], [ 5.430269, 45.83496 ], [ 5.417908, 45.841118 ], [ 5.416317, 45.848044 ], [ 5.414546, 45.85089 ], [ 5.404377, 45.85687 ], [ 5.381008, 45.86718 ], [ 5.37802, 45.86966 ], [ 5.374821, 45.87234 ], [ 5.354928, 45.88278 ], [ 5.340914, 45.880514 ], [ 5.338765, 45.878504 ], [ 5.335545, 45.87404 ], [ 5.334517, 45.8708 ], [ 5.330497, 45.864784 ], [ 5.314118, 45.85826 ], [ 5.302491, 45.848133 ], [ 5.299254, 45.83419 ], [ 5.291011, 45.821277 ], [ 5.290627, 45.814186 ], [ 5.288808, 45.81103 ], [ 5.278328, 45.803985 ], [ 5.266895, 45.78937 ], [ 5.263118, 45.787706 ], [ 5.255627, 45.78431 ], [ 5.251647, 45.7827 ], [ 5.240203, 45.77737 ], [ 5.236253, 45.7752 ], [ 5.224334, 45.76884 ], [ 5.200198, 45.77142 ], [ 5.195541, 45.771151 ], [ 5.188117, 45.77451 ], [ 5.18732, 45.781021 ], [ 5.184895, 45.78418 ], [ 5.177082, 45.79339 ], [ 5.172728, 45.79497 ], [ 5.157854, 45.803218 ], [ 5.144202, 45.80457 ], [ 5.139582, 45.806 ], [ 5.121251, 45.811622 ], [ 5.116455, 45.8112 ], [ 5.112341, 45.80601 ], [ 5.113621, 45.79941 ], [ 5.109059, 45.798321 ], [ 5.101067, 45.81338 ], [ 5.096801, 45.81264 ], [ 5.092558, 45.811834 ], [ 5.087546, 45.8118 ], [ 5.058158, 45.809926 ], [ 5.054278, 45.811582 ], [ 5.045296, 45.81182 ], [ 5.037812, 45.80835 ], [ 5.020714, 45.80713 ], [ 5.016691, 45.80561 ], [ 5.012298, 45.80523 ], [ 5.001206, 45.81012 ], [ 4.996959, 45.809142 ], [ 4.992917, 45.8078 ], [ 4.98034, 45.80584 ], [ 4.970375, 45.80738 ], [ 4.966931, 45.80904 ], [ 4.951516, 45.808766 ], [ 4.946837, 45.809405 ], [ 4.924522, 45.804041 ], [ 4.918589, 45.809357 ], [ 4.919766, 45.82949 ], [ 4.921116, 45.83274 ], [ 4.918781, 45.83565 ], [ 4.91595, 45.845415 ], [ 4.900569, 45.8576 ], [ 4.901239, 45.86059 ], [ 4.909017, 45.87411 ], [ 4.904376, 45.874524 ], [ 4.883827, 45.87999 ], [ 4.883222, 45.88343 ], [ 4.880699, 45.89717 ], [ 4.877315, 45.89668 ], [ 4.872087, 45.893538 ], [ 4.872016, 45.896782 ], [ 4.870683, 45.903127 ], [ 4.853105, 45.90716 ], [ 4.849116, 45.912868 ], [ 4.844452, 45.911557 ], [ 4.805177, 45.89633 ], [ 4.804099, 45.89807 ], [ 4.80955, 45.90653 ], [ 4.810675, 45.909752 ], [ 4.809782, 45.918314 ], [ 4.80776, 45.920805 ], [ 4.803178, 45.921968 ], [ 4.788994, 45.92355 ], [ 4.786921, 45.926478 ], [ 4.777994, 45.93784 ], [ 4.769154, 45.93832 ], [ 4.761121, 45.934998 ], [ 4.756784, 45.93463 ], [ 4.744455, 45.937427 ], [ 4.739899, 45.937875 ], [ 4.731896, 45.9408 ], [ 4.730275, 45.95041 ], [ 4.744998, 45.959882 ], [ 4.748462, 45.96241 ], [ 4.750169, 45.96449 ], [ 4.754611, 45.97381 ], [ 4.749567, 45.99637 ], [ 4.748491, 46.00278 ], [ 4.748988, 46.003757 ], [ 4.74889, 46.00719 ], [ 4.743942, 46.020309 ], [ 4.746389, 46.026946 ], [ 4.746774, 46.03255 ], [ 4.745657, 46.03524 ], [ 4.739617, 46.047487 ], [ 4.75632, 46.05855 ], [ 4.759083, 46.061202 ], [ 4.761755, 46.067438 ], [ 4.761062, 46.07046 ], [ 4.756261, 46.078971 ], [ 4.749615, 46.08242 ], [ 4.748023, 46.091357 ], [ 4.757137, 46.09827 ], [ 4.760178, 46.100645 ], [ 4.762596, 46.102544 ], [ 4.767114, 46.106527 ], [ 4.771191, 46.1117 ], [ 4.772069, 46.117627 ], [ 4.784254, 46.1283 ], [ 4.787486, 46.13089 ], [ 4.793172, 46.136382 ], [ 4.795944, 46.139158 ], [ 4.802787, 46.153407 ], [ 4.80255, 46.156437 ], [ 4.799993, 46.15949 ], [ 4.791741, 46.16361 ], [ 4.784274, 46.16837 ], [ 4.782319, 46.171636 ], [ 4.780213, 46.176677 ], [ 4.780203, 46.18675 ], [ 4.792327, 46.200968 ], [ 4.792735, 46.20751 ], [ 4.79428, 46.217051 ], [ 4.79551, 46.22014 ], [ 4.797847, 46.224543 ], [ 4.800741, 46.229658 ], [ 4.808184, 46.238106 ], [ 4.810798, 46.251233 ], [ 4.810817, 46.25455 ], [ 4.811341, 46.260583 ], [ 4.816488, 46.2654 ], [ 4.824739, 46.272934 ], [ 4.826332, 46.27591 ], [ 4.832926, 46.29944 ], [ 4.839228, 46.308684 ], [ 4.841217, 46.311805 ], [ 4.849389, 46.32322 ], [ 4.851423, 46.32608 ], [ 4.853156, 46.329247 ], [ 4.852652, 46.34279 ], [ 4.85239, 46.34617 ], [ 4.850912, 46.352864 ], [ 4.856454, 46.365123 ], [ 4.85853, 46.36802 ], [ 4.86312, 46.37326 ], [ 4.865691, 46.37576 ], [ 4.86776, 46.37806 ], [ 4.873919, 46.38499 ], [ 4.88495, 46.399883 ], [ 4.887496, 46.402732 ], [ 4.889934, 46.417121 ], [ 4.891047, 46.424056 ], [ 4.891532, 46.42752 ], [ 4.891523, 46.430291 ], [ 4.891797, 46.438555 ], [ 4.892887, 46.44257 ], [ 4.894444, 46.445374 ], [ 4.912497, 46.459323 ], [ 4.914448, 46.46216 ], [ 4.915024, 46.47711 ], [ 4.91453, 46.480113 ], [ 4.914522, 46.481374 ], [ 4.915896, 46.48819 ], [ 4.925241, 46.49615 ], [ 4.927682, 46.499168 ], [ 4.928837, 46.501589 ], [ 4.929616, 46.50408 ], [ 4.931736, 46.509791 ], [ 4.933592, 46.51245 ], [ 4.934745, 46.51332 ], [ 4.947245, 46.51445 ], [ 4.947369, 46.50843 ], [ 4.952797, 46.50447 ], [ 4.962656, 46.50655 ], [ 4.970038, 46.51409 ], [ 4.980216, 46.515203 ], [ 5.006369, 46.509703 ], [ 5.010594, 46.51107 ], [ 5.012448, 46.50297 ], [ 5.014233, 46.50045 ], [ 5.0509, 46.48625 ], [ 5.054751, 46.48428 ], [ 5.071449, 46.48582 ], [ 5.095259, 46.49798 ], [ 5.112817, 46.49296 ], [ 5.129066, 46.50092 ], [ 5.13403, 46.50145 ], [ 5.141168, 46.508484 ], [ 5.164303, 46.50462 ], [ 5.165839, 46.517675 ], [ 5.181672, 46.50998 ], [ 5.201221, 46.50782 ], [ 5.203565, 46.504803 ], [ 5.200343, 46.50257 ], [ 5.209481, 46.492105 ], [ 5.206685, 46.486177 ], [ 5.213031, 46.481541 ], [ 5.21528, 46.47176 ], [ 5.215064, 46.46836 ], [ 5.224698, 46.46835 ], [ 5.233384, 46.46045 ], [ 5.236259, 46.45778 ], [ 5.243864, 46.46046 ], [ 5.248004, 46.45937 ], [ 5.256271, 46.45188 ], [ 5.269653, 46.450226 ], [ 5.273677, 46.44859 ], [ 5.310561, 46.44677 ], [ 5.321727, 46.42895 ], [ 5.308145, 46.42047 ], [ 5.312333, 46.41602 ], [ 5.307817, 46.41486 ], [ 5.298806, 46.41553 ], [ 5.309146, 46.41026 ], [ 5.334092, 46.39972 ], [ 5.348116, 46.39942 ], [ 5.36352, 46.390388 ], [ 5.367105, 46.388692 ], [ 5.370296, 46.38603 ], [ 5.377881, 46.382324 ], [ 5.375164, 46.37971 ], [ 5.365075, 46.37308 ], [ 5.363472, 46.37002 ], [ 5.376474, 46.361669 ], [ 5.375761, 46.35843 ], [ 5.374637, 46.355329 ], [ 5.373462, 46.35224 ], [ 5.402729, 46.33612 ], [ 5.401686, 46.332799 ], [ 5.404352, 46.31918 ], [ 5.404041, 46.31567 ], [ 5.404054, 46.31477 ], [ 5.406583, 46.30991 ], [ 5.41024, 46.309105 ], [ 5.423534, 46.34773 ], [ 5.435942, 46.318468 ], [ 5.437146, 46.315127 ], [ 5.454476, 46.317998 ], [ 5.460892, 46.32247 ], [ 5.46518, 46.323542 ], [ 5.471469, 46.31653 ], [ 5.475305, 46.315385 ], [ 5.473218, 46.30893 ], [ 5.466531, 46.29324 ], [ 5.459001, 46.290531 ], [ 5.457672, 46.27685 ], [ 5.471308, 46.26721 ], [ 5.475362, 46.265221 ], [ 5.499595, 46.268205 ], [ 5.502609, 46.270211 ], [ 5.507498, 46.265481 ], [ 5.51137, 46.26436 ], [ 5.539301, 46.268903 ], [ 5.559458, 46.283515 ], [ 5.561577, 46.286576 ], [ 5.564674, 46.29277 ], [ 5.582606, 46.29324 ], [ 5.587251, 46.292509 ], [ 5.597891, 46.2979 ], [ 5.60215, 46.30681 ], [ 5.604641, 46.30944 ], [ 5.605673, 46.31364 ], [ 5.612518, 46.32656 ], [ 5.635057, 46.33331 ], [ 5.637458, 46.336442 ], [ 5.646092, 46.34281 ], [ 5.649207, 46.3373 ], [ 5.649798, 46.334192 ], [ 5.645285, 46.324791 ], [ 5.668481, 46.3239 ], [ 5.68023, 46.318433 ], [ 5.683316, 46.315874 ], [ 5.684582, 46.310934 ], [ 5.714553, 46.30807 ], [ 5.718978, 46.294287 ], [ 5.71596, 46.28037 ], [ 5.721538, 46.263177 ], [ 5.725181, 46.26069 ], [ 5.72966, 46.261928 ], [ 5.733675, 46.26377 ], [ 5.761568, 46.26715 ], [ 5.766045, 46.26833 ], [ 5.813575, 46.2636 ], [ 5.81828, 46.26287 ], [ 5.826262, 46.261715 ], [ 5.850659, 46.2617 ], [ 5.86085, 46.268771 ], [ 5.867694, 46.26822 ], [ 5.869187, 46.26498 ], [ 5.891985, 46.2836 ], [ 5.894627, 46.286614 ], [ 5.909198, 46.283945 ], [ 5.92187, 46.31194 ], [ 5.925908, 46.31377 ], [ 5.937319, 46.30977 ], [ 5.941531, 46.30926 ], [ 5.944004, 46.31221 ], [ 5.975139, 46.35029 ], [ 5.984117, 46.362656 ], [ 6.013384, 46.375997 ], [ 6.03102, 46.388101 ], [ 6.052807, 46.411409 ], [ 6.056984, 46.41619 ], [ 6.060575, 46.417509 ], [ 6.064008, 46.41623 ], [ 6.097526, 46.408284 ], [ 6.106503, 46.399839 ], [ 6.120401, 46.39595 ], [ 6.147124, 46.37983 ], [ 6.160984, 46.37655 ], [ 6.166676, 46.37074 ], [ 6.166736, 46.36414 ], [ 6.155084, 46.348797 ], [ 6.138661, 46.336571 ], [ 6.137695, 46.333119 ], [ 6.126191, 46.32009 ], [ 6.124378, 46.317263 ], [ 6.119788, 46.31113 ], [ 6.119099, 46.30771 ], [ 6.119469, 46.295283 ], [ 6.105303, 46.287352 ], [ 6.102366, 46.284846 ], [ 6.112992, 46.268046 ], [ 6.116039, 46.265656 ], [ 6.120108, 46.263625 ], [ 6.122535, 46.25334 ], [ 6.115883, 46.244428 ], [ 6.103464, 46.238658 ], [ 6.088144, 46.24704 ], [ 6.08338, 46.2464 ], [ 6.07048, 46.241743 ], [ 6.061954, 46.24488 ], [ 6.046946, 46.231941 ], [ 6.042401, 46.2331 ], [ 6.038615, 46.235317 ], [ 6.029934, 46.23591 ], [ 6.016684, 46.231819 ], [ 6.012598, 46.23002 ], [ 6.002932, 46.22258 ], [ 5.993818, 46.22044 ], [ 5.992718, 46.217169 ], [ 5.974412, 46.214748 ], [ 5.964201, 46.198029 ], [ 5.963676, 46.19697 ], [ 5.990045, 46.187466 ], [ 5.993657, 46.18138 ], [ 5.990267, 46.17488 ], [ 5.98217, 46.17221 ], [ 5.975425, 46.159302 ], [ 5.973349, 46.156167 ], [ 5.964701, 46.14466 ], [ 5.966498, 46.13834 ], [ 5.959563, 46.13426 ], [ 5.956063, 46.132089 ], [ 5.95273, 46.130365 ], [ 5.936956, 46.12865 ], [ 5.927926, 46.128 ], [ 5.920403, 46.131039 ], [ 5.906798, 46.12254 ], [ 5.896829, 46.11977 ], [ 5.893026, 46.118917 ], [ 5.890789, 46.11581 ], [ 5.886227, 46.10962 ], [ 5.892996, 46.09377 ], [ 5.885654, 46.08541 ], [ 5.866262, 46.08554 ], [ 5.855987, 46.08667 ], [ 5.852738, 46.089201 ], [ 5.838211, 46.10255 ], [ 5.829654, 46.105665 ], [ 5.820731, 46.102932 ], [ 5.821693, 46.089897 ], [ 5.819203, 46.087562 ], [ 5.811532, 46.077597 ], [ 5.808074, 46.06086 ], [ 5.810988, 46.058878 ], [ 5.813614, 46.0543 ], [ 5.812553, 46.051513 ], [ 5.806997, 46.04383 ], [ 5.808012, 46.041156 ], [ 5.809339, 46.03295 ], [ 5.810502, 46.029894 ], [ 5.812299, 46.0238 ], [ 5.805472, 46.01574 ], [ 5.806792, 46.01297 ], [ 5.810555, 46.00815 ], [ 5.809541, 46.00525 ], [ 5.810189, 45.99339 ], [ 5.809968, 45.98983 ], [ 5.834026, 45.97203 ], [ 5.833912, 45.96857 ], [ 5.832784, 45.96171 ], [ 5.834832, 45.9523 ], [ 5.8288, 45.94049 ], [ 5.825235, 45.938483 ], [ 5.829631, 45.93758 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "2", "CODE_DEPT": "02", "NOM_DEPT": "AISNE", "CODE_CHF": "408", "NOM_CHF": "LAON", "X_CHF_LIEU": "7451", "Y_CHF_LIEU": "69406", "X_CENTROID": "7404", "Y_CENTROID": "69401", "CODE_REG": "22", "NOM_REGION": "PICARDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.485187, 48.85191 ], [ 3.480156, 48.8516 ], [ 3.470198, 48.850547 ], [ 3.461955, 48.83847 ], [ 3.459253, 48.841066 ], [ 3.445361, 48.843232 ], [ 3.44578, 48.8461 ], [ 3.452232, 48.8563 ], [ 3.448478, 48.85872 ], [ 3.433142, 48.86001 ], [ 3.423063, 48.86757 ], [ 3.408514, 48.86371 ], [ 3.398898, 48.86642 ], [ 3.401029, 48.86872 ], [ 3.405856, 48.87588 ], [ 3.400635, 48.876027 ], [ 3.387958, 48.87097 ], [ 3.38328, 48.87249 ], [ 3.382479, 48.885942 ], [ 3.369828, 48.89614 ], [ 3.37561, 48.90922 ], [ 3.367427, 48.9288 ], [ 3.361726, 48.91956 ], [ 3.330199, 48.90796 ], [ 3.317005, 48.91885 ], [ 3.313076, 48.921216 ], [ 3.312797, 48.92478 ], [ 3.31222, 48.935418 ], [ 3.30475, 48.94877 ], [ 3.300969, 48.94665 ], [ 3.283772, 48.94016 ], [ 3.26948, 48.937455 ], [ 3.265161, 48.939065 ], [ 3.259827, 48.945174 ], [ 3.261229, 48.9471 ], [ 3.262904, 48.948935 ], [ 3.259065, 48.95126 ], [ 3.255523, 48.96132 ], [ 3.254925, 48.96463 ], [ 3.245993, 48.976065 ], [ 3.231216, 48.976751 ], [ 3.229177, 48.98842 ], [ 3.224841, 48.987329 ], [ 3.223297, 48.990452 ], [ 3.209318, 48.993786 ], [ 3.208947, 48.99671 ], [ 3.198993, 49.00579 ], [ 3.171569, 49.012496 ], [ 3.163008, 49.019944 ], [ 3.163424, 49.02626 ], [ 3.176541, 49.03141 ], [ 3.181112, 49.04428 ], [ 3.190614, 49.046717 ], [ 3.190667, 49.049972 ], [ 3.180866, 49.05615 ], [ 3.181708, 49.06217 ], [ 3.180064, 49.065489 ], [ 3.167882, 49.0769 ], [ 3.158681, 49.08041 ], [ 3.155087, 49.082428 ], [ 3.16523, 49.09966 ], [ 3.160231, 49.09929 ], [ 3.145738, 49.10177 ], [ 3.138602, 49.1064 ], [ 3.124129, 49.107235 ], [ 3.121614, 49.10908 ], [ 3.115282, 49.10688 ], [ 3.079808, 49.1129 ], [ 3.071884, 49.117554 ], [ 3.077028, 49.122065 ], [ 3.087084, 49.12321 ], [ 3.093026, 49.12898 ], [ 3.093913, 49.1421 ], [ 3.105274, 49.13555 ], [ 3.113415, 49.13626 ], [ 3.116887, 49.13867 ], [ 3.113521, 49.1411 ], [ 3.107105, 49.14612 ], [ 3.127057, 49.145066 ], [ 3.126777, 49.14851 ], [ 3.142289, 49.157411 ], [ 3.137366, 49.16177 ], [ 3.126879, 49.16219 ], [ 3.113552, 49.167556 ], [ 3.114563, 49.190768 ], [ 3.10245, 49.19731 ], [ 3.086688, 49.173 ], [ 3.094297, 49.15717 ], [ 3.083737, 49.16281 ], [ 3.085004, 49.182755 ], [ 3.077849, 49.194798 ], [ 3.063237, 49.19278 ], [ 3.060085, 49.19525 ], [ 3.061165, 49.204077 ], [ 3.05214, 49.206625 ], [ 3.043415, 49.20905 ], [ 3.034837, 49.20578 ], [ 3.030821, 49.21218 ], [ 3.016537, 49.21631 ], [ 3.006148, 49.215033 ], [ 3.001523, 49.21332 ], [ 2.998614, 49.21043 ], [ 3.00048, 49.19673 ], [ 3.0062, 49.187083 ], [ 3.025431, 49.190209 ], [ 3.029789, 49.183887 ], [ 3.035069, 49.18362 ], [ 3.035753, 49.180685 ], [ 3.037898, 49.16921 ], [ 3.027107, 49.17003 ], [ 3.021733, 49.17057 ], [ 3.015991, 49.18 ], [ 2.991687, 49.191982 ], [ 2.984871, 49.186965 ], [ 2.981375, 49.18447 ], [ 2.976519, 49.1859 ], [ 2.971814, 49.187529 ], [ 2.97115, 49.19708 ], [ 2.967579, 49.20332 ], [ 2.969496, 49.20994 ], [ 2.967366, 49.21533 ], [ 2.958739, 49.226606 ], [ 2.964349, 49.23191 ], [ 2.996211, 49.235315 ], [ 3.00162, 49.235657 ], [ 3.01267, 49.22901 ], [ 3.009196, 49.222917 ], [ 3.022988, 49.219284 ], [ 3.039066, 49.2274 ], [ 3.033311, 49.24334 ], [ 3.033311, 49.24379 ], [ 3.032901, 49.24729 ], [ 3.026756, 49.260573 ], [ 3.030826, 49.26683 ], [ 3.027586, 49.271523 ], [ 3.027533, 49.274903 ], [ 3.036277, 49.282703 ], [ 3.030165, 49.287604 ], [ 3.019265, 49.28142 ], [ 3.014208, 49.28181 ], [ 3.018346, 49.288074 ], [ 3.009304, 49.291113 ], [ 2.994407, 49.2883 ], [ 2.988812, 49.29672 ], [ 2.97006, 49.30261 ], [ 2.973468, 49.30457 ], [ 2.978566, 49.30941 ], [ 2.967232, 49.31895 ], [ 2.96426, 49.32138 ], [ 2.998267, 49.337471 ], [ 3.001788, 49.34015 ], [ 3.008859, 49.337857 ], [ 3.012697, 49.337219 ], [ 3.034824, 49.328981 ], [ 3.036335, 49.32574 ], [ 3.048062, 49.3368 ], [ 3.068641, 49.347304 ], [ 3.072728, 49.34789 ], [ 3.076881, 49.35548 ], [ 3.076804, 49.36871 ], [ 3.081094, 49.374334 ], [ 3.094371, 49.37853 ], [ 3.090827, 49.398246 ], [ 3.095633, 49.39798 ], [ 3.095987, 49.41791 ], [ 3.095304, 49.42123 ], [ 3.095073, 49.423041 ], [ 3.094759, 49.42484 ], [ 3.100285, 49.439278 ], [ 3.110497, 49.43848 ], [ 3.12159, 49.431745 ], [ 3.160518, 49.43936 ], [ 3.165126, 49.44085 ], [ 3.161892, 49.4426 ], [ 3.166193, 49.44692 ], [ 3.162893, 49.4496 ], [ 3.155214, 49.454185 ], [ 3.150778, 49.455269 ], [ 3.129742, 49.46205 ], [ 3.124931, 49.46279 ], [ 3.107085, 49.46823 ], [ 3.105299, 49.47129 ], [ 3.110055, 49.47665 ], [ 3.123306, 49.4808 ], [ 3.121281, 49.49368 ], [ 3.116497, 49.495212 ], [ 3.107214, 49.50367 ], [ 3.10247, 49.505138 ], [ 3.096325, 49.5179 ], [ 3.122465, 49.521683 ], [ 3.127901, 49.531384 ], [ 3.125924, 49.5418 ], [ 3.13148, 49.54338 ], [ 3.131731, 49.56022 ], [ 3.126302, 49.56607 ], [ 3.126982, 49.57291 ], [ 3.138985, 49.57585 ], [ 3.138052, 49.57859 ], [ 3.135088, 49.58137 ], [ 3.124178, 49.59626 ], [ 3.122533, 49.60203 ], [ 3.119137, 49.60449 ], [ 3.102, 49.61579 ], [ 3.099238, 49.61807 ], [ 3.093575, 49.622549 ], [ 3.096579, 49.62347 ], [ 3.109219, 49.6289 ], [ 3.112766, 49.63133 ], [ 3.110476, 49.634234 ], [ 3.112675, 49.6402 ], [ 3.10594, 49.64891 ], [ 3.09645, 49.65064 ], [ 3.099382, 49.656556 ], [ 3.107594, 49.65862 ], [ 3.108299, 49.66467 ], [ 3.112828, 49.66571 ], [ 3.123629, 49.66118 ], [ 3.127083, 49.66953 ], [ 3.125, 49.67274 ], [ 3.116282, 49.68111 ], [ 3.125917, 49.696499 ], [ 3.118652, 49.70583 ], [ 3.120398, 49.70573 ], [ 3.113653, 49.72548 ], [ 3.100671, 49.735222 ], [ 3.09936, 49.7384 ], [ 3.096772, 49.74806 ], [ 3.094682, 49.75727 ], [ 3.100454, 49.76593 ], [ 3.095114, 49.76615 ], [ 3.073808, 49.7664 ], [ 3.065338, 49.77048 ], [ 3.067381, 49.77337 ], [ 3.061329, 49.78138 ], [ 3.081379, 49.79053 ], [ 3.085933, 49.79175 ], [ 3.084245, 49.794884 ], [ 3.086135, 49.80449 ], [ 3.080299, 49.80991 ], [ 3.082321, 49.815244 ], [ 3.085004, 49.81765 ], [ 3.082605, 49.819241 ], [ 3.079039, 49.82122 ], [ 3.060722, 49.820099 ], [ 3.060006, 49.825175 ], [ 3.059037, 49.827646 ], [ 3.057068, 49.83078 ], [ 3.069341, 49.83698 ], [ 3.073663, 49.83889 ], [ 3.077623, 49.839683 ], [ 3.081738, 49.841378 ], [ 3.084399, 49.84625 ], [ 3.083057, 49.84937 ], [ 3.079469, 49.865411 ], [ 3.070905, 49.8734 ], [ 3.073939, 49.875988 ], [ 3.077501, 49.878367 ], [ 3.082604, 49.87849 ], [ 3.084962, 49.87576 ], [ 3.083196, 49.86657 ], [ 3.087836, 49.86569 ], [ 3.119134, 49.88302 ], [ 3.117858, 49.89026 ], [ 3.122607, 49.89941 ], [ 3.120118, 49.91122 ], [ 3.11762, 49.91396 ], [ 3.123668, 49.918017 ], [ 3.124664, 49.921393 ], [ 3.137879, 49.93586 ], [ 3.160361, 49.94655 ], [ 3.164916, 49.94754 ], [ 3.166553, 49.95023 ], [ 3.161614, 49.95111 ], [ 3.16214, 49.954361 ], [ 3.163644, 49.96336 ], [ 3.170413, 49.968003 ], [ 3.192717, 49.977536 ], [ 3.202722, 49.98549 ], [ 3.198541, 49.98501 ], [ 3.192523, 49.98888 ], [ 3.187671, 49.98787 ], [ 3.177706, 49.98661 ], [ 3.165045, 49.99164 ], [ 3.155683, 49.991754 ], [ 3.159159, 49.99394 ], [ 3.171404, 50.009985 ], [ 3.172707, 50.01199 ], [ 3.203548, 50.017876 ], [ 3.229336, 50.03018 ], [ 3.233971, 50.02838 ], [ 3.244078, 50.03089 ], [ 3.244843, 50.030617 ], [ 3.246725, 50.02769 ], [ 3.255846, 50.02544 ], [ 3.258791, 50.03141 ], [ 3.263541, 50.03064 ], [ 3.267164, 50.03012 ], [ 3.270716, 50.02947 ], [ 3.277936, 50.021475 ], [ 3.273525, 50.02027 ], [ 3.280355, 50.01521 ], [ 3.290837, 50.01513 ], [ 3.300484, 50.01759 ], [ 3.304894, 50.01846 ], [ 3.309304, 50.019352 ], [ 3.327669, 50.01585 ], [ 3.337102, 50.017401 ], [ 3.343616, 50.02627 ], [ 3.351671, 50.02973 ], [ 3.350214, 50.03286 ], [ 3.353107, 50.03571 ], [ 3.374224, 50.03641 ], [ 3.387166, 50.03106 ], [ 3.392479, 50.031132 ], [ 3.398474, 50.03458 ], [ 3.41538, 50.026754 ], [ 3.424921, 50.02727 ], [ 3.42847, 50.02478 ], [ 3.427792, 50.022085 ], [ 3.484913, 50.019609 ], [ 3.490106, 50.01896 ], [ 3.505235, 50.03054 ], [ 3.507062, 50.03336 ], [ 3.508157, 50.035512 ], [ 3.52989, 50.038887 ], [ 3.541758, 50.051975 ], [ 3.551277, 50.05377 ], [ 3.55644, 50.0539 ], [ 3.567799, 50.052971 ], [ 3.575596, 50.04925 ], [ 3.57924, 50.0471 ], [ 3.594225, 50.043918 ], [ 3.607741, 50.033469 ], [ 3.608747, 50.0301 ], [ 3.614124, 50.02506 ], [ 3.621489, 50.02882 ], [ 3.625097, 50.03078 ], [ 3.63009, 50.03202 ], [ 3.643079, 50.036989 ], [ 3.657569, 50.03273 ], [ 3.662095, 50.03873 ], [ 3.657538, 50.04003 ], [ 3.658176, 50.0484 ], [ 3.665721, 50.054697 ], [ 3.669883, 50.055088 ], [ 3.705575, 50.06564 ], [ 3.710359, 50.066491 ], [ 3.715185, 50.06927 ], [ 3.72121, 50.06413 ], [ 3.742636, 50.0561 ], [ 3.745752, 50.053572 ], [ 3.770963, 50.05104 ], [ 3.77523, 50.04908 ], [ 3.77793, 50.045989 ], [ 3.793588, 50.048296 ], [ 3.811, 50.04064 ], [ 3.815827, 50.03904 ], [ 3.832229, 50.04678 ], [ 3.837059, 50.047809 ], [ 3.848124, 50.04053 ], [ 3.868771, 50.03761 ], [ 3.882319, 50.03237 ], [ 3.883321, 50.02902 ], [ 3.878323, 50.027886 ], [ 3.886697, 50.023514 ], [ 3.887395, 50.01317 ], [ 3.887292, 50.00969 ], [ 3.919783, 50.02361 ], [ 3.922871, 50.02626 ], [ 3.943012, 50.029659 ], [ 3.948308, 50.02955 ], [ 3.949834, 50.026885 ], [ 3.982309, 50.04428 ], [ 3.989547, 50.04135 ], [ 3.991313, 50.038189 ], [ 3.995236, 50.028447 ], [ 3.980144, 50.00356 ], [ 3.980801, 49.993576 ], [ 3.985562, 49.99476 ], [ 4.005734, 49.9952 ], [ 4.011405, 49.98605 ], [ 4.021563, 49.986119 ], [ 4.027393, 49.98298 ], [ 4.031122, 49.98207 ], [ 4.044796, 49.98584 ], [ 4.074968, 49.981 ], [ 4.079933, 49.97995 ], [ 4.082589, 49.97383 ], [ 4.089691, 49.970476 ], [ 4.099815, 49.97233 ], [ 4.104938, 49.97157 ], [ 4.136382, 49.97751 ], [ 4.140895, 49.97876 ], [ 4.154144, 49.97513 ], [ 4.169033, 49.97686 ], [ 4.173918, 49.97604 ], [ 4.195446, 49.96745 ], [ 4.195946, 49.96085 ], [ 4.197356, 49.954486 ], [ 4.22778, 49.95793 ], [ 4.233068, 49.957824 ], [ 4.232132, 49.95596 ], [ 4.232061, 49.952462 ], [ 4.220206, 49.93359 ], [ 4.217774, 49.91626 ], [ 4.222142, 49.910427 ], [ 4.233643, 49.90912 ], [ 4.236936, 49.90378 ], [ 4.24633, 49.90226 ], [ 4.255734, 49.903977 ], [ 4.251798, 49.8904 ], [ 4.250089, 49.86324 ], [ 4.249554, 49.86011 ], [ 4.249004, 49.85696 ], [ 4.246034, 49.85426 ], [ 4.233752, 49.84863 ], [ 4.23017, 49.836088 ], [ 4.225337, 49.83498 ], [ 4.214774, 49.806115 ], [ 4.219523, 49.805 ], [ 4.227042, 49.79319 ], [ 4.224917, 49.79022 ], [ 4.209942, 49.78205 ], [ 4.206332, 49.77962 ], [ 4.212018, 49.774218 ], [ 4.214263, 49.77118 ], [ 4.224503, 49.77294 ], [ 4.242039, 49.765469 ], [ 4.246879, 49.75574 ], [ 4.230539, 49.74703 ], [ 4.226128, 49.73424 ], [ 4.227618, 49.731073 ], [ 4.225406, 49.72728 ], [ 4.220371, 49.72599 ], [ 4.205171, 49.722706 ], [ 4.202292, 49.72051 ], [ 4.191381, 49.715644 ], [ 4.192459, 49.71254 ], [ 4.184381, 49.70123 ], [ 4.185269, 49.698872 ], [ 4.179917, 49.698062 ], [ 4.164831, 49.693894 ], [ 4.160116, 49.69305 ], [ 4.151058, 49.690646 ], [ 4.146816, 49.689266 ], [ 4.146699, 49.67785 ], [ 4.126474, 49.6782 ], [ 4.122702, 49.660923 ], [ 4.124871, 49.650613 ], [ 4.11724, 49.641526 ], [ 4.11569, 49.63326 ], [ 4.110419, 49.63265 ], [ 4.095983, 49.629173 ], [ 4.071483, 49.63594 ], [ 4.050555, 49.634931 ], [ 4.047514, 49.63781 ], [ 4.042341, 49.63791 ], [ 4.038598, 49.62526 ], [ 4.026316, 49.619905 ], [ 4.031525, 49.61411 ], [ 4.047558, 49.60065 ], [ 4.060605, 49.59637 ], [ 4.064445, 49.594161 ], [ 4.060391, 49.587978 ], [ 4.062671, 49.57459 ], [ 4.07677, 49.570721 ], [ 4.059686, 49.5545 ], [ 4.050439, 49.55159 ], [ 4.051908, 49.545073 ], [ 4.067545, 49.54314 ], [ 4.075648, 49.53896 ], [ 4.075097, 49.521852 ], [ 4.074145, 49.51859 ], [ 4.060243, 49.521254 ], [ 4.056108, 49.508824 ], [ 4.04086, 49.508381 ], [ 4.040423, 49.505176 ], [ 4.040766, 49.495519 ], [ 4.040928, 49.492651 ], [ 4.041527, 49.484044 ], [ 4.041419, 49.48075 ], [ 4.041379, 49.477403 ], [ 4.042112, 49.47073 ], [ 4.066154, 49.44545 ], [ 4.06141, 49.44673 ], [ 4.056813, 49.445737 ], [ 4.047178, 49.445173 ], [ 4.037579, 49.43808 ], [ 4.0394, 49.43544 ], [ 4.04326, 49.4246 ], [ 4.04913, 49.40901 ], [ 4.047973, 49.40564 ], [ 4.044698, 49.4031 ], [ 4.037098, 49.384126 ], [ 4.035496, 49.359904 ], [ 4.02145, 49.36018 ], [ 4.012729, 49.358308 ], [ 4.011882, 49.361462 ], [ 4.008214, 49.367416 ], [ 3.986644, 49.37892 ], [ 3.981515, 49.379241 ], [ 3.961309, 49.37734 ], [ 3.93472, 49.39841 ], [ 3.933172, 49.40113 ], [ 3.92482, 49.40772 ], [ 3.92132, 49.405361 ], [ 3.910328, 49.395268 ], [ 3.895741, 49.39278 ], [ 3.891038, 49.39155 ], [ 3.87455, 49.383999 ], [ 3.859844, 49.381525 ], [ 3.856059, 49.36835 ], [ 3.853577, 49.366413 ], [ 3.847477, 49.364596 ], [ 3.848856, 49.36139 ], [ 3.857908, 49.353672 ], [ 3.85131, 49.34494 ], [ 3.83278, 49.35026 ], [ 3.828389, 49.351891 ], [ 3.823765, 49.35699 ], [ 3.818508, 49.357011 ], [ 3.803095, 49.358822 ], [ 3.793198, 49.35689 ], [ 3.789367, 49.354714 ], [ 3.779802, 49.352853 ], [ 3.777535, 49.35582 ], [ 3.773533, 49.354187 ], [ 3.757818, 49.347608 ], [ 3.746475, 49.34815 ], [ 3.741087, 49.34759 ], [ 3.741252, 49.344699 ], [ 3.742022, 49.33895 ], [ 3.736196, 49.33555 ], [ 3.731413, 49.33493 ], [ 3.71235, 49.33407 ], [ 3.707044, 49.333353 ], [ 3.69306, 49.32861 ], [ 3.687315, 49.32683 ], [ 3.683021, 49.32557 ], [ 3.669161, 49.32475 ], [ 3.666467, 49.32172 ], [ 3.647596, 49.31596 ], [ 3.64492, 49.313115 ], [ 3.642556, 49.303248 ], [ 3.63834, 49.30135 ], [ 3.64038, 49.29846 ], [ 3.655943, 49.29108 ], [ 3.658994, 49.28677 ], [ 3.651676, 49.27863 ], [ 3.66059, 49.270796 ], [ 3.665133, 49.26943 ], [ 3.660449, 49.26837 ], [ 3.655255, 49.26285 ], [ 3.670256, 49.24074 ], [ 3.67504, 49.24009 ], [ 3.677019, 49.237082 ], [ 3.666006, 49.22311 ], [ 3.651479, 49.22156 ], [ 3.654839, 49.219233 ], [ 3.654814, 49.212922 ], [ 3.662545, 49.20898 ], [ 3.67667, 49.20726 ], [ 3.681937, 49.198746 ], [ 3.697477, 49.206641 ], [ 3.700577, 49.20145 ], [ 3.704655, 49.20067 ], [ 3.703936, 49.19729 ], [ 3.69754, 49.19191 ], [ 3.70649, 49.18032 ], [ 3.725822, 49.17501 ], [ 3.740643, 49.17866 ], [ 3.751148, 49.1777 ], [ 3.748676, 49.15853 ], [ 3.744432, 49.15697 ], [ 3.739564, 49.15689 ], [ 3.734837, 49.15513 ], [ 3.717014, 49.14704 ], [ 3.712178, 49.146191 ], [ 3.703297, 49.143204 ], [ 3.697999, 49.14871 ], [ 3.695606, 49.151143 ], [ 3.683835, 49.15449 ], [ 3.679251, 49.15302 ], [ 3.654771, 49.148791 ], [ 3.624456, 49.151353 ], [ 3.621107, 49.14977 ], [ 3.619819, 49.147538 ], [ 3.619769, 49.14105 ], [ 3.612047, 49.137004 ], [ 3.610441, 49.127518 ], [ 3.600018, 49.12069 ], [ 3.601545, 49.117645 ], [ 3.613414, 49.115904 ], [ 3.620078, 49.107328 ], [ 3.62255, 49.10449 ], [ 3.63224, 49.08609 ], [ 3.639054, 49.08131 ], [ 3.638573, 49.077865 ], [ 3.632115, 49.072405 ], [ 3.607391, 49.071858 ], [ 3.604007, 49.06915 ], [ 3.600591, 49.06256 ], [ 3.590739, 49.06013 ], [ 3.587706, 49.05935 ], [ 3.585204, 49.03887 ], [ 3.586674, 49.03583 ], [ 3.614684, 49.033552 ], [ 3.615771, 49.03642 ], [ 3.64997, 49.04142 ], [ 3.65839, 49.037753 ], [ 3.66354, 49.037311 ], [ 3.677678, 49.01602 ], [ 3.668852, 49.00798 ], [ 3.665159, 49.00563 ], [ 3.660412, 49.0043 ], [ 3.639825, 49.003998 ], [ 3.637845, 49.000843 ], [ 3.625814, 48.98575 ], [ 3.621206, 48.96603 ], [ 3.616661, 48.96516 ], [ 3.602925, 48.96545 ], [ 3.591475, 48.960246 ], [ 3.594094, 48.95762 ], [ 3.601246, 48.946682 ], [ 3.593373, 48.944644 ], [ 3.588352, 48.94372 ], [ 3.574443, 48.939025 ], [ 3.57243, 48.918612 ], [ 3.566684, 48.913496 ], [ 3.547421, 48.91502 ], [ 3.528576, 48.91214 ], [ 3.523973, 48.907485 ], [ 3.520911, 48.90559 ], [ 3.508888, 48.89112 ], [ 3.502839, 48.874895 ], [ 3.502997, 48.87149 ], [ 3.494059, 48.8691 ], [ 3.489643, 48.8678 ], [ 3.485612, 48.866746 ], [ 3.481315, 48.86647 ], [ 3.484515, 48.86024 ], [ 3.486791, 48.857307 ], [ 3.485187, 48.85191 ] ], [ [ 2.99023, 49.21067 ], [ 2.991739, 49.21094 ], [ 2.99237, 49.2121 ], [ 2.994511, 49.21236 ], [ 2.995321, 49.21132 ], [ 2.995746, 49.21258 ], [ 2.99694, 49.21401 ], [ 2.997887, 49.21396 ], [ 2.999698, 49.215384 ], [ 2.99779, 49.21679 ], [ 2.998161, 49.21895 ], [ 2.998298, 49.21909 ], [ 3.002759, 49.21884 ], [ 3.002566, 49.21969 ], [ 3.000412, 49.222666 ], [ 2.997749, 49.22358 ], [ 2.993755, 49.22253 ], [ 2.992451, 49.2232 ], [ 2.988457, 49.22211 ], [ 2.989446, 49.219492 ], [ 2.984698, 49.21817 ], [ 2.982488, 49.21688 ], [ 2.982406, 49.2163 ], [ 2.985082, 49.21624 ], [ 2.986304, 49.21511 ], [ 2.985454, 49.213082 ], [ 2.987087, 49.212264 ], [ 2.987855, 49.21253 ], [ 2.988597, 49.21239 ], [ 2.987417, 49.210915 ], [ 2.988514, 49.211356 ], [ 2.99023, 49.21067 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "3", "CODE_DEPT": "03", "NOM_DEPT": "ALLIER", "CODE_CHF": "190", "NOM_CHF": "MOULINS", "X_CHF_LIEU": "7254", "Y_CHF_LIEU": "66072", "X_CENTROID": "7144", "Y_CENTROID": "65882", "CODE_REG": "83", "NOM_REGION": "AUVERGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.693892, 45.93096 ], [ 3.691148, 45.933452 ], [ 3.682524, 45.94054 ], [ 3.680677, 45.94357 ], [ 3.678016, 45.95595 ], [ 3.666639, 45.96115 ], [ 3.66186, 45.961012 ], [ 3.63916, 45.965428 ], [ 3.631994, 45.96106 ], [ 3.630235, 45.96417 ], [ 3.625873, 45.983702 ], [ 3.613497, 45.99749 ], [ 3.613056, 46.00084 ], [ 3.598457, 46.01774 ], [ 3.588341, 46.02418 ], [ 3.584021, 46.02279 ], [ 3.577777, 46.017844 ], [ 3.554569, 46.01839 ], [ 3.553012, 46.01526 ], [ 3.548701, 46.015845 ], [ 3.544922, 46.014036 ], [ 3.538337, 46.02133 ], [ 3.520709, 46.02037 ], [ 3.520433, 46.01443 ], [ 3.486673, 46.01432 ], [ 3.473174, 46.010738 ], [ 3.468679, 46.00941 ], [ 3.464145, 46.008173 ], [ 3.467401, 46.02788 ], [ 3.463125, 46.037461 ], [ 3.467123, 46.03934 ], [ 3.471773, 46.04022 ], [ 3.460557, 46.05048 ], [ 3.460638, 46.057058 ], [ 3.457308, 46.059394 ], [ 3.45719, 46.062303 ], [ 3.453593, 46.06379 ], [ 3.444781, 46.060291 ], [ 3.434954, 46.060824 ], [ 3.422215, 46.07129 ], [ 3.419742, 46.07438 ], [ 3.402685, 46.066805 ], [ 3.382902, 46.06457 ], [ 3.369134, 46.054484 ], [ 3.336269, 46.04605 ], [ 3.332054, 46.044098 ], [ 3.331634, 46.047269 ], [ 3.332797, 46.05355 ], [ 3.317011, 46.059126 ], [ 3.314361, 46.061601 ], [ 3.305497, 46.06118 ], [ 3.302392, 46.06577 ], [ 3.297921, 46.06435 ], [ 3.284372, 46.06596 ], [ 3.275767, 46.062935 ], [ 3.256571, 46.065798 ], [ 3.253201, 46.06435 ], [ 3.241718, 46.062454 ], [ 3.237284, 46.063247 ], [ 3.230469, 46.06687 ], [ 3.232525, 46.06972 ], [ 3.228259, 46.070487 ], [ 3.221868, 46.067393 ], [ 3.214511, 46.074945 ], [ 3.179455, 46.07346 ], [ 3.179342, 46.066577 ], [ 3.174579, 46.06595 ], [ 3.127839, 46.07149 ], [ 3.121821, 46.076424 ], [ 3.118319, 46.07858 ], [ 3.116072, 46.080356 ], [ 3.113059, 46.081448 ], [ 3.108918, 46.081443 ], [ 3.100845, 46.0823 ], [ 3.098327, 46.08532 ], [ 3.099678, 46.095653 ], [ 3.090942, 46.111725 ], [ 3.050446, 46.1008 ], [ 3.039111, 46.107486 ], [ 3.035161, 46.105479 ], [ 3.026111, 46.102933 ], [ 3.021631, 46.101683 ], [ 3.014279, 46.105277 ], [ 3.00896, 46.11452 ], [ 2.994263, 46.123197 ], [ 2.980121, 46.12452 ], [ 2.971744, 46.12169 ], [ 2.968686, 46.12383 ], [ 2.964396, 46.129063 ], [ 2.96161, 46.13184 ], [ 2.95212, 46.17133 ], [ 2.948325, 46.169174 ], [ 2.915695, 46.17413 ], [ 2.913332, 46.176446 ], [ 2.910762, 46.178659 ], [ 2.915582, 46.17982 ], [ 2.919052, 46.18241 ], [ 2.919911, 46.18947 ], [ 2.912136, 46.202523 ], [ 2.915817, 46.212792 ], [ 2.923866, 46.217102 ], [ 2.932737, 46.218683 ], [ 2.936354, 46.2209 ], [ 2.939127, 46.22375 ], [ 2.932266, 46.23232 ], [ 2.945972, 46.24168 ], [ 2.941248, 46.242082 ], [ 2.925898, 46.24938 ], [ 2.905702, 46.248713 ], [ 2.886301, 46.253135 ], [ 2.866004, 46.251059 ], [ 2.85976, 46.25659 ], [ 2.855298, 46.25519 ], [ 2.819163, 46.241792 ], [ 2.817677, 46.23211 ], [ 2.823309, 46.219961 ], [ 2.817313, 46.20502 ], [ 2.810405, 46.196213 ], [ 2.805593, 46.196421 ], [ 2.786782, 46.19865 ], [ 2.783931, 46.20146 ], [ 2.769665, 46.21074 ], [ 2.759837, 46.21 ], [ 2.746418, 46.21988 ], [ 2.732598, 46.223413 ], [ 2.730277, 46.2204 ], [ 2.721645, 46.208547 ], [ 2.730098, 46.196285 ], [ 2.722605, 46.18809 ], [ 2.723105, 46.181518 ], [ 2.71947, 46.17996 ], [ 2.702702, 46.181007 ], [ 2.699216, 46.1785 ], [ 2.68505, 46.17571 ], [ 2.676724, 46.17206 ], [ 2.674938, 46.15853 ], [ 2.668672, 46.15326 ], [ 2.664111, 46.140458 ], [ 2.6619, 46.137759 ], [ 2.654375, 46.12526 ], [ 2.646827, 46.120748 ], [ 2.637202, 46.119385 ], [ 2.623711, 46.1228 ], [ 2.619412, 46.12462 ], [ 2.601883, 46.1309 ], [ 2.598423, 46.129358 ], [ 2.591384, 46.12678 ], [ 2.587726, 46.129275 ], [ 2.574549, 46.139933 ], [ 2.565379, 46.143041 ], [ 2.559155, 46.174409 ], [ 2.55459, 46.174634 ], [ 2.541834, 46.17629 ], [ 2.528499, 46.184939 ], [ 2.526102, 46.18782 ], [ 2.528303, 46.19419 ], [ 2.521757, 46.20277 ], [ 2.515203, 46.238543 ], [ 2.516311, 46.23944 ], [ 2.511509, 46.23952 ], [ 2.50198, 46.246978 ], [ 2.48892, 46.250009 ], [ 2.487941, 46.253354 ], [ 2.477773, 46.26881 ], [ 2.47958, 46.27539 ], [ 2.4803, 46.278831 ], [ 2.470215, 46.28635 ], [ 2.443032, 46.294999 ], [ 2.438446, 46.29366 ], [ 2.430241, 46.290739 ], [ 2.426006, 46.28453 ], [ 2.421374, 46.285327 ], [ 2.415615, 46.297932 ], [ 2.420657, 46.31013 ], [ 2.415901, 46.311351 ], [ 2.388164, 46.33157 ], [ 2.38608, 46.33197 ], [ 2.383785, 46.329129 ], [ 2.37061, 46.31272 ], [ 2.36621, 46.31117 ], [ 2.357932, 46.323367 ], [ 2.334254, 46.32517 ], [ 2.314586, 46.33464 ], [ 2.31162, 46.34097 ], [ 2.30211, 46.34236 ], [ 2.307829, 46.347666 ], [ 2.309602, 46.356592 ], [ 2.323262, 46.365778 ], [ 2.337142, 46.365742 ], [ 2.336464, 46.36904 ], [ 2.335475, 46.372324 ], [ 2.331406, 46.37841 ], [ 2.312479, 46.37606 ], [ 2.300942, 46.381861 ], [ 2.286936, 46.38331 ], [ 2.284789, 46.386309 ], [ 2.284576, 46.38962 ], [ 2.278416, 46.40865 ], [ 2.282033, 46.41082 ], [ 2.279481, 46.41384 ], [ 2.281048, 46.420405 ], [ 2.278432, 46.427215 ], [ 2.284666, 46.45136 ], [ 2.305465, 46.475433 ], [ 2.313097, 46.47077 ], [ 2.316996, 46.468505 ], [ 2.321409, 46.46891 ], [ 2.330814, 46.478862 ], [ 2.32963, 46.48183 ], [ 2.324969, 46.487742 ], [ 2.334315, 46.499566 ], [ 2.363697, 46.51724 ], [ 2.3683, 46.51843 ], [ 2.384099, 46.5183 ], [ 2.414634, 46.520833 ], [ 2.427808, 46.52598 ], [ 2.437939, 46.52528 ], [ 2.446148, 46.521044 ], [ 2.478655, 46.530724 ], [ 2.482929, 46.532697 ], [ 2.496526, 46.531155 ], [ 2.500235, 46.52215 ], [ 2.50976, 46.52345 ], [ 2.520282, 46.529925 ], [ 2.529408, 46.5278 ], [ 2.532682, 46.521701 ], [ 2.536652, 46.519709 ], [ 2.540403, 46.521921 ], [ 2.55179, 46.5284 ], [ 2.570133, 46.533409 ], [ 2.576552, 46.53852 ], [ 2.613262, 46.55461 ], [ 2.605668, 46.563288 ], [ 2.609356, 46.569613 ], [ 2.60834, 46.57295 ], [ 2.598461, 46.59531 ], [ 2.583888, 46.59459 ], [ 2.57738, 46.60673 ], [ 2.568383, 46.609392 ], [ 2.572922, 46.61045 ], [ 2.588657, 46.61695 ], [ 2.584599, 46.62636 ], [ 2.596325, 46.636723 ], [ 2.5931, 46.64658 ], [ 2.588997, 46.6481 ], [ 2.566995, 46.65248 ], [ 2.570439, 46.65681 ], [ 2.570551, 46.65927 ], [ 2.606155, 46.669299 ], [ 2.60704, 46.662639 ], [ 2.623914, 46.65663 ], [ 2.63156, 46.6688 ], [ 2.631838, 46.672203 ], [ 2.621638, 46.679274 ], [ 2.623478, 46.68931 ], [ 2.628221, 46.690308 ], [ 2.648081, 46.68896 ], [ 2.656179, 46.69735 ], [ 2.674262, 46.702279 ], [ 2.677795, 46.704612 ], [ 2.676175, 46.71084 ], [ 2.688603, 46.72118 ], [ 2.698463, 46.72106 ], [ 2.703898, 46.7256 ], [ 2.704833, 46.73904 ], [ 2.730642, 46.74799 ], [ 2.734528, 46.74622 ], [ 2.743797, 46.73055 ], [ 2.755115, 46.72391 ], [ 2.758521, 46.717659 ], [ 2.771375, 46.72126 ], [ 2.77475, 46.718953 ], [ 2.782748, 46.722462 ], [ 2.793416, 46.733557 ], [ 2.822561, 46.735415 ], [ 2.827485, 46.735333 ], [ 2.841168, 46.727321 ], [ 2.845727, 46.726616 ], [ 2.843818, 46.739228 ], [ 2.844634, 46.742362 ], [ 2.875346, 46.760642 ], [ 2.880422, 46.77003 ], [ 2.894344, 46.77417 ], [ 2.898967, 46.775675 ], [ 2.910924, 46.781348 ], [ 2.908913, 46.78447 ], [ 2.912941, 46.790192 ], [ 2.936099, 46.795393 ], [ 2.93989, 46.79319 ], [ 2.944387, 46.792993 ], [ 2.952503, 46.79268 ], [ 2.959915, 46.803877 ], [ 2.979899, 46.80342 ], [ 2.996604, 46.79696 ], [ 3.01614, 46.79983 ], [ 3.027584, 46.79337 ], [ 3.032068, 46.794911 ], [ 3.036264, 46.775966 ], [ 3.037546, 46.77283 ], [ 3.04955, 46.75772 ], [ 3.079605, 46.739964 ], [ 3.083478, 46.73777 ], [ 3.100537, 46.734293 ], [ 3.104673, 46.73318 ], [ 3.129056, 46.727493 ], [ 3.143329, 46.71274 ], [ 3.146988, 46.710211 ], [ 3.149247, 46.708218 ], [ 3.167414, 46.690968 ], [ 3.199366, 46.6795 ], [ 3.204426, 46.678752 ], [ 3.226936, 46.69 ], [ 3.229528, 46.69646 ], [ 3.234217, 46.69737 ], [ 3.259773, 46.70766 ], [ 3.268544, 46.715924 ], [ 3.278417, 46.716324 ], [ 3.282979, 46.714971 ], [ 3.283373, 46.71515 ], [ 3.298052, 46.715879 ], [ 3.304499, 46.702842 ], [ 3.318052, 46.68844 ], [ 3.337856, 46.685253 ], [ 3.352532, 46.686596 ], [ 3.356914, 46.688419 ], [ 3.366416, 46.69068 ], [ 3.385292, 46.713764 ], [ 3.390052, 46.714892 ], [ 3.414609, 46.711105 ], [ 3.434214, 46.71222 ], [ 3.430011, 46.69883 ], [ 3.436015, 46.69355 ], [ 3.445923, 46.69225 ], [ 3.452896, 46.687333 ], [ 3.452928, 46.677 ], [ 3.4474, 46.67139 ], [ 3.443455, 46.662338 ], [ 3.45409, 46.654841 ], [ 3.45571, 46.651466 ], [ 3.474191, 46.653535 ], [ 3.483132, 46.651678 ], [ 3.486669, 46.65381 ], [ 3.486834, 46.660559 ], [ 3.520472, 46.68524 ], [ 3.529451, 46.688203 ], [ 3.534364, 46.68752 ], [ 3.542815, 46.67946 ], [ 3.550406, 46.682395 ], [ 3.554262, 46.684601 ], [ 3.559853, 46.68998 ], [ 3.5489, 46.70555 ], [ 3.54791, 46.718956 ], [ 3.547722, 46.722415 ], [ 3.564076, 46.71611 ], [ 3.568891, 46.71591 ], [ 3.573043, 46.720994 ], [ 3.576978, 46.72291 ], [ 3.580594, 46.71698 ], [ 3.595819, 46.725291 ], [ 3.578083, 46.74927 ], [ 3.592562, 46.762801 ], [ 3.596399, 46.76499 ], [ 3.601826, 46.75213 ], [ 3.626404, 46.752267 ], [ 3.629424, 46.749459 ], [ 3.628874, 46.74613 ], [ 3.622802, 46.7409 ], [ 3.637681, 46.724192 ], [ 3.637642, 46.70748 ], [ 3.651138, 46.704235 ], [ 3.654644, 46.69107 ], [ 3.655468, 46.68775 ], [ 3.671974, 46.68191 ], [ 3.670584, 46.67209 ], [ 3.692296, 46.6636 ], [ 3.698335, 46.65826 ], [ 3.699364, 46.654886 ], [ 3.699613, 46.65191 ], [ 3.703416, 46.64763 ], [ 3.704613, 46.6452 ], [ 3.712708, 46.63333 ], [ 3.716206, 46.630973 ], [ 3.723234, 46.622771 ], [ 3.713444, 46.61072 ], [ 3.719594, 46.60544 ], [ 3.734557, 46.60378 ], [ 3.737848, 46.58728 ], [ 3.739016, 46.58386 ], [ 3.740264, 46.578593 ], [ 3.740437, 46.57593 ], [ 3.743285, 46.566462 ], [ 3.741006, 46.56022 ], [ 3.737008, 46.55607 ], [ 3.73427, 46.554364 ], [ 3.732679, 46.547747 ], [ 3.741847, 46.539547 ], [ 3.755776, 46.53615 ], [ 3.770248, 46.538954 ], [ 3.777916, 46.53126 ], [ 3.780666, 46.528366 ], [ 3.794429, 46.527344 ], [ 3.807423, 46.51938 ], [ 3.811746, 46.52059 ], [ 3.837014, 46.53161 ], [ 3.846291, 46.524009 ], [ 3.840126, 46.518454 ], [ 3.845038, 46.513086 ], [ 3.845819, 46.51294 ], [ 3.855143, 46.51532 ], [ 3.863828, 46.51268 ], [ 3.860414, 46.49556 ], [ 3.865262, 46.489648 ], [ 3.887973, 46.48236 ], [ 3.897341, 46.482053 ], [ 3.898791, 46.48541 ], [ 3.90295, 46.491725 ], [ 3.911475, 46.495494 ], [ 3.916492, 46.496102 ], [ 3.934151, 46.490952 ], [ 3.953475, 46.49179 ], [ 3.957963, 46.49048 ], [ 3.952282, 46.478727 ], [ 3.960554, 46.47766 ], [ 3.965148, 46.477997 ], [ 3.97434, 46.47957 ], [ 4.000963, 46.462011 ], [ 4.001541, 46.45875 ], [ 3.997519, 46.45258 ], [ 4.002835, 46.44053 ], [ 3.989353, 46.436951 ], [ 3.995438, 46.42849 ], [ 3.995311, 46.4251 ], [ 3.991706, 46.42308 ], [ 3.984118, 46.41966 ], [ 3.984633, 46.416478 ], [ 3.987989, 46.40765 ], [ 3.977569, 46.397871 ], [ 3.98086, 46.388351 ], [ 3.98187, 46.38516 ], [ 3.991544, 46.370419 ], [ 3.988308, 46.35402 ], [ 3.98739, 46.350751 ], [ 3.987605, 46.34751 ], [ 3.985653, 46.328685 ], [ 3.994357, 46.327655 ], [ 4.005259, 46.32741 ], [ 3.985659, 46.3175 ], [ 3.971745, 46.320726 ], [ 3.947644, 46.319029 ], [ 3.947853, 46.30561 ], [ 3.947858, 46.30367 ], [ 3.931632, 46.29622 ], [ 3.901973, 46.293158 ], [ 3.892627, 46.284857 ], [ 3.899534, 46.275914 ], [ 3.886954, 46.27379 ], [ 3.882358, 46.274707 ], [ 3.875376, 46.272546 ], [ 3.868924, 46.26366 ], [ 3.850553, 46.26209 ], [ 3.845692, 46.26181 ], [ 3.807612, 46.25739 ], [ 3.8027, 46.23851 ], [ 3.798801, 46.23991 ], [ 3.778236, 46.24306 ], [ 3.773322, 46.242469 ], [ 3.76865, 46.23699 ], [ 3.773353, 46.227186 ], [ 3.785038, 46.22044 ], [ 3.793571, 46.207686 ], [ 3.788646, 46.19804 ], [ 3.789791, 46.18749 ], [ 3.806379, 46.165757 ], [ 3.809736, 46.163104 ], [ 3.806301, 46.16134 ], [ 3.791627, 46.15658 ], [ 3.790052, 46.15339 ], [ 3.801251, 46.13142 ], [ 3.793486, 46.112203 ], [ 3.802831, 46.11014 ], [ 3.818358, 46.093007 ], [ 3.821294, 46.090239 ], [ 3.819836, 46.08704 ], [ 3.816589, 46.084564 ], [ 3.818213, 46.07803 ], [ 3.805606, 46.053061 ], [ 3.807536, 46.049778 ], [ 3.815876, 46.0191 ], [ 3.824711, 46.0066 ], [ 3.827342, 46.000213 ], [ 3.832076, 45.99966 ], [ 3.831736, 45.99944 ], [ 3.828199, 45.99707 ], [ 3.82322, 45.988158 ], [ 3.80972, 45.984662 ], [ 3.805153, 45.98329 ], [ 3.781713, 45.972792 ], [ 3.760021, 45.980675 ], [ 3.755204, 45.97982 ], [ 3.75064, 45.97003 ], [ 3.742071, 45.96669 ], [ 3.709612, 45.97414 ], [ 3.701807, 45.965724 ], [ 3.704505, 45.955549 ], [ 3.69416, 45.948166 ], [ 3.693892, 45.93096 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "4", "CODE_DEPT": "04", "NOM_DEPT": "ALPES-DE-HAUTE-PROVENCE", "CODE_CHF": "070", "NOM_CHF": "DIGNE-LES-BAINS", "X_CHF_LIEU": "9590", "Y_CHF_LIEU": "63379", "X_CENTROID": "9596", "Y_CENTROID": "63394", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.636396, 43.788951 ], [ 6.631781, 43.78971 ], [ 6.624163, 43.797637 ], [ 6.623513, 43.804451 ], [ 6.586912, 43.80532 ], [ 6.58621, 43.802451 ], [ 6.581177, 43.79815 ], [ 6.578409, 43.795654 ], [ 6.554071, 43.783435 ], [ 6.551026, 43.78125 ], [ 6.542339, 43.77589 ], [ 6.545273, 43.782523 ], [ 6.538469, 43.795518 ], [ 6.520281, 43.806925 ], [ 6.487059, 43.79225 ], [ 6.469959, 43.797523 ], [ 6.456835, 43.79313 ], [ 6.44893, 43.793615 ], [ 6.438808, 43.797745 ], [ 6.438807, 43.7942 ], [ 6.415852, 43.79005 ], [ 6.412788, 43.762256 ], [ 6.383541, 43.734437 ], [ 6.378913, 43.739372 ], [ 6.376266, 43.7423 ], [ 6.35451, 43.736515 ], [ 6.329213, 43.746226 ], [ 6.312809, 43.7588 ], [ 6.267787, 43.778547 ], [ 6.257113, 43.7976 ], [ 6.24963, 43.80158 ], [ 6.245312, 43.80241 ], [ 6.233044, 43.798984 ], [ 6.224189, 43.79984 ], [ 6.219498, 43.799781 ], [ 6.207321, 43.79529 ], [ 6.188387, 43.77614 ], [ 6.18504, 43.768282 ], [ 6.184159, 43.76561 ], [ 6.182737, 43.762171 ], [ 6.16532, 43.74945 ], [ 6.140606, 43.737611 ], [ 6.136721, 43.73675 ], [ 6.128625, 43.73679 ], [ 6.124387, 43.738339 ], [ 6.11575, 43.74556 ], [ 6.111011, 43.745665 ], [ 6.095298, 43.72961 ], [ 6.090296, 43.728974 ], [ 6.091826, 43.7258 ], [ 6.085981, 43.71666 ], [ 6.070405, 43.704944 ], [ 6.066238, 43.70479 ], [ 6.056553, 43.700084 ], [ 6.051561, 43.697712 ], [ 6.047019, 43.69703 ], [ 6.034615, 43.692711 ], [ 6.038784, 43.679592 ], [ 6.021735, 43.668288 ], [ 6.018883, 43.67112 ], [ 6.011191, 43.675352 ], [ 6.004165, 43.688288 ], [ 5.987772, 43.69542 ], [ 5.986794, 43.698564 ], [ 5.984534, 43.71449 ], [ 5.97993, 43.71548 ], [ 5.96521, 43.7225 ], [ 5.951306, 43.721828 ], [ 5.943609, 43.725944 ], [ 5.938029, 43.74907 ], [ 5.928999, 43.7498 ], [ 5.925662, 43.755964 ], [ 5.922661, 43.757539 ], [ 5.918742, 43.75548 ], [ 5.905002, 43.75278 ], [ 5.903144, 43.735513 ], [ 5.888624, 43.72636 ], [ 5.874983, 43.72299 ], [ 5.855749, 43.723189 ], [ 5.849043, 43.71818 ], [ 5.848607, 43.72164 ], [ 5.835113, 43.743484 ], [ 5.82767, 43.74767 ], [ 5.781343, 43.75566 ], [ 5.778678, 43.752709 ], [ 5.757333, 43.729409 ], [ 5.748017, 43.74148 ], [ 5.716274, 43.756931 ], [ 5.713558, 43.78112 ], [ 5.705321, 43.779587 ], [ 5.695001, 43.78421 ], [ 5.690681, 43.785127 ], [ 5.684298, 43.789453 ], [ 5.674483, 43.80736 ], [ 5.670121, 43.80872 ], [ 5.657024, 43.81851 ], [ 5.654445, 43.825111 ], [ 5.650596, 43.82525 ], [ 5.646917, 43.826104 ], [ 5.643087, 43.826927 ], [ 5.631373, 43.82857 ], [ 5.627694, 43.830792 ], [ 5.599493, 43.82714 ], [ 5.571883, 43.82934 ], [ 5.563903, 43.820867 ], [ 5.551256, 43.81722 ], [ 5.547911, 43.816398 ], [ 5.544566, 43.817233 ], [ 5.548657, 43.84789 ], [ 5.557468, 43.855458 ], [ 5.561328, 43.85746 ], [ 5.572737, 43.863508 ], [ 5.59029, 43.887233 ], [ 5.591367, 43.890674 ], [ 5.60656, 43.91608 ], [ 5.583383, 43.915913 ], [ 5.569475, 43.939544 ], [ 5.567633, 43.94264 ], [ 5.562939, 43.94245 ], [ 5.544992, 43.939055 ], [ 5.541171, 43.940828 ], [ 5.525213, 43.946861 ], [ 5.512674, 43.9454 ], [ 5.511577, 43.94852 ], [ 5.507972, 43.9578 ], [ 5.51317, 43.97336 ], [ 5.514257, 43.976792 ], [ 5.519542, 43.993959 ], [ 5.542776, 44.02435 ], [ 5.544501, 44.06967 ], [ 5.540038, 44.068458 ], [ 5.517337, 44.06347 ], [ 5.503023, 44.06371 ], [ 5.501567, 44.06694 ], [ 5.49816, 44.073267 ], [ 5.498788, 44.11572 ], [ 5.507615, 44.11776 ], [ 5.511089, 44.12396 ], [ 5.542146, 44.13326 ], [ 5.550089, 44.145894 ], [ 5.551315, 44.14924 ], [ 5.551333, 44.149647 ], [ 5.570423, 44.148616 ], [ 5.581188, 44.155153 ], [ 5.568105, 44.168725 ], [ 5.564374, 44.170902 ], [ 5.575671, 44.186316 ], [ 5.579657, 44.18837 ], [ 5.594234, 44.187481 ], [ 5.602053, 44.191502 ], [ 5.605704, 44.19114 ], [ 5.609327, 44.19071 ], [ 5.616955, 44.17862 ], [ 5.629773, 44.17409 ], [ 5.638795, 44.16628 ], [ 5.632026, 44.157375 ], [ 5.631136, 44.150579 ], [ 5.640667, 44.149234 ], [ 5.645321, 44.148185 ], [ 5.67406, 44.14732 ], [ 5.678605, 44.146098 ], [ 5.681266, 44.16007 ], [ 5.682728, 44.163486 ], [ 5.650428, 44.166766 ], [ 5.643897, 44.17053 ], [ 5.652288, 44.186237 ], [ 5.651593, 44.18958 ], [ 5.676037, 44.191433 ], [ 5.688817, 44.188257 ], [ 5.69239, 44.186269 ], [ 5.697942, 44.19195 ], [ 5.714941, 44.19851 ], [ 5.739009, 44.20176 ], [ 5.754537, 44.209827 ], [ 5.776254, 44.205578 ], [ 5.787955, 44.2103 ], [ 5.791914, 44.211863 ], [ 5.81088, 44.210757 ], [ 5.830739, 44.20043 ], [ 5.854398, 44.196367 ], [ 5.859057, 44.19517 ], [ 5.895566, 44.19058 ], [ 5.900313, 44.19088 ], [ 5.909902, 44.191603 ], [ 5.912356, 44.20479 ], [ 5.88447, 44.2102 ], [ 5.876728, 44.21433 ], [ 5.873183, 44.220745 ], [ 5.872682, 44.22421 ], [ 5.869428, 44.2307 ], [ 5.86181, 44.235147 ], [ 5.859308, 44.245408 ], [ 5.835375, 44.25742 ], [ 5.831221, 44.259313 ], [ 5.828455, 44.2609 ], [ 5.826492, 44.26301 ], [ 5.823033, 44.27636 ], [ 5.837276, 44.294185 ], [ 5.836127, 44.29754 ], [ 5.844577, 44.29998 ], [ 5.849039, 44.30066 ], [ 5.872113, 44.29291 ], [ 5.875488, 44.29097 ], [ 5.875074, 44.277116 ], [ 5.880137, 44.271146 ], [ 5.90923, 44.252293 ], [ 5.912233, 44.249511 ], [ 5.921825, 44.24841 ], [ 5.92088, 44.251461 ], [ 5.920629, 44.257539 ], [ 5.924756, 44.26368 ], [ 5.913984, 44.26847 ], [ 5.916192, 44.28167 ], [ 5.913496, 44.288254 ], [ 5.925752, 44.29295 ], [ 5.924474, 44.299312 ], [ 5.923532, 44.30244 ], [ 5.925139, 44.3134 ], [ 5.921115, 44.31517 ], [ 5.90847, 44.31176 ], [ 5.900114, 44.314928 ], [ 5.897085, 44.320962 ], [ 5.905087, 44.32922 ], [ 5.903105, 44.335855 ], [ 5.906611, 44.338131 ], [ 5.911295, 44.337692 ], [ 5.919596, 44.340471 ], [ 5.922564, 44.34715 ], [ 5.926031, 44.34962 ], [ 5.93746, 44.359903 ], [ 5.940727, 44.36937 ], [ 5.941362, 44.372662 ], [ 5.951755, 44.39182 ], [ 5.953543, 44.39502 ], [ 5.967631, 44.40204 ], [ 5.97152, 44.403371 ], [ 5.974754, 44.40512 ], [ 5.977589, 44.407188 ], [ 5.988217, 44.410693 ], [ 5.99214, 44.411676 ], [ 6.019295, 44.41915 ], [ 6.028002, 44.43528 ], [ 6.032485, 44.436823 ], [ 6.053342, 44.44654 ], [ 6.05624, 44.44945 ], [ 6.066996, 44.443706 ], [ 6.07441, 44.44476 ], [ 6.074264, 44.45157 ], [ 6.08181, 44.464012 ], [ 6.076241, 44.468474 ], [ 6.080134, 44.47436 ], [ 6.08288, 44.47695 ], [ 6.10568, 44.474207 ], [ 6.109717, 44.475535 ], [ 6.112523, 44.475537 ], [ 6.115319, 44.475584 ], [ 6.127618, 44.4682 ], [ 6.131767, 44.468145 ], [ 6.149843, 44.462449 ], [ 6.154781, 44.46211 ], [ 6.156216, 44.44546 ], [ 6.156255, 44.44211 ], [ 6.159795, 44.436822 ], [ 6.162352, 44.434424 ], [ 6.170164, 44.437632 ], [ 6.173945, 44.439586 ], [ 6.184779, 44.424075 ], [ 6.202903, 44.41224 ], [ 6.224261, 44.3845 ], [ 6.226634, 44.381396 ], [ 6.244391, 44.387414 ], [ 6.262495, 44.412259 ], [ 6.244368, 44.446183 ], [ 6.240256, 44.44775 ], [ 6.236385, 44.46074 ], [ 6.23277, 44.46288 ], [ 6.233525, 44.46375 ], [ 6.262169, 44.465668 ], [ 6.272062, 44.472691 ], [ 6.289559, 44.47886 ], [ 6.293492, 44.480927 ], [ 6.298017, 44.47479 ], [ 6.322327, 44.46406 ], [ 6.32711, 44.463456 ], [ 6.329482, 44.468908 ], [ 6.33766, 44.470814 ], [ 6.339614, 44.476837 ], [ 6.340235, 44.4799 ], [ 6.347126, 44.49658 ], [ 6.335547, 44.507288 ], [ 6.332396, 44.51 ], [ 6.334821, 44.5114 ], [ 6.347639, 44.51543 ], [ 6.357374, 44.522637 ], [ 6.362, 44.522073 ], [ 6.370458, 44.510371 ], [ 6.394655, 44.49564 ], [ 6.398809, 44.49416 ], [ 6.406375, 44.483308 ], [ 6.408369, 44.48048 ], [ 6.40932, 44.47392 ], [ 6.415902, 44.469137 ], [ 6.438481, 44.47212 ], [ 6.445132, 44.467065 ], [ 6.458982, 44.464333 ], [ 6.468074, 44.452361 ], [ 6.477395, 44.45235 ], [ 6.481649, 44.454023 ], [ 6.498926, 44.449412 ], [ 6.507972, 44.450854 ], [ 6.512446, 44.449982 ], [ 6.521775, 44.44808 ], [ 6.535108, 44.451879 ], [ 6.557482, 44.445996 ], [ 6.581009, 44.447044 ], [ 6.585622, 44.445993 ], [ 6.588864, 44.445554 ], [ 6.603092, 44.44793 ], [ 6.627377, 44.447041 ], [ 6.6323, 44.446915 ], [ 6.637981, 44.476159 ], [ 6.64167, 44.485545 ], [ 6.664676, 44.49865 ], [ 6.668497, 44.5003 ], [ 6.683021, 44.531655 ], [ 6.681811, 44.53822 ], [ 6.6806, 44.54149 ], [ 6.704737, 44.53946 ], [ 6.737826, 44.55351 ], [ 6.754065, 44.570637 ], [ 6.770999, 44.576882 ], [ 6.769022, 44.58712 ], [ 6.780572, 44.593472 ], [ 6.789951, 44.593006 ], [ 6.796104, 44.597851 ], [ 6.799825, 44.60402 ], [ 6.809262, 44.60216 ], [ 6.821323, 44.608112 ], [ 6.845347, 44.61034 ], [ 6.852496, 44.61507 ], [ 6.858864, 44.628087 ], [ 6.882366, 44.631383 ], [ 6.906985, 44.652923 ], [ 6.907604, 44.65639 ], [ 6.915267, 44.659796 ], [ 6.922402, 44.655983 ], [ 6.944011, 44.65366 ], [ 6.948335, 44.654816 ], [ 6.953784, 44.63782 ], [ 6.967177, 44.62291 ], [ 6.954004, 44.61954 ], [ 6.938622, 44.60206 ], [ 6.930577, 44.574623 ], [ 6.918222, 44.56887 ], [ 6.907839, 44.55731 ], [ 6.879202, 44.551879 ], [ 6.869948, 44.53936 ], [ 6.855214, 44.530295 ], [ 6.859817, 44.50584 ], [ 6.861337, 44.50247 ], [ 6.867761, 44.49329 ], [ 6.871026, 44.49078 ], [ 6.875477, 44.48922 ], [ 6.879458, 44.479351 ], [ 6.904245, 44.467876 ], [ 6.913404, 44.451454 ], [ 6.936453, 44.43823 ], [ 6.941299, 44.42924 ], [ 6.927684, 44.424997 ], [ 6.91292, 44.42466 ], [ 6.899048, 44.420832 ], [ 6.895392, 44.41851 ], [ 6.894163, 44.41509 ], [ 6.895943, 44.372661 ], [ 6.887045, 44.364594 ], [ 6.887431, 44.36106 ], [ 6.88343, 44.358954 ], [ 6.87154, 44.352803 ], [ 6.868985, 44.35052 ], [ 6.862963, 44.346571 ], [ 6.859328, 44.344283 ], [ 6.84091, 44.345667 ], [ 6.823444, 44.3338 ], [ 6.809948, 44.330289 ], [ 6.804542, 44.320824 ], [ 6.796834, 44.3167 ], [ 6.795043, 44.31358 ], [ 6.796041, 44.30018 ], [ 6.786444, 44.288764 ], [ 6.790339, 44.272345 ], [ 6.785844, 44.27359 ], [ 6.763087, 44.278428 ], [ 6.756922, 44.262247 ], [ 6.743444, 44.258662 ], [ 6.737559, 44.25327 ], [ 6.728285, 44.252563 ], [ 6.724371, 44.250425 ], [ 6.723518, 44.226169 ], [ 6.714075, 44.21823 ], [ 6.717369, 44.20864 ], [ 6.698476, 44.19015 ], [ 6.702002, 44.180852 ], [ 6.701235, 44.17753 ], [ 6.697893, 44.175053 ], [ 6.687238, 44.168302 ], [ 6.704946, 44.1448 ], [ 6.707956, 44.124389 ], [ 6.719091, 44.118299 ], [ 6.722172, 44.1134 ], [ 6.724109, 44.11108 ], [ 6.740733, 44.098594 ], [ 6.746524, 44.089134 ], [ 6.749821, 44.08661 ], [ 6.752843, 44.081069 ], [ 6.756483, 44.079593 ], [ 6.75423, 44.076525 ], [ 6.747684, 44.063477 ], [ 6.745687, 44.042831 ], [ 6.771137, 44.0265 ], [ 6.788985, 44.021282 ], [ 6.795562, 44.00811 ], [ 6.798087, 44.00536 ], [ 6.838085, 43.98982 ], [ 6.836197, 43.9866 ], [ 6.834713, 43.983286 ], [ 6.837536, 43.980736 ], [ 6.845487, 43.977627 ], [ 6.848069, 43.965228 ], [ 6.847274, 43.961769 ], [ 6.84775, 43.954787 ], [ 6.87181, 43.953306 ], [ 6.881883, 43.93786 ], [ 6.891724, 43.930225 ], [ 6.895139, 43.92782 ], [ 6.899665, 43.926743 ], [ 6.912989, 43.927059 ], [ 6.943245, 43.9007 ], [ 6.942272, 43.897261 ], [ 6.937585, 43.896331 ], [ 6.918679, 43.89357 ], [ 6.914201, 43.893316 ], [ 6.892593, 43.889981 ], [ 6.883435, 43.890893 ], [ 6.875061, 43.89931 ], [ 6.855097, 43.90832 ], [ 6.849883, 43.913976 ], [ 6.835947, 43.91543 ], [ 6.832406, 43.9182 ], [ 6.82787, 43.91728 ], [ 6.801479, 43.910303 ], [ 6.781622, 43.883558 ], [ 6.777189, 43.882261 ], [ 6.748081, 43.871859 ], [ 6.716515, 43.879579 ], [ 6.71217, 43.88076 ], [ 6.671631, 43.88779 ], [ 6.672533, 43.884384 ], [ 6.67836, 43.87912 ], [ 6.696172, 43.87492 ], [ 6.698749, 43.857796 ], [ 6.702826, 43.855963 ], [ 6.698235, 43.85543 ], [ 6.680239, 43.85206 ], [ 6.667906, 43.830613 ], [ 6.700319, 43.824779 ], [ 6.711365, 43.813989 ], [ 6.70983, 43.81066 ], [ 6.706107, 43.808492 ], [ 6.642116, 43.795191 ], [ 6.636039, 43.79018 ], [ 6.636396, 43.788951 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "5", "CODE_DEPT": "05", "NOM_DEPT": "HAUTES-ALPES", "CODE_CHF": "061", "NOM_CHF": "GAP", "X_CHF_LIEU": "9443", "Y_CHF_LIEU": "63891", "X_CENTROID": "9585", "Y_CENTROID": "64014", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.948335, 44.654816 ], [ 6.944011, 44.65366 ], [ 6.922402, 44.655983 ], [ 6.915267, 44.659796 ], [ 6.907604, 44.65639 ], [ 6.906985, 44.652923 ], [ 6.882366, 44.631383 ], [ 6.858864, 44.628087 ], [ 6.852496, 44.61507 ], [ 6.845347, 44.61034 ], [ 6.821323, 44.608112 ], [ 6.809262, 44.60216 ], [ 6.799825, 44.60402 ], [ 6.796104, 44.597851 ], [ 6.789951, 44.593006 ], [ 6.780572, 44.593472 ], [ 6.769022, 44.58712 ], [ 6.770999, 44.576882 ], [ 6.754065, 44.570637 ], [ 6.737826, 44.55351 ], [ 6.704737, 44.53946 ], [ 6.6806, 44.54149 ], [ 6.681811, 44.53822 ], [ 6.683021, 44.531655 ], [ 6.668497, 44.5003 ], [ 6.664676, 44.49865 ], [ 6.64167, 44.485545 ], [ 6.637981, 44.476159 ], [ 6.6323, 44.446915 ], [ 6.627377, 44.447041 ], [ 6.603092, 44.44793 ], [ 6.588864, 44.445554 ], [ 6.585622, 44.445993 ], [ 6.581009, 44.447044 ], [ 6.557482, 44.445996 ], [ 6.535108, 44.451879 ], [ 6.521775, 44.44808 ], [ 6.512446, 44.449982 ], [ 6.507972, 44.450854 ], [ 6.498926, 44.449412 ], [ 6.481649, 44.454023 ], [ 6.477395, 44.45235 ], [ 6.468074, 44.452361 ], [ 6.458982, 44.464333 ], [ 6.445132, 44.467065 ], [ 6.438481, 44.47212 ], [ 6.415902, 44.469137 ], [ 6.40932, 44.47392 ], [ 6.408369, 44.48048 ], [ 6.406375, 44.483308 ], [ 6.398809, 44.49416 ], [ 6.394655, 44.49564 ], [ 6.370458, 44.510371 ], [ 6.362, 44.522073 ], [ 6.357374, 44.522637 ], [ 6.347639, 44.51543 ], [ 6.334821, 44.5114 ], [ 6.332396, 44.51 ], [ 6.335547, 44.507288 ], [ 6.347126, 44.49658 ], [ 6.340235, 44.4799 ], [ 6.339614, 44.476837 ], [ 6.33766, 44.470814 ], [ 6.329482, 44.468908 ], [ 6.32711, 44.463456 ], [ 6.322327, 44.46406 ], [ 6.298017, 44.47479 ], [ 6.293492, 44.480927 ], [ 6.289559, 44.47886 ], [ 6.272062, 44.472691 ], [ 6.262169, 44.465668 ], [ 6.233525, 44.46375 ], [ 6.23277, 44.46288 ], [ 6.236385, 44.46074 ], [ 6.240256, 44.44775 ], [ 6.244368, 44.446183 ], [ 6.262495, 44.412259 ], [ 6.244391, 44.387414 ], [ 6.226634, 44.381396 ], [ 6.224261, 44.3845 ], [ 6.202903, 44.41224 ], [ 6.184779, 44.424075 ], [ 6.173945, 44.439586 ], [ 6.170164, 44.437632 ], [ 6.162352, 44.434424 ], [ 6.159795, 44.436822 ], [ 6.156255, 44.44211 ], [ 6.156216, 44.44546 ], [ 6.154781, 44.46211 ], [ 6.149843, 44.462449 ], [ 6.131767, 44.468145 ], [ 6.127618, 44.4682 ], [ 6.115319, 44.475584 ], [ 6.112523, 44.475537 ], [ 6.109717, 44.475535 ], [ 6.10568, 44.474207 ], [ 6.08288, 44.47695 ], [ 6.080134, 44.47436 ], [ 6.076241, 44.468474 ], [ 6.08181, 44.464012 ], [ 6.074264, 44.45157 ], [ 6.07441, 44.44476 ], [ 6.066996, 44.443706 ], [ 6.05624, 44.44945 ], [ 6.053342, 44.44654 ], [ 6.032485, 44.436823 ], [ 6.028002, 44.43528 ], [ 6.019295, 44.41915 ], [ 5.99214, 44.411676 ], [ 5.988217, 44.410693 ], [ 5.977589, 44.407188 ], [ 5.974754, 44.40512 ], [ 5.97152, 44.403371 ], [ 5.967631, 44.40204 ], [ 5.953543, 44.39502 ], [ 5.951755, 44.39182 ], [ 5.941362, 44.372662 ], [ 5.940727, 44.36937 ], [ 5.93746, 44.359903 ], [ 5.926031, 44.34962 ], [ 5.922564, 44.34715 ], [ 5.919596, 44.340471 ], [ 5.911295, 44.337692 ], [ 5.906611, 44.338131 ], [ 5.903105, 44.335855 ], [ 5.905087, 44.32922 ], [ 5.897085, 44.320962 ], [ 5.900114, 44.314928 ], [ 5.90847, 44.31176 ], [ 5.921115, 44.31517 ], [ 5.925139, 44.3134 ], [ 5.923532, 44.30244 ], [ 5.924474, 44.299312 ], [ 5.925752, 44.29295 ], [ 5.913496, 44.288254 ], [ 5.916192, 44.28167 ], [ 5.913984, 44.26847 ], [ 5.924756, 44.26368 ], [ 5.920629, 44.257539 ], [ 5.92088, 44.251461 ], [ 5.921825, 44.24841 ], [ 5.912233, 44.249511 ], [ 5.90923, 44.252293 ], [ 5.880137, 44.271146 ], [ 5.875074, 44.277116 ], [ 5.875488, 44.29097 ], [ 5.872113, 44.29291 ], [ 5.849039, 44.30066 ], [ 5.844577, 44.29998 ], [ 5.836127, 44.29754 ], [ 5.837276, 44.294185 ], [ 5.823033, 44.27636 ], [ 5.826492, 44.26301 ], [ 5.828455, 44.2609 ], [ 5.831221, 44.259313 ], [ 5.835375, 44.25742 ], [ 5.859308, 44.245408 ], [ 5.86181, 44.235147 ], [ 5.869428, 44.2307 ], [ 5.872682, 44.22421 ], [ 5.873183, 44.220745 ], [ 5.876728, 44.21433 ], [ 5.88447, 44.2102 ], [ 5.912356, 44.20479 ], [ 5.909902, 44.191603 ], [ 5.900313, 44.19088 ], [ 5.895566, 44.19058 ], [ 5.859057, 44.19517 ], [ 5.854398, 44.196367 ], [ 5.830739, 44.20043 ], [ 5.81088, 44.210757 ], [ 5.791914, 44.211863 ], [ 5.787955, 44.2103 ], [ 5.776254, 44.205578 ], [ 5.754537, 44.209827 ], [ 5.739009, 44.20176 ], [ 5.714941, 44.19851 ], [ 5.697942, 44.19195 ], [ 5.69239, 44.186269 ], [ 5.688817, 44.188257 ], [ 5.676037, 44.191433 ], [ 5.685922, 44.197181 ], [ 5.676723, 44.21341 ], [ 5.681133, 44.23069 ], [ 5.682025, 44.23367 ], [ 5.673312, 44.240169 ], [ 5.672644, 44.24567 ], [ 5.674252, 44.25586 ], [ 5.684206, 44.26309 ], [ 5.686653, 44.266069 ], [ 5.68449, 44.268833 ], [ 5.67561, 44.27589 ], [ 5.671683, 44.274225 ], [ 5.646781, 44.26709 ], [ 5.646372, 44.270398 ], [ 5.632861, 44.282845 ], [ 5.632601, 44.289389 ], [ 5.635739, 44.291638 ], [ 5.639778, 44.2965 ], [ 5.633799, 44.30088 ], [ 5.629322, 44.30115 ], [ 5.616057, 44.30938 ], [ 5.608318, 44.30612 ], [ 5.613216, 44.315772 ], [ 5.630209, 44.32785 ], [ 5.628259, 44.33394 ], [ 5.6238, 44.335217 ], [ 5.62037, 44.33295 ], [ 5.588187, 44.33218 ], [ 5.586926, 44.33204 ], [ 5.582972, 44.33229 ], [ 5.571307, 44.333476 ], [ 5.566543, 44.33302 ], [ 5.549105, 44.330588 ], [ 5.539953, 44.332439 ], [ 5.53686, 44.342102 ], [ 5.520927, 44.349259 ], [ 5.50316, 44.344279 ], [ 5.492944, 44.33713 ], [ 5.490082, 44.33996 ], [ 5.47857, 44.351041 ], [ 5.468856, 44.35135 ], [ 5.467049, 44.35451 ], [ 5.462782, 44.367237 ], [ 5.443922, 44.367748 ], [ 5.439297, 44.36795 ], [ 5.434954, 44.36912 ], [ 5.431328, 44.375331 ], [ 5.442622, 44.381268 ], [ 5.441702, 44.391681 ], [ 5.430035, 44.41453 ], [ 5.425382, 44.41561 ], [ 5.418397, 44.42477 ], [ 5.433752, 44.433168 ], [ 5.438582, 44.433556 ], [ 5.472723, 44.420943 ], [ 5.47757, 44.42085 ], [ 5.483329, 44.42609 ], [ 5.486044, 44.428965 ], [ 5.489918, 44.429022 ], [ 5.493615, 44.42822 ], [ 5.495031, 44.43096 ], [ 5.49549, 44.438803 ], [ 5.464832, 44.44865 ], [ 5.463836, 44.452052 ], [ 5.460217, 44.46859 ], [ 5.466822, 44.47352 ], [ 5.461529, 44.482824 ], [ 5.460352, 44.48614 ], [ 5.458909, 44.48852 ], [ 5.457843, 44.498155 ], [ 5.466345, 44.50034 ], [ 5.470847, 44.5 ], [ 5.474925, 44.49426 ], [ 5.483134, 44.49122 ], [ 5.506409, 44.492018 ], [ 5.51103, 44.49151 ], [ 5.546077, 44.48212 ], [ 5.549714, 44.4799 ], [ 5.56043, 44.4743 ], [ 5.564687, 44.475249 ], [ 5.5691, 44.476578 ], [ 5.598968, 44.466268 ], [ 5.603637, 44.4655 ], [ 5.614847, 44.47184 ], [ 5.623729, 44.48406 ], [ 5.626329, 44.497775 ], [ 5.633188, 44.502097 ], [ 5.651244, 44.499322 ], [ 5.659776, 44.501972 ], [ 5.664504, 44.501894 ], [ 5.66305, 44.50495 ], [ 5.646326, 44.520076 ], [ 5.642693, 44.522064 ], [ 5.627653, 44.53436 ], [ 5.614987, 44.532776 ], [ 5.612473, 44.535601 ], [ 5.597249, 44.543274 ], [ 5.60649, 44.566655 ], [ 5.607148, 44.568351 ], [ 5.613898, 44.571821 ], [ 5.621998, 44.58586 ], [ 5.626319, 44.586623 ], [ 5.627477, 44.59497 ], [ 5.63703, 44.60922 ], [ 5.646092, 44.60992 ], [ 5.648367, 44.616218 ], [ 5.649462, 44.61938 ], [ 5.642842, 44.62426 ], [ 5.640301, 44.64782 ], [ 5.641715, 44.651084 ], [ 5.649246, 44.652903 ], [ 5.651551, 44.655217 ], [ 5.659305, 44.651049 ], [ 5.683495, 44.64998 ], [ 5.725505, 44.640087 ], [ 5.749155, 44.65108 ], [ 5.753769, 44.660529 ], [ 5.77112, 44.65428 ], [ 5.785703, 44.653135 ], [ 5.79062, 44.653299 ], [ 5.801017, 44.674828 ], [ 5.809249, 44.678123 ], [ 5.813277, 44.679904 ], [ 5.817189, 44.681885 ], [ 5.829958, 44.69124 ], [ 5.825458, 44.70098 ], [ 5.812675, 44.70501 ], [ 5.808962, 44.70579 ], [ 5.80147, 44.706779 ], [ 5.811319, 44.71402 ], [ 5.81886, 44.73065 ], [ 5.829361, 44.74244 ], [ 5.826526, 44.756203 ], [ 5.827093, 44.75969 ], [ 5.841024, 44.756373 ], [ 5.847986, 44.751527 ], [ 5.867467, 44.751007 ], [ 5.880592, 44.746846 ], [ 5.885456, 44.74729 ], [ 5.893139, 44.75557 ], [ 5.902203, 44.75799 ], [ 5.919572, 44.75279 ], [ 5.937689, 44.763428 ], [ 5.946886, 44.76131 ], [ 5.951122, 44.759621 ], [ 5.952215, 44.768412 ], [ 5.953165, 44.771314 ], [ 5.976427, 44.779737 ], [ 5.980273, 44.781184 ], [ 5.979498, 44.78446 ], [ 5.977782, 44.79099 ], [ 5.951206, 44.80146 ], [ 5.949519, 44.80453 ], [ 5.975607, 44.81658 ], [ 5.979182, 44.818594 ], [ 6.003416, 44.820355 ], [ 6.016206, 44.83529 ], [ 6.030211, 44.8381 ], [ 6.052272, 44.81717 ], [ 6.056502, 44.815814 ], [ 6.093293, 44.83637 ], [ 6.097322, 44.83823 ], [ 6.113151, 44.84553 ], [ 6.130449, 44.862515 ], [ 6.157906, 44.85829 ], [ 6.165014, 44.853587 ], [ 6.169659, 44.852391 ], [ 6.192556, 44.85674 ], [ 6.196382, 44.85898 ], [ 6.229098, 44.852 ], [ 6.248866, 44.85256 ], [ 6.267095, 44.869092 ], [ 6.294563, 44.87398 ], [ 6.304353, 44.872792 ], [ 6.319428, 44.855139 ], [ 6.336319, 44.84837 ], [ 6.352053, 44.852842 ], [ 6.355364, 44.85482 ], [ 6.35047, 44.875131 ], [ 6.351997, 44.88203 ], [ 6.35855, 44.88732 ], [ 6.35466, 44.8971 ], [ 6.357945, 44.90729 ], [ 6.35491, 44.92778 ], [ 6.358172, 44.941575 ], [ 6.353422, 44.94256 ], [ 6.326279, 44.95001 ], [ 6.323254, 44.956575 ], [ 6.328214, 44.96635 ], [ 6.315992, 44.981186 ], [ 6.316204, 44.988209 ], [ 6.322681, 44.99762 ], [ 6.318199, 45.00387 ], [ 6.313282, 45.00386 ], [ 6.256173, 44.996219 ], [ 6.214373, 45.00568 ], [ 6.203138, 45.01245 ], [ 6.202925, 45.022933 ], [ 6.208686, 45.02834 ], [ 6.209563, 45.0423 ], [ 6.218717, 45.062 ], [ 6.22008, 45.065368 ], [ 6.243285, 45.06995 ], [ 6.229263, 45.106807 ], [ 6.245508, 45.119204 ], [ 6.258496, 45.12365 ], [ 6.260566, 45.12685 ], [ 6.276888, 45.114933 ], [ 6.293342, 45.108636 ], [ 6.317031, 45.111934 ], [ 6.332876, 45.11962 ], [ 6.334233, 45.122939 ], [ 6.362713, 45.105032 ], [ 6.374601, 45.082295 ], [ 6.367174, 45.07326 ], [ 6.364878, 45.070171 ], [ 6.396888, 45.061989 ], [ 6.406143, 45.06425 ], [ 6.420353, 45.06122 ], [ 6.43487, 45.063 ], [ 6.453124, 45.05237 ], [ 6.482138, 45.05625 ], [ 6.487082, 45.05641 ], [ 6.488729, 45.070181 ], [ 6.481725, 45.09045 ], [ 6.487117, 45.09613 ], [ 6.507778, 45.105994 ], [ 6.510423, 45.109 ], [ 6.530287, 45.099065 ], [ 6.540052, 45.09953 ], [ 6.561367, 45.10731 ], [ 6.563908, 45.11382 ], [ 6.57357, 45.120596 ], [ 6.576531, 45.1231 ], [ 6.589941, 45.1192 ], [ 6.61353, 45.120957 ], [ 6.626688, 45.111841 ], [ 6.629987, 45.109327 ], [ 6.627005, 45.1026 ], [ 6.644249, 45.085408 ], [ 6.647346, 45.075157 ], [ 6.660508, 45.07023 ], [ 6.662417, 45.06695 ], [ 6.661698, 45.052847 ], [ 6.668215, 45.043447 ], [ 6.665986, 45.0331 ], [ 6.672269, 45.023475 ], [ 6.675737, 45.02093 ], [ 6.725591, 45.020873 ], [ 6.739483, 45.01689 ], [ 6.750323, 44.997723 ], [ 6.737363, 44.99276 ], [ 6.737852, 44.98923 ], [ 6.746425, 44.98618 ], [ 6.764229, 44.96648 ], [ 6.762715, 44.956219 ], [ 6.748995, 44.937862 ], [ 6.757845, 44.935093 ], [ 6.750299, 44.92284 ], [ 6.750462, 44.908969 ], [ 6.751017, 44.90551 ], [ 6.77427, 44.90142 ], [ 6.784785, 44.8896 ], [ 6.799305, 44.88887 ], [ 6.807274, 44.87644 ], [ 6.839718, 44.86073 ], [ 6.853711, 44.85743 ], [ 6.864815, 44.850646 ], [ 6.87927, 44.85005 ], [ 6.883381, 44.84811 ], [ 6.911828, 44.845365 ], [ 6.927466, 44.858623 ], [ 6.935782, 44.861177 ], [ 6.970289, 44.847452 ], [ 7.003335, 44.84031 ], [ 7.010605, 44.82732 ], [ 7.020876, 44.82092 ], [ 7.019277, 44.81397 ], [ 7.002506, 44.79243 ], [ 6.999398, 44.789676 ], [ 7.011426, 44.78368 ], [ 7.02342, 44.768208 ], [ 7.022398, 44.750747 ], [ 7.030783, 44.730601 ], [ 7.042603, 44.719289 ], [ 7.06478, 44.71176 ], [ 7.076003, 44.684672 ], [ 7.074445, 44.681304 ], [ 7.064807, 44.68011 ], [ 7.028777, 44.691127 ], [ 7.000216, 44.689342 ], [ 6.995415, 44.69024 ], [ 6.986232, 44.68833 ], [ 6.96794, 44.677479 ], [ 6.963184, 44.67811 ], [ 6.958268, 44.67234 ], [ 6.957566, 44.662355 ], [ 6.950626, 44.657772 ], [ 6.948335, 44.654816 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "6", "CODE_DEPT": "06", "NOM_DEPT": "ALPES-MARITIMES", "CODE_CHF": "088", "NOM_CHF": "NICE", "X_CHF_LIEU": "10439", "Y_CHF_LIEU": "62985", "X_CENTROID": "10303", "Y_CENTROID": "63240", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.933726, 43.48007 ], [ 6.929232, 43.48092 ], [ 6.915656, 43.48302 ], [ 6.912292, 43.492654 ], [ 6.903919, 43.495072 ], [ 6.899554, 43.496022 ], [ 6.88423, 43.502536 ], [ 6.895211, 43.521932 ], [ 6.890768, 43.527623 ], [ 6.881414, 43.529345 ], [ 6.879135, 43.532454 ], [ 6.880004, 43.53578 ], [ 6.88712, 43.551823 ], [ 6.901986, 43.564253 ], [ 6.906637, 43.56415 ], [ 6.907831, 43.570943 ], [ 6.90031, 43.58315 ], [ 6.911991, 43.59833 ], [ 6.907869, 43.59934 ], [ 6.89447, 43.61102 ], [ 6.890741, 43.60961 ], [ 6.883712, 43.6065 ], [ 6.878763, 43.60666 ], [ 6.864765, 43.605159 ], [ 6.856823, 43.60836 ], [ 6.853158, 43.6064 ], [ 6.838665, 43.6138 ], [ 6.838426, 43.61688 ], [ 6.824612, 43.623192 ], [ 6.813587, 43.6297 ], [ 6.799868, 43.628348 ], [ 6.789749, 43.643367 ], [ 6.787139, 43.646097 ], [ 6.775052, 43.6596 ], [ 6.766017, 43.66051 ], [ 6.761134, 43.665891 ], [ 6.763489, 43.683024 ], [ 6.767122, 43.68957 ], [ 6.774704, 43.693851 ], [ 6.773193, 43.69711 ], [ 6.766196, 43.72003 ], [ 6.75727, 43.727858 ], [ 6.754162, 43.737857 ], [ 6.712452, 43.740342 ], [ 6.713283, 43.743764 ], [ 6.700874, 43.75383 ], [ 6.682462, 43.757585 ], [ 6.657423, 43.74872 ], [ 6.656379, 43.752203 ], [ 6.651067, 43.76575 ], [ 6.64185, 43.768184 ], [ 6.64192, 43.771434 ], [ 6.645036, 43.77722 ], [ 6.637802, 43.78096 ], [ 6.636148, 43.78622 ], [ 6.636396, 43.788951 ], [ 6.636039, 43.79018 ], [ 6.642116, 43.795191 ], [ 6.706107, 43.808492 ], [ 6.70983, 43.81066 ], [ 6.711365, 43.813989 ], [ 6.700319, 43.824779 ], [ 6.667906, 43.830613 ], [ 6.680239, 43.85206 ], [ 6.698235, 43.85543 ], [ 6.702826, 43.855963 ], [ 6.698749, 43.857796 ], [ 6.696172, 43.87492 ], [ 6.67836, 43.87912 ], [ 6.672533, 43.884384 ], [ 6.671631, 43.88779 ], [ 6.71217, 43.88076 ], [ 6.716515, 43.879579 ], [ 6.748081, 43.871859 ], [ 6.777189, 43.882261 ], [ 6.781622, 43.883558 ], [ 6.801479, 43.910303 ], [ 6.82787, 43.91728 ], [ 6.832406, 43.9182 ], [ 6.835947, 43.91543 ], [ 6.849883, 43.913976 ], [ 6.855097, 43.90832 ], [ 6.875061, 43.89931 ], [ 6.883435, 43.890893 ], [ 6.892593, 43.889981 ], [ 6.914201, 43.893316 ], [ 6.918679, 43.89357 ], [ 6.937585, 43.896331 ], [ 6.942272, 43.897261 ], [ 6.943245, 43.9007 ], [ 6.912989, 43.927059 ], [ 6.899665, 43.926743 ], [ 6.895139, 43.92782 ], [ 6.891724, 43.930225 ], [ 6.881883, 43.93786 ], [ 6.87181, 43.953306 ], [ 6.84775, 43.954787 ], [ 6.847274, 43.961769 ], [ 6.848069, 43.965228 ], [ 6.845487, 43.977627 ], [ 6.837536, 43.980736 ], [ 6.834713, 43.983286 ], [ 6.836197, 43.9866 ], [ 6.838085, 43.98982 ], [ 6.798087, 44.00536 ], [ 6.795562, 44.00811 ], [ 6.788985, 44.021282 ], [ 6.771137, 44.0265 ], [ 6.745687, 44.042831 ], [ 6.747684, 44.063477 ], [ 6.75423, 44.076525 ], [ 6.756483, 44.079593 ], [ 6.752843, 44.081069 ], [ 6.749821, 44.08661 ], [ 6.746524, 44.089134 ], [ 6.740733, 44.098594 ], [ 6.724109, 44.11108 ], [ 6.722172, 44.1134 ], [ 6.719091, 44.118299 ], [ 6.707956, 44.124389 ], [ 6.704946, 44.1448 ], [ 6.687238, 44.168302 ], [ 6.697893, 44.175053 ], [ 6.701235, 44.17753 ], [ 6.702002, 44.180852 ], [ 6.698476, 44.19015 ], [ 6.717369, 44.20864 ], [ 6.714075, 44.21823 ], [ 6.723518, 44.226169 ], [ 6.724371, 44.250425 ], [ 6.728285, 44.252563 ], [ 6.737559, 44.25327 ], [ 6.743444, 44.258662 ], [ 6.756922, 44.262247 ], [ 6.763087, 44.278428 ], [ 6.785844, 44.27359 ], [ 6.790339, 44.272345 ], [ 6.786444, 44.288764 ], [ 6.796041, 44.30018 ], [ 6.795043, 44.31358 ], [ 6.796834, 44.3167 ], [ 6.804542, 44.320824 ], [ 6.809948, 44.330289 ], [ 6.823444, 44.3338 ], [ 6.84091, 44.345667 ], [ 6.859328, 44.344283 ], [ 6.862963, 44.346571 ], [ 6.868985, 44.35052 ], [ 6.87154, 44.352803 ], [ 6.88343, 44.358954 ], [ 6.887431, 44.36106 ], [ 6.906448, 44.357571 ], [ 6.918807, 44.35191 ], [ 6.929163, 44.332446 ], [ 6.95721, 44.31279 ], [ 6.960882, 44.295842 ], [ 6.973696, 44.28602 ], [ 6.991838, 44.28138 ], [ 6.995891, 44.274989 ], [ 6.998108, 44.250394 ], [ 7.007013, 44.23783 ], [ 7.014605, 44.23333 ], [ 7.019263, 44.2322 ], [ 7.023877, 44.233446 ], [ 7.038886, 44.224882 ], [ 7.076443, 44.231758 ], [ 7.095704, 44.22126 ], [ 7.11845, 44.21467 ], [ 7.141896, 44.201771 ], [ 7.160278, 44.205726 ], [ 7.177321, 44.19911 ], [ 7.187029, 44.200264 ], [ 7.193171, 44.19063 ], [ 7.193611, 44.187096 ], [ 7.202643, 44.18473 ], [ 7.221238, 44.169144 ], [ 7.233962, 44.172845 ], [ 7.242278, 44.170847 ], [ 7.249911, 44.15804 ], [ 7.257824, 44.154037 ], [ 7.262782, 44.14803 ], [ 7.28433, 44.1421 ], [ 7.292969, 44.144941 ], [ 7.34094, 44.145115 ], [ 7.35898, 44.11706 ], [ 7.368716, 44.117075 ], [ 7.381562, 44.12205 ], [ 7.385892, 44.123672 ], [ 7.411486, 44.11903 ], [ 7.42229, 44.112653 ], [ 7.426949, 44.112879 ], [ 7.426468, 44.11988 ], [ 7.432788, 44.129347 ], [ 7.462122, 44.12739 ], [ 7.501021, 44.14222 ], [ 7.519584, 44.138565 ], [ 7.535212, 44.1463 ], [ 7.554766, 44.14704 ], [ 7.567088, 44.152823 ], [ 7.616041, 44.14977 ], [ 7.627419, 44.160624 ], [ 7.627821, 44.16417 ], [ 7.633196, 44.17356 ], [ 7.640993, 44.177442 ], [ 7.679923, 44.175967 ], [ 7.682914, 44.17 ], [ 7.671472, 44.15488 ], [ 7.678015, 44.14553 ], [ 7.676647, 44.14214 ], [ 7.668199, 44.13395 ], [ 7.67231, 44.12092 ], [ 7.674513, 44.11789 ], [ 7.689477, 44.108728 ], [ 7.698646, 44.09613 ], [ 7.713126, 44.086668 ], [ 7.716127, 44.080029 ], [ 7.712934, 44.062485 ], [ 7.701635, 44.043028 ], [ 7.663268, 44.028605 ], [ 7.661918, 44.018078 ], [ 7.662843, 44.014576 ], [ 7.668848, 43.99761 ], [ 7.652745, 43.976015 ], [ 7.616328, 43.958132 ], [ 7.59239, 43.955644 ], [ 7.576588, 43.94736 ], [ 7.571658, 43.94719 ], [ 7.570632, 43.93097 ], [ 7.558693, 43.916454 ], [ 7.561345, 43.89957 ], [ 7.510237, 43.882123 ], [ 7.509049, 43.878756 ], [ 7.506022, 43.876249 ], [ 7.4989, 43.87237 ], [ 7.499875, 43.86593 ], [ 7.496124, 43.86402 ], [ 7.496644, 43.85087 ], [ 7.507622, 43.839884 ], [ 7.517763, 43.805933 ], [ 7.518724, 43.802513 ], [ 7.530113, 43.787465 ], [ 7.529827, 43.78402 ], [ 7.512339, 43.78028 ], [ 7.507705, 43.774217 ], [ 7.488275, 43.765024 ], [ 7.482765, 43.749947 ], [ 7.458175, 43.75924 ], [ 7.439239, 43.749028 ], [ 7.437353, 43.751637 ], [ 7.433472, 43.749524 ], [ 7.424976, 43.741272 ], [ 7.413384, 43.73459 ], [ 7.412827, 43.731725 ], [ 7.409527, 43.72987 ], [ 7.412456, 43.72771 ], [ 7.415621, 43.725736 ], [ 7.404472, 43.71991 ], [ 7.390464, 43.719698 ], [ 7.383267, 43.72258 ], [ 7.370628, 43.718667 ], [ 7.357745, 43.721302 ], [ 7.348299, 43.71407 ], [ 7.342718, 43.713558 ], [ 7.329392, 43.701473 ], [ 7.341389, 43.684584 ], [ 7.327545, 43.677214 ], [ 7.322208, 43.68646 ], [ 7.323925, 43.69915 ], [ 7.320644, 43.701595 ], [ 7.319556, 43.70463 ], [ 7.312528, 43.703846 ], [ 7.308745, 43.692371 ], [ 7.307765, 43.68892 ], [ 7.300207, 43.685842 ], [ 7.285764, 43.69446 ], [ 7.261628, 43.693895 ], [ 7.247779, 43.690688 ], [ 7.233471, 43.681424 ], [ 7.225992, 43.661179 ], [ 7.209623, 43.64821 ], [ 7.205321, 43.646572 ], [ 7.201811, 43.65184 ], [ 7.199251, 43.65484 ], [ 7.196084, 43.65717 ], [ 7.178242, 43.65605 ], [ 7.173519, 43.65578 ], [ 7.164555, 43.656252 ], [ 7.156281, 43.6527 ], [ 7.145494, 43.641853 ], [ 7.142434, 43.639348 ], [ 7.130087, 43.6178 ], [ 7.126081, 43.586613 ], [ 7.12939, 43.572846 ], [ 7.138079, 43.5648 ], [ 7.1406, 43.551138 ], [ 7.138438, 43.54796 ], [ 7.129338, 43.54492 ], [ 7.120636, 43.546024 ], [ 7.120759, 43.55619 ], [ 7.114054, 43.56566 ], [ 7.101148, 43.57057 ], [ 7.091386, 43.57027 ], [ 7.086497, 43.569821 ], [ 7.074314, 43.565423 ], [ 7.057797, 43.55033 ], [ 7.039733, 43.539364 ], [ 7.035501, 43.53924 ], [ 7.030984, 43.545447 ], [ 7.02243, 43.548872 ], [ 6.993726, 43.54861 ], [ 6.970386, 43.544772 ], [ 6.954819, 43.53669 ], [ 6.951571, 43.534117 ], [ 6.938369, 43.516392 ], [ 6.938894, 43.50961 ], [ 6.951501, 43.50523 ], [ 6.954791, 43.49926 ], [ 6.946847, 43.486851 ], [ 6.933847, 43.48346 ], [ 6.933726, 43.48007 ] ] ], [ [ [ 7.067113, 43.513656 ], [ 7.063221, 43.515513 ], [ 7.044329, 43.515833 ], [ 7.034934, 43.51797 ], [ 7.032544, 43.520947 ], [ 7.045842, 43.52378 ], [ 7.063964, 43.51953 ], [ 7.069581, 43.516518 ], [ 7.067814, 43.51533 ], [ 7.067113, 43.513656 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "7", "CODE_DEPT": "07", "NOM_DEPT": "ARDECHE", "CODE_CHF": "186", "NOM_CHF": "PRIVAS", "X_CHF_LIEU": "8266", "Y_CHF_LIEU": "64052", "X_CENTROID": "8127", "Y_CENTROID": "64068", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.649224, 44.27036 ], [ 4.641729, 44.2742 ], [ 4.637028, 44.283669 ], [ 4.632679, 44.284994 ], [ 4.620478, 44.279944 ], [ 4.616625, 44.277993 ], [ 4.609125, 44.289249 ], [ 4.605465, 44.29104 ], [ 4.602332, 44.29192 ], [ 4.59898, 44.291756 ], [ 4.574274, 44.30075 ], [ 4.569998, 44.299349 ], [ 4.557168, 44.304168 ], [ 4.545631, 44.319708 ], [ 4.547749, 44.322874 ], [ 4.54911, 44.324512 ], [ 4.531152, 44.3241 ], [ 4.524167, 44.328768 ], [ 4.514731, 44.329114 ], [ 4.512014, 44.3354 ], [ 4.506097, 44.340252 ], [ 4.48291, 44.3382 ], [ 4.464761, 44.341675 ], [ 4.459866, 44.341596 ], [ 4.451068, 44.334096 ], [ 4.450793, 44.330705 ], [ 4.448757, 44.29671 ], [ 4.453212, 44.29787 ], [ 4.450048, 44.295226 ], [ 4.440422, 44.28342 ], [ 4.435608, 44.283324 ], [ 4.431983, 44.28968 ], [ 4.40357, 44.288177 ], [ 4.393313, 44.2946 ], [ 4.391594, 44.304759 ], [ 4.400063, 44.324818 ], [ 4.40145, 44.328167 ], [ 4.402347, 44.335007 ], [ 4.391868, 44.346573 ], [ 4.38705, 44.347057 ], [ 4.38381, 44.344352 ], [ 4.370171, 44.34014 ], [ 4.325771, 44.33832 ], [ 4.329257, 44.33238 ], [ 4.318098, 44.32175 ], [ 4.306334, 44.31627 ], [ 4.288375, 44.315019 ], [ 4.289584, 44.29542 ], [ 4.288996, 44.292146 ], [ 4.286338, 44.289386 ], [ 4.273773, 44.271752 ], [ 4.258901, 44.264425 ], [ 4.245138, 44.26807 ], [ 4.238182, 44.273095 ], [ 4.234052, 44.27506 ], [ 4.230778, 44.277176 ], [ 4.216384, 44.289039 ], [ 4.212951, 44.29144 ], [ 4.186579, 44.299735 ], [ 4.183913, 44.30232 ], [ 4.177991, 44.31774 ], [ 4.173247, 44.317577 ], [ 4.161701, 44.31215 ], [ 4.142868, 44.313351 ], [ 4.141665, 44.323959 ], [ 4.126752, 44.337734 ], [ 4.113525, 44.32913 ], [ 4.10942, 44.330843 ], [ 4.106628, 44.332356 ], [ 4.103861, 44.333906 ], [ 4.073842, 44.329026 ], [ 4.060144, 44.32017 ], [ 4.055621, 44.319021 ], [ 4.051452, 44.317324 ], [ 4.048059, 44.31895 ], [ 4.038705, 44.327887 ], [ 4.035706, 44.329851 ], [ 4.047919, 44.334444 ], [ 4.053047, 44.33975 ], [ 4.05116, 44.34621 ], [ 4.053677, 44.358794 ], [ 4.056718, 44.36102 ], [ 4.05298, 44.3787 ], [ 4.046711, 44.38246 ], [ 4.043749, 44.384554 ], [ 4.042393, 44.39407 ], [ 4.059453, 44.393911 ], [ 4.06844, 44.40506 ], [ 4.054795, 44.41479 ], [ 4.037813, 44.420918 ], [ 4.045419, 44.43349 ], [ 4.037103, 44.445952 ], [ 4.023876, 44.446301 ], [ 4.01666, 44.450365 ], [ 4.015082, 44.45348 ], [ 4.002603, 44.458515 ], [ 3.998163, 44.4598 ], [ 3.987125, 44.47487 ], [ 3.986789, 44.50243 ], [ 3.980284, 44.51542 ], [ 3.97579, 44.516742 ], [ 3.978998, 44.52176 ], [ 3.967657, 44.534856 ], [ 3.965692, 44.537682 ], [ 3.964955, 44.541002 ], [ 3.960906, 44.55381 ], [ 3.95849, 44.55689 ], [ 3.948774, 44.572887 ], [ 3.944441, 44.57366 ], [ 3.923567, 44.571885 ], [ 3.921627, 44.574962 ], [ 3.916821, 44.58071 ], [ 3.918466, 44.587368 ], [ 3.90654, 44.59237 ], [ 3.90533, 44.595462 ], [ 3.908084, 44.6077 ], [ 3.906662, 44.61096 ], [ 3.89414, 44.61529 ], [ 3.894403, 44.639018 ], [ 3.895766, 44.642293 ], [ 3.894778, 44.649963 ], [ 3.885373, 44.657457 ], [ 3.871647, 44.679336 ], [ 3.881767, 44.690573 ], [ 3.884563, 44.69344 ], [ 3.883529, 44.696718 ], [ 3.869648, 44.69696 ], [ 3.869246, 44.700396 ], [ 3.870008, 44.707206 ], [ 3.8631, 44.71202 ], [ 3.863763, 44.722326 ], [ 3.877097, 44.73599 ], [ 3.862527, 44.74387 ], [ 3.872496, 44.75531 ], [ 3.89572, 44.752874 ], [ 3.900111, 44.7628 ], [ 3.908988, 44.765461 ], [ 3.913657, 44.76654 ], [ 3.921789, 44.76768 ], [ 3.924918, 44.769624 ], [ 3.924334, 44.770979 ], [ 3.918029, 44.778856 ], [ 3.936818, 44.798093 ], [ 3.944475, 44.821015 ], [ 3.945543, 44.824346 ], [ 3.958782, 44.82839 ], [ 3.963183, 44.829759 ], [ 3.96732, 44.820179 ], [ 3.978357, 44.813905 ], [ 3.981885, 44.81168 ], [ 3.987154, 44.816384 ], [ 3.981451, 44.825961 ], [ 3.98493, 44.83169 ], [ 3.989593, 44.83134 ], [ 3.998603, 44.823575 ], [ 4.009087, 44.834627 ], [ 4.016413, 44.83039 ], [ 4.025664, 44.831837 ], [ 4.028587, 44.834619 ], [ 4.023795, 44.84387 ], [ 4.020047, 44.84586 ], [ 4.025204, 44.851002 ], [ 4.028196, 44.86301 ], [ 4.028735, 44.86617 ], [ 4.03891, 44.87276 ], [ 4.072916, 44.86977 ], [ 4.077563, 44.86981 ], [ 4.084478, 44.869194 ], [ 4.087906, 44.87033 ], [ 4.113166, 44.87856 ], [ 4.117944, 44.87811 ], [ 4.136896, 44.87405 ], [ 4.156637, 44.87398 ], [ 4.16616, 44.88194 ], [ 4.179479, 44.886514 ], [ 4.183014, 44.905224 ], [ 4.188048, 44.91019 ], [ 4.191688, 44.912136 ], [ 4.190046, 44.91419 ], [ 4.213073, 44.93121 ], [ 4.216572, 44.933577 ], [ 4.223854, 44.96288 ], [ 4.231819, 44.96574 ], [ 4.235239, 44.967805 ], [ 4.256587, 44.959876 ], [ 4.27942, 44.966702 ], [ 4.294225, 44.966801 ], [ 4.297662, 44.96895 ], [ 4.314365, 44.973166 ], [ 4.313234, 44.979581 ], [ 4.30998, 44.98093 ], [ 4.307317, 44.98588 ], [ 4.292148, 44.993912 ], [ 4.291981, 45.00429 ], [ 4.297425, 45.01353 ], [ 4.299684, 45.020038 ], [ 4.318086, 45.029934 ], [ 4.351543, 45.02766 ], [ 4.35376, 45.030569 ], [ 4.365133, 45.03556 ], [ 4.379068, 45.03617 ], [ 4.381644, 45.042797 ], [ 4.37873, 45.05286 ], [ 4.370244, 45.056005 ], [ 4.360713, 45.055392 ], [ 4.347737, 45.06525 ], [ 4.346372, 45.07504 ], [ 4.354941, 45.077282 ], [ 4.358616, 45.086252 ], [ 4.362829, 45.08751 ], [ 4.359232, 45.09957 ], [ 4.363868, 45.10042 ], [ 4.371468, 45.104384 ], [ 4.384585, 45.10107 ], [ 4.38784, 45.103623 ], [ 4.399854, 45.1081 ], [ 4.397573, 45.118082 ], [ 4.37257, 45.12807 ], [ 4.376559, 45.14436 ], [ 4.380955, 45.143558 ], [ 4.397828, 45.139484 ], [ 4.411159, 45.14083 ], [ 4.429495, 45.130393 ], [ 4.427843, 45.11751 ], [ 4.436425, 45.109456 ], [ 4.439755, 45.10989 ], [ 4.442014, 45.11169 ], [ 4.438931, 45.12036 ], [ 4.452662, 45.119125 ], [ 4.457286, 45.11889 ], [ 4.457564, 45.12224 ], [ 4.448414, 45.12946 ], [ 4.443565, 45.14218 ], [ 4.443347, 45.14558 ], [ 4.448111, 45.16196 ], [ 4.458157, 45.168872 ], [ 4.459058, 45.172156 ], [ 4.472579, 45.17989 ], [ 4.480555, 45.195459 ], [ 4.478555, 45.198314 ], [ 4.476933, 45.210673 ], [ 4.481328, 45.215919 ], [ 4.488918, 45.22342 ], [ 4.483135, 45.236446 ], [ 4.490899, 45.232209 ], [ 4.505973, 45.233025 ], [ 4.517747, 45.24179 ], [ 4.535936, 45.23662 ], [ 4.546242, 45.243778 ], [ 4.560654, 45.24717 ], [ 4.584802, 45.244075 ], [ 4.588302, 45.246547 ], [ 4.605227, 45.253429 ], [ 4.605305, 45.26367 ], [ 4.602945, 45.265422 ], [ 4.598493, 45.26897 ], [ 4.593657, 45.26978 ], [ 4.591348, 45.272883 ], [ 4.598597, 45.28949 ], [ 4.602724, 45.291 ], [ 4.611889, 45.292024 ], [ 4.621508, 45.29154 ], [ 4.622791, 45.294838 ], [ 4.616857, 45.3001 ], [ 4.61595, 45.3102 ], [ 4.633844, 45.314942 ], [ 4.640382, 45.31719 ], [ 4.643177, 45.318903 ], [ 4.640204, 45.32373 ], [ 4.638553, 45.32619 ], [ 4.675294, 45.34429 ], [ 4.679737, 45.345938 ], [ 4.698023, 45.344986 ], [ 4.701388, 45.34686 ], [ 4.70331, 45.349563 ], [ 4.718831, 45.354162 ], [ 4.723111, 45.354601 ], [ 4.725367, 45.361429 ], [ 4.751443, 45.365906 ], [ 4.755997, 45.365681 ], [ 4.7698, 45.356962 ], [ 4.772551, 45.354297 ], [ 4.773748, 45.34815 ], [ 4.761683, 45.341472 ], [ 4.761049, 45.338384 ], [ 4.760834, 45.33641 ], [ 4.762214, 45.32355 ], [ 4.777746, 45.311739 ], [ 4.781541, 45.309877 ], [ 4.797706, 45.29977 ], [ 4.800462, 45.29737 ], [ 4.808896, 45.29065 ], [ 4.809489, 45.28769 ], [ 4.809775, 45.272533 ], [ 4.809613, 45.2695 ], [ 4.809987, 45.266477 ], [ 4.809896, 45.261326 ], [ 4.808846, 45.258849 ], [ 4.8016, 45.24574 ], [ 4.802319, 45.228133 ], [ 4.803559, 45.224709 ], [ 4.810324, 45.20813 ], [ 4.812208, 45.204953 ], [ 4.805502, 45.196928 ], [ 4.806769, 45.1908 ], [ 4.812187, 45.18153 ], [ 4.810241, 45.17493 ], [ 4.809691, 45.168175 ], [ 4.819523, 45.161233 ], [ 4.824192, 45.160364 ], [ 4.826971, 45.15852 ], [ 4.828713, 45.156129 ], [ 4.828575, 45.15424 ], [ 4.805542, 45.134369 ], [ 4.804132, 45.13127 ], [ 4.803833, 45.12912 ], [ 4.804038, 45.122468 ], [ 4.812375, 45.11434 ], [ 4.814787, 45.111459 ], [ 4.821322, 45.106309 ], [ 4.825024, 45.10399 ], [ 4.827935, 45.101238 ], [ 4.829597, 45.098 ], [ 4.831643, 45.08748 ], [ 4.830462, 45.08402 ], [ 4.827816, 45.07855 ], [ 4.829155, 45.072848 ], [ 4.835642, 45.068347 ], [ 4.853039, 45.06404 ], [ 4.858913, 45.059161 ], [ 4.859747, 45.05594 ], [ 4.856465, 45.0501 ], [ 4.853914, 45.047509 ], [ 4.84455, 45.040541 ], [ 4.841948, 45.03791 ], [ 4.844111, 45.023373 ], [ 4.845408, 45.019956 ], [ 4.836708, 45.00751 ], [ 4.838684, 45.00426 ], [ 4.842493, 45.001983 ], [ 4.851868, 44.99372 ], [ 4.852189, 44.98308 ], [ 4.852566, 44.979535 ], [ 4.853083, 44.9779 ], [ 4.86049, 44.965551 ], [ 4.870828, 44.95867 ], [ 4.874277, 44.956367 ], [ 4.879216, 44.94744 ], [ 4.881366, 44.944603 ], [ 4.885877, 44.939591 ], [ 4.886589, 44.936652 ], [ 4.872362, 44.919916 ], [ 4.871343, 44.91673 ], [ 4.868911, 44.909923 ], [ 4.855085, 44.90001 ], [ 4.854324, 44.896523 ], [ 4.861281, 44.87822 ], [ 4.859694, 44.872001 ], [ 4.856764, 44.86955 ], [ 4.853417, 44.867152 ], [ 4.849984, 44.8648 ], [ 4.84757, 44.861873 ], [ 4.844119, 44.84547 ], [ 4.837147, 44.84131 ], [ 4.832487, 44.84087 ], [ 4.823316, 44.83949 ], [ 4.820281, 44.830192 ], [ 4.822499, 44.82055 ], [ 4.821485, 44.817384 ], [ 4.812834, 44.81553 ], [ 4.808382, 44.81478 ], [ 4.80015, 44.809 ], [ 4.80099, 44.805984 ], [ 4.797232, 44.803983 ], [ 4.795535, 44.79404 ], [ 4.783647, 44.78407 ], [ 4.770658, 44.780375 ], [ 4.766536, 44.778766 ], [ 4.761772, 44.7736 ], [ 4.76104, 44.77122 ], [ 4.762367, 44.76799 ], [ 4.769321, 44.759585 ], [ 4.759507, 44.74848 ], [ 4.76416, 44.73204 ], [ 4.764027, 44.729024 ], [ 4.76422, 44.71503 ], [ 4.771968, 44.706 ], [ 4.781209, 44.682373 ], [ 4.78159, 44.67885 ], [ 4.77792, 44.657761 ], [ 4.779073, 44.654699 ], [ 4.772902, 44.64263 ], [ 4.760718, 44.63335 ], [ 4.758089, 44.630739 ], [ 4.754218, 44.62183 ], [ 4.752426, 44.61893 ], [ 4.742368, 44.605171 ], [ 4.740405, 44.602392 ], [ 4.744202, 44.60089 ], [ 4.741139, 44.591872 ], [ 4.741169, 44.58877 ], [ 4.737462, 44.586672 ], [ 4.732864, 44.585888 ], [ 4.728619, 44.584685 ], [ 4.710872, 44.581999 ], [ 4.706404, 44.576314 ], [ 4.705961, 44.56665 ], [ 4.695739, 44.56307 ], [ 4.6925, 44.54623 ], [ 4.703415, 44.535714 ], [ 4.707933, 44.53442 ], [ 4.704551, 44.52789 ], [ 4.703129, 44.52456 ], [ 4.693101, 44.516703 ], [ 4.687882, 44.502934 ], [ 4.689415, 44.492349 ], [ 4.699537, 44.480083 ], [ 4.700103, 44.472952 ], [ 4.70041, 44.46939 ], [ 4.695289, 44.4458 ], [ 4.689287, 44.44051 ], [ 4.68026, 44.43827 ], [ 4.675978, 44.4367 ], [ 4.663053, 44.40702 ], [ 4.663338, 44.404317 ], [ 4.664373, 44.398944 ], [ 4.663492, 44.39545 ], [ 4.649064, 44.373073 ], [ 4.646837, 44.34828 ], [ 4.64959, 44.334233 ], [ 4.650615, 44.329806 ], [ 4.651542, 44.32632 ], [ 4.653181, 44.294807 ], [ 4.652364, 44.29127 ], [ 4.649224, 44.27036 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "8", "CODE_DEPT": "08", "NOM_DEPT": "ARDENNES", "CODE_CHF": "105", "NOM_CHF": "CHARLEVILLE-MEZIERES", "X_CHF_LIEU": "8239", "Y_CHF_LIEU": "69649", "X_CENTROID": "8186", "Y_CENTROID": "69475", "CODE_REG": "21", "NOM_REGION": "CHAMPAGNE-ARDENNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.950989, 49.236866 ], [ 4.95054, 49.240245 ], [ 4.923869, 49.250602 ], [ 4.933761, 49.261648 ], [ 4.924466, 49.261473 ], [ 4.913375, 49.26472 ], [ 4.908641, 49.26341 ], [ 4.889711, 49.258614 ], [ 4.876159, 49.26302 ], [ 4.882243, 49.25765 ], [ 4.861837, 49.23885 ], [ 4.867323, 49.2299 ], [ 4.866461, 49.22658 ], [ 4.827131, 49.235308 ], [ 4.827381, 49.2381 ], [ 4.82985, 49.243073 ], [ 4.820229, 49.24209 ], [ 4.812108, 49.249401 ], [ 4.806997, 49.2486 ], [ 4.789425, 49.241719 ], [ 4.76425, 49.24452 ], [ 4.744232, 49.24147 ], [ 4.74352, 49.2444 ], [ 4.729119, 49.251555 ], [ 4.72578, 49.253167 ], [ 4.718233, 49.25093 ], [ 4.713246, 49.25049 ], [ 4.703328, 49.25132 ], [ 4.703917, 49.254593 ], [ 4.690096, 49.257485 ], [ 4.685038, 49.256153 ], [ 4.670503, 49.24124 ], [ 4.636983, 49.23265 ], [ 4.619003, 49.23945 ], [ 4.618864, 49.24642 ], [ 4.611822, 49.2558 ], [ 4.611629, 49.25929 ], [ 4.606824, 49.26868 ], [ 4.597212, 49.27112 ], [ 4.591669, 49.280287 ], [ 4.596327, 49.286051 ], [ 4.599907, 49.28849 ], [ 4.577908, 49.295483 ], [ 4.557759, 49.29471 ], [ 4.552575, 49.293752 ], [ 4.53667, 49.28451 ], [ 4.515835, 49.2813 ], [ 4.492719, 49.28083 ], [ 4.48384, 49.28078 ], [ 4.479014, 49.27976 ], [ 4.454543, 49.27601 ], [ 4.45071, 49.274601 ], [ 4.446787, 49.272868 ], [ 4.444511, 49.27601 ], [ 4.408668, 49.286913 ], [ 4.408451, 49.28806 ], [ 4.406725, 49.291287 ], [ 4.396755, 49.29316 ], [ 4.390817, 49.2988 ], [ 4.375619, 49.3238 ], [ 4.371273, 49.32279 ], [ 4.36261, 49.32078 ], [ 4.359348, 49.31965 ], [ 4.353711, 49.316546 ], [ 4.348607, 49.317016 ], [ 4.333585, 49.32643 ], [ 4.308294, 49.326603 ], [ 4.307812, 49.32656 ], [ 4.305355, 49.329494 ], [ 4.290316, 49.346916 ], [ 4.291196, 49.350764 ], [ 4.294051, 49.35267 ], [ 4.27362, 49.35507 ], [ 4.258585, 49.36495 ], [ 4.247956, 49.3808 ], [ 4.242934, 49.38037 ], [ 4.240809, 49.38247 ], [ 4.235997, 49.38164 ], [ 4.213672, 49.38787 ], [ 4.20951, 49.386561 ], [ 4.201308, 49.383793 ], [ 4.198871, 49.38678 ], [ 4.188997, 49.3987 ], [ 4.191434, 49.40104 ], [ 4.167348, 49.40188 ], [ 4.162354, 49.40155 ], [ 4.14317, 49.404196 ], [ 4.13863, 49.40321 ], [ 4.115034, 49.401933 ], [ 4.110667, 49.40193 ], [ 4.106287, 49.401932 ], [ 4.085314, 49.401538 ], [ 4.07891, 49.401586 ], [ 4.074305, 49.40338 ], [ 4.047973, 49.40564 ], [ 4.04913, 49.40901 ], [ 4.04326, 49.4246 ], [ 4.0394, 49.43544 ], [ 4.037579, 49.43808 ], [ 4.047178, 49.445173 ], [ 4.056813, 49.445737 ], [ 4.06141, 49.44673 ], [ 4.066154, 49.44545 ], [ 4.042112, 49.47073 ], [ 4.041379, 49.477403 ], [ 4.041419, 49.48075 ], [ 4.041527, 49.484044 ], [ 4.040928, 49.492651 ], [ 4.040766, 49.495519 ], [ 4.040423, 49.505176 ], [ 4.04086, 49.508381 ], [ 4.056108, 49.508824 ], [ 4.060243, 49.521254 ], [ 4.074145, 49.51859 ], [ 4.075097, 49.521852 ], [ 4.075648, 49.53896 ], [ 4.067545, 49.54314 ], [ 4.051908, 49.545073 ], [ 4.050439, 49.55159 ], [ 4.059686, 49.5545 ], [ 4.07677, 49.570721 ], [ 4.062671, 49.57459 ], [ 4.060391, 49.587978 ], [ 4.064445, 49.594161 ], [ 4.060605, 49.59637 ], [ 4.047558, 49.60065 ], [ 4.031525, 49.61411 ], [ 4.026316, 49.619905 ], [ 4.038598, 49.62526 ], [ 4.042341, 49.63791 ], [ 4.047514, 49.63781 ], [ 4.050555, 49.634931 ], [ 4.071483, 49.63594 ], [ 4.095983, 49.629173 ], [ 4.110419, 49.63265 ], [ 4.11569, 49.63326 ], [ 4.11724, 49.641526 ], [ 4.124871, 49.650613 ], [ 4.122702, 49.660923 ], [ 4.126474, 49.6782 ], [ 4.146699, 49.67785 ], [ 4.146816, 49.689266 ], [ 4.151058, 49.690646 ], [ 4.160116, 49.69305 ], [ 4.164831, 49.693894 ], [ 4.179917, 49.698062 ], [ 4.185269, 49.698872 ], [ 4.184381, 49.70123 ], [ 4.192459, 49.71254 ], [ 4.191381, 49.715644 ], [ 4.202292, 49.72051 ], [ 4.205171, 49.722706 ], [ 4.220371, 49.72599 ], [ 4.225406, 49.72728 ], [ 4.227618, 49.731073 ], [ 4.226128, 49.73424 ], [ 4.230539, 49.74703 ], [ 4.246879, 49.75574 ], [ 4.242039, 49.765469 ], [ 4.224503, 49.77294 ], [ 4.214263, 49.77118 ], [ 4.212018, 49.774218 ], [ 4.206332, 49.77962 ], [ 4.209942, 49.78205 ], [ 4.224917, 49.79022 ], [ 4.227042, 49.79319 ], [ 4.219523, 49.805 ], [ 4.214774, 49.806115 ], [ 4.225337, 49.83498 ], [ 4.23017, 49.836088 ], [ 4.233752, 49.84863 ], [ 4.246034, 49.85426 ], [ 4.249004, 49.85696 ], [ 4.249554, 49.86011 ], [ 4.250089, 49.86324 ], [ 4.251798, 49.8904 ], [ 4.255734, 49.903977 ], [ 4.24633, 49.90226 ], [ 4.236936, 49.90378 ], [ 4.233643, 49.90912 ], [ 4.222142, 49.910427 ], [ 4.217774, 49.91626 ], [ 4.220206, 49.93359 ], [ 4.232061, 49.952462 ], [ 4.232132, 49.95596 ], [ 4.233068, 49.957824 ], [ 4.258202, 49.96399 ], [ 4.290489, 49.964158 ], [ 4.310615, 49.968571 ], [ 4.319254, 49.96439 ], [ 4.335185, 49.96274 ], [ 4.346405, 49.95516 ], [ 4.349362, 49.95223 ], [ 4.380829, 49.95372 ], [ 4.393818, 49.94853 ], [ 4.399174, 49.9484 ], [ 4.419211, 49.94644 ], [ 4.442353, 49.93966 ], [ 4.445804, 49.937168 ], [ 4.479779, 49.947129 ], [ 4.506043, 49.94731 ], [ 4.511319, 49.94681 ], [ 4.524166, 49.95132 ], [ 4.540829, 49.96823 ], [ 4.566154, 49.97146 ], [ 4.57019, 49.97363 ], [ 4.574077, 49.97859 ], [ 4.576036, 49.98112 ], [ 4.595972, 49.98596 ], [ 4.633238, 49.987466 ], [ 4.668017, 49.99635 ], [ 4.689349, 49.995788 ], [ 4.694599, 49.9965 ], [ 4.687522, 50.00162 ], [ 4.685948, 50.00838 ], [ 4.688542, 50.011369 ], [ 4.686633, 50.02778 ], [ 4.690633, 50.033997 ], [ 4.698735, 50.05274 ], [ 4.697028, 50.059288 ], [ 4.686844, 50.0577 ], [ 4.681884, 50.06763 ], [ 4.700055, 50.092646 ], [ 4.708046, 50.09649 ], [ 4.713412, 50.097 ], [ 4.715218, 50.10004 ], [ 4.746798, 50.11031 ], [ 4.751346, 50.11174 ], [ 4.751018, 50.12128 ], [ 4.755962, 50.121637 ], [ 4.765173, 50.1374 ], [ 4.77468, 50.14029 ], [ 4.779678, 50.14134 ], [ 4.802541, 50.151064 ], [ 4.822807, 50.167643 ], [ 4.831696, 50.15511 ], [ 4.874876, 50.15339 ], [ 4.881309, 50.143999 ], [ 4.889952, 50.14037 ], [ 4.895353, 50.13977 ], [ 4.895656, 50.136278 ], [ 4.870796, 50.123112 ], [ 4.872435, 50.09217 ], [ 4.863495, 50.091701 ], [ 4.859797, 50.09827 ], [ 4.850133, 50.10018 ], [ 4.840234, 50.09293 ], [ 4.845305, 50.08378 ], [ 4.840481, 50.08279 ], [ 4.839155, 50.06971 ], [ 4.825639, 50.06646 ], [ 4.820781, 50.065266 ], [ 4.819235, 50.06066 ], [ 4.828004, 50.05693 ], [ 4.828101, 50.04993 ], [ 4.837236, 50.046343 ], [ 4.840269, 50.03996 ], [ 4.822588, 50.02692 ], [ 4.820603, 50.02365 ], [ 4.815688, 49.992624 ], [ 4.805954, 49.9842 ], [ 4.795587, 49.982219 ], [ 4.790553, 49.961898 ], [ 4.790917, 49.958398 ], [ 4.809008, 49.95447 ], [ 4.813847, 49.95427 ], [ 4.849231, 49.94654 ], [ 4.858426, 49.93371 ], [ 4.878692, 49.92192 ], [ 4.885178, 49.912163 ], [ 4.885605, 49.90865 ], [ 4.882877, 49.89845 ], [ 4.861937, 49.86978 ], [ 4.851545, 49.86271 ], [ 4.852398, 49.85211 ], [ 4.855107, 49.84902 ], [ 4.858624, 49.842551 ], [ 4.867279, 49.839085 ], [ 4.873641, 49.818974 ], [ 4.865474, 49.81021 ], [ 4.855102, 49.79457 ], [ 4.857954, 49.7917 ], [ 4.861739, 49.78928 ], [ 4.874959, 49.793198 ], [ 4.883825, 49.790428 ], [ 4.887263, 49.788047 ], [ 4.897637, 49.78892 ], [ 4.906258, 49.7856 ], [ 4.926346, 49.78751 ], [ 4.931438, 49.78671 ], [ 4.939628, 49.79256 ], [ 4.942985, 49.790677 ], [ 4.946674, 49.797143 ], [ 4.955675, 49.80054 ], [ 4.991472, 49.800221 ], [ 5.001782, 49.793672 ], [ 5.010732, 49.78156 ], [ 5.014912, 49.779507 ], [ 5.041812, 49.77053 ], [ 5.046834, 49.770141 ], [ 5.069026, 49.76163 ], [ 5.089717, 49.76479 ], [ 5.096602, 49.75978 ], [ 5.122393, 49.729993 ], [ 5.124874, 49.726947 ], [ 5.123263, 49.720549 ], [ 5.123073, 49.71731 ], [ 5.130784, 49.713047 ], [ 5.141008, 49.71225 ], [ 5.143643, 49.70931 ], [ 5.151701, 49.71767 ], [ 5.160857, 49.71519 ], [ 5.165421, 49.709362 ], [ 5.16475, 49.696115 ], [ 5.166208, 49.69292 ], [ 5.194929, 49.69315 ], [ 5.19966, 49.69232 ], [ 5.208661, 49.69444 ], [ 5.215667, 49.689176 ], [ 5.23114, 49.69036 ], [ 5.246232, 49.68694 ], [ 5.268384, 49.69595 ], [ 5.280511, 49.689138 ], [ 5.281175, 49.68569 ], [ 5.282209, 49.68557 ], [ 5.286558, 49.68182 ], [ 5.31556, 49.666299 ], [ 5.319152, 49.66367 ], [ 5.332622, 49.6535 ], [ 5.320584, 49.64726 ], [ 5.307345, 49.63304 ], [ 5.304913, 49.63006 ], [ 5.311374, 49.614354 ], [ 5.314977, 49.61203 ], [ 5.321965, 49.614188 ], [ 5.340104, 49.618129 ], [ 5.346857, 49.63084 ], [ 5.388626, 49.61831 ], [ 5.393537, 49.617088 ], [ 5.389677, 49.615617 ], [ 5.381689, 49.6057 ], [ 5.379728, 49.59563 ], [ 5.37203, 49.592166 ], [ 5.361514, 49.59206 ], [ 5.357528, 49.58989 ], [ 5.347645, 49.5897 ], [ 5.339981, 49.59419 ], [ 5.312228, 49.565143 ], [ 5.308171, 49.562847 ], [ 5.31177, 49.55929 ], [ 5.307404, 49.557781 ], [ 5.284348, 49.55242 ], [ 5.277031, 49.54416 ], [ 5.271867, 49.54457 ], [ 5.26271, 49.54182 ], [ 5.259298, 49.54436 ], [ 5.251771, 49.55671 ], [ 5.247139, 49.55762 ], [ 5.234681, 49.562235 ], [ 5.234775, 49.56567 ], [ 5.214137, 49.57301 ], [ 5.201334, 49.56814 ], [ 5.196319, 49.56755 ], [ 5.186928, 49.56969 ], [ 5.177683, 49.56715 ], [ 5.168633, 49.56366 ], [ 5.159887, 49.56669 ], [ 5.160299, 49.56957 ], [ 5.152895, 49.576623 ], [ 5.152668, 49.58011 ], [ 5.145609, 49.58919 ], [ 5.119715, 49.59268 ], [ 5.115037, 49.59093 ], [ 5.106024, 49.578524 ], [ 5.113352, 49.5621 ], [ 5.112148, 49.5597 ], [ 5.108388, 49.555298 ], [ 5.104178, 49.55609 ], [ 5.09608, 49.55779 ], [ 5.095677, 49.554358 ], [ 5.090175, 49.54479 ], [ 5.090506, 49.538 ], [ 5.097719, 49.533646 ], [ 5.089874, 49.52109 ], [ 5.085535, 49.520335 ], [ 5.084962, 49.51711 ], [ 5.077415, 49.508733 ], [ 5.062563, 49.50745 ], [ 5.059872, 49.504708 ], [ 5.059979, 49.50119 ], [ 5.074537, 49.486683 ], [ 5.079907, 49.48637 ], [ 5.084529, 49.48056 ], [ 5.083, 49.473807 ], [ 5.082957, 49.47036 ], [ 5.095809, 49.4604 ], [ 5.100672, 49.46126 ], [ 5.102876, 49.46017 ], [ 5.10986, 49.45625 ], [ 5.100887, 49.440834 ], [ 5.106154, 49.4277 ], [ 5.107781, 49.424674 ], [ 5.115029, 49.42058 ], [ 5.109334, 49.41547 ], [ 5.099317, 49.413842 ], [ 5.084472, 49.404586 ], [ 5.088653, 49.39861 ], [ 5.10415, 49.38978 ], [ 5.100617, 49.380497 ], [ 5.088622, 49.36963 ], [ 5.08389, 49.37043 ], [ 5.060209, 49.371517 ], [ 5.054072, 49.36611 ], [ 5.055816, 49.359435 ], [ 5.027099, 49.335615 ], [ 5.028499, 49.332354 ], [ 5.029392, 49.326036 ], [ 5.032377, 49.32393 ], [ 5.038152, 49.316204 ], [ 5.030794, 49.30817 ], [ 5.041741, 49.29669 ], [ 5.051473, 49.29422 ], [ 5.056637, 49.293365 ], [ 5.059407, 49.28975 ], [ 5.05546, 49.28798 ], [ 5.049709, 49.283366 ], [ 5.051181, 49.274052 ], [ 5.036007, 49.27122 ], [ 5.025812, 49.273042 ], [ 5.011029, 49.269287 ], [ 5.006624, 49.26767 ], [ 4.998664, 49.26366 ], [ 4.9999, 49.26045 ], [ 4.996246, 49.257977 ], [ 4.968033, 49.248792 ], [ 4.960253, 49.23996 ], [ 4.950989, 49.236866 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "9", "CODE_DEPT": "09", "NOM_DEPT": "ARIEGE", "CODE_CHF": "122", "NOM_CHF": "FOIX", "X_CHF_LIEU": "5862", "Y_CHF_LIEU": "62083", "X_CENTROID": "5777", "Y_CENTROID": "62035", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.166054, 42.66392 ], [ 2.161322, 42.664241 ], [ 2.152302, 42.662075 ], [ 2.143126, 42.663854 ], [ 2.127885, 42.672039 ], [ 2.10655, 42.664841 ], [ 2.073887, 42.665624 ], [ 2.061034, 42.66184 ], [ 2.047019, 42.66359 ], [ 2.04327, 42.657496 ], [ 2.022788, 42.653364 ], [ 2.018423, 42.65366 ], [ 2.015214, 42.65539 ], [ 2.002095, 42.661076 ], [ 1.997956, 42.660903 ], [ 1.990771, 42.64664 ], [ 1.987816, 42.6443 ], [ 1.976116, 42.62744 ], [ 1.976361, 42.62107 ], [ 1.97328, 42.61838 ], [ 1.950468, 42.616947 ], [ 1.942099, 42.608521 ], [ 1.933621, 42.605578 ], [ 1.924961, 42.608539 ], [ 1.910766, 42.608063 ], [ 1.900303, 42.614906 ], [ 1.898745, 42.61167 ], [ 1.89352, 42.606051 ], [ 1.890215, 42.592989 ], [ 1.873502, 42.588202 ], [ 1.874485, 42.581415 ], [ 1.865377, 42.579925 ], [ 1.838155, 42.583957 ], [ 1.824728, 42.58124 ], [ 1.820712, 42.579504 ], [ 1.799703, 42.57232 ], [ 1.786125, 42.573623 ], [ 1.778394, 42.58208 ], [ 1.764271, 42.58082 ], [ 1.72825, 42.58957 ], [ 1.726265, 42.596348 ], [ 1.73508, 42.6085 ], [ 1.737964, 42.611314 ], [ 1.736569, 42.617834 ], [ 1.732644, 42.615819 ], [ 1.71376, 42.615386 ], [ 1.683181, 42.62449 ], [ 1.660225, 42.62046 ], [ 1.64907, 42.626907 ], [ 1.63517, 42.62927 ], [ 1.602654, 42.626418 ], [ 1.582867, 42.635437 ], [ 1.574887, 42.64803 ], [ 1.570708, 42.648089 ], [ 1.564674, 42.65223 ], [ 1.552802, 42.65395 ], [ 1.549214, 42.65569 ], [ 1.534097, 42.6498 ], [ 1.522151, 42.649183 ], [ 1.50644, 42.64529 ], [ 1.49375, 42.653211 ], [ 1.479741, 42.650854 ], [ 1.470526, 42.63481 ], [ 1.473983, 42.61115 ], [ 1.457841, 42.60379 ], [ 1.438948, 42.604335 ], [ 1.421833, 42.62506 ], [ 1.413033, 42.652646 ], [ 1.389548, 42.66977 ], [ 1.387917, 42.687306 ], [ 1.377013, 42.69411 ], [ 1.35461, 42.699991 ], [ 1.351964, 42.706444 ], [ 1.357819, 42.715886 ], [ 1.357378, 42.71942 ], [ 1.336951, 42.72107 ], [ 1.335268, 42.724037 ], [ 1.325862, 42.72411 ], [ 1.309332, 42.7179 ], [ 1.29526, 42.719063 ], [ 1.282178, 42.71517 ], [ 1.269226, 42.718025 ], [ 1.256345, 42.715226 ], [ 1.242505, 42.72406 ], [ 1.229293, 42.727724 ], [ 1.225892, 42.72522 ], [ 1.217862, 42.72136 ], [ 1.190021, 42.716877 ], [ 1.174266, 42.708992 ], [ 1.165018, 42.709527 ], [ 1.135497, 42.727328 ], [ 1.128703, 42.754623 ], [ 1.106604, 42.771773 ], [ 1.089692, 42.777454 ], [ 1.082026, 42.785907 ], [ 1.078709, 42.788366 ], [ 1.072945, 42.78284 ], [ 1.049296, 42.78164 ], [ 1.037519, 42.786522 ], [ 1.009559, 42.788876 ], [ 1.005585, 42.790799 ], [ 1.001357, 42.789452 ], [ 0.983769, 42.787072 ], [ 0.959768, 42.80564 ], [ 0.947251, 42.801013 ], [ 0.93448, 42.790873 ], [ 0.925827, 42.789672 ], [ 0.884979, 42.81307 ], [ 0.871283, 42.81608 ], [ 0.859991, 42.82244 ], [ 0.858306, 42.825719 ], [ 0.859883, 42.8383 ], [ 0.85666, 42.84052 ], [ 0.848211, 42.86533 ], [ 0.839447, 42.867521 ], [ 0.835258, 42.87359 ], [ 0.842883, 42.889585 ], [ 0.838049, 42.89883 ], [ 0.834232, 42.900791 ], [ 0.826682, 42.9155 ], [ 0.837338, 42.92054 ], [ 0.840735, 42.922675 ], [ 0.843739, 42.925182 ], [ 0.857163, 42.92399 ], [ 0.864822, 42.92743 ], [ 0.873674, 42.92673 ], [ 0.88452, 42.93244 ], [ 0.885379, 42.935725 ], [ 0.875793, 42.95445 ], [ 0.874911, 42.957776 ], [ 0.908073, 42.95831 ], [ 0.912639, 42.9594 ], [ 0.916804, 42.96074 ], [ 0.927664, 42.966687 ], [ 0.931165, 42.96643 ], [ 0.938102, 42.965646 ], [ 0.961393, 42.96831 ], [ 0.964711, 42.970804 ], [ 0.975795, 42.972974 ], [ 0.979101, 42.97443 ], [ 0.980532, 42.977687 ], [ 0.995098, 42.990834 ], [ 1.005529, 43.006087 ], [ 1.018611, 43.008147 ], [ 1.02239, 43.010195 ], [ 1.013484, 43.010022 ], [ 1.007949, 43.018763 ], [ 0.996808, 43.023981 ], [ 0.992966, 43.02338 ], [ 0.989042, 43.023396 ], [ 0.98455, 43.04218 ], [ 0.984119, 43.04539 ], [ 0.990214, 43.041564 ], [ 0.993153, 43.039558 ], [ 0.99437, 43.03985 ], [ 0.993263, 43.04842 ], [ 0.988953, 43.04786 ], [ 0.983483, 43.05626 ], [ 0.985586, 43.06247 ], [ 0.980334, 43.07022 ], [ 0.978285, 43.073009 ], [ 0.999629, 43.0765 ], [ 1.004964, 43.0816 ], [ 0.99167, 43.091173 ], [ 0.992095, 43.098018 ], [ 0.996328, 43.09811 ], [ 1.004142, 43.108616 ], [ 1.000889, 43.11428 ], [ 1.005098, 43.113303 ], [ 1.009501, 43.113484 ], [ 1.025497, 43.10214 ], [ 1.03823, 43.100308 ], [ 1.048314, 43.11731 ], [ 1.050845, 43.11982 ], [ 1.052319, 43.132935 ], [ 1.048409, 43.13815 ], [ 1.051446, 43.14061 ], [ 1.051863, 43.14391 ], [ 1.053544, 43.145454 ], [ 1.062938, 43.13867 ], [ 1.084129, 43.135403 ], [ 1.087977, 43.133825 ], [ 1.088091, 43.140035 ], [ 1.104069, 43.14396 ], [ 1.108471, 43.144228 ], [ 1.11198, 43.145531 ], [ 1.11207, 43.14841 ], [ 1.115991, 43.149875 ], [ 1.124082, 43.15691 ], [ 1.145819, 43.13863 ], [ 1.162565, 43.13204 ], [ 1.174984, 43.140974 ], [ 1.177517, 43.138201 ], [ 1.198395, 43.12542 ], [ 1.199329, 43.122617 ], [ 1.210751, 43.1151 ], [ 1.213204, 43.109236 ], [ 1.210476, 43.106905 ], [ 1.2221, 43.089078 ], [ 1.223571, 43.085926 ], [ 1.241135, 43.087537 ], [ 1.245513, 43.088076 ], [ 1.249571, 43.089042 ], [ 1.261854, 43.09165 ], [ 1.260737, 43.10799 ], [ 1.278927, 43.11026 ], [ 1.281744, 43.112995 ], [ 1.282698, 43.11601 ], [ 1.290166, 43.123439 ], [ 1.302718, 43.12259 ], [ 1.299357, 43.124961 ], [ 1.276705, 43.141992 ], [ 1.273873, 43.148388 ], [ 1.255381, 43.14795 ], [ 1.250818, 43.148097 ], [ 1.237564, 43.14998 ], [ 1.223738, 43.152072 ], [ 1.217172, 43.156579 ], [ 1.216928, 43.16329 ], [ 1.227735, 43.174001 ], [ 1.230324, 43.18739 ], [ 1.239495, 43.189065 ], [ 1.247613, 43.18654 ], [ 1.249383, 43.183306 ], [ 1.253254, 43.183792 ], [ 1.264613, 43.188734 ], [ 1.268142, 43.190779 ], [ 1.266351, 43.19148 ], [ 1.272331, 43.19585 ], [ 1.296283, 43.189284 ], [ 1.302034, 43.193576 ], [ 1.305721, 43.194912 ], [ 1.311658, 43.19165 ], [ 1.314608, 43.189995 ], [ 1.322387, 43.190989 ], [ 1.325853, 43.196126 ], [ 1.329615, 43.19702 ], [ 1.327516, 43.20196 ], [ 1.327822, 43.20456 ], [ 1.352282, 43.21198 ], [ 1.356669, 43.21301 ], [ 1.370204, 43.21067 ], [ 1.377872, 43.21925 ], [ 1.379963, 43.222341 ], [ 1.382925, 43.228152 ], [ 1.377652, 43.23627 ], [ 1.374903, 43.23864 ], [ 1.373053, 43.244883 ], [ 1.365233, 43.242021 ], [ 1.35678, 43.243701 ], [ 1.352581, 43.244617 ], [ 1.348304, 43.24313 ], [ 1.336707, 43.248387 ], [ 1.318422, 43.251154 ], [ 1.329953, 43.257217 ], [ 1.330481, 43.260644 ], [ 1.294111, 43.264926 ], [ 1.294862, 43.268267 ], [ 1.301238, 43.27292 ], [ 1.292531, 43.288366 ], [ 1.301558, 43.28756 ], [ 1.307485, 43.296727 ], [ 1.316667, 43.297392 ], [ 1.323968, 43.3094 ], [ 1.331294, 43.31383 ], [ 1.345491, 43.31549 ], [ 1.373023, 43.31015 ], [ 1.365686, 43.305999 ], [ 1.379301, 43.288857 ], [ 1.401943, 43.277623 ], [ 1.402761, 43.276547 ], [ 1.406262, 43.27419 ], [ 1.425886, 43.25582 ], [ 1.425426, 43.24559 ], [ 1.418659, 43.23654 ], [ 1.41686, 43.226325 ], [ 1.431539, 43.218136 ], [ 1.441798, 43.21587 ], [ 1.444751, 43.214018 ], [ 1.452056, 43.21222 ], [ 1.468744, 43.209566 ], [ 1.471837, 43.215385 ], [ 1.475497, 43.21699 ], [ 1.476565, 43.220347 ], [ 1.48702, 43.226503 ], [ 1.503995, 43.22095 ], [ 1.503881, 43.224867 ], [ 1.504053, 43.228189 ], [ 1.500513, 43.233745 ], [ 1.492447, 43.23684 ], [ 1.495751, 43.23897 ], [ 1.504522, 43.24953 ], [ 1.502879, 43.251637 ], [ 1.49768, 43.25466 ], [ 1.493322, 43.25422 ], [ 1.490239, 43.26011 ], [ 1.492642, 43.262804 ], [ 1.488674, 43.2686 ], [ 1.495033, 43.27689 ], [ 1.49622, 43.29277 ], [ 1.499248, 43.290445 ], [ 1.506599, 43.2872 ], [ 1.511636, 43.29246 ], [ 1.515871, 43.28441 ], [ 1.515703, 43.27804 ], [ 1.517628, 43.271643 ], [ 1.52189, 43.270621 ], [ 1.537449, 43.277077 ], [ 1.541722, 43.276082 ], [ 1.541674, 43.27509 ], [ 1.545386, 43.276797 ], [ 1.557052, 43.263323 ], [ 1.561765, 43.257484 ], [ 1.569141, 43.257366 ], [ 1.572619, 43.26357 ], [ 1.569433, 43.269912 ], [ 1.574813, 43.273429 ], [ 1.578834, 43.27512 ], [ 1.582583, 43.26887 ], [ 1.600931, 43.26622 ], [ 1.606213, 43.260604 ], [ 1.633595, 43.256239 ], [ 1.637144, 43.254008 ], [ 1.636456, 43.24718 ], [ 1.635082, 43.23709 ], [ 1.644398, 43.237564 ], [ 1.655283, 43.244105 ], [ 1.655788, 43.250976 ], [ 1.650608, 43.259827 ], [ 1.671417, 43.2783 ], [ 1.673613, 43.28134 ], [ 1.684706, 43.27552 ], [ 1.68842, 43.273554 ], [ 1.691642, 43.270993 ], [ 1.701035, 43.259015 ], [ 1.700281, 43.24551 ], [ 1.716082, 43.228373 ], [ 1.723908, 43.224435 ], [ 1.720825, 43.221997 ], [ 1.724233, 43.212474 ], [ 1.709977, 43.19984 ], [ 1.709632, 43.19001 ], [ 1.71178, 43.18684 ], [ 1.725887, 43.187682 ], [ 1.739608, 43.184299 ], [ 1.747554, 43.175566 ], [ 1.774918, 43.16154 ], [ 1.779465, 43.16036 ], [ 1.783803, 43.154472 ], [ 1.801395, 43.157017 ], [ 1.817151, 43.150228 ], [ 1.821439, 43.148998 ], [ 1.826188, 43.14568 ], [ 1.848366, 43.147346 ], [ 1.846197, 43.15323 ], [ 1.850054, 43.1576 ], [ 1.85196, 43.160608 ], [ 1.856847, 43.144629 ], [ 1.877961, 43.144833 ], [ 1.880648, 43.14754 ], [ 1.880596, 43.130549 ], [ 1.890103, 43.12347 ], [ 1.892668, 43.11713 ], [ 1.904423, 43.131163 ], [ 1.916269, 43.13343 ], [ 1.927409, 43.129496 ], [ 1.927998, 43.124185 ], [ 1.932339, 43.12386 ], [ 1.948405, 43.1203 ], [ 1.951491, 43.111311 ], [ 1.950633, 43.102388 ], [ 1.955369, 43.088924 ], [ 1.955776, 43.085447 ], [ 1.952205, 43.084054 ], [ 1.949782, 43.08169 ], [ 1.953422, 43.07991 ], [ 1.96308, 43.069587 ], [ 1.961181, 43.0667 ], [ 1.944222, 43.06695 ], [ 1.940394, 43.061586 ], [ 1.945866, 43.0494 ], [ 1.954082, 43.04678 ], [ 1.961083, 43.049564 ], [ 1.975929, 43.042304 ], [ 1.979452, 43.0379 ], [ 1.984554, 43.032941 ], [ 1.985759, 43.029957 ], [ 1.985468, 43.023479 ], [ 1.971869, 43.010586 ], [ 1.969256, 43.007944 ], [ 1.977778, 43.00701 ], [ 1.987058, 43.000576 ], [ 1.987127, 42.994506 ], [ 1.983264, 42.988434 ], [ 1.985769, 42.96848 ], [ 1.991575, 42.963482 ], [ 2.004908, 42.96156 ], [ 1.992859, 42.95372 ], [ 1.988592, 42.953381 ], [ 1.979382, 42.960507 ], [ 1.96166, 42.96201 ], [ 1.951304, 42.95909 ], [ 1.951814, 42.95593 ], [ 1.936227, 42.95189 ], [ 1.933731, 42.939144 ], [ 1.938436, 42.938228 ], [ 1.980574, 42.92958 ], [ 1.98088, 42.926111 ], [ 1.989327, 42.910488 ], [ 1.991129, 42.90749 ], [ 1.986048, 42.902786 ], [ 1.981595, 42.880467 ], [ 1.981922, 42.877197 ], [ 1.985041, 42.870859 ], [ 1.964409, 42.86292 ], [ 1.960244, 42.861377 ], [ 1.947126, 42.856689 ], [ 1.89389, 42.852925 ], [ 1.889042, 42.852704 ], [ 1.880266, 42.85268 ], [ 1.875017, 42.849168 ], [ 1.875018, 42.845939 ], [ 1.875571, 42.839497 ], [ 1.859461, 42.82414 ], [ 1.859379, 42.82081 ], [ 1.897896, 42.806041 ], [ 1.898387, 42.802701 ], [ 1.901467, 42.800637 ], [ 1.924962, 42.776245 ], [ 1.928959, 42.774603 ], [ 1.926075, 42.77218 ], [ 1.909557, 42.768445 ], [ 1.908994, 42.765247 ], [ 1.912998, 42.759308 ], [ 1.92529, 42.755179 ], [ 1.929817, 42.75521 ], [ 1.931555, 42.750934 ], [ 1.943622, 42.746207 ], [ 1.950255, 42.73766 ], [ 1.986832, 42.735222 ], [ 1.991438, 42.7348 ], [ 1.994914, 42.73558 ], [ 1.998506, 42.735944 ], [ 2.001675, 42.73537 ], [ 2.00378, 42.733529 ], [ 2.01532, 42.739274 ], [ 2.019979, 42.740018 ], [ 2.030775, 42.741483 ], [ 2.034932, 42.746826 ], [ 2.043914, 42.74741 ], [ 2.058119, 42.755485 ], [ 2.080464, 42.752244 ], [ 2.084951, 42.751662 ], [ 2.08636, 42.752069 ], [ 2.0878, 42.73957 ], [ 2.096671, 42.73315 ], [ 2.100535, 42.731715 ], [ 2.111063, 42.726839 ], [ 2.113806, 42.7245 ], [ 2.140803, 42.70908 ], [ 2.140607, 42.70582 ], [ 2.147599, 42.70124 ], [ 2.161494, 42.700523 ], [ 2.175521, 42.68275 ], [ 2.165712, 42.66739 ], [ 2.166054, 42.66392 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "10", "CODE_DEPT": "10", "NOM_DEPT": "AUBE", "CODE_CHF": "387", "NOM_CHF": "TROYES", "X_CHF_LIEU": "7799", "Y_CHF_LIEU": "68003", "X_CENTROID": "7861", "Y_CENTROID": "68010", "CODE_REG": "21", "NOM_REGION": "CHAMPAGNE-ARDENNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.293424, 47.92568 ], [ 4.288659, 47.92685 ], [ 4.274316, 47.92352 ], [ 4.259501, 47.925577 ], [ 4.246331, 47.930425 ], [ 4.2239, 47.948499 ], [ 4.227548, 47.962007 ], [ 4.225956, 47.971942 ], [ 4.221154, 47.97122 ], [ 4.201952, 47.972577 ], [ 4.195329, 47.96776 ], [ 4.195372, 47.96431 ], [ 4.204572, 47.96108 ], [ 4.206056, 47.947361 ], [ 4.200398, 47.94183 ], [ 4.185452, 47.94016 ], [ 4.184257, 47.95386 ], [ 4.167337, 47.96001 ], [ 4.162736, 47.95857 ], [ 4.141785, 47.94393 ], [ 4.141839, 47.937112 ], [ 4.137273, 47.937786 ], [ 4.122115, 47.93166 ], [ 4.113712, 47.92816 ], [ 4.094619, 47.92834 ], [ 4.092716, 47.94128 ], [ 4.089798, 47.94397 ], [ 4.060938, 47.94571 ], [ 4.054893, 47.93003 ], [ 4.045912, 47.9269 ], [ 4.033216, 47.932339 ], [ 4.025042, 47.928649 ], [ 4.019887, 47.92868 ], [ 4.005536, 47.94237 ], [ 4.001886, 47.94058 ], [ 3.985625, 47.930516 ], [ 3.981186, 47.930166 ], [ 3.976533, 47.93127 ], [ 3.963109, 47.935455 ], [ 3.949414, 47.93206 ], [ 3.92645, 47.93457 ], [ 3.923708, 47.932432 ], [ 3.918489, 47.92802 ], [ 3.914044, 47.92962 ], [ 3.905178, 47.926483 ], [ 3.895693, 47.92855 ], [ 3.894031, 47.929296 ], [ 3.896827, 47.932289 ], [ 3.902393, 47.93829 ], [ 3.905655, 47.95914 ], [ 3.913529, 47.97208 ], [ 3.903717, 47.99164 ], [ 3.90227, 47.99484 ], [ 3.895731, 47.999833 ], [ 3.885815, 48.000277 ], [ 3.882089, 47.997965 ], [ 3.880447, 47.98144 ], [ 3.8618, 47.976444 ], [ 3.863339, 47.979601 ], [ 3.859899, 47.98401 ], [ 3.850027, 47.98366 ], [ 3.849394, 47.986794 ], [ 3.839811, 48.00389 ], [ 3.844554, 48.003613 ], [ 3.862835, 48.00627 ], [ 3.870812, 48.002864 ], [ 3.870626, 48.00623 ], [ 3.870242, 48.01631 ], [ 3.847997, 48.02939 ], [ 3.843397, 48.03537 ], [ 3.83961, 48.03606 ], [ 3.832152, 48.036235 ], [ 3.829137, 48.03902 ], [ 3.82198, 48.04392 ], [ 3.828647, 48.04807 ], [ 3.826352, 48.063516 ], [ 3.822803, 48.065827 ], [ 3.806636, 48.08239 ], [ 3.798608, 48.08617 ], [ 3.798965, 48.08936 ], [ 3.80565, 48.10052 ], [ 3.803843, 48.10367 ], [ 3.80166, 48.10673 ], [ 3.798242, 48.10911 ], [ 3.791315, 48.117598 ], [ 3.782117, 48.11992 ], [ 3.776493, 48.12867 ], [ 3.768933, 48.13285 ], [ 3.763975, 48.13212 ], [ 3.752958, 48.125957 ], [ 3.74065, 48.131983 ], [ 3.739803, 48.138693 ], [ 3.742117, 48.1417 ], [ 3.754541, 48.15209 ], [ 3.74548, 48.167534 ], [ 3.741053, 48.16934 ], [ 3.716542, 48.17418 ], [ 3.721798, 48.158178 ], [ 3.705728, 48.1452 ], [ 3.698164, 48.148692 ], [ 3.694415, 48.15505 ], [ 3.693632, 48.15174 ], [ 3.691075, 48.145413 ], [ 3.66787, 48.139212 ], [ 3.666663, 48.142638 ], [ 3.65964, 48.159577 ], [ 3.650655, 48.16818 ], [ 3.648805, 48.17093 ], [ 3.64051, 48.184617 ], [ 3.636498, 48.186735 ], [ 3.623548, 48.192 ], [ 3.593967, 48.1787 ], [ 3.589992, 48.180588 ], [ 3.575186, 48.18874 ], [ 3.579608, 48.190672 ], [ 3.609202, 48.21066 ], [ 3.621602, 48.22561 ], [ 3.619329, 48.22813 ], [ 3.608006, 48.231831 ], [ 3.604684, 48.229886 ], [ 3.599994, 48.23551 ], [ 3.624443, 48.25517 ], [ 3.624347, 48.258442 ], [ 3.622873, 48.261375 ], [ 3.615187, 48.27254 ], [ 3.610952, 48.27461 ], [ 3.582509, 48.28284 ], [ 3.587536, 48.29848 ], [ 3.56318, 48.310819 ], [ 3.564072, 48.321081 ], [ 3.559032, 48.320358 ], [ 3.543904, 48.319789 ], [ 3.543961, 48.32276 ], [ 3.545109, 48.33455 ], [ 3.540825, 48.336547 ], [ 3.50441, 48.36549 ], [ 3.495725, 48.36935 ], [ 3.474875, 48.369265 ], [ 3.472982, 48.371899 ], [ 3.470803, 48.37444 ], [ 3.470481, 48.374671 ], [ 3.465281, 48.37451 ], [ 3.450115, 48.372852 ], [ 3.431584, 48.36085 ], [ 3.426582, 48.36169 ], [ 3.414008, 48.37654 ], [ 3.414792, 48.390273 ], [ 3.420872, 48.40902 ], [ 3.421938, 48.412236 ], [ 3.416642, 48.415835 ], [ 3.402286, 48.415408 ], [ 3.411362, 48.41804 ], [ 3.411833, 48.42132 ], [ 3.407194, 48.422678 ], [ 3.392493, 48.425157 ], [ 3.39673, 48.43489 ], [ 3.400909, 48.43688 ], [ 3.405714, 48.45329 ], [ 3.39689, 48.461488 ], [ 3.39732, 48.468171 ], [ 3.384094, 48.47803 ], [ 3.387681, 48.48016 ], [ 3.403747, 48.48599 ], [ 3.407523, 48.487793 ], [ 3.424335, 48.49154 ], [ 3.433434, 48.490391 ], [ 3.434924, 48.49705 ], [ 3.422267, 48.51541 ], [ 3.405398, 48.52802 ], [ 3.408474, 48.529945 ], [ 3.41464, 48.53379 ], [ 3.445941, 48.52879 ], [ 3.450707, 48.52867 ], [ 3.47562, 48.54128 ], [ 3.480919, 48.541431 ], [ 3.483775, 48.54706 ], [ 3.465516, 48.57049 ], [ 3.469023, 48.573054 ], [ 3.480668, 48.579133 ], [ 3.485304, 48.580464 ], [ 3.496646, 48.58992 ], [ 3.515219, 48.590989 ], [ 3.505274, 48.602986 ], [ 3.508636, 48.605598 ], [ 3.556545, 48.61731 ], [ 3.555754, 48.62069 ], [ 3.563076, 48.612739 ], [ 3.565324, 48.60353 ], [ 3.575032, 48.60446 ], [ 3.579892, 48.604859 ], [ 3.581882, 48.588702 ], [ 3.582592, 48.58546 ], [ 3.59248, 48.587004 ], [ 3.602682, 48.57567 ], [ 3.604245, 48.572453 ], [ 3.607694, 48.57417 ], [ 3.61177, 48.5761 ], [ 3.615255, 48.57849 ], [ 3.623843, 48.57911 ], [ 3.629017, 48.57416 ], [ 3.631399, 48.57156 ], [ 3.63263, 48.54552 ], [ 3.643639, 48.53626 ], [ 3.658505, 48.53564 ], [ 3.66131, 48.53466 ], [ 3.664193, 48.53553 ], [ 3.6882, 48.53895 ], [ 3.701306, 48.534281 ], [ 3.706308, 48.534585 ], [ 3.726541, 48.537189 ], [ 3.731761, 48.53754 ], [ 3.759259, 48.53186 ], [ 3.76655, 48.527446 ], [ 3.774481, 48.5298 ], [ 3.782383, 48.52746 ], [ 3.786289, 48.52873 ], [ 3.796397, 48.5281 ], [ 3.821633, 48.517039 ], [ 3.825896, 48.515174 ], [ 3.829732, 48.51714 ], [ 3.834507, 48.51766 ], [ 3.852471, 48.52483 ], [ 3.86544, 48.540046 ], [ 3.866229, 48.543549 ], [ 3.86001, 48.543549 ], [ 3.858832, 48.55683 ], [ 3.863732, 48.569629 ], [ 3.855122, 48.572794 ], [ 3.855214, 48.579262 ], [ 3.878854, 48.57902 ], [ 3.883263, 48.57755 ], [ 3.883945, 48.57776 ], [ 3.897616, 48.575738 ], [ 3.908424, 48.60175 ], [ 3.911396, 48.60185 ], [ 3.91901, 48.60597 ], [ 3.94924, 48.603432 ], [ 3.964055, 48.62714 ], [ 3.966616, 48.62992 ], [ 3.974072, 48.62657 ], [ 3.980532, 48.629473 ], [ 3.977256, 48.63209 ], [ 3.984211, 48.65194 ], [ 3.998629, 48.66116 ], [ 4.001696, 48.66388 ], [ 4.030184, 48.65965 ], [ 4.039499, 48.66168 ], [ 4.044291, 48.660955 ], [ 4.062858, 48.67184 ], [ 4.067612, 48.67785 ], [ 4.065982, 48.6872 ], [ 4.079788, 48.701127 ], [ 4.083978, 48.700037 ], [ 4.088126, 48.698875 ], [ 4.126466, 48.687778 ], [ 4.131091, 48.68615 ], [ 4.153641, 48.70268 ], [ 4.157769, 48.70434 ], [ 4.162185, 48.706155 ], [ 4.177346, 48.70825 ], [ 4.233041, 48.70231 ], [ 4.234701, 48.70529 ], [ 4.243113, 48.716673 ], [ 4.248388, 48.71158 ], [ 4.262377, 48.707152 ], [ 4.297443, 48.71315 ], [ 4.311773, 48.710559 ], [ 4.325579, 48.7002 ], [ 4.327016, 48.696879 ], [ 4.323296, 48.68411 ], [ 4.333205, 48.673664 ], [ 4.324067, 48.66198 ], [ 4.327909, 48.65608 ], [ 4.318484, 48.64956 ], [ 4.323216, 48.64393 ], [ 4.324339, 48.641647 ], [ 4.326398, 48.638772 ], [ 4.329072, 48.63612 ], [ 4.330956, 48.62959 ], [ 4.314918, 48.61622 ], [ 4.318252, 48.613403 ], [ 4.330833, 48.601819 ], [ 4.344703, 48.59837 ], [ 4.349656, 48.59794 ], [ 4.392438, 48.567422 ], [ 4.418399, 48.555473 ], [ 4.42331, 48.55415 ], [ 4.427877, 48.553165 ], [ 4.458127, 48.54784 ], [ 4.463404, 48.54756 ], [ 4.490796, 48.54015 ], [ 4.495281, 48.53872 ], [ 4.507606, 48.54518 ], [ 4.511043, 48.54783 ], [ 4.516867, 48.54445 ], [ 4.520811, 48.544941 ], [ 4.528813, 48.5294 ], [ 4.538806, 48.527398 ], [ 4.543945, 48.52803 ], [ 4.558081, 48.542425 ], [ 4.575926, 48.5492 ], [ 4.581057, 48.54856 ], [ 4.586045, 48.548146 ], [ 4.592975, 48.55234 ], [ 4.636332, 48.5537 ], [ 4.641338, 48.55388 ], [ 4.636207, 48.5497 ], [ 4.635014, 48.54448 ], [ 4.649977, 48.53983 ], [ 4.650985, 48.537005 ], [ 4.670183, 48.53189 ], [ 4.672146, 48.528872 ], [ 4.676345, 48.51953 ], [ 4.669606, 48.510796 ], [ 4.666284, 48.510635 ], [ 4.657667, 48.50323 ], [ 4.659165, 48.49323 ], [ 4.651486, 48.47721 ], [ 4.653469, 48.470557 ], [ 4.648724, 48.47071 ], [ 4.63622, 48.467215 ], [ 4.62683, 48.468082 ], [ 4.630106, 48.465518 ], [ 4.635782, 48.456612 ], [ 4.673885, 48.444132 ], [ 4.675907, 48.44138 ], [ 4.676942, 48.43567 ], [ 4.67796, 48.432421 ], [ 4.688066, 48.425403 ], [ 4.680322, 48.417054 ], [ 4.685262, 48.41681 ], [ 4.694223, 48.41467 ], [ 4.708356, 48.401185 ], [ 4.701249, 48.39537 ], [ 4.703582, 48.393137 ], [ 4.707664, 48.391098 ], [ 4.721621, 48.394397 ], [ 4.74663, 48.392303 ], [ 4.760188, 48.38761 ], [ 4.75458, 48.36655 ], [ 4.774639, 48.35745 ], [ 4.788073, 48.35542 ], [ 4.79289, 48.356093 ], [ 4.818946, 48.34505 ], [ 4.834492, 48.344477 ], [ 4.841471, 48.33946 ], [ 4.837279, 48.337297 ], [ 4.814218, 48.32301 ], [ 4.817381, 48.320442 ], [ 4.825283, 48.3121 ], [ 4.826276, 48.302243 ], [ 4.830865, 48.30309 ], [ 4.850845, 48.296255 ], [ 4.842941, 48.283517 ], [ 4.859395, 48.266025 ], [ 4.846501, 48.25581 ], [ 4.84458, 48.24907 ], [ 4.845763, 48.24706 ], [ 4.843279, 48.24076 ], [ 4.851517, 48.22941 ], [ 4.839374, 48.2242 ], [ 4.835568, 48.222045 ], [ 4.836553, 48.218619 ], [ 4.862435, 48.20861 ], [ 4.862336, 48.19818 ], [ 4.856297, 48.192587 ], [ 4.85609, 48.192464 ], [ 4.853853, 48.18932 ], [ 4.847077, 48.17992 ], [ 4.84882, 48.17667 ], [ 4.838845, 48.16886 ], [ 4.836583, 48.162213 ], [ 4.838385, 48.15215 ], [ 4.850094, 48.14158 ], [ 4.845262, 48.1407 ], [ 4.841084, 48.13464 ], [ 4.828601, 48.129079 ], [ 4.830916, 48.126433 ], [ 4.833349, 48.117511 ], [ 4.834386, 48.105164 ], [ 4.819903, 48.10332 ], [ 4.786885, 48.109269 ], [ 4.782071, 48.110791 ], [ 4.762028, 48.11511 ], [ 4.74089, 48.11566 ], [ 4.731874, 48.119451 ], [ 4.729771, 48.116376 ], [ 4.724477, 48.10697 ], [ 4.704076, 48.09777 ], [ 4.706929, 48.09499 ], [ 4.706273, 48.091733 ], [ 4.69088, 48.08595 ], [ 4.686338, 48.08422 ], [ 4.666381, 48.082637 ], [ 4.657543, 48.079243 ], [ 4.660742, 48.07715 ], [ 4.665953, 48.07672 ], [ 4.691158, 48.07195 ], [ 4.710106, 48.051129 ], [ 4.723155, 48.045763 ], [ 4.721823, 48.042371 ], [ 4.710489, 48.03515 ], [ 4.708903, 48.02178 ], [ 4.704239, 48.020241 ], [ 4.700888, 48.02285 ], [ 4.67296, 48.01502 ], [ 4.647584, 48.02469 ], [ 4.621946, 48.024348 ], [ 4.619447, 48.02642 ], [ 4.616807, 48.031376 ], [ 4.612164, 48.03005 ], [ 4.578157, 48.02857 ], [ 4.563343, 48.0154 ], [ 4.55472, 48.012276 ], [ 4.552644, 48.009189 ], [ 4.5456, 48.004988 ], [ 4.535774, 48.00657 ], [ 4.535514, 48.003131 ], [ 4.542963, 47.990433 ], [ 4.555441, 47.98477 ], [ 4.559969, 47.971423 ], [ 4.55658, 47.96923 ], [ 4.552383, 47.96779 ], [ 4.531442, 47.969899 ], [ 4.516449, 47.966349 ], [ 4.495482, 47.96805 ], [ 4.446962, 47.9562 ], [ 4.438111, 47.959377 ], [ 4.433946, 47.961462 ], [ 4.416466, 47.96828 ], [ 4.392313, 47.962106 ], [ 4.371696, 47.96133 ], [ 4.347354, 47.956339 ], [ 4.312802, 47.962499 ], [ 4.305655, 47.954163 ], [ 4.299289, 47.94861 ], [ 4.300411, 47.94519 ], [ 4.30209, 47.93829 ], [ 4.293424, 47.92568 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "11", "CODE_DEPT": "11", "NOM_DEPT": "AUDE", "CODE_CHF": "069", "NOM_CHF": "CARCASSONNE", "X_CHF_LIEU": "6472", "Y_CHF_LIEU": "62353", "X_CENTROID": "6522", "Y_CENTROID": "62228", "CODE_REG": "91", "NOM_REGION": "LANGUEDOC-ROUSSILLON" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.043511, 42.83815 ], [ 3.03948, 42.84012 ], [ 3.012405, 42.853193 ], [ 2.988876, 42.864578 ], [ 2.98478, 42.8665 ], [ 2.917115, 42.88486 ], [ 2.91436, 42.887448 ], [ 2.906997, 42.895679 ], [ 2.902421, 42.89638 ], [ 2.880505, 42.901363 ], [ 2.865274, 42.918341 ], [ 2.83792, 42.912314 ], [ 2.810132, 42.89842 ], [ 2.8054, 42.89788 ], [ 2.787164, 42.89441 ], [ 2.761908, 42.873325 ], [ 2.755066, 42.85486 ], [ 2.754346, 42.851708 ], [ 2.751927, 42.848735 ], [ 2.740524, 42.83789 ], [ 2.72743, 42.8344 ], [ 2.682011, 42.83072 ], [ 2.665142, 42.83666 ], [ 2.664347, 42.836753 ], [ 2.639901, 42.83826 ], [ 2.635284, 42.83795 ], [ 2.603246, 42.83613 ], [ 2.572403, 42.84337 ], [ 2.567708, 42.843691 ], [ 2.558602, 42.845506 ], [ 2.554148, 42.84627 ], [ 2.518539, 42.84314 ], [ 2.515232, 42.84545 ], [ 2.512073, 42.8477 ], [ 2.500452, 42.85043 ], [ 2.496644, 42.84839 ], [ 2.462198, 42.83856 ], [ 2.459478, 42.83808 ], [ 2.45682, 42.83748 ], [ 2.452145, 42.83694 ], [ 2.401353, 42.843872 ], [ 2.397686, 42.845128 ], [ 2.382167, 42.848466 ], [ 2.370849, 42.84635 ], [ 2.36647, 42.84556 ], [ 2.336096, 42.840709 ], [ 2.32504, 42.8352 ], [ 2.322405, 42.825453 ], [ 2.33204, 42.81834 ], [ 2.33228, 42.80487 ], [ 2.339328, 42.801531 ], [ 2.343923, 42.801227 ], [ 2.344229, 42.780565 ], [ 2.343325, 42.774112 ], [ 2.349394, 42.76951 ], [ 2.352611, 42.76015 ], [ 2.350519, 42.7573 ], [ 2.351796, 42.75222 ], [ 2.352471, 42.749692 ], [ 2.353569, 42.748566 ], [ 2.357134, 42.738418 ], [ 2.355346, 42.72805 ], [ 2.342891, 42.722902 ], [ 2.32249, 42.70811 ], [ 2.318547, 42.706457 ], [ 2.28859, 42.70067 ], [ 2.275384, 42.702928 ], [ 2.264713, 42.709032 ], [ 2.264471, 42.702116 ], [ 2.256682, 42.698268 ], [ 2.240947, 42.67753 ], [ 2.218667, 42.672426 ], [ 2.192168, 42.659057 ], [ 2.191276, 42.656631 ], [ 2.192366, 42.651766 ], [ 2.188063, 42.65205 ], [ 2.176219, 42.648901 ], [ 2.176143, 42.652596 ], [ 2.176088, 42.65301 ], [ 2.173177, 42.65562 ], [ 2.166054, 42.66392 ], [ 2.165712, 42.66739 ], [ 2.175521, 42.68275 ], [ 2.161494, 42.700523 ], [ 2.147599, 42.70124 ], [ 2.140607, 42.70582 ], [ 2.140803, 42.70908 ], [ 2.113806, 42.7245 ], [ 2.111063, 42.726839 ], [ 2.100535, 42.731715 ], [ 2.096671, 42.73315 ], [ 2.0878, 42.73957 ], [ 2.08636, 42.752069 ], [ 2.084951, 42.751662 ], [ 2.080464, 42.752244 ], [ 2.058119, 42.755485 ], [ 2.043914, 42.74741 ], [ 2.034932, 42.746826 ], [ 2.030775, 42.741483 ], [ 2.019979, 42.740018 ], [ 2.01532, 42.739274 ], [ 2.00378, 42.733529 ], [ 2.001675, 42.73537 ], [ 1.998506, 42.735944 ], [ 1.994914, 42.73558 ], [ 1.991438, 42.7348 ], [ 1.986832, 42.735222 ], [ 1.950255, 42.73766 ], [ 1.943622, 42.746207 ], [ 1.931555, 42.750934 ], [ 1.929817, 42.75521 ], [ 1.92529, 42.755179 ], [ 1.912998, 42.759308 ], [ 1.908994, 42.765247 ], [ 1.909557, 42.768445 ], [ 1.926075, 42.77218 ], [ 1.928959, 42.774603 ], [ 1.924962, 42.776245 ], [ 1.901467, 42.800637 ], [ 1.898387, 42.802701 ], [ 1.897896, 42.806041 ], [ 1.859379, 42.82081 ], [ 1.859461, 42.82414 ], [ 1.875571, 42.839497 ], [ 1.875018, 42.845939 ], [ 1.875017, 42.849168 ], [ 1.880266, 42.85268 ], [ 1.889042, 42.852704 ], [ 1.89389, 42.852925 ], [ 1.947126, 42.856689 ], [ 1.960244, 42.861377 ], [ 1.964409, 42.86292 ], [ 1.985041, 42.870859 ], [ 1.981922, 42.877197 ], [ 1.981595, 42.880467 ], [ 1.986048, 42.902786 ], [ 1.991129, 42.90749 ], [ 1.989327, 42.910488 ], [ 1.98088, 42.926111 ], [ 1.980574, 42.92958 ], [ 1.938436, 42.938228 ], [ 1.933731, 42.939144 ], [ 1.936227, 42.95189 ], [ 1.951814, 42.95593 ], [ 1.951304, 42.95909 ], [ 1.96166, 42.96201 ], [ 1.979382, 42.960507 ], [ 1.988592, 42.953381 ], [ 1.992859, 42.95372 ], [ 2.004908, 42.96156 ], [ 1.991575, 42.963482 ], [ 1.985769, 42.96848 ], [ 1.983264, 42.988434 ], [ 1.987127, 42.994506 ], [ 1.987058, 43.000576 ], [ 1.977778, 43.00701 ], [ 1.969256, 43.007944 ], [ 1.971869, 43.010586 ], [ 1.985468, 43.023479 ], [ 1.985759, 43.029957 ], [ 1.984554, 43.032941 ], [ 1.979452, 43.0379 ], [ 1.975929, 43.042304 ], [ 1.961083, 43.049564 ], [ 1.954082, 43.04678 ], [ 1.945866, 43.0494 ], [ 1.940394, 43.061586 ], [ 1.944222, 43.06695 ], [ 1.961181, 43.0667 ], [ 1.96308, 43.069587 ], [ 1.953422, 43.07991 ], [ 1.949782, 43.08169 ], [ 1.952205, 43.084054 ], [ 1.955776, 43.085447 ], [ 1.955369, 43.088924 ], [ 1.950633, 43.102388 ], [ 1.951491, 43.111311 ], [ 1.948405, 43.1203 ], [ 1.932339, 43.12386 ], [ 1.927998, 43.124185 ], [ 1.927409, 43.129496 ], [ 1.916269, 43.13343 ], [ 1.904423, 43.131163 ], [ 1.892668, 43.11713 ], [ 1.890103, 43.12347 ], [ 1.880596, 43.130549 ], [ 1.880648, 43.14754 ], [ 1.877961, 43.144833 ], [ 1.856847, 43.144629 ], [ 1.85196, 43.160608 ], [ 1.850054, 43.1576 ], [ 1.846197, 43.15323 ], [ 1.848366, 43.147346 ], [ 1.826188, 43.14568 ], [ 1.821439, 43.148998 ], [ 1.817151, 43.150228 ], [ 1.801395, 43.157017 ], [ 1.783803, 43.154472 ], [ 1.779465, 43.16036 ], [ 1.774918, 43.16154 ], [ 1.747554, 43.175566 ], [ 1.739608, 43.184299 ], [ 1.725887, 43.187682 ], [ 1.71178, 43.18684 ], [ 1.709632, 43.19001 ], [ 1.709977, 43.19984 ], [ 1.724233, 43.212474 ], [ 1.720825, 43.221997 ], [ 1.723908, 43.224435 ], [ 1.716082, 43.228373 ], [ 1.700281, 43.24551 ], [ 1.701035, 43.259015 ], [ 1.691642, 43.270993 ], [ 1.68842, 43.273554 ], [ 1.698489, 43.27911 ], [ 1.701275, 43.281698 ], [ 1.706646, 43.286036 ], [ 1.714527, 43.2971 ], [ 1.707797, 43.301155 ], [ 1.704015, 43.30282 ], [ 1.707384, 43.305316 ], [ 1.727504, 43.31357 ], [ 1.735952, 43.316018 ], [ 1.724412, 43.329666 ], [ 1.726379, 43.33269 ], [ 1.722905, 43.341533 ], [ 1.735427, 43.3377 ], [ 1.746555, 43.34348 ], [ 1.749223, 43.349462 ], [ 1.768684, 43.33939 ], [ 1.772273, 43.336977 ], [ 1.77653, 43.34256 ], [ 1.784932, 43.34515 ], [ 1.793332, 43.342567 ], [ 1.796973, 43.34056 ], [ 1.813484, 43.3415 ], [ 1.815575, 43.34831 ], [ 1.804994, 43.359764 ], [ 1.804971, 43.390588 ], [ 1.812498, 43.394126 ], [ 1.826108, 43.394661 ], [ 1.821619, 43.39879 ], [ 1.817111, 43.407384 ], [ 1.817266, 43.41065 ], [ 1.826761, 43.417746 ], [ 1.840383, 43.416741 ], [ 1.844511, 43.42261 ], [ 1.84599, 43.430729 ], [ 1.842953, 43.43255 ], [ 1.855178, 43.440517 ], [ 1.856453, 43.44345 ], [ 1.872942, 43.43696 ], [ 1.873987, 43.430259 ], [ 1.897627, 43.414271 ], [ 1.899143, 43.41113 ], [ 1.902433, 43.408813 ], [ 1.895584, 43.39658 ], [ 1.903591, 43.39402 ], [ 1.910708, 43.3974 ], [ 1.91463, 43.400749 ], [ 1.911508, 43.403408 ], [ 1.923508, 43.421558 ], [ 1.932769, 43.423377 ], [ 1.946584, 43.420597 ], [ 1.95817, 43.42561 ], [ 1.960755, 43.42396 ], [ 1.963752, 43.42275 ], [ 1.963038, 43.41991 ], [ 1.965903, 43.414971 ], [ 1.972991, 43.418962 ], [ 1.991106, 43.409343 ], [ 2.012692, 43.415021 ], [ 2.020921, 43.423193 ], [ 2.028795, 43.41962 ], [ 2.038411, 43.425482 ], [ 2.030853, 43.433737 ], [ 2.029133, 43.436898 ], [ 2.033296, 43.43604 ], [ 2.053071, 43.43031 ], [ 2.068725, 43.408896 ], [ 2.072801, 43.395696 ], [ 2.077317, 43.39563 ], [ 2.085693, 43.398082 ], [ 2.091681, 43.39389 ], [ 2.095112, 43.3962 ], [ 2.104399, 43.395602 ], [ 2.108785, 43.39446 ], [ 2.111065, 43.39619 ], [ 2.130495, 43.40122 ], [ 2.133557, 43.40356 ], [ 2.138318, 43.403714 ], [ 2.156305, 43.414894 ], [ 2.170349, 43.415876 ], [ 2.184058, 43.397779 ], [ 2.211099, 43.384565 ], [ 2.215024, 43.382615 ], [ 2.229322, 43.408286 ], [ 2.223344, 43.417789 ], [ 2.222523, 43.42831 ], [ 2.235584, 43.43756 ], [ 2.239358, 43.439747 ], [ 2.241344, 43.44268 ], [ 2.243802, 43.44544 ], [ 2.256687, 43.45364 ], [ 2.258295, 43.460113 ], [ 2.263919, 43.455923 ], [ 2.265415, 43.452919 ], [ 2.268692, 43.450611 ], [ 2.281798, 43.441449 ], [ 2.284875, 43.4433 ], [ 2.299698, 43.446812 ], [ 2.304106, 43.447929 ], [ 2.313931, 43.441064 ], [ 2.348387, 43.432774 ], [ 2.363082, 43.42457 ], [ 2.367331, 43.42318 ], [ 2.371245, 43.423076 ], [ 2.375171, 43.423 ], [ 2.398735, 43.417051 ], [ 2.406846, 43.419255 ], [ 2.404826, 43.42244 ], [ 2.40776, 43.42522 ], [ 2.42759, 43.43449 ], [ 2.451105, 43.43223 ], [ 2.469545, 43.43535 ], [ 2.473695, 43.43651 ], [ 2.477992, 43.43643 ], [ 2.494383, 43.436937 ], [ 2.497332, 43.434287 ], [ 2.518988, 43.423716 ], [ 2.548049, 43.42465 ], [ 2.561483, 43.42096 ], [ 2.565541, 43.42291 ], [ 2.565787, 43.42296 ], [ 2.569787, 43.42123 ], [ 2.583821, 43.412666 ], [ 2.593046, 43.411712 ], [ 2.593749, 43.40835 ], [ 2.586889, 43.39965 ], [ 2.573478, 43.399491 ], [ 2.569031, 43.400247 ], [ 2.566312, 43.39757 ], [ 2.557057, 43.38978 ], [ 2.552399, 43.37642 ], [ 2.555239, 43.366365 ], [ 2.54298, 43.347989 ], [ 2.540081, 43.34523 ], [ 2.551506, 43.33584 ], [ 2.555536, 43.337471 ], [ 2.583539, 43.333912 ], [ 2.590985, 43.3214 ], [ 2.592008, 43.31798 ], [ 2.596442, 43.31456 ], [ 2.599712, 43.31384 ], [ 2.600932, 43.301421 ], [ 2.601175, 43.298256 ], [ 2.617835, 43.287683 ], [ 2.616958, 43.284441 ], [ 2.624621, 43.28762 ], [ 2.631193, 43.29593 ], [ 2.639754, 43.295557 ], [ 2.643911, 43.29451 ], [ 2.659253, 43.292967 ], [ 2.659751, 43.29633 ], [ 2.674858, 43.303711 ], [ 2.677216, 43.31361 ], [ 2.685553, 43.31658 ], [ 2.687773, 43.323 ], [ 2.700735, 43.311207 ], [ 2.699148, 43.30833 ], [ 2.705513, 43.292266 ], [ 2.700303, 43.28281 ], [ 2.702969, 43.27682 ], [ 2.705185, 43.274472 ], [ 2.708919, 43.273655 ], [ 2.717737, 43.275558 ], [ 2.737904, 43.26725 ], [ 2.740772, 43.264578 ], [ 2.750072, 43.25739 ], [ 2.75252, 43.254594 ], [ 2.768509, 43.25726 ], [ 2.772493, 43.25803 ], [ 2.773293, 43.261242 ], [ 2.779998, 43.265241 ], [ 2.783181, 43.266633 ], [ 2.78708, 43.274035 ], [ 2.786968, 43.27444 ], [ 2.786537, 43.2844 ], [ 2.801825, 43.30031 ], [ 2.805735, 43.302361 ], [ 2.809682, 43.30437 ], [ 2.816603, 43.30865 ], [ 2.806109, 43.319211 ], [ 2.818156, 43.32396 ], [ 2.841926, 43.323686 ], [ 2.845974, 43.32562 ], [ 2.868538, 43.330064 ], [ 2.873742, 43.339633 ], [ 2.869575, 43.35645 ], [ 2.855626, 43.37348 ], [ 2.856778, 43.376288 ], [ 2.869181, 43.383636 ], [ 2.870568, 43.381011 ], [ 2.872288, 43.372934 ], [ 2.889793, 43.363723 ], [ 2.889904, 43.357345 ], [ 2.889495, 43.351767 ], [ 2.891178, 43.341802 ], [ 2.885119, 43.333249 ], [ 2.890884, 43.32793 ], [ 2.894929, 43.32626 ], [ 2.910982, 43.32005 ], [ 2.918369, 43.32351 ], [ 2.921249, 43.32608 ], [ 2.942061, 43.313666 ], [ 2.946079, 43.31196 ], [ 2.957536, 43.312476 ], [ 2.961798, 43.31304 ], [ 2.990723, 43.319222 ], [ 2.995281, 43.319555 ], [ 3.004423, 43.319708 ], [ 3.006281, 43.30013 ], [ 3.004816, 43.296769 ], [ 3.005738, 43.286244 ], [ 3.012103, 43.280936 ], [ 3.011118, 43.27762 ], [ 3.036064, 43.281912 ], [ 3.054347, 43.28004 ], [ 3.076978, 43.26293 ], [ 3.086199, 43.26382 ], [ 3.093639, 43.259874 ], [ 3.097452, 43.257928 ], [ 3.101424, 43.25616 ], [ 3.114664, 43.254745 ], [ 3.118897, 43.260731 ], [ 3.141627, 43.25951 ], [ 3.147017, 43.254157 ], [ 3.146508, 43.247384 ], [ 3.159183, 43.243228 ], [ 3.173126, 43.243836 ], [ 3.184023, 43.250124 ], [ 3.193229, 43.2504 ], [ 3.201526, 43.24776 ], [ 3.228989, 43.21916 ], [ 3.240561, 43.212809 ], [ 3.236801, 43.21059 ], [ 3.183535, 43.170042 ], [ 3.152601, 43.141127 ], [ 3.148739, 43.139334 ], [ 3.131174, 43.111474 ], [ 3.117663, 43.102198 ], [ 3.084479, 43.056162 ], [ 3.06484, 43.019814 ], [ 3.067308, 43.013229 ], [ 3.05581, 42.998073 ], [ 3.043813, 42.96364 ], [ 3.042843, 42.960163 ], [ 3.039848, 42.932025 ], [ 3.055225, 42.92409 ], [ 3.059819, 42.917906 ], [ 3.043511, 42.83815 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "12", "CODE_DEPT": "12", "NOM_DEPT": "AVEYRON", "CODE_CHF": "202", "NOM_CHF": "RODEZ", "X_CHF_LIEU": "6660", "Y_CHF_LIEU": "63613", "X_CENTROID": "6744", "Y_CENTROID": "63535", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.358663, 43.91452 ], [ 3.35509, 43.912512 ], [ 3.341916, 43.903707 ], [ 3.342568, 43.89419 ], [ 3.318657, 43.891142 ], [ 3.295145, 43.89498 ], [ 3.285828, 43.893312 ], [ 3.277444, 43.896771 ], [ 3.274142, 43.89853 ], [ 3.262608, 43.891 ], [ 3.261857, 43.88748 ], [ 3.255494, 43.87803 ], [ 3.242077, 43.873934 ], [ 3.235019, 43.86087 ], [ 3.236408, 43.853896 ], [ 3.251333, 43.840067 ], [ 3.249037, 43.82958 ], [ 3.24472, 43.828807 ], [ 3.236311, 43.82744 ], [ 3.231794, 43.826063 ], [ 3.222688, 43.81778 ], [ 3.205308, 43.81296 ], [ 3.18238, 43.81283 ], [ 3.155002, 43.817065 ], [ 3.151466, 43.81479 ], [ 3.150705, 43.813769 ], [ 3.126978, 43.817668 ], [ 3.112567, 43.82707 ], [ 3.085706, 43.835554 ], [ 3.071172, 43.834826 ], [ 3.066312, 43.83527 ], [ 3.058733, 43.827967 ], [ 3.058661, 43.818006 ], [ 3.063813, 43.81263 ], [ 3.050173, 43.804619 ], [ 3.048568, 43.801498 ], [ 3.05838, 43.7861 ], [ 3.057048, 43.7828 ], [ 3.058796, 43.77968 ], [ 3.07351, 43.767594 ], [ 3.065413, 43.755703 ], [ 3.056275, 43.75495 ], [ 3.053162, 43.74478 ], [ 3.057115, 43.73844 ], [ 3.053522, 43.732 ], [ 3.057648, 43.725743 ], [ 3.054971, 43.715972 ], [ 3.069165, 43.706849 ], [ 3.062363, 43.7024 ], [ 3.061872, 43.69601 ], [ 3.060678, 43.692807 ], [ 3.048231, 43.696953 ], [ 3.031387, 43.69243 ], [ 3.022657, 43.69437 ], [ 3.018665, 43.696 ], [ 3.013333, 43.70144 ], [ 2.996006, 43.706493 ], [ 2.982088, 43.70803 ], [ 2.973965, 43.704627 ], [ 2.969351, 43.704023 ], [ 2.957596, 43.699448 ], [ 2.954969, 43.69654 ], [ 2.942225, 43.691774 ], [ 2.934967, 43.694712 ], [ 2.925714, 43.705711 ], [ 2.919189, 43.732351 ], [ 2.921903, 43.73515 ], [ 2.906604, 43.740943 ], [ 2.902605, 43.742272 ], [ 2.870453, 43.739161 ], [ 2.862726, 43.747556 ], [ 2.858564, 43.74914 ], [ 2.858278, 43.74923 ], [ 2.853612, 43.74858 ], [ 2.835755, 43.751109 ], [ 2.823856, 43.761205 ], [ 2.814518, 43.76158 ], [ 2.789149, 43.752549 ], [ 2.781499, 43.736958 ], [ 2.77671, 43.73662 ], [ 2.740543, 43.72896 ], [ 2.713823, 43.74197 ], [ 2.700006, 43.74256 ], [ 2.695398, 43.743158 ], [ 2.68173, 43.74351 ], [ 2.659933, 43.756371 ], [ 2.656754, 43.76271 ], [ 2.632803, 43.778159 ], [ 2.629213, 43.78025 ], [ 2.624269, 43.789819 ], [ 2.613699, 43.796972 ], [ 2.609147, 43.80681 ], [ 2.598972, 43.813639 ], [ 2.599743, 43.817089 ], [ 2.596139, 43.81881 ], [ 2.593359, 43.818271 ], [ 2.590488, 43.818278 ], [ 2.561802, 43.84597 ], [ 2.564387, 43.85097 ], [ 2.56361, 43.863215 ], [ 2.567351, 43.86851 ], [ 2.578587, 43.87319 ], [ 2.57997, 43.876184 ], [ 2.576271, 43.88176 ], [ 2.552007, 43.89157 ], [ 2.550498, 43.89822 ], [ 2.551007, 43.901583 ], [ 2.552838, 43.907791 ], [ 2.553842, 43.921087 ], [ 2.536983, 43.930395 ], [ 2.537229, 43.933825 ], [ 2.508499, 43.94527 ], [ 2.499084, 43.94509 ], [ 2.499348, 43.95052 ], [ 2.503845, 43.95485 ], [ 2.51981, 43.96002 ], [ 2.52088, 43.963112 ], [ 2.523088, 43.97323 ], [ 2.523255, 43.98015 ], [ 2.501798, 43.986633 ], [ 2.498413, 43.99306 ], [ 2.494988, 43.995512 ], [ 2.494652, 43.99831 ], [ 2.491762, 44.003525 ], [ 2.495189, 44.00523 ], [ 2.495398, 44.01121 ], [ 2.491987, 44.01325 ], [ 2.484888, 44.02469 ], [ 2.46993, 44.03032 ], [ 2.46679, 44.03254 ], [ 2.460871, 44.050323 ], [ 2.456246, 44.05107 ], [ 2.41021, 44.055858 ], [ 2.410932, 44.069299 ], [ 2.399704, 44.084026 ], [ 2.389214, 44.09111 ], [ 2.389215, 44.09457 ], [ 2.384438, 44.09396 ], [ 2.357739, 44.10155 ], [ 2.355459, 44.104332 ], [ 2.351988, 44.106373 ], [ 2.348244, 44.108232 ], [ 2.340338, 44.11139 ], [ 2.332443, 44.123024 ], [ 2.32333, 44.124453 ], [ 2.307295, 44.11854 ], [ 2.290639, 44.123572 ], [ 2.297572, 44.135894 ], [ 2.288372, 44.14301 ], [ 2.28488, 44.145335 ], [ 2.261838, 44.144678 ], [ 2.23754, 44.134313 ], [ 2.224895, 44.138644 ], [ 2.191958, 44.139739 ], [ 2.188454, 44.13738 ], [ 2.182698, 44.14133 ], [ 2.193505, 44.14781 ], [ 2.201984, 44.14492 ], [ 2.211048, 44.146619 ], [ 2.216793, 44.151557 ], [ 2.237614, 44.158626 ], [ 2.223858, 44.167026 ], [ 2.205638, 44.1706 ], [ 2.199835, 44.16527 ], [ 2.191033, 44.16346 ], [ 2.182014, 44.17151 ], [ 2.18079, 44.17828 ], [ 2.17194, 44.18054 ], [ 2.15815, 44.17923 ], [ 2.15473, 44.181296 ], [ 2.158773, 44.186971 ], [ 2.152652, 44.19145 ], [ 2.149213, 44.20054 ], [ 2.144534, 44.20048 ], [ 2.135213, 44.20041 ], [ 2.128047, 44.19611 ], [ 2.114064, 44.1958 ], [ 2.109785, 44.19499 ], [ 2.103134, 44.19149 ], [ 2.107798, 44.18287 ], [ 2.104725, 44.180242 ], [ 2.096551, 44.179068 ], [ 2.093014, 44.185178 ], [ 2.075514, 44.18204 ], [ 2.067551, 44.190122 ], [ 2.063174, 44.18924 ], [ 2.051179, 44.18686 ], [ 2.058502, 44.17228 ], [ 2.03111, 44.16875 ], [ 2.027089, 44.16693 ], [ 2.03025, 44.15757 ], [ 2.008016, 44.15273 ], [ 2.003793, 44.15116 ], [ 1.999161, 44.15079 ], [ 1.990171, 44.149453 ], [ 1.997054, 44.15822 ], [ 1.975743, 44.16476 ], [ 1.973623, 44.171353 ], [ 1.980073, 44.176427 ], [ 1.977979, 44.179513 ], [ 1.96062, 44.184138 ], [ 1.946484, 44.18282 ], [ 1.94071, 44.16977 ], [ 1.934353, 44.17464 ], [ 1.931422, 44.187513 ], [ 1.922996, 44.18919 ], [ 1.915747, 44.18554 ], [ 1.911095, 44.185458 ], [ 1.91299, 44.18841 ], [ 1.905812, 44.19214 ], [ 1.902943, 44.204 ], [ 1.890347, 44.20757 ], [ 1.894638, 44.21281 ], [ 1.90835, 44.21245 ], [ 1.932163, 44.242647 ], [ 1.940187, 44.24479 ], [ 1.943065, 44.247586 ], [ 1.957699, 44.241767 ], [ 1.962021, 44.242339 ], [ 1.960638, 44.24882 ], [ 1.970633, 44.276348 ], [ 1.966238, 44.277594 ], [ 1.943413, 44.280015 ], [ 1.940271, 44.28255 ], [ 1.93638, 44.280883 ], [ 1.909854, 44.281415 ], [ 1.901391, 44.279116 ], [ 1.87319, 44.290822 ], [ 1.868779, 44.29204 ], [ 1.880166, 44.303109 ], [ 1.860483, 44.32194 ], [ 1.872421, 44.33263 ], [ 1.880816, 44.334993 ], [ 1.885627, 44.335267 ], [ 1.882083, 44.340074 ], [ 1.884697, 44.343009 ], [ 1.891626, 44.351766 ], [ 1.905909, 44.350856 ], [ 1.910827, 44.356738 ], [ 1.910045, 44.36019 ], [ 1.908239, 44.363419 ], [ 1.896363, 44.36943 ], [ 1.891429, 44.37913 ], [ 1.874402, 44.39144 ], [ 1.868875, 44.397213 ], [ 1.874271, 44.406866 ], [ 1.870881, 44.42065 ], [ 1.87332, 44.423691 ], [ 1.873186, 44.42414 ], [ 1.85067, 44.43731 ], [ 1.848247, 44.447676 ], [ 1.851868, 44.461246 ], [ 1.847655, 44.46751 ], [ 1.845965, 44.470817 ], [ 1.839533, 44.476098 ], [ 1.839964, 44.479604 ], [ 1.861576, 44.48732 ], [ 1.873307, 44.48432 ], [ 1.877448, 44.4841 ], [ 1.881928, 44.483945 ], [ 1.887907, 44.5048 ], [ 1.892546, 44.505578 ], [ 1.905072, 44.501274 ], [ 1.908117, 44.488196 ], [ 1.916454, 44.486324 ], [ 1.919767, 44.48867 ], [ 1.911268, 44.50287 ], [ 1.918913, 44.50437 ], [ 1.928272, 44.50508 ], [ 1.943408, 44.51711 ], [ 1.948186, 44.517304 ], [ 1.957918, 44.519044 ], [ 1.97072, 44.529176 ], [ 1.971753, 44.532553 ], [ 1.973838, 44.53561 ], [ 1.979555, 44.54102 ], [ 1.984239, 44.54726 ], [ 2.004211, 44.55696 ], [ 2.023677, 44.556333 ], [ 2.02803, 44.558001 ], [ 2.028857, 44.55823 ], [ 2.032878, 44.560204 ], [ 2.035452, 44.570211 ], [ 2.055083, 44.58027 ], [ 2.06364, 44.579268 ], [ 2.061247, 44.569389 ], [ 2.064612, 44.56775 ], [ 2.079834, 44.585022 ], [ 2.095353, 44.57801 ], [ 2.098323, 44.57582 ], [ 2.104023, 44.571473 ], [ 2.11629, 44.573102 ], [ 2.126954, 44.578256 ], [ 2.13433, 44.57037 ], [ 2.14808, 44.570651 ], [ 2.152562, 44.571586 ], [ 2.166655, 44.5887 ], [ 2.169552, 44.59132 ], [ 2.169815, 44.59141 ], [ 2.185813, 44.59071 ], [ 2.193314, 44.587763 ], [ 2.198334, 44.593561 ], [ 2.197709, 44.600318 ], [ 2.209251, 44.605731 ], [ 2.207475, 44.615532 ], [ 2.216622, 44.621251 ], [ 2.22057, 44.622035 ], [ 2.21762, 44.624796 ], [ 2.208414, 44.64384 ], [ 2.227115, 44.654033 ], [ 2.250539, 44.652042 ], [ 2.265206, 44.660847 ], [ 2.270054, 44.660582 ], [ 2.274461, 44.66121 ], [ 2.286189, 44.66646 ], [ 2.303361, 44.6632 ], [ 2.320317, 44.66728 ], [ 2.32413, 44.669154 ], [ 2.329813, 44.66653 ], [ 2.332221, 44.66459 ], [ 2.336617, 44.658768 ], [ 2.335043, 44.648837 ], [ 2.350984, 44.64123 ], [ 2.36529, 44.64185 ], [ 2.380878, 44.649671 ], [ 2.392671, 44.644937 ], [ 2.397134, 44.646186 ], [ 2.401279, 44.645416 ], [ 2.404766, 44.647182 ], [ 2.43565, 44.639745 ], [ 2.450108, 44.64808 ], [ 2.46804, 44.642895 ], [ 2.469, 44.649453 ], [ 2.471965, 44.65202 ], [ 2.476306, 44.65033 ], [ 2.484685, 44.65259 ], [ 2.489524, 44.658715 ], [ 2.489176, 44.669256 ], [ 2.500496, 44.68881 ], [ 2.516627, 44.695884 ], [ 2.518885, 44.69903 ], [ 2.520134, 44.702048 ], [ 2.5364, 44.711958 ], [ 2.55623, 44.722231 ], [ 2.549397, 44.728649 ], [ 2.552128, 44.73146 ], [ 2.554142, 44.734 ], [ 2.55424, 44.73915 ], [ 2.553678, 44.75742 ], [ 2.560675, 44.761043 ], [ 2.563364, 44.77124 ], [ 2.564486, 44.77809 ], [ 2.578243, 44.78595 ], [ 2.586564, 44.78399 ], [ 2.590137, 44.78628 ], [ 2.600123, 44.793667 ], [ 2.598425, 44.82077 ], [ 2.609777, 44.827284 ], [ 2.610224, 44.83402 ], [ 2.604162, 44.84309 ], [ 2.618041, 44.852972 ], [ 2.626616, 44.869226 ], [ 2.629077, 44.872259 ], [ 2.653049, 44.86977 ], [ 2.656223, 44.87242 ], [ 2.658611, 44.8858 ], [ 2.679376, 44.90442 ], [ 2.681868, 44.907348 ], [ 2.689464, 44.903768 ], [ 2.702556, 44.90531 ], [ 2.706372, 44.907091 ], [ 2.714067, 44.926073 ], [ 2.716766, 44.928835 ], [ 2.724568, 44.92734 ], [ 2.733919, 44.9384 ], [ 2.737688, 44.940366 ], [ 2.738254, 44.941222 ], [ 2.742087, 44.931975 ], [ 2.755915, 44.932151 ], [ 2.776095, 44.90964 ], [ 2.772244, 44.900025 ], [ 2.775894, 44.89026 ], [ 2.77859, 44.8875 ], [ 2.775611, 44.884879 ], [ 2.767711, 44.86593 ], [ 2.772282, 44.856403 ], [ 2.781647, 44.856971 ], [ 2.784749, 44.863216 ], [ 2.80279, 44.873829 ], [ 2.807588, 44.8741 ], [ 2.814631, 44.869447 ], [ 2.851531, 44.87189 ], [ 2.854931, 44.87431 ], [ 2.859679, 44.874465 ], [ 2.860544, 44.86764 ], [ 2.855424, 44.85473 ], [ 2.863543, 44.84742 ], [ 2.861554, 44.837958 ], [ 2.869874, 44.82958 ], [ 2.879446, 44.8031 ], [ 2.889642, 44.78833 ], [ 2.897866, 44.78511 ], [ 2.906917, 44.78545 ], [ 2.91673, 44.79205 ], [ 2.920191, 44.794314 ], [ 2.931811, 44.78372 ], [ 2.933774, 44.78065 ], [ 2.936373, 44.774086 ], [ 2.931708, 44.764522 ], [ 2.917767, 44.76596 ], [ 2.914118, 44.76372 ], [ 2.914287, 44.760278 ], [ 2.917021, 44.75743 ], [ 2.930116, 44.75357 ], [ 2.93351, 44.747201 ], [ 2.931312, 44.73721 ], [ 2.923264, 44.728648 ], [ 2.929367, 44.716201 ], [ 2.930886, 44.71303 ], [ 2.934201, 44.696226 ], [ 2.941418, 44.687228 ], [ 2.939346, 44.67758 ], [ 2.9475, 44.67433 ], [ 2.955269, 44.662188 ], [ 2.962677, 44.65787 ], [ 2.961872, 44.654466 ], [ 2.967626, 44.650498 ], [ 2.97025, 44.64826 ], [ 2.977213, 44.64471 ], [ 2.981677, 44.644686 ], [ 2.985448, 44.64421 ], [ 2.987819, 44.64119 ], [ 3.013273, 44.620847 ], [ 3.018388, 44.61126 ], [ 3.030708, 44.600741 ], [ 3.031891, 44.598463 ], [ 3.037131, 44.59554 ], [ 3.041086, 44.594202 ], [ 3.055354, 44.58707 ], [ 3.059631, 44.58163 ], [ 3.061845, 44.579 ], [ 3.076196, 44.57255 ], [ 3.076607, 44.5695 ], [ 3.079021, 44.566472 ], [ 3.08347, 44.56032 ], [ 3.07491, 44.533292 ], [ 3.076238, 44.519464 ], [ 3.075465, 44.51598 ], [ 3.068932, 44.502706 ], [ 3.09956, 44.48043 ], [ 3.103506, 44.479535 ], [ 3.117325, 44.47379 ], [ 3.124866, 44.4613 ], [ 3.135486, 44.455519 ], [ 3.136186, 44.44879 ], [ 3.136367, 44.44539 ], [ 3.135077, 44.442016 ], [ 3.142256, 44.433734 ], [ 3.141045, 44.426796 ], [ 3.129938, 44.420337 ], [ 3.126721, 44.41396 ], [ 3.130371, 44.412037 ], [ 3.137244, 44.408266 ], [ 3.137053, 44.391621 ], [ 3.119743, 44.386331 ], [ 3.123395, 44.38021 ], [ 3.122494, 44.370017 ], [ 3.120492, 44.366814 ], [ 3.123591, 44.360771 ], [ 3.131976, 44.357178 ], [ 3.128198, 44.3509 ], [ 3.134194, 44.334528 ], [ 3.150937, 44.329933 ], [ 3.146076, 44.31713 ], [ 3.154266, 44.309225 ], [ 3.125306, 44.28542 ], [ 3.124527, 44.26147 ], [ 3.133898, 44.262382 ], [ 3.138298, 44.26397 ], [ 3.14016, 44.26704 ], [ 3.14617, 44.276031 ], [ 3.154268, 44.27304 ], [ 3.160532, 44.24628 ], [ 3.174415, 44.24526 ], [ 3.187826, 44.24891 ], [ 3.195687, 44.24066 ], [ 3.23054, 44.23034 ], [ 3.221213, 44.207713 ], [ 3.219211, 44.204503 ], [ 3.215799, 44.2021 ], [ 3.212071, 44.19578 ], [ 3.203593, 44.193462 ], [ 3.226313, 44.190592 ], [ 3.230589, 44.189863 ], [ 3.239261, 44.19066 ], [ 3.243235, 44.19257 ], [ 3.264363, 44.200308 ], [ 3.287881, 44.19952 ], [ 3.291616, 44.205676 ], [ 3.301043, 44.206461 ], [ 3.318327, 44.20039 ], [ 3.332084, 44.203509 ], [ 3.355603, 44.20084 ], [ 3.360423, 44.201169 ], [ 3.358391, 44.19447 ], [ 3.372075, 44.180725 ], [ 3.373648, 44.170765 ], [ 3.336682, 44.15813 ], [ 3.332488, 44.14864 ], [ 3.330226, 44.142165 ], [ 3.320354, 44.13595 ], [ 3.32359, 44.127009 ], [ 3.323929, 44.11194 ], [ 3.323849, 44.10892 ], [ 3.319087, 44.108373 ], [ 3.310698, 44.104941 ], [ 3.291562, 44.10483 ], [ 3.263376, 44.092726 ], [ 3.27474, 44.087541 ], [ 3.295925, 44.06954 ], [ 3.305423, 44.06919 ], [ 3.318423, 44.07902 ], [ 3.323059, 44.07985 ], [ 3.325456, 44.077483 ], [ 3.32891, 44.07903 ], [ 3.332517, 44.074501 ], [ 3.337492, 44.05874 ], [ 3.344557, 44.054636 ], [ 3.347875, 44.052402 ], [ 3.351731, 44.05026 ], [ 3.367643, 44.058215 ], [ 3.372685, 44.05247 ], [ 3.386492, 44.055081 ], [ 3.399699, 44.044845 ], [ 3.417944, 44.040016 ], [ 3.440799, 44.02678 ], [ 3.444774, 44.024718 ], [ 3.449727, 44.023276 ], [ 3.450981, 44.022541 ], [ 3.443552, 44.00234 ], [ 3.418529, 43.992295 ], [ 3.406388, 43.97317 ], [ 3.405615, 43.969682 ], [ 3.377571, 43.96695 ], [ 3.375884, 43.956729 ], [ 3.359211, 43.95027 ], [ 3.353982, 43.940756 ], [ 3.351722, 43.937721 ], [ 3.352274, 43.93431 ], [ 3.358663, 43.91452 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "13", "CODE_DEPT": "13", "NOM_DEPT": "BOUCHES-DU-RHONE", "CODE_CHF": "055", "NOM_CHF": "MARSEILLE", "X_CHF_LIEU": "8929", "Y_CHF_LIEU": "62470", "X_CENTROID": "8686", "Y_CENTROID": "62740", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.671875, 43.17927 ], [ 5.646046, 43.18805 ], [ 5.622601, 43.185563 ], [ 5.612854, 43.178078 ], [ 5.610538, 43.167937 ], [ 5.604779, 43.16237 ], [ 5.574389, 43.172577 ], [ 5.558413, 43.185557 ], [ 5.555549, 43.188378 ], [ 5.548151, 43.196869 ], [ 5.548442, 43.206807 ], [ 5.540941, 43.210529 ], [ 5.532034, 43.211684 ], [ 5.513058, 43.20425 ], [ 5.510209, 43.198136 ], [ 5.50472, 43.200343 ], [ 5.458471, 43.210271 ], [ 5.445482, 43.20426 ], [ 5.426896, 43.20842 ], [ 5.419124, 43.20643 ], [ 5.396697, 43.21236 ], [ 5.391961, 43.2121 ], [ 5.364386, 43.20782 ], [ 5.34196, 43.21331 ], [ 5.349102, 43.229787 ], [ 5.359573, 43.236641 ], [ 5.362532, 43.24307 ], [ 5.37073, 43.246359 ], [ 5.372868, 43.259748 ], [ 5.365954, 43.2692 ], [ 5.349456, 43.28172 ], [ 5.354913, 43.291072 ], [ 5.365526, 43.2957 ], [ 5.357338, 43.32206 ], [ 5.337261, 43.341584 ], [ 5.335269, 43.34781 ], [ 5.318518, 43.35446 ], [ 5.317781, 43.357915 ], [ 5.304191, 43.360428 ], [ 5.2826, 43.353749 ], [ 5.279491, 43.351232 ], [ 5.258061, 43.33843 ], [ 5.23728, 43.33164 ], [ 5.224243, 43.328281 ], [ 5.184996, 43.33229 ], [ 5.180496, 43.33163 ], [ 5.172103, 43.332338 ], [ 5.165452, 43.327927 ], [ 5.1474, 43.32644 ], [ 5.134583, 43.329197 ], [ 5.096744, 43.32933 ], [ 5.088465, 43.332536 ], [ 5.081484, 43.32766 ], [ 5.067585, 43.33058 ], [ 5.054341, 43.32665 ], [ 5.036386, 43.330956 ], [ 5.022317, 43.34069 ], [ 5.022418, 43.35412 ], [ 5.002422, 43.37735 ], [ 4.999269, 43.380018 ], [ 4.991497, 43.388224 ], [ 4.990482, 43.394569 ], [ 4.998715, 43.39744 ], [ 4.998102, 43.40077 ], [ 4.995505, 43.403485 ], [ 4.986308, 43.404131 ], [ 4.978808, 43.39923 ], [ 4.972761, 43.42158 ], [ 4.970185, 43.4246 ], [ 4.9252, 43.4322 ], [ 4.912417, 43.42729 ], [ 4.890158, 43.409722 ], [ 4.888997, 43.416482 ], [ 4.896276, 43.42759 ], [ 4.879085, 43.424079 ], [ 4.863772, 43.43769 ], [ 4.861022, 43.448121 ], [ 4.858338, 43.45069 ], [ 4.854889, 43.44908 ], [ 4.855162, 43.44567 ], [ 4.873421, 43.41659 ], [ 4.873714, 43.413058 ], [ 4.871733, 43.409844 ], [ 4.867696, 43.407916 ], [ 4.862877, 43.40815 ], [ 4.858676, 43.409943 ], [ 4.831947, 43.425273 ], [ 4.831433, 43.419991 ], [ 4.85672, 43.40325 ], [ 4.853031, 43.398296 ], [ 4.836466, 43.40554 ], [ 4.838655, 43.402582 ], [ 4.834886, 43.39701 ], [ 4.838453, 43.39472 ], [ 4.860808, 43.38884 ], [ 4.83966, 43.375721 ], [ 4.867902, 43.36599 ], [ 4.880551, 43.358254 ], [ 4.903338, 43.37044 ], [ 4.914874, 43.381661 ], [ 4.914735, 43.37526 ], [ 4.862444, 43.338321 ], [ 4.857128, 43.32868 ], [ 4.847295, 43.326855 ], [ 4.837984, 43.327851 ], [ 4.813158, 43.33914 ], [ 4.771267, 43.34917 ], [ 4.727118, 43.350167 ], [ 4.663632, 43.3464 ], [ 4.605821, 43.353502 ], [ 4.57897, 43.362202 ], [ 4.567104, 43.36893 ], [ 4.558763, 43.37747 ], [ 4.558901, 43.384385 ], [ 4.594584, 43.402797 ], [ 4.595988, 43.40624 ], [ 4.586959, 43.426575 ], [ 4.574367, 43.437458 ], [ 4.553438, 43.446677 ], [ 4.525505, 43.45329 ], [ 4.457127, 43.455781 ], [ 4.424678, 43.448752 ], [ 4.400303, 43.447433 ], [ 4.377024, 43.45262 ], [ 4.235183, 43.46 ], [ 4.230283, 43.460185 ], [ 4.231161, 43.47754 ], [ 4.239777, 43.49373 ], [ 4.237743, 43.496884 ], [ 4.240814, 43.499405 ], [ 4.244686, 43.501268 ], [ 4.293603, 43.51404 ], [ 4.320651, 43.527823 ], [ 4.309193, 43.54657 ], [ 4.315141, 43.551871 ], [ 4.318393, 43.557168 ], [ 4.322314, 43.55171 ], [ 4.3161, 43.546749 ], [ 4.332823, 43.535935 ], [ 4.35391, 43.547408 ], [ 4.37246, 43.54968 ], [ 4.390361, 43.56087 ], [ 4.404608, 43.560523 ], [ 4.408973, 43.561934 ], [ 4.41426, 43.567552 ], [ 4.4094, 43.57628 ], [ 4.424853, 43.58448 ], [ 4.443527, 43.58321 ], [ 4.448317, 43.583184 ], [ 4.452809, 43.584573 ], [ 4.473576, 43.603651 ], [ 4.473776, 43.610442 ], [ 4.466497, 43.61496 ], [ 4.448272, 43.61034 ], [ 4.438799, 43.611406 ], [ 4.428685, 43.619063 ], [ 4.42723, 43.625822 ], [ 4.451605, 43.66423 ], [ 4.477416, 43.672921 ], [ 4.476546, 43.6868 ], [ 4.486421, 43.69885 ], [ 4.49079, 43.7004 ], [ 4.524575, 43.702501 ], [ 4.537599, 43.707052 ], [ 4.559326, 43.699444 ], [ 4.578489, 43.69707 ], [ 4.597812, 43.68675 ], [ 4.626473, 43.68803 ], [ 4.613145, 43.71419 ], [ 4.61194, 43.724724 ], [ 4.627175, 43.754252 ], [ 4.628118, 43.757712 ], [ 4.629507, 43.761121 ], [ 4.650196, 43.780935 ], [ 4.652914, 43.787725 ], [ 4.654449, 43.809007 ], [ 4.64297, 43.83211 ], [ 4.652168, 43.839752 ], [ 4.664997, 43.843842 ], [ 4.666767, 43.84698 ], [ 4.661874, 43.85234 ], [ 4.643675, 43.851852 ], [ 4.646975, 43.85803 ], [ 4.64173, 43.8673 ], [ 4.661583, 43.873589 ], [ 4.662511, 43.870388 ], [ 4.66694, 43.87636 ], [ 4.692706, 43.88459 ], [ 4.705497, 43.894488 ], [ 4.7079, 43.89741 ], [ 4.703196, 43.897035 ], [ 4.698503, 43.89664 ], [ 4.723398, 43.906052 ], [ 4.735506, 43.91651 ], [ 4.739556, 43.92111 ], [ 4.738793, 43.923866 ], [ 4.769047, 43.919914 ], [ 4.773363, 43.919349 ], [ 4.805819, 43.91469 ], [ 4.810454, 43.91401 ], [ 4.854593, 43.910762 ], [ 4.876904, 43.903135 ], [ 4.881295, 43.901502 ], [ 4.907485, 43.88644 ], [ 4.922008, 43.886759 ], [ 4.926581, 43.886165 ], [ 4.930503, 43.88437 ], [ 4.969577, 43.869707 ], [ 4.988513, 43.853538 ], [ 4.9915, 43.85072 ], [ 4.995428, 43.84671 ], [ 4.997651, 43.84485 ], [ 5.033312, 43.823213 ], [ 5.035354, 43.820141 ], [ 5.04187, 43.809388 ], [ 5.042624, 43.8065 ], [ 5.048139, 43.789727 ], [ 5.086392, 43.77385 ], [ 5.090664, 43.77211 ], [ 5.119674, 43.76046 ], [ 5.123784, 43.758753 ], [ 5.135018, 43.75427 ], [ 5.138788, 43.752797 ], [ 5.18623, 43.735651 ], [ 5.231553, 43.747623 ], [ 5.236378, 43.74747 ], [ 5.240966, 43.747322 ], [ 5.245554, 43.747137 ], [ 5.264103, 43.744232 ], [ 5.281813, 43.74057 ], [ 5.28639, 43.74014 ], [ 5.3153, 43.736566 ], [ 5.322493, 43.731786 ], [ 5.325916, 43.729237 ], [ 5.33963, 43.72034 ], [ 5.343699, 43.71877 ], [ 5.366694, 43.71054 ], [ 5.370535, 43.709189 ], [ 5.384307, 43.70314 ], [ 5.388126, 43.70219 ], [ 5.408725, 43.69483 ], [ 5.412543, 43.692971 ], [ 5.440745, 43.68049 ], [ 5.445436, 43.67997 ], [ 5.483312, 43.669205 ], [ 5.487564, 43.668037 ], [ 5.530189, 43.6593 ], [ 5.549617, 43.659802 ], [ 5.57325, 43.661955 ], [ 5.601712, 43.65927 ], [ 5.606437, 43.658725 ], [ 5.61987, 43.66532 ], [ 5.623852, 43.66615 ], [ 5.641181, 43.672138 ], [ 5.65704, 43.685392 ], [ 5.67803, 43.69278 ], [ 5.68289, 43.69271 ], [ 5.712048, 43.69057 ], [ 5.737583, 43.71653 ], [ 5.750437, 43.721561 ], [ 5.753393, 43.724431 ], [ 5.776958, 43.721365 ], [ 5.78368, 43.716628 ], [ 5.784025, 43.703032 ], [ 5.78849, 43.69687 ], [ 5.808917, 43.690561 ], [ 5.813248, 43.68905 ], [ 5.810585, 43.68611 ], [ 5.801513, 43.673879 ], [ 5.799206, 43.659929 ], [ 5.794457, 43.660708 ], [ 5.770163, 43.66047 ], [ 5.718973, 43.649838 ], [ 5.716038, 43.647021 ], [ 5.703071, 43.64365 ], [ 5.681586, 43.61212 ], [ 5.688412, 43.58486 ], [ 5.657371, 43.575665 ], [ 5.669315, 43.564641 ], [ 5.673857, 43.56434 ], [ 5.691893, 43.56324 ], [ 5.70698, 43.55605 ], [ 5.710063, 43.553963 ], [ 5.725661, 43.55112 ], [ 5.71766, 43.535326 ], [ 5.714255, 43.50126 ], [ 5.703216, 43.49531 ], [ 5.698933, 43.48206 ], [ 5.703791, 43.482307 ], [ 5.72801, 43.46589 ], [ 5.750885, 43.434851 ], [ 5.773787, 43.421763 ], [ 5.787862, 43.42041 ], [ 5.788349, 43.420263 ], [ 5.787168, 43.417053 ], [ 5.778369, 43.41001 ], [ 5.749077, 43.401409 ], [ 5.744663, 43.402827 ], [ 5.72205, 43.40867 ], [ 5.702862, 43.408127 ], [ 5.682788, 43.399166 ], [ 5.684662, 43.39593 ], [ 5.694293, 43.365413 ], [ 5.703385, 43.35724 ], [ 5.703233, 43.35373 ], [ 5.688016, 43.340887 ], [ 5.689808, 43.330924 ], [ 5.683491, 43.32184 ], [ 5.670125, 43.318864 ], [ 5.67974, 43.31885 ], [ 5.690692, 43.312629 ], [ 5.695071, 43.31374 ], [ 5.727039, 43.317488 ], [ 5.737105, 43.302067 ], [ 5.758411, 43.283964 ], [ 5.762613, 43.282444 ], [ 5.760788, 43.27032 ], [ 5.760763, 43.267225 ], [ 5.738292, 43.26193 ], [ 5.70169, 43.246946 ], [ 5.704584, 43.241447 ], [ 5.701154, 43.23892 ], [ 5.682372, 43.235304 ], [ 5.678421, 43.215161 ], [ 5.678393, 43.21163 ], [ 5.675956, 43.190643 ], [ 5.673562, 43.181963 ], [ 5.671875, 43.17927 ] ], [ [ 5.014453, 43.555546 ], [ 5.012691, 43.55223 ], [ 5.015638, 43.527614 ], [ 5.002653, 43.51278 ], [ 4.998675, 43.50258 ], [ 5.003477, 43.48536 ], [ 5.000815, 43.474933 ], [ 5.006775, 43.46972 ], [ 5.044516, 43.468394 ], [ 5.053299, 43.46035 ], [ 5.054861, 43.446338 ], [ 5.054155, 43.442832 ], [ 5.060963, 43.422544 ], [ 5.058618, 43.408774 ], [ 5.062131, 43.402417 ], [ 5.080698, 43.399793 ], [ 5.094708, 43.401539 ], [ 5.09943, 43.40206 ], [ 5.118567, 43.40424 ], [ 5.126604, 43.400251 ], [ 5.136299, 43.400421 ], [ 5.171916, 43.418639 ], [ 5.198607, 43.43959 ], [ 5.200041, 43.44639 ], [ 5.216388, 43.447159 ], [ 5.220468, 43.449163 ], [ 5.226715, 43.45385 ], [ 5.228384, 43.46026 ], [ 5.229661, 43.46675 ], [ 5.224678, 43.4756 ], [ 5.223864, 43.47884 ], [ 5.218799, 43.487224 ], [ 5.207307, 43.49185 ], [ 5.203014, 43.491128 ], [ 5.198722, 43.489451 ], [ 5.164353, 43.47001 ], [ 5.154339, 43.458 ], [ 5.14948, 43.457912 ], [ 5.125102, 43.483935 ], [ 5.113545, 43.507147 ], [ 5.117776, 43.512573 ], [ 5.117905, 43.51606 ], [ 5.114249, 43.522245 ], [ 5.105975, 43.525628 ], [ 5.062999, 43.52754 ], [ 5.04528, 43.52322 ], [ 5.02297, 43.556332 ], [ 5.018732, 43.555808 ], [ 5.014453, 43.555546 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "14", "CODE_DEPT": "14", "NOM_DEPT": "CALVADOS", "CODE_CHF": "118", "NOM_CHF": "CAEN", "X_CHF_LIEU": "4543", "Y_CHF_LIEU": "69032", "X_CENTROID": "4544", "Y_CENTROID": "68940", "CODE_REG": "25", "NOM_REGION": "BASSE-NORMANDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.412815, 48.950626 ], [ 0.400154, 48.952755 ], [ 0.404368, 48.96274 ], [ 0.377447, 48.972558 ], [ 0.374945, 48.969597 ], [ 0.356623, 48.94962 ], [ 0.333231, 48.942782 ], [ 0.329514, 48.945218 ], [ 0.319844, 48.94704 ], [ 0.308722, 48.954227 ], [ 0.304392, 48.95315 ], [ 0.282713, 48.94891 ], [ 0.278183, 48.95012 ], [ 0.276222, 48.96538 ], [ 0.271397, 48.96486 ], [ 0.257001, 48.963447 ], [ 0.244401, 48.958552 ], [ 0.242449, 48.95542 ], [ 0.2389, 48.9425 ], [ 0.224621, 48.94029 ], [ 0.222151, 48.943047 ], [ 0.214989, 48.94645 ], [ 0.187316, 48.94107 ], [ 0.184684, 48.93847 ], [ 0.179152, 48.9299 ], [ 0.170789, 48.927 ], [ 0.165756, 48.92588 ], [ 0.150868, 48.92717 ], [ 0.146026, 48.94051 ], [ 0.144625, 48.94337 ], [ 0.136288, 48.9504 ], [ 0.127608, 48.95222 ], [ 0.125316, 48.94992 ], [ 0.101453, 48.936112 ], [ 0.080723, 48.937984 ], [ 0.078168, 48.93532 ], [ 0.065764, 48.926145 ], [ 0.06374, 48.91677 ], [ 0.061767, 48.91375 ], [ 0.058007, 48.9078 ], [ 0.058093, 48.90507 ], [ 0.050136, 48.89928 ], [ 0.023808, 48.89517 ], [ -0.009861, 48.8838 ], [ -0.008969, 48.8809 ], [ -0.006177, 48.87223 ], [ -0.006654, 48.872 ], [ -0.009494, 48.87462 ], [ -0.02257, 48.876846 ], [ -0.031067, 48.873733 ], [ -0.030807, 48.869734 ], [ -0.03408, 48.86691 ], [ -0.059006, 48.853492 ], [ -0.060574, 48.85022 ], [ -0.069593, 48.842663 ], [ -0.075024, 48.84065 ], [ -0.079195, 48.84248 ], [ -0.08833, 48.84408 ], [ -0.106732, 48.83962 ], [ -0.114839, 48.840674 ], [ -0.124776, 48.847426 ], [ -0.127746, 48.83784 ], [ -0.14223, 48.83543 ], [ -0.144833, 48.83246 ], [ -0.126169, 48.81657 ], [ -0.130837, 48.817359 ], [ -0.14839, 48.822514 ], [ -0.151769, 48.82025 ], [ -0.174129, 48.82773 ], [ -0.180463, 48.83635 ], [ -0.198952, 48.84103 ], [ -0.204676, 48.846527 ], [ -0.208, 48.84447 ], [ -0.214942, 48.84073 ], [ -0.227631, 48.843263 ], [ -0.231433, 48.84476 ], [ -0.242242, 48.84928 ], [ -0.253713, 48.849514 ], [ -0.258988, 48.849901 ], [ -0.268018, 48.853183 ], [ -0.283313, 48.85239 ], [ -0.287467, 48.852722 ], [ -0.298548, 48.849159 ], [ -0.301102, 48.85222 ], [ -0.307438, 48.857707 ], [ -0.32852, 48.8576 ], [ -0.330234, 48.85474 ], [ -0.335751, 48.84632 ], [ -0.33373, 48.84351 ], [ -0.32966, 48.835523 ], [ -0.333989, 48.8335 ], [ -0.345416, 48.821833 ], [ -0.34715, 48.822514 ], [ -0.369708, 48.83553 ], [ -0.368887, 48.841806 ], [ -0.359269, 48.843661 ], [ -0.363386, 48.849126 ], [ -0.365815, 48.84871 ], [ -0.383774, 48.84698 ], [ -0.388768, 48.84807 ], [ -0.401276, 48.85894 ], [ -0.404559, 48.86157 ], [ -0.406375, 48.86827 ], [ -0.410852, 48.869961 ], [ -0.425236, 48.86646 ], [ -0.424948, 48.86976 ], [ -0.432673, 48.872694 ], [ -0.464764, 48.87099 ], [ -0.469371, 48.86803 ], [ -0.477606, 48.85936 ], [ -0.49708, 48.85578 ], [ -0.495536, 48.84904 ], [ -0.509979, 48.84597 ], [ -0.512126, 48.84849 ], [ -0.524007, 48.85031 ], [ -0.54965, 48.84627 ], [ -0.560863, 48.83431 ], [ -0.569821, 48.83052 ], [ -0.574716, 48.83111 ], [ -0.580286, 48.836553 ], [ -0.599866, 48.83492 ], [ -0.603179, 48.834514 ], [ -0.606409, 48.83389 ], [ -0.61079, 48.83198 ], [ -0.624501, 48.826973 ], [ -0.645422, 48.82722 ], [ -0.643054, 48.830407 ], [ -0.643436, 48.84095 ], [ -0.652919, 48.83846 ], [ -0.682991, 48.8423 ], [ -0.691249, 48.84623 ], [ -0.7055, 48.83679 ], [ -0.702481, 48.834216 ], [ -0.690819, 48.824385 ], [ -0.682172, 48.82183 ], [ -0.686626, 48.820049 ], [ -0.70847, 48.805706 ], [ -0.711532, 48.802766 ], [ -0.714679, 48.79987 ], [ -0.720012, 48.79936 ], [ -0.743942, 48.79192 ], [ -0.780627, 48.786651 ], [ -0.781431, 48.78347 ], [ -0.784904, 48.781185 ], [ -0.789464, 48.77964 ], [ -0.80823, 48.76011 ], [ -0.812822, 48.75846 ], [ -0.825322, 48.75249 ], [ -0.840936, 48.75223 ], [ -0.837619, 48.7549 ], [ -0.820382, 48.770574 ], [ -0.822003, 48.77224 ], [ -0.82521, 48.769537 ], [ -0.833212, 48.76516 ], [ -0.853875, 48.76388 ], [ -0.857529, 48.76153 ], [ -0.869777, 48.75643 ], [ -0.884687, 48.75712 ], [ -0.892271, 48.76549 ], [ -0.922326, 48.771356 ], [ -0.940336, 48.77857 ], [ -0.942241, 48.78178 ], [ -0.953693, 48.78832 ], [ -0.962351, 48.784613 ], [ -0.967055, 48.786087 ], [ -0.975072, 48.774519 ], [ -0.994239, 48.77715 ], [ -0.999312, 48.776852 ], [ -1.017017, 48.77285 ], [ -1.037394, 48.7828 ], [ -1.042029, 48.78283 ], [ -1.058734, 48.773351 ], [ -1.063501, 48.77507 ], [ -1.084108, 48.77931 ], [ -1.095982, 48.78666 ], [ -1.091833, 48.798734 ], [ -1.094949, 48.80162 ], [ -1.097289, 48.804671 ], [ -1.102298, 48.81427 ], [ -1.105514, 48.815457 ], [ -1.112704, 48.814984 ], [ -1.126652, 48.817358 ], [ -1.128609, 48.81711 ], [ -1.131205, 48.81992 ], [ -1.154292, 48.82314 ], [ -1.159278, 48.828538 ], [ -1.156907, 48.83489 ], [ -1.15708, 48.83637 ], [ -1.147021, 48.83563 ], [ -1.134947, 48.84645 ], [ -1.126199, 48.849 ], [ -1.121156, 48.84822 ], [ -1.120359, 48.85643 ], [ -1.101995, 48.866359 ], [ -1.09473, 48.87742 ], [ -1.09129, 48.87986 ], [ -1.0793, 48.8699 ], [ -1.069667, 48.871174 ], [ -1.064089, 48.87666 ], [ -1.059166, 48.87726 ], [ -1.057922, 48.87987 ], [ -1.05275, 48.88726 ], [ -1.050674, 48.890585 ], [ -1.049194, 48.89403 ], [ -1.021892, 48.90513 ], [ -1.013568, 48.92168 ], [ -1.02122, 48.926282 ], [ -1.052082, 48.923557 ], [ -1.066637, 48.919399 ], [ -1.071119, 48.92028 ], [ -1.075509, 48.92137 ], [ -1.07563, 48.92467 ], [ -1.065538, 48.931908 ], [ -1.064179, 48.941616 ], [ -1.071058, 48.94515 ], [ -1.055016, 48.94979 ], [ -1.058288, 48.95563 ], [ -1.056539, 48.95862 ], [ -1.052055, 48.95758 ], [ -1.044941, 48.96157 ], [ -1.031166, 48.960803 ], [ -1.027063, 48.962372 ], [ -1.020826, 48.95334 ], [ -1.010925, 48.95437 ], [ -1.001978, 48.95182 ], [ -0.997539, 48.950278 ], [ -0.994057, 48.95086 ], [ -0.990474, 48.950847 ], [ -0.986092, 48.952884 ], [ -0.954764, 48.965915 ], [ -0.944262, 48.96699 ], [ -0.941689, 48.96985 ], [ -0.915084, 48.98955 ], [ -0.909472, 48.998588 ], [ -0.908525, 49.00182 ], [ -0.905113, 49.0114 ], [ -0.901754, 49.012587 ], [ -0.8951, 49.011102 ], [ -0.885517, 49.0224 ], [ -0.867436, 49.02702 ], [ -0.862559, 49.02641 ], [ -0.862941, 49.033028 ], [ -0.870261, 49.03791 ], [ -0.885105, 49.04012 ], [ -0.891404, 49.045585 ], [ -0.880508, 49.05299 ], [ -0.876058, 49.05484 ], [ -0.875705, 49.05835 ], [ -0.870789, 49.064616 ], [ -0.869699, 49.06892 ], [ -0.869083, 49.07131 ], [ -0.870349, 49.073588 ], [ -0.870823, 49.077002 ], [ -0.880054, 49.08902 ], [ -0.878176, 49.09231 ], [ -0.877933, 49.10281 ], [ -0.877089, 49.10562 ], [ -0.877293, 49.108535 ], [ -0.878455, 49.1171 ], [ -0.88332, 49.11632 ], [ -0.893182, 49.117257 ], [ -0.924798, 49.101394 ], [ -0.922908, 49.10468 ], [ -0.914368, 49.1136 ], [ -0.904396, 49.115741 ], [ -0.888682, 49.125091 ], [ -0.89063, 49.13074 ], [ -0.895489, 49.132243 ], [ -0.900657, 49.132021 ], [ -0.905686, 49.132857 ], [ -0.903756, 49.136007 ], [ -0.907235, 49.13847 ], [ -0.937614, 49.15006 ], [ -0.931332, 49.15787 ], [ -0.936054, 49.158234 ], [ -0.958777, 49.16139 ], [ -0.956748, 49.164648 ], [ -0.947337, 49.16562 ], [ -0.937743, 49.16276 ], [ -0.92794, 49.165259 ], [ -0.912375, 49.183238 ], [ -0.910471, 49.19293 ], [ -0.887334, 49.201773 ], [ -0.901576, 49.20482 ], [ -0.920925, 49.221585 ], [ -0.924353, 49.22818 ], [ -0.920701, 49.230764 ], [ -0.925287, 49.2316 ], [ -0.931039, 49.226638 ], [ -0.932547, 49.21773 ], [ -0.937402, 49.21654 ], [ -0.959274, 49.198916 ], [ -0.97222, 49.19345 ], [ -0.987315, 49.19434 ], [ -0.988753, 49.19767 ], [ -1.008002, 49.20323 ], [ -1.023564, 49.20336 ], [ -1.024082, 49.20384 ], [ -1.036842, 49.221401 ], [ -1.047026, 49.221572 ], [ -1.053793, 49.22638 ], [ -1.058388, 49.2252 ], [ -1.062107, 49.22741 ], [ -1.074542, 49.23259 ], [ -1.087678, 49.24554 ], [ -1.092615, 49.24399 ], [ -1.095265, 49.24655 ], [ -1.095279, 49.25263 ], [ -1.104845, 49.252897 ], [ -1.112984, 49.26151 ], [ -1.133356, 49.2715 ], [ -1.128905, 49.27657 ], [ -1.12114, 49.27874 ], [ -1.127154, 49.28374 ], [ -1.131559, 49.284796 ], [ -1.136826, 49.293 ], [ -1.139452, 49.3096 ], [ -1.116762, 49.32407 ], [ -1.113308, 49.326691 ], [ -1.118898, 49.35236 ], [ -1.119623, 49.35557 ], [ -1.115399, 49.351509 ], [ -1.116896, 49.361116 ], [ -1.093408, 49.37874 ], [ -1.089835, 49.38112 ], [ -1.073854, 49.38946 ], [ -1.058433, 49.39061 ], [ -1.048768, 49.388332 ], [ -1.024409, 49.39226 ], [ -1.019456, 49.393279 ], [ -0.989825, 49.3972 ], [ -0.985018, 49.39585 ], [ -0.966293, 49.39674 ], [ -0.961539, 49.396433 ], [ -0.930502, 49.3932 ], [ -0.925348, 49.39251 ], [ -0.916462, 49.38644 ], [ -0.912785, 49.38485 ], [ -0.886364, 49.37323 ], [ -0.881651, 49.37159 ], [ -0.865136, 49.36657 ], [ -0.860979, 49.365336 ], [ -0.832263, 49.35867 ], [ -0.827289, 49.35794 ], [ -0.793764, 49.35413 ], [ -0.788978, 49.35349 ], [ -0.750794, 49.34935 ], [ -0.745725, 49.349167 ], [ -0.724522, 49.34701 ], [ -0.719149, 49.34699 ], [ -0.672752, 49.345919 ], [ -0.66755, 49.345969 ], [ -0.649337, 49.346485 ], [ -0.645149, 49.3453 ], [ -0.630396, 49.341549 ], [ -0.625153, 49.340626 ], [ -0.611433, 49.34017 ], [ -0.593496, 49.340853 ], [ -0.572645, 49.34341 ], [ -0.558218, 49.34589 ], [ -0.553247, 49.3461 ], [ -0.511079, 49.3445 ], [ -0.505871, 49.34386 ], [ -0.471589, 49.338039 ], [ -0.466605, 49.33744 ], [ -0.438399, 49.33506 ], [ -0.43362, 49.33504 ], [ -0.402614, 49.333785 ], [ -0.397515, 49.33307 ], [ -0.380078, 49.32856 ], [ -0.375835, 49.32724 ], [ -0.363549, 49.32354 ], [ -0.359523, 49.32218 ], [ -0.343029, 49.31574 ], [ -0.339703, 49.313462 ], [ -0.31365, 49.302511 ], [ -0.309229, 49.30072 ], [ -0.291954, 49.29563 ], [ -0.287498, 49.29455 ], [ -0.283353, 49.293622 ], [ -0.279146, 49.292801 ], [ -0.253851, 49.289995 ], [ -0.230361, 49.283222 ], [ -0.225694, 49.28183 ], [ -0.20626, 49.28623 ], [ -0.174875, 49.28601 ], [ -0.169663, 49.28624 ], [ -0.14424, 49.28883 ], [ -0.139239, 49.289604 ], [ -0.09254, 49.29824 ], [ -0.087169, 49.29791 ], [ -0.082723, 49.301775 ], [ -0.071092, 49.306066 ], [ -0.066155, 49.30703 ], [ -0.044973, 49.3127 ], [ -0.040899, 49.314081 ], [ -0.018065, 49.31986 ], [ -0.013498, 49.32106 ], [ 0.010636, 49.330625 ], [ 0.014308, 49.332569 ], [ 0.028093, 49.33986 ], [ 0.031425, 49.34177 ], [ 0.04982, 49.350856 ], [ 0.053299, 49.35287 ], [ 0.058294, 49.35607 ], [ 0.071983, 49.367919 ], [ 0.075406, 49.365852 ], [ 0.101641, 49.38744 ], [ 0.10539, 49.38988 ], [ 0.12787, 49.402117 ], [ 0.132337, 49.40357 ], [ 0.144745, 49.40624 ], [ 0.148789, 49.407397 ], [ 0.179885, 49.41367 ], [ 0.184686, 49.415361 ], [ 0.222823, 49.427242 ], [ 0.270271, 49.428501 ], [ 0.275543, 49.428665 ], [ 0.280583, 49.42879 ], [ 0.285603, 49.42903 ], [ 0.297224, 49.42986 ], [ 0.29781, 49.409253 ], [ 0.308366, 49.390287 ], [ 0.309068, 49.38688 ], [ 0.306587, 49.383996 ], [ 0.301714, 49.371305 ], [ 0.303456, 49.368016 ], [ 0.308051, 49.358082 ], [ 0.323662, 49.340117 ], [ 0.30706, 49.3188 ], [ 0.30424, 49.317199 ], [ 0.298154, 49.31441 ], [ 0.302649, 49.313683 ], [ 0.316021, 49.311309 ], [ 0.322439, 49.29633 ], [ 0.309988, 49.286386 ], [ 0.308998, 49.28322 ], [ 0.322277, 49.278762 ], [ 0.342181, 49.29351 ], [ 0.361083, 49.296608 ], [ 0.365656, 49.29512 ], [ 0.380112, 49.28776 ], [ 0.383554, 49.28576 ], [ 0.380626, 49.27979 ], [ 0.382787, 49.26402 ], [ 0.377722, 49.26389 ], [ 0.341482, 49.253678 ], [ 0.326531, 49.25289 ], [ 0.321521, 49.251985 ], [ 0.337503, 49.23117 ], [ 0.342009, 49.229286 ], [ 0.367048, 49.216595 ], [ 0.382813, 49.21603 ], [ 0.388402, 49.21194 ], [ 0.393648, 49.20674 ], [ 0.389366, 49.19665 ], [ 0.388119, 49.18981 ], [ 0.391913, 49.17854 ], [ 0.387636, 49.156981 ], [ 0.385822, 49.15405 ], [ 0.387361, 49.15318 ], [ 0.401342, 49.14951 ], [ 0.406567, 49.14951 ], [ 0.413143, 49.14635 ], [ 0.426698, 49.14674 ], [ 0.432367, 49.142202 ], [ 0.429977, 49.139263 ], [ 0.422719, 49.130814 ], [ 0.408273, 49.12858 ], [ 0.409704, 49.12217 ], [ 0.409399, 49.120857 ], [ 0.407959, 49.11788 ], [ 0.399783, 49.10081 ], [ 0.400959, 49.09786 ], [ 0.410106, 49.09766 ], [ 0.411408, 49.09491 ], [ 0.402183, 49.08846 ], [ 0.416455, 49.08738 ], [ 0.417885, 49.08396 ], [ 0.417277, 49.073357 ], [ 0.413397, 49.07538 ], [ 0.389902, 49.0764 ], [ 0.378878, 49.07071 ], [ 0.379166, 49.06745 ], [ 0.380383, 49.06125 ], [ 0.366966, 49.052356 ], [ 0.370827, 49.05017 ], [ 0.375069, 49.052092 ], [ 0.384959, 49.037014 ], [ 0.409538, 49.03283 ], [ 0.414601, 49.032816 ], [ 0.424546, 49.032031 ], [ 0.446052, 49.01901 ], [ 0.44418, 49.01313 ], [ 0.435081, 49.00628 ], [ 0.433737, 49.00333 ], [ 0.433439, 49.00022 ], [ 0.42676, 48.985718 ], [ 0.4256, 48.982652 ], [ 0.432448, 48.978229 ], [ 0.4322, 48.971908 ], [ 0.431508, 48.96876 ], [ 0.412815, 48.950626 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "15", "CODE_DEPT": "15", "NOM_DEPT": "CANTAL", "CODE_CHF": "014", "NOM_CHF": "AURILLAC", "X_CHF_LIEU": "6557", "Y_CHF_LIEU": "64252", "X_CENTROID": "6739", "Y_CENTROID": "64391", "CODE_REG": "83", "NOM_REGION": "AUVERGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.207475, 44.615532 ], [ 2.204864, 44.618394 ], [ 2.176555, 44.63547 ], [ 2.172326, 44.63578 ], [ 2.169419, 44.63798 ], [ 2.169541, 44.6477 ], [ 2.173735, 44.653251 ], [ 2.169023, 44.65883 ], [ 2.16601, 44.66129 ], [ 2.176251, 44.67183 ], [ 2.179152, 44.674449 ], [ 2.158546, 44.697352 ], [ 2.154666, 44.699366 ], [ 2.142949, 44.6937 ], [ 2.138291, 44.69288 ], [ 2.132873, 44.697189 ], [ 2.130064, 44.6993 ], [ 2.133279, 44.709356 ], [ 2.148087, 44.72285 ], [ 2.154692, 44.74974 ], [ 2.153492, 44.75311 ], [ 2.148908, 44.76629 ], [ 2.149147, 44.7697 ], [ 2.150975, 44.770024 ], [ 2.155249, 44.77155 ], [ 2.164663, 44.77259 ], [ 2.168506, 44.781934 ], [ 2.169882, 44.784663 ], [ 2.171633, 44.790258 ], [ 2.169115, 44.792941 ], [ 2.166053, 44.79902 ], [ 2.16629, 44.81207 ], [ 2.144397, 44.823528 ], [ 2.139801, 44.823825 ], [ 2.136778, 44.826242 ], [ 2.127673, 44.840631 ], [ 2.127146, 44.84358 ], [ 2.117213, 44.848255 ], [ 2.097414, 44.87057 ], [ 2.09351, 44.87237 ], [ 2.084512, 44.888373 ], [ 2.085432, 44.898772 ], [ 2.10811, 44.910598 ], [ 2.105115, 44.91332 ], [ 2.102335, 44.919916 ], [ 2.076351, 44.934785 ], [ 2.080703, 44.95158 ], [ 2.079176, 44.954969 ], [ 2.062914, 44.976506 ], [ 2.08473, 44.982991 ], [ 2.089121, 44.984441 ], [ 2.093554, 44.98571 ], [ 2.106208, 44.98151 ], [ 2.133293, 44.98575 ], [ 2.139895, 45.002 ], [ 2.140896, 45.005409 ], [ 2.137833, 45.008132 ], [ 2.116938, 45.02197 ], [ 2.110262, 45.03861 ], [ 2.095159, 45.056039 ], [ 2.09837, 45.059424 ], [ 2.100208, 45.062032 ], [ 2.102112, 45.06216 ], [ 2.133317, 45.08181 ], [ 2.138101, 45.08145 ], [ 2.143403, 45.08631 ], [ 2.161012, 45.085152 ], [ 2.168152, 45.081073 ], [ 2.172776, 45.08128 ], [ 2.17937, 45.09437 ], [ 2.178862, 45.10476 ], [ 2.187932, 45.11671 ], [ 2.181103, 45.133215 ], [ 2.178793, 45.1363 ], [ 2.193102, 45.13566 ], [ 2.20141, 45.13915 ], [ 2.210419, 45.147158 ], [ 2.211364, 45.160464 ], [ 2.225778, 45.16092 ], [ 2.230423, 45.161921 ], [ 2.233009, 45.16731 ], [ 2.201689, 45.18198 ], [ 2.198415, 45.19893 ], [ 2.191141, 45.203443 ], [ 2.192536, 45.21975 ], [ 2.191163, 45.223055 ], [ 2.198876, 45.22183 ], [ 2.203062, 45.22316 ], [ 2.2023, 45.226575 ], [ 2.221133, 45.23755 ], [ 2.225317, 45.24375 ], [ 2.238564, 45.24721 ], [ 2.239008, 45.26047 ], [ 2.244194, 45.266343 ], [ 2.25783, 45.26984 ], [ 2.26155, 45.279768 ], [ 2.261734, 45.28323 ], [ 2.267932, 45.287185 ], [ 2.269695, 45.28989 ], [ 2.273244, 45.28967 ], [ 2.276134, 45.288184 ], [ 2.290328, 45.288473 ], [ 2.305283, 45.30654 ], [ 2.306146, 45.310012 ], [ 2.31693, 45.321415 ], [ 2.335034, 45.326423 ], [ 2.339866, 45.32581 ], [ 2.353415, 45.32979 ], [ 2.358813, 45.335521 ], [ 2.358556, 45.338987 ], [ 2.351509, 45.347654 ], [ 2.364432, 45.35775 ], [ 2.364622, 45.37468 ], [ 2.363485, 45.3803 ], [ 2.368799, 45.386005 ], [ 2.35025, 45.409609 ], [ 2.355135, 45.415031 ], [ 2.361707, 45.414987 ], [ 2.376968, 45.41432 ], [ 2.380991, 45.41354 ], [ 2.393588, 45.40852 ], [ 2.396444, 45.402168 ], [ 2.404119, 45.39802 ], [ 2.418301, 45.397358 ], [ 2.423124, 45.396959 ], [ 2.435245, 45.39019 ], [ 2.437851, 45.387822 ], [ 2.441552, 45.384527 ], [ 2.46839, 45.38281 ], [ 2.476367, 45.371566 ], [ 2.480204, 45.36969 ], [ 2.485575, 45.37879 ], [ 2.508434, 45.38013 ], [ 2.520664, 45.38433 ], [ 2.523372, 45.381546 ], [ 2.52351, 45.38481 ], [ 2.527255, 45.390756 ], [ 2.522233, 45.402603 ], [ 2.517482, 45.40205 ], [ 2.487538, 45.41817 ], [ 2.492279, 45.42402 ], [ 2.496051, 45.44383 ], [ 2.496878, 45.44716 ], [ 2.501585, 45.451517 ], [ 2.499701, 45.460433 ], [ 2.503695, 45.461684 ], [ 2.509307, 45.472397 ], [ 2.508409, 45.478508 ], [ 2.521354, 45.482391 ], [ 2.539263, 45.47925 ], [ 2.543963, 45.478982 ], [ 2.536998, 45.463817 ], [ 2.535771, 45.457499 ], [ 2.561151, 45.464724 ], [ 2.565898, 45.46486 ], [ 2.574355, 45.45663 ], [ 2.591404, 45.45063 ], [ 2.601189, 45.45092 ], [ 2.616335, 45.464152 ], [ 2.622732, 45.464336 ], [ 2.62547, 45.44728 ], [ 2.624533, 45.4439 ], [ 2.638222, 45.44576 ], [ 2.646883, 45.443613 ], [ 2.651365, 45.442745 ], [ 2.660432, 45.434795 ], [ 2.674162, 45.438122 ], [ 2.688464, 45.437694 ], [ 2.690031, 45.43185 ], [ 2.683295, 45.42459 ], [ 2.679942, 45.422696 ], [ 2.681746, 45.409104 ], [ 2.699535, 45.39845 ], [ 2.70457, 45.389 ], [ 2.714525, 45.38147 ], [ 2.728285, 45.389776 ], [ 2.745843, 45.39262 ], [ 2.750028, 45.391286 ], [ 2.762087, 45.38649 ], [ 2.776168, 45.38685 ], [ 2.780556, 45.38563 ], [ 2.785148, 45.384578 ], [ 2.789725, 45.39052 ], [ 2.815354, 45.4004 ], [ 2.828076, 45.390757 ], [ 2.847408, 45.39209 ], [ 2.852379, 45.39234 ], [ 2.857949, 45.383046 ], [ 2.868737, 45.37611 ], [ 2.87353, 45.37537 ], [ 2.880617, 45.3831 ], [ 2.888952, 45.380965 ], [ 2.892968, 45.37924 ], [ 2.905135, 45.36955 ], [ 2.918284, 45.366943 ], [ 2.922728, 45.368108 ], [ 2.920906, 45.36484 ], [ 2.924245, 45.3511 ], [ 2.92452, 45.34642 ], [ 2.932074, 45.32993 ], [ 2.947996, 45.312565 ], [ 2.948625, 45.30913 ], [ 2.967984, 45.306882 ], [ 2.999196, 45.290733 ], [ 3.013611, 45.28828 ], [ 3.018305, 45.28707 ], [ 3.023857, 45.295538 ], [ 3.03224, 45.297796 ], [ 3.036731, 45.2982 ], [ 3.05557, 45.305297 ], [ 3.059399, 45.30683 ], [ 3.056889, 45.309826 ], [ 3.065741, 45.31774 ], [ 3.063179, 45.33137 ], [ 3.07004, 45.33624 ], [ 3.088392, 45.339727 ], [ 3.093847, 45.349087 ], [ 3.096457, 45.352038 ], [ 3.100442, 45.352503 ], [ 3.103498, 45.354373 ], [ 3.111332, 45.350341 ], [ 3.114886, 45.33385 ], [ 3.113417, 45.327089 ], [ 3.099147, 45.32809 ], [ 3.091661, 45.324264 ], [ 3.100696, 45.31613 ], [ 3.113462, 45.31141 ], [ 3.110348, 45.30483 ], [ 3.102748, 45.300608 ], [ 3.097823, 45.300874 ], [ 3.085389, 45.2967 ], [ 3.08654, 45.290033 ], [ 3.101084, 45.291119 ], [ 3.112196, 45.284752 ], [ 3.126815, 45.28538 ], [ 3.1316, 45.28612 ], [ 3.145214, 45.287838 ], [ 3.155859, 45.29477 ], [ 3.160671, 45.295417 ], [ 3.161355, 45.289176 ], [ 3.169023, 45.281502 ], [ 3.164242, 45.26911 ], [ 3.185039, 45.27633 ], [ 3.185611, 45.27957 ], [ 3.209301, 45.28122 ], [ 3.222058, 45.272143 ], [ 3.226852, 45.27194 ], [ 3.228571, 45.265161 ], [ 3.222768, 45.24561 ], [ 3.232795, 45.238535 ], [ 3.235591, 45.22139 ], [ 3.242156, 45.216482 ], [ 3.24693, 45.215598 ], [ 3.251607, 45.216083 ], [ 3.272226, 45.209461 ], [ 3.270971, 45.192257 ], [ 3.262959, 45.18379 ], [ 3.26166, 45.170039 ], [ 3.267973, 45.15406 ], [ 3.281602, 45.151613 ], [ 3.275998, 45.142686 ], [ 3.288033, 45.120424 ], [ 3.29229, 45.122169 ], [ 3.301533, 45.12399 ], [ 3.313723, 45.11814 ], [ 3.313978, 45.118139 ], [ 3.330342, 45.11118 ], [ 3.349481, 45.111425 ], [ 3.351855, 45.104835 ], [ 3.36145, 45.10419 ], [ 3.32858, 45.09484 ], [ 3.324087, 45.096032 ], [ 3.3067, 45.10134 ], [ 3.300765, 45.106552 ], [ 3.2962, 45.106438 ], [ 3.283645, 45.102752 ], [ 3.286627, 45.096765 ], [ 3.285721, 45.093607 ], [ 3.291978, 45.08925 ], [ 3.308955, 45.086117 ], [ 3.312027, 45.08086 ], [ 3.299816, 45.055123 ], [ 3.303179, 45.045129 ], [ 3.298213, 45.03565 ], [ 3.305632, 45.02683 ], [ 3.307443, 45.023625 ], [ 3.311406, 45.021768 ], [ 3.332968, 45.02692 ], [ 3.337174, 45.02535 ], [ 3.327055, 45.010081 ], [ 3.345223, 45.01283 ], [ 3.35479, 45.00222 ], [ 3.368411, 45.004793 ], [ 3.371466, 45.002189 ], [ 3.363227, 44.99016 ], [ 3.34589, 44.985264 ], [ 3.34806, 44.97511 ], [ 3.356642, 44.97219 ], [ 3.361343, 44.97141 ], [ 3.355222, 44.958259 ], [ 3.354528, 44.95482 ], [ 3.35037, 44.95503 ], [ 3.337948, 44.95591 ], [ 3.334081, 44.95385 ], [ 3.31825, 44.94601 ], [ 3.314336, 44.93979 ], [ 3.300883, 44.939367 ], [ 3.285389, 44.926254 ], [ 3.267129, 44.92959 ], [ 3.262554, 44.93524 ], [ 3.265703, 44.941663 ], [ 3.256169, 44.9416 ], [ 3.252172, 44.94078 ], [ 3.248414, 44.939506 ], [ 3.250201, 44.93658 ], [ 3.244565, 44.931717 ], [ 3.249693, 44.916238 ], [ 3.231158, 44.911119 ], [ 3.226428, 44.90998 ], [ 3.228278, 44.90695 ], [ 3.227769, 44.89707 ], [ 3.234928, 44.888584 ], [ 3.225669, 44.882094 ], [ 3.214815, 44.875003 ], [ 3.195963, 44.872084 ], [ 3.190271, 44.862524 ], [ 3.181619, 44.86469 ], [ 3.179882, 44.86781 ], [ 3.164673, 44.875178 ], [ 3.16028, 44.88447 ], [ 3.157551, 44.886641 ], [ 3.151478, 44.893933 ], [ 3.147951, 44.89634 ], [ 3.142848, 44.902282 ], [ 3.128384, 44.903578 ], [ 3.119516, 44.89154 ], [ 3.103126, 44.88463 ], [ 3.104979, 44.86626 ], [ 3.103188, 44.863215 ], [ 3.094845, 44.85548 ], [ 3.100179, 44.843924 ], [ 3.097681, 44.841558 ], [ 3.099159, 44.83291 ], [ 3.096528, 44.83334 ], [ 3.093846, 44.83312 ], [ 3.089341, 44.832787 ], [ 3.072175, 44.836266 ], [ 3.07698, 44.82428 ], [ 3.072702, 44.822751 ], [ 3.064034, 44.820236 ], [ 3.047916, 44.803903 ], [ 3.046242, 44.79729 ], [ 3.048705, 44.79461 ], [ 3.049971, 44.78188 ], [ 3.049475, 44.77862 ], [ 3.044048, 44.773528 ], [ 3.048237, 44.76432 ], [ 3.042243, 44.75938 ], [ 3.037832, 44.75809 ], [ 3.031345, 44.74964 ], [ 3.028747, 44.73319 ], [ 3.027305, 44.73022 ], [ 3.034894, 44.727048 ], [ 3.039129, 44.715001 ], [ 3.034293, 44.71554 ], [ 3.016022, 44.712531 ], [ 3.001628, 44.686838 ], [ 2.999722, 44.67654 ], [ 2.985621, 44.658235 ], [ 2.981677, 44.644686 ], [ 2.977213, 44.64471 ], [ 2.97025, 44.64826 ], [ 2.967626, 44.650498 ], [ 2.961872, 44.654466 ], [ 2.962677, 44.65787 ], [ 2.955269, 44.662188 ], [ 2.9475, 44.67433 ], [ 2.939346, 44.67758 ], [ 2.941418, 44.687228 ], [ 2.934201, 44.696226 ], [ 2.930886, 44.71303 ], [ 2.929367, 44.716201 ], [ 2.923264, 44.728648 ], [ 2.931312, 44.73721 ], [ 2.93351, 44.747201 ], [ 2.930116, 44.75357 ], [ 2.917021, 44.75743 ], [ 2.914287, 44.760278 ], [ 2.914118, 44.76372 ], [ 2.917767, 44.76596 ], [ 2.931708, 44.764522 ], [ 2.936373, 44.774086 ], [ 2.933774, 44.78065 ], [ 2.931811, 44.78372 ], [ 2.920191, 44.794314 ], [ 2.91673, 44.79205 ], [ 2.906917, 44.78545 ], [ 2.897866, 44.78511 ], [ 2.889642, 44.78833 ], [ 2.879446, 44.8031 ], [ 2.869874, 44.82958 ], [ 2.861554, 44.837958 ], [ 2.863543, 44.84742 ], [ 2.855424, 44.85473 ], [ 2.860544, 44.86764 ], [ 2.859679, 44.874465 ], [ 2.854931, 44.87431 ], [ 2.851531, 44.87189 ], [ 2.814631, 44.869447 ], [ 2.807588, 44.8741 ], [ 2.80279, 44.873829 ], [ 2.784749, 44.863216 ], [ 2.781647, 44.856971 ], [ 2.772282, 44.856403 ], [ 2.767711, 44.86593 ], [ 2.775611, 44.884879 ], [ 2.77859, 44.8875 ], [ 2.775894, 44.89026 ], [ 2.772244, 44.900025 ], [ 2.776095, 44.90964 ], [ 2.755915, 44.932151 ], [ 2.742087, 44.931975 ], [ 2.738254, 44.941222 ], [ 2.737688, 44.940366 ], [ 2.733919, 44.9384 ], [ 2.724568, 44.92734 ], [ 2.716766, 44.928835 ], [ 2.714067, 44.926073 ], [ 2.706372, 44.907091 ], [ 2.702556, 44.90531 ], [ 2.689464, 44.903768 ], [ 2.681868, 44.907348 ], [ 2.679376, 44.90442 ], [ 2.658611, 44.8858 ], [ 2.656223, 44.87242 ], [ 2.653049, 44.86977 ], [ 2.629077, 44.872259 ], [ 2.626616, 44.869226 ], [ 2.618041, 44.852972 ], [ 2.604162, 44.84309 ], [ 2.610224, 44.83402 ], [ 2.609777, 44.827284 ], [ 2.598425, 44.82077 ], [ 2.600123, 44.793667 ], [ 2.590137, 44.78628 ], [ 2.586564, 44.78399 ], [ 2.578243, 44.78595 ], [ 2.564486, 44.77809 ], [ 2.563364, 44.77124 ], [ 2.560675, 44.761043 ], [ 2.553678, 44.75742 ], [ 2.55424, 44.73915 ], [ 2.554142, 44.734 ], [ 2.552128, 44.73146 ], [ 2.549397, 44.728649 ], [ 2.55623, 44.722231 ], [ 2.5364, 44.711958 ], [ 2.520134, 44.702048 ], [ 2.518885, 44.69903 ], [ 2.516627, 44.695884 ], [ 2.500496, 44.68881 ], [ 2.489176, 44.669256 ], [ 2.489524, 44.658715 ], [ 2.484685, 44.65259 ], [ 2.476306, 44.65033 ], [ 2.471965, 44.65202 ], [ 2.469, 44.649453 ], [ 2.46804, 44.642895 ], [ 2.450108, 44.64808 ], [ 2.43565, 44.639745 ], [ 2.404766, 44.647182 ], [ 2.401279, 44.645416 ], [ 2.397134, 44.646186 ], [ 2.392671, 44.644937 ], [ 2.380878, 44.649671 ], [ 2.36529, 44.64185 ], [ 2.350984, 44.64123 ], [ 2.335043, 44.648837 ], [ 2.336617, 44.658768 ], [ 2.332221, 44.66459 ], [ 2.329813, 44.66653 ], [ 2.32413, 44.669154 ], [ 2.320317, 44.66728 ], [ 2.303361, 44.6632 ], [ 2.286189, 44.66646 ], [ 2.274461, 44.66121 ], [ 2.270054, 44.660582 ], [ 2.265206, 44.660847 ], [ 2.250539, 44.652042 ], [ 2.227115, 44.654033 ], [ 2.208414, 44.64384 ], [ 2.21762, 44.624796 ], [ 2.22057, 44.622035 ], [ 2.216622, 44.621251 ], [ 2.207475, 44.615532 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "16", "CODE_DEPT": "16", "NOM_DEPT": "CHARENTE", "CODE_CHF": "015", "NOM_CHF": "ANGOULEME", "X_CHF_LIEU": "4788", "Y_CHF_LIEU": "65095", "X_CENTROID": "4823", "Y_CENTROID": "65170", "CODE_REG": "54", "NOM_REGION": "POITOU-CHARENTES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.004331, 45.19163 ], [ 0.000904, 45.193036 ], [ -0.002088, 45.19487 ], [ -0.002278, 45.198402 ], [ 0.005866, 45.22191 ], [ 0.00552, 45.22528 ], [ -0.032667, 45.23439 ], [ -0.040024, 45.24653 ], [ -0.044303, 45.248023 ], [ -0.046963, 45.248617 ], [ -0.049742, 45.24882 ], [ -0.059209, 45.24652 ], [ -0.094084, 45.24674 ], [ -0.099096, 45.246714 ], [ -0.11678, 45.24838 ], [ -0.120405, 45.250231 ], [ -0.115897, 45.251519 ], [ -0.112659, 45.254087 ], [ -0.113189, 45.270419 ], [ -0.108813, 45.28967 ], [ -0.113065, 45.290815 ], [ -0.130151, 45.29453 ], [ -0.145277, 45.28814 ], [ -0.144128, 45.294019 ], [ -0.147598, 45.29938 ], [ -0.150957, 45.301658 ], [ -0.15495, 45.302951 ], [ -0.161743, 45.30653 ], [ -0.178206, 45.30813 ], [ -0.196091, 45.305775 ], [ -0.20153, 45.31109 ], [ -0.228747, 45.321662 ], [ -0.230372, 45.31489 ], [ -0.253443, 45.311223 ], [ -0.258721, 45.305599 ], [ -0.257518, 45.298794 ], [ -0.279476, 45.305848 ], [ -0.283259, 45.308071 ], [ -0.285976, 45.32532 ], [ -0.290604, 45.32667 ], [ -0.279205, 45.33573 ], [ -0.281552, 45.338267 ], [ -0.282663, 45.338911 ], [ -0.277954, 45.34465 ], [ -0.277971, 45.34798 ], [ -0.26401, 45.33962 ], [ -0.247589, 45.34443 ], [ -0.24624, 45.347606 ], [ -0.246806, 45.35774 ], [ -0.271086, 45.35782 ], [ -0.27956, 45.35478 ], [ -0.28184, 45.36418 ], [ -0.290502, 45.36624 ], [ -0.295243, 45.37094 ], [ -0.304287, 45.371872 ], [ -0.31064, 45.37658 ], [ -0.311177, 45.383439 ], [ -0.310175, 45.38681 ], [ -0.302391, 45.38625 ], [ -0.300815, 45.38878 ], [ -0.286344, 45.388695 ], [ -0.278488, 45.392773 ], [ -0.274911, 45.39914 ], [ -0.251398, 45.402196 ], [ -0.248783, 45.4089 ], [ -0.234062, 45.4092 ], [ -0.236733, 45.41861 ], [ -0.246383, 45.417969 ], [ -0.25311, 45.421829 ], [ -0.248543, 45.435002 ], [ -0.251133, 45.43791 ], [ -0.254367, 45.440457 ], [ -0.254553, 45.442975 ], [ -0.265884, 45.449306 ], [ -0.268345, 45.455876 ], [ -0.281544, 45.45734 ], [ -0.2862, 45.45637 ], [ -0.285496, 45.45941 ], [ -0.280903, 45.47423 ], [ -0.267112, 45.471485 ], [ -0.259003, 45.47977 ], [ -0.257562, 45.486426 ], [ -0.246605, 45.49187 ], [ -0.242494, 45.490152 ], [ -0.240519, 45.494517 ], [ -0.246426, 45.50283 ], [ -0.256087, 45.503665 ], [ -0.263732, 45.507904 ], [ -0.255279, 45.51873 ], [ -0.266152, 45.525065 ], [ -0.279222, 45.52125 ], [ -0.283505, 45.51953 ], [ -0.281752, 45.52588 ], [ -0.289545, 45.529717 ], [ -0.303622, 45.52838 ], [ -0.320025, 45.534868 ], [ -0.32169, 45.534827 ], [ -0.321515, 45.54176 ], [ -0.310036, 45.546699 ], [ -0.29671, 45.564404 ], [ -0.301074, 45.565718 ], [ -0.311483, 45.576722 ], [ -0.319819, 45.579838 ], [ -0.323535, 45.58081 ], [ -0.328844, 45.5848 ], [ -0.331766, 45.58749 ], [ -0.341299, 45.58657 ], [ -0.341491, 45.589759 ], [ -0.347009, 45.594822 ], [ -0.359929, 45.59787 ], [ -0.376402, 45.60966 ], [ -0.380534, 45.619299 ], [ -0.380963, 45.622323 ], [ -0.387305, 45.62647 ], [ -0.40152, 45.619901 ], [ -0.405745, 45.619268 ], [ -0.415129, 45.6171 ], [ -0.427868, 45.622463 ], [ -0.431924, 45.62447 ], [ -0.410956, 45.6532 ], [ -0.40893, 45.65619 ], [ -0.395831, 45.65259 ], [ -0.387149, 45.655215 ], [ -0.382382, 45.65544 ], [ -0.382107, 45.658936 ], [ -0.407527, 45.68058 ], [ -0.410541, 45.683378 ], [ -0.42292, 45.685589 ], [ -0.415391, 45.69756 ], [ -0.421203, 45.70668 ], [ -0.420351, 45.70996 ], [ -0.419215, 45.723837 ], [ -0.404318, 45.7327 ], [ -0.403448, 45.73612 ], [ -0.415839, 45.74167 ], [ -0.46001, 45.739276 ], [ -0.4614, 45.74872 ], [ -0.463078, 45.751665 ], [ -0.450041, 45.762485 ], [ -0.449334, 45.766003 ], [ -0.425751, 45.76471 ], [ -0.418248, 45.76897 ], [ -0.404889, 45.770374 ], [ -0.401995, 45.786523 ], [ -0.373964, 45.78256 ], [ -0.369865, 45.78083 ], [ -0.366069, 45.780687 ], [ -0.343578, 45.785791 ], [ -0.339171, 45.787048 ], [ -0.319825, 45.784762 ], [ -0.316008, 45.78555 ], [ -0.312175, 45.78629 ], [ -0.304142, 45.790053 ], [ -0.29716, 45.7989 ], [ -0.299231, 45.802085 ], [ -0.29179, 45.80566 ], [ -0.278449, 45.804088 ], [ -0.275034, 45.806251 ], [ -0.24803, 45.80548 ], [ -0.239973, 45.803469 ], [ -0.242466, 45.79765 ], [ -0.241098, 45.79475 ], [ -0.23656, 45.7947 ], [ -0.232843, 45.789316 ], [ -0.231112, 45.78637 ], [ -0.22408, 45.77801 ], [ -0.221465, 45.775348 ], [ -0.221083, 45.775215 ], [ -0.203343, 45.778009 ], [ -0.187634, 45.78946 ], [ -0.183333, 45.790832 ], [ -0.179858, 45.78865 ], [ -0.157669, 45.788994 ], [ -0.16236, 45.7834 ], [ -0.156058, 45.779513 ], [ -0.150287, 45.786713 ], [ -0.148323, 45.789093 ], [ -0.151193, 45.79921 ], [ -0.136099, 45.82064 ], [ -0.137086, 45.82395 ], [ -0.141039, 45.837 ], [ -0.145858, 45.837169 ], [ -0.138514, 45.84565 ], [ -0.129816, 45.84803 ], [ -0.125127, 45.848568 ], [ -0.118752, 45.864002 ], [ -0.116157, 45.866939 ], [ -0.112861, 45.869328 ], [ -0.128002, 45.87494 ], [ -0.130954, 45.89102 ], [ -0.140027, 45.890124 ], [ -0.145407, 45.894841 ], [ -0.146811, 45.897956 ], [ -0.143335, 45.901504 ], [ -0.139758, 45.90306 ], [ -0.134002, 45.911253 ], [ -0.148847, 45.918 ], [ -0.151135, 45.92662 ], [ -0.143225, 45.929 ], [ -0.140453, 45.93135 ], [ -0.127676, 45.926731 ], [ -0.108875, 45.92881 ], [ -0.104844, 45.926954 ], [ -0.095793, 45.930888 ], [ -0.096632, 45.937075 ], [ -0.088011, 45.94781 ], [ -0.086417, 45.95071 ], [ -0.09101, 45.95105 ], [ -0.094759, 45.96029 ], [ -0.10397, 45.96002 ], [ -0.102937, 45.96966 ], [ -0.066728, 45.98087 ], [ -0.062011, 45.979723 ], [ -0.054852, 45.98789 ], [ -0.05034, 45.98906 ], [ -0.04216, 45.99615 ], [ -0.051674, 46.00192 ], [ -0.045363, 46.01406 ], [ -0.04552, 46.020621 ], [ -0.031191, 46.021862 ], [ -0.022684, 46.02995 ], [ -0.036759, 46.04329 ], [ -0.038172, 46.04988 ], [ -0.039502, 46.053107 ], [ -0.030922, 46.05594 ], [ 0.00147, 46.057235 ], [ 0.004892, 46.059525 ], [ 0.015952, 46.0549 ], [ 0.019144, 46.052844 ], [ 0.037802, 46.06854 ], [ 0.052554, 46.069866 ], [ 0.061213, 46.07258 ], [ 0.052655, 46.08029 ], [ 0.068935, 46.09212 ], [ 0.072972, 46.0939 ], [ 0.092904, 46.090011 ], [ 0.096913, 46.088888 ], [ 0.099559, 46.09151 ], [ 0.094764, 46.100376 ], [ 0.093014, 46.10335 ], [ 0.096715, 46.10537 ], [ 0.10568, 46.097988 ], [ 0.11478, 46.09637 ], [ 0.119132, 46.09761 ], [ 0.131845, 46.1022 ], [ 0.135816, 46.104051 ], [ 0.164726, 46.08731 ], [ 0.167523, 46.084555 ], [ 0.173683, 46.0821 ], [ 0.177537, 46.08321 ], [ 0.192706, 46.094741 ], [ 0.197168, 46.09537 ], [ 0.223643, 46.09252 ], [ 0.22668, 46.09008 ], [ 0.232986, 46.08753 ], [ 0.234946, 46.085381 ], [ 0.242206, 46.080836 ], [ 0.256425, 46.0787 ], [ 0.273541, 46.06724 ], [ 0.276888, 46.061085 ], [ 0.291331, 46.05955 ], [ 0.31087, 46.062545 ], [ 0.314395, 46.06509 ], [ 0.322525, 46.06241 ], [ 0.340403, 46.06448 ], [ 0.345021, 46.06375 ], [ 0.349208, 46.06388 ], [ 0.35306, 46.065061 ], [ 0.381784, 46.063385 ], [ 0.389851, 46.06712 ], [ 0.398446, 46.06466 ], [ 0.402776, 46.06313 ], [ 0.41227, 46.05227 ], [ 0.413287, 46.04909 ], [ 0.446351, 46.051235 ], [ 0.466101, 46.06097 ], [ 0.471089, 46.06677 ], [ 0.480651, 46.06543 ], [ 0.478007, 46.06833 ], [ 0.474218, 46.07445 ], [ 0.475703, 46.08467 ], [ 0.466899, 46.087455 ], [ 0.447431, 46.08704 ], [ 0.445706, 46.09352 ], [ 0.448793, 46.09619 ], [ 0.443259, 46.10157 ], [ 0.446452, 46.103655 ], [ 0.451133, 46.108004 ], [ 0.455705, 46.1069 ], [ 0.46296, 46.11136 ], [ 0.47028, 46.12707 ], [ 0.472303, 46.130136 ], [ 0.486249, 46.12808 ], [ 0.495224, 46.135284 ], [ 0.504155, 46.13298 ], [ 0.508685, 46.13194 ], [ 0.504334, 46.11933 ], [ 0.521014, 46.11261 ], [ 0.536932, 46.095619 ], [ 0.538878, 46.088904 ], [ 0.539973, 46.085558 ], [ 0.553329, 46.09004 ], [ 0.563209, 46.08915 ], [ 0.574107, 46.07813 ], [ 0.590854, 46.08116 ], [ 0.594834, 46.075725 ], [ 0.59568, 46.07266 ], [ 0.607353, 46.07778 ], [ 0.607706, 46.08661 ], [ 0.608968, 46.08974 ], [ 0.613616, 46.08856 ], [ 0.620563, 46.093178 ], [ 0.640102, 46.09169 ], [ 0.648819, 46.094659 ], [ 0.682508, 46.097208 ], [ 0.687453, 46.097255 ], [ 0.676447, 46.11253 ], [ 0.685596, 46.12073 ], [ 0.707183, 46.129 ], [ 0.710923, 46.135026 ], [ 0.711895, 46.13842 ], [ 0.712339, 46.13896 ], [ 0.725123, 46.136321 ], [ 0.729218, 46.135069 ], [ 0.747883, 46.13872 ], [ 0.78519, 46.13106 ], [ 0.80827, 46.136812 ], [ 0.820243, 46.131277 ], [ 0.823433, 46.12859 ], [ 0.818813, 46.12717 ], [ 0.811893, 46.12297 ], [ 0.832307, 46.10434 ], [ 0.832253, 46.09391 ], [ 0.827141, 46.088278 ], [ 0.827127, 46.086025 ], [ 0.819171, 46.0774 ], [ 0.826105, 46.065061 ], [ 0.816632, 46.057565 ], [ 0.817909, 46.04789 ], [ 0.821993, 46.04636 ], [ 0.845226, 46.0365 ], [ 0.849302, 46.03449 ], [ 0.856265, 46.02972 ], [ 0.858456, 46.019618 ], [ 0.866517, 46.01648 ], [ 0.886192, 46.03173 ], [ 0.894327, 46.025632 ], [ 0.894052, 46.022699 ], [ 0.905615, 46.0182 ], [ 0.909946, 46.017543 ], [ 0.923782, 46.008258 ], [ 0.919886, 46.00223 ], [ 0.921525, 45.99615 ], [ 0.934675, 45.99221 ], [ 0.934634, 45.976415 ], [ 0.943377, 45.97307 ], [ 0.940886, 45.95921 ], [ 0.92468, 45.951209 ], [ 0.922516, 45.94594 ], [ 0.92049, 45.94352 ], [ 0.920972, 45.937917 ], [ 0.916094, 45.93717 ], [ 0.906305, 45.93793 ], [ 0.884652, 45.923831 ], [ 0.861148, 45.919803 ], [ 0.847972, 45.92405 ], [ 0.838047, 45.92336 ], [ 0.821962, 45.93157 ], [ 0.812111, 45.93127 ], [ 0.809969, 45.92832 ], [ 0.809017, 45.921742 ], [ 0.815983, 45.917292 ], [ 0.81354, 45.896886 ], [ 0.827373, 45.882748 ], [ 0.823749, 45.88079 ], [ 0.8075, 45.870023 ], [ 0.810678, 45.868238 ], [ 0.818405, 45.869162 ], [ 0.82098, 45.86696 ], [ 0.818349, 45.864053 ], [ 0.795978, 45.82984 ], [ 0.782118, 45.820404 ], [ 0.780808, 45.81709 ], [ 0.783826, 45.810583 ], [ 0.776974, 45.80224 ], [ 0.783779, 45.793475 ], [ 0.770227, 45.788478 ], [ 0.768055, 45.791552 ], [ 0.762003, 45.79694 ], [ 0.752389, 45.797106 ], [ 0.7426, 45.804378 ], [ 0.718721, 45.80558 ], [ 0.710515, 45.8022 ], [ 0.70749, 45.77825 ], [ 0.714765, 45.76922 ], [ 0.711682, 45.76286 ], [ 0.707649, 45.761712 ], [ 0.695379, 45.76212 ], [ 0.691144, 45.76091 ], [ 0.666235, 45.748196 ], [ 0.666527, 45.745238 ], [ 0.665281, 45.739401 ], [ 0.660713, 45.73941 ], [ 0.652867, 45.73938 ], [ 0.647616, 45.730638 ], [ 0.650416, 45.72802 ], [ 0.64553, 45.71892 ], [ 0.633501, 45.7205 ], [ 0.629742, 45.71457 ], [ 0.627671, 45.708 ], [ 0.613217, 45.69402 ], [ 0.605006, 45.694218 ], [ 0.602126, 45.68177 ], [ 0.596594, 45.67687 ], [ 0.600389, 45.671733 ], [ 0.58746, 45.66794 ], [ 0.587634, 45.66129 ], [ 0.567032, 45.65326 ], [ 0.573663, 45.644124 ], [ 0.575447, 45.640928 ], [ 0.564535, 45.6344 ], [ 0.550448, 45.6341 ], [ 0.538448, 45.628737 ], [ 0.537079, 45.631509 ], [ 0.535418, 45.64286 ], [ 0.525833, 45.641785 ], [ 0.512657, 45.63146 ], [ 0.508422, 45.6214 ], [ 0.500403, 45.619564 ], [ 0.501441, 45.615353 ], [ 0.503838, 45.61257 ], [ 0.513312, 45.60543 ], [ 0.516143, 45.599246 ], [ 0.512189, 45.59385 ], [ 0.516324, 45.58806 ], [ 0.498576, 45.56478 ], [ 0.50227, 45.562802 ], [ 0.506549, 45.55434 ], [ 0.499202, 45.545788 ], [ 0.48327, 45.538891 ], [ 0.473715, 45.538407 ], [ 0.46967, 45.53884 ], [ 0.465737, 45.539623 ], [ 0.464307, 45.53359 ], [ 0.457779, 45.52556 ], [ 0.449305, 45.52392 ], [ 0.450893, 45.51865 ], [ 0.446105, 45.514637 ], [ 0.443656, 45.51188 ], [ 0.432763, 45.50165 ], [ 0.431738, 45.485596 ], [ 0.426875, 45.485782 ], [ 0.422921, 45.483781 ], [ 0.419259, 45.48595 ], [ 0.408356, 45.49178 ], [ 0.378384, 45.484128 ], [ 0.378867, 45.480671 ], [ 0.372947, 45.475865 ], [ 0.363133, 45.47515 ], [ 0.356707, 45.46622 ], [ 0.334668, 45.46014 ], [ 0.334363, 45.459819 ], [ 0.333389, 45.45318 ], [ 0.329155, 45.44378 ], [ 0.310781, 45.45876 ], [ 0.302619, 45.45889 ], [ 0.303213, 45.44559 ], [ 0.316234, 45.43598 ], [ 0.303543, 45.43194 ], [ 0.298855, 45.43229 ], [ 0.289959, 45.432617 ], [ 0.278402, 45.42716 ], [ 0.27086, 45.41893 ], [ 0.27155, 45.41608 ], [ 0.267624, 45.40798 ], [ 0.265268, 45.40543 ], [ 0.262875, 45.39686 ], [ 0.253457, 45.380939 ], [ 0.249431, 45.36359 ], [ 0.250217, 45.360614 ], [ 0.256966, 45.353067 ], [ 0.258533, 45.350051 ], [ 0.264588, 45.334748 ], [ 0.264905, 45.33453 ], [ 0.270634, 45.314605 ], [ 0.266609, 45.297749 ], [ 0.262719, 45.29587 ], [ 0.252621, 45.2894 ], [ 0.249597, 45.28859 ], [ 0.246868, 45.28984 ], [ 0.243136, 45.29175 ], [ 0.220912, 45.29022 ], [ 0.220092, 45.287223 ], [ 0.210596, 45.2742 ], [ 0.210296, 45.271274 ], [ 0.204416, 45.263604 ], [ 0.200767, 45.261828 ], [ 0.174862, 45.261437 ], [ 0.176696, 45.25596 ], [ 0.172293, 45.25171 ], [ 0.171342, 45.248329 ], [ 0.174738, 45.23921 ], [ 0.157828, 45.22645 ], [ 0.148209, 45.22456 ], [ 0.145486, 45.214487 ], [ 0.140998, 45.214751 ], [ 0.132319, 45.209 ], [ 0.115844, 45.213572 ], [ 0.114272, 45.214622 ], [ 0.111422, 45.21698 ], [ 0.100037, 45.22607 ], [ 0.092006, 45.227515 ], [ 0.0884, 45.22526 ], [ 0.076064, 45.22027 ], [ 0.066433, 45.22062 ], [ 0.055582, 45.227164 ], [ 0.051213, 45.22538 ], [ 0.036594, 45.211353 ], [ 0.033859, 45.20837 ], [ 0.010324, 45.202732 ], [ 0.004331, 45.19163 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "17", "CODE_DEPT": "17", "NOM_DEPT": "CHARENTE-MARITIME", "CODE_CHF": "300", "NOM_CHF": "LA ROCHELLE", "X_CHF_LIEU": "3797", "Y_CHF_LIEU": "65705", "X_CENTROID": "4165", "Y_CENTROID": "65256", "CODE_REG": "54", "NOM_REGION": "POITOU-CHARENTES" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.0402, 45.10238 ], [ -0.046095, 45.09778 ], [ -0.05373, 45.10109 ], [ -0.057088, 45.098976 ], [ -0.061772, 45.098766 ], [ -0.087832, 45.12143 ], [ -0.092825, 45.121022 ], [ -0.110974, 45.115524 ], [ -0.143512, 45.090354 ], [ -0.15327, 45.08924 ], [ -0.161926, 45.09249 ], [ -0.166877, 45.092747 ], [ -0.191442, 45.09475 ], [ -0.209721, 45.100235 ], [ -0.212445, 45.102238 ], [ -0.221237, 45.10776 ], [ -0.245672, 45.108214 ], [ -0.256783, 45.114793 ], [ -0.273944, 45.134855 ], [ -0.275713, 45.141571 ], [ -0.279962, 45.143248 ], [ -0.307551, 45.149589 ], [ -0.309374, 45.146624 ], [ -0.31363, 45.13765 ], [ -0.316676, 45.140486 ], [ -0.323322, 45.157159 ], [ -0.338768, 45.16624 ], [ -0.362959, 45.170237 ], [ -0.366174, 45.167563 ], [ -0.378517, 45.15678 ], [ -0.383396, 45.143339 ], [ -0.385058, 45.146596 ], [ -0.399471, 45.179378 ], [ -0.40061, 45.182813 ], [ -0.402585, 45.189701 ], [ -0.417435, 45.20388 ], [ -0.419461, 45.206985 ], [ -0.413187, 45.22321 ], [ -0.413635, 45.226568 ], [ -0.406009, 45.238707 ], [ -0.409905, 45.24797 ], [ -0.424028, 45.24856 ], [ -0.41912, 45.261324 ], [ -0.4177, 45.264387 ], [ -0.418508, 45.27361 ], [ -0.433463, 45.28057 ], [ -0.437376, 45.282116 ], [ -0.457654, 45.288358 ], [ -0.462073, 45.28858 ], [ -0.472986, 45.293633 ], [ -0.48602, 45.293579 ], [ -0.490146, 45.291558 ], [ -0.513854, 45.286227 ], [ -0.516876, 45.288782 ], [ -0.548704, 45.293121 ], [ -0.55176, 45.295188 ], [ -0.567662, 45.29742 ], [ -0.570631, 45.30029 ], [ -0.573867, 45.310717 ], [ -0.573978, 45.31424 ], [ -0.568974, 45.331235 ], [ -0.572742, 45.33321 ], [ -0.585303, 45.342899 ], [ -0.594006, 45.331596 ], [ -0.594481, 45.321143 ], [ -0.599195, 45.32134 ], [ -0.607635, 45.324009 ], [ -0.633594, 45.31845 ], [ -0.642088, 45.3151 ], [ -0.650712, 45.3225 ], [ -0.708651, 45.32736 ], [ -0.714861, 45.32774 ], [ -0.716938, 45.33071 ], [ -0.724076, 45.35964 ], [ -0.729237, 45.36548 ], [ -0.741211, 45.39997 ], [ -0.743523, 45.40314 ], [ -0.752889, 45.41903 ], [ -0.753174, 45.422492 ], [ -0.763293, 45.434864 ], [ -0.76517, 45.43819 ], [ -0.771376, 45.446429 ], [ -0.778117, 45.449123 ], [ -0.781005, 45.451477 ], [ -0.787938, 45.45886 ], [ -0.790209, 45.461344 ], [ -0.799701, 45.475384 ], [ -0.808194, 45.472905 ], [ -0.813776, 45.47787 ], [ -0.816628, 45.480588 ], [ -0.823902, 45.48498 ], [ -0.823396, 45.493826 ], [ -0.85598, 45.513555 ], [ -0.876996, 45.51959 ], [ -0.887568, 45.52972 ], [ -0.891777, 45.53121 ], [ -0.899999, 45.530281 ], [ -0.903157, 45.534508 ], [ -0.908587, 45.534563 ], [ -0.91008, 45.535719 ], [ -0.906524, 45.53733 ], [ -0.908429, 45.54124 ], [ -0.91943, 45.55148 ], [ -0.926173, 45.554099 ], [ -0.929503, 45.556183 ], [ -0.938914, 45.556782 ], [ -0.946689, 45.55278 ], [ -0.956022, 45.55463 ], [ -0.967805, 45.56075 ], [ -0.981794, 45.573771 ], [ -0.983941, 45.57686 ], [ -0.990987, 45.579666 ], [ -0.99338, 45.596306 ], [ -1.013377, 45.60232 ], [ -1.009004, 45.60845 ], [ -1.009853, 45.611841 ], [ -1.022532, 45.622081 ], [ -1.040153, 45.618438 ], [ -1.048942, 45.621431 ], [ -1.053223, 45.6276 ], [ -1.057392, 45.626104 ], [ -1.075481, 45.636333 ], [ -1.078309, 45.63894 ], [ -1.082681, 45.6374 ], [ -1.113411, 45.646863 ], [ -1.143769, 45.66409 ], [ -1.14751, 45.666306 ], [ -1.209737, 45.695592 ], [ -1.219659, 45.695428 ], [ -1.227427, 45.6915 ], [ -1.22407, 45.681592 ], [ -1.213619, 45.67409 ], [ -1.219205, 45.672288 ], [ -1.227098, 45.67643 ], [ -1.234387, 45.68947 ], [ -1.235614, 45.69289 ], [ -1.242501, 45.764188 ], [ -1.241024, 45.78555 ], [ -1.232756, 45.789516 ], [ -1.207768, 45.792976 ], [ -1.188226, 45.790096 ], [ -1.157027, 45.801837 ], [ -1.143483, 45.797105 ], [ -1.139181, 45.79904 ], [ -1.132893, 45.803905 ], [ -1.137218, 45.819978 ], [ -1.139535, 45.822841 ], [ -1.149585, 45.830416 ], [ -1.156657, 45.8433 ], [ -1.16516, 45.846723 ], [ -1.16754, 45.853462 ], [ -1.153927, 45.85553 ], [ -1.14988, 45.86125 ], [ -1.120516, 45.85778 ], [ -1.110124, 45.864999 ], [ -1.106044, 45.86706 ], [ -1.099657, 45.87577 ], [ -1.098081, 45.87887 ], [ -1.098398, 45.882269 ], [ -1.084309, 45.89616 ], [ -1.081211, 45.898788 ], [ -1.073835, 45.9157 ], [ -1.074485, 45.92641 ], [ -1.077072, 45.936565 ], [ -1.098732, 45.94437 ], [ -1.092267, 45.949046 ], [ -1.067544, 45.94981 ], [ -1.064622, 45.952603 ], [ -1.078918, 45.961827 ], [ -1.08567, 45.97892 ], [ -1.116244, 46.001557 ], [ -1.113389, 46.00265 ], [ -1.092284, 45.99343 ], [ -1.062098, 45.99547 ], [ -1.055018, 46.000512 ], [ -1.053077, 46.00384 ], [ -1.052828, 46.010815 ], [ -1.06046, 46.023562 ], [ -1.056336, 46.033277 ], [ -1.060713, 46.043273 ], [ -1.065616, 46.049337 ], [ -1.079505, 46.05326 ], [ -1.08452, 46.05314 ], [ -1.089027, 46.0547 ], [ -1.100078, 46.092224 ], [ -1.103187, 46.09498 ], [ -1.114447, 46.101505 ], [ -1.128938, 46.102358 ], [ -1.140676, 46.10794 ], [ -1.12698, 46.1108 ], [ -1.123776, 46.11336 ], [ -1.129537, 46.12634 ], [ -1.148273, 46.12937 ], [ -1.149106, 46.13284 ], [ -1.156641, 46.137281 ], [ -1.17131, 46.139141 ], [ -1.163215, 46.15348 ], [ -1.183144, 46.152791 ], [ -1.201251, 46.147289 ], [ -1.206485, 46.14685 ], [ -1.216389, 46.14809 ], [ -1.226292, 46.150327 ], [ -1.234616, 46.15411 ], [ -1.238466, 46.156573 ], [ -1.239589, 46.16304 ], [ -1.221787, 46.168999 ], [ -1.215858, 46.18219 ], [ -1.203549, 46.187756 ], [ -1.201245, 46.190889 ], [ -1.202341, 46.201796 ], [ -1.20638, 46.203657 ], [ -1.199724, 46.212551 ], [ -1.184514, 46.22071 ], [ -1.175152, 46.22215 ], [ -1.171154, 46.224064 ], [ -1.149222, 46.238104 ], [ -1.146553, 46.241123 ], [ -1.138927, 46.25388 ], [ -1.111345, 46.261157 ], [ -1.126917, 46.30732 ], [ -1.129404, 46.310277 ], [ -1.123946, 46.31469 ], [ -1.121791, 46.3232 ], [ -1.117434, 46.32324 ], [ -1.1141, 46.316999 ], [ -1.095328, 46.31378 ], [ -1.078144, 46.319257 ], [ -1.080064, 46.322326 ], [ -1.073337, 46.326877 ], [ -1.055237, 46.346413 ], [ -1.053688, 46.349578 ], [ -1.05072, 46.34326 ], [ -1.017639, 46.35301 ], [ -0.978339, 46.3512 ], [ -0.966979, 46.362233 ], [ -0.964513, 46.3654 ], [ -0.951491, 46.361103 ], [ -0.927338, 46.370935 ], [ -0.932977, 46.362969 ], [ -0.93423, 46.360113 ], [ -0.93546, 46.356762 ], [ -0.943732, 46.336965 ], [ -0.958784, 46.32337 ], [ -0.933937, 46.31264 ], [ -0.915043, 46.31553 ], [ -0.912086, 46.312749 ], [ -0.895424, 46.31685 ], [ -0.88904, 46.32386 ], [ -0.886848, 46.326704 ], [ -0.870267, 46.322455 ], [ -0.86853, 46.325489 ], [ -0.860811, 46.32547 ], [ -0.863019, 46.31914 ], [ -0.848986, 46.31833 ], [ -0.8449, 46.324612 ], [ -0.846813, 46.33422 ], [ -0.836394, 46.34136 ], [ -0.828389, 46.339133 ], [ -0.82541, 46.336366 ], [ -0.81117, 46.338043 ], [ -0.803746, 46.34246 ], [ -0.797727, 46.33845 ], [ -0.807126, 46.331371 ], [ -0.802811, 46.32529 ], [ -0.792868, 46.32433 ], [ -0.780848, 46.31836 ], [ -0.775833, 46.318467 ], [ -0.753457, 46.306946 ], [ -0.750476, 46.304259 ], [ -0.754669, 46.302444 ], [ -0.745248, 46.27959 ], [ -0.742668, 46.27666 ], [ -0.736065, 46.267727 ], [ -0.754364, 46.251582 ], [ -0.751462, 46.24507 ], [ -0.74701, 46.24324 ], [ -0.702818, 46.22456 ], [ -0.69905, 46.22262 ], [ -0.686332, 46.213702 ], [ -0.686375, 46.20719 ], [ -0.682412, 46.19769 ], [ -0.695072, 46.195992 ], [ -0.696475, 46.192738 ], [ -0.688524, 46.18223 ], [ -0.664928, 46.18181 ], [ -0.65539, 46.169953 ], [ -0.651379, 46.16837 ], [ -0.643554, 46.16502 ], [ -0.634622, 46.16572 ], [ -0.622797, 46.16092 ], [ -0.613016, 46.16152 ], [ -0.604641, 46.158432 ], [ -0.603764, 46.15516 ], [ -0.626849, 46.15216 ], [ -0.628183, 46.143701 ], [ -0.615966, 46.13838 ], [ -0.602388, 46.14251 ], [ -0.583081, 46.13956 ], [ -0.582225, 46.142537 ], [ -0.57933, 46.14826 ], [ -0.566285, 46.143301 ], [ -0.546856, 46.143864 ], [ -0.538043, 46.14072 ], [ -0.533284, 46.139718 ], [ -0.531324, 46.13667 ], [ -0.526793, 46.135557 ], [ -0.526724, 46.132269 ], [ -0.520492, 46.1283 ], [ -0.511059, 46.12817 ], [ -0.514345, 46.12583 ], [ -0.518414, 46.124198 ], [ -0.509761, 46.116795 ], [ -0.516389, 46.112417 ], [ -0.511963, 46.11131 ], [ -0.505467, 46.10719 ], [ -0.491715, 46.10798 ], [ -0.473602, 46.104757 ], [ -0.450867, 46.101981 ], [ -0.443727, 46.097637 ], [ -0.441444, 46.094705 ], [ -0.439449, 46.1036 ], [ -0.425235, 46.1117 ], [ -0.421226, 46.1133 ], [ -0.421421, 46.09334 ], [ -0.405371, 46.086257 ], [ -0.401451, 46.084248 ], [ -0.38644, 46.096874 ], [ -0.37348, 46.09406 ], [ -0.361875, 46.084166 ], [ -0.364418, 46.07853 ], [ -0.362733, 46.075551 ], [ -0.331541, 46.08246 ], [ -0.327183, 46.0813 ], [ -0.308001, 46.078279 ], [ -0.296411, 46.0839 ], [ -0.293282, 46.086593 ], [ -0.288816, 46.085118 ], [ -0.274533, 46.067579 ], [ -0.273131, 46.05731 ], [ -0.2686, 46.056439 ], [ -0.233049, 46.048464 ], [ -0.229108, 46.04792 ], [ -0.210661, 46.045432 ], [ -0.193898, 46.05117 ], [ -0.190974, 46.04361 ], [ -0.189839, 46.02964 ], [ -0.189132, 46.02614 ], [ -0.164509, 46.03576 ], [ -0.168185, 46.026801 ], [ -0.16345, 46.02232 ], [ -0.162963, 46.01902 ], [ -0.164194, 46.012763 ], [ -0.158305, 46.0082 ], [ -0.158512, 46.00504 ], [ -0.144795, 46.00467 ], [ -0.136825, 45.98918 ], [ -0.132598, 45.987606 ], [ -0.135611, 45.978538 ], [ -0.117338, 45.97749 ], [ -0.107459, 45.97055 ], [ -0.102937, 45.96966 ], [ -0.10397, 45.96002 ], [ -0.094759, 45.96029 ], [ -0.09101, 45.95105 ], [ -0.086417, 45.95071 ], [ -0.088011, 45.94781 ], [ -0.096632, 45.937075 ], [ -0.095793, 45.930888 ], [ -0.104844, 45.926954 ], [ -0.108875, 45.92881 ], [ -0.127676, 45.926731 ], [ -0.140453, 45.93135 ], [ -0.143225, 45.929 ], [ -0.151135, 45.92662 ], [ -0.148847, 45.918 ], [ -0.134002, 45.911253 ], [ -0.139758, 45.90306 ], [ -0.143335, 45.901504 ], [ -0.146811, 45.897956 ], [ -0.145407, 45.894841 ], [ -0.140027, 45.890124 ], [ -0.130954, 45.89102 ], [ -0.128002, 45.87494 ], [ -0.112861, 45.869328 ], [ -0.116157, 45.866939 ], [ -0.118752, 45.864002 ], [ -0.125127, 45.848568 ], [ -0.129816, 45.84803 ], [ -0.138514, 45.84565 ], [ -0.145858, 45.837169 ], [ -0.141039, 45.837 ], [ -0.137086, 45.82395 ], [ -0.136099, 45.82064 ], [ -0.151193, 45.79921 ], [ -0.148323, 45.789093 ], [ -0.150287, 45.786713 ], [ -0.156058, 45.779513 ], [ -0.16236, 45.7834 ], [ -0.157669, 45.788994 ], [ -0.179858, 45.78865 ], [ -0.183333, 45.790832 ], [ -0.187634, 45.78946 ], [ -0.203343, 45.778009 ], [ -0.221083, 45.775215 ], [ -0.221465, 45.775348 ], [ -0.22408, 45.77801 ], [ -0.231112, 45.78637 ], [ -0.232843, 45.789316 ], [ -0.23656, 45.7947 ], [ -0.241098, 45.79475 ], [ -0.242466, 45.79765 ], [ -0.239973, 45.803469 ], [ -0.24803, 45.80548 ], [ -0.275034, 45.806251 ], [ -0.278449, 45.804088 ], [ -0.29179, 45.80566 ], [ -0.299231, 45.802085 ], [ -0.29716, 45.7989 ], [ -0.304142, 45.790053 ], [ -0.312175, 45.78629 ], [ -0.316008, 45.78555 ], [ -0.319825, 45.784762 ], [ -0.339171, 45.787048 ], [ -0.343578, 45.785791 ], [ -0.366069, 45.780687 ], [ -0.369865, 45.78083 ], [ -0.373964, 45.78256 ], [ -0.401995, 45.786523 ], [ -0.404889, 45.770374 ], [ -0.418248, 45.76897 ], [ -0.425751, 45.76471 ], [ -0.449334, 45.766003 ], [ -0.450041, 45.762485 ], [ -0.463078, 45.751665 ], [ -0.4614, 45.74872 ], [ -0.46001, 45.739276 ], [ -0.415839, 45.74167 ], [ -0.403448, 45.73612 ], [ -0.404318, 45.7327 ], [ -0.419215, 45.723837 ], [ -0.420351, 45.70996 ], [ -0.421203, 45.70668 ], [ -0.415391, 45.69756 ], [ -0.42292, 45.685589 ], [ -0.410541, 45.683378 ], [ -0.407527, 45.68058 ], [ -0.382107, 45.658936 ], [ -0.382382, 45.65544 ], [ -0.387149, 45.655215 ], [ -0.395831, 45.65259 ], [ -0.40893, 45.65619 ], [ -0.410956, 45.6532 ], [ -0.431924, 45.62447 ], [ -0.427868, 45.622463 ], [ -0.415129, 45.6171 ], [ -0.405745, 45.619268 ], [ -0.40152, 45.619901 ], [ -0.387305, 45.62647 ], [ -0.380963, 45.622323 ], [ -0.380534, 45.619299 ], [ -0.376402, 45.60966 ], [ -0.359929, 45.59787 ], [ -0.347009, 45.594822 ], [ -0.341491, 45.589759 ], [ -0.341299, 45.58657 ], [ -0.331766, 45.58749 ], [ -0.328844, 45.5848 ], [ -0.323535, 45.58081 ], [ -0.319819, 45.579838 ], [ -0.311483, 45.576722 ], [ -0.301074, 45.565718 ], [ -0.29671, 45.564404 ], [ -0.310036, 45.546699 ], [ -0.321515, 45.54176 ], [ -0.32169, 45.534827 ], [ -0.320025, 45.534868 ], [ -0.303622, 45.52838 ], [ -0.289545, 45.529717 ], [ -0.281752, 45.52588 ], [ -0.283505, 45.51953 ], [ -0.279222, 45.52125 ], [ -0.266152, 45.525065 ], [ -0.255279, 45.51873 ], [ -0.263732, 45.507904 ], [ -0.256087, 45.503665 ], [ -0.246426, 45.50283 ], [ -0.240519, 45.494517 ], [ -0.242494, 45.490152 ], [ -0.246605, 45.49187 ], [ -0.257562, 45.486426 ], [ -0.259003, 45.47977 ], [ -0.267112, 45.471485 ], [ -0.280903, 45.47423 ], [ -0.285496, 45.45941 ], [ -0.2862, 45.45637 ], [ -0.281544, 45.45734 ], [ -0.268345, 45.455876 ], [ -0.265884, 45.449306 ], [ -0.254553, 45.442975 ], [ -0.254367, 45.440457 ], [ -0.251133, 45.43791 ], [ -0.248543, 45.435002 ], [ -0.25311, 45.421829 ], [ -0.246383, 45.417969 ], [ -0.236733, 45.41861 ], [ -0.234062, 45.4092 ], [ -0.248783, 45.4089 ], [ -0.251398, 45.402196 ], [ -0.274911, 45.39914 ], [ -0.278488, 45.392773 ], [ -0.286344, 45.388695 ], [ -0.300815, 45.38878 ], [ -0.302391, 45.38625 ], [ -0.310175, 45.38681 ], [ -0.311177, 45.383439 ], [ -0.31064, 45.37658 ], [ -0.304287, 45.371872 ], [ -0.295243, 45.37094 ], [ -0.290502, 45.36624 ], [ -0.28184, 45.36418 ], [ -0.27956, 45.35478 ], [ -0.271086, 45.35782 ], [ -0.246806, 45.35774 ], [ -0.24624, 45.347606 ], [ -0.247589, 45.34443 ], [ -0.26401, 45.33962 ], [ -0.277971, 45.34798 ], [ -0.277954, 45.34465 ], [ -0.282663, 45.338911 ], [ -0.281552, 45.338267 ], [ -0.279205, 45.33573 ], [ -0.290604, 45.32667 ], [ -0.285976, 45.32532 ], [ -0.283259, 45.308071 ], [ -0.279476, 45.305848 ], [ -0.257518, 45.298794 ], [ -0.258721, 45.305599 ], [ -0.253443, 45.311223 ], [ -0.230372, 45.31489 ], [ -0.228747, 45.321662 ], [ -0.20153, 45.31109 ], [ -0.196091, 45.305775 ], [ -0.178206, 45.30813 ], [ -0.161743, 45.30653 ], [ -0.15495, 45.302951 ], [ -0.150957, 45.301658 ], [ -0.147598, 45.29938 ], [ -0.144128, 45.294019 ], [ -0.145277, 45.28814 ], [ -0.130151, 45.29453 ], [ -0.113065, 45.290815 ], [ -0.108813, 45.28967 ], [ -0.113189, 45.270419 ], [ -0.112659, 45.254087 ], [ -0.115897, 45.251519 ], [ -0.120405, 45.250231 ], [ -0.11678, 45.24838 ], [ -0.099096, 45.246714 ], [ -0.094084, 45.24674 ], [ -0.059209, 45.24652 ], [ -0.049742, 45.24882 ], [ -0.046963, 45.248617 ], [ -0.044303, 45.248023 ], [ -0.040024, 45.24653 ], [ -0.032667, 45.23439 ], [ 0.00552, 45.22528 ], [ 0.005866, 45.22191 ], [ -0.002278, 45.198402 ], [ -0.002088, 45.19487 ], [ 0.000904, 45.193036 ], [ 0.004331, 45.19163 ], [ 0.001677, 45.18339 ], [ -0.002052, 45.181171 ], [ -0.019062, 45.165177 ], [ -0.014091, 45.15992 ], [ 0.000368, 45.15843 ], [ 0.003268, 45.15566 ], [ -0.001528, 45.15082 ], [ -0.036728, 45.140567 ], [ -0.035312, 45.137245 ], [ -0.02963, 45.12778 ], [ -0.041524, 45.112683 ], [ -0.0402, 45.10238 ] ] ], [ [ [ -1.301162, 45.89993 ], [ -1.353356, 45.92685 ], [ -1.376032, 45.945653 ], [ -1.386452, 45.95327 ], [ -1.386784, 45.96376 ], [ -1.394565, 45.976816 ], [ -1.387094, 45.99716 ], [ -1.400161, 46.015885 ], [ -1.411422, 46.04312 ], [ -1.406058, 46.047294 ], [ -1.372711, 46.03939 ], [ -1.3693, 46.02955 ], [ -1.361072, 46.02555 ], [ -1.35683, 46.023648 ], [ -1.326431, 46.00457 ], [ -1.323068, 46.002279 ], [ -1.315133, 45.994005 ], [ -1.296489, 45.98922 ], [ -1.246985, 45.98966 ], [ -1.237043, 45.982184 ], [ -1.234437, 45.9722 ], [ -1.235456, 45.968798 ], [ -1.23302, 45.96589 ], [ -1.239668, 45.961038 ], [ -1.239995, 45.954371 ], [ -1.229399, 45.94317 ], [ -1.229072, 45.9332 ], [ -1.23342, 45.92723 ], [ -1.218661, 45.909 ], [ -1.215088, 45.906534 ], [ -1.203275, 45.900012 ], [ -1.18902, 45.88581 ], [ -1.20483, 45.853215 ], [ -1.207707, 45.85034 ], [ -1.197561, 45.830464 ], [ -1.232551, 45.800796 ], [ -1.241321, 45.80385 ], [ -1.245668, 45.81024 ], [ -1.252422, 45.84181 ], [ -1.252876, 45.84535 ], [ -1.258919, 45.86445 ], [ -1.260258, 45.867586 ], [ -1.269096, 45.88018 ], [ -1.296207, 45.9005 ], [ -1.301162, 45.89993 ] ] ], [ [ [ -1.411792, 46.18415 ], [ -1.469685, 46.20316 ], [ -1.474627, 46.20276 ], [ -1.507011, 46.19471 ], [ -1.534358, 46.203576 ], [ -1.54204, 46.216474 ], [ -1.543808, 46.219777 ], [ -1.558825, 46.233761 ], [ -1.561443, 46.243812 ], [ -1.541635, 46.2437 ], [ -1.524338, 46.250851 ], [ -1.512976, 46.2578 ], [ -1.497754, 46.256911 ], [ -1.483687, 46.246941 ], [ -1.47755, 46.23358 ], [ -1.485159, 46.229692 ], [ -1.48982, 46.230744 ], [ -1.491397, 46.23713 ], [ -1.496368, 46.237674 ], [ -1.502456, 46.22509 ], [ -1.507355, 46.22572 ], [ -1.512849, 46.231681 ], [ -1.514974, 46.23491 ], [ -1.515061, 46.23076 ], [ -1.508679, 46.217343 ], [ -1.496107, 46.20792 ], [ -1.485438, 46.2074 ], [ -1.483874, 46.21083 ], [ -1.467656, 46.218738 ], [ -1.457596, 46.22859 ], [ -1.416731, 46.228827 ], [ -1.421022, 46.219524 ], [ -1.444398, 46.214094 ], [ -1.42478, 46.20524 ], [ -1.405421, 46.203256 ], [ -1.400518, 46.203347 ], [ -1.365155, 46.207164 ], [ -1.346362, 46.202131 ], [ -1.342125, 46.20013 ], [ -1.319331, 46.187118 ], [ -1.305229, 46.19024 ], [ -1.295734, 46.18822 ], [ -1.286629, 46.17657 ], [ -1.283824, 46.173727 ], [ -1.276545, 46.161638 ], [ -1.25765, 46.162817 ], [ -1.278824, 46.14411 ], [ -1.283543, 46.14523 ], [ -1.307983, 46.14303 ], [ -1.322358, 46.14533 ], [ -1.353497, 46.15464 ], [ -1.360217, 46.15966 ], [ -1.363484, 46.162234 ], [ -1.38605, 46.17482 ], [ -1.407556, 46.1825 ], [ -1.411792, 46.18415 ] ] ], [ [ [ -1.175595, 46.008004 ], [ -1.177712, 46.008963 ], [ -1.178415, 46.012427 ], [ -1.173734, 46.02407 ], [ -1.166338, 46.025028 ], [ -1.164008, 46.024347 ], [ -1.157395, 46.0218 ], [ -1.155764, 46.018716 ], [ -1.170408, 46.018791 ], [ -1.170214, 46.013847 ], [ -1.173909, 46.00932 ], [ -1.175595, 46.008004 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "18", "CODE_DEPT": "18", "NOM_DEPT": "CHER", "CODE_CHF": "033", "NOM_CHF": "BOURGES", "X_CHF_LIEU": "6541", "Y_CHF_LIEU": "66649", "X_CENTROID": "6613", "Y_CENTROID": "66628", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.281048, 46.420405 ], [ 2.276283, 46.421276 ], [ 2.256961, 46.423133 ], [ 2.253658, 46.425651 ], [ 2.248883, 46.426259 ], [ 2.220649, 46.423584 ], [ 2.197831, 46.428298 ], [ 2.194075, 46.42597 ], [ 2.184897, 46.42315 ], [ 2.180482, 46.4232 ], [ 2.167786, 46.42408 ], [ 2.155265, 46.43459 ], [ 2.151402, 46.4577 ], [ 2.193194, 46.47064 ], [ 2.198198, 46.47687 ], [ 2.20017, 46.480165 ], [ 2.200164, 46.48061 ], [ 2.203705, 46.48628 ], [ 2.194701, 46.50625 ], [ 2.189967, 46.505406 ], [ 2.183065, 46.50993 ], [ 2.182754, 46.513297 ], [ 2.181453, 46.526985 ], [ 2.160161, 46.55405 ], [ 2.1587, 46.557346 ], [ 2.173675, 46.565857 ], [ 2.16798, 46.585653 ], [ 2.167145, 46.588988 ], [ 2.176001, 46.6002 ], [ 2.180742, 46.600297 ], [ 2.184614, 46.60257 ], [ 2.185257, 46.612855 ], [ 2.187352, 46.61605 ], [ 2.181273, 46.62579 ], [ 2.189447, 46.642141 ], [ 2.179982, 46.6429 ], [ 2.175944, 46.64884 ], [ 2.166749, 46.64733 ], [ 2.151695, 46.65931 ], [ 2.13972, 46.6656 ], [ 2.137272, 46.67231 ], [ 2.154034, 46.68882 ], [ 2.155448, 46.69216 ], [ 2.141157, 46.69554 ], [ 2.128758, 46.706431 ], [ 2.119793, 46.70959 ], [ 2.11008, 46.71115 ], [ 2.100843, 46.70849 ], [ 2.092068, 46.71187 ], [ 2.087097, 46.712456 ], [ 2.088115, 46.715751 ], [ 2.092145, 46.72526 ], [ 2.074233, 46.73444 ], [ 2.065751, 46.74249 ], [ 2.070117, 46.752192 ], [ 2.094304, 46.75597 ], [ 2.116105, 46.778533 ], [ 2.105793, 46.79025 ], [ 2.104205, 46.793551 ], [ 2.100792, 46.79614 ], [ 2.071568, 46.809851 ], [ 2.047999, 46.832332 ], [ 2.050804, 46.8362 ], [ 2.069292, 46.83547 ], [ 2.072823, 46.837658 ], [ 2.077817, 46.838005 ], [ 2.092409, 46.852834 ], [ 2.090268, 46.86857 ], [ 2.120998, 46.88019 ], [ 2.126204, 46.879865 ], [ 2.14007, 46.88985 ], [ 2.153136, 46.908457 ], [ 2.154965, 46.91167 ], [ 2.151967, 46.91433 ], [ 2.143641, 46.91732 ], [ 2.110319, 46.91317 ], [ 2.106058, 46.91498 ], [ 2.070685, 46.934023 ], [ 2.070203, 46.954423 ], [ 2.081369, 46.95665 ], [ 2.08457, 46.958635 ], [ 2.089985, 46.96355 ], [ 2.087045, 46.97252 ], [ 2.091833, 46.977997 ], [ 2.094592, 46.98057 ], [ 2.094825, 46.989474 ], [ 2.105175, 46.99534 ], [ 2.108856, 46.997191 ], [ 2.106187, 47.0002 ], [ 2.096889, 47.01241 ], [ 2.094267, 47.014905 ], [ 2.08304, 47.018634 ], [ 2.081354, 47.021754 ], [ 2.064618, 47.027941 ], [ 2.053482, 47.03822 ], [ 2.031413, 47.04235 ], [ 2.02938, 47.045532 ], [ 2.0385, 47.057844 ], [ 2.040447, 47.060958 ], [ 2.044557, 47.066944 ], [ 2.053304, 47.07014 ], [ 2.055653, 47.076723 ], [ 2.048458, 47.09607 ], [ 2.053597, 47.101511 ], [ 2.050699, 47.10435 ], [ 2.031199, 47.1049 ], [ 2.026221, 47.096476 ], [ 2.006573, 47.09521 ], [ 2.004464, 47.10161 ], [ 2.009587, 47.11127 ], [ 2.00024, 47.11392 ], [ 1.999913, 47.11732 ], [ 1.99666, 47.127 ], [ 1.992226, 47.12565 ], [ 1.974874, 47.12104 ], [ 1.96314, 47.12418 ], [ 1.947311, 47.116674 ], [ 1.943597, 47.11505 ], [ 1.937202, 47.11093 ], [ 1.920261, 47.10403 ], [ 1.906385, 47.10811 ], [ 1.892733, 47.103766 ], [ 1.887899, 47.104764 ], [ 1.883068, 47.100512 ], [ 1.878812, 47.10229 ], [ 1.846675, 47.11098 ], [ 1.843601, 47.11348 ], [ 1.828448, 47.121302 ], [ 1.809476, 47.12202 ], [ 1.805415, 47.12016 ], [ 1.795823, 47.12081 ], [ 1.780997, 47.128943 ], [ 1.777883, 47.130107 ], [ 1.774451, 47.130755 ], [ 1.809816, 47.15621 ], [ 1.811046, 47.16327 ], [ 1.813917, 47.16657 ], [ 1.823578, 47.17397 ], [ 1.837527, 47.17678 ], [ 1.842237, 47.17758 ], [ 1.837444, 47.19837 ], [ 1.838892, 47.215759 ], [ 1.839079, 47.219308 ], [ 1.853088, 47.220528 ], [ 1.875333, 47.20708 ], [ 1.905858, 47.217887 ], [ 1.908321, 47.22089 ], [ 1.915639, 47.23418 ], [ 1.912241, 47.240753 ], [ 1.909522, 47.243789 ], [ 1.892391, 47.24875 ], [ 1.895493, 47.2548 ], [ 1.922685, 47.26385 ], [ 1.923006, 47.27359 ], [ 1.941373, 47.290064 ], [ 1.971437, 47.27765 ], [ 1.975822, 47.2759 ], [ 1.975957, 47.27577 ], [ 1.996609, 47.265751 ], [ 2.010461, 47.26841 ], [ 2.020248, 47.267006 ], [ 2.024529, 47.26512 ], [ 2.058927, 47.28037 ], [ 2.088978, 47.28549 ], [ 2.094206, 47.285388 ], [ 2.103938, 47.28571 ], [ 2.111136, 47.281729 ], [ 2.11426, 47.279178 ], [ 2.128373, 47.280176 ], [ 2.132895, 47.28119 ], [ 2.139909, 47.293434 ], [ 2.153429, 47.29787 ], [ 2.157151, 47.30021 ], [ 2.147988, 47.316361 ], [ 2.13502, 47.32174 ], [ 2.128526, 47.33112 ], [ 2.119391, 47.333433 ], [ 2.126704, 47.345417 ], [ 2.114665, 47.36701 ], [ 2.111377, 47.36953 ], [ 2.101881, 47.367644 ], [ 2.097085, 47.36681 ], [ 2.102739, 47.391616 ], [ 2.116926, 47.410801 ], [ 2.115628, 47.41792 ], [ 2.114999, 47.42148 ], [ 2.136692, 47.40632 ], [ 2.188242, 47.4357 ], [ 2.204829, 47.406079 ], [ 2.225176, 47.40753 ], [ 2.230388, 47.40753 ], [ 2.240389, 47.41299 ], [ 2.243692, 47.414827 ], [ 2.246699, 47.4424 ], [ 2.238642, 47.45097 ], [ 2.244993, 47.45995 ], [ 2.238643, 47.47238 ], [ 2.245237, 47.48872 ], [ 2.247745, 47.491732 ], [ 2.243082, 47.492764 ], [ 2.234995, 47.496357 ], [ 2.219441, 47.49544 ], [ 2.201325, 47.488183 ], [ 2.19607, 47.4879 ], [ 2.214491, 47.52043 ], [ 2.197561, 47.54612 ], [ 2.193775, 47.54857 ], [ 2.131382, 47.550696 ], [ 2.125186, 47.55636 ], [ 2.127704, 47.569933 ], [ 2.121466, 47.57964 ], [ 2.119575, 47.58295 ], [ 2.138094, 47.588815 ], [ 2.15629, 47.601046 ], [ 2.197252, 47.607447 ], [ 2.233959, 47.62067 ], [ 2.239214, 47.62098 ], [ 2.284817, 47.628675 ], [ 2.289632, 47.62905 ], [ 2.293606, 47.62262 ], [ 2.303059, 47.61954 ], [ 2.307202, 47.617324 ], [ 2.323488, 47.60856 ], [ 2.343358, 47.60448 ], [ 2.360156, 47.59105 ], [ 2.372689, 47.585442 ], [ 2.379655, 47.590592 ], [ 2.394291, 47.59292 ], [ 2.400349, 47.598576 ], [ 2.43345, 47.60822 ], [ 2.438079, 47.60977 ], [ 2.44743, 47.606577 ], [ 2.456411, 47.593837 ], [ 2.490301, 47.57177 ], [ 2.491358, 47.56829 ], [ 2.506549, 47.56809 ], [ 2.520343, 47.57237 ], [ 2.544971, 47.57467 ], [ 2.564341, 47.571147 ], [ 2.567581, 47.56849 ], [ 2.573916, 47.559625 ], [ 2.592984, 47.55814 ], [ 2.603024, 47.550996 ], [ 2.607079, 47.54915 ], [ 2.616728, 47.538566 ], [ 2.613325, 47.52941 ], [ 2.612018, 47.526389 ], [ 2.655871, 47.510396 ], [ 2.656286, 47.49335 ], [ 2.664608, 47.485757 ], [ 2.669382, 47.48468 ], [ 2.682059, 47.48336 ], [ 2.686362, 47.483189 ], [ 2.714574, 47.48925 ], [ 2.725405, 47.49575 ], [ 2.727407, 47.49889 ], [ 2.72176, 47.504415 ], [ 2.72549, 47.510266 ], [ 2.723602, 47.52338 ], [ 2.728377, 47.532938 ], [ 2.727151, 47.536221 ], [ 2.73182, 47.538095 ], [ 2.742696, 47.526517 ], [ 2.762558, 47.524957 ], [ 2.783529, 47.51519 ], [ 2.794601, 47.500227 ], [ 2.797521, 47.49734 ], [ 2.802623, 47.49678 ], [ 2.806484, 47.494459 ], [ 2.826262, 47.49807 ], [ 2.841217, 47.51181 ], [ 2.870551, 47.51828 ], [ 2.874625, 47.52042 ], [ 2.887256, 47.510615 ], [ 2.889574, 47.507764 ], [ 2.891632, 47.50194 ], [ 2.892395, 47.49898 ], [ 2.89713, 47.488733 ], [ 2.897163, 47.48515 ], [ 2.91778, 47.463787 ], [ 2.919191, 47.46062 ], [ 2.919831, 47.45873 ], [ 2.931885, 47.43681 ], [ 2.931557, 47.43343 ], [ 2.920906, 47.423155 ], [ 2.91962, 47.413657 ], [ 2.919771, 47.41047 ], [ 2.893026, 47.369085 ], [ 2.890555, 47.365995 ], [ 2.88208, 47.357587 ], [ 2.879782, 47.35453 ], [ 2.877113, 47.35156 ], [ 2.870247, 47.342343 ], [ 2.873695, 47.3291 ], [ 2.879024, 47.32028 ], [ 2.89495, 47.31377 ], [ 2.899453, 47.31274 ], [ 2.909119, 47.310584 ], [ 2.912962, 47.30832 ], [ 2.916129, 47.305647 ], [ 2.923336, 47.300844 ], [ 2.92678, 47.29845 ], [ 2.941563, 47.285155 ], [ 2.973547, 47.26994 ], [ 2.981658, 47.262509 ], [ 2.982757, 47.256558 ], [ 2.981806, 47.25352 ], [ 2.979026, 47.229064 ], [ 2.991122, 47.209691 ], [ 2.993844, 47.20668 ], [ 2.995918, 47.203804 ], [ 2.997741, 47.200851 ], [ 3.015206, 47.16243 ], [ 3.015945, 47.159095 ], [ 3.019283, 47.15628 ], [ 3.020588, 47.152981 ], [ 3.017179, 47.13978 ], [ 3.02496, 47.13111 ], [ 3.028283, 47.12844 ], [ 3.029382, 47.11166 ], [ 3.03, 47.108315 ], [ 3.03025, 47.107055 ], [ 3.030102, 47.103508 ], [ 3.031362, 47.092884 ], [ 3.022524, 47.08016 ], [ 3.020041, 47.06679 ], [ 3.022241, 47.063652 ], [ 3.050517, 47.050679 ], [ 3.053966, 47.04825 ], [ 3.060101, 47.04586 ], [ 3.063618, 47.04617 ], [ 3.072676, 47.033282 ], [ 3.074778, 47.02999 ], [ 3.074759, 47.015859 ], [ 3.073675, 47.01237 ], [ 3.065841, 47.00046 ], [ 3.065324, 46.997174 ], [ 3.062751, 46.98026 ], [ 3.075119, 46.96206 ], [ 3.079337, 46.96024 ], [ 3.078275, 46.953427 ], [ 3.068254, 46.941521 ], [ 3.066029, 46.93843 ], [ 3.064553, 46.93573 ], [ 3.050227, 46.909154 ], [ 3.058074, 46.90028 ], [ 3.061145, 46.89738 ], [ 3.062334, 46.892347 ], [ 3.063605, 46.889951 ], [ 3.069402, 46.852258 ], [ 3.056647, 46.84197 ], [ 3.054584, 46.83877 ], [ 3.05694, 46.83391 ], [ 3.058486, 46.831592 ], [ 3.057639, 46.825136 ], [ 3.041154, 46.812673 ], [ 3.039067, 46.80962 ], [ 3.032122, 46.798063 ], [ 3.032068, 46.794911 ], [ 3.027584, 46.79337 ], [ 3.01614, 46.79983 ], [ 2.996604, 46.79696 ], [ 2.979899, 46.80342 ], [ 2.959915, 46.803877 ], [ 2.952503, 46.79268 ], [ 2.944387, 46.792993 ], [ 2.93989, 46.79319 ], [ 2.936099, 46.795393 ], [ 2.912941, 46.790192 ], [ 2.908913, 46.78447 ], [ 2.910924, 46.781348 ], [ 2.898967, 46.775675 ], [ 2.894344, 46.77417 ], [ 2.880422, 46.77003 ], [ 2.875346, 46.760642 ], [ 2.844634, 46.742362 ], [ 2.843818, 46.739228 ], [ 2.845727, 46.726616 ], [ 2.841168, 46.727321 ], [ 2.827485, 46.735333 ], [ 2.822561, 46.735415 ], [ 2.793416, 46.733557 ], [ 2.782748, 46.722462 ], [ 2.77475, 46.718953 ], [ 2.771375, 46.72126 ], [ 2.758521, 46.717659 ], [ 2.755115, 46.72391 ], [ 2.743797, 46.73055 ], [ 2.734528, 46.74622 ], [ 2.730642, 46.74799 ], [ 2.704833, 46.73904 ], [ 2.703898, 46.7256 ], [ 2.698463, 46.72106 ], [ 2.688603, 46.72118 ], [ 2.676175, 46.71084 ], [ 2.677795, 46.704612 ], [ 2.674262, 46.702279 ], [ 2.656179, 46.69735 ], [ 2.648081, 46.68896 ], [ 2.628221, 46.690308 ], [ 2.623478, 46.68931 ], [ 2.621638, 46.679274 ], [ 2.631838, 46.672203 ], [ 2.63156, 46.6688 ], [ 2.623914, 46.65663 ], [ 2.60704, 46.662639 ], [ 2.606155, 46.669299 ], [ 2.570551, 46.65927 ], [ 2.570439, 46.65681 ], [ 2.566995, 46.65248 ], [ 2.588997, 46.6481 ], [ 2.5931, 46.64658 ], [ 2.596325, 46.636723 ], [ 2.584599, 46.62636 ], [ 2.588657, 46.61695 ], [ 2.572922, 46.61045 ], [ 2.568383, 46.609392 ], [ 2.57738, 46.60673 ], [ 2.583888, 46.59459 ], [ 2.598461, 46.59531 ], [ 2.60834, 46.57295 ], [ 2.609356, 46.569613 ], [ 2.605668, 46.563288 ], [ 2.613262, 46.55461 ], [ 2.576552, 46.53852 ], [ 2.570133, 46.533409 ], [ 2.55179, 46.5284 ], [ 2.540403, 46.521921 ], [ 2.536652, 46.519709 ], [ 2.532682, 46.521701 ], [ 2.529408, 46.5278 ], [ 2.520282, 46.529925 ], [ 2.50976, 46.52345 ], [ 2.500235, 46.52215 ], [ 2.496526, 46.531155 ], [ 2.482929, 46.532697 ], [ 2.478655, 46.530724 ], [ 2.446148, 46.521044 ], [ 2.437939, 46.52528 ], [ 2.427808, 46.52598 ], [ 2.414634, 46.520833 ], [ 2.384099, 46.5183 ], [ 2.3683, 46.51843 ], [ 2.363697, 46.51724 ], [ 2.334315, 46.499566 ], [ 2.324969, 46.487742 ], [ 2.32963, 46.48183 ], [ 2.330814, 46.478862 ], [ 2.321409, 46.46891 ], [ 2.316996, 46.468505 ], [ 2.313097, 46.47077 ], [ 2.305465, 46.475433 ], [ 2.284666, 46.45136 ], [ 2.278432, 46.427215 ], [ 2.281048, 46.420405 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "19", "CODE_DEPT": "19", "NOM_DEPT": "CORREZE", "CODE_CHF": "272", "NOM_CHF": "TULLE", "X_CHF_LIEU": "6037", "Y_CHF_LIEU": "64636", "X_CENTROID": "6120", "Y_CENTROID": "64736", "CODE_REG": "74", "NOM_REGION": "LIMOUSIN" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.062914, 44.976506 ], [ 2.058581, 44.97541 ], [ 2.045121, 44.98367 ], [ 2.040848, 44.98198 ], [ 2.008268, 44.976231 ], [ 1.984336, 44.973719 ], [ 1.9566, 44.95901 ], [ 1.95099, 44.953158 ], [ 1.946191, 44.95348 ], [ 1.941333, 44.958208 ], [ 1.94015, 44.97184 ], [ 1.936522, 44.973164 ], [ 1.927179, 44.978801 ], [ 1.907779, 44.978243 ], [ 1.888368, 44.96292 ], [ 1.887091, 44.95634 ], [ 1.851053, 44.94625 ], [ 1.848412, 44.943958 ], [ 1.842772, 44.937083 ], [ 1.838527, 44.93818 ], [ 1.83589, 44.944323 ], [ 1.831572, 44.94342 ], [ 1.829361, 44.933962 ], [ 1.827628, 44.93073 ], [ 1.819741, 44.92722 ], [ 1.810042, 44.92795 ], [ 1.800798, 44.92038 ], [ 1.800167, 44.92029 ], [ 1.801468, 44.92641 ], [ 1.788603, 44.934606 ], [ 1.785701, 44.936906 ], [ 1.784546, 44.93052 ], [ 1.777453, 44.926209 ], [ 1.774608, 44.92354 ], [ 1.774029, 44.92453 ], [ 1.771447, 44.92727 ], [ 1.76701, 44.933045 ], [ 1.750554, 44.93879 ], [ 1.753982, 44.940851 ], [ 1.755329, 44.944135 ], [ 1.748795, 44.95683 ], [ 1.740734, 44.96058 ], [ 1.736182, 44.96053 ], [ 1.726256, 44.967011 ], [ 1.712968, 44.967326 ], [ 1.71088, 44.96709 ], [ 1.708767, 44.96964 ], [ 1.707508, 44.972512 ], [ 1.703377, 44.98657 ], [ 1.700373, 44.98916 ], [ 1.692273, 44.992577 ], [ 1.689269, 44.994604 ], [ 1.684371, 45.00266 ], [ 1.680078, 45.003329 ], [ 1.671411, 45.004307 ], [ 1.653199, 45.018955 ], [ 1.651891, 45.025288 ], [ 1.64737, 45.025837 ], [ 1.63238, 45.03233 ], [ 1.627746, 45.03332 ], [ 1.60956, 45.032305 ], [ 1.608959, 45.02889 ], [ 1.608069, 45.03353 ], [ 1.603883, 45.03535 ], [ 1.57097, 45.03956 ], [ 1.55204, 45.02847 ], [ 1.543942, 45.03125 ], [ 1.540315, 45.04467 ], [ 1.526759, 45.04428 ], [ 1.522661, 45.042659 ], [ 1.5058, 45.039498 ], [ 1.47993, 45.026756 ], [ 1.477131, 45.02692 ], [ 1.477292, 45.020092 ], [ 1.460357, 45.01397 ], [ 1.448262, 45.019313 ], [ 1.444114, 45.02006 ], [ 1.434641, 45.0301 ], [ 1.431329, 45.032701 ], [ 1.411599, 45.05263 ], [ 1.409056, 45.0594 ], [ 1.399564, 45.06118 ], [ 1.401752, 45.06421 ], [ 1.406003, 45.07022 ], [ 1.401222, 45.07609 ], [ 1.398488, 45.0788 ], [ 1.391702, 45.087593 ], [ 1.393265, 45.09735 ], [ 1.389354, 45.09892 ], [ 1.383285, 45.103007 ], [ 1.380056, 45.100798 ], [ 1.378249, 45.10609 ], [ 1.382956, 45.105605 ], [ 1.392448, 45.105877 ], [ 1.408918, 45.11252 ], [ 1.413525, 45.11825 ], [ 1.413094, 45.12491 ], [ 1.409614, 45.1265 ], [ 1.401786, 45.128427 ], [ 1.398389, 45.129747 ], [ 1.393954, 45.13137 ], [ 1.380532, 45.135712 ], [ 1.366379, 45.13236 ], [ 1.351991, 45.134033 ], [ 1.351916, 45.13657 ], [ 1.351983, 45.141643 ], [ 1.347115, 45.141445 ], [ 1.333737, 45.13773 ], [ 1.320997, 45.14245 ], [ 1.308754, 45.137016 ], [ 1.290473, 45.14188 ], [ 1.280205, 45.14927 ], [ 1.254436, 45.158506 ], [ 1.255055, 45.16477 ], [ 1.268222, 45.16508 ], [ 1.277911, 45.17209 ], [ 1.281525, 45.174228 ], [ 1.285709, 45.176048 ], [ 1.2914, 45.18565 ], [ 1.289594, 45.188879 ], [ 1.286019, 45.191265 ], [ 1.272148, 45.201147 ], [ 1.233456, 45.19842 ], [ 1.228376, 45.20436 ], [ 1.231275, 45.214566 ], [ 1.233398, 45.21958 ], [ 1.233608, 45.222195 ], [ 1.238262, 45.223314 ], [ 1.260952, 45.229695 ], [ 1.277687, 45.242085 ], [ 1.276285, 45.2557 ], [ 1.271874, 45.25731 ], [ 1.257397, 45.254983 ], [ 1.239385, 45.260447 ], [ 1.240207, 45.263468 ], [ 1.238364, 45.268114 ], [ 1.22706, 45.271844 ], [ 1.232076, 45.287838 ], [ 1.238945, 45.29172 ], [ 1.241603, 45.301309 ], [ 1.2384, 45.3025 ], [ 1.240886, 45.305423 ], [ 1.235803, 45.32204 ], [ 1.240647, 45.322279 ], [ 1.2599, 45.32065 ], [ 1.274091, 45.32988 ], [ 1.281923, 45.34213 ], [ 1.285155, 45.35205 ], [ 1.302753, 45.358067 ], [ 1.307725, 45.357971 ], [ 1.311868, 45.35955 ], [ 1.319877, 45.367205 ], [ 1.323231, 45.38312 ], [ 1.318722, 45.38428 ], [ 1.29964, 45.39431 ], [ 1.281683, 45.38509 ], [ 1.274016, 45.39287 ], [ 1.277897, 45.39923 ], [ 1.26411, 45.39816 ], [ 1.260222, 45.40025 ], [ 1.258724, 45.41379 ], [ 1.265645, 45.417798 ], [ 1.279872, 45.41513 ], [ 1.289192, 45.4173 ], [ 1.289382, 45.42068 ], [ 1.288271, 45.433529 ], [ 1.272393, 45.437303 ], [ 1.269663, 45.439936 ], [ 1.253152, 45.44422 ], [ 1.25548, 45.45036 ], [ 1.263341, 45.453897 ], [ 1.263869, 45.467308 ], [ 1.269155, 45.47636 ], [ 1.275609, 45.47795 ], [ 1.27885, 45.47709 ], [ 1.286405, 45.48075 ], [ 1.287191, 45.48724 ], [ 1.285317, 45.490281 ], [ 1.345901, 45.46874 ], [ 1.350078, 45.466897 ], [ 1.368894, 45.48956 ], [ 1.375566, 45.49433 ], [ 1.384904, 45.495567 ], [ 1.3896, 45.49616 ], [ 1.391455, 45.50729 ], [ 1.395821, 45.50867 ], [ 1.408944, 45.526335 ], [ 1.417346, 45.529588 ], [ 1.426618, 45.52979 ], [ 1.435222, 45.521876 ], [ 1.439542, 45.52041 ], [ 1.452689, 45.53505 ], [ 1.453415, 45.55222 ], [ 1.473136, 45.55342 ], [ 1.478789, 45.559077 ], [ 1.480434, 45.56594 ], [ 1.488061, 45.56226 ], [ 1.492228, 45.560861 ], [ 1.491524, 45.5523 ], [ 1.492475, 45.54939 ], [ 1.511347, 45.55214 ], [ 1.516971, 45.55755 ], [ 1.517394, 45.564276 ], [ 1.541999, 45.555015 ], [ 1.54682, 45.55446 ], [ 1.558783, 45.550945 ], [ 1.571207, 45.55529 ], [ 1.584891, 45.55608 ], [ 1.590755, 45.572037 ], [ 1.592897, 45.575027 ], [ 1.600404, 45.57942 ], [ 1.625187, 45.578705 ], [ 1.64933, 45.59055 ], [ 1.651973, 45.59315 ], [ 1.658937, 45.59694 ], [ 1.659864, 45.606349 ], [ 1.664765, 45.61169 ], [ 1.668273, 45.614149 ], [ 1.696303, 45.633651 ], [ 1.710733, 45.64134 ], [ 1.724169, 45.63886 ], [ 1.750205, 45.64571 ], [ 1.752899, 45.65208 ], [ 1.753465, 45.65546 ], [ 1.763797, 45.654577 ], [ 1.765424, 45.657648 ], [ 1.77472, 45.65831 ], [ 1.783086, 45.673285 ], [ 1.785834, 45.68266 ], [ 1.794815, 45.680913 ], [ 1.801385, 45.672986 ], [ 1.802214, 45.676219 ], [ 1.815294, 45.679771 ], [ 1.819797, 45.67404 ], [ 1.823414, 45.67191 ], [ 1.826437, 45.665046 ], [ 1.84507, 45.663374 ], [ 1.854027, 45.67058 ], [ 1.874816, 45.664666 ], [ 1.87902, 45.666383 ], [ 1.882191, 45.679824 ], [ 1.901422, 45.67858 ], [ 1.909555, 45.6818 ], [ 1.907303, 45.69176 ], [ 1.898709, 45.694864 ], [ 1.898731, 45.698278 ], [ 1.910664, 45.703788 ], [ 1.918664, 45.712069 ], [ 1.928036, 45.71138 ], [ 1.934638, 45.706305 ], [ 1.944024, 45.70684 ], [ 1.943714, 45.71365 ], [ 1.9562, 45.723716 ], [ 1.980317, 45.722496 ], [ 1.982496, 45.7194 ], [ 1.991336, 45.72249 ], [ 1.99766, 45.73183 ], [ 2.00152, 45.748793 ], [ 2.014127, 45.754487 ], [ 2.038881, 45.755863 ], [ 2.044947, 45.761444 ], [ 2.048767, 45.76373 ], [ 2.053694, 45.763057 ], [ 2.060696, 45.7538 ], [ 2.082889, 45.745972 ], [ 2.083935, 45.73946 ], [ 2.084469, 45.73596 ], [ 2.08469, 45.728048 ], [ 2.097347, 45.733337 ], [ 2.11409, 45.726878 ], [ 2.129914, 45.734502 ], [ 2.143627, 45.72508 ], [ 2.152469, 45.72287 ], [ 2.156851, 45.72131 ], [ 2.160591, 45.729854 ], [ 2.160912, 45.735836 ], [ 2.174253, 45.732035 ], [ 2.184581, 45.720556 ], [ 2.203401, 45.717134 ], [ 2.195961, 45.704519 ], [ 2.19386, 45.701397 ], [ 2.197924, 45.699454 ], [ 2.210924, 45.702562 ], [ 2.211855, 45.70939 ], [ 2.21268, 45.712786 ], [ 2.222647, 45.69783 ], [ 2.232023, 45.69821 ], [ 2.237879, 45.69293 ], [ 2.24665, 45.694288 ], [ 2.257715, 45.688436 ], [ 2.266579, 45.69055 ], [ 2.271074, 45.691648 ], [ 2.271641, 45.66424 ], [ 2.286451, 45.6651 ], [ 2.29798, 45.671512 ], [ 2.306856, 45.674584 ], [ 2.320098, 45.67054 ], [ 2.341309, 45.68422 ], [ 2.348835, 45.69316 ], [ 2.347585, 45.70004 ], [ 2.345206, 45.70667 ], [ 2.348543, 45.70921 ], [ 2.362824, 45.712529 ], [ 2.367805, 45.71312 ], [ 2.37093, 45.71294 ], [ 2.374044, 45.712718 ], [ 2.381776, 45.708627 ], [ 2.410602, 45.70901 ], [ 2.431662, 45.70099 ], [ 2.435856, 45.699275 ], [ 2.444511, 45.707567 ], [ 2.453993, 45.709243 ], [ 2.466775, 45.71935 ], [ 2.471361, 45.719727 ], [ 2.474037, 45.728996 ], [ 2.487671, 45.73686 ], [ 2.492126, 45.73767 ], [ 2.521626, 45.70949 ], [ 2.521281, 45.69582 ], [ 2.52583, 45.69435 ], [ 2.526321, 45.685 ], [ 2.528684, 45.6822 ], [ 2.524542, 45.681215 ], [ 2.514537, 45.67214 ], [ 2.51449, 45.66581 ], [ 2.526007, 45.65567 ], [ 2.518942, 45.64708 ], [ 2.51907, 45.64427 ], [ 2.517926, 45.63991 ], [ 2.513977, 45.639441 ], [ 2.486287, 45.64082 ], [ 2.482026, 45.63521 ], [ 2.478432, 45.607917 ], [ 2.474686, 45.60655 ], [ 2.465476, 45.60105 ], [ 2.463472, 45.59468 ], [ 2.47428, 45.579019 ], [ 2.488221, 45.569016 ], [ 2.496294, 45.556832 ], [ 2.507604, 45.553353 ], [ 2.51588, 45.55388 ], [ 2.516673, 45.55115 ], [ 2.518148, 45.543574 ], [ 2.51498, 45.54099 ], [ 2.517911, 45.53107 ], [ 2.514877, 45.524893 ], [ 2.518362, 45.518911 ], [ 2.509567, 45.50681 ], [ 2.508997, 45.50023 ], [ 2.510569, 45.497743 ], [ 2.51389, 45.49284 ], [ 2.508409, 45.478508 ], [ 2.509307, 45.472397 ], [ 2.503695, 45.461684 ], [ 2.499701, 45.460433 ], [ 2.501585, 45.451517 ], [ 2.496878, 45.44716 ], [ 2.496051, 45.44383 ], [ 2.492279, 45.42402 ], [ 2.487538, 45.41817 ], [ 2.517482, 45.40205 ], [ 2.522233, 45.402603 ], [ 2.527255, 45.390756 ], [ 2.52351, 45.38481 ], [ 2.523372, 45.381546 ], [ 2.520664, 45.38433 ], [ 2.508434, 45.38013 ], [ 2.485575, 45.37879 ], [ 2.480204, 45.36969 ], [ 2.476367, 45.371566 ], [ 2.46839, 45.38281 ], [ 2.441552, 45.384527 ], [ 2.437851, 45.387822 ], [ 2.435245, 45.39019 ], [ 2.423124, 45.396959 ], [ 2.418301, 45.397358 ], [ 2.404119, 45.39802 ], [ 2.396444, 45.402168 ], [ 2.393588, 45.40852 ], [ 2.380991, 45.41354 ], [ 2.376968, 45.41432 ], [ 2.361707, 45.414987 ], [ 2.355135, 45.415031 ], [ 2.35025, 45.409609 ], [ 2.368799, 45.386005 ], [ 2.363485, 45.3803 ], [ 2.364622, 45.37468 ], [ 2.364432, 45.35775 ], [ 2.351509, 45.347654 ], [ 2.358556, 45.338987 ], [ 2.358813, 45.335521 ], [ 2.353415, 45.32979 ], [ 2.339866, 45.32581 ], [ 2.335034, 45.326423 ], [ 2.31693, 45.321415 ], [ 2.306146, 45.310012 ], [ 2.305283, 45.30654 ], [ 2.290328, 45.288473 ], [ 2.276134, 45.288184 ], [ 2.273244, 45.28967 ], [ 2.269695, 45.28989 ], [ 2.267932, 45.287185 ], [ 2.261734, 45.28323 ], [ 2.26155, 45.279768 ], [ 2.25783, 45.26984 ], [ 2.244194, 45.266343 ], [ 2.239008, 45.26047 ], [ 2.238564, 45.24721 ], [ 2.225317, 45.24375 ], [ 2.221133, 45.23755 ], [ 2.2023, 45.226575 ], [ 2.203062, 45.22316 ], [ 2.198876, 45.22183 ], [ 2.191163, 45.223055 ], [ 2.192536, 45.21975 ], [ 2.191141, 45.203443 ], [ 2.198415, 45.19893 ], [ 2.201689, 45.18198 ], [ 2.233009, 45.16731 ], [ 2.230423, 45.161921 ], [ 2.225778, 45.16092 ], [ 2.211364, 45.160464 ], [ 2.210419, 45.147158 ], [ 2.20141, 45.13915 ], [ 2.193102, 45.13566 ], [ 2.178793, 45.1363 ], [ 2.181103, 45.133215 ], [ 2.187932, 45.11671 ], [ 2.178862, 45.10476 ], [ 2.17937, 45.09437 ], [ 2.172776, 45.08128 ], [ 2.168152, 45.081073 ], [ 2.161012, 45.085152 ], [ 2.143403, 45.08631 ], [ 2.138101, 45.08145 ], [ 2.133317, 45.08181 ], [ 2.102112, 45.06216 ], [ 2.100208, 45.062032 ], [ 2.09837, 45.059424 ], [ 2.095159, 45.056039 ], [ 2.110262, 45.03861 ], [ 2.116938, 45.02197 ], [ 2.137833, 45.008132 ], [ 2.140896, 45.005409 ], [ 2.139895, 45.002 ], [ 2.133293, 44.98575 ], [ 2.106208, 44.98151 ], [ 2.093554, 44.98571 ], [ 2.089121, 44.984441 ], [ 2.08473, 44.982991 ], [ 2.062914, 44.976506 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "20", "CODE_DEPT": "21", "NOM_DEPT": "COTE-D'OR", "CODE_CHF": "231", "NOM_CHF": "DIJON", "X_CHF_LIEU": "8542", "Y_CHF_LIEU": "66934", "X_CENTROID": "8336", "Y_CENTROID": "67042", "CODE_REG": "26", "NOM_REGION": "BOURGOGNE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.255236, 46.979888 ], [ 5.242026, 46.981542 ], [ 5.222072, 46.988854 ], [ 5.220619, 46.98618 ], [ 5.212199, 46.98014 ], [ 5.208954, 46.982234 ], [ 5.201518, 46.9832 ], [ 5.198601, 46.9804 ], [ 5.192864, 46.97135 ], [ 5.189358, 46.97283 ], [ 5.181662, 46.974827 ], [ 5.164631, 46.96423 ], [ 5.150454, 46.96637 ], [ 5.145926, 46.96533 ], [ 5.138312, 46.96242 ], [ 5.120174, 46.96319 ], [ 5.118261, 46.96037 ], [ 5.106005, 46.95712 ], [ 5.103195, 46.948796 ], [ 5.100742, 46.94658 ], [ 5.097533, 46.94488 ], [ 5.101101, 46.954464 ], [ 5.074772, 46.96111 ], [ 5.070824, 46.967242 ], [ 5.065934, 46.96701 ], [ 5.06575, 46.96978 ], [ 5.057018, 46.97541 ], [ 5.054491, 46.9775 ], [ 5.049304, 46.981587 ], [ 5.044374, 46.98069 ], [ 5.029188, 46.979646 ], [ 5.018517, 46.97229 ], [ 5.003646, 46.97185 ], [ 4.996557, 46.96409 ], [ 5.00125, 46.959744 ], [ 5.00565, 46.95921 ], [ 5.004412, 46.958113 ], [ 4.999744, 46.95886 ], [ 4.967366, 46.961966 ], [ 4.964474, 46.96457 ], [ 4.955229, 46.9632 ], [ 4.952096, 46.96498 ], [ 4.943033, 46.96501 ], [ 4.914754, 46.96776 ], [ 4.910146, 46.9673 ], [ 4.896423, 46.96613 ], [ 4.89099, 46.957489 ], [ 4.893082, 46.9515 ], [ 4.870766, 46.94817 ], [ 4.866477, 46.94661 ], [ 4.816575, 46.93581 ], [ 4.816165, 46.932989 ], [ 4.80871, 46.930629 ], [ 4.788806, 46.93223 ], [ 4.790831, 46.925487 ], [ 4.779335, 46.91888 ], [ 4.775264, 46.917775 ], [ 4.770888, 46.9178 ], [ 4.76581, 46.918461 ], [ 4.755666, 46.91735 ], [ 4.744315, 46.924435 ], [ 4.740913, 46.92205 ], [ 4.72813, 46.919375 ], [ 4.725702, 46.92156 ], [ 4.718761, 46.919884 ], [ 4.719844, 46.916734 ], [ 4.712712, 46.90651 ], [ 4.708482, 46.90489 ], [ 4.68522, 46.900954 ], [ 4.682495, 46.90333 ], [ 4.666216, 46.91233 ], [ 4.665587, 46.915352 ], [ 4.679344, 46.927129 ], [ 4.678435, 46.93043 ], [ 4.652319, 46.93879 ], [ 4.64986, 46.94136 ], [ 4.644807, 46.940812 ], [ 4.614328, 46.94167 ], [ 4.617528, 46.944025 ], [ 4.613027, 46.94919 ], [ 4.599187, 46.950342 ], [ 4.595184, 46.952387 ], [ 4.589702, 46.957839 ], [ 4.591862, 46.967769 ], [ 4.573661, 46.97339 ], [ 4.570956, 46.97538 ], [ 4.567488, 46.98282 ], [ 4.568085, 46.99113 ], [ 4.56426, 46.9922 ], [ 4.554726, 46.990645 ], [ 4.547687, 46.995323 ], [ 4.556762, 47.006971 ], [ 4.554809, 47.020055 ], [ 4.531749, 47.01249 ], [ 4.506723, 47.013524 ], [ 4.504946, 47.01682 ], [ 4.502063, 47.018763 ], [ 4.498842, 47.02558 ], [ 4.495195, 47.027515 ], [ 4.489643, 47.03201 ], [ 4.471598, 47.030492 ], [ 4.457438, 47.040154 ], [ 4.42728, 47.040413 ], [ 4.406283, 47.05 ], [ 4.403261, 47.05638 ], [ 4.407028, 47.06947 ], [ 4.416154, 47.07723 ], [ 4.411758, 47.07899 ], [ 4.397777, 47.08272 ], [ 4.377814, 47.08149 ], [ 4.370266, 47.07702 ], [ 4.36218, 47.06428 ], [ 4.357443, 47.062992 ], [ 4.34425, 47.07243 ], [ 4.349385, 47.096953 ], [ 4.346937, 47.09981 ], [ 4.338435, 47.10257 ], [ 4.309766, 47.10367 ], [ 4.302058, 47.10722 ], [ 4.300654, 47.109703 ], [ 4.298812, 47.112047 ], [ 4.281407, 47.107838 ], [ 4.263651, 47.11213 ], [ 4.259725, 47.11401 ], [ 4.252329, 47.128362 ], [ 4.25165, 47.13151 ], [ 4.247581, 47.13299 ], [ 4.239994, 47.14216 ], [ 4.241903, 47.14823 ], [ 4.237719, 47.146527 ], [ 4.219316, 47.14567 ], [ 4.21432, 47.15414 ], [ 4.209834, 47.155412 ], [ 4.210078, 47.158615 ], [ 4.209485, 47.168057 ], [ 4.212327, 47.18113 ], [ 4.230876, 47.19704 ], [ 4.22889, 47.20378 ], [ 4.219177, 47.21942 ], [ 4.192241, 47.23541 ], [ 4.186745, 47.24514 ], [ 4.177723, 47.25274 ], [ 4.135149, 47.23736 ], [ 4.133287, 47.2406 ], [ 4.125356, 47.249506 ], [ 4.114587, 47.29261 ], [ 4.131322, 47.304314 ], [ 4.132541, 47.30749 ], [ 4.123776, 47.30424 ], [ 4.11539, 47.30772 ], [ 4.128764, 47.31737 ], [ 4.130407, 47.32057 ], [ 4.123777, 47.32957 ], [ 4.125043, 47.335671 ], [ 4.139693, 47.35199 ], [ 4.143319, 47.35429 ], [ 4.13986, 47.3567 ], [ 4.130918, 47.35428 ], [ 4.119339, 47.33966 ], [ 4.107051, 47.33596 ], [ 4.106086, 47.33926 ], [ 4.107089, 47.34934 ], [ 4.098155, 47.35749 ], [ 4.10567, 47.36602 ], [ 4.106783, 47.37627 ], [ 4.097171, 47.373534 ], [ 4.082395, 47.37555 ], [ 4.078053, 47.38175 ], [ 4.085936, 47.394031 ], [ 4.067769, 47.40051 ], [ 4.065198, 47.40727 ], [ 4.070106, 47.407286 ], [ 4.072978, 47.413652 ], [ 4.084039, 47.42021 ], [ 4.082661, 47.42355 ], [ 4.083221, 47.43353 ], [ 4.080503, 47.43624 ], [ 4.085393, 47.4399 ], [ 4.095401, 47.432898 ], [ 4.098629, 47.430473 ], [ 4.106987, 47.43815 ], [ 4.103834, 47.44419 ], [ 4.108109, 47.44561 ], [ 4.115591, 47.44164 ], [ 4.119427, 47.443553 ], [ 4.128832, 47.470462 ], [ 4.125598, 47.47707 ], [ 4.120568, 47.477816 ], [ 4.118079, 47.4788 ], [ 4.115979, 47.48448 ], [ 4.120923, 47.489696 ], [ 4.118944, 47.49539 ], [ 4.116126, 47.49786 ], [ 4.112404, 47.5035 ], [ 4.116087, 47.50557 ], [ 4.114631, 47.51476 ], [ 4.119533, 47.5147 ], [ 4.13752, 47.51944 ], [ 4.140114, 47.525789 ], [ 4.143225, 47.52832 ], [ 4.150705, 47.5325 ], [ 4.149408, 47.53524 ], [ 4.145917, 47.54045 ], [ 4.153444, 47.54425 ], [ 4.159492, 47.55276 ], [ 4.164177, 47.55357 ], [ 4.168098, 47.55163 ], [ 4.17495, 47.553 ], [ 4.187159, 47.57048 ], [ 4.188284, 47.573174 ], [ 4.186136, 47.581289 ], [ 4.197352, 47.599692 ], [ 4.201036, 47.60197 ], [ 4.210871, 47.60133 ], [ 4.215812, 47.60083 ], [ 4.213621, 47.604 ], [ 4.215349, 47.630798 ], [ 4.224024, 47.633363 ], [ 4.231944, 47.645882 ], [ 4.236943, 47.646604 ], [ 4.246661, 47.661732 ], [ 4.22599, 47.67142 ], [ 4.226613, 47.67821 ], [ 4.250789, 47.67809 ], [ 4.255222, 47.6835 ], [ 4.279384, 47.68157 ], [ 4.284063, 47.682662 ], [ 4.280804, 47.6852 ], [ 4.261835, 47.69424 ], [ 4.265892, 47.70395 ], [ 4.257436, 47.70786 ], [ 4.253546, 47.71426 ], [ 4.239355, 47.71776 ], [ 4.241388, 47.72428 ], [ 4.256314, 47.727 ], [ 4.260371, 47.740621 ], [ 4.275392, 47.73983 ], [ 4.288087, 47.733901 ], [ 4.293038, 47.73285 ], [ 4.308158, 47.749242 ], [ 4.309503, 47.75236 ], [ 4.318003, 47.750635 ], [ 4.331033, 47.756087 ], [ 4.32954, 47.769534 ], [ 4.330507, 47.77296 ], [ 4.335459, 47.77396 ], [ 4.33446, 47.77725 ], [ 4.327231, 47.78566 ], [ 4.338072, 47.79662 ], [ 4.340297, 47.79957 ], [ 4.323647, 47.809639 ], [ 4.319977, 47.811427 ], [ 4.324899, 47.82074 ], [ 4.32163, 47.83384 ], [ 4.328751, 47.84169 ], [ 4.324863, 47.847197 ], [ 4.294777, 47.84667 ], [ 4.271426, 47.84034 ], [ 4.262689, 47.84401 ], [ 4.26444, 47.871501 ], [ 4.247359, 47.87616 ], [ 4.266941, 47.88717 ], [ 4.27068, 47.89359 ], [ 4.273877, 47.89631 ], [ 4.28612, 47.90056 ], [ 4.300067, 47.901094 ], [ 4.308703, 47.90336 ], [ 4.312718, 47.90498 ], [ 4.306787, 47.91038 ], [ 4.305628, 47.9204 ], [ 4.29652, 47.92304 ], [ 4.293424, 47.92568 ], [ 4.30209, 47.93829 ], [ 4.300411, 47.94519 ], [ 4.299289, 47.94861 ], [ 4.305655, 47.954163 ], [ 4.312802, 47.962499 ], [ 4.347354, 47.956339 ], [ 4.371696, 47.96133 ], [ 4.392313, 47.962106 ], [ 4.416466, 47.96828 ], [ 4.433946, 47.961462 ], [ 4.438111, 47.959377 ], [ 4.446962, 47.9562 ], [ 4.495482, 47.96805 ], [ 4.516449, 47.966349 ], [ 4.531442, 47.969899 ], [ 4.552383, 47.96779 ], [ 4.55658, 47.96923 ], [ 4.559969, 47.971423 ], [ 4.555441, 47.98477 ], [ 4.542963, 47.990433 ], [ 4.535514, 48.003131 ], [ 4.535774, 48.00657 ], [ 4.5456, 48.004988 ], [ 4.552644, 48.009189 ], [ 4.55472, 48.012276 ], [ 4.563343, 48.0154 ], [ 4.578157, 48.02857 ], [ 4.612164, 48.03005 ], [ 4.616807, 48.031376 ], [ 4.619447, 48.02642 ], [ 4.621946, 48.024348 ], [ 4.647584, 48.02469 ], [ 4.67296, 48.01502 ], [ 4.700888, 48.02285 ], [ 4.704239, 48.020241 ], [ 4.717126, 48.011368 ], [ 4.719943, 48.008896 ], [ 4.749531, 48.00431 ], [ 4.784607, 48.006727 ], [ 4.78942, 48.00787 ], [ 4.796214, 47.9954 ], [ 4.807631, 47.98884 ], [ 4.795259, 47.98344 ], [ 4.785712, 47.971461 ], [ 4.787781, 47.965254 ], [ 4.796724, 47.96257 ], [ 4.801642, 47.96254 ], [ 4.810959, 47.95987 ], [ 4.819692, 47.96247 ], [ 4.845033, 47.96043 ], [ 4.856121, 47.95328 ], [ 4.863158, 47.94457 ], [ 4.86521, 47.941564 ], [ 4.845857, 47.922903 ], [ 4.829963, 47.91559 ], [ 4.829474, 47.912285 ], [ 4.834024, 47.90679 ], [ 4.853034, 47.897539 ], [ 4.856783, 47.895634 ], [ 4.874586, 47.919522 ], [ 4.894663, 47.9226 ], [ 4.903607, 47.91955 ], [ 4.905961, 47.91647 ], [ 4.916131, 47.896976 ], [ 4.919542, 47.89431 ], [ 4.923381, 47.892401 ], [ 4.928136, 47.88697 ], [ 4.927456, 47.871548 ], [ 4.944541, 47.866387 ], [ 4.954094, 47.86677 ], [ 4.962141, 47.854264 ], [ 4.961536, 47.84076 ], [ 4.973256, 47.8312 ], [ 4.984619, 47.82756 ], [ 4.984281, 47.82461 ], [ 4.984921, 47.82527 ], [ 4.99022, 47.82112 ], [ 4.994125, 47.819748 ], [ 4.992111, 47.81344 ], [ 4.986103, 47.8036 ], [ 4.955366, 47.789719 ], [ 4.947261, 47.78693 ], [ 4.943089, 47.785719 ], [ 4.939148, 47.78389 ], [ 4.917958, 47.77709 ], [ 4.921897, 47.77594 ], [ 4.920816, 47.767837 ], [ 4.9168, 47.76682 ], [ 4.921427, 47.765883 ], [ 4.924775, 47.76062 ], [ 4.939114, 47.76205 ], [ 4.946347, 47.76596 ], [ 4.954454, 47.762716 ], [ 4.958989, 47.76187 ], [ 4.965074, 47.74222 ], [ 4.960496, 47.73281 ], [ 4.964441, 47.734828 ], [ 4.971535, 47.73108 ], [ 4.970801, 47.72782 ], [ 4.964464, 47.72281 ], [ 4.964212, 47.713422 ], [ 4.956914, 47.709051 ], [ 4.953759, 47.706313 ], [ 4.956706, 47.69974 ], [ 4.971371, 47.69023 ], [ 4.96857, 47.68733 ], [ 4.993925, 47.689285 ], [ 5.002099, 47.693539 ], [ 5.00401, 47.700376 ], [ 5.008993, 47.70096 ], [ 5.029154, 47.70993 ], [ 5.033099, 47.70772 ], [ 5.031234, 47.694135 ], [ 5.056238, 47.69481 ], [ 5.046804, 47.67557 ], [ 5.052569, 47.669839 ], [ 5.062024, 47.66718 ], [ 5.067123, 47.667368 ], [ 5.076587, 47.664976 ], [ 5.082662, 47.659447 ], [ 5.102371, 47.65734 ], [ 5.107398, 47.65133 ], [ 5.116859, 47.65202 ], [ 5.117441, 47.650566 ], [ 5.127205, 47.64846 ], [ 5.136233, 47.65195 ], [ 5.155673, 47.66839 ], [ 5.160201, 47.678155 ], [ 5.173442, 47.68082 ], [ 5.178341, 47.68095 ], [ 5.17341, 47.653536 ], [ 5.176227, 47.651385 ], [ 5.188388, 47.649609 ], [ 5.211365, 47.64166 ], [ 5.237409, 47.6203 ], [ 5.236942, 47.61678 ], [ 5.240285, 47.61678 ], [ 5.242875, 47.6182 ], [ 5.246326, 47.620136 ], [ 5.258601, 47.622222 ], [ 5.25601, 47.61922 ], [ 5.239656, 47.597653 ], [ 5.25623, 47.576551 ], [ 5.273261, 47.580551 ], [ 5.277901, 47.581361 ], [ 5.278142, 47.588255 ], [ 5.306357, 47.607277 ], [ 5.316021, 47.607221 ], [ 5.3233, 47.611993 ], [ 5.333294, 47.61063 ], [ 5.337818, 47.60903 ], [ 5.343756, 47.603543 ], [ 5.342324, 47.59669 ], [ 5.355723, 47.59169 ], [ 5.358712, 47.59427 ], [ 5.365786, 47.60279 ], [ 5.374079, 47.604542 ], [ 5.378175, 47.603549 ], [ 5.389121, 47.595238 ], [ 5.396263, 47.595966 ], [ 5.399805, 47.59716 ], [ 5.422559, 47.629463 ], [ 5.425595, 47.63207 ], [ 5.440171, 47.629771 ], [ 5.468523, 47.611129 ], [ 5.471052, 47.60822 ], [ 5.478564, 47.60539 ], [ 5.486492, 47.57861 ], [ 5.48238, 47.56545 ], [ 5.491292, 47.563383 ], [ 5.496668, 47.55059 ], [ 5.49664, 47.54713 ], [ 5.487817, 47.52991 ], [ 5.486404, 47.52697 ], [ 5.471747, 47.52746 ], [ 5.469344, 47.52437 ], [ 5.453722, 47.5067 ], [ 5.451419, 47.504303 ], [ 5.44746, 47.4962 ], [ 5.44311, 47.494932 ], [ 5.436433, 47.49042 ], [ 5.43203, 47.491777 ], [ 5.427781, 47.49652 ], [ 5.399216, 47.499014 ], [ 5.397351, 47.49625 ], [ 5.391142, 47.48816 ], [ 5.388163, 47.48362 ], [ 5.387298, 47.481194 ], [ 5.403346, 47.477351 ], [ 5.407642, 47.47719 ], [ 5.404108, 47.475102 ], [ 5.379534, 47.46614 ], [ 5.370722, 47.464475 ], [ 5.381551, 47.459229 ], [ 5.380928, 47.45358 ], [ 5.379572, 47.45056 ], [ 5.409538, 47.46146 ], [ 5.413959, 47.459966 ], [ 5.418162, 47.450702 ], [ 5.431819, 47.44826 ], [ 5.435629, 47.45029 ], [ 5.441022, 47.44656 ], [ 5.43846, 47.44423 ], [ 5.430425, 47.42136 ], [ 5.442459, 47.40705 ], [ 5.433672, 47.39584 ], [ 5.433256, 47.392522 ], [ 5.449094, 47.38675 ], [ 5.451393, 47.38397 ], [ 5.477992, 47.39423 ], [ 5.496919, 47.38855 ], [ 5.491894, 47.372889 ], [ 5.489222, 47.36987 ], [ 5.488824, 47.35586 ], [ 5.490065, 47.354347 ], [ 5.494704, 47.338099 ], [ 5.48901, 47.32903 ], [ 5.477101, 47.326749 ], [ 5.47373, 47.324317 ], [ 5.47167, 47.318119 ], [ 5.47918, 47.31496 ], [ 5.498495, 47.314221 ], [ 5.509108, 47.30809 ], [ 5.513097, 47.30816 ], [ 5.518539, 47.304187 ], [ 5.516953, 47.30115 ], [ 5.508605, 47.29337 ], [ 5.505365, 47.284071 ], [ 5.501046, 47.28513 ], [ 5.493047, 47.28818 ], [ 5.488559, 47.28502 ], [ 5.488275, 47.282601 ], [ 5.488004, 47.280175 ], [ 5.487558, 47.26656 ], [ 5.483133, 47.26041 ], [ 5.480799, 47.25744 ], [ 5.484335, 47.23806 ], [ 5.48011, 47.23705 ], [ 5.475309, 47.231305 ], [ 5.479136, 47.21851 ], [ 5.474206, 47.21308 ], [ 5.470255, 47.2111 ], [ 5.449262, 47.20322 ], [ 5.446891, 47.200762 ], [ 5.452548, 47.19381 ], [ 5.456227, 47.191629 ], [ 5.458916, 47.18193 ], [ 5.45227, 47.166268 ], [ 5.450873, 47.162857 ], [ 5.448641, 47.159662 ], [ 5.445085, 47.15842 ], [ 5.438298, 47.152017 ], [ 5.439112, 47.148991 ], [ 5.438985, 47.14299 ], [ 5.428918, 47.13696 ], [ 5.424893, 47.13698 ], [ 5.414566, 47.13276 ], [ 5.414128, 47.129753 ], [ 5.409191, 47.12502 ], [ 5.412114, 47.11986 ], [ 5.411215, 47.116853 ], [ 5.400588, 47.10756 ], [ 5.398163, 47.10465 ], [ 5.39781, 47.09465 ], [ 5.391341, 47.08976 ], [ 5.390537, 47.086784 ], [ 5.377627, 47.079322 ], [ 5.363344, 47.07834 ], [ 5.35988, 47.08114 ], [ 5.357909, 47.0786 ], [ 5.345786, 47.076649 ], [ 5.341181, 47.07717 ], [ 5.332533, 47.076593 ], [ 5.323975, 47.07379 ], [ 5.310446, 47.06051 ], [ 5.301895, 47.060904 ], [ 5.29907, 47.05864 ], [ 5.295851, 47.05608 ], [ 5.283484, 47.046318 ], [ 5.275218, 47.027161 ], [ 5.275327, 47.02693 ], [ 5.279764, 47.025333 ], [ 5.317198, 47.015806 ], [ 5.31824, 47.01246 ], [ 5.313647, 47.011302 ], [ 5.303971, 47.01045 ], [ 5.298243, 47.00179 ], [ 5.279146, 46.99915 ], [ 5.27507, 46.99803 ], [ 5.271966, 46.989342 ], [ 5.267767, 46.988388 ], [ 5.255236, 46.979888 ] ] ], [ [ [ 4.181902, 47.150514 ], [ 4.188262, 47.14506 ], [ 4.187801, 47.137938 ], [ 4.172031, 47.11539 ], [ 4.167639, 47.11726 ], [ 4.160185, 47.12145 ], [ 4.150014, 47.11404 ], [ 4.137526, 47.119751 ], [ 4.130814, 47.12866 ], [ 4.126361, 47.13025 ], [ 4.118037, 47.126469 ], [ 4.115967, 47.123338 ], [ 4.108619, 47.131 ], [ 4.116374, 47.134688 ], [ 4.112572, 47.14356 ], [ 4.115724, 47.14602 ], [ 4.120584, 47.145524 ], [ 4.139461, 47.14329 ], [ 4.181902, 47.150514 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "21", "CODE_DEPT": "22", "NOM_DEPT": "COTES-D'ARMOR", "CODE_CHF": "278", "NOM_CHF": "SAINT-BRIEUC", "X_CHF_LIEU": "2749", "Y_CHF_LIEU": "68392", "X_CENTROID": "2666", "Y_CENTROID": "68317", "CODE_REG": "53", "NOM_REGION": "BRETAGNE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.287278, 48.133746 ], [ -2.292218, 48.132757 ], [ -2.306935, 48.13576 ], [ -2.316929, 48.13411 ], [ -2.322439, 48.12462 ], [ -2.330118, 48.120361 ], [ -2.346988, 48.1264 ], [ -2.357527, 48.111315 ], [ -2.36211, 48.113614 ], [ -2.365799, 48.115854 ], [ -2.374551, 48.1309 ], [ -2.374972, 48.13874 ], [ -2.375705, 48.14144 ], [ -2.380299, 48.143152 ], [ -2.399673, 48.15508 ], [ -2.407188, 48.16804 ], [ -2.420924, 48.173254 ], [ -2.447034, 48.172519 ], [ -2.451564, 48.17081 ], [ -2.460856, 48.16327 ], [ -2.485405, 48.164552 ], [ -2.488328, 48.15791 ], [ -2.534346, 48.15694 ], [ -2.533234, 48.15367 ], [ -2.515424, 48.13792 ], [ -2.514928, 48.131234 ], [ -2.520902, 48.122141 ], [ -2.534741, 48.10764 ], [ -2.546657, 48.10107 ], [ -2.551781, 48.09575 ], [ -2.548679, 48.07648 ], [ -2.553719, 48.07602 ], [ -2.564496, 48.069192 ], [ -2.579225, 48.06975 ], [ -2.580891, 48.06653 ], [ -2.582922, 48.06334 ], [ -2.623324, 48.0369 ], [ -2.643247, 48.03728 ], [ -2.64629, 48.040087 ], [ -2.655761, 48.03254 ], [ -2.660751, 48.037055 ], [ -2.657516, 48.0424 ], [ -2.659756, 48.044852 ], [ -2.668668, 48.04678 ], [ -2.667, 48.0567 ], [ -2.671327, 48.062907 ], [ -2.655691, 48.087965 ], [ -2.652594, 48.10721 ], [ -2.651812, 48.11061 ], [ -2.652644, 48.113471 ], [ -2.651993, 48.119971 ], [ -2.656567, 48.12128 ], [ -2.662597, 48.1304 ], [ -2.676227, 48.13182 ], [ -2.679521, 48.129499 ], [ -2.702304, 48.118727 ], [ -2.703982, 48.112429 ], [ -2.709032, 48.112915 ], [ -2.728458, 48.1165 ], [ -2.748166, 48.113871 ], [ -2.751404, 48.116509 ], [ -2.761983, 48.097144 ], [ -2.775249, 48.08704 ], [ -2.778113, 48.10608 ], [ -2.783476, 48.11137 ], [ -2.78195, 48.120327 ], [ -2.784964, 48.122615 ], [ -2.810401, 48.14655 ], [ -2.815509, 48.14654 ], [ -2.849797, 48.141211 ], [ -2.854805, 48.14236 ], [ -2.877949, 48.150917 ], [ -2.888056, 48.1621 ], [ -2.891453, 48.164734 ], [ -2.896018, 48.163341 ], [ -2.943871, 48.171702 ], [ -2.963583, 48.16933 ], [ -2.968085, 48.16788 ], [ -2.979469, 48.16132 ], [ -2.999753, 48.16071 ], [ -2.998049, 48.16731 ], [ -3.011584, 48.175161 ], [ -3.018569, 48.19131 ], [ -3.016147, 48.197994 ], [ -3.020859, 48.196706 ], [ -3.030742, 48.1965 ], [ -3.035975, 48.20235 ], [ -3.054889, 48.20647 ], [ -3.070056, 48.205229 ], [ -3.076967, 48.2099 ], [ -3.081694, 48.21003 ], [ -3.086394, 48.204666 ], [ -3.094792, 48.20304 ], [ -3.09757, 48.205578 ], [ -3.11534, 48.20677 ], [ -3.120273, 48.201 ], [ -3.129925, 48.19867 ], [ -3.136108, 48.189165 ], [ -3.136624, 48.18224 ], [ -3.130223, 48.17687 ], [ -3.132714, 48.17393 ], [ -3.147869, 48.161097 ], [ -3.161117, 48.16468 ], [ -3.173944, 48.159354 ], [ -3.178229, 48.16115 ], [ -3.183202, 48.161224 ], [ -3.192268, 48.16387 ], [ -3.201521, 48.161443 ], [ -3.214832, 48.151905 ], [ -3.211561, 48.142456 ], [ -3.238346, 48.15033 ], [ -3.252814, 48.14914 ], [ -3.2569, 48.147321 ], [ -3.269592, 48.14368 ], [ -3.271025, 48.14053 ], [ -3.275336, 48.142197 ], [ -3.284694, 48.143765 ], [ -3.291728, 48.15252 ], [ -3.300754, 48.155021 ], [ -3.315455, 48.15521 ], [ -3.318249, 48.1488 ], [ -3.322894, 48.14963 ], [ -3.324402, 48.158492 ], [ -3.336929, 48.171567 ], [ -3.341953, 48.17081 ], [ -3.34934, 48.166033 ], [ -3.374356, 48.162777 ], [ -3.389662, 48.15357 ], [ -3.403883, 48.155018 ], [ -3.408702, 48.14893 ], [ -3.417596, 48.14564 ], [ -3.42051, 48.148524 ], [ -3.433656, 48.1541 ], [ -3.437932, 48.16028 ], [ -3.422077, 48.173347 ], [ -3.445105, 48.18693 ], [ -3.446269, 48.18034 ], [ -3.450452, 48.178451 ], [ -3.470217, 48.179019 ], [ -3.480454, 48.18586 ], [ -3.484418, 48.184829 ], [ -3.496707, 48.182888 ], [ -3.501416, 48.181328 ], [ -3.532568, 48.178331 ], [ -3.553306, 48.17965 ], [ -3.55792, 48.180931 ], [ -3.564839, 48.185747 ], [ -3.566669, 48.190033 ], [ -3.543101, 48.193575 ], [ -3.519676, 48.19067 ], [ -3.521292, 48.197176 ], [ -3.522589, 48.203939 ], [ -3.54126, 48.2092 ], [ -3.556032, 48.22727 ], [ -3.556488, 48.230716 ], [ -3.553725, 48.24087 ], [ -3.544423, 48.24357 ], [ -3.539952, 48.24979 ], [ -3.540715, 48.253206 ], [ -3.522177, 48.25525 ], [ -3.526512, 48.2611 ], [ -3.52585, 48.2708 ], [ -3.517898, 48.28226 ], [ -3.522957, 48.28172 ], [ -3.530105, 48.286558 ], [ -3.553028, 48.293016 ], [ -3.552316, 48.299682 ], [ -3.547487, 48.29871 ], [ -3.539615, 48.30157 ], [ -3.528434, 48.31657 ], [ -3.518631, 48.31807 ], [ -3.52279, 48.32006 ], [ -3.529744, 48.320253 ], [ -3.541027, 48.31334 ], [ -3.549958, 48.31572 ], [ -3.556146, 48.34243 ], [ -3.562814, 48.34702 ], [ -3.553282, 48.37016 ], [ -3.554415, 48.37717 ], [ -3.603288, 48.38637 ], [ -3.607682, 48.388327 ], [ -3.603261, 48.39714 ], [ -3.603722, 48.40048 ], [ -3.600208, 48.4023 ], [ -3.598768, 48.422644 ], [ -3.585041, 48.433 ], [ -3.554192, 48.445378 ], [ -3.550496, 48.44783 ], [ -3.552517, 48.450752 ], [ -3.56894, 48.45294 ], [ -3.578885, 48.45952 ], [ -3.578692, 48.46273 ], [ -3.592163, 48.4645 ], [ -3.594945, 48.47043 ], [ -3.599593, 48.4708 ], [ -3.59807, 48.473897 ], [ -3.604904, 48.47825 ], [ -3.601798, 48.484415 ], [ -3.604168, 48.49405 ], [ -3.597677, 48.498591 ], [ -3.592834, 48.50004 ], [ -3.555746, 48.52961 ], [ -3.53928, 48.53825 ], [ -3.553824, 48.54128 ], [ -3.572694, 48.556768 ], [ -3.581724, 48.55397 ], [ -3.599429, 48.55861 ], [ -3.585718, 48.573269 ], [ -3.594583, 48.585749 ], [ -3.599568, 48.5846 ], [ -3.613731, 48.589224 ], [ -3.629298, 48.58836 ], [ -3.636745, 48.593329 ], [ -3.640603, 48.59606 ], [ -3.63988, 48.609114 ], [ -3.64898, 48.61163 ], [ -3.654181, 48.617296 ], [ -3.654996, 48.624011 ], [ -3.663536, 48.6538 ], [ -3.660776, 48.6563 ], [ -3.659144, 48.65921 ], [ -3.655794, 48.6619 ], [ -3.636285, 48.672962 ], [ -3.636223, 48.679763 ], [ -3.622656, 48.68478 ], [ -3.610471, 48.67048 ], [ -3.579907, 48.67072 ], [ -3.576666, 48.672799 ], [ -3.57323, 48.674731 ], [ -3.570849, 48.67715 ], [ -3.567527, 48.68248 ], [ -3.571512, 48.687173 ], [ -3.576781, 48.687658 ], [ -3.582421, 48.69303 ], [ -3.58223, 48.7209 ], [ -3.565525, 48.72884 ], [ -3.555638, 48.727463 ], [ -3.553658, 48.72919 ], [ -3.55202, 48.73244 ], [ -3.549401, 48.74568 ], [ -3.565277, 48.75937 ], [ -3.580931, 48.75826 ], [ -3.585326, 48.77143 ], [ -3.584574, 48.77487 ], [ -3.578672, 48.78814 ], [ -3.568224, 48.795613 ], [ -3.558964, 48.79357 ], [ -3.554765, 48.791462 ], [ -3.537043, 48.80326 ], [ -3.543996, 48.81456 ], [ -3.539439, 48.82407 ], [ -3.534326, 48.82417 ], [ -3.522374, 48.822044 ], [ -3.522641, 48.82864 ], [ -3.511402, 48.83527 ], [ -3.507134, 48.834698 ], [ -3.506506, 48.82826 ], [ -3.49751, 48.82955 ], [ -3.489828, 48.82561 ], [ -3.487924, 48.83225 ], [ -3.479774, 48.83584 ], [ -3.455885, 48.81716 ], [ -3.440325, 48.81907 ], [ -3.431644, 48.816935 ], [ -3.441985, 48.801687 ], [ -3.440556, 48.798308 ], [ -3.389007, 48.80353 ], [ -3.38832, 48.81317 ], [ -3.37089, 48.81799 ], [ -3.366095, 48.81878 ], [ -3.363714, 48.82154 ], [ -3.354268, 48.820396 ], [ -3.340193, 48.82868 ], [ -3.335394, 48.82844 ], [ -3.320151, 48.837158 ], [ -3.295382, 48.83294 ], [ -3.279846, 48.84134 ], [ -3.26956, 48.833907 ], [ -3.264317, 48.83429 ], [ -3.244291, 48.85781 ], [ -3.229731, 48.867396 ], [ -3.220365, 48.86592 ], [ -3.21025, 48.850034 ], [ -3.218747, 48.833877 ], [ -3.214518, 48.835992 ], [ -3.204927, 48.83498 ], [ -3.204076, 48.82819 ], [ -3.209784, 48.8111 ], [ -3.236463, 48.789811 ], [ -3.231366, 48.79023 ], [ -3.220742, 48.78405 ], [ -3.22235, 48.79728 ], [ -3.200366, 48.815979 ], [ -3.196733, 48.818396 ], [ -3.199135, 48.82457 ], [ -3.18979, 48.83697 ], [ -3.178404, 48.84328 ], [ -3.173605, 48.84188 ], [ -3.168111, 48.85179 ], [ -3.152552, 48.85269 ], [ -3.12614, 48.864491 ], [ -3.099976, 48.86802 ], [ -3.078562, 48.87864 ], [ -3.075429, 48.87933 ], [ -3.091327, 48.87052 ], [ -3.094591, 48.86618 ], [ -3.082446, 48.86462 ], [ -3.076111, 48.85838 ], [ -3.078761, 48.85777 ], [ -3.085134, 48.862 ], [ -3.094174, 48.85877 ], [ -3.089684, 48.8572 ], [ -3.083934, 48.84789 ], [ -3.099514, 48.83087 ], [ -3.078831, 48.83089 ], [ -3.097467, 48.80256 ], [ -3.100741, 48.785176 ], [ -3.112482, 48.77809 ], [ -3.116333, 48.77566 ], [ -3.125345, 48.772214 ], [ -3.122322, 48.765766 ], [ -3.120943, 48.759261 ], [ -3.118393, 48.761827 ], [ -3.111677, 48.765762 ], [ -3.102455, 48.76613 ], [ -3.099673, 48.769065 ], [ -3.102467, 48.779278 ], [ -3.094622, 48.78363 ], [ -3.085475, 48.81036 ], [ -3.08275, 48.81334 ], [ -3.065899, 48.82134 ], [ -3.047483, 48.81709 ], [ -3.02184, 48.821044 ], [ -3.012409, 48.818741 ], [ -3.013162, 48.808475 ], [ -3.006439, 48.803113 ], [ -3.008707, 48.80005 ], [ -3.045663, 48.78754 ], [ -3.044231, 48.784256 ], [ -3.014259, 48.78074 ], [ -3.023743, 48.778247 ], [ -3.022475, 48.77211 ], [ -3.01452, 48.76775 ], [ -2.990491, 48.763 ], [ -2.985223, 48.762986 ], [ -2.964352, 48.76314 ], [ -2.955368, 48.76666 ], [ -2.950639, 48.76587 ], [ -2.935677, 48.75646 ], [ -2.940076, 48.74383 ], [ -2.936787, 48.73411 ], [ -2.947904, 48.72721 ], [ -2.94733, 48.723735 ], [ -2.930429, 48.71669 ], [ -2.923258, 48.707445 ], [ -2.890432, 48.69722 ], [ -2.88077, 48.67424 ], [ -2.866802, 48.67235 ], [ -2.858037, 48.67506 ], [ -2.854192, 48.669191 ], [ -2.850298, 48.667254 ], [ -2.846013, 48.66559 ], [ -2.838061, 48.65755 ], [ -2.829383, 48.65579 ], [ -2.825845, 48.64336 ], [ -2.818239, 48.61784 ], [ -2.815727, 48.61165 ], [ -2.82409, 48.59918 ], [ -2.818894, 48.593427 ], [ -2.808791, 48.592082 ], [ -2.791891, 48.584717 ], [ -2.781723, 48.58522 ], [ -2.774171, 48.576533 ], [ -2.772318, 48.57034 ], [ -2.715854, 48.55445 ], [ -2.72332, 48.5457 ], [ -2.718108, 48.53604 ], [ -2.720945, 48.533165 ], [ -2.712566, 48.530808 ], [ -2.713246, 48.5226 ], [ -2.710096, 48.52036 ], [ -2.688137, 48.49607 ], [ -2.679743, 48.491734 ], [ -2.675613, 48.49107 ], [ -2.682992, 48.49617 ], [ -2.676733, 48.509421 ], [ -2.679776, 48.526962 ], [ -2.676851, 48.53342 ], [ -2.66661, 48.533408 ], [ -2.650645, 48.52465 ], [ -2.634931, 48.52472 ], [ -2.630161, 48.52632 ], [ -2.631562, 48.537962 ], [ -2.628061, 48.53989 ], [ -2.624696, 48.54244 ], [ -2.604088, 48.55228 ], [ -2.575347, 48.57589 ], [ -2.54872, 48.59711 ], [ -2.532836, 48.597585 ], [ -2.503488, 48.60575 ], [ -2.498812, 48.60743 ], [ -2.473552, 48.624612 ], [ -2.471383, 48.63481 ], [ -2.48048, 48.6384 ], [ -2.481466, 48.6443 ], [ -2.440638, 48.650998 ], [ -2.421298, 48.64625 ], [ -2.41904, 48.63247 ], [ -2.42093, 48.62919 ], [ -2.413467, 48.63409 ], [ -2.40899, 48.635915 ], [ -2.409649, 48.64149 ], [ -2.399274, 48.64313 ], [ -2.383443, 48.65215 ], [ -2.348606, 48.66103 ], [ -2.330177, 48.673271 ], [ -2.323202, 48.6827 ], [ -2.314163, 48.68257 ], [ -2.309416, 48.67177 ], [ -2.288826, 48.66402 ], [ -2.313598, 48.633542 ], [ -2.325024, 48.62754 ], [ -2.334237, 48.6216 ], [ -2.337472, 48.619726 ], [ -2.332971, 48.619323 ], [ -2.324054, 48.61856 ], [ -2.320317, 48.61363 ], [ -2.311882, 48.61185 ], [ -2.300098, 48.623146 ], [ -2.291082, 48.62516 ], [ -2.286485, 48.626772 ], [ -2.287136, 48.63025 ], [ -2.266618, 48.641771 ], [ -2.251023, 48.64469 ], [ -2.24935, 48.639947 ], [ -2.253578, 48.63357 ], [ -2.245189, 48.624787 ], [ -2.242342, 48.614699 ], [ -2.229431, 48.608497 ], [ -2.221975, 48.59523 ], [ -2.211413, 48.587707 ], [ -2.213362, 48.57386 ], [ -2.209127, 48.573626 ], [ -2.205559, 48.575441 ], [ -2.205425, 48.57887 ], [ -2.192343, 48.59353 ], [ -2.193838, 48.60723 ], [ -2.184907, 48.60461 ], [ -2.186743, 48.581331 ], [ -2.184179, 48.57876 ], [ -2.16711, 48.5772 ], [ -2.164792, 48.58014 ], [ -2.156707, 48.587704 ], [ -2.169694, 48.59716 ], [ -2.150263, 48.616514 ], [ -2.145314, 48.61748 ], [ -2.128852, 48.60475 ], [ -2.123708, 48.60441 ], [ -2.125942, 48.59753 ], [ -2.1249, 48.593415 ], [ -2.094333, 48.57172 ], [ -2.080555, 48.56804 ], [ -2.060069, 48.5701 ], [ -2.047377, 48.56412 ], [ -2.052745, 48.551913 ], [ -2.043228, 48.54206 ], [ -2.038784, 48.542 ], [ -2.033869, 48.551173 ], [ -2.021944, 48.55622 ], [ -2.019503, 48.55909 ], [ -2.010653, 48.564792 ], [ -2.006895, 48.56611 ], [ -2.002588, 48.56737 ], [ -1.992523, 48.5534 ], [ -1.995831, 48.55122 ], [ -1.990653, 48.55117 ], [ -1.985165, 48.54557 ], [ -1.975885, 48.54263 ], [ -1.973978, 48.53598 ], [ -1.975595, 48.532717 ], [ -1.989694, 48.523012 ], [ -1.984063, 48.51745 ], [ -1.983501, 48.50041 ], [ -1.988241, 48.499196 ], [ -1.992993, 48.500528 ], [ -1.999356, 48.494158 ], [ -2.001378, 48.491603 ], [ -1.98109, 48.49831 ], [ -1.976357, 48.49846 ], [ -1.980342, 48.50086 ], [ -1.980073, 48.508021 ], [ -1.969414, 48.51563 ], [ -1.966889, 48.52248 ], [ -1.962484, 48.524108 ], [ -1.950396, 48.52126 ], [ -1.948554, 48.535235 ], [ -1.948037, 48.53881 ], [ -1.935391, 48.54821 ], [ -1.933339, 48.55107 ], [ -1.931336, 48.55056 ], [ -1.924803, 48.54518 ], [ -1.925546, 48.53836 ], [ -1.918771, 48.53314 ], [ -1.911453, 48.516604 ], [ -1.911488, 48.50974 ], [ -1.922607, 48.499449 ], [ -1.910871, 48.48478 ], [ -1.908996, 48.481554 ], [ -1.92213, 48.47732 ], [ -1.926936, 48.476826 ], [ -1.930747, 48.47035 ], [ -1.925583, 48.4643 ], [ -1.925875, 48.45744 ], [ -1.938892, 48.44702 ], [ -1.94173, 48.44853 ], [ -1.948042, 48.44635 ], [ -1.94883, 48.43646 ], [ -1.952001, 48.429874 ], [ -1.938097, 48.419863 ], [ -1.941192, 48.410584 ], [ -1.938171, 48.40783 ], [ -1.940771, 48.401371 ], [ -1.934232, 48.39632 ], [ -1.930066, 48.39433 ], [ -1.93829, 48.38909 ], [ -1.939919, 48.38613 ], [ -1.945718, 48.37742 ], [ -1.946466, 48.36712 ], [ -1.932019, 48.35459 ], [ -1.930318, 48.34813 ], [ -1.947782, 48.34259 ], [ -1.966897, 48.34282 ], [ -1.956632, 48.321857 ], [ -1.955451, 48.3188 ], [ -1.964572, 48.30144 ], [ -1.958045, 48.29312 ], [ -1.967577, 48.29191 ], [ -1.976457, 48.30024 ], [ -1.991436, 48.29819 ], [ -1.996033, 48.296651 ], [ -2.001991, 48.291107 ], [ -2.004284, 48.28113 ], [ -2.014101, 48.279532 ], [ -2.046771, 48.28978 ], [ -2.054287, 48.298556 ], [ -2.077427, 48.291622 ], [ -2.076641, 48.284741 ], [ -2.08501, 48.276285 ], [ -2.11046, 48.27506 ], [ -2.109596, 48.268669 ], [ -2.099637, 48.26289 ], [ -2.108602, 48.254799 ], [ -2.106582, 48.25166 ], [ -2.124054, 48.259305 ], [ -2.150098, 48.25872 ], [ -2.152795, 48.26172 ], [ -2.156662, 48.259563 ], [ -2.177596, 48.25095 ], [ -2.181494, 48.24885 ], [ -2.187172, 48.244 ], [ -2.190271, 48.224213 ], [ -2.183945, 48.21518 ], [ -2.184188, 48.211902 ], [ -2.191935, 48.208224 ], [ -2.20177, 48.208098 ], [ -2.213882, 48.21366 ], [ -2.227979, 48.210916 ], [ -2.218781, 48.20332 ], [ -2.224021, 48.183921 ], [ -2.224738, 48.17061 ], [ -2.230046, 48.164725 ], [ -2.247311, 48.158051 ], [ -2.247684, 48.154626 ], [ -2.240403, 48.14997 ], [ -2.242035, 48.14497 ], [ -2.25222, 48.14536 ], [ -2.264725, 48.15102 ], [ -2.278612, 48.14678 ], [ -2.283248, 48.1453 ], [ -2.283879, 48.14231 ], [ -2.287278, 48.133746 ] ] ], [ [ [ -3.002321, 48.83632 ], [ -3.002946, 48.838068 ], [ -3.009881, 48.838251 ], [ -3.011475, 48.85015 ], [ -3.001406, 48.850773 ], [ -3.0003, 48.852199 ], [ -3.009889, 48.854874 ], [ -3.010852, 48.858126 ], [ -2.994243, 48.86369 ], [ -2.986806, 48.862725 ], [ -2.988831, 48.86013 ], [ -2.993824, 48.85898 ], [ -2.995478, 48.85199 ], [ -2.994244, 48.848517 ], [ -2.997264, 48.84555 ], [ -2.99718, 48.840198 ], [ -3.002321, 48.83632 ] ] ], [ [ [ -3.583878, 48.7941 ], [ -3.586225, 48.800775 ], [ -3.583052, 48.805282 ], [ -3.575124, 48.80525 ], [ -3.570556, 48.807055 ], [ -3.565473, 48.80651 ], [ -3.563515, 48.80334 ], [ -3.569843, 48.79794 ], [ -3.579816, 48.798385 ], [ -3.583878, 48.7941 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "22", "CODE_DEPT": "23", "NOM_DEPT": "CREUSE", "CODE_CHF": "096", "NOM_CHF": "GUERET", "X_CHF_LIEU": "6126", "Y_CHF_LIEU": "65640", "X_CENTROID": "6241", "Y_CENTROID": "65549", "CODE_REG": "74", "NOM_REGION": "LIMOUSIN" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.492126, 45.73767 ], [ 2.487671, 45.73686 ], [ 2.474037, 45.728996 ], [ 2.471361, 45.719727 ], [ 2.466775, 45.71935 ], [ 2.453993, 45.709243 ], [ 2.444511, 45.707567 ], [ 2.435856, 45.699275 ], [ 2.431662, 45.70099 ], [ 2.410602, 45.70901 ], [ 2.381776, 45.708627 ], [ 2.374044, 45.712718 ], [ 2.37093, 45.71294 ], [ 2.367805, 45.71312 ], [ 2.362824, 45.712529 ], [ 2.348543, 45.70921 ], [ 2.345206, 45.70667 ], [ 2.347585, 45.70004 ], [ 2.348835, 45.69316 ], [ 2.341309, 45.68422 ], [ 2.320098, 45.67054 ], [ 2.306856, 45.674584 ], [ 2.29798, 45.671512 ], [ 2.286451, 45.6651 ], [ 2.271641, 45.66424 ], [ 2.271074, 45.691648 ], [ 2.266579, 45.69055 ], [ 2.257715, 45.688436 ], [ 2.24665, 45.694288 ], [ 2.237879, 45.69293 ], [ 2.232023, 45.69821 ], [ 2.222647, 45.69783 ], [ 2.21268, 45.712786 ], [ 2.211855, 45.70939 ], [ 2.210924, 45.702562 ], [ 2.197924, 45.699454 ], [ 2.19386, 45.701397 ], [ 2.195961, 45.704519 ], [ 2.203401, 45.717134 ], [ 2.184581, 45.720556 ], [ 2.174253, 45.732035 ], [ 2.160912, 45.735836 ], [ 2.160591, 45.729854 ], [ 2.156851, 45.72131 ], [ 2.152469, 45.72287 ], [ 2.143627, 45.72508 ], [ 2.129914, 45.734502 ], [ 2.11409, 45.726878 ], [ 2.097347, 45.733337 ], [ 2.08469, 45.728048 ], [ 2.084469, 45.73596 ], [ 2.083935, 45.73946 ], [ 2.082889, 45.745972 ], [ 2.060696, 45.7538 ], [ 2.053694, 45.763057 ], [ 2.048767, 45.76373 ], [ 2.044947, 45.761444 ], [ 2.038881, 45.755863 ], [ 2.014127, 45.754487 ], [ 2.00152, 45.748793 ], [ 1.99766, 45.73183 ], [ 1.991336, 45.72249 ], [ 1.982496, 45.7194 ], [ 1.980317, 45.722496 ], [ 1.9562, 45.723716 ], [ 1.943714, 45.71365 ], [ 1.944024, 45.70684 ], [ 1.934638, 45.706305 ], [ 1.928036, 45.71138 ], [ 1.918664, 45.712069 ], [ 1.910664, 45.703788 ], [ 1.898731, 45.698278 ], [ 1.896599, 45.701409 ], [ 1.881175, 45.70909 ], [ 1.880786, 45.71244 ], [ 1.888536, 45.71637 ], [ 1.89247, 45.71827 ], [ 1.88352, 45.72603 ], [ 1.874752, 45.727228 ], [ 1.886413, 45.745194 ], [ 1.883401, 45.747848 ], [ 1.874175, 45.75554 ], [ 1.877298, 45.75822 ], [ 1.896354, 45.76007 ], [ 1.902149, 45.769546 ], [ 1.897805, 45.767955 ], [ 1.89149, 45.771667 ], [ 1.883805, 45.79471 ], [ 1.861212, 45.8071 ], [ 1.85631, 45.80692 ], [ 1.855481, 45.81026 ], [ 1.843092, 45.81398 ], [ 1.834272, 45.825449 ], [ 1.830678, 45.82303 ], [ 1.828963, 45.8128 ], [ 1.824792, 45.8109 ], [ 1.796208, 45.829508 ], [ 1.786571, 45.82954 ], [ 1.778194, 45.83321 ], [ 1.773224, 45.84291 ], [ 1.779369, 45.85233 ], [ 1.770776, 45.868374 ], [ 1.765811, 45.868987 ], [ 1.756992, 45.86617 ], [ 1.755837, 45.85566 ], [ 1.75168, 45.85484 ], [ 1.73972, 45.851389 ], [ 1.736078, 45.84891 ], [ 1.729643, 45.843513 ], [ 1.719883, 45.841511 ], [ 1.694896, 45.843765 ], [ 1.676873, 45.83764 ], [ 1.667341, 45.838616 ], [ 1.65992, 45.8338 ], [ 1.658734, 45.83701 ], [ 1.652828, 45.845631 ], [ 1.647909, 45.84496 ], [ 1.628475, 45.8476 ], [ 1.624643, 45.84984 ], [ 1.602398, 45.857465 ], [ 1.606992, 45.86648 ], [ 1.603689, 45.879294 ], [ 1.591033, 45.88307 ], [ 1.602085, 45.88968 ], [ 1.611897, 45.890302 ], [ 1.618304, 45.886832 ], [ 1.622337, 45.896266 ], [ 1.632501, 45.89001 ], [ 1.641483, 45.8924 ], [ 1.640017, 45.894327 ], [ 1.64157, 45.896219 ], [ 1.625928, 45.9157 ], [ 1.637132, 45.92598 ], [ 1.62801, 45.9264 ], [ 1.625778, 45.93259 ], [ 1.617812, 45.93011 ], [ 1.604934, 45.93306 ], [ 1.600532, 45.93155 ], [ 1.581065, 45.930664 ], [ 1.577143, 45.91762 ], [ 1.573076, 45.91571 ], [ 1.555829, 45.91946 ], [ 1.547265, 45.91683 ], [ 1.544139, 45.91939 ], [ 1.532402, 45.929845 ], [ 1.513591, 45.931 ], [ 1.508951, 45.94031 ], [ 1.517933, 45.94136 ], [ 1.516824, 45.947565 ], [ 1.518656, 45.9505 ], [ 1.536417, 45.9541 ], [ 1.556429, 45.96405 ], [ 1.566241, 45.963684 ], [ 1.574813, 45.975771 ], [ 1.577299, 45.97804 ], [ 1.57369, 45.986204 ], [ 1.570881, 45.9884 ], [ 1.568388, 45.996837 ], [ 1.564237, 45.997433 ], [ 1.537903, 45.99734 ], [ 1.536575, 46.000609 ], [ 1.532917, 46.01036 ], [ 1.538179, 46.026857 ], [ 1.548244, 46.03347 ], [ 1.535513, 46.050717 ], [ 1.536707, 46.05302 ], [ 1.532444, 46.058603 ], [ 1.542086, 46.074074 ], [ 1.536513, 46.078758 ], [ 1.527149, 46.079492 ], [ 1.525675, 46.089578 ], [ 1.512506, 46.09356 ], [ 1.507847, 46.089246 ], [ 1.500707, 46.09568 ], [ 1.499966, 46.10244 ], [ 1.488492, 46.10816 ], [ 1.493488, 46.11767 ], [ 1.504852, 46.123197 ], [ 1.502153, 46.12954 ], [ 1.494325, 46.13345 ], [ 1.495629, 46.140224 ], [ 1.481769, 46.138715 ], [ 1.470206, 46.14961 ], [ 1.451356, 46.152661 ], [ 1.465051, 46.16248 ], [ 1.458851, 46.17141 ], [ 1.460906, 46.177631 ], [ 1.452574, 46.18115 ], [ 1.448556, 46.17925 ], [ 1.43538, 46.17617 ], [ 1.428212, 46.179273 ], [ 1.418726, 46.17777 ], [ 1.406756, 46.183208 ], [ 1.401736, 46.183263 ], [ 1.395054, 46.195814 ], [ 1.387328, 46.19966 ], [ 1.374521, 46.21817 ], [ 1.379201, 46.2192 ], [ 1.395412, 46.23898 ], [ 1.40437, 46.2416 ], [ 1.413869, 46.24034 ], [ 1.418063, 46.24211 ], [ 1.419417, 46.248709 ], [ 1.407643, 46.25446 ], [ 1.406468, 46.26096 ], [ 1.415204, 46.269132 ], [ 1.424521, 46.26715 ], [ 1.436758, 46.27248 ], [ 1.430576, 46.27746 ], [ 1.417187, 46.279616 ], [ 1.425425, 46.29804 ], [ 1.429761, 46.29951 ], [ 1.442205, 46.303783 ], [ 1.43869, 46.323153 ], [ 1.445731, 46.330635 ], [ 1.444558, 46.333933 ], [ 1.430481, 46.333767 ], [ 1.409687, 46.341909 ], [ 1.411944, 46.344805 ], [ 1.415191, 46.34722 ], [ 1.43659, 46.35613 ], [ 1.437093, 46.36311 ], [ 1.445155, 46.37193 ], [ 1.463704, 46.37628 ], [ 1.479634, 46.393974 ], [ 1.493588, 46.39725 ], [ 1.496954, 46.394636 ], [ 1.497998, 46.39739 ], [ 1.500105, 46.405503 ], [ 1.509319, 46.412775 ], [ 1.510433, 46.41921 ], [ 1.521022, 46.42538 ], [ 1.525351, 46.426654 ], [ 1.534714, 46.4243 ], [ 1.543637, 46.416415 ], [ 1.546253, 46.395923 ], [ 1.555196, 46.395893 ], [ 1.569633, 46.40531 ], [ 1.574357, 46.406383 ], [ 1.577489, 46.409097 ], [ 1.592031, 46.4076 ], [ 1.604991, 46.421153 ], [ 1.609055, 46.42317 ], [ 1.621236, 46.419405 ], [ 1.614415, 46.403373 ], [ 1.627341, 46.389425 ], [ 1.64109, 46.38559 ], [ 1.651332, 46.392981 ], [ 1.65521, 46.395116 ], [ 1.661634, 46.4044 ], [ 1.679335, 46.416426 ], [ 1.683603, 46.41818 ], [ 1.7094, 46.39335 ], [ 1.727841, 46.38896 ], [ 1.72832, 46.39241 ], [ 1.745905, 46.40431 ], [ 1.750549, 46.405593 ], [ 1.748767, 46.412318 ], [ 1.759737, 46.42749 ], [ 1.75527, 46.437209 ], [ 1.758296, 46.43992 ], [ 1.752658, 46.445502 ], [ 1.750092, 46.447743 ], [ 1.74759, 46.45002 ], [ 1.784546, 46.455077 ], [ 1.793694, 46.45385 ], [ 1.798244, 46.45491 ], [ 1.802116, 46.44828 ], [ 1.816986, 46.4385 ], [ 1.818455, 46.431423 ], [ 1.84257, 46.42681 ], [ 1.853747, 46.43347 ], [ 1.878921, 46.432375 ], [ 1.883956, 46.43265 ], [ 1.88768, 46.440989 ], [ 1.895331, 46.43824 ], [ 1.899831, 46.438567 ], [ 1.911556, 46.44309 ], [ 1.919538, 46.43996 ], [ 1.92287, 46.434149 ], [ 1.926119, 46.43191 ], [ 1.976055, 46.4395 ], [ 1.981108, 46.440285 ], [ 1.986597, 46.435786 ], [ 1.990776, 46.435229 ], [ 1.993082, 46.43092 ], [ 2.026334, 46.427216 ], [ 2.029415, 46.42459 ], [ 2.058493, 46.420876 ], [ 2.063459, 46.42135 ], [ 2.072452, 46.420108 ], [ 2.084371, 46.41129 ], [ 2.088749, 46.41034 ], [ 2.088623, 46.41007 ], [ 2.10344, 46.41076 ], [ 2.115972, 46.421534 ], [ 2.140603, 46.421101 ], [ 2.149206, 46.4239 ], [ 2.167786, 46.42408 ], [ 2.180482, 46.4232 ], [ 2.184897, 46.42315 ], [ 2.194075, 46.42597 ], [ 2.197831, 46.428298 ], [ 2.220649, 46.423584 ], [ 2.248883, 46.426259 ], [ 2.253658, 46.425651 ], [ 2.256961, 46.423133 ], [ 2.276283, 46.421276 ], [ 2.281048, 46.420405 ], [ 2.279481, 46.41384 ], [ 2.282033, 46.41082 ], [ 2.278416, 46.40865 ], [ 2.284576, 46.38962 ], [ 2.284789, 46.386309 ], [ 2.286936, 46.38331 ], [ 2.300942, 46.381861 ], [ 2.312479, 46.37606 ], [ 2.331406, 46.37841 ], [ 2.335475, 46.372324 ], [ 2.336464, 46.36904 ], [ 2.337142, 46.365742 ], [ 2.323262, 46.365778 ], [ 2.309602, 46.356592 ], [ 2.307829, 46.347666 ], [ 2.30211, 46.34236 ], [ 2.31162, 46.34097 ], [ 2.314586, 46.33464 ], [ 2.334254, 46.32517 ], [ 2.357932, 46.323367 ], [ 2.36621, 46.31117 ], [ 2.37061, 46.31272 ], [ 2.383785, 46.329129 ], [ 2.38608, 46.33197 ], [ 2.388164, 46.33157 ], [ 2.415901, 46.311351 ], [ 2.420657, 46.31013 ], [ 2.415615, 46.297932 ], [ 2.421374, 46.285327 ], [ 2.426006, 46.28453 ], [ 2.430241, 46.290739 ], [ 2.438446, 46.29366 ], [ 2.443032, 46.294999 ], [ 2.470215, 46.28635 ], [ 2.4803, 46.278831 ], [ 2.47958, 46.27539 ], [ 2.477773, 46.26881 ], [ 2.487941, 46.253354 ], [ 2.48892, 46.250009 ], [ 2.50198, 46.246978 ], [ 2.511509, 46.23952 ], [ 2.516311, 46.23944 ], [ 2.515203, 46.238543 ], [ 2.521757, 46.20277 ], [ 2.528303, 46.19419 ], [ 2.526102, 46.18782 ], [ 2.528499, 46.184939 ], [ 2.541834, 46.17629 ], [ 2.55459, 46.174634 ], [ 2.559155, 46.174409 ], [ 2.565379, 46.143041 ], [ 2.563985, 46.14081 ], [ 2.559208, 46.13873 ], [ 2.559959, 46.13228 ], [ 2.554641, 46.1205 ], [ 2.550523, 46.118958 ], [ 2.549019, 46.112802 ], [ 2.550966, 46.09961 ], [ 2.552621, 46.093401 ], [ 2.550659, 46.08644 ], [ 2.554677, 46.07613 ], [ 2.573497, 46.047006 ], [ 2.599212, 46.03549 ], [ 2.602696, 46.032875 ], [ 2.600116, 46.0303 ], [ 2.601761, 46.02106 ], [ 2.598287, 46.01525 ], [ 2.598839, 46.008656 ], [ 2.593557, 45.99938 ], [ 2.596791, 45.98665 ], [ 2.600091, 45.98405 ], [ 2.610789, 45.972732 ], [ 2.60683, 45.966424 ], [ 2.602149, 45.96552 ], [ 2.565828, 45.95686 ], [ 2.568835, 45.947141 ], [ 2.551637, 45.94127 ], [ 2.553174, 45.93797 ], [ 2.544087, 45.93027 ], [ 2.542608, 45.92342 ], [ 2.54389, 45.91661 ], [ 2.55784, 45.91296 ], [ 2.553196, 45.911393 ], [ 2.549707, 45.9089 ], [ 2.511845, 45.887124 ], [ 2.502119, 45.886082 ], [ 2.50158, 45.875787 ], [ 2.492225, 45.86403 ], [ 2.487571, 45.864216 ], [ 2.47428, 45.87116 ], [ 2.465267, 45.871353 ], [ 2.465349, 45.86821 ], [ 2.443424, 45.86674 ], [ 2.442696, 45.863508 ], [ 2.443406, 45.857 ], [ 2.449666, 45.85222 ], [ 2.447823, 45.84582 ], [ 2.438951, 45.846497 ], [ 2.432688, 45.839001 ], [ 2.426321, 45.8343 ], [ 2.40211, 45.83712 ], [ 2.38802, 45.82738 ], [ 2.389333, 45.82402 ], [ 2.430863, 45.788617 ], [ 2.433456, 45.773024 ], [ 2.434119, 45.769857 ], [ 2.442298, 45.761406 ], [ 2.450513, 45.75943 ], [ 2.454754, 45.76116 ], [ 2.46699, 45.75578 ], [ 2.471269, 45.749497 ], [ 2.485224, 45.74686 ], [ 2.492126, 45.73767 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "23", "CODE_DEPT": "24", "NOM_DEPT": "DORDOGNE", "CODE_CHF": "322", "NOM_CHF": "PERIGUEUX", "X_CHF_LIEU": "5207", "Y_CHF_LIEU": "64564", "X_CENTROID": "5223", "Y_CENTROID": "64475", "CODE_REG": "72", "NOM_REGION": "AQUITAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.448262, 45.019313 ], [ 1.433023, 45.01077 ], [ 1.40913, 45.00673 ], [ 1.414987, 44.993566 ], [ 1.414261, 44.97391 ], [ 1.419568, 44.968397 ], [ 1.41899, 44.95828 ], [ 1.428611, 44.946309 ], [ 1.433462, 44.946044 ], [ 1.4331, 44.937214 ], [ 1.441562, 44.918782 ], [ 1.423629, 44.918268 ], [ 1.410526, 44.908788 ], [ 1.418269, 44.907448 ], [ 1.419672, 44.899003 ], [ 1.421836, 44.89641 ], [ 1.435732, 44.889676 ], [ 1.439857, 44.888951 ], [ 1.442508, 44.881063 ], [ 1.442178, 44.87835 ], [ 1.439858, 44.875245 ], [ 1.431431, 44.87177 ], [ 1.416778, 44.8709 ], [ 1.414009, 44.871655 ], [ 1.411446, 44.87271 ], [ 1.409292, 44.864725 ], [ 1.405462, 44.86314 ], [ 1.402862, 44.85081 ], [ 1.402507, 44.849049 ], [ 1.388593, 44.849992 ], [ 1.378341, 44.84335 ], [ 1.365459, 44.84497 ], [ 1.360801, 44.83889 ], [ 1.364103, 44.811568 ], [ 1.360244, 44.81116 ], [ 1.356551, 44.81025 ], [ 1.352501, 44.808578 ], [ 1.325507, 44.806012 ], [ 1.321845, 44.804111 ], [ 1.301166, 44.797744 ], [ 1.293311, 44.789852 ], [ 1.30262, 44.78896 ], [ 1.303806, 44.785691 ], [ 1.297154, 44.77697 ], [ 1.303951, 44.7725 ], [ 1.308133, 44.7709 ], [ 1.321535, 44.761097 ], [ 1.316051, 44.740375 ], [ 1.312139, 44.74149 ], [ 1.30019, 44.744284 ], [ 1.297181, 44.73806 ], [ 1.299421, 44.731674 ], [ 1.287021, 44.71446 ], [ 1.282721, 44.7151 ], [ 1.270041, 44.72209 ], [ 1.268091, 44.71896 ], [ 1.261542, 44.71018 ], [ 1.244638, 44.70475 ], [ 1.242933, 44.694636 ], [ 1.230001, 44.69115 ], [ 1.224707, 44.68571 ], [ 1.22455, 44.68427 ], [ 1.219796, 44.68332 ], [ 1.180561, 44.682687 ], [ 1.166974, 44.67859 ], [ 1.161061, 44.672964 ], [ 1.146733, 44.670797 ], [ 1.146901, 44.66758 ], [ 1.149825, 44.655027 ], [ 1.146516, 44.65285 ], [ 1.15255, 44.63618 ], [ 1.150893, 44.632856 ], [ 1.146642, 44.63136 ], [ 1.127289, 44.616772 ], [ 1.123622, 44.614828 ], [ 1.107396, 44.603961 ], [ 1.096152, 44.593124 ], [ 1.103467, 44.58097 ], [ 1.099504, 44.580043 ], [ 1.10321, 44.57174 ], [ 1.098607, 44.57189 ], [ 1.085075, 44.57195 ], [ 1.076483, 44.57417 ], [ 1.075141, 44.57732 ], [ 1.077766, 44.583845 ], [ 1.071021, 44.596119 ], [ 1.056876, 44.59771 ], [ 1.046781, 44.604959 ], [ 1.033401, 44.608369 ], [ 1.029019, 44.60966 ], [ 1.012502, 44.61583 ], [ 0.997505, 44.62949 ], [ 0.995923, 44.632821 ], [ 0.977296, 44.642992 ], [ 0.966655, 44.636195 ], [ 0.944179, 44.640355 ], [ 0.939393, 44.63981 ], [ 0.926654, 44.635 ], [ 0.914685, 44.624745 ], [ 0.911162, 44.62317 ], [ 0.907453, 44.62186 ], [ 0.895557, 44.61593 ], [ 0.876301, 44.613963 ], [ 0.869996, 44.59732 ], [ 0.865974, 44.598013 ], [ 0.857727, 44.598106 ], [ 0.853389, 44.59948 ], [ 0.835146, 44.6022 ], [ 0.837936, 44.614922 ], [ 0.82929, 44.612852 ], [ 0.826465, 44.61516 ], [ 0.825021, 44.62122 ], [ 0.817004, 44.62701 ], [ 0.835656, 44.636879 ], [ 0.835063, 44.653294 ], [ 0.843061, 44.656287 ], [ 0.84337, 44.66272 ], [ 0.84865, 44.667221 ], [ 0.852444, 44.668979 ], [ 0.848411, 44.67017 ], [ 0.83544, 44.670422 ], [ 0.825838, 44.6759 ], [ 0.829354, 44.68062 ], [ 0.831074, 44.68317 ], [ 0.82861, 44.68977 ], [ 0.817888, 44.696709 ], [ 0.79947, 44.700775 ], [ 0.788386, 44.695241 ], [ 0.787299, 44.68529 ], [ 0.783217, 44.684113 ], [ 0.763141, 44.689924 ], [ 0.760052, 44.680305 ], [ 0.746133, 44.68175 ], [ 0.729134, 44.67599 ], [ 0.724522, 44.677041 ], [ 0.696058, 44.67701 ], [ 0.692439, 44.676619 ], [ 0.685312, 44.675561 ], [ 0.680587, 44.67628 ], [ 0.657434, 44.67786 ], [ 0.657142, 44.68701 ], [ 0.655629, 44.68998 ], [ 0.65546, 44.693432 ], [ 0.644297, 44.70432 ], [ 0.63036, 44.70657 ], [ 0.627378, 44.704218 ], [ 0.621799, 44.699352 ], [ 0.623614, 44.69315 ], [ 0.620018, 44.691297 ], [ 0.616758, 44.69343 ], [ 0.591392, 44.696938 ], [ 0.58749, 44.698699 ], [ 0.576468, 44.693063 ], [ 0.567171, 44.671513 ], [ 0.562454, 44.6723 ], [ 0.546558, 44.66515 ], [ 0.538778, 44.66844 ], [ 0.534406, 44.67461 ], [ 0.530741, 44.67673 ], [ 0.521659, 44.67858 ], [ 0.516743, 44.67811 ], [ 0.495626, 44.669808 ], [ 0.488043, 44.666907 ], [ 0.47053, 44.66958 ], [ 0.467953, 44.666809 ], [ 0.451989, 44.655588 ], [ 0.447578, 44.654082 ], [ 0.429293, 44.65074 ], [ 0.416954, 44.64521 ], [ 0.39101, 44.654527 ], [ 0.37674, 44.65393 ], [ 0.36662, 44.6612 ], [ 0.355528, 44.65496 ], [ 0.351812, 44.65562 ], [ 0.349598, 44.660847 ], [ 0.350448, 44.674965 ], [ 0.359541, 44.69132 ], [ 0.356731, 44.694158 ], [ 0.341479, 44.70237 ], [ 0.343484, 44.709136 ], [ 0.347871, 44.710395 ], [ 0.347345, 44.720489 ], [ 0.34502, 44.72342 ], [ 0.341042, 44.725526 ], [ 0.336793, 44.735477 ], [ 0.307009, 44.758097 ], [ 0.303376, 44.75898 ], [ 0.297325, 44.76229 ], [ 0.293688, 44.76457 ], [ 0.280226, 44.774397 ], [ 0.274025, 44.783622 ], [ 0.271666, 44.78634 ], [ 0.27435, 44.79568 ], [ 0.274681, 44.79877 ], [ 0.265975, 44.81259 ], [ 0.263979, 44.8229 ], [ 0.263719, 44.826421 ], [ 0.268305, 44.826353 ], [ 0.285758, 44.82302 ], [ 0.29246, 44.83157 ], [ 0.300752, 44.82919 ], [ 0.299577, 44.83546 ], [ 0.315056, 44.84538 ], [ 0.311876, 44.847777 ], [ 0.288047, 44.86318 ], [ 0.284058, 44.864991 ], [ 0.239023, 44.87198 ], [ 0.243751, 44.85955 ], [ 0.241753, 44.8569 ], [ 0.238317, 44.854926 ], [ 0.22209, 44.84448 ], [ 0.217722, 44.84395 ], [ 0.209733, 44.841373 ], [ 0.206411, 44.838902 ], [ 0.192844, 44.820803 ], [ 0.189312, 44.82005 ], [ 0.184076, 44.823481 ], [ 0.182194, 44.82493 ], [ 0.17755, 44.82614 ], [ 0.157907, 44.82632 ], [ 0.148828, 44.82909 ], [ 0.124248, 44.827991 ], [ 0.114803, 44.81986 ], [ 0.114027, 44.819446 ], [ 0.109285, 44.820097 ], [ 0.108644, 44.830333 ], [ 0.095753, 44.83282 ], [ 0.091294, 44.83264 ], [ 0.082667, 44.831013 ], [ 0.075697, 44.81947 ], [ 0.070891, 44.819144 ], [ 0.064887, 44.82454 ], [ 0.050846, 44.82433 ], [ 0.047816, 44.82441 ], [ 0.043329, 44.825728 ], [ 0.037439, 44.83082 ], [ 0.039033, 44.837569 ], [ 0.022247, 44.84942 ], [ 0.008881, 44.845923 ], [ 0.003987, 44.84556 ], [ -0.03421, 44.852114 ], [ -0.032557, 44.855286 ], [ -0.010036, 44.859792 ], [ -0.004807, 44.868592 ], [ -0.001536, 44.87069 ], [ 0.001218, 44.87605 ], [ 0.001093, 44.87627 ], [ 0.012617, 44.8852 ], [ 0.014971, 44.89123 ], [ 0.015948, 44.894307 ], [ 0.01719, 44.894782 ], [ 0.02043, 44.897257 ], [ 0.033907, 44.91496 ], [ 0.022059, 44.92531 ], [ 0.018212, 44.928029 ], [ 0.016192, 44.931192 ], [ 0.005127, 44.94624 ], [ 0.00923, 44.962774 ], [ 0.014522, 44.97207 ], [ 0.013706, 44.978806 ], [ 0.017709, 44.98063 ], [ 0.029545, 44.97648 ], [ 0.036635, 44.991484 ], [ 0.040106, 44.99355 ], [ 0.035641, 45.01434 ], [ 0.039453, 45.02081 ], [ 0.03914, 45.02431 ], [ 0.040691, 45.02214 ], [ 0.042155, 45.025446 ], [ 0.044806, 45.035635 ], [ 0.055929, 45.04207 ], [ 0.073296, 45.07013 ], [ 0.072345, 45.0747 ], [ 0.070631, 45.076106 ], [ 0.067585, 45.0789 ], [ 0.061888, 45.09584 ], [ 0.045793, 45.11346 ], [ 0.031843, 45.11712 ], [ 0.006979, 45.117781 ], [ 0.00251, 45.119003 ], [ -0.025092, 45.11473 ], [ -0.0402, 45.10238 ], [ -0.041524, 45.112683 ], [ -0.02963, 45.12778 ], [ -0.035312, 45.137245 ], [ -0.036728, 45.140567 ], [ -0.001528, 45.15082 ], [ 0.003268, 45.15566 ], [ 0.000368, 45.15843 ], [ -0.014091, 45.15992 ], [ -0.019062, 45.165177 ], [ -0.002052, 45.181171 ], [ 0.001677, 45.18339 ], [ 0.004331, 45.19163 ], [ 0.010324, 45.202732 ], [ 0.033859, 45.20837 ], [ 0.036594, 45.211353 ], [ 0.051213, 45.22538 ], [ 0.055582, 45.227164 ], [ 0.066433, 45.22062 ], [ 0.076064, 45.22027 ], [ 0.0884, 45.22526 ], [ 0.092006, 45.227515 ], [ 0.100037, 45.22607 ], [ 0.111422, 45.21698 ], [ 0.114272, 45.214622 ], [ 0.115844, 45.213572 ], [ 0.132319, 45.209 ], [ 0.140998, 45.214751 ], [ 0.145486, 45.214487 ], [ 0.148209, 45.22456 ], [ 0.157828, 45.22645 ], [ 0.174738, 45.23921 ], [ 0.171342, 45.248329 ], [ 0.172293, 45.25171 ], [ 0.176696, 45.25596 ], [ 0.174862, 45.261437 ], [ 0.200767, 45.261828 ], [ 0.204416, 45.263604 ], [ 0.210296, 45.271274 ], [ 0.210596, 45.2742 ], [ 0.220092, 45.287223 ], [ 0.220912, 45.29022 ], [ 0.243136, 45.29175 ], [ 0.246868, 45.28984 ], [ 0.249597, 45.28859 ], [ 0.252621, 45.2894 ], [ 0.262719, 45.29587 ], [ 0.266609, 45.297749 ], [ 0.270634, 45.314605 ], [ 0.264905, 45.33453 ], [ 0.264588, 45.334748 ], [ 0.258533, 45.350051 ], [ 0.256966, 45.353067 ], [ 0.250217, 45.360614 ], [ 0.249431, 45.36359 ], [ 0.253457, 45.380939 ], [ 0.262875, 45.39686 ], [ 0.265268, 45.40543 ], [ 0.267624, 45.40798 ], [ 0.27155, 45.41608 ], [ 0.27086, 45.41893 ], [ 0.278402, 45.42716 ], [ 0.289959, 45.432617 ], [ 0.298855, 45.43229 ], [ 0.303543, 45.43194 ], [ 0.316234, 45.43598 ], [ 0.303213, 45.44559 ], [ 0.302619, 45.45889 ], [ 0.310781, 45.45876 ], [ 0.329155, 45.44378 ], [ 0.333389, 45.45318 ], [ 0.334363, 45.459819 ], [ 0.334668, 45.46014 ], [ 0.356707, 45.46622 ], [ 0.363133, 45.47515 ], [ 0.372947, 45.475865 ], [ 0.378867, 45.480671 ], [ 0.378384, 45.484128 ], [ 0.408356, 45.49178 ], [ 0.419259, 45.48595 ], [ 0.422921, 45.483781 ], [ 0.426875, 45.485782 ], [ 0.431738, 45.485596 ], [ 0.432763, 45.50165 ], [ 0.443656, 45.51188 ], [ 0.446105, 45.514637 ], [ 0.450893, 45.51865 ], [ 0.449305, 45.52392 ], [ 0.457779, 45.52556 ], [ 0.464307, 45.53359 ], [ 0.465737, 45.539623 ], [ 0.46967, 45.53884 ], [ 0.473715, 45.538407 ], [ 0.48327, 45.538891 ], [ 0.499202, 45.545788 ], [ 0.506549, 45.55434 ], [ 0.50227, 45.562802 ], [ 0.498576, 45.56478 ], [ 0.516324, 45.58806 ], [ 0.512189, 45.59385 ], [ 0.516143, 45.599246 ], [ 0.513312, 45.60543 ], [ 0.503838, 45.61257 ], [ 0.501441, 45.615353 ], [ 0.500403, 45.619564 ], [ 0.508422, 45.6214 ], [ 0.512657, 45.63146 ], [ 0.525833, 45.641785 ], [ 0.535418, 45.64286 ], [ 0.537079, 45.631509 ], [ 0.538448, 45.628737 ], [ 0.550448, 45.6341 ], [ 0.564535, 45.6344 ], [ 0.575447, 45.640928 ], [ 0.573663, 45.644124 ], [ 0.567032, 45.65326 ], [ 0.587634, 45.66129 ], [ 0.58746, 45.66794 ], [ 0.600389, 45.671733 ], [ 0.596594, 45.67687 ], [ 0.602126, 45.68177 ], [ 0.605006, 45.694218 ], [ 0.613217, 45.69402 ], [ 0.627671, 45.708 ], [ 0.629742, 45.71457 ], [ 0.637778, 45.70198 ], [ 0.650294, 45.697586 ], [ 0.653606, 45.69103 ], [ 0.662086, 45.68748 ], [ 0.676533, 45.68841 ], [ 0.681304, 45.687445 ], [ 0.694223, 45.690494 ], [ 0.702599, 45.687846 ], [ 0.713127, 45.694042 ], [ 0.722051, 45.69461 ], [ 0.744137, 45.68826 ], [ 0.760468, 45.670949 ], [ 0.77397, 45.66781 ], [ 0.775643, 45.667746 ], [ 0.763951, 45.6315 ], [ 0.753737, 45.619602 ], [ 0.750613, 45.616873 ], [ 0.767445, 45.60439 ], [ 0.777188, 45.59217 ], [ 0.801392, 45.59593 ], [ 0.805857, 45.594966 ], [ 0.810565, 45.57909 ], [ 0.8115, 45.57587 ], [ 0.839996, 45.581304 ], [ 0.848144, 45.589847 ], [ 0.849461, 45.593259 ], [ 0.858099, 45.6098 ], [ 0.8597, 45.613191 ], [ 0.866884, 45.62097 ], [ 0.869353, 45.62353 ], [ 0.876966, 45.61984 ], [ 0.881222, 45.61059 ], [ 0.890345, 45.60325 ], [ 0.89374, 45.60103 ], [ 0.898605, 45.600323 ], [ 0.904489, 45.60593 ], [ 0.918839, 45.605185 ], [ 0.946322, 45.61296 ], [ 0.959802, 45.608692 ], [ 0.969549, 45.60994 ], [ 0.97569, 45.604493 ], [ 0.989587, 45.607355 ], [ 0.995823, 45.612708 ], [ 1.02011, 45.60974 ], [ 1.032964, 45.59906 ], [ 1.039334, 45.58584 ], [ 1.034704, 45.579661 ], [ 1.037977, 45.569468 ], [ 1.047749, 45.557829 ], [ 1.056478, 45.5546 ], [ 1.061386, 45.5543 ], [ 1.061699, 45.554891 ], [ 1.074201, 45.545612 ], [ 1.081118, 45.533561 ], [ 1.084638, 45.531442 ], [ 1.086024, 45.53474 ], [ 1.104331, 45.53909 ], [ 1.109717, 45.544666 ], [ 1.119312, 45.545962 ], [ 1.128288, 45.54322 ], [ 1.132364, 45.541325 ], [ 1.165365, 45.526367 ], [ 1.164273, 45.522954 ], [ 1.147483, 45.515418 ], [ 1.134423, 45.50488 ], [ 1.12289, 45.48947 ], [ 1.118436, 45.487904 ], [ 1.119623, 45.47779 ], [ 1.131013, 45.472253 ], [ 1.149887, 45.473268 ], [ 1.158185, 45.476674 ], [ 1.162444, 45.47835 ], [ 1.175344, 45.468794 ], [ 1.177031, 45.45872 ], [ 1.185123, 45.4551 ], [ 1.212123, 45.46237 ], [ 1.233962, 45.45501 ], [ 1.237444, 45.438848 ], [ 1.242025, 45.437605 ], [ 1.250141, 45.44149 ], [ 1.253152, 45.44422 ], [ 1.269663, 45.439936 ], [ 1.272393, 45.437303 ], [ 1.288271, 45.433529 ], [ 1.289382, 45.42068 ], [ 1.289192, 45.4173 ], [ 1.279872, 45.41513 ], [ 1.265645, 45.417798 ], [ 1.258724, 45.41379 ], [ 1.260222, 45.40025 ], [ 1.26411, 45.39816 ], [ 1.277897, 45.39923 ], [ 1.274016, 45.39287 ], [ 1.281683, 45.38509 ], [ 1.29964, 45.39431 ], [ 1.318722, 45.38428 ], [ 1.323231, 45.38312 ], [ 1.319877, 45.367205 ], [ 1.311868, 45.35955 ], [ 1.307725, 45.357971 ], [ 1.302753, 45.358067 ], [ 1.285155, 45.35205 ], [ 1.281923, 45.34213 ], [ 1.274091, 45.32988 ], [ 1.2599, 45.32065 ], [ 1.240647, 45.322279 ], [ 1.235803, 45.32204 ], [ 1.240886, 45.305423 ], [ 1.2384, 45.3025 ], [ 1.241603, 45.301309 ], [ 1.238945, 45.29172 ], [ 1.232076, 45.287838 ], [ 1.22706, 45.271844 ], [ 1.238364, 45.268114 ], [ 1.240207, 45.263468 ], [ 1.239385, 45.260447 ], [ 1.257397, 45.254983 ], [ 1.271874, 45.25731 ], [ 1.276285, 45.2557 ], [ 1.277687, 45.242085 ], [ 1.260952, 45.229695 ], [ 1.238262, 45.223314 ], [ 1.233608, 45.222195 ], [ 1.233398, 45.21958 ], [ 1.231275, 45.214566 ], [ 1.228376, 45.20436 ], [ 1.233456, 45.19842 ], [ 1.272148, 45.201147 ], [ 1.286019, 45.191265 ], [ 1.289594, 45.188879 ], [ 1.2914, 45.18565 ], [ 1.285709, 45.176048 ], [ 1.281525, 45.174228 ], [ 1.277911, 45.17209 ], [ 1.268222, 45.16508 ], [ 1.255055, 45.16477 ], [ 1.254436, 45.158506 ], [ 1.280205, 45.14927 ], [ 1.290473, 45.14188 ], [ 1.308754, 45.137016 ], [ 1.320997, 45.14245 ], [ 1.333737, 45.13773 ], [ 1.347115, 45.141445 ], [ 1.351983, 45.141643 ], [ 1.351916, 45.13657 ], [ 1.351991, 45.134033 ], [ 1.366379, 45.13236 ], [ 1.380532, 45.135712 ], [ 1.393954, 45.13137 ], [ 1.398389, 45.129747 ], [ 1.401786, 45.128427 ], [ 1.409614, 45.1265 ], [ 1.413094, 45.12491 ], [ 1.413525, 45.11825 ], [ 1.408918, 45.11252 ], [ 1.392448, 45.105877 ], [ 1.382956, 45.105605 ], [ 1.378249, 45.10609 ], [ 1.380056, 45.100798 ], [ 1.383285, 45.103007 ], [ 1.389354, 45.09892 ], [ 1.393265, 45.09735 ], [ 1.391702, 45.087593 ], [ 1.398488, 45.0788 ], [ 1.401222, 45.07609 ], [ 1.406003, 45.07022 ], [ 1.401752, 45.06421 ], [ 1.399564, 45.06118 ], [ 1.409056, 45.0594 ], [ 1.411599, 45.05263 ], [ 1.431329, 45.032701 ], [ 1.434641, 45.0301 ], [ 1.444114, 45.02006 ], [ 1.448262, 45.019313 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "24", "CODE_DEPT": "25", "NOM_DEPT": "DOUBS", "CODE_CHF": "056", "NOM_CHF": "BESANCON", "X_CHF_LIEU": "9284", "Y_CHF_LIEU": "66868", "X_CENTROID": "9545", "Y_CENTROID": "66793", "CODE_REG": "43", "NOM_REGION": "FRANCHE-COMTE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.138109, 46.55766 ], [ 6.134607, 46.555612 ], [ 6.131093, 46.55357 ], [ 6.127186, 46.55582 ], [ 6.087083, 46.58255 ], [ 6.083865, 46.585034 ], [ 6.048567, 46.60772 ], [ 6.053761, 46.61291 ], [ 6.062491, 46.613515 ], [ 6.058497, 46.61898 ], [ 6.059153, 46.62485 ], [ 6.062602, 46.62709 ], [ 6.081737, 46.63654 ], [ 6.085902, 46.638469 ], [ 6.099197, 46.64334 ], [ 6.103265, 46.65249 ], [ 6.071211, 46.68757 ], [ 6.086126, 46.69611 ], [ 6.099766, 46.701272 ], [ 6.103598, 46.70369 ], [ 6.109355, 46.70701 ], [ 6.11296, 46.70774 ], [ 6.127108, 46.71707 ], [ 6.130623, 46.71941 ], [ 6.131107, 46.71962 ], [ 6.137485, 46.72386 ], [ 6.152262, 46.72945 ], [ 6.155252, 46.731515 ], [ 6.159724, 46.732906 ], [ 6.164171, 46.73432 ], [ 6.16818, 46.7361 ], [ 6.180198, 46.741442 ], [ 6.181715, 46.74809 ], [ 6.183659, 46.75463 ], [ 6.204198, 46.76339 ], [ 6.20333, 46.772681 ], [ 6.201136, 46.77529 ], [ 6.195654, 46.77997 ], [ 6.182748, 46.794304 ], [ 6.163781, 46.80384 ], [ 6.153656, 46.815219 ], [ 6.148831, 46.81599 ], [ 6.15224, 46.81953 ], [ 6.148065, 46.82156 ], [ 6.11332, 46.83622 ], [ 6.105555, 46.8453 ], [ 6.102703, 46.844809 ], [ 6.097614, 46.84422 ], [ 6.093277, 46.84232 ], [ 6.088554, 46.84264 ], [ 6.083771, 46.851355 ], [ 6.072026, 46.856851 ], [ 6.067857, 46.85862 ], [ 6.047095, 46.845638 ], [ 6.045962, 46.848848 ], [ 6.027407, 46.85172 ], [ 6.02468, 46.85649 ], [ 6.028808, 46.860321 ], [ 6.030521, 46.86862 ], [ 6.032267, 46.871421 ], [ 6.030152, 46.87447 ], [ 6.018207, 46.86974 ], [ 6.009696, 46.873095 ], [ 6.010313, 46.89245 ], [ 6.008435, 46.89556 ], [ 5.999368, 46.89679 ], [ 5.98195, 46.90821 ], [ 5.981702, 46.91801 ], [ 5.983877, 46.92098 ], [ 5.994455, 46.93104 ], [ 5.997222, 46.9335 ], [ 5.993638, 46.935755 ], [ 5.965485, 46.947448 ], [ 5.956543, 46.948498 ], [ 5.959531, 46.95093 ], [ 5.979789, 46.963478 ], [ 5.977195, 46.965608 ], [ 5.975184, 46.973309 ], [ 5.973172, 46.97596 ], [ 5.968797, 46.976123 ], [ 5.968915, 46.97684 ], [ 5.968591, 46.980282 ], [ 5.953536, 46.981101 ], [ 5.948985, 46.98117 ], [ 5.945111, 46.98885 ], [ 5.93888, 46.983709 ], [ 5.924782, 46.981068 ], [ 5.915004, 46.98722 ], [ 5.9137, 46.99063 ], [ 5.921548, 47.01448 ], [ 5.917343, 47.014438 ], [ 5.914876, 47.008023 ], [ 5.907692, 46.9996 ], [ 5.893725, 46.99652 ], [ 5.884481, 46.99848 ], [ 5.881568, 47.00509 ], [ 5.876931, 47.005813 ], [ 5.858321, 47.00829 ], [ 5.846944, 47.0031 ], [ 5.84693, 47.005845 ], [ 5.844003, 47.01002 ], [ 5.840657, 47.00851 ], [ 5.839449, 47.01535 ], [ 5.835588, 47.01331 ], [ 5.817347, 47.016634 ], [ 5.816025, 47.02259 ], [ 5.815687, 47.02598 ], [ 5.817225, 47.03928 ], [ 5.81492, 47.045883 ], [ 5.810145, 47.04681 ], [ 5.805278, 47.04573 ], [ 5.800341, 47.04481 ], [ 5.797116, 47.04209 ], [ 5.799216, 47.03178 ], [ 5.791866, 47.02264 ], [ 5.788092, 47.02074 ], [ 5.769926, 47.01766 ], [ 5.764418, 47.012482 ], [ 5.760567, 47.01367 ], [ 5.749513, 47.017243 ], [ 5.746332, 47.01996 ], [ 5.741657, 47.02983 ], [ 5.749742, 47.033877 ], [ 5.751268, 47.03719 ], [ 5.750931, 47.04067 ], [ 5.737384, 47.0508 ], [ 5.742758, 47.05591 ], [ 5.747797, 47.055454 ], [ 5.762794, 47.04611 ], [ 5.784717, 47.05491 ], [ 5.782717, 47.058051 ], [ 5.778609, 47.074771 ], [ 5.776818, 47.07789 ], [ 5.768989, 47.09004 ], [ 5.778052, 47.09749 ], [ 5.787552, 47.09599 ], [ 5.7902, 47.102292 ], [ 5.79159, 47.10518 ], [ 5.801869, 47.11053 ], [ 5.804744, 47.11608 ], [ 5.805567, 47.11947 ], [ 5.816597, 47.13479 ], [ 5.828074, 47.14118 ], [ 5.823646, 47.142587 ], [ 5.813663, 47.14989 ], [ 5.814705, 47.15316 ], [ 5.810483, 47.159051 ], [ 5.811467, 47.169054 ], [ 5.80754, 47.17125 ], [ 5.793167, 47.17457 ], [ 5.7851, 47.170565 ], [ 5.787059, 47.17652 ], [ 5.785197, 47.18853 ], [ 5.781091, 47.189885 ], [ 5.774928, 47.193366 ], [ 5.761384, 47.194186 ], [ 5.757191, 47.1967 ], [ 5.75913, 47.19971 ], [ 5.755693, 47.20538 ], [ 5.737666, 47.201289 ], [ 5.739038, 47.204355 ], [ 5.727009, 47.21763 ], [ 5.7234, 47.21842 ], [ 5.720717, 47.22262 ], [ 5.722763, 47.225421 ], [ 5.714028, 47.23601 ], [ 5.718389, 47.23804 ], [ 5.718946, 47.24147 ], [ 5.701682, 47.262208 ], [ 5.698726, 47.265006 ], [ 5.707877, 47.26803 ], [ 5.71138, 47.27057 ], [ 5.731034, 47.2646 ], [ 5.735196, 47.26344 ], [ 5.741824, 47.264968 ], [ 5.749752, 47.27249 ], [ 5.75426, 47.27291 ], [ 5.757453, 47.27633 ], [ 5.774967, 47.280222 ], [ 5.78254, 47.28869 ], [ 5.790403, 47.289932 ], [ 5.795302, 47.2897 ], [ 5.810675, 47.294785 ], [ 5.815037, 47.29514 ], [ 5.827125, 47.29789 ], [ 5.83122, 47.29871 ], [ 5.840561, 47.299813 ], [ 5.845068, 47.300892 ], [ 5.852381, 47.30794 ], [ 5.853064, 47.31083 ], [ 5.863882, 47.31598 ], [ 5.873147, 47.3146 ], [ 5.878955, 47.319649 ], [ 5.882704, 47.32163 ], [ 5.894814, 47.31183 ], [ 5.902059, 47.315002 ], [ 5.896168, 47.32612 ], [ 5.896712, 47.32907 ], [ 5.904306, 47.333025 ], [ 5.921675, 47.32762 ], [ 5.926441, 47.32707 ], [ 5.930662, 47.328913 ], [ 5.924679, 47.341648 ], [ 5.926704, 47.34476 ], [ 5.938583, 47.34241 ], [ 5.941769, 47.3442 ], [ 5.942949, 47.341304 ], [ 5.960306, 47.33929 ], [ 5.96356, 47.33727 ], [ 5.964007, 47.337201 ], [ 5.978633, 47.328043 ], [ 5.983149, 47.329441 ], [ 5.987159, 47.329824 ], [ 5.988164, 47.32717 ], [ 5.992056, 47.328536 ], [ 5.996651, 47.33987 ], [ 6.008152, 47.335813 ], [ 6.010495, 47.333167 ], [ 6.023555, 47.33235 ], [ 6.027015, 47.33495 ], [ 6.030475, 47.33757 ], [ 6.038896, 47.344913 ], [ 6.048023, 47.34644 ], [ 6.051001, 47.348938 ], [ 6.052159, 47.352277 ], [ 6.054942, 47.35133 ], [ 6.057539, 47.349676 ], [ 6.071943, 47.35051 ], [ 6.081865, 47.357556 ], [ 6.082373, 47.360849 ], [ 6.082016, 47.37171 ], [ 6.100892, 47.37088 ], [ 6.103184, 47.364655 ], [ 6.102487, 47.361322 ], [ 6.103077, 47.36121 ], [ 6.111452, 47.36204 ], [ 6.11706, 47.36612 ], [ 6.119702, 47.36846 ], [ 6.110691, 47.37543 ], [ 6.106643, 47.37699 ], [ 6.111808, 47.37867 ], [ 6.106828, 47.38361 ], [ 6.118479, 47.39348 ], [ 6.117785, 47.39662 ], [ 6.126305, 47.393909 ], [ 6.130007, 47.388017 ], [ 6.147528, 47.38592 ], [ 6.152249, 47.38612 ], [ 6.155959, 47.389874 ], [ 6.160353, 47.388358 ], [ 6.171557, 47.39453 ], [ 6.172705, 47.39778 ], [ 6.179743, 47.40191 ], [ 6.189034, 47.402386 ], [ 6.189249, 47.40556 ], [ 6.185315, 47.40523 ], [ 6.177865, 47.40671 ], [ 6.170974, 47.40934 ], [ 6.170568, 47.41235 ], [ 6.177539, 47.4162 ], [ 6.186566, 47.41421 ], [ 6.194119, 47.417787 ], [ 6.198717, 47.41788 ], [ 6.20225, 47.429906 ], [ 6.206369, 47.431288 ], [ 6.207986, 47.4288 ], [ 6.211616, 47.4258 ], [ 6.22465, 47.422 ], [ 6.229907, 47.41651 ], [ 6.232706, 47.413838 ], [ 6.241571, 47.41074 ], [ 6.243715, 47.413702 ], [ 6.233076, 47.4281 ], [ 6.234959, 47.43114 ], [ 6.246193, 47.426129 ], [ 6.250552, 47.424665 ], [ 6.260835, 47.42849 ], [ 6.261047, 47.43438 ], [ 6.261907, 47.43738 ], [ 6.263406, 47.446072 ], [ 6.280184, 47.44397 ], [ 6.284914, 47.445512 ], [ 6.289211, 47.44758 ], [ 6.285731, 47.449309 ], [ 6.282863, 47.451489 ], [ 6.292276, 47.46285 ], [ 6.294221, 47.465962 ], [ 6.301729, 47.469857 ], [ 6.299621, 47.479855 ], [ 6.299164, 47.48322 ], [ 6.302508, 47.49153 ], [ 6.307378, 47.49032 ], [ 6.311626, 47.48829 ], [ 6.320565, 47.48775 ], [ 6.331201, 47.500389 ], [ 6.331564, 47.50345 ], [ 6.334475, 47.506 ], [ 6.343925, 47.505511 ], [ 6.348676, 47.50556 ], [ 6.363965, 47.512097 ], [ 6.368083, 47.51349 ], [ 6.374837, 47.51115 ], [ 6.378694, 47.511364 ], [ 6.38645, 47.508274 ], [ 6.389787, 47.506159 ], [ 6.396998, 47.518373 ], [ 6.411148, 47.5219 ], [ 6.414662, 47.51943 ], [ 6.416725, 47.521112 ], [ 6.420592, 47.5196 ], [ 6.428573, 47.51692 ], [ 6.45632, 47.514087 ], [ 6.460669, 47.512445 ], [ 6.46359, 47.5097 ], [ 6.471519, 47.48702 ], [ 6.475733, 47.488659 ], [ 6.475829, 47.49525 ], [ 6.497259, 47.507838 ], [ 6.500569, 47.51025 ], [ 6.506233, 47.502125 ], [ 6.517722, 47.49667 ], [ 6.522414, 47.49726 ], [ 6.531543, 47.50341 ], [ 6.532903, 47.506293 ], [ 6.552118, 47.49326 ], [ 6.553836, 47.490311 ], [ 6.558532, 47.496358 ], [ 6.568577, 47.49626 ], [ 6.573512, 47.495494 ], [ 6.576228, 47.49833 ], [ 6.583668, 47.51035 ], [ 6.57902, 47.522753 ], [ 6.579606, 47.52594 ], [ 6.5814, 47.529294 ], [ 6.569138, 47.53135 ], [ 6.581312, 47.54088 ], [ 6.58045, 47.54411 ], [ 6.594465, 47.54235 ], [ 6.602113, 47.538351 ], [ 6.606403, 47.53685 ], [ 6.605545, 47.533794 ], [ 6.613339, 47.530804 ], [ 6.617904, 47.531023 ], [ 6.627005, 47.529848 ], [ 6.644428, 47.534053 ], [ 6.648122, 47.53612 ], [ 6.651061, 47.53902 ], [ 6.654297, 47.54178 ], [ 6.659006, 47.54661 ], [ 6.667733, 47.55488 ], [ 6.670176, 47.5579 ], [ 6.667054, 47.560701 ], [ 6.653689, 47.571221 ], [ 6.659797, 47.57991 ], [ 6.665164, 47.57255 ], [ 6.688866, 47.57081 ], [ 6.686969, 47.5684 ], [ 6.685248, 47.56315 ], [ 6.707803, 47.558 ], [ 6.714589, 47.553158 ], [ 6.71951, 47.55253 ], [ 6.720623, 47.557237 ], [ 6.722269, 47.559455 ], [ 6.725942, 47.560401 ], [ 6.740108, 47.556802 ], [ 6.744932, 47.55079 ], [ 6.748853, 47.54863 ], [ 6.753726, 47.54296 ], [ 6.758113, 47.54157 ], [ 6.765616, 47.53907 ], [ 6.7693, 47.53771 ], [ 6.777111, 47.536955 ], [ 6.781102, 47.53637 ], [ 6.799531, 47.555241 ], [ 6.801329, 47.56181 ], [ 6.807005, 47.5628 ], [ 6.814554, 47.55086 ], [ 6.81666, 47.547922 ], [ 6.830636, 47.54644 ], [ 6.850617, 47.54813 ], [ 6.855715, 47.54794 ], [ 6.85988, 47.54755 ], [ 6.88001, 47.55365 ], [ 6.884008, 47.55517 ], [ 6.887326, 47.55283 ], [ 6.889827, 47.55007 ], [ 6.899593, 47.549818 ], [ 6.906437, 47.54548 ], [ 6.906982, 47.54219 ], [ 6.91027, 47.539646 ], [ 6.915914, 47.5304 ], [ 6.907885, 47.52706 ], [ 6.921146, 47.520273 ], [ 6.925322, 47.51953 ], [ 6.934612, 47.517764 ], [ 6.93758, 47.51742 ], [ 6.940905, 47.51506 ], [ 6.945008, 47.51334 ], [ 6.947186, 47.510407 ], [ 6.944813, 47.49826 ], [ 6.949125, 47.4857 ], [ 6.945373, 47.48729 ], [ 6.942672, 47.48492 ], [ 6.938548, 47.48651 ], [ 6.931237, 47.497752 ], [ 6.922982, 47.50016 ], [ 6.920045, 47.49782 ], [ 6.907611, 47.494555 ], [ 6.913493, 47.48135 ], [ 6.915711, 47.47824 ], [ 6.909833, 47.47494 ], [ 6.907344, 47.472888 ], [ 6.919363, 47.468203 ], [ 6.92987, 47.45853 ], [ 6.932316, 47.455824 ], [ 6.932251, 47.45276 ], [ 6.934951, 47.447019 ], [ 6.936741, 47.43612 ], [ 6.939179, 47.4337 ], [ 6.940003, 47.4097 ], [ 6.937511, 47.40668 ], [ 6.922395, 47.4055 ], [ 6.917294, 47.405462 ], [ 6.909527, 47.39618 ], [ 6.912148, 47.386626 ], [ 6.899724, 47.38222 ], [ 6.894959, 47.38166 ], [ 6.885413, 47.374455 ], [ 6.879952, 47.35895 ], [ 6.879799, 47.352434 ], [ 6.89647, 47.357906 ], [ 6.901015, 47.358763 ], [ 6.920493, 47.355565 ], [ 6.930147, 47.35754 ], [ 6.935257, 47.35758 ], [ 6.984479, 47.36361 ], [ 6.98955, 47.36347 ], [ 6.999339, 47.364873 ], [ 7.011355, 47.371552 ], [ 7.031338, 47.368562 ], [ 7.044112, 47.36273 ], [ 7.048192, 47.36053 ], [ 7.050404, 47.357334 ], [ 7.051706, 47.35033 ], [ 7.060295, 47.34185 ], [ 7.052918, 47.336892 ], [ 7.054788, 47.333735 ], [ 7.043934, 47.32696 ], [ 7.01457, 47.3252 ], [ 7.009734, 47.32436 ], [ 7.015482, 47.3156 ], [ 7.00841, 47.30272 ], [ 6.995778, 47.29681 ], [ 6.980483, 47.296034 ], [ 6.972093, 47.292058 ], [ 6.951849, 47.292227 ], [ 6.94714, 47.290882 ], [ 6.944646, 47.28886 ], [ 6.940919, 47.286632 ], [ 6.950996, 47.26786 ], [ 6.947221, 47.251633 ], [ 6.952923, 47.24618 ], [ 6.955123, 47.24316 ], [ 6.942553, 47.237451 ], [ 6.939468, 47.23111 ], [ 6.929815, 47.22959 ], [ 6.921872, 47.22102 ], [ 6.897364, 47.20963 ], [ 6.893103, 47.207783 ], [ 6.882161, 47.20096 ], [ 6.87197, 47.18561 ], [ 6.865136, 47.18159 ], [ 6.861406, 47.17934 ], [ 6.844374, 47.17207 ], [ 6.843407, 47.168703 ], [ 6.852315, 47.165937 ], [ 6.852956, 47.15993 ], [ 6.826476, 47.14417 ], [ 6.820016, 47.14008 ], [ 6.817468, 47.1375 ], [ 6.802146, 47.129461 ], [ 6.764215, 47.11981 ], [ 6.748738, 47.11107 ], [ 6.744134, 47.109605 ], [ 6.74055, 47.10703 ], [ 6.743571, 47.093715 ], [ 6.710902, 47.08503 ], [ 6.696344, 47.066511 ], [ 6.715974, 47.05103 ], [ 6.697949, 47.03837 ], [ 6.682777, 47.03648 ], [ 6.677932, 47.03522 ], [ 6.65419, 47.02237 ], [ 6.633911, 46.998571 ], [ 6.620909, 46.993076 ], [ 6.606114, 46.991071 ], [ 6.596134, 46.992518 ], [ 6.588013, 46.989436 ], [ 6.584229, 46.9876 ], [ 6.562451, 46.97931 ], [ 6.505959, 46.96613 ], [ 6.499559, 46.97138 ], [ 6.496686, 46.97419 ], [ 6.491348, 46.97064 ], [ 6.475298, 46.95937 ], [ 6.472517, 46.95686 ], [ 6.448683, 46.93546 ], [ 6.44475, 46.933405 ], [ 6.433014, 46.927817 ], [ 6.444981, 46.913914 ], [ 6.447445, 46.911101 ], [ 6.464539, 46.889913 ], [ 6.461724, 46.865647 ], [ 6.461318, 46.86218 ], [ 6.459761, 46.85159 ], [ 6.44377, 46.83335 ], [ 6.435604, 46.813933 ], [ 6.430999, 46.812322 ], [ 6.437754, 46.79983 ], [ 6.441691, 46.797753 ], [ 6.457247, 46.788571 ], [ 6.450819, 46.7752 ], [ 6.428577, 46.75621 ], [ 6.395194, 46.747469 ], [ 6.387937, 46.734561 ], [ 6.374269, 46.730395 ], [ 6.365232, 46.72226 ], [ 6.360237, 46.72308 ], [ 6.357442, 46.71985 ], [ 6.342653, 46.710781 ], [ 6.302496, 46.69636 ], [ 6.298217, 46.694485 ], [ 6.274457, 46.684901 ], [ 6.270491, 46.68319 ], [ 6.260915, 46.67201 ], [ 6.257273, 46.669782 ], [ 6.212793, 46.64063 ], [ 6.175137, 46.61398 ], [ 6.161275, 46.6097 ], [ 6.137714, 46.59638 ], [ 6.113298, 46.578623 ], [ 6.112953, 46.575118 ], [ 6.134502, 46.56015 ], [ 6.138109, 46.55766 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "25", "CODE_DEPT": "26", "NOM_DEPT": "DROME", "CODE_CHF": "362", "NOM_CHF": "VALENCE", "X_CHF_LIEU": "8491", "Y_CHF_LIEU": "64277", "X_CENTROID": "8717", "Y_CENTROID": "64006", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.498788, 44.11572 ], [ 5.493838, 44.115436 ], [ 5.454716, 44.11923 ], [ 5.451161, 44.12113 ], [ 5.447571, 44.136758 ], [ 5.443033, 44.13795 ], [ 5.436695, 44.14207 ], [ 5.435756, 44.152249 ], [ 5.431059, 44.15151 ], [ 5.422917, 44.150039 ], [ 5.415834, 44.154652 ], [ 5.39695, 44.152338 ], [ 5.383241, 44.155285 ], [ 5.383201, 44.158797 ], [ 5.38665, 44.17927 ], [ 5.381281, 44.192382 ], [ 5.383188, 44.19907 ], [ 5.384529, 44.20119 ], [ 5.380358, 44.202911 ], [ 5.37667, 44.20513 ], [ 5.372391, 44.206686 ], [ 5.35579, 44.213599 ], [ 5.335726, 44.20431 ], [ 5.317996, 44.208794 ], [ 5.303624, 44.208799 ], [ 5.303298, 44.20539 ], [ 5.299429, 44.206924 ], [ 5.291804, 44.214647 ], [ 5.280668, 44.219796 ], [ 5.276283, 44.22099 ], [ 5.256509, 44.23006 ], [ 5.252657, 44.23113 ], [ 5.248536, 44.23112 ], [ 5.244512, 44.230707 ], [ 5.240446, 44.23083 ], [ 5.23815, 44.21323 ], [ 5.208775, 44.21442 ], [ 5.175606, 44.22087 ], [ 5.167913, 44.225304 ], [ 5.163507, 44.226355 ], [ 5.150007, 44.235237 ], [ 5.151814, 44.238308 ], [ 5.158751, 44.24287 ], [ 5.161548, 44.245591 ], [ 5.162089, 44.248948 ], [ 5.160531, 44.26562 ], [ 5.147458, 44.26917 ], [ 5.150647, 44.281877 ], [ 5.168429, 44.292243 ], [ 5.170106, 44.298738 ], [ 5.169743, 44.30201 ], [ 5.172827, 44.30821 ], [ 5.168839, 44.314125 ], [ 5.166434, 44.314857 ], [ 5.161976, 44.313387 ], [ 5.153262, 44.31015 ], [ 5.149503, 44.30066 ], [ 5.109641, 44.280367 ], [ 5.086471, 44.283933 ], [ 5.076512, 44.284086 ], [ 5.073922, 44.286944 ], [ 5.060245, 44.307614 ], [ 5.056515, 44.3054 ], [ 5.0295, 44.29789 ], [ 5.024772, 44.296784 ], [ 5.01715, 44.292242 ], [ 5.013072, 44.291074 ], [ 5.002729, 44.28537 ], [ 4.989594, 44.28577 ], [ 4.985462, 44.285517 ], [ 4.971688, 44.279426 ], [ 4.967555, 44.277726 ], [ 4.941528, 44.26941 ], [ 4.932031, 44.26245 ], [ 4.927221, 44.26211 ], [ 4.903477, 44.259478 ], [ 4.901283, 44.26428 ], [ 4.896965, 44.26441 ], [ 4.88025, 44.26177 ], [ 4.876029, 44.260266 ], [ 4.857094, 44.24599 ], [ 4.853171, 44.244366 ], [ 4.825342, 44.22845 ], [ 4.820886, 44.228889 ], [ 4.813448, 44.23242 ], [ 4.812141, 44.242062 ], [ 4.813118, 44.24521 ], [ 4.812513, 44.258019 ], [ 4.803999, 44.26921 ], [ 4.805857, 44.27484 ], [ 4.804479, 44.27762 ], [ 4.802926, 44.280793 ], [ 4.804563, 44.303897 ], [ 4.799988, 44.303549 ], [ 4.780956, 44.31712 ], [ 4.771902, 44.317537 ], [ 4.762995, 44.3251 ], [ 4.758399, 44.32533 ], [ 4.721663, 44.326592 ], [ 4.717089, 44.325907 ], [ 4.713017, 44.320649 ], [ 4.679884, 44.320692 ], [ 4.654887, 44.32835 ], [ 4.650615, 44.329806 ], [ 4.64959, 44.334233 ], [ 4.646837, 44.34828 ], [ 4.649064, 44.373073 ], [ 4.663492, 44.39545 ], [ 4.664373, 44.398944 ], [ 4.663338, 44.404317 ], [ 4.663053, 44.40702 ], [ 4.675978, 44.4367 ], [ 4.68026, 44.43827 ], [ 4.689287, 44.44051 ], [ 4.695289, 44.4458 ], [ 4.70041, 44.46939 ], [ 4.700103, 44.472952 ], [ 4.699537, 44.480083 ], [ 4.689415, 44.492349 ], [ 4.687882, 44.502934 ], [ 4.693101, 44.516703 ], [ 4.703129, 44.52456 ], [ 4.704551, 44.52789 ], [ 4.707933, 44.53442 ], [ 4.703415, 44.535714 ], [ 4.6925, 44.54623 ], [ 4.695739, 44.56307 ], [ 4.705961, 44.56665 ], [ 4.706404, 44.576314 ], [ 4.710872, 44.581999 ], [ 4.728619, 44.584685 ], [ 4.732864, 44.585888 ], [ 4.737462, 44.586672 ], [ 4.741169, 44.58877 ], [ 4.741139, 44.591872 ], [ 4.744202, 44.60089 ], [ 4.740405, 44.602392 ], [ 4.742368, 44.605171 ], [ 4.752426, 44.61893 ], [ 4.754218, 44.62183 ], [ 4.758089, 44.630739 ], [ 4.760718, 44.63335 ], [ 4.772902, 44.64263 ], [ 4.779073, 44.654699 ], [ 4.77792, 44.657761 ], [ 4.78159, 44.67885 ], [ 4.781209, 44.682373 ], [ 4.771968, 44.706 ], [ 4.76422, 44.71503 ], [ 4.764027, 44.729024 ], [ 4.76416, 44.73204 ], [ 4.759507, 44.74848 ], [ 4.769321, 44.759585 ], [ 4.762367, 44.76799 ], [ 4.76104, 44.77122 ], [ 4.761772, 44.7736 ], [ 4.766536, 44.778766 ], [ 4.770658, 44.780375 ], [ 4.783647, 44.78407 ], [ 4.795535, 44.79404 ], [ 4.797232, 44.803983 ], [ 4.80099, 44.805984 ], [ 4.80015, 44.809 ], [ 4.808382, 44.81478 ], [ 4.812834, 44.81553 ], [ 4.821485, 44.817384 ], [ 4.822499, 44.82055 ], [ 4.820281, 44.830192 ], [ 4.823316, 44.83949 ], [ 4.832487, 44.84087 ], [ 4.837147, 44.84131 ], [ 4.844119, 44.84547 ], [ 4.84757, 44.861873 ], [ 4.849984, 44.8648 ], [ 4.853417, 44.867152 ], [ 4.856764, 44.86955 ], [ 4.859694, 44.872001 ], [ 4.861281, 44.87822 ], [ 4.854324, 44.896523 ], [ 4.855085, 44.90001 ], [ 4.868911, 44.909923 ], [ 4.871343, 44.91673 ], [ 4.872362, 44.919916 ], [ 4.886589, 44.936652 ], [ 4.885877, 44.939591 ], [ 4.881366, 44.944603 ], [ 4.879216, 44.94744 ], [ 4.874277, 44.956367 ], [ 4.870828, 44.95867 ], [ 4.86049, 44.965551 ], [ 4.853083, 44.9779 ], [ 4.852566, 44.979535 ], [ 4.852189, 44.98308 ], [ 4.851868, 44.99372 ], [ 4.842493, 45.001983 ], [ 4.838684, 45.00426 ], [ 4.836708, 45.00751 ], [ 4.845408, 45.019956 ], [ 4.844111, 45.023373 ], [ 4.841948, 45.03791 ], [ 4.84455, 45.040541 ], [ 4.853914, 45.047509 ], [ 4.856465, 45.0501 ], [ 4.859747, 45.05594 ], [ 4.858913, 45.059161 ], [ 4.853039, 45.06404 ], [ 4.835642, 45.068347 ], [ 4.829155, 45.072848 ], [ 4.827816, 45.07855 ], [ 4.830462, 45.08402 ], [ 4.831643, 45.08748 ], [ 4.829597, 45.098 ], [ 4.827935, 45.101238 ], [ 4.825024, 45.10399 ], [ 4.821322, 45.106309 ], [ 4.814787, 45.111459 ], [ 4.812375, 45.11434 ], [ 4.804038, 45.122468 ], [ 4.803833, 45.12912 ], [ 4.804132, 45.13127 ], [ 4.805542, 45.134369 ], [ 4.828575, 45.15424 ], [ 4.828713, 45.156129 ], [ 4.826971, 45.15852 ], [ 4.824192, 45.160364 ], [ 4.819523, 45.161233 ], [ 4.809691, 45.168175 ], [ 4.810241, 45.17493 ], [ 4.812187, 45.18153 ], [ 4.806769, 45.1908 ], [ 4.805502, 45.196928 ], [ 4.812208, 45.204953 ], [ 4.810324, 45.20813 ], [ 4.803559, 45.224709 ], [ 4.802319, 45.228133 ], [ 4.8016, 45.24574 ], [ 4.808846, 45.258849 ], [ 4.809896, 45.261326 ], [ 4.809987, 45.266477 ], [ 4.809613, 45.2695 ], [ 4.809775, 45.272533 ], [ 4.809489, 45.28769 ], [ 4.808896, 45.29065 ], [ 4.800462, 45.29737 ], [ 4.805088, 45.29876 ], [ 4.809212, 45.300787 ], [ 4.854363, 45.308 ], [ 4.858799, 45.30895 ], [ 4.858988, 45.301997 ], [ 4.858617, 45.298518 ], [ 4.878779, 45.297713 ], [ 4.899498, 45.30765 ], [ 4.903057, 45.310191 ], [ 4.925238, 45.320404 ], [ 4.928178, 45.32273 ], [ 4.943909, 45.327864 ], [ 4.948148, 45.32858 ], [ 4.95774, 45.329379 ], [ 4.973933, 45.336273 ], [ 4.978246, 45.337954 ], [ 4.990369, 45.343413 ], [ 5.004716, 45.342067 ], [ 5.009652, 45.34223 ], [ 5.018797, 45.3225 ], [ 5.020647, 45.319289 ], [ 5.028752, 45.31713 ], [ 5.032911, 45.318104 ], [ 5.056476, 45.31661 ], [ 5.05911, 45.31362 ], [ 5.066365, 45.298584 ], [ 5.067888, 45.2956 ], [ 5.070509, 45.28577 ], [ 5.073566, 45.283228 ], [ 5.075415, 45.28183 ], [ 5.088531, 45.28625 ], [ 5.10791, 45.28785 ], [ 5.116362, 45.29131 ], [ 5.120994, 45.29733 ], [ 5.13052, 45.297795 ], [ 5.135363, 45.298279 ], [ 5.138789, 45.29644 ], [ 5.130631, 45.283678 ], [ 5.122195, 45.24544 ], [ 5.141072, 45.24525 ], [ 5.153102, 45.2563 ], [ 5.162538, 45.246719 ], [ 5.176541, 45.248402 ], [ 5.191351, 45.22386 ], [ 5.199656, 45.220494 ], [ 5.201713, 45.2174 ], [ 5.182678, 45.217548 ], [ 5.170895, 45.212445 ], [ 5.167415, 45.21013 ], [ 5.168459, 45.19764 ], [ 5.169774, 45.19443 ], [ 5.175783, 45.18127 ], [ 5.188036, 45.16729 ], [ 5.189357, 45.163957 ], [ 5.191216, 45.157165 ], [ 5.184447, 45.148146 ], [ 5.1892, 45.14209 ], [ 5.187561, 45.12853 ], [ 5.187495, 45.122937 ], [ 5.186889, 45.12013 ], [ 5.167161, 45.10023 ], [ 5.162894, 45.09843 ], [ 5.156072, 45.08279 ], [ 5.135416, 45.0779 ], [ 5.134543, 45.074676 ], [ 5.149661, 45.074106 ], [ 5.162641, 45.065568 ], [ 5.170834, 45.06872 ], [ 5.180111, 45.083683 ], [ 5.207811, 45.08421 ], [ 5.212351, 45.08327 ], [ 5.220014, 45.080608 ], [ 5.224169, 45.079912 ], [ 5.227494, 45.07722 ], [ 5.231728, 45.071168 ], [ 5.239853, 45.06773 ], [ 5.244513, 45.06697 ], [ 5.246537, 45.060728 ], [ 5.265166, 45.059387 ], [ 5.266332, 45.056165 ], [ 5.272423, 45.054996 ], [ 5.275255, 45.056524 ], [ 5.276451, 45.059679 ], [ 5.28982, 45.06088 ], [ 5.29162, 45.06389 ], [ 5.30689, 45.05845 ], [ 5.305798, 45.05538 ], [ 5.316422, 45.051703 ], [ 5.320482, 45.05186 ], [ 5.321077, 45.055173 ], [ 5.329014, 45.058691 ], [ 5.333351, 45.059988 ], [ 5.340586, 45.06189 ], [ 5.347807, 45.0474 ], [ 5.352338, 45.04696 ], [ 5.369797, 45.04395 ], [ 5.384095, 45.035979 ], [ 5.39289, 45.037249 ], [ 5.397269, 45.03833 ], [ 5.384813, 45.04896 ], [ 5.385417, 45.055083 ], [ 5.393834, 45.04685 ], [ 5.40765, 45.044867 ], [ 5.422873, 45.053095 ], [ 5.432402, 45.0545 ], [ 5.44593, 45.06859 ], [ 5.447812, 45.07179 ], [ 5.455339, 45.07907 ], [ 5.457488, 45.08167 ], [ 5.46395, 45.08693 ], [ 5.473718, 45.08639 ], [ 5.486388, 45.080783 ], [ 5.494196, 45.07167 ], [ 5.484569, 45.07304 ], [ 5.475777, 45.07029 ], [ 5.466517, 45.05403 ], [ 5.465229, 45.04354 ], [ 5.47773, 45.033439 ], [ 5.479206, 45.024037 ], [ 5.483609, 45.02279 ], [ 5.480436, 45.01308 ], [ 5.49306, 44.99541 ], [ 5.488361, 44.989665 ], [ 5.47919, 44.97003 ], [ 5.477675, 44.966761 ], [ 5.483029, 44.926367 ], [ 5.483565, 44.92301 ], [ 5.480488, 44.898175 ], [ 5.470453, 44.87809 ], [ 5.474919, 44.867889 ], [ 5.464305, 44.82952 ], [ 5.463795, 44.82598 ], [ 5.480397, 44.82272 ], [ 5.484766, 44.82307 ], [ 5.475126, 44.807928 ], [ 5.460202, 44.799992 ], [ 5.46402, 44.793881 ], [ 5.477975, 44.79192 ], [ 5.48156, 44.786013 ], [ 5.548726, 44.770716 ], [ 5.553872, 44.774876 ], [ 5.545874, 44.787879 ], [ 5.548387, 44.7931 ], [ 5.577771, 44.77978 ], [ 5.582047, 44.77787 ], [ 5.586144, 44.764129 ], [ 5.607698, 44.755859 ], [ 5.62238, 44.754035 ], [ 5.626315, 44.753293 ], [ 5.626659, 44.750385 ], [ 5.629065, 44.744797 ], [ 5.639871, 44.73265 ], [ 5.643978, 44.73158 ], [ 5.645942, 44.726577 ], [ 5.647102, 44.724099 ], [ 5.660657, 44.721369 ], [ 5.668003, 44.72468 ], [ 5.691217, 44.722612 ], [ 5.699316, 44.724451 ], [ 5.70406, 44.729299 ], [ 5.717932, 44.71537 ], [ 5.73636, 44.712668 ], [ 5.755312, 44.696965 ], [ 5.774648, 44.6985 ], [ 5.796837, 44.70557 ], [ 5.80147, 44.706779 ], [ 5.808962, 44.70579 ], [ 5.812675, 44.70501 ], [ 5.825458, 44.70098 ], [ 5.829958, 44.69124 ], [ 5.817189, 44.681885 ], [ 5.813277, 44.679904 ], [ 5.809249, 44.678123 ], [ 5.801017, 44.674828 ], [ 5.79062, 44.653299 ], [ 5.785703, 44.653135 ], [ 5.77112, 44.65428 ], [ 5.753769, 44.660529 ], [ 5.749155, 44.65108 ], [ 5.725505, 44.640087 ], [ 5.683495, 44.64998 ], [ 5.659305, 44.651049 ], [ 5.651551, 44.655217 ], [ 5.649246, 44.652903 ], [ 5.641715, 44.651084 ], [ 5.640301, 44.64782 ], [ 5.642842, 44.62426 ], [ 5.649462, 44.61938 ], [ 5.648367, 44.616218 ], [ 5.646092, 44.60992 ], [ 5.63703, 44.60922 ], [ 5.627477, 44.59497 ], [ 5.626319, 44.586623 ], [ 5.621998, 44.58586 ], [ 5.613898, 44.571821 ], [ 5.607148, 44.568351 ], [ 5.60649, 44.566655 ], [ 5.597249, 44.543274 ], [ 5.612473, 44.535601 ], [ 5.614987, 44.532776 ], [ 5.627653, 44.53436 ], [ 5.642693, 44.522064 ], [ 5.646326, 44.520076 ], [ 5.66305, 44.50495 ], [ 5.664504, 44.501894 ], [ 5.659776, 44.501972 ], [ 5.651244, 44.499322 ], [ 5.633188, 44.502097 ], [ 5.626329, 44.497775 ], [ 5.623729, 44.48406 ], [ 5.614847, 44.47184 ], [ 5.603637, 44.4655 ], [ 5.598968, 44.466268 ], [ 5.5691, 44.476578 ], [ 5.564687, 44.475249 ], [ 5.56043, 44.4743 ], [ 5.549714, 44.4799 ], [ 5.546077, 44.48212 ], [ 5.51103, 44.49151 ], [ 5.506409, 44.492018 ], [ 5.483134, 44.49122 ], [ 5.474925, 44.49426 ], [ 5.470847, 44.5 ], [ 5.466345, 44.50034 ], [ 5.457843, 44.498155 ], [ 5.458909, 44.48852 ], [ 5.460352, 44.48614 ], [ 5.461529, 44.482824 ], [ 5.466822, 44.47352 ], [ 5.460217, 44.46859 ], [ 5.463836, 44.452052 ], [ 5.464832, 44.44865 ], [ 5.49549, 44.438803 ], [ 5.495031, 44.43096 ], [ 5.493615, 44.42822 ], [ 5.489918, 44.429022 ], [ 5.486044, 44.428965 ], [ 5.483329, 44.42609 ], [ 5.47757, 44.42085 ], [ 5.472723, 44.420943 ], [ 5.438582, 44.433556 ], [ 5.433752, 44.433168 ], [ 5.418397, 44.42477 ], [ 5.425382, 44.41561 ], [ 5.430035, 44.41453 ], [ 5.441702, 44.391681 ], [ 5.442622, 44.381268 ], [ 5.431328, 44.375331 ], [ 5.434954, 44.36912 ], [ 5.439297, 44.36795 ], [ 5.443922, 44.367748 ], [ 5.462782, 44.367237 ], [ 5.467049, 44.35451 ], [ 5.468856, 44.35135 ], [ 5.47857, 44.351041 ], [ 5.490082, 44.33996 ], [ 5.492944, 44.33713 ], [ 5.50316, 44.344279 ], [ 5.520927, 44.349259 ], [ 5.53686, 44.342102 ], [ 5.539953, 44.332439 ], [ 5.549105, 44.330588 ], [ 5.566543, 44.33302 ], [ 5.571307, 44.333476 ], [ 5.582972, 44.33229 ], [ 5.586926, 44.33204 ], [ 5.588187, 44.33218 ], [ 5.62037, 44.33295 ], [ 5.6238, 44.335217 ], [ 5.628259, 44.33394 ], [ 5.630209, 44.32785 ], [ 5.613216, 44.315772 ], [ 5.608318, 44.30612 ], [ 5.616057, 44.30938 ], [ 5.629322, 44.30115 ], [ 5.633799, 44.30088 ], [ 5.639778, 44.2965 ], [ 5.635739, 44.291638 ], [ 5.632601, 44.289389 ], [ 5.632861, 44.282845 ], [ 5.646372, 44.270398 ], [ 5.646781, 44.26709 ], [ 5.671683, 44.274225 ], [ 5.67561, 44.27589 ], [ 5.68449, 44.268833 ], [ 5.686653, 44.266069 ], [ 5.684206, 44.26309 ], [ 5.674252, 44.25586 ], [ 5.672644, 44.24567 ], [ 5.673312, 44.240169 ], [ 5.682025, 44.23367 ], [ 5.681133, 44.23069 ], [ 5.676723, 44.21341 ], [ 5.685922, 44.197181 ], [ 5.676037, 44.191433 ], [ 5.651593, 44.18958 ], [ 5.652288, 44.186237 ], [ 5.643897, 44.17053 ], [ 5.650428, 44.166766 ], [ 5.682728, 44.163486 ], [ 5.681266, 44.16007 ], [ 5.678605, 44.146098 ], [ 5.67406, 44.14732 ], [ 5.645321, 44.148185 ], [ 5.640667, 44.149234 ], [ 5.631136, 44.150579 ], [ 5.632026, 44.157375 ], [ 5.638795, 44.16628 ], [ 5.629773, 44.17409 ], [ 5.616955, 44.17862 ], [ 5.609327, 44.19071 ], [ 5.605704, 44.19114 ], [ 5.602053, 44.191502 ], [ 5.594234, 44.187481 ], [ 5.579657, 44.18837 ], [ 5.575671, 44.186316 ], [ 5.564374, 44.170902 ], [ 5.568105, 44.168725 ], [ 5.581188, 44.155153 ], [ 5.570423, 44.148616 ], [ 5.551333, 44.149647 ], [ 5.551315, 44.14924 ], [ 5.550089, 44.145894 ], [ 5.542146, 44.13326 ], [ 5.511089, 44.12396 ], [ 5.507615, 44.11776 ], [ 5.498788, 44.11572 ] ], [ [ 4.89291, 44.36483 ], [ 4.892057, 44.36146 ], [ 4.873588, 44.351022 ], [ 4.869527, 44.34508 ], [ 4.87911, 44.34537 ], [ 4.891418, 44.340065 ], [ 4.895328, 44.33806 ], [ 4.882096, 44.32532 ], [ 4.890664, 44.313723 ], [ 4.891209, 44.30711 ], [ 4.889463, 44.304019 ], [ 4.917099, 44.3085 ], [ 4.921836, 44.308797 ], [ 4.983551, 44.29503 ], [ 4.987018, 44.292719 ], [ 4.992205, 44.31262 ], [ 4.997298, 44.31837 ], [ 5.013335, 44.325655 ], [ 5.009006, 44.33377 ], [ 5.021478, 44.344352 ], [ 5.025072, 44.360998 ], [ 5.053313, 44.36483 ], [ 5.066647, 44.37419 ], [ 5.07032, 44.37645 ], [ 5.072028, 44.37851 ], [ 5.070882, 44.383225 ], [ 5.0476, 44.38212 ], [ 5.032759, 44.390896 ], [ 5.018616, 44.392588 ], [ 5.013498, 44.405441 ], [ 5.017716, 44.407138 ], [ 5.01876, 44.415979 ], [ 5.013923, 44.415627 ], [ 5.006196, 44.41172 ], [ 4.98861, 44.4232 ], [ 4.984073, 44.42318 ], [ 4.970846, 44.430129 ], [ 4.959697, 44.42027 ], [ 4.955663, 44.420251 ], [ 4.951931, 44.41915 ], [ 4.948766, 44.41664 ], [ 4.918515, 44.407785 ], [ 4.910162, 44.39515 ], [ 4.911091, 44.384728 ], [ 4.907085, 44.374631 ], [ 4.903708, 44.37276 ], [ 4.893313, 44.367873 ], [ 4.89291, 44.36483 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "26", "CODE_DEPT": "27", "NOM_DEPT": "EURE", "CODE_CHF": "229", "NOM_CHF": "EVREUX", "X_CHF_LIEU": "5648", "Y_CHF_LIEU": "68819", "X_CENTROID": "5537", "Y_CENTROID": "68922", "CODE_REG": "23", "NOM_REGION": "HAUTE-NORMANDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.814819, 48.67017 ], [ 0.810178, 48.67135 ], [ 0.796482, 48.674914 ], [ 0.782205, 48.66652 ], [ 0.780369, 48.666589 ], [ 0.767326, 48.673616 ], [ 0.764138, 48.67572 ], [ 0.76511, 48.6905 ], [ 0.767725, 48.69322 ], [ 0.767302, 48.69582 ], [ 0.763337, 48.69793 ], [ 0.75117, 48.703978 ], [ 0.731016, 48.70383 ], [ 0.728764, 48.706847 ], [ 0.732598, 48.70933 ], [ 0.743593, 48.717 ], [ 0.748398, 48.718448 ], [ 0.758437, 48.72059 ], [ 0.763635, 48.73036 ], [ 0.775034, 48.73736 ], [ 0.77192, 48.74021 ], [ 0.751061, 48.760527 ], [ 0.75678, 48.766465 ], [ 0.755764, 48.770135 ], [ 0.752631, 48.77274 ], [ 0.739437, 48.77753 ], [ 0.730523, 48.78559 ], [ 0.716372, 48.785989 ], [ 0.713196, 48.78856 ], [ 0.708628, 48.79025 ], [ 0.703765, 48.791533 ], [ 0.699117, 48.79286 ], [ 0.690171, 48.79406 ], [ 0.660002, 48.811774 ], [ 0.656093, 48.81357 ], [ 0.647016, 48.814857 ], [ 0.642759, 48.816501 ], [ 0.628768, 48.825159 ], [ 0.624834, 48.82715 ], [ 0.607869, 48.832489 ], [ 0.611184, 48.835084 ], [ 0.633771, 48.85604 ], [ 0.619441, 48.852749 ], [ 0.610658, 48.85606 ], [ 0.6064, 48.862376 ], [ 0.608871, 48.8757 ], [ 0.589631, 48.872603 ], [ 0.585984, 48.8786 ], [ 0.596624, 48.884817 ], [ 0.595643, 48.888028 ], [ 0.590805, 48.888803 ], [ 0.578041, 48.893656 ], [ 0.573844, 48.89177 ], [ 0.553791, 48.87686 ], [ 0.549868, 48.87471 ], [ 0.52088, 48.880798 ], [ 0.515706, 48.88058 ], [ 0.496544, 48.87878 ], [ 0.47437, 48.88706 ], [ 0.459094, 48.8878 ], [ 0.457358, 48.87976 ], [ 0.452557, 48.88003 ], [ 0.443109, 48.88128 ], [ 0.443534, 48.88402 ], [ 0.45004, 48.891016 ], [ 0.436708, 48.88578 ], [ 0.426211, 48.8867 ], [ 0.417946, 48.898471 ], [ 0.386114, 48.910548 ], [ 0.387285, 48.91387 ], [ 0.390826, 48.927107 ], [ 0.395214, 48.928921 ], [ 0.396241, 48.93242 ], [ 0.412815, 48.950626 ], [ 0.431508, 48.96876 ], [ 0.4322, 48.971908 ], [ 0.432448, 48.978229 ], [ 0.4256, 48.982652 ], [ 0.42676, 48.985718 ], [ 0.433439, 49.00022 ], [ 0.433737, 49.00333 ], [ 0.435081, 49.00628 ], [ 0.44418, 49.01313 ], [ 0.446052, 49.01901 ], [ 0.424546, 49.032031 ], [ 0.414601, 49.032816 ], [ 0.409538, 49.03283 ], [ 0.384959, 49.037014 ], [ 0.375069, 49.052092 ], [ 0.370827, 49.05017 ], [ 0.366966, 49.052356 ], [ 0.380383, 49.06125 ], [ 0.379166, 49.06745 ], [ 0.378878, 49.07071 ], [ 0.389902, 49.0764 ], [ 0.413397, 49.07538 ], [ 0.417277, 49.073357 ], [ 0.417885, 49.08396 ], [ 0.416455, 49.08738 ], [ 0.402183, 49.08846 ], [ 0.411408, 49.09491 ], [ 0.410106, 49.09766 ], [ 0.400959, 49.09786 ], [ 0.399783, 49.10081 ], [ 0.407959, 49.11788 ], [ 0.409399, 49.120857 ], [ 0.409704, 49.12217 ], [ 0.408273, 49.12858 ], [ 0.422719, 49.130814 ], [ 0.429977, 49.139263 ], [ 0.432367, 49.142202 ], [ 0.426698, 49.14674 ], [ 0.413143, 49.14635 ], [ 0.406567, 49.14951 ], [ 0.401342, 49.14951 ], [ 0.387361, 49.15318 ], [ 0.385822, 49.15405 ], [ 0.387636, 49.156981 ], [ 0.391913, 49.17854 ], [ 0.388119, 49.18981 ], [ 0.389366, 49.19665 ], [ 0.393648, 49.20674 ], [ 0.388402, 49.21194 ], [ 0.382813, 49.21603 ], [ 0.367048, 49.216595 ], [ 0.342009, 49.229286 ], [ 0.337503, 49.23117 ], [ 0.321521, 49.251985 ], [ 0.326531, 49.25289 ], [ 0.341482, 49.253678 ], [ 0.377722, 49.26389 ], [ 0.382787, 49.26402 ], [ 0.380626, 49.27979 ], [ 0.383554, 49.28576 ], [ 0.380112, 49.28776 ], [ 0.365656, 49.29512 ], [ 0.361083, 49.296608 ], [ 0.342181, 49.29351 ], [ 0.322277, 49.278762 ], [ 0.308998, 49.28322 ], [ 0.309988, 49.286386 ], [ 0.322439, 49.29633 ], [ 0.316021, 49.311309 ], [ 0.302649, 49.313683 ], [ 0.298154, 49.31441 ], [ 0.30424, 49.317199 ], [ 0.30706, 49.3188 ], [ 0.323662, 49.340117 ], [ 0.308051, 49.358082 ], [ 0.303456, 49.368016 ], [ 0.301714, 49.371305 ], [ 0.306587, 49.383996 ], [ 0.309068, 49.38688 ], [ 0.308366, 49.390287 ], [ 0.29781, 49.409253 ], [ 0.297224, 49.42986 ], [ 0.305604, 49.43047 ], [ 0.309792, 49.4308 ], [ 0.335856, 49.43367 ], [ 0.34103, 49.4344 ], [ 0.338834, 49.437682 ], [ 0.338983, 49.440931 ], [ 0.363704, 49.44402 ], [ 0.368796, 49.443966 ], [ 0.382193, 49.44632 ], [ 0.386601, 49.44724 ], [ 0.421222, 49.45573 ], [ 0.426004, 49.4572 ], [ 0.430743, 49.45871 ], [ 0.435335, 49.46041 ], [ 0.469808, 49.475066 ], [ 0.474178, 49.476839 ], [ 0.47886, 49.47902 ], [ 0.493009, 49.484334 ], [ 0.503839, 49.484998 ], [ 0.509162, 49.48423 ], [ 0.522109, 49.47963 ], [ 0.534675, 49.469686 ], [ 0.537695, 49.467131 ], [ 0.538625, 49.46616 ], [ 0.543384, 49.462409 ], [ 0.55787, 49.4505 ], [ 0.560742, 49.4481 ], [ 0.581253, 49.43396 ], [ 0.594568, 49.429617 ], [ 0.599426, 49.42891 ], [ 0.614557, 49.42995 ], [ 0.638579, 49.44216 ], [ 0.642538, 49.444256 ], [ 0.645169, 49.4413 ], [ 0.630653, 49.427406 ], [ 0.629512, 49.42405 ], [ 0.639453, 49.42521 ], [ 0.643721, 49.4193 ], [ 0.657586, 49.41691 ], [ 0.653605, 49.41111 ], [ 0.649834, 49.40888 ], [ 0.65297, 49.4066 ], [ 0.657385, 49.405572 ], [ 0.666042, 49.402466 ], [ 0.670967, 49.40356 ], [ 0.686356, 49.40576 ], [ 0.706393, 49.40357 ], [ 0.70901, 49.41011 ], [ 0.714187, 49.40958 ], [ 0.715509, 49.410856 ], [ 0.738288, 49.40806 ], [ 0.743824, 49.41317 ], [ 0.767621, 49.41898 ], [ 0.783355, 49.410814 ], [ 0.787609, 49.41283 ], [ 0.803021, 49.417575 ], [ 0.800132, 49.42712 ], [ 0.802892, 49.427068 ], [ 0.815203, 49.400721 ], [ 0.818879, 49.39819 ], [ 0.828008, 49.39471 ], [ 0.833067, 49.39365 ], [ 0.856544, 49.393916 ], [ 0.860851, 49.395359 ], [ 0.864153, 49.39282 ], [ 0.873629, 49.3952 ], [ 0.878462, 49.396254 ], [ 0.876661, 49.389802 ], [ 0.884734, 49.38172 ], [ 0.880352, 49.376082 ], [ 0.879015, 49.372786 ], [ 0.888059, 49.373511 ], [ 0.892756, 49.37214 ], [ 0.895508, 49.37826 ], [ 0.913196, 49.38459 ], [ 0.918119, 49.38546 ], [ 0.917497, 49.3794 ], [ 0.917825, 49.376374 ], [ 0.922086, 49.36154 ], [ 0.924328, 49.358871 ], [ 0.921963, 49.352976 ], [ 0.923216, 49.349905 ], [ 0.926813, 49.34876 ], [ 0.93224, 49.34489 ], [ 0.928962, 49.34221 ], [ 0.920066, 49.338592 ], [ 0.885498, 49.34631 ], [ 0.871749, 49.34231 ], [ 0.864208, 49.345612 ], [ 0.85934, 49.34519 ], [ 0.848188, 49.33143 ], [ 0.844484, 49.32622 ], [ 0.862759, 49.325462 ], [ 0.86442, 49.32255 ], [ 0.869477, 49.32335 ], [ 0.892669, 49.316329 ], [ 0.893682, 49.30332 ], [ 0.899933, 49.298039 ], [ 0.909447, 49.29977 ], [ 0.908281, 49.306493 ], [ 0.921014, 49.31198 ], [ 0.925702, 49.313421 ], [ 0.937589, 49.31986 ], [ 0.951232, 49.29743 ], [ 0.960338, 49.294192 ], [ 0.960717, 49.29087 ], [ 0.962659, 49.28555 ], [ 0.955864, 49.281842 ], [ 0.952434, 49.279931 ], [ 0.955538, 49.274436 ], [ 0.955769, 49.27137 ], [ 0.970563, 49.27962 ], [ 0.980858, 49.27011 ], [ 0.985591, 49.26926 ], [ 0.989553, 49.26315 ], [ 0.999613, 49.262036 ], [ 0.994332, 49.2572 ], [ 0.999109, 49.25197 ], [ 1.038408, 49.259697 ], [ 1.038716, 49.25808 ], [ 1.051713, 49.26246 ], [ 1.051614, 49.25926 ], [ 1.05351, 49.26179 ], [ 1.061024, 49.25929 ], [ 1.063577, 49.26156 ], [ 1.052655, 49.27246 ], [ 1.065644, 49.28084 ], [ 1.048481, 49.29782 ], [ 1.067449, 49.304245 ], [ 1.071772, 49.3063 ], [ 1.090166, 49.30979 ], [ 1.094995, 49.30975 ], [ 1.124683, 49.30947 ], [ 1.129593, 49.30985 ], [ 1.133994, 49.30984 ], [ 1.134635, 49.322917 ], [ 1.136896, 49.32584 ], [ 1.144742, 49.332577 ], [ 1.145476, 49.33551 ], [ 1.155046, 49.33529 ], [ 1.160337, 49.340503 ], [ 1.166683, 49.338864 ], [ 1.168589, 49.33597 ], [ 1.178198, 49.34243 ], [ 1.182717, 49.343845 ], [ 1.184847, 49.33807 ], [ 1.185541, 49.337899 ], [ 1.200779, 49.33889 ], [ 1.198912, 49.35217 ], [ 1.200411, 49.355357 ], [ 1.204671, 49.35201 ], [ 1.209571, 49.35239 ], [ 1.212223, 49.349724 ], [ 1.241233, 49.347776 ], [ 1.246099, 49.347524 ], [ 1.272155, 49.34738 ], [ 1.272228, 49.35425 ], [ 1.282152, 49.36165 ], [ 1.286239, 49.36296 ], [ 1.289196, 49.37549 ], [ 1.286147, 49.383954 ], [ 1.28613, 49.38693 ], [ 1.292988, 49.39404 ], [ 1.297471, 49.39467 ], [ 1.308009, 49.39634 ], [ 1.315391, 49.41111 ], [ 1.311022, 49.425848 ], [ 1.309632, 49.42873 ], [ 1.328864, 49.431139 ], [ 1.338046, 49.428937 ], [ 1.335723, 49.43558 ], [ 1.337491, 49.43887 ], [ 1.348854, 49.435765 ], [ 1.349982, 49.43843 ], [ 1.344091, 49.44627 ], [ 1.368674, 49.4511 ], [ 1.386452, 49.46329 ], [ 1.38949, 49.46274 ], [ 1.392158, 49.461636 ], [ 1.383933, 49.449948 ], [ 1.411997, 49.45563 ], [ 1.436079, 49.45502 ], [ 1.449923, 49.45005 ], [ 1.476221, 49.45131 ], [ 1.491322, 49.44749 ], [ 1.498491, 49.4423 ], [ 1.501866, 49.439544 ], [ 1.527546, 49.442052 ], [ 1.5355, 49.433348 ], [ 1.537191, 49.43009 ], [ 1.550283, 49.44044 ], [ 1.576197, 49.440054 ], [ 1.575446, 49.437295 ], [ 1.581915, 49.433649 ], [ 1.585082, 49.43176 ], [ 1.603637, 49.413378 ], [ 1.606957, 49.410854 ], [ 1.623377, 49.41456 ], [ 1.628006, 49.414583 ], [ 1.62791, 49.41144 ], [ 1.644518, 49.40548 ], [ 1.647801, 49.403191 ], [ 1.650699, 49.403026 ], [ 1.659032, 49.39989 ], [ 1.670423, 49.40628 ], [ 1.680561, 49.405827 ], [ 1.682184, 49.402672 ], [ 1.691936, 49.39728 ], [ 1.694284, 49.394865 ], [ 1.705046, 49.40888 ], [ 1.713938, 49.40922 ], [ 1.717574, 49.4037 ], [ 1.735689, 49.40651 ], [ 1.740379, 49.40568 ], [ 1.736382, 49.40353 ], [ 1.720029, 49.39528 ], [ 1.742778, 49.38077 ], [ 1.749902, 49.37146 ], [ 1.759341, 49.36824 ], [ 1.760168, 49.365326 ], [ 1.757629, 49.35703 ], [ 1.774004, 49.335692 ], [ 1.770655, 49.32557 ], [ 1.767545, 49.31928 ], [ 1.774432, 49.30668 ], [ 1.77239, 49.293664 ], [ 1.77535, 49.29117 ], [ 1.784643, 49.29286 ], [ 1.796641, 49.28646 ], [ 1.794084, 49.27649 ], [ 1.80266, 49.273434 ], [ 1.800911, 49.270063 ], [ 1.790289, 49.25369 ], [ 1.790552, 49.246575 ], [ 1.786654, 49.24882 ], [ 1.766896, 49.252035 ], [ 1.768065, 49.25545 ], [ 1.75472, 49.270009 ], [ 1.750536, 49.268023 ], [ 1.735143, 49.269365 ], [ 1.727115, 49.26509 ], [ 1.711646, 49.26452 ], [ 1.708195, 49.26241 ], [ 1.708007, 49.25622 ], [ 1.701428, 49.25179 ], [ 1.699859, 49.248652 ], [ 1.701625, 49.2423 ], [ 1.700984, 49.23395 ], [ 1.704364, 49.2322 ], [ 1.702869, 49.22885 ], [ 1.676291, 49.21219 ], [ 1.673207, 49.205626 ], [ 1.676462, 49.20285 ], [ 1.671348, 49.19304 ], [ 1.670339, 49.189608 ], [ 1.671825, 49.180893 ], [ 1.666334, 49.17572 ], [ 1.669326, 49.169239 ], [ 1.661447, 49.156806 ], [ 1.664304, 49.153951 ], [ 1.662683, 49.1525 ], [ 1.653229, 49.14176 ], [ 1.655991, 49.13039 ], [ 1.652877, 49.128943 ], [ 1.648114, 49.12503 ], [ 1.646559, 49.12164 ], [ 1.627035, 49.105127 ], [ 1.620143, 49.096981 ], [ 1.623322, 49.08608 ], [ 1.619512, 49.08418 ], [ 1.608796, 49.07789 ], [ 1.605928, 49.080694 ], [ 1.599088, 49.084067 ], [ 1.594359, 49.08275 ], [ 1.589843, 49.081684 ], [ 1.572262, 49.07681 ], [ 1.569242, 49.07413 ], [ 1.560832, 49.0704 ], [ 1.546672, 49.072591 ], [ 1.541304, 49.07318 ], [ 1.520998, 49.068132 ], [ 1.519955, 49.071113 ], [ 1.516637, 49.07992 ], [ 1.510269, 49.084285 ], [ 1.51315, 49.077873 ], [ 1.503301, 49.0591 ], [ 1.498032, 49.05866 ], [ 1.486848, 49.05176 ], [ 1.47664, 49.05363 ], [ 1.461614, 49.06337 ], [ 1.44728, 49.05351 ], [ 1.451258, 49.05133 ], [ 1.448209, 49.04485 ], [ 1.456846, 49.03643 ], [ 1.457511, 49.029696 ], [ 1.457762, 49.0263 ], [ 1.468018, 49.02031 ], [ 1.471842, 49.01863 ], [ 1.477096, 49.014801 ], [ 1.474046, 49.00969 ], [ 1.478136, 49.00823 ], [ 1.480401, 49.005562 ], [ 1.48017, 49.00224 ], [ 1.470984, 48.99111 ], [ 1.461702, 48.98886 ], [ 1.468862, 48.97777 ], [ 1.470889, 48.97482 ], [ 1.47826, 48.97925 ], [ 1.493875, 48.979353 ], [ 1.507903, 48.983773 ], [ 1.513493, 48.9785 ], [ 1.518388, 48.978363 ], [ 1.514626, 48.976113 ], [ 1.495147, 48.96608 ], [ 1.501028, 48.9535 ], [ 1.510996, 48.953574 ], [ 1.508641, 48.95044 ], [ 1.501524, 48.941054 ], [ 1.497886, 48.938885 ], [ 1.488865, 48.93688 ], [ 1.475517, 48.94001 ], [ 1.461308, 48.93756 ], [ 1.460016, 48.93419 ], [ 1.457442, 48.92751 ], [ 1.447959, 48.924641 ], [ 1.451638, 48.92211 ], [ 1.460568, 48.90954 ], [ 1.461434, 48.8996 ], [ 1.466411, 48.8997 ], [ 1.470909, 48.894733 ], [ 1.465817, 48.87913 ], [ 1.464201, 48.876118 ], [ 1.457628, 48.871518 ], [ 1.453917, 48.87022 ], [ 1.449832, 48.869573 ], [ 1.445455, 48.867753 ], [ 1.431006, 48.86583 ], [ 1.424008, 48.860996 ], [ 1.419238, 48.86141 ], [ 1.404876, 48.860734 ], [ 1.397999, 48.85648 ], [ 1.397229, 48.8536 ], [ 1.390231, 48.84629 ], [ 1.386001, 48.84467 ], [ 1.359781, 48.8312 ], [ 1.35684, 48.815584 ], [ 1.366436, 48.80449 ], [ 1.367976, 48.802711 ], [ 1.370325, 48.80075 ], [ 1.372743, 48.79789 ], [ 1.376939, 48.78862 ], [ 1.373908, 48.78237 ], [ 1.364022, 48.78289 ], [ 1.356386, 48.779416 ], [ 1.355772, 48.77905 ], [ 1.351444, 48.77731 ], [ 1.331947, 48.762173 ], [ 1.322255, 48.76058 ], [ 1.313623, 48.7641 ], [ 1.311366, 48.76489 ], [ 1.306325, 48.76549 ], [ 1.296969, 48.768229 ], [ 1.27841, 48.76315 ], [ 1.273845, 48.762517 ], [ 1.26812, 48.75789 ], [ 1.263264, 48.75786 ], [ 1.254905, 48.760047 ], [ 1.254072, 48.76621 ], [ 1.246022, 48.76968 ], [ 1.241327, 48.769267 ], [ 1.222613, 48.7673 ], [ 1.22426, 48.764507 ], [ 1.226492, 48.76008 ], [ 1.22295, 48.758217 ], [ 1.218547, 48.76002 ], [ 1.188224, 48.77275 ], [ 1.162975, 48.769311 ], [ 1.15826, 48.7695 ], [ 1.149837, 48.77675 ], [ 1.152118, 48.785741 ], [ 1.147556, 48.78501 ], [ 1.121403, 48.789194 ], [ 1.118939, 48.78615 ], [ 1.122737, 48.769144 ], [ 1.113736, 48.746304 ], [ 1.110197, 48.748614 ], [ 1.087854, 48.75318 ], [ 1.088183, 48.75646 ], [ 1.083981, 48.75492 ], [ 1.072605, 48.749425 ], [ 1.063027, 48.758969 ], [ 1.059135, 48.75678 ], [ 1.035263, 48.73992 ], [ 1.036703, 48.73021 ], [ 1.032593, 48.728467 ], [ 1.02197, 48.73462 ], [ 1.018476, 48.73207 ], [ 1.010955, 48.72813 ], [ 0.98564, 48.72583 ], [ 0.982608, 48.72723 ], [ 0.978288, 48.73096 ], [ 0.973679, 48.72917 ], [ 0.959927, 48.72402 ], [ 0.951191, 48.71549 ], [ 0.921203, 48.709177 ], [ 0.919568, 48.71233 ], [ 0.900159, 48.711832 ], [ 0.890363, 48.71943 ], [ 0.876703, 48.715591 ], [ 0.872837, 48.71336 ], [ 0.862794, 48.687999 ], [ 0.850363, 48.68295 ], [ 0.827667, 48.680724 ], [ 0.823793, 48.67848 ], [ 0.814819, 48.67017 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "27", "CODE_DEPT": "28", "NOM_DEPT": "EURE-ET-LOIR", "CODE_CHF": "085", "NOM_CHF": "CHARTRES", "X_CHF_LIEU": "5882", "Y_CHF_LIEU": "68173", "X_CENTROID": "5793", "Y_CENTROID": "68109", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.520124, 47.98228 ], [ 1.511177, 47.983894 ], [ 1.493715, 47.987398 ], [ 1.490755, 47.9901 ], [ 1.455654, 48.00844 ], [ 1.441396, 48.01163 ], [ 1.432608, 48.00852 ], [ 1.43418, 47.99981 ], [ 1.439511, 47.98318 ], [ 1.437241, 47.9765 ], [ 1.43232, 47.97517 ], [ 1.407203, 47.9706 ], [ 1.386268, 47.98068 ], [ 1.382935, 47.97828 ], [ 1.370016, 47.95375 ], [ 1.349708, 47.963448 ], [ 1.33824, 47.95776 ], [ 1.308631, 47.95376 ], [ 1.30592, 47.95641 ], [ 1.29958, 47.968162 ], [ 1.2654, 47.96286 ], [ 1.260603, 47.96854 ], [ 1.259061, 47.971844 ], [ 1.248007, 47.97857 ], [ 1.242814, 47.97832 ], [ 1.222674, 47.97564 ], [ 1.205215, 47.96864 ], [ 1.191496, 47.97197 ], [ 1.195916, 47.973665 ], [ 1.200477, 47.97911 ], [ 1.193553, 47.98401 ], [ 1.187729, 48.0006 ], [ 1.174145, 48.005212 ], [ 1.16956, 48.006689 ], [ 1.170038, 48.009928 ], [ 1.161862, 48.017857 ], [ 1.167113, 48.026229 ], [ 1.163611, 48.02854 ], [ 1.143932, 48.028737 ], [ 1.141152, 48.0311 ], [ 1.133293, 48.033979 ], [ 1.129047, 48.03451 ], [ 1.12014, 48.04005 ], [ 1.115766, 48.05246 ], [ 1.113228, 48.05549 ], [ 1.106882, 48.060975 ], [ 1.112755, 48.0808 ], [ 1.107549, 48.080987 ], [ 1.071855, 48.07666 ], [ 1.065093, 48.085626 ], [ 1.03392, 48.085758 ], [ 1.029354, 48.08754 ], [ 1.009409, 48.08416 ], [ 0.995686, 48.089291 ], [ 0.99452, 48.099137 ], [ 1.040156, 48.11653 ], [ 1.047091, 48.12165 ], [ 1.039779, 48.13105 ], [ 1.029601, 48.132835 ], [ 1.008922, 48.131713 ], [ 0.995236, 48.126684 ], [ 0.955081, 48.100484 ], [ 0.945411, 48.09791 ], [ 0.945591, 48.100913 ], [ 0.944029, 48.11238 ], [ 0.939072, 48.11232 ], [ 0.929216, 48.11172 ], [ 0.91329, 48.104162 ], [ 0.888905, 48.10227 ], [ 0.883856, 48.10318 ], [ 0.871549, 48.10843 ], [ 0.841217, 48.10306 ], [ 0.843301, 48.10601 ], [ 0.855009, 48.12386 ], [ 0.850372, 48.13308 ], [ 0.914338, 48.13585 ], [ 0.91665, 48.138941 ], [ 0.90961, 48.14353 ], [ 0.911465, 48.146968 ], [ 0.909365, 48.15007 ], [ 0.884466, 48.16184 ], [ 0.860645, 48.16665 ], [ 0.840574, 48.16553 ], [ 0.83656, 48.16762 ], [ 0.833111, 48.16904 ], [ 0.82786, 48.173039 ], [ 0.81124, 48.18472 ], [ 0.797528, 48.188167 ], [ 0.797655, 48.19446 ], [ 0.80674, 48.19745 ], [ 0.80662, 48.20422 ], [ 0.829446, 48.21137 ], [ 0.822102, 48.223557 ], [ 0.787321, 48.26144 ], [ 0.791517, 48.265231 ], [ 0.785981, 48.2712 ], [ 0.794042, 48.284127 ], [ 0.802328, 48.288196 ], [ 0.807066, 48.28973 ], [ 0.797486, 48.291445 ], [ 0.778584, 48.302109 ], [ 0.764576, 48.299991 ], [ 0.760447, 48.298131 ], [ 0.757286, 48.300771 ], [ 0.769615, 48.31513 ], [ 0.769234, 48.32188 ], [ 0.778368, 48.32995 ], [ 0.781343, 48.332691 ], [ 0.785039, 48.337585 ], [ 0.785432, 48.34044 ], [ 0.788027, 48.341322 ], [ 0.813732, 48.348811 ], [ 0.818405, 48.349419 ], [ 0.824902, 48.3448 ], [ 0.827867, 48.342311 ], [ 0.841975, 48.349896 ], [ 0.840028, 48.35291 ], [ 0.853889, 48.349113 ], [ 0.869034, 48.35723 ], [ 0.883707, 48.35672 ], [ 0.894525, 48.367825 ], [ 0.896387, 48.370909 ], [ 0.904504, 48.37263 ], [ 0.907347, 48.3701 ], [ 0.922214, 48.38252 ], [ 0.926529, 48.384112 ], [ 0.929503, 48.39059 ], [ 0.948381, 48.40164 ], [ 0.945291, 48.41811 ], [ 0.973173, 48.43622 ], [ 0.976416, 48.43877 ], [ 0.974317, 48.44199 ], [ 0.963768, 48.44198 ], [ 0.955273, 48.445817 ], [ 0.940331, 48.46017 ], [ 0.937356, 48.47045 ], [ 0.936714, 48.47301 ], [ 0.935709, 48.47551 ], [ 0.953055, 48.48016 ], [ 0.955507, 48.489476 ], [ 0.955397, 48.49266 ], [ 0.951279, 48.49341 ], [ 0.941554, 48.49869 ], [ 0.954658, 48.50467 ], [ 0.96615, 48.520507 ], [ 0.96774, 48.523881 ], [ 0.962768, 48.524228 ], [ 0.931842, 48.534151 ], [ 0.924168, 48.53803 ], [ 0.937141, 48.5486 ], [ 0.925711, 48.55965 ], [ 0.921331, 48.55935 ], [ 0.910268, 48.564135 ], [ 0.905802, 48.56598 ], [ 0.892944, 48.57183 ], [ 0.867284, 48.57395 ], [ 0.849312, 48.58594 ], [ 0.845909, 48.609015 ], [ 0.826926, 48.6103 ], [ 0.822398, 48.60887 ], [ 0.818206, 48.615043 ], [ 0.827771, 48.63113 ], [ 0.831762, 48.63342 ], [ 0.822818, 48.63534 ], [ 0.821978, 48.64474 ], [ 0.823565, 48.65067 ], [ 0.819748, 48.652955 ], [ 0.809946, 48.66423 ], [ 0.814819, 48.67017 ], [ 0.823793, 48.67848 ], [ 0.827667, 48.680724 ], [ 0.850363, 48.68295 ], [ 0.862794, 48.687999 ], [ 0.872837, 48.71336 ], [ 0.876703, 48.715591 ], [ 0.890363, 48.71943 ], [ 0.900159, 48.711832 ], [ 0.919568, 48.71233 ], [ 0.921203, 48.709177 ], [ 0.951191, 48.71549 ], [ 0.959927, 48.72402 ], [ 0.973679, 48.72917 ], [ 0.978288, 48.73096 ], [ 0.982608, 48.72723 ], [ 0.98564, 48.72583 ], [ 1.010955, 48.72813 ], [ 1.018476, 48.73207 ], [ 1.02197, 48.73462 ], [ 1.032593, 48.728467 ], [ 1.036703, 48.73021 ], [ 1.035263, 48.73992 ], [ 1.059135, 48.75678 ], [ 1.063027, 48.758969 ], [ 1.072605, 48.749425 ], [ 1.083981, 48.75492 ], [ 1.088183, 48.75646 ], [ 1.087854, 48.75318 ], [ 1.110197, 48.748614 ], [ 1.113736, 48.746304 ], [ 1.122737, 48.769144 ], [ 1.118939, 48.78615 ], [ 1.121403, 48.789194 ], [ 1.147556, 48.78501 ], [ 1.152118, 48.785741 ], [ 1.149837, 48.77675 ], [ 1.15826, 48.7695 ], [ 1.162975, 48.769311 ], [ 1.188224, 48.77275 ], [ 1.218547, 48.76002 ], [ 1.22295, 48.758217 ], [ 1.226492, 48.76008 ], [ 1.22426, 48.764507 ], [ 1.222613, 48.7673 ], [ 1.241327, 48.769267 ], [ 1.246022, 48.76968 ], [ 1.254072, 48.76621 ], [ 1.254905, 48.760047 ], [ 1.263264, 48.75786 ], [ 1.26812, 48.75789 ], [ 1.273845, 48.762517 ], [ 1.27841, 48.76315 ], [ 1.296969, 48.768229 ], [ 1.306325, 48.76549 ], [ 1.311366, 48.76489 ], [ 1.313623, 48.7641 ], [ 1.322255, 48.76058 ], [ 1.331947, 48.762173 ], [ 1.351444, 48.77731 ], [ 1.355772, 48.77905 ], [ 1.356386, 48.779416 ], [ 1.364022, 48.78289 ], [ 1.373908, 48.78237 ], [ 1.376939, 48.78862 ], [ 1.372743, 48.79789 ], [ 1.370325, 48.80075 ], [ 1.367976, 48.802711 ], [ 1.366436, 48.80449 ], [ 1.35684, 48.815584 ], [ 1.359781, 48.8312 ], [ 1.386001, 48.84467 ], [ 1.390231, 48.84629 ], [ 1.397229, 48.8536 ], [ 1.397999, 48.85648 ], [ 1.404876, 48.860734 ], [ 1.419238, 48.86141 ], [ 1.424008, 48.860996 ], [ 1.431006, 48.86583 ], [ 1.445455, 48.867753 ], [ 1.449832, 48.869573 ], [ 1.453917, 48.87022 ], [ 1.457628, 48.871518 ], [ 1.464201, 48.876118 ], [ 1.465817, 48.87913 ], [ 1.470909, 48.894733 ], [ 1.466411, 48.8997 ], [ 1.461434, 48.8996 ], [ 1.460568, 48.90954 ], [ 1.451638, 48.92211 ], [ 1.447959, 48.924641 ], [ 1.457442, 48.92751 ], [ 1.460016, 48.93419 ], [ 1.461308, 48.93756 ], [ 1.475517, 48.94001 ], [ 1.488865, 48.93688 ], [ 1.497886, 48.938885 ], [ 1.501524, 48.941054 ], [ 1.501797, 48.941057 ], [ 1.511543, 48.933506 ], [ 1.508132, 48.92724 ], [ 1.513925, 48.92181 ], [ 1.522955, 48.924887 ], [ 1.538249, 48.921693 ], [ 1.540523, 48.918483 ], [ 1.541664, 48.915754 ], [ 1.544341, 48.91079 ], [ 1.538521, 48.90668 ], [ 1.558716, 48.891369 ], [ 1.563742, 48.890629 ], [ 1.561309, 48.88784 ], [ 1.546231, 48.87244 ], [ 1.554899, 48.86573 ], [ 1.558839, 48.86425 ], [ 1.559904, 48.86712 ], [ 1.568638, 48.865845 ], [ 1.572072, 48.86392 ], [ 1.582962, 48.8575 ], [ 1.577939, 48.84776 ], [ 1.577269, 48.844361 ], [ 1.58207, 48.84421 ], [ 1.586621, 48.8432 ], [ 1.594894, 48.83914 ], [ 1.594496, 48.835696 ], [ 1.581793, 48.82982 ], [ 1.590483, 48.81733 ], [ 1.582798, 48.81092 ], [ 1.579434, 48.8089 ], [ 1.576732, 48.785167 ], [ 1.587594, 48.773611 ], [ 1.582928, 48.76756 ], [ 1.584907, 48.763298 ], [ 1.605226, 48.76059 ], [ 1.62496, 48.749031 ], [ 1.622705, 48.740154 ], [ 1.620258, 48.736006 ], [ 1.61504, 48.735306 ], [ 1.590011, 48.712875 ], [ 1.594878, 48.709316 ], [ 1.580727, 48.701349 ], [ 1.584038, 48.69902 ], [ 1.582189, 48.696059 ], [ 1.606656, 48.6892 ], [ 1.611295, 48.68846 ], [ 1.608626, 48.682058 ], [ 1.606204, 48.67912 ], [ 1.601707, 48.66644 ], [ 1.602707, 48.6631 ], [ 1.607566, 48.659618 ], [ 1.622748, 48.65032 ], [ 1.643197, 48.651294 ], [ 1.640838, 48.644889 ], [ 1.647055, 48.63968 ], [ 1.651575, 48.638129 ], [ 1.649567, 48.632276 ], [ 1.656909, 48.62809 ], [ 1.657429, 48.62156 ], [ 1.663558, 48.61641 ], [ 1.666354, 48.61371 ], [ 1.681592, 48.61905 ], [ 1.690247, 48.616951 ], [ 1.685197, 48.61328 ], [ 1.687762, 48.611094 ], [ 1.691234, 48.613301 ], [ 1.709778, 48.613386 ], [ 1.717432, 48.610572 ], [ 1.717849, 48.60739 ], [ 1.704474, 48.58816 ], [ 1.701989, 48.585 ], [ 1.706156, 48.58317 ], [ 1.709253, 48.57802 ], [ 1.726923, 48.572844 ], [ 1.744584, 48.574102 ], [ 1.748456, 48.57603 ], [ 1.761507, 48.57166 ], [ 1.764943, 48.56221 ], [ 1.776034, 48.55565 ], [ 1.778178, 48.55263 ], [ 1.782719, 48.553168 ], [ 1.787245, 48.553745 ], [ 1.776301, 48.52681 ], [ 1.776842, 48.51287 ], [ 1.789428, 48.49444 ], [ 1.78664, 48.49147 ], [ 1.793193, 48.4867 ], [ 1.796336, 48.484192 ], [ 1.793066, 48.48163 ], [ 1.803139, 48.46658 ], [ 1.808028, 48.46576 ], [ 1.833171, 48.46734 ], [ 1.837137, 48.46114 ], [ 1.839126, 48.458032 ], [ 1.847344, 48.446632 ], [ 1.857023, 48.446212 ], [ 1.861091, 48.44446 ], [ 1.874392, 48.44029 ], [ 1.879442, 48.44067 ], [ 1.884121, 48.44001 ], [ 1.90452, 48.440263 ], [ 1.91015, 48.44593 ], [ 1.919886, 48.447935 ], [ 1.922149, 48.4576 ], [ 1.928572, 48.455733 ], [ 1.930628, 48.45372 ], [ 1.932512, 48.445548 ], [ 1.93833, 48.441398 ], [ 1.942895, 48.440998 ], [ 1.937301, 48.43544 ], [ 1.939016, 48.42216 ], [ 1.925893, 48.41275 ], [ 1.930424, 48.40395 ], [ 1.957737, 48.40515 ], [ 1.962226, 48.40432 ], [ 1.974978, 48.40174 ], [ 1.977244, 48.39916 ], [ 1.968537, 48.38362 ], [ 1.966722, 48.38042 ], [ 1.977025, 48.379189 ], [ 1.983903, 48.366445 ], [ 1.987356, 48.363811 ], [ 1.975622, 48.35688 ], [ 1.97062, 48.33999 ], [ 1.982344, 48.328317 ], [ 1.975601, 48.32332 ], [ 1.977212, 48.31401 ], [ 1.959227, 48.30869 ], [ 1.961905, 48.302846 ], [ 1.966219, 48.296774 ], [ 1.975456, 48.29402 ], [ 1.978957, 48.28799 ], [ 1.989021, 48.286984 ], [ 1.994085, 48.28659 ], [ 1.994521, 48.2835 ], [ 1.987876, 48.268708 ], [ 1.985726, 48.266242 ], [ 1.981399, 48.26141 ], [ 1.977882, 48.259308 ], [ 1.965943, 48.254462 ], [ 1.962064, 48.24547 ], [ 1.965343, 48.23767 ], [ 1.966607, 48.23506 ], [ 1.964442, 48.23212 ], [ 1.962595, 48.2226 ], [ 1.976462, 48.199861 ], [ 1.97085, 48.194314 ], [ 1.956429, 48.20006 ], [ 1.952285, 48.19387 ], [ 1.969347, 48.18168 ], [ 1.970035, 48.178109 ], [ 1.97055, 48.17105 ], [ 1.96628, 48.172695 ], [ 1.951887, 48.17462 ], [ 1.934758, 48.169364 ], [ 1.927115, 48.17345 ], [ 1.919554, 48.169487 ], [ 1.916563, 48.16706 ], [ 1.907925, 48.15999 ], [ 1.90323, 48.16003 ], [ 1.905183, 48.14694 ], [ 1.915328, 48.146654 ], [ 1.920403, 48.14638 ], [ 1.918712, 48.14358 ], [ 1.912622, 48.12913 ], [ 1.907824, 48.1304 ], [ 1.899468, 48.127564 ], [ 1.897623, 48.124523 ], [ 1.889714, 48.105586 ], [ 1.887624, 48.102722 ], [ 1.881637, 48.098013 ], [ 1.864904, 48.095189 ], [ 1.865166, 48.091781 ], [ 1.864599, 48.085017 ], [ 1.840198, 48.08728 ], [ 1.838124, 48.08078 ], [ 1.833278, 48.081318 ], [ 1.802746, 48.08921 ], [ 1.80004, 48.08412 ], [ 1.7975, 48.077682 ], [ 1.778099, 48.07517 ], [ 1.771543, 48.07004 ], [ 1.767072, 48.07179 ], [ 1.748763, 48.065781 ], [ 1.728803, 48.068888 ], [ 1.708991, 48.06694 ], [ 1.706129, 48.069758 ], [ 1.689474, 48.07754 ], [ 1.687023, 48.0751 ], [ 1.677207, 48.06541 ], [ 1.668431, 48.0668 ], [ 1.660607, 48.07512 ], [ 1.624269, 48.06676 ], [ 1.621686, 48.063877 ], [ 1.623713, 48.060786 ], [ 1.621232, 48.048319 ], [ 1.613878, 48.044156 ], [ 1.599285, 48.04276 ], [ 1.591873, 48.03075 ], [ 1.586955, 48.03052 ], [ 1.585117, 48.033535 ], [ 1.566382, 48.03656 ], [ 1.545307, 48.044589 ], [ 1.540194, 48.03873 ], [ 1.548119, 48.034543 ], [ 1.540795, 48.031032 ], [ 1.525946, 48.033232 ], [ 1.514051, 48.02723 ], [ 1.520888, 48.011108 ], [ 1.520124, 47.98228 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "28", "CODE_DEPT": "29", "NOM_DEPT": "FINISTERE", "CODE_CHF": "232", "NOM_CHF": "QUIMPER", "X_CHF_LIEU": "1713", "Y_CHF_LIEU": "67899", "X_CENTROID": "1770", "Y_CENTROID": "68189", "CODE_REG": "53", "NOM_REGION": "BRETAGNE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.523004, 47.849147 ], [ -3.525229, 47.85229 ], [ -3.541201, 47.8594 ], [ -3.530376, 47.84778 ], [ -3.539292, 47.83566 ], [ -3.542913, 47.822171 ], [ -3.537744, 47.821466 ], [ -3.535212, 47.814627 ], [ -3.527784, 47.80961 ], [ -3.523811, 47.799324 ], [ -3.537454, 47.766 ], [ -3.547341, 47.7646 ], [ -3.568094, 47.76842 ], [ -3.610893, 47.770001 ], [ -3.616153, 47.769748 ], [ -3.645455, 47.77639 ], [ -3.644426, 47.787121 ], [ -3.656606, 47.7809 ], [ -3.681412, 47.778139 ], [ -3.715178, 47.79506 ], [ -3.718815, 47.797637 ], [ -3.720252, 47.800942 ], [ -3.715553, 47.80703 ], [ -3.69589, 47.817605 ], [ -3.671163, 47.823597 ], [ -3.66098, 47.82175 ], [ -3.655723, 47.821433 ], [ -3.651502, 47.82092 ], [ -3.641843, 47.826575 ], [ -3.639574, 47.82902 ], [ -3.652604, 47.823507 ], [ -3.673312, 47.82617 ], [ -3.687821, 47.822 ], [ -3.697043, 47.82461 ], [ -3.709606, 47.813766 ], [ -3.732195, 47.805042 ], [ -3.741431, 47.813363 ], [ -3.749359, 47.844693 ], [ -3.74772, 47.84805 ], [ -3.746702, 47.850807 ], [ -3.75186, 47.84631 ], [ -3.754706, 47.844212 ], [ -3.750637, 47.842189 ], [ -3.754607, 47.83248 ], [ -3.747153, 47.82324 ], [ -3.75115, 47.817129 ], [ -3.741507, 47.80478 ], [ -3.741553, 47.801233 ], [ -3.743624, 47.79801 ], [ -3.756813, 47.792304 ], [ -3.76199, 47.79159 ], [ -3.79873, 47.788934 ], [ -3.808299, 47.79111 ], [ -3.810808, 47.794265 ], [ -3.836096, 47.796475 ], [ -3.850532, 47.793434 ], [ -3.855502, 47.80337 ], [ -3.900025, 47.83762 ], [ -3.890655, 47.853088 ], [ -3.882633, 47.857563 ], [ -3.878635, 47.859857 ], [ -3.883522, 47.85873 ], [ -3.900439, 47.8508 ], [ -3.910202, 47.852496 ], [ -3.913314, 47.855257 ], [ -3.905424, 47.8594 ], [ -3.906365, 47.86281 ], [ -3.912988, 47.868096 ], [ -3.92746, 47.871469 ], [ -3.933874, 47.880874 ], [ -3.942082, 47.88509 ], [ -3.948109, 47.89418 ], [ -3.946011, 47.90451 ], [ -3.953778, 47.896127 ], [ -3.968476, 47.89674 ], [ -3.979158, 47.902261 ], [ -3.982045, 47.89593 ], [ -3.991227, 47.897195 ], [ -3.990482, 47.893689 ], [ -3.98185, 47.889759 ], [ -3.98718, 47.87985 ], [ -3.982897, 47.85571 ], [ -4.03931, 47.84804 ], [ -4.050229, 47.852527 ], [ -4.082314, 47.86157 ], [ -4.080753, 47.862241 ], [ -4.05015, 47.853752 ], [ -4.049939, 47.85509 ], [ -4.069249, 47.864581 ], [ -4.067177, 47.871303 ], [ -4.075756, 47.86846 ], [ -4.080655, 47.870858 ], [ -4.085249, 47.864833 ], [ -4.09497, 47.86312 ], [ -4.11656, 47.8775 ], [ -4.110569, 47.881904 ], [ -4.105616, 47.880831 ], [ -4.1239, 47.88933 ], [ -4.118795, 47.894335 ], [ -4.115963, 47.896856 ], [ -4.130385, 47.89419 ], [ -4.140993, 47.90191 ], [ -4.143471, 47.912315 ], [ -4.139172, 47.922499 ], [ -4.11321, 47.933584 ], [ -4.103379, 47.941482 ], [ -4.084456, 47.936546 ], [ -4.079519, 47.935326 ], [ -4.07303, 47.932854 ], [ -4.069298, 47.932998 ], [ -4.091455, 47.94162 ], [ -4.083641, 47.949444 ], [ -4.096968, 47.944518 ], [ -4.105495, 47.94622 ], [ -4.095694, 47.962097 ], [ -4.095947, 47.965687 ], [ -4.100632, 47.97182 ], [ -4.114006, 47.977315 ], [ -4.107396, 47.970984 ], [ -4.108512, 47.96528 ], [ -4.119092, 47.965215 ], [ -4.113202, 47.959934 ], [ -4.116554, 47.95375 ], [ -4.113119, 47.936409 ], [ -4.138771, 47.92471 ], [ -4.1479, 47.91196 ], [ -4.148459, 47.898284 ], [ -4.163716, 47.89624 ], [ -4.172691, 47.90446 ], [ -4.176131, 47.90714 ], [ -4.167468, 47.89467 ], [ -4.141969, 47.894306 ], [ -4.133075, 47.890918 ], [ -4.115139, 47.869725 ], [ -4.118209, 47.864279 ], [ -4.147015, 47.85682 ], [ -4.151312, 47.854832 ], [ -4.163942, 47.848638 ], [ -4.168415, 47.83972 ], [ -4.169619, 47.84108 ], [ -4.168705, 47.849412 ], [ -4.167245, 47.856785 ], [ -4.172832, 47.875141 ], [ -4.184573, 47.8809 ], [ -4.196976, 47.86382 ], [ -4.201041, 47.86132 ], [ -4.208307, 47.866653 ], [ -4.210266, 47.86565 ], [ -4.193879, 47.85317 ], [ -4.18289, 47.83846 ], [ -4.164725, 47.83337 ], [ -4.162179, 47.826848 ], [ -4.166696, 47.81707 ], [ -4.180976, 47.80273 ], [ -4.194373, 47.79766 ], [ -4.204198, 47.79949 ], [ -4.208335, 47.8016 ], [ -4.21574, 47.812945 ], [ -4.218491, 47.80949 ], [ -4.214046, 47.79664 ], [ -4.226813, 47.79347 ], [ -4.267709, 47.791314 ], [ -4.275584, 47.79476 ], [ -4.272259, 47.7974 ], [ -4.272265, 47.80087 ], [ -4.287089, 47.792575 ], [ -4.300649, 47.80066 ], [ -4.32593, 47.79778 ], [ -4.371396, 47.798079 ], [ -4.373346, 47.81162 ], [ -4.379963, 47.81983 ], [ -4.367795, 47.826148 ], [ -4.353426, 47.828137 ], [ -4.349788, 47.830653 ], [ -4.346631, 47.84255 ], [ -4.347687, 47.84901 ], [ -4.352675, 47.86298 ], [ -4.35976, 47.87908 ], [ -4.357399, 47.88878 ], [ -4.343337, 47.89757 ], [ -4.339481, 47.899706 ], [ -4.366511, 47.89285 ], [ -4.371919, 47.90215 ], [ -4.373812, 47.905223 ], [ -4.395798, 47.9349 ], [ -4.399005, 47.937441 ], [ -4.409277, 47.94509 ], [ -4.41095, 47.94839 ], [ -4.420745, 47.96057 ], [ -4.458889, 47.9833 ], [ -4.46246, 47.985801 ], [ -4.472549, 47.985538 ], [ -4.495157, 47.99969 ], [ -4.529353, 48.00818 ], [ -4.535157, 48.01363 ], [ -4.530862, 48.034449 ], [ -4.495754, 48.038359 ], [ -4.490329, 48.037838 ], [ -4.490639, 48.03916 ], [ -4.52306, 48.04014 ], [ -4.527535, 48.03881 ], [ -4.541024, 48.03699 ], [ -4.534135, 48.03292 ], [ -4.537149, 48.016173 ], [ -4.544322, 48.01158 ], [ -4.549338, 48.01208 ], [ -4.566122, 48.000394 ], [ -4.589377, 48.006993 ], [ -4.597875, 48.0154 ], [ -4.602944, 48.015137 ], [ -4.622126, 48.01818 ], [ -4.629933, 48.026693 ], [ -4.632962, 48.02937 ], [ -4.645876, 48.02342 ], [ -4.656248, 48.023108 ], [ -4.697144, 48.028127 ], [ -4.731814, 48.03668 ], [ -4.734393, 48.039747 ], [ -4.709302, 48.043722 ], [ -4.706123, 48.04652 ], [ -4.713882, 48.05864 ], [ -4.709625, 48.063565 ], [ -4.679107, 48.061478 ], [ -4.664776, 48.070154 ], [ -4.639194, 48.06788 ], [ -4.625493, 48.07061 ], [ -4.621508, 48.068422 ], [ -4.583146, 48.079864 ], [ -4.568407, 48.08179 ], [ -4.548642, 48.07811 ], [ -4.534789, 48.08832 ], [ -4.504283, 48.08945 ], [ -4.488948, 48.087299 ], [ -4.462293, 48.09772 ], [ -4.457335, 48.096531 ], [ -4.432745, 48.09764 ], [ -4.417778, 48.10606 ], [ -4.38304, 48.10623 ], [ -4.378763, 48.107971 ], [ -4.363856, 48.10839 ], [ -4.341438, 48.09915 ], [ -4.33243, 48.08347 ], [ -4.331669, 48.0842 ], [ -4.334666, 48.097219 ], [ -4.326266, 48.097743 ], [ -4.301536, 48.090425 ], [ -4.296938, 48.092193 ], [ -4.297865, 48.09529 ], [ -4.285671, 48.10487 ], [ -4.284294, 48.107888 ], [ -4.28413, 48.12458 ], [ -4.269592, 48.13338 ], [ -4.272005, 48.146757 ], [ -4.272882, 48.15262 ], [ -4.275193, 48.15557 ], [ -4.294315, 48.158578 ], [ -4.296321, 48.165069 ], [ -4.291844, 48.1742 ], [ -4.296165, 48.183739 ], [ -4.304245, 48.19533 ], [ -4.313021, 48.19788 ], [ -4.316363, 48.203839 ], [ -4.321141, 48.203985 ], [ -4.33223, 48.206241 ], [ -4.367453, 48.2057 ], [ -4.376517, 48.216933 ], [ -4.400469, 48.22051 ], [ -4.404469, 48.222599 ], [ -4.423338, 48.227982 ], [ -4.433753, 48.227506 ], [ -4.440917, 48.23254 ], [ -4.460974, 48.2367 ], [ -4.492286, 48.23455 ], [ -4.496898, 48.232833 ], [ -4.501256, 48.22668 ], [ -4.497055, 48.220268 ], [ -4.510951, 48.20988 ], [ -4.522667, 48.190244 ], [ -4.53774, 48.18043 ], [ -4.541544, 48.17019 ], [ -4.551447, 48.16819 ], [ -4.557326, 48.17319 ], [ -4.560034, 48.17623 ], [ -4.55241, 48.180937 ], [ -4.551033, 48.1981 ], [ -4.560166, 48.22497 ], [ -4.568712, 48.23359 ], [ -4.546001, 48.241368 ], [ -4.544349, 48.24805 ], [ -4.552991, 48.2563 ], [ -4.55692, 48.25868 ], [ -4.580977, 48.25223 ], [ -4.596226, 48.25416 ], [ -4.608267, 48.26076 ], [ -4.621499, 48.26024 ], [ -4.61729, 48.27034 ], [ -4.621169, 48.27981 ], [ -4.60673, 48.283908 ], [ -4.601595, 48.28389 ], [ -4.586949, 48.2756 ], [ -4.569431, 48.283053 ], [ -4.566636, 48.28603 ], [ -4.567603, 48.29161 ], [ -4.578756, 48.32207 ], [ -4.555619, 48.337022 ], [ -4.540339, 48.340313 ], [ -4.535447, 48.33617 ], [ -4.543467, 48.32661 ], [ -4.548711, 48.30935 ], [ -4.556766, 48.30488 ], [ -4.555019, 48.29791 ], [ -4.55307, 48.29463 ], [ -4.532534, 48.286121 ], [ -4.508668, 48.30808 ], [ -4.50324, 48.30574 ], [ -4.515641, 48.29479 ], [ -4.506717, 48.282958 ], [ -4.502599, 48.28086 ], [ -4.472585, 48.28681 ], [ -4.459929, 48.29286 ], [ -4.423409, 48.29137 ], [ -4.410335, 48.276635 ], [ -4.38973, 48.27519 ], [ -4.3845, 48.275156 ], [ -4.371685, 48.2779 ], [ -4.367193, 48.27772 ], [ -4.352547, 48.286252 ], [ -4.342825, 48.28615 ], [ -4.338008, 48.285594 ], [ -4.301017, 48.297566 ], [ -4.275011, 48.295865 ], [ -4.263811, 48.291839 ], [ -4.267463, 48.287213 ], [ -4.279934, 48.288297 ], [ -4.287026, 48.2833 ], [ -4.28861, 48.27403 ], [ -4.264995, 48.267794 ], [ -4.261141, 48.265465 ], [ -4.262778, 48.25889 ], [ -4.252897, 48.25691 ], [ -4.246167, 48.251767 ], [ -4.243368, 48.24883 ], [ -4.217728, 48.25659 ], [ -4.212911, 48.243967 ], [ -4.206533, 48.23908 ], [ -4.206601, 48.2455 ], [ -4.190794, 48.24604 ], [ -4.160309, 48.244183 ], [ -4.13671, 48.237031 ], [ -4.115459, 48.2442 ], [ -4.113189, 48.242111 ], [ -4.117634, 48.22189 ], [ -4.117527, 48.2183 ], [ -4.111773, 48.23774 ], [ -4.108927, 48.240498 ], [ -4.099737, 48.25357 ], [ -4.102081, 48.254498 ], [ -4.135437, 48.2423 ], [ -4.145541, 48.244103 ], [ -4.150633, 48.24962 ], [ -4.160315, 48.24721 ], [ -4.202006, 48.250768 ], [ -4.217295, 48.259745 ], [ -4.237241, 48.25582 ], [ -4.242158, 48.25695 ], [ -4.273701, 48.27887 ], [ -4.258338, 48.28093 ], [ -4.235661, 48.28996 ], [ -4.220276, 48.28904 ], [ -4.200455, 48.29338 ], [ -4.195915, 48.291671 ], [ -4.189688, 48.29692 ], [ -4.194124, 48.297779 ], [ -4.234266, 48.29841 ], [ -4.238863, 48.30741 ], [ -4.221139, 48.31395 ], [ -4.226507, 48.31358 ], [ -4.240599, 48.31018 ], [ -4.250469, 48.30279 ], [ -4.273167, 48.310029 ], [ -4.27482, 48.31571 ], [ -4.252411, 48.32382 ], [ -4.255241, 48.32734 ], [ -4.272601, 48.32013 ], [ -4.282835, 48.31929 ], [ -4.294179, 48.31269 ], [ -4.329565, 48.31582 ], [ -4.32945, 48.318782 ], [ -4.310669, 48.33073 ], [ -4.311939, 48.33615 ], [ -4.282496, 48.34303 ], [ -4.277837, 48.344618 ], [ -4.282143, 48.34605 ], [ -4.28421, 48.35078 ], [ -4.270663, 48.35408 ], [ -4.268652, 48.35766 ], [ -4.273335, 48.356045 ], [ -4.292985, 48.35355 ], [ -4.302169, 48.35564 ], [ -4.305939, 48.34377 ], [ -4.325979, 48.34091 ], [ -4.329235, 48.34675 ], [ -4.318481, 48.36217 ], [ -4.323759, 48.35803 ], [ -4.346923, 48.34335 ], [ -4.351771, 48.344774 ], [ -4.344051, 48.354796 ], [ -4.34561, 48.355178 ], [ -4.359558, 48.347425 ], [ -4.363548, 48.345043 ], [ -4.371215, 48.331878 ], [ -4.378613, 48.326762 ], [ -4.409877, 48.32543 ], [ -4.411502, 48.328489 ], [ -4.395863, 48.340801 ], [ -4.396635, 48.341756 ], [ -4.440759, 48.3279 ], [ -4.450675, 48.328924 ], [ -4.434543, 48.36162 ], [ -4.417357, 48.36993 ], [ -4.404822, 48.38154 ], [ -4.367629, 48.395554 ], [ -4.36111, 48.40121 ], [ -4.356197, 48.40265 ], [ -4.352303, 48.40237 ], [ -4.3484, 48.40212 ], [ -4.318693, 48.414631 ], [ -4.31387, 48.41567 ], [ -4.270246, 48.44314 ], [ -4.274149, 48.443868 ], [ -4.278671, 48.439669 ], [ -4.281849, 48.436935 ], [ -4.291534, 48.434721 ], [ -4.313879, 48.420594 ], [ -4.32849, 48.418009 ], [ -4.347639, 48.408598 ], [ -4.36716, 48.406986 ], [ -4.3711, 48.40084 ], [ -4.376029, 48.40019 ], [ -4.379747, 48.39788 ], [ -4.389557, 48.39758 ], [ -4.405552, 48.39055 ], [ -4.423117, 48.39721 ], [ -4.430329, 48.39736 ], [ -4.433647, 48.39635 ], [ -4.437427, 48.38292 ], [ -4.457271, 48.385857 ], [ -4.471386, 48.38141 ], [ -4.481949, 48.38176 ], [ -4.506431, 48.37508 ], [ -4.533866, 48.35887 ], [ -4.548618, 48.36092 ], [ -4.553854, 48.3614 ], [ -4.570949, 48.35045 ], [ -4.607307, 48.33877 ], [ -4.616817, 48.339 ], [ -4.621781, 48.33827 ], [ -4.626704, 48.33753 ], [ -4.63794, 48.344218 ], [ -4.652385, 48.3461 ], [ -4.674345, 48.35402 ], [ -4.678908, 48.35545 ], [ -4.698435, 48.35108 ], [ -4.699714, 48.33762 ], [ -4.712448, 48.331265 ], [ -4.738621, 48.33168 ], [ -4.764509, 48.328232 ], [ -4.773022, 48.33179 ], [ -4.771505, 48.33519 ], [ -4.774583, 48.338029 ], [ -4.772488, 48.34824 ], [ -4.779123, 48.3574 ], [ -4.777273, 48.36048 ], [ -4.771217, 48.36145 ], [ -4.755806, 48.359434 ], [ -4.750646, 48.36013 ], [ -4.749865, 48.364669 ], [ -4.746314, 48.36681 ], [ -4.755563, 48.363843 ], [ -4.775966, 48.36301 ], [ -4.783444, 48.361295 ], [ -4.787291, 48.36253 ], [ -4.785701, 48.366354 ], [ -4.77415, 48.364673 ], [ -4.761416, 48.375157 ], [ -4.760987, 48.37858 ], [ -4.773252, 48.3879 ], [ -4.776351, 48.40696 ], [ -4.785326, 48.407513 ], [ -4.793463, 48.41594 ], [ -4.784643, 48.435457 ], [ -4.775978, 48.44389 ], [ -4.780469, 48.44531 ], [ -4.777375, 48.45156 ], [ -4.765067, 48.465698 ], [ -4.757024, 48.466181 ], [ -4.759487, 48.45978 ], [ -4.748103, 48.47084 ], [ -4.718163, 48.47439 ], [ -4.72164, 48.47538 ], [ -4.7247, 48.47686 ], [ -4.727757, 48.475101 ], [ -4.757783, 48.47048 ], [ -4.767051, 48.47669 ], [ -4.766669, 48.48016 ], [ -4.772723, 48.48549 ], [ -4.777316, 48.498549 ], [ -4.771508, 48.51412 ], [ -4.766439, 48.51654 ], [ -4.763541, 48.519286 ], [ -4.760316, 48.52946 ], [ -4.751466, 48.533201 ], [ -4.748683, 48.54343 ], [ -4.729872, 48.5556 ], [ -4.720355, 48.55809 ], [ -4.706425, 48.55319 ], [ -4.704109, 48.550046 ], [ -4.699935, 48.56958 ], [ -4.689952, 48.57096 ], [ -4.680567, 48.56836 ], [ -4.668866, 48.574275 ], [ -4.663167, 48.568941 ], [ -4.660517, 48.57139 ], [ -4.647143, 48.57213 ], [ -4.628999, 48.57807 ], [ -4.600176, 48.57196 ], [ -4.592368, 48.559838 ], [ -4.595545, 48.55341 ], [ -4.583978, 48.55587 ], [ -4.579685, 48.55528 ], [ -4.577643, 48.560066 ], [ -4.556815, 48.558856 ], [ -4.54183, 48.55596 ], [ -4.53071, 48.54879 ], [ -4.525181, 48.55349 ], [ -4.512507, 48.54913 ], [ -4.507057, 48.55288 ], [ -4.511972, 48.55185 ], [ -4.554336, 48.56205 ], [ -4.584996, 48.562795 ], [ -4.590886, 48.57222 ], [ -4.594371, 48.574748 ], [ -4.609416, 48.576875 ], [ -4.605195, 48.58306 ], [ -4.605345, 48.60054 ], [ -4.598875, 48.60552 ], [ -4.590369, 48.602034 ], [ -4.589687, 48.59518 ], [ -4.563925, 48.59725 ], [ -4.532784, 48.59538 ], [ -4.5289, 48.59292 ], [ -4.519757, 48.58599 ], [ -4.504765, 48.58621 ], [ -4.487957, 48.57404 ], [ -4.478405, 48.57208 ], [ -4.499306, 48.587365 ], [ -4.514267, 48.588822 ], [ -4.539432, 48.599913 ], [ -4.558074, 48.60606 ], [ -4.566393, 48.614472 ], [ -4.563882, 48.62113 ], [ -4.545286, 48.62675 ], [ -4.543364, 48.63326 ], [ -4.528742, 48.63065 ], [ -4.513925, 48.63227 ], [ -4.503074, 48.621933 ], [ -4.467954, 48.62642 ], [ -4.462756, 48.62706 ], [ -4.443949, 48.638917 ], [ -4.402521, 48.637097 ], [ -4.397363, 48.63639 ], [ -4.429006, 48.647623 ], [ -4.433326, 48.65344 ], [ -4.397146, 48.656206 ], [ -4.353749, 48.674825 ], [ -4.349139, 48.676475 ], [ -4.32978, 48.675484 ], [ -4.32702, 48.66933 ], [ -4.313352, 48.67039 ], [ -4.310227, 48.667844 ], [ -4.300849, 48.665249 ], [ -4.296315, 48.66033 ], [ -4.303197, 48.65154 ], [ -4.315032, 48.645416 ], [ -4.31099, 48.643425 ], [ -4.314156, 48.640818 ], [ -4.316152, 48.63775 ], [ -4.311593, 48.635176 ], [ -4.301942, 48.633023 ], [ -4.294016, 48.63628 ], [ -4.293186, 48.64127 ], [ -4.271009, 48.64929 ], [ -4.250349, 48.64963 ], [ -4.245142, 48.649834 ], [ -4.230494, 48.65333 ], [ -4.229702, 48.650268 ], [ -4.219577, 48.648914 ], [ -4.199607, 48.65266 ], [ -4.194485, 48.651999 ], [ -4.217569, 48.6612 ], [ -4.191406, 48.68268 ], [ -4.167145, 48.688261 ], [ -4.162413, 48.689765 ], [ -4.133031, 48.69525 ], [ -4.102175, 48.694072 ], [ -4.095117, 48.691026 ], [ -4.094512, 48.68758 ], [ -4.092403, 48.69083 ], [ -4.081961, 48.69158 ], [ -4.057584, 48.673129 ], [ -4.057122, 48.66962 ], [ -4.055639, 48.67216 ], [ -4.058299, 48.6764 ], [ -4.065692, 48.684966 ], [ -4.060875, 48.68717 ], [ -4.038455, 48.68658 ], [ -4.035777, 48.687651 ], [ -4.056171, 48.68879 ], [ -4.053806, 48.70226 ], [ -4.039427, 48.705198 ], [ -4.035343, 48.711526 ], [ -4.015228, 48.713436 ], [ -4.008163, 48.72259 ], [ -4.006921, 48.725944 ], [ -4.001808, 48.72659 ], [ -4.004735, 48.72095 ], [ -3.998949, 48.71425 ], [ -3.986241, 48.727547 ], [ -3.978134, 48.722966 ], [ -3.969138, 48.727638 ], [ -3.964353, 48.721968 ], [ -3.973629, 48.70389 ], [ -3.973259, 48.69704 ], [ -3.963773, 48.688728 ], [ -3.969351, 48.679335 ], [ -3.953119, 48.67172 ], [ -3.95234, 48.657802 ], [ -3.956145, 48.65128 ], [ -3.957215, 48.64785 ], [ -3.950619, 48.638741 ], [ -3.953861, 48.61828 ], [ -3.93501, 48.59868 ], [ -3.94183, 48.61169 ], [ -3.938912, 48.61453 ], [ -3.94374, 48.61581 ], [ -3.950629, 48.625006 ], [ -3.94655, 48.64195 ], [ -3.950709, 48.651387 ], [ -3.942217, 48.655369 ], [ -3.929798, 48.660175 ], [ -3.921061, 48.6726 ], [ -3.895587, 48.670588 ], [ -3.894779, 48.66726 ], [ -3.904755, 48.65973 ], [ -3.903882, 48.656319 ], [ -3.897599, 48.646833 ], [ -3.88552, 48.64048 ], [ -3.880688, 48.639172 ], [ -3.860141, 48.63169 ], [ -3.858216, 48.62876 ], [ -3.858126, 48.61812 ], [ -3.859482, 48.60957 ], [ -3.866444, 48.605459 ], [ -3.870649, 48.603997 ], [ -3.857434, 48.607452 ], [ -3.849571, 48.60377 ], [ -3.858036, 48.612663 ], [ -3.851675, 48.622095 ], [ -3.832444, 48.62781 ], [ -3.816795, 48.62854 ], [ -3.811288, 48.62892 ], [ -3.847132, 48.63096 ], [ -3.861363, 48.66784 ], [ -3.8552, 48.671451 ], [ -3.850963, 48.66172 ], [ -3.846264, 48.660184 ], [ -3.85274, 48.6878 ], [ -3.837993, 48.70626 ], [ -3.834167, 48.7086 ], [ -3.824788, 48.70657 ], [ -3.814454, 48.71455 ], [ -3.799403, 48.71127 ], [ -3.785042, 48.701348 ], [ -3.779723, 48.701769 ], [ -3.763109, 48.709006 ], [ -3.747877, 48.70777 ], [ -3.722155, 48.705459 ], [ -3.701328, 48.689861 ], [ -3.676629, 48.6881 ], [ -3.653483, 48.694749 ], [ -3.645368, 48.69452 ], [ -3.643467, 48.693404 ], [ -3.652481, 48.683792 ], [ -3.64189, 48.67288 ], [ -3.649361, 48.668197 ], [ -3.653735, 48.66626 ], [ -3.657899, 48.661735 ], [ -3.659144, 48.65921 ], [ -3.660776, 48.6563 ], [ -3.663536, 48.6538 ], [ -3.654996, 48.624011 ], [ -3.654181, 48.617296 ], [ -3.64898, 48.61163 ], [ -3.63988, 48.609114 ], [ -3.640603, 48.59606 ], [ -3.636745, 48.593329 ], [ -3.629298, 48.58836 ], [ -3.613731, 48.589224 ], [ -3.599568, 48.5846 ], [ -3.594583, 48.585749 ], [ -3.585718, 48.573269 ], [ -3.599429, 48.55861 ], [ -3.581724, 48.55397 ], [ -3.572694, 48.556768 ], [ -3.553824, 48.54128 ], [ -3.53928, 48.53825 ], [ -3.555746, 48.52961 ], [ -3.592834, 48.50004 ], [ -3.597677, 48.498591 ], [ -3.604168, 48.49405 ], [ -3.601798, 48.484415 ], [ -3.604904, 48.47825 ], [ -3.59807, 48.473897 ], [ -3.599593, 48.4708 ], [ -3.594945, 48.47043 ], [ -3.592163, 48.4645 ], [ -3.578692, 48.46273 ], [ -3.578885, 48.45952 ], [ -3.56894, 48.45294 ], [ -3.552517, 48.450752 ], [ -3.550496, 48.44783 ], [ -3.554192, 48.445378 ], [ -3.585041, 48.433 ], [ -3.598768, 48.422644 ], [ -3.600208, 48.4023 ], [ -3.603722, 48.40048 ], [ -3.603261, 48.39714 ], [ -3.607682, 48.388327 ], [ -3.603288, 48.38637 ], [ -3.554415, 48.37717 ], [ -3.553282, 48.37016 ], [ -3.562814, 48.34702 ], [ -3.556146, 48.34243 ], [ -3.549958, 48.31572 ], [ -3.541027, 48.31334 ], [ -3.529744, 48.320253 ], [ -3.52279, 48.32006 ], [ -3.518631, 48.31807 ], [ -3.528434, 48.31657 ], [ -3.539615, 48.30157 ], [ -3.547487, 48.29871 ], [ -3.552316, 48.299682 ], [ -3.553028, 48.293016 ], [ -3.530105, 48.286558 ], [ -3.522957, 48.28172 ], [ -3.517898, 48.28226 ], [ -3.52585, 48.2708 ], [ -3.526512, 48.2611 ], [ -3.522177, 48.25525 ], [ -3.540715, 48.253206 ], [ -3.539952, 48.24979 ], [ -3.544423, 48.24357 ], [ -3.553725, 48.24087 ], [ -3.556488, 48.230716 ], [ -3.556032, 48.22727 ], [ -3.54126, 48.2092 ], [ -3.522589, 48.203939 ], [ -3.521292, 48.197176 ], [ -3.519676, 48.19067 ], [ -3.543101, 48.193575 ], [ -3.566669, 48.190033 ], [ -3.564839, 48.185747 ], [ -3.56989, 48.18532 ], [ -3.591673, 48.17683 ], [ -3.620747, 48.17098 ], [ -3.625331, 48.169746 ], [ -3.653281, 48.15622 ], [ -3.671562, 48.151477 ], [ -3.696017, 48.15202 ], [ -3.696177, 48.148607 ], [ -3.712945, 48.14178 ], [ -3.71181, 48.13498 ], [ -3.723829, 48.12439 ], [ -3.720172, 48.118973 ], [ -3.732486, 48.112949 ], [ -3.729698, 48.10283 ], [ -3.732973, 48.096268 ], [ -3.727878, 48.095747 ], [ -3.708042, 48.09815 ], [ -3.695004, 48.09336 ], [ -3.698773, 48.09088 ], [ -3.70381, 48.08468 ], [ -3.70371, 48.06808 ], [ -3.701509, 48.064867 ], [ -3.674599, 48.05492 ], [ -3.660917, 48.01757 ], [ -3.649005, 48.006023 ], [ -3.641041, 47.985793 ], [ -3.621982, 47.982815 ], [ -3.613014, 47.9851 ], [ -3.600203, 47.990129 ], [ -3.590049, 47.98929 ], [ -3.581993, 47.98596 ], [ -3.574363, 47.99059 ], [ -3.554116, 47.99188 ], [ -3.545771, 47.98782 ], [ -3.530788, 47.98621 ], [ -3.517531, 47.97599 ], [ -3.502192, 47.97538 ], [ -3.497449, 47.97673 ], [ -3.485293, 47.96686 ], [ -3.479924, 47.950798 ], [ -3.470864, 47.94826 ], [ -3.468019, 47.94555 ], [ -3.463967, 47.947588 ], [ -3.461307, 47.95761 ], [ -3.441627, 47.960158 ], [ -3.412978, 47.97334 ], [ -3.408436, 47.967258 ], [ -3.40339, 47.967001 ], [ -3.401313, 47.960722 ], [ -3.392807, 47.95407 ], [ -3.393172, 47.95086 ], [ -3.400984, 47.941996 ], [ -3.388025, 47.92704 ], [ -3.391871, 47.9205 ], [ -3.406288, 47.917309 ], [ -3.411356, 47.90481 ], [ -3.402412, 47.88536 ], [ -3.403891, 47.868383 ], [ -3.398383, 47.863104 ], [ -3.40869, 47.863227 ], [ -3.42119, 47.86861 ], [ -3.449854, 47.861328 ], [ -3.44892, 47.848457 ], [ -3.457662, 47.836633 ], [ -3.462754, 47.83693 ], [ -3.472813, 47.83582 ], [ -3.485876, 47.82529 ], [ -3.490984, 47.825064 ], [ -3.508975, 47.83158 ], [ -3.518947, 47.83906 ], [ -3.519274, 47.8487 ], [ -3.523004, 47.849147 ] ] ], [ [ [ -5.102603, 48.436117 ], [ -5.105166, 48.43669 ], [ -5.110482, 48.43626 ], [ -5.115104, 48.437675 ], [ -5.108277, 48.442828 ], [ -5.096772, 48.44719 ], [ -5.093861, 48.451747 ], [ -5.102486, 48.455389 ], [ -5.130485, 48.449199 ], [ -5.138352, 48.44952 ], [ -5.139017, 48.45091 ], [ -5.137878, 48.4525 ], [ -5.131837, 48.458421 ], [ -5.129797, 48.459556 ], [ -5.110304, 48.465651 ], [ -5.104911, 48.47157 ], [ -5.092297, 48.47452 ], [ -5.081802, 48.473407 ], [ -5.076844, 48.47477 ], [ -5.073014, 48.477272 ], [ -5.074816, 48.48181 ], [ -5.072523, 48.482731 ], [ -5.069949, 48.48226 ], [ -5.065053, 48.481124 ], [ -5.060443, 48.47681 ], [ -5.052693, 48.47665 ], [ -5.055543, 48.46671 ], [ -5.048431, 48.464324 ], [ -5.037898, 48.464009 ], [ -5.035702, 48.46307 ], [ -5.035399, 48.461366 ], [ -5.038806, 48.458765 ], [ -5.04919, 48.458032 ], [ -5.059784, 48.450194 ], [ -5.080455, 48.449453 ], [ -5.089432, 48.44086 ], [ -5.099586, 48.439019 ], [ -5.102603, 48.436117 ] ] ], [ [ [ -3.99181, 48.7364 ], [ -3.995883, 48.740508 ], [ -4.006553, 48.74086 ], [ -4.01323, 48.743406 ], [ -4.021748, 48.73945 ], [ -4.034268, 48.742282 ], [ -4.036562, 48.743194 ], [ -4.03781, 48.744755 ], [ -4.037064, 48.746406 ], [ -4.021052, 48.75262 ], [ -4.010361, 48.75262 ], [ -4.007809, 48.75213 ], [ -4.000447, 48.747039 ], [ -3.990899, 48.744367 ], [ -3.988799, 48.739298 ], [ -3.99181, 48.7364 ] ] ], [ [ [ -4.959196, 48.389413 ], [ -4.963527, 48.39111 ], [ -4.966327, 48.39765 ], [ -4.961496, 48.40143 ], [ -4.953596, 48.394917 ], [ -4.95761, 48.39077 ], [ -4.959196, 48.389413 ] ] ], [ [ [ -4.845997, 48.031552 ], [ -4.854769, 48.035053 ], [ -4.858933, 48.0392 ], [ -4.866657, 48.03972 ], [ -4.868208, 48.040899 ], [ -4.866914, 48.04217 ], [ -4.852015, 48.03938 ], [ -4.849512, 48.034789 ], [ -4.845987, 48.03257 ], [ -4.845997, 48.031552 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "29", "CODE_DEPT": "2A", "NOM_DEPT": "CORSE-DU-SUD", "CODE_CHF": "004", "NOM_CHF": "AJACCIO", "X_CHF_LIEU": "11764", "Y_CHF_LIEU": "61089", "X_CENTROID": "11978", "Y_CENTROID": "61036", "CODE_REG": "94", "NOM_REGION": "CORSE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.402269, 41.858707 ], [ 9.40134, 41.855258 ], [ 9.405615, 41.820517 ], [ 9.395405, 41.79726 ], [ 9.399036, 41.787113 ], [ 9.396644, 41.773723 ], [ 9.40669, 41.767795 ], [ 9.404187, 41.720457 ], [ 9.401378, 41.717736 ], [ 9.404344, 41.71503 ], [ 9.399548, 41.694536 ], [ 9.379808, 41.68641 ], [ 9.37325, 41.677329 ], [ 9.383941, 41.667048 ], [ 9.385149, 41.65342 ], [ 9.38287, 41.65001 ], [ 9.368152, 41.63717 ], [ 9.360269, 41.640373 ], [ 9.351247, 41.63957 ], [ 9.346912, 41.633532 ], [ 9.353355, 41.62097 ], [ 9.350589, 41.618579 ], [ 9.323208, 41.61773 ], [ 9.313374, 41.625129 ], [ 9.313614, 41.62861 ], [ 9.305271, 41.625823 ], [ 9.305314, 41.615532 ], [ 9.286701, 41.60577 ], [ 9.283775, 41.595518 ], [ 9.286961, 41.589021 ], [ 9.294481, 41.584814 ], [ 9.298835, 41.586039 ], [ 9.320078, 41.60405 ], [ 9.333619, 41.602162 ], [ 9.34324, 41.59472 ], [ 9.356662, 41.596003 ], [ 9.361264, 41.596049 ], [ 9.367819, 41.593282 ], [ 9.351345, 41.577 ], [ 9.347986, 41.563808 ], [ 9.336623, 41.559062 ], [ 9.33212, 41.559686 ], [ 9.298422, 41.541707 ], [ 9.287077, 41.531065 ], [ 9.27429, 41.52805 ], [ 9.283002, 41.51662 ], [ 9.271516, 41.501857 ], [ 9.276703, 41.496304 ], [ 9.284676, 41.49975 ], [ 9.28651, 41.496707 ], [ 9.287259, 41.48379 ], [ 9.282937, 41.477484 ], [ 9.272049, 41.471138 ], [ 9.271555, 41.464763 ], [ 9.262851, 41.46251 ], [ 9.243115, 41.447701 ], [ 9.225862, 41.44253 ], [ 9.2246, 41.43279 ], [ 9.227671, 41.42637 ], [ 9.224478, 41.41624 ], [ 9.216085, 41.41412 ], [ 9.216774, 41.410876 ], [ 9.218589, 41.407427 ], [ 9.222895, 41.406279 ], [ 9.258989, 41.427417 ], [ 9.263385, 41.426434 ], [ 9.263234, 41.422966 ], [ 9.258217, 41.413296 ], [ 9.25074, 41.409321 ], [ 9.244524, 41.40016 ], [ 9.240734, 41.398129 ], [ 9.223104, 41.377944 ], [ 9.219627, 41.368038 ], [ 9.182812, 41.365997 ], [ 9.16978, 41.383335 ], [ 9.152261, 41.386186 ], [ 9.15566, 41.388643 ], [ 9.139983, 41.39014 ], [ 9.125563, 41.397441 ], [ 9.099378, 41.39283 ], [ 9.091646, 41.400096 ], [ 9.092722, 41.403474 ], [ 9.097376, 41.41327 ], [ 9.106897, 41.42035 ], [ 9.106884, 41.427196 ], [ 9.118701, 41.437708 ], [ 9.11301, 41.441589 ], [ 9.099503, 41.443376 ], [ 9.095534, 41.449469 ], [ 9.080824, 41.442 ], [ 9.072386, 41.44421 ], [ 9.067328, 41.449747 ], [ 9.068437, 41.463037 ], [ 9.077882, 41.474476 ], [ 9.079939, 41.47749 ], [ 9.071007, 41.475982 ], [ 9.055779, 41.462995 ], [ 9.047583, 41.45999 ], [ 9.043022, 41.45999 ], [ 9.03507, 41.46783 ], [ 9.022137, 41.46627 ], [ 9.015584, 41.474946 ], [ 9.002337, 41.47644 ], [ 8.998816, 41.47868 ], [ 8.997088, 41.483615 ], [ 8.994792, 41.485538 ], [ 8.983071, 41.475357 ], [ 8.974871, 41.48333 ], [ 8.966356, 41.48546 ], [ 8.96214, 41.49105 ], [ 8.945062, 41.489847 ], [ 8.940488, 41.490089 ], [ 8.936675, 41.492079 ], [ 8.924253, 41.491323 ], [ 8.91346, 41.506177 ], [ 8.886087, 41.50795 ], [ 8.885119, 41.517982 ], [ 8.878203, 41.52254 ], [ 8.856037, 41.51877 ], [ 8.846536, 41.518159 ], [ 8.842171, 41.52322 ], [ 8.85237, 41.535131 ], [ 8.851584, 41.54222 ], [ 8.840386, 41.545694 ], [ 8.821499, 41.54632 ], [ 8.812014, 41.553851 ], [ 8.808372, 41.555944 ], [ 8.794641, 41.556496 ], [ 8.787374, 41.560273 ], [ 8.789404, 41.566194 ], [ 8.799291, 41.57313 ], [ 8.790251, 41.585029 ], [ 8.781873, 41.58766 ], [ 8.779149, 41.590467 ], [ 8.789267, 41.605495 ], [ 8.792686, 41.629142 ], [ 8.800028, 41.632906 ], [ 8.804489, 41.63849 ], [ 8.817864, 41.63107 ], [ 8.852231, 41.647112 ], [ 8.865757, 41.648033 ], [ 8.869503, 41.646095 ], [ 8.8761, 41.65074 ], [ 8.883196, 41.670527 ], [ 8.912007, 41.67961 ], [ 8.915783, 41.681568 ], [ 8.912302, 41.690968 ], [ 8.889315, 41.689628 ], [ 8.878116, 41.695172 ], [ 8.84219, 41.69762 ], [ 8.828976, 41.70716 ], [ 8.825423, 41.709389 ], [ 8.812779, 41.713537 ], [ 8.786075, 41.703374 ], [ 8.773258, 41.716704 ], [ 8.783939, 41.73189 ], [ 8.784015, 41.73536 ], [ 8.777758, 41.740349 ], [ 8.768761, 41.74068 ], [ 8.714522, 41.722558 ], [ 8.709893, 41.722288 ], [ 8.705529, 41.72352 ], [ 8.706298, 41.733721 ], [ 8.702504, 41.739627 ], [ 8.670291, 41.74272 ], [ 8.661252, 41.740998 ], [ 8.65924, 41.744213 ], [ 8.66307, 41.7503 ], [ 8.671986, 41.752361 ], [ 8.684422, 41.74787 ], [ 8.708499, 41.757862 ], [ 8.712106, 41.76009 ], [ 8.730464, 41.779696 ], [ 8.723744, 41.78868 ], [ 8.713017, 41.795215 ], [ 8.712638, 41.801242 ], [ 8.734522, 41.798054 ], [ 8.753967, 41.811701 ], [ 8.757335, 41.809328 ], [ 8.771294, 41.81124 ], [ 8.779907, 41.833041 ], [ 8.756213, 41.84544 ], [ 8.787239, 41.84994 ], [ 8.789592, 41.853054 ], [ 8.790674, 41.85609 ], [ 8.788534, 41.86828 ], [ 8.782124, 41.87295 ], [ 8.780459, 41.88227 ], [ 8.800192, 41.88964 ], [ 8.802448, 41.896015 ], [ 8.799274, 41.902225 ], [ 8.797666, 41.90537 ], [ 8.778898, 41.9252 ], [ 8.769819, 41.926602 ], [ 8.761164, 41.924309 ], [ 8.75235, 41.932492 ], [ 8.747681, 41.93298 ], [ 8.74089, 41.928657 ], [ 8.739453, 41.91825 ], [ 8.719683, 41.909146 ], [ 8.673406, 41.90528 ], [ 8.641075, 41.909468 ], [ 8.636808, 41.907976 ], [ 8.609261, 41.895592 ], [ 8.612876, 41.901911 ], [ 8.611022, 41.912061 ], [ 8.620701, 41.927685 ], [ 8.621954, 41.937778 ], [ 8.618496, 41.940088 ], [ 8.609461, 41.93984 ], [ 8.593911, 41.963567 ], [ 8.618387, 41.97105 ], [ 8.622871, 41.970487 ], [ 8.644462, 41.967948 ], [ 8.662883, 41.97676 ], [ 8.668423, 41.98214 ], [ 8.669048, 41.984745 ], [ 8.669042, 41.99019 ], [ 8.667411, 41.993066 ], [ 8.659055, 41.992559 ], [ 8.654614, 42.001246 ], [ 8.656559, 42.004015 ], [ 8.658264, 42.010562 ], [ 8.688571, 42.02669 ], [ 8.706992, 42.027769 ], [ 8.719993, 42.032247 ], [ 8.725381, 42.04154 ], [ 8.742971, 42.04308 ], [ 8.746189, 42.04954 ], [ 8.743853, 42.0563 ], [ 8.743931, 42.059452 ], [ 8.740537, 42.06172 ], [ 8.733688, 42.06536 ], [ 8.720526, 42.064162 ], [ 8.717195, 42.077387 ], [ 8.71327, 42.083409 ], [ 8.705993, 42.0868 ], [ 8.70926, 42.096518 ], [ 8.700924, 42.107841 ], [ 8.701201, 42.11119 ], [ 8.689081, 42.113847 ], [ 8.679867, 42.10677 ], [ 8.662682, 42.10383 ], [ 8.650968, 42.116987 ], [ 8.64438, 42.1212 ], [ 8.635584, 42.12008 ], [ 8.633143, 42.12302 ], [ 8.623971, 42.123776 ], [ 8.611144, 42.133393 ], [ 8.584059, 42.130608 ], [ 8.5923, 42.142668 ], [ 8.585238, 42.15088 ], [ 8.576325, 42.152627 ], [ 8.56408, 42.147722 ], [ 8.560186, 42.14584 ], [ 8.562846, 42.152065 ], [ 8.579598, 42.15763 ], [ 8.591733, 42.167706 ], [ 8.584167, 42.171033 ], [ 8.566028, 42.17029 ], [ 8.564966, 42.176331 ], [ 8.582969, 42.178933 ], [ 8.586424, 42.18125 ], [ 8.584858, 42.182744 ], [ 8.582377, 42.183271 ], [ 8.578621, 42.19294 ], [ 8.5804, 42.202969 ], [ 8.570208, 42.20881 ], [ 8.573701, 42.215096 ], [ 8.570492, 42.22136 ], [ 8.572773, 42.227767 ], [ 8.57003, 42.230533 ], [ 8.560865, 42.231167 ], [ 8.552525, 42.228099 ], [ 8.545466, 42.232531 ], [ 8.54506, 42.238625 ], [ 8.563363, 42.23781 ], [ 8.606866, 42.250242 ], [ 8.608807, 42.25342 ], [ 8.635878, 42.252939 ], [ 8.643457, 42.256951 ], [ 8.6843, 42.26288 ], [ 8.688917, 42.263453 ], [ 8.691251, 42.26612 ], [ 8.690553, 42.27492 ], [ 8.691003, 42.27755 ], [ 8.687189, 42.282008 ], [ 8.682676, 42.28202 ], [ 8.675395, 42.284766 ], [ 8.672397, 42.29427 ], [ 8.660499, 42.299 ], [ 8.660471, 42.302349 ], [ 8.639531, 42.30108 ], [ 8.636827, 42.303616 ], [ 8.62767, 42.31076 ], [ 8.60944, 42.30801 ], [ 8.602213, 42.31152 ], [ 8.600082, 42.3183 ], [ 8.623362, 42.32973 ], [ 8.626292, 42.33645 ], [ 8.615678, 42.347464 ], [ 8.602747, 42.351453 ], [ 8.598413, 42.35288 ], [ 8.589438, 42.3515 ], [ 8.565776, 42.33505 ], [ 8.556929, 42.335118 ], [ 8.552554, 42.36489 ], [ 8.548586, 42.366729 ], [ 8.544337, 42.367923 ], [ 8.546088, 42.37446 ], [ 8.550006, 42.375926 ], [ 8.556867, 42.37153 ], [ 8.570213, 42.371319 ], [ 8.57725, 42.375528 ], [ 8.573411, 42.38141 ], [ 8.577985, 42.380562 ], [ 8.601111, 42.370128 ], [ 8.614264, 42.37385 ], [ 8.637097, 42.37283 ], [ 8.658591, 42.360101 ], [ 8.681455, 42.358196 ], [ 8.68348, 42.348031 ], [ 8.687893, 42.34882 ], [ 8.71445, 42.348452 ], [ 8.724757, 42.342175 ], [ 8.728569, 42.340176 ], [ 8.756264, 42.338445 ], [ 8.771169, 42.325407 ], [ 8.775858, 42.32517 ], [ 8.789827, 42.32569 ], [ 8.820246, 42.31711 ], [ 8.857166, 42.330983 ], [ 8.861452, 42.32964 ], [ 8.860741, 42.299152 ], [ 8.877006, 42.292963 ], [ 8.88513, 42.284907 ], [ 8.88282, 42.27508 ], [ 8.881945, 42.271691 ], [ 8.901546, 42.256445 ], [ 8.904768, 42.25387 ], [ 8.909395, 42.254521 ], [ 8.923217, 42.256607 ], [ 8.926624, 42.254191 ], [ 8.928923, 42.25125 ], [ 8.935556, 42.246806 ], [ 8.940115, 42.23721 ], [ 8.947593, 42.2337 ], [ 8.974011, 42.232444 ], [ 8.977408, 42.226755 ], [ 8.979794, 42.223989 ], [ 8.984029, 42.22461 ], [ 8.994525, 42.214496 ], [ 9.005959, 42.211902 ], [ 9.006493, 42.20872 ], [ 9.011125, 42.20837 ], [ 9.023252, 42.203576 ], [ 9.045743, 42.20773 ], [ 9.047977, 42.195904 ], [ 9.048986, 42.192998 ], [ 9.04895, 42.178679 ], [ 9.048123, 42.17571 ], [ 9.052274, 42.16967 ], [ 9.065062, 42.165879 ], [ 9.076168, 42.13615 ], [ 9.072032, 42.130006 ], [ 9.083633, 42.124771 ], [ 9.092096, 42.11673 ], [ 9.105495, 42.115671 ], [ 9.123646, 42.105403 ], [ 9.127745, 42.095747 ], [ 9.133688, 42.090554 ], [ 9.13055, 42.061789 ], [ 9.133566, 42.059397 ], [ 9.131797, 42.05287 ], [ 9.151575, 42.03897 ], [ 9.157677, 42.029724 ], [ 9.159622, 42.026592 ], [ 9.185928, 42.03065 ], [ 9.216496, 42.027759 ], [ 9.221085, 42.027606 ], [ 9.220737, 42.024319 ], [ 9.215612, 41.99495 ], [ 9.220243, 41.98962 ], [ 9.218995, 41.986398 ], [ 9.221897, 41.97352 ], [ 9.226045, 41.97221 ], [ 9.222672, 41.94947 ], [ 9.216813, 41.94063 ], [ 9.226439, 41.933843 ], [ 9.230643, 41.93263 ], [ 9.216597, 41.919734 ], [ 9.21328, 41.91746 ], [ 9.216501, 41.914946 ], [ 9.234749, 41.914995 ], [ 9.249417, 41.906675 ], [ 9.250098, 41.896496 ], [ 9.237199, 41.881995 ], [ 9.236107, 41.875436 ], [ 9.229796, 41.858634 ], [ 9.227497, 41.855589 ], [ 9.230964, 41.853267 ], [ 9.236082, 41.847765 ], [ 9.245264, 41.84877 ], [ 9.270567, 41.840564 ], [ 9.283692, 41.844089 ], [ 9.302048, 41.843426 ], [ 9.308599, 41.838879 ], [ 9.309095, 41.83214 ], [ 9.327056, 41.835808 ], [ 9.372932, 41.864775 ], [ 9.386719, 41.866392 ], [ 9.397891, 41.860019 ], [ 9.402269, 41.858707 ] ] ], [ [ [ 9.262569, 41.36307 ], [ 9.253598, 41.3697 ], [ 9.259125, 41.37258 ], [ 9.265988, 41.372241 ], [ 9.268173, 41.369273 ], [ 9.272667, 41.369148 ], [ 9.272825, 41.36601 ], [ 9.271029, 41.36496 ], [ 9.266923, 41.365476 ], [ 9.26659, 41.363794 ], [ 9.262569, 41.36307 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "30", "CODE_DEPT": "2B", "NOM_DEPT": "HAUTE-CORSE", "CODE_CHF": "033", "NOM_CHF": "BASTIA", "X_CHF_LIEU": "12285", "Y_CHF_LIEU": "61994", "X_CENTROID": "12112", "Y_CENTROID": "61638", "CODE_REG": "94", "NOM_REGION": "CORSE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.402269, 41.858707 ], [ 9.397891, 41.860019 ], [ 9.386719, 41.866392 ], [ 9.372932, 41.864775 ], [ 9.327056, 41.835808 ], [ 9.309095, 41.83214 ], [ 9.308599, 41.838879 ], [ 9.302048, 41.843426 ], [ 9.283692, 41.844089 ], [ 9.270567, 41.840564 ], [ 9.245264, 41.84877 ], [ 9.236082, 41.847765 ], [ 9.230964, 41.853267 ], [ 9.227497, 41.855589 ], [ 9.229796, 41.858634 ], [ 9.236107, 41.875436 ], [ 9.237199, 41.881995 ], [ 9.250098, 41.896496 ], [ 9.249417, 41.906675 ], [ 9.234749, 41.914995 ], [ 9.216501, 41.914946 ], [ 9.21328, 41.91746 ], [ 9.216597, 41.919734 ], [ 9.230643, 41.93263 ], [ 9.226439, 41.933843 ], [ 9.216813, 41.94063 ], [ 9.222672, 41.94947 ], [ 9.226045, 41.97221 ], [ 9.221897, 41.97352 ], [ 9.218995, 41.986398 ], [ 9.220243, 41.98962 ], [ 9.215612, 41.99495 ], [ 9.220737, 42.024319 ], [ 9.221085, 42.027606 ], [ 9.216496, 42.027759 ], [ 9.185928, 42.03065 ], [ 9.159622, 42.026592 ], [ 9.157677, 42.029724 ], [ 9.151575, 42.03897 ], [ 9.131797, 42.05287 ], [ 9.133566, 42.059397 ], [ 9.13055, 42.061789 ], [ 9.133688, 42.090554 ], [ 9.127745, 42.095747 ], [ 9.123646, 42.105403 ], [ 9.105495, 42.115671 ], [ 9.092096, 42.11673 ], [ 9.083633, 42.124771 ], [ 9.072032, 42.130006 ], [ 9.076168, 42.13615 ], [ 9.065062, 42.165879 ], [ 9.052274, 42.16967 ], [ 9.048123, 42.17571 ], [ 9.04895, 42.178679 ], [ 9.048986, 42.192998 ], [ 9.047977, 42.195904 ], [ 9.045743, 42.20773 ], [ 9.023252, 42.203576 ], [ 9.011125, 42.20837 ], [ 9.006493, 42.20872 ], [ 9.005959, 42.211902 ], [ 8.994525, 42.214496 ], [ 8.984029, 42.22461 ], [ 8.979794, 42.223989 ], [ 8.977408, 42.226755 ], [ 8.974011, 42.232444 ], [ 8.947593, 42.2337 ], [ 8.940115, 42.23721 ], [ 8.935556, 42.246806 ], [ 8.928923, 42.25125 ], [ 8.926624, 42.254191 ], [ 8.923217, 42.256607 ], [ 8.909395, 42.254521 ], [ 8.904768, 42.25387 ], [ 8.901546, 42.256445 ], [ 8.881945, 42.271691 ], [ 8.88282, 42.27508 ], [ 8.88513, 42.284907 ], [ 8.877006, 42.292963 ], [ 8.860741, 42.299152 ], [ 8.861452, 42.32964 ], [ 8.857166, 42.330983 ], [ 8.820246, 42.31711 ], [ 8.789827, 42.32569 ], [ 8.775858, 42.32517 ], [ 8.771169, 42.325407 ], [ 8.756264, 42.338445 ], [ 8.728569, 42.340176 ], [ 8.724757, 42.342175 ], [ 8.71445, 42.348452 ], [ 8.687893, 42.34882 ], [ 8.68348, 42.348031 ], [ 8.681455, 42.358196 ], [ 8.658591, 42.360101 ], [ 8.637097, 42.37283 ], [ 8.614264, 42.37385 ], [ 8.601111, 42.370128 ], [ 8.577985, 42.380562 ], [ 8.573411, 42.38141 ], [ 8.595273, 42.382898 ], [ 8.607186, 42.38799 ], [ 8.603886, 42.39782 ], [ 8.607768, 42.40406 ], [ 8.607324, 42.414126 ], [ 8.623291, 42.42044 ], [ 8.632545, 42.41979 ], [ 8.6368, 42.418389 ], [ 8.648883, 42.413928 ], [ 8.656552, 42.417639 ], [ 8.661808, 42.430588 ], [ 8.65121, 42.44137 ], [ 8.667063, 42.44713 ], [ 8.667134, 42.45726 ], [ 8.675359, 42.46563 ], [ 8.679452, 42.46728 ], [ 8.672783, 42.475695 ], [ 8.650443, 42.47707 ], [ 8.664905, 42.49574 ], [ 8.666982, 42.51336 ], [ 8.674092, 42.517326 ], [ 8.68841, 42.517977 ], [ 8.699096, 42.524968 ], [ 8.717823, 42.52545 ], [ 8.717444, 42.52892 ], [ 8.713371, 42.535353 ], [ 8.720072, 42.55583 ], [ 8.711851, 42.572578 ], [ 8.712641, 42.575916 ], [ 8.71577, 42.578597 ], [ 8.723724, 42.5801 ], [ 8.727004, 42.566204 ], [ 8.734129, 42.56376 ], [ 8.737694, 42.566162 ], [ 8.759772, 42.569064 ], [ 8.757775, 42.562312 ], [ 8.768273, 42.556147 ], [ 8.782195, 42.55686 ], [ 8.794045, 42.562123 ], [ 8.796519, 42.56505 ], [ 8.803186, 42.569919 ], [ 8.801673, 42.58338 ], [ 8.809426, 42.592016 ], [ 8.805765, 42.601915 ], [ 8.823567, 42.605443 ], [ 8.831854, 42.602169 ], [ 8.843012, 42.608175 ], [ 8.847486, 42.609219 ], [ 8.850832, 42.611298 ], [ 8.863094, 42.608958 ], [ 8.867395, 42.608406 ], [ 8.875234, 42.6151 ], [ 8.882571, 42.6273 ], [ 8.910273, 42.62948 ], [ 8.919373, 42.637567 ], [ 8.924094, 42.637999 ], [ 8.935425, 42.64074 ], [ 8.944229, 42.63428 ], [ 8.948379, 42.63355 ], [ 8.97558, 42.638853 ], [ 8.980307, 42.639337 ], [ 8.988368, 42.64113 ], [ 9.000254, 42.641752 ], [ 9.00311, 42.64398 ], [ 9.009864, 42.64044 ], [ 9.017582, 42.64256 ], [ 9.029908, 42.652723 ], [ 9.047827, 42.656001 ], [ 9.05885, 42.66214 ], [ 9.055401, 42.678881 ], [ 9.058129, 42.692397 ], [ 9.062212, 42.693924 ], [ 9.066723, 42.692757 ], [ 9.074557, 42.69601 ], [ 9.082795, 42.70464 ], [ 9.086233, 42.71459 ], [ 9.100417, 42.71562 ], [ 9.107897, 42.72453 ], [ 9.12463, 42.730576 ], [ 9.134116, 42.72982 ], [ 9.161563, 42.735894 ], [ 9.197116, 42.72544 ], [ 9.210041, 42.729742 ], [ 9.212789, 42.732559 ], [ 9.22176, 42.73419 ], [ 9.232009, 42.72298 ], [ 9.234004, 42.719914 ], [ 9.238745, 42.71998 ], [ 9.24808, 42.719886 ], [ 9.255888, 42.715939 ], [ 9.256554, 42.705545 ], [ 9.270595, 42.696947 ], [ 9.28695, 42.675864 ], [ 9.295987, 42.676125 ], [ 9.321143, 42.69602 ], [ 9.324862, 42.717723 ], [ 9.329005, 42.71881 ], [ 9.332543, 42.72119 ], [ 9.342756, 42.732827 ], [ 9.343822, 42.739682 ], [ 9.345461, 42.74258 ], [ 9.339857, 42.760647 ], [ 9.338441, 42.763933 ], [ 9.342646, 42.790764 ], [ 9.337935, 42.803934 ], [ 9.330329, 42.81136 ], [ 9.3263, 42.81227 ], [ 9.312045, 42.83396 ], [ 9.335889, 42.86451 ], [ 9.340296, 42.86567 ], [ 9.328267, 42.876026 ], [ 9.328078, 42.886538 ], [ 9.32168, 42.895811 ], [ 9.326389, 42.90118 ], [ 9.351448, 42.91529 ], [ 9.359476, 42.922887 ], [ 9.350609, 42.930693 ], [ 9.357863, 42.94353 ], [ 9.347102, 42.954701 ], [ 9.349903, 42.96087 ], [ 9.347027, 42.96343 ], [ 9.349875, 42.969677 ], [ 9.343578, 42.978359 ], [ 9.343577, 42.99774 ], [ 9.357601, 43.00622 ], [ 9.371358, 43.00522 ], [ 9.383896, 43.00921 ], [ 9.400951, 43.007669 ], [ 9.404635, 43.005636 ], [ 9.409434, 43.005782 ], [ 9.416827, 43.009807 ], [ 9.42574, 43.00913 ], [ 9.460567, 42.985852 ], [ 9.451916, 42.963065 ], [ 9.455224, 42.956478 ], [ 9.456432, 42.95333 ], [ 9.469239, 42.93647 ], [ 9.466182, 42.93372 ], [ 9.470928, 42.92048 ], [ 9.469755, 42.906137 ], [ 9.474493, 42.900103 ], [ 9.475256, 42.88453 ], [ 9.477581, 42.88184 ], [ 9.476916, 42.878528 ], [ 9.480015, 42.860159 ], [ 9.4841, 42.85381 ], [ 9.481716, 42.83644 ], [ 9.487022, 42.826884 ], [ 9.487114, 42.82354 ], [ 9.491458, 42.797526 ], [ 9.469851, 42.76647 ], [ 9.468417, 42.752838 ], [ 9.462914, 42.74343 ], [ 9.461327, 42.74017 ], [ 9.45645, 42.720741 ], [ 9.456258, 42.717586 ], [ 9.456045, 42.71457 ], [ 9.454509, 42.70812 ], [ 9.45487, 42.701459 ], [ 9.446972, 42.685834 ], [ 9.44806, 42.665543 ], [ 9.449197, 42.662245 ], [ 9.450927, 42.659001 ], [ 9.462639, 42.64 ], [ 9.482955, 42.61619 ], [ 9.485803, 42.61336 ], [ 9.515923, 42.58339 ], [ 9.526146, 42.568197 ], [ 9.527541, 42.56496 ], [ 9.534093, 42.526342 ], [ 9.534758, 42.52281 ], [ 9.529569, 42.49903 ], [ 9.529585, 42.49558 ], [ 9.530468, 42.48638 ], [ 9.531423, 42.483371 ], [ 9.53492, 42.473694 ], [ 9.536057, 42.470468 ], [ 9.541639, 42.457993 ], [ 9.540881, 42.44492 ], [ 9.540876, 42.44162 ], [ 9.542202, 42.431296 ], [ 9.543386, 42.427949 ], [ 9.539184, 42.41523 ], [ 9.538228, 42.412013 ], [ 9.53572, 42.39701 ], [ 9.535249, 42.393996 ], [ 9.532308, 42.38205 ], [ 9.532625, 42.37902 ], [ 9.534738, 42.362244 ], [ 9.535137, 42.358856 ], [ 9.53559, 42.355725 ], [ 9.540421, 42.337291 ], [ 9.541532, 42.331469 ], [ 9.542538, 42.32862 ], [ 9.552585, 42.30256 ], [ 9.553671, 42.299236 ], [ 9.55983, 42.28267 ], [ 9.555494, 42.25546 ], [ 9.555098, 42.252028 ], [ 9.55322, 42.24144 ], [ 9.553137, 42.2201 ], [ 9.558744, 42.195748 ], [ 9.554432, 42.160352 ], [ 9.554385, 42.156793 ], [ 9.554876, 42.145356 ], [ 9.556247, 42.142665 ], [ 9.549284, 42.10386 ], [ 9.499644, 42.051416 ], [ 9.496981, 42.048451 ], [ 9.494771, 42.04542 ], [ 9.457181, 42.002201 ], [ 9.441409, 41.98962 ], [ 9.439854, 41.98768 ], [ 9.415285, 41.958404 ], [ 9.411856, 41.941459 ], [ 9.412962, 41.938093 ], [ 9.414772, 41.935099 ], [ 9.416116, 41.928609 ], [ 9.408977, 41.90662 ], [ 9.402379, 41.897762 ], [ 9.397681, 41.87784 ], [ 9.399537, 41.861406 ], [ 9.402269, 41.858707 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "31", "CODE_DEPT": "30", "NOM_DEPT": "GARD", "CODE_CHF": "189", "NOM_CHF": "NIMES", "X_CHF_LIEU": "8093", "Y_CHF_LIEU": "63051", "X_CENTROID": "7946", "Y_CENTROID": "63223", "CODE_REG": "91", "NOM_REGION": "LANGUEDOC-ROUSSILLON" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.230283, 43.460185 ], [ 4.164626, 43.472158 ], [ 4.131594, 43.486202 ], [ 4.120925, 43.498019 ], [ 4.118143, 43.50814 ], [ 4.124355, 43.52109 ], [ 4.13334, 43.523373 ], [ 4.13825, 43.52903 ], [ 4.126266, 43.544115 ], [ 4.10553, 43.55293 ], [ 4.101042, 43.554371 ], [ 4.10274, 43.557143 ], [ 4.108712, 43.56844 ], [ 4.106343, 43.571378 ], [ 4.083496, 43.588354 ], [ 4.074673, 43.58859 ], [ 4.075126, 43.58899 ], [ 4.079447, 43.590302 ], [ 4.088261, 43.59093 ], [ 4.099889, 43.585274 ], [ 4.122875, 43.588359 ], [ 4.150216, 43.58556 ], [ 4.149622, 43.596115 ], [ 4.170054, 43.61081 ], [ 4.192906, 43.641866 ], [ 4.193818, 43.65175 ], [ 4.163626, 43.69014 ], [ 4.164313, 43.69283 ], [ 4.164613, 43.696 ], [ 4.162321, 43.70776 ], [ 4.153883, 43.71501 ], [ 4.15158, 43.71774 ], [ 4.145038, 43.732444 ], [ 4.143857, 43.735489 ], [ 4.133483, 43.74062 ], [ 4.122517, 43.737124 ], [ 4.114162, 43.73767 ], [ 4.111703, 43.74018 ], [ 4.103785, 43.74861 ], [ 4.099236, 43.749592 ], [ 4.095561, 43.75153 ], [ 4.091102, 43.76379 ], [ 4.083862, 43.767709 ], [ 4.067248, 43.764498 ], [ 4.064929, 43.767319 ], [ 4.059831, 43.77232 ], [ 4.051757, 43.774269 ], [ 4.051987, 43.778 ], [ 4.053123, 43.785046 ], [ 4.049778, 43.78757 ], [ 4.031522, 43.79893 ], [ 4.02865, 43.80156 ], [ 4.001341, 43.81305 ], [ 3.998455, 43.81149 ], [ 3.995606, 43.80989 ], [ 3.978808, 43.80287 ], [ 3.974348, 43.801474 ], [ 3.963614, 43.80451 ], [ 3.960123, 43.806046 ], [ 3.962087, 43.816405 ], [ 3.974203, 43.82721 ], [ 3.973738, 43.837118 ], [ 3.979528, 43.84268 ], [ 3.95814, 43.844132 ], [ 3.957748, 43.85043 ], [ 3.958993, 43.85351 ], [ 3.942114, 43.853379 ], [ 3.937902, 43.853577 ], [ 3.933721, 43.85425 ], [ 3.923111, 43.858788 ], [ 3.91773, 43.86833 ], [ 3.918219, 43.878665 ], [ 3.919554, 43.88197 ], [ 3.914357, 43.88765 ], [ 3.900092, 43.87873 ], [ 3.857116, 43.876165 ], [ 3.847961, 43.868749 ], [ 3.834475, 43.868664 ], [ 3.830809, 43.86642 ], [ 3.827923, 43.868948 ], [ 3.822361, 43.874084 ], [ 3.805468, 43.87859 ], [ 3.799542, 43.89082 ], [ 3.82249, 43.914978 ], [ 3.824003, 43.918054 ], [ 3.828287, 43.92406 ], [ 3.823284, 43.939785 ], [ 3.820307, 43.942408 ], [ 3.795518, 43.942277 ], [ 3.787083, 43.95384 ], [ 3.786956, 43.96361 ], [ 3.787337, 43.96687 ], [ 3.731136, 43.970681 ], [ 3.717269, 43.96098 ], [ 3.699443, 43.95823 ], [ 3.684487, 43.95166 ], [ 3.689503, 43.939937 ], [ 3.686397, 43.939498 ], [ 3.683658, 43.94063 ], [ 3.676573, 43.9324 ], [ 3.678652, 43.9261 ], [ 3.67342, 43.91326 ], [ 3.66699, 43.91057 ], [ 3.662454, 43.91127 ], [ 3.644609, 43.913 ], [ 3.645286, 43.90239 ], [ 3.638102, 43.898868 ], [ 3.637759, 43.91491 ], [ 3.623589, 43.916979 ], [ 3.621068, 43.91414 ], [ 3.602208, 43.89539 ], [ 3.600522, 43.88893 ], [ 3.582958, 43.87743 ], [ 3.577363, 43.867888 ], [ 3.583258, 43.85928 ], [ 3.599871, 43.852972 ], [ 3.599475, 43.849635 ], [ 3.581794, 43.846185 ], [ 3.578908, 43.843563 ], [ 3.57437, 43.84491 ], [ 3.561603, 43.855326 ], [ 3.548734, 43.85169 ], [ 3.527026, 43.859035 ], [ 3.521645, 43.86495 ], [ 3.523528, 43.88579 ], [ 3.520677, 43.888422 ], [ 3.507184, 43.896378 ], [ 3.496146, 43.89078 ], [ 3.491584, 43.89129 ], [ 3.482082, 43.890453 ], [ 3.460847, 43.87138 ], [ 3.447119, 43.868868 ], [ 3.435182, 43.86296 ], [ 3.430814, 43.864425 ], [ 3.421606, 43.87232 ], [ 3.431008, 43.87366 ], [ 3.43703, 43.886782 ], [ 3.435778, 43.900367 ], [ 3.423923, 43.91131 ], [ 3.401726, 43.91473 ], [ 3.394416, 43.910775 ], [ 3.381306, 43.91239 ], [ 3.370004, 43.916521 ], [ 3.359876, 43.91153 ], [ 3.358663, 43.91452 ], [ 3.352274, 43.93431 ], [ 3.351722, 43.937721 ], [ 3.353982, 43.940756 ], [ 3.359211, 43.95027 ], [ 3.375884, 43.956729 ], [ 3.377571, 43.96695 ], [ 3.405615, 43.969682 ], [ 3.406388, 43.97317 ], [ 3.418529, 43.992295 ], [ 3.443552, 44.00234 ], [ 3.450981, 44.022541 ], [ 3.449727, 44.023276 ], [ 3.444774, 44.024718 ], [ 3.440799, 44.02678 ], [ 3.417944, 44.040016 ], [ 3.399699, 44.044845 ], [ 3.386492, 44.055081 ], [ 3.372685, 44.05247 ], [ 3.367643, 44.058215 ], [ 3.351731, 44.05026 ], [ 3.347875, 44.052402 ], [ 3.344557, 44.054636 ], [ 3.337492, 44.05874 ], [ 3.332517, 44.074501 ], [ 3.32891, 44.07903 ], [ 3.325456, 44.077483 ], [ 3.323059, 44.07985 ], [ 3.318423, 44.07902 ], [ 3.305423, 44.06919 ], [ 3.295925, 44.06954 ], [ 3.27474, 44.087541 ], [ 3.263376, 44.092726 ], [ 3.291562, 44.10483 ], [ 3.310698, 44.104941 ], [ 3.319087, 44.108373 ], [ 3.323849, 44.10892 ], [ 3.323929, 44.11194 ], [ 3.32359, 44.127009 ], [ 3.320354, 44.13595 ], [ 3.330226, 44.142165 ], [ 3.332488, 44.14864 ], [ 3.336682, 44.15813 ], [ 3.373648, 44.170765 ], [ 3.392517, 44.16869 ], [ 3.396939, 44.162699 ], [ 3.428468, 44.148665 ], [ 3.435184, 44.132762 ], [ 3.438628, 44.130372 ], [ 3.443052, 44.12885 ], [ 3.481027, 44.12425 ], [ 3.50516, 44.1262 ], [ 3.509926, 44.12538 ], [ 3.533113, 44.12086 ], [ 3.544309, 44.11437 ], [ 3.565196, 44.123051 ], [ 3.569987, 44.122324 ], [ 3.574615, 44.121508 ], [ 3.606167, 44.115901 ], [ 3.632838, 44.12122 ], [ 3.63585, 44.138127 ], [ 3.647169, 44.14429 ], [ 3.645569, 44.147539 ], [ 3.632924, 44.152573 ], [ 3.630543, 44.15887 ], [ 3.637706, 44.175434 ], [ 3.644962, 44.179992 ], [ 3.649649, 44.180846 ], [ 3.659917, 44.17429 ], [ 3.667963, 44.177784 ], [ 3.671053, 44.1842 ], [ 3.680307, 44.18295 ], [ 3.685032, 44.182683 ], [ 3.684404, 44.179411 ], [ 3.692424, 44.171376 ], [ 3.707658, 44.164465 ], [ 3.721091, 44.164729 ], [ 3.725624, 44.164249 ], [ 3.73505, 44.15731 ], [ 3.750848, 44.15214 ], [ 3.755264, 44.15141 ], [ 3.759624, 44.15119 ], [ 3.762209, 44.14539 ], [ 3.768909, 44.14262 ], [ 3.773033, 44.141602 ], [ 3.777238, 44.1402 ], [ 3.796995, 44.127389 ], [ 3.810833, 44.128557 ], [ 3.816677, 44.131754 ], [ 3.820249, 44.13245 ], [ 3.828468, 44.136436 ], [ 3.832118, 44.13733 ], [ 3.872731, 44.12867 ], [ 3.894317, 44.14717 ], [ 3.898477, 44.148621 ], [ 3.907391, 44.14785 ], [ 3.910617, 44.150258 ], [ 3.911601, 44.16012 ], [ 3.927275, 44.1613 ], [ 3.923699, 44.18135 ], [ 3.932865, 44.1804 ], [ 3.969452, 44.165047 ], [ 3.974117, 44.16433 ], [ 3.975587, 44.169809 ], [ 3.969842, 44.172461 ], [ 3.96595, 44.171613 ], [ 3.958795, 44.18412 ], [ 3.959222, 44.19088 ], [ 3.938574, 44.19664 ], [ 3.946248, 44.212661 ], [ 3.947255, 44.215983 ], [ 3.950924, 44.21687 ], [ 3.946433, 44.24101 ], [ 3.954741, 44.24958 ], [ 3.966919, 44.249865 ], [ 3.971123, 44.250395 ], [ 3.974753, 44.25972 ], [ 3.969227, 44.264778 ], [ 3.958546, 44.270975 ], [ 3.949688, 44.26943 ], [ 3.946764, 44.266892 ], [ 3.934303, 44.27545 ], [ 3.94003, 44.283873 ], [ 3.939236, 44.287345 ], [ 3.932937, 44.29677 ], [ 3.924943, 44.300825 ], [ 3.922859, 44.305227 ], [ 3.943704, 44.317887 ], [ 3.948083, 44.32706 ], [ 3.948819, 44.32385 ], [ 3.952361, 44.330154 ], [ 3.947017, 44.335359 ], [ 3.937635, 44.33606 ], [ 3.925008, 44.34629 ], [ 3.925013, 44.352713 ], [ 3.911307, 44.37033 ], [ 3.889107, 44.385606 ], [ 3.885817, 44.387973 ], [ 3.888695, 44.392964 ], [ 3.898558, 44.39026 ], [ 3.900416, 44.392617 ], [ 3.901542, 44.395533 ], [ 3.908506, 44.40305 ], [ 3.91645, 44.405052 ], [ 3.948916, 44.402319 ], [ 3.949196, 44.409249 ], [ 3.961269, 44.414662 ], [ 3.971719, 44.426382 ], [ 3.973044, 44.426721 ], [ 3.97269, 44.436798 ], [ 3.97596, 44.44281 ], [ 3.998163, 44.4598 ], [ 4.002603, 44.458515 ], [ 4.015082, 44.45348 ], [ 4.01666, 44.450365 ], [ 4.023876, 44.446301 ], [ 4.037103, 44.445952 ], [ 4.045419, 44.43349 ], [ 4.037813, 44.420918 ], [ 4.054795, 44.41479 ], [ 4.06844, 44.40506 ], [ 4.059453, 44.393911 ], [ 4.042393, 44.39407 ], [ 4.043749, 44.384554 ], [ 4.046711, 44.38246 ], [ 4.05298, 44.3787 ], [ 4.056718, 44.36102 ], [ 4.053677, 44.358794 ], [ 4.05116, 44.34621 ], [ 4.053047, 44.33975 ], [ 4.047919, 44.334444 ], [ 4.035706, 44.329851 ], [ 4.038705, 44.327887 ], [ 4.048059, 44.31895 ], [ 4.051452, 44.317324 ], [ 4.055621, 44.319021 ], [ 4.060144, 44.32017 ], [ 4.073842, 44.329026 ], [ 4.103861, 44.333906 ], [ 4.106628, 44.332356 ], [ 4.10942, 44.330843 ], [ 4.113525, 44.32913 ], [ 4.126752, 44.337734 ], [ 4.141665, 44.323959 ], [ 4.142868, 44.313351 ], [ 4.161701, 44.31215 ], [ 4.173247, 44.317577 ], [ 4.177991, 44.31774 ], [ 4.183913, 44.30232 ], [ 4.186579, 44.299735 ], [ 4.212951, 44.29144 ], [ 4.216384, 44.289039 ], [ 4.230778, 44.277176 ], [ 4.234052, 44.27506 ], [ 4.238182, 44.273095 ], [ 4.245138, 44.26807 ], [ 4.258901, 44.264425 ], [ 4.273773, 44.271752 ], [ 4.286338, 44.289386 ], [ 4.288996, 44.292146 ], [ 4.289584, 44.29542 ], [ 4.288375, 44.315019 ], [ 4.306334, 44.31627 ], [ 4.318098, 44.32175 ], [ 4.329257, 44.33238 ], [ 4.325771, 44.33832 ], [ 4.370171, 44.34014 ], [ 4.38381, 44.344352 ], [ 4.38705, 44.347057 ], [ 4.391868, 44.346573 ], [ 4.402347, 44.335007 ], [ 4.40145, 44.328167 ], [ 4.400063, 44.324818 ], [ 4.391594, 44.304759 ], [ 4.393313, 44.2946 ], [ 4.40357, 44.288177 ], [ 4.431983, 44.28968 ], [ 4.435608, 44.283324 ], [ 4.440422, 44.28342 ], [ 4.450048, 44.295226 ], [ 4.453212, 44.29787 ], [ 4.448757, 44.29671 ], [ 4.450793, 44.330705 ], [ 4.451068, 44.334096 ], [ 4.459866, 44.341596 ], [ 4.464761, 44.341675 ], [ 4.48291, 44.3382 ], [ 4.506097, 44.340252 ], [ 4.512014, 44.3354 ], [ 4.514731, 44.329114 ], [ 4.524167, 44.328768 ], [ 4.531152, 44.3241 ], [ 4.54911, 44.324512 ], [ 4.547749, 44.322874 ], [ 4.545631, 44.319708 ], [ 4.557168, 44.304168 ], [ 4.569998, 44.299349 ], [ 4.574274, 44.30075 ], [ 4.59898, 44.291756 ], [ 4.602332, 44.29192 ], [ 4.605465, 44.29104 ], [ 4.609125, 44.289249 ], [ 4.616625, 44.277993 ], [ 4.620478, 44.279944 ], [ 4.632679, 44.284994 ], [ 4.637028, 44.283669 ], [ 4.641729, 44.2742 ], [ 4.649224, 44.27036 ], [ 4.648551, 44.26747 ], [ 4.651479, 44.259153 ], [ 4.653075, 44.25591 ], [ 4.67736, 44.234975 ], [ 4.672933, 44.2186 ], [ 4.673657, 44.21471 ], [ 4.681893, 44.211741 ], [ 4.699936, 44.216108 ], [ 4.708595, 44.2135 ], [ 4.710297, 44.206836 ], [ 4.70483, 44.201078 ], [ 4.703839, 44.197663 ], [ 4.708316, 44.191724 ], [ 4.717272, 44.18997 ], [ 4.721891, 44.18467 ], [ 4.716251, 44.176043 ], [ 4.717361, 44.169328 ], [ 4.717296, 44.16593 ], [ 4.717117, 44.1625 ], [ 4.71719, 44.159094 ], [ 4.718725, 44.152381 ], [ 4.718133, 44.14068 ], [ 4.705735, 44.1116 ], [ 4.705082, 44.10817 ], [ 4.719627, 44.088781 ], [ 4.71973, 44.085584 ], [ 4.727819, 44.07845 ], [ 4.752939, 44.08798 ], [ 4.757721, 44.087933 ], [ 4.760117, 44.08179 ], [ 4.760035, 44.078344 ], [ 4.762887, 44.07487 ], [ 4.784113, 44.067215 ], [ 4.786807, 44.064353 ], [ 4.78741, 44.054918 ], [ 4.792418, 44.049848 ], [ 4.795865, 44.04791 ], [ 4.799013, 44.04601 ], [ 4.807764, 44.03977 ], [ 4.813646, 44.03404 ], [ 4.82029, 44.01701 ], [ 4.839417, 44.014022 ], [ 4.842997, 44.00399 ], [ 4.843118, 44.00042 ], [ 4.845344, 43.995593 ], [ 4.844996, 43.992142 ], [ 4.840941, 43.98592 ], [ 4.8363, 43.985033 ], [ 4.812967, 43.988006 ], [ 4.810178, 43.977915 ], [ 4.814369, 43.964676 ], [ 4.791981, 43.952271 ], [ 4.778539, 43.93879 ], [ 4.748232, 43.931132 ], [ 4.741431, 43.92664 ], [ 4.738793, 43.923866 ], [ 4.739556, 43.92111 ], [ 4.735506, 43.91651 ], [ 4.723398, 43.906052 ], [ 4.698503, 43.89664 ], [ 4.703196, 43.897035 ], [ 4.7079, 43.89741 ], [ 4.705497, 43.894488 ], [ 4.692706, 43.88459 ], [ 4.66694, 43.87636 ], [ 4.662511, 43.870388 ], [ 4.661583, 43.873589 ], [ 4.64173, 43.8673 ], [ 4.646975, 43.85803 ], [ 4.643675, 43.851852 ], [ 4.661874, 43.85234 ], [ 4.666767, 43.84698 ], [ 4.664997, 43.843842 ], [ 4.652168, 43.839752 ], [ 4.64297, 43.83211 ], [ 4.654449, 43.809007 ], [ 4.652914, 43.787725 ], [ 4.650196, 43.780935 ], [ 4.629507, 43.761121 ], [ 4.628118, 43.757712 ], [ 4.627175, 43.754252 ], [ 4.61194, 43.724724 ], [ 4.613145, 43.71419 ], [ 4.626473, 43.68803 ], [ 4.597812, 43.68675 ], [ 4.578489, 43.69707 ], [ 4.559326, 43.699444 ], [ 4.537599, 43.707052 ], [ 4.524575, 43.702501 ], [ 4.49079, 43.7004 ], [ 4.486421, 43.69885 ], [ 4.476546, 43.6868 ], [ 4.477416, 43.672921 ], [ 4.451605, 43.66423 ], [ 4.42723, 43.625822 ], [ 4.428685, 43.619063 ], [ 4.438799, 43.611406 ], [ 4.448272, 43.61034 ], [ 4.466497, 43.61496 ], [ 4.473776, 43.610442 ], [ 4.473576, 43.603651 ], [ 4.452809, 43.584573 ], [ 4.448317, 43.583184 ], [ 4.443527, 43.58321 ], [ 4.424853, 43.58448 ], [ 4.4094, 43.57628 ], [ 4.41426, 43.567552 ], [ 4.408973, 43.561934 ], [ 4.404608, 43.560523 ], [ 4.390361, 43.56087 ], [ 4.37246, 43.54968 ], [ 4.35391, 43.547408 ], [ 4.332823, 43.535935 ], [ 4.3161, 43.546749 ], [ 4.322314, 43.55171 ], [ 4.318393, 43.557168 ], [ 4.315141, 43.551871 ], [ 4.309193, 43.54657 ], [ 4.320651, 43.527823 ], [ 4.293603, 43.51404 ], [ 4.244686, 43.501268 ], [ 4.240814, 43.499405 ], [ 4.237743, 43.496884 ], [ 4.239777, 43.49373 ], [ 4.231161, 43.47754 ], [ 4.230283, 43.460185 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "32", "CODE_DEPT": "31", "NOM_DEPT": "HAUTE-GARONNE", "CODE_CHF": "555", "NOM_CHF": "TOULOUSE", "X_CHF_LIEU": "5741", "Y_CHF_LIEU": "62796", "X_CENTROID": "5517", "Y_CENTROID": "62527", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.858306, 42.825719 ], [ 0.853758, 42.826744 ], [ 0.835187, 42.828277 ], [ 0.801483, 42.840483 ], [ 0.779279, 42.836148 ], [ 0.739791, 42.848259 ], [ 0.730403, 42.855735 ], [ 0.712922, 42.860293 ], [ 0.708378, 42.8614 ], [ 0.704491, 42.859502 ], [ 0.691821, 42.85523 ], [ 0.677886, 42.85511 ], [ 0.678698, 42.84825 ], [ 0.659217, 42.838678 ], [ 0.659112, 42.835203 ], [ 0.660552, 42.831915 ], [ 0.669588, 42.824537 ], [ 0.664746, 42.81517 ], [ 0.665711, 42.81214 ], [ 0.669986, 42.80363 ], [ 0.660008, 42.7984 ], [ 0.657841, 42.795782 ], [ 0.652294, 42.78765 ], [ 0.65049, 42.785438 ], [ 0.644541, 42.783076 ], [ 0.664194, 42.774772 ], [ 0.641852, 42.75482 ], [ 0.659866, 42.752162 ], [ 0.670131, 42.73265 ], [ 0.676455, 42.727372 ], [ 0.675066, 42.717241 ], [ 0.680501, 42.7076 ], [ 0.67321, 42.69135 ], [ 0.621613, 42.695701 ], [ 0.600493, 42.70339 ], [ 0.59672, 42.70555 ], [ 0.593881, 42.7043 ], [ 0.593069, 42.700937 ], [ 0.587988, 42.695228 ], [ 0.578783, 42.695478 ], [ 0.529614, 42.702684 ], [ 0.526374, 42.702592 ], [ 0.516216, 42.691679 ], [ 0.493291, 42.693096 ], [ 0.482285, 42.69919 ], [ 0.47775, 42.69999 ], [ 0.483742, 42.70892 ], [ 0.451297, 42.733134 ], [ 0.462125, 42.739203 ], [ 0.461558, 42.746044 ], [ 0.460252, 42.749387 ], [ 0.463462, 42.759484 ], [ 0.46214, 42.762638 ], [ 0.455185, 42.77092 ], [ 0.455983, 42.780574 ], [ 0.461998, 42.7894 ], [ 0.463138, 42.790136 ], [ 0.463434, 42.80239 ], [ 0.459851, 42.80498 ], [ 0.457889, 42.80793 ], [ 0.458793, 42.82387 ], [ 0.45921, 42.827199 ], [ 0.464129, 42.839956 ], [ 0.4675, 42.84675 ], [ 0.464761, 42.848158 ], [ 0.460239, 42.851749 ], [ 0.469379, 42.857516 ], [ 0.472676, 42.859303 ], [ 0.472642, 42.862613 ], [ 0.471878, 42.869208 ], [ 0.477357, 42.87824 ], [ 0.481956, 42.877965 ], [ 0.499291, 42.874555 ], [ 0.504028, 42.868782 ], [ 0.508611, 42.869167 ], [ 0.525546, 42.86755 ], [ 0.527716, 42.86485 ], [ 0.53418, 42.861256 ], [ 0.547136, 42.864612 ], [ 0.554041, 42.86009 ], [ 0.558081, 42.861146 ], [ 0.562341, 42.860757 ], [ 0.564129, 42.863325 ], [ 0.575935, 42.870826 ], [ 0.577659, 42.8767 ], [ 0.577041, 42.880091 ], [ 0.579564, 42.882954 ], [ 0.580972, 42.88586 ], [ 0.58566, 42.894347 ], [ 0.586278, 42.89742 ], [ 0.59229, 42.90854 ], [ 0.595495, 42.910069 ], [ 0.597588, 42.918033 ], [ 0.597177, 42.92147 ], [ 0.600187, 42.928015 ], [ 0.604428, 42.931735 ], [ 0.605645, 42.934 ], [ 0.609142, 42.934719 ], [ 0.615362, 42.93681 ], [ 0.618067, 42.93951 ], [ 0.626629, 42.94185 ], [ 0.637432, 42.95262 ], [ 0.641991, 42.952873 ], [ 0.645959, 42.96134 ], [ 0.643533, 42.963748 ], [ 0.636348, 42.96841 ], [ 0.635542, 42.968935 ], [ 0.624127, 42.971841 ], [ 0.620121, 42.97244 ], [ 0.615624, 42.978698 ], [ 0.613894, 42.982025 ], [ 0.615981, 42.98432 ], [ 0.611442, 42.98829 ], [ 0.615095, 42.98915 ], [ 0.625588, 42.991209 ], [ 0.625565, 42.99418 ], [ 0.625023, 43.002317 ], [ 0.622358, 43.004526 ], [ 0.615713, 43.01108 ], [ 0.614458, 43.014167 ], [ 0.616481, 43.020421 ], [ 0.615651, 43.02153 ], [ 0.613138, 43.024476 ], [ 0.608047, 43.034009 ], [ 0.59322, 43.035451 ], [ 0.59411, 43.032322 ], [ 0.592642, 43.026035 ], [ 0.591825, 43.022373 ], [ 0.58878, 43.02277 ], [ 0.585777, 43.023317 ], [ 0.585178, 43.020028 ], [ 0.572103, 43.021282 ], [ 0.564055, 43.018733 ], [ 0.561334, 43.016089 ], [ 0.548181, 43.006712 ], [ 0.545867, 43.003735 ], [ 0.542023, 43.001019 ], [ 0.538173, 43.001606 ], [ 0.52695, 43.008925 ], [ 0.53018, 43.01137 ], [ 0.534755, 43.017112 ], [ 0.53512, 43.037051 ], [ 0.536958, 43.039991 ], [ 0.548393, 43.043995 ], [ 0.562697, 43.036438 ], [ 0.566899, 43.03742 ], [ 0.565503, 43.040874 ], [ 0.563791, 43.04397 ], [ 0.558847, 43.062868 ], [ 0.55496, 43.064255 ], [ 0.561711, 43.072363 ], [ 0.563854, 43.07425 ], [ 0.532194, 43.08413 ], [ 0.532638, 43.09387 ], [ 0.529181, 43.093452 ], [ 0.522355, 43.09257 ], [ 0.50459, 43.095359 ], [ 0.500068, 43.107367 ], [ 0.491205, 43.10868 ], [ 0.48929, 43.115179 ], [ 0.485319, 43.114115 ], [ 0.464706, 43.111346 ], [ 0.452923, 43.11255 ], [ 0.456872, 43.11436 ], [ 0.463839, 43.118804 ], [ 0.45476, 43.12636 ], [ 0.442334, 43.13091 ], [ 0.441291, 43.13117 ], [ 0.44385, 43.13358 ], [ 0.456753, 43.14556 ], [ 0.458872, 43.148519 ], [ 0.462785, 43.15066 ], [ 0.499093, 43.17423 ], [ 0.520954, 43.193457 ], [ 0.505764, 43.19971 ], [ 0.515936, 43.20947 ], [ 0.517385, 43.212382 ], [ 0.521425, 43.21115 ], [ 0.533811, 43.20807 ], [ 0.544991, 43.21306 ], [ 0.551875, 43.209147 ], [ 0.555811, 43.210613 ], [ 0.57023, 43.21735 ], [ 0.573087, 43.21995 ], [ 0.572841, 43.23311 ], [ 0.568198, 43.232582 ], [ 0.55547, 43.236983 ], [ 0.550957, 43.236008 ], [ 0.554112, 43.23853 ], [ 0.566788, 43.2523 ], [ 0.576012, 43.25315 ], [ 0.576265, 43.25591 ], [ 0.576716, 43.258656 ], [ 0.580238, 43.261003 ], [ 0.596798, 43.273477 ], [ 0.6146, 43.27783 ], [ 0.615325, 43.280547 ], [ 0.618933, 43.290418 ], [ 0.635622, 43.295653 ], [ 0.632144, 43.301427 ], [ 0.611353, 43.30984 ], [ 0.606811, 43.31089 ], [ 0.610158, 43.3128 ], [ 0.611852, 43.31565 ], [ 0.616602, 43.31552 ], [ 0.644501, 43.31235 ], [ 0.65681, 43.317273 ], [ 0.659808, 43.319345 ], [ 0.674719, 43.32951 ], [ 0.675321, 43.332306 ], [ 0.690313, 43.349844 ], [ 0.693641, 43.35234 ], [ 0.697166, 43.357334 ], [ 0.69924, 43.359763 ], [ 0.700061, 43.361122 ], [ 0.702998, 43.364496 ], [ 0.716226, 43.378699 ], [ 0.7321, 43.371635 ], [ 0.740799, 43.37946 ], [ 0.744299, 43.38179 ], [ 0.749961, 43.398881 ], [ 0.751705, 43.400979 ], [ 0.75493, 43.404709 ], [ 0.75717, 43.40772 ], [ 0.752092, 43.41699 ], [ 0.770422, 43.41681 ], [ 0.803342, 43.401805 ], [ 0.807297, 43.39972 ], [ 0.807663, 43.40017 ], [ 0.818079, 43.41451 ], [ 0.821119, 43.417059 ], [ 0.840405, 43.41109 ], [ 0.844325, 43.409936 ], [ 0.853479, 43.41373 ], [ 0.857069, 43.41447 ], [ 0.864511, 43.41586 ], [ 0.875921, 43.41079 ], [ 0.880555, 43.410633 ], [ 0.883107, 43.4104 ], [ 0.885639, 43.41003 ], [ 0.897917, 43.406436 ], [ 0.90223, 43.40529 ], [ 0.90473, 43.407828 ], [ 0.917282, 43.40615 ], [ 0.917422, 43.40299 ], [ 0.927776, 43.39822 ], [ 0.927285, 43.39507 ], [ 0.942091, 43.383427 ], [ 0.944659, 43.380605 ], [ 0.9469, 43.38523 ], [ 0.963618, 43.386678 ], [ 0.968903, 43.377454 ], [ 0.96487, 43.37149 ], [ 0.976605, 43.363668 ], [ 0.980537, 43.36305 ], [ 0.989167, 43.365621 ], [ 0.993662, 43.366532 ], [ 0.998763, 43.376283 ], [ 1.002876, 43.37686 ], [ 1.005037, 43.37999 ], [ 0.998926, 43.384385 ], [ 1.001607, 43.391022 ], [ 0.993933, 43.407268 ], [ 0.997091, 43.40981 ], [ 1.004308, 43.41384 ], [ 1.022788, 43.4117 ], [ 1.023514, 43.41499 ], [ 1.028599, 43.42044 ], [ 1.021059, 43.428609 ], [ 1.018914, 43.430658 ], [ 1.021751, 43.432896 ], [ 1.032272, 43.441214 ], [ 1.033454, 43.44419 ], [ 1.03388, 43.44726 ], [ 1.034473, 43.45017 ], [ 1.039075, 43.452497 ], [ 1.037108, 43.45512 ], [ 1.04394, 43.458372 ], [ 1.04167, 43.460815 ], [ 1.038859, 43.463194 ], [ 1.017906, 43.47354 ], [ 1.020032, 43.47638 ], [ 1.03749, 43.48556 ], [ 1.033751, 43.48682 ], [ 1.051077, 43.48947 ], [ 1.05932, 43.504177 ], [ 1.072887, 43.50442 ], [ 1.069796, 43.507 ], [ 1.052928, 43.51839 ], [ 1.055315, 43.524976 ], [ 1.06845, 43.523492 ], [ 1.076593, 43.52668 ], [ 1.073076, 43.52903 ], [ 1.050552, 43.541036 ], [ 1.05963, 43.5393 ], [ 1.074806, 43.54643 ], [ 1.084108, 43.54648 ], [ 1.091417, 43.542501 ], [ 1.097081, 43.533231 ], [ 1.105617, 43.5366 ], [ 1.118141, 43.54553 ], [ 1.114137, 43.553653 ], [ 1.112391, 43.55671 ], [ 1.125451, 43.554299 ], [ 1.152204, 43.55702 ], [ 1.156696, 43.556634 ], [ 1.163369, 43.570859 ], [ 1.162297, 43.573802 ], [ 1.166831, 43.572528 ], [ 1.199343, 43.56918 ], [ 1.201942, 43.575518 ], [ 1.200479, 43.595726 ], [ 1.188439, 43.60562 ], [ 1.185959, 43.608462 ], [ 1.1809, 43.6141 ], [ 1.171418, 43.606896 ], [ 1.158654, 43.60518 ], [ 1.146019, 43.619029 ], [ 1.1426, 43.621311 ], [ 1.146816, 43.632336 ], [ 1.147455, 43.635182 ], [ 1.144935, 43.637614 ], [ 1.138899, 43.64183 ], [ 1.130581, 43.64265 ], [ 1.127421, 43.64076 ], [ 1.115933, 43.6396 ], [ 1.115457, 43.63673 ], [ 1.094498, 43.64243 ], [ 1.08861, 43.64729 ], [ 1.099477, 43.657494 ], [ 1.101383, 43.660561 ], [ 1.093458, 43.664383 ], [ 1.079461, 43.66252 ], [ 1.074826, 43.66171 ], [ 1.062518, 43.67116 ], [ 1.058015, 43.670848 ], [ 1.056834, 43.673842 ], [ 1.049022, 43.67602 ], [ 1.051339, 43.67864 ], [ 1.051577, 43.681849 ], [ 1.065703, 43.70023 ], [ 1.063925, 43.70292 ], [ 1.056108, 43.704756 ], [ 1.052021, 43.706375 ], [ 1.04073, 43.712176 ], [ 1.027388, 43.710432 ], [ 1.024347, 43.712987 ], [ 1.02217, 43.716017 ], [ 1.023419, 43.721873 ], [ 1.011973, 43.727695 ], [ 1.007789, 43.72879 ], [ 0.985922, 43.74382 ], [ 0.98905, 43.74386 ], [ 0.99219, 43.743895 ], [ 0.974622, 43.759295 ], [ 0.966056, 43.759567 ], [ 0.969891, 43.76138 ], [ 0.959099, 43.7718 ], [ 0.953642, 43.78406 ], [ 0.953983, 43.787372 ], [ 0.956063, 43.789329 ], [ 0.980517, 43.78758 ], [ 0.982503, 43.790461 ], [ 0.987578, 43.79559 ], [ 0.995961, 43.79755 ], [ 1.000344, 43.79837 ], [ 1.036771, 43.803028 ], [ 1.044982, 43.799521 ], [ 1.059132, 43.798594 ], [ 1.062046, 43.80136 ], [ 1.082129, 43.815465 ], [ 1.083306, 43.816332 ], [ 1.097104, 43.808139 ], [ 1.105866, 43.806663 ], [ 1.105058, 43.8014 ], [ 1.10768, 43.798782 ], [ 1.115083, 43.797776 ], [ 1.116766, 43.801 ], [ 1.125584, 43.80915 ], [ 1.142279, 43.81561 ], [ 1.144598, 43.822298 ], [ 1.157369, 43.818329 ], [ 1.162996, 43.80882 ], [ 1.175343, 43.80439 ], [ 1.17968, 43.79581 ], [ 1.18319, 43.79407 ], [ 1.215753, 43.79027 ], [ 1.217957, 43.783755 ], [ 1.207038, 43.77735 ], [ 1.210042, 43.77107 ], [ 1.212776, 43.768242 ], [ 1.27741, 43.78895 ], [ 1.267641, 43.79521 ], [ 1.266879, 43.79862 ], [ 1.271046, 43.798075 ], [ 1.27796, 43.80162 ], [ 1.281825, 43.79625 ], [ 1.286109, 43.7972 ], [ 1.29903, 43.799785 ], [ 1.301897, 43.80031 ], [ 1.305066, 43.801166 ], [ 1.311637, 43.80084 ], [ 1.314977, 43.803066 ], [ 1.326313, 43.808515 ], [ 1.343356, 43.81053 ], [ 1.345052, 43.81335 ], [ 1.35152, 43.81709 ], [ 1.360031, 43.81721 ], [ 1.361292, 43.820486 ], [ 1.354419, 43.836432 ], [ 1.331645, 43.83748 ], [ 1.314451, 43.83313 ], [ 1.303039, 43.843916 ], [ 1.293823, 43.8456 ], [ 1.296644, 43.848173 ], [ 1.319412, 43.85807 ], [ 1.323757, 43.85668 ], [ 1.335298, 43.851245 ], [ 1.358857, 43.85248 ], [ 1.36147, 43.858077 ], [ 1.34929, 43.87193 ], [ 1.352803, 43.873951 ], [ 1.355915, 43.882531 ], [ 1.365184, 43.889574 ], [ 1.390999, 43.881577 ], [ 1.404492, 43.884602 ], [ 1.408611, 43.882826 ], [ 1.418123, 43.871875 ], [ 1.430993, 43.86945 ], [ 1.447742, 43.873506 ], [ 1.448923, 43.87032 ], [ 1.467045, 43.89463 ], [ 1.469869, 43.89748 ], [ 1.475043, 43.905574 ], [ 1.477, 43.908293 ], [ 1.487717, 43.901799 ], [ 1.491908, 43.888761 ], [ 1.496655, 43.888583 ], [ 1.5166, 43.902682 ], [ 1.515195, 43.905966 ], [ 1.519355, 43.90495 ], [ 1.523323, 43.9036 ], [ 1.531161, 43.911546 ], [ 1.533792, 43.9211 ], [ 1.551068, 43.917996 ], [ 1.555617, 43.918317 ], [ 1.547523, 43.899722 ], [ 1.550723, 43.889881 ], [ 1.559399, 43.881968 ], [ 1.556407, 43.87578 ], [ 1.564008, 43.87188 ], [ 1.561642, 43.86998 ], [ 1.555312, 43.870834 ], [ 1.555086, 43.86849 ], [ 1.57037, 43.85182 ], [ 1.572585, 43.8488 ], [ 1.576138, 43.847463 ], [ 1.591232, 43.843572 ], [ 1.59317, 43.843138 ], [ 1.588589, 43.817176 ], [ 1.625502, 43.801807 ], [ 1.644788, 43.800257 ], [ 1.646404, 43.79706 ], [ 1.648551, 43.79404 ], [ 1.642091, 43.785095 ], [ 1.643045, 43.778375 ], [ 1.651526, 43.775861 ], [ 1.655786, 43.766887 ], [ 1.651455, 43.754629 ], [ 1.650186, 43.751589 ], [ 1.657976, 43.745017 ], [ 1.659743, 43.742186 ], [ 1.679455, 43.735749 ], [ 1.688782, 43.728464 ], [ 1.693023, 43.7297 ], [ 1.703544, 43.718894 ], [ 1.706446, 43.71622 ], [ 1.702349, 43.710276 ], [ 1.692903, 43.709965 ], [ 1.678907, 43.701391 ], [ 1.665722, 43.705072 ], [ 1.661032, 43.70565 ], [ 1.664454, 43.70362 ], [ 1.663572, 43.697279 ], [ 1.663573, 43.694058 ], [ 1.716092, 43.689389 ], [ 1.720704, 43.688346 ], [ 1.718914, 43.68522 ], [ 1.720379, 43.67515 ], [ 1.730492, 43.66414 ], [ 1.730357, 43.660759 ], [ 1.724309, 43.656774 ], [ 1.702541, 43.65089 ], [ 1.691623, 43.639998 ], [ 1.690614, 43.63316 ], [ 1.687765, 43.630421 ], [ 1.698605, 43.62009 ], [ 1.706268, 43.62138 ], [ 1.719106, 43.618386 ], [ 1.723044, 43.61676 ], [ 1.723742, 43.613797 ], [ 1.74056, 43.60596 ], [ 1.742237, 43.6046 ], [ 1.744731, 43.60436 ], [ 1.745048, 43.603462 ], [ 1.762222, 43.6018 ], [ 1.762697, 43.602738 ], [ 1.76653, 43.601881 ], [ 1.772294, 43.59812 ], [ 1.772591, 43.592348 ], [ 1.775825, 43.590468 ], [ 1.79341, 43.583763 ], [ 1.798684, 43.582535 ], [ 1.802575, 43.581147 ], [ 1.810477, 43.579173 ], [ 1.821662, 43.581194 ], [ 1.826037, 43.580296 ], [ 1.839147, 43.57779 ], [ 1.849452, 43.56754 ], [ 1.85195, 43.5522 ], [ 1.850711, 43.549192 ], [ 1.859818, 43.54661 ], [ 1.86424, 43.54506 ], [ 1.876382, 43.54154 ], [ 1.880414, 43.540315 ], [ 1.876463, 43.53868 ], [ 1.873093, 43.53647 ], [ 1.887719, 43.516941 ], [ 1.889391, 43.516184 ], [ 1.891608, 43.513409 ], [ 1.917079, 43.501474 ], [ 1.92057, 43.50514 ], [ 1.948634, 43.492166 ], [ 1.952509, 43.490449 ], [ 1.957257, 43.493698 ], [ 1.973997, 43.487838 ], [ 1.987799, 43.478826 ], [ 1.996014, 43.481736 ], [ 2.009895, 43.481468 ], [ 2.012578, 43.484246 ], [ 2.012012, 43.5071 ], [ 2.016101, 43.50871 ], [ 2.03489, 43.500013 ], [ 2.042285, 43.510929 ], [ 2.048094, 43.49829 ], [ 2.045463, 43.48777 ], [ 2.04829, 43.48573 ], [ 2.044983, 43.483196 ], [ 2.039032, 43.477708 ], [ 2.025048, 43.475397 ], [ 2.021455, 43.47307 ], [ 2.019322, 43.469938 ], [ 2.014953, 43.44947 ], [ 2.02247, 43.446087 ], [ 2.029133, 43.436898 ], [ 2.030853, 43.433737 ], [ 2.038411, 43.425482 ], [ 2.028795, 43.41962 ], [ 2.020921, 43.423193 ], [ 2.012692, 43.415021 ], [ 1.991106, 43.409343 ], [ 1.972991, 43.418962 ], [ 1.965903, 43.414971 ], [ 1.963038, 43.41991 ], [ 1.963752, 43.42275 ], [ 1.960755, 43.42396 ], [ 1.95817, 43.42561 ], [ 1.946584, 43.420597 ], [ 1.932769, 43.423377 ], [ 1.923508, 43.421558 ], [ 1.911508, 43.403408 ], [ 1.91463, 43.400749 ], [ 1.910708, 43.3974 ], [ 1.903591, 43.39402 ], [ 1.895584, 43.39658 ], [ 1.902433, 43.408813 ], [ 1.899143, 43.41113 ], [ 1.897627, 43.414271 ], [ 1.873987, 43.430259 ], [ 1.872942, 43.43696 ], [ 1.856453, 43.44345 ], [ 1.855178, 43.440517 ], [ 1.842953, 43.43255 ], [ 1.84599, 43.430729 ], [ 1.844511, 43.42261 ], [ 1.840383, 43.416741 ], [ 1.826761, 43.417746 ], [ 1.817266, 43.41065 ], [ 1.817111, 43.407384 ], [ 1.821619, 43.39879 ], [ 1.826108, 43.394661 ], [ 1.812498, 43.394126 ], [ 1.804971, 43.390588 ], [ 1.804994, 43.359764 ], [ 1.815575, 43.34831 ], [ 1.813484, 43.3415 ], [ 1.796973, 43.34056 ], [ 1.793332, 43.342567 ], [ 1.784932, 43.34515 ], [ 1.77653, 43.34256 ], [ 1.772273, 43.336977 ], [ 1.768684, 43.33939 ], [ 1.749223, 43.349462 ], [ 1.746555, 43.34348 ], [ 1.735427, 43.3377 ], [ 1.722905, 43.341533 ], [ 1.726379, 43.33269 ], [ 1.724412, 43.329666 ], [ 1.735952, 43.316018 ], [ 1.727504, 43.31357 ], [ 1.707384, 43.305316 ], [ 1.704015, 43.30282 ], [ 1.707797, 43.301155 ], [ 1.714527, 43.2971 ], [ 1.706646, 43.286036 ], [ 1.701275, 43.281698 ], [ 1.698489, 43.27911 ], [ 1.68842, 43.273554 ], [ 1.684706, 43.27552 ], [ 1.673613, 43.28134 ], [ 1.671417, 43.2783 ], [ 1.650608, 43.259827 ], [ 1.655788, 43.250976 ], [ 1.655283, 43.244105 ], [ 1.644398, 43.237564 ], [ 1.635082, 43.23709 ], [ 1.636456, 43.24718 ], [ 1.637144, 43.254008 ], [ 1.633595, 43.256239 ], [ 1.606213, 43.260604 ], [ 1.600931, 43.26622 ], [ 1.582583, 43.26887 ], [ 1.578834, 43.27512 ], [ 1.574813, 43.273429 ], [ 1.569433, 43.269912 ], [ 1.572619, 43.26357 ], [ 1.569141, 43.257366 ], [ 1.561765, 43.257484 ], [ 1.557052, 43.263323 ], [ 1.545386, 43.276797 ], [ 1.541674, 43.27509 ], [ 1.541722, 43.276082 ], [ 1.537449, 43.277077 ], [ 1.52189, 43.270621 ], [ 1.517628, 43.271643 ], [ 1.515703, 43.27804 ], [ 1.515871, 43.28441 ], [ 1.511636, 43.29246 ], [ 1.506599, 43.2872 ], [ 1.499248, 43.290445 ], [ 1.49622, 43.29277 ], [ 1.495033, 43.27689 ], [ 1.488674, 43.2686 ], [ 1.492642, 43.262804 ], [ 1.490239, 43.26011 ], [ 1.493322, 43.25422 ], [ 1.49768, 43.25466 ], [ 1.502879, 43.251637 ], [ 1.504522, 43.24953 ], [ 1.495751, 43.23897 ], [ 1.492447, 43.23684 ], [ 1.500513, 43.233745 ], [ 1.504053, 43.228189 ], [ 1.503881, 43.224867 ], [ 1.503995, 43.22095 ], [ 1.48702, 43.226503 ], [ 1.476565, 43.220347 ], [ 1.475497, 43.21699 ], [ 1.471837, 43.215385 ], [ 1.468744, 43.209566 ], [ 1.452056, 43.21222 ], [ 1.444751, 43.214018 ], [ 1.441798, 43.21587 ], [ 1.431539, 43.218136 ], [ 1.41686, 43.226325 ], [ 1.418659, 43.23654 ], [ 1.425426, 43.24559 ], [ 1.425886, 43.25582 ], [ 1.406262, 43.27419 ], [ 1.402761, 43.276547 ], [ 1.401943, 43.277623 ], [ 1.379301, 43.288857 ], [ 1.365686, 43.305999 ], [ 1.373023, 43.31015 ], [ 1.345491, 43.31549 ], [ 1.331294, 43.31383 ], [ 1.323968, 43.3094 ], [ 1.316667, 43.297392 ], [ 1.307485, 43.296727 ], [ 1.301558, 43.28756 ], [ 1.292531, 43.288366 ], [ 1.301238, 43.27292 ], [ 1.294862, 43.268267 ], [ 1.294111, 43.264926 ], [ 1.330481, 43.260644 ], [ 1.329953, 43.257217 ], [ 1.318422, 43.251154 ], [ 1.336707, 43.248387 ], [ 1.348304, 43.24313 ], [ 1.352581, 43.244617 ], [ 1.35678, 43.243701 ], [ 1.365233, 43.242021 ], [ 1.373053, 43.244883 ], [ 1.374903, 43.23864 ], [ 1.377652, 43.23627 ], [ 1.382925, 43.228152 ], [ 1.379963, 43.222341 ], [ 1.377872, 43.21925 ], [ 1.370204, 43.21067 ], [ 1.356669, 43.21301 ], [ 1.352282, 43.21198 ], [ 1.327822, 43.20456 ], [ 1.327516, 43.20196 ], [ 1.329615, 43.19702 ], [ 1.325853, 43.196126 ], [ 1.322387, 43.190989 ], [ 1.314608, 43.189995 ], [ 1.311658, 43.19165 ], [ 1.305721, 43.194912 ], [ 1.302034, 43.193576 ], [ 1.296283, 43.189284 ], [ 1.272331, 43.19585 ], [ 1.266351, 43.19148 ], [ 1.268142, 43.190779 ], [ 1.264613, 43.188734 ], [ 1.253254, 43.183792 ], [ 1.249383, 43.183306 ], [ 1.247613, 43.18654 ], [ 1.239495, 43.189065 ], [ 1.230324, 43.18739 ], [ 1.227735, 43.174001 ], [ 1.216928, 43.16329 ], [ 1.217172, 43.156579 ], [ 1.223738, 43.152072 ], [ 1.237564, 43.14998 ], [ 1.250818, 43.148097 ], [ 1.255381, 43.14795 ], [ 1.273873, 43.148388 ], [ 1.276705, 43.141992 ], [ 1.299357, 43.124961 ], [ 1.302718, 43.12259 ], [ 1.290166, 43.123439 ], [ 1.282698, 43.11601 ], [ 1.281744, 43.112995 ], [ 1.278927, 43.11026 ], [ 1.260737, 43.10799 ], [ 1.261854, 43.09165 ], [ 1.249571, 43.089042 ], [ 1.245513, 43.088076 ], [ 1.241135, 43.087537 ], [ 1.223571, 43.085926 ], [ 1.2221, 43.089078 ], [ 1.210476, 43.106905 ], [ 1.213204, 43.109236 ], [ 1.210751, 43.1151 ], [ 1.199329, 43.122617 ], [ 1.198395, 43.12542 ], [ 1.177517, 43.138201 ], [ 1.174984, 43.140974 ], [ 1.162565, 43.13204 ], [ 1.145819, 43.13863 ], [ 1.124082, 43.15691 ], [ 1.115991, 43.149875 ], [ 1.11207, 43.14841 ], [ 1.11198, 43.145531 ], [ 1.108471, 43.144228 ], [ 1.104069, 43.14396 ], [ 1.088091, 43.140035 ], [ 1.087977, 43.133825 ], [ 1.084129, 43.135403 ], [ 1.062938, 43.13867 ], [ 1.053544, 43.145454 ], [ 1.051863, 43.14391 ], [ 1.051446, 43.14061 ], [ 1.048409, 43.13815 ], [ 1.052319, 43.132935 ], [ 1.050845, 43.11982 ], [ 1.048314, 43.11731 ], [ 1.03823, 43.100308 ], [ 1.025497, 43.10214 ], [ 1.009501, 43.113484 ], [ 1.005098, 43.113303 ], [ 1.000889, 43.11428 ], [ 1.004142, 43.108616 ], [ 0.996328, 43.09811 ], [ 0.992095, 43.098018 ], [ 0.99167, 43.091173 ], [ 1.004964, 43.0816 ], [ 0.999629, 43.0765 ], [ 0.978285, 43.073009 ], [ 0.980334, 43.07022 ], [ 0.985586, 43.06247 ], [ 0.983483, 43.05626 ], [ 0.988953, 43.04786 ], [ 0.993263, 43.04842 ], [ 0.99437, 43.03985 ], [ 0.993153, 43.039558 ], [ 0.990214, 43.041564 ], [ 0.984119, 43.04539 ], [ 0.98455, 43.04218 ], [ 0.989042, 43.023396 ], [ 0.992966, 43.02338 ], [ 0.996808, 43.023981 ], [ 1.007949, 43.018763 ], [ 1.013484, 43.010022 ], [ 1.02239, 43.010195 ], [ 1.018611, 43.008147 ], [ 1.005529, 43.006087 ], [ 0.995098, 42.990834 ], [ 0.980532, 42.977687 ], [ 0.979101, 42.97443 ], [ 0.975795, 42.972974 ], [ 0.964711, 42.970804 ], [ 0.961393, 42.96831 ], [ 0.938102, 42.965646 ], [ 0.931165, 42.96643 ], [ 0.927664, 42.966687 ], [ 0.916804, 42.96074 ], [ 0.912639, 42.9594 ], [ 0.908073, 42.95831 ], [ 0.874911, 42.957776 ], [ 0.875793, 42.95445 ], [ 0.885379, 42.935725 ], [ 0.88452, 42.93244 ], [ 0.873674, 42.92673 ], [ 0.864822, 42.92743 ], [ 0.857163, 42.92399 ], [ 0.843739, 42.925182 ], [ 0.840735, 42.922675 ], [ 0.837338, 42.92054 ], [ 0.826682, 42.9155 ], [ 0.834232, 42.900791 ], [ 0.838049, 42.89883 ], [ 0.842883, 42.889585 ], [ 0.835258, 42.87359 ], [ 0.839447, 42.867521 ], [ 0.848211, 42.86533 ], [ 0.85666, 42.84052 ], [ 0.859883, 42.8383 ], [ 0.858306, 42.825719 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "33", "CODE_DEPT": "32", "NOM_DEPT": "GERS", "CODE_CHF": "013", "NOM_CHF": "AUCH", "X_CHF_LIEU": "5054", "Y_CHF_LIEU": "62858", "X_CENTROID": "4946", "Y_CENTROID": "62915", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.606811, 43.31089 ], [ 0.603125, 43.3121 ], [ 0.599695, 43.31365 ], [ 0.595984, 43.315758 ], [ 0.579671, 43.3212 ], [ 0.571099, 43.319836 ], [ 0.566583, 43.320815 ], [ 0.547069, 43.329806 ], [ 0.543299, 43.328587 ], [ 0.539688, 43.32713 ], [ 0.537018, 43.32757 ], [ 0.533036, 43.32959 ], [ 0.514701, 43.333342 ], [ 0.510377, 43.33384 ], [ 0.497721, 43.325993 ], [ 0.49354, 43.32548 ], [ 0.479816, 43.33259 ], [ 0.476404, 43.33223 ], [ 0.472977, 43.332483 ], [ 0.469934, 43.33497 ], [ 0.461134, 43.336562 ], [ 0.457253, 43.337884 ], [ 0.445023, 43.340611 ], [ 0.443605, 43.337553 ], [ 0.442971, 43.327926 ], [ 0.438138, 43.328486 ], [ 0.418738, 43.32808 ], [ 0.395823, 43.334244 ], [ 0.393631, 43.33744 ], [ 0.393953, 43.340409 ], [ 0.398672, 43.35144 ], [ 0.394226, 43.351019 ], [ 0.387506, 43.355321 ], [ 0.378548, 43.35537 ], [ 0.375684, 43.35299 ], [ 0.363876, 43.34957 ], [ 0.346156, 43.34814 ], [ 0.339845, 43.34377 ], [ 0.33135, 43.342654 ], [ 0.33095, 43.34597 ], [ 0.325407, 43.37478 ], [ 0.322128, 43.372589 ], [ 0.311893, 43.36716 ], [ 0.300517, 43.37136 ], [ 0.300552, 43.374844 ], [ 0.298759, 43.38858 ], [ 0.293995, 43.38779 ], [ 0.271197, 43.38262 ], [ 0.266934, 43.38168 ], [ 0.244136, 43.37272 ], [ 0.240272, 43.3707 ], [ 0.231704, 43.367712 ], [ 0.214771, 43.36984 ], [ 0.206345, 43.36778 ], [ 0.203647, 43.37024 ], [ 0.198076, 43.37492 ], [ 0.182031, 43.37118 ], [ 0.176969, 43.37704 ], [ 0.176024, 43.380442 ], [ 0.180075, 43.379125 ], [ 0.179426, 43.38255 ], [ 0.173805, 43.40277 ], [ 0.169555, 43.40181 ], [ 0.157076, 43.39925 ], [ 0.148339, 43.40516 ], [ 0.148276, 43.408683 ], [ 0.134549, 43.42249 ], [ 0.138111, 43.43305 ], [ 0.137459, 43.433992 ], [ 0.161807, 43.44151 ], [ 0.166064, 43.44238 ], [ 0.158148, 43.454315 ], [ 0.155394, 43.457025 ], [ 0.155302, 43.45788 ], [ 0.152138, 43.45988 ], [ 0.148229, 43.465191 ], [ 0.14453, 43.463761 ], [ 0.140635, 43.465044 ], [ 0.133654, 43.468209 ], [ 0.130741, 43.474065 ], [ 0.130044, 43.477395 ], [ 0.127279, 43.490655 ], [ 0.130128, 43.49304 ], [ 0.127468, 43.499 ], [ 0.125196, 43.50165 ], [ 0.112248, 43.51737 ], [ 0.108474, 43.51542 ], [ 0.091886, 43.510248 ], [ 0.082, 43.51736 ], [ 0.080576, 43.52395 ], [ 0.067742, 43.51941 ], [ 0.053621, 43.518767 ], [ 0.039857, 43.5369 ], [ 0.036462, 43.53938 ], [ 0.030055, 43.54457 ], [ 0.015782, 43.54339 ], [ 0.010764, 43.554897 ], [ 0.00946, 43.55783 ], [ 0.008294, 43.56073 ], [ -0.001666, 43.56532 ], [ -0.006586, 43.59283 ], [ -0.00871, 43.595291 ], [ -0.015009, 43.60552 ], [ -0.029866, 43.605067 ], [ -0.033826, 43.604731 ], [ -0.034107, 43.60747 ], [ -0.0383, 43.60614 ], [ -0.043995, 43.611191 ], [ -0.055966, 43.60653 ], [ -0.074213, 43.60618 ], [ -0.075589, 43.5928 ], [ -0.079109, 43.590517 ], [ -0.09313, 43.590695 ], [ -0.097509, 43.589427 ], [ -0.097245, 43.58591 ], [ -0.096783, 43.582406 ], [ -0.10552, 43.5818 ], [ -0.117675, 43.58552 ], [ -0.125567, 43.58349 ], [ -0.128961, 43.58145 ], [ -0.133718, 43.58144 ], [ -0.151007, 43.58546 ], [ -0.157822, 43.58145 ], [ -0.162108, 43.58167 ], [ -0.165057, 43.583931 ], [ -0.17692, 43.596596 ], [ -0.200656, 43.58543 ], [ -0.205011, 43.584 ], [ -0.206209, 43.587271 ], [ -0.210607, 43.593237 ], [ -0.228803, 43.589645 ], [ -0.238912, 43.58304 ], [ -0.242837, 43.58498 ], [ -0.249482, 43.596664 ], [ -0.254007, 43.596709 ], [ -0.254238, 43.600124 ], [ -0.248946, 43.60578 ], [ -0.247204, 43.61596 ], [ -0.274673, 43.61599 ], [ -0.280401, 43.62078 ], [ -0.281223, 43.624095 ], [ -0.280375, 43.627255 ], [ -0.282112, 43.643079 ], [ -0.266968, 43.63694 ], [ -0.263362, 43.638727 ], [ -0.263359, 43.64499 ], [ -0.261803, 43.64795 ], [ -0.259198, 43.653162 ], [ -0.246276, 43.654944 ], [ -0.243276, 43.663958 ], [ -0.23973, 43.671242 ], [ -0.24933, 43.671847 ], [ -0.256714, 43.6758 ], [ -0.254545, 43.682624 ], [ -0.241216, 43.692676 ], [ -0.247381, 43.70924 ], [ -0.226314, 43.71698 ], [ -0.222236, 43.71887 ], [ -0.218276, 43.72088 ], [ -0.194143, 43.73702 ], [ -0.195896, 43.740162 ], [ -0.196408, 43.746866 ], [ -0.218864, 43.750329 ], [ -0.213934, 43.755662 ], [ -0.209199, 43.756315 ], [ -0.207784, 43.759662 ], [ -0.215682, 43.77241 ], [ -0.214828, 43.782627 ], [ -0.222128, 43.78709 ], [ -0.221604, 43.79037 ], [ -0.218647, 43.79659 ], [ -0.226956, 43.807666 ], [ -0.216, 43.81254 ], [ -0.212633, 43.80928 ], [ -0.194708, 43.809211 ], [ -0.196344, 43.82912 ], [ -0.189844, 43.833697 ], [ -0.19342, 43.84001 ], [ -0.194496, 43.843009 ], [ -0.208908, 43.85767 ], [ -0.204298, 43.860257 ], [ -0.195834, 43.8707 ], [ -0.187112, 43.863894 ], [ -0.185723, 43.866889 ], [ -0.187532, 43.86985 ], [ -0.194002, 43.88158 ], [ -0.201257, 43.88527 ], [ -0.20535, 43.88498 ], [ -0.215616, 43.88927 ], [ -0.219239, 43.89122 ], [ -0.231716, 43.890962 ], [ -0.239879, 43.89741 ], [ -0.232826, 43.90154 ], [ -0.227893, 43.91079 ], [ -0.21685, 43.90762 ], [ -0.209669, 43.911734 ], [ -0.203483, 43.91339 ], [ -0.200575, 43.91464 ], [ -0.19871, 43.91782 ], [ -0.179029, 43.93649 ], [ -0.163922, 43.928606 ], [ -0.155915, 43.93233 ], [ -0.153158, 43.93882 ], [ -0.135133, 43.9363 ], [ -0.125325, 43.9436 ], [ -0.106746, 43.928834 ], [ -0.102561, 43.927278 ], [ -0.098748, 43.92889 ], [ -0.095423, 43.931002 ], [ -0.097864, 43.943353 ], [ -0.094468, 43.94579 ], [ -0.073635, 43.94456 ], [ -0.060463, 43.9588 ], [ -0.046915, 43.96123 ], [ -0.036169, 43.98374 ], [ -0.004915, 43.96253 ], [ -0.000961, 43.96061 ], [ 0.005561, 43.955612 ], [ 0.005383, 43.94523 ], [ -0.019936, 43.92927 ], [ 0.015984, 43.912245 ], [ 0.02921, 43.90203 ], [ 0.033178, 43.89998 ], [ 0.036927, 43.90213 ], [ 0.058618, 43.898381 ], [ 0.069083, 43.905345 ], [ 0.075082, 43.914682 ], [ 0.074765, 43.918186 ], [ 0.06974, 43.935252 ], [ 0.055391, 43.95707 ], [ 0.067104, 43.967359 ], [ 0.067536, 43.974242 ], [ 0.069724, 43.97655 ], [ 0.076046, 43.98314 ], [ 0.080372, 43.98172 ], [ 0.093313, 43.98574 ], [ 0.107388, 43.985382 ], [ 0.127415, 43.998581 ], [ 0.126847, 44.001926 ], [ 0.141, 43.993642 ], [ 0.138625, 43.97659 ], [ 0.156784, 43.972809 ], [ 0.161035, 43.97435 ], [ 0.164053, 43.977096 ], [ 0.165747, 43.99445 ], [ 0.18114, 44.002528 ], [ 0.189807, 44.015008 ], [ 0.193466, 44.01369 ], [ 0.201762, 44.014234 ], [ 0.214734, 44.02279 ], [ 0.218721, 44.02113 ], [ 0.229143, 44.02136 ], [ 0.232775, 44.02239 ], [ 0.232995, 44.00939 ], [ 0.250636, 44.004261 ], [ 0.259824, 44.005699 ], [ 0.27114, 44.00102 ], [ 0.273552, 43.998054 ], [ 0.28235, 43.998 ], [ 0.302772, 43.991395 ], [ 0.305493, 43.993992 ], [ 0.318026, 43.997245 ], [ 0.31486, 44.00671 ], [ 0.31548, 44.00997 ], [ 0.32475, 44.00785 ], [ 0.35707, 44.01553 ], [ 0.372908, 44.008429 ], [ 0.382444, 44.008342 ], [ 0.397883, 44.02188 ], [ 0.412024, 44.023499 ], [ 0.418874, 44.02821 ], [ 0.437588, 44.02919 ], [ 0.44245, 44.02876 ], [ 0.447452, 44.041621 ], [ 0.450312, 44.04438 ], [ 0.450621, 44.046404 ], [ 0.45866, 44.052579 ], [ 0.459759, 44.055378 ], [ 0.485403, 44.055439 ], [ 0.485697, 44.058687 ], [ 0.488817, 44.056463 ], [ 0.497471, 44.05758 ], [ 0.503819, 44.05377 ], [ 0.504717, 44.050667 ], [ 0.51158, 44.06274 ], [ 0.522484, 44.056951 ], [ 0.535071, 44.055209 ], [ 0.538427, 44.052952 ], [ 0.54609, 44.05623 ], [ 0.55874, 44.05822 ], [ 0.567315, 44.061234 ], [ 0.576884, 44.07345 ], [ 0.584703, 44.07726 ], [ 0.601222, 44.07801 ], [ 0.599327, 44.07495 ], [ 0.622547, 44.064176 ], [ 0.631509, 44.052863 ], [ 0.632705, 44.04963 ], [ 0.652847, 44.042833 ], [ 0.65417, 44.032849 ], [ 0.662534, 44.024582 ], [ 0.676267, 44.026883 ], [ 0.679586, 44.029348 ], [ 0.682755, 44.04224 ], [ 0.694547, 44.045124 ], [ 0.704967, 44.055725 ], [ 0.707923, 44.05829 ], [ 0.717115, 44.05759 ], [ 0.738933, 44.062491 ], [ 0.741635, 44.0652 ], [ 0.750176, 44.065523 ], [ 0.752327, 44.05944 ], [ 0.753347, 44.05637 ], [ 0.758697, 44.05113 ], [ 0.757886, 44.044459 ], [ 0.756565, 44.04124 ], [ 0.760935, 44.031997 ], [ 0.764048, 44.029639 ], [ 0.797375, 44.04396 ], [ 0.811224, 44.049663 ], [ 0.813507, 44.05228 ], [ 0.822057, 44.055596 ], [ 0.836679, 44.046981 ], [ 0.850634, 44.047679 ], [ 0.853937, 44.04218 ], [ 0.861963, 44.040185 ], [ 0.86534, 44.038325 ], [ 0.860854, 44.03746 ], [ 0.857868, 44.034901 ], [ 0.848912, 44.034104 ], [ 0.841769, 44.025329 ], [ 0.824257, 44.02906 ], [ 0.819879, 44.027696 ], [ 0.81585, 44.02604 ], [ 0.822488, 44.01464 ], [ 0.817424, 44.009073 ], [ 0.823675, 44.00673 ], [ 0.825149, 44.00441 ], [ 0.825979, 44.00096 ], [ 0.824219, 43.99446 ], [ 0.809019, 43.982047 ], [ 0.808342, 43.981179 ], [ 0.805555, 43.97941 ], [ 0.8009, 43.97726 ], [ 0.797205, 43.97512 ], [ 0.792216, 43.96615 ], [ 0.790753, 43.96307 ], [ 0.785137, 43.95809 ], [ 0.783778, 43.954916 ], [ 0.760114, 43.945304 ], [ 0.760549, 43.938669 ], [ 0.767958, 43.92478 ], [ 0.770004, 43.92214 ], [ 0.809298, 43.932302 ], [ 0.818672, 43.927583 ], [ 0.819943, 43.924979 ], [ 0.845156, 43.91536 ], [ 0.849347, 43.91718 ], [ 0.850473, 43.92001 ], [ 0.85214, 43.9227 ], [ 0.856065, 43.92102 ], [ 0.864678, 43.92318 ], [ 0.875289, 43.91283 ], [ 0.883738, 43.910326 ], [ 0.888197, 43.90962 ], [ 0.889231, 43.90425 ], [ 0.901197, 43.900841 ], [ 0.904654, 43.89893 ], [ 0.900571, 43.89653 ], [ 0.883251, 43.88887 ], [ 0.882866, 43.88583 ], [ 0.886033, 43.872245 ], [ 0.900972, 43.863621 ], [ 0.911024, 43.851768 ], [ 0.912698, 43.84849 ], [ 0.908473, 43.8494 ], [ 0.89538, 43.849253 ], [ 0.895239, 43.839897 ], [ 0.920762, 43.83302 ], [ 0.925163, 43.83203 ], [ 0.924206, 43.828939 ], [ 0.914785, 43.818577 ], [ 0.906108, 43.8111 ], [ 0.897205, 43.793232 ], [ 0.897026, 43.78662 ], [ 0.905542, 43.78412 ], [ 0.918354, 43.786473 ], [ 0.924358, 43.79153 ], [ 0.942257, 43.792112 ], [ 0.953983, 43.787372 ], [ 0.953642, 43.78406 ], [ 0.959099, 43.7718 ], [ 0.969891, 43.76138 ], [ 0.966056, 43.759567 ], [ 0.974622, 43.759295 ], [ 0.99219, 43.743895 ], [ 0.98905, 43.74386 ], [ 0.985922, 43.74382 ], [ 1.007789, 43.72879 ], [ 1.011973, 43.727695 ], [ 1.023419, 43.721873 ], [ 1.02217, 43.716017 ], [ 1.024347, 43.712987 ], [ 1.027388, 43.710432 ], [ 1.04073, 43.712176 ], [ 1.052021, 43.706375 ], [ 1.056108, 43.704756 ], [ 1.063925, 43.70292 ], [ 1.065703, 43.70023 ], [ 1.051577, 43.681849 ], [ 1.051339, 43.67864 ], [ 1.049022, 43.67602 ], [ 1.056834, 43.673842 ], [ 1.058015, 43.670848 ], [ 1.062518, 43.67116 ], [ 1.074826, 43.66171 ], [ 1.079461, 43.66252 ], [ 1.093458, 43.664383 ], [ 1.101383, 43.660561 ], [ 1.099477, 43.657494 ], [ 1.08861, 43.64729 ], [ 1.094498, 43.64243 ], [ 1.115457, 43.63673 ], [ 1.115933, 43.6396 ], [ 1.127421, 43.64076 ], [ 1.130581, 43.64265 ], [ 1.138899, 43.64183 ], [ 1.144935, 43.637614 ], [ 1.147455, 43.635182 ], [ 1.146816, 43.632336 ], [ 1.1426, 43.621311 ], [ 1.146019, 43.619029 ], [ 1.158654, 43.60518 ], [ 1.171418, 43.606896 ], [ 1.1809, 43.6141 ], [ 1.185959, 43.608462 ], [ 1.188439, 43.60562 ], [ 1.200479, 43.595726 ], [ 1.201942, 43.575518 ], [ 1.199343, 43.56918 ], [ 1.166831, 43.572528 ], [ 1.162297, 43.573802 ], [ 1.163369, 43.570859 ], [ 1.156696, 43.556634 ], [ 1.152204, 43.55702 ], [ 1.125451, 43.554299 ], [ 1.112391, 43.55671 ], [ 1.114137, 43.553653 ], [ 1.118141, 43.54553 ], [ 1.105617, 43.5366 ], [ 1.097081, 43.533231 ], [ 1.091417, 43.542501 ], [ 1.084108, 43.54648 ], [ 1.074806, 43.54643 ], [ 1.05963, 43.5393 ], [ 1.050552, 43.541036 ], [ 1.073076, 43.52903 ], [ 1.076593, 43.52668 ], [ 1.06845, 43.523492 ], [ 1.055315, 43.524976 ], [ 1.052928, 43.51839 ], [ 1.069796, 43.507 ], [ 1.072887, 43.50442 ], [ 1.05932, 43.504177 ], [ 1.051077, 43.48947 ], [ 1.033751, 43.48682 ], [ 1.03749, 43.48556 ], [ 1.020032, 43.47638 ], [ 1.017906, 43.47354 ], [ 1.038859, 43.463194 ], [ 1.04167, 43.460815 ], [ 1.04394, 43.458372 ], [ 1.037108, 43.45512 ], [ 1.039075, 43.452497 ], [ 1.034473, 43.45017 ], [ 1.03388, 43.44726 ], [ 1.033454, 43.44419 ], [ 1.032272, 43.441214 ], [ 1.021751, 43.432896 ], [ 1.018914, 43.430658 ], [ 1.021059, 43.428609 ], [ 1.028599, 43.42044 ], [ 1.023514, 43.41499 ], [ 1.022788, 43.4117 ], [ 1.004308, 43.41384 ], [ 0.997091, 43.40981 ], [ 0.993933, 43.407268 ], [ 1.001607, 43.391022 ], [ 0.998926, 43.384385 ], [ 1.005037, 43.37999 ], [ 1.002876, 43.37686 ], [ 0.998763, 43.376283 ], [ 0.993662, 43.366532 ], [ 0.989167, 43.365621 ], [ 0.980537, 43.36305 ], [ 0.976605, 43.363668 ], [ 0.96487, 43.37149 ], [ 0.968903, 43.377454 ], [ 0.963618, 43.386678 ], [ 0.9469, 43.38523 ], [ 0.944659, 43.380605 ], [ 0.942091, 43.383427 ], [ 0.927285, 43.39507 ], [ 0.927776, 43.39822 ], [ 0.917422, 43.40299 ], [ 0.917282, 43.40615 ], [ 0.90473, 43.407828 ], [ 0.90223, 43.40529 ], [ 0.897917, 43.406436 ], [ 0.885639, 43.41003 ], [ 0.883107, 43.4104 ], [ 0.880555, 43.410633 ], [ 0.875921, 43.41079 ], [ 0.864511, 43.41586 ], [ 0.857069, 43.41447 ], [ 0.853479, 43.41373 ], [ 0.844325, 43.409936 ], [ 0.840405, 43.41109 ], [ 0.821119, 43.417059 ], [ 0.818079, 43.41451 ], [ 0.807663, 43.40017 ], [ 0.807297, 43.39972 ], [ 0.803342, 43.401805 ], [ 0.770422, 43.41681 ], [ 0.752092, 43.41699 ], [ 0.75717, 43.40772 ], [ 0.75493, 43.404709 ], [ 0.751705, 43.400979 ], [ 0.749961, 43.398881 ], [ 0.744299, 43.38179 ], [ 0.740799, 43.37946 ], [ 0.7321, 43.371635 ], [ 0.716226, 43.378699 ], [ 0.702998, 43.364496 ], [ 0.700061, 43.361122 ], [ 0.69924, 43.359763 ], [ 0.697166, 43.357334 ], [ 0.693641, 43.35234 ], [ 0.690313, 43.349844 ], [ 0.675321, 43.332306 ], [ 0.674719, 43.32951 ], [ 0.659808, 43.319345 ], [ 0.65681, 43.317273 ], [ 0.644501, 43.31235 ], [ 0.616602, 43.31552 ], [ 0.611852, 43.31565 ], [ 0.610158, 43.3128 ], [ 0.606811, 43.31089 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "34", "CODE_DEPT": "33", "NOM_DEPT": "GIRONDE", "CODE_CHF": "063", "NOM_CHF": "BORDEAUX", "X_CHF_LIEU": "4172", "Y_CHF_LIEU": "64218", "X_CENTROID": "4175", "Y_CENTROID": "64203", "CODE_REG": "72", "NOM_REGION": "AQUITAINE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.140689, 44.22641 ], [ -0.144544, 44.22862 ], [ -0.166844, 44.24253 ], [ -0.176352, 44.25882 ], [ -0.190181, 44.268894 ], [ -0.19874, 44.26838 ], [ -0.206465, 44.264203 ], [ -0.226004, 44.264784 ], [ -0.228163, 44.25448 ], [ -0.223807, 44.209365 ], [ -0.223447, 44.205898 ], [ -0.259675, 44.19691 ], [ -0.264191, 44.195748 ], [ -0.273621, 44.194017 ], [ -0.305993, 44.20185 ], [ -0.310572, 44.20306 ], [ -0.368231, 44.20621 ], [ -0.372914, 44.207053 ], [ -0.385436, 44.208893 ], [ -0.389617, 44.209485 ], [ -0.396314, 44.237468 ], [ -0.384245, 44.28282 ], [ -0.383388, 44.28632 ], [ -0.38792, 44.287649 ], [ -0.402291, 44.28719 ], [ -0.429625, 44.301545 ], [ -0.43184, 44.322577 ], [ -0.43661, 44.3228 ], [ -0.479411, 44.325091 ], [ -0.517635, 44.339111 ], [ -0.519075, 44.342282 ], [ -0.528103, 44.36465 ], [ -0.532663, 44.366067 ], [ -0.560007, 44.37463 ], [ -0.570474, 44.38224 ], [ -0.603107, 44.390941 ], [ -0.607275, 44.39225 ], [ -0.641469, 44.40023 ], [ -0.637047, 44.40183 ], [ -0.625643, 44.408052 ], [ -0.627318, 44.429273 ], [ -0.628064, 44.44285 ], [ -0.63573, 44.44685 ], [ -0.639557, 44.448856 ], [ -0.643947, 44.450405 ], [ -0.677006, 44.456354 ], [ -0.682781, 44.45074 ], [ -0.681853, 44.4452 ], [ -0.694507, 44.441322 ], [ -0.698762, 44.44272 ], [ -0.703447, 44.443582 ], [ -0.726968, 44.44754 ], [ -0.774077, 44.440102 ], [ -0.780281, 44.428111 ], [ -0.784941, 44.42914 ], [ -0.794567, 44.42809 ], [ -0.81122, 44.420835 ], [ -0.840281, 44.41841 ], [ -0.909148, 44.43614 ], [ -0.919623, 44.44316 ], [ -0.944148, 44.43709 ], [ -0.948141, 44.435901 ], [ -0.970882, 44.429234 ], [ -1.024305, 44.423247 ], [ -1.029159, 44.4227 ], [ -1.025627, 44.425028 ], [ -1.007738, 44.436515 ], [ -0.992453, 44.461461 ], [ -0.990686, 44.46477 ], [ -0.981033, 44.48479 ], [ -0.988434, 44.50901 ], [ -0.996354, 44.51144 ], [ -1.011142, 44.510376 ], [ -1.030022, 44.50858 ], [ -1.080766, 44.53059 ], [ -1.085166, 44.53219 ], [ -1.087011, 44.529124 ], [ -1.106985, 44.50264 ], [ -1.111609, 44.501446 ], [ -1.199818, 44.47959 ], [ -1.204313, 44.478576 ], [ -1.25389, 44.467604 ], [ -1.250952, 44.506348 ], [ -1.259822, 44.544429 ], [ -1.232352, 44.568782 ], [ -1.213458, 44.597461 ], [ -1.20507, 44.61407 ], [ -1.204778, 44.635188 ], [ -1.204346, 44.638702 ], [ -1.193837, 44.65816 ], [ -1.186043, 44.662233 ], [ -1.16174, 44.663097 ], [ -1.143716, 44.6585 ], [ -1.141916, 44.651878 ], [ -1.153621, 44.646544 ], [ -1.153779, 44.643202 ], [ -1.145872, 44.642832 ], [ -1.139061, 44.64705 ], [ -1.124932, 44.64726 ], [ -1.11836, 44.643563 ], [ -1.118773, 44.64023 ], [ -1.112496, 44.64487 ], [ -1.084311, 44.641212 ], [ -1.066299, 44.646203 ], [ -1.056811, 44.644731 ], [ -1.048876, 44.64835 ], [ -1.044034, 44.648625 ], [ -1.040816, 44.65111 ], [ -1.016365, 44.641512 ], [ -1.018581, 44.647796 ], [ -1.009295, 44.64898 ], [ -1.004681, 44.648192 ], [ -1.006272, 44.654769 ], [ -1.018659, 44.66465 ], [ -1.017862, 44.66799 ], [ -1.020115, 44.67106 ], [ -1.02534, 44.676991 ], [ -1.051925, 44.684755 ], [ -1.06248, 44.691994 ], [ -1.056332, 44.694888 ], [ -1.037418, 44.69232 ], [ -1.037786, 44.695504 ], [ -1.078191, 44.722193 ], [ -1.100564, 44.73941 ], [ -1.117714, 44.74509 ], [ -1.12204, 44.751121 ], [ -1.118511, 44.753389 ], [ -1.116329, 44.756409 ], [ -1.119323, 44.753764 ], [ -1.128249, 44.75143 ], [ -1.132186, 44.75336 ], [ -1.161933, 44.774908 ], [ -1.177624, 44.761569 ], [ -1.174084, 44.751389 ], [ -1.177351, 44.74479 ], [ -1.207736, 44.7167 ], [ -1.219313, 44.709896 ], [ -1.229232, 44.697535 ], [ -1.237442, 44.68067 ], [ -1.238353, 44.67715 ], [ -1.244958, 44.64561 ], [ -1.241877, 44.638918 ], [ -1.244944, 44.62482 ], [ -1.251794, 44.620235 ], [ -1.26076, 44.628129 ], [ -1.261328, 44.649493 ], [ -1.233619, 44.8054 ], [ -1.232986, 44.80894 ], [ -1.214863, 44.917282 ], [ -1.214517, 44.920794 ], [ -1.194636, 45.06483 ], [ -1.194341, 45.068354 ], [ -1.187448, 45.12496 ], [ -1.187115, 45.12851 ], [ -1.169941, 45.246494 ], [ -1.169507, 45.25007 ], [ -1.164967, 45.28157 ], [ -1.16454, 45.28507 ], [ -1.158977, 45.355286 ], [ -1.160302, 45.39044 ], [ -1.160494, 45.40565 ], [ -1.151499, 45.44031 ], [ -1.154857, 45.46414 ], [ -1.155895, 45.46756 ], [ -1.154377, 45.48119 ], [ -1.137142, 45.50997 ], [ -1.120295, 45.522636 ], [ -1.117079, 45.52528 ], [ -1.1003, 45.5428 ], [ -1.093177, 45.559984 ], [ -1.071278, 45.568354 ], [ -1.06672, 45.56975 ], [ -1.0628, 45.56828 ], [ -1.061945, 45.554175 ], [ -1.043822, 45.5429 ], [ -1.041002, 45.539422 ], [ -1.040934, 45.53602 ], [ -1.044327, 45.534163 ], [ -1.054126, 45.53536 ], [ -1.057592, 45.52959 ], [ -1.069896, 45.525422 ], [ -1.068351, 45.515027 ], [ -1.051666, 45.50257 ], [ -1.047731, 45.50048 ], [ -1.02786, 45.49257 ], [ -1.019999, 45.48475 ], [ -1.016856, 45.48241 ], [ -0.982439, 45.46076 ], [ -0.979011, 45.45851 ], [ -0.932489, 45.439639 ], [ -0.904069, 45.41155 ], [ -0.903699, 45.408099 ], [ -0.868284, 45.391369 ], [ -0.864457, 45.389328 ], [ -0.846176, 45.37844 ], [ -0.843365, 45.37571 ], [ -0.810748, 45.35184 ], [ -0.810253, 45.348518 ], [ -0.803319, 45.343967 ], [ -0.784062, 45.312879 ], [ -0.782552, 45.30965 ], [ -0.768074, 45.28733 ], [ -0.767201, 45.28386 ], [ -0.764974, 45.280764 ], [ -0.746968, 45.226823 ], [ -0.742433, 45.227867 ], [ -0.73797, 45.229035 ], [ -0.695018, 45.236153 ], [ -0.69012, 45.236369 ], [ -0.699556, 45.28127 ], [ -0.698893, 45.284755 ], [ -0.714581, 45.324304 ], [ -0.714861, 45.32774 ], [ -0.708651, 45.32736 ], [ -0.650712, 45.3225 ], [ -0.642088, 45.3151 ], [ -0.633594, 45.31845 ], [ -0.607635, 45.324009 ], [ -0.599195, 45.32134 ], [ -0.594481, 45.321143 ], [ -0.594006, 45.331596 ], [ -0.585303, 45.342899 ], [ -0.572742, 45.33321 ], [ -0.568974, 45.331235 ], [ -0.573978, 45.31424 ], [ -0.573867, 45.310717 ], [ -0.570631, 45.30029 ], [ -0.567662, 45.29742 ], [ -0.55176, 45.295188 ], [ -0.548704, 45.293121 ], [ -0.516876, 45.288782 ], [ -0.513854, 45.286227 ], [ -0.490146, 45.291558 ], [ -0.48602, 45.293579 ], [ -0.472986, 45.293633 ], [ -0.462073, 45.28858 ], [ -0.457654, 45.288358 ], [ -0.437376, 45.282116 ], [ -0.433463, 45.28057 ], [ -0.418508, 45.27361 ], [ -0.4177, 45.264387 ], [ -0.41912, 45.261324 ], [ -0.424028, 45.24856 ], [ -0.409905, 45.24797 ], [ -0.406009, 45.238707 ], [ -0.413635, 45.226568 ], [ -0.413187, 45.22321 ], [ -0.419461, 45.206985 ], [ -0.417435, 45.20388 ], [ -0.402585, 45.189701 ], [ -0.40061, 45.182813 ], [ -0.399471, 45.179378 ], [ -0.385058, 45.146596 ], [ -0.383396, 45.143339 ], [ -0.378517, 45.15678 ], [ -0.366174, 45.167563 ], [ -0.362959, 45.170237 ], [ -0.338768, 45.16624 ], [ -0.323322, 45.157159 ], [ -0.316676, 45.140486 ], [ -0.31363, 45.13765 ], [ -0.309374, 45.146624 ], [ -0.307551, 45.149589 ], [ -0.279962, 45.143248 ], [ -0.275713, 45.141571 ], [ -0.273944, 45.134855 ], [ -0.256783, 45.114793 ], [ -0.245672, 45.108214 ], [ -0.221237, 45.10776 ], [ -0.212445, 45.102238 ], [ -0.209721, 45.100235 ], [ -0.191442, 45.09475 ], [ -0.166877, 45.092747 ], [ -0.161926, 45.09249 ], [ -0.15327, 45.08924 ], [ -0.143512, 45.090354 ], [ -0.110974, 45.115524 ], [ -0.092825, 45.121022 ], [ -0.087832, 45.12143 ], [ -0.061772, 45.098766 ], [ -0.057088, 45.098976 ], [ -0.05373, 45.10109 ], [ -0.046095, 45.09778 ], [ -0.0402, 45.10238 ], [ -0.025092, 45.11473 ], [ 0.00251, 45.119003 ], [ 0.006979, 45.117781 ], [ 0.031843, 45.11712 ], [ 0.045793, 45.11346 ], [ 0.061888, 45.09584 ], [ 0.067585, 45.0789 ], [ 0.070631, 45.076106 ], [ 0.072345, 45.0747 ], [ 0.073296, 45.07013 ], [ 0.055929, 45.04207 ], [ 0.044806, 45.035635 ], [ 0.042155, 45.025446 ], [ 0.040691, 45.02214 ], [ 0.03914, 45.02431 ], [ 0.039453, 45.02081 ], [ 0.035641, 45.01434 ], [ 0.040106, 44.99355 ], [ 0.036635, 44.991484 ], [ 0.029545, 44.97648 ], [ 0.017709, 44.98063 ], [ 0.013706, 44.978806 ], [ 0.014522, 44.97207 ], [ 0.00923, 44.962774 ], [ 0.005127, 44.94624 ], [ 0.016192, 44.931192 ], [ 0.018212, 44.928029 ], [ 0.022059, 44.92531 ], [ 0.033907, 44.91496 ], [ 0.02043, 44.897257 ], [ 0.01719, 44.894782 ], [ 0.015948, 44.894307 ], [ 0.014971, 44.89123 ], [ 0.012617, 44.8852 ], [ 0.001093, 44.87627 ], [ 0.001218, 44.87605 ], [ -0.001536, 44.87069 ], [ -0.004807, 44.868592 ], [ -0.010036, 44.859792 ], [ -0.032557, 44.855286 ], [ -0.03421, 44.852114 ], [ 0.003987, 44.84556 ], [ 0.008881, 44.845923 ], [ 0.022247, 44.84942 ], [ 0.039033, 44.837569 ], [ 0.037439, 44.83082 ], [ 0.043329, 44.825728 ], [ 0.047816, 44.82441 ], [ 0.050846, 44.82433 ], [ 0.064887, 44.82454 ], [ 0.070891, 44.819144 ], [ 0.075697, 44.81947 ], [ 0.082667, 44.831013 ], [ 0.091294, 44.83264 ], [ 0.095753, 44.83282 ], [ 0.108644, 44.830333 ], [ 0.109285, 44.820097 ], [ 0.114027, 44.819446 ], [ 0.114803, 44.81986 ], [ 0.124248, 44.827991 ], [ 0.148828, 44.82909 ], [ 0.157907, 44.82632 ], [ 0.17755, 44.82614 ], [ 0.182194, 44.82493 ], [ 0.184076, 44.823481 ], [ 0.189312, 44.82005 ], [ 0.192844, 44.820803 ], [ 0.206411, 44.838902 ], [ 0.209733, 44.841373 ], [ 0.217722, 44.84395 ], [ 0.22209, 44.84448 ], [ 0.238317, 44.854926 ], [ 0.241753, 44.8569 ], [ 0.243751, 44.85955 ], [ 0.239023, 44.87198 ], [ 0.284058, 44.864991 ], [ 0.288047, 44.86318 ], [ 0.311876, 44.847777 ], [ 0.315056, 44.84538 ], [ 0.299577, 44.83546 ], [ 0.300752, 44.82919 ], [ 0.29246, 44.83157 ], [ 0.285758, 44.82302 ], [ 0.268305, 44.826353 ], [ 0.263719, 44.826421 ], [ 0.263979, 44.8229 ], [ 0.265975, 44.81259 ], [ 0.274681, 44.79877 ], [ 0.27435, 44.79568 ], [ 0.271666, 44.78634 ], [ 0.274025, 44.783622 ], [ 0.280226, 44.774397 ], [ 0.293688, 44.76457 ], [ 0.297325, 44.76229 ], [ 0.296565, 44.75916 ], [ 0.271682, 44.75319 ], [ 0.267506, 44.751698 ], [ 0.249122, 44.751225 ], [ 0.235944, 44.76419 ], [ 0.226601, 44.764158 ], [ 0.224972, 44.76104 ], [ 0.218306, 44.75623 ], [ 0.211863, 44.739564 ], [ 0.218632, 44.72663 ], [ 0.201542, 44.72243 ], [ 0.200062, 44.72576 ], [ 0.193916, 44.74257 ], [ 0.18941, 44.74877 ], [ 0.184529, 44.74903 ], [ 0.180434, 44.745498 ], [ 0.178386, 44.742716 ], [ 0.172701, 44.73461 ], [ 0.164495, 44.73569 ], [ 0.161358, 44.73348 ], [ 0.15262, 44.73082 ], [ 0.141197, 44.73751 ], [ 0.139344, 44.72771 ], [ 0.136039, 44.71121 ], [ 0.130843, 44.70558 ], [ 0.128047, 44.70839 ], [ 0.119915, 44.71202 ], [ 0.11051, 44.71064 ], [ 0.105026, 44.701823 ], [ 0.100345, 44.70098 ], [ 0.107043, 44.68542 ], [ 0.115539, 44.68227 ], [ 0.129759, 44.683233 ], [ 0.134422, 44.682417 ], [ 0.133947, 44.679351 ], [ 0.130842, 44.673622 ], [ 0.133519, 44.667908 ], [ 0.142061, 44.66576 ], [ 0.159392, 44.66854 ], [ 0.163123, 44.67041 ], [ 0.167618, 44.668372 ], [ 0.180463, 44.664214 ], [ 0.183025, 44.661189 ], [ 0.181612, 44.65866 ], [ 0.17697, 44.65432 ], [ 0.173909, 44.651696 ], [ 0.168345, 44.64613 ], [ 0.165214, 44.632862 ], [ 0.160289, 44.632717 ], [ 0.146378, 44.635359 ], [ 0.141194, 44.641315 ], [ 0.13842, 44.63903 ], [ 0.139263, 44.627148 ], [ 0.154363, 44.614908 ], [ 0.150858, 44.608647 ], [ 0.146241, 44.608429 ], [ 0.133128, 44.606162 ], [ 0.117433, 44.59422 ], [ 0.11663, 44.593895 ], [ 0.113766, 44.59173 ], [ 0.110282, 44.59008 ], [ 0.105528, 44.58912 ], [ 0.082236, 44.58391 ], [ 0.085548, 44.57763 ], [ 0.082973, 44.567949 ], [ 0.074869, 44.560195 ], [ 0.072357, 44.550318 ], [ 0.068687, 44.54822 ], [ 0.064973, 44.55035 ], [ 0.03787, 44.554037 ], [ 0.032713, 44.55052 ], [ 0.029028, 44.548493 ], [ 0.020984, 44.54146 ], [ 0.016807, 44.54255 ], [ -0.001017, 44.55177 ], [ -0.00109, 44.548408 ], [ 0.017923, 44.53001 ], [ 0.009506, 44.521994 ], [ 0.00482, 44.522038 ], [ 0.001465, 44.520722 ], [ -0.00018, 44.518254 ], [ -0.004197, 44.51732 ], [ -0.015565, 44.504789 ], [ -0.01614, 44.501657 ], [ -0.016043, 44.489705 ], [ -0.013816, 44.46682 ], [ -0.007298, 44.459224 ], [ -0.002912, 44.460254 ], [ 0.004494, 44.456735 ], [ 0.007509, 44.44754 ], [ 0.004788, 44.44501 ], [ -0.002954, 44.442578 ], [ -0.007568, 44.433813 ], [ -0.005018, 44.424379 ], [ -0.011765, 44.420303 ], [ 0.006621, 44.397338 ], [ 0.015794, 44.3916 ], [ 0.018292, 44.38925 ], [ 0.016519, 44.386175 ], [ 0.010834, 44.38133 ], [ 0.021233, 44.375385 ], [ 0.014725, 44.366615 ], [ 0.009942, 44.367052 ], [ -0.001647, 44.37223 ], [ -0.011159, 44.37138 ], [ -0.028821, 44.36019 ], [ -0.032446, 44.360821 ], [ -0.036189, 44.36084 ], [ -0.040758, 44.360123 ], [ -0.059259, 44.35998 ], [ -0.069523, 44.35313 ], [ -0.078819, 44.35369 ], [ -0.080176, 44.350477 ], [ -0.085752, 44.33761 ], [ -0.080414, 44.334319 ], [ -0.077776, 44.332654 ], [ -0.057226, 44.31908 ], [ -0.03762, 44.299513 ], [ -0.034811, 44.29673 ], [ -0.042888, 44.293206 ], [ -0.033608, 44.27401 ], [ -0.049627, 44.267886 ], [ -0.053362, 44.265774 ], [ -0.064197, 44.249132 ], [ -0.066808, 44.246663 ], [ -0.073116, 44.251387 ], [ -0.08848, 44.238471 ], [ -0.104834, 44.231884 ], [ -0.11373, 44.233713 ], [ -0.119197, 44.238809 ], [ -0.123182, 44.240651 ], [ -0.125932, 44.23437 ], [ -0.136872, 44.228289 ], [ -0.140689, 44.22641 ] ] ], [ [ [ -1.029971, 44.64921 ], [ -1.031367, 44.652126 ], [ -1.026048, 44.66128 ], [ -1.014504, 44.652433 ], [ -1.017755, 44.65056 ], [ -1.024494, 44.652439 ], [ -1.028479, 44.65059 ], [ -1.029971, 44.64921 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "35", "CODE_DEPT": "34", "NOM_DEPT": "HERAULT", "CODE_CHF": "172", "NOM_CHF": "MONTPELLIER", "X_CHF_LIEU": "7707", "Y_CHF_LIEU": "62795", "X_CENTROID": "7296", "Y_CENTROID": "62756", "CODE_REG": "91", "NOM_REGION": "LANGUEDOC-ROUSSILLON" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.240561, 43.212809 ], [ 3.228989, 43.21916 ], [ 3.201526, 43.24776 ], [ 3.193229, 43.2504 ], [ 3.184023, 43.250124 ], [ 3.173126, 43.243836 ], [ 3.159183, 43.243228 ], [ 3.146508, 43.247384 ], [ 3.147017, 43.254157 ], [ 3.141627, 43.25951 ], [ 3.118897, 43.260731 ], [ 3.114664, 43.254745 ], [ 3.101424, 43.25616 ], [ 3.097452, 43.257928 ], [ 3.093639, 43.259874 ], [ 3.086199, 43.26382 ], [ 3.076978, 43.26293 ], [ 3.054347, 43.28004 ], [ 3.036064, 43.281912 ], [ 3.011118, 43.27762 ], [ 3.012103, 43.280936 ], [ 3.005738, 43.286244 ], [ 3.004816, 43.296769 ], [ 3.006281, 43.30013 ], [ 3.004423, 43.319708 ], [ 2.995281, 43.319555 ], [ 2.990723, 43.319222 ], [ 2.961798, 43.31304 ], [ 2.957536, 43.312476 ], [ 2.946079, 43.31196 ], [ 2.942061, 43.313666 ], [ 2.921249, 43.32608 ], [ 2.918369, 43.32351 ], [ 2.910982, 43.32005 ], [ 2.894929, 43.32626 ], [ 2.890884, 43.32793 ], [ 2.885119, 43.333249 ], [ 2.891178, 43.341802 ], [ 2.889495, 43.351767 ], [ 2.889904, 43.357345 ], [ 2.889793, 43.363723 ], [ 2.872288, 43.372934 ], [ 2.870568, 43.381011 ], [ 2.869181, 43.383636 ], [ 2.856778, 43.376288 ], [ 2.855626, 43.37348 ], [ 2.869575, 43.35645 ], [ 2.873742, 43.339633 ], [ 2.868538, 43.330064 ], [ 2.845974, 43.32562 ], [ 2.841926, 43.323686 ], [ 2.818156, 43.32396 ], [ 2.806109, 43.319211 ], [ 2.816603, 43.30865 ], [ 2.809682, 43.30437 ], [ 2.805735, 43.302361 ], [ 2.801825, 43.30031 ], [ 2.786537, 43.2844 ], [ 2.786968, 43.27444 ], [ 2.78708, 43.274035 ], [ 2.783181, 43.266633 ], [ 2.779998, 43.265241 ], [ 2.773293, 43.261242 ], [ 2.772493, 43.25803 ], [ 2.768509, 43.25726 ], [ 2.75252, 43.254594 ], [ 2.750072, 43.25739 ], [ 2.740772, 43.264578 ], [ 2.737904, 43.26725 ], [ 2.717737, 43.275558 ], [ 2.708919, 43.273655 ], [ 2.705185, 43.274472 ], [ 2.702969, 43.27682 ], [ 2.700303, 43.28281 ], [ 2.705513, 43.292266 ], [ 2.699148, 43.30833 ], [ 2.700735, 43.311207 ], [ 2.687773, 43.323 ], [ 2.685553, 43.31658 ], [ 2.677216, 43.31361 ], [ 2.674858, 43.303711 ], [ 2.659751, 43.29633 ], [ 2.659253, 43.292967 ], [ 2.643911, 43.29451 ], [ 2.639754, 43.295557 ], [ 2.631193, 43.29593 ], [ 2.624621, 43.28762 ], [ 2.616958, 43.284441 ], [ 2.617835, 43.287683 ], [ 2.601175, 43.298256 ], [ 2.600932, 43.301421 ], [ 2.599712, 43.31384 ], [ 2.596442, 43.31456 ], [ 2.592008, 43.31798 ], [ 2.590985, 43.3214 ], [ 2.583539, 43.333912 ], [ 2.555536, 43.337471 ], [ 2.551506, 43.33584 ], [ 2.540081, 43.34523 ], [ 2.54298, 43.347989 ], [ 2.555239, 43.366365 ], [ 2.552399, 43.37642 ], [ 2.557057, 43.38978 ], [ 2.566312, 43.39757 ], [ 2.569031, 43.400247 ], [ 2.573478, 43.399491 ], [ 2.586889, 43.39965 ], [ 2.593749, 43.40835 ], [ 2.593046, 43.411712 ], [ 2.583821, 43.412666 ], [ 2.569787, 43.42123 ], [ 2.565787, 43.42296 ], [ 2.579276, 43.4233 ], [ 2.597996, 43.43271 ], [ 2.602191, 43.43133 ], [ 2.606371, 43.431994 ], [ 2.606095, 43.43803 ], [ 2.608845, 43.44041 ], [ 2.617661, 43.438531 ], [ 2.641062, 43.45559 ], [ 2.644567, 43.45792 ], [ 2.644608, 43.46127 ], [ 2.641583, 43.46706 ], [ 2.663624, 43.46417 ], [ 2.668, 43.47005 ], [ 2.665094, 43.472677 ], [ 2.657633, 43.480958 ], [ 2.655033, 43.49418 ], [ 2.659896, 43.50346 ], [ 2.658852, 43.516923 ], [ 2.671518, 43.513697 ], [ 2.67602, 43.51346 ], [ 2.667984, 43.522062 ], [ 2.655687, 43.52725 ], [ 2.616643, 43.56538 ], [ 2.617994, 43.56872 ], [ 2.631005, 43.583242 ], [ 2.627227, 43.59319 ], [ 2.62254, 43.592463 ], [ 2.620069, 43.595423 ], [ 2.615603, 43.600518 ], [ 2.627779, 43.611106 ], [ 2.645491, 43.660672 ], [ 2.649787, 43.659444 ], [ 2.653587, 43.649991 ], [ 2.667283, 43.649448 ], [ 2.684695, 43.65381 ], [ 2.687337, 43.65093 ], [ 2.719328, 43.644412 ], [ 2.738722, 43.630334 ], [ 2.746507, 43.617845 ], [ 2.754524, 43.614139 ], [ 2.759078, 43.61489 ], [ 2.781699, 43.625876 ], [ 2.795131, 43.62463 ], [ 2.801592, 43.62954 ], [ 2.804692, 43.63216 ], [ 2.814703, 43.639479 ], [ 2.828424, 43.637432 ], [ 2.844894, 43.644763 ], [ 2.86877, 43.644965 ], [ 2.884296, 43.65713 ], [ 2.90294, 43.654647 ], [ 2.907798, 43.65475 ], [ 2.918495, 43.661993 ], [ 2.919588, 43.68659 ], [ 2.934967, 43.694712 ], [ 2.942225, 43.691774 ], [ 2.954969, 43.69654 ], [ 2.957596, 43.699448 ], [ 2.969351, 43.704023 ], [ 2.973965, 43.704627 ], [ 2.982088, 43.70803 ], [ 2.996006, 43.706493 ], [ 3.013333, 43.70144 ], [ 3.018665, 43.696 ], [ 3.022657, 43.69437 ], [ 3.031387, 43.69243 ], [ 3.048231, 43.696953 ], [ 3.060678, 43.692807 ], [ 3.061872, 43.69601 ], [ 3.062363, 43.7024 ], [ 3.069165, 43.706849 ], [ 3.054971, 43.715972 ], [ 3.057648, 43.725743 ], [ 3.053522, 43.732 ], [ 3.057115, 43.73844 ], [ 3.053162, 43.74478 ], [ 3.056275, 43.75495 ], [ 3.065413, 43.755703 ], [ 3.07351, 43.767594 ], [ 3.058796, 43.77968 ], [ 3.057048, 43.7828 ], [ 3.05838, 43.7861 ], [ 3.048568, 43.801498 ], [ 3.050173, 43.804619 ], [ 3.063813, 43.81263 ], [ 3.058661, 43.818006 ], [ 3.058733, 43.827967 ], [ 3.066312, 43.83527 ], [ 3.071172, 43.834826 ], [ 3.085706, 43.835554 ], [ 3.112567, 43.82707 ], [ 3.126978, 43.817668 ], [ 3.150705, 43.813769 ], [ 3.151466, 43.81479 ], [ 3.155002, 43.817065 ], [ 3.18238, 43.81283 ], [ 3.205308, 43.81296 ], [ 3.222688, 43.81778 ], [ 3.231794, 43.826063 ], [ 3.236311, 43.82744 ], [ 3.24472, 43.828807 ], [ 3.249037, 43.82958 ], [ 3.251333, 43.840067 ], [ 3.236408, 43.853896 ], [ 3.235019, 43.86087 ], [ 3.242077, 43.873934 ], [ 3.255494, 43.87803 ], [ 3.261857, 43.88748 ], [ 3.262608, 43.891 ], [ 3.274142, 43.89853 ], [ 3.277444, 43.896771 ], [ 3.285828, 43.893312 ], [ 3.295145, 43.89498 ], [ 3.318657, 43.891142 ], [ 3.342568, 43.89419 ], [ 3.341916, 43.903707 ], [ 3.35509, 43.912512 ], [ 3.358663, 43.91452 ], [ 3.359876, 43.91153 ], [ 3.370004, 43.916521 ], [ 3.381306, 43.91239 ], [ 3.394416, 43.910775 ], [ 3.401726, 43.91473 ], [ 3.423923, 43.91131 ], [ 3.435778, 43.900367 ], [ 3.43703, 43.886782 ], [ 3.431008, 43.87366 ], [ 3.421606, 43.87232 ], [ 3.430814, 43.864425 ], [ 3.435182, 43.86296 ], [ 3.447119, 43.868868 ], [ 3.460847, 43.87138 ], [ 3.482082, 43.890453 ], [ 3.491584, 43.89129 ], [ 3.496146, 43.89078 ], [ 3.507184, 43.896378 ], [ 3.520677, 43.888422 ], [ 3.523528, 43.88579 ], [ 3.521645, 43.86495 ], [ 3.527026, 43.859035 ], [ 3.548734, 43.85169 ], [ 3.561603, 43.855326 ], [ 3.57437, 43.84491 ], [ 3.578908, 43.843563 ], [ 3.581794, 43.846185 ], [ 3.599475, 43.849635 ], [ 3.599871, 43.852972 ], [ 3.583258, 43.85928 ], [ 3.577363, 43.867888 ], [ 3.582958, 43.87743 ], [ 3.600522, 43.88893 ], [ 3.602208, 43.89539 ], [ 3.621068, 43.91414 ], [ 3.623589, 43.916979 ], [ 3.637759, 43.91491 ], [ 3.638102, 43.898868 ], [ 3.645286, 43.90239 ], [ 3.644609, 43.913 ], [ 3.662454, 43.91127 ], [ 3.66699, 43.91057 ], [ 3.67342, 43.91326 ], [ 3.678652, 43.9261 ], [ 3.676573, 43.9324 ], [ 3.683658, 43.94063 ], [ 3.686397, 43.939498 ], [ 3.689503, 43.939937 ], [ 3.684487, 43.95166 ], [ 3.699443, 43.95823 ], [ 3.717269, 43.96098 ], [ 3.731136, 43.970681 ], [ 3.787337, 43.96687 ], [ 3.786956, 43.96361 ], [ 3.787083, 43.95384 ], [ 3.795518, 43.942277 ], [ 3.820307, 43.942408 ], [ 3.823284, 43.939785 ], [ 3.828287, 43.92406 ], [ 3.824003, 43.918054 ], [ 3.82249, 43.914978 ], [ 3.799542, 43.89082 ], [ 3.805468, 43.87859 ], [ 3.822361, 43.874084 ], [ 3.827923, 43.868948 ], [ 3.830809, 43.86642 ], [ 3.834475, 43.868664 ], [ 3.847961, 43.868749 ], [ 3.857116, 43.876165 ], [ 3.900092, 43.87873 ], [ 3.914357, 43.88765 ], [ 3.919554, 43.88197 ], [ 3.918219, 43.878665 ], [ 3.91773, 43.86833 ], [ 3.923111, 43.858788 ], [ 3.933721, 43.85425 ], [ 3.937902, 43.853577 ], [ 3.942114, 43.853379 ], [ 3.958993, 43.85351 ], [ 3.957748, 43.85043 ], [ 3.95814, 43.844132 ], [ 3.979528, 43.84268 ], [ 3.973738, 43.837118 ], [ 3.974203, 43.82721 ], [ 3.962087, 43.816405 ], [ 3.960123, 43.806046 ], [ 3.963614, 43.80451 ], [ 3.974348, 43.801474 ], [ 3.978808, 43.80287 ], [ 3.995606, 43.80989 ], [ 3.998455, 43.81149 ], [ 4.001341, 43.81305 ], [ 4.02865, 43.80156 ], [ 4.031522, 43.79893 ], [ 4.049778, 43.78757 ], [ 4.053123, 43.785046 ], [ 4.051987, 43.778 ], [ 4.051757, 43.774269 ], [ 4.059831, 43.77232 ], [ 4.064929, 43.767319 ], [ 4.067248, 43.764498 ], [ 4.083862, 43.767709 ], [ 4.091102, 43.76379 ], [ 4.095561, 43.75153 ], [ 4.099236, 43.749592 ], [ 4.103785, 43.74861 ], [ 4.111703, 43.74018 ], [ 4.114162, 43.73767 ], [ 4.122517, 43.737124 ], [ 4.133483, 43.74062 ], [ 4.143857, 43.735489 ], [ 4.145038, 43.732444 ], [ 4.15158, 43.71774 ], [ 4.153883, 43.71501 ], [ 4.162321, 43.70776 ], [ 4.164613, 43.696 ], [ 4.164313, 43.69283 ], [ 4.163626, 43.69014 ], [ 4.193818, 43.65175 ], [ 4.192906, 43.641866 ], [ 4.170054, 43.61081 ], [ 4.149622, 43.596115 ], [ 4.150216, 43.58556 ], [ 4.122875, 43.588359 ], [ 4.099889, 43.585274 ], [ 4.088261, 43.59093 ], [ 4.079447, 43.590302 ], [ 4.075126, 43.58899 ], [ 4.074673, 43.58859 ], [ 4.083496, 43.588354 ], [ 4.106343, 43.571378 ], [ 4.108712, 43.56844 ], [ 4.10274, 43.557143 ], [ 4.101042, 43.554371 ], [ 4.042516, 43.55683 ], [ 4.037657, 43.556336 ], [ 4.004763, 43.550959 ], [ 3.974016, 43.5412 ], [ 3.969386, 43.540231 ], [ 3.912291, 43.51849 ], [ 3.907956, 43.5172 ], [ 3.903821, 43.515261 ], [ 3.85278, 43.487458 ], [ 3.826219, 43.466493 ], [ 3.823545, 43.46355 ], [ 3.794526, 43.44003 ], [ 3.724916, 43.415799 ], [ 3.725368, 43.40164 ], [ 3.689099, 43.39198 ], [ 3.665745, 43.39295 ], [ 3.652847, 43.388098 ], [ 3.61948, 43.36763 ], [ 3.566689, 43.326158 ], [ 3.563656, 43.32348 ], [ 3.539809, 43.302016 ], [ 3.516013, 43.275981 ], [ 3.507807, 43.272431 ], [ 3.443607, 43.282168 ], [ 3.433626, 43.289459 ], [ 3.428965, 43.29021 ], [ 3.424149, 43.29008 ], [ 3.400448, 43.287284 ], [ 3.364786, 43.277371 ], [ 3.36059, 43.27587 ], [ 3.343555, 43.270307 ], [ 3.340277, 43.2677 ], [ 3.311623, 43.254482 ], [ 3.308215, 43.252324 ], [ 3.271341, 43.233398 ], [ 3.267666, 43.23132 ], [ 3.240561, 43.212809 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "36", "CODE_DEPT": "35", "NOM_DEPT": "ILLE-ET-VILAINE", "CODE_CHF": "238", "NOM_CHF": "RENNES", "X_CHF_LIEU": "3518", "Y_CHF_LIEU": "67896", "X_CENTROID": "3555", "Y_CENTROID": "67934", "CODE_REG": "53", "NOM_REGION": "BRETAGNE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.097036, 47.63136 ], [ -2.103189, 47.63486 ], [ -2.103979, 47.6381 ], [ -2.095198, 47.640469 ], [ -2.095004, 47.643752 ], [ -2.112425, 47.64754 ], [ -2.110371, 47.657015 ], [ -2.107446, 47.65979 ], [ -2.103234, 47.66599 ], [ -2.10385, 47.67619 ], [ -2.107481, 47.67771 ], [ -2.122663, 47.68267 ], [ -2.124075, 47.6929 ], [ -2.119132, 47.70971 ], [ -2.129069, 47.71756 ], [ -2.128417, 47.72396 ], [ -2.107391, 47.732748 ], [ -2.109457, 47.73588 ], [ -2.105087, 47.73757 ], [ -2.05986, 47.73831 ], [ -2.062322, 47.75127 ], [ -2.067314, 47.75088 ], [ -2.082389, 47.7505 ], [ -2.088468, 47.762597 ], [ -2.12863, 47.7614 ], [ -2.127329, 47.76455 ], [ -2.125108, 47.770656 ], [ -2.111378, 47.77228 ], [ -2.110098, 47.7786 ], [ -2.105343, 47.779665 ], [ -2.095417, 47.77899 ], [ -2.075998, 47.78918 ], [ -2.072142, 47.798552 ], [ -2.070534, 47.80807 ], [ -2.070464, 47.8114 ], [ -2.066864, 47.813246 ], [ -2.04677, 47.81919 ], [ -2.0452, 47.82226 ], [ -2.036045, 47.83346 ], [ -2.040324, 47.83522 ], [ -2.049442, 47.83786 ], [ -2.05393, 47.85095 ], [ -2.050927, 47.857133 ], [ -2.051378, 47.86018 ], [ -2.054704, 47.86879 ], [ -2.05828, 47.86651 ], [ -2.06932, 47.851884 ], [ -2.095195, 47.843258 ], [ -2.099383, 47.84375 ], [ -2.109451, 47.84884 ], [ -2.10618, 47.8516 ], [ -2.099109, 47.86447 ], [ -2.114176, 47.87883 ], [ -2.114768, 47.88232 ], [ -2.112087, 47.892485 ], [ -2.103623, 47.90039 ], [ -2.093704, 47.902133 ], [ -2.08967, 47.90286 ], [ -2.082017, 47.90892 ], [ -2.083715, 47.911666 ], [ -2.078951, 47.91949 ], [ -2.09806, 47.935717 ], [ -2.104673, 47.95198 ], [ -2.108884, 47.95319 ], [ -2.111211, 47.95908 ], [ -2.11977, 47.96095 ], [ -2.122495, 47.96386 ], [ -2.126572, 47.965615 ], [ -2.138403, 47.979735 ], [ -2.142614, 47.98174 ], [ -2.151741, 47.98361 ], [ -2.176729, 47.98005 ], [ -2.191056, 47.98918 ], [ -2.209813, 47.9948 ], [ -2.214416, 47.99324 ], [ -2.219153, 47.994681 ], [ -2.238197, 47.99933 ], [ -2.287539, 47.9915 ], [ -2.28804, 47.99491 ], [ -2.287311, 48.001734 ], [ -2.276503, 48.00884 ], [ -2.28244, 48.01796 ], [ -2.280539, 48.02114 ], [ -2.280018, 48.024 ], [ -2.273288, 48.031072 ], [ -2.252806, 48.045112 ], [ -2.249688, 48.047713 ], [ -2.242426, 48.0526 ], [ -2.19135, 48.05245 ], [ -2.171431, 48.06319 ], [ -2.171854, 48.07356 ], [ -2.16848, 48.076209 ], [ -2.171766, 48.078166 ], [ -2.181674, 48.083141 ], [ -2.18634, 48.081592 ], [ -2.222408, 48.078995 ], [ -2.234992, 48.07343 ], [ -2.23543, 48.06359 ], [ -2.256118, 48.062866 ], [ -2.256927, 48.069242 ], [ -2.24916, 48.08412 ], [ -2.253629, 48.08981 ], [ -2.253012, 48.094976 ], [ -2.255791, 48.09679 ], [ -2.253986, 48.107197 ], [ -2.287278, 48.133746 ], [ -2.283879, 48.14231 ], [ -2.283248, 48.1453 ], [ -2.278612, 48.14678 ], [ -2.264725, 48.15102 ], [ -2.25222, 48.14536 ], [ -2.242035, 48.14497 ], [ -2.240403, 48.14997 ], [ -2.247684, 48.154626 ], [ -2.247311, 48.158051 ], [ -2.230046, 48.164725 ], [ -2.224738, 48.17061 ], [ -2.224021, 48.183921 ], [ -2.218781, 48.20332 ], [ -2.227979, 48.210916 ], [ -2.213882, 48.21366 ], [ -2.20177, 48.208098 ], [ -2.191935, 48.208224 ], [ -2.184188, 48.211902 ], [ -2.183945, 48.21518 ], [ -2.190271, 48.224213 ], [ -2.187172, 48.244 ], [ -2.181494, 48.24885 ], [ -2.177596, 48.25095 ], [ -2.156662, 48.259563 ], [ -2.152795, 48.26172 ], [ -2.150098, 48.25872 ], [ -2.124054, 48.259305 ], [ -2.106582, 48.25166 ], [ -2.108602, 48.254799 ], [ -2.099637, 48.26289 ], [ -2.109596, 48.268669 ], [ -2.11046, 48.27506 ], [ -2.08501, 48.276285 ], [ -2.076641, 48.284741 ], [ -2.077427, 48.291622 ], [ -2.054287, 48.298556 ], [ -2.046771, 48.28978 ], [ -2.014101, 48.279532 ], [ -2.004284, 48.28113 ], [ -2.001991, 48.291107 ], [ -1.996033, 48.296651 ], [ -1.991436, 48.29819 ], [ -1.976457, 48.30024 ], [ -1.967577, 48.29191 ], [ -1.958045, 48.29312 ], [ -1.964572, 48.30144 ], [ -1.955451, 48.3188 ], [ -1.956632, 48.321857 ], [ -1.966897, 48.34282 ], [ -1.947782, 48.34259 ], [ -1.930318, 48.34813 ], [ -1.932019, 48.35459 ], [ -1.946466, 48.36712 ], [ -1.945718, 48.37742 ], [ -1.939919, 48.38613 ], [ -1.93829, 48.38909 ], [ -1.930066, 48.39433 ], [ -1.934232, 48.39632 ], [ -1.940771, 48.401371 ], [ -1.938171, 48.40783 ], [ -1.941192, 48.410584 ], [ -1.938097, 48.419863 ], [ -1.952001, 48.429874 ], [ -1.94883, 48.43646 ], [ -1.948042, 48.44635 ], [ -1.94173, 48.44853 ], [ -1.938892, 48.44702 ], [ -1.925875, 48.45744 ], [ -1.925583, 48.4643 ], [ -1.930747, 48.47035 ], [ -1.926936, 48.476826 ], [ -1.92213, 48.47732 ], [ -1.908996, 48.481554 ], [ -1.910871, 48.48478 ], [ -1.922607, 48.499449 ], [ -1.911488, 48.50974 ], [ -1.911453, 48.516604 ], [ -1.918771, 48.53314 ], [ -1.925546, 48.53836 ], [ -1.924803, 48.54518 ], [ -1.931336, 48.55056 ], [ -1.933339, 48.55107 ], [ -1.935391, 48.54821 ], [ -1.948037, 48.53881 ], [ -1.962692, 48.536195 ], [ -1.967441, 48.540179 ], [ -1.960992, 48.54934 ], [ -1.96307, 48.555937 ], [ -1.973372, 48.557327 ], [ -1.974857, 48.56781 ], [ -1.984663, 48.580505 ], [ -1.978379, 48.58399 ], [ -1.960586, 48.576005 ], [ -1.955327, 48.5764 ], [ -1.963932, 48.58335 ], [ -1.962082, 48.592635 ], [ -1.971737, 48.59057 ], [ -1.986195, 48.59388 ], [ -1.996143, 48.59233 ], [ -2.000698, 48.59733 ], [ -1.996984, 48.603692 ], [ -2.010716, 48.599356 ], [ -2.006274, 48.612576 ], [ -2.014327, 48.617041 ], [ -2.017127, 48.62737 ], [ -2.025383, 48.636313 ], [ -2.025336, 48.64685 ], [ -2.023301, 48.65002 ], [ -1.999846, 48.658362 ], [ -1.992134, 48.663084 ], [ -1.986287, 48.66896 ], [ -1.983262, 48.68204 ], [ -1.963724, 48.683964 ], [ -1.961394, 48.68079 ], [ -1.946286, 48.68393 ], [ -1.943606, 48.68625 ], [ -1.950988, 48.69032 ], [ -1.933667, 48.69716 ], [ -1.925432, 48.69314 ], [ -1.905293, 48.69032 ], [ -1.8957, 48.693412 ], [ -1.892455, 48.69626 ], [ -1.888423, 48.69856 ], [ -1.872968, 48.696913 ], [ -1.846144, 48.708136 ], [ -1.847318, 48.69425 ], [ -1.838702, 48.68147 ], [ -1.861815, 48.66735 ], [ -1.863727, 48.66056 ], [ -1.864518, 48.65707 ], [ -1.870603, 48.6437 ], [ -1.857094, 48.62462 ], [ -1.847729, 48.618765 ], [ -1.845281, 48.6164 ], [ -1.795953, 48.60659 ], [ -1.790819, 48.606022 ], [ -1.773098, 48.60347 ], [ -1.768553, 48.6034 ], [ -1.767714, 48.60239 ], [ -1.673029, 48.611393 ], [ -1.667887, 48.61042 ], [ -1.642637, 48.613908 ], [ -1.6376, 48.61473 ], [ -1.576214, 48.62555 ], [ -1.571087, 48.62645 ], [ -1.566049, 48.614827 ], [ -1.558303, 48.611232 ], [ -1.554664, 48.60923 ], [ -1.545464, 48.60609 ], [ -1.538887, 48.59746 ], [ -1.542011, 48.58087 ], [ -1.527747, 48.57908 ], [ -1.527773, 48.57577 ], [ -1.521005, 48.56705 ], [ -1.527171, 48.5619 ], [ -1.53311, 48.549439 ], [ -1.519766, 48.539657 ], [ -1.517781, 48.52985 ], [ -1.515309, 48.530294 ], [ -1.498528, 48.511018 ], [ -1.495733, 48.50831 ], [ -1.495588, 48.505047 ], [ -1.489947, 48.48937 ], [ -1.485862, 48.490737 ], [ -1.47467, 48.48588 ], [ -1.466134, 48.487976 ], [ -1.457581, 48.48543 ], [ -1.449399, 48.48677 ], [ -1.435747, 48.477916 ], [ -1.440356, 48.47217 ], [ -1.427752, 48.46235 ], [ -1.404237, 48.46143 ], [ -1.399391, 48.461159 ], [ -1.382967, 48.45687 ], [ -1.374943, 48.45926 ], [ -1.346533, 48.473118 ], [ -1.348477, 48.47989 ], [ -1.341415, 48.48921 ], [ -1.332739, 48.48886 ], [ -1.330412, 48.48596 ], [ -1.326326, 48.49852 ], [ -1.321808, 48.499798 ], [ -1.318768, 48.497286 ], [ -1.30455, 48.498803 ], [ -1.290184, 48.50679 ], [ -1.287629, 48.50953 ], [ -1.283385, 48.50853 ], [ -1.279004, 48.50918 ], [ -1.269542, 48.524356 ], [ -1.269817, 48.53105 ], [ -1.27291, 48.533721 ], [ -1.254221, 48.54327 ], [ -1.249493, 48.5437 ], [ -1.249016, 48.54367 ], [ -1.232492, 48.53764 ], [ -1.208259, 48.53909 ], [ -1.206894, 48.54219 ], [ -1.19316, 48.529248 ], [ -1.188368, 48.528687 ], [ -1.166724, 48.530079 ], [ -1.161961, 48.52425 ], [ -1.145709, 48.517654 ], [ -1.132159, 48.52173 ], [ -1.122244, 48.521362 ], [ -1.117277, 48.52165 ], [ -1.1012, 48.512885 ], [ -1.070165, 48.50849 ], [ -1.06746, 48.50561 ], [ -1.07492, 48.501133 ], [ -1.077392, 48.491095 ], [ -1.073586, 48.474894 ], [ -1.064649, 48.466913 ], [ -1.06716, 48.460332 ], [ -1.065332, 48.45125 ], [ -1.068721, 48.448676 ], [ -1.081436, 48.438573 ], [ -1.078227, 48.42201 ], [ -1.078455, 48.4185 ], [ -1.079735, 48.41738 ], [ -1.079478, 48.4139 ], [ -1.064323, 48.399929 ], [ -1.052793, 48.38093 ], [ -1.05658, 48.379187 ], [ -1.057253, 48.37582 ], [ -1.064838, 48.36724 ], [ -1.059735, 48.36682 ], [ -1.05578, 48.34113 ], [ -1.053602, 48.33813 ], [ -1.04583, 48.329655 ], [ -1.059222, 48.31219 ], [ -1.06096, 48.31109 ], [ -1.065875, 48.30968 ], [ -1.08845, 48.29013 ], [ -1.093643, 48.27288 ], [ -1.099932, 48.26837 ], [ -1.098672, 48.25131 ], [ -1.0806, 48.2195 ], [ -1.08253, 48.21623 ], [ -1.08712, 48.21004 ], [ -1.081888, 48.205148 ], [ -1.07765, 48.20315 ], [ -1.074357, 48.200471 ], [ -1.078229, 48.17997 ], [ -1.079822, 48.17687 ], [ -1.072702, 48.16579 ], [ -1.073926, 48.1593 ], [ -1.068944, 48.159482 ], [ -1.060683, 48.148738 ], [ -1.059299, 48.12549 ], [ -1.057022, 48.12246 ], [ -1.052936, 48.10604 ], [ -1.049133, 48.089596 ], [ -1.04725, 48.086606 ], [ -1.040332, 48.078086 ], [ -1.025492, 48.069845 ], [ -1.021497, 48.0684 ], [ -1.028222, 48.06103 ], [ -1.029935, 48.057763 ], [ -1.033183, 48.051353 ], [ -1.028089, 48.03846 ], [ -1.033554, 48.03261 ], [ -1.021413, 48.01744 ], [ -1.017261, 48.00804 ], [ -1.021712, 47.9954 ], [ -1.030417, 47.992473 ], [ -1.035241, 47.99201 ], [ -1.050316, 47.984634 ], [ -1.06883, 47.982949 ], [ -1.072252, 47.982065 ], [ -1.078714, 47.984409 ], [ -1.083363, 47.9857 ], [ -1.092993, 47.98751 ], [ -1.098003, 47.987018 ], [ -1.107516, 47.988876 ], [ -1.1223, 47.98651 ], [ -1.129886, 47.97122 ], [ -1.148707, 47.968216 ], [ -1.152452, 47.966344 ], [ -1.161289, 47.95295 ], [ -1.159514, 47.939221 ], [ -1.162792, 47.937924 ], [ -1.167151, 47.93417 ], [ -1.163133, 47.928089 ], [ -1.168644, 47.915475 ], [ -1.175715, 47.91095 ], [ -1.176175, 47.897723 ], [ -1.179919, 47.89558 ], [ -1.192156, 47.89102 ], [ -1.197126, 47.885593 ], [ -1.197464, 47.87902 ], [ -1.189163, 47.86771 ], [ -1.191997, 47.86543 ], [ -1.203023, 47.85685 ], [ -1.206104, 47.858387 ], [ -1.213082, 47.857217 ], [ -1.217566, 47.85601 ], [ -1.222126, 47.850366 ], [ -1.214178, 47.84251 ], [ -1.216083, 47.836154 ], [ -1.220867, 47.821723 ], [ -1.223153, 47.819009 ], [ -1.227872, 47.82029 ], [ -1.238252, 47.80999 ], [ -1.240193, 47.802287 ], [ -1.237062, 47.799597 ], [ -1.245882, 47.776718 ], [ -1.251009, 47.777622 ], [ -1.33715, 47.79463 ], [ -1.339993, 47.795214 ], [ -1.364478, 47.79967 ], [ -1.365536, 47.80604 ], [ -1.374824, 47.808827 ], [ -1.381228, 47.82141 ], [ -1.391976, 47.82855 ], [ -1.405523, 47.825 ], [ -1.409149, 47.827406 ], [ -1.411962, 47.82855 ], [ -1.414846, 47.827498 ], [ -1.419285, 47.829044 ], [ -1.427417, 47.832171 ], [ -1.456579, 47.83175 ], [ -1.465114, 47.83486 ], [ -1.479636, 47.83481 ], [ -1.481873, 47.8318 ], [ -1.480687, 47.82869 ], [ -1.474307, 47.824 ], [ -1.468448, 47.8059 ], [ -1.47114, 47.80307 ], [ -1.494999, 47.798505 ], [ -1.503981, 47.80108 ], [ -1.51219, 47.79722 ], [ -1.530422, 47.78478 ], [ -1.556429, 47.78372 ], [ -1.575393, 47.778234 ], [ -1.585308, 47.7789 ], [ -1.594141, 47.77603 ], [ -1.59491, 47.77332 ], [ -1.598107, 47.766525 ], [ -1.601774, 47.764542 ], [ -1.619634, 47.76357 ], [ -1.627131, 47.759827 ], [ -1.626098, 47.75656 ], [ -1.636801, 47.741755 ], [ -1.638131, 47.722209 ], [ -1.641237, 47.721825 ], [ -1.644387, 47.722087 ], [ -1.648814, 47.720306 ], [ -1.661157, 47.7102 ], [ -1.686443, 47.7126 ], [ -1.706147, 47.70895 ], [ -1.71127, 47.700421 ], [ -1.715725, 47.69945 ], [ -1.729713, 47.699342 ], [ -1.732593, 47.70184 ], [ -1.736125, 47.70415 ], [ -1.750249, 47.706751 ], [ -1.771608, 47.69868 ], [ -1.786276, 47.69988 ], [ -1.820055, 47.7056 ], [ -1.828414, 47.70954 ], [ -1.83778, 47.70676 ], [ -1.841527, 47.7055 ], [ -1.853488, 47.70804 ], [ -1.858304, 47.70825 ], [ -1.878257, 47.6952 ], [ -1.883074, 47.69499 ], [ -1.888114, 47.695482 ], [ -1.93644, 47.686523 ], [ -1.956329, 47.671188 ], [ -1.961339, 47.67094 ], [ -1.969284, 47.67424 ], [ -1.969042, 47.68781 ], [ -1.973056, 47.69403 ], [ -1.973401, 47.69415 ], [ -1.977136, 47.691668 ], [ -2.012284, 47.666454 ], [ -2.016926, 47.66683 ], [ -2.035333, 47.66847 ], [ -2.043095, 47.6657 ], [ -2.047426, 47.66379 ], [ -2.052005, 47.6504 ], [ -2.082054, 47.64945 ], [ -2.097036, 47.63136 ] ] ], [ [ [ -2.006895, 48.56611 ], [ -2.010653, 48.564792 ], [ -2.019503, 48.55909 ], [ -2.021944, 48.55622 ], [ -2.033869, 48.551173 ], [ -2.038784, 48.542 ], [ -2.043228, 48.54206 ], [ -2.052745, 48.551913 ], [ -2.047377, 48.56412 ], [ -2.060069, 48.5701 ], [ -2.080555, 48.56804 ], [ -2.094333, 48.57172 ], [ -2.1249, 48.593415 ], [ -2.125942, 48.59753 ], [ -2.123708, 48.60441 ], [ -2.149213, 48.62904 ], [ -2.148225, 48.632404 ], [ -2.134228, 48.635974 ], [ -2.124093, 48.63525 ], [ -2.11315, 48.641416 ], [ -2.086822, 48.63461 ], [ -2.082274, 48.63581 ], [ -2.074563, 48.63959 ], [ -2.054589, 48.63766 ], [ -2.050179, 48.63594 ], [ -2.050969, 48.62611 ], [ -2.035975, 48.625572 ], [ -2.031641, 48.62376 ], [ -2.032611, 48.62042 ], [ -2.029796, 48.61462 ], [ -2.033451, 48.61277 ], [ -2.030745, 48.60696 ], [ -2.030363, 48.603988 ], [ -2.022679, 48.60166 ], [ -2.015906, 48.59028 ], [ -2.013644, 48.58751 ], [ -2.003894, 48.586141 ], [ -1.997032, 48.581157 ], [ -2.010811, 48.57212 ], [ -2.006895, 48.56611 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "37", "CODE_DEPT": "36", "NOM_DEPT": "INDRE", "CODE_CHF": "044", "NOM_CHF": "CHATEAUROUX", "X_CHF_LIEU": "6001", "Y_CHF_LIEU": "66352", "X_CENTROID": "5913", "Y_CENTROID": "66318", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.415191, 46.34722 ], [ 1.411548, 46.3495 ], [ 1.407003, 46.36264 ], [ 1.395144, 46.368644 ], [ 1.396571, 46.371897 ], [ 1.39195, 46.37107 ], [ 1.376609, 46.38334 ], [ 1.373905, 46.38586 ], [ 1.36255, 46.39563 ], [ 1.359389, 46.39772 ], [ 1.344678, 46.401598 ], [ 1.340492, 46.3997 ], [ 1.312648, 46.39371 ], [ 1.321836, 46.386566 ], [ 1.311035, 46.381038 ], [ 1.310512, 46.37437 ], [ 1.28302, 46.37221 ], [ 1.279554, 46.376488 ], [ 1.274572, 46.37642 ], [ 1.26021, 46.37872 ], [ 1.250656, 46.37675 ], [ 1.238165, 46.3662 ], [ 1.21797, 46.368256 ], [ 1.213319, 46.374407 ], [ 1.212952, 46.388002 ], [ 1.208385, 46.38915 ], [ 1.193499, 46.380733 ], [ 1.192893, 46.37741 ], [ 1.18868, 46.37694 ], [ 1.180777, 46.378594 ], [ 1.17728, 46.38395 ], [ 1.1954, 46.40002 ], [ 1.193411, 46.40976 ], [ 1.211268, 46.42992 ], [ 1.213066, 46.43308 ], [ 1.203363, 46.433796 ], [ 1.195477, 46.42962 ], [ 1.185835, 46.429303 ], [ 1.185483, 46.439511 ], [ 1.168524, 46.44635 ], [ 1.16378, 46.44677 ], [ 1.150917, 46.450297 ], [ 1.135514, 46.470889 ], [ 1.152956, 46.472838 ], [ 1.136125, 46.493461 ], [ 1.136833, 46.49678 ], [ 1.145329, 46.50007 ], [ 1.149143, 46.502212 ], [ 1.146903, 46.50518 ], [ 1.12372, 46.52232 ], [ 1.119414, 46.524226 ], [ 1.104139, 46.53343 ], [ 1.090094, 46.53758 ], [ 1.080132, 46.53618 ], [ 1.065509, 46.539252 ], [ 1.020409, 46.53715 ], [ 1.019938, 46.540418 ], [ 1.024705, 46.5497 ], [ 1.014764, 46.567764 ], [ 1.009906, 46.56742 ], [ 0.990589, 46.56604 ], [ 0.982015, 46.57327 ], [ 0.962437, 46.57254 ], [ 0.955598, 46.57761 ], [ 0.941367, 46.580879 ], [ 0.937758, 46.59442 ], [ 0.933284, 46.594569 ], [ 0.916278, 46.597125 ], [ 0.908477, 46.605279 ], [ 0.904896, 46.618175 ], [ 0.893993, 46.628658 ], [ 0.895518, 46.631821 ], [ 0.907628, 46.64672 ], [ 0.915638, 46.650672 ], [ 0.90734, 46.666437 ], [ 0.91184, 46.67259 ], [ 0.907243, 46.678136 ], [ 0.902262, 46.677666 ], [ 0.918155, 46.690485 ], [ 0.927133, 46.6936 ], [ 0.924812, 46.70022 ], [ 0.921587, 46.70272 ], [ 0.910404, 46.71741 ], [ 0.911172, 46.72707 ], [ 0.90283, 46.730405 ], [ 0.898325, 46.7358 ], [ 0.879803, 46.73875 ], [ 0.867469, 46.74822 ], [ 0.884505, 46.75457 ], [ 0.911862, 46.757132 ], [ 0.916607, 46.75644 ], [ 0.930035, 46.755561 ], [ 0.943507, 46.73863 ], [ 0.947225, 46.73662 ], [ 0.961024, 46.74 ], [ 0.979595, 46.756038 ], [ 0.982563, 46.762548 ], [ 1.006777, 46.75848 ], [ 1.01169, 46.757814 ], [ 1.011173, 46.7662 ], [ 1.009519, 46.76876 ], [ 0.999956, 46.781046 ], [ 1.004327, 46.79088 ], [ 0.985332, 46.80165 ], [ 1.00893, 46.814446 ], [ 1.010199, 46.835282 ], [ 1.017929, 46.844251 ], [ 1.022644, 46.84562 ], [ 1.020281, 46.848498 ], [ 1.016925, 46.85445 ], [ 1.025551, 46.87966 ], [ 1.025219, 46.87975 ], [ 1.037503, 46.92823 ], [ 1.037435, 46.94206 ], [ 1.041221, 46.943541 ], [ 1.044912, 46.945117 ], [ 1.058044, 46.94968 ], [ 1.062925, 46.95882 ], [ 1.059915, 46.968642 ], [ 1.059912, 46.972011 ], [ 1.051693, 46.980284 ], [ 1.05633, 46.98967 ], [ 1.056376, 46.996439 ], [ 1.070197, 47.00051 ], [ 1.077615, 47.01584 ], [ 1.105678, 47.028167 ], [ 1.110264, 47.029242 ], [ 1.112761, 47.02676 ], [ 1.115568, 47.024438 ], [ 1.160983, 47.03936 ], [ 1.175977, 47.04122 ], [ 1.181069, 47.04104 ], [ 1.190076, 47.03407 ], [ 1.19304, 47.031711 ], [ 1.202802, 47.027693 ], [ 1.206733, 47.028295 ], [ 1.220634, 47.024908 ], [ 1.229742, 47.01705 ], [ 1.23222, 47.01414 ], [ 1.244251, 47.01995 ], [ 1.248989, 47.02083 ], [ 1.276097, 47.040806 ], [ 1.272536, 47.05041 ], [ 1.289151, 47.06286 ], [ 1.29299, 47.068965 ], [ 1.293769, 47.07225 ], [ 1.312185, 47.073875 ], [ 1.316275, 47.083877 ], [ 1.311277, 47.09362 ], [ 1.3175, 47.10295 ], [ 1.326639, 47.10465 ], [ 1.339469, 47.100467 ], [ 1.351835, 47.1062 ], [ 1.355669, 47.108478 ], [ 1.364901, 47.12461 ], [ 1.363751, 47.135086 ], [ 1.36186, 47.13826 ], [ 1.350896, 47.153714 ], [ 1.343527, 47.173555 ], [ 1.326666, 47.18622 ], [ 1.336774, 47.194223 ], [ 1.351844, 47.1939 ], [ 1.388418, 47.20687 ], [ 1.392843, 47.208693 ], [ 1.40637, 47.215543 ], [ 1.409592, 47.21741 ], [ 1.418308, 47.226188 ], [ 1.421208, 47.22916 ], [ 1.453139, 47.23899 ], [ 1.467986, 47.23903 ], [ 1.473013, 47.23891 ], [ 1.48761, 47.23748 ], [ 1.494832, 47.23311 ], [ 1.503504, 47.23452 ], [ 1.526638, 47.22251 ], [ 1.528062, 47.21925 ], [ 1.534446, 47.223591 ], [ 1.532718, 47.23026 ], [ 1.527011, 47.23978 ], [ 1.526755, 47.252496 ], [ 1.523953, 47.25534 ], [ 1.563081, 47.26143 ], [ 1.587815, 47.25788 ], [ 1.592885, 47.2577 ], [ 1.593136, 47.274416 ], [ 1.602725, 47.275018 ], [ 1.607649, 47.27543 ], [ 1.612089, 47.277139 ], [ 1.619786, 47.272629 ], [ 1.629582, 47.27443 ], [ 1.649461, 47.27148 ], [ 1.651132, 47.261842 ], [ 1.665701, 47.25889 ], [ 1.700438, 47.26408 ], [ 1.712938, 47.27395 ], [ 1.71582, 47.27682 ], [ 1.746692, 47.24987 ], [ 1.750044, 47.24731 ], [ 1.772462, 47.233739 ], [ 1.776111, 47.23138 ], [ 1.786011, 47.231397 ], [ 1.793575, 47.234807 ], [ 1.795821, 47.23782 ], [ 1.811518, 47.232183 ], [ 1.81462, 47.22999 ], [ 1.834519, 47.22055 ], [ 1.839079, 47.219308 ], [ 1.838892, 47.215759 ], [ 1.837444, 47.19837 ], [ 1.842237, 47.17758 ], [ 1.837527, 47.17678 ], [ 1.823578, 47.17397 ], [ 1.813917, 47.16657 ], [ 1.811046, 47.16327 ], [ 1.809816, 47.15621 ], [ 1.774451, 47.130755 ], [ 1.777883, 47.130107 ], [ 1.780997, 47.128943 ], [ 1.795823, 47.12081 ], [ 1.805415, 47.12016 ], [ 1.809476, 47.12202 ], [ 1.828448, 47.121302 ], [ 1.843601, 47.11348 ], [ 1.846675, 47.11098 ], [ 1.878812, 47.10229 ], [ 1.883068, 47.100512 ], [ 1.887899, 47.104764 ], [ 1.892733, 47.103766 ], [ 1.906385, 47.10811 ], [ 1.920261, 47.10403 ], [ 1.937202, 47.11093 ], [ 1.943597, 47.11505 ], [ 1.947311, 47.116674 ], [ 1.96314, 47.12418 ], [ 1.974874, 47.12104 ], [ 1.992226, 47.12565 ], [ 1.99666, 47.127 ], [ 1.999913, 47.11732 ], [ 2.00024, 47.11392 ], [ 2.009587, 47.11127 ], [ 2.004464, 47.10161 ], [ 2.006573, 47.09521 ], [ 2.026221, 47.096476 ], [ 2.031199, 47.1049 ], [ 2.050699, 47.10435 ], [ 2.053597, 47.101511 ], [ 2.048458, 47.09607 ], [ 2.055653, 47.076723 ], [ 2.053304, 47.07014 ], [ 2.044557, 47.066944 ], [ 2.040447, 47.060958 ], [ 2.0385, 47.057844 ], [ 2.02938, 47.045532 ], [ 2.031413, 47.04235 ], [ 2.053482, 47.03822 ], [ 2.064618, 47.027941 ], [ 2.081354, 47.021754 ], [ 2.08304, 47.018634 ], [ 2.094267, 47.014905 ], [ 2.096889, 47.01241 ], [ 2.106187, 47.0002 ], [ 2.108856, 46.997191 ], [ 2.105175, 46.99534 ], [ 2.094825, 46.989474 ], [ 2.094592, 46.98057 ], [ 2.091833, 46.977997 ], [ 2.087045, 46.97252 ], [ 2.089985, 46.96355 ], [ 2.08457, 46.958635 ], [ 2.081369, 46.95665 ], [ 2.070203, 46.954423 ], [ 2.070685, 46.934023 ], [ 2.106058, 46.91498 ], [ 2.110319, 46.91317 ], [ 2.143641, 46.91732 ], [ 2.151967, 46.91433 ], [ 2.154965, 46.91167 ], [ 2.153136, 46.908457 ], [ 2.14007, 46.88985 ], [ 2.126204, 46.879865 ], [ 2.120998, 46.88019 ], [ 2.090268, 46.86857 ], [ 2.092409, 46.852834 ], [ 2.077817, 46.838005 ], [ 2.072823, 46.837658 ], [ 2.069292, 46.83547 ], [ 2.050804, 46.8362 ], [ 2.047999, 46.832332 ], [ 2.071568, 46.809851 ], [ 2.100792, 46.79614 ], [ 2.104205, 46.793551 ], [ 2.105793, 46.79025 ], [ 2.116105, 46.778533 ], [ 2.094304, 46.75597 ], [ 2.070117, 46.752192 ], [ 2.065751, 46.74249 ], [ 2.074233, 46.73444 ], [ 2.092145, 46.72526 ], [ 2.088115, 46.715751 ], [ 2.087097, 46.712456 ], [ 2.092068, 46.71187 ], [ 2.100843, 46.70849 ], [ 2.11008, 46.71115 ], [ 2.119793, 46.70959 ], [ 2.128758, 46.706431 ], [ 2.141157, 46.69554 ], [ 2.155448, 46.69216 ], [ 2.154034, 46.68882 ], [ 2.137272, 46.67231 ], [ 2.13972, 46.6656 ], [ 2.151695, 46.65931 ], [ 2.166749, 46.64733 ], [ 2.175944, 46.64884 ], [ 2.179982, 46.6429 ], [ 2.189447, 46.642141 ], [ 2.181273, 46.62579 ], [ 2.187352, 46.61605 ], [ 2.185257, 46.612855 ], [ 2.184614, 46.60257 ], [ 2.180742, 46.600297 ], [ 2.176001, 46.6002 ], [ 2.167145, 46.588988 ], [ 2.16798, 46.585653 ], [ 2.173675, 46.565857 ], [ 2.1587, 46.557346 ], [ 2.160161, 46.55405 ], [ 2.181453, 46.526985 ], [ 2.182754, 46.513297 ], [ 2.183065, 46.50993 ], [ 2.189967, 46.505406 ], [ 2.194701, 46.50625 ], [ 2.203705, 46.48628 ], [ 2.200164, 46.48061 ], [ 2.20017, 46.480165 ], [ 2.198198, 46.47687 ], [ 2.193194, 46.47064 ], [ 2.151402, 46.4577 ], [ 2.155265, 46.43459 ], [ 2.167786, 46.42408 ], [ 2.149206, 46.4239 ], [ 2.140603, 46.421101 ], [ 2.115972, 46.421534 ], [ 2.10344, 46.41076 ], [ 2.088623, 46.41007 ], [ 2.088749, 46.41034 ], [ 2.084371, 46.41129 ], [ 2.072452, 46.420108 ], [ 2.063459, 46.42135 ], [ 2.058493, 46.420876 ], [ 2.029415, 46.42459 ], [ 2.026334, 46.427216 ], [ 1.993082, 46.43092 ], [ 1.990776, 46.435229 ], [ 1.986597, 46.435786 ], [ 1.981108, 46.440285 ], [ 1.976055, 46.4395 ], [ 1.926119, 46.43191 ], [ 1.92287, 46.434149 ], [ 1.919538, 46.43996 ], [ 1.911556, 46.44309 ], [ 1.899831, 46.438567 ], [ 1.895331, 46.43824 ], [ 1.88768, 46.440989 ], [ 1.883956, 46.43265 ], [ 1.878921, 46.432375 ], [ 1.853747, 46.43347 ], [ 1.84257, 46.42681 ], [ 1.818455, 46.431423 ], [ 1.816986, 46.4385 ], [ 1.802116, 46.44828 ], [ 1.798244, 46.45491 ], [ 1.793694, 46.45385 ], [ 1.784546, 46.455077 ], [ 1.74759, 46.45002 ], [ 1.750092, 46.447743 ], [ 1.752658, 46.445502 ], [ 1.758296, 46.43992 ], [ 1.75527, 46.437209 ], [ 1.759737, 46.42749 ], [ 1.748767, 46.412318 ], [ 1.750549, 46.405593 ], [ 1.745905, 46.40431 ], [ 1.72832, 46.39241 ], [ 1.727841, 46.38896 ], [ 1.7094, 46.39335 ], [ 1.683603, 46.41818 ], [ 1.679335, 46.416426 ], [ 1.661634, 46.4044 ], [ 1.65521, 46.395116 ], [ 1.651332, 46.392981 ], [ 1.64109, 46.38559 ], [ 1.627341, 46.389425 ], [ 1.614415, 46.403373 ], [ 1.621236, 46.419405 ], [ 1.609055, 46.42317 ], [ 1.604991, 46.421153 ], [ 1.592031, 46.4076 ], [ 1.577489, 46.409097 ], [ 1.574357, 46.406383 ], [ 1.569633, 46.40531 ], [ 1.555196, 46.395893 ], [ 1.546253, 46.395923 ], [ 1.543637, 46.416415 ], [ 1.534714, 46.4243 ], [ 1.525351, 46.426654 ], [ 1.521022, 46.42538 ], [ 1.510433, 46.41921 ], [ 1.509319, 46.412775 ], [ 1.500105, 46.405503 ], [ 1.497998, 46.39739 ], [ 1.496954, 46.394636 ], [ 1.493588, 46.39725 ], [ 1.479634, 46.393974 ], [ 1.463704, 46.37628 ], [ 1.445155, 46.37193 ], [ 1.437093, 46.36311 ], [ 1.43659, 46.35613 ], [ 1.415191, 46.34722 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "38", "CODE_DEPT": "37", "NOM_DEPT": "INDRE-ET-LOIRE", "CODE_CHF": "261", "NOM_CHF": "TOURS", "X_CHF_LIEU": "5256", "Y_CHF_LIEU": "67016", "X_CENTROID": "5254", "Y_CENTROID": "66867", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.326666, 47.18622 ], [ 1.343527, 47.173555 ], [ 1.350896, 47.153714 ], [ 1.36186, 47.13826 ], [ 1.363751, 47.135086 ], [ 1.364901, 47.12461 ], [ 1.355669, 47.108478 ], [ 1.351835, 47.1062 ], [ 1.339469, 47.100467 ], [ 1.326639, 47.10465 ], [ 1.3175, 47.10295 ], [ 1.311277, 47.09362 ], [ 1.316275, 47.083877 ], [ 1.312185, 47.073875 ], [ 1.293769, 47.07225 ], [ 1.29299, 47.068965 ], [ 1.289151, 47.06286 ], [ 1.272536, 47.05041 ], [ 1.276097, 47.040806 ], [ 1.248989, 47.02083 ], [ 1.244251, 47.01995 ], [ 1.23222, 47.01414 ], [ 1.229742, 47.01705 ], [ 1.220634, 47.024908 ], [ 1.206733, 47.028295 ], [ 1.202802, 47.027693 ], [ 1.19304, 47.031711 ], [ 1.190076, 47.03407 ], [ 1.181069, 47.04104 ], [ 1.175977, 47.04122 ], [ 1.160983, 47.03936 ], [ 1.115568, 47.024438 ], [ 1.112761, 47.02676 ], [ 1.110264, 47.029242 ], [ 1.105678, 47.028167 ], [ 1.077615, 47.01584 ], [ 1.070197, 47.00051 ], [ 1.056376, 46.996439 ], [ 1.05633, 46.98967 ], [ 1.051693, 46.980284 ], [ 1.059912, 46.972011 ], [ 1.059915, 46.968642 ], [ 1.062925, 46.95882 ], [ 1.058044, 46.94968 ], [ 1.044912, 46.945117 ], [ 1.041221, 46.943541 ], [ 1.037435, 46.94206 ], [ 1.037503, 46.92823 ], [ 1.025219, 46.87975 ], [ 1.025551, 46.87966 ], [ 1.016925, 46.85445 ], [ 1.020281, 46.848498 ], [ 1.022644, 46.84562 ], [ 1.017929, 46.844251 ], [ 1.010199, 46.835282 ], [ 1.00893, 46.814446 ], [ 0.985332, 46.80165 ], [ 1.004327, 46.79088 ], [ 0.999956, 46.781046 ], [ 1.009519, 46.76876 ], [ 1.011173, 46.7662 ], [ 1.01169, 46.757814 ], [ 1.006777, 46.75848 ], [ 0.982563, 46.762548 ], [ 0.979595, 46.756038 ], [ 0.961024, 46.74 ], [ 0.947225, 46.73662 ], [ 0.943507, 46.73863 ], [ 0.930035, 46.755561 ], [ 0.916607, 46.75644 ], [ 0.911862, 46.757132 ], [ 0.884505, 46.75457 ], [ 0.867469, 46.74822 ], [ 0.865602, 46.75104 ], [ 0.859743, 46.75572 ], [ 0.858729, 46.759154 ], [ 0.84484, 46.763019 ], [ 0.829396, 46.77687 ], [ 0.826099, 46.78682 ], [ 0.813354, 46.79168 ], [ 0.815597, 46.805 ], [ 0.810162, 46.814192 ], [ 0.809857, 46.8159 ], [ 0.809041, 46.819215 ], [ 0.807997, 46.829139 ], [ 0.794667, 46.832892 ], [ 0.786885, 46.84123 ], [ 0.796639, 46.84735 ], [ 0.795013, 46.85052 ], [ 0.771389, 46.85095 ], [ 0.766356, 46.85585 ], [ 0.771792, 46.86126 ], [ 0.765645, 46.86512 ], [ 0.753423, 46.860585 ], [ 0.743522, 46.871587 ], [ 0.739267, 46.87285 ], [ 0.729468, 46.88318 ], [ 0.727284, 46.88608 ], [ 0.70467, 46.90289 ], [ 0.703738, 46.909362 ], [ 0.704874, 46.91233 ], [ 0.708918, 46.917725 ], [ 0.703171, 46.925825 ], [ 0.706179, 46.936108 ], [ 0.695983, 46.959369 ], [ 0.695176, 46.96224 ], [ 0.695275, 46.969191 ], [ 0.690172, 46.97498 ], [ 0.660468, 46.978984 ], [ 0.651538, 46.986999 ], [ 0.637794, 46.98525 ], [ 0.63356, 46.986659 ], [ 0.623984, 46.993686 ], [ 0.621888, 46.99942 ], [ 0.623652, 47.00242 ], [ 0.61849, 47.00752 ], [ 0.590556, 47.00673 ], [ 0.585909, 47.00611 ], [ 0.567742, 47.006287 ], [ 0.56695, 47.00254 ], [ 0.567922, 46.999661 ], [ 0.574382, 46.99244 ], [ 0.573146, 46.989475 ], [ 0.573683, 46.98339 ], [ 0.576876, 46.98087 ], [ 0.598804, 46.974924 ], [ 0.601701, 46.958888 ], [ 0.598205, 46.95643 ], [ 0.563306, 46.955777 ], [ 0.554199, 46.95847 ], [ 0.549556, 46.95959 ], [ 0.512902, 46.95586 ], [ 0.50519, 46.95991 ], [ 0.502577, 46.95779 ], [ 0.491285, 46.955322 ], [ 0.486465, 46.95402 ], [ 0.444803, 46.941158 ], [ 0.443882, 46.93811 ], [ 0.43871, 46.92958 ], [ 0.434521, 46.931669 ], [ 0.420738, 46.93639 ], [ 0.405362, 46.936133 ], [ 0.401134, 46.93819 ], [ 0.38782, 46.94371 ], [ 0.38282, 46.94375 ], [ 0.36463, 46.948568 ], [ 0.348074, 46.93637 ], [ 0.343125, 46.936706 ], [ 0.325352, 46.930943 ], [ 0.321021, 46.932626 ], [ 0.310569, 46.93971 ], [ 0.302029, 46.95532 ], [ 0.303022, 46.958359 ], [ 0.306402, 46.96393 ], [ 0.298206, 46.97126 ], [ 0.306589, 46.97893 ], [ 0.291436, 46.99027 ], [ 0.296088, 46.990169 ], [ 0.310728, 46.997312 ], [ 0.308175, 46.99993 ], [ 0.306204, 47.00882 ], [ 0.300585, 47.021102 ], [ 0.309935, 47.028031 ], [ 0.309074, 47.03131 ], [ 0.307895, 47.047271 ], [ 0.298426, 47.053977 ], [ 0.294508, 47.051949 ], [ 0.267677, 47.04405 ], [ 0.264221, 47.04643 ], [ 0.26355, 47.068507 ], [ 0.243872, 47.07095 ], [ 0.235155, 47.06916 ], [ 0.232832, 47.06639 ], [ 0.228056, 47.06133 ], [ 0.208199, 47.053237 ], [ 0.194404, 47.063001 ], [ 0.180337, 47.05946 ], [ 0.175696, 47.06073 ], [ 0.176727, 47.064201 ], [ 0.174011, 47.06722 ], [ 0.177027, 47.07383 ], [ 0.194951, 47.08646 ], [ 0.198043, 47.09294 ], [ 0.185354, 47.10404 ], [ 0.183487, 47.11451 ], [ 0.179245, 47.11336 ], [ 0.167829, 47.108362 ], [ 0.161917, 47.10011 ], [ 0.158612, 47.10274 ], [ 0.134946, 47.10837 ], [ 0.134144, 47.11527 ], [ 0.140683, 47.124594 ], [ 0.137322, 47.122259 ], [ 0.127952, 47.120999 ], [ 0.123966, 47.126936 ], [ 0.110323, 47.12929 ], [ 0.10472, 47.120798 ], [ 0.090198, 47.12186 ], [ 0.082432, 47.117797 ], [ 0.077943, 47.127071 ], [ 0.081435, 47.13328 ], [ 0.07839, 47.14633 ], [ 0.068953, 47.14406 ], [ 0.064921, 47.146084 ], [ 0.05374, 47.16461 ], [ 0.05664, 47.167369 ], [ 0.06352, 47.17639 ], [ 0.066594, 47.189802 ], [ 0.061892, 47.19095 ], [ 0.053807, 47.198856 ], [ 0.068291, 47.214196 ], [ 0.072876, 47.214493 ], [ 0.076842, 47.21937 ], [ 0.072451, 47.219878 ], [ 0.073838, 47.233508 ], [ 0.069096, 47.24333 ], [ 0.076367, 47.251931 ], [ 0.08011, 47.271692 ], [ 0.083193, 47.274147 ], [ 0.087486, 47.27553 ], [ 0.088557, 47.282381 ], [ 0.082382, 47.28687 ], [ 0.100309, 47.308205 ], [ 0.111109, 47.31573 ], [ 0.117889, 47.32884 ], [ 0.117462, 47.332343 ], [ 0.135494, 47.335365 ], [ 0.144439, 47.342819 ], [ 0.147298, 47.345376 ], [ 0.14285, 47.358725 ], [ 0.140405, 47.361808 ], [ 0.15386, 47.363093 ], [ 0.157666, 47.36532 ], [ 0.182143, 47.381943 ], [ 0.168732, 47.386013 ], [ 0.168249, 47.396153 ], [ 0.153864, 47.39873 ], [ 0.156772, 47.401448 ], [ 0.180943, 47.416603 ], [ 0.185149, 47.426217 ], [ 0.184494, 47.429597 ], [ 0.180874, 47.45323 ], [ 0.184247, 47.45576 ], [ 0.19885, 47.47641 ], [ 0.200659, 47.4845 ], [ 0.20415, 47.48661 ], [ 0.220109, 47.501953 ], [ 0.219715, 47.50519 ], [ 0.224843, 47.52728 ], [ 0.207175, 47.52667 ], [ 0.205637, 47.53294 ], [ 0.19312, 47.538037 ], [ 0.200087, 47.54317 ], [ 0.214089, 47.56879 ], [ 0.218936, 47.57359 ], [ 0.230576, 47.57731 ], [ 0.234568, 47.57861 ], [ 0.230576, 47.585003 ], [ 0.230002, 47.608398 ], [ 0.232709, 47.61089 ], [ 0.25456, 47.61203 ], [ 0.259115, 47.612301 ], [ 0.275412, 47.5991 ], [ 0.322104, 47.595237 ], [ 0.339494, 47.583179 ], [ 0.339107, 47.57974 ], [ 0.37466, 47.57051 ], [ 0.378484, 47.56853 ], [ 0.397913, 47.57753 ], [ 0.402577, 47.578512 ], [ 0.3968, 47.59136 ], [ 0.395085, 47.594583 ], [ 0.382414, 47.60998 ], [ 0.373233, 47.61334 ], [ 0.364557, 47.62207 ], [ 0.381437, 47.639677 ], [ 0.382788, 47.643103 ], [ 0.391499, 47.641 ], [ 0.39625, 47.640855 ], [ 0.426615, 47.617726 ], [ 0.431741, 47.618316 ], [ 0.451411, 47.62146 ], [ 0.459238, 47.640594 ], [ 0.461177, 47.643806 ], [ 0.47545, 47.64688 ], [ 0.478496, 47.644182 ], [ 0.493419, 47.64508 ], [ 0.498418, 47.64476 ], [ 0.516741, 47.65622 ], [ 0.525724, 47.653936 ], [ 0.545247, 47.65717 ], [ 0.555785, 47.66397 ], [ 0.559603, 47.66617 ], [ 0.558792, 47.670796 ], [ 0.588942, 47.670053 ], [ 0.612683, 47.682913 ], [ 0.61868, 47.69226 ], [ 0.614431, 47.69421 ], [ 0.628781, 47.70803 ], [ 0.63877, 47.708125 ], [ 0.651962, 47.698476 ], [ 0.645512, 47.6893 ], [ 0.64478, 47.68594 ], [ 0.649237, 47.68436 ], [ 0.654258, 47.68419 ], [ 0.672603, 47.6959 ], [ 0.674774, 47.69901 ], [ 0.707317, 47.68297 ], [ 0.712153, 47.68181 ], [ 0.719417, 47.69 ], [ 0.732608, 47.693098 ], [ 0.735651, 47.69554 ], [ 0.787171, 47.68083 ], [ 0.80259, 47.6794 ], [ 0.81178, 47.682217 ], [ 0.829337, 47.67674 ], [ 0.834169, 47.676934 ], [ 0.840919, 47.68013 ], [ 0.844288, 47.681876 ], [ 0.865296, 47.689338 ], [ 0.867411, 47.68649 ], [ 0.85961, 47.67951 ], [ 0.862011, 47.67683 ], [ 0.860543, 47.67355 ], [ 0.844708, 47.64511 ], [ 0.862295, 47.63317 ], [ 0.859344, 47.626686 ], [ 0.850765, 47.62308 ], [ 0.852747, 47.6129 ], [ 0.85767, 47.611996 ], [ 0.864282, 47.599827 ], [ 0.894062, 47.60389 ], [ 0.899155, 47.603719 ], [ 0.895291, 47.61292 ], [ 0.904079, 47.61597 ], [ 0.916768, 47.630012 ], [ 0.919605, 47.632755 ], [ 0.9326, 47.62878 ], [ 0.937343, 47.628423 ], [ 0.951655, 47.62615 ], [ 0.960922, 47.62797 ], [ 0.96527, 47.62957 ], [ 0.972786, 47.621751 ], [ 0.987056, 47.62053 ], [ 0.991789, 47.62003 ], [ 0.984911, 47.604331 ], [ 0.987657, 47.59117 ], [ 0.995606, 47.5872 ], [ 0.997017, 47.583974 ], [ 1.000398, 47.58396 ], [ 1.003723, 47.584368 ], [ 1.01254, 47.60279 ], [ 1.019281, 47.60768 ], [ 1.028918, 47.608494 ], [ 1.033353, 47.607012 ], [ 1.059904, 47.57649 ], [ 1.062099, 47.56955 ], [ 1.063593, 47.56614 ], [ 1.073175, 47.5712 ], [ 1.077002, 47.57245 ], [ 1.076557, 47.5619 ], [ 1.047554, 47.53686 ], [ 1.045035, 47.53157 ], [ 1.068832, 47.51947 ], [ 1.068855, 47.502995 ], [ 1.080281, 47.49157 ], [ 1.081583, 47.488213 ], [ 1.090288, 47.472842 ], [ 1.093746, 47.47049 ], [ 1.092002, 47.467999 ], [ 1.086006, 47.46447 ], [ 1.08711, 47.46182 ], [ 1.10772, 47.465122 ], [ 1.112883, 47.465917 ], [ 1.128852, 47.450102 ], [ 1.133366, 47.44895 ], [ 1.131913, 47.44569 ], [ 1.114759, 47.42924 ], [ 1.085019, 47.429687 ], [ 1.110523, 47.408628 ], [ 1.113388, 47.39847 ], [ 1.121682, 47.39038 ], [ 1.121851, 47.38365 ], [ 1.118514, 47.381654 ], [ 1.107408, 47.372883 ], [ 1.106881, 47.36716 ], [ 1.122414, 47.35507 ], [ 1.115791, 47.350103 ], [ 1.107242, 47.33439 ], [ 1.106313, 47.331083 ], [ 1.094853, 47.328537 ], [ 1.105988, 47.301614 ], [ 1.108127, 47.29841 ], [ 1.131214, 47.29454 ], [ 1.162064, 47.272205 ], [ 1.173372, 47.28557 ], [ 1.174129, 47.2886 ], [ 1.182432, 47.28493 ], [ 1.197231, 47.284418 ], [ 1.215287, 47.28903 ], [ 1.215691, 47.292394 ], [ 1.219343, 47.293611 ], [ 1.223335, 47.294177 ], [ 1.242562, 47.286627 ], [ 1.243638, 47.28366 ], [ 1.243286, 47.278263 ], [ 1.242151, 47.27573 ], [ 1.264976, 47.25724 ], [ 1.275068, 47.256012 ], [ 1.287979, 47.24099 ], [ 1.301678, 47.22337 ], [ 1.302775, 47.22001 ], [ 1.30451, 47.21697 ], [ 1.322029, 47.193875 ], [ 1.323763, 47.19121 ], [ 1.326666, 47.18622 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "39", "CODE_DEPT": "38", "NOM_DEPT": "ISERE", "CODE_CHF": "185", "NOM_CHF": "GRENOBLE", "X_CHF_LIEU": "9140", "Y_CHF_LIEU": "64578", "X_CENTROID": "9020", "Y_CENTROID": "64659", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.80147, 44.706779 ], [ 5.796837, 44.70557 ], [ 5.774648, 44.6985 ], [ 5.755312, 44.696965 ], [ 5.73636, 44.712668 ], [ 5.717932, 44.71537 ], [ 5.70406, 44.729299 ], [ 5.699316, 44.724451 ], [ 5.691217, 44.722612 ], [ 5.668003, 44.72468 ], [ 5.660657, 44.721369 ], [ 5.647102, 44.724099 ], [ 5.645942, 44.726577 ], [ 5.643978, 44.73158 ], [ 5.639871, 44.73265 ], [ 5.629065, 44.744797 ], [ 5.626659, 44.750385 ], [ 5.626315, 44.753293 ], [ 5.62238, 44.754035 ], [ 5.607698, 44.755859 ], [ 5.586144, 44.764129 ], [ 5.582047, 44.77787 ], [ 5.577771, 44.77978 ], [ 5.548387, 44.7931 ], [ 5.545874, 44.787879 ], [ 5.553872, 44.774876 ], [ 5.548726, 44.770716 ], [ 5.48156, 44.786013 ], [ 5.477975, 44.79192 ], [ 5.46402, 44.793881 ], [ 5.460202, 44.799992 ], [ 5.475126, 44.807928 ], [ 5.484766, 44.82307 ], [ 5.480397, 44.82272 ], [ 5.463795, 44.82598 ], [ 5.464305, 44.82952 ], [ 5.474919, 44.867889 ], [ 5.470453, 44.87809 ], [ 5.480488, 44.898175 ], [ 5.483565, 44.92301 ], [ 5.483029, 44.926367 ], [ 5.477675, 44.966761 ], [ 5.47919, 44.97003 ], [ 5.488361, 44.989665 ], [ 5.49306, 44.99541 ], [ 5.480436, 45.01308 ], [ 5.483609, 45.02279 ], [ 5.479206, 45.024037 ], [ 5.47773, 45.033439 ], [ 5.465229, 45.04354 ], [ 5.466517, 45.05403 ], [ 5.475777, 45.07029 ], [ 5.484569, 45.07304 ], [ 5.494196, 45.07167 ], [ 5.486388, 45.080783 ], [ 5.473718, 45.08639 ], [ 5.46395, 45.08693 ], [ 5.457488, 45.08167 ], [ 5.455339, 45.07907 ], [ 5.447812, 45.07179 ], [ 5.44593, 45.06859 ], [ 5.432402, 45.0545 ], [ 5.422873, 45.053095 ], [ 5.40765, 45.044867 ], [ 5.393834, 45.04685 ], [ 5.385417, 45.055083 ], [ 5.384813, 45.04896 ], [ 5.397269, 45.03833 ], [ 5.39289, 45.037249 ], [ 5.384095, 45.035979 ], [ 5.369797, 45.04395 ], [ 5.352338, 45.04696 ], [ 5.347807, 45.0474 ], [ 5.340586, 45.06189 ], [ 5.333351, 45.059988 ], [ 5.329014, 45.058691 ], [ 5.321077, 45.055173 ], [ 5.320482, 45.05186 ], [ 5.316422, 45.051703 ], [ 5.305798, 45.05538 ], [ 5.30689, 45.05845 ], [ 5.29162, 45.06389 ], [ 5.28982, 45.06088 ], [ 5.276451, 45.059679 ], [ 5.275255, 45.056524 ], [ 5.272423, 45.054996 ], [ 5.266332, 45.056165 ], [ 5.265166, 45.059387 ], [ 5.246537, 45.060728 ], [ 5.244513, 45.06697 ], [ 5.239853, 45.06773 ], [ 5.231728, 45.071168 ], [ 5.227494, 45.07722 ], [ 5.224169, 45.079912 ], [ 5.220014, 45.080608 ], [ 5.212351, 45.08327 ], [ 5.207811, 45.08421 ], [ 5.180111, 45.083683 ], [ 5.170834, 45.06872 ], [ 5.162641, 45.065568 ], [ 5.149661, 45.074106 ], [ 5.134543, 45.074676 ], [ 5.135416, 45.0779 ], [ 5.156072, 45.08279 ], [ 5.162894, 45.09843 ], [ 5.167161, 45.10023 ], [ 5.186889, 45.12013 ], [ 5.187495, 45.122937 ], [ 5.187561, 45.12853 ], [ 5.1892, 45.14209 ], [ 5.184447, 45.148146 ], [ 5.191216, 45.157165 ], [ 5.189357, 45.163957 ], [ 5.188036, 45.16729 ], [ 5.175783, 45.18127 ], [ 5.169774, 45.19443 ], [ 5.168459, 45.19764 ], [ 5.167415, 45.21013 ], [ 5.170895, 45.212445 ], [ 5.182678, 45.217548 ], [ 5.201713, 45.2174 ], [ 5.199656, 45.220494 ], [ 5.191351, 45.22386 ], [ 5.176541, 45.248402 ], [ 5.162538, 45.246719 ], [ 5.153102, 45.2563 ], [ 5.141072, 45.24525 ], [ 5.122195, 45.24544 ], [ 5.130631, 45.283678 ], [ 5.138789, 45.29644 ], [ 5.135363, 45.298279 ], [ 5.13052, 45.297795 ], [ 5.120994, 45.29733 ], [ 5.116362, 45.29131 ], [ 5.10791, 45.28785 ], [ 5.088531, 45.28625 ], [ 5.075415, 45.28183 ], [ 5.073566, 45.283228 ], [ 5.070509, 45.28577 ], [ 5.067888, 45.2956 ], [ 5.066365, 45.298584 ], [ 5.05911, 45.31362 ], [ 5.056476, 45.31661 ], [ 5.032911, 45.318104 ], [ 5.028752, 45.31713 ], [ 5.020647, 45.319289 ], [ 5.018797, 45.3225 ], [ 5.009652, 45.34223 ], [ 5.004716, 45.342067 ], [ 4.990369, 45.343413 ], [ 4.978246, 45.337954 ], [ 4.973933, 45.336273 ], [ 4.95774, 45.329379 ], [ 4.948148, 45.32858 ], [ 4.943909, 45.327864 ], [ 4.928178, 45.32273 ], [ 4.925238, 45.320404 ], [ 4.903057, 45.310191 ], [ 4.899498, 45.30765 ], [ 4.878779, 45.297713 ], [ 4.858617, 45.298518 ], [ 4.858988, 45.301997 ], [ 4.858799, 45.30895 ], [ 4.854363, 45.308 ], [ 4.809212, 45.300787 ], [ 4.805088, 45.29876 ], [ 4.800462, 45.29737 ], [ 4.797706, 45.29977 ], [ 4.781541, 45.309877 ], [ 4.777746, 45.311739 ], [ 4.762214, 45.32355 ], [ 4.760834, 45.33641 ], [ 4.761049, 45.338384 ], [ 4.761683, 45.341472 ], [ 4.773748, 45.34815 ], [ 4.772551, 45.354297 ], [ 4.7698, 45.356962 ], [ 4.755997, 45.365681 ], [ 4.757023, 45.37146 ], [ 4.756426, 45.3748 ], [ 4.758848, 45.38472 ], [ 4.75485, 45.39779 ], [ 4.752409, 45.40023 ], [ 4.744783, 45.407368 ], [ 4.743146, 45.42042 ], [ 4.756688, 45.430069 ], [ 4.759953, 45.4326 ], [ 4.759948, 45.43849 ], [ 4.758645, 45.44139 ], [ 4.755536, 45.447047 ], [ 4.754932, 45.451028 ], [ 4.756936, 45.455707 ], [ 4.772288, 45.45556 ], [ 4.775918, 45.45421 ], [ 4.779476, 45.45504 ], [ 4.781318, 45.457782 ], [ 4.780067, 45.466664 ], [ 4.779996, 45.46965 ], [ 4.794931, 45.477065 ], [ 4.799126, 45.478502 ], [ 4.801278, 45.47935 ], [ 4.8136, 45.48419 ], [ 4.824478, 45.49494 ], [ 4.837207, 45.49916 ], [ 4.841456, 45.500603 ], [ 4.845381, 45.503844 ], [ 4.848693, 45.50637 ], [ 4.861328, 45.516849 ], [ 4.864208, 45.51942 ], [ 4.871814, 45.527636 ], [ 4.87277, 45.53091 ], [ 4.863055, 45.53775 ], [ 4.83654, 45.54482 ], [ 4.832431, 45.546921 ], [ 4.820698, 45.55853 ], [ 4.819066, 45.560784 ], [ 4.81601, 45.56535 ], [ 4.814331, 45.56811 ], [ 4.808442, 45.57235 ], [ 4.778305, 45.583981 ], [ 4.777132, 45.58739 ], [ 4.806022, 45.589007 ], [ 4.810818, 45.589722 ], [ 4.828533, 45.58773 ], [ 4.84462, 45.581562 ], [ 4.848644, 45.579919 ], [ 4.857586, 45.57652 ], [ 4.859784, 45.590833 ], [ 4.867189, 45.595466 ], [ 4.876687, 45.596695 ], [ 4.882762, 45.60179 ], [ 4.887708, 45.601581 ], [ 4.891364, 45.60155 ], [ 4.912981, 45.60698 ], [ 4.927079, 45.60572 ], [ 4.929941, 45.606467 ], [ 4.932731, 45.607347 ], [ 4.971512, 45.6127 ], [ 4.993871, 45.604875 ], [ 4.998331, 45.603282 ], [ 4.998873, 45.60372 ], [ 5.001745, 45.61396 ], [ 4.99231, 45.61573 ], [ 4.989447, 45.618573 ], [ 5.002707, 45.622463 ], [ 5.033762, 45.61412 ], [ 5.040266, 45.618563 ], [ 5.044126, 45.620547 ], [ 5.036484, 45.629522 ], [ 5.038303, 45.64337 ], [ 5.058066, 45.65334 ], [ 5.056684, 45.655575 ], [ 5.054025, 45.66005 ], [ 5.079511, 45.67613 ], [ 5.089164, 45.6772 ], [ 5.091109, 45.680388 ], [ 5.107072, 45.68822 ], [ 5.104281, 45.698294 ], [ 5.130745, 45.705183 ], [ 5.143568, 45.70131 ], [ 5.152058, 45.70408 ], [ 5.155332, 45.701662 ], [ 5.156647, 45.70506 ], [ 5.159244, 45.71525 ], [ 5.155242, 45.717167 ], [ 5.142938, 45.72221 ], [ 5.133749, 45.73339 ], [ 5.130361, 45.7356 ], [ 5.094527, 45.739453 ], [ 5.089879, 45.75263 ], [ 5.091591, 45.762848 ], [ 5.09354, 45.766036 ], [ 5.088802, 45.76702 ], [ 5.069344, 45.76641 ], [ 5.059605, 45.782074 ], [ 5.060075, 45.78534 ], [ 5.059069, 45.791857 ], [ 5.063732, 45.790871 ], [ 5.086697, 45.785242 ], [ 5.090735, 45.78716 ], [ 5.101067, 45.81338 ], [ 5.109059, 45.798321 ], [ 5.113621, 45.79941 ], [ 5.112341, 45.80601 ], [ 5.116455, 45.8112 ], [ 5.121251, 45.811622 ], [ 5.139582, 45.806 ], [ 5.144202, 45.80457 ], [ 5.157854, 45.803218 ], [ 5.172728, 45.79497 ], [ 5.177082, 45.79339 ], [ 5.184895, 45.78418 ], [ 5.18732, 45.781021 ], [ 5.188117, 45.77451 ], [ 5.195541, 45.771151 ], [ 5.200198, 45.77142 ], [ 5.224334, 45.76884 ], [ 5.236253, 45.7752 ], [ 5.240203, 45.77737 ], [ 5.251647, 45.7827 ], [ 5.255627, 45.78431 ], [ 5.263118, 45.787706 ], [ 5.266895, 45.78937 ], [ 5.278328, 45.803985 ], [ 5.288808, 45.81103 ], [ 5.290627, 45.814186 ], [ 5.291011, 45.821277 ], [ 5.299254, 45.83419 ], [ 5.302491, 45.848133 ], [ 5.314118, 45.85826 ], [ 5.330497, 45.864784 ], [ 5.334517, 45.8708 ], [ 5.335545, 45.87404 ], [ 5.338765, 45.878504 ], [ 5.340914, 45.880514 ], [ 5.354928, 45.88278 ], [ 5.374821, 45.87234 ], [ 5.37802, 45.86966 ], [ 5.381008, 45.86718 ], [ 5.404377, 45.85687 ], [ 5.414546, 45.85089 ], [ 5.416317, 45.848044 ], [ 5.417908, 45.841118 ], [ 5.430269, 45.83496 ], [ 5.433658, 45.8323 ], [ 5.435634, 45.829773 ], [ 5.436129, 45.826383 ], [ 5.422726, 45.82372 ], [ 5.422513, 45.80713 ], [ 5.435753, 45.79743 ], [ 5.439151, 45.795056 ], [ 5.444401, 45.789132 ], [ 5.447078, 45.786191 ], [ 5.450481, 45.784234 ], [ 5.460403, 45.778306 ], [ 5.483998, 45.75328 ], [ 5.494597, 45.7466 ], [ 5.498152, 45.744385 ], [ 5.514251, 45.733378 ], [ 5.517509, 45.73119 ], [ 5.524538, 45.718336 ], [ 5.527275, 45.71546 ], [ 5.545542, 45.71359 ], [ 5.549373, 45.711894 ], [ 5.552641, 45.7097 ], [ 5.556418, 45.70043 ], [ 5.570146, 45.69675 ], [ 5.575188, 45.69099 ], [ 5.574246, 45.687588 ], [ 5.565766, 45.68492 ], [ 5.556579, 45.696685 ], [ 5.5523, 45.6984 ], [ 5.545775, 45.69463 ], [ 5.547252, 45.68456 ], [ 5.550315, 45.68185 ], [ 5.551755, 45.673496 ], [ 5.555279, 45.671605 ], [ 5.563144, 45.674111 ], [ 5.567337, 45.673078 ], [ 5.579384, 45.66793 ], [ 5.578845, 45.66464 ], [ 5.581829, 45.661944 ], [ 5.601936, 45.652616 ], [ 5.604439, 45.63618 ], [ 5.614911, 45.625412 ], [ 5.621712, 45.61637 ], [ 5.623748, 45.61327 ], [ 5.622591, 45.609989 ], [ 5.624088, 45.60338 ], [ 5.637656, 45.589626 ], [ 5.640001, 45.58713 ], [ 5.645896, 45.58294 ], [ 5.646909, 45.57702 ], [ 5.671145, 45.561328 ], [ 5.67121, 45.55468 ], [ 5.675183, 45.55277 ], [ 5.673318, 45.549987 ], [ 5.681071, 45.54139 ], [ 5.676788, 45.54164 ], [ 5.673337, 45.54346 ], [ 5.67211, 45.54009 ], [ 5.677133, 45.53099 ], [ 5.691109, 45.527893 ], [ 5.69125, 45.52181 ], [ 5.695685, 45.519963 ], [ 5.701047, 45.51769 ], [ 5.712079, 45.500593 ], [ 5.713964, 45.497484 ], [ 5.719338, 45.48635 ], [ 5.719744, 45.483396 ], [ 5.733757, 45.474568 ], [ 5.736531, 45.47186 ], [ 5.732183, 45.452721 ], [ 5.739125, 45.440857 ], [ 5.739988, 45.43758 ], [ 5.753097, 45.43507 ], [ 5.757658, 45.434925 ], [ 5.760698, 45.43636 ], [ 5.763387, 45.43922 ], [ 5.782462, 45.441105 ], [ 5.796363, 45.43807 ], [ 5.811361, 45.425382 ], [ 5.829773, 45.421099 ], [ 5.834628, 45.4202 ], [ 5.835269, 45.42023 ], [ 5.854303, 45.41592 ], [ 5.859585, 45.409908 ], [ 5.879282, 45.40687 ], [ 5.890609, 45.399858 ], [ 5.891188, 45.39279 ], [ 5.891003, 45.389242 ], [ 5.894443, 45.38801 ], [ 5.91089, 45.394152 ], [ 5.923503, 45.41293 ], [ 5.906359, 45.409993 ], [ 5.903168, 45.4231 ], [ 5.904884, 45.43 ], [ 5.904455, 45.432308 ], [ 5.913134, 45.435534 ], [ 5.920589, 45.444413 ], [ 5.925239, 45.4649 ], [ 5.917251, 45.47324 ], [ 5.91537, 45.47645 ], [ 5.915827, 45.47661 ], [ 5.971015, 45.4914 ], [ 5.979432, 45.487803 ], [ 5.990198, 45.476244 ], [ 6.009027, 45.471992 ], [ 6.009951, 45.46518 ], [ 6.011361, 45.458827 ], [ 6.007789, 45.454111 ], [ 6.045157, 45.43952 ], [ 6.049236, 45.437807 ], [ 6.054414, 45.44074 ], [ 6.067078, 45.444052 ], [ 6.076276, 45.44325 ], [ 6.085559, 45.443059 ], [ 6.090016, 45.444008 ], [ 6.094287, 45.442322 ], [ 6.094585, 45.43549 ], [ 6.094509, 45.432052 ], [ 6.098749, 45.432349 ], [ 6.102561, 45.43368 ], [ 6.121315, 45.438284 ], [ 6.130143, 45.43503 ], [ 6.146025, 45.413288 ], [ 6.175458, 45.394101 ], [ 6.190269, 45.368 ], [ 6.175046, 45.35955 ], [ 6.170009, 45.359542 ], [ 6.176652, 45.35523 ], [ 6.190649, 45.3539 ], [ 6.194759, 45.352251 ], [ 6.191427, 45.33961 ], [ 6.187807, 45.333065 ], [ 6.185237, 45.33035 ], [ 6.184451, 45.31796 ], [ 6.179716, 45.317804 ], [ 6.15778, 45.312315 ], [ 6.152869, 45.303632 ], [ 6.141243, 45.298786 ], [ 6.142406, 45.295401 ], [ 6.130815, 45.284534 ], [ 6.139436, 45.25834 ], [ 6.125696, 45.24427 ], [ 6.12714, 45.2409 ], [ 6.128797, 45.230423 ], [ 6.139861, 45.2233 ], [ 6.13968, 45.213059 ], [ 6.159013, 45.202349 ], [ 6.161919, 45.188407 ], [ 6.160589, 45.181804 ], [ 6.146321, 45.16399 ], [ 6.14379, 45.154559 ], [ 6.16117, 45.151103 ], [ 6.164686, 45.15316 ], [ 6.169033, 45.154124 ], [ 6.17683, 45.1629 ], [ 6.180992, 45.16486 ], [ 6.207805, 45.156639 ], [ 6.222062, 45.14258 ], [ 6.249773, 45.149197 ], [ 6.26149, 45.14289 ], [ 6.265355, 45.13668 ], [ 6.260566, 45.12685 ], [ 6.258496, 45.12365 ], [ 6.245508, 45.119204 ], [ 6.229263, 45.106807 ], [ 6.243285, 45.06995 ], [ 6.22008, 45.065368 ], [ 6.218717, 45.062 ], [ 6.209563, 45.0423 ], [ 6.208686, 45.02834 ], [ 6.202925, 45.022933 ], [ 6.203138, 45.01245 ], [ 6.214373, 45.00568 ], [ 6.256173, 44.996219 ], [ 6.313282, 45.00386 ], [ 6.318199, 45.00387 ], [ 6.322681, 44.99762 ], [ 6.316204, 44.988209 ], [ 6.315992, 44.981186 ], [ 6.328214, 44.96635 ], [ 6.323254, 44.956575 ], [ 6.326279, 44.95001 ], [ 6.353422, 44.94256 ], [ 6.358172, 44.941575 ], [ 6.35491, 44.92778 ], [ 6.357945, 44.90729 ], [ 6.35466, 44.8971 ], [ 6.35855, 44.88732 ], [ 6.351997, 44.88203 ], [ 6.35047, 44.875131 ], [ 6.355364, 44.85482 ], [ 6.352053, 44.852842 ], [ 6.336319, 44.84837 ], [ 6.319428, 44.855139 ], [ 6.304353, 44.872792 ], [ 6.294563, 44.87398 ], [ 6.267095, 44.869092 ], [ 6.248866, 44.85256 ], [ 6.229098, 44.852 ], [ 6.196382, 44.85898 ], [ 6.192556, 44.85674 ], [ 6.169659, 44.852391 ], [ 6.165014, 44.853587 ], [ 6.157906, 44.85829 ], [ 6.130449, 44.862515 ], [ 6.113151, 44.84553 ], [ 6.097322, 44.83823 ], [ 6.093293, 44.83637 ], [ 6.056502, 44.815814 ], [ 6.052272, 44.81717 ], [ 6.030211, 44.8381 ], [ 6.016206, 44.83529 ], [ 6.003416, 44.820355 ], [ 5.979182, 44.818594 ], [ 5.975607, 44.81658 ], [ 5.949519, 44.80453 ], [ 5.951206, 44.80146 ], [ 5.977782, 44.79099 ], [ 5.979498, 44.78446 ], [ 5.980273, 44.781184 ], [ 5.976427, 44.779737 ], [ 5.953165, 44.771314 ], [ 5.952215, 44.768412 ], [ 5.951122, 44.759621 ], [ 5.946886, 44.76131 ], [ 5.937689, 44.763428 ], [ 5.919572, 44.75279 ], [ 5.902203, 44.75799 ], [ 5.893139, 44.75557 ], [ 5.885456, 44.74729 ], [ 5.880592, 44.746846 ], [ 5.867467, 44.751007 ], [ 5.847986, 44.751527 ], [ 5.841024, 44.756373 ], [ 5.827093, 44.75969 ], [ 5.826526, 44.756203 ], [ 5.829361, 44.74244 ], [ 5.81886, 44.73065 ], [ 5.811319, 44.71402 ], [ 5.80147, 44.706779 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "40", "CODE_DEPT": "39", "NOM_DEPT": "JURA", "CODE_CHF": "300", "NOM_CHF": "LONS-LE-SAUNIER", "X_CHF_LIEU": "8951", "Y_CHF_LIEU": "66225", "X_CENTROID": "9059", "Y_CENTROID": "66288", "CODE_REG": "43", "NOM_REGION": "FRANCHE-COMTE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.064008, 46.41623 ], [ 6.060575, 46.417509 ], [ 6.056984, 46.41619 ], [ 6.052807, 46.411409 ], [ 6.03102, 46.388101 ], [ 6.013384, 46.375997 ], [ 5.984117, 46.362656 ], [ 5.975139, 46.35029 ], [ 5.944004, 46.31221 ], [ 5.941531, 46.30926 ], [ 5.937319, 46.30977 ], [ 5.925908, 46.31377 ], [ 5.92187, 46.31194 ], [ 5.909198, 46.283945 ], [ 5.894627, 46.286614 ], [ 5.891985, 46.2836 ], [ 5.869187, 46.26498 ], [ 5.867694, 46.26822 ], [ 5.86085, 46.268771 ], [ 5.850659, 46.2617 ], [ 5.826262, 46.261715 ], [ 5.81828, 46.26287 ], [ 5.813575, 46.2636 ], [ 5.766045, 46.26833 ], [ 5.761568, 46.26715 ], [ 5.733675, 46.26377 ], [ 5.72966, 46.261928 ], [ 5.725181, 46.26069 ], [ 5.721538, 46.263177 ], [ 5.71596, 46.28037 ], [ 5.718978, 46.294287 ], [ 5.714553, 46.30807 ], [ 5.684582, 46.310934 ], [ 5.683316, 46.315874 ], [ 5.68023, 46.318433 ], [ 5.668481, 46.3239 ], [ 5.645285, 46.324791 ], [ 5.649798, 46.334192 ], [ 5.649207, 46.3373 ], [ 5.646092, 46.34281 ], [ 5.637458, 46.336442 ], [ 5.635057, 46.33331 ], [ 5.612518, 46.32656 ], [ 5.605673, 46.31364 ], [ 5.604641, 46.30944 ], [ 5.60215, 46.30681 ], [ 5.597891, 46.2979 ], [ 5.587251, 46.292509 ], [ 5.582606, 46.29324 ], [ 5.564674, 46.29277 ], [ 5.561577, 46.286576 ], [ 5.559458, 46.283515 ], [ 5.539301, 46.268903 ], [ 5.51137, 46.26436 ], [ 5.507498, 46.265481 ], [ 5.502609, 46.270211 ], [ 5.499595, 46.268205 ], [ 5.475362, 46.265221 ], [ 5.471308, 46.26721 ], [ 5.457672, 46.27685 ], [ 5.459001, 46.290531 ], [ 5.466531, 46.29324 ], [ 5.473218, 46.30893 ], [ 5.475305, 46.315385 ], [ 5.471469, 46.31653 ], [ 5.46518, 46.323542 ], [ 5.460892, 46.32247 ], [ 5.454476, 46.317998 ], [ 5.437146, 46.315127 ], [ 5.435942, 46.318468 ], [ 5.423534, 46.34773 ], [ 5.41024, 46.309105 ], [ 5.406583, 46.30991 ], [ 5.404054, 46.31477 ], [ 5.404041, 46.31567 ], [ 5.404352, 46.31918 ], [ 5.401686, 46.332799 ], [ 5.402729, 46.33612 ], [ 5.373462, 46.35224 ], [ 5.374637, 46.355329 ], [ 5.375761, 46.35843 ], [ 5.376474, 46.361669 ], [ 5.363472, 46.37002 ], [ 5.365075, 46.37308 ], [ 5.375164, 46.37971 ], [ 5.377881, 46.382324 ], [ 5.370296, 46.38603 ], [ 5.367105, 46.388692 ], [ 5.36352, 46.390388 ], [ 5.348116, 46.39942 ], [ 5.334092, 46.39972 ], [ 5.309146, 46.41026 ], [ 5.298806, 46.41553 ], [ 5.307817, 46.41486 ], [ 5.312333, 46.41602 ], [ 5.308145, 46.42047 ], [ 5.321727, 46.42895 ], [ 5.310561, 46.44677 ], [ 5.313215, 46.4525 ], [ 5.321799, 46.453601 ], [ 5.323147, 46.45648 ], [ 5.323351, 46.46251 ], [ 5.37379, 46.460451 ], [ 5.376345, 46.463127 ], [ 5.385312, 46.470544 ], [ 5.39358, 46.467596 ], [ 5.398099, 46.466601 ], [ 5.413803, 46.472045 ], [ 5.41843, 46.477298 ], [ 5.420044, 46.48018 ], [ 5.419959, 46.4809 ], [ 5.421173, 46.500302 ], [ 5.407571, 46.50041 ], [ 5.395657, 46.50569 ], [ 5.392428, 46.50821 ], [ 5.382494, 46.51557 ], [ 5.362852, 46.51791 ], [ 5.359459, 46.52364 ], [ 5.360073, 46.52424 ], [ 5.361582, 46.54823 ], [ 5.362579, 46.551642 ], [ 5.357651, 46.560563 ], [ 5.364888, 46.564513 ], [ 5.36788, 46.56695 ], [ 5.364614, 46.57504 ], [ 5.362124, 46.57727 ], [ 5.370666, 46.58053 ], [ 5.375536, 46.58016 ], [ 5.400427, 46.580232 ], [ 5.404691, 46.58211 ], [ 5.411943, 46.59863 ], [ 5.400092, 46.60937 ], [ 5.398593, 46.612719 ], [ 5.408583, 46.614554 ], [ 5.41379, 46.61464 ], [ 5.429678, 46.625847 ], [ 5.43349, 46.627757 ], [ 5.440623, 46.634902 ], [ 5.440601, 46.63791 ], [ 5.415008, 46.654146 ], [ 5.422912, 46.65831 ], [ 5.427103, 46.660161 ], [ 5.424814, 46.661344 ], [ 5.424647, 46.66464 ], [ 5.420175, 46.670009 ], [ 5.42209, 46.673032 ], [ 5.398501, 46.68268 ], [ 5.395359, 46.68505 ], [ 5.406696, 46.6954 ], [ 5.408349, 46.69844 ], [ 5.406642, 46.703931 ], [ 5.395012, 46.712507 ], [ 5.395908, 46.7156 ], [ 5.390789, 46.72636 ], [ 5.393641, 46.72863 ], [ 5.365725, 46.73107 ], [ 5.362002, 46.733117 ], [ 5.36676, 46.752396 ], [ 5.371518, 46.75152 ], [ 5.390112, 46.7672 ], [ 5.390248, 46.770592 ], [ 5.383425, 46.77553 ], [ 5.37375, 46.77707 ], [ 5.370807, 46.78352 ], [ 5.355051, 46.79094 ], [ 5.346456, 46.790222 ], [ 5.341506, 46.790692 ], [ 5.332496, 46.797713 ], [ 5.331173, 46.81027 ], [ 5.328584, 46.812916 ], [ 5.333584, 46.817814 ], [ 5.335836, 46.820732 ], [ 5.344929, 46.82101 ], [ 5.351119, 46.816088 ], [ 5.371185, 46.825152 ], [ 5.375268, 46.82699 ], [ 5.378666, 46.827574 ], [ 5.382143, 46.82784 ], [ 5.386981, 46.826825 ], [ 5.405169, 46.8324 ], [ 5.410217, 46.83258 ], [ 5.413464, 46.828263 ], [ 5.416653, 46.826782 ], [ 5.463195, 46.82858 ], [ 5.459748, 46.83418 ], [ 5.464207, 46.84017 ], [ 5.457796, 46.84527 ], [ 5.459286, 46.85524 ], [ 5.454209, 46.85592 ], [ 5.445188, 46.85941 ], [ 5.442352, 46.854479 ], [ 5.431176, 46.8606 ], [ 5.428179, 46.860238 ], [ 5.425168, 46.85986 ], [ 5.420118, 46.860579 ], [ 5.404005, 46.86888 ], [ 5.400587, 46.88273 ], [ 5.403681, 46.889389 ], [ 5.392627, 46.891384 ], [ 5.391603, 46.894072 ], [ 5.387129, 46.893039 ], [ 5.382801, 46.891741 ], [ 5.377783, 46.88999 ], [ 5.360337, 46.88434 ], [ 5.35077, 46.892129 ], [ 5.341274, 46.8901 ], [ 5.335521, 46.884666 ], [ 5.328758, 46.889316 ], [ 5.328806, 46.895927 ], [ 5.313989, 46.90866 ], [ 5.312069, 46.911703 ], [ 5.31075, 46.91807 ], [ 5.310031, 46.92125 ], [ 5.308512, 46.926925 ], [ 5.307367, 46.93646 ], [ 5.292306, 46.9407 ], [ 5.287444, 46.94079 ], [ 5.275311, 46.9353 ], [ 5.270919, 46.92936 ], [ 5.262014, 46.927387 ], [ 5.26267, 46.930815 ], [ 5.26267, 46.937733 ], [ 5.251317, 46.94458 ], [ 5.26227, 46.950171 ], [ 5.263045, 46.953605 ], [ 5.255236, 46.979888 ], [ 5.267767, 46.988388 ], [ 5.271966, 46.989342 ], [ 5.27507, 46.99803 ], [ 5.279146, 46.99915 ], [ 5.298243, 47.00179 ], [ 5.303971, 47.01045 ], [ 5.313647, 47.011302 ], [ 5.31824, 47.01246 ], [ 5.317198, 47.015806 ], [ 5.279764, 47.025333 ], [ 5.275327, 47.02693 ], [ 5.275218, 47.027161 ], [ 5.283484, 47.046318 ], [ 5.295851, 47.05608 ], [ 5.29907, 47.05864 ], [ 5.301895, 47.060904 ], [ 5.310446, 47.06051 ], [ 5.323975, 47.07379 ], [ 5.332533, 47.076593 ], [ 5.341181, 47.07717 ], [ 5.345786, 47.076649 ], [ 5.357909, 47.0786 ], [ 5.35988, 47.08114 ], [ 5.363344, 47.07834 ], [ 5.377627, 47.079322 ], [ 5.390537, 47.086784 ], [ 5.391341, 47.08976 ], [ 5.39781, 47.09465 ], [ 5.398163, 47.10465 ], [ 5.400588, 47.10756 ], [ 5.411215, 47.116853 ], [ 5.412114, 47.11986 ], [ 5.409191, 47.12502 ], [ 5.414128, 47.129753 ], [ 5.414566, 47.13276 ], [ 5.424893, 47.13698 ], [ 5.428918, 47.13696 ], [ 5.438985, 47.14299 ], [ 5.439112, 47.148991 ], [ 5.438298, 47.152017 ], [ 5.445085, 47.15842 ], [ 5.448641, 47.159662 ], [ 5.450873, 47.162857 ], [ 5.45227, 47.166268 ], [ 5.458916, 47.18193 ], [ 5.456227, 47.191629 ], [ 5.452548, 47.19381 ], [ 5.446891, 47.200762 ], [ 5.449262, 47.20322 ], [ 5.470255, 47.2111 ], [ 5.474206, 47.21308 ], [ 5.479136, 47.21851 ], [ 5.475309, 47.231305 ], [ 5.48011, 47.23705 ], [ 5.484335, 47.23806 ], [ 5.480799, 47.25744 ], [ 5.483133, 47.26041 ], [ 5.487558, 47.26656 ], [ 5.488004, 47.280175 ], [ 5.488275, 47.282601 ], [ 5.488559, 47.28502 ], [ 5.493047, 47.28818 ], [ 5.501046, 47.28513 ], [ 5.505365, 47.284071 ], [ 5.508605, 47.29337 ], [ 5.516953, 47.30115 ], [ 5.518539, 47.304187 ], [ 5.522116, 47.305352 ], [ 5.533517, 47.28627 ], [ 5.55606, 47.279047 ], [ 5.555199, 47.269005 ], [ 5.568857, 47.26959 ], [ 5.56976, 47.263576 ], [ 5.573459, 47.261512 ], [ 5.573451, 47.25555 ], [ 5.580744, 47.25286 ], [ 5.583791, 47.25515 ], [ 5.60132, 47.26061 ], [ 5.610811, 47.25906 ], [ 5.62332, 47.25403 ], [ 5.637434, 47.25615 ], [ 5.642305, 47.25619 ], [ 5.646765, 47.258898 ], [ 5.652677, 47.262339 ], [ 5.653365, 47.265008 ], [ 5.66334, 47.26604 ], [ 5.672097, 47.27422 ], [ 5.676645, 47.275723 ], [ 5.683462, 47.274152 ], [ 5.684065, 47.271642 ], [ 5.691668, 47.272295 ], [ 5.697562, 47.267915 ], [ 5.698726, 47.265006 ], [ 5.701682, 47.262208 ], [ 5.718946, 47.24147 ], [ 5.718389, 47.23804 ], [ 5.714028, 47.23601 ], [ 5.722763, 47.225421 ], [ 5.720717, 47.22262 ], [ 5.7234, 47.21842 ], [ 5.727009, 47.21763 ], [ 5.739038, 47.204355 ], [ 5.737666, 47.201289 ], [ 5.755693, 47.20538 ], [ 5.75913, 47.19971 ], [ 5.757191, 47.1967 ], [ 5.761384, 47.194186 ], [ 5.774928, 47.193366 ], [ 5.781091, 47.189885 ], [ 5.785197, 47.18853 ], [ 5.787059, 47.17652 ], [ 5.7851, 47.170565 ], [ 5.793167, 47.17457 ], [ 5.80754, 47.17125 ], [ 5.811467, 47.169054 ], [ 5.810483, 47.159051 ], [ 5.814705, 47.15316 ], [ 5.813663, 47.14989 ], [ 5.823646, 47.142587 ], [ 5.828074, 47.14118 ], [ 5.816597, 47.13479 ], [ 5.805567, 47.11947 ], [ 5.804744, 47.11608 ], [ 5.801869, 47.11053 ], [ 5.79159, 47.10518 ], [ 5.7902, 47.102292 ], [ 5.787552, 47.09599 ], [ 5.778052, 47.09749 ], [ 5.768989, 47.09004 ], [ 5.776818, 47.07789 ], [ 5.778609, 47.074771 ], [ 5.782717, 47.058051 ], [ 5.784717, 47.05491 ], [ 5.762794, 47.04611 ], [ 5.747797, 47.055454 ], [ 5.742758, 47.05591 ], [ 5.737384, 47.0508 ], [ 5.750931, 47.04067 ], [ 5.751268, 47.03719 ], [ 5.749742, 47.033877 ], [ 5.741657, 47.02983 ], [ 5.746332, 47.01996 ], [ 5.749513, 47.017243 ], [ 5.760567, 47.01367 ], [ 5.764418, 47.012482 ], [ 5.769926, 47.01766 ], [ 5.788092, 47.02074 ], [ 5.791866, 47.02264 ], [ 5.799216, 47.03178 ], [ 5.797116, 47.04209 ], [ 5.800341, 47.04481 ], [ 5.805278, 47.04573 ], [ 5.810145, 47.04681 ], [ 5.81492, 47.045883 ], [ 5.817225, 47.03928 ], [ 5.815687, 47.02598 ], [ 5.816025, 47.02259 ], [ 5.817347, 47.016634 ], [ 5.835588, 47.01331 ], [ 5.839449, 47.01535 ], [ 5.840657, 47.00851 ], [ 5.844003, 47.01002 ], [ 5.84693, 47.005845 ], [ 5.846944, 47.0031 ], [ 5.858321, 47.00829 ], [ 5.876931, 47.005813 ], [ 5.881568, 47.00509 ], [ 5.884481, 46.99848 ], [ 5.893725, 46.99652 ], [ 5.907692, 46.9996 ], [ 5.914876, 47.008023 ], [ 5.917343, 47.014438 ], [ 5.921548, 47.01448 ], [ 5.9137, 46.99063 ], [ 5.915004, 46.98722 ], [ 5.924782, 46.981068 ], [ 5.93888, 46.983709 ], [ 5.945111, 46.98885 ], [ 5.948985, 46.98117 ], [ 5.953536, 46.981101 ], [ 5.968591, 46.980282 ], [ 5.968915, 46.97684 ], [ 5.968797, 46.976123 ], [ 5.973172, 46.97596 ], [ 5.975184, 46.973309 ], [ 5.977195, 46.965608 ], [ 5.979789, 46.963478 ], [ 5.959531, 46.95093 ], [ 5.956543, 46.948498 ], [ 5.965485, 46.947448 ], [ 5.993638, 46.935755 ], [ 5.997222, 46.9335 ], [ 5.994455, 46.93104 ], [ 5.983877, 46.92098 ], [ 5.981702, 46.91801 ], [ 5.98195, 46.90821 ], [ 5.999368, 46.89679 ], [ 6.008435, 46.89556 ], [ 6.010313, 46.89245 ], [ 6.009696, 46.873095 ], [ 6.018207, 46.86974 ], [ 6.030152, 46.87447 ], [ 6.032267, 46.871421 ], [ 6.030521, 46.86862 ], [ 6.028808, 46.860321 ], [ 6.02468, 46.85649 ], [ 6.027407, 46.85172 ], [ 6.045962, 46.848848 ], [ 6.047095, 46.845638 ], [ 6.067857, 46.85862 ], [ 6.072026, 46.856851 ], [ 6.083771, 46.851355 ], [ 6.088554, 46.84264 ], [ 6.093277, 46.84232 ], [ 6.097614, 46.84422 ], [ 6.102703, 46.844809 ], [ 6.105555, 46.8453 ], [ 6.11332, 46.83622 ], [ 6.148065, 46.82156 ], [ 6.15224, 46.81953 ], [ 6.148831, 46.81599 ], [ 6.153656, 46.815219 ], [ 6.163781, 46.80384 ], [ 6.182748, 46.794304 ], [ 6.195654, 46.77997 ], [ 6.201136, 46.77529 ], [ 6.20333, 46.772681 ], [ 6.204198, 46.76339 ], [ 6.183659, 46.75463 ], [ 6.181715, 46.74809 ], [ 6.180198, 46.741442 ], [ 6.16818, 46.7361 ], [ 6.164171, 46.73432 ], [ 6.159724, 46.732906 ], [ 6.155252, 46.731515 ], [ 6.152262, 46.72945 ], [ 6.137485, 46.72386 ], [ 6.131107, 46.71962 ], [ 6.130623, 46.71941 ], [ 6.127108, 46.71707 ], [ 6.11296, 46.70774 ], [ 6.109355, 46.70701 ], [ 6.103598, 46.70369 ], [ 6.099766, 46.701272 ], [ 6.086126, 46.69611 ], [ 6.071211, 46.68757 ], [ 6.103265, 46.65249 ], [ 6.099197, 46.64334 ], [ 6.085902, 46.638469 ], [ 6.081737, 46.63654 ], [ 6.062602, 46.62709 ], [ 6.059153, 46.62485 ], [ 6.058497, 46.61898 ], [ 6.062491, 46.613515 ], [ 6.053761, 46.61291 ], [ 6.048567, 46.60772 ], [ 6.083865, 46.585034 ], [ 6.087083, 46.58255 ], [ 6.127186, 46.55582 ], [ 6.131093, 46.55357 ], [ 6.134607, 46.555612 ], [ 6.138109, 46.55766 ], [ 6.155487, 46.54556 ], [ 6.146652, 46.53031 ], [ 6.137178, 46.529723 ], [ 6.124071, 46.51952 ], [ 6.12083, 46.516942 ], [ 6.097317, 46.482454 ], [ 6.073784, 46.46441 ], [ 6.074869, 46.454278 ], [ 6.084833, 46.446494 ], [ 6.086247, 46.443149 ], [ 6.066153, 46.41939 ], [ 6.064008, 46.41623 ] ] ], [ [ [ 5.444408, 46.84535 ], [ 5.443001, 46.84588 ], [ 5.440782, 46.846162 ], [ 5.442092, 46.84842 ], [ 5.440846, 46.848458 ], [ 5.43983, 46.84893 ], [ 5.440312, 46.850586 ], [ 5.441095, 46.851651 ], [ 5.441712, 46.85194 ], [ 5.441975, 46.85194 ], [ 5.441991, 46.85113 ], [ 5.443689, 46.85095 ], [ 5.442904, 46.849838 ], [ 5.446155, 46.84943 ], [ 5.447391, 46.848013 ], [ 5.448702, 46.847976 ], [ 5.447832, 46.84673 ], [ 5.448476, 46.84645 ], [ 5.447838, 46.8457 ], [ 5.446746, 46.84595 ], [ 5.445922, 46.84544 ], [ 5.445157, 46.845637 ], [ 5.444408, 46.84535 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "41", "CODE_DEPT": "40", "NOM_DEPT": "LANDES", "CODE_CHF": "192", "NOM_CHF": "MONT-DE-MARSAN", "X_CHF_LIEU": "4187", "Y_CHF_LIEU": "63163", "X_CENTROID": "3964", "Y_CENTROID": "63257", "CODE_REG": "72", "NOM_REGION": "AQUITAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.242837, 43.58498 ], [ -0.247068, 43.58269 ], [ -0.251662, 43.58266 ], [ -0.25677, 43.5882 ], [ -0.283325, 43.58416 ], [ -0.287162, 43.5746 ], [ -0.294296, 43.567911 ], [ -0.301204, 43.5713 ], [ -0.302204, 43.565653 ], [ -0.303828, 43.562443 ], [ -0.310386, 43.558065 ], [ -0.336562, 43.55122 ], [ -0.348836, 43.556173 ], [ -0.351868, 43.55869 ], [ -0.353597, 43.56179 ], [ -0.367723, 43.56277 ], [ -0.37489, 43.567344 ], [ -0.389034, 43.56818 ], [ -0.397269, 43.565646 ], [ -0.400679, 43.563215 ], [ -0.40333, 43.56573 ], [ -0.406042, 43.56823 ], [ -0.433971, 43.554557 ], [ -0.437718, 43.552817 ], [ -0.446453, 43.55207 ], [ -0.449713, 43.54987 ], [ -0.459394, 43.561143 ], [ -0.459281, 43.56749 ], [ -0.45139, 43.56602 ], [ -0.431717, 43.583547 ], [ -0.431779, 43.586436 ], [ -0.440974, 43.590602 ], [ -0.441407, 43.59348 ], [ -0.449232, 43.59627 ], [ -0.461857, 43.5876 ], [ -0.465249, 43.589605 ], [ -0.504696, 43.57187 ], [ -0.507656, 43.56923 ], [ -0.507312, 43.568467 ], [ -0.521267, 43.559505 ], [ -0.525431, 43.55775 ], [ -0.548448, 43.54483 ], [ -0.552764, 43.543158 ], [ -0.557174, 43.5428 ], [ -0.558901, 43.54608 ], [ -0.561737, 43.55268 ], [ -0.567072, 43.55822 ], [ -0.600039, 43.538654 ], [ -0.614366, 43.537718 ], [ -0.615241, 43.54119 ], [ -0.614894, 43.544726 ], [ -0.61932, 43.5456 ], [ -0.63128, 43.550474 ], [ -0.633751, 43.5541 ], [ -0.638251, 43.553393 ], [ -0.655611, 43.556845 ], [ -0.657889, 43.55975 ], [ -0.641047, 43.57481 ], [ -0.645501, 43.574532 ], [ -0.661363, 43.568774 ], [ -0.688861, 43.55697 ], [ -0.697133, 43.55965 ], [ -0.700472, 43.562061 ], [ -0.707505, 43.557804 ], [ -0.709861, 43.547888 ], [ -0.70821, 43.541306 ], [ -0.712614, 43.54201 ], [ -0.721203, 43.541383 ], [ -0.728545, 43.54517 ], [ -0.73274, 43.552949 ], [ -0.734087, 43.55575 ], [ -0.738083, 43.55778 ], [ -0.770305, 43.579168 ], [ -0.774672, 43.57832 ], [ -0.782303, 43.57547 ], [ -0.781756, 43.565861 ], [ -0.794167, 43.56396 ], [ -0.795699, 43.56147 ], [ -0.803351, 43.55619 ], [ -0.820938, 43.561192 ], [ -0.837584, 43.55468 ], [ -0.842315, 43.554113 ], [ -0.842813, 43.543421 ], [ -0.860091, 43.542555 ], [ -0.863964, 43.544165 ], [ -0.867742, 43.544733 ], [ -0.871468, 43.545447 ], [ -0.893691, 43.550273 ], [ -0.907683, 43.54968 ], [ -0.911988, 43.54833 ], [ -0.919177, 43.54406 ], [ -0.923683, 43.53462 ], [ -0.928007, 43.53339 ], [ -0.935661, 43.53721 ], [ -0.939764, 43.538538 ], [ -0.949635, 43.532251 ], [ -0.962172, 43.535226 ], [ -0.9882, 43.5402 ], [ -1.001151, 43.536966 ], [ -0.989906, 43.531605 ], [ -0.989143, 43.51831 ], [ -0.992759, 43.512285 ], [ -0.993771, 43.50904 ], [ -0.992383, 43.504029 ], [ -1.017977, 43.50597 ], [ -1.023681, 43.501709 ], [ -1.026914, 43.50404 ], [ -1.028963, 43.50714 ], [ -1.04607, 43.51156 ], [ -1.068997, 43.50845 ], [ -1.077715, 43.521231 ], [ -1.081084, 43.523 ], [ -1.083223, 43.516519 ], [ -1.089581, 43.511928 ], [ -1.10733, 43.51432 ], [ -1.11628, 43.50343 ], [ -1.128596, 43.500349 ], [ -1.13298, 43.499705 ], [ -1.137624, 43.499401 ], [ -1.140709, 43.489652 ], [ -1.145124, 43.48859 ], [ -1.14851, 43.490922 ], [ -1.153755, 43.496207 ], [ -1.165674, 43.491272 ], [ -1.169662, 43.493029 ], [ -1.169836, 43.497121 ], [ -1.16492, 43.50836 ], [ -1.16017, 43.50857 ], [ -1.137291, 43.509721 ], [ -1.130839, 43.51416 ], [ -1.133883, 43.52032 ], [ -1.154083, 43.529314 ], [ -1.159516, 43.538665 ], [ -1.169708, 43.54531 ], [ -1.174184, 43.54605 ], [ -1.191399, 43.546862 ], [ -1.195616, 43.54609 ], [ -1.198334, 43.544125 ], [ -1.203884, 43.540261 ], [ -1.207378, 43.5379 ], [ -1.217605, 43.53062 ], [ -1.250529, 43.51684 ], [ -1.253742, 43.51575 ], [ -1.259852, 43.51317 ], [ -1.263935, 43.51147 ], [ -1.291381, 43.49839 ], [ -1.322411, 43.504947 ], [ -1.334037, 43.50367 ], [ -1.334926, 43.50315 ], [ -1.339491, 43.50245 ], [ -1.36965, 43.495024 ], [ -1.409764, 43.49679 ], [ -1.414216, 43.497209 ], [ -1.417658, 43.496907 ], [ -1.430715, 43.51421 ], [ -1.461756, 43.518331 ], [ -1.465627, 43.516523 ], [ -1.463336, 43.533081 ], [ -1.47943, 43.53916 ], [ -1.497632, 43.528942 ], [ -1.501414, 43.52695 ], [ -1.520215, 43.52898 ], [ -1.524867, 43.529701 ], [ -1.495584, 43.56762 ], [ -1.493309, 43.57054 ], [ -1.484595, 43.58322 ], [ -1.482502, 43.58642 ], [ -1.468952, 43.60727 ], [ -1.466913, 43.61022 ], [ -1.446685, 43.647486 ], [ -1.445676, 43.654638 ], [ -1.445591, 43.658021 ], [ -1.440562, 43.680253 ], [ -1.440529, 43.683499 ], [ -1.428448, 43.737958 ], [ -1.427606, 43.741363 ], [ -1.416042, 43.78189 ], [ -1.414567, 43.785181 ], [ -1.412666, 43.79472 ], [ -1.41179, 43.79788 ], [ -1.400856, 43.832819 ], [ -1.399856, 43.83633 ], [ -1.390421, 43.856449 ], [ -1.383673, 43.884382 ], [ -1.352736, 43.997971 ], [ -1.351446, 44.001358 ], [ -1.327377, 44.086222 ], [ -1.325915, 44.089524 ], [ -1.317321, 44.125559 ], [ -1.316381, 44.12884 ], [ -1.287863, 44.26717 ], [ -1.287089, 44.27072 ], [ -1.280696, 44.30434 ], [ -1.280059, 44.307711 ], [ -1.275291, 44.332354 ], [ -1.274754, 44.33589 ], [ -1.254491, 44.46405 ], [ -1.25389, 44.467604 ], [ -1.204313, 44.478576 ], [ -1.199818, 44.47959 ], [ -1.111609, 44.501446 ], [ -1.106985, 44.50264 ], [ -1.087011, 44.529124 ], [ -1.085166, 44.53219 ], [ -1.080766, 44.53059 ], [ -1.030022, 44.50858 ], [ -1.011142, 44.510376 ], [ -0.996354, 44.51144 ], [ -0.988434, 44.50901 ], [ -0.981033, 44.48479 ], [ -0.990686, 44.46477 ], [ -0.992453, 44.461461 ], [ -1.007738, 44.436515 ], [ -1.025627, 44.425028 ], [ -1.029159, 44.4227 ], [ -1.024305, 44.423247 ], [ -0.970882, 44.429234 ], [ -0.948141, 44.435901 ], [ -0.944148, 44.43709 ], [ -0.919623, 44.44316 ], [ -0.909148, 44.43614 ], [ -0.840281, 44.41841 ], [ -0.81122, 44.420835 ], [ -0.794567, 44.42809 ], [ -0.784941, 44.42914 ], [ -0.780281, 44.428111 ], [ -0.774077, 44.440102 ], [ -0.726968, 44.44754 ], [ -0.703447, 44.443582 ], [ -0.698762, 44.44272 ], [ -0.694507, 44.441322 ], [ -0.681853, 44.4452 ], [ -0.682781, 44.45074 ], [ -0.677006, 44.456354 ], [ -0.643947, 44.450405 ], [ -0.639557, 44.448856 ], [ -0.63573, 44.44685 ], [ -0.628064, 44.44285 ], [ -0.627318, 44.429273 ], [ -0.625643, 44.408052 ], [ -0.637047, 44.40183 ], [ -0.641469, 44.40023 ], [ -0.607275, 44.39225 ], [ -0.603107, 44.390941 ], [ -0.570474, 44.38224 ], [ -0.560007, 44.37463 ], [ -0.532663, 44.366067 ], [ -0.528103, 44.36465 ], [ -0.519075, 44.342282 ], [ -0.517635, 44.339111 ], [ -0.479411, 44.325091 ], [ -0.43661, 44.3228 ], [ -0.43184, 44.322577 ], [ -0.429625, 44.301545 ], [ -0.402291, 44.28719 ], [ -0.38792, 44.287649 ], [ -0.383388, 44.28632 ], [ -0.384245, 44.28282 ], [ -0.396314, 44.237468 ], [ -0.389617, 44.209485 ], [ -0.385436, 44.208893 ], [ -0.372914, 44.207053 ], [ -0.368231, 44.20621 ], [ -0.310572, 44.20306 ], [ -0.305993, 44.20185 ], [ -0.273621, 44.194017 ], [ -0.264191, 44.195748 ], [ -0.259675, 44.19691 ], [ -0.223447, 44.205898 ], [ -0.223807, 44.209365 ], [ -0.228163, 44.25448 ], [ -0.226004, 44.264784 ], [ -0.206465, 44.264203 ], [ -0.19874, 44.26838 ], [ -0.190181, 44.268894 ], [ -0.176352, 44.25882 ], [ -0.166844, 44.24253 ], [ -0.144544, 44.22862 ], [ -0.140689, 44.22641 ], [ -0.129643, 44.20261 ], [ -0.129202, 44.156 ], [ -0.129155, 44.15241 ], [ -0.114737, 44.15141 ], [ -0.106561, 44.154944 ], [ -0.08775, 44.155989 ], [ -0.064434, 44.151914 ], [ -0.059859, 44.150826 ], [ -0.055166, 44.1508 ], [ -0.00379, 44.149918 ], [ -0.003539, 44.1499 ], [ 0.032018, 44.13352 ], [ 0.034594, 44.130652 ], [ 0.130969, 44.124482 ], [ 0.135797, 44.124194 ], [ 0.131824, 44.11919 ], [ 0.135858, 44.113559 ], [ 0.136803, 44.11043 ], [ 0.124151, 44.10502 ], [ 0.100821, 44.08677 ], [ 0.102105, 44.08339 ], [ 0.094951, 44.06836 ], [ 0.087468, 44.063972 ], [ 0.076223, 44.030736 ], [ 0.0698, 44.02578 ], [ 0.060223, 44.02488 ], [ 0.061593, 44.02154 ], [ 0.062234, 44.018077 ], [ 0.061182, 44.014743 ], [ 0.062955, 44.001183 ], [ 0.076046, 43.98314 ], [ 0.069724, 43.97655 ], [ 0.067536, 43.974242 ], [ 0.067104, 43.967359 ], [ 0.055391, 43.95707 ], [ 0.06974, 43.935252 ], [ 0.074765, 43.918186 ], [ 0.075082, 43.914682 ], [ 0.069083, 43.905345 ], [ 0.058618, 43.898381 ], [ 0.036927, 43.90213 ], [ 0.033178, 43.89998 ], [ 0.02921, 43.90203 ], [ 0.015984, 43.912245 ], [ -0.019936, 43.92927 ], [ 0.005383, 43.94523 ], [ 0.005561, 43.955612 ], [ -0.000961, 43.96061 ], [ -0.004915, 43.96253 ], [ -0.036169, 43.98374 ], [ -0.046915, 43.96123 ], [ -0.060463, 43.9588 ], [ -0.073635, 43.94456 ], [ -0.094468, 43.94579 ], [ -0.097864, 43.943353 ], [ -0.095423, 43.931002 ], [ -0.098748, 43.92889 ], [ -0.102561, 43.927278 ], [ -0.106746, 43.928834 ], [ -0.125325, 43.9436 ], [ -0.135133, 43.9363 ], [ -0.153158, 43.93882 ], [ -0.155915, 43.93233 ], [ -0.163922, 43.928606 ], [ -0.179029, 43.93649 ], [ -0.19871, 43.91782 ], [ -0.200575, 43.91464 ], [ -0.203483, 43.91339 ], [ -0.209669, 43.911734 ], [ -0.21685, 43.90762 ], [ -0.227893, 43.91079 ], [ -0.232826, 43.90154 ], [ -0.239879, 43.89741 ], [ -0.231716, 43.890962 ], [ -0.219239, 43.89122 ], [ -0.215616, 43.88927 ], [ -0.20535, 43.88498 ], [ -0.201257, 43.88527 ], [ -0.194002, 43.88158 ], [ -0.187532, 43.86985 ], [ -0.185723, 43.866889 ], [ -0.187112, 43.863894 ], [ -0.195834, 43.8707 ], [ -0.204298, 43.860257 ], [ -0.208908, 43.85767 ], [ -0.194496, 43.843009 ], [ -0.19342, 43.84001 ], [ -0.189844, 43.833697 ], [ -0.196344, 43.82912 ], [ -0.194708, 43.809211 ], [ -0.212633, 43.80928 ], [ -0.216, 43.81254 ], [ -0.226956, 43.807666 ], [ -0.218647, 43.79659 ], [ -0.221604, 43.79037 ], [ -0.222128, 43.78709 ], [ -0.214828, 43.782627 ], [ -0.215682, 43.77241 ], [ -0.207784, 43.759662 ], [ -0.209199, 43.756315 ], [ -0.213934, 43.755662 ], [ -0.218864, 43.750329 ], [ -0.196408, 43.746866 ], [ -0.195896, 43.740162 ], [ -0.194143, 43.73702 ], [ -0.218276, 43.72088 ], [ -0.222236, 43.71887 ], [ -0.226314, 43.71698 ], [ -0.247381, 43.70924 ], [ -0.241216, 43.692676 ], [ -0.254545, 43.682624 ], [ -0.256714, 43.6758 ], [ -0.24933, 43.671847 ], [ -0.23973, 43.671242 ], [ -0.243276, 43.663958 ], [ -0.246276, 43.654944 ], [ -0.259198, 43.653162 ], [ -0.261803, 43.64795 ], [ -0.263359, 43.64499 ], [ -0.263362, 43.638727 ], [ -0.266968, 43.63694 ], [ -0.282112, 43.643079 ], [ -0.280375, 43.627255 ], [ -0.281223, 43.624095 ], [ -0.280401, 43.62078 ], [ -0.274673, 43.61599 ], [ -0.247204, 43.61596 ], [ -0.248946, 43.60578 ], [ -0.254238, 43.600124 ], [ -0.254007, 43.596709 ], [ -0.249482, 43.596664 ], [ -0.242837, 43.58498 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "42", "CODE_DEPT": "41", "NOM_DEPT": "LOIR-ET-CHER", "CODE_CHF": "018", "NOM_CHF": "BLOIS", "X_CHF_LIEU": "5742", "Y_CHF_LIEU": "67227", "X_CENTROID": "5820", "Y_CENTROID": "67251", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.326666, 47.18622 ], [ 1.323763, 47.19121 ], [ 1.322029, 47.193875 ], [ 1.30451, 47.21697 ], [ 1.302775, 47.22001 ], [ 1.301678, 47.22337 ], [ 1.287979, 47.24099 ], [ 1.275068, 47.256012 ], [ 1.264976, 47.25724 ], [ 1.242151, 47.27573 ], [ 1.243286, 47.278263 ], [ 1.243638, 47.28366 ], [ 1.242562, 47.286627 ], [ 1.223335, 47.294177 ], [ 1.219343, 47.293611 ], [ 1.215691, 47.292394 ], [ 1.215287, 47.28903 ], [ 1.197231, 47.284418 ], [ 1.182432, 47.28493 ], [ 1.174129, 47.2886 ], [ 1.173372, 47.28557 ], [ 1.162064, 47.272205 ], [ 1.131214, 47.29454 ], [ 1.108127, 47.29841 ], [ 1.105988, 47.301614 ], [ 1.094853, 47.328537 ], [ 1.106313, 47.331083 ], [ 1.107242, 47.33439 ], [ 1.115791, 47.350103 ], [ 1.122414, 47.35507 ], [ 1.106881, 47.36716 ], [ 1.107408, 47.372883 ], [ 1.118514, 47.381654 ], [ 1.121851, 47.38365 ], [ 1.121682, 47.39038 ], [ 1.113388, 47.39847 ], [ 1.110523, 47.408628 ], [ 1.085019, 47.429687 ], [ 1.114759, 47.42924 ], [ 1.131913, 47.44569 ], [ 1.133366, 47.44895 ], [ 1.128852, 47.450102 ], [ 1.112883, 47.465917 ], [ 1.10772, 47.465122 ], [ 1.08711, 47.46182 ], [ 1.086006, 47.46447 ], [ 1.092002, 47.467999 ], [ 1.093746, 47.47049 ], [ 1.090288, 47.472842 ], [ 1.081583, 47.488213 ], [ 1.080281, 47.49157 ], [ 1.068855, 47.502995 ], [ 1.068832, 47.51947 ], [ 1.045035, 47.53157 ], [ 1.047554, 47.53686 ], [ 1.076557, 47.5619 ], [ 1.077002, 47.57245 ], [ 1.073175, 47.5712 ], [ 1.063593, 47.56614 ], [ 1.062099, 47.56955 ], [ 1.059904, 47.57649 ], [ 1.033353, 47.607012 ], [ 1.028918, 47.608494 ], [ 1.019281, 47.60768 ], [ 1.01254, 47.60279 ], [ 1.003723, 47.584368 ], [ 1.000398, 47.58396 ], [ 0.997017, 47.583974 ], [ 0.995606, 47.5872 ], [ 0.987657, 47.59117 ], [ 0.984911, 47.604331 ], [ 0.991789, 47.62003 ], [ 0.987056, 47.62053 ], [ 0.972786, 47.621751 ], [ 0.96527, 47.62957 ], [ 0.960922, 47.62797 ], [ 0.951655, 47.62615 ], [ 0.937343, 47.628423 ], [ 0.9326, 47.62878 ], [ 0.919605, 47.632755 ], [ 0.916768, 47.630012 ], [ 0.904079, 47.61597 ], [ 0.895291, 47.61292 ], [ 0.899155, 47.603719 ], [ 0.894062, 47.60389 ], [ 0.864282, 47.599827 ], [ 0.85767, 47.611996 ], [ 0.852747, 47.6129 ], [ 0.850765, 47.62308 ], [ 0.859344, 47.626686 ], [ 0.862295, 47.63317 ], [ 0.844708, 47.64511 ], [ 0.860543, 47.67355 ], [ 0.862011, 47.67683 ], [ 0.85961, 47.67951 ], [ 0.867411, 47.68649 ], [ 0.865296, 47.689338 ], [ 0.844288, 47.681876 ], [ 0.840919, 47.68013 ], [ 0.834169, 47.676934 ], [ 0.829337, 47.67674 ], [ 0.81178, 47.682217 ], [ 0.80259, 47.6794 ], [ 0.787171, 47.68083 ], [ 0.735651, 47.69554 ], [ 0.732608, 47.693098 ], [ 0.719417, 47.69 ], [ 0.712153, 47.68181 ], [ 0.707317, 47.68297 ], [ 0.674774, 47.69901 ], [ 0.672603, 47.6959 ], [ 0.654258, 47.68419 ], [ 0.649237, 47.68436 ], [ 0.64478, 47.68594 ], [ 0.645512, 47.6893 ], [ 0.651962, 47.698476 ], [ 0.63877, 47.708125 ], [ 0.628781, 47.70803 ], [ 0.614431, 47.69421 ], [ 0.611211, 47.691663 ], [ 0.60454, 47.686681 ], [ 0.595902, 47.689251 ], [ 0.592798, 47.70218 ], [ 0.580315, 47.712378 ], [ 0.580508, 47.71283 ], [ 0.594084, 47.723035 ], [ 0.608728, 47.725299 ], [ 0.611604, 47.72814 ], [ 0.610668, 47.732038 ], [ 0.61795, 47.736635 ], [ 0.6199, 47.746174 ], [ 0.626331, 47.75136 ], [ 0.646097, 47.75305 ], [ 0.650273, 47.754928 ], [ 0.6512, 47.75512 ], [ 0.670962, 47.767308 ], [ 0.674985, 47.76877 ], [ 0.692446, 47.76435 ], [ 0.697354, 47.764192 ], [ 0.702633, 47.76967 ], [ 0.691748, 47.78353 ], [ 0.702679, 47.78965 ], [ 0.711896, 47.78721 ], [ 0.712824, 47.79049 ], [ 0.730115, 47.805476 ], [ 0.73379, 47.807699 ], [ 0.740279, 47.81256 ], [ 0.747692, 47.827838 ], [ 0.756337, 47.830822 ], [ 0.758989, 47.83358 ], [ 0.768413, 47.83111 ], [ 0.774046, 47.8406 ], [ 0.773852, 47.85065 ], [ 0.770099, 47.852747 ], [ 0.759165, 47.85923 ], [ 0.76353, 47.86516 ], [ 0.757341, 47.884682 ], [ 0.759813, 47.89809 ], [ 0.763737, 47.899975 ], [ 0.768069, 47.901399 ], [ 0.786998, 47.911751 ], [ 0.794073, 47.907436 ], [ 0.797868, 47.89796 ], [ 0.813238, 47.889483 ], [ 0.816836, 47.891827 ], [ 0.815816, 47.895158 ], [ 0.810811, 47.91816 ], [ 0.816349, 47.934277 ], [ 0.845193, 47.94119 ], [ 0.848378, 47.94393 ], [ 0.845574, 47.9539 ], [ 0.842824, 47.956598 ], [ 0.836839, 47.968938 ], [ 0.829036, 47.97258 ], [ 0.824356, 47.98174 ], [ 0.820383, 47.98803 ], [ 0.830555, 47.99605 ], [ 0.835775, 48.00914 ], [ 0.840591, 48.01901 ], [ 0.838332, 48.03261 ], [ 0.813335, 48.03145 ], [ 0.807136, 48.03659 ], [ 0.797551, 48.03725 ], [ 0.794879, 48.046931 ], [ 0.793995, 48.06944 ], [ 0.838376, 48.0713 ], [ 0.843023, 48.07264 ], [ 0.84501, 48.092771 ], [ 0.830283, 48.09114 ], [ 0.816151, 48.094634 ], [ 0.817906, 48.09768 ], [ 0.837246, 48.100919 ], [ 0.841217, 48.10306 ], [ 0.871549, 48.10843 ], [ 0.883856, 48.10318 ], [ 0.888905, 48.10227 ], [ 0.91329, 48.104162 ], [ 0.929216, 48.11172 ], [ 0.939072, 48.11232 ], [ 0.944029, 48.11238 ], [ 0.945591, 48.100913 ], [ 0.945411, 48.09791 ], [ 0.955081, 48.100484 ], [ 0.995236, 48.126684 ], [ 1.008922, 48.131713 ], [ 1.029601, 48.132835 ], [ 1.039779, 48.13105 ], [ 1.047091, 48.12165 ], [ 1.040156, 48.11653 ], [ 0.99452, 48.099137 ], [ 0.995686, 48.089291 ], [ 1.009409, 48.08416 ], [ 1.029354, 48.08754 ], [ 1.03392, 48.085758 ], [ 1.065093, 48.085626 ], [ 1.071855, 48.07666 ], [ 1.107549, 48.080987 ], [ 1.112755, 48.0808 ], [ 1.106882, 48.060975 ], [ 1.113228, 48.05549 ], [ 1.115766, 48.05246 ], [ 1.12014, 48.04005 ], [ 1.129047, 48.03451 ], [ 1.133293, 48.033979 ], [ 1.141152, 48.0311 ], [ 1.143932, 48.028737 ], [ 1.163611, 48.02854 ], [ 1.167113, 48.026229 ], [ 1.161862, 48.017857 ], [ 1.170038, 48.009928 ], [ 1.16956, 48.006689 ], [ 1.174145, 48.005212 ], [ 1.187729, 48.0006 ], [ 1.193553, 47.98401 ], [ 1.200477, 47.97911 ], [ 1.195916, 47.973665 ], [ 1.191496, 47.97197 ], [ 1.205215, 47.96864 ], [ 1.222674, 47.97564 ], [ 1.242814, 47.97832 ], [ 1.248007, 47.97857 ], [ 1.259061, 47.971844 ], [ 1.260603, 47.96854 ], [ 1.2654, 47.96286 ], [ 1.29958, 47.968162 ], [ 1.30592, 47.95641 ], [ 1.308631, 47.95376 ], [ 1.33824, 47.95776 ], [ 1.349708, 47.963448 ], [ 1.370016, 47.95375 ], [ 1.382935, 47.97828 ], [ 1.386268, 47.98068 ], [ 1.407203, 47.9706 ], [ 1.43232, 47.97517 ], [ 1.437241, 47.9765 ], [ 1.439511, 47.98318 ], [ 1.43418, 47.99981 ], [ 1.432608, 48.00852 ], [ 1.441396, 48.01163 ], [ 1.455654, 48.00844 ], [ 1.490755, 47.9901 ], [ 1.493715, 47.987398 ], [ 1.511177, 47.983894 ], [ 1.520124, 47.98228 ], [ 1.551414, 47.98964 ], [ 1.560687, 47.987876 ], [ 1.564819, 47.98977 ], [ 1.564452, 47.97312 ], [ 1.547853, 47.961535 ], [ 1.547007, 47.958204 ], [ 1.555956, 47.95532 ], [ 1.55221, 47.953137 ], [ 1.533467, 47.949196 ], [ 1.526238, 47.944642 ], [ 1.522628, 47.931869 ], [ 1.525424, 47.92911 ], [ 1.553575, 47.92076 ], [ 1.57582, 47.90618 ], [ 1.579184, 47.903529 ], [ 1.577301, 47.89739 ], [ 1.581427, 47.891747 ], [ 1.579064, 47.889009 ], [ 1.588642, 47.87759 ], [ 1.583443, 47.871851 ], [ 1.583626, 47.86849 ], [ 1.548849, 47.84338 ], [ 1.535838, 47.83852 ], [ 1.534145, 47.83158 ], [ 1.531379, 47.82861 ], [ 1.527922, 47.822632 ], [ 1.527172, 47.81932 ], [ 1.540854, 47.817015 ], [ 1.566758, 47.79904 ], [ 1.570241, 47.79672 ], [ 1.567251, 47.78869 ], [ 1.571251, 47.78696 ], [ 1.550856, 47.772211 ], [ 1.547817, 47.76954 ], [ 1.59798, 47.73974 ], [ 1.587321, 47.73208 ], [ 1.583133, 47.729973 ], [ 1.582867, 47.72644 ], [ 1.619393, 47.73947 ], [ 1.627599, 47.75607 ], [ 1.629262, 47.75941 ], [ 1.652215, 47.749207 ], [ 1.655696, 47.74719 ], [ 1.673132, 47.73948 ], [ 1.693807, 47.73879 ], [ 1.712265, 47.732617 ], [ 1.713066, 47.7221 ], [ 1.725656, 47.70271 ], [ 1.728065, 47.699565 ], [ 1.723804, 47.697646 ], [ 1.719378, 47.695923 ], [ 1.721493, 47.692796 ], [ 1.728091, 47.687853 ], [ 1.740037, 47.66185 ], [ 1.746726, 47.656755 ], [ 1.776475, 47.65287 ], [ 1.780571, 47.650848 ], [ 1.778699, 47.644149 ], [ 1.78966, 47.637205 ], [ 1.794452, 47.63612 ], [ 1.802572, 47.64049 ], [ 1.804482, 47.64738 ], [ 1.811415, 47.652507 ], [ 1.845386, 47.65936 ], [ 1.843748, 47.68327 ], [ 1.849532, 47.688292 ], [ 1.854454, 47.689412 ], [ 1.86291, 47.68861 ], [ 1.865859, 47.675948 ], [ 1.890772, 47.677763 ], [ 1.899064, 47.67383 ], [ 1.909007, 47.67509 ], [ 1.913991, 47.67449 ], [ 1.927563, 47.67822 ], [ 1.937186, 47.677582 ], [ 1.94207, 47.661828 ], [ 1.956351, 47.661992 ], [ 1.964992, 47.65891 ], [ 1.977227, 47.6643 ], [ 1.981894, 47.665539 ], [ 1.99523, 47.66426 ], [ 2.00053, 47.67368 ], [ 2.008923, 47.677456 ], [ 2.064654, 47.674863 ], [ 2.069925, 47.680621 ], [ 2.07455, 47.68215 ], [ 2.103849, 47.67736 ], [ 2.107753, 47.67106 ], [ 2.112621, 47.67 ], [ 2.127918, 47.67826 ], [ 2.137839, 47.67718 ], [ 2.149203, 47.670747 ], [ 2.169602, 47.67102 ], [ 2.198824, 47.67743 ], [ 2.203685, 47.678548 ], [ 2.20609, 47.67639 ], [ 2.20677, 47.66293 ], [ 2.220507, 47.664809 ], [ 2.240709, 47.64126 ], [ 2.239214, 47.62098 ], [ 2.233959, 47.62067 ], [ 2.197252, 47.607447 ], [ 2.15629, 47.601046 ], [ 2.138094, 47.588815 ], [ 2.119575, 47.58295 ], [ 2.121466, 47.57964 ], [ 2.127704, 47.569933 ], [ 2.125186, 47.55636 ], [ 2.131382, 47.550696 ], [ 2.193775, 47.54857 ], [ 2.197561, 47.54612 ], [ 2.214491, 47.52043 ], [ 2.19607, 47.4879 ], [ 2.201325, 47.488183 ], [ 2.219441, 47.49544 ], [ 2.234995, 47.496357 ], [ 2.243082, 47.492764 ], [ 2.247745, 47.491732 ], [ 2.245237, 47.48872 ], [ 2.238643, 47.47238 ], [ 2.244993, 47.45995 ], [ 2.238642, 47.45097 ], [ 2.246699, 47.4424 ], [ 2.243692, 47.414827 ], [ 2.240389, 47.41299 ], [ 2.230388, 47.40753 ], [ 2.225176, 47.40753 ], [ 2.204829, 47.406079 ], [ 2.188242, 47.4357 ], [ 2.136692, 47.40632 ], [ 2.114999, 47.42148 ], [ 2.115628, 47.41792 ], [ 2.116926, 47.410801 ], [ 2.102739, 47.391616 ], [ 2.097085, 47.36681 ], [ 2.101881, 47.367644 ], [ 2.111377, 47.36953 ], [ 2.114665, 47.36701 ], [ 2.126704, 47.345417 ], [ 2.119391, 47.333433 ], [ 2.128526, 47.33112 ], [ 2.13502, 47.32174 ], [ 2.147988, 47.316361 ], [ 2.157151, 47.30021 ], [ 2.153429, 47.29787 ], [ 2.139909, 47.293434 ], [ 2.132895, 47.28119 ], [ 2.128373, 47.280176 ], [ 2.11426, 47.279178 ], [ 2.111136, 47.281729 ], [ 2.103938, 47.28571 ], [ 2.094206, 47.285388 ], [ 2.088978, 47.28549 ], [ 2.058927, 47.28037 ], [ 2.024529, 47.26512 ], [ 2.020248, 47.267006 ], [ 2.010461, 47.26841 ], [ 1.996609, 47.265751 ], [ 1.975957, 47.27577 ], [ 1.975822, 47.2759 ], [ 1.971437, 47.27765 ], [ 1.941373, 47.290064 ], [ 1.923006, 47.27359 ], [ 1.922685, 47.26385 ], [ 1.895493, 47.2548 ], [ 1.892391, 47.24875 ], [ 1.909522, 47.243789 ], [ 1.912241, 47.240753 ], [ 1.915639, 47.23418 ], [ 1.908321, 47.22089 ], [ 1.905858, 47.217887 ], [ 1.875333, 47.20708 ], [ 1.853088, 47.220528 ], [ 1.839079, 47.219308 ], [ 1.834519, 47.22055 ], [ 1.81462, 47.22999 ], [ 1.811518, 47.232183 ], [ 1.795821, 47.23782 ], [ 1.793575, 47.234807 ], [ 1.786011, 47.231397 ], [ 1.776111, 47.23138 ], [ 1.772462, 47.233739 ], [ 1.750044, 47.24731 ], [ 1.746692, 47.24987 ], [ 1.71582, 47.27682 ], [ 1.712938, 47.27395 ], [ 1.700438, 47.26408 ], [ 1.665701, 47.25889 ], [ 1.651132, 47.261842 ], [ 1.649461, 47.27148 ], [ 1.629582, 47.27443 ], [ 1.619786, 47.272629 ], [ 1.612089, 47.277139 ], [ 1.607649, 47.27543 ], [ 1.602725, 47.275018 ], [ 1.593136, 47.274416 ], [ 1.592885, 47.2577 ], [ 1.587815, 47.25788 ], [ 1.563081, 47.26143 ], [ 1.523953, 47.25534 ], [ 1.526755, 47.252496 ], [ 1.527011, 47.23978 ], [ 1.532718, 47.23026 ], [ 1.534446, 47.223591 ], [ 1.528062, 47.21925 ], [ 1.526638, 47.22251 ], [ 1.503504, 47.23452 ], [ 1.494832, 47.23311 ], [ 1.48761, 47.23748 ], [ 1.473013, 47.23891 ], [ 1.467986, 47.23903 ], [ 1.453139, 47.23899 ], [ 1.421208, 47.22916 ], [ 1.418308, 47.226188 ], [ 1.409592, 47.21741 ], [ 1.40637, 47.215543 ], [ 1.392843, 47.208693 ], [ 1.388418, 47.20687 ], [ 1.351844, 47.1939 ], [ 1.336774, 47.194223 ], [ 1.326666, 47.18622 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "43", "CODE_DEPT": "42", "NOM_DEPT": "LOIRE", "CODE_CHF": "218", "NOM_CHF": "SAINT-ETIENNE", "X_CHF_LIEU": "8086", "Y_CHF_LIEU": "64825", "X_CENTROID": "7906", "Y_CENTROID": "65148", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.755997, 45.365681 ], [ 4.751443, 45.365906 ], [ 4.725367, 45.361429 ], [ 4.723111, 45.354601 ], [ 4.718831, 45.354162 ], [ 4.70331, 45.349563 ], [ 4.701388, 45.34686 ], [ 4.698023, 45.344986 ], [ 4.679737, 45.345938 ], [ 4.675294, 45.34429 ], [ 4.638553, 45.32619 ], [ 4.640204, 45.32373 ], [ 4.643177, 45.318903 ], [ 4.640382, 45.31719 ], [ 4.633844, 45.314942 ], [ 4.61595, 45.3102 ], [ 4.616857, 45.3001 ], [ 4.622791, 45.294838 ], [ 4.621508, 45.29154 ], [ 4.611889, 45.292024 ], [ 4.602724, 45.291 ], [ 4.598597, 45.28949 ], [ 4.591348, 45.272883 ], [ 4.593657, 45.26978 ], [ 4.598493, 45.26897 ], [ 4.602945, 45.265422 ], [ 4.605305, 45.26367 ], [ 4.605227, 45.253429 ], [ 4.588302, 45.246547 ], [ 4.584802, 45.244075 ], [ 4.560654, 45.24717 ], [ 4.546242, 45.243778 ], [ 4.535936, 45.23662 ], [ 4.517747, 45.24179 ], [ 4.505973, 45.233025 ], [ 4.490899, 45.232209 ], [ 4.483135, 45.236446 ], [ 4.479248, 45.237912 ], [ 4.474656, 45.23876 ], [ 4.46811, 45.247245 ], [ 4.4569, 45.25345 ], [ 4.454041, 45.25626 ], [ 4.445481, 45.259544 ], [ 4.434076, 45.274704 ], [ 4.419655, 45.275401 ], [ 4.415655, 45.2736 ], [ 4.39131, 45.26354 ], [ 4.387182, 45.257536 ], [ 4.374922, 45.261956 ], [ 4.371186, 45.259886 ], [ 4.350182, 45.2777 ], [ 4.359604, 45.28536 ], [ 4.361268, 45.291869 ], [ 4.369175, 45.29898 ], [ 4.366258, 45.30128 ], [ 4.352304, 45.304163 ], [ 4.331653, 45.31848 ], [ 4.36338, 45.337485 ], [ 4.368006, 45.33711 ], [ 4.359801, 45.34938 ], [ 4.34053, 45.36431 ], [ 4.336435, 45.36616 ], [ 4.312929, 45.370013 ], [ 4.308199, 45.37099 ], [ 4.303818, 45.362834 ], [ 4.295644, 45.364036 ], [ 4.289755, 45.35907 ], [ 4.271631, 45.35976 ], [ 4.270101, 45.362663 ], [ 4.270802, 45.374921 ], [ 4.257172, 45.37169 ], [ 4.244341, 45.38528 ], [ 4.239555, 45.384997 ], [ 4.236695, 45.38683 ], [ 4.22656, 45.389724 ], [ 4.222207, 45.38819 ], [ 4.200862, 45.38221 ], [ 4.180821, 45.3917 ], [ 4.162102, 45.388907 ], [ 4.157679, 45.38762 ], [ 4.144443, 45.384108 ], [ 4.147892, 45.381543 ], [ 4.156688, 45.36947 ], [ 4.149893, 45.36523 ], [ 4.120395, 45.368376 ], [ 4.109111, 45.3618 ], [ 4.107809, 45.354804 ], [ 4.101586, 45.35788 ], [ 4.098516, 45.359578 ], [ 4.080171, 45.35552 ], [ 4.073682, 45.338963 ], [ 4.070804, 45.336055 ], [ 4.062761, 45.339427 ], [ 4.054874, 45.3518 ], [ 4.041548, 45.35493 ], [ 4.037552, 45.35296 ], [ 4.025162, 45.34806 ], [ 4.020571, 45.328194 ], [ 4.014976, 45.33082 ], [ 4.014606, 45.333633 ], [ 4.012813, 45.33685 ], [ 4.002483, 45.35599 ], [ 3.997708, 45.356064 ], [ 3.987124, 45.364983 ], [ 3.985593, 45.371579 ], [ 3.978268, 45.375696 ], [ 3.97343, 45.375216 ], [ 3.961027, 45.370271 ], [ 3.947613, 45.37405 ], [ 3.938752, 45.371396 ], [ 3.934501, 45.361697 ], [ 3.918387, 45.354365 ], [ 3.91933, 45.341804 ], [ 3.909899, 45.33512 ], [ 3.906268, 45.33325 ], [ 3.905179, 45.336184 ], [ 3.902781, 45.338697 ], [ 3.902488, 45.34186 ], [ 3.897408, 45.35708 ], [ 3.892146, 45.36985 ], [ 3.894516, 45.383762 ], [ 3.890368, 45.393665 ], [ 3.899085, 45.40631 ], [ 3.898541, 45.409818 ], [ 3.907081, 45.412955 ], [ 3.911124, 45.419352 ], [ 3.913895, 45.42225 ], [ 3.918432, 45.42133 ], [ 3.937312, 45.429987 ], [ 3.959804, 45.43416 ], [ 3.963258, 45.436431 ], [ 3.96329, 45.437511 ], [ 3.96286, 45.44078 ], [ 3.960143, 45.443446 ], [ 3.971058, 45.44726 ], [ 3.975106, 45.44827 ], [ 3.969091, 45.45332 ], [ 3.973126, 45.459399 ], [ 3.966383, 45.468283 ], [ 3.967553, 45.47155 ], [ 3.971637, 45.47743 ], [ 3.983336, 45.483219 ], [ 3.985629, 45.48618 ], [ 3.983321, 45.48887 ], [ 3.984007, 45.49506 ], [ 3.972738, 45.50013 ], [ 3.969342, 45.50143 ], [ 3.96484, 45.50322 ], [ 3.962229, 45.50555 ], [ 3.958555, 45.51379 ], [ 3.94643, 45.543404 ], [ 3.954474, 45.555827 ], [ 3.944619, 45.56275 ], [ 3.941931, 45.568999 ], [ 3.939503, 45.57179 ], [ 3.935595, 45.577238 ], [ 3.932168, 45.579365 ], [ 3.909481, 45.59411 ], [ 3.908775, 45.597243 ], [ 3.904504, 45.598862 ], [ 3.881466, 45.60297 ], [ 3.86909, 45.61305 ], [ 3.861186, 45.61473 ], [ 3.860428, 45.61798 ], [ 3.858678, 45.624337 ], [ 3.835863, 45.627138 ], [ 3.82364, 45.63202 ], [ 3.820703, 45.637408 ], [ 3.81931, 45.64043 ], [ 3.817721, 45.6467 ], [ 3.805428, 45.656051 ], [ 3.802989, 45.658734 ], [ 3.794532, 45.67347 ], [ 3.792084, 45.67652 ], [ 3.777585, 45.690566 ], [ 3.775857, 45.700178 ], [ 3.78238, 45.71165 ], [ 3.779998, 45.714062 ], [ 3.777015, 45.71953 ], [ 3.780919, 45.724673 ], [ 3.776168, 45.72512 ], [ 3.76804, 45.72867 ], [ 3.755838, 45.74661 ], [ 3.745951, 45.741173 ], [ 3.730822, 45.753484 ], [ 3.727106, 45.75558 ], [ 3.729002, 45.75789 ], [ 3.730436, 45.760357 ], [ 3.733108, 45.76194 ], [ 3.737972, 45.767782 ], [ 3.728469, 45.776012 ], [ 3.700393, 45.783556 ], [ 3.693391, 45.78863 ], [ 3.695115, 45.7947 ], [ 3.712631, 45.80129 ], [ 3.726892, 45.83027 ], [ 3.719124, 45.85007 ], [ 3.720762, 45.851129 ], [ 3.726607, 45.85957 ], [ 3.72853, 45.862687 ], [ 3.720282, 45.861741 ], [ 3.7172, 45.867641 ], [ 3.715524, 45.870587 ], [ 3.734084, 45.87127 ], [ 3.750312, 45.88437 ], [ 3.754371, 45.88603 ], [ 3.752984, 45.88933 ], [ 3.740233, 45.907764 ], [ 3.728991, 45.91415 ], [ 3.726359, 45.917066 ], [ 3.72135, 45.922745 ], [ 3.694018, 45.93073 ], [ 3.693892, 45.93096 ], [ 3.69416, 45.948166 ], [ 3.704505, 45.955549 ], [ 3.701807, 45.965724 ], [ 3.709612, 45.97414 ], [ 3.742071, 45.96669 ], [ 3.75064, 45.97003 ], [ 3.755204, 45.97982 ], [ 3.760021, 45.980675 ], [ 3.781713, 45.972792 ], [ 3.805153, 45.98329 ], [ 3.80972, 45.984662 ], [ 3.82322, 45.988158 ], [ 3.828199, 45.99707 ], [ 3.831736, 45.99944 ], [ 3.832076, 45.99966 ], [ 3.827342, 46.000213 ], [ 3.824711, 46.0066 ], [ 3.815876, 46.0191 ], [ 3.807536, 46.049778 ], [ 3.805606, 46.053061 ], [ 3.818213, 46.07803 ], [ 3.816589, 46.084564 ], [ 3.819836, 46.08704 ], [ 3.821294, 46.090239 ], [ 3.818358, 46.093007 ], [ 3.802831, 46.11014 ], [ 3.793486, 46.112203 ], [ 3.801251, 46.13142 ], [ 3.790052, 46.15339 ], [ 3.791627, 46.15658 ], [ 3.806301, 46.16134 ], [ 3.809736, 46.163104 ], [ 3.806379, 46.165757 ], [ 3.789791, 46.18749 ], [ 3.788646, 46.19804 ], [ 3.793571, 46.207686 ], [ 3.785038, 46.22044 ], [ 3.773353, 46.227186 ], [ 3.76865, 46.23699 ], [ 3.773322, 46.242469 ], [ 3.778236, 46.24306 ], [ 3.798801, 46.23991 ], [ 3.8027, 46.23851 ], [ 3.807612, 46.25739 ], [ 3.845692, 46.26181 ], [ 3.850553, 46.26209 ], [ 3.868924, 46.26366 ], [ 3.875376, 46.272546 ], [ 3.882358, 46.274707 ], [ 3.886954, 46.27379 ], [ 3.899534, 46.275914 ], [ 3.903775, 46.274008 ], [ 3.906644, 46.263791 ], [ 3.90876, 46.260622 ], [ 3.907418, 46.24389 ], [ 3.897392, 46.237145 ], [ 3.897328, 46.22691 ], [ 3.890132, 46.214491 ], [ 3.905496, 46.20923 ], [ 3.909456, 46.20793 ], [ 3.917106, 46.203884 ], [ 3.936212, 46.2062 ], [ 3.960314, 46.203401 ], [ 3.965168, 46.20286 ], [ 3.97257, 46.19973 ], [ 3.971497, 46.189672 ], [ 3.980798, 46.18189 ], [ 3.985073, 46.172301 ], [ 3.988528, 46.169857 ], [ 4.018044, 46.17202 ], [ 4.027488, 46.16959 ], [ 4.031149, 46.17197 ], [ 4.046013, 46.179222 ], [ 4.050073, 46.180688 ], [ 4.056681, 46.185859 ], [ 4.059972, 46.188458 ], [ 4.067331, 46.186813 ], [ 4.078635, 46.190606 ], [ 4.082922, 46.19102 ], [ 4.099435, 46.197107 ], [ 4.103832, 46.19844 ], [ 4.132853, 46.180686 ], [ 4.133393, 46.177321 ], [ 4.133847, 46.177317 ], [ 4.138591, 46.176666 ], [ 4.143322, 46.176 ], [ 4.178133, 46.173687 ], [ 4.186752, 46.176633 ], [ 4.184851, 46.179868 ], [ 4.18493, 46.19012 ], [ 4.189229, 46.18864 ], [ 4.206215, 46.19449 ], [ 4.215845, 46.18722 ], [ 4.219558, 46.1851 ], [ 4.223365, 46.180189 ], [ 4.224993, 46.17763 ], [ 4.226578, 46.17837 ], [ 4.232491, 46.17955 ], [ 4.240916, 46.186897 ], [ 4.255016, 46.18713 ], [ 4.258146, 46.184546 ], [ 4.261911, 46.17517 ], [ 4.253409, 46.167343 ], [ 4.24866, 46.16711 ], [ 4.253192, 46.157817 ], [ 4.277541, 46.15661 ], [ 4.282432, 46.156816 ], [ 4.290281, 46.16932 ], [ 4.298212, 46.17305 ], [ 4.30287, 46.174325 ], [ 4.309176, 46.17292 ], [ 4.311831, 46.1712 ], [ 4.31641, 46.171305 ], [ 4.326397, 46.18171 ], [ 4.326643, 46.184894 ], [ 4.334903, 46.181744 ], [ 4.346643, 46.18726 ], [ 4.358511, 46.18268 ], [ 4.36632, 46.185423 ], [ 4.370806, 46.184333 ], [ 4.373498, 46.187246 ], [ 4.363353, 46.19856 ], [ 4.374769, 46.20951 ], [ 4.388416, 46.21308 ], [ 4.38808, 46.21979 ], [ 4.406746, 46.21962 ], [ 4.419863, 46.210066 ], [ 4.421756, 46.20702 ], [ 4.422965, 46.203137 ], [ 4.401312, 46.19688 ], [ 4.395468, 46.1925 ], [ 4.402903, 46.18454 ], [ 4.406358, 46.18224 ], [ 4.410541, 46.18153 ], [ 4.414315, 46.18007 ], [ 4.435171, 46.169958 ], [ 4.438591, 46.167879 ], [ 4.417098, 46.13926 ], [ 4.417362, 46.13592 ], [ 4.408245, 46.137061 ], [ 4.385438, 46.147645 ], [ 4.381809, 46.14966 ], [ 4.377187, 46.149808 ], [ 4.361588, 46.138459 ], [ 4.356622, 46.138275 ], [ 4.332742, 46.135505 ], [ 4.329682, 46.13323 ], [ 4.322116, 46.12998 ], [ 4.319714, 46.11682 ], [ 4.312806, 46.112249 ], [ 4.309295, 46.110002 ], [ 4.305996, 46.100331 ], [ 4.311328, 46.09485 ], [ 4.310007, 46.085029 ], [ 4.310407, 46.08172 ], [ 4.304989, 46.079196 ], [ 4.301426, 46.078463 ], [ 4.300045, 46.06605 ], [ 4.297331, 46.063451 ], [ 4.285097, 46.05368 ], [ 4.266223, 46.051978 ], [ 4.257097, 46.05392 ], [ 4.253426, 46.05179 ], [ 4.251078, 46.04918 ], [ 4.260961, 46.039113 ], [ 4.260555, 46.03605 ], [ 4.26982, 46.033529 ], [ 4.275984, 46.023896 ], [ 4.28002, 46.02177 ], [ 4.287736, 46.018359 ], [ 4.300616, 46.02077 ], [ 4.305067, 46.021475 ], [ 4.305846, 46.02159 ], [ 4.30825, 46.011252 ], [ 4.310332, 46.008013 ], [ 4.312008, 46.00513 ], [ 4.301162, 45.99192 ], [ 4.300096, 45.988894 ], [ 4.289001, 45.995658 ], [ 4.274439, 45.992365 ], [ 4.269628, 45.992716 ], [ 4.26467, 45.998517 ], [ 4.251152, 45.9956 ], [ 4.246046, 45.99612 ], [ 4.248043, 45.986724 ], [ 4.258975, 45.98117 ], [ 4.272447, 45.979968 ], [ 4.275742, 45.9778 ], [ 4.288823, 45.973172 ], [ 4.300575, 45.958322 ], [ 4.293912, 45.9534 ], [ 4.312396, 45.942289 ], [ 4.32205, 45.941123 ], [ 4.33654, 45.93183 ], [ 4.34602, 45.929943 ], [ 4.337581, 45.918335 ], [ 4.341656, 45.91666 ], [ 4.346215, 45.915765 ], [ 4.327391, 45.905639 ], [ 4.323221, 45.90389 ], [ 4.326224, 45.89737 ], [ 4.336936, 45.89016 ], [ 4.340314, 45.880026 ], [ 4.342469, 45.876903 ], [ 4.361094, 45.86617 ], [ 4.389622, 45.864616 ], [ 4.394471, 45.865168 ], [ 4.39614, 45.85982 ], [ 4.390615, 45.85028 ], [ 4.383083, 45.845972 ], [ 4.387014, 45.83982 ], [ 4.390601, 45.837476 ], [ 4.383698, 45.83399 ], [ 4.380569, 45.825315 ], [ 4.376035, 45.82482 ], [ 4.382465, 45.82027 ], [ 4.380282, 45.81745 ], [ 4.38784, 45.803007 ], [ 4.383692, 45.804995 ], [ 4.375618, 45.80445 ], [ 4.37399, 45.801141 ], [ 4.37645, 45.784107 ], [ 4.358288, 45.778915 ], [ 4.349101, 45.77117 ], [ 4.360331, 45.754213 ], [ 4.359161, 45.751102 ], [ 4.373271, 45.749445 ], [ 4.385803, 45.75466 ], [ 4.390677, 45.755077 ], [ 4.401178, 45.74657 ], [ 4.402925, 45.74392 ], [ 4.391247, 45.737877 ], [ 4.384784, 45.72119 ], [ 4.375139, 45.71338 ], [ 4.369701, 45.700396 ], [ 4.365516, 45.69852 ], [ 4.36994, 45.692918 ], [ 4.373447, 45.69078 ], [ 4.365891, 45.682997 ], [ 4.368732, 45.6737 ], [ 4.36592, 45.671153 ], [ 4.387908, 45.663797 ], [ 4.392551, 45.66248 ], [ 4.395888, 45.65524 ], [ 4.39261, 45.653616 ], [ 4.404997, 45.639196 ], [ 4.40886, 45.63712 ], [ 4.410284, 45.632051 ], [ 4.418074, 45.629449 ], [ 4.422444, 45.629664 ], [ 4.437475, 45.624196 ], [ 4.441489, 45.62305 ], [ 4.450037, 45.607355 ], [ 4.460841, 45.601 ], [ 4.472496, 45.597345 ], [ 4.474517, 45.59471 ], [ 4.46818, 45.58844 ], [ 4.467814, 45.58575 ], [ 4.500541, 45.585473 ], [ 4.504569, 45.58362 ], [ 4.50522, 45.576882 ], [ 4.514431, 45.57652 ], [ 4.521878, 45.572641 ], [ 4.542608, 45.57977 ], [ 4.547261, 45.58016 ], [ 4.555531, 45.579142 ], [ 4.566766, 45.58368 ], [ 4.5706, 45.582256 ], [ 4.583861, 45.57323 ], [ 4.58711, 45.57072 ], [ 4.602862, 45.57041 ], [ 4.610735, 45.57391 ], [ 4.614858, 45.57548 ], [ 4.625701, 45.56825 ], [ 4.635566, 45.548374 ], [ 4.642481, 45.543365 ], [ 4.644591, 45.54016 ], [ 4.652094, 45.54209 ], [ 4.659832, 45.543227 ], [ 4.646599, 45.55558 ], [ 4.648858, 45.5617 ], [ 4.649274, 45.56491 ], [ 4.658587, 45.56377 ], [ 4.676305, 45.56877 ], [ 4.688126, 45.55776 ], [ 4.685176, 45.554756 ], [ 4.668371, 45.545874 ], [ 4.666491, 45.543047 ], [ 4.665332, 45.542839 ], [ 4.664346, 45.539458 ], [ 4.650706, 45.52987 ], [ 4.654295, 45.499392 ], [ 4.650603, 45.49711 ], [ 4.65775, 45.48559 ], [ 4.662186, 45.48661 ], [ 4.668818, 45.48234 ], [ 4.670697, 45.476281 ], [ 4.677448, 45.48065 ], [ 4.681929, 45.479806 ], [ 4.699815, 45.47813 ], [ 4.718576, 45.491941 ], [ 4.721828, 45.494395 ], [ 4.738429, 45.487168 ], [ 4.742368, 45.47397 ], [ 4.737785, 45.47272 ], [ 4.754109, 45.458183 ], [ 4.756936, 45.455707 ], [ 4.754932, 45.451028 ], [ 4.755536, 45.447047 ], [ 4.758645, 45.44139 ], [ 4.759948, 45.43849 ], [ 4.759953, 45.4326 ], [ 4.756688, 45.430069 ], [ 4.743146, 45.42042 ], [ 4.744783, 45.407368 ], [ 4.752409, 45.40023 ], [ 4.75485, 45.39779 ], [ 4.758848, 45.38472 ], [ 4.756426, 45.3748 ], [ 4.757023, 45.37146 ], [ 4.755997, 45.365681 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "44", "CODE_DEPT": "43", "NOM_DEPT": "HAUTE-LOIRE", "CODE_CHF": "157", "NOM_CHF": "LE PUY-EN-VELAY", "X_CHF_LIEU": "7696", "Y_CHF_LIEU": "64386", "X_CENTROID": "7634", "Y_CENTROID": "64479", "CODE_REG": "83", "NOM_REGION": "AUVERGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.862527, 44.74387 ], [ 3.858308, 44.74553 ], [ 3.839419, 44.74712 ], [ 3.829915, 44.754638 ], [ 3.832974, 44.75725 ], [ 3.841072, 44.76562 ], [ 3.841852, 44.772132 ], [ 3.833253, 44.77528 ], [ 3.819372, 44.772561 ], [ 3.817335, 44.769812 ], [ 3.810631, 44.76588 ], [ 3.80699, 44.767583 ], [ 3.804675, 44.77364 ], [ 3.797349, 44.786488 ], [ 3.771952, 44.80232 ], [ 3.764135, 44.800381 ], [ 3.759954, 44.806334 ], [ 3.761687, 44.812876 ], [ 3.759833, 44.81606 ], [ 3.755779, 44.817536 ], [ 3.743866, 44.8378 ], [ 3.73538, 44.840119 ], [ 3.735968, 44.83672 ], [ 3.719429, 44.831796 ], [ 3.701809, 44.836267 ], [ 3.694679, 44.831675 ], [ 3.666365, 44.828778 ], [ 3.663663, 44.831414 ], [ 3.657417, 44.836124 ], [ 3.6616, 44.83776 ], [ 3.669728, 44.841282 ], [ 3.67364, 44.85412 ], [ 3.671245, 44.85703 ], [ 3.664392, 44.860969 ], [ 3.660137, 44.87051 ], [ 3.644297, 44.87713 ], [ 3.640654, 44.87857 ], [ 3.632535, 44.87731 ], [ 3.629866, 44.87983 ], [ 3.614235, 44.874817 ], [ 3.608282, 44.879334 ], [ 3.603369, 44.879379 ], [ 3.595024, 44.87579 ], [ 3.59783, 44.858709 ], [ 3.586884, 44.836052 ], [ 3.589724, 44.82939 ], [ 3.582453, 44.826117 ], [ 3.56877, 44.834183 ], [ 3.555337, 44.82567 ], [ 3.541089, 44.82805 ], [ 3.5122, 44.824816 ], [ 3.507375, 44.82423 ], [ 3.493094, 44.811514 ], [ 3.490994, 44.808481 ], [ 3.486967, 44.80647 ], [ 3.478242, 44.80968 ], [ 3.47001, 44.82194 ], [ 3.45617, 44.831228 ], [ 3.457593, 44.841324 ], [ 3.445198, 44.851764 ], [ 3.4418, 44.85423 ], [ 3.436572, 44.87699 ], [ 3.435711, 44.880244 ], [ 3.421511, 44.89482 ], [ 3.417812, 44.90504 ], [ 3.419257, 44.908435 ], [ 3.413026, 44.91567 ], [ 3.41038, 44.91779 ], [ 3.415119, 44.9263 ], [ 3.412835, 44.944843 ], [ 3.410817, 44.948001 ], [ 3.403222, 44.95686 ], [ 3.390906, 44.95277 ], [ 3.377783, 44.95659 ], [ 3.371664, 44.968929 ], [ 3.372711, 44.975723 ], [ 3.368997, 44.97418 ], [ 3.361343, 44.97141 ], [ 3.356642, 44.97219 ], [ 3.34806, 44.97511 ], [ 3.34589, 44.985264 ], [ 3.363227, 44.99016 ], [ 3.371466, 45.002189 ], [ 3.368411, 45.004793 ], [ 3.35479, 45.00222 ], [ 3.345223, 45.01283 ], [ 3.327055, 45.010081 ], [ 3.337174, 45.02535 ], [ 3.332968, 45.02692 ], [ 3.311406, 45.021768 ], [ 3.307443, 45.023625 ], [ 3.305632, 45.02683 ], [ 3.298213, 45.03565 ], [ 3.303179, 45.045129 ], [ 3.299816, 45.055123 ], [ 3.312027, 45.08086 ], [ 3.308955, 45.086117 ], [ 3.291978, 45.08925 ], [ 3.285721, 45.093607 ], [ 3.286627, 45.096765 ], [ 3.283645, 45.102752 ], [ 3.2962, 45.106438 ], [ 3.300765, 45.106552 ], [ 3.3067, 45.10134 ], [ 3.324087, 45.096032 ], [ 3.32858, 45.09484 ], [ 3.36145, 45.10419 ], [ 3.351855, 45.104835 ], [ 3.349481, 45.111425 ], [ 3.330342, 45.11118 ], [ 3.313978, 45.118139 ], [ 3.313723, 45.11814 ], [ 3.301533, 45.12399 ], [ 3.29229, 45.122169 ], [ 3.288033, 45.120424 ], [ 3.275998, 45.142686 ], [ 3.281602, 45.151613 ], [ 3.267973, 45.15406 ], [ 3.26166, 45.170039 ], [ 3.262959, 45.18379 ], [ 3.270971, 45.192257 ], [ 3.272226, 45.209461 ], [ 3.251607, 45.216083 ], [ 3.24693, 45.215598 ], [ 3.242156, 45.216482 ], [ 3.235591, 45.22139 ], [ 3.232795, 45.238535 ], [ 3.222768, 45.24561 ], [ 3.228571, 45.265161 ], [ 3.226852, 45.27194 ], [ 3.222058, 45.272143 ], [ 3.209301, 45.28122 ], [ 3.185611, 45.27957 ], [ 3.185039, 45.27633 ], [ 3.164242, 45.26911 ], [ 3.169023, 45.281502 ], [ 3.161355, 45.289176 ], [ 3.160671, 45.295417 ], [ 3.155859, 45.29477 ], [ 3.145214, 45.287838 ], [ 3.1316, 45.28612 ], [ 3.126815, 45.28538 ], [ 3.112196, 45.284752 ], [ 3.101084, 45.291119 ], [ 3.08654, 45.290033 ], [ 3.085389, 45.2967 ], [ 3.097823, 45.300874 ], [ 3.102748, 45.300608 ], [ 3.110348, 45.30483 ], [ 3.113462, 45.31141 ], [ 3.100696, 45.31613 ], [ 3.091661, 45.324264 ], [ 3.099147, 45.32809 ], [ 3.113417, 45.327089 ], [ 3.114886, 45.33385 ], [ 3.111332, 45.350341 ], [ 3.103498, 45.354373 ], [ 3.130809, 45.351346 ], [ 3.138964, 45.35449 ], [ 3.146604, 45.350777 ], [ 3.151254, 45.351131 ], [ 3.181128, 45.35231 ], [ 3.177483, 45.35466 ], [ 3.179586, 45.3612 ], [ 3.192882, 45.36487 ], [ 3.199492, 45.369938 ], [ 3.209061, 45.370245 ], [ 3.211477, 45.367206 ], [ 3.215856, 45.370007 ], [ 3.218652, 45.369488 ], [ 3.222804, 45.38218 ], [ 3.235505, 45.39138 ], [ 3.236171, 45.394629 ], [ 3.242594, 45.390555 ], [ 3.255856, 45.3898 ], [ 3.26018, 45.39075 ], [ 3.283054, 45.3979 ], [ 3.287523, 45.399606 ], [ 3.290615, 45.4017 ], [ 3.291755, 45.40461 ], [ 3.295401, 45.41487 ], [ 3.295765, 45.41839 ], [ 3.299828, 45.42024 ], [ 3.308909, 45.41839 ], [ 3.324317, 45.405377 ], [ 3.32594, 45.398744 ], [ 3.330264, 45.39721 ], [ 3.341972, 45.41808 ], [ 3.340854, 45.42136 ], [ 3.352437, 45.421104 ], [ 3.355951, 45.422705 ], [ 3.363668, 45.413855 ], [ 3.367373, 45.41149 ], [ 3.38001, 45.401158 ], [ 3.389278, 45.40322 ], [ 3.398039, 45.40028 ], [ 3.406548, 45.403299 ], [ 3.418577, 45.400004 ], [ 3.420231, 45.397179 ], [ 3.427435, 45.40165 ], [ 3.451273, 45.401461 ], [ 3.455852, 45.400335 ], [ 3.460601, 45.401171 ], [ 3.463556, 45.407571 ], [ 3.479403, 45.42029 ], [ 3.496769, 45.426239 ], [ 3.501257, 45.427633 ], [ 3.506861, 45.411048 ], [ 3.518551, 45.40478 ], [ 3.521799, 45.402128 ], [ 3.548129, 45.39802 ], [ 3.55582, 45.393878 ], [ 3.564485, 45.396347 ], [ 3.569313, 45.402293 ], [ 3.579076, 45.38602 ], [ 3.581125, 45.38277 ], [ 3.586739, 45.37717 ], [ 3.588084, 45.373876 ], [ 3.586165, 45.37117 ], [ 3.590793, 45.35709 ], [ 3.59499, 45.355335 ], [ 3.617814, 45.33816 ], [ 3.627347, 45.3389 ], [ 3.640876, 45.348436 ], [ 3.645366, 45.3579 ], [ 3.66318, 45.36297 ], [ 3.667354, 45.376556 ], [ 3.672631, 45.381829 ], [ 3.681775, 45.382539 ], [ 3.684735, 45.380035 ], [ 3.694962, 45.373264 ], [ 3.704165, 45.37159 ], [ 3.698737, 45.36259 ], [ 3.701783, 45.360002 ], [ 3.706467, 45.360702 ], [ 3.714686, 45.36015 ], [ 3.718668, 45.3609 ], [ 3.722903, 45.35951 ], [ 3.732048, 45.35943 ], [ 3.742091, 45.353025 ], [ 3.755922, 45.353887 ], [ 3.758875, 45.35596 ], [ 3.77153, 45.350295 ], [ 3.780233, 45.351613 ], [ 3.789194, 45.358529 ], [ 3.787159, 45.371799 ], [ 3.791406, 45.38477 ], [ 3.796166, 45.38517 ], [ 3.805971, 45.391629 ], [ 3.817942, 45.386121 ], [ 3.822802, 45.380322 ], [ 3.836299, 45.383095 ], [ 3.837311, 45.366302 ], [ 3.845234, 45.369836 ], [ 3.856716, 45.359654 ], [ 3.874532, 45.355419 ], [ 3.893419, 45.35522 ], [ 3.897408, 45.35708 ], [ 3.902488, 45.34186 ], [ 3.902781, 45.338697 ], [ 3.905179, 45.336184 ], [ 3.906268, 45.33325 ], [ 3.909899, 45.33512 ], [ 3.91933, 45.341804 ], [ 3.918387, 45.354365 ], [ 3.934501, 45.361697 ], [ 3.938752, 45.371396 ], [ 3.947613, 45.37405 ], [ 3.961027, 45.370271 ], [ 3.97343, 45.375216 ], [ 3.978268, 45.375696 ], [ 3.985593, 45.371579 ], [ 3.987124, 45.364983 ], [ 3.997708, 45.356064 ], [ 4.002483, 45.35599 ], [ 4.012813, 45.33685 ], [ 4.014606, 45.333633 ], [ 4.014976, 45.33082 ], [ 4.020571, 45.328194 ], [ 4.025162, 45.34806 ], [ 4.037552, 45.35296 ], [ 4.041548, 45.35493 ], [ 4.054874, 45.3518 ], [ 4.062761, 45.339427 ], [ 4.070804, 45.336055 ], [ 4.073682, 45.338963 ], [ 4.080171, 45.35552 ], [ 4.098516, 45.359578 ], [ 4.101586, 45.35788 ], [ 4.107809, 45.354804 ], [ 4.109111, 45.3618 ], [ 4.120395, 45.368376 ], [ 4.149893, 45.36523 ], [ 4.156688, 45.36947 ], [ 4.147892, 45.381543 ], [ 4.144443, 45.384108 ], [ 4.157679, 45.38762 ], [ 4.162102, 45.388907 ], [ 4.180821, 45.3917 ], [ 4.200862, 45.38221 ], [ 4.222207, 45.38819 ], [ 4.22656, 45.389724 ], [ 4.236695, 45.38683 ], [ 4.239555, 45.384997 ], [ 4.244341, 45.38528 ], [ 4.257172, 45.37169 ], [ 4.270802, 45.374921 ], [ 4.270101, 45.362663 ], [ 4.271631, 45.35976 ], [ 4.289755, 45.35907 ], [ 4.295644, 45.364036 ], [ 4.303818, 45.362834 ], [ 4.308199, 45.37099 ], [ 4.312929, 45.370013 ], [ 4.336435, 45.36616 ], [ 4.34053, 45.36431 ], [ 4.359801, 45.34938 ], [ 4.368006, 45.33711 ], [ 4.36338, 45.337485 ], [ 4.331653, 45.31848 ], [ 4.352304, 45.304163 ], [ 4.366258, 45.30128 ], [ 4.369175, 45.29898 ], [ 4.361268, 45.291869 ], [ 4.359604, 45.28536 ], [ 4.350182, 45.2777 ], [ 4.371186, 45.259886 ], [ 4.374922, 45.261956 ], [ 4.387182, 45.257536 ], [ 4.39131, 45.26354 ], [ 4.415655, 45.2736 ], [ 4.419655, 45.275401 ], [ 4.434076, 45.274704 ], [ 4.445481, 45.259544 ], [ 4.454041, 45.25626 ], [ 4.4569, 45.25345 ], [ 4.46811, 45.247245 ], [ 4.474656, 45.23876 ], [ 4.479248, 45.237912 ], [ 4.483135, 45.236446 ], [ 4.488918, 45.22342 ], [ 4.481328, 45.215919 ], [ 4.476933, 45.210673 ], [ 4.478555, 45.198314 ], [ 4.480555, 45.195459 ], [ 4.472579, 45.17989 ], [ 4.459058, 45.172156 ], [ 4.458157, 45.168872 ], [ 4.448111, 45.16196 ], [ 4.443347, 45.14558 ], [ 4.443565, 45.14218 ], [ 4.448414, 45.12946 ], [ 4.457564, 45.12224 ], [ 4.457286, 45.11889 ], [ 4.452662, 45.119125 ], [ 4.438931, 45.12036 ], [ 4.442014, 45.11169 ], [ 4.439755, 45.10989 ], [ 4.436425, 45.109456 ], [ 4.427843, 45.11751 ], [ 4.429495, 45.130393 ], [ 4.411159, 45.14083 ], [ 4.397828, 45.139484 ], [ 4.380955, 45.143558 ], [ 4.376559, 45.14436 ], [ 4.37257, 45.12807 ], [ 4.397573, 45.118082 ], [ 4.399854, 45.1081 ], [ 4.38784, 45.103623 ], [ 4.384585, 45.10107 ], [ 4.371468, 45.104384 ], [ 4.363868, 45.10042 ], [ 4.359232, 45.09957 ], [ 4.362829, 45.08751 ], [ 4.358616, 45.086252 ], [ 4.354941, 45.077282 ], [ 4.346372, 45.07504 ], [ 4.347737, 45.06525 ], [ 4.360713, 45.055392 ], [ 4.370244, 45.056005 ], [ 4.37873, 45.05286 ], [ 4.381644, 45.042797 ], [ 4.379068, 45.03617 ], [ 4.365133, 45.03556 ], [ 4.35376, 45.030569 ], [ 4.351543, 45.02766 ], [ 4.318086, 45.029934 ], [ 4.299684, 45.020038 ], [ 4.297425, 45.01353 ], [ 4.291981, 45.00429 ], [ 4.292148, 44.993912 ], [ 4.307317, 44.98588 ], [ 4.30998, 44.98093 ], [ 4.313234, 44.979581 ], [ 4.314365, 44.973166 ], [ 4.297662, 44.96895 ], [ 4.294225, 44.966801 ], [ 4.27942, 44.966702 ], [ 4.256587, 44.959876 ], [ 4.235239, 44.967805 ], [ 4.231819, 44.96574 ], [ 4.223854, 44.96288 ], [ 4.216572, 44.933577 ], [ 4.213073, 44.93121 ], [ 4.190046, 44.91419 ], [ 4.191688, 44.912136 ], [ 4.188048, 44.91019 ], [ 4.183014, 44.905224 ], [ 4.179479, 44.886514 ], [ 4.16616, 44.88194 ], [ 4.156637, 44.87398 ], [ 4.136896, 44.87405 ], [ 4.117944, 44.87811 ], [ 4.113166, 44.87856 ], [ 4.087906, 44.87033 ], [ 4.084478, 44.869194 ], [ 4.077563, 44.86981 ], [ 4.072916, 44.86977 ], [ 4.03891, 44.87276 ], [ 4.028735, 44.86617 ], [ 4.028196, 44.86301 ], [ 4.025204, 44.851002 ], [ 4.020047, 44.84586 ], [ 4.023795, 44.84387 ], [ 4.028587, 44.834619 ], [ 4.025664, 44.831837 ], [ 4.016413, 44.83039 ], [ 4.009087, 44.834627 ], [ 3.998603, 44.823575 ], [ 3.989593, 44.83134 ], [ 3.98493, 44.83169 ], [ 3.981451, 44.825961 ], [ 3.987154, 44.816384 ], [ 3.981885, 44.81168 ], [ 3.978357, 44.813905 ], [ 3.96732, 44.820179 ], [ 3.963183, 44.829759 ], [ 3.958782, 44.82839 ], [ 3.945543, 44.824346 ], [ 3.944475, 44.821015 ], [ 3.936818, 44.798093 ], [ 3.918029, 44.778856 ], [ 3.924334, 44.770979 ], [ 3.924918, 44.769624 ], [ 3.921789, 44.76768 ], [ 3.913657, 44.76654 ], [ 3.908988, 44.765461 ], [ 3.900111, 44.7628 ], [ 3.89572, 44.752874 ], [ 3.872496, 44.75531 ], [ 3.862527, 44.74387 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "45", "CODE_DEPT": "44", "NOM_DEPT": "LOIRE-ATLANTIQUE", "CODE_CHF": "109", "NOM_CHF": "NANTES", "X_CHF_LIEU": "3555", "Y_CHF_LIEU": "66895", "X_CENTROID": "3468", "Y_CENTROID": "67061", "CODE_REG": "52", "NOM_REGION": "PAYS-DE-LA-LOIRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.148571, 47.029554 ], [ -1.196769, 47.039766 ], [ -1.209355, 47.04962 ], [ -1.21686, 47.05349 ], [ -1.229934, 47.06376 ], [ -1.248522, 47.06856 ], [ -1.267884, 47.084269 ], [ -1.272681, 47.08317 ], [ -1.274855, 47.0803 ], [ -1.286754, 47.0764 ], [ -1.290343, 47.07042 ], [ -1.290826, 47.06721 ], [ -1.287282, 47.058313 ], [ -1.299588, 47.04404 ], [ -1.298726, 47.03471 ], [ -1.303526, 47.03438 ], [ -1.317961, 47.034303 ], [ -1.336458, 47.044069 ], [ -1.345721, 47.04573 ], [ -1.347471, 47.039471 ], [ -1.362682, 47.03983 ], [ -1.375944, 47.02966 ], [ -1.366917, 47.017366 ], [ -1.365391, 47.007144 ], [ -1.364064, 47.003777 ], [ -1.375472, 46.98889 ], [ -1.359059, 46.98113 ], [ -1.360369, 46.971094 ], [ -1.367089, 46.96623 ], [ -1.36616, 46.95669 ], [ -1.373372, 46.95208 ], [ -1.377802, 46.953769 ], [ -1.390452, 46.94803 ], [ -1.415448, 46.94435 ], [ -1.458268, 46.925838 ], [ -1.462548, 46.92666 ], [ -1.471736, 46.933189 ], [ -1.470196, 46.93622 ], [ -1.458498, 46.95623 ], [ -1.472347, 46.97079 ], [ -1.475681, 46.98113 ], [ -1.472223, 46.98741 ], [ -1.462634, 46.99002 ], [ -1.462869, 46.996532 ], [ -1.465618, 46.99933 ], [ -1.474979, 47.02161 ], [ -1.47313, 47.03112 ], [ -1.480637, 47.035431 ], [ -1.48279, 47.03833 ], [ -1.495824, 47.041505 ], [ -1.499845, 47.040689 ], [ -1.504315, 47.03909 ], [ -1.519996, 47.02567 ], [ -1.534341, 47.023431 ], [ -1.554425, 47.014983 ], [ -1.543644, 47.003775 ], [ -1.550895, 46.991422 ], [ -1.551626, 46.98494 ], [ -1.554272, 46.97865 ], [ -1.542958, 46.96165 ], [ -1.544151, 46.95829 ], [ -1.519976, 46.937781 ], [ -1.526616, 46.92525 ], [ -1.545933, 46.925477 ], [ -1.543341, 46.92252 ], [ -1.526956, 46.90574 ], [ -1.504373, 46.89292 ], [ -1.500595, 46.8834 ], [ -1.526798, 46.873833 ], [ -1.536755, 46.875263 ], [ -1.546259, 46.873021 ], [ -1.548511, 46.86008 ], [ -1.57794, 46.86509 ], [ -1.600872, 46.872968 ], [ -1.609602, 46.87123 ], [ -1.613571, 46.87321 ], [ -1.640486, 46.87849 ], [ -1.650611, 46.878914 ], [ -1.664178, 46.874703 ], [ -1.668471, 46.87659 ], [ -1.690948, 46.89007 ], [ -1.715256, 46.884724 ], [ -1.729528, 46.88771 ], [ -1.732279, 46.89028 ], [ -1.738078, 46.90541 ], [ -1.736259, 46.911526 ], [ -1.737883, 46.91399 ], [ -1.745423, 46.918905 ], [ -1.742287, 46.920974 ], [ -1.750245, 46.93049 ], [ -1.755205, 46.92969 ], [ -1.779732, 46.92533 ], [ -1.787902, 46.929422 ], [ -1.797702, 46.92798 ], [ -1.832106, 46.93209 ], [ -1.829087, 46.934702 ], [ -1.825555, 46.94764 ], [ -1.827145, 46.95098 ], [ -1.846398, 46.954154 ], [ -1.871782, 46.9531 ], [ -1.890506, 46.958676 ], [ -1.915735, 46.97558 ], [ -1.9177, 46.992375 ], [ -1.938925, 46.99351 ], [ -1.943608, 46.99512 ], [ -1.972218, 47.028584 ], [ -1.97631, 47.02875 ], [ -1.980414, 47.028906 ], [ -2.003548, 47.06024 ], [ -2.015895, 47.06652 ], [ -2.020004, 47.06868 ], [ -2.033174, 47.07411 ], [ -2.051288, 47.091114 ], [ -2.053683, 47.09425 ], [ -2.101531, 47.10638 ], [ -2.10506, 47.1121 ], [ -2.12005, 47.1102 ], [ -2.145464, 47.11187 ], [ -2.173538, 47.11961 ], [ -2.177283, 47.12199 ], [ -2.213079, 47.12472 ], [ -2.243827, 47.13516 ], [ -2.23241, 47.1423 ], [ -2.228864, 47.144869 ], [ -2.225884, 47.15149 ], [ -2.212932, 47.156091 ], [ -2.174622, 47.1588 ], [ -2.171707, 47.161633 ], [ -2.166599, 47.16739 ], [ -2.160357, 47.19402 ], [ -2.158227, 47.19707 ], [ -2.159684, 47.21101 ], [ -2.178815, 47.23531 ], [ -2.170221, 47.24359 ], [ -2.168511, 47.2678 ], [ -2.148235, 47.26963 ], [ -2.134293, 47.274079 ], [ -2.129201, 47.27461 ], [ -2.06213, 47.28206 ], [ -2.047618, 47.28604 ], [ -2.045758, 47.28939 ], [ -2.042359, 47.29173 ], [ -2.01495, 47.28587 ], [ -2.010494, 47.28458 ], [ -2.010489, 47.29433 ], [ -2.010328, 47.29757 ], [ -2.010274, 47.314743 ], [ -2.015395, 47.315315 ], [ -2.032801, 47.30433 ], [ -2.038534, 47.313545 ], [ -2.043583, 47.313921 ], [ -2.071841, 47.30555 ], [ -2.108057, 47.30606 ], [ -2.113125, 47.30567 ], [ -2.142467, 47.30003 ], [ -2.16909, 47.289917 ], [ -2.181594, 47.29857 ], [ -2.183004, 47.29518 ], [ -2.184784, 47.282178 ], [ -2.193561, 47.278754 ], [ -2.198338, 47.272504 ], [ -2.221793, 47.26589 ], [ -2.228735, 47.257007 ], [ -2.248828, 47.254185 ], [ -2.270119, 47.23957 ], [ -2.294585, 47.234688 ], [ -2.302972, 47.237246 ], [ -2.336953, 47.25337 ], [ -2.346292, 47.265571 ], [ -2.35757, 47.272846 ], [ -2.361998, 47.27457 ], [ -2.39582, 47.281556 ], [ -2.423752, 47.27414 ], [ -2.421239, 47.25911 ], [ -2.449756, 47.2636 ], [ -2.457384, 47.268223 ], [ -2.491706, 47.275327 ], [ -2.503819, 47.280952 ], [ -2.54653, 47.29194 ], [ -2.542924, 47.29812 ], [ -2.518151, 47.30025 ], [ -2.513806, 47.298381 ], [ -2.511633, 47.302022 ], [ -2.513391, 47.30312 ], [ -2.50146, 47.31768 ], [ -2.501156, 47.32468 ], [ -2.50719, 47.34181 ], [ -2.522675, 47.359893 ], [ -2.525945, 47.362625 ], [ -2.556645, 47.37357 ], [ -2.555762, 47.376967 ], [ -2.533175, 47.38427 ], [ -2.502924, 47.402531 ], [ -2.498252, 47.40389 ], [ -2.470758, 47.416955 ], [ -2.463262, 47.4128 ], [ -2.434028, 47.413049 ], [ -2.433068, 47.416423 ], [ -2.454718, 47.425235 ], [ -2.447147, 47.43733 ], [ -2.458489, 47.44812 ], [ -2.452868, 47.460964 ], [ -2.44035, 47.465819 ], [ -2.427617, 47.475789 ], [ -2.423027, 47.477122 ], [ -2.420088, 47.4669 ], [ -2.410409, 47.45883 ], [ -2.395334, 47.45657 ], [ -2.377584, 47.46276 ], [ -2.36721, 47.46319 ], [ -2.355923, 47.455979 ], [ -2.316133, 47.46251 ], [ -2.313426, 47.483065 ], [ -2.30048, 47.498136 ], [ -2.29705, 47.512014 ], [ -2.298099, 47.515476 ], [ -2.29745, 47.515506 ], [ -2.279494, 47.510881 ], [ -2.259526, 47.51175 ], [ -2.255948, 47.50935 ], [ -2.261677, 47.50047 ], [ -2.248656, 47.4953 ], [ -2.244284, 47.49361 ], [ -2.216832, 47.507059 ], [ -2.203241, 47.5105 ], [ -2.198455, 47.51113 ], [ -2.185606, 47.509068 ], [ -2.189112, 47.49938 ], [ -2.186385, 47.49323 ], [ -2.166233, 47.49088 ], [ -2.157796, 47.49475 ], [ -2.155255, 47.497805 ], [ -2.153629, 47.50827 ], [ -2.155171, 47.518728 ], [ -2.148712, 47.52356 ], [ -2.14396, 47.524961 ], [ -2.098852, 47.533449 ], [ -2.097167, 47.54022 ], [ -2.103892, 47.54911 ], [ -2.0975, 47.569237 ], [ -2.096731, 47.57263 ], [ -2.103211, 47.575166 ], [ -2.105064, 47.57754 ], [ -2.100458, 47.578858 ], [ -2.102524, 47.5953 ], [ -2.086481, 47.603255 ], [ -2.0853, 47.606536 ], [ -2.084146, 47.609959 ], [ -2.086555, 47.623745 ], [ -2.097036, 47.63136 ], [ -2.082054, 47.64945 ], [ -2.052005, 47.6504 ], [ -2.047426, 47.66379 ], [ -2.043095, 47.6657 ], [ -2.035333, 47.66847 ], [ -2.016926, 47.66683 ], [ -2.012284, 47.666454 ], [ -1.977136, 47.691668 ], [ -1.973401, 47.69415 ], [ -1.973056, 47.69403 ], [ -1.969042, 47.68781 ], [ -1.969284, 47.67424 ], [ -1.961339, 47.67094 ], [ -1.956329, 47.671188 ], [ -1.93644, 47.686523 ], [ -1.888114, 47.695482 ], [ -1.883074, 47.69499 ], [ -1.878257, 47.6952 ], [ -1.858304, 47.70825 ], [ -1.853488, 47.70804 ], [ -1.841527, 47.7055 ], [ -1.83778, 47.70676 ], [ -1.828414, 47.70954 ], [ -1.820055, 47.7056 ], [ -1.786276, 47.69988 ], [ -1.771608, 47.69868 ], [ -1.750249, 47.706751 ], [ -1.736125, 47.70415 ], [ -1.732593, 47.70184 ], [ -1.729713, 47.699342 ], [ -1.715725, 47.69945 ], [ -1.71127, 47.700421 ], [ -1.706147, 47.70895 ], [ -1.686443, 47.7126 ], [ -1.661157, 47.7102 ], [ -1.648814, 47.720306 ], [ -1.644387, 47.722087 ], [ -1.641237, 47.721825 ], [ -1.638131, 47.722209 ], [ -1.636801, 47.741755 ], [ -1.626098, 47.75656 ], [ -1.627131, 47.759827 ], [ -1.619634, 47.76357 ], [ -1.601774, 47.764542 ], [ -1.598107, 47.766525 ], [ -1.59491, 47.77332 ], [ -1.594141, 47.77603 ], [ -1.585308, 47.7789 ], [ -1.575393, 47.778234 ], [ -1.556429, 47.78372 ], [ -1.530422, 47.78478 ], [ -1.51219, 47.79722 ], [ -1.503981, 47.80108 ], [ -1.494999, 47.798505 ], [ -1.47114, 47.80307 ], [ -1.468448, 47.8059 ], [ -1.474307, 47.824 ], [ -1.480687, 47.82869 ], [ -1.481873, 47.8318 ], [ -1.479636, 47.83481 ], [ -1.465114, 47.83486 ], [ -1.456579, 47.83175 ], [ -1.427417, 47.832171 ], [ -1.419285, 47.829044 ], [ -1.414846, 47.827498 ], [ -1.411962, 47.82855 ], [ -1.409149, 47.827406 ], [ -1.405523, 47.825 ], [ -1.391976, 47.82855 ], [ -1.381228, 47.82141 ], [ -1.374824, 47.808827 ], [ -1.365536, 47.80604 ], [ -1.364478, 47.79967 ], [ -1.339993, 47.795214 ], [ -1.33715, 47.79463 ], [ -1.251009, 47.777622 ], [ -1.245882, 47.776718 ], [ -1.247316, 47.763028 ], [ -1.236525, 47.75578 ], [ -1.241724, 47.74286 ], [ -1.255719, 47.742569 ], [ -1.255316, 47.739203 ], [ -1.254406, 47.73267 ], [ -1.234119, 47.72336 ], [ -1.215419, 47.71882 ], [ -1.195666, 47.72172 ], [ -1.19545, 47.71203 ], [ -1.180204, 47.69679 ], [ -1.17493, 47.69456 ], [ -1.177913, 47.68801 ], [ -1.175483, 47.681359 ], [ -1.181369, 47.66861 ], [ -1.172985, 47.66037 ], [ -1.162948, 47.66049 ], [ -1.156466, 47.64547 ], [ -1.157909, 47.639163 ], [ -1.157394, 47.63599 ], [ -1.154156, 47.633618 ], [ -1.137678, 47.62215 ], [ -1.137894, 47.618927 ], [ -1.123665, 47.61921 ], [ -1.103175, 47.62059 ], [ -1.075035, 47.60613 ], [ -1.030451, 47.59937 ], [ -1.025255, 47.59902 ], [ -1.021577, 47.59672 ], [ -1.009226, 47.59105 ], [ -1.008165, 47.58776 ], [ -1.020182, 47.57714 ], [ -1.032991, 47.571965 ], [ -1.037088, 47.57049 ], [ -1.042198, 47.56323 ], [ -1.055643, 47.56528 ], [ -1.060517, 47.56597 ], [ -1.099905, 47.565729 ], [ -1.104863, 47.56527 ], [ -1.123516, 47.56952 ], [ -1.172934, 47.57282 ], [ -1.173253, 47.569228 ], [ -1.178346, 47.54802 ], [ -1.154392, 47.542337 ], [ -1.154454, 47.538856 ], [ -1.168004, 47.529123 ], [ -1.156214, 47.51015 ], [ -1.146997, 47.50709 ], [ -1.142822, 47.505071 ], [ -1.107533, 47.50095 ], [ -1.077012, 47.50328 ], [ -1.072631, 47.501481 ], [ -1.049296, 47.50528 ], [ -1.044458, 47.505501 ], [ -1.025803, 47.500127 ], [ -1.011586, 47.489874 ], [ -0.970663, 47.492295 ], [ -0.96548, 47.4918 ], [ -0.96091, 47.48379 ], [ -0.958993, 47.48123 ], [ -0.962337, 47.47918 ], [ -0.967867, 47.46805 ], [ -0.954011, 47.45323 ], [ -0.952818, 47.43581 ], [ -0.947628, 47.42975 ], [ -0.948347, 47.42274 ], [ -0.943182, 47.41861 ], [ -0.925506, 47.40194 ], [ -0.923456, 47.39877 ], [ -0.927155, 47.39636 ], [ -0.935856, 47.38778 ], [ -0.945808, 47.38703 ], [ -0.949385, 47.38442 ], [ -0.957845, 47.3802 ], [ -0.962253, 47.37843 ], [ -0.966359, 47.376361 ], [ -0.969338, 47.3743 ], [ -0.976234, 47.371029 ], [ -0.981172, 47.37088 ], [ -0.990563, 47.37262 ], [ -1.012695, 47.36571 ], [ -1.032118, 47.365001 ], [ -1.036884, 47.36469 ], [ -1.063981, 47.37019 ], [ -1.07853, 47.3708 ], [ -1.101857, 47.36664 ], [ -1.106842, 47.36589 ], [ -1.111954, 47.36594 ], [ -1.11428, 47.367041 ], [ -1.144951, 47.367996 ], [ -1.170101, 47.364653 ], [ -1.183138, 47.3542 ], [ -1.187253, 47.35254 ], [ -1.205598, 47.348976 ], [ -1.228373, 47.349978 ], [ -1.232283, 47.34792 ], [ -1.236679, 47.345979 ], [ -1.256452, 47.34125 ], [ -1.282624, 47.340957 ], [ -1.287817, 47.34056 ], [ -1.306548, 47.33448 ], [ -1.310318, 47.33205 ], [ -1.322745, 47.32088 ], [ -1.337293, 47.317469 ], [ -1.354204, 47.30416 ], [ -1.339313, 47.300976 ], [ -1.319029, 47.30321 ], [ -1.3138, 47.302964 ], [ -1.294757, 47.301354 ], [ -1.282664, 47.2958 ], [ -1.28022, 47.2929 ], [ -1.27672, 47.288055 ], [ -1.276402, 47.2696 ], [ -1.255337, 47.25317 ], [ -1.254061, 47.25009 ], [ -1.235477, 47.241102 ], [ -1.231267, 47.239579 ], [ -1.213985, 47.245907 ], [ -1.209506, 47.25178 ], [ -1.204918, 47.25304 ], [ -1.195861, 47.252181 ], [ -1.185046, 47.242529 ], [ -1.181106, 47.2409 ], [ -1.188046, 47.22311 ], [ -1.188466, 47.220003 ], [ -1.177609, 47.216185 ], [ -1.174481, 47.214404 ], [ -1.175243, 47.21162 ], [ -1.180764, 47.20741 ], [ -1.174632, 47.19846 ], [ -1.176734, 47.192659 ], [ -1.165361, 47.188066 ], [ -1.161776, 47.18583 ], [ -1.167714, 47.17355 ], [ -1.169555, 47.170515 ], [ -1.172048, 47.16789 ], [ -1.188363, 47.158232 ], [ -1.191065, 47.15542 ], [ -1.209088, 47.14454 ], [ -1.218849, 47.144322 ], [ -1.23822, 47.134904 ], [ -1.235255, 47.132488 ], [ -1.230987, 47.1313 ], [ -1.23218, 47.12799 ], [ -1.226626, 47.118667 ], [ -1.232328, 47.109875 ], [ -1.246738, 47.10053 ], [ -1.249652, 47.09763 ], [ -1.240897, 47.094585 ], [ -1.228114, 47.099769 ], [ -1.179363, 47.09529 ], [ -1.175073, 47.093584 ], [ -1.170549, 47.09295 ], [ -1.167958, 47.09052 ], [ -1.161898, 47.07957 ], [ -1.148528, 47.069621 ], [ -1.120108, 47.06414 ], [ -1.115539, 47.062697 ], [ -1.120792, 47.053584 ], [ -1.11789, 47.04028 ], [ -1.143996, 47.030927 ], [ -1.148571, 47.029554 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "46", "CODE_DEPT": "45", "NOM_DEPT": "LOIRET", "CODE_CHF": "234", "NOM_CHF": "ORLEANS", "X_CHF_LIEU": "6181", "Y_CHF_LIEU": "67563", "X_CENTROID": "6510", "Y_CENTROID": "67570", "CODE_REG": "24", "NOM_REGION": "CENTRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.874625, 47.52042 ], [ 2.870551, 47.51828 ], [ 2.841217, 47.51181 ], [ 2.826262, 47.49807 ], [ 2.806484, 47.494459 ], [ 2.802623, 47.49678 ], [ 2.797521, 47.49734 ], [ 2.794601, 47.500227 ], [ 2.783529, 47.51519 ], [ 2.762558, 47.524957 ], [ 2.742696, 47.526517 ], [ 2.73182, 47.538095 ], [ 2.727151, 47.536221 ], [ 2.728377, 47.532938 ], [ 2.723602, 47.52338 ], [ 2.72549, 47.510266 ], [ 2.72176, 47.504415 ], [ 2.727407, 47.49889 ], [ 2.725405, 47.49575 ], [ 2.714574, 47.48925 ], [ 2.686362, 47.483189 ], [ 2.682059, 47.48336 ], [ 2.669382, 47.48468 ], [ 2.664608, 47.485757 ], [ 2.656286, 47.49335 ], [ 2.655871, 47.510396 ], [ 2.612018, 47.526389 ], [ 2.613325, 47.52941 ], [ 2.616728, 47.538566 ], [ 2.607079, 47.54915 ], [ 2.603024, 47.550996 ], [ 2.592984, 47.55814 ], [ 2.573916, 47.559625 ], [ 2.567581, 47.56849 ], [ 2.564341, 47.571147 ], [ 2.544971, 47.57467 ], [ 2.520343, 47.57237 ], [ 2.506549, 47.56809 ], [ 2.491358, 47.56829 ], [ 2.490301, 47.57177 ], [ 2.456411, 47.593837 ], [ 2.44743, 47.606577 ], [ 2.438079, 47.60977 ], [ 2.43345, 47.60822 ], [ 2.400349, 47.598576 ], [ 2.394291, 47.59292 ], [ 2.379655, 47.590592 ], [ 2.372689, 47.585442 ], [ 2.360156, 47.59105 ], [ 2.343358, 47.60448 ], [ 2.323488, 47.60856 ], [ 2.307202, 47.617324 ], [ 2.303059, 47.61954 ], [ 2.293606, 47.62262 ], [ 2.289632, 47.62905 ], [ 2.284817, 47.628675 ], [ 2.239214, 47.62098 ], [ 2.240709, 47.64126 ], [ 2.220507, 47.664809 ], [ 2.20677, 47.66293 ], [ 2.20609, 47.67639 ], [ 2.203685, 47.678548 ], [ 2.198824, 47.67743 ], [ 2.169602, 47.67102 ], [ 2.149203, 47.670747 ], [ 2.137839, 47.67718 ], [ 2.127918, 47.67826 ], [ 2.112621, 47.67 ], [ 2.107753, 47.67106 ], [ 2.103849, 47.67736 ], [ 2.07455, 47.68215 ], [ 2.069925, 47.680621 ], [ 2.064654, 47.674863 ], [ 2.008923, 47.677456 ], [ 2.00053, 47.67368 ], [ 1.99523, 47.66426 ], [ 1.981894, 47.665539 ], [ 1.977227, 47.6643 ], [ 1.964992, 47.65891 ], [ 1.956351, 47.661992 ], [ 1.94207, 47.661828 ], [ 1.937186, 47.677582 ], [ 1.927563, 47.67822 ], [ 1.913991, 47.67449 ], [ 1.909007, 47.67509 ], [ 1.899064, 47.67383 ], [ 1.890772, 47.677763 ], [ 1.865859, 47.675948 ], [ 1.86291, 47.68861 ], [ 1.854454, 47.689412 ], [ 1.849532, 47.688292 ], [ 1.843748, 47.68327 ], [ 1.845386, 47.65936 ], [ 1.811415, 47.652507 ], [ 1.804482, 47.64738 ], [ 1.802572, 47.64049 ], [ 1.794452, 47.63612 ], [ 1.78966, 47.637205 ], [ 1.778699, 47.644149 ], [ 1.780571, 47.650848 ], [ 1.776475, 47.65287 ], [ 1.746726, 47.656755 ], [ 1.740037, 47.66185 ], [ 1.728091, 47.687853 ], [ 1.721493, 47.692796 ], [ 1.719378, 47.695923 ], [ 1.723804, 47.697646 ], [ 1.728065, 47.699565 ], [ 1.725656, 47.70271 ], [ 1.713066, 47.7221 ], [ 1.712265, 47.732617 ], [ 1.693807, 47.73879 ], [ 1.673132, 47.73948 ], [ 1.655696, 47.74719 ], [ 1.652215, 47.749207 ], [ 1.629262, 47.75941 ], [ 1.627599, 47.75607 ], [ 1.619393, 47.73947 ], [ 1.582867, 47.72644 ], [ 1.583133, 47.729973 ], [ 1.587321, 47.73208 ], [ 1.59798, 47.73974 ], [ 1.547817, 47.76954 ], [ 1.550856, 47.772211 ], [ 1.571251, 47.78696 ], [ 1.567251, 47.78869 ], [ 1.570241, 47.79672 ], [ 1.566758, 47.79904 ], [ 1.540854, 47.817015 ], [ 1.527172, 47.81932 ], [ 1.527922, 47.822632 ], [ 1.531379, 47.82861 ], [ 1.534145, 47.83158 ], [ 1.535838, 47.83852 ], [ 1.548849, 47.84338 ], [ 1.583626, 47.86849 ], [ 1.583443, 47.871851 ], [ 1.588642, 47.87759 ], [ 1.579064, 47.889009 ], [ 1.581427, 47.891747 ], [ 1.577301, 47.89739 ], [ 1.579184, 47.903529 ], [ 1.57582, 47.90618 ], [ 1.553575, 47.92076 ], [ 1.525424, 47.92911 ], [ 1.522628, 47.931869 ], [ 1.526238, 47.944642 ], [ 1.533467, 47.949196 ], [ 1.55221, 47.953137 ], [ 1.555956, 47.95532 ], [ 1.547007, 47.958204 ], [ 1.547853, 47.961535 ], [ 1.564452, 47.97312 ], [ 1.564819, 47.98977 ], [ 1.560687, 47.987876 ], [ 1.551414, 47.98964 ], [ 1.520124, 47.98228 ], [ 1.520888, 48.011108 ], [ 1.514051, 48.02723 ], [ 1.525946, 48.033232 ], [ 1.540795, 48.031032 ], [ 1.548119, 48.034543 ], [ 1.540194, 48.03873 ], [ 1.545307, 48.044589 ], [ 1.566382, 48.03656 ], [ 1.585117, 48.033535 ], [ 1.586955, 48.03052 ], [ 1.591873, 48.03075 ], [ 1.599285, 48.04276 ], [ 1.613878, 48.044156 ], [ 1.621232, 48.048319 ], [ 1.623713, 48.060786 ], [ 1.621686, 48.063877 ], [ 1.624269, 48.06676 ], [ 1.660607, 48.07512 ], [ 1.668431, 48.0668 ], [ 1.677207, 48.06541 ], [ 1.687023, 48.0751 ], [ 1.689474, 48.07754 ], [ 1.706129, 48.069758 ], [ 1.708991, 48.06694 ], [ 1.728803, 48.068888 ], [ 1.748763, 48.065781 ], [ 1.767072, 48.07179 ], [ 1.771543, 48.07004 ], [ 1.778099, 48.07517 ], [ 1.7975, 48.077682 ], [ 1.80004, 48.08412 ], [ 1.802746, 48.08921 ], [ 1.833278, 48.081318 ], [ 1.838124, 48.08078 ], [ 1.840198, 48.08728 ], [ 1.864599, 48.085017 ], [ 1.865166, 48.091781 ], [ 1.864904, 48.095189 ], [ 1.881637, 48.098013 ], [ 1.887624, 48.102722 ], [ 1.889714, 48.105586 ], [ 1.897623, 48.124523 ], [ 1.899468, 48.127564 ], [ 1.907824, 48.1304 ], [ 1.912622, 48.12913 ], [ 1.918712, 48.14358 ], [ 1.920403, 48.14638 ], [ 1.915328, 48.146654 ], [ 1.905183, 48.14694 ], [ 1.90323, 48.16003 ], [ 1.907925, 48.15999 ], [ 1.916563, 48.16706 ], [ 1.919554, 48.169487 ], [ 1.927115, 48.17345 ], [ 1.934758, 48.169364 ], [ 1.951887, 48.17462 ], [ 1.96628, 48.172695 ], [ 1.97055, 48.17105 ], [ 1.970035, 48.178109 ], [ 1.969347, 48.18168 ], [ 1.952285, 48.19387 ], [ 1.956429, 48.20006 ], [ 1.97085, 48.194314 ], [ 1.976462, 48.199861 ], [ 1.962595, 48.2226 ], [ 1.964442, 48.23212 ], [ 1.966607, 48.23506 ], [ 1.965343, 48.23767 ], [ 1.962064, 48.24547 ], [ 1.965943, 48.254462 ], [ 1.977882, 48.259308 ], [ 1.981399, 48.26141 ], [ 1.985726, 48.266242 ], [ 1.987876, 48.268708 ], [ 1.994521, 48.2835 ], [ 1.994085, 48.28659 ], [ 2.009276, 48.28532 ], [ 2.028994, 48.288632 ], [ 2.043236, 48.286166 ], [ 2.051468, 48.29021 ], [ 2.052708, 48.295474 ], [ 2.087542, 48.29451 ], [ 2.099895, 48.304714 ], [ 2.108709, 48.30746 ], [ 2.113717, 48.30725 ], [ 2.111702, 48.300367 ], [ 2.1106, 48.296949 ], [ 2.141159, 48.29928 ], [ 2.161589, 48.29844 ], [ 2.16239, 48.301511 ], [ 2.155435, 48.30546 ], [ 2.153878, 48.30841 ], [ 2.152668, 48.31482 ], [ 2.166995, 48.313033 ], [ 2.170835, 48.31504 ], [ 2.177842, 48.31293 ], [ 2.181484, 48.31379 ], [ 2.182947, 48.32382 ], [ 2.20709, 48.34494 ], [ 2.21469, 48.33667 ], [ 2.231822, 48.32977 ], [ 2.24631, 48.329968 ], [ 2.239599, 48.319128 ], [ 2.238047, 48.31637 ], [ 2.248218, 48.31542 ], [ 2.245229, 48.301852 ], [ 2.245157, 48.2984 ], [ 2.2501, 48.29975 ], [ 2.254851, 48.301418 ], [ 2.265536, 48.31267 ], [ 2.269118, 48.31505 ], [ 2.296706, 48.30885 ], [ 2.300208, 48.311242 ], [ 2.312424, 48.33012 ], [ 2.317182, 48.331567 ], [ 2.326154, 48.33064 ], [ 2.32931, 48.332833 ], [ 2.340362, 48.318796 ], [ 2.355802, 48.310433 ], [ 2.369945, 48.30867 ], [ 2.398936, 48.31526 ], [ 2.402664, 48.32072 ], [ 2.417749, 48.302206 ], [ 2.420762, 48.299251 ], [ 2.423098, 48.29278 ], [ 2.418346, 48.27989 ], [ 2.420109, 48.2667 ], [ 2.421716, 48.26388 ], [ 2.435639, 48.254848 ], [ 2.440144, 48.2532 ], [ 2.444509, 48.254485 ], [ 2.4518, 48.250425 ], [ 2.465405, 48.25326 ], [ 2.46909, 48.255282 ], [ 2.476787, 48.25083 ], [ 2.480612, 48.24139 ], [ 2.484178, 48.23897 ], [ 2.501745, 48.23871 ], [ 2.506192, 48.23854 ], [ 2.507345, 48.228985 ], [ 2.51535, 48.22693 ], [ 2.514119, 48.214382 ], [ 2.517404, 48.214378 ], [ 2.519932, 48.201377 ], [ 2.523011, 48.19876 ], [ 2.520296, 48.193919 ], [ 2.515406, 48.19301 ], [ 2.508843, 48.180923 ], [ 2.514911, 48.16484 ], [ 2.506327, 48.15644 ], [ 2.502032, 48.158444 ], [ 2.483238, 48.164518 ], [ 2.480872, 48.16161 ], [ 2.47185, 48.154597 ], [ 2.474045, 48.15161 ], [ 2.461097, 48.138207 ], [ 2.444256, 48.13147 ], [ 2.442692, 48.12549 ], [ 2.455859, 48.123389 ], [ 2.458954, 48.125608 ], [ 2.477562, 48.1291 ], [ 2.517284, 48.1259 ], [ 2.52221, 48.125215 ], [ 2.521724, 48.128417 ], [ 2.534395, 48.13806 ], [ 2.537505, 48.14052 ], [ 2.565815, 48.14109 ], [ 2.570563, 48.140816 ], [ 2.577868, 48.13178 ], [ 2.599014, 48.1316 ], [ 2.634454, 48.13833 ], [ 2.639666, 48.13895 ], [ 2.661585, 48.123439 ], [ 2.664748, 48.120542 ], [ 2.66757, 48.120667 ], [ 2.675484, 48.12517 ], [ 2.706547, 48.124819 ], [ 2.722461, 48.13741 ], [ 2.750335, 48.14487 ], [ 2.755198, 48.14565 ], [ 2.754255, 48.151905 ], [ 2.738384, 48.16342 ], [ 2.736406, 48.16631 ], [ 2.754682, 48.16139 ], [ 2.77668, 48.165726 ], [ 2.780977, 48.167363 ], [ 2.79024, 48.1653 ], [ 2.798959, 48.168025 ], [ 2.810918, 48.164067 ], [ 2.810418, 48.16082 ], [ 2.800412, 48.15361 ], [ 2.797907, 48.140551 ], [ 2.799465, 48.137396 ], [ 2.802391, 48.131462 ], [ 2.816334, 48.13043 ], [ 2.82088, 48.12966 ], [ 2.823316, 48.13278 ], [ 2.838308, 48.135908 ], [ 2.864438, 48.152902 ], [ 2.866823, 48.15604 ], [ 2.870991, 48.15647 ], [ 2.895207, 48.15895 ], [ 2.900047, 48.15943 ], [ 2.931137, 48.162813 ], [ 2.936314, 48.163392 ], [ 2.951969, 48.16436 ], [ 2.959952, 48.15538 ], [ 2.963612, 48.15287 ], [ 2.978176, 48.15058 ], [ 2.987615, 48.15228 ], [ 2.994044, 48.1431 ], [ 3.002138, 48.14166 ], [ 3.003886, 48.14486 ], [ 3.01323, 48.14348 ], [ 3.019049, 48.13778 ], [ 3.023122, 48.13567 ], [ 3.027273, 48.1307 ], [ 3.015884, 48.11571 ], [ 3.0351, 48.11563 ], [ 3.041212, 48.09648 ], [ 3.042902, 48.093376 ], [ 3.050194, 48.09124 ], [ 3.049882, 48.088253 ], [ 3.050471, 48.07233 ], [ 3.060278, 48.064699 ], [ 3.078932, 48.06024 ], [ 3.090345, 48.053944 ], [ 3.095365, 48.05398 ], [ 3.090536, 48.04822 ], [ 3.09762, 48.039558 ], [ 3.119731, 48.03247 ], [ 3.124263, 48.03113 ], [ 3.120648, 48.028603 ], [ 3.102176, 48.022456 ], [ 3.10115, 48.019028 ], [ 3.10657, 48.013183 ], [ 3.120845, 48.009363 ], [ 3.121123, 47.995936 ], [ 3.126676, 47.991268 ], [ 3.122989, 47.985198 ], [ 3.128498, 47.979513 ], [ 3.128119, 47.97251 ], [ 3.113425, 47.963348 ], [ 3.105272, 47.946941 ], [ 3.10076, 47.94799 ], [ 3.088683, 47.94318 ], [ 3.08394, 47.942431 ], [ 3.078743, 47.93327 ], [ 3.065214, 47.930519 ], [ 3.063161, 47.92733 ], [ 3.053812, 47.92445 ], [ 3.048244, 47.911331 ], [ 3.030666, 47.90784 ], [ 3.011818, 47.904825 ], [ 3.01543, 47.8985 ], [ 3.007226, 47.895295 ], [ 3.011491, 47.875099 ], [ 2.994904, 47.86735 ], [ 3.018188, 47.861193 ], [ 3.023297, 47.861021 ], [ 3.026906, 47.85892 ], [ 3.033824, 47.843874 ], [ 3.030665, 47.83748 ], [ 3.013874, 47.83184 ], [ 3.013992, 47.825032 ], [ 3.019403, 47.81945 ], [ 3.015473, 47.813539 ], [ 3.019882, 47.81304 ], [ 3.024344, 47.81308 ], [ 3.024263, 47.80966 ], [ 3.027584, 47.799766 ], [ 3.023798, 47.786375 ], [ 3.018803, 47.78647 ], [ 2.988902, 47.786125 ], [ 2.98045, 47.782523 ], [ 2.977353, 47.779958 ], [ 2.954511, 47.77426 ], [ 2.947189, 47.76579 ], [ 2.937484, 47.7663 ], [ 2.935592, 47.763247 ], [ 2.93056, 47.76283 ], [ 2.912915, 47.769388 ], [ 2.908379, 47.768017 ], [ 2.899667, 47.76492 ], [ 2.856477, 47.761736 ], [ 2.853882, 47.75868 ], [ 2.858407, 47.748679 ], [ 2.852539, 47.728151 ], [ 2.84865, 47.7258 ], [ 2.851135, 47.71967 ], [ 2.848969, 47.71685 ], [ 2.861175, 47.710943 ], [ 2.877733, 47.71885 ], [ 2.883507, 47.71345 ], [ 2.879661, 47.70378 ], [ 2.884065, 47.702075 ], [ 2.888655, 47.70057 ], [ 2.893098, 47.69888 ], [ 2.92416, 47.682496 ], [ 2.918155, 47.6698 ], [ 2.928231, 47.658439 ], [ 2.937223, 47.659056 ], [ 2.941581, 47.657537 ], [ 2.951156, 47.6479 ], [ 2.954234, 47.64569 ], [ 2.939684, 47.63836 ], [ 2.936158, 47.636427 ], [ 2.934061, 47.630152 ], [ 2.932321, 47.62705 ], [ 2.943619, 47.607763 ], [ 2.940355, 47.59821 ], [ 2.945698, 47.59225 ], [ 2.959327, 47.587517 ], [ 2.96487, 47.57446 ], [ 2.974821, 47.572714 ], [ 2.976538, 47.56943 ], [ 2.971791, 47.56792 ], [ 2.958658, 47.55738 ], [ 2.953843, 47.55861 ], [ 2.914297, 47.56597 ], [ 2.912958, 47.56364 ], [ 2.909374, 47.559612 ], [ 2.905814, 47.55747 ], [ 2.883392, 47.55272 ], [ 2.878366, 47.55267 ], [ 2.868583, 47.546008 ], [ 2.85663, 47.55141 ], [ 2.845187, 47.544935 ], [ 2.846885, 47.54153 ], [ 2.874625, 47.52042 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "47", "CODE_DEPT": "46", "NOM_DEPT": "LOT", "CODE_CHF": "042", "NOM_CHF": "CAHORS", "X_CHF_LIEU": "5759", "Y_CHF_LIEU": "63732", "X_CENTROID": "5893", "Y_CENTROID": "63926", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.882083, 44.340074 ], [ 1.85629, 44.332742 ], [ 1.849722, 44.335005 ], [ 1.847231, 44.337806 ], [ 1.842695, 44.33697 ], [ 1.833702, 44.33513 ], [ 1.826465, 44.32359 ], [ 1.813143, 44.327982 ], [ 1.807251, 44.33324 ], [ 1.805975, 44.336637 ], [ 1.801818, 44.3357 ], [ 1.793744, 44.333749 ], [ 1.79125, 44.327762 ], [ 1.783485, 44.327847 ], [ 1.787993, 44.32172 ], [ 1.78237, 44.316122 ], [ 1.773271, 44.314203 ], [ 1.759546, 44.323177 ], [ 1.740904, 44.326297 ], [ 1.73309, 44.317897 ], [ 1.706266, 44.312508 ], [ 1.702321, 44.314505 ], [ 1.698485, 44.31283 ], [ 1.675551, 44.29785 ], [ 1.671104, 44.29826 ], [ 1.670328, 44.293399 ], [ 1.669676, 44.290735 ], [ 1.665366, 44.291187 ], [ 1.659487, 44.28326 ], [ 1.655897, 44.28512 ], [ 1.651059, 44.296711 ], [ 1.646736, 44.295064 ], [ 1.637352, 44.297001 ], [ 1.634017, 44.294934 ], [ 1.650018, 44.28304 ], [ 1.644042, 44.27354 ], [ 1.636036, 44.2699 ], [ 1.615631, 44.2784 ], [ 1.616652, 44.29767 ], [ 1.612038, 44.296711 ], [ 1.602525, 44.29617 ], [ 1.596701, 44.301522 ], [ 1.587527, 44.301432 ], [ 1.583253, 44.29988 ], [ 1.573875, 44.300958 ], [ 1.570705, 44.298396 ], [ 1.575434, 44.285305 ], [ 1.564456, 44.278851 ], [ 1.576671, 44.26947 ], [ 1.58079, 44.259581 ], [ 1.585916, 44.250942 ], [ 1.582443, 44.24556 ], [ 1.578933, 44.24369 ], [ 1.57292, 44.2353 ], [ 1.546054, 44.23018 ], [ 1.541735, 44.22871 ], [ 1.530026, 44.23459 ], [ 1.526928, 44.237212 ], [ 1.518156, 44.25233 ], [ 1.524087, 44.26122 ], [ 1.511915, 44.271094 ], [ 1.508952, 44.273709 ], [ 1.504077, 44.273265 ], [ 1.489859, 44.27216 ], [ 1.481934, 44.280839 ], [ 1.473534, 44.284216 ], [ 1.463113, 44.26918 ], [ 1.454513, 44.26613 ], [ 1.452071, 44.255988 ], [ 1.430319, 44.24309 ], [ 1.425752, 44.242029 ], [ 1.423051, 44.242774 ], [ 1.419793, 44.240602 ], [ 1.394161, 44.228986 ], [ 1.389259, 44.22875 ], [ 1.370509, 44.217636 ], [ 1.35715, 44.203023 ], [ 1.337985, 44.22666 ], [ 1.316172, 44.23097 ], [ 1.303104, 44.2283 ], [ 1.285965, 44.23448 ], [ 1.281318, 44.23534 ], [ 1.283518, 44.23793 ], [ 1.284393, 44.252516 ], [ 1.288709, 44.253943 ], [ 1.302983, 44.262511 ], [ 1.30288, 44.269315 ], [ 1.294544, 44.271923 ], [ 1.304016, 44.294191 ], [ 1.299992, 44.295011 ], [ 1.282704, 44.29009 ], [ 1.272716, 44.28264 ], [ 1.258367, 44.28299 ], [ 1.255351, 44.285687 ], [ 1.253224, 44.28274 ], [ 1.250491, 44.26974 ], [ 1.24419, 44.26604 ], [ 1.242612, 44.26925 ], [ 1.238265, 44.275294 ], [ 1.225198, 44.27918 ], [ 1.213001, 44.270934 ], [ 1.203287, 44.28248 ], [ 1.195068, 44.282012 ], [ 1.188983, 44.286918 ], [ 1.184412, 44.2868 ], [ 1.180887, 44.28885 ], [ 1.17746, 44.294831 ], [ 1.178986, 44.310559 ], [ 1.175529, 44.3085 ], [ 1.168975, 44.304108 ], [ 1.15957, 44.30992 ], [ 1.151415, 44.30739 ], [ 1.135027, 44.31689 ], [ 1.130534, 44.316985 ], [ 1.122866, 44.31566 ], [ 1.120364, 44.3181 ], [ 1.10939, 44.324871 ], [ 1.114707, 44.33775 ], [ 1.100694, 44.347087 ], [ 1.083658, 44.35139 ], [ 1.081223, 44.35439 ], [ 1.085842, 44.35546 ], [ 1.093797, 44.36784 ], [ 1.130922, 44.372159 ], [ 1.134424, 44.37446 ], [ 1.132599, 44.384514 ], [ 1.132478, 44.393876 ], [ 1.106685, 44.39235 ], [ 1.10233, 44.391893 ], [ 1.098001, 44.3903 ], [ 1.082963, 44.38159 ], [ 1.064084, 44.37851 ], [ 1.059579, 44.3909 ], [ 1.051168, 44.392269 ], [ 1.058599, 44.3997 ], [ 1.061688, 44.401928 ], [ 1.059949, 44.405022 ], [ 1.06145, 44.41474 ], [ 1.057488, 44.427679 ], [ 1.051011, 44.43041 ], [ 1.047182, 44.43103 ], [ 1.045005, 44.43401 ], [ 1.031175, 44.433092 ], [ 1.031241, 44.43951 ], [ 1.021679, 44.4466 ], [ 1.02099, 44.45624 ], [ 1.025025, 44.465633 ], [ 1.022472, 44.4721 ], [ 1.023009, 44.47544 ], [ 1.012236, 44.47851 ], [ 1.009025, 44.48005 ], [ 1.014987, 44.489721 ], [ 1.016272, 44.50364 ], [ 0.999969, 44.5252 ], [ 0.989453, 44.5324 ], [ 0.98846, 44.53943 ], [ 0.98152, 44.544441 ], [ 0.993167, 44.549408 ], [ 1.006567, 44.54762 ], [ 1.011873, 44.539265 ], [ 1.013166, 44.53614 ], [ 1.036748, 44.55605 ], [ 1.040809, 44.557693 ], [ 1.042312, 44.55793 ], [ 1.053195, 44.56377 ], [ 1.06723, 44.565525 ], [ 1.073639, 44.57408 ], [ 1.075141, 44.57732 ], [ 1.076483, 44.57417 ], [ 1.085075, 44.57195 ], [ 1.098607, 44.57189 ], [ 1.10321, 44.57174 ], [ 1.099504, 44.580043 ], [ 1.103467, 44.58097 ], [ 1.096152, 44.593124 ], [ 1.107396, 44.603961 ], [ 1.123622, 44.614828 ], [ 1.127289, 44.616772 ], [ 1.146642, 44.63136 ], [ 1.150893, 44.632856 ], [ 1.15255, 44.63618 ], [ 1.146516, 44.65285 ], [ 1.149825, 44.655027 ], [ 1.146901, 44.66758 ], [ 1.146733, 44.670797 ], [ 1.161061, 44.672964 ], [ 1.166974, 44.67859 ], [ 1.180561, 44.682687 ], [ 1.219796, 44.68332 ], [ 1.22455, 44.68427 ], [ 1.224707, 44.68571 ], [ 1.230001, 44.69115 ], [ 1.242933, 44.694636 ], [ 1.244638, 44.70475 ], [ 1.261542, 44.71018 ], [ 1.268091, 44.71896 ], [ 1.270041, 44.72209 ], [ 1.282721, 44.7151 ], [ 1.287021, 44.71446 ], [ 1.299421, 44.731674 ], [ 1.297181, 44.73806 ], [ 1.30019, 44.744284 ], [ 1.312139, 44.74149 ], [ 1.316051, 44.740375 ], [ 1.321535, 44.761097 ], [ 1.308133, 44.7709 ], [ 1.303951, 44.7725 ], [ 1.297154, 44.77697 ], [ 1.303806, 44.785691 ], [ 1.30262, 44.78896 ], [ 1.293311, 44.789852 ], [ 1.301166, 44.797744 ], [ 1.321845, 44.804111 ], [ 1.325507, 44.806012 ], [ 1.352501, 44.808578 ], [ 1.356551, 44.81025 ], [ 1.360244, 44.81116 ], [ 1.364103, 44.811568 ], [ 1.360801, 44.83889 ], [ 1.365459, 44.84497 ], [ 1.378341, 44.84335 ], [ 1.388593, 44.849992 ], [ 1.402507, 44.849049 ], [ 1.402862, 44.85081 ], [ 1.405462, 44.86314 ], [ 1.409292, 44.864725 ], [ 1.411446, 44.87271 ], [ 1.414009, 44.871655 ], [ 1.416778, 44.8709 ], [ 1.431431, 44.87177 ], [ 1.439858, 44.875245 ], [ 1.442178, 44.87835 ], [ 1.442508, 44.881063 ], [ 1.439857, 44.888951 ], [ 1.435732, 44.889676 ], [ 1.421836, 44.89641 ], [ 1.419672, 44.899003 ], [ 1.418269, 44.907448 ], [ 1.410526, 44.908788 ], [ 1.423629, 44.918268 ], [ 1.441562, 44.918782 ], [ 1.4331, 44.937214 ], [ 1.433462, 44.946044 ], [ 1.428611, 44.946309 ], [ 1.41899, 44.95828 ], [ 1.419568, 44.968397 ], [ 1.414261, 44.97391 ], [ 1.414987, 44.993566 ], [ 1.40913, 45.00673 ], [ 1.433023, 45.01077 ], [ 1.448262, 45.019313 ], [ 1.460357, 45.01397 ], [ 1.477292, 45.020092 ], [ 1.477131, 45.02692 ], [ 1.47993, 45.026756 ], [ 1.5058, 45.039498 ], [ 1.522661, 45.042659 ], [ 1.526759, 45.04428 ], [ 1.540315, 45.04467 ], [ 1.543942, 45.03125 ], [ 1.55204, 45.02847 ], [ 1.57097, 45.03956 ], [ 1.603883, 45.03535 ], [ 1.608069, 45.03353 ], [ 1.608959, 45.02889 ], [ 1.60956, 45.032305 ], [ 1.627746, 45.03332 ], [ 1.63238, 45.03233 ], [ 1.64737, 45.025837 ], [ 1.651891, 45.025288 ], [ 1.653199, 45.018955 ], [ 1.671411, 45.004307 ], [ 1.680078, 45.003329 ], [ 1.684371, 45.00266 ], [ 1.689269, 44.994604 ], [ 1.692273, 44.992577 ], [ 1.700373, 44.98916 ], [ 1.703377, 44.98657 ], [ 1.707508, 44.972512 ], [ 1.708767, 44.96964 ], [ 1.71088, 44.96709 ], [ 1.712968, 44.967326 ], [ 1.726256, 44.967011 ], [ 1.736182, 44.96053 ], [ 1.740734, 44.96058 ], [ 1.748795, 44.95683 ], [ 1.755329, 44.944135 ], [ 1.753982, 44.940851 ], [ 1.750554, 44.93879 ], [ 1.76701, 44.933045 ], [ 1.771447, 44.92727 ], [ 1.774029, 44.92453 ], [ 1.774608, 44.92354 ], [ 1.777453, 44.926209 ], [ 1.784546, 44.93052 ], [ 1.785701, 44.936906 ], [ 1.788603, 44.934606 ], [ 1.801468, 44.92641 ], [ 1.800167, 44.92029 ], [ 1.800798, 44.92038 ], [ 1.810042, 44.92795 ], [ 1.819741, 44.92722 ], [ 1.827628, 44.93073 ], [ 1.829361, 44.933962 ], [ 1.831572, 44.94342 ], [ 1.83589, 44.944323 ], [ 1.838527, 44.93818 ], [ 1.842772, 44.937083 ], [ 1.848412, 44.943958 ], [ 1.851053, 44.94625 ], [ 1.887091, 44.95634 ], [ 1.888368, 44.96292 ], [ 1.907779, 44.978243 ], [ 1.927179, 44.978801 ], [ 1.936522, 44.973164 ], [ 1.94015, 44.97184 ], [ 1.941333, 44.958208 ], [ 1.946191, 44.95348 ], [ 1.95099, 44.953158 ], [ 1.9566, 44.95901 ], [ 1.984336, 44.973719 ], [ 2.008268, 44.976231 ], [ 2.040848, 44.98198 ], [ 2.045121, 44.98367 ], [ 2.058581, 44.97541 ], [ 2.062914, 44.976506 ], [ 2.079176, 44.954969 ], [ 2.080703, 44.95158 ], [ 2.076351, 44.934785 ], [ 2.102335, 44.919916 ], [ 2.105115, 44.91332 ], [ 2.10811, 44.910598 ], [ 2.085432, 44.898772 ], [ 2.084512, 44.888373 ], [ 2.09351, 44.87237 ], [ 2.097414, 44.87057 ], [ 2.117213, 44.848255 ], [ 2.127146, 44.84358 ], [ 2.127673, 44.840631 ], [ 2.136778, 44.826242 ], [ 2.139801, 44.823825 ], [ 2.144397, 44.823528 ], [ 2.16629, 44.81207 ], [ 2.166053, 44.79902 ], [ 2.169115, 44.792941 ], [ 2.171633, 44.790258 ], [ 2.169882, 44.784663 ], [ 2.168506, 44.781934 ], [ 2.164663, 44.77259 ], [ 2.155249, 44.77155 ], [ 2.150975, 44.770024 ], [ 2.149147, 44.7697 ], [ 2.148908, 44.76629 ], [ 2.153492, 44.75311 ], [ 2.154692, 44.74974 ], [ 2.148087, 44.72285 ], [ 2.133279, 44.709356 ], [ 2.130064, 44.6993 ], [ 2.132873, 44.697189 ], [ 2.138291, 44.69288 ], [ 2.142949, 44.6937 ], [ 2.154666, 44.699366 ], [ 2.158546, 44.697352 ], [ 2.179152, 44.674449 ], [ 2.176251, 44.67183 ], [ 2.16601, 44.66129 ], [ 2.169023, 44.65883 ], [ 2.173735, 44.653251 ], [ 2.169541, 44.6477 ], [ 2.169419, 44.63798 ], [ 2.172326, 44.63578 ], [ 2.176555, 44.63547 ], [ 2.204864, 44.618394 ], [ 2.207475, 44.615532 ], [ 2.209251, 44.605731 ], [ 2.197709, 44.600318 ], [ 2.198334, 44.593561 ], [ 2.193314, 44.587763 ], [ 2.185813, 44.59071 ], [ 2.169815, 44.59141 ], [ 2.169552, 44.59132 ], [ 2.166655, 44.5887 ], [ 2.152562, 44.571586 ], [ 2.14808, 44.570651 ], [ 2.13433, 44.57037 ], [ 2.126954, 44.578256 ], [ 2.11629, 44.573102 ], [ 2.104023, 44.571473 ], [ 2.098323, 44.57582 ], [ 2.095353, 44.57801 ], [ 2.079834, 44.585022 ], [ 2.064612, 44.56775 ], [ 2.061247, 44.569389 ], [ 2.06364, 44.579268 ], [ 2.055083, 44.58027 ], [ 2.035452, 44.570211 ], [ 2.032878, 44.560204 ], [ 2.028857, 44.55823 ], [ 2.02803, 44.558001 ], [ 2.023677, 44.556333 ], [ 2.004211, 44.55696 ], [ 1.984239, 44.54726 ], [ 1.979555, 44.54102 ], [ 1.973838, 44.53561 ], [ 1.971753, 44.532553 ], [ 1.97072, 44.529176 ], [ 1.957918, 44.519044 ], [ 1.948186, 44.517304 ], [ 1.943408, 44.51711 ], [ 1.928272, 44.50508 ], [ 1.918913, 44.50437 ], [ 1.911268, 44.50287 ], [ 1.919767, 44.48867 ], [ 1.916454, 44.486324 ], [ 1.908117, 44.488196 ], [ 1.905072, 44.501274 ], [ 1.892546, 44.505578 ], [ 1.887907, 44.5048 ], [ 1.881928, 44.483945 ], [ 1.877448, 44.4841 ], [ 1.873307, 44.48432 ], [ 1.861576, 44.48732 ], [ 1.839964, 44.479604 ], [ 1.839533, 44.476098 ], [ 1.845965, 44.470817 ], [ 1.847655, 44.46751 ], [ 1.851868, 44.461246 ], [ 1.848247, 44.447676 ], [ 1.85067, 44.43731 ], [ 1.873186, 44.42414 ], [ 1.87332, 44.423691 ], [ 1.870881, 44.42065 ], [ 1.874271, 44.406866 ], [ 1.868875, 44.397213 ], [ 1.874402, 44.39144 ], [ 1.891429, 44.37913 ], [ 1.896363, 44.36943 ], [ 1.908239, 44.363419 ], [ 1.910045, 44.36019 ], [ 1.910827, 44.356738 ], [ 1.905909, 44.350856 ], [ 1.891626, 44.351766 ], [ 1.884697, 44.343009 ], [ 1.882083, 44.340074 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "48", "CODE_DEPT": "47", "NOM_DEPT": "LOT-ET-GARONNE", "CODE_CHF": "001", "NOM_CHF": "AGEN", "X_CHF_LIEU": "5097", "Y_CHF_LIEU": "63477", "X_CENTROID": "4976", "Y_CENTROID": "63664", "CODE_REG": "72", "NOM_REGION": "AQUITAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.741635, 44.0652 ], [ 0.738933, 44.062491 ], [ 0.717115, 44.05759 ], [ 0.707923, 44.05829 ], [ 0.704967, 44.055725 ], [ 0.694547, 44.045124 ], [ 0.682755, 44.04224 ], [ 0.679586, 44.029348 ], [ 0.676267, 44.026883 ], [ 0.662534, 44.024582 ], [ 0.65417, 44.032849 ], [ 0.652847, 44.042833 ], [ 0.632705, 44.04963 ], [ 0.631509, 44.052863 ], [ 0.622547, 44.064176 ], [ 0.599327, 44.07495 ], [ 0.601222, 44.07801 ], [ 0.584703, 44.07726 ], [ 0.576884, 44.07345 ], [ 0.567315, 44.061234 ], [ 0.55874, 44.05822 ], [ 0.54609, 44.05623 ], [ 0.538427, 44.052952 ], [ 0.535071, 44.055209 ], [ 0.522484, 44.056951 ], [ 0.51158, 44.06274 ], [ 0.504717, 44.050667 ], [ 0.503819, 44.05377 ], [ 0.497471, 44.05758 ], [ 0.488817, 44.056463 ], [ 0.485697, 44.058687 ], [ 0.485403, 44.055439 ], [ 0.459759, 44.055378 ], [ 0.45866, 44.052579 ], [ 0.450621, 44.046404 ], [ 0.450312, 44.04438 ], [ 0.447452, 44.041621 ], [ 0.44245, 44.02876 ], [ 0.437588, 44.02919 ], [ 0.418874, 44.02821 ], [ 0.412024, 44.023499 ], [ 0.397883, 44.02188 ], [ 0.382444, 44.008342 ], [ 0.372908, 44.008429 ], [ 0.35707, 44.01553 ], [ 0.32475, 44.00785 ], [ 0.31548, 44.00997 ], [ 0.31486, 44.00671 ], [ 0.318026, 43.997245 ], [ 0.305493, 43.993992 ], [ 0.302772, 43.991395 ], [ 0.28235, 43.998 ], [ 0.273552, 43.998054 ], [ 0.27114, 44.00102 ], [ 0.259824, 44.005699 ], [ 0.250636, 44.004261 ], [ 0.232995, 44.00939 ], [ 0.232775, 44.02239 ], [ 0.229143, 44.02136 ], [ 0.218721, 44.02113 ], [ 0.214734, 44.02279 ], [ 0.201762, 44.014234 ], [ 0.193466, 44.01369 ], [ 0.189807, 44.015008 ], [ 0.18114, 44.002528 ], [ 0.165747, 43.99445 ], [ 0.164053, 43.977096 ], [ 0.161035, 43.97435 ], [ 0.156784, 43.972809 ], [ 0.138625, 43.97659 ], [ 0.141, 43.993642 ], [ 0.126847, 44.001926 ], [ 0.127415, 43.998581 ], [ 0.107388, 43.985382 ], [ 0.093313, 43.98574 ], [ 0.080372, 43.98172 ], [ 0.076046, 43.98314 ], [ 0.062955, 44.001183 ], [ 0.061182, 44.014743 ], [ 0.062234, 44.018077 ], [ 0.061593, 44.02154 ], [ 0.060223, 44.02488 ], [ 0.0698, 44.02578 ], [ 0.076223, 44.030736 ], [ 0.087468, 44.063972 ], [ 0.094951, 44.06836 ], [ 0.102105, 44.08339 ], [ 0.100821, 44.08677 ], [ 0.124151, 44.10502 ], [ 0.136803, 44.11043 ], [ 0.135858, 44.113559 ], [ 0.131824, 44.11919 ], [ 0.135797, 44.124194 ], [ 0.130969, 44.124482 ], [ 0.034594, 44.130652 ], [ 0.032018, 44.13352 ], [ -0.003539, 44.1499 ], [ -0.00379, 44.149918 ], [ -0.055166, 44.1508 ], [ -0.059859, 44.150826 ], [ -0.064434, 44.151914 ], [ -0.08775, 44.155989 ], [ -0.106561, 44.154944 ], [ -0.114737, 44.15141 ], [ -0.129155, 44.15241 ], [ -0.129202, 44.156 ], [ -0.129643, 44.20261 ], [ -0.140689, 44.22641 ], [ -0.136872, 44.228289 ], [ -0.125932, 44.23437 ], [ -0.123182, 44.240651 ], [ -0.119197, 44.238809 ], [ -0.11373, 44.233713 ], [ -0.104834, 44.231884 ], [ -0.08848, 44.238471 ], [ -0.073116, 44.251387 ], [ -0.066808, 44.246663 ], [ -0.064197, 44.249132 ], [ -0.053362, 44.265774 ], [ -0.049627, 44.267886 ], [ -0.033608, 44.27401 ], [ -0.042888, 44.293206 ], [ -0.034811, 44.29673 ], [ -0.03762, 44.299513 ], [ -0.057226, 44.31908 ], [ -0.077776, 44.332654 ], [ -0.080414, 44.334319 ], [ -0.085752, 44.33761 ], [ -0.080176, 44.350477 ], [ -0.078819, 44.35369 ], [ -0.069523, 44.35313 ], [ -0.059259, 44.35998 ], [ -0.040758, 44.360123 ], [ -0.036189, 44.36084 ], [ -0.032446, 44.360821 ], [ -0.028821, 44.36019 ], [ -0.011159, 44.37138 ], [ -0.001647, 44.37223 ], [ 0.009942, 44.367052 ], [ 0.014725, 44.366615 ], [ 0.021233, 44.375385 ], [ 0.010834, 44.38133 ], [ 0.016519, 44.386175 ], [ 0.018292, 44.38925 ], [ 0.015794, 44.3916 ], [ 0.006621, 44.397338 ], [ -0.011765, 44.420303 ], [ -0.005018, 44.424379 ], [ -0.007568, 44.433813 ], [ -0.002954, 44.442578 ], [ 0.004788, 44.44501 ], [ 0.007509, 44.44754 ], [ 0.004494, 44.456735 ], [ -0.002912, 44.460254 ], [ -0.007298, 44.459224 ], [ -0.013816, 44.46682 ], [ -0.016043, 44.489705 ], [ -0.01614, 44.501657 ], [ -0.015565, 44.504789 ], [ -0.004197, 44.51732 ], [ -0.00018, 44.518254 ], [ 0.001465, 44.520722 ], [ 0.00482, 44.522038 ], [ 0.009506, 44.521994 ], [ 0.017923, 44.53001 ], [ -0.00109, 44.548408 ], [ -0.001017, 44.55177 ], [ 0.016807, 44.54255 ], [ 0.020984, 44.54146 ], [ 0.029028, 44.548493 ], [ 0.032713, 44.55052 ], [ 0.03787, 44.554037 ], [ 0.064973, 44.55035 ], [ 0.068687, 44.54822 ], [ 0.072357, 44.550318 ], [ 0.074869, 44.560195 ], [ 0.082973, 44.567949 ], [ 0.085548, 44.57763 ], [ 0.082236, 44.58391 ], [ 0.105528, 44.58912 ], [ 0.110282, 44.59008 ], [ 0.113766, 44.59173 ], [ 0.11663, 44.593895 ], [ 0.117433, 44.59422 ], [ 0.133128, 44.606162 ], [ 0.146241, 44.608429 ], [ 0.150858, 44.608647 ], [ 0.154363, 44.614908 ], [ 0.139263, 44.627148 ], [ 0.13842, 44.63903 ], [ 0.141194, 44.641315 ], [ 0.146378, 44.635359 ], [ 0.160289, 44.632717 ], [ 0.165214, 44.632862 ], [ 0.168345, 44.64613 ], [ 0.173909, 44.651696 ], [ 0.17697, 44.65432 ], [ 0.181612, 44.65866 ], [ 0.183025, 44.661189 ], [ 0.180463, 44.664214 ], [ 0.167618, 44.668372 ], [ 0.163123, 44.67041 ], [ 0.159392, 44.66854 ], [ 0.142061, 44.66576 ], [ 0.133519, 44.667908 ], [ 0.130842, 44.673622 ], [ 0.133947, 44.679351 ], [ 0.134422, 44.682417 ], [ 0.129759, 44.683233 ], [ 0.115539, 44.68227 ], [ 0.107043, 44.68542 ], [ 0.100345, 44.70098 ], [ 0.105026, 44.701823 ], [ 0.11051, 44.71064 ], [ 0.119915, 44.71202 ], [ 0.128047, 44.70839 ], [ 0.130843, 44.70558 ], [ 0.136039, 44.71121 ], [ 0.139344, 44.72771 ], [ 0.141197, 44.73751 ], [ 0.15262, 44.73082 ], [ 0.161358, 44.73348 ], [ 0.164495, 44.73569 ], [ 0.172701, 44.73461 ], [ 0.178386, 44.742716 ], [ 0.180434, 44.745498 ], [ 0.184529, 44.74903 ], [ 0.18941, 44.74877 ], [ 0.193916, 44.74257 ], [ 0.200062, 44.72576 ], [ 0.201542, 44.72243 ], [ 0.218632, 44.72663 ], [ 0.211863, 44.739564 ], [ 0.218306, 44.75623 ], [ 0.224972, 44.76104 ], [ 0.226601, 44.764158 ], [ 0.235944, 44.76419 ], [ 0.249122, 44.751225 ], [ 0.267506, 44.751698 ], [ 0.271682, 44.75319 ], [ 0.296565, 44.75916 ], [ 0.297325, 44.76229 ], [ 0.303376, 44.75898 ], [ 0.307009, 44.758097 ], [ 0.336793, 44.735477 ], [ 0.341042, 44.725526 ], [ 0.34502, 44.72342 ], [ 0.347345, 44.720489 ], [ 0.347871, 44.710395 ], [ 0.343484, 44.709136 ], [ 0.341479, 44.70237 ], [ 0.356731, 44.694158 ], [ 0.359541, 44.69132 ], [ 0.350448, 44.674965 ], [ 0.349598, 44.660847 ], [ 0.351812, 44.65562 ], [ 0.355528, 44.65496 ], [ 0.36662, 44.6612 ], [ 0.37674, 44.65393 ], [ 0.39101, 44.654527 ], [ 0.416954, 44.64521 ], [ 0.429293, 44.65074 ], [ 0.447578, 44.654082 ], [ 0.451989, 44.655588 ], [ 0.467953, 44.666809 ], [ 0.47053, 44.66958 ], [ 0.488043, 44.666907 ], [ 0.495626, 44.669808 ], [ 0.516743, 44.67811 ], [ 0.521659, 44.67858 ], [ 0.530741, 44.67673 ], [ 0.534406, 44.67461 ], [ 0.538778, 44.66844 ], [ 0.546558, 44.66515 ], [ 0.562454, 44.6723 ], [ 0.567171, 44.671513 ], [ 0.576468, 44.693063 ], [ 0.58749, 44.698699 ], [ 0.591392, 44.696938 ], [ 0.616758, 44.69343 ], [ 0.620018, 44.691297 ], [ 0.623614, 44.69315 ], [ 0.621799, 44.699352 ], [ 0.627378, 44.704218 ], [ 0.63036, 44.70657 ], [ 0.644297, 44.70432 ], [ 0.65546, 44.693432 ], [ 0.655629, 44.68998 ], [ 0.657142, 44.68701 ], [ 0.657434, 44.67786 ], [ 0.680587, 44.67628 ], [ 0.685312, 44.675561 ], [ 0.692439, 44.676619 ], [ 0.696058, 44.67701 ], [ 0.724522, 44.677041 ], [ 0.729134, 44.67599 ], [ 0.746133, 44.68175 ], [ 0.760052, 44.680305 ], [ 0.763141, 44.689924 ], [ 0.783217, 44.684113 ], [ 0.787299, 44.68529 ], [ 0.788386, 44.695241 ], [ 0.79947, 44.700775 ], [ 0.817888, 44.696709 ], [ 0.82861, 44.68977 ], [ 0.831074, 44.68317 ], [ 0.829354, 44.68062 ], [ 0.825838, 44.6759 ], [ 0.83544, 44.670422 ], [ 0.848411, 44.67017 ], [ 0.852444, 44.668979 ], [ 0.84865, 44.667221 ], [ 0.84337, 44.66272 ], [ 0.843061, 44.656287 ], [ 0.835063, 44.653294 ], [ 0.835656, 44.636879 ], [ 0.817004, 44.62701 ], [ 0.825021, 44.62122 ], [ 0.826465, 44.61516 ], [ 0.82929, 44.612852 ], [ 0.837936, 44.614922 ], [ 0.835146, 44.6022 ], [ 0.853389, 44.59948 ], [ 0.857727, 44.598106 ], [ 0.865974, 44.598013 ], [ 0.869996, 44.59732 ], [ 0.876301, 44.613963 ], [ 0.895557, 44.61593 ], [ 0.907453, 44.62186 ], [ 0.911162, 44.62317 ], [ 0.914685, 44.624745 ], [ 0.926654, 44.635 ], [ 0.939393, 44.63981 ], [ 0.944179, 44.640355 ], [ 0.966655, 44.636195 ], [ 0.977296, 44.642992 ], [ 0.995923, 44.632821 ], [ 0.997505, 44.62949 ], [ 1.012502, 44.61583 ], [ 1.029019, 44.60966 ], [ 1.033401, 44.608369 ], [ 1.046781, 44.604959 ], [ 1.056876, 44.59771 ], [ 1.071021, 44.596119 ], [ 1.077766, 44.583845 ], [ 1.075141, 44.57732 ], [ 1.073639, 44.57408 ], [ 1.06723, 44.565525 ], [ 1.053195, 44.56377 ], [ 1.042312, 44.55793 ], [ 1.040809, 44.557693 ], [ 1.036748, 44.55605 ], [ 1.013166, 44.53614 ], [ 1.011873, 44.539265 ], [ 1.006567, 44.54762 ], [ 0.993167, 44.549408 ], [ 0.98152, 44.544441 ], [ 0.98846, 44.53943 ], [ 0.989453, 44.5324 ], [ 0.999969, 44.5252 ], [ 1.016272, 44.50364 ], [ 1.014987, 44.489721 ], [ 1.009025, 44.48005 ], [ 1.012236, 44.47851 ], [ 1.023009, 44.47544 ], [ 1.022472, 44.4721 ], [ 1.025025, 44.465633 ], [ 1.02099, 44.45624 ], [ 1.021679, 44.4466 ], [ 1.031241, 44.43951 ], [ 1.031175, 44.433092 ], [ 1.045005, 44.43401 ], [ 1.047182, 44.43103 ], [ 1.051011, 44.43041 ], [ 1.057488, 44.427679 ], [ 1.06145, 44.41474 ], [ 1.059949, 44.405022 ], [ 1.061688, 44.401928 ], [ 1.058599, 44.3997 ], [ 1.051168, 44.392269 ], [ 1.059579, 44.3909 ], [ 1.064084, 44.37851 ], [ 1.060473, 44.36626 ], [ 1.04722, 44.36257 ], [ 1.024678, 44.366855 ], [ 1.022266, 44.36406 ], [ 1.004384, 44.3657 ], [ 0.996705, 44.36915 ], [ 0.993497, 44.36652 ], [ 0.978586, 44.358049 ], [ 0.969794, 44.36102 ], [ 0.950506, 44.359519 ], [ 0.944146, 44.35426 ], [ 0.942382, 44.34442 ], [ 0.941254, 44.344399 ], [ 0.940563, 44.34785 ], [ 0.937285, 44.36861 ], [ 0.923647, 44.37801 ], [ 0.919845, 44.38442 ], [ 0.915224, 44.384097 ], [ 0.910846, 44.38296 ], [ 0.906666, 44.382224 ], [ 0.895341, 44.37918 ], [ 0.893959, 44.37312 ], [ 0.891334, 44.37046 ], [ 0.88732, 44.364646 ], [ 0.893363, 44.35607 ], [ 0.892011, 44.349914 ], [ 0.896113, 44.346228 ], [ 0.894805, 44.343286 ], [ 0.883328, 44.328379 ], [ 0.879503, 44.327342 ], [ 0.873272, 44.323574 ], [ 0.874884, 44.32072 ], [ 0.869445, 44.309255 ], [ 0.8838, 44.30769 ], [ 0.891142, 44.298742 ], [ 0.895067, 44.296701 ], [ 0.912026, 44.300914 ], [ 0.91643, 44.302204 ], [ 0.921475, 44.294196 ], [ 0.923515, 44.29157 ], [ 0.946024, 44.27511 ], [ 0.950788, 44.275072 ], [ 0.948841, 44.27207 ], [ 0.940855, 44.26422 ], [ 0.927782, 44.26741 ], [ 0.932795, 44.251252 ], [ 0.91909, 44.23827 ], [ 0.92851, 44.233064 ], [ 0.929239, 44.23025 ], [ 0.903111, 44.19005 ], [ 0.898525, 44.190904 ], [ 0.860992, 44.192979 ], [ 0.859687, 44.19274 ], [ 0.857793, 44.189864 ], [ 0.853675, 44.18425 ], [ 0.853632, 44.174782 ], [ 0.863912, 44.173569 ], [ 0.870138, 44.169 ], [ 0.882074, 44.17363 ], [ 0.890008, 44.17022 ], [ 0.889794, 44.16688 ], [ 0.888106, 44.163836 ], [ 0.888351, 44.14881 ], [ 0.894084, 44.14023 ], [ 0.892066, 44.13733 ], [ 0.883987, 44.140094 ], [ 0.880236, 44.131711 ], [ 0.869092, 44.126516 ], [ 0.857814, 44.127575 ], [ 0.855079, 44.13049 ], [ 0.820491, 44.14314 ], [ 0.796556, 44.14512 ], [ 0.787733, 44.14276 ], [ 0.795082, 44.133498 ], [ 0.797565, 44.130387 ], [ 0.793165, 44.118458 ], [ 0.798588, 44.110104 ], [ 0.795242, 44.11227 ], [ 0.78192, 44.112919 ], [ 0.775041, 44.11688 ], [ 0.773071, 44.113883 ], [ 0.754273, 44.10475 ], [ 0.748003, 44.093292 ], [ 0.747761, 44.08648 ], [ 0.739874, 44.0781 ], [ 0.737992, 44.071404 ], [ 0.741635, 44.0652 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "49", "CODE_DEPT": "48", "NOM_DEPT": "LOZERE", "CODE_CHF": "095", "NOM_CHF": "MENDE", "X_CHF_LIEU": "7397", "Y_CHF_LIEU": "63800", "X_CENTROID": "7397", "Y_CENTROID": "63799", "CODE_REG": "91", "NOM_REGION": "LANGUEDOC-ROUSSILLON" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.998163, 44.4598 ], [ 3.97596, 44.44281 ], [ 3.97269, 44.436798 ], [ 3.973044, 44.426721 ], [ 3.971719, 44.426382 ], [ 3.961269, 44.414662 ], [ 3.949196, 44.409249 ], [ 3.948916, 44.402319 ], [ 3.91645, 44.405052 ], [ 3.908506, 44.40305 ], [ 3.901542, 44.395533 ], [ 3.900416, 44.392617 ], [ 3.898558, 44.39026 ], [ 3.888695, 44.392964 ], [ 3.885817, 44.387973 ], [ 3.889107, 44.385606 ], [ 3.911307, 44.37033 ], [ 3.925013, 44.352713 ], [ 3.925008, 44.34629 ], [ 3.937635, 44.33606 ], [ 3.947017, 44.335359 ], [ 3.952361, 44.330154 ], [ 3.948819, 44.32385 ], [ 3.948083, 44.32706 ], [ 3.943704, 44.317887 ], [ 3.922859, 44.305227 ], [ 3.924943, 44.300825 ], [ 3.932937, 44.29677 ], [ 3.939236, 44.287345 ], [ 3.94003, 44.283873 ], [ 3.934303, 44.27545 ], [ 3.946764, 44.266892 ], [ 3.949688, 44.26943 ], [ 3.958546, 44.270975 ], [ 3.969227, 44.264778 ], [ 3.974753, 44.25972 ], [ 3.971123, 44.250395 ], [ 3.966919, 44.249865 ], [ 3.954741, 44.24958 ], [ 3.946433, 44.24101 ], [ 3.950924, 44.21687 ], [ 3.947255, 44.215983 ], [ 3.946248, 44.212661 ], [ 3.938574, 44.19664 ], [ 3.959222, 44.19088 ], [ 3.958795, 44.18412 ], [ 3.96595, 44.171613 ], [ 3.969842, 44.172461 ], [ 3.975587, 44.169809 ], [ 3.974117, 44.16433 ], [ 3.969452, 44.165047 ], [ 3.932865, 44.1804 ], [ 3.923699, 44.18135 ], [ 3.927275, 44.1613 ], [ 3.911601, 44.16012 ], [ 3.910617, 44.150258 ], [ 3.907391, 44.14785 ], [ 3.898477, 44.148621 ], [ 3.894317, 44.14717 ], [ 3.872731, 44.12867 ], [ 3.832118, 44.13733 ], [ 3.828468, 44.136436 ], [ 3.820249, 44.13245 ], [ 3.816677, 44.131754 ], [ 3.810833, 44.128557 ], [ 3.796995, 44.127389 ], [ 3.777238, 44.1402 ], [ 3.773033, 44.141602 ], [ 3.768909, 44.14262 ], [ 3.762209, 44.14539 ], [ 3.759624, 44.15119 ], [ 3.755264, 44.15141 ], [ 3.750848, 44.15214 ], [ 3.73505, 44.15731 ], [ 3.725624, 44.164249 ], [ 3.721091, 44.164729 ], [ 3.707658, 44.164465 ], [ 3.692424, 44.171376 ], [ 3.684404, 44.179411 ], [ 3.685032, 44.182683 ], [ 3.680307, 44.18295 ], [ 3.671053, 44.1842 ], [ 3.667963, 44.177784 ], [ 3.659917, 44.17429 ], [ 3.649649, 44.180846 ], [ 3.644962, 44.179992 ], [ 3.637706, 44.175434 ], [ 3.630543, 44.15887 ], [ 3.632924, 44.152573 ], [ 3.645569, 44.147539 ], [ 3.647169, 44.14429 ], [ 3.63585, 44.138127 ], [ 3.632838, 44.12122 ], [ 3.606167, 44.115901 ], [ 3.574615, 44.121508 ], [ 3.569987, 44.122324 ], [ 3.565196, 44.123051 ], [ 3.544309, 44.11437 ], [ 3.533113, 44.12086 ], [ 3.509926, 44.12538 ], [ 3.50516, 44.1262 ], [ 3.481027, 44.12425 ], [ 3.443052, 44.12885 ], [ 3.438628, 44.130372 ], [ 3.435184, 44.132762 ], [ 3.428468, 44.148665 ], [ 3.396939, 44.162699 ], [ 3.392517, 44.16869 ], [ 3.373648, 44.170765 ], [ 3.372075, 44.180725 ], [ 3.358391, 44.19447 ], [ 3.360423, 44.201169 ], [ 3.355603, 44.20084 ], [ 3.332084, 44.203509 ], [ 3.318327, 44.20039 ], [ 3.301043, 44.206461 ], [ 3.291616, 44.205676 ], [ 3.287881, 44.19952 ], [ 3.264363, 44.200308 ], [ 3.243235, 44.19257 ], [ 3.239261, 44.19066 ], [ 3.230589, 44.189863 ], [ 3.226313, 44.190592 ], [ 3.203593, 44.193462 ], [ 3.212071, 44.19578 ], [ 3.215799, 44.2021 ], [ 3.219211, 44.204503 ], [ 3.221213, 44.207713 ], [ 3.23054, 44.23034 ], [ 3.195687, 44.24066 ], [ 3.187826, 44.24891 ], [ 3.174415, 44.24526 ], [ 3.160532, 44.24628 ], [ 3.154268, 44.27304 ], [ 3.14617, 44.276031 ], [ 3.14016, 44.26704 ], [ 3.138298, 44.26397 ], [ 3.133898, 44.262382 ], [ 3.124527, 44.26147 ], [ 3.125306, 44.28542 ], [ 3.154266, 44.309225 ], [ 3.146076, 44.31713 ], [ 3.150937, 44.329933 ], [ 3.134194, 44.334528 ], [ 3.128198, 44.3509 ], [ 3.131976, 44.357178 ], [ 3.123591, 44.360771 ], [ 3.120492, 44.366814 ], [ 3.122494, 44.370017 ], [ 3.123395, 44.38021 ], [ 3.119743, 44.386331 ], [ 3.137053, 44.391621 ], [ 3.137244, 44.408266 ], [ 3.130371, 44.412037 ], [ 3.126721, 44.41396 ], [ 3.129938, 44.420337 ], [ 3.141045, 44.426796 ], [ 3.142256, 44.433734 ], [ 3.135077, 44.442016 ], [ 3.136367, 44.44539 ], [ 3.136186, 44.44879 ], [ 3.135486, 44.455519 ], [ 3.124866, 44.4613 ], [ 3.117325, 44.47379 ], [ 3.103506, 44.479535 ], [ 3.09956, 44.48043 ], [ 3.068932, 44.502706 ], [ 3.075465, 44.51598 ], [ 3.076238, 44.519464 ], [ 3.07491, 44.533292 ], [ 3.08347, 44.56032 ], [ 3.079021, 44.566472 ], [ 3.076607, 44.5695 ], [ 3.076196, 44.57255 ], [ 3.061845, 44.579 ], [ 3.059631, 44.58163 ], [ 3.055354, 44.58707 ], [ 3.041086, 44.594202 ], [ 3.037131, 44.59554 ], [ 3.031891, 44.598463 ], [ 3.030708, 44.600741 ], [ 3.018388, 44.61126 ], [ 3.013273, 44.620847 ], [ 2.987819, 44.64119 ], [ 2.985448, 44.64421 ], [ 2.981677, 44.644686 ], [ 2.985621, 44.658235 ], [ 2.999722, 44.67654 ], [ 3.001628, 44.686838 ], [ 3.016022, 44.712531 ], [ 3.034293, 44.71554 ], [ 3.039129, 44.715001 ], [ 3.034894, 44.727048 ], [ 3.027305, 44.73022 ], [ 3.028747, 44.73319 ], [ 3.031345, 44.74964 ], [ 3.037832, 44.75809 ], [ 3.042243, 44.75938 ], [ 3.048237, 44.76432 ], [ 3.044048, 44.773528 ], [ 3.049475, 44.77862 ], [ 3.049971, 44.78188 ], [ 3.048705, 44.79461 ], [ 3.046242, 44.79729 ], [ 3.047916, 44.803903 ], [ 3.064034, 44.820236 ], [ 3.072702, 44.822751 ], [ 3.07698, 44.82428 ], [ 3.072175, 44.836266 ], [ 3.089341, 44.832787 ], [ 3.093846, 44.83312 ], [ 3.096528, 44.83334 ], [ 3.099159, 44.83291 ], [ 3.097681, 44.841558 ], [ 3.100179, 44.843924 ], [ 3.094845, 44.85548 ], [ 3.103188, 44.863215 ], [ 3.104979, 44.86626 ], [ 3.103126, 44.88463 ], [ 3.119516, 44.89154 ], [ 3.128384, 44.903578 ], [ 3.142848, 44.902282 ], [ 3.147951, 44.89634 ], [ 3.151478, 44.893933 ], [ 3.157551, 44.886641 ], [ 3.16028, 44.88447 ], [ 3.164673, 44.875178 ], [ 3.179882, 44.86781 ], [ 3.181619, 44.86469 ], [ 3.190271, 44.862524 ], [ 3.195963, 44.872084 ], [ 3.214815, 44.875003 ], [ 3.225669, 44.882094 ], [ 3.234928, 44.888584 ], [ 3.227769, 44.89707 ], [ 3.228278, 44.90695 ], [ 3.226428, 44.90998 ], [ 3.231158, 44.911119 ], [ 3.249693, 44.916238 ], [ 3.244565, 44.931717 ], [ 3.250201, 44.93658 ], [ 3.248414, 44.939506 ], [ 3.252172, 44.94078 ], [ 3.256169, 44.9416 ], [ 3.265703, 44.941663 ], [ 3.262554, 44.93524 ], [ 3.267129, 44.92959 ], [ 3.285389, 44.926254 ], [ 3.300883, 44.939367 ], [ 3.314336, 44.93979 ], [ 3.31825, 44.94601 ], [ 3.334081, 44.95385 ], [ 3.337948, 44.95591 ], [ 3.35037, 44.95503 ], [ 3.354528, 44.95482 ], [ 3.355222, 44.958259 ], [ 3.361343, 44.97141 ], [ 3.368997, 44.97418 ], [ 3.372711, 44.975723 ], [ 3.371664, 44.968929 ], [ 3.377783, 44.95659 ], [ 3.390906, 44.95277 ], [ 3.403222, 44.95686 ], [ 3.410817, 44.948001 ], [ 3.412835, 44.944843 ], [ 3.415119, 44.9263 ], [ 3.41038, 44.91779 ], [ 3.413026, 44.91567 ], [ 3.419257, 44.908435 ], [ 3.417812, 44.90504 ], [ 3.421511, 44.89482 ], [ 3.435711, 44.880244 ], [ 3.436572, 44.87699 ], [ 3.4418, 44.85423 ], [ 3.445198, 44.851764 ], [ 3.457593, 44.841324 ], [ 3.45617, 44.831228 ], [ 3.47001, 44.82194 ], [ 3.478242, 44.80968 ], [ 3.486967, 44.80647 ], [ 3.490994, 44.808481 ], [ 3.493094, 44.811514 ], [ 3.507375, 44.82423 ], [ 3.5122, 44.824816 ], [ 3.541089, 44.82805 ], [ 3.555337, 44.82567 ], [ 3.56877, 44.834183 ], [ 3.582453, 44.826117 ], [ 3.589724, 44.82939 ], [ 3.586884, 44.836052 ], [ 3.59783, 44.858709 ], [ 3.595024, 44.87579 ], [ 3.603369, 44.879379 ], [ 3.608282, 44.879334 ], [ 3.614235, 44.874817 ], [ 3.629866, 44.87983 ], [ 3.632535, 44.87731 ], [ 3.640654, 44.87857 ], [ 3.644297, 44.87713 ], [ 3.660137, 44.87051 ], [ 3.664392, 44.860969 ], [ 3.671245, 44.85703 ], [ 3.67364, 44.85412 ], [ 3.669728, 44.841282 ], [ 3.6616, 44.83776 ], [ 3.657417, 44.836124 ], [ 3.663663, 44.831414 ], [ 3.666365, 44.828778 ], [ 3.694679, 44.831675 ], [ 3.701809, 44.836267 ], [ 3.719429, 44.831796 ], [ 3.735968, 44.83672 ], [ 3.73538, 44.840119 ], [ 3.743866, 44.8378 ], [ 3.755779, 44.817536 ], [ 3.759833, 44.81606 ], [ 3.761687, 44.812876 ], [ 3.759954, 44.806334 ], [ 3.764135, 44.800381 ], [ 3.771952, 44.80232 ], [ 3.797349, 44.786488 ], [ 3.804675, 44.77364 ], [ 3.80699, 44.767583 ], [ 3.810631, 44.76588 ], [ 3.817335, 44.769812 ], [ 3.819372, 44.772561 ], [ 3.833253, 44.77528 ], [ 3.841852, 44.772132 ], [ 3.841072, 44.76562 ], [ 3.832974, 44.75725 ], [ 3.829915, 44.754638 ], [ 3.839419, 44.74712 ], [ 3.858308, 44.74553 ], [ 3.862527, 44.74387 ], [ 3.877097, 44.73599 ], [ 3.863763, 44.722326 ], [ 3.8631, 44.71202 ], [ 3.870008, 44.707206 ], [ 3.869246, 44.700396 ], [ 3.869648, 44.69696 ], [ 3.883529, 44.696718 ], [ 3.884563, 44.69344 ], [ 3.881767, 44.690573 ], [ 3.871647, 44.679336 ], [ 3.885373, 44.657457 ], [ 3.894778, 44.649963 ], [ 3.895766, 44.642293 ], [ 3.894403, 44.639018 ], [ 3.89414, 44.61529 ], [ 3.906662, 44.61096 ], [ 3.908084, 44.6077 ], [ 3.90533, 44.595462 ], [ 3.90654, 44.59237 ], [ 3.918466, 44.587368 ], [ 3.916821, 44.58071 ], [ 3.921627, 44.574962 ], [ 3.923567, 44.571885 ], [ 3.944441, 44.57366 ], [ 3.948774, 44.572887 ], [ 3.95849, 44.55689 ], [ 3.960906, 44.55381 ], [ 3.964955, 44.541002 ], [ 3.965692, 44.537682 ], [ 3.967657, 44.534856 ], [ 3.978998, 44.52176 ], [ 3.97579, 44.516742 ], [ 3.980284, 44.51542 ], [ 3.986789, 44.50243 ], [ 3.987125, 44.47487 ], [ 3.998163, 44.4598 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "50", "CODE_DEPT": "49", "NOM_DEPT": "MAINE-ET-LOIRE", "CODE_CHF": "007", "NOM_CHF": "ANGERS", "X_CHF_LIEU": "4322", "Y_CHF_LIEU": "67140", "X_CENTROID": "4312", "Y_CENTROID": "67050", "CODE_REG": "52", "NOM_REGION": "PAYS-DE-LA-LOIRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.102121, 47.064806 ], [ -0.10698, 47.06354 ], [ -0.128896, 47.054236 ], [ -0.133284, 47.055549 ], [ -0.138001, 47.064342 ], [ -0.149809, 47.06965 ], [ -0.158811, 47.068883 ], [ -0.165984, 47.064596 ], [ -0.17037, 47.066071 ], [ -0.174754, 47.06752 ], [ -0.178554, 47.069792 ], [ -0.166736, 47.08099 ], [ -0.140891, 47.09676 ], [ -0.141253, 47.10365 ], [ -0.146212, 47.1027 ], [ -0.15615, 47.101591 ], [ -0.18524, 47.10842 ], [ -0.186682, 47.10534 ], [ -0.190185, 47.099648 ], [ -0.206269, 47.093193 ], [ -0.209135, 47.09591 ], [ -0.24043, 47.10508 ], [ -0.258181, 47.10028 ], [ -0.262876, 47.10548 ], [ -0.266009, 47.10295 ], [ -0.29251, 47.10061 ], [ -0.312636, 47.09205 ], [ -0.317233, 47.09127 ], [ -0.340141, 47.08727 ], [ -0.342066, 47.090237 ], [ -0.354651, 47.09465 ], [ -0.359108, 47.093536 ], [ -0.363689, 47.09253 ], [ -0.381939, 47.088554 ], [ -0.387062, 47.09239 ], [ -0.391846, 47.09188 ], [ -0.40078, 47.07077 ], [ -0.408634, 47.066493 ], [ -0.426487, 47.07224 ], [ -0.445454, 47.067681 ], [ -0.460572, 47.06835 ], [ -0.480383, 47.053638 ], [ -0.483854, 47.066538 ], [ -0.464423, 47.07614 ], [ -0.463353, 47.08187 ], [ -0.467753, 47.08341 ], [ -0.491782, 47.08285 ], [ -0.51513, 47.077937 ], [ -0.519492, 47.076037 ], [ -0.559717, 47.061701 ], [ -0.556127, 47.05925 ], [ -0.556072, 47.045618 ], [ -0.543463, 47.03511 ], [ -0.547013, 47.02875 ], [ -0.561548, 47.029506 ], [ -0.566774, 47.019836 ], [ -0.580099, 47.014899 ], [ -0.587252, 47.00613 ], [ -0.59574, 47.000642 ], [ -0.595492, 46.99791 ], [ -0.600671, 46.997541 ], [ -0.620177, 46.99336 ], [ -0.625115, 46.99334 ], [ -0.632918, 46.99693 ], [ -0.646938, 46.99426 ], [ -0.673301, 47.001866 ], [ -0.680368, 46.99324 ], [ -0.680185, 46.987658 ], [ -0.684779, 46.987998 ], [ -0.689724, 46.992716 ], [ -0.698466, 46.99456 ], [ -0.702174, 46.992164 ], [ -0.714462, 46.98599 ], [ -0.7338, 46.99708 ], [ -0.751304, 46.99227 ], [ -0.761383, 46.99305 ], [ -0.772827, 47.00336 ], [ -0.78685, 47.005107 ], [ -0.789958, 47.00245 ], [ -0.808398, 46.991895 ], [ -0.805024, 46.98945 ], [ -0.809678, 46.98819 ], [ -0.816647, 46.99306 ], [ -0.821638, 46.992845 ], [ -0.834302, 46.987512 ], [ -0.84772, 46.98615 ], [ -0.855169, 46.977938 ], [ -0.854241, 46.971586 ], [ -0.858915, 46.97047 ], [ -0.882077, 46.976295 ], [ -0.891961, 46.975827 ], [ -0.893938, 46.97896 ], [ -0.901294, 46.99144 ], [ -0.914903, 46.99544 ], [ -0.934878, 47.00756 ], [ -0.93682, 47.004376 ], [ -0.959132, 46.99812 ], [ -0.977324, 47.014336 ], [ -0.986265, 47.012964 ], [ -1.002264, 47.02129 ], [ -1.005048, 47.01849 ], [ -1.01611, 47.003644 ], [ -1.020849, 47.004984 ], [ -1.05132, 47.005892 ], [ -1.064663, 47.01069 ], [ -1.074205, 47.00947 ], [ -1.083305, 47.01268 ], [ -1.087586, 47.01316 ], [ -1.09057, 47.01532 ], [ -1.095473, 47.014782 ], [ -1.127501, 47.021456 ], [ -1.131994, 47.02297 ], [ -1.148571, 47.029554 ], [ -1.143996, 47.030927 ], [ -1.11789, 47.04028 ], [ -1.120792, 47.053584 ], [ -1.115539, 47.062697 ], [ -1.120108, 47.06414 ], [ -1.148528, 47.069621 ], [ -1.161898, 47.07957 ], [ -1.167958, 47.09052 ], [ -1.170549, 47.09295 ], [ -1.175073, 47.093584 ], [ -1.179363, 47.09529 ], [ -1.228114, 47.099769 ], [ -1.240897, 47.094585 ], [ -1.249652, 47.09763 ], [ -1.246738, 47.10053 ], [ -1.232328, 47.109875 ], [ -1.226626, 47.118667 ], [ -1.23218, 47.12799 ], [ -1.230987, 47.1313 ], [ -1.235255, 47.132488 ], [ -1.23822, 47.134904 ], [ -1.218849, 47.144322 ], [ -1.209088, 47.14454 ], [ -1.191065, 47.15542 ], [ -1.188363, 47.158232 ], [ -1.172048, 47.16789 ], [ -1.169555, 47.170515 ], [ -1.167714, 47.17355 ], [ -1.161776, 47.18583 ], [ -1.165361, 47.188066 ], [ -1.176734, 47.192659 ], [ -1.174632, 47.19846 ], [ -1.180764, 47.20741 ], [ -1.175243, 47.21162 ], [ -1.174481, 47.214404 ], [ -1.177609, 47.216185 ], [ -1.188466, 47.220003 ], [ -1.188046, 47.22311 ], [ -1.181106, 47.2409 ], [ -1.185046, 47.242529 ], [ -1.195861, 47.252181 ], [ -1.204918, 47.25304 ], [ -1.209506, 47.25178 ], [ -1.213985, 47.245907 ], [ -1.231267, 47.239579 ], [ -1.235477, 47.241102 ], [ -1.254061, 47.25009 ], [ -1.255337, 47.25317 ], [ -1.276402, 47.2696 ], [ -1.27672, 47.288055 ], [ -1.28022, 47.2929 ], [ -1.282664, 47.2958 ], [ -1.294757, 47.301354 ], [ -1.3138, 47.302964 ], [ -1.319029, 47.30321 ], [ -1.339313, 47.300976 ], [ -1.354204, 47.30416 ], [ -1.337293, 47.317469 ], [ -1.322745, 47.32088 ], [ -1.310318, 47.33205 ], [ -1.306548, 47.33448 ], [ -1.287817, 47.34056 ], [ -1.282624, 47.340957 ], [ -1.256452, 47.34125 ], [ -1.236679, 47.345979 ], [ -1.232283, 47.34792 ], [ -1.228373, 47.349978 ], [ -1.205598, 47.348976 ], [ -1.187253, 47.35254 ], [ -1.183138, 47.3542 ], [ -1.170101, 47.364653 ], [ -1.144951, 47.367996 ], [ -1.11428, 47.367041 ], [ -1.111954, 47.36594 ], [ -1.106842, 47.36589 ], [ -1.101857, 47.36664 ], [ -1.07853, 47.3708 ], [ -1.063981, 47.37019 ], [ -1.036884, 47.36469 ], [ -1.032118, 47.365001 ], [ -1.012695, 47.36571 ], [ -0.990563, 47.37262 ], [ -0.981172, 47.37088 ], [ -0.976234, 47.371029 ], [ -0.969338, 47.3743 ], [ -0.966359, 47.376361 ], [ -0.962253, 47.37843 ], [ -0.957845, 47.3802 ], [ -0.949385, 47.38442 ], [ -0.945808, 47.38703 ], [ -0.935856, 47.38778 ], [ -0.927155, 47.39636 ], [ -0.923456, 47.39877 ], [ -0.925506, 47.40194 ], [ -0.943182, 47.41861 ], [ -0.948347, 47.42274 ], [ -0.947628, 47.42975 ], [ -0.952818, 47.43581 ], [ -0.954011, 47.45323 ], [ -0.967867, 47.46805 ], [ -0.962337, 47.47918 ], [ -0.958993, 47.48123 ], [ -0.96091, 47.48379 ], [ -0.96548, 47.4918 ], [ -0.970663, 47.492295 ], [ -1.011586, 47.489874 ], [ -1.025803, 47.500127 ], [ -1.044458, 47.505501 ], [ -1.049296, 47.50528 ], [ -1.072631, 47.501481 ], [ -1.077012, 47.50328 ], [ -1.107533, 47.50095 ], [ -1.142822, 47.505071 ], [ -1.146997, 47.50709 ], [ -1.156214, 47.51015 ], [ -1.168004, 47.529123 ], [ -1.154454, 47.538856 ], [ -1.154392, 47.542337 ], [ -1.178346, 47.54802 ], [ -1.173253, 47.569228 ], [ -1.172934, 47.57282 ], [ -1.123516, 47.56952 ], [ -1.104863, 47.56527 ], [ -1.099905, 47.565729 ], [ -1.060517, 47.56597 ], [ -1.055643, 47.56528 ], [ -1.042198, 47.56323 ], [ -1.037088, 47.57049 ], [ -1.032991, 47.571965 ], [ -1.020182, 47.57714 ], [ -1.008165, 47.58776 ], [ -1.009226, 47.59105 ], [ -1.021577, 47.59672 ], [ -1.025255, 47.59902 ], [ -1.030451, 47.59937 ], [ -1.075035, 47.60613 ], [ -1.103175, 47.62059 ], [ -1.123665, 47.61921 ], [ -1.137894, 47.618927 ], [ -1.137678, 47.62215 ], [ -1.154156, 47.633618 ], [ -1.157394, 47.63599 ], [ -1.157909, 47.639163 ], [ -1.156466, 47.64547 ], [ -1.162948, 47.66049 ], [ -1.172985, 47.66037 ], [ -1.181369, 47.66861 ], [ -1.175483, 47.681359 ], [ -1.177913, 47.68801 ], [ -1.17493, 47.69456 ], [ -1.180204, 47.69679 ], [ -1.19545, 47.71203 ], [ -1.195666, 47.72172 ], [ -1.215419, 47.71882 ], [ -1.234119, 47.72336 ], [ -1.254406, 47.73267 ], [ -1.255316, 47.739203 ], [ -1.255719, 47.742569 ], [ -1.241724, 47.74286 ], [ -1.236525, 47.75578 ], [ -1.247316, 47.763028 ], [ -1.245882, 47.776718 ], [ -1.237062, 47.799597 ], [ -1.240193, 47.802287 ], [ -1.238252, 47.80999 ], [ -1.215047, 47.80252 ], [ -1.209308, 47.796777 ], [ -1.199356, 47.795251 ], [ -1.193039, 47.786212 ], [ -1.177831, 47.784646 ], [ -1.165022, 47.778875 ], [ -1.140507, 47.77469 ], [ -1.137437, 47.77664 ], [ -1.139246, 47.7822 ], [ -1.13972, 47.78502 ], [ -1.09285, 47.7812 ], [ -1.080839, 47.7747 ], [ -1.075591, 47.77444 ], [ -1.075037, 47.77419 ], [ -1.047709, 47.773645 ], [ -1.043471, 47.77241 ], [ -1.033695, 47.77114 ], [ -1.020898, 47.77479 ], [ -1.015442, 47.76929 ], [ -1.006341, 47.76808 ], [ -0.999831, 47.76435 ], [ -0.990877, 47.76401 ], [ -0.986653, 47.762935 ], [ -0.982688, 47.76193 ], [ -0.978457, 47.762 ], [ -0.952266, 47.76999 ], [ -0.958546, 47.77912 ], [ -0.972097, 47.78315 ], [ -0.961986, 47.79352 ], [ -0.959761, 47.79633 ], [ -0.950554, 47.79553 ], [ -0.936498, 47.786855 ], [ -0.931138, 47.790325 ], [ -0.931935, 47.79351 ], [ -0.894399, 47.77125 ], [ -0.893041, 47.76786 ], [ -0.89317, 47.764506 ], [ -0.864606, 47.759136 ], [ -0.859867, 47.7581 ], [ -0.843281, 47.75364 ], [ -0.839295, 47.752282 ], [ -0.8354, 47.76962 ], [ -0.816068, 47.77123 ], [ -0.811744, 47.765357 ], [ -0.792946, 47.761507 ], [ -0.786308, 47.75292 ], [ -0.783388, 47.750193 ], [ -0.764392, 47.754013 ], [ -0.759625, 47.752932 ], [ -0.749702, 47.74161 ], [ -0.735166, 47.739497 ], [ -0.731594, 47.741891 ], [ -0.718459, 47.740885 ], [ -0.709257, 47.74377 ], [ -0.689884, 47.73969 ], [ -0.669841, 47.740754 ], [ -0.653787, 47.73338 ], [ -0.649406, 47.734554 ], [ -0.646242, 47.736906 ], [ -0.616059, 47.73597 ], [ -0.610818, 47.735689 ], [ -0.587755, 47.75593 ], [ -0.584648, 47.7584 ], [ -0.573109, 47.753704 ], [ -0.564982, 47.756835 ], [ -0.560372, 47.757435 ], [ -0.537758, 47.75149 ], [ -0.532922, 47.75069 ], [ -0.51835, 47.767697 ], [ -0.521709, 47.78069 ], [ -0.5221, 47.78398 ], [ -0.519889, 47.78652 ], [ -0.511455, 47.78553 ], [ -0.507134, 47.78507 ], [ -0.480245, 47.777 ], [ -0.45681, 47.760044 ], [ -0.453929, 47.75724 ], [ -0.429175, 47.76722 ], [ -0.414949, 47.76522 ], [ -0.410032, 47.76522 ], [ -0.414219, 47.775078 ], [ -0.409624, 47.77803 ], [ -0.38398, 47.76716 ], [ -0.381704, 47.76057 ], [ -0.376992, 47.760212 ], [ -0.379706, 47.751206 ], [ -0.375467, 47.74566 ], [ -0.37253, 47.743144 ], [ -0.373778, 47.73987 ], [ -0.358295, 47.731968 ], [ -0.364226, 47.71933 ], [ -0.365826, 47.71612 ], [ -0.35113, 47.71444 ], [ -0.333663, 47.72094 ], [ -0.314076, 47.71791 ], [ -0.309075, 47.71734 ], [ -0.29153, 47.717705 ], [ -0.287627, 47.71913 ], [ -0.256663, 47.7081 ], [ -0.236766, 47.704631 ], [ -0.205739, 47.72261 ], [ -0.202373, 47.725242 ], [ -0.193568, 47.723339 ], [ -0.184536, 47.716064 ], [ -0.175301, 47.716315 ], [ -0.173406, 47.713412 ], [ -0.18346, 47.71213 ], [ -0.184352, 47.705395 ], [ -0.203437, 47.693883 ], [ -0.217688, 47.692798 ], [ -0.215838, 47.682922 ], [ -0.199473, 47.665634 ], [ -0.196659, 47.662739 ], [ -0.196697, 47.650036 ], [ -0.193158, 47.64793 ], [ -0.163713, 47.645961 ], [ -0.158952, 47.647045 ], [ -0.147524, 47.63613 ], [ -0.138798, 47.63417 ], [ -0.134502, 47.632489 ], [ -0.127846, 47.63671 ], [ -0.1141, 47.635476 ], [ -0.113835, 47.64532 ], [ -0.105482, 47.65708 ], [ -0.09905, 47.66179 ], [ -0.094554, 47.660605 ], [ -0.09248, 47.65426 ], [ -0.092424, 47.65101 ], [ -0.074508, 47.657487 ], [ -0.052378, 47.64868 ], [ -0.026745, 47.646349 ], [ -0.020286, 47.63702 ], [ -0.017114, 47.63914 ], [ -0.004508, 47.647688 ], [ -0.001037, 47.645238 ], [ 0.012965, 47.62869 ], [ 0.009393, 47.626815 ], [ 0.009923, 47.623775 ], [ 0.034202, 47.61842 ], [ 0.052261, 47.60622 ], [ 0.06224, 47.60448 ], [ 0.071017, 47.60812 ], [ 0.095772, 47.603325 ], [ 0.110628, 47.6059 ], [ 0.115651, 47.605628 ], [ 0.120352, 47.596 ], [ 0.134245, 47.59442 ], [ 0.144174, 47.583055 ], [ 0.148488, 47.5813 ], [ 0.161129, 47.592413 ], [ 0.176229, 47.59441 ], [ 0.183976, 47.599011 ], [ 0.185834, 47.616547 ], [ 0.197801, 47.61545 ], [ 0.201909, 47.615582 ], [ 0.204544, 47.605972 ], [ 0.209402, 47.60552 ], [ 0.212617, 47.611785 ], [ 0.226382, 47.61064 ], [ 0.230002, 47.608398 ], [ 0.230576, 47.585003 ], [ 0.234568, 47.57861 ], [ 0.230576, 47.57731 ], [ 0.218936, 47.57359 ], [ 0.214089, 47.56879 ], [ 0.200087, 47.54317 ], [ 0.19312, 47.538037 ], [ 0.205637, 47.53294 ], [ 0.207175, 47.52667 ], [ 0.224843, 47.52728 ], [ 0.219715, 47.50519 ], [ 0.220109, 47.501953 ], [ 0.20415, 47.48661 ], [ 0.200659, 47.4845 ], [ 0.19885, 47.47641 ], [ 0.184247, 47.45576 ], [ 0.180874, 47.45323 ], [ 0.184494, 47.429597 ], [ 0.185149, 47.426217 ], [ 0.180943, 47.416603 ], [ 0.156772, 47.401448 ], [ 0.153864, 47.39873 ], [ 0.168249, 47.396153 ], [ 0.168732, 47.386013 ], [ 0.182143, 47.381943 ], [ 0.157666, 47.36532 ], [ 0.15386, 47.363093 ], [ 0.140405, 47.361808 ], [ 0.14285, 47.358725 ], [ 0.147298, 47.345376 ], [ 0.144439, 47.342819 ], [ 0.135494, 47.335365 ], [ 0.117462, 47.332343 ], [ 0.117889, 47.32884 ], [ 0.111109, 47.31573 ], [ 0.100309, 47.308205 ], [ 0.082382, 47.28687 ], [ 0.088557, 47.282381 ], [ 0.087486, 47.27553 ], [ 0.083193, 47.274147 ], [ 0.08011, 47.271692 ], [ 0.076367, 47.251931 ], [ 0.069096, 47.24333 ], [ 0.073838, 47.233508 ], [ 0.072451, 47.219878 ], [ 0.076842, 47.21937 ], [ 0.072876, 47.214493 ], [ 0.068291, 47.214196 ], [ 0.053807, 47.198856 ], [ 0.061892, 47.19095 ], [ 0.066594, 47.189802 ], [ 0.06352, 47.17639 ], [ 0.05664, 47.167369 ], [ 0.05374, 47.16461 ], [ 0.051052, 47.16713 ], [ 0.036642, 47.16036 ], [ 0.033624, 47.16289 ], [ 0.019015, 47.175758 ], [ 0.01534, 47.173168 ], [ -0.011722, 47.15624 ], [ -0.033736, 47.12756 ], [ -0.03444, 47.12063 ], [ -0.036549, 47.11752 ], [ -0.039508, 47.11475 ], [ -0.037498, 47.10814 ], [ -0.028063, 47.106027 ], [ -0.02707, 47.102674 ], [ -0.035315, 47.08672 ], [ -0.039917, 47.08761 ], [ -0.044239, 47.093151 ], [ -0.067762, 47.09338 ], [ -0.068733, 47.09653 ], [ -0.085541, 47.100434 ], [ -0.088887, 47.09827 ], [ -0.098055, 47.09135 ], [ -0.099978, 47.088083 ], [ -0.100648, 47.08459 ], [ -0.102121, 47.064806 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "51", "CODE_DEPT": "50", "NOM_DEPT": "MANCHE", "CODE_CHF": "502", "NOM_CHF": "SAINT-LO", "X_CHF_LIEU": "4014", "Y_CHF_LIEU": "68982", "X_CENTROID": "3839", "Y_CENTROID": "68953", "CODE_REG": "25", "NOM_REGION": "BASSE-NORMANDIE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.070165, 48.50849 ], [ -1.1012, 48.512885 ], [ -1.117277, 48.52165 ], [ -1.122244, 48.521362 ], [ -1.132159, 48.52173 ], [ -1.145709, 48.517654 ], [ -1.161961, 48.52425 ], [ -1.166724, 48.530079 ], [ -1.188368, 48.528687 ], [ -1.19316, 48.529248 ], [ -1.206894, 48.54219 ], [ -1.208259, 48.53909 ], [ -1.232492, 48.53764 ], [ -1.249016, 48.54367 ], [ -1.249493, 48.5437 ], [ -1.254221, 48.54327 ], [ -1.27291, 48.533721 ], [ -1.269817, 48.53105 ], [ -1.269542, 48.524356 ], [ -1.279004, 48.50918 ], [ -1.283385, 48.50853 ], [ -1.287629, 48.50953 ], [ -1.290184, 48.50679 ], [ -1.30455, 48.498803 ], [ -1.318768, 48.497286 ], [ -1.321808, 48.499798 ], [ -1.326326, 48.49852 ], [ -1.330412, 48.48596 ], [ -1.332739, 48.48886 ], [ -1.341415, 48.48921 ], [ -1.348477, 48.47989 ], [ -1.346533, 48.473118 ], [ -1.374943, 48.45926 ], [ -1.382967, 48.45687 ], [ -1.399391, 48.461159 ], [ -1.404237, 48.46143 ], [ -1.427752, 48.46235 ], [ -1.440356, 48.47217 ], [ -1.435747, 48.477916 ], [ -1.449399, 48.48677 ], [ -1.457581, 48.48543 ], [ -1.466134, 48.487976 ], [ -1.47467, 48.48588 ], [ -1.485862, 48.490737 ], [ -1.489947, 48.48937 ], [ -1.495588, 48.505047 ], [ -1.495733, 48.50831 ], [ -1.498528, 48.511018 ], [ -1.515309, 48.530294 ], [ -1.517781, 48.52985 ], [ -1.519766, 48.539657 ], [ -1.53311, 48.549439 ], [ -1.527171, 48.5619 ], [ -1.521005, 48.56705 ], [ -1.527773, 48.57577 ], [ -1.527747, 48.57908 ], [ -1.542011, 48.58087 ], [ -1.538887, 48.59746 ], [ -1.545464, 48.60609 ], [ -1.554664, 48.60923 ], [ -1.558303, 48.611232 ], [ -1.566049, 48.614827 ], [ -1.571087, 48.62645 ], [ -1.553792, 48.62949 ], [ -1.549446, 48.630158 ], [ -1.520247, 48.627613 ], [ -1.516621, 48.62151 ], [ -1.515647, 48.61826 ], [ -1.512305, 48.616211 ], [ -1.511937, 48.61321 ], [ -1.508061, 48.61869 ], [ -1.480794, 48.61939 ], [ -1.475995, 48.61905 ], [ -1.453439, 48.62417 ], [ -1.448692, 48.623481 ], [ -1.430117, 48.63457 ], [ -1.427017, 48.64083 ], [ -1.422596, 48.6424 ], [ -1.420876, 48.639256 ], [ -1.391553, 48.64393 ], [ -1.371804, 48.64154 ], [ -1.361667, 48.63408 ], [ -1.352426, 48.631329 ], [ -1.347353, 48.63144 ], [ -1.345475, 48.63273 ], [ -1.348359, 48.631937 ], [ -1.351354, 48.63248 ], [ -1.364427, 48.64695 ], [ -1.369988, 48.64648 ], [ -1.377601, 48.650693 ], [ -1.392769, 48.65063 ], [ -1.400675, 48.659104 ], [ -1.380209, 48.682794 ], [ -1.376541, 48.6848 ], [ -1.374995, 48.687787 ], [ -1.372288, 48.693796 ], [ -1.375536, 48.69148 ], [ -1.394562, 48.677941 ], [ -1.399004, 48.676084 ], [ -1.431561, 48.66588 ], [ -1.439354, 48.657073 ], [ -1.444374, 48.65615 ], [ -1.449256, 48.6694 ], [ -1.457399, 48.673651 ], [ -1.48655, 48.68632 ], [ -1.496102, 48.6838 ], [ -1.504902, 48.687396 ], [ -1.506943, 48.690544 ], [ -1.517312, 48.71335 ], [ -1.518701, 48.71666 ], [ -1.529156, 48.729982 ], [ -1.53324, 48.73138 ], [ -1.552711, 48.73243 ], [ -1.556378, 48.734647 ], [ -1.57088, 48.743939 ], [ -1.574582, 48.754158 ], [ -1.570844, 48.767 ], [ -1.570309, 48.77038 ], [ -1.569352, 48.78823 ], [ -1.572764, 48.815939 ], [ -1.575568, 48.82239 ], [ -1.585923, 48.82983 ], [ -1.609851, 48.833008 ], [ -1.607401, 48.836778 ], [ -1.594983, 48.84251 ], [ -1.591833, 48.84517 ], [ -1.58456, 48.849377 ], [ -1.579525, 48.85886 ], [ -1.577962, 48.86204 ], [ -1.572787, 48.881609 ], [ -1.572119, 48.88489 ], [ -1.571132, 48.8906 ], [ -1.561525, 48.92764 ], [ -1.557702, 48.93158 ], [ -1.559572, 48.91269 ], [ -1.553785, 48.8978 ], [ -1.551397, 48.89799 ], [ -1.551386, 48.90879 ], [ -1.543453, 48.931386 ], [ -1.550169, 48.940319 ], [ -1.562205, 48.94082 ], [ -1.562437, 48.94705 ], [ -1.561831, 48.95121 ], [ -1.561456, 48.96828 ], [ -1.562258, 48.97803 ], [ -1.561999, 48.98131 ], [ -1.559253, 48.99866 ], [ -1.556631, 48.99982 ], [ -1.552134, 48.99068 ], [ -1.550058, 48.99199 ], [ -1.55156, 48.998192 ], [ -1.556967, 49.011281 ], [ -1.55607, 49.024924 ], [ -1.534801, 49.03402 ], [ -1.518343, 49.025451 ], [ -1.513915, 49.02351 ], [ -1.510284, 49.021124 ], [ -1.505913, 49.01936 ], [ -1.504679, 49.02014 ], [ -1.508524, 49.026405 ], [ -1.538189, 49.03955 ], [ -1.542564, 49.04132 ], [ -1.555303, 49.03678 ], [ -1.559912, 49.03825 ], [ -1.569816, 49.03016 ], [ -1.576883, 49.01711 ], [ -1.576108, 49.006778 ], [ -1.581948, 49.004528 ], [ -1.595358, 49.027181 ], [ -1.607322, 49.06765 ], [ -1.606272, 49.06864 ], [ -1.599231, 49.05633 ], [ -1.598095, 49.06022 ], [ -1.6006, 49.07331 ], [ -1.610165, 49.083581 ], [ -1.605427, 49.111881 ], [ -1.594853, 49.13032 ], [ -1.585285, 49.13107 ], [ -1.580298, 49.13148 ], [ -1.594782, 49.14081 ], [ -1.596134, 49.14413 ], [ -1.604218, 49.18854 ], [ -1.605505, 49.19189 ], [ -1.605572, 49.205286 ], [ -1.61192, 49.21805 ], [ -1.572085, 49.222132 ], [ -1.567259, 49.220883 ], [ -1.567629, 49.221185 ], [ -1.587432, 49.23286 ], [ -1.613567, 49.234796 ], [ -1.6228, 49.226256 ], [ -1.624932, 49.21597 ], [ -1.632059, 49.21481 ], [ -1.648982, 49.232534 ], [ -1.650697, 49.23585 ], [ -1.65928, 49.25553 ], [ -1.660664, 49.25883 ], [ -1.66574, 49.26628 ], [ -1.667599, 49.268719 ], [ -1.675794, 49.28034 ], [ -1.661433, 49.280754 ], [ -1.664166, 49.28586 ], [ -1.684741, 49.28883 ], [ -1.690647, 49.294579 ], [ -1.692944, 49.29773 ], [ -1.698584, 49.30569 ], [ -1.699953, 49.30847 ], [ -1.708234, 49.3245 ], [ -1.682834, 49.33077 ], [ -1.702657, 49.331933 ], [ -1.721197, 49.32644 ], [ -1.745723, 49.34801 ], [ -1.74914, 49.35054 ], [ -1.75249, 49.35309 ], [ -1.757904, 49.357522 ], [ -1.760222, 49.35993 ], [ -1.77999, 49.372093 ], [ -1.778986, 49.3739 ], [ -1.763286, 49.37219 ], [ -1.769985, 49.376631 ], [ -1.780348, 49.37773 ], [ -1.793443, 49.37172 ], [ -1.80894, 49.373907 ], [ -1.8105, 49.37731 ], [ -1.822957, 49.398995 ], [ -1.823033, 49.415408 ], [ -1.823064, 49.43561 ], [ -1.823429, 49.438625 ], [ -1.833949, 49.465192 ], [ -1.836419, 49.46824 ], [ -1.846017, 49.47479 ], [ -1.845318, 49.491265 ], [ -1.845644, 49.49443 ], [ -1.849683, 49.50675 ], [ -1.855867, 49.51117 ], [ -1.860493, 49.51213 ], [ -1.870951, 49.51333 ], [ -1.882401, 49.52045 ], [ -1.886622, 49.537329 ], [ -1.881127, 49.54284 ], [ -1.863029, 49.55044 ], [ -1.857916, 49.55139 ], [ -1.854536, 49.55634 ], [ -1.843455, 49.568999 ], [ -1.841157, 49.571639 ], [ -1.84158, 49.579788 ], [ -1.841839, 49.582821 ], [ -1.842243, 49.59722 ], [ -1.844195, 49.61363 ], [ -1.860529, 49.650265 ], [ -1.864844, 49.65233 ], [ -1.870463, 49.65602 ], [ -1.873562, 49.657683 ], [ -1.887468, 49.65968 ], [ -1.894341, 49.66397 ], [ -1.898261, 49.6658 ], [ -1.919443, 49.66653 ], [ -1.945515, 49.677526 ], [ -1.937622, 49.6866 ], [ -1.935886, 49.6899 ], [ -1.94671, 49.70539 ], [ -1.943888, 49.72244 ], [ -1.936063, 49.7261 ], [ -1.910356, 49.722616 ], [ -1.891362, 49.7106 ], [ -1.890333, 49.707236 ], [ -1.880731, 49.70597 ], [ -1.875839, 49.70678 ], [ -1.861135, 49.71492 ], [ -1.85203, 49.71598 ], [ -1.849802, 49.713126 ], [ -1.839749, 49.7112 ], [ -1.827099, 49.692775 ], [ -1.818792, 49.690035 ], [ -1.814473, 49.68882 ], [ -1.79494, 49.68753 ], [ -1.767209, 49.68015 ], [ -1.762675, 49.67868 ], [ -1.719858, 49.67966 ], [ -1.70879, 49.6729 ], [ -1.704438, 49.67082 ], [ -1.694778, 49.67029 ], [ -1.68604, 49.673324 ], [ -1.679176, 49.66895 ], [ -1.683579, 49.6675 ], [ -1.67968, 49.66172 ], [ -1.670779, 49.65778 ], [ -1.654778, 49.657027 ], [ -1.64938, 49.65683 ], [ -1.629516, 49.65994 ], [ -1.625563, 49.65856 ], [ -1.628991, 49.65246 ], [ -1.623596, 49.64675 ], [ -1.608396, 49.6459 ], [ -1.602854, 49.64579 ], [ -1.6031, 49.655773 ], [ -1.595719, 49.654477 ], [ -1.588753, 49.65271 ], [ -1.569005, 49.656682 ], [ -1.553883, 49.654082 ], [ -1.548801, 49.65461 ], [ -1.531088, 49.6553 ], [ -1.505924, 49.66254 ], [ -1.502227, 49.66464 ], [ -1.491636, 49.67004 ], [ -1.488012, 49.668251 ], [ -1.483499, 49.678003 ], [ -1.475625, 49.68249 ], [ -1.472808, 49.69549 ], [ -1.452667, 49.69187 ], [ -1.431857, 49.70051 ], [ -1.426995, 49.70189 ], [ -1.391547, 49.70613 ], [ -1.365451, 49.705859 ], [ -1.351406, 49.702736 ], [ -1.346798, 49.70141 ], [ -1.328948, 49.7005 ], [ -1.32481, 49.69882 ], [ -1.304892, 49.69458 ], [ -1.29985, 49.69352 ], [ -1.268552, 49.69465 ], [ -1.270748, 49.68157 ], [ -1.265525, 49.6758 ], [ -1.261931, 49.673275 ], [ -1.257301, 49.66946 ], [ -1.256473, 49.66683 ], [ -1.239988, 49.650754 ], [ -1.243241, 49.6482 ], [ -1.230154, 49.625495 ], [ -1.228886, 49.61164 ], [ -1.235476, 49.60793 ], [ -1.250156, 49.61212 ], [ -1.255504, 49.61231 ], [ -1.271874, 49.57059 ], [ -1.276676, 49.57374 ], [ -1.271306, 49.583376 ], [ -1.280386, 49.586359 ], [ -1.285581, 49.587067 ], [ -1.297331, 49.581251 ], [ -1.300378, 49.57863 ], [ -1.307363, 49.56325 ], [ -1.307799, 49.560036 ], [ -1.309562, 49.548408 ], [ -1.307773, 49.54572 ], [ -1.304859, 49.53752 ], [ -1.302622, 49.53509 ], [ -1.290846, 49.52127 ], [ -1.289678, 49.51821 ], [ -1.28099, 49.510674 ], [ -1.278419, 49.50802 ], [ -1.273592, 49.503492 ], [ -1.256987, 49.484896 ], [ -1.254042, 49.481867 ], [ -1.234004, 49.46535 ], [ -1.230736, 49.46256 ], [ -1.225604, 49.457914 ], [ -1.223118, 49.45555 ], [ -1.215123, 49.4493 ], [ -1.212361, 49.44728 ], [ -1.199823, 49.437767 ], [ -1.196795, 49.435334 ], [ -1.191718, 49.43146 ], [ -1.189345, 49.42944 ], [ -1.170925, 49.4121 ], [ -1.16207, 49.39182 ], [ -1.165032, 49.385128 ], [ -1.179204, 49.37525 ], [ -1.1768, 49.36839 ], [ -1.177537, 49.364902 ], [ -1.163876, 49.36657 ], [ -1.137164, 49.35728 ], [ -1.136049, 49.35404 ], [ -1.119623, 49.35557 ], [ -1.118898, 49.35236 ], [ -1.113308, 49.326691 ], [ -1.116762, 49.32407 ], [ -1.139452, 49.3096 ], [ -1.136826, 49.293 ], [ -1.131559, 49.284796 ], [ -1.127154, 49.28374 ], [ -1.12114, 49.27874 ], [ -1.128905, 49.27657 ], [ -1.133356, 49.2715 ], [ -1.112984, 49.26151 ], [ -1.104845, 49.252897 ], [ -1.095279, 49.25263 ], [ -1.095265, 49.24655 ], [ -1.092615, 49.24399 ], [ -1.087678, 49.24554 ], [ -1.074542, 49.23259 ], [ -1.062107, 49.22741 ], [ -1.058388, 49.2252 ], [ -1.053793, 49.22638 ], [ -1.047026, 49.221572 ], [ -1.036842, 49.221401 ], [ -1.024082, 49.20384 ], [ -1.023564, 49.20336 ], [ -1.008002, 49.20323 ], [ -0.988753, 49.19767 ], [ -0.987315, 49.19434 ], [ -0.97222, 49.19345 ], [ -0.959274, 49.198916 ], [ -0.937402, 49.21654 ], [ -0.932547, 49.21773 ], [ -0.931039, 49.226638 ], [ -0.925287, 49.2316 ], [ -0.920701, 49.230764 ], [ -0.924353, 49.22818 ], [ -0.920925, 49.221585 ], [ -0.901576, 49.20482 ], [ -0.887334, 49.201773 ], [ -0.910471, 49.19293 ], [ -0.912375, 49.183238 ], [ -0.92794, 49.165259 ], [ -0.937743, 49.16276 ], [ -0.947337, 49.16562 ], [ -0.956748, 49.164648 ], [ -0.958777, 49.16139 ], [ -0.936054, 49.158234 ], [ -0.931332, 49.15787 ], [ -0.937614, 49.15006 ], [ -0.907235, 49.13847 ], [ -0.903756, 49.136007 ], [ -0.905686, 49.132857 ], [ -0.900657, 49.132021 ], [ -0.895489, 49.132243 ], [ -0.89063, 49.13074 ], [ -0.888682, 49.125091 ], [ -0.904396, 49.115741 ], [ -0.914368, 49.1136 ], [ -0.922908, 49.10468 ], [ -0.924798, 49.101394 ], [ -0.893182, 49.117257 ], [ -0.88332, 49.11632 ], [ -0.878455, 49.1171 ], [ -0.877293, 49.108535 ], [ -0.877089, 49.10562 ], [ -0.877933, 49.10281 ], [ -0.878176, 49.09231 ], [ -0.880054, 49.08902 ], [ -0.870823, 49.077002 ], [ -0.870349, 49.073588 ], [ -0.869083, 49.07131 ], [ -0.869699, 49.06892 ], [ -0.870789, 49.064616 ], [ -0.875705, 49.05835 ], [ -0.876058, 49.05484 ], [ -0.880508, 49.05299 ], [ -0.891404, 49.045585 ], [ -0.885105, 49.04012 ], [ -0.870261, 49.03791 ], [ -0.862941, 49.033028 ], [ -0.862559, 49.02641 ], [ -0.867436, 49.02702 ], [ -0.885517, 49.0224 ], [ -0.8951, 49.011102 ], [ -0.901754, 49.012587 ], [ -0.905113, 49.0114 ], [ -0.908525, 49.00182 ], [ -0.909472, 48.998588 ], [ -0.915084, 48.98955 ], [ -0.941689, 48.96985 ], [ -0.944262, 48.96699 ], [ -0.954764, 48.965915 ], [ -0.986092, 48.952884 ], [ -0.990474, 48.950847 ], [ -0.994057, 48.95086 ], [ -0.997539, 48.950278 ], [ -1.001978, 48.95182 ], [ -1.010925, 48.95437 ], [ -1.020826, 48.95334 ], [ -1.027063, 48.962372 ], [ -1.031166, 48.960803 ], [ -1.044941, 48.96157 ], [ -1.052055, 48.95758 ], [ -1.056539, 48.95862 ], [ -1.058288, 48.95563 ], [ -1.055016, 48.94979 ], [ -1.071058, 48.94515 ], [ -1.064179, 48.941616 ], [ -1.065538, 48.931908 ], [ -1.07563, 48.92467 ], [ -1.075509, 48.92137 ], [ -1.071119, 48.92028 ], [ -1.066637, 48.919399 ], [ -1.052082, 48.923557 ], [ -1.02122, 48.926282 ], [ -1.013568, 48.92168 ], [ -1.021892, 48.90513 ], [ -1.049194, 48.89403 ], [ -1.050674, 48.890585 ], [ -1.05275, 48.88726 ], [ -1.057922, 48.87987 ], [ -1.059166, 48.87726 ], [ -1.064089, 48.87666 ], [ -1.069667, 48.871174 ], [ -1.0793, 48.8699 ], [ -1.09129, 48.87986 ], [ -1.09473, 48.87742 ], [ -1.101995, 48.866359 ], [ -1.120359, 48.85643 ], [ -1.121156, 48.84822 ], [ -1.126199, 48.849 ], [ -1.134947, 48.84645 ], [ -1.147021, 48.83563 ], [ -1.15708, 48.83637 ], [ -1.156907, 48.83489 ], [ -1.159278, 48.828538 ], [ -1.154292, 48.82314 ], [ -1.131205, 48.81992 ], [ -1.128609, 48.81711 ], [ -1.126652, 48.817358 ], [ -1.112704, 48.814984 ], [ -1.105514, 48.815457 ], [ -1.102298, 48.81427 ], [ -1.097289, 48.804671 ], [ -1.094949, 48.80162 ], [ -1.091833, 48.798734 ], [ -1.095982, 48.78666 ], [ -1.084108, 48.77931 ], [ -1.063501, 48.77507 ], [ -1.058734, 48.773351 ], [ -1.042029, 48.78283 ], [ -1.037394, 48.7828 ], [ -1.017017, 48.77285 ], [ -0.999312, 48.776852 ], [ -0.994239, 48.77715 ], [ -0.975072, 48.774519 ], [ -0.967055, 48.786087 ], [ -0.962351, 48.784613 ], [ -0.953693, 48.78832 ], [ -0.942241, 48.78178 ], [ -0.940336, 48.77857 ], [ -0.922326, 48.771356 ], [ -0.892271, 48.76549 ], [ -0.884687, 48.75712 ], [ -0.869777, 48.75643 ], [ -0.857529, 48.76153 ], [ -0.853875, 48.76388 ], [ -0.833212, 48.76516 ], [ -0.82521, 48.769537 ], [ -0.822003, 48.77224 ], [ -0.820382, 48.770574 ], [ -0.837619, 48.7549 ], [ -0.840936, 48.75223 ], [ -0.851775, 48.745576 ], [ -0.847051, 48.72971 ], [ -0.842413, 48.728463 ], [ -0.831817, 48.72967 ], [ -0.828977, 48.73252 ], [ -0.818932, 48.731414 ], [ -0.807277, 48.724475 ], [ -0.799661, 48.71203 ], [ -0.796916, 48.70907 ], [ -0.782499, 48.702761 ], [ -0.778546, 48.701346 ], [ -0.771771, 48.69738 ], [ -0.769037, 48.694939 ], [ -0.764464, 48.69339 ], [ -0.736816, 48.686229 ], [ -0.736267, 48.679501 ], [ -0.741063, 48.68077 ], [ -0.756696, 48.672754 ], [ -0.761733, 48.663212 ], [ -0.773294, 48.6567 ], [ -0.772818, 48.65331 ], [ -0.771271, 48.650141 ], [ -0.762478, 48.631634 ], [ -0.743561, 48.627566 ], [ -0.739977, 48.621708 ], [ -0.744902, 48.621446 ], [ -0.753004, 48.61964 ], [ -0.751665, 48.603429 ], [ -0.758265, 48.59475 ], [ -0.763014, 48.59339 ], [ -0.769516, 48.58829 ], [ -0.774519, 48.57541 ], [ -0.773342, 48.56849 ], [ -0.775712, 48.561837 ], [ -0.790567, 48.55207 ], [ -0.805633, 48.549751 ], [ -0.808914, 48.54787 ], [ -0.855947, 48.512185 ], [ -0.85602, 48.50874 ], [ -0.860363, 48.50146 ], [ -0.864503, 48.49989 ], [ -0.896033, 48.49487 ], [ -0.899357, 48.49748 ], [ -0.909357, 48.497279 ], [ -0.918084, 48.50072 ], [ -0.923879, 48.513139 ], [ -0.944042, 48.51464 ], [ -0.953884, 48.51679 ], [ -0.96223, 48.51277 ], [ -0.963867, 48.50269 ], [ -0.973776, 48.49483 ], [ -1.002975, 48.48907 ], [ -1.011839, 48.492995 ], [ -1.060748, 48.515392 ], [ -1.062997, 48.51309 ], [ -1.070165, 48.50849 ] ] ], [ [ [ -1.510898, 48.63503 ], [ -1.512867, 48.63564 ], [ -1.51236, 48.636697 ], [ -1.510871, 48.63693 ], [ -1.509807, 48.635785 ], [ -1.510898, 48.63503 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "52", "CODE_DEPT": "51", "NOM_DEPT": "MARNE", "CODE_CHF": "108", "NOM_CHF": "CHALONS-EN-CHAMPAGNE", "X_CHF_LIEU": "7999", "Y_CHF_LIEU": "68738", "X_CENTROID": "7907", "Y_CENTROID": "68728", "CODE_REG": "21", "NOM_REGION": "CHAMPAGNE-ARDENNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.670183, 48.53189 ], [ 4.650985, 48.537005 ], [ 4.649977, 48.53983 ], [ 4.635014, 48.54448 ], [ 4.636207, 48.5497 ], [ 4.641338, 48.55388 ], [ 4.636332, 48.5537 ], [ 4.592975, 48.55234 ], [ 4.586045, 48.548146 ], [ 4.581057, 48.54856 ], [ 4.575926, 48.5492 ], [ 4.558081, 48.542425 ], [ 4.543945, 48.52803 ], [ 4.538806, 48.527398 ], [ 4.528813, 48.5294 ], [ 4.520811, 48.544941 ], [ 4.516867, 48.54445 ], [ 4.511043, 48.54783 ], [ 4.507606, 48.54518 ], [ 4.495281, 48.53872 ], [ 4.490796, 48.54015 ], [ 4.463404, 48.54756 ], [ 4.458127, 48.54784 ], [ 4.427877, 48.553165 ], [ 4.42331, 48.55415 ], [ 4.418399, 48.555473 ], [ 4.392438, 48.567422 ], [ 4.349656, 48.59794 ], [ 4.344703, 48.59837 ], [ 4.330833, 48.601819 ], [ 4.318252, 48.613403 ], [ 4.314918, 48.61622 ], [ 4.330956, 48.62959 ], [ 4.329072, 48.63612 ], [ 4.326398, 48.638772 ], [ 4.324339, 48.641647 ], [ 4.323216, 48.64393 ], [ 4.318484, 48.64956 ], [ 4.327909, 48.65608 ], [ 4.324067, 48.66198 ], [ 4.333205, 48.673664 ], [ 4.323296, 48.68411 ], [ 4.327016, 48.696879 ], [ 4.325579, 48.7002 ], [ 4.311773, 48.710559 ], [ 4.297443, 48.71315 ], [ 4.262377, 48.707152 ], [ 4.248388, 48.71158 ], [ 4.243113, 48.716673 ], [ 4.234701, 48.70529 ], [ 4.233041, 48.70231 ], [ 4.177346, 48.70825 ], [ 4.162185, 48.706155 ], [ 4.157769, 48.70434 ], [ 4.153641, 48.70268 ], [ 4.131091, 48.68615 ], [ 4.126466, 48.687778 ], [ 4.088126, 48.698875 ], [ 4.083978, 48.700037 ], [ 4.079788, 48.701127 ], [ 4.065982, 48.6872 ], [ 4.067612, 48.67785 ], [ 4.062858, 48.67184 ], [ 4.044291, 48.660955 ], [ 4.039499, 48.66168 ], [ 4.030184, 48.65965 ], [ 4.001696, 48.66388 ], [ 3.998629, 48.66116 ], [ 3.984211, 48.65194 ], [ 3.977256, 48.63209 ], [ 3.980532, 48.629473 ], [ 3.974072, 48.62657 ], [ 3.966616, 48.62992 ], [ 3.964055, 48.62714 ], [ 3.94924, 48.603432 ], [ 3.91901, 48.60597 ], [ 3.911396, 48.60185 ], [ 3.908424, 48.60175 ], [ 3.897616, 48.575738 ], [ 3.883945, 48.57776 ], [ 3.883263, 48.57755 ], [ 3.878854, 48.57902 ], [ 3.855214, 48.579262 ], [ 3.855122, 48.572794 ], [ 3.863732, 48.569629 ], [ 3.858832, 48.55683 ], [ 3.86001, 48.543549 ], [ 3.866229, 48.543549 ], [ 3.86544, 48.540046 ], [ 3.852471, 48.52483 ], [ 3.834507, 48.51766 ], [ 3.829732, 48.51714 ], [ 3.825896, 48.515174 ], [ 3.821633, 48.517039 ], [ 3.796397, 48.5281 ], [ 3.786289, 48.52873 ], [ 3.782383, 48.52746 ], [ 3.774481, 48.5298 ], [ 3.76655, 48.527446 ], [ 3.759259, 48.53186 ], [ 3.731761, 48.53754 ], [ 3.726541, 48.537189 ], [ 3.706308, 48.534585 ], [ 3.701306, 48.534281 ], [ 3.6882, 48.53895 ], [ 3.664193, 48.53553 ], [ 3.66131, 48.53466 ], [ 3.658505, 48.53564 ], [ 3.643639, 48.53626 ], [ 3.63263, 48.54552 ], [ 3.631399, 48.57156 ], [ 3.629017, 48.57416 ], [ 3.623843, 48.57911 ], [ 3.615255, 48.57849 ], [ 3.61177, 48.5761 ], [ 3.607694, 48.57417 ], [ 3.604245, 48.572453 ], [ 3.602682, 48.57567 ], [ 3.59248, 48.587004 ], [ 3.582592, 48.58546 ], [ 3.581882, 48.588702 ], [ 3.579892, 48.604859 ], [ 3.575032, 48.60446 ], [ 3.565324, 48.60353 ], [ 3.563076, 48.612739 ], [ 3.555754, 48.62069 ], [ 3.540941, 48.63019 ], [ 3.521163, 48.6337 ], [ 3.522656, 48.63909 ], [ 3.533236, 48.64651 ], [ 3.528071, 48.645758 ], [ 3.512619, 48.643982 ], [ 3.492289, 48.64724 ], [ 3.476594, 48.637961 ], [ 3.451091, 48.63465 ], [ 3.458809, 48.65128 ], [ 3.442561, 48.66436 ], [ 3.446181, 48.666898 ], [ 3.442698, 48.67251 ], [ 3.456628, 48.68287 ], [ 3.470957, 48.68723 ], [ 3.472543, 48.69737 ], [ 3.47762, 48.69833 ], [ 3.464601, 48.707277 ], [ 3.467159, 48.72285 ], [ 3.466954, 48.72581 ], [ 3.46675, 48.72877 ], [ 3.467051, 48.732092 ], [ 3.467396, 48.73863 ], [ 3.442735, 48.73781 ], [ 3.43681, 48.74321 ], [ 3.437315, 48.749861 ], [ 3.436595, 48.75318 ], [ 3.432915, 48.75555 ], [ 3.40936, 48.75278 ], [ 3.399831, 48.755326 ], [ 3.397144, 48.76144 ], [ 3.409984, 48.78372 ], [ 3.414979, 48.78374 ], [ 3.428538, 48.78082 ], [ 3.442195, 48.78485 ], [ 3.442604, 48.78814 ], [ 3.440934, 48.80152 ], [ 3.421146, 48.80249 ], [ 3.407443, 48.80695 ], [ 3.416612, 48.81783 ], [ 3.420847, 48.816025 ], [ 3.434609, 48.812028 ], [ 3.449507, 48.812081 ], [ 3.470215, 48.820698 ], [ 3.474847, 48.81937 ], [ 3.477905, 48.81417 ], [ 3.480923, 48.81219 ], [ 3.483786, 48.81395 ], [ 3.487202, 48.81519 ], [ 3.485241, 48.825503 ], [ 3.491285, 48.83514 ], [ 3.486806, 48.848601 ], [ 3.485187, 48.85191 ], [ 3.486791, 48.857307 ], [ 3.484515, 48.86024 ], [ 3.481315, 48.86647 ], [ 3.485612, 48.866746 ], [ 3.489643, 48.8678 ], [ 3.494059, 48.8691 ], [ 3.502997, 48.87149 ], [ 3.502839, 48.874895 ], [ 3.508888, 48.89112 ], [ 3.520911, 48.90559 ], [ 3.523973, 48.907485 ], [ 3.528576, 48.91214 ], [ 3.547421, 48.91502 ], [ 3.566684, 48.913496 ], [ 3.57243, 48.918612 ], [ 3.574443, 48.939025 ], [ 3.588352, 48.94372 ], [ 3.593373, 48.944644 ], [ 3.601246, 48.946682 ], [ 3.594094, 48.95762 ], [ 3.591475, 48.960246 ], [ 3.602925, 48.96545 ], [ 3.616661, 48.96516 ], [ 3.621206, 48.96603 ], [ 3.625814, 48.98575 ], [ 3.637845, 49.000843 ], [ 3.639825, 49.003998 ], [ 3.660412, 49.0043 ], [ 3.665159, 49.00563 ], [ 3.668852, 49.00798 ], [ 3.677678, 49.01602 ], [ 3.66354, 49.037311 ], [ 3.65839, 49.037753 ], [ 3.64997, 49.04142 ], [ 3.615771, 49.03642 ], [ 3.614684, 49.033552 ], [ 3.586674, 49.03583 ], [ 3.585204, 49.03887 ], [ 3.587706, 49.05935 ], [ 3.590739, 49.06013 ], [ 3.600591, 49.06256 ], [ 3.604007, 49.06915 ], [ 3.607391, 49.071858 ], [ 3.632115, 49.072405 ], [ 3.638573, 49.077865 ], [ 3.639054, 49.08131 ], [ 3.63224, 49.08609 ], [ 3.62255, 49.10449 ], [ 3.620078, 49.107328 ], [ 3.613414, 49.115904 ], [ 3.601545, 49.117645 ], [ 3.600018, 49.12069 ], [ 3.610441, 49.127518 ], [ 3.612047, 49.137004 ], [ 3.619769, 49.14105 ], [ 3.619819, 49.147538 ], [ 3.621107, 49.14977 ], [ 3.624456, 49.151353 ], [ 3.654771, 49.148791 ], [ 3.679251, 49.15302 ], [ 3.683835, 49.15449 ], [ 3.695606, 49.151143 ], [ 3.697999, 49.14871 ], [ 3.703297, 49.143204 ], [ 3.712178, 49.146191 ], [ 3.717014, 49.14704 ], [ 3.734837, 49.15513 ], [ 3.739564, 49.15689 ], [ 3.744432, 49.15697 ], [ 3.748676, 49.15853 ], [ 3.751148, 49.1777 ], [ 3.740643, 49.17866 ], [ 3.725822, 49.17501 ], [ 3.70649, 49.18032 ], [ 3.69754, 49.19191 ], [ 3.703936, 49.19729 ], [ 3.704655, 49.20067 ], [ 3.700577, 49.20145 ], [ 3.697477, 49.206641 ], [ 3.681937, 49.198746 ], [ 3.67667, 49.20726 ], [ 3.662545, 49.20898 ], [ 3.654814, 49.212922 ], [ 3.654839, 49.219233 ], [ 3.651479, 49.22156 ], [ 3.666006, 49.22311 ], [ 3.677019, 49.237082 ], [ 3.67504, 49.24009 ], [ 3.670256, 49.24074 ], [ 3.655255, 49.26285 ], [ 3.660449, 49.26837 ], [ 3.665133, 49.26943 ], [ 3.66059, 49.270796 ], [ 3.651676, 49.27863 ], [ 3.658994, 49.28677 ], [ 3.655943, 49.29108 ], [ 3.64038, 49.29846 ], [ 3.63834, 49.30135 ], [ 3.642556, 49.303248 ], [ 3.64492, 49.313115 ], [ 3.647596, 49.31596 ], [ 3.666467, 49.32172 ], [ 3.669161, 49.32475 ], [ 3.683021, 49.32557 ], [ 3.687315, 49.32683 ], [ 3.69306, 49.32861 ], [ 3.707044, 49.333353 ], [ 3.71235, 49.33407 ], [ 3.731413, 49.33493 ], [ 3.736196, 49.33555 ], [ 3.742022, 49.33895 ], [ 3.741252, 49.344699 ], [ 3.741087, 49.34759 ], [ 3.746475, 49.34815 ], [ 3.757818, 49.347608 ], [ 3.773533, 49.354187 ], [ 3.777535, 49.35582 ], [ 3.779802, 49.352853 ], [ 3.789367, 49.354714 ], [ 3.793198, 49.35689 ], [ 3.803095, 49.358822 ], [ 3.818508, 49.357011 ], [ 3.823765, 49.35699 ], [ 3.828389, 49.351891 ], [ 3.83278, 49.35026 ], [ 3.85131, 49.34494 ], [ 3.857908, 49.353672 ], [ 3.848856, 49.36139 ], [ 3.847477, 49.364596 ], [ 3.853577, 49.366413 ], [ 3.856059, 49.36835 ], [ 3.859844, 49.381525 ], [ 3.87455, 49.383999 ], [ 3.891038, 49.39155 ], [ 3.895741, 49.39278 ], [ 3.910328, 49.395268 ], [ 3.92132, 49.405361 ], [ 3.92482, 49.40772 ], [ 3.933172, 49.40113 ], [ 3.93472, 49.39841 ], [ 3.961309, 49.37734 ], [ 3.981515, 49.379241 ], [ 3.986644, 49.37892 ], [ 4.008214, 49.367416 ], [ 4.011882, 49.361462 ], [ 4.012729, 49.358308 ], [ 4.02145, 49.36018 ], [ 4.035496, 49.359904 ], [ 4.037098, 49.384126 ], [ 4.044698, 49.4031 ], [ 4.047973, 49.40564 ], [ 4.074305, 49.40338 ], [ 4.07891, 49.401586 ], [ 4.085314, 49.401538 ], [ 4.106287, 49.401932 ], [ 4.110667, 49.40193 ], [ 4.115034, 49.401933 ], [ 4.13863, 49.40321 ], [ 4.14317, 49.404196 ], [ 4.162354, 49.40155 ], [ 4.167348, 49.40188 ], [ 4.191434, 49.40104 ], [ 4.188997, 49.3987 ], [ 4.198871, 49.38678 ], [ 4.201308, 49.383793 ], [ 4.20951, 49.386561 ], [ 4.213672, 49.38787 ], [ 4.235997, 49.38164 ], [ 4.240809, 49.38247 ], [ 4.242934, 49.38037 ], [ 4.247956, 49.3808 ], [ 4.258585, 49.36495 ], [ 4.27362, 49.35507 ], [ 4.294051, 49.35267 ], [ 4.291196, 49.350764 ], [ 4.290316, 49.346916 ], [ 4.305355, 49.329494 ], [ 4.307812, 49.32656 ], [ 4.308294, 49.326603 ], [ 4.333585, 49.32643 ], [ 4.348607, 49.317016 ], [ 4.353711, 49.316546 ], [ 4.359348, 49.31965 ], [ 4.36261, 49.32078 ], [ 4.371273, 49.32279 ], [ 4.375619, 49.3238 ], [ 4.390817, 49.2988 ], [ 4.396755, 49.29316 ], [ 4.406725, 49.291287 ], [ 4.408451, 49.28806 ], [ 4.408668, 49.286913 ], [ 4.444511, 49.27601 ], [ 4.446787, 49.272868 ], [ 4.45071, 49.274601 ], [ 4.454543, 49.27601 ], [ 4.479014, 49.27976 ], [ 4.48384, 49.28078 ], [ 4.492719, 49.28083 ], [ 4.515835, 49.2813 ], [ 4.53667, 49.28451 ], [ 4.552575, 49.293752 ], [ 4.557759, 49.29471 ], [ 4.577908, 49.295483 ], [ 4.599907, 49.28849 ], [ 4.596327, 49.286051 ], [ 4.591669, 49.280287 ], [ 4.597212, 49.27112 ], [ 4.606824, 49.26868 ], [ 4.611629, 49.25929 ], [ 4.611822, 49.2558 ], [ 4.618864, 49.24642 ], [ 4.619003, 49.23945 ], [ 4.636983, 49.23265 ], [ 4.670503, 49.24124 ], [ 4.685038, 49.256153 ], [ 4.690096, 49.257485 ], [ 4.703917, 49.254593 ], [ 4.703328, 49.25132 ], [ 4.713246, 49.25049 ], [ 4.718233, 49.25093 ], [ 4.72578, 49.253167 ], [ 4.729119, 49.251555 ], [ 4.74352, 49.2444 ], [ 4.744232, 49.24147 ], [ 4.76425, 49.24452 ], [ 4.789425, 49.241719 ], [ 4.806997, 49.2486 ], [ 4.812108, 49.249401 ], [ 4.820229, 49.24209 ], [ 4.82985, 49.243073 ], [ 4.827381, 49.2381 ], [ 4.827131, 49.235308 ], [ 4.866461, 49.22658 ], [ 4.867323, 49.2299 ], [ 4.861837, 49.23885 ], [ 4.882243, 49.25765 ], [ 4.876159, 49.26302 ], [ 4.889711, 49.258614 ], [ 4.908641, 49.26341 ], [ 4.913375, 49.26472 ], [ 4.924466, 49.261473 ], [ 4.933761, 49.261648 ], [ 4.923869, 49.250602 ], [ 4.95054, 49.240245 ], [ 4.950989, 49.236866 ], [ 4.970838, 49.23554 ], [ 4.975569, 49.222788 ], [ 4.977581, 49.219751 ], [ 4.988955, 49.213484 ], [ 4.991859, 49.210838 ], [ 4.990533, 49.207415 ], [ 4.978532, 49.20045 ], [ 4.953973, 49.19408 ], [ 4.942378, 49.18677 ], [ 4.941676, 49.183805 ], [ 4.952939, 49.17105 ], [ 4.954392, 49.168122 ], [ 4.964624, 49.15441 ], [ 4.965324, 49.15119 ], [ 4.974853, 49.132849 ], [ 4.978523, 49.12845 ], [ 4.98064, 49.126485 ], [ 4.984722, 49.122496 ], [ 4.987983, 49.119636 ], [ 4.996343, 49.106502 ], [ 4.997767, 49.09228 ], [ 4.996638, 49.088913 ], [ 5.003861, 49.06568 ], [ 5.005744, 49.05987 ], [ 5.000361, 49.050536 ], [ 4.968234, 49.024281 ], [ 4.965432, 49.02144 ], [ 4.966715, 49.021 ], [ 5.01001, 49.03469 ], [ 5.032916, 49.02574 ], [ 5.035267, 49.02256 ], [ 5.035641, 49.02057 ], [ 5.037505, 49.01057 ], [ 5.031576, 49.00129 ], [ 5.03062, 48.994998 ], [ 5.009278, 48.993135 ], [ 4.995417, 48.982465 ], [ 5.000441, 48.9834 ], [ 5.029939, 48.97864 ], [ 5.037757, 48.97412 ], [ 5.030943, 48.95432 ], [ 5.027718, 48.952194 ], [ 5.014132, 48.94559 ], [ 5.014887, 48.94251 ], [ 5.012848, 48.93675 ], [ 4.996952, 48.93704 ], [ 4.97332, 48.92887 ], [ 4.957261, 48.92803 ], [ 4.954079, 48.930911 ], [ 4.949578, 48.9303 ], [ 4.936209, 48.92214 ], [ 4.932159, 48.912682 ], [ 4.917043, 48.90321 ], [ 4.915801, 48.899847 ], [ 4.913592, 48.89768 ], [ 4.920098, 48.89466 ], [ 4.923063, 48.888495 ], [ 4.916497, 48.875413 ], [ 4.913098, 48.872733 ], [ 4.912256, 48.86946 ], [ 4.923236, 48.862891 ], [ 4.928577, 48.851029 ], [ 4.937384, 48.84811 ], [ 4.935493, 48.8405 ], [ 4.930968, 48.8394 ], [ 4.902918, 48.82774 ], [ 4.90027, 48.82463 ], [ 4.888761, 48.81721 ], [ 4.890378, 48.814107 ], [ 4.896351, 48.80903 ], [ 4.89003, 48.80036 ], [ 4.892929, 48.797694 ], [ 4.893365, 48.79696 ], [ 4.898034, 48.796138 ], [ 4.920462, 48.790984 ], [ 4.924802, 48.79238 ], [ 4.934376, 48.790589 ], [ 4.935478, 48.78432 ], [ 4.949258, 48.770537 ], [ 4.953825, 48.768195 ], [ 4.978949, 48.7517 ], [ 4.980624, 48.7485 ], [ 4.981359, 48.74564 ], [ 4.989575, 48.74204 ], [ 5.00922, 48.74139 ], [ 5.006168, 48.721442 ], [ 5.016002, 48.70952 ], [ 5.012702, 48.707153 ], [ 4.999273, 48.710392 ], [ 5.006402, 48.69885 ], [ 5.003295, 48.69617 ], [ 4.990665, 48.690724 ], [ 4.988428, 48.68443 ], [ 4.983953, 48.6861 ], [ 4.953906, 48.687122 ], [ 4.943394, 48.6807 ], [ 4.938677, 48.67477 ], [ 4.935845, 48.677555 ], [ 4.911002, 48.68885 ], [ 4.907662, 48.68634 ], [ 4.896822, 48.679325 ], [ 4.873943, 48.67252 ], [ 4.867776, 48.667206 ], [ 4.863555, 48.66805 ], [ 4.854931, 48.666947 ], [ 4.851014, 48.66757 ], [ 4.84669, 48.67208 ], [ 4.842237, 48.6733 ], [ 4.823314, 48.6741 ], [ 4.81997, 48.679902 ], [ 4.815489, 48.67958 ], [ 4.798326, 48.6775 ], [ 4.796902, 48.674395 ], [ 4.7914, 48.66964 ], [ 4.781666, 48.67021 ], [ 4.780413, 48.6673 ], [ 4.772425, 48.656462 ], [ 4.771876, 48.65188 ], [ 4.772621, 48.651816 ], [ 4.777424, 48.652906 ], [ 4.812533, 48.65467 ], [ 4.841402, 48.6492 ], [ 4.839057, 48.645834 ], [ 4.849539, 48.640867 ], [ 4.851305, 48.63819 ], [ 4.850022, 48.622271 ], [ 4.852769, 48.61589 ], [ 4.857671, 48.61523 ], [ 4.85438, 48.61272 ], [ 4.829662, 48.612481 ], [ 4.807034, 48.599655 ], [ 4.802295, 48.598323 ], [ 4.768136, 48.59344 ], [ 4.770422, 48.57642 ], [ 4.775919, 48.566985 ], [ 4.79375, 48.56707 ], [ 4.784793, 48.554867 ], [ 4.796077, 48.532517 ], [ 4.79918, 48.52979 ], [ 4.794317, 48.5294 ], [ 4.786045, 48.53115 ], [ 4.724836, 48.54141 ], [ 4.719578, 48.54141 ], [ 4.68471, 48.535371 ], [ 4.674932, 48.53763 ], [ 4.670183, 48.53189 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "53", "CODE_DEPT": "52", "NOM_DEPT": "HAUTE-MARNE", "CODE_CHF": "121", "NOM_CHF": "CHAUMONT", "X_CHF_LIEU": "8591", "Y_CHF_LIEU": "67811", "X_CENTROID": "8656", "Y_CENTROID": "67811", "CODE_REG": "21", "NOM_REGION": "CHAMPAGNE-ARDENNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.374079, 47.604542 ], [ 5.365786, 47.60279 ], [ 5.358712, 47.59427 ], [ 5.355723, 47.59169 ], [ 5.342324, 47.59669 ], [ 5.343756, 47.603543 ], [ 5.337818, 47.60903 ], [ 5.333294, 47.61063 ], [ 5.3233, 47.611993 ], [ 5.316021, 47.607221 ], [ 5.306357, 47.607277 ], [ 5.278142, 47.588255 ], [ 5.277901, 47.581361 ], [ 5.273261, 47.580551 ], [ 5.25623, 47.576551 ], [ 5.239656, 47.597653 ], [ 5.25601, 47.61922 ], [ 5.258601, 47.622222 ], [ 5.246326, 47.620136 ], [ 5.242875, 47.6182 ], [ 5.240285, 47.61678 ], [ 5.236942, 47.61678 ], [ 5.237409, 47.6203 ], [ 5.211365, 47.64166 ], [ 5.188388, 47.649609 ], [ 5.176227, 47.651385 ], [ 5.17341, 47.653536 ], [ 5.178341, 47.68095 ], [ 5.173442, 47.68082 ], [ 5.160201, 47.678155 ], [ 5.155673, 47.66839 ], [ 5.136233, 47.65195 ], [ 5.127205, 47.64846 ], [ 5.117441, 47.650566 ], [ 5.116859, 47.65202 ], [ 5.107398, 47.65133 ], [ 5.102371, 47.65734 ], [ 5.082662, 47.659447 ], [ 5.076587, 47.664976 ], [ 5.067123, 47.667368 ], [ 5.062024, 47.66718 ], [ 5.052569, 47.669839 ], [ 5.046804, 47.67557 ], [ 5.056238, 47.69481 ], [ 5.031234, 47.694135 ], [ 5.033099, 47.70772 ], [ 5.029154, 47.70993 ], [ 5.008993, 47.70096 ], [ 5.00401, 47.700376 ], [ 5.002099, 47.693539 ], [ 4.993925, 47.689285 ], [ 4.96857, 47.68733 ], [ 4.971371, 47.69023 ], [ 4.956706, 47.69974 ], [ 4.953759, 47.706313 ], [ 4.956914, 47.709051 ], [ 4.964212, 47.713422 ], [ 4.964464, 47.72281 ], [ 4.970801, 47.72782 ], [ 4.971535, 47.73108 ], [ 4.964441, 47.734828 ], [ 4.960496, 47.73281 ], [ 4.965074, 47.74222 ], [ 4.958989, 47.76187 ], [ 4.954454, 47.762716 ], [ 4.946347, 47.76596 ], [ 4.939114, 47.76205 ], [ 4.924775, 47.76062 ], [ 4.921427, 47.765883 ], [ 4.9168, 47.76682 ], [ 4.920816, 47.767837 ], [ 4.921897, 47.77594 ], [ 4.917958, 47.77709 ], [ 4.939148, 47.78389 ], [ 4.943089, 47.785719 ], [ 4.947261, 47.78693 ], [ 4.955366, 47.789719 ], [ 4.986103, 47.8036 ], [ 4.992111, 47.81344 ], [ 4.994125, 47.819748 ], [ 4.99022, 47.82112 ], [ 4.984921, 47.82527 ], [ 4.984281, 47.82461 ], [ 4.984619, 47.82756 ], [ 4.973256, 47.8312 ], [ 4.961536, 47.84076 ], [ 4.962141, 47.854264 ], [ 4.954094, 47.86677 ], [ 4.944541, 47.866387 ], [ 4.927456, 47.871548 ], [ 4.928136, 47.88697 ], [ 4.923381, 47.892401 ], [ 4.919542, 47.89431 ], [ 4.916131, 47.896976 ], [ 4.905961, 47.91647 ], [ 4.903607, 47.91955 ], [ 4.894663, 47.9226 ], [ 4.874586, 47.919522 ], [ 4.856783, 47.895634 ], [ 4.853034, 47.897539 ], [ 4.834024, 47.90679 ], [ 4.829474, 47.912285 ], [ 4.829963, 47.91559 ], [ 4.845857, 47.922903 ], [ 4.86521, 47.941564 ], [ 4.863158, 47.94457 ], [ 4.856121, 47.95328 ], [ 4.845033, 47.96043 ], [ 4.819692, 47.96247 ], [ 4.810959, 47.95987 ], [ 4.801642, 47.96254 ], [ 4.796724, 47.96257 ], [ 4.787781, 47.965254 ], [ 4.785712, 47.971461 ], [ 4.795259, 47.98344 ], [ 4.807631, 47.98884 ], [ 4.796214, 47.9954 ], [ 4.78942, 48.00787 ], [ 4.784607, 48.006727 ], [ 4.749531, 48.00431 ], [ 4.719943, 48.008896 ], [ 4.717126, 48.011368 ], [ 4.704239, 48.020241 ], [ 4.708903, 48.02178 ], [ 4.710489, 48.03515 ], [ 4.721823, 48.042371 ], [ 4.723155, 48.045763 ], [ 4.710106, 48.051129 ], [ 4.691158, 48.07195 ], [ 4.665953, 48.07672 ], [ 4.660742, 48.07715 ], [ 4.657543, 48.079243 ], [ 4.666381, 48.082637 ], [ 4.686338, 48.08422 ], [ 4.69088, 48.08595 ], [ 4.706273, 48.091733 ], [ 4.706929, 48.09499 ], [ 4.704076, 48.09777 ], [ 4.724477, 48.10697 ], [ 4.729771, 48.116376 ], [ 4.731874, 48.119451 ], [ 4.74089, 48.11566 ], [ 4.762028, 48.11511 ], [ 4.782071, 48.110791 ], [ 4.786885, 48.109269 ], [ 4.819903, 48.10332 ], [ 4.834386, 48.105164 ], [ 4.833349, 48.117511 ], [ 4.830916, 48.126433 ], [ 4.828601, 48.129079 ], [ 4.841084, 48.13464 ], [ 4.845262, 48.1407 ], [ 4.850094, 48.14158 ], [ 4.838385, 48.15215 ], [ 4.836583, 48.162213 ], [ 4.838845, 48.16886 ], [ 4.84882, 48.17667 ], [ 4.847077, 48.17992 ], [ 4.853853, 48.18932 ], [ 4.85609, 48.192464 ], [ 4.856297, 48.192587 ], [ 4.862336, 48.19818 ], [ 4.862435, 48.20861 ], [ 4.836553, 48.218619 ], [ 4.835568, 48.222045 ], [ 4.839374, 48.2242 ], [ 4.851517, 48.22941 ], [ 4.843279, 48.24076 ], [ 4.845763, 48.24706 ], [ 4.84458, 48.24907 ], [ 4.846501, 48.25581 ], [ 4.859395, 48.266025 ], [ 4.842941, 48.283517 ], [ 4.850845, 48.296255 ], [ 4.830865, 48.30309 ], [ 4.826276, 48.302243 ], [ 4.825283, 48.3121 ], [ 4.817381, 48.320442 ], [ 4.814218, 48.32301 ], [ 4.837279, 48.337297 ], [ 4.841471, 48.33946 ], [ 4.834492, 48.344477 ], [ 4.818946, 48.34505 ], [ 4.79289, 48.356093 ], [ 4.788073, 48.35542 ], [ 4.774639, 48.35745 ], [ 4.75458, 48.36655 ], [ 4.760188, 48.38761 ], [ 4.74663, 48.392303 ], [ 4.721621, 48.394397 ], [ 4.707664, 48.391098 ], [ 4.703582, 48.393137 ], [ 4.701249, 48.39537 ], [ 4.708356, 48.401185 ], [ 4.694223, 48.41467 ], [ 4.685262, 48.41681 ], [ 4.680322, 48.417054 ], [ 4.688066, 48.425403 ], [ 4.67796, 48.432421 ], [ 4.676942, 48.43567 ], [ 4.675907, 48.44138 ], [ 4.673885, 48.444132 ], [ 4.635782, 48.456612 ], [ 4.630106, 48.465518 ], [ 4.62683, 48.468082 ], [ 4.63622, 48.467215 ], [ 4.648724, 48.47071 ], [ 4.653469, 48.470557 ], [ 4.651486, 48.47721 ], [ 4.659165, 48.49323 ], [ 4.657667, 48.50323 ], [ 4.666284, 48.510635 ], [ 4.669606, 48.510796 ], [ 4.676345, 48.51953 ], [ 4.672146, 48.528872 ], [ 4.670183, 48.53189 ], [ 4.674932, 48.53763 ], [ 4.68471, 48.535371 ], [ 4.719578, 48.54141 ], [ 4.724836, 48.54141 ], [ 4.786045, 48.53115 ], [ 4.794317, 48.5294 ], [ 4.79918, 48.52979 ], [ 4.796077, 48.532517 ], [ 4.784793, 48.554867 ], [ 4.79375, 48.56707 ], [ 4.775919, 48.566985 ], [ 4.770422, 48.57642 ], [ 4.768136, 48.59344 ], [ 4.802295, 48.598323 ], [ 4.807034, 48.599655 ], [ 4.829662, 48.612481 ], [ 4.85438, 48.61272 ], [ 4.857671, 48.61523 ], [ 4.852769, 48.61589 ], [ 4.850022, 48.622271 ], [ 4.851305, 48.63819 ], [ 4.849539, 48.640867 ], [ 4.839057, 48.645834 ], [ 4.841402, 48.6492 ], [ 4.812533, 48.65467 ], [ 4.777424, 48.652906 ], [ 4.772621, 48.651816 ], [ 4.771876, 48.65188 ], [ 4.772425, 48.656462 ], [ 4.780413, 48.6673 ], [ 4.781666, 48.67021 ], [ 4.7914, 48.66964 ], [ 4.796902, 48.674395 ], [ 4.798326, 48.6775 ], [ 4.815489, 48.67958 ], [ 4.81997, 48.679902 ], [ 4.823314, 48.6741 ], [ 4.842237, 48.6733 ], [ 4.84669, 48.67208 ], [ 4.851014, 48.66757 ], [ 4.854931, 48.666947 ], [ 4.863555, 48.66805 ], [ 4.867776, 48.667206 ], [ 4.873943, 48.67252 ], [ 4.896822, 48.679325 ], [ 4.907662, 48.68634 ], [ 4.911002, 48.68885 ], [ 4.935845, 48.677555 ], [ 4.938677, 48.67477 ], [ 4.943394, 48.6807 ], [ 4.953906, 48.687122 ], [ 4.983953, 48.6861 ], [ 4.988428, 48.68443 ], [ 5.003256, 48.68204 ], [ 5.007434, 48.680069 ], [ 5.008261, 48.67048 ], [ 5.011053, 48.66783 ], [ 4.996128, 48.66047 ], [ 4.992812, 48.658271 ], [ 4.993755, 48.65522 ], [ 4.994686, 48.64616 ], [ 5.004196, 48.6346 ], [ 4.996262, 48.61879 ], [ 5.006401, 48.61139 ], [ 5.033402, 48.61376 ], [ 5.051809, 48.632966 ], [ 5.056671, 48.63233 ], [ 5.05939, 48.61519 ], [ 5.068597, 48.59919 ], [ 5.070286, 48.595925 ], [ 5.094681, 48.59297 ], [ 5.114686, 48.59458 ], [ 5.119453, 48.595716 ], [ 5.117875, 48.58689 ], [ 5.123434, 48.58214 ], [ 5.127067, 48.5801 ], [ 5.131277, 48.572586 ], [ 5.134455, 48.57069 ], [ 5.140569, 48.565697 ], [ 5.143528, 48.563133 ], [ 5.152213, 48.56034 ], [ 5.160367, 48.564133 ], [ 5.165068, 48.565343 ], [ 5.172768, 48.557149 ], [ 5.192655, 48.548397 ], [ 5.197028, 48.546678 ], [ 5.194712, 48.540557 ], [ 5.207077, 48.53747 ], [ 5.211558, 48.53191 ], [ 5.212253, 48.52879 ], [ 5.217139, 48.52771 ], [ 5.221951, 48.52648 ], [ 5.229125, 48.530773 ], [ 5.272637, 48.514317 ], [ 5.287443, 48.513709 ], [ 5.289147, 48.51053 ], [ 5.292344, 48.50931 ], [ 5.295728, 48.508329 ], [ 5.302655, 48.513091 ], [ 5.30559, 48.51576 ], [ 5.317018, 48.50891 ], [ 5.327505, 48.509 ], [ 5.346954, 48.48505 ], [ 5.34947, 48.481989 ], [ 5.363594, 48.477271 ], [ 5.368678, 48.47625 ], [ 5.369382, 48.47655 ], [ 5.377321, 48.47191 ], [ 5.398074, 48.473187 ], [ 5.40115, 48.470299 ], [ 5.403623, 48.46785 ], [ 5.406055, 48.465393 ], [ 5.403949, 48.455175 ], [ 5.409502, 48.44554 ], [ 5.429225, 48.43441 ], [ 5.439576, 48.4342 ], [ 5.444199, 48.42803 ], [ 5.44593, 48.42484 ], [ 5.455491, 48.42252 ], [ 5.464657, 48.42535 ], [ 5.468366, 48.423682 ], [ 5.470062, 48.42093 ], [ 5.465177, 48.419995 ], [ 5.447148, 48.41499 ], [ 5.409779, 48.39262 ], [ 5.397763, 48.39259 ], [ 5.393838, 48.39157 ], [ 5.408839, 48.38303 ], [ 5.438413, 48.380864 ], [ 5.442884, 48.37939 ], [ 5.421257, 48.36335 ], [ 5.418555, 48.36069 ], [ 5.42237, 48.35175 ], [ 5.417157, 48.342622 ], [ 5.424574, 48.334216 ], [ 5.426048, 48.33106 ], [ 5.443838, 48.33683 ], [ 5.459888, 48.34948 ], [ 5.472422, 48.351535 ], [ 5.474496, 48.35457 ], [ 5.499385, 48.35455 ], [ 5.507063, 48.350159 ], [ 5.522169, 48.34862 ], [ 5.526527, 48.346856 ], [ 5.523022, 48.34051 ], [ 5.531164, 48.32816 ], [ 5.533514, 48.3251 ], [ 5.588128, 48.27732 ], [ 5.588425, 48.27376 ], [ 5.608996, 48.288858 ], [ 5.611652, 48.29181 ], [ 5.649556, 48.27029 ], [ 5.653809, 48.268524 ], [ 5.651579, 48.25797 ], [ 5.64946, 48.2547 ], [ 5.642055, 48.245749 ], [ 5.640901, 48.24235 ], [ 5.672188, 48.231009 ], [ 5.676344, 48.229016 ], [ 5.683443, 48.23294 ], [ 5.687792, 48.23418 ], [ 5.706542, 48.22194 ], [ 5.710844, 48.21994 ], [ 5.722288, 48.20595 ], [ 5.72451, 48.203075 ], [ 5.726909, 48.200508 ], [ 5.730055, 48.19832 ], [ 5.730983, 48.1897 ], [ 5.69977, 48.18967 ], [ 5.680173, 48.178674 ], [ 5.682299, 48.17548 ], [ 5.686525, 48.164079 ], [ 5.684222, 48.158234 ], [ 5.685843, 48.150941 ], [ 5.675079, 48.139247 ], [ 5.676706, 48.136311 ], [ 5.666767, 48.130206 ], [ 5.662513, 48.12879 ], [ 5.661573, 48.12561 ], [ 5.656558, 48.12055 ], [ 5.669706, 48.11224 ], [ 5.672119, 48.10944 ], [ 5.658664, 48.106017 ], [ 5.649393, 48.10505 ], [ 5.645839, 48.10252 ], [ 5.639085, 48.09728 ], [ 5.632878, 48.08437 ], [ 5.655767, 48.071364 ], [ 5.655564, 48.081237 ], [ 5.659139, 48.083668 ], [ 5.692078, 48.07555 ], [ 5.696278, 48.077566 ], [ 5.70029, 48.06744 ], [ 5.713371, 48.061623 ], [ 5.721281, 48.052725 ], [ 5.720627, 48.05202 ], [ 5.721596, 48.04526 ], [ 5.740804, 48.049012 ], [ 5.764225, 48.03154 ], [ 5.768818, 48.030033 ], [ 5.77682, 48.03364 ], [ 5.776273, 48.02525 ], [ 5.776419, 48.022407 ], [ 5.787321, 48.007417 ], [ 5.786418, 48.00402 ], [ 5.794917, 47.993694 ], [ 5.793592, 47.99071 ], [ 5.782448, 47.980041 ], [ 5.778492, 47.97801 ], [ 5.788412, 47.952696 ], [ 5.802464, 47.949714 ], [ 5.805268, 47.946973 ], [ 5.815285, 47.95692 ], [ 5.829489, 47.958036 ], [ 5.839732, 47.9648 ], [ 5.839894, 47.968087 ], [ 5.845841, 47.975696 ], [ 5.848679, 47.96961 ], [ 5.853561, 47.96988 ], [ 5.854239, 47.966037 ], [ 5.849925, 47.964359 ], [ 5.856384, 47.948371 ], [ 5.86448, 47.94588 ], [ 5.884687, 47.929263 ], [ 5.884726, 47.92605 ], [ 5.888909, 47.91304 ], [ 5.890458, 47.909759 ], [ 5.889189, 47.90737 ], [ 5.886494, 47.90263 ], [ 5.883191, 47.90026 ], [ 5.851353, 47.9059 ], [ 5.848194, 47.903435 ], [ 5.845094, 47.89709 ], [ 5.842544, 47.89423 ], [ 5.82186, 47.86911 ], [ 5.824676, 47.8594 ], [ 5.827301, 47.85467 ], [ 5.828521, 47.85195 ], [ 5.823562, 47.85229 ], [ 5.805625, 47.84732 ], [ 5.801098, 47.84698 ], [ 5.796619, 47.84982 ], [ 5.798883, 47.85571 ], [ 5.789061, 47.8552 ], [ 5.761192, 47.859343 ], [ 5.758832, 47.85667 ], [ 5.753406, 47.85165 ], [ 5.744204, 47.848855 ], [ 5.748488, 47.82977 ], [ 5.746056, 47.823596 ], [ 5.743349, 47.82115 ], [ 5.731428, 47.81763 ], [ 5.728007, 47.81845 ], [ 5.718716, 47.821082 ], [ 5.713646, 47.82157 ], [ 5.708478, 47.82197 ], [ 5.693678, 47.82175 ], [ 5.685751, 47.81278 ], [ 5.676612, 47.77916 ], [ 5.680107, 47.77774 ], [ 5.682247, 47.77539 ], [ 5.67997, 47.769968 ], [ 5.703353, 47.769574 ], [ 5.708914, 47.764664 ], [ 5.707806, 47.76152 ], [ 5.706342, 47.751116 ], [ 5.70942, 47.74495 ], [ 5.692378, 47.73693 ], [ 5.689648, 47.7339 ], [ 5.692494, 47.727885 ], [ 5.695895, 47.72518 ], [ 5.692512, 47.724 ], [ 5.685198, 47.722694 ], [ 5.687023, 47.72023 ], [ 5.684206, 47.71228 ], [ 5.69322, 47.70396 ], [ 5.694993, 47.69364 ], [ 5.693806, 47.69022 ], [ 5.692038, 47.687162 ], [ 5.675428, 47.682563 ], [ 5.667652, 47.685479 ], [ 5.663716, 47.684911 ], [ 5.659723, 47.68453 ], [ 5.659334, 47.681543 ], [ 5.653261, 47.677161 ], [ 5.648861, 47.675549 ], [ 5.629558, 47.67674 ], [ 5.61539, 47.67334 ], [ 5.606094, 47.675205 ], [ 5.60234, 47.67506 ], [ 5.596814, 47.671647 ], [ 5.585265, 47.69057 ], [ 5.583657, 47.70088 ], [ 5.575159, 47.70473 ], [ 5.571029, 47.706798 ], [ 5.567389, 47.70712 ], [ 5.565433, 47.7039 ], [ 5.530594, 47.67401 ], [ 5.510298, 47.67423 ], [ 5.506626, 47.67666 ], [ 5.502301, 47.67741 ], [ 5.48277, 47.684644 ], [ 5.478994, 47.6823 ], [ 5.46934, 47.67483 ], [ 5.444413, 47.67089 ], [ 5.434217, 47.67126 ], [ 5.421267, 47.67644 ], [ 5.406486, 47.67362 ], [ 5.398975, 47.653075 ], [ 5.401686, 47.64844 ], [ 5.405616, 47.64813 ], [ 5.4032, 47.64509 ], [ 5.387812, 47.636212 ], [ 5.37492, 47.621355 ], [ 5.374079, 47.604542 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "54", "CODE_DEPT": "53", "NOM_DEPT": "MAYENNE", "CODE_CHF": "130", "NOM_CHF": "LAVAL", "X_CHF_LIEU": "4193", "Y_CHF_LIEU": "67814", "X_CENTROID": "4280", "Y_CENTROID": "67892", "CODE_REG": "52", "NOM_REGION": "PAYS-DE-LA-LOIRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.381704, 47.76057 ], [ -0.38398, 47.76716 ], [ -0.409624, 47.77803 ], [ -0.414219, 47.775078 ], [ -0.410032, 47.76522 ], [ -0.414949, 47.76522 ], [ -0.429175, 47.76722 ], [ -0.453929, 47.75724 ], [ -0.45681, 47.760044 ], [ -0.480245, 47.777 ], [ -0.507134, 47.78507 ], [ -0.511455, 47.78553 ], [ -0.519889, 47.78652 ], [ -0.5221, 47.78398 ], [ -0.521709, 47.78069 ], [ -0.51835, 47.767697 ], [ -0.532922, 47.75069 ], [ -0.537758, 47.75149 ], [ -0.560372, 47.757435 ], [ -0.564982, 47.756835 ], [ -0.573109, 47.753704 ], [ -0.584648, 47.7584 ], [ -0.587755, 47.75593 ], [ -0.610818, 47.735689 ], [ -0.616059, 47.73597 ], [ -0.646242, 47.736906 ], [ -0.649406, 47.734554 ], [ -0.653787, 47.73338 ], [ -0.669841, 47.740754 ], [ -0.689884, 47.73969 ], [ -0.709257, 47.74377 ], [ -0.718459, 47.740885 ], [ -0.731594, 47.741891 ], [ -0.735166, 47.739497 ], [ -0.749702, 47.74161 ], [ -0.759625, 47.752932 ], [ -0.764392, 47.754013 ], [ -0.783388, 47.750193 ], [ -0.786308, 47.75292 ], [ -0.792946, 47.761507 ], [ -0.811744, 47.765357 ], [ -0.816068, 47.77123 ], [ -0.8354, 47.76962 ], [ -0.839295, 47.752282 ], [ -0.843281, 47.75364 ], [ -0.859867, 47.7581 ], [ -0.864606, 47.759136 ], [ -0.89317, 47.764506 ], [ -0.893041, 47.76786 ], [ -0.894399, 47.77125 ], [ -0.931935, 47.79351 ], [ -0.931138, 47.790325 ], [ -0.936498, 47.786855 ], [ -0.950554, 47.79553 ], [ -0.959761, 47.79633 ], [ -0.961986, 47.79352 ], [ -0.972097, 47.78315 ], [ -0.958546, 47.77912 ], [ -0.952266, 47.76999 ], [ -0.978457, 47.762 ], [ -0.982688, 47.76193 ], [ -0.986653, 47.762935 ], [ -0.990877, 47.76401 ], [ -0.999831, 47.76435 ], [ -1.006341, 47.76808 ], [ -1.015442, 47.76929 ], [ -1.020898, 47.77479 ], [ -1.033695, 47.77114 ], [ -1.043471, 47.77241 ], [ -1.047709, 47.773645 ], [ -1.075037, 47.77419 ], [ -1.075591, 47.77444 ], [ -1.080839, 47.7747 ], [ -1.09285, 47.7812 ], [ -1.13972, 47.78502 ], [ -1.139246, 47.7822 ], [ -1.137437, 47.77664 ], [ -1.140507, 47.77469 ], [ -1.165022, 47.778875 ], [ -1.177831, 47.784646 ], [ -1.193039, 47.786212 ], [ -1.199356, 47.795251 ], [ -1.209308, 47.796777 ], [ -1.215047, 47.80252 ], [ -1.238252, 47.80999 ], [ -1.227872, 47.82029 ], [ -1.223153, 47.819009 ], [ -1.220867, 47.821723 ], [ -1.216083, 47.836154 ], [ -1.214178, 47.84251 ], [ -1.222126, 47.850366 ], [ -1.217566, 47.85601 ], [ -1.213082, 47.857217 ], [ -1.206104, 47.858387 ], [ -1.203023, 47.85685 ], [ -1.191997, 47.86543 ], [ -1.189163, 47.86771 ], [ -1.197464, 47.87902 ], [ -1.197126, 47.885593 ], [ -1.192156, 47.89102 ], [ -1.179919, 47.89558 ], [ -1.176175, 47.897723 ], [ -1.175715, 47.91095 ], [ -1.168644, 47.915475 ], [ -1.163133, 47.928089 ], [ -1.167151, 47.93417 ], [ -1.162792, 47.937924 ], [ -1.159514, 47.939221 ], [ -1.161289, 47.95295 ], [ -1.152452, 47.966344 ], [ -1.148707, 47.968216 ], [ -1.129886, 47.97122 ], [ -1.1223, 47.98651 ], [ -1.107516, 47.988876 ], [ -1.098003, 47.987018 ], [ -1.092993, 47.98751 ], [ -1.083363, 47.9857 ], [ -1.078714, 47.984409 ], [ -1.072252, 47.982065 ], [ -1.06883, 47.982949 ], [ -1.050316, 47.984634 ], [ -1.035241, 47.99201 ], [ -1.030417, 47.992473 ], [ -1.021712, 47.9954 ], [ -1.017261, 48.00804 ], [ -1.021413, 48.01744 ], [ -1.033554, 48.03261 ], [ -1.028089, 48.03846 ], [ -1.033183, 48.051353 ], [ -1.029935, 48.057763 ], [ -1.028222, 48.06103 ], [ -1.021497, 48.0684 ], [ -1.025492, 48.069845 ], [ -1.040332, 48.078086 ], [ -1.04725, 48.086606 ], [ -1.049133, 48.089596 ], [ -1.052936, 48.10604 ], [ -1.057022, 48.12246 ], [ -1.059299, 48.12549 ], [ -1.060683, 48.148738 ], [ -1.068944, 48.159482 ], [ -1.073926, 48.1593 ], [ -1.072702, 48.16579 ], [ -1.079822, 48.17687 ], [ -1.078229, 48.17997 ], [ -1.074357, 48.200471 ], [ -1.07765, 48.20315 ], [ -1.081888, 48.205148 ], [ -1.08712, 48.21004 ], [ -1.08253, 48.21623 ], [ -1.0806, 48.2195 ], [ -1.098672, 48.25131 ], [ -1.099932, 48.26837 ], [ -1.093643, 48.27288 ], [ -1.08845, 48.29013 ], [ -1.065875, 48.30968 ], [ -1.06096, 48.31109 ], [ -1.059222, 48.31219 ], [ -1.04583, 48.329655 ], [ -1.053602, 48.33813 ], [ -1.05578, 48.34113 ], [ -1.059735, 48.36682 ], [ -1.064838, 48.36724 ], [ -1.057253, 48.37582 ], [ -1.05658, 48.379187 ], [ -1.052793, 48.38093 ], [ -1.064323, 48.399929 ], [ -1.079478, 48.4139 ], [ -1.079735, 48.41738 ], [ -1.078455, 48.4185 ], [ -1.078227, 48.42201 ], [ -1.081436, 48.438573 ], [ -1.068721, 48.448676 ], [ -1.065332, 48.45125 ], [ -1.06716, 48.460332 ], [ -1.064649, 48.466913 ], [ -1.073586, 48.474894 ], [ -1.077392, 48.491095 ], [ -1.07492, 48.501133 ], [ -1.06746, 48.50561 ], [ -1.070165, 48.50849 ], [ -1.062997, 48.51309 ], [ -1.060748, 48.515392 ], [ -1.011839, 48.492995 ], [ -1.002975, 48.48907 ], [ -0.973776, 48.49483 ], [ -0.963867, 48.50269 ], [ -0.96223, 48.51277 ], [ -0.953884, 48.51679 ], [ -0.944042, 48.51464 ], [ -0.923879, 48.513139 ], [ -0.918084, 48.50072 ], [ -0.909357, 48.497279 ], [ -0.899357, 48.49748 ], [ -0.896033, 48.49487 ], [ -0.864503, 48.49989 ], [ -0.860363, 48.50146 ], [ -0.845826, 48.49783 ], [ -0.826973, 48.477186 ], [ -0.821988, 48.47608 ], [ -0.81808, 48.47412 ], [ -0.818601, 48.468431 ], [ -0.815108, 48.45746 ], [ -0.812743, 48.45492 ], [ -0.793424, 48.465267 ], [ -0.777874, 48.46541 ], [ -0.773966, 48.44271 ], [ -0.760817, 48.436412 ], [ -0.756483, 48.436937 ], [ -0.715918, 48.4509 ], [ -0.735258, 48.462402 ], [ -0.730066, 48.47205 ], [ -0.725251, 48.47347 ], [ -0.716955, 48.47032 ], [ -0.703268, 48.472888 ], [ -0.702106, 48.46966 ], [ -0.692663, 48.46827 ], [ -0.687991, 48.46944 ], [ -0.68361, 48.47069 ], [ -0.68367, 48.47694 ], [ -0.669079, 48.483289 ], [ -0.66884, 48.486458 ], [ -0.658168, 48.474845 ], [ -0.653977, 48.45746 ], [ -0.653906, 48.453912 ], [ -0.654215, 48.44454 ], [ -0.613629, 48.46061 ], [ -0.598929, 48.47074 ], [ -0.594311, 48.47252 ], [ -0.593207, 48.47084 ], [ -0.575807, 48.470079 ], [ -0.571639, 48.46893 ], [ -0.567457, 48.474545 ], [ -0.564255, 48.47686 ], [ -0.562328, 48.473799 ], [ -0.553157, 48.47297 ], [ -0.53787, 48.488884 ], [ -0.534907, 48.49155 ], [ -0.518632, 48.497552 ], [ -0.512798, 48.50653 ], [ -0.509294, 48.50884 ], [ -0.492665, 48.50212 ], [ -0.48293, 48.50263 ], [ -0.478198, 48.50157 ], [ -0.466117, 48.51252 ], [ -0.455856, 48.51269 ], [ -0.450728, 48.51282 ], [ -0.446883, 48.51494 ], [ -0.428467, 48.51021 ], [ -0.424473, 48.50819 ], [ -0.425449, 48.50736 ], [ -0.400875, 48.50789 ], [ -0.397657, 48.51051 ], [ -0.393346, 48.50107 ], [ -0.389253, 48.49937 ], [ -0.375751, 48.4961 ], [ -0.371083, 48.495556 ], [ -0.365814, 48.48755 ], [ -0.353152, 48.483774 ], [ -0.353789, 48.496496 ], [ -0.336825, 48.50242 ], [ -0.334973, 48.50908 ], [ -0.320239, 48.522929 ], [ -0.312305, 48.52027 ], [ -0.308956, 48.51833 ], [ -0.290094, 48.516871 ], [ -0.285881, 48.515169 ], [ -0.285283, 48.50865 ], [ -0.27155, 48.50745 ], [ -0.26839, 48.52067 ], [ -0.250837, 48.528081 ], [ -0.243057, 48.537062 ], [ -0.260578, 48.54913 ], [ -0.257472, 48.551956 ], [ -0.249293, 48.556078 ], [ -0.246473, 48.56572 ], [ -0.242639, 48.568 ], [ -0.230695, 48.56195 ], [ -0.215792, 48.55979 ], [ -0.207346, 48.56252 ], [ -0.199584, 48.558236 ], [ -0.195862, 48.55591 ], [ -0.191725, 48.55168 ], [ -0.189492, 48.548622 ], [ -0.179251, 48.541649 ], [ -0.144604, 48.52775 ], [ -0.145388, 48.52116 ], [ -0.166668, 48.514706 ], [ -0.172087, 48.502137 ], [ -0.167477, 48.50297 ], [ -0.155678, 48.49331 ], [ -0.155447, 48.490138 ], [ -0.155064, 48.48716 ], [ -0.15017, 48.478953 ], [ -0.153516, 48.47695 ], [ -0.148132, 48.47161 ], [ -0.148946, 48.45879 ], [ -0.142193, 48.4543 ], [ -0.137842, 48.45282 ], [ -0.118485, 48.448233 ], [ -0.108255, 48.448024 ], [ -0.08034, 48.44971 ], [ -0.067327, 48.45723 ], [ -0.062548, 48.456514 ], [ -0.053345, 48.45351 ], [ -0.049827, 48.44723 ], [ -0.054087, 48.43391 ], [ -0.055219, 48.43059 ], [ -0.05758, 48.429084 ], [ -0.053658, 48.3935 ], [ -0.053479, 48.390188 ], [ -0.057247, 48.384779 ], [ -0.054531, 48.382003 ], [ -0.060081, 48.377503 ], [ -0.069332, 48.377848 ], [ -0.078791, 48.3702 ], [ -0.092307, 48.37461 ], [ -0.112164, 48.374246 ], [ -0.117513, 48.368262 ], [ -0.136317, 48.362723 ], [ -0.132777, 48.34571 ], [ -0.12222, 48.33831 ], [ -0.126558, 48.33926 ], [ -0.148068, 48.344142 ], [ -0.152716, 48.343046 ], [ -0.157998, 48.334522 ], [ -0.155774, 48.31747 ], [ -0.154882, 48.31408 ], [ -0.151639, 48.314018 ], [ -0.148392, 48.313897 ], [ -0.142301, 48.30842 ], [ -0.138609, 48.29495 ], [ -0.149338, 48.28368 ], [ -0.15104, 48.2774 ], [ -0.149973, 48.276253 ], [ -0.15234, 48.2732 ], [ -0.16458, 48.25916 ], [ -0.160959, 48.238806 ], [ -0.157622, 48.23619 ], [ -0.145406, 48.2219 ], [ -0.148927, 48.219703 ], [ -0.152524, 48.21383 ], [ -0.146837, 48.20501 ], [ -0.151311, 48.203674 ], [ -0.164727, 48.199614 ], [ -0.178705, 48.190386 ], [ -0.181799, 48.18832 ], [ -0.185908, 48.183438 ], [ -0.189927, 48.18131 ], [ -0.222508, 48.171953 ], [ -0.246636, 48.16015 ], [ -0.250213, 48.157918 ], [ -0.248305, 48.15491 ], [ -0.238886, 48.1488 ], [ -0.253808, 48.136529 ], [ -0.249608, 48.134961 ], [ -0.243429, 48.1327 ], [ -0.241139, 48.126954 ], [ -0.222963, 48.12272 ], [ -0.223729, 48.119848 ], [ -0.216316, 48.1132 ], [ -0.216521, 48.109706 ], [ -0.234647, 48.09782 ], [ -0.236383, 48.08753 ], [ -0.232358, 48.081714 ], [ -0.22338, 48.07841 ], [ -0.225994, 48.07168 ], [ -0.226776, 48.068421 ], [ -0.230942, 48.05898 ], [ -0.235426, 48.06046 ], [ -0.274233, 48.06446 ], [ -0.286069, 48.0584 ], [ -0.282795, 48.05629 ], [ -0.316466, 48.04586 ], [ -0.330357, 48.05038 ], [ -0.334153, 48.04859 ], [ -0.340504, 48.044065 ], [ -0.334475, 48.032374 ], [ -0.338154, 48.012139 ], [ -0.308993, 48.005604 ], [ -0.308526, 48.00565 ], [ -0.312453, 48.00107 ], [ -0.312033, 47.99435 ], [ -0.299537, 47.97663 ], [ -0.300459, 47.96666 ], [ -0.293238, 47.96204 ], [ -0.288351, 47.9613 ], [ -0.284638, 47.95917 ], [ -0.280183, 47.957819 ], [ -0.294033, 47.94549 ], [ -0.311674, 47.940308 ], [ -0.31392, 47.93828 ], [ -0.319993, 47.9353 ], [ -0.325124, 47.9361 ], [ -0.338703, 47.9325 ], [ -0.38484, 47.93084 ], [ -0.388983, 47.929185 ], [ -0.397652, 47.91827 ], [ -0.412853, 47.915837 ], [ -0.409521, 47.913196 ], [ -0.404047, 47.90035 ], [ -0.41104, 47.89536 ], [ -0.406808, 47.893691 ], [ -0.392576, 47.89233 ], [ -0.391195, 47.88916 ], [ -0.386293, 47.88852 ], [ -0.376839, 47.88727 ], [ -0.37087, 47.87511 ], [ -0.37161, 47.87179 ], [ -0.377995, 47.86672 ], [ -0.374966, 47.85761 ], [ -0.41203, 47.85763 ], [ -0.413312, 47.854866 ], [ -0.41099, 47.846637 ], [ -0.425496, 47.84934 ], [ -0.432478, 47.84078 ], [ -0.447914, 47.832035 ], [ -0.444321, 47.82986 ], [ -0.43408, 47.80905 ], [ -0.430168, 47.80707 ], [ -0.416994, 47.802672 ], [ -0.388201, 47.805319 ], [ -0.387144, 47.804268 ], [ -0.385203, 47.801288 ], [ -0.38008, 47.782338 ], [ -0.378805, 47.779096 ], [ -0.375843, 47.7659 ], [ -0.381704, 47.76057 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "55", "CODE_DEPT": "54", "NOM_DEPT": "MEURTHE-ET-MOSELLE", "CODE_CHF": "395", "NOM_CHF": "NANCY", "X_CHF_LIEU": "9342", "Y_CHF_LIEU": "68483", "X_CENTROID": "9324", "Y_CENTROID": "68587", "CODE_REG": "41", "NOM_REGION": "LORRAINE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.123165, 48.51359 ], [ 7.088409, 48.51003 ], [ 7.083761, 48.50849 ], [ 7.078427, 48.50736 ], [ 7.058079, 48.49912 ], [ 7.05366, 48.497718 ], [ 7.050706, 48.49544 ], [ 7.028723, 48.49209 ], [ 7.007433, 48.4818 ], [ 6.986537, 48.48015 ], [ 6.981908, 48.47843 ], [ 6.977808, 48.476702 ], [ 6.965827, 48.47144 ], [ 6.93055, 48.442644 ], [ 6.921954, 48.43939 ], [ 6.918228, 48.43553 ], [ 6.914972, 48.4329 ], [ 6.892421, 48.41919 ], [ 6.88266, 48.41712 ], [ 6.869862, 48.42248 ], [ 6.864557, 48.43553 ], [ 6.855054, 48.433116 ], [ 6.8532, 48.42999 ], [ 6.849189, 48.42383 ], [ 6.827695, 48.4156 ], [ 6.826331, 48.41248 ], [ 6.815027, 48.39507 ], [ 6.797637, 48.402021 ], [ 6.785782, 48.39613 ], [ 6.785524, 48.401932 ], [ 6.780436, 48.402283 ], [ 6.775474, 48.40138 ], [ 6.765889, 48.40164 ], [ 6.760057, 48.41105 ], [ 6.739562, 48.41201 ], [ 6.738843, 48.415402 ], [ 6.734617, 48.417048 ], [ 6.724907, 48.41616 ], [ 6.712979, 48.4214 ], [ 6.698644, 48.41286 ], [ 6.694155, 48.41443 ], [ 6.685584, 48.418006 ], [ 6.682938, 48.424456 ], [ 6.679525, 48.42171 ], [ 6.676469, 48.423468 ], [ 6.66941, 48.426055 ], [ 6.659226, 48.42613 ], [ 6.644798, 48.428616 ], [ 6.647149, 48.43168 ], [ 6.644486, 48.441666 ], [ 6.636392, 48.450272 ], [ 6.638711, 48.46048 ], [ 6.635397, 48.470502 ], [ 6.63083, 48.472029 ], [ 6.620728, 48.47244 ], [ 6.607558, 48.46723 ], [ 6.597506, 48.46697 ], [ 6.596062, 48.46468 ], [ 6.594471, 48.46241 ], [ 6.584766, 48.45988 ], [ 6.568563, 48.438238 ], [ 6.583871, 48.417225 ], [ 6.578736, 48.415534 ], [ 6.544568, 48.42762 ], [ 6.540543, 48.42794 ], [ 6.534394, 48.43146 ], [ 6.530202, 48.4295 ], [ 6.518029, 48.423511 ], [ 6.513622, 48.421553 ], [ 6.501792, 48.41456 ], [ 6.496649, 48.41494 ], [ 6.486985, 48.41628 ], [ 6.482636, 48.414966 ], [ 6.471325, 48.409201 ], [ 6.466929, 48.41043 ], [ 6.456866, 48.41702 ], [ 6.448213, 48.414405 ], [ 6.443482, 48.413021 ], [ 6.424666, 48.40823 ], [ 6.412688, 48.39332 ], [ 6.402911, 48.392256 ], [ 6.400678, 48.39536 ], [ 6.395929, 48.39469 ], [ 6.387395, 48.392143 ], [ 6.384241, 48.39461 ], [ 6.384043, 48.39952 ], [ 6.39045, 48.4045 ], [ 6.376792, 48.411896 ], [ 6.363617, 48.407867 ], [ 6.362428, 48.40745 ], [ 6.358962, 48.404865 ], [ 6.353963, 48.403881 ], [ 6.336509, 48.40459 ], [ 6.331346, 48.40486 ], [ 6.30818, 48.41195 ], [ 6.303381, 48.42854 ], [ 6.297438, 48.43367 ], [ 6.285143, 48.42942 ], [ 6.279505, 48.42405 ], [ 6.270298, 48.426101 ], [ 6.268672, 48.422805 ], [ 6.260443, 48.4064 ], [ 6.255765, 48.40641 ], [ 6.242664, 48.404052 ], [ 6.233339, 48.397113 ], [ 6.232097, 48.40023 ], [ 6.221955, 48.400664 ], [ 6.201743, 48.399375 ], [ 6.200161, 48.39804 ], [ 6.17842, 48.39761 ], [ 6.1788, 48.400542 ], [ 6.18273, 48.408954 ], [ 6.178927, 48.410461 ], [ 6.177176, 48.40745 ], [ 6.163188, 48.40579 ], [ 6.149421, 48.40827 ], [ 6.147421, 48.40783 ], [ 6.152327, 48.381648 ], [ 6.14879, 48.37923 ], [ 6.132707, 48.362684 ], [ 6.125088, 48.367261 ], [ 6.122831, 48.364754 ], [ 6.11705, 48.353841 ], [ 6.112344, 48.3549 ], [ 6.102617, 48.35628 ], [ 6.093755, 48.363852 ], [ 6.098286, 48.36485 ], [ 6.091215, 48.382258 ], [ 6.087498, 48.3834 ], [ 6.076707, 48.37985 ], [ 6.073746, 48.37752 ], [ 6.079825, 48.36364 ], [ 6.075185, 48.362156 ], [ 6.071492, 48.359767 ], [ 6.066434, 48.35945 ], [ 6.061359, 48.35975 ], [ 6.058422, 48.362 ], [ 6.047337, 48.365613 ], [ 6.046914, 48.36227 ], [ 6.032763, 48.361026 ], [ 6.024946, 48.35689 ], [ 6.020291, 48.36145 ], [ 6.01525, 48.360951 ], [ 6.005127, 48.360416 ], [ 5.992951, 48.35442 ], [ 5.988254, 48.35497 ], [ 5.982558, 48.35004 ], [ 5.973706, 48.35187 ], [ 5.96481, 48.35006 ], [ 5.960272, 48.351021 ], [ 5.955419, 48.356481 ], [ 5.954123, 48.359386 ], [ 5.956472, 48.36729 ], [ 5.95189, 48.36678 ], [ 5.952599, 48.37267 ], [ 5.944654, 48.37582 ], [ 5.947487, 48.37862 ], [ 5.954939, 48.387374 ], [ 5.952035, 48.390066 ], [ 5.949585, 48.3965 ], [ 5.94698, 48.39826 ], [ 5.941116, 48.40074 ], [ 5.937153, 48.40217 ], [ 5.92769, 48.393686 ], [ 5.925022, 48.396039 ], [ 5.920503, 48.40107 ], [ 5.918091, 48.404141 ], [ 5.91004, 48.40476 ], [ 5.909567, 48.41893 ], [ 5.91439, 48.424938 ], [ 5.924594, 48.424552 ], [ 5.931327, 48.433946 ], [ 5.926762, 48.4353 ], [ 5.898036, 48.43595 ], [ 5.907931, 48.42799 ], [ 5.896968, 48.40848 ], [ 5.878184, 48.40301 ], [ 5.870039, 48.406133 ], [ 5.865014, 48.40697 ], [ 5.855383, 48.409377 ], [ 5.856315, 48.41184 ], [ 5.85934, 48.4165 ], [ 5.882079, 48.43337 ], [ 5.884003, 48.43638 ], [ 5.885263, 48.437885 ], [ 5.897314, 48.44861 ], [ 5.886837, 48.456175 ], [ 5.888609, 48.46945 ], [ 5.9043, 48.48293 ], [ 5.898792, 48.48544 ], [ 5.901508, 48.4885 ], [ 5.905902, 48.49498 ], [ 5.901013, 48.49401 ], [ 5.876608, 48.49748 ], [ 5.865923, 48.5042 ], [ 5.862241, 48.50649 ], [ 5.83778, 48.50481 ], [ 5.836407, 48.500708 ], [ 5.831799, 48.50016 ], [ 5.824376, 48.49639 ], [ 5.810772, 48.4983 ], [ 5.809221, 48.495125 ], [ 5.792136, 48.48864 ], [ 5.787024, 48.48291 ], [ 5.783684, 48.485546 ], [ 5.778599, 48.486187 ], [ 5.774739, 48.48846 ], [ 5.765155, 48.49649 ], [ 5.76487, 48.49983 ], [ 5.762777, 48.51614 ], [ 5.760971, 48.52147 ], [ 5.761889, 48.524752 ], [ 5.766914, 48.534203 ], [ 5.77559, 48.537322 ], [ 5.776375, 48.54062 ], [ 5.772728, 48.541899 ], [ 5.762875, 48.5463 ], [ 5.757625, 48.54675 ], [ 5.744353, 48.552431 ], [ 5.728643, 48.55354 ], [ 5.725255, 48.55565 ], [ 5.715484, 48.5623 ], [ 5.71413, 48.56494 ], [ 5.714943, 48.5733 ], [ 5.713341, 48.57668 ], [ 5.717988, 48.591209 ], [ 5.722763, 48.592243 ], [ 5.741515, 48.596664 ], [ 5.754818, 48.6063 ], [ 5.764234, 48.60778 ], [ 5.769398, 48.60842 ], [ 5.789908, 48.60719 ], [ 5.793323, 48.60887 ], [ 5.798026, 48.61356 ], [ 5.7975, 48.61667 ], [ 5.803519, 48.625138 ], [ 5.799433, 48.62693 ], [ 5.790067, 48.62798 ], [ 5.764339, 48.619024 ], [ 5.760452, 48.621 ], [ 5.758376, 48.62129 ], [ 5.759203, 48.6246 ], [ 5.760946, 48.63114 ], [ 5.756326, 48.637004 ], [ 5.752287, 48.641544 ], [ 5.749915, 48.64447 ], [ 5.74451, 48.656898 ], [ 5.747463, 48.659845 ], [ 5.748918, 48.666849 ], [ 5.746144, 48.66966 ], [ 5.755881, 48.69197 ], [ 5.757173, 48.69456 ], [ 5.764601, 48.701083 ], [ 5.760421, 48.702764 ], [ 5.751104, 48.71381 ], [ 5.733023, 48.72381 ], [ 5.732055, 48.724557 ], [ 5.728777, 48.72663 ], [ 5.719037, 48.73291 ], [ 5.724748, 48.73805 ], [ 5.714041, 48.744623 ], [ 5.719113, 48.748216 ], [ 5.732567, 48.75018 ], [ 5.743127, 48.757178 ], [ 5.736559, 48.762477 ], [ 5.740039, 48.77224 ], [ 5.766159, 48.78905 ], [ 5.776455, 48.790066 ], [ 5.776984, 48.793356 ], [ 5.778491, 48.7999 ], [ 5.774231, 48.7987 ], [ 5.762412, 48.79391 ], [ 5.759356, 48.79586 ], [ 5.758209, 48.80123 ], [ 5.762901, 48.802628 ], [ 5.774308, 48.813208 ], [ 5.78135, 48.83537 ], [ 5.777993, 48.837851 ], [ 5.775159, 48.85708 ], [ 5.771704, 48.85776 ], [ 5.769401, 48.85959 ], [ 5.768135, 48.86297 ], [ 5.765203, 48.872991 ], [ 5.773466, 48.874725 ], [ 5.777443, 48.87614 ], [ 5.782274, 48.876672 ], [ 5.786585, 48.8782 ], [ 5.787991, 48.887895 ], [ 5.770036, 48.895124 ], [ 5.757243, 48.90996 ], [ 5.756831, 48.91299 ], [ 5.753148, 48.91305 ], [ 5.750108, 48.91418 ], [ 5.747025, 48.91526 ], [ 5.751909, 48.921124 ], [ 5.776647, 48.92516 ], [ 5.79958, 48.94632 ], [ 5.81282, 48.94358 ], [ 5.817226, 48.94245 ], [ 5.831351, 48.94397 ], [ 5.842413, 48.95217 ], [ 5.84727, 48.951793 ], [ 5.848573, 48.954866 ], [ 5.849168, 48.96123 ], [ 5.8304, 48.97619 ], [ 5.817812, 48.98024 ], [ 5.812928, 48.98067 ], [ 5.804394, 48.98389 ], [ 5.802736, 48.987116 ], [ 5.821367, 49.00341 ], [ 5.817407, 49.00806 ], [ 5.814064, 49.005431 ], [ 5.815, 49.00857 ], [ 5.829622, 49.02741 ], [ 5.829903, 49.030558 ], [ 5.853476, 49.04045 ], [ 5.851206, 49.043469 ], [ 5.838473, 49.05315 ], [ 5.836058, 49.06606 ], [ 5.831265, 49.06454 ], [ 5.805944, 49.06346 ], [ 5.805771, 49.06658 ], [ 5.808172, 49.07577 ], [ 5.810402, 49.078782 ], [ 5.819334, 49.08637 ], [ 5.823213, 49.08868 ], [ 5.817853, 49.11104 ], [ 5.812824, 49.11129 ], [ 5.807797, 49.11134 ], [ 5.802818, 49.11228 ], [ 5.777362, 49.11164 ], [ 5.778497, 49.10905 ], [ 5.772557, 49.10535 ], [ 5.768537, 49.10678 ], [ 5.755118, 49.11419 ], [ 5.748301, 49.12312 ], [ 5.754527, 49.132202 ], [ 5.771796, 49.13979 ], [ 5.767645, 49.140124 ], [ 5.755974, 49.142389 ], [ 5.757448, 49.14561 ], [ 5.759572, 49.14868 ], [ 5.758935, 49.15215 ], [ 5.749182, 49.15496 ], [ 5.7464, 49.161482 ], [ 5.764739, 49.194059 ], [ 5.765774, 49.1975 ], [ 5.761112, 49.20146 ], [ 5.757366, 49.20098 ], [ 5.750386, 49.19854 ], [ 5.745193, 49.1982 ], [ 5.730304, 49.19517 ], [ 5.723192, 49.199306 ], [ 5.726491, 49.20175 ], [ 5.719916, 49.217164 ], [ 5.728719, 49.22498 ], [ 5.73345, 49.226132 ], [ 5.740556, 49.230117 ], [ 5.737341, 49.232448 ], [ 5.725272, 49.24478 ], [ 5.720933, 49.247707 ], [ 5.728497, 49.25668 ], [ 5.725312, 49.266381 ], [ 5.724722, 49.26978 ], [ 5.760905, 49.27961 ], [ 5.768283, 49.299781 ], [ 5.7638, 49.31137 ], [ 5.7629, 49.314332 ], [ 5.759984, 49.315379 ], [ 5.756975, 49.314422 ], [ 5.753468, 49.31188 ], [ 5.749166, 49.30989 ], [ 5.732039, 49.31093 ], [ 5.720819, 49.33008 ], [ 5.737194, 49.33887 ], [ 5.739328, 49.34586 ], [ 5.737916, 49.349089 ], [ 5.737564, 49.35568 ], [ 5.731571, 49.361087 ], [ 5.726699, 49.36218 ], [ 5.712225, 49.36346 ], [ 5.714375, 49.36925 ], [ 5.707787, 49.38411 ], [ 5.704749, 49.386855 ], [ 5.687281, 49.393747 ], [ 5.694297, 49.39986 ], [ 5.69213, 49.402156 ], [ 5.691872, 49.40539 ], [ 5.6918, 49.41509 ], [ 5.682024, 49.414504 ], [ 5.676869, 49.41902 ], [ 5.633554, 49.43787 ], [ 5.630124, 49.435248 ], [ 5.616183, 49.430362 ], [ 5.61691, 49.423511 ], [ 5.607205, 49.422435 ], [ 5.606563, 49.419013 ], [ 5.598517, 49.4232 ], [ 5.584345, 49.41881 ], [ 5.570027, 49.42248 ], [ 5.568345, 49.420001 ], [ 5.563085, 49.41928 ], [ 5.552529, 49.41824 ], [ 5.531254, 49.407743 ], [ 5.49917, 49.40745 ], [ 5.496634, 49.39438 ], [ 5.485008, 49.38329 ], [ 5.480988, 49.38248 ], [ 5.473871, 49.38917 ], [ 5.476893, 49.39529 ], [ 5.462875, 49.39689 ], [ 5.446816, 49.40399 ], [ 5.447164, 49.40407 ], [ 5.452186, 49.40507 ], [ 5.471776, 49.40924 ], [ 5.478992, 49.40426 ], [ 5.493942, 49.40707 ], [ 5.506772, 49.4215 ], [ 5.498186, 49.424384 ], [ 5.494264, 49.422261 ], [ 5.471244, 49.42804 ], [ 5.479012, 49.432736 ], [ 5.485193, 49.445388 ], [ 5.482348, 49.448162 ], [ 5.467361, 49.45001 ], [ 5.464134, 49.4526 ], [ 5.468359, 49.458735 ], [ 5.471172, 49.46157 ], [ 5.467072, 49.46296 ], [ 5.464264, 49.471165 ], [ 5.463647, 49.4822 ], [ 5.473769, 49.482598 ], [ 5.476665, 49.48513 ], [ 5.482492, 49.49376 ], [ 5.47917, 49.49558 ], [ 5.470911, 49.497214 ], [ 5.484815, 49.506686 ], [ 5.526401, 49.51139 ], [ 5.531456, 49.51252 ], [ 5.533447, 49.513412 ], [ 5.542475, 49.51697 ], [ 5.553983, 49.527872 ], [ 5.569193, 49.52734 ], [ 5.593826, 49.52136 ], [ 5.607102, 49.50699 ], [ 5.610984, 49.50593 ], [ 5.61742, 49.51435 ], [ 5.621111, 49.520649 ], [ 5.617958, 49.530347 ], [ 5.628092, 49.538059 ], [ 5.632798, 49.53956 ], [ 5.632922, 49.54306 ], [ 5.645203, 49.54969 ], [ 5.660806, 49.552354 ], [ 5.669231, 49.54851 ], [ 5.679833, 49.548293 ], [ 5.698123, 49.54234 ], [ 5.701263, 49.53952 ], [ 5.721682, 49.541013 ], [ 5.730061, 49.544475 ], [ 5.742718, 49.539271 ], [ 5.757155, 49.542568 ], [ 5.758513, 49.5591 ], [ 5.772744, 49.56255 ], [ 5.815257, 49.54494 ], [ 5.810482, 49.54354 ], [ 5.815282, 49.53933 ], [ 5.817199, 49.537 ], [ 5.836173, 49.54178 ], [ 5.844181, 49.52967 ], [ 5.835261, 49.52652 ], [ 5.836046, 49.519957 ], [ 5.864012, 49.50125 ], [ 5.888261, 49.497338 ], [ 5.893402, 49.49692 ], [ 5.898435, 49.48431 ], [ 5.897027, 49.481138 ], [ 5.904673, 49.48453 ], [ 5.912982, 49.482078 ], [ 5.917527, 49.48262 ], [ 5.925328, 49.48484 ], [ 5.929609, 49.48535 ], [ 5.935571, 49.47829 ], [ 5.939797, 49.47738 ], [ 5.934477, 49.47171 ], [ 5.941863, 49.452446 ], [ 5.930767, 49.446554 ], [ 5.940797, 49.4338 ], [ 5.942283, 49.430355 ], [ 5.937777, 49.42873 ], [ 5.928285, 49.42647 ], [ 5.919719, 49.41814 ], [ 5.915632, 49.409513 ], [ 5.91184, 49.40753 ], [ 5.91579, 49.405965 ], [ 5.919901, 49.40458 ], [ 5.929677, 49.40148 ], [ 5.935039, 49.38094 ], [ 5.924782, 49.37305 ], [ 5.933406, 49.369443 ], [ 5.941007, 49.36071 ], [ 5.95104, 49.362034 ], [ 5.956124, 49.361595 ], [ 5.963582, 49.34662 ], [ 5.973406, 49.345321 ], [ 5.978376, 49.34486 ], [ 5.973218, 49.34445 ], [ 5.962819, 49.34486 ], [ 5.943394, 49.34029 ], [ 5.943314, 49.336946 ], [ 5.949495, 49.32806 ], [ 5.969991, 49.318536 ], [ 5.985221, 49.30517 ], [ 5.988107, 49.307492 ], [ 5.997125, 49.31424 ], [ 6.005021, 49.30972 ], [ 6.002952, 49.28907 ], [ 6.001631, 49.285747 ], [ 6.000446, 49.27553 ], [ 6.009838, 49.27247 ], [ 6.007822, 49.27043 ], [ 6.009836, 49.26608 ], [ 6.007922, 49.25941 ], [ 6.029172, 49.250036 ], [ 6.025889, 49.24349 ], [ 6.027876, 49.23331 ], [ 6.030761, 49.23308 ], [ 6.014515, 49.221875 ], [ 6.009565, 49.221792 ], [ 5.999638, 49.210956 ], [ 6.003519, 49.20897 ], [ 5.995509, 49.20749 ], [ 5.987627, 49.209617 ], [ 5.98441, 49.207412 ], [ 5.986235, 49.201438 ], [ 5.978771, 49.19486 ], [ 5.979529, 49.19299 ], [ 5.982116, 49.18715 ], [ 5.985181, 49.184838 ], [ 6.005027, 49.182715 ], [ 6.017339, 49.17189 ], [ 6.031132, 49.16749 ], [ 6.027936, 49.16492 ], [ 6.019092, 49.161958 ], [ 6.010886, 49.15368 ], [ 6.006477, 49.15334 ], [ 5.999566, 49.15575 ], [ 5.990328, 49.15445 ], [ 5.994304, 49.14873 ], [ 5.982262, 49.14397 ], [ 5.984418, 49.14116 ], [ 5.986154, 49.137966 ], [ 5.993989, 49.13356 ], [ 5.990612, 49.12754 ], [ 6.002144, 49.116469 ], [ 6.004983, 49.1139 ], [ 6.002705, 49.11078 ], [ 5.993738, 49.10787 ], [ 5.972667, 49.10822 ], [ 5.967699, 49.108336 ], [ 5.947825, 49.10878 ], [ 5.931603, 49.109104 ], [ 5.927818, 49.0996 ], [ 5.925645, 49.092901 ], [ 5.941603, 49.08054 ], [ 5.93473, 49.0755 ], [ 5.935207, 49.07208 ], [ 5.936821, 49.06889 ], [ 5.95037, 49.064908 ], [ 5.951719, 49.061663 ], [ 5.955657, 49.05003 ], [ 5.957792, 49.047378 ], [ 5.966914, 49.04651 ], [ 5.972448, 49.04156 ], [ 5.981175, 49.043389 ], [ 5.98541, 49.04205 ], [ 5.992056, 49.03981 ], [ 5.994968, 49.038097 ], [ 6.001616, 49.03519 ], [ 6.005445, 49.034425 ], [ 6.012649, 49.03735 ], [ 6.019487, 49.02456 ], [ 6.030663, 49.01701 ], [ 6.040883, 49.01491 ], [ 6.044965, 49.008935 ], [ 6.0432, 49.001925 ], [ 6.043815, 48.98909 ], [ 6.033896, 48.98478 ], [ 6.041341, 48.98046 ], [ 6.043435, 48.97748 ], [ 6.06144, 48.978873 ], [ 6.064765, 48.98101 ], [ 6.073834, 48.979015 ], [ 6.071029, 48.972725 ], [ 6.077312, 48.967785 ], [ 6.079195, 48.96474 ], [ 6.081323, 48.96305 ], [ 6.094718, 48.96789 ], [ 6.099614, 48.96885 ], [ 6.114238, 48.967227 ], [ 6.124748, 48.95607 ], [ 6.123214, 48.949418 ], [ 6.128252, 48.94936 ], [ 6.125142, 48.9399 ], [ 6.141559, 48.93305 ], [ 6.146544, 48.93258 ], [ 6.149731, 48.93332 ], [ 6.150023, 48.939285 ], [ 6.161467, 48.943699 ], [ 6.165301, 48.942041 ], [ 6.170431, 48.94216 ], [ 6.175165, 48.936236 ], [ 6.200807, 48.93713 ], [ 6.205897, 48.93769 ], [ 6.205768, 48.939588 ], [ 6.220643, 48.93823 ], [ 6.225117, 48.9293 ], [ 6.234795, 48.92789 ], [ 6.237097, 48.92493 ], [ 6.247297, 48.92488 ], [ 6.258243, 48.93173 ], [ 6.262562, 48.933509 ], [ 6.271237, 48.93331 ], [ 6.277034, 48.927966 ], [ 6.283947, 48.92842 ], [ 6.287794, 48.92769 ], [ 6.2884, 48.916323 ], [ 6.306997, 48.9195 ], [ 6.311181, 48.92107 ], [ 6.310847, 48.91175 ], [ 6.324395, 48.90751 ], [ 6.327517, 48.904873 ], [ 6.325839, 48.89593 ], [ 6.321088, 48.89463 ], [ 6.311501, 48.8922 ], [ 6.297384, 48.88247 ], [ 6.308444, 48.87826 ], [ 6.308081, 48.87534 ], [ 6.310919, 48.87276 ], [ 6.312126, 48.86642 ], [ 6.305417, 48.86369 ], [ 6.297463, 48.86648 ], [ 6.299103, 48.85533 ], [ 6.300111, 48.85252 ], [ 6.295087, 48.85179 ], [ 6.285472, 48.849429 ], [ 6.288014, 48.84367 ], [ 6.307404, 48.83376 ], [ 6.31625, 48.83692 ], [ 6.329999, 48.83571 ], [ 6.334824, 48.83461 ], [ 6.339647, 48.83349 ], [ 6.331992, 48.825728 ], [ 6.318345, 48.829357 ], [ 6.301116, 48.824253 ], [ 6.30468, 48.82241 ], [ 6.308785, 48.82115 ], [ 6.331522, 48.82327 ], [ 6.333754, 48.82046 ], [ 6.336054, 48.81294 ], [ 6.339339, 48.81103 ], [ 6.353939, 48.812989 ], [ 6.357369, 48.81058 ], [ 6.347483, 48.803934 ], [ 6.354861, 48.79534 ], [ 6.355453, 48.79204 ], [ 6.358564, 48.779633 ], [ 6.366691, 48.78293 ], [ 6.370878, 48.7847 ], [ 6.383904, 48.780763 ], [ 6.388744, 48.78061 ], [ 6.394874, 48.77476 ], [ 6.42867, 48.78767 ], [ 6.43311, 48.7891 ], [ 6.44207, 48.78098 ], [ 6.451275, 48.77908 ], [ 6.454219, 48.769234 ], [ 6.453603, 48.765894 ], [ 6.461365, 48.767326 ], [ 6.485482, 48.76587 ], [ 6.490392, 48.76496 ], [ 6.507983, 48.754369 ], [ 6.506608, 48.74849 ], [ 6.511382, 48.74884 ], [ 6.519434, 48.75275 ], [ 6.53421, 48.749598 ], [ 6.538634, 48.75139 ], [ 6.543982, 48.753756 ], [ 6.547622, 48.75462 ], [ 6.562184, 48.75611 ], [ 6.564859, 48.749425 ], [ 6.584287, 48.73317 ], [ 6.589493, 48.73248 ], [ 6.59851, 48.71876 ], [ 6.598966, 48.71569 ], [ 6.616654, 48.71471 ], [ 6.629055, 48.71107 ], [ 6.637589, 48.70312 ], [ 6.642411, 48.702432 ], [ 6.657733, 48.70774 ], [ 6.661575, 48.70608 ], [ 6.674735, 48.69183 ], [ 6.670752, 48.686436 ], [ 6.670491, 48.673046 ], [ 6.666421, 48.67104 ], [ 6.668962, 48.667339 ], [ 6.688766, 48.68213 ], [ 6.694358, 48.673136 ], [ 6.704312, 48.672395 ], [ 6.708674, 48.67064 ], [ 6.722859, 48.66709 ], [ 6.726081, 48.664422 ], [ 6.738556, 48.667588 ], [ 6.752396, 48.66722 ], [ 6.75513, 48.66988 ], [ 6.759914, 48.669672 ], [ 6.760279, 48.65812 ], [ 6.762831, 48.65542 ], [ 6.763951, 48.6521 ], [ 6.777492, 48.653474 ], [ 6.776732, 48.65049 ], [ 6.774114, 48.647917 ], [ 6.780104, 48.644674 ], [ 6.782626, 48.642721 ], [ 6.813799, 48.64682 ], [ 6.834472, 48.64371 ], [ 6.839311, 48.63743 ], [ 6.842629, 48.63248 ], [ 6.842835, 48.629725 ], [ 6.847891, 48.62384 ], [ 6.857471, 48.620939 ], [ 6.893295, 48.625005 ], [ 6.901083, 48.621589 ], [ 6.905394, 48.61983 ], [ 6.917507, 48.624318 ], [ 6.918856, 48.63053 ], [ 6.925352, 48.63472 ], [ 6.930007, 48.63555 ], [ 6.942476, 48.618 ], [ 6.939742, 48.61506 ], [ 6.957241, 48.60974 ], [ 6.961836, 48.60872 ], [ 6.987682, 48.61211 ], [ 6.991258, 48.609493 ], [ 6.993192, 48.60991 ], [ 7.005991, 48.60944 ], [ 7.008742, 48.611841 ], [ 7.015156, 48.60409 ], [ 6.995388, 48.593854 ], [ 7.019187, 48.580901 ], [ 7.029071, 48.58022 ], [ 7.034245, 48.580418 ], [ 7.044708, 48.56228 ], [ 7.057114, 48.55146 ], [ 7.082511, 48.541696 ], [ 7.062191, 48.540132 ], [ 7.057235, 48.53919 ], [ 7.074798, 48.537232 ], [ 7.07936, 48.53642 ], [ 7.07538, 48.53477 ], [ 7.065385, 48.5243 ], [ 7.068664, 48.52252 ], [ 7.077105, 48.51634 ], [ 7.08063, 48.51267 ], [ 7.083459, 48.51558 ], [ 7.103796, 48.517641 ], [ 7.123165, 48.51359 ] ] ], [ [ [ 5.42599, 49.48614 ], [ 5.433874, 49.49086 ], [ 5.43974, 49.500453 ], [ 5.442003, 49.503618 ], [ 5.465225, 49.48689 ], [ 5.456238, 49.484258 ], [ 5.455555, 49.48094 ], [ 5.451653, 49.48333 ], [ 5.42599, 49.48614 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "56", "CODE_DEPT": "55", "NOM_DEPT": "MEUSE", "CODE_CHF": "029", "NOM_CHF": "BAR-LE-DUC", "X_CHF_LIEU": "8592", "Y_CHF_LIEU": "68545", "X_CENTROID": "8742", "Y_CENTROID": "68792", "CODE_REG": "41", "NOM_REGION": "LORRAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.765155, 48.49649 ], [ 5.760795, 48.49445 ], [ 5.746109, 48.47625 ], [ 5.74243, 48.474498 ], [ 5.740613, 48.46537 ], [ 5.735324, 48.46516 ], [ 5.715639, 48.460378 ], [ 5.695076, 48.463449 ], [ 5.689593, 48.467381 ], [ 5.684919, 48.46836 ], [ 5.676378, 48.47153 ], [ 5.656871, 48.47126 ], [ 5.653333, 48.46901 ], [ 5.644529, 48.47187 ], [ 5.641988, 48.472203 ], [ 5.639804, 48.46915 ], [ 5.651446, 48.45818 ], [ 5.649849, 48.454962 ], [ 5.644971, 48.454044 ], [ 5.626986, 48.44888 ], [ 5.623837, 48.44596 ], [ 5.61883, 48.43049 ], [ 5.615055, 48.44051 ], [ 5.610061, 48.441568 ], [ 5.589323, 48.44213 ], [ 5.580391, 48.43848 ], [ 5.576649, 48.43197 ], [ 5.566636, 48.434108 ], [ 5.567996, 48.4373 ], [ 5.560827, 48.44147 ], [ 5.556327, 48.4399 ], [ 5.534464, 48.432297 ], [ 5.515417, 48.42998 ], [ 5.509929, 48.41702 ], [ 5.513904, 48.4108 ], [ 5.509008, 48.40991 ], [ 5.470062, 48.42093 ], [ 5.468366, 48.423682 ], [ 5.464657, 48.42535 ], [ 5.455491, 48.42252 ], [ 5.44593, 48.42484 ], [ 5.444199, 48.42803 ], [ 5.439576, 48.4342 ], [ 5.429225, 48.43441 ], [ 5.409502, 48.44554 ], [ 5.403949, 48.455175 ], [ 5.406055, 48.465393 ], [ 5.403623, 48.46785 ], [ 5.40115, 48.470299 ], [ 5.398074, 48.473187 ], [ 5.377321, 48.47191 ], [ 5.369382, 48.47655 ], [ 5.368678, 48.47625 ], [ 5.363594, 48.477271 ], [ 5.34947, 48.481989 ], [ 5.346954, 48.48505 ], [ 5.327505, 48.509 ], [ 5.317018, 48.50891 ], [ 5.30559, 48.51576 ], [ 5.302655, 48.513091 ], [ 5.295728, 48.508329 ], [ 5.292344, 48.50931 ], [ 5.289147, 48.51053 ], [ 5.287443, 48.513709 ], [ 5.272637, 48.514317 ], [ 5.229125, 48.530773 ], [ 5.221951, 48.52648 ], [ 5.217139, 48.52771 ], [ 5.212253, 48.52879 ], [ 5.211558, 48.53191 ], [ 5.207077, 48.53747 ], [ 5.194712, 48.540557 ], [ 5.197028, 48.546678 ], [ 5.192655, 48.548397 ], [ 5.172768, 48.557149 ], [ 5.165068, 48.565343 ], [ 5.160367, 48.564133 ], [ 5.152213, 48.56034 ], [ 5.143528, 48.563133 ], [ 5.140569, 48.565697 ], [ 5.134455, 48.57069 ], [ 5.131277, 48.572586 ], [ 5.127067, 48.5801 ], [ 5.123434, 48.58214 ], [ 5.117875, 48.58689 ], [ 5.119453, 48.595716 ], [ 5.114686, 48.59458 ], [ 5.094681, 48.59297 ], [ 5.070286, 48.595925 ], [ 5.068597, 48.59919 ], [ 5.05939, 48.61519 ], [ 5.056671, 48.63233 ], [ 5.051809, 48.632966 ], [ 5.033402, 48.61376 ], [ 5.006401, 48.61139 ], [ 4.996262, 48.61879 ], [ 5.004196, 48.6346 ], [ 4.994686, 48.64616 ], [ 4.993755, 48.65522 ], [ 4.992812, 48.658271 ], [ 4.996128, 48.66047 ], [ 5.011053, 48.66783 ], [ 5.008261, 48.67048 ], [ 5.007434, 48.680069 ], [ 5.003256, 48.68204 ], [ 4.988428, 48.68443 ], [ 4.990665, 48.690724 ], [ 5.003295, 48.69617 ], [ 5.006402, 48.69885 ], [ 4.999273, 48.710392 ], [ 5.012702, 48.707153 ], [ 5.016002, 48.70952 ], [ 5.006168, 48.721442 ], [ 5.00922, 48.74139 ], [ 4.989575, 48.74204 ], [ 4.981359, 48.74564 ], [ 4.980624, 48.7485 ], [ 4.978949, 48.7517 ], [ 4.953825, 48.768195 ], [ 4.949258, 48.770537 ], [ 4.935478, 48.78432 ], [ 4.934376, 48.790589 ], [ 4.924802, 48.79238 ], [ 4.920462, 48.790984 ], [ 4.898034, 48.796138 ], [ 4.893365, 48.79696 ], [ 4.892929, 48.797694 ], [ 4.89003, 48.80036 ], [ 4.896351, 48.80903 ], [ 4.890378, 48.814107 ], [ 4.888761, 48.81721 ], [ 4.90027, 48.82463 ], [ 4.902918, 48.82774 ], [ 4.930968, 48.8394 ], [ 4.935493, 48.8405 ], [ 4.937384, 48.84811 ], [ 4.928577, 48.851029 ], [ 4.923236, 48.862891 ], [ 4.912256, 48.86946 ], [ 4.913098, 48.872733 ], [ 4.916497, 48.875413 ], [ 4.923063, 48.888495 ], [ 4.920098, 48.89466 ], [ 4.913592, 48.89768 ], [ 4.915801, 48.899847 ], [ 4.917043, 48.90321 ], [ 4.932159, 48.912682 ], [ 4.936209, 48.92214 ], [ 4.949578, 48.9303 ], [ 4.954079, 48.930911 ], [ 4.957261, 48.92803 ], [ 4.97332, 48.92887 ], [ 4.996952, 48.93704 ], [ 5.012848, 48.93675 ], [ 5.014887, 48.94251 ], [ 5.014132, 48.94559 ], [ 5.027718, 48.952194 ], [ 5.030943, 48.95432 ], [ 5.037757, 48.97412 ], [ 5.029939, 48.97864 ], [ 5.000441, 48.9834 ], [ 4.995417, 48.982465 ], [ 5.009278, 48.993135 ], [ 5.03062, 48.994998 ], [ 5.031576, 49.00129 ], [ 5.037505, 49.01057 ], [ 5.035641, 49.02057 ], [ 5.035267, 49.02256 ], [ 5.032916, 49.02574 ], [ 5.01001, 49.03469 ], [ 4.966715, 49.021 ], [ 4.965432, 49.02144 ], [ 4.968234, 49.024281 ], [ 5.000361, 49.050536 ], [ 5.005744, 49.05987 ], [ 5.003861, 49.06568 ], [ 4.996638, 49.088913 ], [ 4.997767, 49.09228 ], [ 4.996343, 49.106502 ], [ 4.987983, 49.119636 ], [ 4.984722, 49.122496 ], [ 4.98064, 49.126485 ], [ 4.978523, 49.12845 ], [ 4.974853, 49.132849 ], [ 4.965324, 49.15119 ], [ 4.964624, 49.15441 ], [ 4.954392, 49.168122 ], [ 4.952939, 49.17105 ], [ 4.941676, 49.183805 ], [ 4.942378, 49.18677 ], [ 4.953973, 49.19408 ], [ 4.978532, 49.20045 ], [ 4.990533, 49.207415 ], [ 4.991859, 49.210838 ], [ 4.988955, 49.213484 ], [ 4.977581, 49.219751 ], [ 4.975569, 49.222788 ], [ 4.970838, 49.23554 ], [ 4.950989, 49.236866 ], [ 4.960253, 49.23996 ], [ 4.968033, 49.248792 ], [ 4.996246, 49.257977 ], [ 4.9999, 49.26045 ], [ 4.998664, 49.26366 ], [ 5.006624, 49.26767 ], [ 5.011029, 49.269287 ], [ 5.025812, 49.273042 ], [ 5.036007, 49.27122 ], [ 5.051181, 49.274052 ], [ 5.049709, 49.283366 ], [ 5.05546, 49.28798 ], [ 5.059407, 49.28975 ], [ 5.056637, 49.293365 ], [ 5.051473, 49.29422 ], [ 5.041741, 49.29669 ], [ 5.030794, 49.30817 ], [ 5.038152, 49.316204 ], [ 5.032377, 49.32393 ], [ 5.029392, 49.326036 ], [ 5.028499, 49.332354 ], [ 5.027099, 49.335615 ], [ 5.055816, 49.359435 ], [ 5.054072, 49.36611 ], [ 5.060209, 49.371517 ], [ 5.08389, 49.37043 ], [ 5.088622, 49.36963 ], [ 5.100617, 49.380497 ], [ 5.10415, 49.38978 ], [ 5.088653, 49.39861 ], [ 5.084472, 49.404586 ], [ 5.099317, 49.413842 ], [ 5.109334, 49.41547 ], [ 5.115029, 49.42058 ], [ 5.107781, 49.424674 ], [ 5.106154, 49.4277 ], [ 5.100887, 49.440834 ], [ 5.10986, 49.45625 ], [ 5.102876, 49.46017 ], [ 5.100672, 49.46126 ], [ 5.095809, 49.4604 ], [ 5.082957, 49.47036 ], [ 5.083, 49.473807 ], [ 5.084529, 49.48056 ], [ 5.079907, 49.48637 ], [ 5.074537, 49.486683 ], [ 5.059979, 49.50119 ], [ 5.059872, 49.504708 ], [ 5.062563, 49.50745 ], [ 5.077415, 49.508733 ], [ 5.084962, 49.51711 ], [ 5.085535, 49.520335 ], [ 5.089874, 49.52109 ], [ 5.097719, 49.533646 ], [ 5.090506, 49.538 ], [ 5.090175, 49.54479 ], [ 5.095677, 49.554358 ], [ 5.09608, 49.55779 ], [ 5.104178, 49.55609 ], [ 5.108388, 49.555298 ], [ 5.112148, 49.5597 ], [ 5.113352, 49.5621 ], [ 5.106024, 49.578524 ], [ 5.115037, 49.59093 ], [ 5.119715, 49.59268 ], [ 5.145609, 49.58919 ], [ 5.152668, 49.58011 ], [ 5.152895, 49.576623 ], [ 5.160299, 49.56957 ], [ 5.159887, 49.56669 ], [ 5.168633, 49.56366 ], [ 5.177683, 49.56715 ], [ 5.186928, 49.56969 ], [ 5.196319, 49.56755 ], [ 5.201334, 49.56814 ], [ 5.214137, 49.57301 ], [ 5.234775, 49.56567 ], [ 5.234681, 49.562235 ], [ 5.247139, 49.55762 ], [ 5.251771, 49.55671 ], [ 5.259298, 49.54436 ], [ 5.26271, 49.54182 ], [ 5.271867, 49.54457 ], [ 5.277031, 49.54416 ], [ 5.284348, 49.55242 ], [ 5.307404, 49.557781 ], [ 5.31177, 49.55929 ], [ 5.308171, 49.562847 ], [ 5.312228, 49.565143 ], [ 5.339981, 49.59419 ], [ 5.347645, 49.5897 ], [ 5.357528, 49.58989 ], [ 5.361514, 49.59206 ], [ 5.37203, 49.592166 ], [ 5.379728, 49.59563 ], [ 5.381689, 49.6057 ], [ 5.389677, 49.615617 ], [ 5.393537, 49.617088 ], [ 5.428929, 49.5954 ], [ 5.430972, 49.592384 ], [ 5.428995, 49.5892 ], [ 5.439331, 49.5698 ], [ 5.453857, 49.565967 ], [ 5.446263, 49.553389 ], [ 5.441353, 49.552139 ], [ 5.442549, 49.550272 ], [ 5.465261, 49.53631 ], [ 5.46403, 49.526199 ], [ 5.447197, 49.51788 ], [ 5.463425, 49.50897 ], [ 5.466285, 49.49893 ], [ 5.470911, 49.497214 ], [ 5.47917, 49.49558 ], [ 5.482492, 49.49376 ], [ 5.476665, 49.48513 ], [ 5.473769, 49.482598 ], [ 5.463647, 49.4822 ], [ 5.464264, 49.471165 ], [ 5.467072, 49.46296 ], [ 5.471172, 49.46157 ], [ 5.468359, 49.458735 ], [ 5.464134, 49.4526 ], [ 5.467361, 49.45001 ], [ 5.482348, 49.448162 ], [ 5.485193, 49.445388 ], [ 5.479012, 49.432736 ], [ 5.471244, 49.42804 ], [ 5.494264, 49.422261 ], [ 5.498186, 49.424384 ], [ 5.506772, 49.4215 ], [ 5.493942, 49.40707 ], [ 5.478992, 49.40426 ], [ 5.471776, 49.40924 ], [ 5.452186, 49.40507 ], [ 5.447164, 49.40407 ], [ 5.446816, 49.40399 ], [ 5.462875, 49.39689 ], [ 5.476893, 49.39529 ], [ 5.473871, 49.38917 ], [ 5.480988, 49.38248 ], [ 5.485008, 49.38329 ], [ 5.496634, 49.39438 ], [ 5.49917, 49.40745 ], [ 5.531254, 49.407743 ], [ 5.552529, 49.41824 ], [ 5.563085, 49.41928 ], [ 5.568345, 49.420001 ], [ 5.570027, 49.42248 ], [ 5.584345, 49.41881 ], [ 5.598517, 49.4232 ], [ 5.606563, 49.419013 ], [ 5.607205, 49.422435 ], [ 5.61691, 49.423511 ], [ 5.616183, 49.430362 ], [ 5.630124, 49.435248 ], [ 5.633554, 49.43787 ], [ 5.676869, 49.41902 ], [ 5.682024, 49.414504 ], [ 5.6918, 49.41509 ], [ 5.691872, 49.40539 ], [ 5.69213, 49.402156 ], [ 5.694297, 49.39986 ], [ 5.687281, 49.393747 ], [ 5.704749, 49.386855 ], [ 5.707787, 49.38411 ], [ 5.714375, 49.36925 ], [ 5.712225, 49.36346 ], [ 5.726699, 49.36218 ], [ 5.731571, 49.361087 ], [ 5.737564, 49.35568 ], [ 5.737916, 49.349089 ], [ 5.739328, 49.34586 ], [ 5.737194, 49.33887 ], [ 5.720819, 49.33008 ], [ 5.732039, 49.31093 ], [ 5.749166, 49.30989 ], [ 5.753468, 49.31188 ], [ 5.756975, 49.314422 ], [ 5.759984, 49.315379 ], [ 5.7629, 49.314332 ], [ 5.7638, 49.31137 ], [ 5.768283, 49.299781 ], [ 5.760905, 49.27961 ], [ 5.724722, 49.26978 ], [ 5.725312, 49.266381 ], [ 5.728497, 49.25668 ], [ 5.720933, 49.247707 ], [ 5.725272, 49.24478 ], [ 5.737341, 49.232448 ], [ 5.740556, 49.230117 ], [ 5.73345, 49.226132 ], [ 5.728719, 49.22498 ], [ 5.719916, 49.217164 ], [ 5.726491, 49.20175 ], [ 5.723192, 49.199306 ], [ 5.730304, 49.19517 ], [ 5.745193, 49.1982 ], [ 5.750386, 49.19854 ], [ 5.757366, 49.20098 ], [ 5.761112, 49.20146 ], [ 5.765774, 49.1975 ], [ 5.764739, 49.194059 ], [ 5.7464, 49.161482 ], [ 5.749182, 49.15496 ], [ 5.758935, 49.15215 ], [ 5.759572, 49.14868 ], [ 5.757448, 49.14561 ], [ 5.755974, 49.142389 ], [ 5.767645, 49.140124 ], [ 5.771796, 49.13979 ], [ 5.754527, 49.132202 ], [ 5.748301, 49.12312 ], [ 5.755118, 49.11419 ], [ 5.768537, 49.10678 ], [ 5.772557, 49.10535 ], [ 5.778497, 49.10905 ], [ 5.777362, 49.11164 ], [ 5.802818, 49.11228 ], [ 5.807797, 49.11134 ], [ 5.812824, 49.11129 ], [ 5.817853, 49.11104 ], [ 5.823213, 49.08868 ], [ 5.819334, 49.08637 ], [ 5.810402, 49.078782 ], [ 5.808172, 49.07577 ], [ 5.805771, 49.06658 ], [ 5.805944, 49.06346 ], [ 5.831265, 49.06454 ], [ 5.836058, 49.06606 ], [ 5.838473, 49.05315 ], [ 5.851206, 49.043469 ], [ 5.853476, 49.04045 ], [ 5.829903, 49.030558 ], [ 5.829622, 49.02741 ], [ 5.815, 49.00857 ], [ 5.814064, 49.005431 ], [ 5.817407, 49.00806 ], [ 5.821367, 49.00341 ], [ 5.802736, 48.987116 ], [ 5.804394, 48.98389 ], [ 5.812928, 48.98067 ], [ 5.817812, 48.98024 ], [ 5.8304, 48.97619 ], [ 5.849168, 48.96123 ], [ 5.848573, 48.954866 ], [ 5.84727, 48.951793 ], [ 5.842413, 48.95217 ], [ 5.831351, 48.94397 ], [ 5.817226, 48.94245 ], [ 5.81282, 48.94358 ], [ 5.79958, 48.94632 ], [ 5.776647, 48.92516 ], [ 5.751909, 48.921124 ], [ 5.747025, 48.91526 ], [ 5.750108, 48.91418 ], [ 5.753148, 48.91305 ], [ 5.756831, 48.91299 ], [ 5.757243, 48.90996 ], [ 5.770036, 48.895124 ], [ 5.787991, 48.887895 ], [ 5.786585, 48.8782 ], [ 5.782274, 48.876672 ], [ 5.777443, 48.87614 ], [ 5.773466, 48.874725 ], [ 5.765203, 48.872991 ], [ 5.768135, 48.86297 ], [ 5.769401, 48.85959 ], [ 5.771704, 48.85776 ], [ 5.775159, 48.85708 ], [ 5.777993, 48.837851 ], [ 5.78135, 48.83537 ], [ 5.774308, 48.813208 ], [ 5.762901, 48.802628 ], [ 5.758209, 48.80123 ], [ 5.759356, 48.79586 ], [ 5.762412, 48.79391 ], [ 5.774231, 48.7987 ], [ 5.778491, 48.7999 ], [ 5.776984, 48.793356 ], [ 5.776455, 48.790066 ], [ 5.766159, 48.78905 ], [ 5.740039, 48.77224 ], [ 5.736559, 48.762477 ], [ 5.743127, 48.757178 ], [ 5.732567, 48.75018 ], [ 5.719113, 48.748216 ], [ 5.714041, 48.744623 ], [ 5.724748, 48.73805 ], [ 5.719037, 48.73291 ], [ 5.728777, 48.72663 ], [ 5.732055, 48.724557 ], [ 5.733023, 48.72381 ], [ 5.751104, 48.71381 ], [ 5.760421, 48.702764 ], [ 5.764601, 48.701083 ], [ 5.757173, 48.69456 ], [ 5.755881, 48.69197 ], [ 5.746144, 48.66966 ], [ 5.748918, 48.666849 ], [ 5.747463, 48.659845 ], [ 5.74451, 48.656898 ], [ 5.749915, 48.64447 ], [ 5.752287, 48.641544 ], [ 5.756326, 48.637004 ], [ 5.760946, 48.63114 ], [ 5.759203, 48.6246 ], [ 5.758376, 48.62129 ], [ 5.760452, 48.621 ], [ 5.764339, 48.619024 ], [ 5.790067, 48.62798 ], [ 5.799433, 48.62693 ], [ 5.803519, 48.625138 ], [ 5.7975, 48.61667 ], [ 5.798026, 48.61356 ], [ 5.793323, 48.60887 ], [ 5.789908, 48.60719 ], [ 5.769398, 48.60842 ], [ 5.764234, 48.60778 ], [ 5.754818, 48.6063 ], [ 5.741515, 48.596664 ], [ 5.722763, 48.592243 ], [ 5.717988, 48.591209 ], [ 5.713341, 48.57668 ], [ 5.714943, 48.5733 ], [ 5.71413, 48.56494 ], [ 5.715484, 48.5623 ], [ 5.725255, 48.55565 ], [ 5.728643, 48.55354 ], [ 5.744353, 48.552431 ], [ 5.757625, 48.54675 ], [ 5.762875, 48.5463 ], [ 5.772728, 48.541899 ], [ 5.776375, 48.54062 ], [ 5.77559, 48.537322 ], [ 5.766914, 48.534203 ], [ 5.761889, 48.524752 ], [ 5.760971, 48.52147 ], [ 5.762777, 48.51614 ], [ 5.76487, 48.49983 ], [ 5.765155, 48.49649 ] ], [ [ 5.42599, 49.48614 ], [ 5.451653, 49.48333 ], [ 5.455555, 49.48094 ], [ 5.456238, 49.484258 ], [ 5.465225, 49.48689 ], [ 5.442003, 49.503618 ], [ 5.43974, 49.500453 ], [ 5.433874, 49.49086 ], [ 5.42599, 49.48614 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "57", "CODE_DEPT": "56", "NOM_DEPT": "MORBIHAN", "CODE_CHF": "260", "NOM_CHF": "VANNES", "X_CHF_LIEU": "2678", "Y_CHF_LIEU": "67440", "X_CENTROID": "2663", "Y_CENTROID": "67663", "CODE_REG": "53", "NOM_REGION": "BRETAGNE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.458489, 47.44812 ], [ -2.468694, 47.44905 ], [ -2.481557, 47.443075 ], [ -2.493777, 47.44938 ], [ -2.497395, 47.45961 ], [ -2.489698, 47.472495 ], [ -2.49957, 47.48877 ], [ -2.494972, 47.494678 ], [ -2.484709, 47.49482 ], [ -2.464253, 47.48513 ], [ -2.448211, 47.493341 ], [ -2.427578, 47.494152 ], [ -2.42294, 47.49253 ], [ -2.420456, 47.49521 ], [ -2.438729, 47.496447 ], [ -2.441534, 47.49902 ], [ -2.46388, 47.50948 ], [ -2.466831, 47.51189 ], [ -2.495759, 47.51631 ], [ -2.499913, 47.51809 ], [ -2.502609, 47.52099 ], [ -2.52068, 47.5261 ], [ -2.535333, 47.525828 ], [ -2.544239, 47.52268 ], [ -2.545112, 47.519163 ], [ -2.556992, 47.51299 ], [ -2.577103, 47.51693 ], [ -2.598006, 47.51695 ], [ -2.623327, 47.50505 ], [ -2.632431, 47.50751 ], [ -2.633557, 47.511 ], [ -2.639799, 47.515993 ], [ -2.658646, 47.517984 ], [ -2.663121, 47.51923 ], [ -2.679118, 47.49452 ], [ -2.711772, 47.504504 ], [ -2.727034, 47.505974 ], [ -2.750088, 47.498528 ], [ -2.780511, 47.49512 ], [ -2.791259, 47.48763 ], [ -2.799895, 47.48708 ], [ -2.80464, 47.48848 ], [ -2.809881, 47.4883 ], [ -2.819352, 47.488575 ], [ -2.847098, 47.49825 ], [ -2.852326, 47.51862 ], [ -2.869388, 47.53043 ], [ -2.872909, 47.533 ], [ -2.886834, 47.537568 ], [ -2.897373, 47.53668 ], [ -2.901166, 47.53771 ], [ -2.900984, 47.541 ], [ -2.910415, 47.543595 ], [ -2.913523, 47.54614 ], [ -2.911144, 47.55643 ], [ -2.908172, 47.55933 ], [ -2.903388, 47.560695 ], [ -2.87795, 47.559175 ], [ -2.869401, 47.550436 ], [ -2.859781, 47.54976 ], [ -2.861502, 47.53958 ], [ -2.853405, 47.53733 ], [ -2.849627, 47.539345 ], [ -2.846089, 47.545498 ], [ -2.830702, 47.545719 ], [ -2.82396, 47.54245 ], [ -2.817, 47.55405 ], [ -2.808345, 47.5511 ], [ -2.802595, 47.541861 ], [ -2.787762, 47.54963 ], [ -2.774172, 47.53984 ], [ -2.75914, 47.53728 ], [ -2.745192, 47.54167 ], [ -2.734749, 47.541604 ], [ -2.728778, 47.54695 ], [ -2.730289, 47.550344 ], [ -2.727757, 47.5619 ], [ -2.718798, 47.569627 ], [ -2.715216, 47.57926 ], [ -2.719365, 47.58885 ], [ -2.718591, 47.59581 ], [ -2.722752, 47.60201 ], [ -2.73862, 47.60314 ], [ -2.769724, 47.61633 ], [ -2.774697, 47.621697 ], [ -2.765331, 47.62211 ], [ -2.740928, 47.615161 ], [ -2.743493, 47.62732 ], [ -2.746323, 47.624597 ], [ -2.753812, 47.62731 ], [ -2.757374, 47.63693 ], [ -2.778346, 47.62974 ], [ -2.777483, 47.62646 ], [ -2.780067, 47.62345 ], [ -2.791483, 47.6177 ], [ -2.811212, 47.62125 ], [ -2.830144, 47.616383 ], [ -2.859252, 47.62228 ], [ -2.866641, 47.61786 ], [ -2.858048, 47.61522 ], [ -2.865807, 47.60676 ], [ -2.861333, 47.60067 ], [ -2.869903, 47.598385 ], [ -2.883425, 47.602893 ], [ -2.888307, 47.60372 ], [ -2.890974, 47.578944 ], [ -2.903282, 47.58408 ], [ -2.910766, 47.59226 ], [ -2.916293, 47.58663 ], [ -2.924126, 47.58676 ], [ -2.919483, 47.59637 ], [ -2.926744, 47.597827 ], [ -2.930471, 47.60434 ], [ -2.939929, 47.593635 ], [ -2.947675, 47.60685 ], [ -2.948285, 47.62081 ], [ -2.940896, 47.625432 ], [ -2.9357, 47.625291 ], [ -2.943379, 47.62913 ], [ -2.956806, 47.62693 ], [ -2.961258, 47.63593 ], [ -2.957925, 47.638248 ], [ -2.96278, 47.63867 ], [ -2.973764, 47.655148 ], [ -2.975514, 47.65777 ], [ -2.977542, 47.66024 ], [ -2.982027, 47.65581 ], [ -2.956512, 47.61844 ], [ -2.966919, 47.60694 ], [ -2.972093, 47.606543 ], [ -2.95736, 47.59677 ], [ -2.962818, 47.59104 ], [ -2.962734, 47.58469 ], [ -2.947008, 47.57564 ], [ -2.937184, 47.567553 ], [ -2.933497, 47.56043 ], [ -2.932742, 47.557236 ], [ -2.937259, 47.55552 ], [ -2.956663, 47.55972 ], [ -2.970619, 47.558585 ], [ -2.973721, 47.57224 ], [ -2.990342, 47.580195 ], [ -2.989331, 47.583668 ], [ -2.995742, 47.58811 ], [ -2.993135, 47.57121 ], [ -3.001932, 47.56795 ], [ -3.009322, 47.572221 ], [ -3.02302, 47.591455 ], [ -3.024005, 47.59131 ], [ -3.026705, 47.5884 ], [ -3.023741, 47.57173 ], [ -3.040635, 47.58309 ], [ -3.046974, 47.578514 ], [ -3.051979, 47.577938 ], [ -3.0548, 47.571409 ], [ -3.070055, 47.571355 ], [ -3.093946, 47.56597 ], [ -3.102456, 47.5739 ], [ -3.095391, 47.57862 ], [ -3.103164, 47.58276 ], [ -3.126464, 47.59509 ], [ -3.129706, 47.585095 ], [ -3.127968, 47.578334 ], [ -3.12002, 47.57407 ], [ -3.126395, 47.564639 ], [ -3.128281, 47.561434 ], [ -3.132344, 47.530758 ], [ -3.126231, 47.514088 ], [ -3.118405, 47.50999 ], [ -3.119632, 47.50314 ], [ -3.116874, 47.49639 ], [ -3.098112, 47.484453 ], [ -3.087621, 47.47234 ], [ -3.102521, 47.472792 ], [ -3.116602, 47.47715 ], [ -3.131873, 47.47641 ], [ -3.135992, 47.47888 ], [ -3.142481, 47.48412 ], [ -3.149312, 47.50077 ], [ -3.151776, 47.50388 ], [ -3.153576, 47.52077 ], [ -3.159455, 47.52645 ], [ -3.142673, 47.533635 ], [ -3.134875, 47.546398 ], [ -3.137325, 47.556453 ], [ -3.138442, 47.55978 ], [ -3.140604, 47.581 ], [ -3.156038, 47.6035 ], [ -3.15828, 47.606719 ], [ -3.196712, 47.62402 ], [ -3.210093, 47.64292 ], [ -3.204461, 47.6487 ], [ -3.208216, 47.662342 ], [ -3.205878, 47.66545 ], [ -3.20752, 47.66864 ], [ -3.186002, 47.682229 ], [ -3.166, 47.681753 ], [ -3.159969, 47.687163 ], [ -3.151085, 47.68931 ], [ -3.151236, 47.6927 ], [ -3.168982, 47.6949 ], [ -3.176776, 47.69431 ], [ -3.195839, 47.688858 ], [ -3.20979, 47.693136 ], [ -3.203675, 47.68163 ], [ -3.214047, 47.67017 ], [ -3.21148, 47.652977 ], [ -3.216734, 47.64819 ], [ -3.272793, 47.679546 ], [ -3.305419, 47.690627 ], [ -3.310338, 47.691842 ], [ -3.336325, 47.695003 ], [ -3.34466, 47.695137 ], [ -3.351467, 47.692329 ], [ -3.355873, 47.68779 ], [ -3.360388, 47.69009 ], [ -3.355863, 47.694311 ], [ -3.351659, 47.6992 ], [ -3.343809, 47.6972 ], [ -3.326245, 47.699992 ], [ -3.312518, 47.695002 ], [ -3.307885, 47.693266 ], [ -3.290004, 47.68761 ], [ -3.280593, 47.688426 ], [ -3.285867, 47.697867 ], [ -3.287864, 47.70096 ], [ -3.306696, 47.703768 ], [ -3.312555, 47.707822 ], [ -3.336301, 47.7076 ], [ -3.340914, 47.708705 ], [ -3.353835, 47.704201 ], [ -3.359706, 47.70911 ], [ -3.346789, 47.71399 ], [ -3.342698, 47.71592 ], [ -3.347396, 47.72524 ], [ -3.344075, 47.731613 ], [ -3.334062, 47.73137 ], [ -3.321599, 47.73642 ], [ -3.315048, 47.74482 ], [ -3.306356, 47.74862 ], [ -3.296612, 47.7683 ], [ -3.286357, 47.769351 ], [ -3.28249, 47.77935 ], [ -3.291163, 47.78743 ], [ -3.283859, 47.79397 ], [ -3.294363, 47.79351 ], [ -3.290919, 47.774288 ], [ -3.312855, 47.7605 ], [ -3.325089, 47.75888 ], [ -3.325834, 47.74872 ], [ -3.333625, 47.744217 ], [ -3.338439, 47.743052 ], [ -3.346595, 47.746221 ], [ -3.351028, 47.75631 ], [ -3.362135, 47.767102 ], [ -3.359902, 47.770266 ], [ -3.367955, 47.77454 ], [ -3.389853, 47.80602 ], [ -3.38629, 47.81573 ], [ -3.38802, 47.823083 ], [ -3.388816, 47.828583 ], [ -3.392376, 47.8224 ], [ -3.387783, 47.81655 ], [ -3.39055, 47.81036 ], [ -3.403915, 47.80859 ], [ -3.391446, 47.803662 ], [ -3.381466, 47.79156 ], [ -3.382253, 47.78461 ], [ -3.370442, 47.77383 ], [ -3.372095, 47.770523 ], [ -3.353981, 47.754362 ], [ -3.352041, 47.74765 ], [ -3.357882, 47.73134 ], [ -3.366687, 47.72853 ], [ -3.367403, 47.725124 ], [ -3.369571, 47.71496 ], [ -3.382551, 47.704494 ], [ -3.391638, 47.70151 ], [ -3.411909, 47.702325 ], [ -3.416112, 47.70035 ], [ -3.429482, 47.703499 ], [ -3.44694, 47.69676 ], [ -3.456736, 47.697786 ], [ -3.493302, 47.72567 ], [ -3.500025, 47.73456 ], [ -3.501593, 47.737859 ], [ -3.507058, 47.74783 ], [ -3.526263, 47.764535 ], [ -3.528987, 47.774931 ], [ -3.529675, 47.778451 ], [ -3.519744, 47.801023 ], [ -3.522424, 47.80745 ], [ -3.533286, 47.81521 ], [ -3.539954, 47.8284 ], [ -3.538146, 47.835505 ], [ -3.523874, 47.84564 ], [ -3.523004, 47.849147 ], [ -3.519274, 47.8487 ], [ -3.518947, 47.83906 ], [ -3.508975, 47.83158 ], [ -3.490984, 47.825064 ], [ -3.485876, 47.82529 ], [ -3.472813, 47.83582 ], [ -3.462754, 47.83693 ], [ -3.457662, 47.836633 ], [ -3.44892, 47.848457 ], [ -3.449854, 47.861328 ], [ -3.42119, 47.86861 ], [ -3.40869, 47.863227 ], [ -3.398383, 47.863104 ], [ -3.403891, 47.868383 ], [ -3.402412, 47.88536 ], [ -3.411356, 47.90481 ], [ -3.406288, 47.917309 ], [ -3.391871, 47.9205 ], [ -3.388025, 47.92704 ], [ -3.400984, 47.941996 ], [ -3.393172, 47.95086 ], [ -3.392807, 47.95407 ], [ -3.401313, 47.960722 ], [ -3.40339, 47.967001 ], [ -3.408436, 47.967258 ], [ -3.412978, 47.97334 ], [ -3.441627, 47.960158 ], [ -3.461307, 47.95761 ], [ -3.463967, 47.947588 ], [ -3.468019, 47.94555 ], [ -3.470864, 47.94826 ], [ -3.479924, 47.950798 ], [ -3.485293, 47.96686 ], [ -3.497449, 47.97673 ], [ -3.502192, 47.97538 ], [ -3.517531, 47.97599 ], [ -3.530788, 47.98621 ], [ -3.545771, 47.98782 ], [ -3.554116, 47.99188 ], [ -3.574363, 47.99059 ], [ -3.581993, 47.98596 ], [ -3.590049, 47.98929 ], [ -3.600203, 47.990129 ], [ -3.613014, 47.9851 ], [ -3.621982, 47.982815 ], [ -3.641041, 47.985793 ], [ -3.649005, 48.006023 ], [ -3.660917, 48.01757 ], [ -3.674599, 48.05492 ], [ -3.701509, 48.064867 ], [ -3.70371, 48.06808 ], [ -3.70381, 48.08468 ], [ -3.698773, 48.09088 ], [ -3.695004, 48.09336 ], [ -3.708042, 48.09815 ], [ -3.727878, 48.095747 ], [ -3.732973, 48.096268 ], [ -3.729698, 48.10283 ], [ -3.732486, 48.112949 ], [ -3.720172, 48.118973 ], [ -3.723829, 48.12439 ], [ -3.71181, 48.13498 ], [ -3.712945, 48.14178 ], [ -3.696177, 48.148607 ], [ -3.696017, 48.15202 ], [ -3.671562, 48.151477 ], [ -3.653281, 48.15622 ], [ -3.625331, 48.169746 ], [ -3.620747, 48.17098 ], [ -3.591673, 48.17683 ], [ -3.56989, 48.18532 ], [ -3.564839, 48.185747 ], [ -3.55792, 48.180931 ], [ -3.553306, 48.17965 ], [ -3.532568, 48.178331 ], [ -3.501416, 48.181328 ], [ -3.496707, 48.182888 ], [ -3.484418, 48.184829 ], [ -3.480454, 48.18586 ], [ -3.470217, 48.179019 ], [ -3.450452, 48.178451 ], [ -3.446269, 48.18034 ], [ -3.445105, 48.18693 ], [ -3.422077, 48.173347 ], [ -3.437932, 48.16028 ], [ -3.433656, 48.1541 ], [ -3.42051, 48.148524 ], [ -3.417596, 48.14564 ], [ -3.408702, 48.14893 ], [ -3.403883, 48.155018 ], [ -3.389662, 48.15357 ], [ -3.374356, 48.162777 ], [ -3.34934, 48.166033 ], [ -3.341953, 48.17081 ], [ -3.336929, 48.171567 ], [ -3.324402, 48.158492 ], [ -3.322894, 48.14963 ], [ -3.318249, 48.1488 ], [ -3.315455, 48.15521 ], [ -3.300754, 48.155021 ], [ -3.291728, 48.15252 ], [ -3.284694, 48.143765 ], [ -3.275336, 48.142197 ], [ -3.271025, 48.14053 ], [ -3.269592, 48.14368 ], [ -3.2569, 48.147321 ], [ -3.252814, 48.14914 ], [ -3.238346, 48.15033 ], [ -3.211561, 48.142456 ], [ -3.214832, 48.151905 ], [ -3.201521, 48.161443 ], [ -3.192268, 48.16387 ], [ -3.183202, 48.161224 ], [ -3.178229, 48.16115 ], [ -3.173944, 48.159354 ], [ -3.161117, 48.16468 ], [ -3.147869, 48.161097 ], [ -3.132714, 48.17393 ], [ -3.130223, 48.17687 ], [ -3.136624, 48.18224 ], [ -3.136108, 48.189165 ], [ -3.129925, 48.19867 ], [ -3.120273, 48.201 ], [ -3.11534, 48.20677 ], [ -3.09757, 48.205578 ], [ -3.094792, 48.20304 ], [ -3.086394, 48.204666 ], [ -3.081694, 48.21003 ], [ -3.076967, 48.2099 ], [ -3.070056, 48.205229 ], [ -3.054889, 48.20647 ], [ -3.035975, 48.20235 ], [ -3.030742, 48.1965 ], [ -3.020859, 48.196706 ], [ -3.016147, 48.197994 ], [ -3.018569, 48.19131 ], [ -3.011584, 48.175161 ], [ -2.998049, 48.16731 ], [ -2.999753, 48.16071 ], [ -2.979469, 48.16132 ], [ -2.968085, 48.16788 ], [ -2.963583, 48.16933 ], [ -2.943871, 48.171702 ], [ -2.896018, 48.163341 ], [ -2.891453, 48.164734 ], [ -2.888056, 48.1621 ], [ -2.877949, 48.150917 ], [ -2.854805, 48.14236 ], [ -2.849797, 48.141211 ], [ -2.815509, 48.14654 ], [ -2.810401, 48.14655 ], [ -2.784964, 48.122615 ], [ -2.78195, 48.120327 ], [ -2.783476, 48.11137 ], [ -2.778113, 48.10608 ], [ -2.775249, 48.08704 ], [ -2.761983, 48.097144 ], [ -2.751404, 48.116509 ], [ -2.748166, 48.113871 ], [ -2.728458, 48.1165 ], [ -2.709032, 48.112915 ], [ -2.703982, 48.112429 ], [ -2.702304, 48.118727 ], [ -2.679521, 48.129499 ], [ -2.676227, 48.13182 ], [ -2.662597, 48.1304 ], [ -2.656567, 48.12128 ], [ -2.651993, 48.119971 ], [ -2.652644, 48.113471 ], [ -2.651812, 48.11061 ], [ -2.652594, 48.10721 ], [ -2.655691, 48.087965 ], [ -2.671327, 48.062907 ], [ -2.667, 48.0567 ], [ -2.668668, 48.04678 ], [ -2.659756, 48.044852 ], [ -2.657516, 48.0424 ], [ -2.660751, 48.037055 ], [ -2.655761, 48.03254 ], [ -2.64629, 48.040087 ], [ -2.643247, 48.03728 ], [ -2.623324, 48.0369 ], [ -2.582922, 48.06334 ], [ -2.580891, 48.06653 ], [ -2.579225, 48.06975 ], [ -2.564496, 48.069192 ], [ -2.553719, 48.07602 ], [ -2.548679, 48.07648 ], [ -2.551781, 48.09575 ], [ -2.546657, 48.10107 ], [ -2.534741, 48.10764 ], [ -2.520902, 48.122141 ], [ -2.514928, 48.131234 ], [ -2.515424, 48.13792 ], [ -2.533234, 48.15367 ], [ -2.534346, 48.15694 ], [ -2.488328, 48.15791 ], [ -2.485405, 48.164552 ], [ -2.460856, 48.16327 ], [ -2.451564, 48.17081 ], [ -2.447034, 48.172519 ], [ -2.420924, 48.173254 ], [ -2.407188, 48.16804 ], [ -2.399673, 48.15508 ], [ -2.380299, 48.143152 ], [ -2.375705, 48.14144 ], [ -2.374972, 48.13874 ], [ -2.374551, 48.1309 ], [ -2.365799, 48.115854 ], [ -2.36211, 48.113614 ], [ -2.357527, 48.111315 ], [ -2.346988, 48.1264 ], [ -2.330118, 48.120361 ], [ -2.322439, 48.12462 ], [ -2.316929, 48.13411 ], [ -2.306935, 48.13576 ], [ -2.292218, 48.132757 ], [ -2.287278, 48.133746 ], [ -2.253986, 48.107197 ], [ -2.255791, 48.09679 ], [ -2.253012, 48.094976 ], [ -2.253629, 48.08981 ], [ -2.24916, 48.08412 ], [ -2.256927, 48.069242 ], [ -2.256118, 48.062866 ], [ -2.23543, 48.06359 ], [ -2.234992, 48.07343 ], [ -2.222408, 48.078995 ], [ -2.18634, 48.081592 ], [ -2.181674, 48.083141 ], [ -2.171766, 48.078166 ], [ -2.16848, 48.076209 ], [ -2.171854, 48.07356 ], [ -2.171431, 48.06319 ], [ -2.19135, 48.05245 ], [ -2.242426, 48.0526 ], [ -2.249688, 48.047713 ], [ -2.252806, 48.045112 ], [ -2.273288, 48.031072 ], [ -2.280018, 48.024 ], [ -2.280539, 48.02114 ], [ -2.28244, 48.01796 ], [ -2.276503, 48.00884 ], [ -2.287311, 48.001734 ], [ -2.28804, 47.99491 ], [ -2.287539, 47.9915 ], [ -2.238197, 47.99933 ], [ -2.219153, 47.994681 ], [ -2.214416, 47.99324 ], [ -2.209813, 47.9948 ], [ -2.191056, 47.98918 ], [ -2.176729, 47.98005 ], [ -2.151741, 47.98361 ], [ -2.142614, 47.98174 ], [ -2.138403, 47.979735 ], [ -2.126572, 47.965615 ], [ -2.122495, 47.96386 ], [ -2.11977, 47.96095 ], [ -2.111211, 47.95908 ], [ -2.108884, 47.95319 ], [ -2.104673, 47.95198 ], [ -2.09806, 47.935717 ], [ -2.078951, 47.91949 ], [ -2.083715, 47.911666 ], [ -2.082017, 47.90892 ], [ -2.08967, 47.90286 ], [ -2.093704, 47.902133 ], [ -2.103623, 47.90039 ], [ -2.112087, 47.892485 ], [ -2.114768, 47.88232 ], [ -2.114176, 47.87883 ], [ -2.099109, 47.86447 ], [ -2.10618, 47.8516 ], [ -2.109451, 47.84884 ], [ -2.099383, 47.84375 ], [ -2.095195, 47.843258 ], [ -2.06932, 47.851884 ], [ -2.05828, 47.86651 ], [ -2.054704, 47.86879 ], [ -2.051378, 47.86018 ], [ -2.050927, 47.857133 ], [ -2.05393, 47.85095 ], [ -2.049442, 47.83786 ], [ -2.040324, 47.83522 ], [ -2.036045, 47.83346 ], [ -2.0452, 47.82226 ], [ -2.04677, 47.81919 ], [ -2.066864, 47.813246 ], [ -2.070464, 47.8114 ], [ -2.070534, 47.80807 ], [ -2.072142, 47.798552 ], [ -2.075998, 47.78918 ], [ -2.095417, 47.77899 ], [ -2.105343, 47.779665 ], [ -2.110098, 47.7786 ], [ -2.111378, 47.77228 ], [ -2.125108, 47.770656 ], [ -2.127329, 47.76455 ], [ -2.12863, 47.7614 ], [ -2.088468, 47.762597 ], [ -2.082389, 47.7505 ], [ -2.067314, 47.75088 ], [ -2.062322, 47.75127 ], [ -2.05986, 47.73831 ], [ -2.105087, 47.73757 ], [ -2.109457, 47.73588 ], [ -2.107391, 47.732748 ], [ -2.128417, 47.72396 ], [ -2.129069, 47.71756 ], [ -2.119132, 47.70971 ], [ -2.124075, 47.6929 ], [ -2.122663, 47.68267 ], [ -2.107481, 47.67771 ], [ -2.10385, 47.67619 ], [ -2.103234, 47.66599 ], [ -2.107446, 47.65979 ], [ -2.110371, 47.657015 ], [ -2.112425, 47.64754 ], [ -2.095004, 47.643752 ], [ -2.095198, 47.640469 ], [ -2.103979, 47.6381 ], [ -2.103189, 47.63486 ], [ -2.097036, 47.63136 ], [ -2.086555, 47.623745 ], [ -2.084146, 47.609959 ], [ -2.0853, 47.606536 ], [ -2.086481, 47.603255 ], [ -2.102524, 47.5953 ], [ -2.100458, 47.578858 ], [ -2.105064, 47.57754 ], [ -2.103211, 47.575166 ], [ -2.096731, 47.57263 ], [ -2.0975, 47.569237 ], [ -2.103892, 47.54911 ], [ -2.097167, 47.54022 ], [ -2.098852, 47.533449 ], [ -2.14396, 47.524961 ], [ -2.148712, 47.52356 ], [ -2.155171, 47.518728 ], [ -2.153629, 47.50827 ], [ -2.155255, 47.497805 ], [ -2.157796, 47.49475 ], [ -2.166233, 47.49088 ], [ -2.186385, 47.49323 ], [ -2.189112, 47.49938 ], [ -2.185606, 47.509068 ], [ -2.198455, 47.51113 ], [ -2.203241, 47.5105 ], [ -2.216832, 47.507059 ], [ -2.244284, 47.49361 ], [ -2.248656, 47.4953 ], [ -2.261677, 47.50047 ], [ -2.255948, 47.50935 ], [ -2.259526, 47.51175 ], [ -2.279494, 47.510881 ], [ -2.29745, 47.515506 ], [ -2.298099, 47.515476 ], [ -2.29705, 47.512014 ], [ -2.30048, 47.498136 ], [ -2.313426, 47.483065 ], [ -2.316133, 47.46251 ], [ -2.355923, 47.455979 ], [ -2.36721, 47.46319 ], [ -2.377584, 47.46276 ], [ -2.395334, 47.45657 ], [ -2.410409, 47.45883 ], [ -2.420088, 47.4669 ], [ -2.423027, 47.477122 ], [ -2.427617, 47.475789 ], [ -2.44035, 47.465819 ], [ -2.452868, 47.460964 ], [ -2.458489, 47.44812 ] ] ], [ [ [ -3.243707, 47.38696 ], [ -3.233801, 47.37909 ], [ -3.219513, 47.37637 ], [ -3.218725, 47.369479 ], [ -3.215431, 47.37201 ], [ -3.205428, 47.372069 ], [ -3.194052, 47.36589 ], [ -3.155845, 47.36083 ], [ -3.141984, 47.33163 ], [ -3.124187, 47.32629 ], [ -3.121282, 47.323411 ], [ -3.116104, 47.323766 ], [ -3.099541, 47.31581 ], [ -3.068419, 47.316268 ], [ -3.059785, 47.308603 ], [ -3.077575, 47.287067 ], [ -3.090227, 47.281048 ], [ -3.113883, 47.288009 ], [ -3.118963, 47.288797 ], [ -3.134439, 47.287663 ], [ -3.153145, 47.29351 ], [ -3.15807, 47.292359 ], [ -3.173567, 47.30073 ], [ -3.187089, 47.29563 ], [ -3.202025, 47.29703 ], [ -3.216736, 47.29432 ], [ -3.237325, 47.304138 ], [ -3.246508, 47.31265 ], [ -3.239201, 47.32139 ], [ -3.235445, 47.32382 ], [ -3.251836, 47.336805 ], [ -3.260949, 47.35692 ], [ -3.259308, 47.36744 ], [ -3.251751, 47.37193 ], [ -3.24861, 47.385798 ], [ -3.243707, 47.38696 ] ] ], [ [ [ -3.421794, 47.62 ], [ -3.427389, 47.623746 ], [ -3.43258, 47.62436 ], [ -3.438506, 47.62775 ], [ -3.446994, 47.62359 ], [ -3.462408, 47.621267 ], [ -3.473157, 47.6264 ], [ -3.483301, 47.628407 ], [ -3.486074, 47.631323 ], [ -3.493356, 47.63329 ], [ -3.505973, 47.639779 ], [ -3.513689, 47.646925 ], [ -3.511145, 47.65137 ], [ -3.498153, 47.653338 ], [ -3.495109, 47.653254 ], [ -3.464792, 47.648175 ], [ -3.447714, 47.643666 ], [ -3.437168, 47.64387 ], [ -3.429711, 47.64209 ], [ -3.416594, 47.63338 ], [ -3.421312, 47.62176 ], [ -3.421794, 47.62 ] ] ], [ [ [ -2.948152, 47.37334 ], [ -2.955677, 47.37803 ], [ -2.958185, 47.38289 ], [ -2.973536, 47.38561 ], [ -2.984453, 47.393374 ], [ -2.991791, 47.39479 ], [ -2.992648, 47.398287 ], [ -2.990239, 47.40052 ], [ -2.969309, 47.393603 ], [ -2.953707, 47.39151 ], [ -2.94148, 47.393216 ], [ -2.950713, 47.38765 ], [ -2.953572, 47.38288 ], [ -2.949234, 47.378655 ], [ -2.948443, 47.37512 ], [ -2.948152, 47.37334 ] ] ], [ [ [ -2.859561, 47.55989 ], [ -2.861501, 47.5687 ], [ -2.852306, 47.599396 ], [ -2.847033, 47.599868 ], [ -2.840082, 47.60499 ], [ -2.838436, 47.60423 ], [ -2.840674, 47.597489 ], [ -2.839499, 47.59395 ], [ -2.826044, 47.58975 ], [ -2.837811, 47.588525 ], [ -2.845562, 47.589247 ], [ -2.847884, 47.58828 ], [ -2.849508, 47.58667 ], [ -2.854217, 47.5733 ], [ -2.851517, 47.56644 ], [ -2.858295, 47.564643 ], [ -2.859561, 47.55989 ] ] ], [ [ [ -2.880513, 47.331253 ], [ -2.886577, 47.33436 ], [ -2.888781, 47.337505 ], [ -2.88986, 47.34599 ], [ -2.883698, 47.343089 ], [ -2.881138, 47.34325 ], [ -2.87352, 47.34329 ], [ -2.866691, 47.34848 ], [ -2.864127, 47.34848 ], [ -2.861929, 47.34186 ], [ -2.862297, 47.34013 ], [ -2.865114, 47.337233 ], [ -2.880513, 47.331253 ] ] ], [ [ [ -2.80961, 47.57826 ], [ -2.811918, 47.579124 ], [ -2.812992, 47.58421 ], [ -2.808397, 47.58586 ], [ -2.809073, 47.592073 ], [ -2.796705, 47.598574 ], [ -2.794327, 47.603458 ], [ -2.787506, 47.596802 ], [ -2.797822, 47.58946 ], [ -2.807719, 47.57951 ], [ -2.80961, 47.57826 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "58", "CODE_DEPT": "57", "NOM_DEPT": "MOSELLE", "CODE_CHF": "463", "NOM_CHF": "METZ", "X_CHF_LIEU": "9318", "Y_CHF_LIEU": "68957", "X_CENTROID": "9677", "Y_CENTROID": "68881", "CODE_REG": "41", "NOM_REGION": "LORRAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.635286, 49.05417 ], [ 7.639294, 49.048116 ], [ 7.628348, 49.03678 ], [ 7.626239, 49.033722 ], [ 7.617915, 49.030386 ], [ 7.61065, 49.02201 ], [ 7.606889, 49.019911 ], [ 7.608195, 49.010413 ], [ 7.588722, 48.99103 ], [ 7.591159, 48.988098 ], [ 7.592336, 48.98485 ], [ 7.589173, 48.98205 ], [ 7.582392, 48.97266 ], [ 7.583559, 48.96604 ], [ 7.579926, 48.96161 ], [ 7.553536, 48.94239 ], [ 7.556685, 48.936198 ], [ 7.536256, 48.933506 ], [ 7.527765, 48.94197 ], [ 7.513191, 48.94325 ], [ 7.508411, 48.94364 ], [ 7.487019, 48.950061 ], [ 7.477995, 48.961495 ], [ 7.45365, 48.964879 ], [ 7.451631, 48.96797 ], [ 7.447472, 48.966046 ], [ 7.404511, 48.9582 ], [ 7.392312, 48.95272 ], [ 7.379918, 48.951197 ], [ 7.375698, 48.95142 ], [ 7.368109, 48.95355 ], [ 7.363903, 48.95525 ], [ 7.355124, 48.954443 ], [ 7.350815, 48.95279 ], [ 7.343367, 48.94843 ], [ 7.333561, 48.948246 ], [ 7.326853, 48.94338 ], [ 7.322678, 48.945298 ], [ 7.30646, 48.953357 ], [ 7.305475, 48.956643 ], [ 7.290203, 48.956516 ], [ 7.290433, 48.967089 ], [ 7.293927, 48.97262 ], [ 7.238142, 48.9877 ], [ 7.214241, 48.98116 ], [ 7.209311, 48.980088 ], [ 7.206959, 48.98296 ], [ 7.195847, 48.99377 ], [ 7.186213, 48.99376 ], [ 7.183774, 48.99644 ], [ 7.17359, 49.00611 ], [ 7.169316, 49.005042 ], [ 7.161607, 49.00193 ], [ 7.160682, 49.00524 ], [ 7.130174, 49.00541 ], [ 7.122364, 49.02322 ], [ 7.122979, 49.02648 ], [ 7.116375, 49.031083 ], [ 7.119477, 49.03722 ], [ 7.116612, 49.03976 ], [ 7.106358, 49.04535 ], [ 7.106797, 49.04864 ], [ 7.101874, 49.06121 ], [ 7.113838, 49.06471 ], [ 7.117294, 49.06681 ], [ 7.099342, 49.07789 ], [ 7.089116, 49.07039 ], [ 7.074754, 49.07213 ], [ 7.071032, 49.06975 ], [ 7.0686, 49.06339 ], [ 7.072338, 49.057247 ], [ 7.073994, 49.054787 ], [ 7.07866, 49.050361 ], [ 7.057835, 49.033158 ], [ 7.054913, 49.03063 ], [ 7.047917, 49.01591 ], [ 7.054464, 49.01139 ], [ 7.052581, 49.00849 ], [ 7.046848, 48.99991 ], [ 7.033682, 48.98985 ], [ 7.038662, 48.97666 ], [ 7.027888, 48.96948 ], [ 7.032219, 48.956049 ], [ 7.0288, 48.956038 ], [ 7.025378, 48.95615 ], [ 7.021751, 48.956995 ], [ 7.018077, 48.95776 ], [ 6.992743, 48.96027 ], [ 6.988544, 48.95883 ], [ 6.987805, 48.95276 ], [ 6.986481, 48.949764 ], [ 6.986381, 48.946859 ], [ 6.981781, 48.94194 ], [ 6.977854, 48.932782 ], [ 6.965828, 48.92652 ], [ 6.960851, 48.92557 ], [ 6.948243, 48.931394 ], [ 6.946783, 48.93466 ], [ 6.944402, 48.9348 ], [ 6.941442, 48.92459 ], [ 6.955073, 48.920039 ], [ 6.963487, 48.90728 ], [ 6.957465, 48.89421 ], [ 6.972319, 48.890754 ], [ 6.982702, 48.891543 ], [ 6.987974, 48.891368 ], [ 7.02655, 48.879711 ], [ 7.05501, 48.86492 ], [ 7.051672, 48.863771 ], [ 7.050544, 48.85893 ], [ 7.079252, 48.863896 ], [ 7.089153, 48.86309 ], [ 7.094146, 48.86288 ], [ 7.098772, 48.85421 ], [ 7.092468, 48.84988 ], [ 7.08838, 48.848392 ], [ 7.085183, 48.84747 ], [ 7.0817, 48.84759 ], [ 7.057126, 48.84741 ], [ 7.052063, 48.84688 ], [ 7.052897, 48.83867 ], [ 7.054315, 48.83602 ], [ 7.049695, 48.82345 ], [ 7.047117, 48.82064 ], [ 7.049769, 48.81773 ], [ 7.052435, 48.81484 ], [ 7.080902, 48.81356 ], [ 7.08504, 48.811908 ], [ 7.087958, 48.80617 ], [ 7.070561, 48.80128 ], [ 7.066783, 48.79933 ], [ 7.07513, 48.78805 ], [ 7.079244, 48.78629 ], [ 7.085536, 48.79162 ], [ 7.099603, 48.795613 ], [ 7.104562, 48.79645 ], [ 7.108504, 48.797865 ], [ 7.11715, 48.79894 ], [ 7.12201, 48.79971 ], [ 7.126562, 48.80107 ], [ 7.121704, 48.807055 ], [ 7.129735, 48.81565 ], [ 7.139809, 48.817497 ], [ 7.143224, 48.820135 ], [ 7.147387, 48.82224 ], [ 7.142117, 48.83555 ], [ 7.148854, 48.8446 ], [ 7.173508, 48.842019 ], [ 7.180837, 48.84901 ], [ 7.184904, 48.850374 ], [ 7.194087, 48.83902 ], [ 7.187199, 48.83428 ], [ 7.198574, 48.82782 ], [ 7.203428, 48.82696 ], [ 7.211982, 48.82613 ], [ 7.216079, 48.8208 ], [ 7.219991, 48.819087 ], [ 7.217749, 48.828109 ], [ 7.227, 48.82848 ], [ 7.245313, 48.81734 ], [ 7.254469, 48.81991 ], [ 7.258105, 48.822174 ], [ 7.260133, 48.82029 ], [ 7.262461, 48.81857 ], [ 7.25826, 48.81757 ], [ 7.245235, 48.81003 ], [ 7.249213, 48.80781 ], [ 7.257857, 48.80412 ], [ 7.260851, 48.79755 ], [ 7.26406, 48.799121 ], [ 7.270146, 48.802506 ], [ 7.27423, 48.80044 ], [ 7.290899, 48.79391 ], [ 7.290695, 48.786296 ], [ 7.308377, 48.767536 ], [ 7.31334, 48.76724 ], [ 7.311008, 48.764081 ], [ 7.292018, 48.75221 ], [ 7.286137, 48.73152 ], [ 7.268353, 48.714201 ], [ 7.264726, 48.70046 ], [ 7.262073, 48.697798 ], [ 7.242262, 48.69211 ], [ 7.245176, 48.689637 ], [ 7.257236, 48.67285 ], [ 7.261696, 48.6715 ], [ 7.266276, 48.662301 ], [ 7.271164, 48.66238 ], [ 7.304356, 48.66021 ], [ 7.290602, 48.64556 ], [ 7.272375, 48.633446 ], [ 7.276136, 48.62426 ], [ 7.256898, 48.599923 ], [ 7.261855, 48.594421 ], [ 7.265139, 48.59172 ], [ 7.260833, 48.590044 ], [ 7.256282, 48.58868 ], [ 7.253572, 48.58624 ], [ 7.241234, 48.57374 ], [ 7.221387, 48.558066 ], [ 7.220273, 48.554683 ], [ 7.206436, 48.55254 ], [ 7.201361, 48.552704 ], [ 7.193254, 48.54924 ], [ 7.189533, 48.540042 ], [ 7.187101, 48.537272 ], [ 7.170802, 48.531386 ], [ 7.168499, 48.528693 ], [ 7.16791, 48.5276 ], [ 7.162675, 48.52811 ], [ 7.1527, 48.530426 ], [ 7.137943, 48.52835 ], [ 7.115674, 48.5368 ], [ 7.091701, 48.5298 ], [ 7.07936, 48.53642 ], [ 7.074798, 48.537232 ], [ 7.057235, 48.53919 ], [ 7.062191, 48.540132 ], [ 7.082511, 48.541696 ], [ 7.057114, 48.55146 ], [ 7.044708, 48.56228 ], [ 7.034245, 48.580418 ], [ 7.029071, 48.58022 ], [ 7.019187, 48.580901 ], [ 6.995388, 48.593854 ], [ 7.015156, 48.60409 ], [ 7.008742, 48.611841 ], [ 7.005991, 48.60944 ], [ 6.993192, 48.60991 ], [ 6.991258, 48.609493 ], [ 6.987682, 48.61211 ], [ 6.961836, 48.60872 ], [ 6.957241, 48.60974 ], [ 6.939742, 48.61506 ], [ 6.942476, 48.618 ], [ 6.930007, 48.63555 ], [ 6.925352, 48.63472 ], [ 6.918856, 48.63053 ], [ 6.917507, 48.624318 ], [ 6.905394, 48.61983 ], [ 6.901083, 48.621589 ], [ 6.893295, 48.625005 ], [ 6.857471, 48.620939 ], [ 6.847891, 48.62384 ], [ 6.842835, 48.629725 ], [ 6.842629, 48.63248 ], [ 6.839311, 48.63743 ], [ 6.834472, 48.64371 ], [ 6.813799, 48.64682 ], [ 6.782626, 48.642721 ], [ 6.780104, 48.644674 ], [ 6.774114, 48.647917 ], [ 6.776732, 48.65049 ], [ 6.777492, 48.653474 ], [ 6.763951, 48.6521 ], [ 6.762831, 48.65542 ], [ 6.760279, 48.65812 ], [ 6.759914, 48.669672 ], [ 6.75513, 48.66988 ], [ 6.752396, 48.66722 ], [ 6.738556, 48.667588 ], [ 6.726081, 48.664422 ], [ 6.722859, 48.66709 ], [ 6.708674, 48.67064 ], [ 6.704312, 48.672395 ], [ 6.694358, 48.673136 ], [ 6.688766, 48.68213 ], [ 6.668962, 48.667339 ], [ 6.666421, 48.67104 ], [ 6.670491, 48.673046 ], [ 6.670752, 48.686436 ], [ 6.674735, 48.69183 ], [ 6.661575, 48.70608 ], [ 6.657733, 48.70774 ], [ 6.642411, 48.702432 ], [ 6.637589, 48.70312 ], [ 6.629055, 48.71107 ], [ 6.616654, 48.71471 ], [ 6.598966, 48.71569 ], [ 6.59851, 48.71876 ], [ 6.589493, 48.73248 ], [ 6.584287, 48.73317 ], [ 6.564859, 48.749425 ], [ 6.562184, 48.75611 ], [ 6.547622, 48.75462 ], [ 6.543982, 48.753756 ], [ 6.538634, 48.75139 ], [ 6.53421, 48.749598 ], [ 6.519434, 48.75275 ], [ 6.511382, 48.74884 ], [ 6.506608, 48.74849 ], [ 6.507983, 48.754369 ], [ 6.490392, 48.76496 ], [ 6.485482, 48.76587 ], [ 6.461365, 48.767326 ], [ 6.453603, 48.765894 ], [ 6.454219, 48.769234 ], [ 6.451275, 48.77908 ], [ 6.44207, 48.78098 ], [ 6.43311, 48.7891 ], [ 6.42867, 48.78767 ], [ 6.394874, 48.77476 ], [ 6.388744, 48.78061 ], [ 6.383904, 48.780763 ], [ 6.370878, 48.7847 ], [ 6.366691, 48.78293 ], [ 6.358564, 48.779633 ], [ 6.355453, 48.79204 ], [ 6.354861, 48.79534 ], [ 6.347483, 48.803934 ], [ 6.357369, 48.81058 ], [ 6.353939, 48.812989 ], [ 6.339339, 48.81103 ], [ 6.336054, 48.81294 ], [ 6.333754, 48.82046 ], [ 6.331522, 48.82327 ], [ 6.308785, 48.82115 ], [ 6.30468, 48.82241 ], [ 6.301116, 48.824253 ], [ 6.318345, 48.829357 ], [ 6.331992, 48.825728 ], [ 6.339647, 48.83349 ], [ 6.334824, 48.83461 ], [ 6.329999, 48.83571 ], [ 6.31625, 48.83692 ], [ 6.307404, 48.83376 ], [ 6.288014, 48.84367 ], [ 6.285472, 48.849429 ], [ 6.295087, 48.85179 ], [ 6.300111, 48.85252 ], [ 6.299103, 48.85533 ], [ 6.297463, 48.86648 ], [ 6.305417, 48.86369 ], [ 6.312126, 48.86642 ], [ 6.310919, 48.87276 ], [ 6.308081, 48.87534 ], [ 6.308444, 48.87826 ], [ 6.297384, 48.88247 ], [ 6.311501, 48.8922 ], [ 6.321088, 48.89463 ], [ 6.325839, 48.89593 ], [ 6.327517, 48.904873 ], [ 6.324395, 48.90751 ], [ 6.310847, 48.91175 ], [ 6.311181, 48.92107 ], [ 6.306997, 48.9195 ], [ 6.2884, 48.916323 ], [ 6.287794, 48.92769 ], [ 6.283947, 48.92842 ], [ 6.277034, 48.927966 ], [ 6.271237, 48.93331 ], [ 6.262562, 48.933509 ], [ 6.258243, 48.93173 ], [ 6.247297, 48.92488 ], [ 6.237097, 48.92493 ], [ 6.234795, 48.92789 ], [ 6.225117, 48.9293 ], [ 6.220643, 48.93823 ], [ 6.205768, 48.939588 ], [ 6.205897, 48.93769 ], [ 6.200807, 48.93713 ], [ 6.175165, 48.936236 ], [ 6.170431, 48.94216 ], [ 6.165301, 48.942041 ], [ 6.161467, 48.943699 ], [ 6.150023, 48.939285 ], [ 6.149731, 48.93332 ], [ 6.146544, 48.93258 ], [ 6.141559, 48.93305 ], [ 6.125142, 48.9399 ], [ 6.128252, 48.94936 ], [ 6.123214, 48.949418 ], [ 6.124748, 48.95607 ], [ 6.114238, 48.967227 ], [ 6.099614, 48.96885 ], [ 6.094718, 48.96789 ], [ 6.081323, 48.96305 ], [ 6.079195, 48.96474 ], [ 6.077312, 48.967785 ], [ 6.071029, 48.972725 ], [ 6.073834, 48.979015 ], [ 6.064765, 48.98101 ], [ 6.06144, 48.978873 ], [ 6.043435, 48.97748 ], [ 6.041341, 48.98046 ], [ 6.033896, 48.98478 ], [ 6.043815, 48.98909 ], [ 6.0432, 49.001925 ], [ 6.044965, 49.008935 ], [ 6.040883, 49.01491 ], [ 6.030663, 49.01701 ], [ 6.019487, 49.02456 ], [ 6.012649, 49.03735 ], [ 6.005445, 49.034425 ], [ 6.001616, 49.03519 ], [ 5.994968, 49.038097 ], [ 5.992056, 49.03981 ], [ 5.98541, 49.04205 ], [ 5.981175, 49.043389 ], [ 5.972448, 49.04156 ], [ 5.966914, 49.04651 ], [ 5.957792, 49.047378 ], [ 5.955657, 49.05003 ], [ 5.951719, 49.061663 ], [ 5.95037, 49.064908 ], [ 5.936821, 49.06889 ], [ 5.935207, 49.07208 ], [ 5.93473, 49.0755 ], [ 5.941603, 49.08054 ], [ 5.925645, 49.092901 ], [ 5.927818, 49.0996 ], [ 5.931603, 49.109104 ], [ 5.947825, 49.10878 ], [ 5.967699, 49.108336 ], [ 5.972667, 49.10822 ], [ 5.993738, 49.10787 ], [ 6.002705, 49.11078 ], [ 6.004983, 49.1139 ], [ 6.002144, 49.116469 ], [ 5.990612, 49.12754 ], [ 5.993989, 49.13356 ], [ 5.986154, 49.137966 ], [ 5.984418, 49.14116 ], [ 5.982262, 49.14397 ], [ 5.994304, 49.14873 ], [ 5.990328, 49.15445 ], [ 5.999566, 49.15575 ], [ 6.006477, 49.15334 ], [ 6.010886, 49.15368 ], [ 6.019092, 49.161958 ], [ 6.027936, 49.16492 ], [ 6.031132, 49.16749 ], [ 6.017339, 49.17189 ], [ 6.005027, 49.182715 ], [ 5.985181, 49.184838 ], [ 5.982116, 49.18715 ], [ 5.979529, 49.19299 ], [ 5.978771, 49.19486 ], [ 5.986235, 49.201438 ], [ 5.98441, 49.207412 ], [ 5.987627, 49.209617 ], [ 5.995509, 49.20749 ], [ 6.003519, 49.20897 ], [ 5.999638, 49.210956 ], [ 6.009565, 49.221792 ], [ 6.014515, 49.221875 ], [ 6.030761, 49.23308 ], [ 6.027876, 49.23331 ], [ 6.025889, 49.24349 ], [ 6.029172, 49.250036 ], [ 6.007922, 49.25941 ], [ 6.009836, 49.26608 ], [ 6.007822, 49.27043 ], [ 6.009838, 49.27247 ], [ 6.000446, 49.27553 ], [ 6.001631, 49.285747 ], [ 6.002952, 49.28907 ], [ 6.005021, 49.30972 ], [ 5.997125, 49.31424 ], [ 5.988107, 49.307492 ], [ 5.985221, 49.30517 ], [ 5.969991, 49.318536 ], [ 5.949495, 49.32806 ], [ 5.943314, 49.336946 ], [ 5.943394, 49.34029 ], [ 5.962819, 49.34486 ], [ 5.973218, 49.34445 ], [ 5.978376, 49.34486 ], [ 5.973406, 49.345321 ], [ 5.963582, 49.34662 ], [ 5.956124, 49.361595 ], [ 5.95104, 49.362034 ], [ 5.941007, 49.36071 ], [ 5.933406, 49.369443 ], [ 5.924782, 49.37305 ], [ 5.935039, 49.38094 ], [ 5.929677, 49.40148 ], [ 5.919901, 49.40458 ], [ 5.91579, 49.405965 ], [ 5.91184, 49.40753 ], [ 5.915632, 49.409513 ], [ 5.919719, 49.41814 ], [ 5.928285, 49.42647 ], [ 5.937777, 49.42873 ], [ 5.942283, 49.430355 ], [ 5.940797, 49.4338 ], [ 5.930767, 49.446554 ], [ 5.941863, 49.452446 ], [ 5.934477, 49.47171 ], [ 5.939797, 49.47738 ], [ 5.935571, 49.47829 ], [ 5.929609, 49.48535 ], [ 5.925328, 49.48484 ], [ 5.917527, 49.48262 ], [ 5.912982, 49.482078 ], [ 5.904673, 49.48453 ], [ 5.897027, 49.481138 ], [ 5.898435, 49.48431 ], [ 5.893402, 49.49692 ], [ 5.911798, 49.501631 ], [ 5.931451, 49.498774 ], [ 5.9362, 49.49995 ], [ 5.945434, 49.49964 ], [ 5.951237, 49.49489 ], [ 5.955345, 49.49333 ], [ 5.970201, 49.490222 ], [ 5.974236, 49.46641 ], [ 5.985665, 49.45955 ], [ 5.979316, 49.454049 ], [ 5.982054, 49.451067 ], [ 6.001039, 49.45558 ], [ 6.025686, 49.45355 ], [ 6.027222, 49.45034 ], [ 6.037181, 49.44868 ], [ 6.042151, 49.447809 ], [ 6.056344, 49.465405 ], [ 6.076592, 49.46361 ], [ 6.086264, 49.45576 ], [ 6.095623, 49.452849 ], [ 6.100813, 49.452887 ], [ 6.099041, 49.463321 ], [ 6.102919, 49.469734 ], [ 6.122159, 49.4745 ], [ 6.129603, 49.491138 ], [ 6.139986, 49.48955 ], [ 6.144612, 49.48774 ], [ 6.157537, 49.49316 ], [ 6.156764, 49.502837 ], [ 6.175179, 49.508733 ], [ 6.179634, 49.50706 ], [ 6.211439, 49.506311 ], [ 6.216733, 49.506819 ], [ 6.217001, 49.509987 ], [ 6.226394, 49.51 ], [ 6.235639, 49.50807 ], [ 6.242694, 49.51218 ], [ 6.276154, 49.503536 ], [ 6.279483, 49.49748 ], [ 6.280569, 49.49416 ], [ 6.294515, 49.487026 ], [ 6.299231, 49.48821 ], [ 6.295625, 49.48172 ], [ 6.319861, 49.477096 ], [ 6.331354, 49.469962 ], [ 6.333778, 49.46689 ], [ 6.343426, 49.46838 ], [ 6.34711, 49.46603 ], [ 6.351248, 49.46704 ], [ 6.360963, 49.461299 ], [ 6.364391, 49.45949 ], [ 6.368857, 49.45982 ], [ 6.367599, 49.466539 ], [ 6.4032, 49.46596 ], [ 6.422407, 49.476014 ], [ 6.431843, 49.47446 ], [ 6.436886, 49.46894 ], [ 6.440433, 49.466669 ], [ 6.45394, 49.463891 ], [ 6.468186, 49.46473 ], [ 6.481532, 49.454923 ], [ 6.484899, 49.45247 ], [ 6.500555, 49.449723 ], [ 6.530296, 49.435292 ], [ 6.535419, 49.434161 ], [ 6.554641, 49.41905 ], [ 6.538352, 49.41101 ], [ 6.540528, 49.40114 ], [ 6.551364, 49.39714 ], [ 6.55234, 49.394095 ], [ 6.5846, 49.384433 ], [ 6.585932, 49.3709 ], [ 6.596177, 49.369234 ], [ 6.59857, 49.36305 ], [ 6.587068, 49.351599 ], [ 6.574899, 49.358051 ], [ 6.569627, 49.357703 ], [ 6.564998, 49.356103 ], [ 6.56538, 49.34929 ], [ 6.577573, 49.338419 ], [ 6.578704, 49.335083 ], [ 6.592112, 49.33364 ], [ 6.590861, 49.32498 ], [ 6.588885, 49.3221 ], [ 6.615992, 49.302684 ], [ 6.628629, 49.29863 ], [ 6.631762, 49.29603 ], [ 6.640485, 49.29369 ], [ 6.652022, 49.28425 ], [ 6.65323, 49.28112 ], [ 6.667846, 49.28044 ], [ 6.660753, 49.26072 ], [ 6.66153, 49.25733 ], [ 6.665016, 49.254724 ], [ 6.680232, 49.254287 ], [ 6.688785, 49.246223 ], [ 6.685103, 49.24374 ], [ 6.692921, 49.217549 ], [ 6.697286, 49.21557 ], [ 6.722115, 49.21942 ], [ 6.730623, 49.206712 ], [ 6.712838, 49.189558 ], [ 6.71753, 49.17976 ], [ 6.719747, 49.17659 ], [ 6.726909, 49.17178 ], [ 6.730153, 49.16917 ], [ 6.743225, 49.164298 ], [ 6.747885, 49.16592 ], [ 6.773788, 49.167645 ], [ 6.784134, 49.16815 ], [ 6.829632, 49.15267 ], [ 6.834463, 49.15138 ], [ 6.840668, 49.1542 ], [ 6.843841, 49.15552 ], [ 6.847701, 49.15741 ], [ 6.84531, 49.160142 ], [ 6.844708, 49.172916 ], [ 6.858744, 49.17575 ], [ 6.860935, 49.17862 ], [ 6.861287, 49.18204 ], [ 6.85014, 49.19352 ], [ 6.851165, 49.20046 ], [ 6.841082, 49.208586 ], [ 6.840444, 49.21423 ], [ 6.858445, 49.22163 ], [ 6.879987, 49.21259 ], [ 6.884808, 49.21111 ], [ 6.894288, 49.2102 ], [ 6.924296, 49.22308 ], [ 6.934805, 49.22213 ], [ 6.940357, 49.216549 ], [ 6.943567, 49.21377 ], [ 6.95021, 49.20864 ], [ 6.953543, 49.206062 ], [ 6.957561, 49.20381 ], [ 6.976575, 49.20864 ], [ 6.996648, 49.19746 ], [ 6.998807, 49.194287 ], [ 7.008091, 49.19374 ], [ 7.013078, 49.18863 ], [ 7.01544, 49.19127 ], [ 7.020264, 49.192727 ], [ 7.033706, 49.188262 ], [ 7.028266, 49.17131 ], [ 7.046368, 49.1319 ], [ 7.045659, 49.12845 ], [ 7.045846, 49.118382 ], [ 7.057568, 49.11254 ], [ 7.067036, 49.115227 ], [ 7.071995, 49.124747 ], [ 7.085937, 49.12915 ], [ 7.089676, 49.131502 ], [ 7.08047, 49.142474 ], [ 7.082145, 49.153436 ], [ 7.103087, 49.15461 ], [ 7.110839, 49.15042 ], [ 7.103631, 49.14538 ], [ 7.104239, 49.13868 ], [ 7.124926, 49.1412 ], [ 7.130931, 49.135628 ], [ 7.131685, 49.13218 ], [ 7.135634, 49.12975 ], [ 7.158799, 49.12077 ], [ 7.164081, 49.126922 ], [ 7.184878, 49.12963 ], [ 7.196066, 49.12208 ], [ 7.198332, 49.115178 ], [ 7.201847, 49.117594 ], [ 7.21111, 49.1249 ], [ 7.245446, 49.12971 ], [ 7.249111, 49.127395 ], [ 7.279325, 49.12327 ], [ 7.283683, 49.11758 ], [ 7.2934, 49.11516 ], [ 7.302035, 49.12151 ], [ 7.304114, 49.12408 ], [ 7.313686, 49.136539 ], [ 7.325955, 49.14345 ], [ 7.362775, 49.14518 ], [ 7.362421, 49.14848 ], [ 7.366178, 49.172012 ], [ 7.376353, 49.174272 ], [ 7.381506, 49.175273 ], [ 7.445344, 49.184718 ], [ 7.446641, 49.18287 ], [ 7.434909, 49.1779 ], [ 7.443693, 49.17111 ], [ 7.433547, 49.167775 ], [ 7.4386, 49.16441 ], [ 7.450558, 49.168209 ], [ 7.456798, 49.164133 ], [ 7.475833, 49.168766 ], [ 7.491343, 49.168512 ], [ 7.495109, 49.15843 ], [ 7.503565, 49.150531 ], [ 7.489804, 49.14002 ], [ 7.489583, 49.136528 ], [ 7.498562, 49.13356 ], [ 7.504947, 49.124138 ], [ 7.51783, 49.118773 ], [ 7.521466, 49.10888 ], [ 7.52386, 49.105821 ], [ 7.531179, 49.09713 ], [ 7.55886, 49.082379 ], [ 7.568486, 49.079906 ], [ 7.604695, 49.08175 ], [ 7.630777, 49.07074 ], [ 7.632308, 49.057032 ], [ 7.635286, 49.05417 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "59", "CODE_DEPT": "58", "NOM_DEPT": "NIEVRE", "CODE_CHF": "194", "NOM_CHF": "NEVERS", "X_CHF_LIEU": "7119", "Y_CHF_LIEU": "66547", "X_CENTROID": "7382", "Y_CENTROID": "66684", "CODE_REG": "26", "NOM_REGION": "BOURGOGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.629424, 46.749459 ], [ 3.626404, 46.752267 ], [ 3.601826, 46.75213 ], [ 3.596399, 46.76499 ], [ 3.592562, 46.762801 ], [ 3.578083, 46.74927 ], [ 3.595819, 46.725291 ], [ 3.580594, 46.71698 ], [ 3.576978, 46.72291 ], [ 3.573043, 46.720994 ], [ 3.568891, 46.71591 ], [ 3.564076, 46.71611 ], [ 3.547722, 46.722415 ], [ 3.54791, 46.718956 ], [ 3.5489, 46.70555 ], [ 3.559853, 46.68998 ], [ 3.554262, 46.684601 ], [ 3.550406, 46.682395 ], [ 3.542815, 46.67946 ], [ 3.534364, 46.68752 ], [ 3.529451, 46.688203 ], [ 3.520472, 46.68524 ], [ 3.486834, 46.660559 ], [ 3.486669, 46.65381 ], [ 3.483132, 46.651678 ], [ 3.474191, 46.653535 ], [ 3.45571, 46.651466 ], [ 3.45409, 46.654841 ], [ 3.443455, 46.662338 ], [ 3.4474, 46.67139 ], [ 3.452928, 46.677 ], [ 3.452896, 46.687333 ], [ 3.445923, 46.69225 ], [ 3.436015, 46.69355 ], [ 3.430011, 46.69883 ], [ 3.434214, 46.71222 ], [ 3.414609, 46.711105 ], [ 3.390052, 46.714892 ], [ 3.385292, 46.713764 ], [ 3.366416, 46.69068 ], [ 3.356914, 46.688419 ], [ 3.352532, 46.686596 ], [ 3.337856, 46.685253 ], [ 3.318052, 46.68844 ], [ 3.304499, 46.702842 ], [ 3.298052, 46.715879 ], [ 3.283373, 46.71515 ], [ 3.282979, 46.714971 ], [ 3.278417, 46.716324 ], [ 3.268544, 46.715924 ], [ 3.259773, 46.70766 ], [ 3.234217, 46.69737 ], [ 3.229528, 46.69646 ], [ 3.226936, 46.69 ], [ 3.204426, 46.678752 ], [ 3.199366, 46.6795 ], [ 3.167414, 46.690968 ], [ 3.149247, 46.708218 ], [ 3.146988, 46.710211 ], [ 3.143329, 46.71274 ], [ 3.129056, 46.727493 ], [ 3.104673, 46.73318 ], [ 3.100537, 46.734293 ], [ 3.083478, 46.73777 ], [ 3.079605, 46.739964 ], [ 3.04955, 46.75772 ], [ 3.037546, 46.77283 ], [ 3.036264, 46.775966 ], [ 3.032068, 46.794911 ], [ 3.032122, 46.798063 ], [ 3.039067, 46.80962 ], [ 3.041154, 46.812673 ], [ 3.057639, 46.825136 ], [ 3.058486, 46.831592 ], [ 3.05694, 46.83391 ], [ 3.054584, 46.83877 ], [ 3.056647, 46.84197 ], [ 3.069402, 46.852258 ], [ 3.063605, 46.889951 ], [ 3.062334, 46.892347 ], [ 3.061145, 46.89738 ], [ 3.058074, 46.90028 ], [ 3.050227, 46.909154 ], [ 3.064553, 46.93573 ], [ 3.066029, 46.93843 ], [ 3.068254, 46.941521 ], [ 3.078275, 46.953427 ], [ 3.079337, 46.96024 ], [ 3.075119, 46.96206 ], [ 3.062751, 46.98026 ], [ 3.065324, 46.997174 ], [ 3.065841, 47.00046 ], [ 3.073675, 47.01237 ], [ 3.074759, 47.015859 ], [ 3.074778, 47.02999 ], [ 3.072676, 47.033282 ], [ 3.063618, 47.04617 ], [ 3.060101, 47.04586 ], [ 3.053966, 47.04825 ], [ 3.050517, 47.050679 ], [ 3.022241, 47.063652 ], [ 3.020041, 47.06679 ], [ 3.022524, 47.08016 ], [ 3.031362, 47.092884 ], [ 3.030102, 47.103508 ], [ 3.03025, 47.107055 ], [ 3.03, 47.108315 ], [ 3.029382, 47.11166 ], [ 3.028283, 47.12844 ], [ 3.02496, 47.13111 ], [ 3.017179, 47.13978 ], [ 3.020588, 47.152981 ], [ 3.019283, 47.15628 ], [ 3.015945, 47.159095 ], [ 3.015206, 47.16243 ], [ 2.997741, 47.200851 ], [ 2.995918, 47.203804 ], [ 2.993844, 47.20668 ], [ 2.991122, 47.209691 ], [ 2.979026, 47.229064 ], [ 2.981806, 47.25352 ], [ 2.982757, 47.256558 ], [ 2.981658, 47.262509 ], [ 2.973547, 47.26994 ], [ 2.941563, 47.285155 ], [ 2.92678, 47.29845 ], [ 2.923336, 47.300844 ], [ 2.916129, 47.305647 ], [ 2.912962, 47.30832 ], [ 2.909119, 47.310584 ], [ 2.899453, 47.31274 ], [ 2.89495, 47.31377 ], [ 2.879024, 47.32028 ], [ 2.873695, 47.3291 ], [ 2.870247, 47.342343 ], [ 2.877113, 47.35156 ], [ 2.879782, 47.35453 ], [ 2.88208, 47.357587 ], [ 2.890555, 47.365995 ], [ 2.893026, 47.369085 ], [ 2.919771, 47.41047 ], [ 2.91962, 47.413657 ], [ 2.920906, 47.423155 ], [ 2.931557, 47.43343 ], [ 2.931885, 47.43681 ], [ 2.919831, 47.45873 ], [ 2.919191, 47.46062 ], [ 2.91778, 47.463787 ], [ 2.897163, 47.48515 ], [ 2.89713, 47.488733 ], [ 2.892395, 47.49898 ], [ 2.891632, 47.50194 ], [ 2.889574, 47.507764 ], [ 2.887256, 47.510615 ], [ 2.874625, 47.52042 ], [ 2.846885, 47.54153 ], [ 2.845187, 47.544935 ], [ 2.85663, 47.55141 ], [ 2.868583, 47.546008 ], [ 2.878366, 47.55267 ], [ 2.883392, 47.55272 ], [ 2.905814, 47.55747 ], [ 2.909374, 47.559612 ], [ 2.912958, 47.56364 ], [ 2.914297, 47.56597 ], [ 2.953843, 47.55861 ], [ 2.958658, 47.55738 ], [ 2.971791, 47.56792 ], [ 2.976538, 47.56943 ], [ 2.991328, 47.568027 ], [ 3.017047, 47.55783 ], [ 3.026689, 47.558708 ], [ 3.030852, 47.56057 ], [ 3.038488, 47.56506 ], [ 3.058681, 47.568759 ], [ 3.068241, 47.57706 ], [ 3.071969, 47.57956 ], [ 3.088025, 47.58699 ], [ 3.107221, 47.58554 ], [ 3.111581, 47.5839 ], [ 3.117534, 47.580678 ], [ 3.120284, 47.578893 ], [ 3.123524, 47.57615 ], [ 3.11636, 47.56704 ], [ 3.122224, 47.542894 ], [ 3.123027, 47.539428 ], [ 3.136654, 47.540124 ], [ 3.149412, 47.529504 ], [ 3.162247, 47.524005 ], [ 3.165191, 47.517502 ], [ 3.178884, 47.51947 ], [ 3.18614, 47.52359 ], [ 3.204517, 47.523192 ], [ 3.233674, 47.49285 ], [ 3.235027, 47.48964 ], [ 3.250321, 47.48841 ], [ 3.259236, 47.49191 ], [ 3.274682, 47.49196 ], [ 3.285252, 47.503939 ], [ 3.287427, 47.500864 ], [ 3.296228, 47.492596 ], [ 3.306115, 47.49367 ], [ 3.33567, 47.481462 ], [ 3.338044, 47.47252 ], [ 3.346456, 47.46969 ], [ 3.345704, 47.476617 ], [ 3.365715, 47.48653 ], [ 3.380385, 47.487833 ], [ 3.391056, 47.499653 ], [ 3.391332, 47.50656 ], [ 3.400355, 47.508578 ], [ 3.405484, 47.50869 ], [ 3.408787, 47.508027 ], [ 3.41224, 47.50787 ], [ 3.43223, 47.50733 ], [ 3.446589, 47.51028 ], [ 3.449538, 47.503871 ], [ 3.457679, 47.500472 ], [ 3.462467, 47.501183 ], [ 3.483515, 47.493032 ], [ 3.488277, 47.49383 ], [ 3.494746, 47.52129 ], [ 3.491375, 47.55647 ], [ 3.492033, 47.55999 ], [ 3.495344, 47.559972 ], [ 3.498358, 47.560878 ], [ 3.510307, 47.5505 ], [ 3.514192, 47.527224 ], [ 3.521363, 47.52255 ], [ 3.526056, 47.52143 ], [ 3.538233, 47.516592 ], [ 3.541425, 47.51425 ], [ 3.552142, 47.50341 ], [ 3.570725, 47.499523 ], [ 3.575459, 47.49869 ], [ 3.580478, 47.49487 ], [ 3.575259, 47.48629 ], [ 3.57569, 47.48317 ], [ 3.57613, 47.48213 ], [ 3.581675, 47.46445 ], [ 3.583276, 47.4615 ], [ 3.587873, 47.461882 ], [ 3.593202, 47.457714 ], [ 3.600971, 47.465182 ], [ 3.60535, 47.4662 ], [ 3.615236, 47.465828 ], [ 3.616422, 47.45934 ], [ 3.623783, 47.455385 ], [ 3.628686, 47.4547 ], [ 3.634157, 47.456076 ], [ 3.655583, 47.44881 ], [ 3.674397, 47.44953 ], [ 3.677363, 47.44686 ], [ 3.679358, 47.447242 ], [ 3.673439, 47.43561 ], [ 3.679809, 47.432548 ], [ 3.683925, 47.43387 ], [ 3.687996, 47.43166 ], [ 3.701553, 47.426486 ], [ 3.712403, 47.41442 ], [ 3.71491, 47.409463 ], [ 3.714782, 47.40683 ], [ 3.720317, 47.4013 ], [ 3.73389, 47.397065 ], [ 3.772571, 47.40308 ], [ 3.774605, 47.4062 ], [ 3.783303, 47.405169 ], [ 3.784123, 47.39328 ], [ 3.785631, 47.39032 ], [ 3.790461, 47.38973 ], [ 3.800243, 47.38965 ], [ 3.813743, 47.38037 ], [ 3.828057, 47.38205 ], [ 3.829261, 47.385333 ], [ 3.822621, 47.40091 ], [ 3.829087, 47.40576 ], [ 3.83893, 47.40605 ], [ 3.842009, 47.40872 ], [ 3.851737, 47.427572 ], [ 3.851308, 47.435588 ], [ 3.855194, 47.43388 ], [ 3.864383, 47.43433 ], [ 3.875517, 47.42881 ], [ 3.879911, 47.429811 ], [ 3.880587, 47.42654 ], [ 3.890213, 47.419812 ], [ 3.893397, 47.41029 ], [ 3.87946, 47.39991 ], [ 3.861455, 47.39337 ], [ 3.87141, 47.36717 ], [ 3.887463, 47.365881 ], [ 3.889564, 47.36875 ], [ 3.908792, 47.38206 ], [ 3.937927, 47.379826 ], [ 3.950594, 47.39305 ], [ 3.960513, 47.38579 ], [ 3.961353, 47.38232 ], [ 3.971393, 47.3746 ], [ 3.963999, 47.36586 ], [ 3.972954, 47.335 ], [ 3.982474, 47.322595 ], [ 3.987562, 47.32279 ], [ 4.000593, 47.31229 ], [ 4.020165, 47.31261 ], [ 4.027648, 47.31628 ], [ 4.030765, 47.32625 ], [ 4.039859, 47.327435 ], [ 4.047974, 47.339525 ], [ 4.067422, 47.33847 ], [ 4.076938, 47.340736 ], [ 4.101162, 47.33813 ], [ 4.106086, 47.33926 ], [ 4.107051, 47.33596 ], [ 4.119339, 47.33966 ], [ 4.130918, 47.35428 ], [ 4.13986, 47.3567 ], [ 4.143319, 47.35429 ], [ 4.139693, 47.35199 ], [ 4.125043, 47.335671 ], [ 4.123777, 47.32957 ], [ 4.130407, 47.32057 ], [ 4.128764, 47.31737 ], [ 4.11539, 47.30772 ], [ 4.123776, 47.30424 ], [ 4.132541, 47.30749 ], [ 4.131322, 47.304314 ], [ 4.114587, 47.29261 ], [ 4.125356, 47.249506 ], [ 4.133287, 47.2406 ], [ 4.135149, 47.23736 ], [ 4.177723, 47.25274 ], [ 4.186745, 47.24514 ], [ 4.192241, 47.23541 ], [ 4.219177, 47.21942 ], [ 4.22889, 47.20378 ], [ 4.230876, 47.19704 ], [ 4.212327, 47.18113 ], [ 4.209485, 47.168057 ], [ 4.210078, 47.158615 ], [ 4.209834, 47.155412 ], [ 4.205254, 47.15425 ], [ 4.194293, 47.148649 ], [ 4.186084, 47.152236 ], [ 4.181902, 47.150514 ], [ 4.139461, 47.14329 ], [ 4.120584, 47.145524 ], [ 4.115724, 47.14602 ], [ 4.112572, 47.14356 ], [ 4.116374, 47.134688 ], [ 4.108619, 47.131 ], [ 4.115967, 47.123338 ], [ 4.113981, 47.119143 ], [ 4.108988, 47.11946 ], [ 4.097676, 47.12619 ], [ 4.092706, 47.125721 ], [ 4.094833, 47.122612 ], [ 4.089786, 47.11704 ], [ 4.065407, 47.12084 ], [ 4.058772, 47.117491 ], [ 4.054995, 47.11522 ], [ 4.048656, 47.110047 ], [ 4.052594, 47.096965 ], [ 4.040302, 47.08653 ], [ 4.038853, 47.07974 ], [ 4.042109, 47.07702 ], [ 4.051451, 47.07416 ], [ 4.071006, 47.05808 ], [ 4.058189, 47.03941 ], [ 4.058279, 47.03257 ], [ 4.060912, 47.022489 ], [ 4.054465, 47.01327 ], [ 4.041746, 47.007752 ], [ 4.036583, 47.002072 ], [ 4.033377, 46.999607 ], [ 4.000752, 46.98621 ], [ 3.995999, 46.986744 ], [ 3.995001, 46.983322 ], [ 3.995097, 46.976397 ], [ 4.008715, 46.97225 ], [ 4.027712, 46.982721 ], [ 4.037144, 46.98469 ], [ 4.053855, 46.95978 ], [ 4.051063, 46.9535 ], [ 4.039773, 46.946965 ], [ 4.045065, 46.937741 ], [ 4.045302, 46.934372 ], [ 4.036827, 46.92633 ], [ 4.037067, 46.91969 ], [ 4.043618, 46.90432 ], [ 4.044687, 46.901169 ], [ 4.05919, 46.89978 ], [ 4.07139, 46.894251 ], [ 4.074981, 46.89189 ], [ 4.095196, 46.872416 ], [ 4.100104, 46.86256 ], [ 4.100887, 46.859107 ], [ 4.052059, 46.840438 ], [ 4.048389, 46.83795 ], [ 4.043109, 46.8336 ], [ 4.04595, 46.83124 ], [ 4.058347, 46.81908 ], [ 4.058444, 46.81598 ], [ 4.060935, 46.795162 ], [ 4.061995, 46.79171 ], [ 4.062545, 46.788322 ], [ 4.056286, 46.779267 ], [ 4.046503, 46.778356 ], [ 4.043832, 46.781253 ], [ 4.038172, 46.78686 ], [ 4.018742, 46.777012 ], [ 3.999789, 46.777701 ], [ 3.968523, 46.768649 ], [ 3.966737, 46.765485 ], [ 3.963222, 46.76603 ], [ 3.96223, 46.762587 ], [ 3.952834, 46.75434 ], [ 3.933395, 46.750714 ], [ 3.928165, 46.74138 ], [ 3.895651, 46.73319 ], [ 3.889191, 46.728229 ], [ 3.884282, 46.72829 ], [ 3.876358, 46.73227 ], [ 3.875024, 46.72916 ], [ 3.853508, 46.724934 ], [ 3.844924, 46.72199 ], [ 3.837252, 46.710169 ], [ 3.826552, 46.70383 ], [ 3.822214, 46.705145 ], [ 3.794654, 46.70203 ], [ 3.789893, 46.718483 ], [ 3.77978, 46.729915 ], [ 3.783666, 46.73605 ], [ 3.779252, 46.73782 ], [ 3.738633, 46.75196 ], [ 3.703968, 46.74684 ], [ 3.699403, 46.74535 ], [ 3.661101, 46.73774 ], [ 3.647852, 46.74264 ], [ 3.644177, 46.740886 ], [ 3.634065, 46.74422 ], [ 3.629424, 46.749459 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "60", "CODE_DEPT": "59", "NOM_DEPT": "NORD", "CODE_CHF": "350", "NOM_CHF": "LILLE", "X_CHF_LIEU": "7040", "Y_CHF_LIEU": "70594", "X_CENTROID": "7157", "Y_CENTROID": "70390", "CODE_REG": "31", "NOM_REGION": "NORD-PAS-DE-CALAIS" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.140895, 49.97876 ], [ 4.136382, 49.97751 ], [ 4.104938, 49.97157 ], [ 4.099815, 49.97233 ], [ 4.089691, 49.970476 ], [ 4.082589, 49.97383 ], [ 4.079933, 49.97995 ], [ 4.074968, 49.981 ], [ 4.044796, 49.98584 ], [ 4.031122, 49.98207 ], [ 4.027393, 49.98298 ], [ 4.021563, 49.986119 ], [ 4.011405, 49.98605 ], [ 4.005734, 49.9952 ], [ 3.985562, 49.99476 ], [ 3.980801, 49.993576 ], [ 3.980144, 50.00356 ], [ 3.995236, 50.028447 ], [ 3.991313, 50.038189 ], [ 3.989547, 50.04135 ], [ 3.982309, 50.04428 ], [ 3.949834, 50.026885 ], [ 3.948308, 50.02955 ], [ 3.943012, 50.029659 ], [ 3.922871, 50.02626 ], [ 3.919783, 50.02361 ], [ 3.887292, 50.00969 ], [ 3.887395, 50.01317 ], [ 3.886697, 50.023514 ], [ 3.878323, 50.027886 ], [ 3.883321, 50.02902 ], [ 3.882319, 50.03237 ], [ 3.868771, 50.03761 ], [ 3.848124, 50.04053 ], [ 3.837059, 50.047809 ], [ 3.832229, 50.04678 ], [ 3.815827, 50.03904 ], [ 3.811, 50.04064 ], [ 3.793588, 50.048296 ], [ 3.77793, 50.045989 ], [ 3.77523, 50.04908 ], [ 3.770963, 50.05104 ], [ 3.745752, 50.053572 ], [ 3.742636, 50.0561 ], [ 3.72121, 50.06413 ], [ 3.715185, 50.06927 ], [ 3.710359, 50.066491 ], [ 3.705575, 50.06564 ], [ 3.669883, 50.055088 ], [ 3.665721, 50.054697 ], [ 3.658176, 50.0484 ], [ 3.657538, 50.04003 ], [ 3.662095, 50.03873 ], [ 3.657569, 50.03273 ], [ 3.643079, 50.036989 ], [ 3.63009, 50.03202 ], [ 3.625097, 50.03078 ], [ 3.621489, 50.02882 ], [ 3.614124, 50.02506 ], [ 3.608747, 50.0301 ], [ 3.607741, 50.033469 ], [ 3.594225, 50.043918 ], [ 3.57924, 50.0471 ], [ 3.575596, 50.04925 ], [ 3.567799, 50.052971 ], [ 3.55644, 50.0539 ], [ 3.551277, 50.05377 ], [ 3.541758, 50.051975 ], [ 3.52989, 50.038887 ], [ 3.508157, 50.035512 ], [ 3.507062, 50.03336 ], [ 3.505235, 50.03054 ], [ 3.490106, 50.01896 ], [ 3.484913, 50.019609 ], [ 3.427792, 50.022085 ], [ 3.42847, 50.02478 ], [ 3.424921, 50.02727 ], [ 3.41538, 50.026754 ], [ 3.398474, 50.03458 ], [ 3.392479, 50.031132 ], [ 3.387166, 50.03106 ], [ 3.374224, 50.03641 ], [ 3.353107, 50.03571 ], [ 3.350214, 50.03286 ], [ 3.351671, 50.02973 ], [ 3.343616, 50.02627 ], [ 3.337102, 50.017401 ], [ 3.327669, 50.01585 ], [ 3.309304, 50.019352 ], [ 3.304894, 50.01846 ], [ 3.300484, 50.01759 ], [ 3.290837, 50.01513 ], [ 3.280355, 50.01521 ], [ 3.273525, 50.02027 ], [ 3.277936, 50.021475 ], [ 3.270716, 50.02947 ], [ 3.267164, 50.03012 ], [ 3.263541, 50.03064 ], [ 3.258791, 50.03141 ], [ 3.255846, 50.02544 ], [ 3.246725, 50.02769 ], [ 3.244843, 50.030617 ], [ 3.244078, 50.03089 ], [ 3.233971, 50.02838 ], [ 3.229336, 50.03018 ], [ 3.203548, 50.017876 ], [ 3.172707, 50.01199 ], [ 3.171212, 50.01512 ], [ 3.166994, 50.02098 ], [ 3.162556, 50.01932 ], [ 3.147359, 50.01876 ], [ 3.148926, 50.02527 ], [ 3.123578, 50.02448 ], [ 3.121506, 50.02698 ], [ 3.114299, 50.03354 ], [ 3.113001, 50.03922 ], [ 3.095776, 50.04572 ], [ 3.090254, 50.053741 ], [ 3.084626, 50.05849 ], [ 3.085835, 50.06422 ], [ 3.093709, 50.06685 ], [ 3.098108, 50.068437 ], [ 3.094889, 50.071035 ], [ 3.087669, 50.07557 ], [ 3.088853, 50.082176 ], [ 3.103729, 50.080961 ], [ 3.114055, 50.09238 ], [ 3.113084, 50.095556 ], [ 3.109628, 50.104783 ], [ 3.104601, 50.10463 ], [ 3.105585, 50.10803 ], [ 3.104294, 50.11138 ], [ 3.103755, 50.114613 ], [ 3.093601, 50.12164 ], [ 3.095967, 50.12452 ], [ 3.130662, 50.13914 ], [ 3.135333, 50.140743 ], [ 3.135538, 50.14421 ], [ 3.130229, 50.14456 ], [ 3.115494, 50.148244 ], [ 3.112266, 50.15477 ], [ 3.100959, 50.161969 ], [ 3.115648, 50.16664 ], [ 3.137514, 50.16694 ], [ 3.151507, 50.18027 ], [ 3.156377, 50.18157 ], [ 3.15517, 50.18466 ], [ 3.147055, 50.18825 ], [ 3.142896, 50.19649 ], [ 3.138996, 50.19748 ], [ 3.131195, 50.199495 ], [ 3.132574, 50.20258 ], [ 3.135974, 50.208 ], [ 3.142792, 50.21924 ], [ 3.147956, 50.21915 ], [ 3.178885, 50.219073 ], [ 3.180625, 50.22424 ], [ 3.184117, 50.226231 ], [ 3.186851, 50.23493 ], [ 3.18238, 50.23364 ], [ 3.174272, 50.240954 ], [ 3.169753, 50.24209 ], [ 3.147167, 50.24622 ], [ 3.149535, 50.260884 ], [ 3.154141, 50.2602 ], [ 3.150799, 50.26214 ], [ 3.138159, 50.26525 ], [ 3.132839, 50.26624 ], [ 3.127684, 50.26638 ], [ 3.107559, 50.26857 ], [ 3.102434, 50.269337 ], [ 3.077477, 50.27436 ], [ 3.062161, 50.27182 ], [ 3.061811, 50.27209 ], [ 3.057623, 50.27316 ], [ 3.054641, 50.27533 ], [ 3.050776, 50.277171 ], [ 3.036395, 50.26941 ], [ 3.02981, 50.26719 ], [ 3.018644, 50.264394 ], [ 3.015395, 50.26615 ], [ 3.012244, 50.26798 ], [ 3.015274, 50.28378 ], [ 3.036142, 50.28755 ], [ 3.044308, 50.283109 ], [ 3.055097, 50.2823 ], [ 3.052454, 50.28759 ], [ 3.055204, 50.28976 ], [ 3.051618, 50.29197 ], [ 3.047612, 50.293846 ], [ 3.050529, 50.29609 ], [ 3.058413, 50.30227 ], [ 3.065485, 50.30731 ], [ 3.080685, 50.30911 ], [ 3.084867, 50.31123 ], [ 3.082137, 50.313778 ], [ 3.079182, 50.316213 ], [ 3.074598, 50.31711 ], [ 3.060366, 50.32892 ], [ 3.061114, 50.33278 ], [ 3.058157, 50.335402 ], [ 3.046692, 50.34581 ], [ 3.042777, 50.34486 ], [ 3.038806, 50.34402 ], [ 3.035188, 50.34633 ], [ 3.013459, 50.35941 ], [ 3.010385, 50.35878 ], [ 3.00734, 50.359486 ], [ 3.008267, 50.3625 ], [ 3.002793, 50.370887 ], [ 3.001685, 50.3739 ], [ 2.993935, 50.38177 ], [ 2.990422, 50.39495 ], [ 2.983904, 50.40024 ], [ 2.980518, 50.40288 ], [ 2.991727, 50.4017 ], [ 2.995463, 50.39994 ], [ 3.014959, 50.4031 ], [ 3.027533, 50.40852 ], [ 3.029516, 50.41154 ], [ 3.037445, 50.41999 ], [ 3.038979, 50.42318 ], [ 3.062224, 50.42562 ], [ 3.065917, 50.423558 ], [ 3.071442, 50.42531 ], [ 3.069662, 50.428592 ], [ 3.078492, 50.44097 ], [ 3.081786, 50.44373 ], [ 3.077219, 50.44499 ], [ 3.067817, 50.44685 ], [ 3.066525, 50.458531 ], [ 3.062966, 50.456962 ], [ 3.058817, 50.456183 ], [ 3.053992, 50.454884 ], [ 3.041611, 50.44451 ], [ 3.038558, 50.442143 ], [ 3.029859, 50.44468 ], [ 3.016292, 50.44192 ], [ 3.016715, 50.445271 ], [ 3.016703, 50.45198 ], [ 3.008268, 50.45586 ], [ 3.017172, 50.465765 ], [ 3.019563, 50.46833 ], [ 3.017258, 50.470352 ], [ 3.017441, 50.47284 ], [ 3.021001, 50.475423 ], [ 3.024325, 50.48406 ], [ 3.010848, 50.49027 ], [ 3.008344, 50.49277 ], [ 3.00439, 50.495011 ], [ 2.99423, 50.49666 ], [ 2.989854, 50.498861 ], [ 2.96471, 50.51278 ], [ 2.950676, 50.511903 ], [ 2.946244, 50.51042 ], [ 2.926865, 50.50781 ], [ 2.922758, 50.505749 ], [ 2.910143, 50.49983 ], [ 2.904831, 50.503456 ], [ 2.901641, 50.50101 ], [ 2.882077, 50.50775 ], [ 2.881294, 50.51769 ], [ 2.889207, 50.52994 ], [ 2.887046, 50.53298 ], [ 2.886965, 50.53766 ], [ 2.882504, 50.53597 ], [ 2.878465, 50.534651 ], [ 2.862058, 50.52977 ], [ 2.857089, 50.529234 ], [ 2.852162, 50.5286 ], [ 2.846701, 50.52791 ], [ 2.824771, 50.52561 ], [ 2.81437, 50.52813 ], [ 2.810636, 50.52882 ], [ 2.803772, 50.52691 ], [ 2.798854, 50.52792 ], [ 2.801323, 50.53732 ], [ 2.796583, 50.54632 ], [ 2.794472, 50.549206 ], [ 2.808764, 50.55082 ], [ 2.813165, 50.54931 ], [ 2.815076, 50.56599 ], [ 2.808235, 50.57885 ], [ 2.793326, 50.58123 ], [ 2.789076, 50.58306 ], [ 2.792065, 50.586288 ], [ 2.808041, 50.60755 ], [ 2.82454, 50.61594 ], [ 2.828412, 50.61824 ], [ 2.831382, 50.62002 ], [ 2.841416, 50.627662 ], [ 2.857106, 50.627313 ], [ 2.862341, 50.62726 ], [ 2.866202, 50.629046 ], [ 2.869738, 50.6311 ], [ 2.86681, 50.6338 ], [ 2.845502, 50.652274 ], [ 2.842615, 50.65488 ], [ 2.830892, 50.660718 ], [ 2.821276, 50.661278 ], [ 2.818177, 50.66327 ], [ 2.809188, 50.66937 ], [ 2.80598, 50.6665 ], [ 2.796618, 50.66296 ], [ 2.769677, 50.663617 ], [ 2.759527, 50.651402 ], [ 2.759178, 50.65068 ], [ 2.788444, 50.63595 ], [ 2.792447, 50.63366 ], [ 2.784663, 50.629183 ], [ 2.764665, 50.633382 ], [ 2.760314, 50.63147 ], [ 2.750512, 50.61355 ], [ 2.751518, 50.60689 ], [ 2.747182, 50.60525 ], [ 2.726066, 50.613847 ], [ 2.718588, 50.62936 ], [ 2.698103, 50.62915 ], [ 2.684208, 50.63311 ], [ 2.683002, 50.636413 ], [ 2.673575, 50.634334 ], [ 2.669852, 50.625332 ], [ 2.644364, 50.62256 ], [ 2.630516, 50.617952 ], [ 2.616283, 50.6271 ], [ 2.613497, 50.63349 ], [ 2.593574, 50.631603 ], [ 2.592547, 50.6347 ], [ 2.584993, 50.63692 ], [ 2.582335, 50.63418 ], [ 2.568492, 50.632523 ], [ 2.564301, 50.62443 ], [ 2.561693, 50.62746 ], [ 2.551557, 50.62651 ], [ 2.541783, 50.62923 ], [ 2.534119, 50.64167 ], [ 2.528875, 50.64257 ], [ 2.506806, 50.633424 ], [ 2.501953, 50.63196 ], [ 2.491542, 50.63172 ], [ 2.473183, 50.6386 ], [ 2.470104, 50.64149 ], [ 2.450822, 50.653445 ], [ 2.44606, 50.6551 ], [ 2.430188, 50.6568 ], [ 2.421532, 50.66552 ], [ 2.416134, 50.665832 ], [ 2.414511, 50.669432 ], [ 2.409622, 50.67093 ], [ 2.401762, 50.679916 ], [ 2.378528, 50.67193 ], [ 2.371374, 50.677092 ], [ 2.368168, 50.67936 ], [ 2.363525, 50.68464 ], [ 2.367167, 50.687067 ], [ 2.386124, 50.69858 ], [ 2.366375, 50.7095 ], [ 2.366373, 50.709677 ], [ 2.362256, 50.71111 ], [ 2.353433, 50.717992 ], [ 2.350813, 50.72054 ], [ 2.350509, 50.72655 ], [ 2.339683, 50.73067 ], [ 2.342195, 50.740698 ], [ 2.363636, 50.751568 ], [ 2.382123, 50.75499 ], [ 2.411478, 50.766734 ], [ 2.407129, 50.767171 ], [ 2.404331, 50.771635 ], [ 2.40068, 50.77399 ], [ 2.386543, 50.777525 ], [ 2.381448, 50.77868 ], [ 2.374318, 50.783027 ], [ 2.365724, 50.77547 ], [ 2.360333, 50.77539 ], [ 2.340563, 50.780906 ], [ 2.319058, 50.78244 ], [ 2.31261, 50.78721 ], [ 2.309115, 50.78505 ], [ 2.288578, 50.777039 ], [ 2.288277, 50.7803 ], [ 2.287618, 50.78681 ], [ 2.273686, 50.783234 ], [ 2.254833, 50.78803 ], [ 2.251044, 50.78963 ], [ 2.242758, 50.79652 ], [ 2.239846, 50.79903 ], [ 2.226713, 50.80782 ], [ 2.22266, 50.80987 ], [ 2.21343, 50.81055 ], [ 2.211363, 50.81953 ], [ 2.212661, 50.82256 ], [ 2.207562, 50.82789 ], [ 2.208621, 50.837058 ], [ 2.206205, 50.84023 ], [ 2.202647, 50.842941 ], [ 2.203616, 50.84971 ], [ 2.190113, 50.86793 ], [ 2.19034, 50.87137 ], [ 2.18877, 50.874647 ], [ 2.166938, 50.908442 ], [ 2.16555, 50.911653 ], [ 2.164601, 50.91492 ], [ 2.151317, 50.93257 ], [ 2.145509, 50.94511 ], [ 2.141819, 50.94747 ], [ 2.135655, 50.96309 ], [ 2.128009, 50.96739 ], [ 2.125134, 50.970134 ], [ 2.122685, 50.97288 ], [ 2.121666, 50.979107 ], [ 2.10927, 50.98417 ], [ 2.110463, 50.98741 ], [ 2.106566, 50.989943 ], [ 2.089192, 51.00349 ], [ 2.067712, 51.0065 ], [ 2.083572, 51.00839 ], [ 2.103662, 51.00518 ], [ 2.117312, 50.99467 ], [ 2.120473, 50.99192 ], [ 2.112877, 51.00504 ], [ 2.146495, 51.02689 ], [ 2.175015, 51.01554 ], [ 2.170886, 51.0133 ], [ 2.179919, 51.011309 ], [ 2.184275, 51.024899 ], [ 2.191054, 51.03047 ], [ 2.190033, 51.03722 ], [ 2.175106, 51.04176 ], [ 2.190397, 51.04113 ], [ 2.208475, 51.03241 ], [ 2.234957, 51.037247 ], [ 2.240201, 51.03858 ], [ 2.259275, 51.043537 ], [ 2.264227, 51.044445 ], [ 2.296897, 51.05023 ], [ 2.302421, 51.05101 ], [ 2.35041, 51.06024 ], [ 2.3676, 51.05149 ], [ 2.383895, 51.04901 ], [ 2.427124, 51.056229 ], [ 2.432332, 51.05754 ], [ 2.46192, 51.06529 ], [ 2.466931, 51.066449 ], [ 2.470114, 51.06704 ], [ 2.473281, 51.067669 ], [ 2.488896, 51.071823 ], [ 2.494106, 51.073208 ], [ 2.541447, 51.08776 ], [ 2.546031, 51.0894 ], [ 2.557367, 51.07337 ], [ 2.559218, 51.070054 ], [ 2.561481, 51.06683 ], [ 2.566089, 51.046043 ], [ 2.567001, 51.042674 ], [ 2.575724, 51.01401 ], [ 2.572476, 51.01309 ], [ 2.574804, 51.00361 ], [ 2.582346, 50.99758 ], [ 2.606478, 50.98891 ], [ 2.629709, 50.94933 ], [ 2.617791, 50.93514 ], [ 2.609007, 50.931025 ], [ 2.594754, 50.920753 ], [ 2.590013, 50.9191 ], [ 2.592097, 50.915945 ], [ 2.602718, 50.91505 ], [ 2.607418, 50.90932 ], [ 2.604717, 50.90635 ], [ 2.608896, 50.89629 ], [ 2.607309, 50.87259 ], [ 2.612033, 50.86683 ], [ 2.602139, 50.855935 ], [ 2.59917, 50.85329 ], [ 2.599113, 50.84982 ], [ 2.614633, 50.847667 ], [ 2.616995, 50.84089 ], [ 2.624824, 50.836062 ], [ 2.634983, 50.81276 ], [ 2.658365, 50.81458 ], [ 2.662318, 50.81629 ], [ 2.670175, 50.82104 ], [ 2.682146, 50.81393 ], [ 2.719826, 50.812052 ], [ 2.723565, 50.809503 ], [ 2.725014, 50.795725 ], [ 2.735823, 50.783636 ], [ 2.738556, 50.780591 ], [ 2.752129, 50.77742 ], [ 2.754308, 50.7746 ], [ 2.760956, 50.76926 ], [ 2.759503, 50.762527 ], [ 2.782033, 50.74769 ], [ 2.791225, 50.727528 ], [ 2.809139, 50.71931 ], [ 2.813275, 50.716948 ], [ 2.848568, 50.72176 ], [ 2.86741, 50.705783 ], [ 2.870173, 50.702914 ], [ 2.884268, 50.7059 ], [ 2.897134, 50.69585 ], [ 2.90043, 50.69329 ], [ 2.909936, 50.69436 ], [ 2.909077, 50.70086 ], [ 2.917296, 50.70352 ], [ 2.922327, 50.7028 ], [ 2.930072, 50.71174 ], [ 2.937172, 50.73006 ], [ 2.943586, 50.73379 ], [ 2.937651, 50.74257 ], [ 2.940137, 50.74536 ], [ 2.952081, 50.75185 ], [ 2.971968, 50.750275 ], [ 2.979787, 50.75468 ], [ 2.983294, 50.75719 ], [ 3.009904, 50.76806 ], [ 3.015254, 50.773624 ], [ 3.029982, 50.77043 ], [ 3.035274, 50.77015 ], [ 3.040683, 50.77557 ], [ 3.053763, 50.78015 ], [ 3.058745, 50.78071 ], [ 3.085734, 50.772887 ], [ 3.090194, 50.77439 ], [ 3.102702, 50.78094 ], [ 3.112211, 50.793036 ], [ 3.125773, 50.78777 ], [ 3.147109, 50.7899 ], [ 3.158357, 50.77504 ], [ 3.161603, 50.77226 ], [ 3.174469, 50.75711 ], [ 3.184298, 50.74905 ], [ 3.192547, 50.738923 ], [ 3.196344, 50.73705 ], [ 3.199132, 50.73405 ], [ 3.193002, 50.728442 ], [ 3.195467, 50.72249 ], [ 3.210326, 50.713016 ], [ 3.247511, 50.710327 ], [ 3.257956, 50.70243 ], [ 3.259532, 50.69569 ], [ 3.253688, 50.691138 ], [ 3.261831, 50.675965 ], [ 3.243893, 50.66976 ], [ 3.242114, 50.66668 ], [ 3.24437, 50.654571 ], [ 3.245075, 50.65143 ], [ 3.24882, 50.649456 ], [ 3.247623, 50.63855 ], [ 3.250659, 50.63614 ], [ 3.256616, 50.63107 ], [ 3.258704, 50.628176 ], [ 3.256132, 50.621953 ], [ 3.270677, 50.60878 ], [ 3.270969, 50.60551 ], [ 3.27831, 50.5942 ], [ 3.276637, 50.58483 ], [ 3.276169, 50.58168 ], [ 3.281692, 50.57622 ], [ 3.27806, 50.566755 ], [ 3.284599, 50.56183 ], [ 3.280712, 50.5597 ], [ 3.276055, 50.55827 ], [ 3.281236, 50.55255 ], [ 3.2796, 50.539547 ], [ 3.287029, 50.530869 ], [ 3.286531, 50.527576 ], [ 3.32095, 50.51726 ], [ 3.328858, 50.508128 ], [ 3.331755, 50.507743 ], [ 3.334712, 50.5079 ], [ 3.360271, 50.5037 ], [ 3.372971, 50.49298 ], [ 3.377262, 50.49099 ], [ 3.400258, 50.498564 ], [ 3.405551, 50.498781 ], [ 3.43563, 50.509127 ], [ 3.439442, 50.507228 ], [ 3.444757, 50.506536 ], [ 3.450083, 50.507226 ], [ 3.456075, 50.5207 ], [ 3.475, 50.53295 ], [ 3.506485, 50.528416 ], [ 3.517988, 50.52145 ], [ 3.51369, 50.5114 ], [ 3.497804, 50.4978 ], [ 3.501589, 50.48785 ], [ 3.506667, 50.489153 ], [ 3.526219, 50.4953 ], [ 3.558634, 50.49842 ], [ 3.568602, 50.500114 ], [ 3.578961, 50.49285 ], [ 3.583316, 50.491015 ], [ 3.607937, 50.49653 ], [ 3.629448, 50.4814 ], [ 3.640294, 50.46585 ], [ 3.643649, 50.463167 ], [ 3.65395, 50.462601 ], [ 3.660986, 50.45759 ], [ 3.660365, 50.44451 ], [ 3.667626, 50.43974 ], [ 3.668833, 50.43645 ], [ 3.671893, 50.4129 ], [ 3.673437, 50.40965 ], [ 3.672952, 50.38906 ], [ 3.668431, 50.382751 ], [ 3.665304, 50.379895 ], [ 3.658408, 50.37321 ], [ 3.657797, 50.370536 ], [ 3.666545, 50.36218 ], [ 3.664978, 50.34876 ], [ 3.676144, 50.338007 ], [ 3.673676, 50.33493 ], [ 3.680066, 50.32923 ], [ 3.684925, 50.327562 ], [ 3.694183, 50.315425 ], [ 3.708085, 50.304859 ], [ 3.710431, 50.30317 ], [ 3.716778, 50.30787 ], [ 3.714352, 50.31678 ], [ 3.726565, 50.31082 ], [ 3.73174, 50.3119 ], [ 3.729811, 50.32687 ], [ 3.734504, 50.33233 ], [ 3.738629, 50.34582 ], [ 3.747527, 50.349788 ], [ 3.758248, 50.34887 ], [ 3.763554, 50.34808 ], [ 3.765482, 50.35124 ], [ 3.781047, 50.35328 ], [ 3.79658, 50.35137 ], [ 3.805725, 50.35462 ], [ 3.810935, 50.35399 ], [ 3.813953, 50.34794 ], [ 3.811659, 50.344885 ], [ 3.821792, 50.34595 ], [ 3.82999, 50.353032 ], [ 3.84015, 50.353861 ], [ 3.854478, 50.35053 ], [ 3.857562, 50.3479 ], [ 3.870706, 50.3387 ], [ 3.885758, 50.33948 ], [ 3.888876, 50.333282 ], [ 3.88606, 50.32706 ], [ 3.915284, 50.33065 ], [ 3.919801, 50.33218 ], [ 3.961807, 50.34808 ], [ 3.967141, 50.34745 ], [ 3.96736, 50.34057 ], [ 3.972104, 50.3465 ], [ 3.982059, 50.343978 ], [ 3.98687, 50.342459 ], [ 3.993217, 50.347705 ], [ 4.013692, 50.351337 ], [ 4.02522, 50.35789 ], [ 4.037613, 50.342904 ], [ 4.05219, 50.338785 ], [ 4.077086, 50.32075 ], [ 4.078661, 50.31043 ], [ 4.078833, 50.30926 ], [ 4.098934, 50.312258 ], [ 4.108291, 50.30414 ], [ 4.11803, 50.302649 ], [ 4.12539, 50.2831 ], [ 4.124121, 50.273275 ], [ 4.1341, 50.27402 ], [ 4.138373, 50.261524 ], [ 4.134956, 50.25909 ], [ 4.153771, 50.25676 ], [ 4.163658, 50.257292 ], [ 4.166825, 50.26706 ], [ 4.152045, 50.27693 ], [ 4.160433, 50.28587 ], [ 4.170685, 50.28557 ], [ 4.179618, 50.27676 ], [ 4.209977, 50.27007 ], [ 4.22082, 50.2543 ], [ 4.204554, 50.24057 ], [ 4.199062, 50.24045 ], [ 4.183381, 50.23215 ], [ 4.16644, 50.215094 ], [ 4.150867, 50.21342 ], [ 4.16042, 50.19485 ], [ 4.156247, 50.19284 ], [ 4.156582, 50.186063 ], [ 4.150045, 50.17659 ], [ 4.15506, 50.167136 ], [ 4.153214, 50.160373 ], [ 4.140636, 50.15371 ], [ 4.129467, 50.13803 ], [ 4.126925, 50.13492 ], [ 4.146143, 50.128959 ], [ 4.163119, 50.13506 ], [ 4.195247, 50.1346 ], [ 4.203384, 50.115316 ], [ 4.197658, 50.10944 ], [ 4.204636, 50.10453 ], [ 4.205375, 50.097989 ], [ 4.227539, 50.07968 ], [ 4.23076, 50.07321 ], [ 4.22816, 50.066702 ], [ 4.201024, 50.0569 ], [ 4.190622, 50.049422 ], [ 4.175988, 50.0458 ], [ 4.171064, 50.047 ], [ 4.164072, 50.04866 ], [ 4.160782, 50.04752 ], [ 4.135626, 50.018567 ], [ 4.135425, 50.015183 ], [ 4.147204, 50.00403 ], [ 4.162406, 49.99655 ], [ 4.156285, 49.98721 ], [ 4.145596, 49.98025 ], [ 4.140895, 49.97876 ] ] ], [ [ [ 3.003746, 50.15016 ], [ 3.007826, 50.14868 ], [ 3.014941, 50.15242 ], [ 3.019176, 50.15371 ], [ 3.022362, 50.15195 ], [ 3.026289, 50.151016 ], [ 3.035919, 50.15156 ], [ 3.039068, 50.15671 ], [ 3.040398, 50.1597 ], [ 3.056215, 50.166048 ], [ 3.060737, 50.17094 ], [ 3.062726, 50.17378 ], [ 3.085555, 50.170979 ], [ 3.090058, 50.171757 ], [ 3.092256, 50.165442 ], [ 3.095886, 50.16313 ], [ 3.092079, 50.160674 ], [ 3.067794, 50.14749 ], [ 3.072024, 50.13422 ], [ 3.072368, 50.130818 ], [ 3.067294, 50.128738 ], [ 3.062491, 50.130429 ], [ 3.052154, 50.13241 ], [ 3.037036, 50.13058 ], [ 3.034799, 50.12765 ], [ 3.024637, 50.116387 ], [ 3.010628, 50.112806 ], [ 3.007835, 50.11563 ], [ 3.000531, 50.12011 ], [ 3.002389, 50.12996 ], [ 2.994718, 50.13815 ], [ 3.003746, 50.15016 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "61", "CODE_DEPT": "60", "NOM_DEPT": "OISE", "CODE_CHF": "057", "NOM_CHF": "BEAUVAIS", "X_CHF_LIEU": "6337", "Y_CHF_LIEU": "69264", "X_CENTROID": "6582", "Y_CENTROID": "69235", "CODE_REG": "22", "NOM_REGION": "PICARDIE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.071884, 49.117554 ], [ 3.069347, 49.11485 ], [ 3.056321, 49.101918 ], [ 3.056752, 49.09578 ], [ 3.064684, 49.08817 ], [ 3.066076, 49.08522 ], [ 3.061684, 49.08647 ], [ 3.034416, 49.08861 ], [ 3.0305, 49.08689 ], [ 3.012773, 49.09062 ], [ 3.003956, 49.088741 ], [ 2.999206, 49.088534 ], [ 2.989885, 49.08157 ], [ 2.988135, 49.072376 ], [ 2.983235, 49.07188 ], [ 2.974612, 49.074838 ], [ 2.974159, 49.0778 ], [ 2.971429, 49.088972 ], [ 2.967335, 49.090652 ], [ 2.954853, 49.08595 ], [ 2.94583, 49.08808 ], [ 2.944317, 49.081814 ], [ 2.937888, 49.077998 ], [ 2.933807, 49.08001 ], [ 2.923982, 49.07829 ], [ 2.900947, 49.08535 ], [ 2.899159, 49.08252 ], [ 2.895105, 49.077052 ], [ 2.890202, 49.07847 ], [ 2.872029, 49.071248 ], [ 2.856089, 49.070034 ], [ 2.854288, 49.073152 ], [ 2.844946, 49.08488 ], [ 2.83522, 49.083 ], [ 2.821258, 49.08681 ], [ 2.809254, 49.097536 ], [ 2.80477, 49.09576 ], [ 2.79173, 49.09014 ], [ 2.787956, 49.08917 ], [ 2.783988, 49.08864 ], [ 2.788214, 49.08287 ], [ 2.768337, 49.08326 ], [ 2.772712, 49.081378 ], [ 2.785275, 49.07544 ], [ 2.760833, 49.063004 ], [ 2.756038, 49.061528 ], [ 2.735013, 49.060459 ], [ 2.733096, 49.063359 ], [ 2.724357, 49.08046 ], [ 2.720824, 49.07564 ], [ 2.703081, 49.064736 ], [ 2.698321, 49.06443 ], [ 2.690023, 49.067562 ], [ 2.691155, 49.07062 ], [ 2.693519, 49.073452 ], [ 2.67832, 49.08573 ], [ 2.676384, 49.088872 ], [ 2.650967, 49.10025 ], [ 2.640674, 49.099713 ], [ 2.633273, 49.108376 ], [ 2.631694, 49.105117 ], [ 2.619365, 49.09447 ], [ 2.614781, 49.09409 ], [ 2.610339, 49.094943 ], [ 2.609132, 49.091558 ], [ 2.590524, 49.07965 ], [ 2.586578, 49.080127 ], [ 2.582606, 49.08048 ], [ 2.580161, 49.08326 ], [ 2.576746, 49.092429 ], [ 2.559479, 49.09762 ], [ 2.554091, 49.11754 ], [ 2.542285, 49.118854 ], [ 2.542654, 49.122065 ], [ 2.537924, 49.12103 ], [ 2.532668, 49.11593 ], [ 2.531063, 49.0996 ], [ 2.526067, 49.10089 ], [ 2.489931, 49.10636 ], [ 2.501596, 49.11948 ], [ 2.499227, 49.12227 ], [ 2.494845, 49.12351 ], [ 2.477004, 49.12797 ], [ 2.477603, 49.13107 ], [ 2.473884, 49.132987 ], [ 2.461309, 49.13661 ], [ 2.458813, 49.139483 ], [ 2.435399, 49.13394 ], [ 2.436577, 49.13646 ], [ 2.438907, 49.1415 ], [ 2.439898, 49.14365 ], [ 2.440903, 49.145803 ], [ 2.410447, 49.15208 ], [ 2.394792, 49.14981 ], [ 2.3732, 49.15925 ], [ 2.369839, 49.15718 ], [ 2.358039, 49.14815 ], [ 2.354227, 49.150485 ], [ 2.321777, 49.18444 ], [ 2.317953, 49.185233 ], [ 2.310593, 49.184876 ], [ 2.306913, 49.185179 ], [ 2.301197, 49.183887 ], [ 2.299925, 49.180589 ], [ 2.28887, 49.169681 ], [ 2.286413, 49.15992 ], [ 2.281365, 49.15913 ], [ 2.266531, 49.156295 ], [ 2.262132, 49.158102 ], [ 2.259401, 49.15544 ], [ 2.241583, 49.151573 ], [ 2.225833, 49.1516 ], [ 2.21636, 49.154378 ], [ 2.219639, 49.15692 ], [ 2.234054, 49.165695 ], [ 2.220277, 49.179201 ], [ 2.215478, 49.17823 ], [ 2.207218, 49.17489 ], [ 2.187374, 49.173229 ], [ 2.183442, 49.17382 ], [ 2.176584, 49.17654 ], [ 2.178986, 49.17382 ], [ 2.172135, 49.166607 ], [ 2.16393, 49.1661 ], [ 2.161839, 49.16823 ], [ 2.157738, 49.17251 ], [ 2.163401, 49.17762 ], [ 2.157181, 49.182282 ], [ 2.153026, 49.183925 ], [ 2.143261, 49.18555 ], [ 2.139762, 49.18313 ], [ 2.13028, 49.19075 ], [ 2.11591, 49.18799 ], [ 2.095875, 49.19006 ], [ 2.093329, 49.19285 ], [ 2.09024, 49.20545 ], [ 2.080769, 49.207203 ], [ 2.08089, 49.21045 ], [ 2.076699, 49.20844 ], [ 2.069874, 49.203344 ], [ 2.050488, 49.19878 ], [ 2.038368, 49.19241 ], [ 2.038236, 49.19213 ], [ 2.035163, 49.189908 ], [ 2.021784, 49.18868 ], [ 2.018235, 49.186355 ], [ 1.999445, 49.175573 ], [ 1.990193, 49.17676 ], [ 1.974086, 49.183316 ], [ 1.971263, 49.181107 ], [ 1.962698, 49.1746 ], [ 1.958097, 49.17287 ], [ 1.937433, 49.170761 ], [ 1.933925, 49.17335 ], [ 1.882568, 49.1625 ], [ 1.882617, 49.16594 ], [ 1.876765, 49.175309 ], [ 1.874497, 49.17429 ], [ 1.869788, 49.17265 ], [ 1.849074, 49.170489 ], [ 1.838268, 49.16619 ], [ 1.834069, 49.16512 ], [ 1.83664, 49.171547 ], [ 1.831251, 49.17698 ], [ 1.816999, 49.17587 ], [ 1.797776, 49.185147 ], [ 1.794378, 49.183189 ], [ 1.793582, 49.18028 ], [ 1.789302, 49.181493 ], [ 1.776924, 49.185225 ], [ 1.776379, 49.185094 ], [ 1.773149, 49.18247 ], [ 1.756131, 49.174879 ], [ 1.742695, 49.1798 ], [ 1.742878, 49.18299 ], [ 1.73895, 49.19219 ], [ 1.725913, 49.19401 ], [ 1.72571, 49.197273 ], [ 1.715583, 49.20285 ], [ 1.715608, 49.206238 ], [ 1.73398, 49.21199 ], [ 1.735795, 49.22194 ], [ 1.740453, 49.22344 ], [ 1.736324, 49.225573 ], [ 1.710812, 49.23738 ], [ 1.704364, 49.2322 ], [ 1.700984, 49.23395 ], [ 1.701625, 49.2423 ], [ 1.699859, 49.248652 ], [ 1.701428, 49.25179 ], [ 1.708007, 49.25622 ], [ 1.708195, 49.26241 ], [ 1.711646, 49.26452 ], [ 1.727115, 49.26509 ], [ 1.735143, 49.269365 ], [ 1.750536, 49.268023 ], [ 1.75472, 49.270009 ], [ 1.768065, 49.25545 ], [ 1.766896, 49.252035 ], [ 1.786654, 49.24882 ], [ 1.790552, 49.246575 ], [ 1.790289, 49.25369 ], [ 1.800911, 49.270063 ], [ 1.80266, 49.273434 ], [ 1.794084, 49.27649 ], [ 1.796641, 49.28646 ], [ 1.784643, 49.29286 ], [ 1.77535, 49.29117 ], [ 1.77239, 49.293664 ], [ 1.774432, 49.30668 ], [ 1.767545, 49.31928 ], [ 1.770655, 49.32557 ], [ 1.774004, 49.335692 ], [ 1.757629, 49.35703 ], [ 1.760168, 49.365326 ], [ 1.759341, 49.36824 ], [ 1.749902, 49.37146 ], [ 1.742778, 49.38077 ], [ 1.720029, 49.39528 ], [ 1.736382, 49.40353 ], [ 1.740379, 49.40568 ], [ 1.735689, 49.40651 ], [ 1.717574, 49.4037 ], [ 1.713938, 49.40922 ], [ 1.72201, 49.42149 ], [ 1.726078, 49.438065 ], [ 1.733389, 49.44122 ], [ 1.736373, 49.44713 ], [ 1.739918, 49.4493 ], [ 1.748842, 49.45144 ], [ 1.749925, 49.45679 ], [ 1.747434, 49.45945 ], [ 1.760619, 49.46452 ], [ 1.765371, 49.465925 ], [ 1.775771, 49.47344 ], [ 1.775438, 49.48686 ], [ 1.778449, 49.489626 ], [ 1.788633, 49.490141 ], [ 1.78755, 49.50623 ], [ 1.783584, 49.507609 ], [ 1.768074, 49.512028 ], [ 1.755399, 49.50646 ], [ 1.744868, 49.49173 ], [ 1.740506, 49.497983 ], [ 1.72546, 49.49978 ], [ 1.719227, 49.50292 ], [ 1.717972, 49.50674 ], [ 1.71992, 49.508904 ], [ 1.738792, 49.52058 ], [ 1.745519, 49.53916 ], [ 1.744888, 49.53952 ], [ 1.731211, 49.541354 ], [ 1.724905, 49.54554 ], [ 1.72916, 49.55503 ], [ 1.729834, 49.56129 ], [ 1.726288, 49.56386 ], [ 1.720397, 49.569598 ], [ 1.717848, 49.57262 ], [ 1.710406, 49.57725 ], [ 1.697693, 49.57222 ], [ 1.694593, 49.58054 ], [ 1.709641, 49.58021 ], [ 1.7204, 49.58556 ], [ 1.721618, 49.58881 ], [ 1.720146, 49.589656 ], [ 1.693725, 49.60107 ], [ 1.715943, 49.61395 ], [ 1.721685, 49.623321 ], [ 1.71873, 49.62976 ], [ 1.717252, 49.632981 ], [ 1.707252, 49.63776 ], [ 1.70442, 49.63976 ], [ 1.701361, 49.641952 ], [ 1.698685, 49.64435 ], [ 1.708078, 49.646149 ], [ 1.713754, 49.654908 ], [ 1.721554, 49.65857 ], [ 1.722778, 49.66165 ], [ 1.724131, 49.671805 ], [ 1.747082, 49.680078 ], [ 1.752184, 49.68097 ], [ 1.751309, 49.68392 ], [ 1.750299, 49.69582 ], [ 1.746515, 49.69757 ], [ 1.743109, 49.70033 ], [ 1.732928, 49.69855 ], [ 1.717096, 49.68456 ], [ 1.707758, 49.681374 ], [ 1.68862, 49.69371 ], [ 1.715453, 49.71033 ], [ 1.715109, 49.71354 ], [ 1.715538, 49.73288 ], [ 1.725303, 49.73157 ], [ 1.742891, 49.73855 ], [ 1.745455, 49.738572 ], [ 1.74026, 49.75025 ], [ 1.74272, 49.75285 ], [ 1.749886, 49.76211 ], [ 1.763625, 49.75727 ], [ 1.784845, 49.7579 ], [ 1.792246, 49.755812 ], [ 1.790529, 49.75335 ], [ 1.794776, 49.75146 ], [ 1.809602, 49.75384 ], [ 1.818059, 49.74194 ], [ 1.820456, 49.73905 ], [ 1.836526, 49.740248 ], [ 1.840662, 49.733926 ], [ 1.825215, 49.724396 ], [ 1.820558, 49.72255 ], [ 1.822305, 49.719551 ], [ 1.832154, 49.71917 ], [ 1.839607, 49.71506 ], [ 1.837961, 49.70878 ], [ 1.845561, 49.70421 ], [ 1.848986, 49.70164 ], [ 1.863471, 49.70385 ], [ 1.876809, 49.69965 ], [ 1.881046, 49.69786 ], [ 1.890205, 49.69906 ], [ 1.894761, 49.699796 ], [ 1.915707, 49.71363 ], [ 1.929088, 49.71792 ], [ 1.933066, 49.71988 ], [ 1.947314, 49.70371 ], [ 1.949092, 49.7008 ], [ 1.967105, 49.71783 ], [ 1.97147, 49.719941 ], [ 1.977685, 49.71135 ], [ 1.992926, 49.71005 ], [ 2.001826, 49.71338 ], [ 2.014066, 49.708198 ], [ 2.023351, 49.711005 ], [ 2.02847, 49.710713 ], [ 2.02882, 49.710536 ], [ 2.034015, 49.710623 ], [ 2.037942, 49.70439 ], [ 2.058855, 49.6951 ], [ 2.059015, 49.68862 ], [ 2.048708, 49.688004 ], [ 2.050939, 49.68644 ], [ 2.066362, 49.68451 ], [ 2.083263, 49.692043 ], [ 2.087716, 49.69012 ], [ 2.095049, 49.69293 ], [ 2.110949, 49.693848 ], [ 2.118952, 49.68925 ], [ 2.124042, 49.688039 ], [ 2.138188, 49.69105 ], [ 2.144646, 49.69586 ], [ 2.147203, 49.69869 ], [ 2.155584, 49.7021 ], [ 2.185361, 49.70271 ], [ 2.190164, 49.70388 ], [ 2.192036, 49.7029 ], [ 2.204975, 49.69855 ], [ 2.223633, 49.70236 ], [ 2.228579, 49.702342 ], [ 2.232463, 49.70208 ], [ 2.247169, 49.70164 ], [ 2.255913, 49.69578 ], [ 2.260268, 49.695404 ], [ 2.287811, 49.68714 ], [ 2.290579, 49.68426 ], [ 2.300514, 49.681894 ], [ 2.314607, 49.68641 ], [ 2.315517, 49.68981 ], [ 2.327508, 49.68275 ], [ 2.332295, 49.680994 ], [ 2.335226, 49.67171 ], [ 2.350234, 49.663092 ], [ 2.355011, 49.664088 ], [ 2.358328, 49.66566 ], [ 2.362066, 49.66674 ], [ 2.369307, 49.65772 ], [ 2.37391, 49.656037 ], [ 2.388916, 49.65592 ], [ 2.397808, 49.658925 ], [ 2.402178, 49.66052 ], [ 2.412372, 49.661234 ], [ 2.445587, 49.65298 ], [ 2.449166, 49.64713 ], [ 2.452897, 49.64114 ], [ 2.456753, 49.635111 ], [ 2.465564, 49.63799 ], [ 2.46896, 49.63603 ], [ 2.473367, 49.635319 ], [ 2.466812, 49.62704 ], [ 2.474051, 49.62264 ], [ 2.478123, 49.62079 ], [ 2.501306, 49.63781 ], [ 2.505507, 49.63973 ], [ 2.505375, 49.63625 ], [ 2.517447, 49.629598 ], [ 2.520903, 49.62694 ], [ 2.523867, 49.62808 ], [ 2.526593, 49.62944 ], [ 2.546494, 49.61614 ], [ 2.566469, 49.619035 ], [ 2.561697, 49.6109 ], [ 2.559162, 49.60822 ], [ 2.568938, 49.60013 ], [ 2.571632, 49.59708 ], [ 2.578709, 49.59728 ], [ 2.581595, 49.599318 ], [ 2.587559, 49.607417 ], [ 2.595904, 49.610105 ], [ 2.592678, 49.612323 ], [ 2.606249, 49.608153 ], [ 2.620704, 49.61133 ], [ 2.625948, 49.61095 ], [ 2.627046, 49.61013 ], [ 2.624482, 49.607213 ], [ 2.630769, 49.5983 ], [ 2.627794, 49.5853 ], [ 2.631943, 49.57912 ], [ 2.645208, 49.57363 ], [ 2.649629, 49.571764 ], [ 2.665993, 49.579826 ], [ 2.670723, 49.58142 ], [ 2.669194, 49.59991 ], [ 2.674102, 49.60002 ], [ 2.673979, 49.60195 ], [ 2.687078, 49.61467 ], [ 2.687363, 49.61783 ], [ 2.68783, 49.62304 ], [ 2.688934, 49.625655 ], [ 2.693622, 49.62586 ], [ 2.698296, 49.62625 ], [ 2.717068, 49.62366 ], [ 2.720402, 49.62106 ], [ 2.72521, 49.62473 ], [ 2.744352, 49.6252 ], [ 2.752944, 49.622109 ], [ 2.757555, 49.62097 ], [ 2.759687, 49.617728 ], [ 2.771722, 49.614184 ], [ 2.775992, 49.614875 ], [ 2.7905, 49.61494 ], [ 2.794973, 49.616831 ], [ 2.798614, 49.61938 ], [ 2.797412, 49.62623 ], [ 2.796333, 49.62964 ], [ 2.790333, 49.642128 ], [ 2.797732, 49.65726 ], [ 2.802349, 49.658754 ], [ 2.799495, 49.65948 ], [ 2.800429, 49.661366 ], [ 2.839634, 49.66077 ], [ 2.84335, 49.65853 ], [ 2.850149, 49.66237 ], [ 2.846658, 49.66783 ], [ 2.845141, 49.67062 ], [ 2.847449, 49.67214 ], [ 2.860329, 49.68078 ], [ 2.856765, 49.68275 ], [ 2.860636, 49.684885 ], [ 2.875527, 49.683769 ], [ 2.884609, 49.672545 ], [ 2.888795, 49.67069 ], [ 2.888424, 49.68202 ], [ 2.886762, 49.68842 ], [ 2.869074, 49.69972 ], [ 2.866199, 49.70249 ], [ 2.88318, 49.71037 ], [ 2.881704, 49.71366 ], [ 2.883796, 49.713833 ], [ 2.889739, 49.701519 ], [ 2.892294, 49.69868 ], [ 2.906863, 49.701264 ], [ 2.909734, 49.70719 ], [ 2.913415, 49.70951 ], [ 2.934781, 49.67663 ], [ 2.938476, 49.678785 ], [ 2.946497, 49.67509 ], [ 2.95329, 49.66654 ], [ 2.953004, 49.6759 ], [ 2.956076, 49.678307 ], [ 2.948747, 49.68282 ], [ 2.950191, 49.69274 ], [ 2.969691, 49.69656 ], [ 2.977431, 49.70466 ], [ 2.982405, 49.70392 ], [ 2.989983, 49.705514 ], [ 2.992366, 49.70765 ], [ 3.004392, 49.70181 ], [ 3.005222, 49.69531 ], [ 3.008325, 49.69272 ], [ 3.013408, 49.69252 ], [ 3.023736, 49.68153 ], [ 3.028305, 49.68006 ], [ 3.033486, 49.68308 ], [ 3.040503, 49.694985 ], [ 3.050281, 49.693643 ], [ 3.055323, 49.69401 ], [ 3.057579, 49.70415 ], [ 3.053997, 49.71048 ], [ 3.052435, 49.71377 ], [ 3.07844, 49.71099 ], [ 3.08332, 49.71249 ], [ 3.0792, 49.69166 ], [ 3.090193, 49.696837 ], [ 3.092566, 49.69962 ], [ 3.097274, 49.70587 ], [ 3.113319, 49.70622 ], [ 3.118652, 49.70583 ], [ 3.125917, 49.696499 ], [ 3.116282, 49.68111 ], [ 3.125, 49.67274 ], [ 3.127083, 49.66953 ], [ 3.123629, 49.66118 ], [ 3.112828, 49.66571 ], [ 3.108299, 49.66467 ], [ 3.107594, 49.65862 ], [ 3.099382, 49.656556 ], [ 3.09645, 49.65064 ], [ 3.10594, 49.64891 ], [ 3.112675, 49.6402 ], [ 3.110476, 49.634234 ], [ 3.112766, 49.63133 ], [ 3.109219, 49.6289 ], [ 3.096579, 49.62347 ], [ 3.093575, 49.622549 ], [ 3.099238, 49.61807 ], [ 3.102, 49.61579 ], [ 3.119137, 49.60449 ], [ 3.122533, 49.60203 ], [ 3.124178, 49.59626 ], [ 3.135088, 49.58137 ], [ 3.138052, 49.57859 ], [ 3.138985, 49.57585 ], [ 3.126982, 49.57291 ], [ 3.126302, 49.56607 ], [ 3.131731, 49.56022 ], [ 3.13148, 49.54338 ], [ 3.125924, 49.5418 ], [ 3.127901, 49.531384 ], [ 3.122465, 49.521683 ], [ 3.096325, 49.5179 ], [ 3.10247, 49.505138 ], [ 3.107214, 49.50367 ], [ 3.116497, 49.495212 ], [ 3.121281, 49.49368 ], [ 3.123306, 49.4808 ], [ 3.110055, 49.47665 ], [ 3.105299, 49.47129 ], [ 3.107085, 49.46823 ], [ 3.124931, 49.46279 ], [ 3.129742, 49.46205 ], [ 3.150778, 49.455269 ], [ 3.155214, 49.454185 ], [ 3.162893, 49.4496 ], [ 3.166193, 49.44692 ], [ 3.161892, 49.4426 ], [ 3.165126, 49.44085 ], [ 3.160518, 49.43936 ], [ 3.12159, 49.431745 ], [ 3.110497, 49.43848 ], [ 3.100285, 49.439278 ], [ 3.094759, 49.42484 ], [ 3.095073, 49.423041 ], [ 3.095304, 49.42123 ], [ 3.095987, 49.41791 ], [ 3.095633, 49.39798 ], [ 3.090827, 49.398246 ], [ 3.094371, 49.37853 ], [ 3.081094, 49.374334 ], [ 3.076804, 49.36871 ], [ 3.076881, 49.35548 ], [ 3.072728, 49.34789 ], [ 3.068641, 49.347304 ], [ 3.048062, 49.3368 ], [ 3.036335, 49.32574 ], [ 3.034824, 49.328981 ], [ 3.012697, 49.337219 ], [ 3.008859, 49.337857 ], [ 3.001788, 49.34015 ], [ 2.998267, 49.337471 ], [ 2.96426, 49.32138 ], [ 2.967232, 49.31895 ], [ 2.978566, 49.30941 ], [ 2.973468, 49.30457 ], [ 2.97006, 49.30261 ], [ 2.988812, 49.29672 ], [ 2.994407, 49.2883 ], [ 3.009304, 49.291113 ], [ 3.018346, 49.288074 ], [ 3.014208, 49.28181 ], [ 3.019265, 49.28142 ], [ 3.030165, 49.287604 ], [ 3.036277, 49.282703 ], [ 3.027533, 49.274903 ], [ 3.027586, 49.271523 ], [ 3.030826, 49.26683 ], [ 3.026756, 49.260573 ], [ 3.032901, 49.24729 ], [ 3.033311, 49.24379 ], [ 3.033311, 49.24334 ], [ 3.039066, 49.2274 ], [ 3.022988, 49.219284 ], [ 3.009196, 49.222917 ], [ 3.01267, 49.22901 ], [ 3.00162, 49.235657 ], [ 2.996211, 49.235315 ], [ 2.964349, 49.23191 ], [ 2.958739, 49.226606 ], [ 2.967366, 49.21533 ], [ 2.969496, 49.20994 ], [ 2.967579, 49.20332 ], [ 2.97115, 49.19708 ], [ 2.971814, 49.187529 ], [ 2.976519, 49.1859 ], [ 2.981375, 49.18447 ], [ 2.984871, 49.186965 ], [ 2.991687, 49.191982 ], [ 3.015991, 49.18 ], [ 3.021733, 49.17057 ], [ 3.027107, 49.17003 ], [ 3.037898, 49.16921 ], [ 3.035753, 49.180685 ], [ 3.035069, 49.18362 ], [ 3.029789, 49.183887 ], [ 3.025431, 49.190209 ], [ 3.0062, 49.187083 ], [ 3.00048, 49.19673 ], [ 2.998614, 49.21043 ], [ 3.001523, 49.21332 ], [ 3.006148, 49.215033 ], [ 3.016537, 49.21631 ], [ 3.030821, 49.21218 ], [ 3.034837, 49.20578 ], [ 3.043415, 49.20905 ], [ 3.05214, 49.206625 ], [ 3.061165, 49.204077 ], [ 3.060085, 49.19525 ], [ 3.063237, 49.19278 ], [ 3.077849, 49.194798 ], [ 3.085004, 49.182755 ], [ 3.083737, 49.16281 ], [ 3.094297, 49.15717 ], [ 3.086688, 49.173 ], [ 3.10245, 49.19731 ], [ 3.114563, 49.190768 ], [ 3.113552, 49.167556 ], [ 3.126879, 49.16219 ], [ 3.137366, 49.16177 ], [ 3.142289, 49.157411 ], [ 3.126777, 49.14851 ], [ 3.127057, 49.145066 ], [ 3.107105, 49.14612 ], [ 3.113521, 49.1411 ], [ 3.116887, 49.13867 ], [ 3.113415, 49.13626 ], [ 3.105274, 49.13555 ], [ 3.093913, 49.1421 ], [ 3.093026, 49.12898 ], [ 3.087084, 49.12321 ], [ 3.077028, 49.122065 ], [ 3.071884, 49.117554 ] ] ], [ [ [ 2.99023, 49.21067 ], [ 2.988514, 49.211356 ], [ 2.987417, 49.210915 ], [ 2.988597, 49.21239 ], [ 2.987855, 49.21253 ], [ 2.987087, 49.212264 ], [ 2.985454, 49.213082 ], [ 2.986304, 49.21511 ], [ 2.985082, 49.21624 ], [ 2.982406, 49.2163 ], [ 2.982488, 49.21688 ], [ 2.984698, 49.21817 ], [ 2.989446, 49.219492 ], [ 2.988457, 49.22211 ], [ 2.992451, 49.2232 ], [ 2.993755, 49.22253 ], [ 2.997749, 49.22358 ], [ 3.000412, 49.222666 ], [ 3.002566, 49.21969 ], [ 3.002759, 49.21884 ], [ 2.998298, 49.21909 ], [ 2.998161, 49.21895 ], [ 2.99779, 49.21679 ], [ 2.999698, 49.215384 ], [ 2.997887, 49.21396 ], [ 2.99694, 49.21401 ], [ 2.995746, 49.21258 ], [ 2.995321, 49.21132 ], [ 2.994511, 49.21236 ], [ 2.99237, 49.2121 ], [ 2.991739, 49.21094 ], [ 2.99023, 49.21067 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "62", "CODE_DEPT": "61", "NOM_DEPT": "ORNE", "CODE_CHF": "001", "NOM_CHF": "ALENCON", "X_CHF_LIEU": "4849", "Y_CHF_LIEU": "68183", "X_CENTROID": "4884", "Y_CENTROID": "68397", "CODE_REG": "25", "NOM_REGION": "BASSE-NORMANDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.797655, 48.19446 ], [ 0.793203, 48.19307 ], [ 0.759209, 48.18009 ], [ 0.755327, 48.18211 ], [ 0.751105, 48.183916 ], [ 0.73863, 48.18919 ], [ 0.732119, 48.19816 ], [ 0.723637, 48.19814 ], [ 0.72026, 48.202768 ], [ 0.72035, 48.20628 ], [ 0.687394, 48.24078 ], [ 0.683916, 48.254 ], [ 0.679097, 48.25508 ], [ 0.652469, 48.26339 ], [ 0.642751, 48.26154 ], [ 0.631907, 48.254761 ], [ 0.631421, 48.251466 ], [ 0.63848, 48.235611 ], [ 0.635062, 48.235515 ], [ 0.631908, 48.23462 ], [ 0.630203, 48.24078 ], [ 0.622457, 48.244921 ], [ 0.613135, 48.24273 ], [ 0.593727, 48.24455 ], [ 0.579192, 48.244412 ], [ 0.574411, 48.244917 ], [ 0.546795, 48.250162 ], [ 0.537336, 48.24924 ], [ 0.537331, 48.252801 ], [ 0.53656, 48.25978 ], [ 0.530307, 48.2655 ], [ 0.525809, 48.26595 ], [ 0.512572, 48.26759 ], [ 0.494423, 48.283488 ], [ 0.497806, 48.289797 ], [ 0.505824, 48.293658 ], [ 0.491583, 48.30716 ], [ 0.475989, 48.30005 ], [ 0.46327, 48.30528 ], [ 0.442805, 48.30464 ], [ 0.438486, 48.306046 ], [ 0.429965, 48.30868 ], [ 0.427652, 48.31486 ], [ 0.426281, 48.31752 ], [ 0.415531, 48.32149 ], [ 0.408565, 48.316323 ], [ 0.395362, 48.32129 ], [ 0.383907, 48.33288 ], [ 0.380633, 48.34306 ], [ 0.384251, 48.34307 ], [ 0.387484, 48.34731 ], [ 0.387348, 48.350595 ], [ 0.380557, 48.36928 ], [ 0.380868, 48.37279 ], [ 0.378659, 48.38323 ], [ 0.37678, 48.3854 ], [ 0.373864, 48.38697 ], [ 0.375708, 48.390098 ], [ 0.372679, 48.41013 ], [ 0.379512, 48.414919 ], [ 0.381725, 48.42479 ], [ 0.376012, 48.43031 ], [ 0.373314, 48.43287 ], [ 0.367808, 48.43774 ], [ 0.367697, 48.44131 ], [ 0.363205, 48.45156 ], [ 0.35289, 48.45969 ], [ 0.350087, 48.45865 ], [ 0.345224, 48.45927 ], [ 0.340997, 48.460977 ], [ 0.33683, 48.46282 ], [ 0.324524, 48.471903 ], [ 0.314738, 48.473194 ], [ 0.30963, 48.473286 ], [ 0.297909, 48.479816 ], [ 0.283555, 48.48145 ], [ 0.278804, 48.48089 ], [ 0.266806, 48.48458 ], [ 0.262725, 48.482862 ], [ 0.26165, 48.47934 ], [ 0.258785, 48.47664 ], [ 0.225463, 48.47286 ], [ 0.221658, 48.47314 ], [ 0.217968, 48.473801 ], [ 0.213565, 48.47283 ], [ 0.194949, 48.463745 ], [ 0.191952, 48.46234 ], [ 0.186797, 48.46281 ], [ 0.172327, 48.46383 ], [ 0.170289, 48.4572 ], [ 0.173647, 48.45088 ], [ 0.169081, 48.44948 ], [ 0.152522, 48.45663 ], [ 0.143925, 48.454948 ], [ 0.145863, 48.45217 ], [ 0.154882, 48.4453 ], [ 0.158318, 48.443078 ], [ 0.153319, 48.43794 ], [ 0.148697, 48.43711 ], [ 0.125777, 48.43417 ], [ 0.121836, 48.435978 ], [ 0.117659, 48.436164 ], [ 0.111593, 48.43232 ], [ 0.109346, 48.42302 ], [ 0.099434, 48.41096 ], [ 0.083677, 48.411027 ], [ 0.083781, 48.41013 ], [ 0.079721, 48.408733 ], [ 0.067362, 48.40606 ], [ 0.064199, 48.40338 ], [ 0.054482, 48.39148 ], [ 0.062524, 48.383028 ], [ 0.039682, 48.38041 ], [ 0.035453, 48.38038 ], [ 0.023083, 48.38021 ], [ 0.01868, 48.38158 ], [ 0.005246, 48.38964 ], [ 0.00337, 48.395996 ], [ -0.001245, 48.39727 ], [ -0.02017, 48.39393 ], [ -0.022101, 48.38779 ], [ -0.051402, 48.37816 ], [ -0.049672, 48.37513 ], [ -0.054531, 48.382003 ], [ -0.057247, 48.384779 ], [ -0.053479, 48.390188 ], [ -0.053658, 48.3935 ], [ -0.05758, 48.429084 ], [ -0.055219, 48.43059 ], [ -0.054087, 48.43391 ], [ -0.049827, 48.44723 ], [ -0.053345, 48.45351 ], [ -0.062548, 48.456514 ], [ -0.067327, 48.45723 ], [ -0.08034, 48.44971 ], [ -0.108255, 48.448024 ], [ -0.118485, 48.448233 ], [ -0.137842, 48.45282 ], [ -0.142193, 48.4543 ], [ -0.148946, 48.45879 ], [ -0.148132, 48.47161 ], [ -0.153516, 48.47695 ], [ -0.15017, 48.478953 ], [ -0.155064, 48.48716 ], [ -0.155447, 48.490138 ], [ -0.155678, 48.49331 ], [ -0.167477, 48.50297 ], [ -0.172087, 48.502137 ], [ -0.166668, 48.514706 ], [ -0.145388, 48.52116 ], [ -0.144604, 48.52775 ], [ -0.179251, 48.541649 ], [ -0.189492, 48.548622 ], [ -0.191725, 48.55168 ], [ -0.195862, 48.55591 ], [ -0.199584, 48.558236 ], [ -0.207346, 48.56252 ], [ -0.215792, 48.55979 ], [ -0.230695, 48.56195 ], [ -0.242639, 48.568 ], [ -0.246473, 48.56572 ], [ -0.249293, 48.556078 ], [ -0.257472, 48.551956 ], [ -0.260578, 48.54913 ], [ -0.243057, 48.537062 ], [ -0.250837, 48.528081 ], [ -0.26839, 48.52067 ], [ -0.27155, 48.50745 ], [ -0.285283, 48.50865 ], [ -0.285881, 48.515169 ], [ -0.290094, 48.516871 ], [ -0.308956, 48.51833 ], [ -0.312305, 48.52027 ], [ -0.320239, 48.522929 ], [ -0.334973, 48.50908 ], [ -0.336825, 48.50242 ], [ -0.353789, 48.496496 ], [ -0.353152, 48.483774 ], [ -0.365814, 48.48755 ], [ -0.371083, 48.495556 ], [ -0.375751, 48.4961 ], [ -0.389253, 48.49937 ], [ -0.393346, 48.50107 ], [ -0.397657, 48.51051 ], [ -0.400875, 48.50789 ], [ -0.425449, 48.50736 ], [ -0.424473, 48.50819 ], [ -0.428467, 48.51021 ], [ -0.446883, 48.51494 ], [ -0.450728, 48.51282 ], [ -0.455856, 48.51269 ], [ -0.466117, 48.51252 ], [ -0.478198, 48.50157 ], [ -0.48293, 48.50263 ], [ -0.492665, 48.50212 ], [ -0.509294, 48.50884 ], [ -0.512798, 48.50653 ], [ -0.518632, 48.497552 ], [ -0.534907, 48.49155 ], [ -0.53787, 48.488884 ], [ -0.553157, 48.47297 ], [ -0.562328, 48.473799 ], [ -0.564255, 48.47686 ], [ -0.567457, 48.474545 ], [ -0.571639, 48.46893 ], [ -0.575807, 48.470079 ], [ -0.593207, 48.47084 ], [ -0.594311, 48.47252 ], [ -0.598929, 48.47074 ], [ -0.613629, 48.46061 ], [ -0.654215, 48.44454 ], [ -0.653906, 48.453912 ], [ -0.653977, 48.45746 ], [ -0.658168, 48.474845 ], [ -0.66884, 48.486458 ], [ -0.669079, 48.483289 ], [ -0.68367, 48.47694 ], [ -0.68361, 48.47069 ], [ -0.687991, 48.46944 ], [ -0.692663, 48.46827 ], [ -0.702106, 48.46966 ], [ -0.703268, 48.472888 ], [ -0.716955, 48.47032 ], [ -0.725251, 48.47347 ], [ -0.730066, 48.47205 ], [ -0.735258, 48.462402 ], [ -0.715918, 48.4509 ], [ -0.756483, 48.436937 ], [ -0.760817, 48.436412 ], [ -0.773966, 48.44271 ], [ -0.777874, 48.46541 ], [ -0.793424, 48.465267 ], [ -0.812743, 48.45492 ], [ -0.815108, 48.45746 ], [ -0.818601, 48.468431 ], [ -0.81808, 48.47412 ], [ -0.821988, 48.47608 ], [ -0.826973, 48.477186 ], [ -0.845826, 48.49783 ], [ -0.860363, 48.50146 ], [ -0.85602, 48.50874 ], [ -0.855947, 48.512185 ], [ -0.808914, 48.54787 ], [ -0.805633, 48.549751 ], [ -0.790567, 48.55207 ], [ -0.775712, 48.561837 ], [ -0.773342, 48.56849 ], [ -0.774519, 48.57541 ], [ -0.769516, 48.58829 ], [ -0.763014, 48.59339 ], [ -0.758265, 48.59475 ], [ -0.751665, 48.603429 ], [ -0.753004, 48.61964 ], [ -0.744902, 48.621446 ], [ -0.739977, 48.621708 ], [ -0.743561, 48.627566 ], [ -0.762478, 48.631634 ], [ -0.771271, 48.650141 ], [ -0.772818, 48.65331 ], [ -0.773294, 48.6567 ], [ -0.761733, 48.663212 ], [ -0.756696, 48.672754 ], [ -0.741063, 48.68077 ], [ -0.736267, 48.679501 ], [ -0.736816, 48.686229 ], [ -0.764464, 48.69339 ], [ -0.769037, 48.694939 ], [ -0.771771, 48.69738 ], [ -0.778546, 48.701346 ], [ -0.782499, 48.702761 ], [ -0.796916, 48.70907 ], [ -0.799661, 48.71203 ], [ -0.807277, 48.724475 ], [ -0.818932, 48.731414 ], [ -0.828977, 48.73252 ], [ -0.831817, 48.72967 ], [ -0.842413, 48.728463 ], [ -0.847051, 48.72971 ], [ -0.851775, 48.745576 ], [ -0.840936, 48.75223 ], [ -0.825322, 48.75249 ], [ -0.812822, 48.75846 ], [ -0.80823, 48.76011 ], [ -0.789464, 48.77964 ], [ -0.784904, 48.781185 ], [ -0.781431, 48.78347 ], [ -0.780627, 48.786651 ], [ -0.743942, 48.79192 ], [ -0.720012, 48.79936 ], [ -0.714679, 48.79987 ], [ -0.711532, 48.802766 ], [ -0.70847, 48.805706 ], [ -0.686626, 48.820049 ], [ -0.682172, 48.82183 ], [ -0.690819, 48.824385 ], [ -0.702481, 48.834216 ], [ -0.7055, 48.83679 ], [ -0.691249, 48.84623 ], [ -0.682991, 48.8423 ], [ -0.652919, 48.83846 ], [ -0.643436, 48.84095 ], [ -0.643054, 48.830407 ], [ -0.645422, 48.82722 ], [ -0.624501, 48.826973 ], [ -0.61079, 48.83198 ], [ -0.606409, 48.83389 ], [ -0.603179, 48.834514 ], [ -0.599866, 48.83492 ], [ -0.580286, 48.836553 ], [ -0.574716, 48.83111 ], [ -0.569821, 48.83052 ], [ -0.560863, 48.83431 ], [ -0.54965, 48.84627 ], [ -0.524007, 48.85031 ], [ -0.512126, 48.84849 ], [ -0.509979, 48.84597 ], [ -0.495536, 48.84904 ], [ -0.49708, 48.85578 ], [ -0.477606, 48.85936 ], [ -0.469371, 48.86803 ], [ -0.464764, 48.87099 ], [ -0.432673, 48.872694 ], [ -0.424948, 48.86976 ], [ -0.425236, 48.86646 ], [ -0.410852, 48.869961 ], [ -0.406375, 48.86827 ], [ -0.404559, 48.86157 ], [ -0.401276, 48.85894 ], [ -0.388768, 48.84807 ], [ -0.383774, 48.84698 ], [ -0.365815, 48.84871 ], [ -0.363386, 48.849126 ], [ -0.359269, 48.843661 ], [ -0.368887, 48.841806 ], [ -0.369708, 48.83553 ], [ -0.34715, 48.822514 ], [ -0.345416, 48.821833 ], [ -0.333989, 48.8335 ], [ -0.32966, 48.835523 ], [ -0.33373, 48.84351 ], [ -0.335751, 48.84632 ], [ -0.330234, 48.85474 ], [ -0.32852, 48.8576 ], [ -0.307438, 48.857707 ], [ -0.301102, 48.85222 ], [ -0.298548, 48.849159 ], [ -0.287467, 48.852722 ], [ -0.283313, 48.85239 ], [ -0.268018, 48.853183 ], [ -0.258988, 48.849901 ], [ -0.253713, 48.849514 ], [ -0.242242, 48.84928 ], [ -0.231433, 48.84476 ], [ -0.227631, 48.843263 ], [ -0.214942, 48.84073 ], [ -0.208, 48.84447 ], [ -0.204676, 48.846527 ], [ -0.198952, 48.84103 ], [ -0.180463, 48.83635 ], [ -0.174129, 48.82773 ], [ -0.151769, 48.82025 ], [ -0.14839, 48.822514 ], [ -0.130837, 48.817359 ], [ -0.126169, 48.81657 ], [ -0.144833, 48.83246 ], [ -0.14223, 48.83543 ], [ -0.127746, 48.83784 ], [ -0.124776, 48.847426 ], [ -0.114839, 48.840674 ], [ -0.106732, 48.83962 ], [ -0.08833, 48.84408 ], [ -0.079195, 48.84248 ], [ -0.075024, 48.84065 ], [ -0.069593, 48.842663 ], [ -0.060574, 48.85022 ], [ -0.059006, 48.853492 ], [ -0.03408, 48.86691 ], [ -0.030807, 48.869734 ], [ -0.031067, 48.873733 ], [ -0.02257, 48.876846 ], [ -0.009494, 48.87462 ], [ -0.006654, 48.872 ], [ -0.006177, 48.87223 ], [ -0.008969, 48.8809 ], [ -0.009861, 48.8838 ], [ 0.023808, 48.89517 ], [ 0.050136, 48.89928 ], [ 0.058093, 48.90507 ], [ 0.058007, 48.9078 ], [ 0.061767, 48.91375 ], [ 0.06374, 48.91677 ], [ 0.065764, 48.926145 ], [ 0.078168, 48.93532 ], [ 0.080723, 48.937984 ], [ 0.101453, 48.936112 ], [ 0.125316, 48.94992 ], [ 0.127608, 48.95222 ], [ 0.136288, 48.9504 ], [ 0.144625, 48.94337 ], [ 0.146026, 48.94051 ], [ 0.150868, 48.92717 ], [ 0.165756, 48.92588 ], [ 0.170789, 48.927 ], [ 0.179152, 48.9299 ], [ 0.184684, 48.93847 ], [ 0.187316, 48.94107 ], [ 0.214989, 48.94645 ], [ 0.222151, 48.943047 ], [ 0.224621, 48.94029 ], [ 0.2389, 48.9425 ], [ 0.242449, 48.95542 ], [ 0.244401, 48.958552 ], [ 0.257001, 48.963447 ], [ 0.271397, 48.96486 ], [ 0.276222, 48.96538 ], [ 0.278183, 48.95012 ], [ 0.282713, 48.94891 ], [ 0.304392, 48.95315 ], [ 0.308722, 48.954227 ], [ 0.319844, 48.94704 ], [ 0.329514, 48.945218 ], [ 0.333231, 48.942782 ], [ 0.356623, 48.94962 ], [ 0.374945, 48.969597 ], [ 0.377447, 48.972558 ], [ 0.404368, 48.96274 ], [ 0.400154, 48.952755 ], [ 0.412815, 48.950626 ], [ 0.396241, 48.93242 ], [ 0.395214, 48.928921 ], [ 0.390826, 48.927107 ], [ 0.387285, 48.91387 ], [ 0.386114, 48.910548 ], [ 0.417946, 48.898471 ], [ 0.426211, 48.8867 ], [ 0.436708, 48.88578 ], [ 0.45004, 48.891016 ], [ 0.443534, 48.88402 ], [ 0.443109, 48.88128 ], [ 0.452557, 48.88003 ], [ 0.457358, 48.87976 ], [ 0.459094, 48.8878 ], [ 0.47437, 48.88706 ], [ 0.496544, 48.87878 ], [ 0.515706, 48.88058 ], [ 0.52088, 48.880798 ], [ 0.549868, 48.87471 ], [ 0.553791, 48.87686 ], [ 0.573844, 48.89177 ], [ 0.578041, 48.893656 ], [ 0.590805, 48.888803 ], [ 0.595643, 48.888028 ], [ 0.596624, 48.884817 ], [ 0.585984, 48.8786 ], [ 0.589631, 48.872603 ], [ 0.608871, 48.8757 ], [ 0.6064, 48.862376 ], [ 0.610658, 48.85606 ], [ 0.619441, 48.852749 ], [ 0.633771, 48.85604 ], [ 0.611184, 48.835084 ], [ 0.607869, 48.832489 ], [ 0.624834, 48.82715 ], [ 0.628768, 48.825159 ], [ 0.642759, 48.816501 ], [ 0.647016, 48.814857 ], [ 0.656093, 48.81357 ], [ 0.660002, 48.811774 ], [ 0.690171, 48.79406 ], [ 0.699117, 48.79286 ], [ 0.703765, 48.791533 ], [ 0.708628, 48.79025 ], [ 0.713196, 48.78856 ], [ 0.716372, 48.785989 ], [ 0.730523, 48.78559 ], [ 0.739437, 48.77753 ], [ 0.752631, 48.77274 ], [ 0.755764, 48.770135 ], [ 0.75678, 48.766465 ], [ 0.751061, 48.760527 ], [ 0.77192, 48.74021 ], [ 0.775034, 48.73736 ], [ 0.763635, 48.73036 ], [ 0.758437, 48.72059 ], [ 0.748398, 48.718448 ], [ 0.743593, 48.717 ], [ 0.732598, 48.70933 ], [ 0.728764, 48.706847 ], [ 0.731016, 48.70383 ], [ 0.75117, 48.703978 ], [ 0.763337, 48.69793 ], [ 0.767302, 48.69582 ], [ 0.767725, 48.69322 ], [ 0.76511, 48.6905 ], [ 0.764138, 48.67572 ], [ 0.767326, 48.673616 ], [ 0.780369, 48.666589 ], [ 0.782205, 48.66652 ], [ 0.796482, 48.674914 ], [ 0.810178, 48.67135 ], [ 0.814819, 48.67017 ], [ 0.809946, 48.66423 ], [ 0.819748, 48.652955 ], [ 0.823565, 48.65067 ], [ 0.821978, 48.64474 ], [ 0.822818, 48.63534 ], [ 0.831762, 48.63342 ], [ 0.827771, 48.63113 ], [ 0.818206, 48.615043 ], [ 0.822398, 48.60887 ], [ 0.826926, 48.6103 ], [ 0.845909, 48.609015 ], [ 0.849312, 48.58594 ], [ 0.867284, 48.57395 ], [ 0.892944, 48.57183 ], [ 0.905802, 48.56598 ], [ 0.910268, 48.564135 ], [ 0.921331, 48.55935 ], [ 0.925711, 48.55965 ], [ 0.937141, 48.5486 ], [ 0.924168, 48.53803 ], [ 0.931842, 48.534151 ], [ 0.962768, 48.524228 ], [ 0.96774, 48.523881 ], [ 0.96615, 48.520507 ], [ 0.954658, 48.50467 ], [ 0.941554, 48.49869 ], [ 0.951279, 48.49341 ], [ 0.955397, 48.49266 ], [ 0.955507, 48.489476 ], [ 0.953055, 48.48016 ], [ 0.935709, 48.47551 ], [ 0.936714, 48.47301 ], [ 0.937356, 48.47045 ], [ 0.940331, 48.46017 ], [ 0.955273, 48.445817 ], [ 0.963768, 48.44198 ], [ 0.974317, 48.44199 ], [ 0.976416, 48.43877 ], [ 0.973173, 48.43622 ], [ 0.945291, 48.41811 ], [ 0.948381, 48.40164 ], [ 0.929503, 48.39059 ], [ 0.926529, 48.384112 ], [ 0.922214, 48.38252 ], [ 0.907347, 48.3701 ], [ 0.904504, 48.37263 ], [ 0.896387, 48.370909 ], [ 0.894525, 48.367825 ], [ 0.883707, 48.35672 ], [ 0.869034, 48.35723 ], [ 0.853889, 48.349113 ], [ 0.840028, 48.35291 ], [ 0.841975, 48.349896 ], [ 0.827867, 48.342311 ], [ 0.824902, 48.3448 ], [ 0.818405, 48.349419 ], [ 0.813732, 48.348811 ], [ 0.788027, 48.341322 ], [ 0.785432, 48.34044 ], [ 0.785039, 48.337585 ], [ 0.781343, 48.332691 ], [ 0.778368, 48.32995 ], [ 0.769234, 48.32188 ], [ 0.769615, 48.31513 ], [ 0.757286, 48.300771 ], [ 0.760447, 48.298131 ], [ 0.764576, 48.299991 ], [ 0.778584, 48.302109 ], [ 0.797486, 48.291445 ], [ 0.807066, 48.28973 ], [ 0.802328, 48.288196 ], [ 0.794042, 48.284127 ], [ 0.785981, 48.2712 ], [ 0.791517, 48.265231 ], [ 0.787321, 48.26144 ], [ 0.822102, 48.223557 ], [ 0.829446, 48.21137 ], [ 0.80662, 48.20422 ], [ 0.80674, 48.19745 ], [ 0.797655, 48.19446 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "63", "CODE_DEPT": "62", "NOM_DEPT": "PAS-DE-CALAIS", "CODE_CHF": "041", "NOM_CHF": "ARRAS", "X_CHF_LIEU": "6843", "Y_CHF_LIEU": "70212", "X_CENTROID": "6494", "Y_CENTROID": "70442", "CODE_REG": "31", "NOM_REGION": "NORD-PAS-DE-CALAIS" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.090254, 50.053741 ], [ 3.087305, 50.0509 ], [ 3.074492, 50.0453 ], [ 3.071427, 50.047906 ], [ 3.06154, 50.04938 ], [ 3.057637, 50.05122 ], [ 3.030412, 50.057479 ], [ 3.026241, 50.05678 ], [ 3.024914, 50.054148 ], [ 3.02193, 50.05684 ], [ 3.01197, 50.058039 ], [ 3.006835, 50.054609 ], [ 3.002692, 50.05298 ], [ 2.993849, 50.050415 ], [ 2.988758, 50.0493 ], [ 2.971536, 50.04137 ], [ 2.969176, 50.046692 ], [ 2.961795, 50.05014 ], [ 2.957679, 50.05113 ], [ 2.949406, 50.05304 ], [ 2.944091, 50.0527 ], [ 2.940021, 50.05047 ], [ 2.938699, 50.047337 ], [ 2.934866, 50.04524 ], [ 2.930726, 50.04403 ], [ 2.920175, 50.048592 ], [ 2.919557, 50.042089 ], [ 2.917016, 50.03554 ], [ 2.896167, 50.03656 ], [ 2.882694, 50.0312 ], [ 2.879144, 50.02915 ], [ 2.875747, 50.027 ], [ 2.878569, 50.02452 ], [ 2.871189, 50.021076 ], [ 2.856377, 50.02358 ], [ 2.855422, 50.02607 ], [ 2.853071, 50.02916 ], [ 2.859918, 50.03366 ], [ 2.869954, 50.034951 ], [ 2.876374, 50.04424 ], [ 2.864729, 50.05992 ], [ 2.860778, 50.060646 ], [ 2.856704, 50.060992 ], [ 2.854922, 50.064277 ], [ 2.855414, 50.07799 ], [ 2.85018, 50.07808 ], [ 2.837806, 50.07201 ], [ 2.831235, 50.06317 ], [ 2.82771, 50.06563 ], [ 2.8105, 50.05987 ], [ 2.807198, 50.06246 ], [ 2.804223, 50.05971 ], [ 2.795705, 50.05127 ], [ 2.79451, 50.05005 ], [ 2.780917, 50.04835 ], [ 2.775739, 50.0428 ], [ 2.752195, 50.04032 ], [ 2.748877, 50.042918 ], [ 2.742339, 50.04801 ], [ 2.745871, 50.05013 ], [ 2.763746, 50.060597 ], [ 2.7609, 50.069384 ], [ 2.764392, 50.071825 ], [ 2.774462, 50.079226 ], [ 2.77886, 50.08847 ], [ 2.781836, 50.09111 ], [ 2.778142, 50.09943 ], [ 2.778492, 50.102405 ], [ 2.780898, 50.111156 ], [ 2.77794, 50.11376 ], [ 2.763849, 50.11051 ], [ 2.749537, 50.112803 ], [ 2.74715, 50.11551 ], [ 2.72993, 50.12586 ], [ 2.725191, 50.126365 ], [ 2.707128, 50.12643 ], [ 2.71352, 50.11019 ], [ 2.703494, 50.107689 ], [ 2.697575, 50.102573 ], [ 2.715239, 50.09011 ], [ 2.718994, 50.08764 ], [ 2.715684, 50.08536 ], [ 2.703859, 50.08099 ], [ 2.701148, 50.08391 ], [ 2.691593, 50.09203 ], [ 2.682389, 50.095045 ], [ 2.672081, 50.09363 ], [ 2.669203, 50.0961 ], [ 2.656525, 50.100283 ], [ 2.653888, 50.09803 ], [ 2.647546, 50.09441 ], [ 2.644387, 50.096988 ], [ 2.635779, 50.10002 ], [ 2.630646, 50.10511 ], [ 2.630728, 50.10728 ], [ 2.626761, 50.10933 ], [ 2.611729, 50.1101 ], [ 2.592904, 50.106555 ], [ 2.590719, 50.10911 ], [ 2.575671, 50.11333 ], [ 2.573, 50.11546 ], [ 2.569355, 50.1204 ], [ 2.569643, 50.1226 ], [ 2.583003, 50.13214 ], [ 2.586635, 50.137365 ], [ 2.582367, 50.13804 ], [ 2.577454, 50.139103 ], [ 2.56837, 50.13596 ], [ 2.564676, 50.13824 ], [ 2.551329, 50.141704 ], [ 2.546349, 50.13609 ], [ 2.548176, 50.12382 ], [ 2.545311, 50.12092 ], [ 2.532332, 50.11508 ], [ 2.514949, 50.140821 ], [ 2.510031, 50.140747 ], [ 2.491086, 50.137662 ], [ 2.475975, 50.13686 ], [ 2.472807, 50.13516 ], [ 2.4694, 50.133645 ], [ 2.464991, 50.131731 ], [ 2.455049, 50.13118 ], [ 2.454672, 50.12855 ], [ 2.449995, 50.1244 ], [ 2.44742, 50.11975 ], [ 2.446132, 50.11744 ], [ 2.44424, 50.1142 ], [ 2.429658, 50.088185 ], [ 2.424694, 50.087668 ], [ 2.417504, 50.09138 ], [ 2.414508, 50.10065 ], [ 2.409489, 50.1012 ], [ 2.39739, 50.1065 ], [ 2.394888, 50.110193 ], [ 2.37546, 50.10926 ], [ 2.379793, 50.11919 ], [ 2.385485, 50.13942 ], [ 2.391722, 50.144852 ], [ 2.389892, 50.15519 ], [ 2.398866, 50.15642 ], [ 2.401777, 50.16201 ], [ 2.403268, 50.1648 ], [ 2.410836, 50.1632 ], [ 2.41453, 50.16417 ], [ 2.415553, 50.16998 ], [ 2.414846, 50.17311 ], [ 2.417858, 50.17386 ], [ 2.420855, 50.17464 ], [ 2.435006, 50.17962 ], [ 2.445443, 50.17925 ], [ 2.450821, 50.17852 ], [ 2.469649, 50.18738 ], [ 2.473887, 50.18865 ], [ 2.481204, 50.19124 ], [ 2.485371, 50.19134 ], [ 2.49209, 50.19369 ], [ 2.49569, 50.19456 ], [ 2.495053, 50.19955 ], [ 2.492589, 50.2025 ], [ 2.488928, 50.204861 ], [ 2.485204, 50.2078 ], [ 2.480374, 50.208121 ], [ 2.464414, 50.21423 ], [ 2.459599, 50.219552 ], [ 2.456774, 50.221929 ], [ 2.452066, 50.23021 ], [ 2.446938, 50.229347 ], [ 2.436855, 50.227263 ], [ 2.432034, 50.22777 ], [ 2.4174, 50.228295 ], [ 2.407013, 50.2343 ], [ 2.402588, 50.23322 ], [ 2.389474, 50.22476 ], [ 2.384861, 50.22541 ], [ 2.383136, 50.22576 ], [ 2.373296, 50.217769 ], [ 2.370989, 50.210888 ], [ 2.36782, 50.20802 ], [ 2.364877, 50.20728 ], [ 2.361731, 50.207078 ], [ 2.336655, 50.23499 ], [ 2.334836, 50.23706 ], [ 2.332878, 50.23908 ], [ 2.32887, 50.237219 ], [ 2.314767, 50.23442 ], [ 2.31625, 50.23139 ], [ 2.320808, 50.23284 ], [ 2.331301, 50.22172 ], [ 2.327132, 50.213098 ], [ 2.325191, 50.21593 ], [ 2.318389, 50.21915 ], [ 2.301693, 50.212957 ], [ 2.296925, 50.21371 ], [ 2.290685, 50.21858 ], [ 2.287735, 50.22135 ], [ 2.269351, 50.227649 ], [ 2.253431, 50.21468 ], [ 2.239739, 50.21317 ], [ 2.230807, 50.21063 ], [ 2.227382, 50.20861 ], [ 2.224421, 50.21736 ], [ 2.213785, 50.21736 ], [ 2.204867, 50.21395 ], [ 2.199908, 50.215175 ], [ 2.19949, 50.21241 ], [ 2.187737, 50.20968 ], [ 2.183477, 50.21002 ], [ 2.178498, 50.207293 ], [ 2.173297, 50.20789 ], [ 2.14976, 50.19043 ], [ 2.146971, 50.19327 ], [ 2.141667, 50.20246 ], [ 2.135692, 50.20745 ], [ 2.12193, 50.21029 ], [ 2.114559, 50.202862 ], [ 2.110291, 50.20449 ], [ 2.096639, 50.20663 ], [ 2.085714, 50.20102 ], [ 2.08483, 50.20422 ], [ 2.083606, 50.21697 ], [ 2.080371, 50.219413 ], [ 2.068487, 50.227091 ], [ 2.067945, 50.232978 ], [ 2.063816, 50.234456 ], [ 2.064081, 50.23752 ], [ 2.077822, 50.24873 ], [ 2.075299, 50.25116 ], [ 2.064405, 50.25562 ], [ 2.059045, 50.25537 ], [ 2.048668, 50.256771 ], [ 2.037773, 50.26406 ], [ 2.034272, 50.26619 ], [ 2.026236, 50.26955 ], [ 2.01185, 50.26797 ], [ 2.003229, 50.27038 ], [ 2.000611, 50.27243 ], [ 1.994128, 50.27572 ], [ 1.969736, 50.282455 ], [ 1.959874, 50.29049 ], [ 1.955702, 50.289557 ], [ 1.949353, 50.2862 ], [ 1.945648, 50.287747 ], [ 1.934163, 50.29938 ], [ 1.959846, 50.311618 ], [ 1.963934, 50.31805 ], [ 1.964332, 50.32122 ], [ 1.946195, 50.33149 ], [ 1.941134, 50.330674 ], [ 1.919498, 50.31259 ], [ 1.898883, 50.31333 ], [ 1.898602, 50.31592 ], [ 1.893294, 50.31817 ], [ 1.888094, 50.31806 ], [ 1.875354, 50.32273 ], [ 1.869131, 50.33447 ], [ 1.852133, 50.34107 ], [ 1.851698, 50.34291 ], [ 1.846308, 50.34361 ], [ 1.821907, 50.35029 ], [ 1.81855, 50.35223 ], [ 1.804679, 50.35961 ], [ 1.800413, 50.35955 ], [ 1.791952, 50.35946 ], [ 1.786838, 50.359656 ], [ 1.761849, 50.361608 ], [ 1.755055, 50.35705 ], [ 1.740339, 50.35452 ], [ 1.730052, 50.34782 ], [ 1.725573, 50.34572 ], [ 1.703836, 50.34304 ], [ 1.694837, 50.33888 ], [ 1.69253, 50.34291 ], [ 1.690565, 50.33969 ], [ 1.667566, 50.33074 ], [ 1.662287, 50.331458 ], [ 1.66431, 50.334533 ], [ 1.651627, 50.33981 ], [ 1.646499, 50.340077 ], [ 1.641544, 50.35215 ], [ 1.631789, 50.36152 ], [ 1.633358, 50.36424 ], [ 1.623055, 50.37143 ], [ 1.617782, 50.372227 ], [ 1.613351, 50.370489 ], [ 1.600635, 50.375949 ], [ 1.580943, 50.378678 ], [ 1.573413, 50.38727 ], [ 1.571513, 50.390377 ], [ 1.555965, 50.39875 ], [ 1.568914, 50.439935 ], [ 1.573471, 50.4677 ], [ 1.574189, 50.47116 ], [ 1.576258, 50.48754 ], [ 1.578151, 50.51921 ], [ 1.585536, 50.53601 ], [ 1.590797, 50.53675 ], [ 1.595956, 50.53056 ], [ 1.610679, 50.525762 ], [ 1.630697, 50.51362 ], [ 1.63487, 50.51133 ], [ 1.637225, 50.509647 ], [ 1.640627, 50.508786 ], [ 1.655632, 50.507783 ], [ 1.660189, 50.50634 ], [ 1.661916, 50.50652 ], [ 1.661612, 50.50736 ], [ 1.647457, 50.51128 ], [ 1.635626, 50.51358 ], [ 1.613803, 50.53763 ], [ 1.609281, 50.53966 ], [ 1.580884, 50.564105 ], [ 1.576899, 50.57743 ], [ 1.578796, 50.58064 ], [ 1.578041, 50.60334 ], [ 1.578329, 50.60662 ], [ 1.576175, 50.636336 ], [ 1.578647, 50.63925 ], [ 1.572075, 50.66092 ], [ 1.572168, 50.664106 ], [ 1.562514, 50.689053 ], [ 1.562605, 50.69228 ], [ 1.561442, 50.69935 ], [ 1.570984, 50.71213 ], [ 1.567627, 50.722238 ], [ 1.584842, 50.727918 ], [ 1.586783, 50.72479 ], [ 1.591143, 50.72659 ], [ 1.599415, 50.72455 ], [ 1.593564, 50.73354 ], [ 1.5957, 50.74664 ], [ 1.594676, 50.74986 ], [ 1.605048, 50.7655 ], [ 1.604096, 50.80318 ], [ 1.609219, 50.804337 ], [ 1.599884, 50.805946 ], [ 1.59543, 50.81476 ], [ 1.594044, 50.817725 ], [ 1.58994, 50.82865 ], [ 1.588712, 50.831501 ], [ 1.578546, 50.855164 ], [ 1.581354, 50.86909 ], [ 1.585456, 50.87146 ], [ 1.612931, 50.87268 ], [ 1.631553, 50.87619 ], [ 1.636224, 50.877037 ], [ 1.666962, 50.8922 ], [ 1.689409, 50.91251 ], [ 1.692683, 50.915377 ], [ 1.70248, 50.92175 ], [ 1.705862, 50.9238 ], [ 1.725274, 50.93628 ], [ 1.744412, 50.94364 ], [ 1.779646, 50.95451 ], [ 1.823042, 50.961484 ], [ 1.828446, 50.9624 ], [ 1.839031, 50.96478 ], [ 1.846962, 50.96335 ], [ 1.86769, 50.97388 ], [ 1.889653, 50.97273 ], [ 1.907155, 50.981283 ], [ 1.912384, 50.9826 ], [ 1.942352, 50.98805 ], [ 1.967848, 50.98879 ], [ 1.972904, 50.98963 ], [ 1.993557, 50.99374 ], [ 2.041204, 50.99727 ], [ 2.051657, 51.00446 ], [ 2.06212, 51.00599 ], [ 2.067712, 51.0065 ], [ 2.089192, 51.00349 ], [ 2.106566, 50.989943 ], [ 2.110463, 50.98741 ], [ 2.10927, 50.98417 ], [ 2.121666, 50.979107 ], [ 2.122685, 50.97288 ], [ 2.125134, 50.970134 ], [ 2.128009, 50.96739 ], [ 2.135655, 50.96309 ], [ 2.141819, 50.94747 ], [ 2.145509, 50.94511 ], [ 2.151317, 50.93257 ], [ 2.164601, 50.91492 ], [ 2.16555, 50.911653 ], [ 2.166938, 50.908442 ], [ 2.18877, 50.874647 ], [ 2.19034, 50.87137 ], [ 2.190113, 50.86793 ], [ 2.203616, 50.84971 ], [ 2.202647, 50.842941 ], [ 2.206205, 50.84023 ], [ 2.208621, 50.837058 ], [ 2.207562, 50.82789 ], [ 2.212661, 50.82256 ], [ 2.211363, 50.81953 ], [ 2.21343, 50.81055 ], [ 2.22266, 50.80987 ], [ 2.226713, 50.80782 ], [ 2.239846, 50.79903 ], [ 2.242758, 50.79652 ], [ 2.251044, 50.78963 ], [ 2.254833, 50.78803 ], [ 2.273686, 50.783234 ], [ 2.287618, 50.78681 ], [ 2.288277, 50.7803 ], [ 2.288578, 50.777039 ], [ 2.309115, 50.78505 ], [ 2.31261, 50.78721 ], [ 2.319058, 50.78244 ], [ 2.340563, 50.780906 ], [ 2.360333, 50.77539 ], [ 2.365724, 50.77547 ], [ 2.374318, 50.783027 ], [ 2.381448, 50.77868 ], [ 2.386543, 50.777525 ], [ 2.40068, 50.77399 ], [ 2.404331, 50.771635 ], [ 2.407129, 50.767171 ], [ 2.411478, 50.766734 ], [ 2.382123, 50.75499 ], [ 2.363636, 50.751568 ], [ 2.342195, 50.740698 ], [ 2.339683, 50.73067 ], [ 2.350509, 50.72655 ], [ 2.350813, 50.72054 ], [ 2.353433, 50.717992 ], [ 2.362256, 50.71111 ], [ 2.366373, 50.709677 ], [ 2.366375, 50.7095 ], [ 2.386124, 50.69858 ], [ 2.367167, 50.687067 ], [ 2.363525, 50.68464 ], [ 2.368168, 50.67936 ], [ 2.371374, 50.677092 ], [ 2.378528, 50.67193 ], [ 2.401762, 50.679916 ], [ 2.409622, 50.67093 ], [ 2.414511, 50.669432 ], [ 2.416134, 50.665832 ], [ 2.421532, 50.66552 ], [ 2.430188, 50.6568 ], [ 2.44606, 50.6551 ], [ 2.450822, 50.653445 ], [ 2.470104, 50.64149 ], [ 2.473183, 50.6386 ], [ 2.491542, 50.63172 ], [ 2.501953, 50.63196 ], [ 2.506806, 50.633424 ], [ 2.528875, 50.64257 ], [ 2.534119, 50.64167 ], [ 2.541783, 50.62923 ], [ 2.551557, 50.62651 ], [ 2.561693, 50.62746 ], [ 2.564301, 50.62443 ], [ 2.568492, 50.632523 ], [ 2.582335, 50.63418 ], [ 2.584993, 50.63692 ], [ 2.592547, 50.6347 ], [ 2.593574, 50.631603 ], [ 2.613497, 50.63349 ], [ 2.616283, 50.6271 ], [ 2.630516, 50.617952 ], [ 2.644364, 50.62256 ], [ 2.669852, 50.625332 ], [ 2.673575, 50.634334 ], [ 2.683002, 50.636413 ], [ 2.684208, 50.63311 ], [ 2.698103, 50.62915 ], [ 2.718588, 50.62936 ], [ 2.726066, 50.613847 ], [ 2.747182, 50.60525 ], [ 2.751518, 50.60689 ], [ 2.750512, 50.61355 ], [ 2.760314, 50.63147 ], [ 2.764665, 50.633382 ], [ 2.784663, 50.629183 ], [ 2.792447, 50.63366 ], [ 2.788444, 50.63595 ], [ 2.759178, 50.65068 ], [ 2.759527, 50.651402 ], [ 2.769677, 50.663617 ], [ 2.796618, 50.66296 ], [ 2.80598, 50.6665 ], [ 2.809188, 50.66937 ], [ 2.818177, 50.66327 ], [ 2.821276, 50.661278 ], [ 2.830892, 50.660718 ], [ 2.842615, 50.65488 ], [ 2.845502, 50.652274 ], [ 2.86681, 50.6338 ], [ 2.869738, 50.6311 ], [ 2.866202, 50.629046 ], [ 2.862341, 50.62726 ], [ 2.857106, 50.627313 ], [ 2.841416, 50.627662 ], [ 2.831382, 50.62002 ], [ 2.828412, 50.61824 ], [ 2.82454, 50.61594 ], [ 2.808041, 50.60755 ], [ 2.792065, 50.586288 ], [ 2.789076, 50.58306 ], [ 2.793326, 50.58123 ], [ 2.808235, 50.57885 ], [ 2.815076, 50.56599 ], [ 2.813165, 50.54931 ], [ 2.808764, 50.55082 ], [ 2.794472, 50.549206 ], [ 2.796583, 50.54632 ], [ 2.801323, 50.53732 ], [ 2.798854, 50.52792 ], [ 2.803772, 50.52691 ], [ 2.810636, 50.52882 ], [ 2.81437, 50.52813 ], [ 2.824771, 50.52561 ], [ 2.846701, 50.52791 ], [ 2.852162, 50.5286 ], [ 2.857089, 50.529234 ], [ 2.862058, 50.52977 ], [ 2.878465, 50.534651 ], [ 2.882504, 50.53597 ], [ 2.886965, 50.53766 ], [ 2.887046, 50.53298 ], [ 2.889207, 50.52994 ], [ 2.881294, 50.51769 ], [ 2.882077, 50.50775 ], [ 2.901641, 50.50101 ], [ 2.904831, 50.503456 ], [ 2.910143, 50.49983 ], [ 2.922758, 50.505749 ], [ 2.926865, 50.50781 ], [ 2.946244, 50.51042 ], [ 2.950676, 50.511903 ], [ 2.96471, 50.51278 ], [ 2.989854, 50.498861 ], [ 2.99423, 50.49666 ], [ 3.00439, 50.495011 ], [ 3.008344, 50.49277 ], [ 3.010848, 50.49027 ], [ 3.024325, 50.48406 ], [ 3.021001, 50.475423 ], [ 3.017441, 50.47284 ], [ 3.017258, 50.470352 ], [ 3.019563, 50.46833 ], [ 3.017172, 50.465765 ], [ 3.008268, 50.45586 ], [ 3.016703, 50.45198 ], [ 3.016715, 50.445271 ], [ 3.016292, 50.44192 ], [ 3.029859, 50.44468 ], [ 3.038558, 50.442143 ], [ 3.041611, 50.44451 ], [ 3.053992, 50.454884 ], [ 3.058817, 50.456183 ], [ 3.062966, 50.456962 ], [ 3.066525, 50.458531 ], [ 3.067817, 50.44685 ], [ 3.077219, 50.44499 ], [ 3.081786, 50.44373 ], [ 3.078492, 50.44097 ], [ 3.069662, 50.428592 ], [ 3.071442, 50.42531 ], [ 3.065917, 50.423558 ], [ 3.062224, 50.42562 ], [ 3.038979, 50.42318 ], [ 3.037445, 50.41999 ], [ 3.029516, 50.41154 ], [ 3.027533, 50.40852 ], [ 3.014959, 50.4031 ], [ 2.995463, 50.39994 ], [ 2.991727, 50.4017 ], [ 2.980518, 50.40288 ], [ 2.983904, 50.40024 ], [ 2.990422, 50.39495 ], [ 2.993935, 50.38177 ], [ 3.001685, 50.3739 ], [ 3.002793, 50.370887 ], [ 3.008267, 50.3625 ], [ 3.00734, 50.359486 ], [ 3.010385, 50.35878 ], [ 3.013459, 50.35941 ], [ 3.035188, 50.34633 ], [ 3.038806, 50.34402 ], [ 3.042777, 50.34486 ], [ 3.046692, 50.34581 ], [ 3.058157, 50.335402 ], [ 3.061114, 50.33278 ], [ 3.060366, 50.32892 ], [ 3.074598, 50.31711 ], [ 3.079182, 50.316213 ], [ 3.082137, 50.313778 ], [ 3.084867, 50.31123 ], [ 3.080685, 50.30911 ], [ 3.065485, 50.30731 ], [ 3.058413, 50.30227 ], [ 3.050529, 50.29609 ], [ 3.047612, 50.293846 ], [ 3.051618, 50.29197 ], [ 3.055204, 50.28976 ], [ 3.052454, 50.28759 ], [ 3.055097, 50.2823 ], [ 3.044308, 50.283109 ], [ 3.036142, 50.28755 ], [ 3.015274, 50.28378 ], [ 3.012244, 50.26798 ], [ 3.015395, 50.26615 ], [ 3.018644, 50.264394 ], [ 3.02981, 50.26719 ], [ 3.036395, 50.26941 ], [ 3.050776, 50.277171 ], [ 3.054641, 50.27533 ], [ 3.057623, 50.27316 ], [ 3.061811, 50.27209 ], [ 3.062161, 50.27182 ], [ 3.077477, 50.27436 ], [ 3.102434, 50.269337 ], [ 3.107559, 50.26857 ], [ 3.127684, 50.26638 ], [ 3.132839, 50.26624 ], [ 3.138159, 50.26525 ], [ 3.150799, 50.26214 ], [ 3.154141, 50.2602 ], [ 3.149535, 50.260884 ], [ 3.147167, 50.24622 ], [ 3.169753, 50.24209 ], [ 3.174272, 50.240954 ], [ 3.18238, 50.23364 ], [ 3.186851, 50.23493 ], [ 3.184117, 50.226231 ], [ 3.180625, 50.22424 ], [ 3.178885, 50.219073 ], [ 3.147956, 50.21915 ], [ 3.142792, 50.21924 ], [ 3.135974, 50.208 ], [ 3.132574, 50.20258 ], [ 3.131195, 50.199495 ], [ 3.138996, 50.19748 ], [ 3.142896, 50.19649 ], [ 3.147055, 50.18825 ], [ 3.15517, 50.18466 ], [ 3.156377, 50.18157 ], [ 3.151507, 50.18027 ], [ 3.137514, 50.16694 ], [ 3.115648, 50.16664 ], [ 3.100959, 50.161969 ], [ 3.112266, 50.15477 ], [ 3.115494, 50.148244 ], [ 3.130229, 50.14456 ], [ 3.135538, 50.14421 ], [ 3.135333, 50.140743 ], [ 3.130662, 50.13914 ], [ 3.095967, 50.12452 ], [ 3.093601, 50.12164 ], [ 3.103755, 50.114613 ], [ 3.104294, 50.11138 ], [ 3.105585, 50.10803 ], [ 3.104601, 50.10463 ], [ 3.109628, 50.104783 ], [ 3.113084, 50.095556 ], [ 3.114055, 50.09238 ], [ 3.103729, 50.080961 ], [ 3.088853, 50.082176 ], [ 3.087669, 50.07557 ], [ 3.094889, 50.071035 ], [ 3.098108, 50.068437 ], [ 3.093709, 50.06685 ], [ 3.085835, 50.06422 ], [ 3.084626, 50.05849 ], [ 3.090254, 50.053741 ] ], [ [ 3.003746, 50.15016 ], [ 2.994718, 50.13815 ], [ 3.002389, 50.12996 ], [ 3.000531, 50.12011 ], [ 3.007835, 50.11563 ], [ 3.010628, 50.112806 ], [ 3.024637, 50.116387 ], [ 3.034799, 50.12765 ], [ 3.037036, 50.13058 ], [ 3.052154, 50.13241 ], [ 3.062491, 50.130429 ], [ 3.067294, 50.128738 ], [ 3.072368, 50.130818 ], [ 3.072024, 50.13422 ], [ 3.067794, 50.14749 ], [ 3.092079, 50.160674 ], [ 3.095886, 50.16313 ], [ 3.092256, 50.165442 ], [ 3.090058, 50.171757 ], [ 3.085555, 50.170979 ], [ 3.062726, 50.17378 ], [ 3.060737, 50.17094 ], [ 3.056215, 50.166048 ], [ 3.040398, 50.1597 ], [ 3.039068, 50.15671 ], [ 3.035919, 50.15156 ], [ 3.026289, 50.151016 ], [ 3.022362, 50.15195 ], [ 3.019176, 50.15371 ], [ 3.014941, 50.15242 ], [ 3.007826, 50.14868 ], [ 3.003746, 50.15016 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "64", "CODE_DEPT": "63", "NOM_DEPT": "PUY-DE-DOME", "CODE_CHF": "113", "NOM_CHF": "CLERMONT-FERRAND", "X_CHF_LIEU": "7067", "Y_CHF_LIEU": "65200", "X_CENTROID": "7109", "Y_CENTROID": "65140", "CODE_REG": "83", "NOM_REGION": "AUVERGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.103498, 45.354373 ], [ 3.100442, 45.352503 ], [ 3.096457, 45.352038 ], [ 3.093847, 45.349087 ], [ 3.088392, 45.339727 ], [ 3.07004, 45.33624 ], [ 3.063179, 45.33137 ], [ 3.065741, 45.31774 ], [ 3.056889, 45.309826 ], [ 3.059399, 45.30683 ], [ 3.05557, 45.305297 ], [ 3.036731, 45.2982 ], [ 3.03224, 45.297796 ], [ 3.023857, 45.295538 ], [ 3.018305, 45.28707 ], [ 3.013611, 45.28828 ], [ 2.999196, 45.290733 ], [ 2.967984, 45.306882 ], [ 2.948625, 45.30913 ], [ 2.947996, 45.312565 ], [ 2.932074, 45.32993 ], [ 2.92452, 45.34642 ], [ 2.924245, 45.3511 ], [ 2.920906, 45.36484 ], [ 2.922728, 45.368108 ], [ 2.918284, 45.366943 ], [ 2.905135, 45.36955 ], [ 2.892968, 45.37924 ], [ 2.888952, 45.380965 ], [ 2.880617, 45.3831 ], [ 2.87353, 45.37537 ], [ 2.868737, 45.37611 ], [ 2.857949, 45.383046 ], [ 2.852379, 45.39234 ], [ 2.847408, 45.39209 ], [ 2.828076, 45.390757 ], [ 2.815354, 45.4004 ], [ 2.789725, 45.39052 ], [ 2.785148, 45.384578 ], [ 2.780556, 45.38563 ], [ 2.776168, 45.38685 ], [ 2.762087, 45.38649 ], [ 2.750028, 45.391286 ], [ 2.745843, 45.39262 ], [ 2.728285, 45.389776 ], [ 2.714525, 45.38147 ], [ 2.70457, 45.389 ], [ 2.699535, 45.39845 ], [ 2.681746, 45.409104 ], [ 2.679942, 45.422696 ], [ 2.683295, 45.42459 ], [ 2.690031, 45.43185 ], [ 2.688464, 45.437694 ], [ 2.674162, 45.438122 ], [ 2.660432, 45.434795 ], [ 2.651365, 45.442745 ], [ 2.646883, 45.443613 ], [ 2.638222, 45.44576 ], [ 2.624533, 45.4439 ], [ 2.62547, 45.44728 ], [ 2.622732, 45.464336 ], [ 2.616335, 45.464152 ], [ 2.601189, 45.45092 ], [ 2.591404, 45.45063 ], [ 2.574355, 45.45663 ], [ 2.565898, 45.46486 ], [ 2.561151, 45.464724 ], [ 2.535771, 45.457499 ], [ 2.536998, 45.463817 ], [ 2.543963, 45.478982 ], [ 2.539263, 45.47925 ], [ 2.521354, 45.482391 ], [ 2.508409, 45.478508 ], [ 2.51389, 45.49284 ], [ 2.510569, 45.497743 ], [ 2.508997, 45.50023 ], [ 2.509567, 45.50681 ], [ 2.518362, 45.518911 ], [ 2.514877, 45.524893 ], [ 2.517911, 45.53107 ], [ 2.51498, 45.54099 ], [ 2.518148, 45.543574 ], [ 2.516673, 45.55115 ], [ 2.51588, 45.55388 ], [ 2.507604, 45.553353 ], [ 2.496294, 45.556832 ], [ 2.488221, 45.569016 ], [ 2.47428, 45.579019 ], [ 2.463472, 45.59468 ], [ 2.465476, 45.60105 ], [ 2.474686, 45.60655 ], [ 2.478432, 45.607917 ], [ 2.482026, 45.63521 ], [ 2.486287, 45.64082 ], [ 2.513977, 45.639441 ], [ 2.517926, 45.63991 ], [ 2.51907, 45.64427 ], [ 2.518942, 45.64708 ], [ 2.526007, 45.65567 ], [ 2.51449, 45.66581 ], [ 2.514537, 45.67214 ], [ 2.524542, 45.681215 ], [ 2.528684, 45.6822 ], [ 2.526321, 45.685 ], [ 2.52583, 45.69435 ], [ 2.521281, 45.69582 ], [ 2.521626, 45.70949 ], [ 2.492126, 45.73767 ], [ 2.485224, 45.74686 ], [ 2.471269, 45.749497 ], [ 2.46699, 45.75578 ], [ 2.454754, 45.76116 ], [ 2.450513, 45.75943 ], [ 2.442298, 45.761406 ], [ 2.434119, 45.769857 ], [ 2.433456, 45.773024 ], [ 2.430863, 45.788617 ], [ 2.389333, 45.82402 ], [ 2.38802, 45.82738 ], [ 2.40211, 45.83712 ], [ 2.426321, 45.8343 ], [ 2.432688, 45.839001 ], [ 2.438951, 45.846497 ], [ 2.447823, 45.84582 ], [ 2.449666, 45.85222 ], [ 2.443406, 45.857 ], [ 2.442696, 45.863508 ], [ 2.443424, 45.86674 ], [ 2.465349, 45.86821 ], [ 2.465267, 45.871353 ], [ 2.47428, 45.87116 ], [ 2.487571, 45.864216 ], [ 2.492225, 45.86403 ], [ 2.50158, 45.875787 ], [ 2.502119, 45.886082 ], [ 2.511845, 45.887124 ], [ 2.549707, 45.9089 ], [ 2.553196, 45.911393 ], [ 2.55784, 45.91296 ], [ 2.54389, 45.91661 ], [ 2.542608, 45.92342 ], [ 2.544087, 45.93027 ], [ 2.553174, 45.93797 ], [ 2.551637, 45.94127 ], [ 2.568835, 45.947141 ], [ 2.565828, 45.95686 ], [ 2.602149, 45.96552 ], [ 2.60683, 45.966424 ], [ 2.610789, 45.972732 ], [ 2.600091, 45.98405 ], [ 2.596791, 45.98665 ], [ 2.593557, 45.99938 ], [ 2.598839, 46.008656 ], [ 2.598287, 46.01525 ], [ 2.601761, 46.02106 ], [ 2.600116, 46.0303 ], [ 2.602696, 46.032875 ], [ 2.599212, 46.03549 ], [ 2.573497, 46.047006 ], [ 2.554677, 46.07613 ], [ 2.550659, 46.08644 ], [ 2.552621, 46.093401 ], [ 2.550966, 46.09961 ], [ 2.549019, 46.112802 ], [ 2.550523, 46.118958 ], [ 2.554641, 46.1205 ], [ 2.559959, 46.13228 ], [ 2.559208, 46.13873 ], [ 2.563985, 46.14081 ], [ 2.565379, 46.143041 ], [ 2.574549, 46.139933 ], [ 2.587726, 46.129275 ], [ 2.591384, 46.12678 ], [ 2.598423, 46.129358 ], [ 2.601883, 46.1309 ], [ 2.619412, 46.12462 ], [ 2.623711, 46.1228 ], [ 2.637202, 46.119385 ], [ 2.646827, 46.120748 ], [ 2.654375, 46.12526 ], [ 2.6619, 46.137759 ], [ 2.664111, 46.140458 ], [ 2.668672, 46.15326 ], [ 2.674938, 46.15853 ], [ 2.676724, 46.17206 ], [ 2.68505, 46.17571 ], [ 2.699216, 46.1785 ], [ 2.702702, 46.181007 ], [ 2.71947, 46.17996 ], [ 2.723105, 46.181518 ], [ 2.722605, 46.18809 ], [ 2.730098, 46.196285 ], [ 2.721645, 46.208547 ], [ 2.730277, 46.2204 ], [ 2.732598, 46.223413 ], [ 2.746418, 46.21988 ], [ 2.759837, 46.21 ], [ 2.769665, 46.21074 ], [ 2.783931, 46.20146 ], [ 2.786782, 46.19865 ], [ 2.805593, 46.196421 ], [ 2.810405, 46.196213 ], [ 2.817313, 46.20502 ], [ 2.823309, 46.219961 ], [ 2.817677, 46.23211 ], [ 2.819163, 46.241792 ], [ 2.855298, 46.25519 ], [ 2.85976, 46.25659 ], [ 2.866004, 46.251059 ], [ 2.886301, 46.253135 ], [ 2.905702, 46.248713 ], [ 2.925898, 46.24938 ], [ 2.941248, 46.242082 ], [ 2.945972, 46.24168 ], [ 2.932266, 46.23232 ], [ 2.939127, 46.22375 ], [ 2.936354, 46.2209 ], [ 2.932737, 46.218683 ], [ 2.923866, 46.217102 ], [ 2.915817, 46.212792 ], [ 2.912136, 46.202523 ], [ 2.919911, 46.18947 ], [ 2.919052, 46.18241 ], [ 2.915582, 46.17982 ], [ 2.910762, 46.178659 ], [ 2.913332, 46.176446 ], [ 2.915695, 46.17413 ], [ 2.948325, 46.169174 ], [ 2.95212, 46.17133 ], [ 2.96161, 46.13184 ], [ 2.964396, 46.129063 ], [ 2.968686, 46.12383 ], [ 2.971744, 46.12169 ], [ 2.980121, 46.12452 ], [ 2.994263, 46.123197 ], [ 3.00896, 46.11452 ], [ 3.014279, 46.105277 ], [ 3.021631, 46.101683 ], [ 3.026111, 46.102933 ], [ 3.035161, 46.105479 ], [ 3.039111, 46.107486 ], [ 3.050446, 46.1008 ], [ 3.090942, 46.111725 ], [ 3.099678, 46.095653 ], [ 3.098327, 46.08532 ], [ 3.100845, 46.0823 ], [ 3.108918, 46.081443 ], [ 3.113059, 46.081448 ], [ 3.116072, 46.080356 ], [ 3.118319, 46.07858 ], [ 3.121821, 46.076424 ], [ 3.127839, 46.07149 ], [ 3.174579, 46.06595 ], [ 3.179342, 46.066577 ], [ 3.179455, 46.07346 ], [ 3.214511, 46.074945 ], [ 3.221868, 46.067393 ], [ 3.228259, 46.070487 ], [ 3.232525, 46.06972 ], [ 3.230469, 46.06687 ], [ 3.237284, 46.063247 ], [ 3.241718, 46.062454 ], [ 3.253201, 46.06435 ], [ 3.256571, 46.065798 ], [ 3.275767, 46.062935 ], [ 3.284372, 46.06596 ], [ 3.297921, 46.06435 ], [ 3.302392, 46.06577 ], [ 3.305497, 46.06118 ], [ 3.314361, 46.061601 ], [ 3.317011, 46.059126 ], [ 3.332797, 46.05355 ], [ 3.331634, 46.047269 ], [ 3.332054, 46.044098 ], [ 3.336269, 46.04605 ], [ 3.369134, 46.054484 ], [ 3.382902, 46.06457 ], [ 3.402685, 46.066805 ], [ 3.419742, 46.07438 ], [ 3.422215, 46.07129 ], [ 3.434954, 46.060824 ], [ 3.444781, 46.060291 ], [ 3.453593, 46.06379 ], [ 3.45719, 46.062303 ], [ 3.457308, 46.059394 ], [ 3.460638, 46.057058 ], [ 3.460557, 46.05048 ], [ 3.471773, 46.04022 ], [ 3.467123, 46.03934 ], [ 3.463125, 46.037461 ], [ 3.467401, 46.02788 ], [ 3.464145, 46.008173 ], [ 3.468679, 46.00941 ], [ 3.473174, 46.010738 ], [ 3.486673, 46.01432 ], [ 3.520433, 46.01443 ], [ 3.520709, 46.02037 ], [ 3.538337, 46.02133 ], [ 3.544922, 46.014036 ], [ 3.548701, 46.015845 ], [ 3.553012, 46.01526 ], [ 3.554569, 46.01839 ], [ 3.577777, 46.017844 ], [ 3.584021, 46.02279 ], [ 3.588341, 46.02418 ], [ 3.598457, 46.01774 ], [ 3.613056, 46.00084 ], [ 3.613497, 45.99749 ], [ 3.625873, 45.983702 ], [ 3.630235, 45.96417 ], [ 3.631994, 45.96106 ], [ 3.63916, 45.965428 ], [ 3.66186, 45.961012 ], [ 3.666639, 45.96115 ], [ 3.678016, 45.95595 ], [ 3.680677, 45.94357 ], [ 3.682524, 45.94054 ], [ 3.691148, 45.933452 ], [ 3.693892, 45.93096 ], [ 3.694018, 45.93073 ], [ 3.72135, 45.922745 ], [ 3.726359, 45.917066 ], [ 3.728991, 45.91415 ], [ 3.740233, 45.907764 ], [ 3.752984, 45.88933 ], [ 3.754371, 45.88603 ], [ 3.750312, 45.88437 ], [ 3.734084, 45.87127 ], [ 3.715524, 45.870587 ], [ 3.7172, 45.867641 ], [ 3.720282, 45.861741 ], [ 3.72853, 45.862687 ], [ 3.726607, 45.85957 ], [ 3.720762, 45.851129 ], [ 3.719124, 45.85007 ], [ 3.726892, 45.83027 ], [ 3.712631, 45.80129 ], [ 3.695115, 45.7947 ], [ 3.693391, 45.78863 ], [ 3.700393, 45.783556 ], [ 3.728469, 45.776012 ], [ 3.737972, 45.767782 ], [ 3.733108, 45.76194 ], [ 3.730436, 45.760357 ], [ 3.729002, 45.75789 ], [ 3.727106, 45.75558 ], [ 3.730822, 45.753484 ], [ 3.745951, 45.741173 ], [ 3.755838, 45.74661 ], [ 3.76804, 45.72867 ], [ 3.776168, 45.72512 ], [ 3.780919, 45.724673 ], [ 3.777015, 45.71953 ], [ 3.779998, 45.714062 ], [ 3.78238, 45.71165 ], [ 3.775857, 45.700178 ], [ 3.777585, 45.690566 ], [ 3.792084, 45.67652 ], [ 3.794532, 45.67347 ], [ 3.802989, 45.658734 ], [ 3.805428, 45.656051 ], [ 3.817721, 45.6467 ], [ 3.81931, 45.64043 ], [ 3.820703, 45.637408 ], [ 3.82364, 45.63202 ], [ 3.835863, 45.627138 ], [ 3.858678, 45.624337 ], [ 3.860428, 45.61798 ], [ 3.861186, 45.61473 ], [ 3.86909, 45.61305 ], [ 3.881466, 45.60297 ], [ 3.904504, 45.598862 ], [ 3.908775, 45.597243 ], [ 3.909481, 45.59411 ], [ 3.932168, 45.579365 ], [ 3.935595, 45.577238 ], [ 3.939503, 45.57179 ], [ 3.941931, 45.568999 ], [ 3.944619, 45.56275 ], [ 3.954474, 45.555827 ], [ 3.94643, 45.543404 ], [ 3.958555, 45.51379 ], [ 3.962229, 45.50555 ], [ 3.96484, 45.50322 ], [ 3.969342, 45.50143 ], [ 3.972738, 45.50013 ], [ 3.984007, 45.49506 ], [ 3.983321, 45.48887 ], [ 3.985629, 45.48618 ], [ 3.983336, 45.483219 ], [ 3.971637, 45.47743 ], [ 3.967553, 45.47155 ], [ 3.966383, 45.468283 ], [ 3.973126, 45.459399 ], [ 3.969091, 45.45332 ], [ 3.975106, 45.44827 ], [ 3.971058, 45.44726 ], [ 3.960143, 45.443446 ], [ 3.96286, 45.44078 ], [ 3.96329, 45.437511 ], [ 3.963258, 45.436431 ], [ 3.959804, 45.43416 ], [ 3.937312, 45.429987 ], [ 3.918432, 45.42133 ], [ 3.913895, 45.42225 ], [ 3.911124, 45.419352 ], [ 3.907081, 45.412955 ], [ 3.898541, 45.409818 ], [ 3.899085, 45.40631 ], [ 3.890368, 45.393665 ], [ 3.894516, 45.383762 ], [ 3.892146, 45.36985 ], [ 3.897408, 45.35708 ], [ 3.893419, 45.35522 ], [ 3.874532, 45.355419 ], [ 3.856716, 45.359654 ], [ 3.845234, 45.369836 ], [ 3.837311, 45.366302 ], [ 3.836299, 45.383095 ], [ 3.822802, 45.380322 ], [ 3.817942, 45.386121 ], [ 3.805971, 45.391629 ], [ 3.796166, 45.38517 ], [ 3.791406, 45.38477 ], [ 3.787159, 45.371799 ], [ 3.789194, 45.358529 ], [ 3.780233, 45.351613 ], [ 3.77153, 45.350295 ], [ 3.758875, 45.35596 ], [ 3.755922, 45.353887 ], [ 3.742091, 45.353025 ], [ 3.732048, 45.35943 ], [ 3.722903, 45.35951 ], [ 3.718668, 45.3609 ], [ 3.714686, 45.36015 ], [ 3.706467, 45.360702 ], [ 3.701783, 45.360002 ], [ 3.698737, 45.36259 ], [ 3.704165, 45.37159 ], [ 3.694962, 45.373264 ], [ 3.684735, 45.380035 ], [ 3.681775, 45.382539 ], [ 3.672631, 45.381829 ], [ 3.667354, 45.376556 ], [ 3.66318, 45.36297 ], [ 3.645366, 45.3579 ], [ 3.640876, 45.348436 ], [ 3.627347, 45.3389 ], [ 3.617814, 45.33816 ], [ 3.59499, 45.355335 ], [ 3.590793, 45.35709 ], [ 3.586165, 45.37117 ], [ 3.588084, 45.373876 ], [ 3.586739, 45.37717 ], [ 3.581125, 45.38277 ], [ 3.579076, 45.38602 ], [ 3.569313, 45.402293 ], [ 3.564485, 45.396347 ], [ 3.55582, 45.393878 ], [ 3.548129, 45.39802 ], [ 3.521799, 45.402128 ], [ 3.518551, 45.40478 ], [ 3.506861, 45.411048 ], [ 3.501257, 45.427633 ], [ 3.496769, 45.426239 ], [ 3.479403, 45.42029 ], [ 3.463556, 45.407571 ], [ 3.460601, 45.401171 ], [ 3.455852, 45.400335 ], [ 3.451273, 45.401461 ], [ 3.427435, 45.40165 ], [ 3.420231, 45.397179 ], [ 3.418577, 45.400004 ], [ 3.406548, 45.403299 ], [ 3.398039, 45.40028 ], [ 3.389278, 45.40322 ], [ 3.38001, 45.401158 ], [ 3.367373, 45.41149 ], [ 3.363668, 45.413855 ], [ 3.355951, 45.422705 ], [ 3.352437, 45.421104 ], [ 3.340854, 45.42136 ], [ 3.341972, 45.41808 ], [ 3.330264, 45.39721 ], [ 3.32594, 45.398744 ], [ 3.324317, 45.405377 ], [ 3.308909, 45.41839 ], [ 3.299828, 45.42024 ], [ 3.295765, 45.41839 ], [ 3.295401, 45.41487 ], [ 3.291755, 45.40461 ], [ 3.290615, 45.4017 ], [ 3.287523, 45.399606 ], [ 3.283054, 45.3979 ], [ 3.26018, 45.39075 ], [ 3.255856, 45.3898 ], [ 3.242594, 45.390555 ], [ 3.236171, 45.394629 ], [ 3.235505, 45.39138 ], [ 3.222804, 45.38218 ], [ 3.218652, 45.369488 ], [ 3.215856, 45.370007 ], [ 3.211477, 45.367206 ], [ 3.209061, 45.370245 ], [ 3.199492, 45.369938 ], [ 3.192882, 45.36487 ], [ 3.179586, 45.3612 ], [ 3.177483, 45.35466 ], [ 3.181128, 45.35231 ], [ 3.151254, 45.351131 ], [ 3.146604, 45.350777 ], [ 3.138964, 45.35449 ], [ 3.130809, 45.351346 ], [ 3.103498, 45.354373 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "65", "CODE_DEPT": "64", "NOM_DEPT": "PYRENEES-ATLANTIQUES", "CODE_CHF": "445", "NOM_CHF": "PAU", "X_CHF_LIEU": "4264", "Y_CHF_LIEU": "62504", "X_CENTROID": "3945", "Y_CENTROID": "62469", "CODE_REG": "72", "NOM_REGION": "AQUITAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.313443, 42.849375 ], [ -0.315497, 42.846153 ], [ -0.326287, 42.83487 ], [ -0.335323, 42.837195 ], [ -0.349198, 42.83519 ], [ -0.364969, 42.81738 ], [ -0.388866, 42.800541 ], [ -0.410797, 42.806667 ], [ -0.441449, 42.796876 ], [ -0.49492, 42.81863 ], [ -0.501298, 42.827889 ], [ -0.509922, 42.825113 ], [ -0.524149, 42.811289 ], [ -0.526911, 42.794565 ], [ -0.544393, 42.79064 ], [ -0.553722, 42.77912 ], [ -0.563019, 42.78049 ], [ -0.567747, 42.780873 ], [ -0.570273, 42.79077 ], [ -0.565586, 42.796831 ], [ -0.566164, 42.803662 ], [ -0.573618, 42.807401 ], [ -0.591622, 42.80359 ], [ -0.600281, 42.806428 ], [ -0.602347, 42.830086 ], [ -0.621643, 42.83965 ], [ -0.636157, 42.85325 ], [ -0.640546, 42.853586 ], [ -0.656061, 42.85922 ], [ -0.662673, 42.870738 ], [ -0.679442, 42.88293 ], [ -0.69775, 42.87959 ], [ -0.722561, 42.88968 ], [ -0.731417, 42.897933 ], [ -0.734972, 42.91169 ], [ -0.725877, 42.91959 ], [ -0.732967, 42.935529 ], [ -0.730891, 42.93869 ], [ -0.737123, 42.947152 ], [ -0.740469, 42.94887 ], [ -0.743279, 42.951583 ], [ -0.752805, 42.966961 ], [ -0.766504, 42.968544 ], [ -0.783837, 42.96456 ], [ -0.788663, 42.96412 ], [ -0.811885, 42.95129 ], [ -0.835877, 42.95341 ], [ -0.864704, 42.950974 ], [ -0.882969, 42.95558 ], [ -0.8975, 42.95584 ], [ -0.897582, 42.95942 ], [ -0.910014, 42.9638 ], [ -0.923917, 42.954572 ], [ -0.943103, 42.953869 ], [ -0.969921, 42.96187 ], [ -0.997284, 42.976233 ], [ -1.007051, 42.98855 ], [ -1.010466, 42.991095 ], [ -1.014744, 42.992818 ], [ -1.07233, 42.99845 ], [ -1.08449, 43.004031 ], [ -1.083574, 43.010883 ], [ -1.09738, 43.01314 ], [ -1.112416, 43.021635 ], [ -1.139251, 43.00847 ], [ -1.144497, 43.014045 ], [ -1.1456, 43.024485 ], [ -1.169244, 43.036099 ], [ -1.173541, 43.037625 ], [ -1.175113, 43.034403 ], [ -1.183728, 43.03418 ], [ -1.209938, 43.048492 ], [ -1.212409, 43.051394 ], [ -1.230798, 43.054816 ], [ -1.243829, 43.044593 ], [ -1.247508, 43.04236 ], [ -1.26161, 43.043593 ], [ -1.272182, 43.055216 ], [ -1.308474, 43.071008 ], [ -1.293568, 43.099752 ], [ -1.273029, 43.115738 ], [ -1.270189, 43.11857 ], [ -1.320145, 43.112768 ], [ -1.327877, 43.108971 ], [ -1.33225, 43.10778 ], [ -1.345197, 43.093069 ], [ -1.341514, 43.079381 ], [ -1.344857, 43.05126 ], [ -1.350976, 43.034142 ], [ -1.356565, 43.028952 ], [ -1.365888, 43.030799 ], [ -1.439726, 43.04595 ], [ -1.453267, 43.06038 ], [ -1.456043, 43.06325 ], [ -1.471281, 43.080941 ], [ -1.470674, 43.091209 ], [ -1.427253, 43.117281 ], [ -1.427077, 43.12077 ], [ -1.414498, 43.13044 ], [ -1.411524, 43.140457 ], [ -1.413699, 43.15024 ], [ -1.407506, 43.15535 ], [ -1.402886, 43.15608 ], [ -1.400027, 43.179935 ], [ -1.384954, 43.188125 ], [ -1.383697, 43.222311 ], [ -1.378322, 43.231673 ], [ -1.378586, 43.23515 ], [ -1.379716, 43.238509 ], [ -1.385578, 43.25499 ], [ -1.413206, 43.27342 ], [ -1.433076, 43.266764 ], [ -1.44608, 43.268806 ], [ -1.468961, 43.273699 ], [ -1.48451, 43.28178 ], [ -1.493953, 43.282365 ], [ -1.505856, 43.293276 ], [ -1.524593, 43.29311 ], [ -1.529292, 43.293413 ], [ -1.561732, 43.2884 ], [ -1.559528, 43.275039 ], [ -1.57347, 43.252598 ], [ -1.607092, 43.253276 ], [ -1.61821, 43.259875 ], [ -1.624382, 43.2695 ], [ -1.629765, 43.286782 ], [ -1.623152, 43.303664 ], [ -1.630919, 43.307278 ], [ -1.635301, 43.308829 ], [ -1.635609, 43.308816 ], [ -1.644551, 43.306782 ], [ -1.655737, 43.312807 ], [ -1.669614, 43.314254 ], [ -1.682256, 43.309903 ], [ -1.699794, 43.30963 ], [ -1.704278, 43.30863 ], [ -1.713446, 43.300932 ], [ -1.731214, 43.298677 ], [ -1.73935, 43.31478 ], [ -1.738246, 43.32836 ], [ -1.75039, 43.33281 ], [ -1.754943, 43.342497 ], [ -1.759025, 43.344228 ], [ -1.76284, 43.343916 ], [ -1.767025, 43.34256 ], [ -1.786007, 43.350463 ], [ -1.78505, 43.353966 ], [ -1.772005, 43.364204 ], [ -1.779209, 43.371078 ], [ -1.76183, 43.376937 ], [ -1.752257, 43.384892 ], [ -1.733809, 43.382052 ], [ -1.729376, 43.38314 ], [ -1.686478, 43.396379 ], [ -1.682892, 43.39195 ], [ -1.680377, 43.3899 ], [ -1.669409, 43.388141 ], [ -1.661977, 43.392346 ], [ -1.662032, 43.40217 ], [ -1.644317, 43.40672 ], [ -1.621164, 43.42301 ], [ -1.609472, 43.427525 ], [ -1.607457, 43.43062 ], [ -1.600529, 43.43475 ], [ -1.594341, 43.44753 ], [ -1.578024, 43.46381 ], [ -1.570117, 43.47577 ], [ -1.569808, 43.482458 ], [ -1.54982, 43.49433 ], [ -1.547318, 43.497121 ], [ -1.524867, 43.529701 ], [ -1.520215, 43.52898 ], [ -1.501414, 43.52695 ], [ -1.497632, 43.528942 ], [ -1.47943, 43.53916 ], [ -1.463336, 43.533081 ], [ -1.465627, 43.516523 ], [ -1.461756, 43.518331 ], [ -1.430715, 43.51421 ], [ -1.417658, 43.496907 ], [ -1.414216, 43.497209 ], [ -1.409764, 43.49679 ], [ -1.36965, 43.495024 ], [ -1.339491, 43.50245 ], [ -1.334926, 43.50315 ], [ -1.334037, 43.50367 ], [ -1.322411, 43.504947 ], [ -1.291381, 43.49839 ], [ -1.263935, 43.51147 ], [ -1.259852, 43.51317 ], [ -1.253742, 43.51575 ], [ -1.250529, 43.51684 ], [ -1.217605, 43.53062 ], [ -1.207378, 43.5379 ], [ -1.203884, 43.540261 ], [ -1.198334, 43.544125 ], [ -1.195616, 43.54609 ], [ -1.191399, 43.546862 ], [ -1.174184, 43.54605 ], [ -1.169708, 43.54531 ], [ -1.159516, 43.538665 ], [ -1.154083, 43.529314 ], [ -1.133883, 43.52032 ], [ -1.130839, 43.51416 ], [ -1.137291, 43.509721 ], [ -1.16017, 43.50857 ], [ -1.16492, 43.50836 ], [ -1.169836, 43.497121 ], [ -1.169662, 43.493029 ], [ -1.165674, 43.491272 ], [ -1.153755, 43.496207 ], [ -1.14851, 43.490922 ], [ -1.145124, 43.48859 ], [ -1.140709, 43.489652 ], [ -1.137624, 43.499401 ], [ -1.13298, 43.499705 ], [ -1.128596, 43.500349 ], [ -1.11628, 43.50343 ], [ -1.10733, 43.51432 ], [ -1.089581, 43.511928 ], [ -1.083223, 43.516519 ], [ -1.081084, 43.523 ], [ -1.077715, 43.521231 ], [ -1.068997, 43.50845 ], [ -1.04607, 43.51156 ], [ -1.028963, 43.50714 ], [ -1.026914, 43.50404 ], [ -1.023681, 43.501709 ], [ -1.017977, 43.50597 ], [ -0.992383, 43.504029 ], [ -0.993771, 43.50904 ], [ -0.992759, 43.512285 ], [ -0.989143, 43.51831 ], [ -0.989906, 43.531605 ], [ -1.001151, 43.536966 ], [ -0.9882, 43.5402 ], [ -0.962172, 43.535226 ], [ -0.949635, 43.532251 ], [ -0.939764, 43.538538 ], [ -0.935661, 43.53721 ], [ -0.928007, 43.53339 ], [ -0.923683, 43.53462 ], [ -0.919177, 43.54406 ], [ -0.911988, 43.54833 ], [ -0.907683, 43.54968 ], [ -0.893691, 43.550273 ], [ -0.871468, 43.545447 ], [ -0.867742, 43.544733 ], [ -0.863964, 43.544165 ], [ -0.860091, 43.542555 ], [ -0.842813, 43.543421 ], [ -0.842315, 43.554113 ], [ -0.837584, 43.55468 ], [ -0.820938, 43.561192 ], [ -0.803351, 43.55619 ], [ -0.795699, 43.56147 ], [ -0.794167, 43.56396 ], [ -0.781756, 43.565861 ], [ -0.782303, 43.57547 ], [ -0.774672, 43.57832 ], [ -0.770305, 43.579168 ], [ -0.738083, 43.55778 ], [ -0.734087, 43.55575 ], [ -0.73274, 43.552949 ], [ -0.728545, 43.54517 ], [ -0.721203, 43.541383 ], [ -0.712614, 43.54201 ], [ -0.70821, 43.541306 ], [ -0.709861, 43.547888 ], [ -0.707505, 43.557804 ], [ -0.700472, 43.562061 ], [ -0.697133, 43.55965 ], [ -0.688861, 43.55697 ], [ -0.661363, 43.568774 ], [ -0.645501, 43.574532 ], [ -0.641047, 43.57481 ], [ -0.657889, 43.55975 ], [ -0.655611, 43.556845 ], [ -0.638251, 43.553393 ], [ -0.633751, 43.5541 ], [ -0.63128, 43.550474 ], [ -0.61932, 43.5456 ], [ -0.614894, 43.544726 ], [ -0.615241, 43.54119 ], [ -0.614366, 43.537718 ], [ -0.600039, 43.538654 ], [ -0.567072, 43.55822 ], [ -0.561737, 43.55268 ], [ -0.558901, 43.54608 ], [ -0.557174, 43.5428 ], [ -0.552764, 43.543158 ], [ -0.548448, 43.54483 ], [ -0.525431, 43.55775 ], [ -0.521267, 43.559505 ], [ -0.507312, 43.568467 ], [ -0.507656, 43.56923 ], [ -0.504696, 43.57187 ], [ -0.465249, 43.589605 ], [ -0.461857, 43.5876 ], [ -0.449232, 43.59627 ], [ -0.441407, 43.59348 ], [ -0.440974, 43.590602 ], [ -0.431779, 43.586436 ], [ -0.431717, 43.583547 ], [ -0.45139, 43.56602 ], [ -0.459281, 43.56749 ], [ -0.459394, 43.561143 ], [ -0.449713, 43.54987 ], [ -0.446453, 43.55207 ], [ -0.437718, 43.552817 ], [ -0.433971, 43.554557 ], [ -0.406042, 43.56823 ], [ -0.40333, 43.56573 ], [ -0.400679, 43.563215 ], [ -0.397269, 43.565646 ], [ -0.389034, 43.56818 ], [ -0.37489, 43.567344 ], [ -0.367723, 43.56277 ], [ -0.353597, 43.56179 ], [ -0.351868, 43.55869 ], [ -0.348836, 43.556173 ], [ -0.336562, 43.55122 ], [ -0.310386, 43.558065 ], [ -0.303828, 43.562443 ], [ -0.302204, 43.565653 ], [ -0.301204, 43.5713 ], [ -0.294296, 43.567911 ], [ -0.287162, 43.5746 ], [ -0.283325, 43.58416 ], [ -0.25677, 43.5882 ], [ -0.251662, 43.58266 ], [ -0.247068, 43.58269 ], [ -0.242837, 43.58498 ], [ -0.238912, 43.58304 ], [ -0.228803, 43.589645 ], [ -0.210607, 43.593237 ], [ -0.206209, 43.587271 ], [ -0.205011, 43.584 ], [ -0.200656, 43.58543 ], [ -0.17692, 43.596596 ], [ -0.165057, 43.583931 ], [ -0.162108, 43.58167 ], [ -0.157822, 43.58145 ], [ -0.151007, 43.58546 ], [ -0.133718, 43.58144 ], [ -0.128961, 43.58145 ], [ -0.125567, 43.58349 ], [ -0.117675, 43.58552 ], [ -0.10552, 43.5818 ], [ -0.096783, 43.582406 ], [ -0.091968, 43.570063 ], [ -0.093557, 43.563706 ], [ -0.090087, 43.559969 ], [ -0.094943, 43.548071 ], [ -0.091411, 43.542481 ], [ -0.087008, 43.542552 ], [ -0.069606, 43.54674 ], [ -0.057929, 43.53622 ], [ -0.056176, 43.533034 ], [ -0.049232, 43.52975 ], [ -0.048168, 43.52719 ], [ -0.0437, 43.522986 ], [ -0.043649, 43.52014 ], [ -0.040132, 43.5126 ], [ -0.044093, 43.506588 ], [ -0.044886, 43.5038 ], [ -0.046746, 43.498293 ], [ -0.049195, 43.492011 ], [ -0.036451, 43.48885 ], [ -0.030784, 43.474017 ], [ -0.02639, 43.474851 ], [ -0.020185, 43.47253 ], [ -0.018906, 43.47006 ], [ -0.019443, 43.466869 ], [ -0.032107, 43.466039 ], [ -0.061553, 43.462582 ], [ -0.065754, 43.463489 ], [ -0.061978, 43.45362 ], [ -0.064851, 43.44702 ], [ -0.066819, 43.443831 ], [ -0.069629, 43.434208 ], [ -0.053331, 43.42252 ], [ -0.067273, 43.410416 ], [ -0.042983, 43.41021 ], [ -0.042459, 43.413376 ], [ -0.038142, 43.418863 ], [ -0.034239, 43.4308 ], [ -0.028231, 43.43189 ], [ -0.02481, 43.43004 ], [ -0.022528, 43.432688 ], [ -0.016534, 43.443947 ], [ -0.007073, 43.44401 ], [ -0.002483, 43.445085 ], [ -0.003263, 43.434943 ], [ -0.004794, 43.43162 ], [ -0.001211, 43.42925 ], [ 0.009655, 43.422202 ], [ 0.007811, 43.4192 ], [ -0.003807, 43.39805 ], [ -0.000391, 43.39624 ], [ -0.00297, 43.395267 ], [ -0.004291, 43.39337 ], [ 0.002651, 43.392821 ], [ -0.001203, 43.38742 ], [ 0.001295, 43.38497 ], [ -0.00059, 43.381828 ], [ -0.004653, 43.375711 ], [ 0.000487, 43.37038 ], [ 0.004757, 43.371813 ], [ 0.00741, 43.365881 ], [ 0.005349, 43.36304 ], [ 0.02875, 43.346655 ], [ 0.025541, 43.340229 ], [ 0.024182, 43.33862 ], [ 0.020525, 43.336337 ], [ 0.012768, 43.327535 ], [ 0.008515, 43.326076 ], [ -0.003208, 43.331449 ], [ -0.025371, 43.329616 ], [ -0.026224, 43.3273 ], [ -0.027991, 43.32267 ], [ -0.031664, 43.31258 ], [ -0.034256, 43.30958 ], [ -0.037224, 43.306958 ], [ -0.044586, 43.302799 ], [ -0.04401, 43.289338 ], [ -0.040786, 43.283578 ], [ -0.028313, 43.280714 ], [ -0.023975, 43.28021 ], [ -0.025978, 43.277071 ], [ -0.018534, 43.272787 ], [ -0.018439, 43.269315 ], [ -0.025019, 43.26019 ], [ -0.025297, 43.253289 ], [ -0.044814, 43.23384 ], [ -0.046754, 43.223726 ], [ -0.048038, 43.22053 ], [ -0.053677, 43.21846 ], [ -0.061765, 43.22151 ], [ -0.065681, 43.223163 ], [ -0.073972, 43.22238 ], [ -0.072342, 43.21209 ], [ -0.067874, 43.17712 ], [ -0.072545, 43.17684 ], [ -0.091251, 43.177037 ], [ -0.101822, 43.16705 ], [ -0.111709, 43.17823 ], [ -0.116234, 43.17913 ], [ -0.125306, 43.167414 ], [ -0.126899, 43.164586 ], [ -0.126421, 43.158488 ], [ -0.134809, 43.151718 ], [ -0.139471, 43.14837 ], [ -0.138922, 43.14527 ], [ -0.146314, 43.12819 ], [ -0.15059, 43.12705 ], [ -0.166479, 43.121402 ], [ -0.176483, 43.110926 ], [ -0.193583, 43.11466 ], [ -0.191928, 43.1047 ], [ -0.197504, 43.0998 ], [ -0.18734, 43.088552 ], [ -0.199012, 43.065981 ], [ -0.196559, 43.059366 ], [ -0.181008, 43.052032 ], [ -0.185734, 43.05182 ], [ -0.223952, 43.03369 ], [ -0.227697, 43.03594 ], [ -0.241058, 43.039645 ], [ -0.26014, 43.03767 ], [ -0.256413, 43.02486 ], [ -0.261461, 43.01233 ], [ -0.264716, 43.01001 ], [ -0.268857, 43.00819 ], [ -0.287669, 43.005556 ], [ -0.292254, 42.99215 ], [ -0.289622, 42.96112 ], [ -0.283829, 42.95578 ], [ -0.27927, 42.942346 ], [ -0.279243, 42.939053 ], [ -0.284941, 42.930202 ], [ -0.297785, 42.93098 ], [ -0.313024, 42.918566 ], [ -0.322251, 42.917389 ], [ -0.326875, 42.916868 ], [ -0.324323, 42.90333 ], [ -0.316002, 42.895045 ], [ -0.315883, 42.88482 ], [ -0.307294, 42.86898 ], [ -0.311468, 42.852487 ], [ -0.313443, 42.849375 ] ], [ [ -0.10728, 43.370741 ], [ -0.106752, 43.3676 ], [ -0.10333, 43.35858 ], [ -0.094255, 43.35779 ], [ -0.09023, 43.35935 ], [ -0.086853, 43.3371 ], [ -0.087271, 43.33384 ], [ -0.091731, 43.33354 ], [ -0.108476, 43.337801 ], [ -0.114802, 43.322035 ], [ -0.109926, 43.312803 ], [ -0.09645, 43.313028 ], [ -0.080269, 43.307612 ], [ -0.075832, 43.30694 ], [ -0.075042, 43.30714 ], [ -0.070119, 43.31585 ], [ -0.069483, 43.31919 ], [ -0.068281, 43.32232 ], [ -0.067389, 43.32873 ], [ -0.064339, 43.337926 ], [ -0.06517, 43.341027 ], [ -0.063935, 43.34402 ], [ -0.062575, 43.34698 ], [ -0.063012, 43.35008 ], [ -0.077803, 43.36507 ], [ -0.078793, 43.365137 ], [ -0.082359, 43.366755 ], [ -0.085342, 43.371522 ], [ -0.093096, 43.373885 ], [ -0.09693, 43.374036 ], [ -0.10728, 43.370741 ] ], [ [ -0.137352, 43.28575 ], [ -0.137243, 43.281477 ], [ -0.138442, 43.278156 ], [ -0.140603, 43.27167 ], [ -0.125298, 43.249783 ], [ -0.1241, 43.24632 ], [ -0.11839, 43.241377 ], [ -0.109441, 43.242571 ], [ -0.104915, 43.242917 ], [ -0.103075, 43.24282 ], [ -0.104273, 43.245844 ], [ -0.094273, 43.25526 ], [ -0.086347, 43.256053 ], [ -0.079746, 43.26483 ], [ -0.079662, 43.271566 ], [ -0.084744, 43.277209 ], [ -0.095498, 43.287731 ], [ -0.090984, 43.297763 ], [ -0.089287, 43.301062 ], [ -0.09391, 43.30131 ], [ -0.113765, 43.30902 ], [ -0.122218, 43.30143 ], [ -0.125899, 43.299298 ], [ -0.129744, 43.28974 ], [ -0.137352, 43.28575 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "66", "CODE_DEPT": "65", "NOM_DEPT": "HAUTES-PYRENEES", "CODE_CHF": "440", "NOM_CHF": "TARBES", "X_CHF_LIEU": "4622", "Y_CHF_LIEU": "62414", "X_CENTROID": "4689", "Y_CENTROID": "62209", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.47775, 42.69999 ], [ 0.473064, 42.700042 ], [ 0.462497, 42.693738 ], [ 0.425725, 42.690808 ], [ 0.39593, 42.69962 ], [ 0.39263, 42.713118 ], [ 0.387936, 42.712508 ], [ 0.37417, 42.715077 ], [ 0.3601, 42.724303 ], [ 0.358876, 42.720881 ], [ 0.344952, 42.71132 ], [ 0.32771, 42.705318 ], [ 0.320685, 42.68515 ], [ 0.295536, 42.675038 ], [ 0.265931, 42.692503 ], [ 0.266898, 42.70282 ], [ 0.259883, 42.71582 ], [ 0.223739, 42.718496 ], [ 0.209351, 42.72696 ], [ 0.205992, 42.7293 ], [ 0.175303, 42.73579 ], [ 0.159244, 42.723732 ], [ 0.136567, 42.72233 ], [ 0.132698, 42.715898 ], [ 0.115185, 42.710821 ], [ 0.105713, 42.71066 ], [ 0.088644, 42.716788 ], [ 0.079512, 42.714712 ], [ 0.069003, 42.70338 ], [ 0.05673, 42.6981 ], [ 0.047504, 42.696262 ], [ 0.029445, 42.700936 ], [ 0.024933, 42.7021 ], [ 0.01558, 42.70084 ], [ 0.013543, 42.693952 ], [ 0.00264, 42.68705 ], [ -0.011239, 42.684692 ], [ -0.015979, 42.68532 ], [ -0.057542, 42.693456 ], [ -0.063505, 42.698765 ], [ -0.068457, 42.71586 ], [ -0.105645, 42.722178 ], [ -0.123126, 42.750473 ], [ -0.140701, 42.7673 ], [ -0.149168, 42.770515 ], [ -0.147566, 42.773856 ], [ -0.154798, 42.782435 ], [ -0.15861, 42.795695 ], [ -0.173664, 42.788078 ], [ -0.182863, 42.786725 ], [ -0.198251, 42.794816 ], [ -0.212047, 42.797023 ], [ -0.236449, 42.807745 ], [ -0.237807, 42.814354 ], [ -0.238794, 42.817798 ], [ -0.243358, 42.82314 ], [ -0.246646, 42.82071 ], [ -0.255807, 42.820136 ], [ -0.274993, 42.829757 ], [ -0.278465, 42.835807 ], [ -0.305081, 42.84129 ], [ -0.313443, 42.849375 ], [ -0.311468, 42.852487 ], [ -0.307294, 42.86898 ], [ -0.315883, 42.88482 ], [ -0.316002, 42.895045 ], [ -0.324323, 42.90333 ], [ -0.326875, 42.916868 ], [ -0.322251, 42.917389 ], [ -0.313024, 42.918566 ], [ -0.297785, 42.93098 ], [ -0.284941, 42.930202 ], [ -0.279243, 42.939053 ], [ -0.27927, 42.942346 ], [ -0.283829, 42.95578 ], [ -0.289622, 42.96112 ], [ -0.292254, 42.99215 ], [ -0.287669, 43.005556 ], [ -0.268857, 43.00819 ], [ -0.264716, 43.01001 ], [ -0.261461, 43.01233 ], [ -0.256413, 43.02486 ], [ -0.26014, 43.03767 ], [ -0.241058, 43.039645 ], [ -0.227697, 43.03594 ], [ -0.223952, 43.03369 ], [ -0.185734, 43.05182 ], [ -0.181008, 43.052032 ], [ -0.196559, 43.059366 ], [ -0.199012, 43.065981 ], [ -0.18734, 43.088552 ], [ -0.197504, 43.0998 ], [ -0.191928, 43.1047 ], [ -0.193583, 43.11466 ], [ -0.176483, 43.110926 ], [ -0.166479, 43.121402 ], [ -0.15059, 43.12705 ], [ -0.146314, 43.12819 ], [ -0.138922, 43.14527 ], [ -0.139471, 43.14837 ], [ -0.134809, 43.151718 ], [ -0.126421, 43.158488 ], [ -0.126899, 43.164586 ], [ -0.125306, 43.167414 ], [ -0.116234, 43.17913 ], [ -0.111709, 43.17823 ], [ -0.101822, 43.16705 ], [ -0.091251, 43.177037 ], [ -0.072545, 43.17684 ], [ -0.067874, 43.17712 ], [ -0.072342, 43.21209 ], [ -0.073972, 43.22238 ], [ -0.065681, 43.223163 ], [ -0.061765, 43.22151 ], [ -0.053677, 43.21846 ], [ -0.048038, 43.22053 ], [ -0.046754, 43.223726 ], [ -0.044814, 43.23384 ], [ -0.025297, 43.253289 ], [ -0.025019, 43.26019 ], [ -0.018439, 43.269315 ], [ -0.018534, 43.272787 ], [ -0.025978, 43.277071 ], [ -0.023975, 43.28021 ], [ -0.028313, 43.280714 ], [ -0.040786, 43.283578 ], [ -0.04401, 43.289338 ], [ -0.044586, 43.302799 ], [ -0.037224, 43.306958 ], [ -0.034256, 43.30958 ], [ -0.031664, 43.31258 ], [ -0.027991, 43.32267 ], [ -0.026224, 43.3273 ], [ -0.025371, 43.329616 ], [ -0.003208, 43.331449 ], [ 0.008515, 43.326076 ], [ 0.012768, 43.327535 ], [ 0.020525, 43.336337 ], [ 0.024182, 43.33862 ], [ 0.025541, 43.340229 ], [ 0.02875, 43.346655 ], [ 0.005349, 43.36304 ], [ 0.00741, 43.365881 ], [ 0.004757, 43.371813 ], [ 0.000487, 43.37038 ], [ -0.004653, 43.375711 ], [ -0.00059, 43.381828 ], [ 0.001295, 43.38497 ], [ -0.001203, 43.38742 ], [ 0.002651, 43.392821 ], [ -0.004291, 43.39337 ], [ -0.00297, 43.395267 ], [ -0.000391, 43.39624 ], [ -0.003807, 43.39805 ], [ 0.007811, 43.4192 ], [ 0.009655, 43.422202 ], [ -0.001211, 43.42925 ], [ -0.004794, 43.43162 ], [ -0.003263, 43.434943 ], [ -0.002483, 43.445085 ], [ -0.007073, 43.44401 ], [ -0.016534, 43.443947 ], [ -0.022528, 43.432688 ], [ -0.02481, 43.43004 ], [ -0.028231, 43.43189 ], [ -0.034239, 43.4308 ], [ -0.038142, 43.418863 ], [ -0.042459, 43.413376 ], [ -0.042983, 43.41021 ], [ -0.067273, 43.410416 ], [ -0.053331, 43.42252 ], [ -0.069629, 43.434208 ], [ -0.066819, 43.443831 ], [ -0.064851, 43.44702 ], [ -0.061978, 43.45362 ], [ -0.065754, 43.463489 ], [ -0.061553, 43.462582 ], [ -0.032107, 43.466039 ], [ -0.019443, 43.466869 ], [ -0.018906, 43.47006 ], [ -0.020185, 43.47253 ], [ -0.02639, 43.474851 ], [ -0.030784, 43.474017 ], [ -0.036451, 43.48885 ], [ -0.049195, 43.492011 ], [ -0.046746, 43.498293 ], [ -0.044886, 43.5038 ], [ -0.044093, 43.506588 ], [ -0.040132, 43.5126 ], [ -0.043649, 43.52014 ], [ -0.0437, 43.522986 ], [ -0.048168, 43.52719 ], [ -0.049232, 43.52975 ], [ -0.056176, 43.533034 ], [ -0.057929, 43.53622 ], [ -0.069606, 43.54674 ], [ -0.087008, 43.542552 ], [ -0.091411, 43.542481 ], [ -0.094943, 43.548071 ], [ -0.090087, 43.559969 ], [ -0.093557, 43.563706 ], [ -0.091968, 43.570063 ], [ -0.096783, 43.582406 ], [ -0.097245, 43.58591 ], [ -0.097509, 43.589427 ], [ -0.09313, 43.590695 ], [ -0.079109, 43.590517 ], [ -0.075589, 43.5928 ], [ -0.074213, 43.60618 ], [ -0.055966, 43.60653 ], [ -0.043995, 43.611191 ], [ -0.0383, 43.60614 ], [ -0.034107, 43.60747 ], [ -0.033826, 43.604731 ], [ -0.029866, 43.605067 ], [ -0.015009, 43.60552 ], [ -0.00871, 43.595291 ], [ -0.006586, 43.59283 ], [ -0.001666, 43.56532 ], [ 0.008294, 43.56073 ], [ 0.00946, 43.55783 ], [ 0.010764, 43.554897 ], [ 0.015782, 43.54339 ], [ 0.030055, 43.54457 ], [ 0.036462, 43.53938 ], [ 0.039857, 43.5369 ], [ 0.053621, 43.518767 ], [ 0.067742, 43.51941 ], [ 0.080576, 43.52395 ], [ 0.082, 43.51736 ], [ 0.091886, 43.510248 ], [ 0.108474, 43.51542 ], [ 0.112248, 43.51737 ], [ 0.125196, 43.50165 ], [ 0.127468, 43.499 ], [ 0.130128, 43.49304 ], [ 0.127279, 43.490655 ], [ 0.130044, 43.477395 ], [ 0.130741, 43.474065 ], [ 0.133654, 43.468209 ], [ 0.140635, 43.465044 ], [ 0.14453, 43.463761 ], [ 0.148229, 43.465191 ], [ 0.152138, 43.45988 ], [ 0.155302, 43.45788 ], [ 0.155394, 43.457025 ], [ 0.158148, 43.454315 ], [ 0.166064, 43.44238 ], [ 0.161807, 43.44151 ], [ 0.137459, 43.433992 ], [ 0.138111, 43.43305 ], [ 0.134549, 43.42249 ], [ 0.148276, 43.408683 ], [ 0.148339, 43.40516 ], [ 0.157076, 43.39925 ], [ 0.169555, 43.40181 ], [ 0.173805, 43.40277 ], [ 0.179426, 43.38255 ], [ 0.180075, 43.379125 ], [ 0.176024, 43.380442 ], [ 0.176969, 43.37704 ], [ 0.182031, 43.37118 ], [ 0.198076, 43.37492 ], [ 0.203647, 43.37024 ], [ 0.206345, 43.36778 ], [ 0.214771, 43.36984 ], [ 0.231704, 43.367712 ], [ 0.240272, 43.3707 ], [ 0.244136, 43.37272 ], [ 0.266934, 43.38168 ], [ 0.271197, 43.38262 ], [ 0.293995, 43.38779 ], [ 0.298759, 43.38858 ], [ 0.300552, 43.374844 ], [ 0.300517, 43.37136 ], [ 0.311893, 43.36716 ], [ 0.322128, 43.372589 ], [ 0.325407, 43.37478 ], [ 0.33095, 43.34597 ], [ 0.33135, 43.342654 ], [ 0.339845, 43.34377 ], [ 0.346156, 43.34814 ], [ 0.363876, 43.34957 ], [ 0.375684, 43.35299 ], [ 0.378548, 43.35537 ], [ 0.387506, 43.355321 ], [ 0.394226, 43.351019 ], [ 0.398672, 43.35144 ], [ 0.393953, 43.340409 ], [ 0.393631, 43.33744 ], [ 0.395823, 43.334244 ], [ 0.418738, 43.32808 ], [ 0.438138, 43.328486 ], [ 0.442971, 43.327926 ], [ 0.443605, 43.337553 ], [ 0.445023, 43.340611 ], [ 0.457253, 43.337884 ], [ 0.461134, 43.336562 ], [ 0.469934, 43.33497 ], [ 0.472977, 43.332483 ], [ 0.476404, 43.33223 ], [ 0.479816, 43.33259 ], [ 0.49354, 43.32548 ], [ 0.497721, 43.325993 ], [ 0.510377, 43.33384 ], [ 0.514701, 43.333342 ], [ 0.533036, 43.32959 ], [ 0.537018, 43.32757 ], [ 0.539688, 43.32713 ], [ 0.543299, 43.328587 ], [ 0.547069, 43.329806 ], [ 0.566583, 43.320815 ], [ 0.571099, 43.319836 ], [ 0.579671, 43.3212 ], [ 0.595984, 43.315758 ], [ 0.599695, 43.31365 ], [ 0.603125, 43.3121 ], [ 0.606811, 43.31089 ], [ 0.611353, 43.30984 ], [ 0.632144, 43.301427 ], [ 0.635622, 43.295653 ], [ 0.618933, 43.290418 ], [ 0.615325, 43.280547 ], [ 0.6146, 43.27783 ], [ 0.596798, 43.273477 ], [ 0.580238, 43.261003 ], [ 0.576716, 43.258656 ], [ 0.576265, 43.25591 ], [ 0.576012, 43.25315 ], [ 0.566788, 43.2523 ], [ 0.554112, 43.23853 ], [ 0.550957, 43.236008 ], [ 0.55547, 43.236983 ], [ 0.568198, 43.232582 ], [ 0.572841, 43.23311 ], [ 0.573087, 43.21995 ], [ 0.57023, 43.21735 ], [ 0.555811, 43.210613 ], [ 0.551875, 43.209147 ], [ 0.544991, 43.21306 ], [ 0.533811, 43.20807 ], [ 0.521425, 43.21115 ], [ 0.517385, 43.212382 ], [ 0.515936, 43.20947 ], [ 0.505764, 43.19971 ], [ 0.520954, 43.193457 ], [ 0.499093, 43.17423 ], [ 0.462785, 43.15066 ], [ 0.458872, 43.148519 ], [ 0.456753, 43.14556 ], [ 0.44385, 43.13358 ], [ 0.441291, 43.13117 ], [ 0.442334, 43.13091 ], [ 0.45476, 43.12636 ], [ 0.463839, 43.118804 ], [ 0.456872, 43.11436 ], [ 0.452923, 43.11255 ], [ 0.464706, 43.111346 ], [ 0.485319, 43.114115 ], [ 0.48929, 43.115179 ], [ 0.491205, 43.10868 ], [ 0.500068, 43.107367 ], [ 0.50459, 43.095359 ], [ 0.522355, 43.09257 ], [ 0.529181, 43.093452 ], [ 0.532638, 43.09387 ], [ 0.532194, 43.08413 ], [ 0.563854, 43.07425 ], [ 0.561711, 43.072363 ], [ 0.55496, 43.064255 ], [ 0.558847, 43.062868 ], [ 0.563791, 43.04397 ], [ 0.565503, 43.040874 ], [ 0.566899, 43.03742 ], [ 0.562697, 43.036438 ], [ 0.548393, 43.043995 ], [ 0.536958, 43.039991 ], [ 0.53512, 43.037051 ], [ 0.534755, 43.017112 ], [ 0.53018, 43.01137 ], [ 0.52695, 43.008925 ], [ 0.538173, 43.001606 ], [ 0.542023, 43.001019 ], [ 0.545867, 43.003735 ], [ 0.548181, 43.006712 ], [ 0.561334, 43.016089 ], [ 0.564055, 43.018733 ], [ 0.572103, 43.021282 ], [ 0.585178, 43.020028 ], [ 0.585777, 43.023317 ], [ 0.58878, 43.02277 ], [ 0.591825, 43.022373 ], [ 0.592642, 43.026035 ], [ 0.59411, 43.032322 ], [ 0.59322, 43.035451 ], [ 0.608047, 43.034009 ], [ 0.613138, 43.024476 ], [ 0.615651, 43.02153 ], [ 0.616481, 43.020421 ], [ 0.614458, 43.014167 ], [ 0.615713, 43.01108 ], [ 0.622358, 43.004526 ], [ 0.625023, 43.002317 ], [ 0.625565, 42.99418 ], [ 0.625588, 42.991209 ], [ 0.615095, 42.98915 ], [ 0.611442, 42.98829 ], [ 0.615981, 42.98432 ], [ 0.613894, 42.982025 ], [ 0.615624, 42.978698 ], [ 0.620121, 42.97244 ], [ 0.624127, 42.971841 ], [ 0.635542, 42.968935 ], [ 0.636348, 42.96841 ], [ 0.643533, 42.963748 ], [ 0.645959, 42.96134 ], [ 0.641991, 42.952873 ], [ 0.637432, 42.95262 ], [ 0.626629, 42.94185 ], [ 0.618067, 42.93951 ], [ 0.615362, 42.93681 ], [ 0.609142, 42.934719 ], [ 0.605645, 42.934 ], [ 0.604428, 42.931735 ], [ 0.600187, 42.928015 ], [ 0.597177, 42.92147 ], [ 0.597588, 42.918033 ], [ 0.595495, 42.910069 ], [ 0.59229, 42.90854 ], [ 0.586278, 42.89742 ], [ 0.58566, 42.894347 ], [ 0.580972, 42.88586 ], [ 0.579564, 42.882954 ], [ 0.577041, 42.880091 ], [ 0.577659, 42.8767 ], [ 0.575935, 42.870826 ], [ 0.564129, 42.863325 ], [ 0.562341, 42.860757 ], [ 0.558081, 42.861146 ], [ 0.554041, 42.86009 ], [ 0.547136, 42.864612 ], [ 0.53418, 42.861256 ], [ 0.527716, 42.86485 ], [ 0.525546, 42.86755 ], [ 0.508611, 42.869167 ], [ 0.504028, 42.868782 ], [ 0.499291, 42.874555 ], [ 0.481956, 42.877965 ], [ 0.477357, 42.87824 ], [ 0.471878, 42.869208 ], [ 0.472642, 42.862613 ], [ 0.472676, 42.859303 ], [ 0.469379, 42.857516 ], [ 0.460239, 42.851749 ], [ 0.464761, 42.848158 ], [ 0.4675, 42.84675 ], [ 0.464129, 42.839956 ], [ 0.45921, 42.827199 ], [ 0.458793, 42.82387 ], [ 0.457889, 42.80793 ], [ 0.459851, 42.80498 ], [ 0.463434, 42.80239 ], [ 0.463138, 42.790136 ], [ 0.461998, 42.7894 ], [ 0.455983, 42.780574 ], [ 0.455185, 42.77092 ], [ 0.46214, 42.762638 ], [ 0.463462, 42.759484 ], [ 0.460252, 42.749387 ], [ 0.461558, 42.746044 ], [ 0.462125, 42.739203 ], [ 0.451297, 42.733134 ], [ 0.483742, 42.70892 ], [ 0.47775, 42.69999 ] ] ], [ [ [ -0.137352, 43.28575 ], [ -0.129744, 43.28974 ], [ -0.125899, 43.299298 ], [ -0.122218, 43.30143 ], [ -0.113765, 43.30902 ], [ -0.09391, 43.30131 ], [ -0.089287, 43.301062 ], [ -0.090984, 43.297763 ], [ -0.095498, 43.287731 ], [ -0.084744, 43.277209 ], [ -0.079662, 43.271566 ], [ -0.079746, 43.26483 ], [ -0.086347, 43.256053 ], [ -0.094273, 43.25526 ], [ -0.104273, 43.245844 ], [ -0.103075, 43.24282 ], [ -0.104915, 43.242917 ], [ -0.109441, 43.242571 ], [ -0.11839, 43.241377 ], [ -0.1241, 43.24632 ], [ -0.125298, 43.249783 ], [ -0.140603, 43.27167 ], [ -0.138442, 43.278156 ], [ -0.137243, 43.281477 ], [ -0.137352, 43.28575 ] ] ], [ [ [ -0.10728, 43.370741 ], [ -0.09693, 43.374036 ], [ -0.093096, 43.373885 ], [ -0.085342, 43.371522 ], [ -0.082359, 43.366755 ], [ -0.078793, 43.365137 ], [ -0.077803, 43.36507 ], [ -0.063012, 43.35008 ], [ -0.062575, 43.34698 ], [ -0.063935, 43.34402 ], [ -0.06517, 43.341027 ], [ -0.064339, 43.337926 ], [ -0.067389, 43.32873 ], [ -0.068281, 43.32232 ], [ -0.069483, 43.31919 ], [ -0.070119, 43.31585 ], [ -0.075042, 43.30714 ], [ -0.075832, 43.30694 ], [ -0.080269, 43.307612 ], [ -0.09645, 43.313028 ], [ -0.109926, 43.312803 ], [ -0.114802, 43.322035 ], [ -0.108476, 43.337801 ], [ -0.091731, 43.33354 ], [ -0.087271, 43.33384 ], [ -0.086853, 43.3371 ], [ -0.09023, 43.35935 ], [ -0.094255, 43.35779 ], [ -0.10333, 43.35858 ], [ -0.106752, 43.3676 ], [ -0.10728, 43.370741 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "67", "CODE_DEPT": "66", "NOM_DEPT": "PYRENEES-ORIENTALES", "CODE_CHF": "136", "NOM_CHF": "PERPIGNAN", "X_CHF_LIEU": "6913", "Y_CHF_LIEU": "61775", "X_CENTROID": "6607", "Y_CENTROID": "61668", "CODE_REG": "91", "NOM_REGION": "LANGUEDOC-ROUSSILLON" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.17407, 42.435191 ], [ 3.123712, 42.43531 ], [ 3.12083, 42.438006 ], [ 3.11693, 42.43603 ], [ 3.108092, 42.433588 ], [ 3.099123, 42.425543 ], [ 3.081231, 42.42821 ], [ 3.047755, 42.45708 ], [ 3.040447, 42.47369 ], [ 3.035906, 42.473745 ], [ 3.011546, 42.46709 ], [ 3.000923, 42.47299 ], [ 2.996212, 42.47332 ], [ 2.986753, 42.473067 ], [ 2.975863, 42.4671 ], [ 2.966575, 42.46701 ], [ 2.947088, 42.481801 ], [ 2.943981, 42.47944 ], [ 2.932851, 42.474368 ], [ 2.930098, 42.47156 ], [ 2.919348, 42.456848 ], [ 2.888228, 42.46086 ], [ 2.883811, 42.460105 ], [ 2.869106, 42.466902 ], [ 2.861352, 42.455198 ], [ 2.848554, 42.456583 ], [ 2.844459, 42.458015 ], [ 2.839868, 42.458988 ], [ 2.830469, 42.443207 ], [ 2.814056, 42.437238 ], [ 2.798364, 42.419906 ], [ 2.794124, 42.41828 ], [ 2.772117, 42.41229 ], [ 2.760617, 42.418435 ], [ 2.756587, 42.424844 ], [ 2.751866, 42.42537 ], [ 2.747692, 42.425299 ], [ 2.727371, 42.42262 ], [ 2.723961, 42.422724 ], [ 2.719585, 42.422 ], [ 2.691401, 42.40621 ], [ 2.673944, 42.4047 ], [ 2.670543, 42.38838 ], [ 2.652876, 42.38444 ], [ 2.65632, 42.382295 ], [ 2.659111, 42.379688 ], [ 2.662355, 42.36592 ], [ 2.675295, 42.355741 ], [ 2.675439, 42.345117 ], [ 2.672644, 42.342224 ], [ 2.66331, 42.341 ], [ 2.616356, 42.345972 ], [ 2.589681, 42.353881 ], [ 2.587526, 42.35706 ], [ 2.56187, 42.357114 ], [ 2.555202, 42.35268 ], [ 2.551632, 42.342645 ], [ 2.542191, 42.335199 ], [ 2.537951, 42.333698 ], [ 2.533265, 42.33349 ], [ 2.498432, 42.34262 ], [ 2.484885, 42.34008 ], [ 2.477796, 42.34441 ], [ 2.4763, 42.347712 ], [ 2.472717, 42.35003 ], [ 2.466899, 42.3595 ], [ 2.452936, 42.36883 ], [ 2.436367, 42.375093 ], [ 2.433343, 42.391957 ], [ 2.410338, 42.39216 ], [ 2.384097, 42.400223 ], [ 2.356268, 42.40428 ], [ 2.348138, 42.407901 ], [ 2.344862, 42.414443 ], [ 2.326867, 42.41705 ], [ 2.318743, 42.425012 ], [ 2.310598, 42.428447 ], [ 2.293944, 42.422981 ], [ 2.257083, 42.438488 ], [ 2.244429, 42.42881 ], [ 2.226329, 42.425783 ], [ 2.20135, 42.416664 ], [ 2.156949, 42.423378 ], [ 2.137359, 42.415662 ], [ 2.133169, 42.414342 ], [ 2.126581, 42.41036 ], [ 2.118632, 42.39609 ], [ 2.114897, 42.394506 ], [ 2.11366, 42.381696 ], [ 2.093464, 42.375234 ], [ 2.089548, 42.373717 ], [ 2.085933, 42.363745 ], [ 2.076724, 42.36438 ], [ 2.059883, 42.358628 ], [ 2.023496, 42.355227 ], [ 2.012785, 42.349402 ], [ 1.989063, 42.36103 ], [ 1.969772, 42.376653 ], [ 1.960959, 42.392999 ], [ 1.956481, 42.416992 ], [ 1.958286, 42.423959 ], [ 1.945314, 42.428083 ], [ 1.941143, 42.43396 ], [ 1.942895, 42.444429 ], [ 1.937441, 42.452645 ], [ 1.933845, 42.454165 ], [ 1.9183, 42.44665 ], [ 1.904571, 42.44861 ], [ 1.900273, 42.449976 ], [ 1.887127, 42.44994 ], [ 1.877658, 42.46134 ], [ 1.864965, 42.465383 ], [ 1.856231, 42.46373 ], [ 1.844678, 42.47386 ], [ 1.843362, 42.47715 ], [ 1.831512, 42.48309 ], [ 1.813199, 42.48473 ], [ 1.805248, 42.488653 ], [ 1.767644, 42.486751 ], [ 1.746603, 42.49482 ], [ 1.73246, 42.493244 ], [ 1.726603, 42.50279 ], [ 1.724011, 42.520249 ], [ 1.733407, 42.532507 ], [ 1.740135, 42.556467 ], [ 1.750786, 42.56342 ], [ 1.764873, 42.565027 ], [ 1.769603, 42.564506 ], [ 1.782868, 42.57173 ], [ 1.786125, 42.573623 ], [ 1.799703, 42.57232 ], [ 1.820712, 42.579504 ], [ 1.824728, 42.58124 ], [ 1.838155, 42.583957 ], [ 1.865377, 42.579925 ], [ 1.874485, 42.581415 ], [ 1.873502, 42.588202 ], [ 1.890215, 42.592989 ], [ 1.89352, 42.606051 ], [ 1.898745, 42.61167 ], [ 1.900303, 42.614906 ], [ 1.910766, 42.608063 ], [ 1.924961, 42.608539 ], [ 1.933621, 42.605578 ], [ 1.942099, 42.608521 ], [ 1.950468, 42.616947 ], [ 1.97328, 42.61838 ], [ 1.976361, 42.62107 ], [ 1.976116, 42.62744 ], [ 1.987816, 42.6443 ], [ 1.990771, 42.64664 ], [ 1.997956, 42.660903 ], [ 2.002095, 42.661076 ], [ 2.015214, 42.65539 ], [ 2.018423, 42.65366 ], [ 2.022788, 42.653364 ], [ 2.04327, 42.657496 ], [ 2.047019, 42.66359 ], [ 2.061034, 42.66184 ], [ 2.073887, 42.665624 ], [ 2.10655, 42.664841 ], [ 2.127885, 42.672039 ], [ 2.143126, 42.663854 ], [ 2.152302, 42.662075 ], [ 2.161322, 42.664241 ], [ 2.166054, 42.66392 ], [ 2.173177, 42.65562 ], [ 2.176088, 42.65301 ], [ 2.176143, 42.652596 ], [ 2.176219, 42.648901 ], [ 2.188063, 42.65205 ], [ 2.192366, 42.651766 ], [ 2.191276, 42.656631 ], [ 2.192168, 42.659057 ], [ 2.218667, 42.672426 ], [ 2.240947, 42.67753 ], [ 2.256682, 42.698268 ], [ 2.264471, 42.702116 ], [ 2.264713, 42.709032 ], [ 2.275384, 42.702928 ], [ 2.28859, 42.70067 ], [ 2.318547, 42.706457 ], [ 2.32249, 42.70811 ], [ 2.342891, 42.722902 ], [ 2.355346, 42.72805 ], [ 2.357134, 42.738418 ], [ 2.353569, 42.748566 ], [ 2.352471, 42.749692 ], [ 2.351796, 42.75222 ], [ 2.350519, 42.7573 ], [ 2.352611, 42.76015 ], [ 2.349394, 42.76951 ], [ 2.343325, 42.774112 ], [ 2.344229, 42.780565 ], [ 2.343923, 42.801227 ], [ 2.339328, 42.801531 ], [ 2.33228, 42.80487 ], [ 2.33204, 42.81834 ], [ 2.322405, 42.825453 ], [ 2.32504, 42.8352 ], [ 2.336096, 42.840709 ], [ 2.36647, 42.84556 ], [ 2.370849, 42.84635 ], [ 2.382167, 42.848466 ], [ 2.397686, 42.845128 ], [ 2.401353, 42.843872 ], [ 2.452145, 42.83694 ], [ 2.45682, 42.83748 ], [ 2.459478, 42.83808 ], [ 2.462198, 42.83856 ], [ 2.496644, 42.84839 ], [ 2.500452, 42.85043 ], [ 2.512073, 42.8477 ], [ 2.515232, 42.84545 ], [ 2.518539, 42.84314 ], [ 2.554148, 42.84627 ], [ 2.558602, 42.845506 ], [ 2.567708, 42.843691 ], [ 2.572403, 42.84337 ], [ 2.603246, 42.83613 ], [ 2.635284, 42.83795 ], [ 2.639901, 42.83826 ], [ 2.664347, 42.836753 ], [ 2.665142, 42.83666 ], [ 2.682011, 42.83072 ], [ 2.72743, 42.8344 ], [ 2.740524, 42.83789 ], [ 2.751927, 42.848735 ], [ 2.754346, 42.851708 ], [ 2.755066, 42.85486 ], [ 2.761908, 42.873325 ], [ 2.787164, 42.89441 ], [ 2.8054, 42.89788 ], [ 2.810132, 42.89842 ], [ 2.83792, 42.912314 ], [ 2.865274, 42.918341 ], [ 2.880505, 42.901363 ], [ 2.902421, 42.89638 ], [ 2.906997, 42.895679 ], [ 2.91436, 42.887448 ], [ 2.917115, 42.88486 ], [ 2.98478, 42.8665 ], [ 2.988876, 42.864578 ], [ 3.012405, 42.853193 ], [ 3.03948, 42.84012 ], [ 3.043511, 42.83815 ], [ 3.038732, 42.78179 ], [ 3.039267, 42.778275 ], [ 3.038904, 42.746858 ], [ 3.038853, 42.743352 ], [ 3.039842, 42.72662 ], [ 3.040279, 42.72327 ], [ 3.035475, 42.644227 ], [ 3.035728, 42.640766 ], [ 3.04235, 42.60352 ], [ 3.043114, 42.600082 ], [ 3.044268, 42.596872 ], [ 3.045056, 42.593725 ], [ 3.049268, 42.552154 ], [ 3.055299, 42.539422 ], [ 3.05825, 42.536732 ], [ 3.072081, 42.535187 ], [ 3.07637, 42.533754 ], [ 3.094697, 42.52455 ], [ 3.099107, 42.523613 ], [ 3.107907, 42.52454 ], [ 3.133595, 42.51727 ], [ 3.135447, 42.514161 ], [ 3.12679, 42.50609 ], [ 3.126782, 42.502549 ], [ 3.133977, 42.498369 ], [ 3.132924, 42.494981 ], [ 3.129255, 42.489188 ], [ 3.131913, 42.4827 ], [ 3.153637, 42.477488 ], [ 3.160651, 42.462268 ], [ 3.15727, 42.459972 ], [ 3.164907, 42.456194 ], [ 3.164961, 42.449497 ], [ 3.17533, 42.438478 ], [ 3.17407, 42.435191 ] ], [ [ 1.980578, 42.49478 ], [ 1.977965, 42.48859 ], [ 1.962663, 42.476833 ], [ 1.960056, 42.470452 ], [ 1.959803, 42.453261 ], [ 1.976787, 42.44903 ], [ 1.980854, 42.44761 ], [ 2.004724, 42.447236 ], [ 2.009407, 42.448115 ], [ 2.012837, 42.452696 ], [ 2.006447, 42.456583 ], [ 2.002789, 42.45822 ], [ 1.991899, 42.463836 ], [ 1.98661, 42.472712 ], [ 1.993973, 42.48447 ], [ 1.998385, 42.484978 ], [ 1.995604, 42.4878 ], [ 1.989823, 42.493339 ], [ 1.980578, 42.49478 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "68", "CODE_DEPT": "67", "NOM_DEPT": "BAS-RHIN", "CODE_CHF": "482", "NOM_CHF": "STRASBOURG", "X_CHF_LIEU": "10499", "Y_CHF_LIEU": "68420", "X_CENTROID": "10349", "Y_CENTROID": "68508", "CODE_REG": "42", "NOM_REGION": "ALSACE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.577859, 48.12139 ], [ 7.572792, 48.12133 ], [ 7.537615, 48.123653 ], [ 7.518595, 48.127764 ], [ 7.517421, 48.13057 ], [ 7.515351, 48.13313 ], [ 7.520334, 48.1495 ], [ 7.474998, 48.15948 ], [ 7.47014, 48.160174 ], [ 7.470667, 48.163381 ], [ 7.472763, 48.182228 ], [ 7.475189, 48.185092 ], [ 7.473539, 48.197736 ], [ 7.476943, 48.20354 ], [ 7.472434, 48.20473 ], [ 7.450586, 48.21168 ], [ 7.444787, 48.21678 ], [ 7.435466, 48.21786 ], [ 7.4178, 48.22269 ], [ 7.414318, 48.224911 ], [ 7.409073, 48.22445 ], [ 7.398737, 48.2323 ], [ 7.351512, 48.24745 ], [ 7.325376, 48.24545 ], [ 7.312801, 48.255661 ], [ 7.314287, 48.26244 ], [ 7.322898, 48.26327 ], [ 7.328684, 48.26782 ], [ 7.33139, 48.2702 ], [ 7.333983, 48.272511 ], [ 7.308792, 48.26851 ], [ 7.29386, 48.27077 ], [ 7.299949, 48.28285 ], [ 7.290493, 48.29074 ], [ 7.290799, 48.293838 ], [ 7.286358, 48.295009 ], [ 7.28222, 48.2966 ], [ 7.280565, 48.29983 ], [ 7.274333, 48.30508 ], [ 7.259555, 48.3052 ], [ 7.254595, 48.306004 ], [ 7.245237, 48.30334 ], [ 7.218359, 48.31089 ], [ 7.203354, 48.30989 ], [ 7.198282, 48.310477 ], [ 7.196704, 48.313722 ], [ 7.190289, 48.32289 ], [ 7.180957, 48.32548 ], [ 7.179213, 48.32869 ], [ 7.183497, 48.33839 ], [ 7.169537, 48.342307 ], [ 7.166545, 48.33934 ], [ 7.147917, 48.33327 ], [ 7.144831, 48.332165 ], [ 7.141319, 48.33202 ], [ 7.136446, 48.33241 ], [ 7.117124, 48.334133 ], [ 7.105971, 48.34411 ], [ 7.101462, 48.34503 ], [ 7.075964, 48.352585 ], [ 7.079827, 48.35481 ], [ 7.085662, 48.36014 ], [ 7.088402, 48.36305 ], [ 7.100822, 48.37374 ], [ 7.106642, 48.376065 ], [ 7.108321, 48.37902 ], [ 7.103692, 48.38799 ], [ 7.092947, 48.394169 ], [ 7.088645, 48.39572 ], [ 7.084985, 48.39788 ], [ 7.087244, 48.401015 ], [ 7.095804, 48.404953 ], [ 7.09342, 48.41118 ], [ 7.097112, 48.423457 ], [ 7.095687, 48.426533 ], [ 7.105324, 48.43709 ], [ 7.109384, 48.438797 ], [ 7.108093, 48.44029 ], [ 7.106218, 48.44402 ], [ 7.104289, 48.45416 ], [ 7.116817, 48.47333 ], [ 7.118811, 48.483719 ], [ 7.114032, 48.485326 ], [ 7.093663, 48.48928 ], [ 7.093726, 48.492352 ], [ 7.091003, 48.500878 ], [ 7.094251, 48.5062 ], [ 7.096288, 48.50312 ], [ 7.125615, 48.49959 ], [ 7.123165, 48.51359 ], [ 7.103796, 48.517641 ], [ 7.083459, 48.51558 ], [ 7.08063, 48.51267 ], [ 7.077105, 48.51634 ], [ 7.068664, 48.52252 ], [ 7.065385, 48.5243 ], [ 7.07538, 48.53477 ], [ 7.07936, 48.53642 ], [ 7.091701, 48.5298 ], [ 7.115674, 48.5368 ], [ 7.137943, 48.52835 ], [ 7.1527, 48.530426 ], [ 7.162675, 48.52811 ], [ 7.16791, 48.5276 ], [ 7.168499, 48.528693 ], [ 7.170802, 48.531386 ], [ 7.187101, 48.537272 ], [ 7.189533, 48.540042 ], [ 7.193254, 48.54924 ], [ 7.201361, 48.552704 ], [ 7.206436, 48.55254 ], [ 7.220273, 48.554683 ], [ 7.221387, 48.558066 ], [ 7.241234, 48.57374 ], [ 7.253572, 48.58624 ], [ 7.256282, 48.58868 ], [ 7.260833, 48.590044 ], [ 7.265139, 48.59172 ], [ 7.261855, 48.594421 ], [ 7.256898, 48.599923 ], [ 7.276136, 48.62426 ], [ 7.272375, 48.633446 ], [ 7.290602, 48.64556 ], [ 7.304356, 48.66021 ], [ 7.271164, 48.66238 ], [ 7.266276, 48.662301 ], [ 7.261696, 48.6715 ], [ 7.257236, 48.67285 ], [ 7.245176, 48.689637 ], [ 7.242262, 48.69211 ], [ 7.262073, 48.697798 ], [ 7.264726, 48.70046 ], [ 7.268353, 48.714201 ], [ 7.286137, 48.73152 ], [ 7.292018, 48.75221 ], [ 7.311008, 48.764081 ], [ 7.31334, 48.76724 ], [ 7.308377, 48.767536 ], [ 7.290695, 48.786296 ], [ 7.290899, 48.79391 ], [ 7.27423, 48.80044 ], [ 7.270146, 48.802506 ], [ 7.26406, 48.799121 ], [ 7.260851, 48.79755 ], [ 7.257857, 48.80412 ], [ 7.249213, 48.80781 ], [ 7.245235, 48.81003 ], [ 7.25826, 48.81757 ], [ 7.262461, 48.81857 ], [ 7.260133, 48.82029 ], [ 7.258105, 48.822174 ], [ 7.254469, 48.81991 ], [ 7.245313, 48.81734 ], [ 7.227, 48.82848 ], [ 7.217749, 48.828109 ], [ 7.219991, 48.819087 ], [ 7.216079, 48.8208 ], [ 7.211982, 48.82613 ], [ 7.203428, 48.82696 ], [ 7.198574, 48.82782 ], [ 7.187199, 48.83428 ], [ 7.194087, 48.83902 ], [ 7.184904, 48.850374 ], [ 7.180837, 48.84901 ], [ 7.173508, 48.842019 ], [ 7.148854, 48.8446 ], [ 7.142117, 48.83555 ], [ 7.147387, 48.82224 ], [ 7.143224, 48.820135 ], [ 7.139809, 48.817497 ], [ 7.129735, 48.81565 ], [ 7.121704, 48.807055 ], [ 7.126562, 48.80107 ], [ 7.12201, 48.79971 ], [ 7.11715, 48.79894 ], [ 7.108504, 48.797865 ], [ 7.104562, 48.79645 ], [ 7.099603, 48.795613 ], [ 7.085536, 48.79162 ], [ 7.079244, 48.78629 ], [ 7.07513, 48.78805 ], [ 7.066783, 48.79933 ], [ 7.070561, 48.80128 ], [ 7.087958, 48.80617 ], [ 7.08504, 48.811908 ], [ 7.080902, 48.81356 ], [ 7.052435, 48.81484 ], [ 7.049769, 48.81773 ], [ 7.047117, 48.82064 ], [ 7.049695, 48.82345 ], [ 7.054315, 48.83602 ], [ 7.052897, 48.83867 ], [ 7.052063, 48.84688 ], [ 7.057126, 48.84741 ], [ 7.0817, 48.84759 ], [ 7.085183, 48.84747 ], [ 7.08838, 48.848392 ], [ 7.092468, 48.84988 ], [ 7.098772, 48.85421 ], [ 7.094146, 48.86288 ], [ 7.089153, 48.86309 ], [ 7.079252, 48.863896 ], [ 7.050544, 48.85893 ], [ 7.051672, 48.863771 ], [ 7.05501, 48.86492 ], [ 7.02655, 48.879711 ], [ 6.987974, 48.891368 ], [ 6.982702, 48.891543 ], [ 6.972319, 48.890754 ], [ 6.957465, 48.89421 ], [ 6.963487, 48.90728 ], [ 6.955073, 48.920039 ], [ 6.941442, 48.92459 ], [ 6.944402, 48.9348 ], [ 6.946783, 48.93466 ], [ 6.948243, 48.931394 ], [ 6.960851, 48.92557 ], [ 6.965828, 48.92652 ], [ 6.977854, 48.932782 ], [ 6.981781, 48.94194 ], [ 6.986381, 48.946859 ], [ 6.986481, 48.949764 ], [ 6.987805, 48.95276 ], [ 6.988544, 48.95883 ], [ 6.992743, 48.96027 ], [ 7.018077, 48.95776 ], [ 7.021751, 48.956995 ], [ 7.025378, 48.95615 ], [ 7.0288, 48.956038 ], [ 7.032219, 48.956049 ], [ 7.027888, 48.96948 ], [ 7.038662, 48.97666 ], [ 7.033682, 48.98985 ], [ 7.046848, 48.99991 ], [ 7.052581, 49.00849 ], [ 7.054464, 49.01139 ], [ 7.047917, 49.01591 ], [ 7.054913, 49.03063 ], [ 7.057835, 49.033158 ], [ 7.07866, 49.050361 ], [ 7.073994, 49.054787 ], [ 7.072338, 49.057247 ], [ 7.0686, 49.06339 ], [ 7.071032, 49.06975 ], [ 7.074754, 49.07213 ], [ 7.089116, 49.07039 ], [ 7.099342, 49.07789 ], [ 7.117294, 49.06681 ], [ 7.113838, 49.06471 ], [ 7.101874, 49.06121 ], [ 7.106797, 49.04864 ], [ 7.106358, 49.04535 ], [ 7.116612, 49.03976 ], [ 7.119477, 49.03722 ], [ 7.116375, 49.031083 ], [ 7.122979, 49.02648 ], [ 7.122364, 49.02322 ], [ 7.130174, 49.00541 ], [ 7.160682, 49.00524 ], [ 7.161607, 49.00193 ], [ 7.169316, 49.005042 ], [ 7.17359, 49.00611 ], [ 7.183774, 48.99644 ], [ 7.186213, 48.99376 ], [ 7.195847, 48.99377 ], [ 7.206959, 48.98296 ], [ 7.209311, 48.980088 ], [ 7.214241, 48.98116 ], [ 7.238142, 48.9877 ], [ 7.293927, 48.97262 ], [ 7.290433, 48.967089 ], [ 7.290203, 48.956516 ], [ 7.305475, 48.956643 ], [ 7.30646, 48.953357 ], [ 7.322678, 48.945298 ], [ 7.326853, 48.94338 ], [ 7.333561, 48.948246 ], [ 7.343367, 48.94843 ], [ 7.350815, 48.95279 ], [ 7.355124, 48.954443 ], [ 7.363903, 48.95525 ], [ 7.368109, 48.95355 ], [ 7.375698, 48.95142 ], [ 7.379918, 48.951197 ], [ 7.392312, 48.95272 ], [ 7.404511, 48.9582 ], [ 7.447472, 48.966046 ], [ 7.451631, 48.96797 ], [ 7.45365, 48.964879 ], [ 7.477995, 48.961495 ], [ 7.487019, 48.950061 ], [ 7.508411, 48.94364 ], [ 7.513191, 48.94325 ], [ 7.527765, 48.94197 ], [ 7.536256, 48.933506 ], [ 7.556685, 48.936198 ], [ 7.553536, 48.94239 ], [ 7.579926, 48.96161 ], [ 7.583559, 48.96604 ], [ 7.582392, 48.97266 ], [ 7.589173, 48.98205 ], [ 7.592336, 48.98485 ], [ 7.591159, 48.988098 ], [ 7.588722, 48.99103 ], [ 7.608195, 49.010413 ], [ 7.606889, 49.019911 ], [ 7.61065, 49.02201 ], [ 7.617915, 49.030386 ], [ 7.626239, 49.033722 ], [ 7.628348, 49.03678 ], [ 7.639294, 49.048116 ], [ 7.635286, 49.05417 ], [ 7.671084, 49.04597 ], [ 7.691726, 49.04922 ], [ 7.697077, 49.04975 ], [ 7.695848, 49.056301 ], [ 7.720646, 49.05273 ], [ 7.730602, 49.05446 ], [ 7.73223, 49.04436 ], [ 7.737335, 49.04474 ], [ 7.766454, 49.046681 ], [ 7.778385, 49.057637 ], [ 7.788754, 49.058593 ], [ 7.799934, 49.06416 ], [ 7.832946, 49.047714 ], [ 7.847331, 49.0437 ], [ 7.852164, 49.03809 ], [ 7.85549, 49.035417 ], [ 7.85963, 49.03529 ], [ 7.867408, 49.03349 ], [ 7.870725, 49.036276 ], [ 7.890091, 49.04795 ], [ 7.915271, 49.04191 ], [ 7.920273, 49.043209 ], [ 7.93704, 49.05623 ], [ 7.965415, 49.040484 ], [ 7.976319, 49.0283 ], [ 7.997338, 49.02802 ], [ 8.020574, 49.01937 ], [ 8.051136, 49.012758 ], [ 8.068136, 48.99931 ], [ 8.086945, 48.99056 ], [ 8.091376, 48.98926 ], [ 8.128979, 48.98306 ], [ 8.132862, 48.98107 ], [ 8.147114, 48.977487 ], [ 8.162481, 48.97742 ], [ 8.193517, 48.97647 ], [ 8.202866, 48.96936 ], [ 8.221431, 48.97524 ], [ 8.230295, 48.9673 ], [ 8.201638, 48.95915 ], [ 8.18931, 48.94822 ], [ 8.187147, 48.94506 ], [ 8.184989, 48.94194 ], [ 8.168506, 48.924505 ], [ 8.165528, 48.92179 ], [ 8.141568, 48.89607 ], [ 8.123191, 48.86812 ], [ 8.121444, 48.864942 ], [ 8.108217, 48.835263 ], [ 8.107299, 48.828408 ], [ 8.106525, 48.825115 ], [ 8.087016, 48.80201 ], [ 8.083462, 48.799432 ], [ 8.062413, 48.78919 ], [ 8.041571, 48.79073 ], [ 8.031856, 48.78815 ], [ 8.017477, 48.76275 ], [ 7.982994, 48.761088 ], [ 7.978115, 48.76025 ], [ 7.96876, 48.75305 ], [ 7.967702, 48.72979 ], [ 7.966976, 48.72631 ], [ 7.924601, 48.69054 ], [ 7.921391, 48.68796 ], [ 7.896251, 48.66721 ], [ 7.893, 48.664595 ], [ 7.845044, 48.645532 ], [ 7.835923, 48.633674 ], [ 7.834842, 48.63022 ], [ 7.830464, 48.620063 ], [ 7.805009, 48.59319 ], [ 7.800177, 48.58317 ], [ 7.805468, 48.558838 ], [ 7.805162, 48.5135 ], [ 7.793974, 48.501669 ], [ 7.771475, 48.492437 ], [ 7.76841, 48.48989 ], [ 7.766162, 48.463973 ], [ 7.763982, 48.45384 ], [ 7.753419, 48.43461 ], [ 7.751579, 48.431347 ], [ 7.733547, 48.398685 ], [ 7.730966, 48.3822 ], [ 7.735052, 48.365845 ], [ 7.736099, 48.362594 ], [ 7.737219, 48.359422 ], [ 7.743503, 48.34033 ], [ 7.744637, 48.33687 ], [ 7.744002, 48.32639 ], [ 7.738099, 48.32058 ], [ 7.705078, 48.30964 ], [ 7.693937, 48.30212 ], [ 7.680779, 48.25732 ], [ 7.679569, 48.25418 ], [ 7.678301, 48.250851 ], [ 7.666151, 48.221101 ], [ 7.64185, 48.204 ], [ 7.637131, 48.19587 ], [ 7.635273, 48.192681 ], [ 7.613793, 48.169665 ], [ 7.5995, 48.155631 ], [ 7.598898, 48.13543 ], [ 7.580143, 48.124441 ], [ 7.577859, 48.12139 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "69", "CODE_DEPT": "68", "NOM_DEPT": "HAUT-RHIN", "CODE_CHF": "066", "NOM_CHF": "COLMAR", "X_CHF_LIEU": "10241", "Y_CHF_LIEU": "67845", "X_CENTROID": "10194", "Y_CENTROID": "67595", "CODE_REG": "42", "NOM_REGION": "ALSACE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.577859, 48.12139 ], [ 7.577109, 48.11848 ], [ 7.579775, 48.106843 ], [ 7.575989, 48.093902 ], [ 7.569675, 48.08421 ], [ 7.573386, 48.05963 ], [ 7.56859, 48.03634 ], [ 7.575301, 48.02753 ], [ 7.578458, 48.02489 ], [ 7.605851, 48.003353 ], [ 7.608583, 48.00032 ], [ 7.622157, 47.97366 ], [ 7.606746, 47.95129 ], [ 7.603343, 47.94856 ], [ 7.599898, 47.94614 ], [ 7.582634, 47.92989 ], [ 7.580516, 47.923853 ], [ 7.580987, 47.92077 ], [ 7.58346, 47.90143 ], [ 7.582515, 47.89826 ], [ 7.556153, 47.877574 ], [ 7.555642, 47.87053 ], [ 7.556106, 47.86719 ], [ 7.563369, 47.85117 ], [ 7.562403, 47.841018 ], [ 7.545848, 47.81265 ], [ 7.544378, 47.809554 ], [ 7.54106, 47.803453 ], [ 7.530228, 47.78344 ], [ 7.53157, 47.76937 ], [ 7.533371, 47.76603 ], [ 7.538212, 47.757261 ], [ 7.539848, 47.75434 ], [ 7.548326, 47.73873 ], [ 7.5472, 47.728838 ], [ 7.538458, 47.717052 ], [ 7.534946, 47.714718 ], [ 7.51721, 47.70486 ], [ 7.513752, 47.70282 ], [ 7.512127, 47.696092 ], [ 7.519798, 47.68342 ], [ 7.521764, 47.66301 ], [ 7.524674, 47.66019 ], [ 7.53729, 47.649597 ], [ 7.56457, 47.634568 ], [ 7.567355, 47.63174 ], [ 7.569511, 47.628722 ], [ 7.574324, 47.615802 ], [ 7.593036, 47.600821 ], [ 7.592744, 47.59759 ], [ 7.584266, 47.57571 ], [ 7.574802, 47.57614 ], [ 7.565025, 47.57632 ], [ 7.557757, 47.571568 ], [ 7.551769, 47.563381 ], [ 7.547566, 47.56173 ], [ 7.517363, 47.54577 ], [ 7.507876, 47.544756 ], [ 7.504503, 47.54297 ], [ 7.499111, 47.53824 ], [ 7.499031, 47.535234 ], [ 7.502447, 47.52884 ], [ 7.520963, 47.53339 ], [ 7.530015, 47.52632 ], [ 7.523452, 47.51704 ], [ 7.508542, 47.51558 ], [ 7.500923, 47.518499 ], [ 7.497798, 47.521226 ], [ 7.498597, 47.51775 ], [ 7.50873, 47.50991 ], [ 7.50952, 47.499566 ], [ 7.489963, 47.48374 ], [ 7.480658, 47.48079 ], [ 7.470657, 47.48159 ], [ 7.464232, 47.48699 ], [ 7.454619, 47.489427 ], [ 7.438881, 47.49629 ], [ 7.434763, 47.497966 ], [ 7.421954, 47.48352 ], [ 7.421225, 47.48017 ], [ 7.43116, 47.48146 ], [ 7.453485, 47.473576 ], [ 7.44463, 47.461914 ], [ 7.430067, 47.459278 ], [ 7.422547, 47.447753 ], [ 7.403802, 47.43769 ], [ 7.400344, 47.43539 ], [ 7.386298, 47.43197 ], [ 7.356149, 47.434239 ], [ 7.338911, 47.440572 ], [ 7.328807, 47.44084 ], [ 7.324561, 47.438952 ], [ 7.303976, 47.43825 ], [ 7.245487, 47.420194 ], [ 7.24434, 47.42734 ], [ 7.236761, 47.43028 ], [ 7.235902, 47.436879 ], [ 7.227924, 47.439657 ], [ 7.210452, 47.43612 ], [ 7.206223, 47.434891 ], [ 7.196512, 47.435747 ], [ 7.172162, 47.445503 ], [ 7.178251, 47.45814 ], [ 7.177993, 47.46811 ], [ 7.18773, 47.483462 ], [ 7.197923, 47.49016 ], [ 7.202313, 47.4917 ], [ 7.198165, 47.49358 ], [ 7.163992, 47.49011 ], [ 7.130346, 47.503027 ], [ 7.142173, 47.52502 ], [ 7.137885, 47.53066 ], [ 7.136668, 47.533675 ], [ 7.13281, 47.539202 ], [ 7.131577, 47.540291 ], [ 7.128022, 47.54183 ], [ 7.118633, 47.547311 ], [ 7.114064, 47.547969 ], [ 7.106216, 47.551337 ], [ 7.107618, 47.55364 ], [ 7.107532, 47.558583 ], [ 7.108259, 47.5618 ], [ 7.102383, 47.5706 ], [ 7.094361, 47.57349 ], [ 7.09288, 47.57694 ], [ 7.088724, 47.58354 ], [ 7.086324, 47.58491 ], [ 7.086787, 47.58765 ], [ 7.085388, 47.59305 ], [ 7.081668, 47.59476 ], [ 7.078391, 47.59686 ], [ 7.074772, 47.59885 ], [ 7.074506, 47.59886 ], [ 7.041412, 47.599821 ], [ 7.02538, 47.59238 ], [ 7.024362, 47.589127 ], [ 7.019563, 47.588382 ], [ 7.019479, 47.593982 ], [ 7.009213, 47.599391 ], [ 7.006716, 47.60145 ], [ 7.011233, 47.6057 ], [ 7.007647, 47.60747 ], [ 7.006179, 47.61933 ], [ 7.007601, 47.621573 ], [ 7.006925, 47.626418 ], [ 7.010525, 47.630152 ], [ 7.016567, 47.645049 ], [ 7.017172, 47.648129 ], [ 7.019805, 47.65068 ], [ 7.034478, 47.64946 ], [ 7.039244, 47.65039 ], [ 7.037741, 47.653449 ], [ 7.035237, 47.659655 ], [ 7.045282, 47.67037 ], [ 7.04166, 47.67241 ], [ 7.037637, 47.67515 ], [ 7.039997, 47.6781 ], [ 7.045893, 47.68334 ], [ 7.038634, 47.687945 ], [ 7.036342, 47.692224 ], [ 7.038652, 47.692586 ], [ 7.035736, 47.694967 ], [ 7.027565, 47.70537 ], [ 7.029376, 47.70866 ], [ 7.037418, 47.721558 ], [ 7.035193, 47.7241 ], [ 7.032079, 47.72619 ], [ 7.0294, 47.72838 ], [ 7.020601, 47.73444 ], [ 7.018794, 47.7374 ], [ 7.015778, 47.74346 ], [ 7.011685, 47.741631 ], [ 6.998425, 47.745825 ], [ 6.993444, 47.746743 ], [ 6.974542, 47.75147 ], [ 6.938479, 47.77082 ], [ 6.923452, 47.77006 ], [ 6.922358, 47.77209 ], [ 6.91897, 47.774 ], [ 6.907546, 47.777715 ], [ 6.902092, 47.77645 ], [ 6.891696, 47.77834 ], [ 6.88743, 47.779961 ], [ 6.864959, 47.784607 ], [ 6.862197, 47.78744 ], [ 6.842967, 47.81367 ], [ 6.84618, 47.822945 ], [ 6.891175, 47.83352 ], [ 6.896086, 47.83297 ], [ 6.897089, 47.83479 ], [ 6.907205, 47.84604 ], [ 6.916958, 47.847597 ], [ 6.920048, 47.850287 ], [ 6.918805, 47.85286 ], [ 6.918906, 47.858039 ], [ 6.914944, 47.86005 ], [ 6.90804, 47.864664 ], [ 6.907135, 47.87129 ], [ 6.907124, 47.88116 ], [ 6.898328, 47.88869 ], [ 6.918458, 47.898414 ], [ 6.917036, 47.90165 ], [ 6.927478, 47.90875 ], [ 6.926308, 47.91541 ], [ 6.912346, 47.91838 ], [ 6.924738, 47.92915 ], [ 6.920791, 47.945939 ], [ 6.923823, 47.95247 ], [ 6.925559, 47.95925 ], [ 6.931043, 47.97115 ], [ 6.941063, 47.97778 ], [ 6.943766, 47.980383 ], [ 6.943033, 47.99199 ], [ 6.94353, 47.99867 ], [ 6.951891, 48.00241 ], [ 6.961425, 48.00046 ], [ 6.976517, 48.009239 ], [ 6.981539, 48.00942 ], [ 6.989372, 48.018211 ], [ 7.002566, 48.02325 ], [ 7.011704, 48.035355 ], [ 7.016021, 48.03719 ], [ 7.013018, 48.04011 ], [ 7.009749, 48.04289 ], [ 7.012283, 48.04583 ], [ 7.018614, 48.05506 ], [ 7.023359, 48.05648 ], [ 7.024436, 48.063384 ], [ 7.034358, 48.075389 ], [ 7.05165, 48.08261 ], [ 7.06841, 48.10328 ], [ 7.070402, 48.10644 ], [ 7.076708, 48.108486 ], [ 7.083691, 48.12207 ], [ 7.084163, 48.12922 ], [ 7.068587, 48.130752 ], [ 7.059047, 48.13918 ], [ 7.078438, 48.16401 ], [ 7.077558, 48.170925 ], [ 7.082138, 48.17477 ], [ 7.083342, 48.17745 ], [ 7.086997, 48.183753 ], [ 7.102708, 48.19191 ], [ 7.10629, 48.19431 ], [ 7.108345, 48.19751 ], [ 7.105556, 48.200462 ], [ 7.108503, 48.20317 ], [ 7.116387, 48.20713 ], [ 7.126811, 48.22509 ], [ 7.132651, 48.24283 ], [ 7.143334, 48.258446 ], [ 7.153763, 48.26527 ], [ 7.157746, 48.26753 ], [ 7.158499, 48.26835 ], [ 7.159414, 48.27463 ], [ 7.174226, 48.287813 ], [ 7.172441, 48.29749 ], [ 7.176243, 48.299121 ], [ 7.193611, 48.302029 ], [ 7.198282, 48.310477 ], [ 7.203354, 48.30989 ], [ 7.218359, 48.31089 ], [ 7.245237, 48.30334 ], [ 7.254595, 48.306004 ], [ 7.259555, 48.3052 ], [ 7.274333, 48.30508 ], [ 7.280565, 48.29983 ], [ 7.28222, 48.2966 ], [ 7.286358, 48.295009 ], [ 7.290799, 48.293838 ], [ 7.290493, 48.29074 ], [ 7.299949, 48.28285 ], [ 7.29386, 48.27077 ], [ 7.308792, 48.26851 ], [ 7.333983, 48.272511 ], [ 7.33139, 48.2702 ], [ 7.328684, 48.26782 ], [ 7.322898, 48.26327 ], [ 7.314287, 48.26244 ], [ 7.312801, 48.255661 ], [ 7.325376, 48.24545 ], [ 7.351512, 48.24745 ], [ 7.398737, 48.2323 ], [ 7.409073, 48.22445 ], [ 7.414318, 48.224911 ], [ 7.4178, 48.22269 ], [ 7.435466, 48.21786 ], [ 7.444787, 48.21678 ], [ 7.450586, 48.21168 ], [ 7.472434, 48.20473 ], [ 7.476943, 48.20354 ], [ 7.473539, 48.197736 ], [ 7.475189, 48.185092 ], [ 7.472763, 48.182228 ], [ 7.470667, 48.163381 ], [ 7.47014, 48.160174 ], [ 7.474998, 48.15948 ], [ 7.520334, 48.1495 ], [ 7.515351, 48.13313 ], [ 7.517421, 48.13057 ], [ 7.518595, 48.127764 ], [ 7.537615, 48.123653 ], [ 7.572792, 48.12133 ], [ 7.577859, 48.12139 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "70", "CODE_DEPT": "69", "NOM_DEPT": "RHONE", "CODE_CHF": "123", "NOM_CHF": "LYON", "X_CHF_LIEU": "8431", "Y_CHF_LIEU": "65193", "X_CENTROID": "8273", "Y_CENTROID": "65314", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.101067, 45.81338 ], [ 5.090735, 45.78716 ], [ 5.086697, 45.785242 ], [ 5.063732, 45.790871 ], [ 5.059069, 45.791857 ], [ 5.060075, 45.78534 ], [ 5.059605, 45.782074 ], [ 5.069344, 45.76641 ], [ 5.088802, 45.76702 ], [ 5.09354, 45.766036 ], [ 5.091591, 45.762848 ], [ 5.089879, 45.75263 ], [ 5.094527, 45.739453 ], [ 5.130361, 45.7356 ], [ 5.133749, 45.73339 ], [ 5.142938, 45.72221 ], [ 5.155242, 45.717167 ], [ 5.159244, 45.71525 ], [ 5.156647, 45.70506 ], [ 5.155332, 45.701662 ], [ 5.152058, 45.70408 ], [ 5.143568, 45.70131 ], [ 5.130745, 45.705183 ], [ 5.104281, 45.698294 ], [ 5.107072, 45.68822 ], [ 5.091109, 45.680388 ], [ 5.089164, 45.6772 ], [ 5.079511, 45.67613 ], [ 5.054025, 45.66005 ], [ 5.056684, 45.655575 ], [ 5.058066, 45.65334 ], [ 5.038303, 45.64337 ], [ 5.036484, 45.629522 ], [ 5.044126, 45.620547 ], [ 5.040266, 45.618563 ], [ 5.033762, 45.61412 ], [ 5.002707, 45.622463 ], [ 4.989447, 45.618573 ], [ 4.99231, 45.61573 ], [ 5.001745, 45.61396 ], [ 4.998873, 45.60372 ], [ 4.998331, 45.603282 ], [ 4.993871, 45.604875 ], [ 4.971512, 45.6127 ], [ 4.932731, 45.607347 ], [ 4.929941, 45.606467 ], [ 4.927079, 45.60572 ], [ 4.912981, 45.60698 ], [ 4.891364, 45.60155 ], [ 4.887708, 45.601581 ], [ 4.882762, 45.60179 ], [ 4.876687, 45.596695 ], [ 4.867189, 45.595466 ], [ 4.859784, 45.590833 ], [ 4.857586, 45.57652 ], [ 4.848644, 45.579919 ], [ 4.84462, 45.581562 ], [ 4.828533, 45.58773 ], [ 4.810818, 45.589722 ], [ 4.806022, 45.589007 ], [ 4.777132, 45.58739 ], [ 4.778305, 45.583981 ], [ 4.808442, 45.57235 ], [ 4.814331, 45.56811 ], [ 4.81601, 45.56535 ], [ 4.819066, 45.560784 ], [ 4.820698, 45.55853 ], [ 4.832431, 45.546921 ], [ 4.83654, 45.54482 ], [ 4.863055, 45.53775 ], [ 4.87277, 45.53091 ], [ 4.871814, 45.527636 ], [ 4.864208, 45.51942 ], [ 4.861328, 45.516849 ], [ 4.848693, 45.50637 ], [ 4.845381, 45.503844 ], [ 4.841456, 45.500603 ], [ 4.837207, 45.49916 ], [ 4.824478, 45.49494 ], [ 4.8136, 45.48419 ], [ 4.801278, 45.47935 ], [ 4.799126, 45.478502 ], [ 4.794931, 45.477065 ], [ 4.779996, 45.46965 ], [ 4.780067, 45.466664 ], [ 4.781318, 45.457782 ], [ 4.779476, 45.45504 ], [ 4.775918, 45.45421 ], [ 4.772288, 45.45556 ], [ 4.756936, 45.455707 ], [ 4.754109, 45.458183 ], [ 4.737785, 45.47272 ], [ 4.742368, 45.47397 ], [ 4.738429, 45.487168 ], [ 4.721828, 45.494395 ], [ 4.718576, 45.491941 ], [ 4.699815, 45.47813 ], [ 4.681929, 45.479806 ], [ 4.677448, 45.48065 ], [ 4.670697, 45.476281 ], [ 4.668818, 45.48234 ], [ 4.662186, 45.48661 ], [ 4.65775, 45.48559 ], [ 4.650603, 45.49711 ], [ 4.654295, 45.499392 ], [ 4.650706, 45.52987 ], [ 4.664346, 45.539458 ], [ 4.665332, 45.542839 ], [ 4.666491, 45.543047 ], [ 4.668371, 45.545874 ], [ 4.685176, 45.554756 ], [ 4.688126, 45.55776 ], [ 4.676305, 45.56877 ], [ 4.658587, 45.56377 ], [ 4.649274, 45.56491 ], [ 4.648858, 45.5617 ], [ 4.646599, 45.55558 ], [ 4.659832, 45.543227 ], [ 4.652094, 45.54209 ], [ 4.644591, 45.54016 ], [ 4.642481, 45.543365 ], [ 4.635566, 45.548374 ], [ 4.625701, 45.56825 ], [ 4.614858, 45.57548 ], [ 4.610735, 45.57391 ], [ 4.602862, 45.57041 ], [ 4.58711, 45.57072 ], [ 4.583861, 45.57323 ], [ 4.5706, 45.582256 ], [ 4.566766, 45.58368 ], [ 4.555531, 45.579142 ], [ 4.547261, 45.58016 ], [ 4.542608, 45.57977 ], [ 4.521878, 45.572641 ], [ 4.514431, 45.57652 ], [ 4.50522, 45.576882 ], [ 4.504569, 45.58362 ], [ 4.500541, 45.585473 ], [ 4.467814, 45.58575 ], [ 4.46818, 45.58844 ], [ 4.474517, 45.59471 ], [ 4.472496, 45.597345 ], [ 4.460841, 45.601 ], [ 4.450037, 45.607355 ], [ 4.441489, 45.62305 ], [ 4.437475, 45.624196 ], [ 4.422444, 45.629664 ], [ 4.418074, 45.629449 ], [ 4.410284, 45.632051 ], [ 4.40886, 45.63712 ], [ 4.404997, 45.639196 ], [ 4.39261, 45.653616 ], [ 4.395888, 45.65524 ], [ 4.392551, 45.66248 ], [ 4.387908, 45.663797 ], [ 4.36592, 45.671153 ], [ 4.368732, 45.6737 ], [ 4.365891, 45.682997 ], [ 4.373447, 45.69078 ], [ 4.36994, 45.692918 ], [ 4.365516, 45.69852 ], [ 4.369701, 45.700396 ], [ 4.375139, 45.71338 ], [ 4.384784, 45.72119 ], [ 4.391247, 45.737877 ], [ 4.402925, 45.74392 ], [ 4.401178, 45.74657 ], [ 4.390677, 45.755077 ], [ 4.385803, 45.75466 ], [ 4.373271, 45.749445 ], [ 4.359161, 45.751102 ], [ 4.360331, 45.754213 ], [ 4.349101, 45.77117 ], [ 4.358288, 45.778915 ], [ 4.37645, 45.784107 ], [ 4.37399, 45.801141 ], [ 4.375618, 45.80445 ], [ 4.383692, 45.804995 ], [ 4.38784, 45.803007 ], [ 4.380282, 45.81745 ], [ 4.382465, 45.82027 ], [ 4.376035, 45.82482 ], [ 4.380569, 45.825315 ], [ 4.383698, 45.83399 ], [ 4.390601, 45.837476 ], [ 4.387014, 45.83982 ], [ 4.383083, 45.845972 ], [ 4.390615, 45.85028 ], [ 4.39614, 45.85982 ], [ 4.394471, 45.865168 ], [ 4.389622, 45.864616 ], [ 4.361094, 45.86617 ], [ 4.342469, 45.876903 ], [ 4.340314, 45.880026 ], [ 4.336936, 45.89016 ], [ 4.326224, 45.89737 ], [ 4.323221, 45.90389 ], [ 4.327391, 45.905639 ], [ 4.346215, 45.915765 ], [ 4.341656, 45.91666 ], [ 4.337581, 45.918335 ], [ 4.34602, 45.929943 ], [ 4.33654, 45.93183 ], [ 4.32205, 45.941123 ], [ 4.312396, 45.942289 ], [ 4.293912, 45.9534 ], [ 4.300575, 45.958322 ], [ 4.288823, 45.973172 ], [ 4.275742, 45.9778 ], [ 4.272447, 45.979968 ], [ 4.258975, 45.98117 ], [ 4.248043, 45.986724 ], [ 4.246046, 45.99612 ], [ 4.251152, 45.9956 ], [ 4.26467, 45.998517 ], [ 4.269628, 45.992716 ], [ 4.274439, 45.992365 ], [ 4.289001, 45.995658 ], [ 4.300096, 45.988894 ], [ 4.301162, 45.99192 ], [ 4.312008, 46.00513 ], [ 4.310332, 46.008013 ], [ 4.30825, 46.011252 ], [ 4.305846, 46.02159 ], [ 4.305067, 46.021475 ], [ 4.300616, 46.02077 ], [ 4.287736, 46.018359 ], [ 4.28002, 46.02177 ], [ 4.275984, 46.023896 ], [ 4.26982, 46.033529 ], [ 4.260555, 46.03605 ], [ 4.260961, 46.039113 ], [ 4.251078, 46.04918 ], [ 4.253426, 46.05179 ], [ 4.257097, 46.05392 ], [ 4.266223, 46.051978 ], [ 4.285097, 46.05368 ], [ 4.297331, 46.063451 ], [ 4.300045, 46.06605 ], [ 4.301426, 46.078463 ], [ 4.304989, 46.079196 ], [ 4.310407, 46.08172 ], [ 4.310007, 46.085029 ], [ 4.311328, 46.09485 ], [ 4.305996, 46.100331 ], [ 4.309295, 46.110002 ], [ 4.312806, 46.112249 ], [ 4.319714, 46.11682 ], [ 4.322116, 46.12998 ], [ 4.329682, 46.13323 ], [ 4.332742, 46.135505 ], [ 4.356622, 46.138275 ], [ 4.361588, 46.138459 ], [ 4.377187, 46.149808 ], [ 4.381809, 46.14966 ], [ 4.385438, 46.147645 ], [ 4.408245, 46.137061 ], [ 4.417362, 46.13592 ], [ 4.417098, 46.13926 ], [ 4.438591, 46.167879 ], [ 4.435171, 46.169958 ], [ 4.414315, 46.18007 ], [ 4.410541, 46.18153 ], [ 4.406358, 46.18224 ], [ 4.402903, 46.18454 ], [ 4.395468, 46.1925 ], [ 4.401312, 46.19688 ], [ 4.422965, 46.203137 ], [ 4.421756, 46.20702 ], [ 4.419863, 46.210066 ], [ 4.406746, 46.21962 ], [ 4.38808, 46.21979 ], [ 4.386217, 46.225674 ], [ 4.385568, 46.246162 ], [ 4.388286, 46.24791 ], [ 4.396835, 46.266523 ], [ 4.396451, 46.271841 ], [ 4.396364, 46.274544 ], [ 4.398757, 46.284322 ], [ 4.407092, 46.292739 ], [ 4.405814, 46.296061 ], [ 4.410616, 46.29534 ], [ 4.424387, 46.2963 ], [ 4.427039, 46.30283 ], [ 4.437717, 46.296284 ], [ 4.439452, 46.29306 ], [ 4.453248, 46.29644 ], [ 4.462188, 46.29402 ], [ 4.475428, 46.2844 ], [ 4.483775, 46.287065 ], [ 4.488465, 46.28799 ], [ 4.501484, 46.270072 ], [ 4.504001, 46.267139 ], [ 4.542343, 46.27197 ], [ 4.54645, 46.27392 ], [ 4.54809, 46.28323 ], [ 4.555437, 46.29126 ], [ 4.557841, 46.293993 ], [ 4.570273, 46.293029 ], [ 4.572161, 46.28998 ], [ 4.572725, 46.277045 ], [ 4.582672, 46.270215 ], [ 4.586527, 46.26836 ], [ 4.614456, 46.2664 ], [ 4.618565, 46.264793 ], [ 4.620162, 46.277956 ], [ 4.617019, 46.28062 ], [ 4.635777, 46.291918 ], [ 4.638725, 46.30142 ], [ 4.653189, 46.303177 ], [ 4.664478, 46.29662 ], [ 4.679741, 46.304518 ], [ 4.693436, 46.30232 ], [ 4.69295, 46.297099 ], [ 4.693884, 46.29454 ], [ 4.703249, 46.284841 ], [ 4.70748, 46.2847 ], [ 4.710054, 46.278947 ], [ 4.707417, 46.269764 ], [ 4.700696, 46.267477 ], [ 4.694068, 46.271512 ], [ 4.68457, 46.26593 ], [ 4.680571, 46.267218 ], [ 4.681228, 46.257301 ], [ 4.690873, 46.24965 ], [ 4.705377, 46.250961 ], [ 4.708899, 46.248584 ], [ 4.720694, 46.24426 ], [ 4.736181, 46.233202 ], [ 4.733016, 46.22751 ], [ 4.720018, 46.2285 ], [ 4.731773, 46.21322 ], [ 4.735682, 46.2117 ], [ 4.721501, 46.20013 ], [ 4.721489, 46.19684 ], [ 4.720362, 46.193577 ], [ 4.724376, 46.18431 ], [ 4.733118, 46.177792 ], [ 4.75959, 46.173603 ], [ 4.763197, 46.1757 ], [ 4.771584, 46.17564 ], [ 4.775494, 46.177093 ], [ 4.780213, 46.176677 ], [ 4.782319, 46.171636 ], [ 4.784274, 46.16837 ], [ 4.791741, 46.16361 ], [ 4.799993, 46.15949 ], [ 4.80255, 46.156437 ], [ 4.802787, 46.153407 ], [ 4.795944, 46.139158 ], [ 4.793172, 46.136382 ], [ 4.787486, 46.13089 ], [ 4.784254, 46.1283 ], [ 4.772069, 46.117627 ], [ 4.771191, 46.1117 ], [ 4.767114, 46.106527 ], [ 4.762596, 46.102544 ], [ 4.760178, 46.100645 ], [ 4.757137, 46.09827 ], [ 4.748023, 46.091357 ], [ 4.749615, 46.08242 ], [ 4.756261, 46.078971 ], [ 4.761062, 46.07046 ], [ 4.761755, 46.067438 ], [ 4.759083, 46.061202 ], [ 4.75632, 46.05855 ], [ 4.739617, 46.047487 ], [ 4.745657, 46.03524 ], [ 4.746774, 46.03255 ], [ 4.746389, 46.026946 ], [ 4.743942, 46.020309 ], [ 4.74889, 46.00719 ], [ 4.748988, 46.003757 ], [ 4.748491, 46.00278 ], [ 4.749567, 45.99637 ], [ 4.754611, 45.97381 ], [ 4.750169, 45.96449 ], [ 4.748462, 45.96241 ], [ 4.744998, 45.959882 ], [ 4.730275, 45.95041 ], [ 4.731896, 45.9408 ], [ 4.739899, 45.937875 ], [ 4.744455, 45.937427 ], [ 4.756784, 45.93463 ], [ 4.761121, 45.934998 ], [ 4.769154, 45.93832 ], [ 4.777994, 45.93784 ], [ 4.786921, 45.926478 ], [ 4.788994, 45.92355 ], [ 4.803178, 45.921968 ], [ 4.80776, 45.920805 ], [ 4.809782, 45.918314 ], [ 4.810675, 45.909752 ], [ 4.80955, 45.90653 ], [ 4.804099, 45.89807 ], [ 4.805177, 45.89633 ], [ 4.844452, 45.911557 ], [ 4.849116, 45.912868 ], [ 4.853105, 45.90716 ], [ 4.870683, 45.903127 ], [ 4.872016, 45.896782 ], [ 4.872087, 45.893538 ], [ 4.877315, 45.89668 ], [ 4.880699, 45.89717 ], [ 4.883222, 45.88343 ], [ 4.883827, 45.87999 ], [ 4.904376, 45.874524 ], [ 4.909017, 45.87411 ], [ 4.901239, 45.86059 ], [ 4.900569, 45.8576 ], [ 4.91595, 45.845415 ], [ 4.918781, 45.83565 ], [ 4.921116, 45.83274 ], [ 4.919766, 45.82949 ], [ 4.918589, 45.809357 ], [ 4.924522, 45.804041 ], [ 4.946837, 45.809405 ], [ 4.951516, 45.808766 ], [ 4.966931, 45.80904 ], [ 4.970375, 45.80738 ], [ 4.98034, 45.80584 ], [ 4.992917, 45.8078 ], [ 4.996959, 45.809142 ], [ 5.001206, 45.81012 ], [ 5.012298, 45.80523 ], [ 5.016691, 45.80561 ], [ 5.020714, 45.80713 ], [ 5.037812, 45.80835 ], [ 5.045296, 45.81182 ], [ 5.054278, 45.811582 ], [ 5.058158, 45.809926 ], [ 5.087546, 45.8118 ], [ 5.092558, 45.811834 ], [ 5.096801, 45.81264 ], [ 5.101067, 45.81338 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "71", "CODE_DEPT": "70", "NOM_DEPT": "HAUTE-SAONE", "CODE_CHF": "550", "NOM_CHF": "VESOUL", "X_CHF_LIEU": "9369", "Y_CHF_LIEU": "67293", "X_CENTROID": "9316", "Y_CENTROID": "67312", "CODE_REG": "43", "NOM_REGION": "FRANCHE-COMTE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.698726, 47.265006 ], [ 5.697562, 47.267915 ], [ 5.691668, 47.272295 ], [ 5.684065, 47.271642 ], [ 5.683462, 47.274152 ], [ 5.676645, 47.275723 ], [ 5.672097, 47.27422 ], [ 5.66334, 47.26604 ], [ 5.653365, 47.265008 ], [ 5.652677, 47.262339 ], [ 5.646765, 47.258898 ], [ 5.642305, 47.25619 ], [ 5.637434, 47.25615 ], [ 5.62332, 47.25403 ], [ 5.610811, 47.25906 ], [ 5.60132, 47.26061 ], [ 5.583791, 47.25515 ], [ 5.580744, 47.25286 ], [ 5.573451, 47.25555 ], [ 5.573459, 47.261512 ], [ 5.56976, 47.263576 ], [ 5.568857, 47.26959 ], [ 5.555199, 47.269005 ], [ 5.55606, 47.279047 ], [ 5.533517, 47.28627 ], [ 5.522116, 47.305352 ], [ 5.518539, 47.304187 ], [ 5.513097, 47.30816 ], [ 5.509108, 47.30809 ], [ 5.498495, 47.314221 ], [ 5.47918, 47.31496 ], [ 5.47167, 47.318119 ], [ 5.47373, 47.324317 ], [ 5.477101, 47.326749 ], [ 5.48901, 47.32903 ], [ 5.494704, 47.338099 ], [ 5.490065, 47.354347 ], [ 5.488824, 47.35586 ], [ 5.489222, 47.36987 ], [ 5.491894, 47.372889 ], [ 5.496919, 47.38855 ], [ 5.477992, 47.39423 ], [ 5.451393, 47.38397 ], [ 5.449094, 47.38675 ], [ 5.433256, 47.392522 ], [ 5.433672, 47.39584 ], [ 5.442459, 47.40705 ], [ 5.430425, 47.42136 ], [ 5.43846, 47.44423 ], [ 5.441022, 47.44656 ], [ 5.435629, 47.45029 ], [ 5.431819, 47.44826 ], [ 5.418162, 47.450702 ], [ 5.413959, 47.459966 ], [ 5.409538, 47.46146 ], [ 5.379572, 47.45056 ], [ 5.380928, 47.45358 ], [ 5.381551, 47.459229 ], [ 5.370722, 47.464475 ], [ 5.379534, 47.46614 ], [ 5.404108, 47.475102 ], [ 5.407642, 47.47719 ], [ 5.403346, 47.477351 ], [ 5.387298, 47.481194 ], [ 5.388163, 47.48362 ], [ 5.391142, 47.48816 ], [ 5.397351, 47.49625 ], [ 5.399216, 47.499014 ], [ 5.427781, 47.49652 ], [ 5.43203, 47.491777 ], [ 5.436433, 47.49042 ], [ 5.44311, 47.494932 ], [ 5.44746, 47.4962 ], [ 5.451419, 47.504303 ], [ 5.453722, 47.5067 ], [ 5.469344, 47.52437 ], [ 5.471747, 47.52746 ], [ 5.486404, 47.52697 ], [ 5.487817, 47.52991 ], [ 5.49664, 47.54713 ], [ 5.496668, 47.55059 ], [ 5.491292, 47.563383 ], [ 5.48238, 47.56545 ], [ 5.486492, 47.57861 ], [ 5.478564, 47.60539 ], [ 5.471052, 47.60822 ], [ 5.468523, 47.611129 ], [ 5.440171, 47.629771 ], [ 5.425595, 47.63207 ], [ 5.422559, 47.629463 ], [ 5.399805, 47.59716 ], [ 5.396263, 47.595966 ], [ 5.389121, 47.595238 ], [ 5.378175, 47.603549 ], [ 5.374079, 47.604542 ], [ 5.37492, 47.621355 ], [ 5.387812, 47.636212 ], [ 5.4032, 47.64509 ], [ 5.405616, 47.64813 ], [ 5.401686, 47.64844 ], [ 5.398975, 47.653075 ], [ 5.406486, 47.67362 ], [ 5.421267, 47.67644 ], [ 5.434217, 47.67126 ], [ 5.444413, 47.67089 ], [ 5.46934, 47.67483 ], [ 5.478994, 47.6823 ], [ 5.48277, 47.684644 ], [ 5.502301, 47.67741 ], [ 5.506626, 47.67666 ], [ 5.510298, 47.67423 ], [ 5.530594, 47.67401 ], [ 5.565433, 47.7039 ], [ 5.567389, 47.70712 ], [ 5.571029, 47.706798 ], [ 5.575159, 47.70473 ], [ 5.583657, 47.70088 ], [ 5.585265, 47.69057 ], [ 5.596814, 47.671647 ], [ 5.60234, 47.67506 ], [ 5.606094, 47.675205 ], [ 5.61539, 47.67334 ], [ 5.629558, 47.67674 ], [ 5.648861, 47.675549 ], [ 5.653261, 47.677161 ], [ 5.659334, 47.681543 ], [ 5.659723, 47.68453 ], [ 5.663716, 47.684911 ], [ 5.667652, 47.685479 ], [ 5.675428, 47.682563 ], [ 5.692038, 47.687162 ], [ 5.693806, 47.69022 ], [ 5.694993, 47.69364 ], [ 5.69322, 47.70396 ], [ 5.684206, 47.71228 ], [ 5.687023, 47.72023 ], [ 5.685198, 47.722694 ], [ 5.692512, 47.724 ], [ 5.695895, 47.72518 ], [ 5.692494, 47.727885 ], [ 5.689648, 47.7339 ], [ 5.692378, 47.73693 ], [ 5.70942, 47.74495 ], [ 5.706342, 47.751116 ], [ 5.707806, 47.76152 ], [ 5.708914, 47.764664 ], [ 5.703353, 47.769574 ], [ 5.67997, 47.769968 ], [ 5.682247, 47.77539 ], [ 5.680107, 47.77774 ], [ 5.676612, 47.77916 ], [ 5.685751, 47.81278 ], [ 5.693678, 47.82175 ], [ 5.708478, 47.82197 ], [ 5.713646, 47.82157 ], [ 5.718716, 47.821082 ], [ 5.728007, 47.81845 ], [ 5.731428, 47.81763 ], [ 5.743349, 47.82115 ], [ 5.746056, 47.823596 ], [ 5.748488, 47.82977 ], [ 5.744204, 47.848855 ], [ 5.753406, 47.85165 ], [ 5.758832, 47.85667 ], [ 5.761192, 47.859343 ], [ 5.789061, 47.8552 ], [ 5.798883, 47.85571 ], [ 5.796619, 47.84982 ], [ 5.801098, 47.84698 ], [ 5.805625, 47.84732 ], [ 5.823562, 47.85229 ], [ 5.828521, 47.85195 ], [ 5.827301, 47.85467 ], [ 5.824676, 47.8594 ], [ 5.82186, 47.86911 ], [ 5.842544, 47.89423 ], [ 5.845094, 47.89709 ], [ 5.848194, 47.903435 ], [ 5.851353, 47.9059 ], [ 5.883191, 47.90026 ], [ 5.886494, 47.90263 ], [ 5.889189, 47.90737 ], [ 5.890458, 47.909759 ], [ 5.888909, 47.91304 ], [ 5.884726, 47.92605 ], [ 5.896863, 47.931638 ], [ 5.89341, 47.93786 ], [ 5.902823, 47.94554 ], [ 5.907548, 47.94665 ], [ 5.912835, 47.94675 ], [ 5.918043, 47.94736 ], [ 5.919171, 47.967864 ], [ 5.92133, 47.971026 ], [ 5.92739, 47.9744 ], [ 5.943047, 47.979813 ], [ 5.947534, 47.97971 ], [ 5.950301, 47.97351 ], [ 5.957968, 47.96959 ], [ 5.959703, 47.96655 ], [ 5.941548, 47.95232 ], [ 5.937566, 47.950629 ], [ 5.932628, 47.937928 ], [ 5.942523, 47.93631 ], [ 5.947635, 47.93618 ], [ 5.956055, 47.938664 ], [ 5.964594, 47.946113 ], [ 5.968902, 47.947409 ], [ 5.970446, 47.953917 ], [ 5.970778, 47.957205 ], [ 6.002262, 47.95609 ], [ 6.008771, 47.961399 ], [ 6.009432, 47.96785 ], [ 6.023004, 47.97797 ], [ 6.022306, 47.98761 ], [ 6.036864, 48.00145 ], [ 6.068036, 48.01351 ], [ 6.072221, 48.01555 ], [ 6.080853, 48.0128 ], [ 6.085549, 48.01345 ], [ 6.104598, 48.01351 ], [ 6.109235, 48.01247 ], [ 6.114302, 48.01807 ], [ 6.127381, 48.022228 ], [ 6.131397, 48.02408 ], [ 6.152409, 48.009447 ], [ 6.156058, 48.006944 ], [ 6.152863, 47.996114 ], [ 6.159124, 47.99129 ], [ 6.163943, 47.97561 ], [ 6.161293, 47.97279 ], [ 6.149584, 47.9685 ], [ 6.155256, 47.96443 ], [ 6.16079, 47.9612 ], [ 6.161247, 47.958296 ], [ 6.171045, 47.95264 ], [ 6.179247, 47.95459 ], [ 6.182056, 47.95693 ], [ 6.207056, 47.945733 ], [ 6.208138, 47.942344 ], [ 6.204514, 47.932292 ], [ 6.209344, 47.93105 ], [ 6.214423, 47.930382 ], [ 6.219609, 47.93566 ], [ 6.233409, 47.933599 ], [ 6.237987, 47.93284 ], [ 6.24611, 47.93943 ], [ 6.250767, 47.93908 ], [ 6.259912, 47.94437 ], [ 6.262957, 47.94614 ], [ 6.274023, 47.951659 ], [ 6.277334, 47.95381 ], [ 6.292827, 47.955646 ], [ 6.306804, 47.95078 ], [ 6.322461, 47.95008 ], [ 6.360997, 47.96025 ], [ 6.364993, 47.962572 ], [ 6.378691, 47.95866 ], [ 6.388353, 47.960018 ], [ 6.404507, 47.952832 ], [ 6.407328, 47.94644 ], [ 6.40842, 47.9432 ], [ 6.431921, 47.94381 ], [ 6.448609, 47.922719 ], [ 6.460947, 47.91751 ], [ 6.457047, 47.90783 ], [ 6.475807, 47.888451 ], [ 6.478262, 47.88544 ], [ 6.503444, 47.89625 ], [ 6.537052, 47.90226 ], [ 6.542014, 47.902534 ], [ 6.555909, 47.91996 ], [ 6.558255, 47.92297 ], [ 6.568708, 47.934499 ], [ 6.596358, 47.94331 ], [ 6.601244, 47.944379 ], [ 6.605983, 47.944468 ], [ 6.610445, 47.93891 ], [ 6.612502, 47.93604 ], [ 6.629286, 47.928183 ], [ 6.640878, 47.91702 ], [ 6.639864, 47.91005 ], [ 6.645203, 47.904085 ], [ 6.669324, 47.89329 ], [ 6.683084, 47.89042 ], [ 6.686832, 47.88826 ], [ 6.689377, 47.8873 ], [ 6.691325, 47.88584 ], [ 6.699113, 47.88228 ], [ 6.703674, 47.881424 ], [ 6.710113, 47.87582 ], [ 6.730734, 47.866448 ], [ 6.735247, 47.864926 ], [ 6.737294, 47.86547 ], [ 6.738164, 47.86205 ], [ 6.784952, 47.84957 ], [ 6.790661, 47.844226 ], [ 6.791102, 47.83783 ], [ 6.788987, 47.83483 ], [ 6.791946, 47.83016 ], [ 6.820459, 47.8158 ], [ 6.823539, 47.81305 ], [ 6.824672, 47.809647 ], [ 6.807186, 47.79243 ], [ 6.786246, 47.78229 ], [ 6.774581, 47.76673 ], [ 6.771134, 47.764492 ], [ 6.757638, 47.74788 ], [ 6.758938, 47.74206 ], [ 6.759587, 47.739156 ], [ 6.760447, 47.735813 ], [ 6.759074, 47.72281 ], [ 6.771583, 47.71257 ], [ 6.770079, 47.7034 ], [ 6.779242, 47.69294 ], [ 6.780151, 47.689771 ], [ 6.778645, 47.67587 ], [ 6.777237, 47.665986 ], [ 6.784508, 47.65434 ], [ 6.787491, 47.65166 ], [ 6.790704, 47.64789 ], [ 6.798335, 47.644 ], [ 6.799868, 47.63763 ], [ 6.792461, 47.63003 ], [ 6.791077, 47.62688 ], [ 6.780405, 47.625261 ], [ 6.778741, 47.622098 ], [ 6.777868, 47.615412 ], [ 6.785643, 47.61136 ], [ 6.788234, 47.60487 ], [ 6.789341, 47.60469 ], [ 6.793286, 47.59928 ], [ 6.791302, 47.59629 ], [ 6.802327, 47.58966 ], [ 6.804107, 47.583046 ], [ 6.816938, 47.578076 ], [ 6.820109, 47.57549 ], [ 6.821011, 47.57433 ], [ 6.821724, 47.573314 ], [ 6.817753, 47.571786 ], [ 6.809823, 47.5687 ], [ 6.807005, 47.5628 ], [ 6.801329, 47.56181 ], [ 6.799531, 47.555241 ], [ 6.781102, 47.53637 ], [ 6.777111, 47.536955 ], [ 6.7693, 47.53771 ], [ 6.765616, 47.53907 ], [ 6.758113, 47.54157 ], [ 6.753726, 47.54296 ], [ 6.748853, 47.54863 ], [ 6.744932, 47.55079 ], [ 6.740108, 47.556802 ], [ 6.725942, 47.560401 ], [ 6.722269, 47.559455 ], [ 6.720623, 47.557237 ], [ 6.71951, 47.55253 ], [ 6.714589, 47.553158 ], [ 6.707803, 47.558 ], [ 6.685248, 47.56315 ], [ 6.686969, 47.5684 ], [ 6.688866, 47.57081 ], [ 6.665164, 47.57255 ], [ 6.659797, 47.57991 ], [ 6.653689, 47.571221 ], [ 6.667054, 47.560701 ], [ 6.670176, 47.5579 ], [ 6.667733, 47.55488 ], [ 6.659006, 47.54661 ], [ 6.654297, 47.54178 ], [ 6.651061, 47.53902 ], [ 6.648122, 47.53612 ], [ 6.644428, 47.534053 ], [ 6.627005, 47.529848 ], [ 6.617904, 47.531023 ], [ 6.613339, 47.530804 ], [ 6.605545, 47.533794 ], [ 6.606403, 47.53685 ], [ 6.602113, 47.538351 ], [ 6.594465, 47.54235 ], [ 6.58045, 47.54411 ], [ 6.581312, 47.54088 ], [ 6.569138, 47.53135 ], [ 6.5814, 47.529294 ], [ 6.579606, 47.52594 ], [ 6.57902, 47.522753 ], [ 6.583668, 47.51035 ], [ 6.576228, 47.49833 ], [ 6.573512, 47.495494 ], [ 6.568577, 47.49626 ], [ 6.558532, 47.496358 ], [ 6.553836, 47.490311 ], [ 6.552118, 47.49326 ], [ 6.532903, 47.506293 ], [ 6.531543, 47.50341 ], [ 6.522414, 47.49726 ], [ 6.517722, 47.49667 ], [ 6.506233, 47.502125 ], [ 6.500569, 47.51025 ], [ 6.497259, 47.507838 ], [ 6.475829, 47.49525 ], [ 6.475733, 47.488659 ], [ 6.471519, 47.48702 ], [ 6.46359, 47.5097 ], [ 6.460669, 47.512445 ], [ 6.45632, 47.514087 ], [ 6.428573, 47.51692 ], [ 6.420592, 47.5196 ], [ 6.416725, 47.521112 ], [ 6.414662, 47.51943 ], [ 6.411148, 47.5219 ], [ 6.396998, 47.518373 ], [ 6.389787, 47.506159 ], [ 6.38645, 47.508274 ], [ 6.378694, 47.511364 ], [ 6.374837, 47.51115 ], [ 6.368083, 47.51349 ], [ 6.363965, 47.512097 ], [ 6.348676, 47.50556 ], [ 6.343925, 47.505511 ], [ 6.334475, 47.506 ], [ 6.331564, 47.50345 ], [ 6.331201, 47.500389 ], [ 6.320565, 47.48775 ], [ 6.311626, 47.48829 ], [ 6.307378, 47.49032 ], [ 6.302508, 47.49153 ], [ 6.299164, 47.48322 ], [ 6.299621, 47.479855 ], [ 6.301729, 47.469857 ], [ 6.294221, 47.465962 ], [ 6.292276, 47.46285 ], [ 6.282863, 47.451489 ], [ 6.285731, 47.449309 ], [ 6.289211, 47.44758 ], [ 6.284914, 47.445512 ], [ 6.280184, 47.44397 ], [ 6.263406, 47.446072 ], [ 6.261907, 47.43738 ], [ 6.261047, 47.43438 ], [ 6.260835, 47.42849 ], [ 6.250552, 47.424665 ], [ 6.246193, 47.426129 ], [ 6.234959, 47.43114 ], [ 6.233076, 47.4281 ], [ 6.243715, 47.413702 ], [ 6.241571, 47.41074 ], [ 6.232706, 47.413838 ], [ 6.229907, 47.41651 ], [ 6.22465, 47.422 ], [ 6.211616, 47.4258 ], [ 6.207986, 47.4288 ], [ 6.206369, 47.431288 ], [ 6.20225, 47.429906 ], [ 6.198717, 47.41788 ], [ 6.194119, 47.417787 ], [ 6.186566, 47.41421 ], [ 6.177539, 47.4162 ], [ 6.170568, 47.41235 ], [ 6.170974, 47.40934 ], [ 6.177865, 47.40671 ], [ 6.185315, 47.40523 ], [ 6.189249, 47.40556 ], [ 6.189034, 47.402386 ], [ 6.179743, 47.40191 ], [ 6.172705, 47.39778 ], [ 6.171557, 47.39453 ], [ 6.160353, 47.388358 ], [ 6.155959, 47.389874 ], [ 6.152249, 47.38612 ], [ 6.147528, 47.38592 ], [ 6.130007, 47.388017 ], [ 6.126305, 47.393909 ], [ 6.117785, 47.39662 ], [ 6.118479, 47.39348 ], [ 6.106828, 47.38361 ], [ 6.111808, 47.37867 ], [ 6.106643, 47.37699 ], [ 6.110691, 47.37543 ], [ 6.119702, 47.36846 ], [ 6.11706, 47.36612 ], [ 6.111452, 47.36204 ], [ 6.103077, 47.36121 ], [ 6.102487, 47.361322 ], [ 6.103184, 47.364655 ], [ 6.100892, 47.37088 ], [ 6.082016, 47.37171 ], [ 6.082373, 47.360849 ], [ 6.081865, 47.357556 ], [ 6.071943, 47.35051 ], [ 6.057539, 47.349676 ], [ 6.054942, 47.35133 ], [ 6.052159, 47.352277 ], [ 6.051001, 47.348938 ], [ 6.048023, 47.34644 ], [ 6.038896, 47.344913 ], [ 6.030475, 47.33757 ], [ 6.027015, 47.33495 ], [ 6.023555, 47.33235 ], [ 6.010495, 47.333167 ], [ 6.008152, 47.335813 ], [ 5.996651, 47.33987 ], [ 5.992056, 47.328536 ], [ 5.988164, 47.32717 ], [ 5.987159, 47.329824 ], [ 5.983149, 47.329441 ], [ 5.978633, 47.328043 ], [ 5.964007, 47.337201 ], [ 5.96356, 47.33727 ], [ 5.960306, 47.33929 ], [ 5.942949, 47.341304 ], [ 5.941769, 47.3442 ], [ 5.938583, 47.34241 ], [ 5.926704, 47.34476 ], [ 5.924679, 47.341648 ], [ 5.930662, 47.328913 ], [ 5.926441, 47.32707 ], [ 5.921675, 47.32762 ], [ 5.904306, 47.333025 ], [ 5.896712, 47.32907 ], [ 5.896168, 47.32612 ], [ 5.902059, 47.315002 ], [ 5.894814, 47.31183 ], [ 5.882704, 47.32163 ], [ 5.878955, 47.319649 ], [ 5.873147, 47.3146 ], [ 5.863882, 47.31598 ], [ 5.853064, 47.31083 ], [ 5.852381, 47.30794 ], [ 5.845068, 47.300892 ], [ 5.840561, 47.299813 ], [ 5.83122, 47.29871 ], [ 5.827125, 47.29789 ], [ 5.815037, 47.29514 ], [ 5.810675, 47.294785 ], [ 5.795302, 47.2897 ], [ 5.790403, 47.289932 ], [ 5.78254, 47.28869 ], [ 5.774967, 47.280222 ], [ 5.757453, 47.27633 ], [ 5.75426, 47.27291 ], [ 5.749752, 47.27249 ], [ 5.741824, 47.264968 ], [ 5.735196, 47.26344 ], [ 5.731034, 47.2646 ], [ 5.71138, 47.27057 ], [ 5.707877, 47.26803 ], [ 5.698726, 47.265006 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "72", "CODE_DEPT": "71", "NOM_DEPT": "SAONE-ET-LOIRE", "CODE_CHF": "270", "NOM_CHF": "MACON", "X_CHF_LIEU": "8409", "Y_CHF_LIEU": "65800", "X_CENTROID": "8179", "Y_CENTROID": "66172", "CODE_REG": "26", "NOM_REGION": "BOURGOGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.38808, 46.21979 ], [ 4.388416, 46.21308 ], [ 4.374769, 46.20951 ], [ 4.363353, 46.19856 ], [ 4.373498, 46.187246 ], [ 4.370806, 46.184333 ], [ 4.36632, 46.185423 ], [ 4.358511, 46.18268 ], [ 4.346643, 46.18726 ], [ 4.334903, 46.181744 ], [ 4.326643, 46.184894 ], [ 4.326397, 46.18171 ], [ 4.31641, 46.171305 ], [ 4.311831, 46.1712 ], [ 4.309176, 46.17292 ], [ 4.30287, 46.174325 ], [ 4.298212, 46.17305 ], [ 4.290281, 46.16932 ], [ 4.282432, 46.156816 ], [ 4.277541, 46.15661 ], [ 4.253192, 46.157817 ], [ 4.24866, 46.16711 ], [ 4.253409, 46.167343 ], [ 4.261911, 46.17517 ], [ 4.258146, 46.184546 ], [ 4.255016, 46.18713 ], [ 4.240916, 46.186897 ], [ 4.232491, 46.17955 ], [ 4.226578, 46.17837 ], [ 4.224993, 46.17763 ], [ 4.223365, 46.180189 ], [ 4.219558, 46.1851 ], [ 4.215845, 46.18722 ], [ 4.206215, 46.19449 ], [ 4.189229, 46.18864 ], [ 4.18493, 46.19012 ], [ 4.184851, 46.179868 ], [ 4.186752, 46.176633 ], [ 4.178133, 46.173687 ], [ 4.143322, 46.176 ], [ 4.138591, 46.176666 ], [ 4.133847, 46.177317 ], [ 4.133393, 46.177321 ], [ 4.132853, 46.180686 ], [ 4.103832, 46.19844 ], [ 4.099435, 46.197107 ], [ 4.082922, 46.19102 ], [ 4.078635, 46.190606 ], [ 4.067331, 46.186813 ], [ 4.059972, 46.188458 ], [ 4.056681, 46.185859 ], [ 4.050073, 46.180688 ], [ 4.046013, 46.179222 ], [ 4.031149, 46.17197 ], [ 4.027488, 46.16959 ], [ 4.018044, 46.17202 ], [ 3.988528, 46.169857 ], [ 3.985073, 46.172301 ], [ 3.980798, 46.18189 ], [ 3.971497, 46.189672 ], [ 3.97257, 46.19973 ], [ 3.965168, 46.20286 ], [ 3.960314, 46.203401 ], [ 3.936212, 46.2062 ], [ 3.917106, 46.203884 ], [ 3.909456, 46.20793 ], [ 3.905496, 46.20923 ], [ 3.890132, 46.214491 ], [ 3.897328, 46.22691 ], [ 3.897392, 46.237145 ], [ 3.907418, 46.24389 ], [ 3.90876, 46.260622 ], [ 3.906644, 46.263791 ], [ 3.903775, 46.274008 ], [ 3.899534, 46.275914 ], [ 3.892627, 46.284857 ], [ 3.901973, 46.293158 ], [ 3.931632, 46.29622 ], [ 3.947858, 46.30367 ], [ 3.947853, 46.30561 ], [ 3.947644, 46.319029 ], [ 3.971745, 46.320726 ], [ 3.985659, 46.3175 ], [ 4.005259, 46.32741 ], [ 3.994357, 46.327655 ], [ 3.985653, 46.328685 ], [ 3.987605, 46.34751 ], [ 3.98739, 46.350751 ], [ 3.988308, 46.35402 ], [ 3.991544, 46.370419 ], [ 3.98187, 46.38516 ], [ 3.98086, 46.388351 ], [ 3.977569, 46.397871 ], [ 3.987989, 46.40765 ], [ 3.984633, 46.416478 ], [ 3.984118, 46.41966 ], [ 3.991706, 46.42308 ], [ 3.995311, 46.4251 ], [ 3.995438, 46.42849 ], [ 3.989353, 46.436951 ], [ 4.002835, 46.44053 ], [ 3.997519, 46.45258 ], [ 4.001541, 46.45875 ], [ 4.000963, 46.462011 ], [ 3.97434, 46.47957 ], [ 3.965148, 46.477997 ], [ 3.960554, 46.47766 ], [ 3.952282, 46.478727 ], [ 3.957963, 46.49048 ], [ 3.953475, 46.49179 ], [ 3.934151, 46.490952 ], [ 3.916492, 46.496102 ], [ 3.911475, 46.495494 ], [ 3.90295, 46.491725 ], [ 3.898791, 46.48541 ], [ 3.897341, 46.482053 ], [ 3.887973, 46.48236 ], [ 3.865262, 46.489648 ], [ 3.860414, 46.49556 ], [ 3.863828, 46.51268 ], [ 3.855143, 46.51532 ], [ 3.845819, 46.51294 ], [ 3.845038, 46.513086 ], [ 3.840126, 46.518454 ], [ 3.846291, 46.524009 ], [ 3.837014, 46.53161 ], [ 3.811746, 46.52059 ], [ 3.807423, 46.51938 ], [ 3.794429, 46.527344 ], [ 3.780666, 46.528366 ], [ 3.777916, 46.53126 ], [ 3.770248, 46.538954 ], [ 3.755776, 46.53615 ], [ 3.741847, 46.539547 ], [ 3.732679, 46.547747 ], [ 3.73427, 46.554364 ], [ 3.737008, 46.55607 ], [ 3.741006, 46.56022 ], [ 3.743285, 46.566462 ], [ 3.740437, 46.57593 ], [ 3.740264, 46.578593 ], [ 3.739016, 46.58386 ], [ 3.737848, 46.58728 ], [ 3.734557, 46.60378 ], [ 3.719594, 46.60544 ], [ 3.713444, 46.61072 ], [ 3.723234, 46.622771 ], [ 3.716206, 46.630973 ], [ 3.712708, 46.63333 ], [ 3.704613, 46.6452 ], [ 3.703416, 46.64763 ], [ 3.699613, 46.65191 ], [ 3.699364, 46.654886 ], [ 3.698335, 46.65826 ], [ 3.692296, 46.6636 ], [ 3.670584, 46.67209 ], [ 3.671974, 46.68191 ], [ 3.655468, 46.68775 ], [ 3.654644, 46.69107 ], [ 3.651138, 46.704235 ], [ 3.637642, 46.70748 ], [ 3.637681, 46.724192 ], [ 3.622802, 46.7409 ], [ 3.628874, 46.74613 ], [ 3.629424, 46.749459 ], [ 3.634065, 46.74422 ], [ 3.644177, 46.740886 ], [ 3.647852, 46.74264 ], [ 3.661101, 46.73774 ], [ 3.699403, 46.74535 ], [ 3.703968, 46.74684 ], [ 3.738633, 46.75196 ], [ 3.779252, 46.73782 ], [ 3.783666, 46.73605 ], [ 3.77978, 46.729915 ], [ 3.789893, 46.718483 ], [ 3.794654, 46.70203 ], [ 3.822214, 46.705145 ], [ 3.826552, 46.70383 ], [ 3.837252, 46.710169 ], [ 3.844924, 46.72199 ], [ 3.853508, 46.724934 ], [ 3.875024, 46.72916 ], [ 3.876358, 46.73227 ], [ 3.884282, 46.72829 ], [ 3.889191, 46.728229 ], [ 3.895651, 46.73319 ], [ 3.928165, 46.74138 ], [ 3.933395, 46.750714 ], [ 3.952834, 46.75434 ], [ 3.96223, 46.762587 ], [ 3.963222, 46.76603 ], [ 3.966737, 46.765485 ], [ 3.968523, 46.768649 ], [ 3.999789, 46.777701 ], [ 4.018742, 46.777012 ], [ 4.038172, 46.78686 ], [ 4.043832, 46.781253 ], [ 4.046503, 46.778356 ], [ 4.056286, 46.779267 ], [ 4.062545, 46.788322 ], [ 4.061995, 46.79171 ], [ 4.060935, 46.795162 ], [ 4.058444, 46.81598 ], [ 4.058347, 46.81908 ], [ 4.04595, 46.83124 ], [ 4.043109, 46.8336 ], [ 4.048389, 46.83795 ], [ 4.052059, 46.840438 ], [ 4.100887, 46.859107 ], [ 4.100104, 46.86256 ], [ 4.095196, 46.872416 ], [ 4.074981, 46.89189 ], [ 4.07139, 46.894251 ], [ 4.05919, 46.89978 ], [ 4.044687, 46.901169 ], [ 4.043618, 46.90432 ], [ 4.037067, 46.91969 ], [ 4.036827, 46.92633 ], [ 4.045302, 46.934372 ], [ 4.045065, 46.937741 ], [ 4.039773, 46.946965 ], [ 4.051063, 46.9535 ], [ 4.053855, 46.95978 ], [ 4.037144, 46.98469 ], [ 4.027712, 46.982721 ], [ 4.008715, 46.97225 ], [ 3.995097, 46.976397 ], [ 3.995001, 46.983322 ], [ 3.995999, 46.986744 ], [ 4.000752, 46.98621 ], [ 4.033377, 46.999607 ], [ 4.036583, 47.002072 ], [ 4.041746, 47.007752 ], [ 4.054465, 47.01327 ], [ 4.060912, 47.022489 ], [ 4.058279, 47.03257 ], [ 4.058189, 47.03941 ], [ 4.071006, 47.05808 ], [ 4.051451, 47.07416 ], [ 4.042109, 47.07702 ], [ 4.038853, 47.07974 ], [ 4.040302, 47.08653 ], [ 4.052594, 47.096965 ], [ 4.048656, 47.110047 ], [ 4.054995, 47.11522 ], [ 4.058772, 47.117491 ], [ 4.065407, 47.12084 ], [ 4.089786, 47.11704 ], [ 4.094833, 47.122612 ], [ 4.092706, 47.125721 ], [ 4.097676, 47.12619 ], [ 4.108988, 47.11946 ], [ 4.113981, 47.119143 ], [ 4.115967, 47.123338 ], [ 4.118037, 47.126469 ], [ 4.126361, 47.13025 ], [ 4.130814, 47.12866 ], [ 4.137526, 47.119751 ], [ 4.150014, 47.11404 ], [ 4.160185, 47.12145 ], [ 4.167639, 47.11726 ], [ 4.172031, 47.11539 ], [ 4.187801, 47.137938 ], [ 4.188262, 47.14506 ], [ 4.181902, 47.150514 ], [ 4.186084, 47.152236 ], [ 4.194293, 47.148649 ], [ 4.205254, 47.15425 ], [ 4.209834, 47.155412 ], [ 4.21432, 47.15414 ], [ 4.219316, 47.14567 ], [ 4.237719, 47.146527 ], [ 4.241903, 47.14823 ], [ 4.239994, 47.14216 ], [ 4.247581, 47.13299 ], [ 4.25165, 47.13151 ], [ 4.252329, 47.128362 ], [ 4.259725, 47.11401 ], [ 4.263651, 47.11213 ], [ 4.281407, 47.107838 ], [ 4.298812, 47.112047 ], [ 4.300654, 47.109703 ], [ 4.302058, 47.10722 ], [ 4.309766, 47.10367 ], [ 4.338435, 47.10257 ], [ 4.346937, 47.09981 ], [ 4.349385, 47.096953 ], [ 4.34425, 47.07243 ], [ 4.357443, 47.062992 ], [ 4.36218, 47.06428 ], [ 4.370266, 47.07702 ], [ 4.377814, 47.08149 ], [ 4.397777, 47.08272 ], [ 4.411758, 47.07899 ], [ 4.416154, 47.07723 ], [ 4.407028, 47.06947 ], [ 4.403261, 47.05638 ], [ 4.406283, 47.05 ], [ 4.42728, 47.040413 ], [ 4.457438, 47.040154 ], [ 4.471598, 47.030492 ], [ 4.489643, 47.03201 ], [ 4.495195, 47.027515 ], [ 4.498842, 47.02558 ], [ 4.502063, 47.018763 ], [ 4.504946, 47.01682 ], [ 4.506723, 47.013524 ], [ 4.531749, 47.01249 ], [ 4.554809, 47.020055 ], [ 4.556762, 47.006971 ], [ 4.547687, 46.995323 ], [ 4.554726, 46.990645 ], [ 4.56426, 46.9922 ], [ 4.568085, 46.99113 ], [ 4.567488, 46.98282 ], [ 4.570956, 46.97538 ], [ 4.573661, 46.97339 ], [ 4.591862, 46.967769 ], [ 4.589702, 46.957839 ], [ 4.595184, 46.952387 ], [ 4.599187, 46.950342 ], [ 4.613027, 46.94919 ], [ 4.617528, 46.944025 ], [ 4.614328, 46.94167 ], [ 4.644807, 46.940812 ], [ 4.64986, 46.94136 ], [ 4.652319, 46.93879 ], [ 4.678435, 46.93043 ], [ 4.679344, 46.927129 ], [ 4.665587, 46.915352 ], [ 4.666216, 46.91233 ], [ 4.682495, 46.90333 ], [ 4.68522, 46.900954 ], [ 4.708482, 46.90489 ], [ 4.712712, 46.90651 ], [ 4.719844, 46.916734 ], [ 4.718761, 46.919884 ], [ 4.725702, 46.92156 ], [ 4.72813, 46.919375 ], [ 4.740913, 46.92205 ], [ 4.744315, 46.924435 ], [ 4.755666, 46.91735 ], [ 4.76581, 46.918461 ], [ 4.770888, 46.9178 ], [ 4.775264, 46.917775 ], [ 4.779335, 46.91888 ], [ 4.790831, 46.925487 ], [ 4.788806, 46.93223 ], [ 4.80871, 46.930629 ], [ 4.816165, 46.932989 ], [ 4.816575, 46.93581 ], [ 4.866477, 46.94661 ], [ 4.870766, 46.94817 ], [ 4.893082, 46.9515 ], [ 4.89099, 46.957489 ], [ 4.896423, 46.96613 ], [ 4.910146, 46.9673 ], [ 4.914754, 46.96776 ], [ 4.943033, 46.96501 ], [ 4.952096, 46.96498 ], [ 4.955229, 46.9632 ], [ 4.964474, 46.96457 ], [ 4.967366, 46.961966 ], [ 4.999744, 46.95886 ], [ 5.004412, 46.958113 ], [ 5.00565, 46.95921 ], [ 5.00125, 46.959744 ], [ 4.996557, 46.96409 ], [ 5.003646, 46.97185 ], [ 5.018517, 46.97229 ], [ 5.029188, 46.979646 ], [ 5.044374, 46.98069 ], [ 5.049304, 46.981587 ], [ 5.054491, 46.9775 ], [ 5.057018, 46.97541 ], [ 5.06575, 46.96978 ], [ 5.065934, 46.96701 ], [ 5.070824, 46.967242 ], [ 5.074772, 46.96111 ], [ 5.101101, 46.954464 ], [ 5.097533, 46.94488 ], [ 5.100742, 46.94658 ], [ 5.103195, 46.948796 ], [ 5.106005, 46.95712 ], [ 5.118261, 46.96037 ], [ 5.120174, 46.96319 ], [ 5.138312, 46.96242 ], [ 5.145926, 46.96533 ], [ 5.150454, 46.96637 ], [ 5.164631, 46.96423 ], [ 5.181662, 46.974827 ], [ 5.189358, 46.97283 ], [ 5.192864, 46.97135 ], [ 5.198601, 46.9804 ], [ 5.201518, 46.9832 ], [ 5.208954, 46.982234 ], [ 5.212199, 46.98014 ], [ 5.220619, 46.98618 ], [ 5.222072, 46.988854 ], [ 5.242026, 46.981542 ], [ 5.255236, 46.979888 ], [ 5.263045, 46.953605 ], [ 5.26227, 46.950171 ], [ 5.251317, 46.94458 ], [ 5.26267, 46.937733 ], [ 5.26267, 46.930815 ], [ 5.262014, 46.927387 ], [ 5.270919, 46.92936 ], [ 5.275311, 46.9353 ], [ 5.287444, 46.94079 ], [ 5.292306, 46.9407 ], [ 5.307367, 46.93646 ], [ 5.308512, 46.926925 ], [ 5.310031, 46.92125 ], [ 5.31075, 46.91807 ], [ 5.312069, 46.911703 ], [ 5.313989, 46.90866 ], [ 5.328806, 46.895927 ], [ 5.328758, 46.889316 ], [ 5.335521, 46.884666 ], [ 5.341274, 46.8901 ], [ 5.35077, 46.892129 ], [ 5.360337, 46.88434 ], [ 5.377783, 46.88999 ], [ 5.382801, 46.891741 ], [ 5.387129, 46.893039 ], [ 5.391603, 46.894072 ], [ 5.392627, 46.891384 ], [ 5.403681, 46.889389 ], [ 5.400587, 46.88273 ], [ 5.404005, 46.86888 ], [ 5.420118, 46.860579 ], [ 5.425168, 46.85986 ], [ 5.428179, 46.860238 ], [ 5.431176, 46.8606 ], [ 5.442352, 46.854479 ], [ 5.445188, 46.85941 ], [ 5.454209, 46.85592 ], [ 5.459286, 46.85524 ], [ 5.457796, 46.84527 ], [ 5.464207, 46.84017 ], [ 5.459748, 46.83418 ], [ 5.463195, 46.82858 ], [ 5.416653, 46.826782 ], [ 5.413464, 46.828263 ], [ 5.410217, 46.83258 ], [ 5.405169, 46.8324 ], [ 5.386981, 46.826825 ], [ 5.382143, 46.82784 ], [ 5.378666, 46.827574 ], [ 5.375268, 46.82699 ], [ 5.371185, 46.825152 ], [ 5.351119, 46.816088 ], [ 5.344929, 46.82101 ], [ 5.335836, 46.820732 ], [ 5.333584, 46.817814 ], [ 5.328584, 46.812916 ], [ 5.331173, 46.81027 ], [ 5.332496, 46.797713 ], [ 5.341506, 46.790692 ], [ 5.346456, 46.790222 ], [ 5.355051, 46.79094 ], [ 5.370807, 46.78352 ], [ 5.37375, 46.77707 ], [ 5.383425, 46.77553 ], [ 5.390248, 46.770592 ], [ 5.390112, 46.7672 ], [ 5.371518, 46.75152 ], [ 5.36676, 46.752396 ], [ 5.362002, 46.733117 ], [ 5.365725, 46.73107 ], [ 5.393641, 46.72863 ], [ 5.390789, 46.72636 ], [ 5.395908, 46.7156 ], [ 5.395012, 46.712507 ], [ 5.406642, 46.703931 ], [ 5.408349, 46.69844 ], [ 5.406696, 46.6954 ], [ 5.395359, 46.68505 ], [ 5.398501, 46.68268 ], [ 5.42209, 46.673032 ], [ 5.420175, 46.670009 ], [ 5.424647, 46.66464 ], [ 5.424814, 46.661344 ], [ 5.427103, 46.660161 ], [ 5.422912, 46.65831 ], [ 5.415008, 46.654146 ], [ 5.440601, 46.63791 ], [ 5.440623, 46.634902 ], [ 5.43349, 46.627757 ], [ 5.429678, 46.625847 ], [ 5.41379, 46.61464 ], [ 5.408583, 46.614554 ], [ 5.398593, 46.612719 ], [ 5.400092, 46.60937 ], [ 5.411943, 46.59863 ], [ 5.404691, 46.58211 ], [ 5.400427, 46.580232 ], [ 5.375536, 46.58016 ], [ 5.370666, 46.58053 ], [ 5.362124, 46.57727 ], [ 5.364614, 46.57504 ], [ 5.36788, 46.56695 ], [ 5.364888, 46.564513 ], [ 5.357651, 46.560563 ], [ 5.362579, 46.551642 ], [ 5.361582, 46.54823 ], [ 5.360073, 46.52424 ], [ 5.359459, 46.52364 ], [ 5.362852, 46.51791 ], [ 5.382494, 46.51557 ], [ 5.392428, 46.50821 ], [ 5.395657, 46.50569 ], [ 5.407571, 46.50041 ], [ 5.421173, 46.500302 ], [ 5.419959, 46.4809 ], [ 5.420044, 46.48018 ], [ 5.41843, 46.477298 ], [ 5.413803, 46.472045 ], [ 5.398099, 46.466601 ], [ 5.39358, 46.467596 ], [ 5.385312, 46.470544 ], [ 5.376345, 46.463127 ], [ 5.37379, 46.460451 ], [ 5.323351, 46.46251 ], [ 5.323147, 46.45648 ], [ 5.321799, 46.453601 ], [ 5.313215, 46.4525 ], [ 5.310561, 46.44677 ], [ 5.273677, 46.44859 ], [ 5.269653, 46.450226 ], [ 5.256271, 46.45188 ], [ 5.248004, 46.45937 ], [ 5.243864, 46.46046 ], [ 5.236259, 46.45778 ], [ 5.233384, 46.46045 ], [ 5.224698, 46.46835 ], [ 5.215064, 46.46836 ], [ 5.21528, 46.47176 ], [ 5.213031, 46.481541 ], [ 5.206685, 46.486177 ], [ 5.209481, 46.492105 ], [ 5.200343, 46.50257 ], [ 5.203565, 46.504803 ], [ 5.201221, 46.50782 ], [ 5.181672, 46.50998 ], [ 5.165839, 46.517675 ], [ 5.164303, 46.50462 ], [ 5.141168, 46.508484 ], [ 5.13403, 46.50145 ], [ 5.129066, 46.50092 ], [ 5.112817, 46.49296 ], [ 5.095259, 46.49798 ], [ 5.071449, 46.48582 ], [ 5.054751, 46.48428 ], [ 5.0509, 46.48625 ], [ 5.014233, 46.50045 ], [ 5.012448, 46.50297 ], [ 5.010594, 46.51107 ], [ 5.006369, 46.509703 ], [ 4.980216, 46.515203 ], [ 4.970038, 46.51409 ], [ 4.962656, 46.50655 ], [ 4.952797, 46.50447 ], [ 4.947369, 46.50843 ], [ 4.947245, 46.51445 ], [ 4.934745, 46.51332 ], [ 4.933592, 46.51245 ], [ 4.931736, 46.509791 ], [ 4.929616, 46.50408 ], [ 4.928837, 46.501589 ], [ 4.927682, 46.499168 ], [ 4.925241, 46.49615 ], [ 4.915896, 46.48819 ], [ 4.914522, 46.481374 ], [ 4.91453, 46.480113 ], [ 4.915024, 46.47711 ], [ 4.914448, 46.46216 ], [ 4.912497, 46.459323 ], [ 4.894444, 46.445374 ], [ 4.892887, 46.44257 ], [ 4.891797, 46.438555 ], [ 4.891523, 46.430291 ], [ 4.891532, 46.42752 ], [ 4.891047, 46.424056 ], [ 4.889934, 46.417121 ], [ 4.887496, 46.402732 ], [ 4.88495, 46.399883 ], [ 4.873919, 46.38499 ], [ 4.86776, 46.37806 ], [ 4.865691, 46.37576 ], [ 4.86312, 46.37326 ], [ 4.85853, 46.36802 ], [ 4.856454, 46.365123 ], [ 4.850912, 46.352864 ], [ 4.85239, 46.34617 ], [ 4.852652, 46.34279 ], [ 4.853156, 46.329247 ], [ 4.851423, 46.32608 ], [ 4.849389, 46.32322 ], [ 4.841217, 46.311805 ], [ 4.839228, 46.308684 ], [ 4.832926, 46.29944 ], [ 4.826332, 46.27591 ], [ 4.824739, 46.272934 ], [ 4.816488, 46.2654 ], [ 4.811341, 46.260583 ], [ 4.810817, 46.25455 ], [ 4.810798, 46.251233 ], [ 4.808184, 46.238106 ], [ 4.800741, 46.229658 ], [ 4.797847, 46.224543 ], [ 4.79551, 46.22014 ], [ 4.79428, 46.217051 ], [ 4.792735, 46.20751 ], [ 4.792327, 46.200968 ], [ 4.780203, 46.18675 ], [ 4.780213, 46.176677 ], [ 4.775494, 46.177093 ], [ 4.771584, 46.17564 ], [ 4.763197, 46.1757 ], [ 4.75959, 46.173603 ], [ 4.733118, 46.177792 ], [ 4.724376, 46.18431 ], [ 4.720362, 46.193577 ], [ 4.721489, 46.19684 ], [ 4.721501, 46.20013 ], [ 4.735682, 46.2117 ], [ 4.731773, 46.21322 ], [ 4.720018, 46.2285 ], [ 4.733016, 46.22751 ], [ 4.736181, 46.233202 ], [ 4.720694, 46.24426 ], [ 4.708899, 46.248584 ], [ 4.705377, 46.250961 ], [ 4.690873, 46.24965 ], [ 4.681228, 46.257301 ], [ 4.680571, 46.267218 ], [ 4.68457, 46.26593 ], [ 4.694068, 46.271512 ], [ 4.700696, 46.267477 ], [ 4.707417, 46.269764 ], [ 4.710054, 46.278947 ], [ 4.70748, 46.2847 ], [ 4.703249, 46.284841 ], [ 4.693884, 46.29454 ], [ 4.69295, 46.297099 ], [ 4.693436, 46.30232 ], [ 4.679741, 46.304518 ], [ 4.664478, 46.29662 ], [ 4.653189, 46.303177 ], [ 4.638725, 46.30142 ], [ 4.635777, 46.291918 ], [ 4.617019, 46.28062 ], [ 4.620162, 46.277956 ], [ 4.618565, 46.264793 ], [ 4.614456, 46.2664 ], [ 4.586527, 46.26836 ], [ 4.582672, 46.270215 ], [ 4.572725, 46.277045 ], [ 4.572161, 46.28998 ], [ 4.570273, 46.293029 ], [ 4.557841, 46.293993 ], [ 4.555437, 46.29126 ], [ 4.54809, 46.28323 ], [ 4.54645, 46.27392 ], [ 4.542343, 46.27197 ], [ 4.504001, 46.267139 ], [ 4.501484, 46.270072 ], [ 4.488465, 46.28799 ], [ 4.483775, 46.287065 ], [ 4.475428, 46.2844 ], [ 4.462188, 46.29402 ], [ 4.453248, 46.29644 ], [ 4.439452, 46.29306 ], [ 4.437717, 46.296284 ], [ 4.427039, 46.30283 ], [ 4.424387, 46.2963 ], [ 4.410616, 46.29534 ], [ 4.405814, 46.296061 ], [ 4.407092, 46.292739 ], [ 4.398757, 46.284322 ], [ 4.396364, 46.274544 ], [ 4.396451, 46.271841 ], [ 4.396835, 46.266523 ], [ 4.388286, 46.24791 ], [ 4.385568, 46.246162 ], [ 4.386217, 46.225674 ], [ 4.38808, 46.21979 ] ], [ [ 5.444408, 46.84535 ], [ 5.445157, 46.845637 ], [ 5.445922, 46.84544 ], [ 5.446746, 46.84595 ], [ 5.447838, 46.8457 ], [ 5.448476, 46.84645 ], [ 5.447832, 46.84673 ], [ 5.448702, 46.847976 ], [ 5.447391, 46.848013 ], [ 5.446155, 46.84943 ], [ 5.442904, 46.849838 ], [ 5.443689, 46.85095 ], [ 5.441991, 46.85113 ], [ 5.441975, 46.85194 ], [ 5.441712, 46.85194 ], [ 5.441095, 46.851651 ], [ 5.440312, 46.850586 ], [ 5.43983, 46.84893 ], [ 5.440846, 46.848458 ], [ 5.442092, 46.84842 ], [ 5.440782, 46.846162 ], [ 5.443001, 46.84588 ], [ 5.444408, 46.84535 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "73", "CODE_DEPT": "72", "NOM_DEPT": "SARTHE", "CODE_CHF": "181", "NOM_CHF": "LE MANS", "X_CHF_LIEU": "4909", "Y_CHF_LIEU": "67707", "X_CENTROID": "4928", "Y_CENTROID": "67696", "CODE_REG": "52", "NOM_REGION": "PAYS-DE-LA-LOIRE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.614431, 47.69421 ], [ 0.61868, 47.69226 ], [ 0.612683, 47.682913 ], [ 0.588942, 47.670053 ], [ 0.558792, 47.670796 ], [ 0.559603, 47.66617 ], [ 0.555785, 47.66397 ], [ 0.545247, 47.65717 ], [ 0.525724, 47.653936 ], [ 0.516741, 47.65622 ], [ 0.498418, 47.64476 ], [ 0.493419, 47.64508 ], [ 0.478496, 47.644182 ], [ 0.47545, 47.64688 ], [ 0.461177, 47.643806 ], [ 0.459238, 47.640594 ], [ 0.451411, 47.62146 ], [ 0.431741, 47.618316 ], [ 0.426615, 47.617726 ], [ 0.39625, 47.640855 ], [ 0.391499, 47.641 ], [ 0.382788, 47.643103 ], [ 0.381437, 47.639677 ], [ 0.364557, 47.62207 ], [ 0.373233, 47.61334 ], [ 0.382414, 47.60998 ], [ 0.395085, 47.594583 ], [ 0.3968, 47.59136 ], [ 0.402577, 47.578512 ], [ 0.397913, 47.57753 ], [ 0.378484, 47.56853 ], [ 0.37466, 47.57051 ], [ 0.339107, 47.57974 ], [ 0.339494, 47.583179 ], [ 0.322104, 47.595237 ], [ 0.275412, 47.5991 ], [ 0.259115, 47.612301 ], [ 0.25456, 47.61203 ], [ 0.232709, 47.61089 ], [ 0.230002, 47.608398 ], [ 0.226382, 47.61064 ], [ 0.212617, 47.611785 ], [ 0.209402, 47.60552 ], [ 0.204544, 47.605972 ], [ 0.201909, 47.615582 ], [ 0.197801, 47.61545 ], [ 0.185834, 47.616547 ], [ 0.183976, 47.599011 ], [ 0.176229, 47.59441 ], [ 0.161129, 47.592413 ], [ 0.148488, 47.5813 ], [ 0.144174, 47.583055 ], [ 0.134245, 47.59442 ], [ 0.120352, 47.596 ], [ 0.115651, 47.605628 ], [ 0.110628, 47.6059 ], [ 0.095772, 47.603325 ], [ 0.071017, 47.60812 ], [ 0.06224, 47.60448 ], [ 0.052261, 47.60622 ], [ 0.034202, 47.61842 ], [ 0.009923, 47.623775 ], [ 0.009393, 47.626815 ], [ 0.012965, 47.62869 ], [ -0.001037, 47.645238 ], [ -0.004508, 47.647688 ], [ -0.017114, 47.63914 ], [ -0.020286, 47.63702 ], [ -0.026745, 47.646349 ], [ -0.052378, 47.64868 ], [ -0.074508, 47.657487 ], [ -0.092424, 47.65101 ], [ -0.09248, 47.65426 ], [ -0.094554, 47.660605 ], [ -0.09905, 47.66179 ], [ -0.105482, 47.65708 ], [ -0.113835, 47.64532 ], [ -0.1141, 47.635476 ], [ -0.127846, 47.63671 ], [ -0.134502, 47.632489 ], [ -0.138798, 47.63417 ], [ -0.147524, 47.63613 ], [ -0.158952, 47.647045 ], [ -0.163713, 47.645961 ], [ -0.193158, 47.64793 ], [ -0.196697, 47.650036 ], [ -0.196659, 47.662739 ], [ -0.199473, 47.665634 ], [ -0.215838, 47.682922 ], [ -0.217688, 47.692798 ], [ -0.203437, 47.693883 ], [ -0.184352, 47.705395 ], [ -0.18346, 47.71213 ], [ -0.173406, 47.713412 ], [ -0.175301, 47.716315 ], [ -0.184536, 47.716064 ], [ -0.193568, 47.723339 ], [ -0.202373, 47.725242 ], [ -0.205739, 47.72261 ], [ -0.236766, 47.704631 ], [ -0.256663, 47.7081 ], [ -0.287627, 47.71913 ], [ -0.29153, 47.717705 ], [ -0.309075, 47.71734 ], [ -0.314076, 47.71791 ], [ -0.333663, 47.72094 ], [ -0.35113, 47.71444 ], [ -0.365826, 47.71612 ], [ -0.364226, 47.71933 ], [ -0.358295, 47.731968 ], [ -0.373778, 47.73987 ], [ -0.37253, 47.743144 ], [ -0.375467, 47.74566 ], [ -0.379706, 47.751206 ], [ -0.376992, 47.760212 ], [ -0.381704, 47.76057 ], [ -0.375843, 47.7659 ], [ -0.378805, 47.779096 ], [ -0.38008, 47.782338 ], [ -0.385203, 47.801288 ], [ -0.387144, 47.804268 ], [ -0.388201, 47.805319 ], [ -0.416994, 47.802672 ], [ -0.430168, 47.80707 ], [ -0.43408, 47.80905 ], [ -0.444321, 47.82986 ], [ -0.447914, 47.832035 ], [ -0.432478, 47.84078 ], [ -0.425496, 47.84934 ], [ -0.41099, 47.846637 ], [ -0.413312, 47.854866 ], [ -0.41203, 47.85763 ], [ -0.374966, 47.85761 ], [ -0.377995, 47.86672 ], [ -0.37161, 47.87179 ], [ -0.37087, 47.87511 ], [ -0.376839, 47.88727 ], [ -0.386293, 47.88852 ], [ -0.391195, 47.88916 ], [ -0.392576, 47.89233 ], [ -0.406808, 47.893691 ], [ -0.41104, 47.89536 ], [ -0.404047, 47.90035 ], [ -0.409521, 47.913196 ], [ -0.412853, 47.915837 ], [ -0.397652, 47.91827 ], [ -0.388983, 47.929185 ], [ -0.38484, 47.93084 ], [ -0.338703, 47.9325 ], [ -0.325124, 47.9361 ], [ -0.319993, 47.9353 ], [ -0.31392, 47.93828 ], [ -0.311674, 47.940308 ], [ -0.294033, 47.94549 ], [ -0.280183, 47.957819 ], [ -0.284638, 47.95917 ], [ -0.288351, 47.9613 ], [ -0.293238, 47.96204 ], [ -0.300459, 47.96666 ], [ -0.299537, 47.97663 ], [ -0.312033, 47.99435 ], [ -0.312453, 48.00107 ], [ -0.308526, 48.00565 ], [ -0.308993, 48.005604 ], [ -0.338154, 48.012139 ], [ -0.334475, 48.032374 ], [ -0.340504, 48.044065 ], [ -0.334153, 48.04859 ], [ -0.330357, 48.05038 ], [ -0.316466, 48.04586 ], [ -0.282795, 48.05629 ], [ -0.286069, 48.0584 ], [ -0.274233, 48.06446 ], [ -0.235426, 48.06046 ], [ -0.230942, 48.05898 ], [ -0.226776, 48.068421 ], [ -0.225994, 48.07168 ], [ -0.22338, 48.07841 ], [ -0.232358, 48.081714 ], [ -0.236383, 48.08753 ], [ -0.234647, 48.09782 ], [ -0.216521, 48.109706 ], [ -0.216316, 48.1132 ], [ -0.223729, 48.119848 ], [ -0.222963, 48.12272 ], [ -0.241139, 48.126954 ], [ -0.243429, 48.1327 ], [ -0.249608, 48.134961 ], [ -0.253808, 48.136529 ], [ -0.238886, 48.1488 ], [ -0.248305, 48.15491 ], [ -0.250213, 48.157918 ], [ -0.246636, 48.16015 ], [ -0.222508, 48.171953 ], [ -0.189927, 48.18131 ], [ -0.185908, 48.183438 ], [ -0.181799, 48.18832 ], [ -0.178705, 48.190386 ], [ -0.164727, 48.199614 ], [ -0.151311, 48.203674 ], [ -0.146837, 48.20501 ], [ -0.152524, 48.21383 ], [ -0.148927, 48.219703 ], [ -0.145406, 48.2219 ], [ -0.157622, 48.23619 ], [ -0.160959, 48.238806 ], [ -0.16458, 48.25916 ], [ -0.15234, 48.2732 ], [ -0.149973, 48.276253 ], [ -0.15104, 48.2774 ], [ -0.149338, 48.28368 ], [ -0.138609, 48.29495 ], [ -0.142301, 48.30842 ], [ -0.148392, 48.313897 ], [ -0.151639, 48.314018 ], [ -0.154882, 48.31408 ], [ -0.155774, 48.31747 ], [ -0.157998, 48.334522 ], [ -0.152716, 48.343046 ], [ -0.148068, 48.344142 ], [ -0.126558, 48.33926 ], [ -0.12222, 48.33831 ], [ -0.132777, 48.34571 ], [ -0.136317, 48.362723 ], [ -0.117513, 48.368262 ], [ -0.112164, 48.374246 ], [ -0.092307, 48.37461 ], [ -0.078791, 48.3702 ], [ -0.069332, 48.377848 ], [ -0.060081, 48.377503 ], [ -0.054531, 48.382003 ], [ -0.049672, 48.37513 ], [ -0.051402, 48.37816 ], [ -0.022101, 48.38779 ], [ -0.02017, 48.39393 ], [ -0.001245, 48.39727 ], [ 0.00337, 48.395996 ], [ 0.005246, 48.38964 ], [ 0.01868, 48.38158 ], [ 0.023083, 48.38021 ], [ 0.035453, 48.38038 ], [ 0.039682, 48.38041 ], [ 0.062524, 48.383028 ], [ 0.054482, 48.39148 ], [ 0.064199, 48.40338 ], [ 0.067362, 48.40606 ], [ 0.079721, 48.408733 ], [ 0.083781, 48.41013 ], [ 0.083677, 48.411027 ], [ 0.099434, 48.41096 ], [ 0.109346, 48.42302 ], [ 0.111593, 48.43232 ], [ 0.117659, 48.436164 ], [ 0.121836, 48.435978 ], [ 0.125777, 48.43417 ], [ 0.148697, 48.43711 ], [ 0.153319, 48.43794 ], [ 0.158318, 48.443078 ], [ 0.154882, 48.4453 ], [ 0.145863, 48.45217 ], [ 0.143925, 48.454948 ], [ 0.152522, 48.45663 ], [ 0.169081, 48.44948 ], [ 0.173647, 48.45088 ], [ 0.170289, 48.4572 ], [ 0.172327, 48.46383 ], [ 0.186797, 48.46281 ], [ 0.191952, 48.46234 ], [ 0.194949, 48.463745 ], [ 0.213565, 48.47283 ], [ 0.217968, 48.473801 ], [ 0.221658, 48.47314 ], [ 0.225463, 48.47286 ], [ 0.258785, 48.47664 ], [ 0.26165, 48.47934 ], [ 0.262725, 48.482862 ], [ 0.266806, 48.48458 ], [ 0.278804, 48.48089 ], [ 0.283555, 48.48145 ], [ 0.297909, 48.479816 ], [ 0.30963, 48.473286 ], [ 0.314738, 48.473194 ], [ 0.324524, 48.471903 ], [ 0.33683, 48.46282 ], [ 0.340997, 48.460977 ], [ 0.345224, 48.45927 ], [ 0.350087, 48.45865 ], [ 0.35289, 48.45969 ], [ 0.363205, 48.45156 ], [ 0.367697, 48.44131 ], [ 0.367808, 48.43774 ], [ 0.373314, 48.43287 ], [ 0.376012, 48.43031 ], [ 0.381725, 48.42479 ], [ 0.379512, 48.414919 ], [ 0.372679, 48.41013 ], [ 0.375708, 48.390098 ], [ 0.373864, 48.38697 ], [ 0.37678, 48.3854 ], [ 0.378659, 48.38323 ], [ 0.380868, 48.37279 ], [ 0.380557, 48.36928 ], [ 0.387348, 48.350595 ], [ 0.387484, 48.34731 ], [ 0.384251, 48.34307 ], [ 0.380633, 48.34306 ], [ 0.383907, 48.33288 ], [ 0.395362, 48.32129 ], [ 0.408565, 48.316323 ], [ 0.415531, 48.32149 ], [ 0.426281, 48.31752 ], [ 0.427652, 48.31486 ], [ 0.429965, 48.30868 ], [ 0.438486, 48.306046 ], [ 0.442805, 48.30464 ], [ 0.46327, 48.30528 ], [ 0.475989, 48.30005 ], [ 0.491583, 48.30716 ], [ 0.505824, 48.293658 ], [ 0.497806, 48.289797 ], [ 0.494423, 48.283488 ], [ 0.512572, 48.26759 ], [ 0.525809, 48.26595 ], [ 0.530307, 48.2655 ], [ 0.53656, 48.25978 ], [ 0.537331, 48.252801 ], [ 0.537336, 48.24924 ], [ 0.546795, 48.250162 ], [ 0.574411, 48.244917 ], [ 0.579192, 48.244412 ], [ 0.593727, 48.24455 ], [ 0.613135, 48.24273 ], [ 0.622457, 48.244921 ], [ 0.630203, 48.24078 ], [ 0.631908, 48.23462 ], [ 0.635062, 48.235515 ], [ 0.63848, 48.235611 ], [ 0.631421, 48.251466 ], [ 0.631907, 48.254761 ], [ 0.642751, 48.26154 ], [ 0.652469, 48.26339 ], [ 0.679097, 48.25508 ], [ 0.683916, 48.254 ], [ 0.687394, 48.24078 ], [ 0.72035, 48.20628 ], [ 0.72026, 48.202768 ], [ 0.723637, 48.19814 ], [ 0.732119, 48.19816 ], [ 0.73863, 48.18919 ], [ 0.751105, 48.183916 ], [ 0.755327, 48.18211 ], [ 0.759209, 48.18009 ], [ 0.793203, 48.19307 ], [ 0.797655, 48.19446 ], [ 0.797528, 48.188167 ], [ 0.81124, 48.18472 ], [ 0.82786, 48.173039 ], [ 0.833111, 48.16904 ], [ 0.83656, 48.16762 ], [ 0.840574, 48.16553 ], [ 0.860645, 48.16665 ], [ 0.884466, 48.16184 ], [ 0.909365, 48.15007 ], [ 0.911465, 48.146968 ], [ 0.90961, 48.14353 ], [ 0.91665, 48.138941 ], [ 0.914338, 48.13585 ], [ 0.850372, 48.13308 ], [ 0.855009, 48.12386 ], [ 0.843301, 48.10601 ], [ 0.841217, 48.10306 ], [ 0.837246, 48.100919 ], [ 0.817906, 48.09768 ], [ 0.816151, 48.094634 ], [ 0.830283, 48.09114 ], [ 0.84501, 48.092771 ], [ 0.843023, 48.07264 ], [ 0.838376, 48.0713 ], [ 0.793995, 48.06944 ], [ 0.794879, 48.046931 ], [ 0.797551, 48.03725 ], [ 0.807136, 48.03659 ], [ 0.813335, 48.03145 ], [ 0.838332, 48.03261 ], [ 0.840591, 48.01901 ], [ 0.835775, 48.00914 ], [ 0.830555, 47.99605 ], [ 0.820383, 47.98803 ], [ 0.824356, 47.98174 ], [ 0.829036, 47.97258 ], [ 0.836839, 47.968938 ], [ 0.842824, 47.956598 ], [ 0.845574, 47.9539 ], [ 0.848378, 47.94393 ], [ 0.845193, 47.94119 ], [ 0.816349, 47.934277 ], [ 0.810811, 47.91816 ], [ 0.815816, 47.895158 ], [ 0.816836, 47.891827 ], [ 0.813238, 47.889483 ], [ 0.797868, 47.89796 ], [ 0.794073, 47.907436 ], [ 0.786998, 47.911751 ], [ 0.768069, 47.901399 ], [ 0.763737, 47.899975 ], [ 0.759813, 47.89809 ], [ 0.757341, 47.884682 ], [ 0.76353, 47.86516 ], [ 0.759165, 47.85923 ], [ 0.770099, 47.852747 ], [ 0.773852, 47.85065 ], [ 0.774046, 47.8406 ], [ 0.768413, 47.83111 ], [ 0.758989, 47.83358 ], [ 0.756337, 47.830822 ], [ 0.747692, 47.827838 ], [ 0.740279, 47.81256 ], [ 0.73379, 47.807699 ], [ 0.730115, 47.805476 ], [ 0.712824, 47.79049 ], [ 0.711896, 47.78721 ], [ 0.702679, 47.78965 ], [ 0.691748, 47.78353 ], [ 0.702633, 47.76967 ], [ 0.697354, 47.764192 ], [ 0.692446, 47.76435 ], [ 0.674985, 47.76877 ], [ 0.670962, 47.767308 ], [ 0.6512, 47.75512 ], [ 0.650273, 47.754928 ], [ 0.646097, 47.75305 ], [ 0.626331, 47.75136 ], [ 0.6199, 47.746174 ], [ 0.61795, 47.736635 ], [ 0.610668, 47.732038 ], [ 0.611604, 47.72814 ], [ 0.608728, 47.725299 ], [ 0.594084, 47.723035 ], [ 0.580508, 47.71283 ], [ 0.580315, 47.712378 ], [ 0.592798, 47.70218 ], [ 0.595902, 47.689251 ], [ 0.60454, 47.686681 ], [ 0.611211, 47.691663 ], [ 0.614431, 47.69421 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "74", "CODE_DEPT": "73", "NOM_DEPT": "SAVOIE", "CODE_CHF": "065", "NOM_CHF": "CHAMBERY", "X_CHF_LIEU": "9277", "Y_CHF_LIEU": "65005", "X_CENTROID": "9689", "Y_CENTROID": "64923", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.629987, 45.109327 ], [ 6.626688, 45.111841 ], [ 6.61353, 45.120957 ], [ 6.589941, 45.1192 ], [ 6.576531, 45.1231 ], [ 6.57357, 45.120596 ], [ 6.563908, 45.11382 ], [ 6.561367, 45.10731 ], [ 6.540052, 45.09953 ], [ 6.530287, 45.099065 ], [ 6.510423, 45.109 ], [ 6.507778, 45.105994 ], [ 6.487117, 45.09613 ], [ 6.481725, 45.09045 ], [ 6.488729, 45.070181 ], [ 6.487082, 45.05641 ], [ 6.482138, 45.05625 ], [ 6.453124, 45.05237 ], [ 6.43487, 45.063 ], [ 6.420353, 45.06122 ], [ 6.406143, 45.06425 ], [ 6.396888, 45.061989 ], [ 6.364878, 45.070171 ], [ 6.367174, 45.07326 ], [ 6.374601, 45.082295 ], [ 6.362713, 45.105032 ], [ 6.334233, 45.122939 ], [ 6.332876, 45.11962 ], [ 6.317031, 45.111934 ], [ 6.293342, 45.108636 ], [ 6.276888, 45.114933 ], [ 6.260566, 45.12685 ], [ 6.265355, 45.13668 ], [ 6.26149, 45.14289 ], [ 6.249773, 45.149197 ], [ 6.222062, 45.14258 ], [ 6.207805, 45.156639 ], [ 6.180992, 45.16486 ], [ 6.17683, 45.1629 ], [ 6.169033, 45.154124 ], [ 6.164686, 45.15316 ], [ 6.16117, 45.151103 ], [ 6.14379, 45.154559 ], [ 6.146321, 45.16399 ], [ 6.160589, 45.181804 ], [ 6.161919, 45.188407 ], [ 6.159013, 45.202349 ], [ 6.13968, 45.213059 ], [ 6.139861, 45.2233 ], [ 6.128797, 45.230423 ], [ 6.12714, 45.2409 ], [ 6.125696, 45.24427 ], [ 6.139436, 45.25834 ], [ 6.130815, 45.284534 ], [ 6.142406, 45.295401 ], [ 6.141243, 45.298786 ], [ 6.152869, 45.303632 ], [ 6.15778, 45.312315 ], [ 6.179716, 45.317804 ], [ 6.184451, 45.31796 ], [ 6.185237, 45.33035 ], [ 6.187807, 45.333065 ], [ 6.191427, 45.33961 ], [ 6.194759, 45.352251 ], [ 6.190649, 45.3539 ], [ 6.176652, 45.35523 ], [ 6.170009, 45.359542 ], [ 6.175046, 45.35955 ], [ 6.190269, 45.368 ], [ 6.175458, 45.394101 ], [ 6.146025, 45.413288 ], [ 6.130143, 45.43503 ], [ 6.121315, 45.438284 ], [ 6.102561, 45.43368 ], [ 6.098749, 45.432349 ], [ 6.094509, 45.432052 ], [ 6.094585, 45.43549 ], [ 6.094287, 45.442322 ], [ 6.090016, 45.444008 ], [ 6.085559, 45.443059 ], [ 6.076276, 45.44325 ], [ 6.067078, 45.444052 ], [ 6.054414, 45.44074 ], [ 6.049236, 45.437807 ], [ 6.045157, 45.43952 ], [ 6.007789, 45.454111 ], [ 6.011361, 45.458827 ], [ 6.009951, 45.46518 ], [ 6.009027, 45.471992 ], [ 5.990198, 45.476244 ], [ 5.979432, 45.487803 ], [ 5.971015, 45.4914 ], [ 5.915827, 45.47661 ], [ 5.91537, 45.47645 ], [ 5.917251, 45.47324 ], [ 5.925239, 45.4649 ], [ 5.920589, 45.444413 ], [ 5.913134, 45.435534 ], [ 5.904455, 45.432308 ], [ 5.904884, 45.43 ], [ 5.903168, 45.4231 ], [ 5.906359, 45.409993 ], [ 5.923503, 45.41293 ], [ 5.91089, 45.394152 ], [ 5.894443, 45.38801 ], [ 5.891003, 45.389242 ], [ 5.891188, 45.39279 ], [ 5.890609, 45.399858 ], [ 5.879282, 45.40687 ], [ 5.859585, 45.409908 ], [ 5.854303, 45.41592 ], [ 5.835269, 45.42023 ], [ 5.834628, 45.4202 ], [ 5.829773, 45.421099 ], [ 5.811361, 45.425382 ], [ 5.796363, 45.43807 ], [ 5.782462, 45.441105 ], [ 5.763387, 45.43922 ], [ 5.760698, 45.43636 ], [ 5.757658, 45.434925 ], [ 5.753097, 45.43507 ], [ 5.739988, 45.43758 ], [ 5.739125, 45.440857 ], [ 5.732183, 45.452721 ], [ 5.736531, 45.47186 ], [ 5.733757, 45.474568 ], [ 5.719744, 45.483396 ], [ 5.719338, 45.48635 ], [ 5.713964, 45.497484 ], [ 5.712079, 45.500593 ], [ 5.701047, 45.51769 ], [ 5.695685, 45.519963 ], [ 5.69125, 45.52181 ], [ 5.691109, 45.527893 ], [ 5.677133, 45.53099 ], [ 5.67211, 45.54009 ], [ 5.673337, 45.54346 ], [ 5.676788, 45.54164 ], [ 5.681071, 45.54139 ], [ 5.673318, 45.549987 ], [ 5.675183, 45.55277 ], [ 5.67121, 45.55468 ], [ 5.671145, 45.561328 ], [ 5.646909, 45.57702 ], [ 5.645896, 45.58294 ], [ 5.640001, 45.58713 ], [ 5.637656, 45.589626 ], [ 5.624088, 45.60338 ], [ 5.622591, 45.609989 ], [ 5.623748, 45.61327 ], [ 5.627389, 45.611 ], [ 5.635454, 45.61404 ], [ 5.636372, 45.617397 ], [ 5.638412, 45.623025 ], [ 5.646456, 45.624764 ], [ 5.648328, 45.627405 ], [ 5.652818, 45.636679 ], [ 5.676337, 45.638059 ], [ 5.684695, 45.64143 ], [ 5.687901, 45.643964 ], [ 5.68945, 45.65048 ], [ 5.687844, 45.65364 ], [ 5.684166, 45.660199 ], [ 5.68564, 45.667012 ], [ 5.709199, 45.684927 ], [ 5.706277, 45.6951 ], [ 5.703726, 45.69815 ], [ 5.699897, 45.706901 ], [ 5.700599, 45.709948 ], [ 5.723288, 45.708167 ], [ 5.727741, 45.70927 ], [ 5.731321, 45.710153 ], [ 5.744182, 45.706263 ], [ 5.753456, 45.7068 ], [ 5.776366, 45.72792 ], [ 5.771226, 45.73755 ], [ 5.769679, 45.740816 ], [ 5.776639, 45.74258 ], [ 5.780427, 45.74292 ], [ 5.783592, 45.745204 ], [ 5.779509, 45.758712 ], [ 5.782612, 45.768944 ], [ 5.783047, 45.772465 ], [ 5.780056, 45.77802 ], [ 5.781383, 45.78084 ], [ 5.784591, 45.797224 ], [ 5.785319, 45.820075 ], [ 5.786934, 45.823224 ], [ 5.79213, 45.8281 ], [ 5.79585, 45.8298 ], [ 5.801109, 45.845796 ], [ 5.805399, 45.857881 ], [ 5.807525, 45.86064 ], [ 5.813809, 45.87385 ], [ 5.815154, 45.877201 ], [ 5.824882, 45.900386 ], [ 5.826317, 45.903693 ], [ 5.828998, 45.91696 ], [ 5.821881, 45.929241 ], [ 5.826116, 45.935262 ], [ 5.829631, 45.93758 ], [ 5.840286, 45.932321 ], [ 5.862078, 45.9322 ], [ 5.864867, 45.922258 ], [ 5.865804, 45.918936 ], [ 5.862625, 45.916638 ], [ 5.865741, 45.904079 ], [ 5.866816, 45.89869 ], [ 5.875603, 45.866983 ], [ 5.876087, 45.86341 ], [ 5.877123, 45.84816 ], [ 5.873424, 45.839042 ], [ 5.877809, 45.833884 ], [ 5.881238, 45.831409 ], [ 5.884466, 45.82633 ], [ 5.903836, 45.825558 ], [ 5.904711, 45.81182 ], [ 5.911823, 45.807168 ], [ 5.913953, 45.80406 ], [ 5.923117, 45.8051 ], [ 5.933251, 45.8113 ], [ 5.934122, 45.814602 ], [ 5.947964, 45.81052 ], [ 5.957776, 45.81207 ], [ 5.962785, 45.812735 ], [ 5.957448, 45.79802 ], [ 5.958068, 45.79492 ], [ 5.976022, 45.795815 ], [ 5.98055, 45.79617 ], [ 5.982179, 45.783163 ], [ 5.97306, 45.7719 ], [ 5.974033, 45.76869 ], [ 5.990146, 45.76451 ], [ 5.994261, 45.763216 ], [ 5.99667, 45.760404 ], [ 5.993197, 45.75094 ], [ 5.993806, 45.74769 ], [ 6.007549, 45.750715 ], [ 6.038005, 45.740878 ], [ 6.042253, 45.739259 ], [ 6.05508, 45.749194 ], [ 6.077005, 45.740947 ], [ 6.09133, 45.743934 ], [ 6.096133, 45.74282 ], [ 6.097173, 45.733599 ], [ 6.101762, 45.734194 ], [ 6.102219, 45.76022 ], [ 6.103134, 45.763445 ], [ 6.126279, 45.7515 ], [ 6.134623, 45.75518 ], [ 6.137611, 45.761328 ], [ 6.161318, 45.75643 ], [ 6.166234, 45.755725 ], [ 6.165841, 45.749535 ], [ 6.173941, 45.74713 ], [ 6.178384, 45.747155 ], [ 6.180328, 45.735753 ], [ 6.182875, 45.73327 ], [ 6.195548, 45.732331 ], [ 6.192971, 45.723148 ], [ 6.191921, 45.720114 ], [ 6.192367, 45.694642 ], [ 6.196181, 45.692767 ], [ 6.200252, 45.698663 ], [ 6.212644, 45.702537 ], [ 6.214292, 45.708988 ], [ 6.224754, 45.7053 ], [ 6.228203, 45.704002 ], [ 6.231654, 45.70276 ], [ 6.229745, 45.68262 ], [ 6.243726, 45.685117 ], [ 6.258115, 45.683593 ], [ 6.260673, 45.686628 ], [ 6.280343, 45.684822 ], [ 6.303372, 45.691485 ], [ 6.307949, 45.69296 ], [ 6.327378, 45.692915 ], [ 6.344215, 45.720599 ], [ 6.346179, 45.72371 ], [ 6.351084, 45.729264 ], [ 6.351108, 45.72944 ], [ 6.347677, 45.73717 ], [ 6.367189, 45.75069 ], [ 6.370442, 45.75293 ], [ 6.373861, 45.75937 ], [ 6.372507, 45.765876 ], [ 6.363309, 45.767953 ], [ 6.393263, 45.7849 ], [ 6.395768, 45.78772 ], [ 6.414943, 45.796749 ], [ 6.420117, 45.802262 ], [ 6.424559, 45.803858 ], [ 6.430076, 45.817156 ], [ 6.440621, 45.82894 ], [ 6.44419, 45.831382 ], [ 6.449187, 45.836448 ], [ 6.447603, 45.842256 ], [ 6.445068, 45.84482 ], [ 6.44632, 45.847929 ], [ 6.454178, 45.85539 ], [ 6.450756, 45.861323 ], [ 6.459298, 45.86484 ], [ 6.471838, 45.88429 ], [ 6.495368, 45.89103 ], [ 6.507915, 45.906245 ], [ 6.511064, 45.909058 ], [ 6.515993, 45.90314 ], [ 6.532823, 45.897 ], [ 6.556582, 45.89326 ], [ 6.559095, 45.88681 ], [ 6.567366, 45.88317 ], [ 6.570688, 45.88065 ], [ 6.572783, 45.877738 ], [ 6.569046, 45.87563 ], [ 6.568024, 45.862826 ], [ 6.563039, 45.86316 ], [ 6.554069, 45.86011 ], [ 6.535327, 45.86198 ], [ 6.544175, 45.8495 ], [ 6.552719, 45.826342 ], [ 6.562056, 45.81819 ], [ 6.565557, 45.81571 ], [ 6.569102, 45.81791 ], [ 6.5777, 45.81571 ], [ 6.584893, 45.80063 ], [ 6.594801, 45.79365 ], [ 6.599175, 45.79236 ], [ 6.601684, 45.79507 ], [ 6.63286, 45.798632 ], [ 6.637001, 45.80007 ], [ 6.654914, 45.799659 ], [ 6.659355, 45.80015 ], [ 6.676741, 45.780037 ], [ 6.690589, 45.77057 ], [ 6.68919, 45.76042 ], [ 6.687012, 45.754037 ], [ 6.698694, 45.74348 ], [ 6.689691, 45.728212 ], [ 6.707658, 45.72453 ], [ 6.711951, 45.72292 ], [ 6.740457, 45.74627 ], [ 6.742899, 45.753042 ], [ 6.757547, 45.76714 ], [ 6.781592, 45.77027 ], [ 6.797511, 45.778469 ], [ 6.802517, 45.77837 ], [ 6.807236, 45.747416 ], [ 6.815909, 45.738928 ], [ 6.809395, 45.725878 ], [ 6.827512, 45.70515 ], [ 6.840253, 45.69999 ], [ 6.845514, 45.69405 ], [ 6.846121, 45.690569 ], [ 6.872044, 45.680304 ], [ 6.901363, 45.67912 ], [ 6.905411, 45.67707 ], [ 6.906332, 45.670085 ], [ 6.902143, 45.663748 ], [ 6.914955, 45.66091 ], [ 6.916154, 45.654778 ], [ 6.914833, 45.65174 ], [ 6.933225, 45.64662 ], [ 6.966743, 45.65386 ], [ 6.976747, 45.646197 ], [ 6.999126, 45.63817 ], [ 6.997339, 45.631401 ], [ 6.985208, 45.620165 ], [ 6.978895, 45.58864 ], [ 6.994946, 45.57136 ], [ 6.990544, 45.5614 ], [ 6.995077, 45.54398 ], [ 6.992015, 45.533529 ], [ 7.004775, 45.51854 ], [ 7.000779, 45.508305 ], [ 6.999974, 45.504791 ], [ 7.02166, 45.496874 ], [ 7.051051, 45.49625 ], [ 7.056115, 45.490639 ], [ 7.048163, 45.48233 ], [ 7.046239, 45.479148 ], [ 7.049574, 45.47268 ], [ 7.078324, 45.47328 ], [ 7.10181, 45.46852 ], [ 7.100943, 45.455051 ], [ 7.110218, 45.44707 ], [ 7.114687, 45.437551 ], [ 7.113516, 45.43419 ], [ 7.150285, 45.423046 ], [ 7.184202, 45.403453 ], [ 7.177592, 45.390111 ], [ 7.163693, 45.38018 ], [ 7.159861, 45.359581 ], [ 7.135646, 45.347837 ], [ 7.13268, 45.330625 ], [ 7.124126, 45.32732 ], [ 7.114352, 45.328948 ], [ 7.110695, 45.326512 ], [ 7.111696, 45.31618 ], [ 7.117734, 45.31055 ], [ 7.122003, 45.29677 ], [ 7.135251, 45.281804 ], [ 7.13094, 45.27189 ], [ 7.135106, 45.254561 ], [ 7.126119, 45.24612 ], [ 7.111395, 45.244634 ], [ 7.083564, 45.22468 ], [ 7.075911, 45.212142 ], [ 7.066401, 45.21134 ], [ 7.054389, 45.222618 ], [ 7.05118, 45.22534 ], [ 7.041505, 45.224582 ], [ 7.025445, 45.216831 ], [ 7.001326, 45.217419 ], [ 6.990072, 45.21078 ], [ 6.966272, 45.206472 ], [ 6.964836, 45.196678 ], [ 6.953926, 45.18973 ], [ 6.953579, 45.18286 ], [ 6.947093, 45.17802 ], [ 6.942909, 45.176188 ], [ 6.945159, 45.17303 ], [ 6.892974, 45.165654 ], [ 6.886166, 45.15627 ], [ 6.895383, 45.140093 ], [ 6.854264, 45.128622 ], [ 6.796843, 45.152967 ], [ 6.791896, 45.15328 ], [ 6.769526, 45.159338 ], [ 6.747221, 45.14081 ], [ 6.738745, 45.13748 ], [ 6.711286, 45.14476 ], [ 6.706565, 45.14367 ], [ 6.678693, 45.137628 ], [ 6.670986, 45.124812 ], [ 6.65002, 45.115712 ], [ 6.63515, 45.115306 ], [ 6.629987, 45.109327 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "75", "CODE_DEPT": "74", "NOM_DEPT": "HAUTE-SAVOIE", "CODE_CHF": "010", "NOM_CHF": "ANNECY", "X_CHF_LIEU": "9426", "Y_CHF_LIEU": "65380", "X_CENTROID": "9650", "Y_CENTROID": "65540", "CODE_REG": "82", "NOM_REGION": "RHONE-ALPES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.802517, 45.77837 ], [ 6.797511, 45.778469 ], [ 6.781592, 45.77027 ], [ 6.757547, 45.76714 ], [ 6.742899, 45.753042 ], [ 6.740457, 45.74627 ], [ 6.711951, 45.72292 ], [ 6.707658, 45.72453 ], [ 6.689691, 45.728212 ], [ 6.698694, 45.74348 ], [ 6.687012, 45.754037 ], [ 6.68919, 45.76042 ], [ 6.690589, 45.77057 ], [ 6.676741, 45.780037 ], [ 6.659355, 45.80015 ], [ 6.654914, 45.799659 ], [ 6.637001, 45.80007 ], [ 6.63286, 45.798632 ], [ 6.601684, 45.79507 ], [ 6.599175, 45.79236 ], [ 6.594801, 45.79365 ], [ 6.584893, 45.80063 ], [ 6.5777, 45.81571 ], [ 6.569102, 45.81791 ], [ 6.565557, 45.81571 ], [ 6.562056, 45.81819 ], [ 6.552719, 45.826342 ], [ 6.544175, 45.8495 ], [ 6.535327, 45.86198 ], [ 6.554069, 45.86011 ], [ 6.563039, 45.86316 ], [ 6.568024, 45.862826 ], [ 6.569046, 45.87563 ], [ 6.572783, 45.877738 ], [ 6.570688, 45.88065 ], [ 6.567366, 45.88317 ], [ 6.559095, 45.88681 ], [ 6.556582, 45.89326 ], [ 6.532823, 45.897 ], [ 6.515993, 45.90314 ], [ 6.511064, 45.909058 ], [ 6.507915, 45.906245 ], [ 6.495368, 45.89103 ], [ 6.471838, 45.88429 ], [ 6.459298, 45.86484 ], [ 6.450756, 45.861323 ], [ 6.454178, 45.85539 ], [ 6.44632, 45.847929 ], [ 6.445068, 45.84482 ], [ 6.447603, 45.842256 ], [ 6.449187, 45.836448 ], [ 6.44419, 45.831382 ], [ 6.440621, 45.82894 ], [ 6.430076, 45.817156 ], [ 6.424559, 45.803858 ], [ 6.420117, 45.802262 ], [ 6.414943, 45.796749 ], [ 6.395768, 45.78772 ], [ 6.393263, 45.7849 ], [ 6.363309, 45.767953 ], [ 6.372507, 45.765876 ], [ 6.373861, 45.75937 ], [ 6.370442, 45.75293 ], [ 6.367189, 45.75069 ], [ 6.347677, 45.73717 ], [ 6.351108, 45.72944 ], [ 6.351084, 45.729264 ], [ 6.346179, 45.72371 ], [ 6.344215, 45.720599 ], [ 6.327378, 45.692915 ], [ 6.307949, 45.69296 ], [ 6.303372, 45.691485 ], [ 6.280343, 45.684822 ], [ 6.260673, 45.686628 ], [ 6.258115, 45.683593 ], [ 6.243726, 45.685117 ], [ 6.229745, 45.68262 ], [ 6.231654, 45.70276 ], [ 6.228203, 45.704002 ], [ 6.224754, 45.7053 ], [ 6.214292, 45.708988 ], [ 6.212644, 45.702537 ], [ 6.200252, 45.698663 ], [ 6.196181, 45.692767 ], [ 6.192367, 45.694642 ], [ 6.191921, 45.720114 ], [ 6.192971, 45.723148 ], [ 6.195548, 45.732331 ], [ 6.182875, 45.73327 ], [ 6.180328, 45.735753 ], [ 6.178384, 45.747155 ], [ 6.173941, 45.74713 ], [ 6.165841, 45.749535 ], [ 6.166234, 45.755725 ], [ 6.161318, 45.75643 ], [ 6.137611, 45.761328 ], [ 6.134623, 45.75518 ], [ 6.126279, 45.7515 ], [ 6.103134, 45.763445 ], [ 6.102219, 45.76022 ], [ 6.101762, 45.734194 ], [ 6.097173, 45.733599 ], [ 6.096133, 45.74282 ], [ 6.09133, 45.743934 ], [ 6.077005, 45.740947 ], [ 6.05508, 45.749194 ], [ 6.042253, 45.739259 ], [ 6.038005, 45.740878 ], [ 6.007549, 45.750715 ], [ 5.993806, 45.74769 ], [ 5.993197, 45.75094 ], [ 5.99667, 45.760404 ], [ 5.994261, 45.763216 ], [ 5.990146, 45.76451 ], [ 5.974033, 45.76869 ], [ 5.97306, 45.7719 ], [ 5.982179, 45.783163 ], [ 5.98055, 45.79617 ], [ 5.976022, 45.795815 ], [ 5.958068, 45.79492 ], [ 5.957448, 45.79802 ], [ 5.962785, 45.812735 ], [ 5.957776, 45.81207 ], [ 5.947964, 45.81052 ], [ 5.934122, 45.814602 ], [ 5.933251, 45.8113 ], [ 5.923117, 45.8051 ], [ 5.913953, 45.80406 ], [ 5.911823, 45.807168 ], [ 5.904711, 45.81182 ], [ 5.903836, 45.825558 ], [ 5.884466, 45.82633 ], [ 5.881238, 45.831409 ], [ 5.877809, 45.833884 ], [ 5.873424, 45.839042 ], [ 5.877123, 45.84816 ], [ 5.876087, 45.86341 ], [ 5.875603, 45.866983 ], [ 5.866816, 45.89869 ], [ 5.865741, 45.904079 ], [ 5.862625, 45.916638 ], [ 5.865804, 45.918936 ], [ 5.864867, 45.922258 ], [ 5.862078, 45.9322 ], [ 5.840286, 45.932321 ], [ 5.829631, 45.93758 ], [ 5.825235, 45.938483 ], [ 5.8288, 45.94049 ], [ 5.834832, 45.9523 ], [ 5.832784, 45.96171 ], [ 5.833912, 45.96857 ], [ 5.834026, 45.97203 ], [ 5.809968, 45.98983 ], [ 5.810189, 45.99339 ], [ 5.809541, 46.00525 ], [ 5.810555, 46.00815 ], [ 5.806792, 46.01297 ], [ 5.805472, 46.01574 ], [ 5.812299, 46.0238 ], [ 5.810502, 46.029894 ], [ 5.809339, 46.03295 ], [ 5.808012, 46.041156 ], [ 5.806997, 46.04383 ], [ 5.812553, 46.051513 ], [ 5.813614, 46.0543 ], [ 5.810988, 46.058878 ], [ 5.808074, 46.06086 ], [ 5.811532, 46.077597 ], [ 5.819203, 46.087562 ], [ 5.821693, 46.089897 ], [ 5.820731, 46.102932 ], [ 5.829654, 46.105665 ], [ 5.838211, 46.10255 ], [ 5.852738, 46.089201 ], [ 5.855987, 46.08667 ], [ 5.866262, 46.08554 ], [ 5.885654, 46.08541 ], [ 5.892996, 46.09377 ], [ 5.886227, 46.10962 ], [ 5.890789, 46.11581 ], [ 5.893026, 46.118917 ], [ 5.896829, 46.11977 ], [ 5.906798, 46.12254 ], [ 5.920403, 46.131039 ], [ 5.927926, 46.128 ], [ 5.936956, 46.12865 ], [ 5.95273, 46.130365 ], [ 5.956063, 46.132089 ], [ 5.957292, 46.12795 ], [ 5.960622, 46.130105 ], [ 5.973524, 46.13189 ], [ 5.980364, 46.13587 ], [ 5.982528, 46.13896 ], [ 5.993515, 46.14385 ], [ 6.017932, 46.14229 ], [ 6.035353, 46.136161 ], [ 6.047817, 46.14094 ], [ 6.047841, 46.14441 ], [ 6.052099, 46.15056 ], [ 6.091658, 46.15078 ], [ 6.097824, 46.145387 ], [ 6.126625, 46.14046 ], [ 6.131101, 46.14052 ], [ 6.135412, 46.141327 ], [ 6.13829, 46.14382 ], [ 6.146555, 46.145957 ], [ 6.148376, 46.14922 ], [ 6.175299, 46.158261 ], [ 6.188334, 46.168097 ], [ 6.186311, 46.174796 ], [ 6.186108, 46.17822 ], [ 6.209952, 46.192606 ], [ 6.214252, 46.193791 ], [ 6.226392, 46.20204 ], [ 6.230116, 46.20356 ], [ 6.233843, 46.206006 ], [ 6.248983, 46.2061 ], [ 6.276374, 46.21524 ], [ 6.290518, 46.223324 ], [ 6.294471, 46.224931 ], [ 6.309154, 46.24249 ], [ 6.306376, 46.25198 ], [ 6.308534, 46.25502 ], [ 6.303604, 46.25536 ], [ 6.294917, 46.257814 ], [ 6.294883, 46.26459 ], [ 6.291442, 46.26204 ], [ 6.2782, 46.251618 ], [ 6.26922, 46.24852 ], [ 6.2645, 46.24975 ], [ 6.261336, 46.25246 ], [ 6.238823, 46.275322 ], [ 6.238651, 46.282303 ], [ 6.251104, 46.28822 ], [ 6.251881, 46.29167 ], [ 6.245576, 46.30328 ], [ 6.241373, 46.304558 ], [ 6.250225, 46.308 ], [ 6.258155, 46.324753 ], [ 6.269367, 46.33669 ], [ 6.277334, 46.34912 ], [ 6.287331, 46.356946 ], [ 6.291412, 46.35899 ], [ 6.303395, 46.36622 ], [ 6.311512, 46.36761 ], [ 6.315959, 46.368807 ], [ 6.32689, 46.371066 ], [ 6.345247, 46.369555 ], [ 6.349113, 46.3674 ], [ 6.359372, 46.35003 ], [ 6.362591, 46.34777 ], [ 6.390778, 46.341 ], [ 6.39922, 46.34973 ], [ 6.404349, 46.351213 ], [ 6.413939, 46.359281 ], [ 6.438449, 46.36234 ], [ 6.442914, 46.36398 ], [ 6.447545, 46.365561 ], [ 6.474921, 46.375519 ], [ 6.481418, 46.38101 ], [ 6.48601, 46.3946 ], [ 6.513072, 46.40479 ], [ 6.517967, 46.40453 ], [ 6.544206, 46.39505 ], [ 6.568242, 46.398235 ], [ 6.573185, 46.399316 ], [ 6.61402, 46.40328 ], [ 6.616792, 46.403422 ], [ 6.619571, 46.403478 ], [ 6.624282, 46.404374 ], [ 6.638672, 46.405412 ], [ 6.643614, 46.40565 ], [ 6.711861, 46.40761 ], [ 6.717014, 46.40788 ], [ 6.757506, 46.402605 ], [ 6.761223, 46.40019 ], [ 6.790015, 46.393154 ], [ 6.805192, 46.394064 ], [ 6.801821, 46.38832 ], [ 6.806129, 46.380041 ], [ 6.800903, 46.375131 ], [ 6.791873, 46.367201 ], [ 6.782236, 46.366638 ], [ 6.771278, 46.360141 ], [ 6.772193, 46.350185 ], [ 6.774674, 46.347281 ], [ 6.786918, 46.332541 ], [ 6.796401, 46.33079 ], [ 6.801136, 46.321033 ], [ 6.822673, 46.31268 ], [ 6.831572, 46.30044 ], [ 6.845967, 46.29094 ], [ 6.850886, 46.29025 ], [ 6.855357, 46.291866 ], [ 6.863737, 46.27978 ], [ 6.852748, 46.25317 ], [ 6.840407, 46.24713 ], [ 6.834025, 46.23766 ], [ 6.822211, 46.231265 ], [ 6.821128, 46.2243 ], [ 6.803564, 46.203131 ], [ 6.806982, 46.196463 ], [ 6.810784, 46.1802 ], [ 6.807337, 46.177843 ], [ 6.793523, 46.16426 ], [ 6.790422, 46.154311 ], [ 6.797237, 46.138271 ], [ 6.812353, 46.13203 ], [ 6.815212, 46.12932 ], [ 6.834736, 46.13224 ], [ 6.852683, 46.1267 ], [ 6.897142, 46.123 ], [ 6.893169, 46.105755 ], [ 6.885097, 46.096818 ], [ 6.890051, 46.07657 ], [ 6.880577, 46.068627 ], [ 6.873114, 46.05556 ], [ 6.872633, 46.05205 ], [ 6.887971, 46.0439 ], [ 6.909534, 46.052 ], [ 6.922089, 46.0628 ], [ 6.936209, 46.06427 ], [ 6.937976, 46.054241 ], [ 6.951127, 46.049645 ], [ 6.960682, 46.03364 ], [ 6.962904, 46.030534 ], [ 6.981157, 46.018759 ], [ 6.986806, 46.005107 ], [ 7.009037, 45.99714 ], [ 7.02013, 45.98131 ], [ 7.012909, 45.972564 ], [ 7.012762, 45.965762 ], [ 7.036102, 45.952561 ], [ 7.04214, 45.928288 ], [ 7.042049, 45.92477 ], [ 7.038827, 45.92205 ], [ 7.021333, 45.91479 ], [ 7.008919, 45.90344 ], [ 7.006282, 45.900387 ], [ 7.004187, 45.886315 ], [ 7.002929, 45.882852 ], [ 6.996492, 45.873143 ], [ 6.992852, 45.87065 ], [ 6.954902, 45.860524 ], [ 6.937725, 45.847501 ], [ 6.908472, 45.842693 ], [ 6.879522, 45.847974 ], [ 6.873663, 45.84243 ], [ 6.869982, 45.828395 ], [ 6.862576, 45.82909 ], [ 6.861388, 45.83257 ], [ 6.857232, 45.834547 ], [ 6.853841, 45.83715 ], [ 6.840125, 45.840035 ], [ 6.821585, 45.836995 ], [ 6.804669, 45.81671 ], [ 6.807072, 45.813784 ], [ 6.812006, 45.80796 ], [ 6.811691, 45.797418 ], [ 6.803877, 45.78858 ], [ 6.802517, 45.77837 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "76", "CODE_DEPT": "75", "NOM_DEPT": "PARIS", "CODE_CHF": "101", "NOM_CHF": "PARIS--1ER-ARRONDISSEMENT", "X_CHF_LIEU": "6516", "Y_CHF_LIEU": "68623", "X_CENTROID": "6517", "Y_CENTROID": "68620", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.416367, 48.849247 ], [ 2.415892, 48.84664 ], [ 2.416502, 48.8347 ], [ 2.422967, 48.842714 ], [ 2.427461, 48.84164 ], [ 2.437059, 48.84117 ], [ 2.442857, 48.84555 ], [ 2.447579, 48.8449 ], [ 2.464673, 48.841532 ], [ 2.467314, 48.83912 ], [ 2.46962, 48.836077 ], [ 2.464996, 48.82999 ], [ 2.466188, 48.826672 ], [ 2.461194, 48.818277 ], [ 2.456645, 48.81701 ], [ 2.419933, 48.82393 ], [ 2.403242, 48.82916 ], [ 2.393998, 48.82757 ], [ 2.389917, 48.82592 ], [ 2.368823, 48.81755 ], [ 2.364442, 48.81608 ], [ 2.360036, 48.81561 ], [ 2.355593, 48.81587 ], [ 2.352648, 48.818314 ], [ 2.344084, 48.81596 ], [ 2.332032, 48.81694 ], [ 2.328164, 48.81907 ], [ 2.313783, 48.82211 ], [ 2.309534, 48.823082 ], [ 2.301049, 48.825075 ], [ 2.297141, 48.825987 ], [ 2.289538, 48.82818 ], [ 2.285347, 48.829803 ], [ 2.271895, 48.828363 ], [ 2.263029, 48.834011 ], [ 2.262759, 48.83383 ], [ 2.257612, 48.834607 ], [ 2.248056, 48.84632 ], [ 2.223956, 48.85322 ], [ 2.225787, 48.85934 ], [ 2.230058, 48.867314 ], [ 2.23278, 48.86951 ], [ 2.236482, 48.87085 ], [ 2.245659, 48.87635 ], [ 2.255282, 48.874641 ], [ 2.260275, 48.880221 ], [ 2.280002, 48.878534 ], [ 2.280497, 48.881181 ], [ 2.284306, 48.885772 ], [ 2.299983, 48.892268 ], [ 2.303792, 48.894053 ], [ 2.315925, 48.89866 ], [ 2.31983, 48.900414 ], [ 2.324885, 48.90087 ], [ 2.329983, 48.901163 ], [ 2.334361, 48.901233 ], [ 2.351873, 48.90153 ], [ 2.361188, 48.90161 ], [ 2.365854, 48.90161 ], [ 2.370286, 48.90165 ], [ 2.389444, 48.901193 ], [ 2.397957, 48.89286 ], [ 2.398651, 48.889414 ], [ 2.400339, 48.88375 ], [ 2.407535, 48.880528 ], [ 2.410694, 48.87847 ], [ 2.413277, 48.873119 ], [ 2.414556, 48.858817 ], [ 2.415427, 48.855268 ], [ 2.416367, 48.849247 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "77", "CODE_DEPT": "76", "NOM_DEPT": "SEINE-MARITIME", "CODE_CHF": "540", "NOM_CHF": "ROUEN", "X_CHF_LIEU": "5623", "Y_CHF_LIEU": "69287", "X_CENTROID": "5574", "Y_CENTROID": "69524", "CODE_REG": "23", "NOM_REGION": "HAUTE-NORMANDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.713938, 49.40922 ], [ 1.705046, 49.40888 ], [ 1.694284, 49.394865 ], [ 1.691936, 49.39728 ], [ 1.682184, 49.402672 ], [ 1.680561, 49.405827 ], [ 1.670423, 49.40628 ], [ 1.659032, 49.39989 ], [ 1.650699, 49.403026 ], [ 1.647801, 49.403191 ], [ 1.644518, 49.40548 ], [ 1.62791, 49.41144 ], [ 1.628006, 49.414583 ], [ 1.623377, 49.41456 ], [ 1.606957, 49.410854 ], [ 1.603637, 49.413378 ], [ 1.585082, 49.43176 ], [ 1.581915, 49.433649 ], [ 1.575446, 49.437295 ], [ 1.576197, 49.440054 ], [ 1.550283, 49.44044 ], [ 1.537191, 49.43009 ], [ 1.5355, 49.433348 ], [ 1.527546, 49.442052 ], [ 1.501866, 49.439544 ], [ 1.498491, 49.4423 ], [ 1.491322, 49.44749 ], [ 1.476221, 49.45131 ], [ 1.449923, 49.45005 ], [ 1.436079, 49.45502 ], [ 1.411997, 49.45563 ], [ 1.383933, 49.449948 ], [ 1.392158, 49.461636 ], [ 1.38949, 49.46274 ], [ 1.386452, 49.46329 ], [ 1.368674, 49.4511 ], [ 1.344091, 49.44627 ], [ 1.349982, 49.43843 ], [ 1.348854, 49.435765 ], [ 1.337491, 49.43887 ], [ 1.335723, 49.43558 ], [ 1.338046, 49.428937 ], [ 1.328864, 49.431139 ], [ 1.309632, 49.42873 ], [ 1.311022, 49.425848 ], [ 1.315391, 49.41111 ], [ 1.308009, 49.39634 ], [ 1.297471, 49.39467 ], [ 1.292988, 49.39404 ], [ 1.28613, 49.38693 ], [ 1.286147, 49.383954 ], [ 1.289196, 49.37549 ], [ 1.286239, 49.36296 ], [ 1.282152, 49.36165 ], [ 1.272228, 49.35425 ], [ 1.272155, 49.34738 ], [ 1.246099, 49.347524 ], [ 1.241233, 49.347776 ], [ 1.212223, 49.349724 ], [ 1.209571, 49.35239 ], [ 1.204671, 49.35201 ], [ 1.200411, 49.355357 ], [ 1.198912, 49.35217 ], [ 1.200779, 49.33889 ], [ 1.185541, 49.337899 ], [ 1.184847, 49.33807 ], [ 1.182717, 49.343845 ], [ 1.178198, 49.34243 ], [ 1.168589, 49.33597 ], [ 1.166683, 49.338864 ], [ 1.160337, 49.340503 ], [ 1.155046, 49.33529 ], [ 1.145476, 49.33551 ], [ 1.144742, 49.332577 ], [ 1.136896, 49.32584 ], [ 1.134635, 49.322917 ], [ 1.133994, 49.30984 ], [ 1.129593, 49.30985 ], [ 1.124683, 49.30947 ], [ 1.094995, 49.30975 ], [ 1.090166, 49.30979 ], [ 1.071772, 49.3063 ], [ 1.067449, 49.304245 ], [ 1.048481, 49.29782 ], [ 1.065644, 49.28084 ], [ 1.052655, 49.27246 ], [ 1.063577, 49.26156 ], [ 1.061024, 49.25929 ], [ 1.05351, 49.26179 ], [ 1.051614, 49.25926 ], [ 1.051713, 49.26246 ], [ 1.038716, 49.25808 ], [ 1.038408, 49.259697 ], [ 0.999109, 49.25197 ], [ 0.994332, 49.2572 ], [ 0.999613, 49.262036 ], [ 0.989553, 49.26315 ], [ 0.985591, 49.26926 ], [ 0.980858, 49.27011 ], [ 0.970563, 49.27962 ], [ 0.955769, 49.27137 ], [ 0.955538, 49.274436 ], [ 0.952434, 49.279931 ], [ 0.955864, 49.281842 ], [ 0.962659, 49.28555 ], [ 0.960717, 49.29087 ], [ 0.960338, 49.294192 ], [ 0.951232, 49.29743 ], [ 0.937589, 49.31986 ], [ 0.925702, 49.313421 ], [ 0.921014, 49.31198 ], [ 0.908281, 49.306493 ], [ 0.909447, 49.29977 ], [ 0.899933, 49.298039 ], [ 0.893682, 49.30332 ], [ 0.892669, 49.316329 ], [ 0.869477, 49.32335 ], [ 0.86442, 49.32255 ], [ 0.862759, 49.325462 ], [ 0.844484, 49.32622 ], [ 0.848188, 49.33143 ], [ 0.85934, 49.34519 ], [ 0.864208, 49.345612 ], [ 0.871749, 49.34231 ], [ 0.885498, 49.34631 ], [ 0.920066, 49.338592 ], [ 0.928962, 49.34221 ], [ 0.93224, 49.34489 ], [ 0.926813, 49.34876 ], [ 0.923216, 49.349905 ], [ 0.921963, 49.352976 ], [ 0.924328, 49.358871 ], [ 0.922086, 49.36154 ], [ 0.917825, 49.376374 ], [ 0.917497, 49.3794 ], [ 0.918119, 49.38546 ], [ 0.913196, 49.38459 ], [ 0.895508, 49.37826 ], [ 0.892756, 49.37214 ], [ 0.888059, 49.373511 ], [ 0.879015, 49.372786 ], [ 0.880352, 49.376082 ], [ 0.884734, 49.38172 ], [ 0.876661, 49.389802 ], [ 0.878462, 49.396254 ], [ 0.873629, 49.3952 ], [ 0.864153, 49.39282 ], [ 0.860851, 49.395359 ], [ 0.856544, 49.393916 ], [ 0.833067, 49.39365 ], [ 0.828008, 49.39471 ], [ 0.818879, 49.39819 ], [ 0.815203, 49.400721 ], [ 0.802892, 49.427068 ], [ 0.800132, 49.42712 ], [ 0.803021, 49.417575 ], [ 0.787609, 49.41283 ], [ 0.783355, 49.410814 ], [ 0.767621, 49.41898 ], [ 0.743824, 49.41317 ], [ 0.738288, 49.40806 ], [ 0.715509, 49.410856 ], [ 0.714187, 49.40958 ], [ 0.70901, 49.41011 ], [ 0.706393, 49.40357 ], [ 0.686356, 49.40576 ], [ 0.670967, 49.40356 ], [ 0.666042, 49.402466 ], [ 0.657385, 49.405572 ], [ 0.65297, 49.4066 ], [ 0.649834, 49.40888 ], [ 0.653605, 49.41111 ], [ 0.657586, 49.41691 ], [ 0.643721, 49.4193 ], [ 0.639453, 49.42521 ], [ 0.629512, 49.42405 ], [ 0.630653, 49.427406 ], [ 0.645169, 49.4413 ], [ 0.642538, 49.444256 ], [ 0.638579, 49.44216 ], [ 0.614557, 49.42995 ], [ 0.599426, 49.42891 ], [ 0.594568, 49.429617 ], [ 0.581253, 49.43396 ], [ 0.560742, 49.4481 ], [ 0.55787, 49.4505 ], [ 0.543384, 49.462409 ], [ 0.538625, 49.46616 ], [ 0.537695, 49.467131 ], [ 0.534675, 49.469686 ], [ 0.522109, 49.47963 ], [ 0.509162, 49.48423 ], [ 0.503839, 49.484998 ], [ 0.493009, 49.484334 ], [ 0.47886, 49.47902 ], [ 0.474178, 49.476839 ], [ 0.469808, 49.475066 ], [ 0.435335, 49.46041 ], [ 0.430743, 49.45871 ], [ 0.426004, 49.4572 ], [ 0.421222, 49.45573 ], [ 0.386601, 49.44724 ], [ 0.382193, 49.44632 ], [ 0.368796, 49.443966 ], [ 0.363704, 49.44402 ], [ 0.338983, 49.440931 ], [ 0.297345, 49.43913 ], [ 0.285713, 49.44447 ], [ 0.287626, 49.447948 ], [ 0.3087, 49.44905 ], [ 0.31183, 49.449594 ], [ 0.303271, 49.45052 ], [ 0.287893, 49.45125 ], [ 0.274945, 49.446728 ], [ 0.269987, 49.447642 ], [ 0.257973, 49.44918 ], [ 0.253845, 49.449507 ], [ 0.237788, 49.45209 ], [ 0.195024, 49.45486 ], [ 0.171701, 49.46002 ], [ 0.156336, 49.45818 ], [ 0.145183, 49.46547 ], [ 0.114342, 49.470644 ], [ 0.09308, 49.48131 ], [ 0.093312, 49.49453 ], [ 0.088123, 49.500586 ], [ 0.083366, 49.50217 ], [ 0.069789, 49.50632 ], [ 0.066273, 49.51541 ], [ 0.066916, 49.51867 ], [ 0.075547, 49.53717 ], [ 0.078026, 49.53999 ], [ 0.108648, 49.58592 ], [ 0.111463, 49.58899 ], [ 0.126703, 49.60683 ], [ 0.128783, 49.60996 ], [ 0.140654, 49.62589 ], [ 0.142587, 49.629209 ], [ 0.15393, 49.64781 ], [ 0.151799, 49.657507 ], [ 0.158992, 49.66592 ], [ 0.159931, 49.669206 ], [ 0.164907, 49.68619 ], [ 0.1751, 49.6941 ], [ 0.179394, 49.696157 ], [ 0.182167, 49.699179 ], [ 0.205158, 49.71298 ], [ 0.220071, 49.71693 ], [ 0.225343, 49.71764 ], [ 0.241163, 49.720239 ], [ 0.259697, 49.72762 ], [ 0.264879, 49.72875 ], [ 0.270224, 49.73072 ], [ 0.290015, 49.737824 ], [ 0.29379, 49.739607 ], [ 0.299454, 49.74006 ], [ 0.316104, 49.74079 ], [ 0.320424, 49.741464 ], [ 0.334415, 49.74611 ], [ 0.338901, 49.74789 ], [ 0.351317, 49.75327 ], [ 0.355324, 49.755199 ], [ 0.366921, 49.767119 ], [ 0.38715, 49.771878 ], [ 0.424136, 49.78437 ], [ 0.428468, 49.78628 ], [ 0.479088, 49.806282 ], [ 0.483546, 49.80826 ], [ 0.507522, 49.819882 ], [ 0.51259, 49.81964 ], [ 0.520306, 49.823532 ], [ 0.524244, 49.82541 ], [ 0.534402, 49.83373 ], [ 0.557663, 49.84364 ], [ 0.56234, 49.845528 ], [ 0.581406, 49.85205 ], [ 0.602412, 49.85438 ], [ 0.606981, 49.85625 ], [ 0.640399, 49.863815 ], [ 0.645528, 49.86415 ], [ 0.650624, 49.86491 ], [ 0.655782, 49.865513 ], [ 0.668522, 49.86727 ], [ 0.709745, 49.87294 ], [ 0.718799, 49.869483 ], [ 0.745112, 49.87126 ], [ 0.750404, 49.87138 ], [ 0.76389, 49.871746 ], [ 0.795854, 49.87701 ], [ 0.800985, 49.87831 ], [ 0.834184, 49.88969 ], [ 0.839541, 49.889338 ], [ 0.893722, 49.89902 ], [ 0.89844, 49.900331 ], [ 0.924739, 49.905354 ], [ 0.929789, 49.906743 ], [ 0.96144, 49.919712 ], [ 0.972258, 49.91924 ], [ 1.021849, 49.916274 ], [ 1.025735, 49.91655 ], [ 1.035178, 49.91887 ], [ 1.039774, 49.92025 ], [ 1.06981, 49.92678 ], [ 1.085877, 49.93557 ], [ 1.110602, 49.93893 ], [ 1.115246, 49.94057 ], [ 1.143184, 49.94988 ], [ 1.147616, 49.95169 ], [ 1.164733, 49.9578 ], [ 1.168719, 49.959651 ], [ 1.189936, 49.96695 ], [ 1.194522, 49.96804 ], [ 1.202426, 49.97179 ], [ 1.205261, 49.977542 ], [ 1.208678, 49.97982 ], [ 1.230982, 49.987512 ], [ 1.235089, 49.98961 ], [ 1.256331, 50.002107 ], [ 1.259655, 50.004355 ], [ 1.266964, 50.009121 ], [ 1.270733, 50.01143 ], [ 1.33435, 50.04797 ], [ 1.338735, 50.04997 ], [ 1.342387, 50.05176 ], [ 1.369126, 50.06372 ], [ 1.379705, 50.065015 ], [ 1.404428, 50.05723 ], [ 1.40926, 50.05707 ], [ 1.419826, 50.06641 ], [ 1.421862, 50.069131 ], [ 1.431667, 50.07115 ], [ 1.450671, 50.06723 ], [ 1.453325, 50.06438 ], [ 1.456458, 50.063714 ], [ 1.459146, 50.062499 ], [ 1.452288, 50.041617 ], [ 1.45886, 50.03696 ], [ 1.473212, 50.033686 ], [ 1.475827, 50.03069 ], [ 1.48632, 50.023 ], [ 1.493091, 50.01845 ], [ 1.497761, 50.019436 ], [ 1.514481, 50.01265 ], [ 1.523615, 50.001981 ], [ 1.525236, 49.99895 ], [ 1.52695, 49.99658 ], [ 1.55751, 49.98041 ], [ 1.561275, 49.97833 ], [ 1.570107, 49.97536 ], [ 1.57439, 49.97365 ], [ 1.577978, 49.96386 ], [ 1.603803, 49.943395 ], [ 1.608454, 49.94181 ], [ 1.624556, 49.93428 ], [ 1.643494, 49.9303 ], [ 1.647729, 49.92857 ], [ 1.652181, 49.927065 ], [ 1.678451, 49.91813 ], [ 1.678647, 49.91323 ], [ 1.690784, 49.901682 ], [ 1.691652, 49.898735 ], [ 1.693304, 49.895608 ], [ 1.69702, 49.89333 ], [ 1.706178, 49.89144 ], [ 1.71209, 49.8864 ], [ 1.713912, 49.87702 ], [ 1.711815, 49.87417 ], [ 1.712859, 49.87083 ], [ 1.718728, 49.86571 ], [ 1.720039, 49.86167 ], [ 1.719039, 49.848352 ], [ 1.72535, 49.84322 ], [ 1.726224, 49.839945 ], [ 1.725711, 49.836561 ], [ 1.733854, 49.8135 ], [ 1.742319, 49.80639 ], [ 1.744387, 49.80357 ], [ 1.749904, 49.79486 ], [ 1.752718, 49.79215 ], [ 1.758369, 49.78351 ], [ 1.759249, 49.7804 ], [ 1.773681, 49.77636 ], [ 1.779601, 49.77073 ], [ 1.780929, 49.767426 ], [ 1.78333, 49.764467 ], [ 1.784845, 49.7579 ], [ 1.763625, 49.75727 ], [ 1.749886, 49.76211 ], [ 1.74272, 49.75285 ], [ 1.74026, 49.75025 ], [ 1.745455, 49.738572 ], [ 1.742891, 49.73855 ], [ 1.725303, 49.73157 ], [ 1.715538, 49.73288 ], [ 1.715109, 49.71354 ], [ 1.715453, 49.71033 ], [ 1.68862, 49.69371 ], [ 1.707758, 49.681374 ], [ 1.717096, 49.68456 ], [ 1.732928, 49.69855 ], [ 1.743109, 49.70033 ], [ 1.746515, 49.69757 ], [ 1.750299, 49.69582 ], [ 1.751309, 49.68392 ], [ 1.752184, 49.68097 ], [ 1.747082, 49.680078 ], [ 1.724131, 49.671805 ], [ 1.722778, 49.66165 ], [ 1.721554, 49.65857 ], [ 1.713754, 49.654908 ], [ 1.708078, 49.646149 ], [ 1.698685, 49.64435 ], [ 1.701361, 49.641952 ], [ 1.70442, 49.63976 ], [ 1.707252, 49.63776 ], [ 1.717252, 49.632981 ], [ 1.71873, 49.62976 ], [ 1.721685, 49.623321 ], [ 1.715943, 49.61395 ], [ 1.693725, 49.60107 ], [ 1.720146, 49.589656 ], [ 1.721618, 49.58881 ], [ 1.7204, 49.58556 ], [ 1.709641, 49.58021 ], [ 1.694593, 49.58054 ], [ 1.697693, 49.57222 ], [ 1.710406, 49.57725 ], [ 1.717848, 49.57262 ], [ 1.720397, 49.569598 ], [ 1.726288, 49.56386 ], [ 1.729834, 49.56129 ], [ 1.72916, 49.55503 ], [ 1.724905, 49.54554 ], [ 1.731211, 49.541354 ], [ 1.744888, 49.53952 ], [ 1.745519, 49.53916 ], [ 1.738792, 49.52058 ], [ 1.71992, 49.508904 ], [ 1.717972, 49.50674 ], [ 1.719227, 49.50292 ], [ 1.72546, 49.49978 ], [ 1.740506, 49.497983 ], [ 1.744868, 49.49173 ], [ 1.755399, 49.50646 ], [ 1.768074, 49.512028 ], [ 1.783584, 49.507609 ], [ 1.78755, 49.50623 ], [ 1.788633, 49.490141 ], [ 1.778449, 49.489626 ], [ 1.775438, 49.48686 ], [ 1.775771, 49.47344 ], [ 1.765371, 49.465925 ], [ 1.760619, 49.46452 ], [ 1.747434, 49.45945 ], [ 1.749925, 49.45679 ], [ 1.748842, 49.45144 ], [ 1.739918, 49.4493 ], [ 1.736373, 49.44713 ], [ 1.733389, 49.44122 ], [ 1.726078, 49.438065 ], [ 1.72201, 49.42149 ], [ 1.713938, 49.40922 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "78", "CODE_DEPT": "77", "NOM_DEPT": "SEINE-ET-MARNE", "CODE_CHF": "288", "NOM_CHF": "MELUN", "X_CHF_LIEU": "6748", "Y_CHF_LIEU": "68266", "X_CENTROID": "6951", "Y_CENTROID": "68362", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.936314, 48.163392 ], [ 2.931137, 48.162813 ], [ 2.900047, 48.15943 ], [ 2.895207, 48.15895 ], [ 2.870991, 48.15647 ], [ 2.866823, 48.15604 ], [ 2.864438, 48.152902 ], [ 2.838308, 48.135908 ], [ 2.823316, 48.13278 ], [ 2.82088, 48.12966 ], [ 2.816334, 48.13043 ], [ 2.802391, 48.131462 ], [ 2.799465, 48.137396 ], [ 2.797907, 48.140551 ], [ 2.800412, 48.15361 ], [ 2.810418, 48.16082 ], [ 2.810918, 48.164067 ], [ 2.798959, 48.168025 ], [ 2.79024, 48.1653 ], [ 2.780977, 48.167363 ], [ 2.77668, 48.165726 ], [ 2.754682, 48.16139 ], [ 2.736406, 48.16631 ], [ 2.738384, 48.16342 ], [ 2.754255, 48.151905 ], [ 2.755198, 48.14565 ], [ 2.750335, 48.14487 ], [ 2.722461, 48.13741 ], [ 2.706547, 48.124819 ], [ 2.675484, 48.12517 ], [ 2.66757, 48.120667 ], [ 2.664748, 48.120542 ], [ 2.661585, 48.123439 ], [ 2.639666, 48.13895 ], [ 2.634454, 48.13833 ], [ 2.599014, 48.1316 ], [ 2.577868, 48.13178 ], [ 2.570563, 48.140816 ], [ 2.565815, 48.14109 ], [ 2.537505, 48.14052 ], [ 2.534395, 48.13806 ], [ 2.521724, 48.128417 ], [ 2.52221, 48.125215 ], [ 2.517284, 48.1259 ], [ 2.477562, 48.1291 ], [ 2.458954, 48.125608 ], [ 2.455859, 48.123389 ], [ 2.442692, 48.12549 ], [ 2.444256, 48.13147 ], [ 2.461097, 48.138207 ], [ 2.474045, 48.15161 ], [ 2.47185, 48.154597 ], [ 2.480872, 48.16161 ], [ 2.483238, 48.164518 ], [ 2.502032, 48.158444 ], [ 2.506327, 48.15644 ], [ 2.514911, 48.16484 ], [ 2.508843, 48.180923 ], [ 2.515406, 48.19301 ], [ 2.520296, 48.193919 ], [ 2.523011, 48.19876 ], [ 2.519932, 48.201377 ], [ 2.517404, 48.214378 ], [ 2.514119, 48.214382 ], [ 2.51535, 48.22693 ], [ 2.507345, 48.228985 ], [ 2.506192, 48.23854 ], [ 2.501745, 48.23871 ], [ 2.484178, 48.23897 ], [ 2.480612, 48.24139 ], [ 2.476787, 48.25083 ], [ 2.46909, 48.255282 ], [ 2.465405, 48.25326 ], [ 2.4518, 48.250425 ], [ 2.444509, 48.254485 ], [ 2.440144, 48.2532 ], [ 2.435639, 48.254848 ], [ 2.421716, 48.26388 ], [ 2.420109, 48.2667 ], [ 2.418346, 48.27989 ], [ 2.423098, 48.29278 ], [ 2.420762, 48.299251 ], [ 2.417749, 48.302206 ], [ 2.402664, 48.32072 ], [ 2.395402, 48.325757 ], [ 2.394016, 48.33253 ], [ 2.392372, 48.33587 ], [ 2.401297, 48.33302 ], [ 2.410141, 48.336079 ], [ 2.429878, 48.33657 ], [ 2.433827, 48.33454 ], [ 2.43034, 48.347506 ], [ 2.441143, 48.3572 ], [ 2.433247, 48.35961 ], [ 2.429832, 48.36202 ], [ 2.433195, 48.3644 ], [ 2.440984, 48.36838 ], [ 2.450638, 48.36716 ], [ 2.44984, 48.37371 ], [ 2.482461, 48.38246 ], [ 2.473832, 48.39039 ], [ 2.486035, 48.39683 ], [ 2.50648, 48.394911 ], [ 2.521784, 48.40404 ], [ 2.54706, 48.40142 ], [ 2.543782, 48.403913 ], [ 2.517311, 48.42768 ], [ 2.505029, 48.429866 ], [ 2.505037, 48.44484 ], [ 2.504411, 48.44808 ], [ 2.505804, 48.451011 ], [ 2.501263, 48.45635 ], [ 2.498523, 48.45719 ], [ 2.499641, 48.45905 ], [ 2.502797, 48.4601 ], [ 2.505938, 48.461159 ], [ 2.502473, 48.484247 ], [ 2.510364, 48.488445 ], [ 2.509908, 48.49085 ], [ 2.512086, 48.49541 ], [ 2.513823, 48.50953 ], [ 2.509083, 48.509626 ], [ 2.506859, 48.515779 ], [ 2.49761, 48.51724 ], [ 2.509452, 48.54262 ], [ 2.499315, 48.54291 ], [ 2.518054, 48.561802 ], [ 2.519648, 48.56834 ], [ 2.531595, 48.573659 ], [ 2.526677, 48.573414 ], [ 2.521772, 48.573224 ], [ 2.522051, 48.57675 ], [ 2.518277, 48.58326 ], [ 2.539227, 48.593685 ], [ 2.54145, 48.596887 ], [ 2.543285, 48.605818 ], [ 2.542513, 48.608801 ], [ 2.539681, 48.611489 ], [ 2.526154, 48.614773 ], [ 2.525227, 48.621201 ], [ 2.516511, 48.62915 ], [ 2.520278, 48.63127 ], [ 2.540056, 48.63365 ], [ 2.547965, 48.64966 ], [ 2.544445, 48.65171 ], [ 2.533752, 48.6573 ], [ 2.544822, 48.66927 ], [ 2.547461, 48.67192 ], [ 2.556959, 48.672883 ], [ 2.565205, 48.66936 ], [ 2.579195, 48.677514 ], [ 2.584074, 48.67715 ], [ 2.584646, 48.68034 ], [ 2.580376, 48.68948 ], [ 2.57166, 48.692023 ], [ 2.572261, 48.694966 ], [ 2.577677, 48.69901 ], [ 2.574345, 48.701 ], [ 2.571587, 48.70266 ], [ 2.568804, 48.70722 ], [ 2.568137, 48.708974 ], [ 2.570969, 48.71173 ], [ 2.580406, 48.72299 ], [ 2.594679, 48.731805 ], [ 2.594109, 48.73523 ], [ 2.587757, 48.74408 ], [ 2.599551, 48.75074 ], [ 2.597544, 48.760569 ], [ 2.614817, 48.761121 ], [ 2.60644, 48.773307 ], [ 2.591044, 48.77233 ], [ 2.587516, 48.77805 ], [ 2.598816, 48.793366 ], [ 2.591542, 48.79737 ], [ 2.593058, 48.80031 ], [ 2.596498, 48.80607 ], [ 2.59228, 48.807437 ], [ 2.595795, 48.81427 ], [ 2.595334, 48.817457 ], [ 2.591136, 48.826634 ], [ 2.586672, 48.827887 ], [ 2.586281, 48.83425 ], [ 2.584171, 48.837429 ], [ 2.573836, 48.85338 ], [ 2.582522, 48.8562 ], [ 2.586866, 48.86183 ], [ 2.587332, 48.865 ], [ 2.582285, 48.8654 ], [ 2.567967, 48.86594 ], [ 2.570615, 48.87878 ], [ 2.563216, 48.8831 ], [ 2.559406, 48.885338 ], [ 2.587229, 48.89854 ], [ 2.591024, 48.906953 ], [ 2.592724, 48.90753 ], [ 2.58878, 48.90949 ], [ 2.592342, 48.925024 ], [ 2.596169, 48.92603 ], [ 2.602598, 48.929357 ], [ 2.602682, 48.93276 ], [ 2.597808, 48.938144 ], [ 2.593811, 48.946593 ], [ 2.591905, 48.94935 ], [ 2.590118, 48.952623 ], [ 2.566237, 48.97551 ], [ 2.576511, 48.980354 ], [ 2.579819, 48.98686 ], [ 2.575843, 49.00029 ], [ 2.571528, 49.001531 ], [ 2.565792, 49.0124 ], [ 2.561242, 49.012185 ], [ 2.553061, 49.009817 ], [ 2.550672, 49.01263 ], [ 2.538421, 49.01446 ], [ 2.535372, 49.02057 ], [ 2.535425, 49.02379 ], [ 2.545077, 49.022421 ], [ 2.563288, 49.02743 ], [ 2.568943, 49.03635 ], [ 2.56934, 49.03959 ], [ 2.579624, 49.046501 ], [ 2.589495, 49.04717 ], [ 2.594474, 49.04714 ], [ 2.573213, 49.059283 ], [ 2.590524, 49.07965 ], [ 2.609132, 49.091558 ], [ 2.610339, 49.094943 ], [ 2.614781, 49.09409 ], [ 2.619365, 49.09447 ], [ 2.631694, 49.105117 ], [ 2.633273, 49.108376 ], [ 2.640674, 49.099713 ], [ 2.650967, 49.10025 ], [ 2.676384, 49.088872 ], [ 2.67832, 49.08573 ], [ 2.693519, 49.073452 ], [ 2.691155, 49.07062 ], [ 2.690023, 49.067562 ], [ 2.698321, 49.06443 ], [ 2.703081, 49.064736 ], [ 2.720824, 49.07564 ], [ 2.724357, 49.08046 ], [ 2.733096, 49.063359 ], [ 2.735013, 49.060459 ], [ 2.756038, 49.061528 ], [ 2.760833, 49.063004 ], [ 2.785275, 49.07544 ], [ 2.772712, 49.081378 ], [ 2.768337, 49.08326 ], [ 2.788214, 49.08287 ], [ 2.783988, 49.08864 ], [ 2.787956, 49.08917 ], [ 2.79173, 49.09014 ], [ 2.80477, 49.09576 ], [ 2.809254, 49.097536 ], [ 2.821258, 49.08681 ], [ 2.83522, 49.083 ], [ 2.844946, 49.08488 ], [ 2.854288, 49.073152 ], [ 2.856089, 49.070034 ], [ 2.872029, 49.071248 ], [ 2.890202, 49.07847 ], [ 2.895105, 49.077052 ], [ 2.899159, 49.08252 ], [ 2.900947, 49.08535 ], [ 2.923982, 49.07829 ], [ 2.933807, 49.08001 ], [ 2.937888, 49.077998 ], [ 2.944317, 49.081814 ], [ 2.94583, 49.08808 ], [ 2.954853, 49.08595 ], [ 2.967335, 49.090652 ], [ 2.971429, 49.088972 ], [ 2.974159, 49.0778 ], [ 2.974612, 49.074838 ], [ 2.983235, 49.07188 ], [ 2.988135, 49.072376 ], [ 2.989885, 49.08157 ], [ 2.999206, 49.088534 ], [ 3.003956, 49.088741 ], [ 3.012773, 49.09062 ], [ 3.0305, 49.08689 ], [ 3.034416, 49.08861 ], [ 3.061684, 49.08647 ], [ 3.066076, 49.08522 ], [ 3.064684, 49.08817 ], [ 3.056752, 49.09578 ], [ 3.056321, 49.101918 ], [ 3.069347, 49.11485 ], [ 3.071884, 49.117554 ], [ 3.079808, 49.1129 ], [ 3.115282, 49.10688 ], [ 3.121614, 49.10908 ], [ 3.124129, 49.107235 ], [ 3.138602, 49.1064 ], [ 3.145738, 49.10177 ], [ 3.160231, 49.09929 ], [ 3.16523, 49.09966 ], [ 3.155087, 49.082428 ], [ 3.158681, 49.08041 ], [ 3.167882, 49.0769 ], [ 3.180064, 49.065489 ], [ 3.181708, 49.06217 ], [ 3.180866, 49.05615 ], [ 3.190667, 49.049972 ], [ 3.190614, 49.046717 ], [ 3.181112, 49.04428 ], [ 3.176541, 49.03141 ], [ 3.163424, 49.02626 ], [ 3.163008, 49.019944 ], [ 3.171569, 49.012496 ], [ 3.198993, 49.00579 ], [ 3.208947, 48.99671 ], [ 3.209318, 48.993786 ], [ 3.223297, 48.990452 ], [ 3.224841, 48.987329 ], [ 3.229177, 48.98842 ], [ 3.231216, 48.976751 ], [ 3.245993, 48.976065 ], [ 3.254925, 48.96463 ], [ 3.255523, 48.96132 ], [ 3.259065, 48.95126 ], [ 3.262904, 48.948935 ], [ 3.261229, 48.9471 ], [ 3.259827, 48.945174 ], [ 3.265161, 48.939065 ], [ 3.26948, 48.937455 ], [ 3.283772, 48.94016 ], [ 3.300969, 48.94665 ], [ 3.30475, 48.94877 ], [ 3.31222, 48.935418 ], [ 3.312797, 48.92478 ], [ 3.313076, 48.921216 ], [ 3.317005, 48.91885 ], [ 3.330199, 48.90796 ], [ 3.361726, 48.91956 ], [ 3.367427, 48.9288 ], [ 3.37561, 48.90922 ], [ 3.369828, 48.89614 ], [ 3.382479, 48.885942 ], [ 3.38328, 48.87249 ], [ 3.387958, 48.87097 ], [ 3.400635, 48.876027 ], [ 3.405856, 48.87588 ], [ 3.401029, 48.86872 ], [ 3.398898, 48.86642 ], [ 3.408514, 48.86371 ], [ 3.423063, 48.86757 ], [ 3.433142, 48.86001 ], [ 3.448478, 48.85872 ], [ 3.452232, 48.8563 ], [ 3.44578, 48.8461 ], [ 3.445361, 48.843232 ], [ 3.459253, 48.841066 ], [ 3.461955, 48.83847 ], [ 3.470198, 48.850547 ], [ 3.480156, 48.8516 ], [ 3.485187, 48.85191 ], [ 3.486806, 48.848601 ], [ 3.491285, 48.83514 ], [ 3.485241, 48.825503 ], [ 3.487202, 48.81519 ], [ 3.483786, 48.81395 ], [ 3.480923, 48.81219 ], [ 3.477905, 48.81417 ], [ 3.474847, 48.81937 ], [ 3.470215, 48.820698 ], [ 3.449507, 48.812081 ], [ 3.434609, 48.812028 ], [ 3.420847, 48.816025 ], [ 3.416612, 48.81783 ], [ 3.407443, 48.80695 ], [ 3.421146, 48.80249 ], [ 3.440934, 48.80152 ], [ 3.442604, 48.78814 ], [ 3.442195, 48.78485 ], [ 3.428538, 48.78082 ], [ 3.414979, 48.78374 ], [ 3.409984, 48.78372 ], [ 3.397144, 48.76144 ], [ 3.399831, 48.755326 ], [ 3.40936, 48.75278 ], [ 3.432915, 48.75555 ], [ 3.436595, 48.75318 ], [ 3.437315, 48.749861 ], [ 3.43681, 48.74321 ], [ 3.442735, 48.73781 ], [ 3.467396, 48.73863 ], [ 3.467051, 48.732092 ], [ 3.46675, 48.72877 ], [ 3.466954, 48.72581 ], [ 3.467159, 48.72285 ], [ 3.464601, 48.707277 ], [ 3.47762, 48.69833 ], [ 3.472543, 48.69737 ], [ 3.470957, 48.68723 ], [ 3.456628, 48.68287 ], [ 3.442698, 48.67251 ], [ 3.446181, 48.666898 ], [ 3.442561, 48.66436 ], [ 3.458809, 48.65128 ], [ 3.451091, 48.63465 ], [ 3.476594, 48.637961 ], [ 3.492289, 48.64724 ], [ 3.512619, 48.643982 ], [ 3.528071, 48.645758 ], [ 3.533236, 48.64651 ], [ 3.522656, 48.63909 ], [ 3.521163, 48.6337 ], [ 3.540941, 48.63019 ], [ 3.555754, 48.62069 ], [ 3.556545, 48.61731 ], [ 3.508636, 48.605598 ], [ 3.505274, 48.602986 ], [ 3.515219, 48.590989 ], [ 3.496646, 48.58992 ], [ 3.485304, 48.580464 ], [ 3.480668, 48.579133 ], [ 3.469023, 48.573054 ], [ 3.465516, 48.57049 ], [ 3.483775, 48.54706 ], [ 3.480919, 48.541431 ], [ 3.47562, 48.54128 ], [ 3.450707, 48.52867 ], [ 3.445941, 48.52879 ], [ 3.41464, 48.53379 ], [ 3.408474, 48.529945 ], [ 3.405398, 48.52802 ], [ 3.422267, 48.51541 ], [ 3.434924, 48.49705 ], [ 3.433434, 48.490391 ], [ 3.424335, 48.49154 ], [ 3.407523, 48.487793 ], [ 3.403747, 48.48599 ], [ 3.387681, 48.48016 ], [ 3.384094, 48.47803 ], [ 3.39732, 48.468171 ], [ 3.39689, 48.461488 ], [ 3.405714, 48.45329 ], [ 3.400909, 48.43688 ], [ 3.39673, 48.43489 ], [ 3.392493, 48.425157 ], [ 3.407194, 48.422678 ], [ 3.411833, 48.42132 ], [ 3.411362, 48.41804 ], [ 3.402286, 48.415408 ], [ 3.416642, 48.415835 ], [ 3.421938, 48.412236 ], [ 3.420872, 48.40902 ], [ 3.414792, 48.390273 ], [ 3.409931, 48.39054 ], [ 3.400207, 48.390881 ], [ 3.385095, 48.398713 ], [ 3.375408, 48.39869 ], [ 3.374142, 48.39549 ], [ 3.366319, 48.391485 ], [ 3.361191, 48.37257 ], [ 3.356091, 48.37516 ], [ 3.356559, 48.378452 ], [ 3.351685, 48.378619 ], [ 3.346315, 48.373246 ], [ 3.336538, 48.37318 ], [ 3.330117, 48.372123 ], [ 3.325478, 48.37309 ], [ 3.311856, 48.376023 ], [ 3.31069, 48.37291 ], [ 3.306018, 48.37289 ], [ 3.283175, 48.381385 ], [ 3.281618, 48.37816 ], [ 3.272179, 48.378325 ], [ 3.267473, 48.37713 ], [ 3.259611, 48.36859 ], [ 3.251021, 48.365101 ], [ 3.246859, 48.36729 ], [ 3.226483, 48.37024 ], [ 3.222216, 48.370008 ], [ 3.214496, 48.36759 ], [ 3.211304, 48.366267 ], [ 3.20445, 48.3642 ], [ 3.199658, 48.364461 ], [ 3.193763, 48.369392 ], [ 3.184941, 48.368129 ], [ 3.183373, 48.37146 ], [ 3.171808, 48.37768 ], [ 3.170015, 48.3747 ], [ 3.14485, 48.367303 ], [ 3.139869, 48.372599 ], [ 3.135759, 48.37088 ], [ 3.122467, 48.36863 ], [ 3.118385, 48.36668 ], [ 3.103418, 48.349514 ], [ 3.099602, 48.3516 ], [ 3.101066, 48.354788 ], [ 3.080611, 48.36083 ], [ 3.066702, 48.35772 ], [ 3.062057, 48.357442 ], [ 3.049451, 48.36003 ], [ 3.046276, 48.35731 ], [ 3.036773, 48.33779 ], [ 3.04226, 48.33219 ], [ 3.040571, 48.328931 ], [ 3.015685, 48.307317 ], [ 3.0171, 48.304537 ], [ 3.027469, 48.300639 ], [ 3.020051, 48.29638 ], [ 3.026761, 48.28802 ], [ 3.029739, 48.285424 ], [ 3.026961, 48.28246 ], [ 3.02476, 48.275645 ], [ 3.029261, 48.274204 ], [ 3.043708, 48.27184 ], [ 3.04757, 48.2497 ], [ 3.032696, 48.24874 ], [ 3.012819, 48.2221 ], [ 3.00599, 48.20942 ], [ 2.997119, 48.20635 ], [ 2.988961, 48.20902 ], [ 2.984587, 48.207453 ], [ 2.971666, 48.203411 ], [ 2.970958, 48.194188 ], [ 2.955416, 48.19252 ], [ 2.951461, 48.19049 ], [ 2.934749, 48.17882 ], [ 2.934241, 48.175727 ], [ 2.936314, 48.163392 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "79", "CODE_DEPT": "78", "NOM_DEPT": "YVELINES", "CODE_CHF": "646", "NOM_CHF": "VERSAILLES", "X_CHF_LIEU": "6364", "Y_CHF_LIEU": "68564", "X_CENTROID": "6149", "Y_CENTROID": "68578", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.922149, 48.4576 ], [ 1.919886, 48.447935 ], [ 1.91015, 48.44593 ], [ 1.90452, 48.440263 ], [ 1.884121, 48.44001 ], [ 1.879442, 48.44067 ], [ 1.874392, 48.44029 ], [ 1.861091, 48.44446 ], [ 1.857023, 48.446212 ], [ 1.847344, 48.446632 ], [ 1.839126, 48.458032 ], [ 1.837137, 48.46114 ], [ 1.833171, 48.46734 ], [ 1.808028, 48.46576 ], [ 1.803139, 48.46658 ], [ 1.793066, 48.48163 ], [ 1.796336, 48.484192 ], [ 1.793193, 48.4867 ], [ 1.78664, 48.49147 ], [ 1.789428, 48.49444 ], [ 1.776842, 48.51287 ], [ 1.776301, 48.52681 ], [ 1.787245, 48.553745 ], [ 1.782719, 48.553168 ], [ 1.778178, 48.55263 ], [ 1.776034, 48.55565 ], [ 1.764943, 48.56221 ], [ 1.761507, 48.57166 ], [ 1.748456, 48.57603 ], [ 1.744584, 48.574102 ], [ 1.726923, 48.572844 ], [ 1.709253, 48.57802 ], [ 1.706156, 48.58317 ], [ 1.701989, 48.585 ], [ 1.704474, 48.58816 ], [ 1.717849, 48.60739 ], [ 1.717432, 48.610572 ], [ 1.709778, 48.613386 ], [ 1.691234, 48.613301 ], [ 1.687762, 48.611094 ], [ 1.685197, 48.61328 ], [ 1.690247, 48.616951 ], [ 1.681592, 48.61905 ], [ 1.666354, 48.61371 ], [ 1.663558, 48.61641 ], [ 1.657429, 48.62156 ], [ 1.656909, 48.62809 ], [ 1.649567, 48.632276 ], [ 1.651575, 48.638129 ], [ 1.647055, 48.63968 ], [ 1.640838, 48.644889 ], [ 1.643197, 48.651294 ], [ 1.622748, 48.65032 ], [ 1.607566, 48.659618 ], [ 1.602707, 48.6631 ], [ 1.601707, 48.66644 ], [ 1.606204, 48.67912 ], [ 1.608626, 48.682058 ], [ 1.611295, 48.68846 ], [ 1.606656, 48.6892 ], [ 1.582189, 48.696059 ], [ 1.584038, 48.69902 ], [ 1.580727, 48.701349 ], [ 1.594878, 48.709316 ], [ 1.590011, 48.712875 ], [ 1.61504, 48.735306 ], [ 1.620258, 48.736006 ], [ 1.622705, 48.740154 ], [ 1.62496, 48.749031 ], [ 1.605226, 48.76059 ], [ 1.584907, 48.763298 ], [ 1.582928, 48.76756 ], [ 1.587594, 48.773611 ], [ 1.576732, 48.785167 ], [ 1.579434, 48.8089 ], [ 1.582798, 48.81092 ], [ 1.590483, 48.81733 ], [ 1.581793, 48.82982 ], [ 1.594496, 48.835696 ], [ 1.594894, 48.83914 ], [ 1.586621, 48.8432 ], [ 1.58207, 48.84421 ], [ 1.577269, 48.844361 ], [ 1.577939, 48.84776 ], [ 1.582962, 48.8575 ], [ 1.572072, 48.86392 ], [ 1.568638, 48.865845 ], [ 1.559904, 48.86712 ], [ 1.558839, 48.86425 ], [ 1.554899, 48.86573 ], [ 1.546231, 48.87244 ], [ 1.561309, 48.88784 ], [ 1.563742, 48.890629 ], [ 1.558716, 48.891369 ], [ 1.538521, 48.90668 ], [ 1.544341, 48.91079 ], [ 1.541664, 48.915754 ], [ 1.540523, 48.918483 ], [ 1.538249, 48.921693 ], [ 1.522955, 48.924887 ], [ 1.513925, 48.92181 ], [ 1.508132, 48.92724 ], [ 1.511543, 48.933506 ], [ 1.501797, 48.941057 ], [ 1.501524, 48.941054 ], [ 1.508641, 48.95044 ], [ 1.510996, 48.953574 ], [ 1.501028, 48.9535 ], [ 1.495147, 48.96608 ], [ 1.514626, 48.976113 ], [ 1.518388, 48.978363 ], [ 1.513493, 48.9785 ], [ 1.507903, 48.983773 ], [ 1.493875, 48.979353 ], [ 1.47826, 48.97925 ], [ 1.470889, 48.97482 ], [ 1.468862, 48.97777 ], [ 1.461702, 48.98886 ], [ 1.470984, 48.99111 ], [ 1.48017, 49.00224 ], [ 1.480401, 49.005562 ], [ 1.478136, 49.00823 ], [ 1.474046, 49.00969 ], [ 1.477096, 49.014801 ], [ 1.471842, 49.01863 ], [ 1.468018, 49.02031 ], [ 1.457762, 49.0263 ], [ 1.457511, 49.029696 ], [ 1.456846, 49.03643 ], [ 1.448209, 49.04485 ], [ 1.451258, 49.05133 ], [ 1.44728, 49.05351 ], [ 1.461614, 49.06337 ], [ 1.47664, 49.05363 ], [ 1.486848, 49.05176 ], [ 1.498032, 49.05866 ], [ 1.503301, 49.0591 ], [ 1.51315, 49.077873 ], [ 1.510269, 49.084285 ], [ 1.516637, 49.07992 ], [ 1.519955, 49.071113 ], [ 1.520998, 49.068132 ], [ 1.541304, 49.07318 ], [ 1.546672, 49.072591 ], [ 1.560832, 49.0704 ], [ 1.569242, 49.07413 ], [ 1.572262, 49.07681 ], [ 1.589843, 49.081684 ], [ 1.594359, 49.08275 ], [ 1.599088, 49.084067 ], [ 1.605928, 49.080694 ], [ 1.608796, 49.07789 ], [ 1.612163, 49.0733 ], [ 1.614301, 49.07118 ], [ 1.620154, 49.073924 ], [ 1.641721, 49.08092 ], [ 1.646598, 49.08132 ], [ 1.670822, 49.078911 ], [ 1.683574, 49.0738 ], [ 1.687592, 49.071847 ], [ 1.691372, 49.07013 ], [ 1.696857, 49.06536 ], [ 1.693668, 49.05668 ], [ 1.719925, 49.0473 ], [ 1.723457, 49.04498 ], [ 1.729224, 49.04859 ], [ 1.732066, 49.05042 ], [ 1.735638, 49.04868 ], [ 1.745981, 49.04812 ], [ 1.751177, 49.04823 ], [ 1.755356, 49.061067 ], [ 1.759422, 49.06328 ], [ 1.770733, 49.05778 ], [ 1.784687, 49.05735 ], [ 1.789382, 49.057862 ], [ 1.7943, 49.058199 ], [ 1.797862, 49.06922 ], [ 1.796547, 49.072232 ], [ 1.811698, 49.07405 ], [ 1.815394, 49.07641 ], [ 1.823601, 49.07667 ], [ 1.836704, 49.07162 ], [ 1.840643, 49.069339 ], [ 1.841442, 49.064787 ], [ 1.861522, 49.05901 ], [ 1.865469, 49.057472 ], [ 1.863854, 49.05437 ], [ 1.851334, 49.03336 ], [ 1.859318, 49.02977 ], [ 1.862414, 49.020159 ], [ 1.859255, 49.013969 ], [ 1.861713, 49.01412 ], [ 1.877382, 49.0191 ], [ 1.881898, 49.01954 ], [ 1.881715, 49.026141 ], [ 1.883463, 49.03262 ], [ 1.908523, 49.048024 ], [ 1.911215, 49.046843 ], [ 1.914082, 49.04583 ], [ 1.912474, 49.041612 ], [ 1.935202, 49.02456 ], [ 1.937802, 49.02178 ], [ 1.945651, 49.025137 ], [ 1.954948, 49.024535 ], [ 1.957081, 49.021801 ], [ 1.967144, 49.023201 ], [ 1.976186, 49.01957 ], [ 1.986761, 49.01998 ], [ 1.991882, 49.02101 ], [ 2.001651, 49.01281 ], [ 2.004889, 49.010076 ], [ 2.007631, 49.00824 ], [ 2.010479, 49.00584 ], [ 2.023614, 48.997901 ], [ 2.026445, 49.000703 ], [ 2.046502, 49.00185 ], [ 2.064429, 49.008208 ], [ 2.067402, 49.00632 ], [ 2.071694, 49.001709 ], [ 2.083654, 49.01178 ], [ 2.086064, 49.01465 ], [ 2.105785, 49.00948 ], [ 2.121257, 49.01849 ], [ 2.126795, 49.008687 ], [ 2.122018, 48.99852 ], [ 2.127453, 48.989052 ], [ 2.1619, 48.983165 ], [ 2.166354, 48.981478 ], [ 2.17802, 48.96685 ], [ 2.178155, 48.96351 ], [ 2.178105, 48.95977 ], [ 2.175501, 48.95519 ], [ 2.173141, 48.9533 ], [ 2.201086, 48.950186 ], [ 2.205858, 48.94974 ], [ 2.20663, 48.94119 ], [ 2.201901, 48.93713 ], [ 2.198927, 48.935252 ], [ 2.202626, 48.920996 ], [ 2.199191, 48.91897 ], [ 2.201798, 48.91362 ], [ 2.198638, 48.91148 ], [ 2.200616, 48.9088 ], [ 2.196361, 48.906951 ], [ 2.174289, 48.899067 ], [ 2.169241, 48.89574 ], [ 2.166658, 48.892656 ], [ 2.157976, 48.88047 ], [ 2.155696, 48.87725 ], [ 2.150383, 48.87111 ], [ 2.153155, 48.86915 ], [ 2.153669, 48.864415 ], [ 2.150549, 48.85846 ], [ 2.157847, 48.85049 ], [ 2.159584, 48.847557 ], [ 2.149748, 48.84657 ], [ 2.145874, 48.84017 ], [ 2.145876, 48.8367 ], [ 2.147655, 48.83121 ], [ 2.148626, 48.82848 ], [ 2.150808, 48.822474 ], [ 2.150436, 48.819396 ], [ 2.15043, 48.81895 ], [ 2.157309, 48.81465 ], [ 2.161221, 48.81272 ], [ 2.172757, 48.81522 ], [ 2.17674, 48.81399 ], [ 2.185087, 48.800075 ], [ 2.183049, 48.79724 ], [ 2.202513, 48.79834 ], [ 2.205307, 48.79546 ], [ 2.209114, 48.7868 ], [ 2.223876, 48.78449 ], [ 2.22637, 48.78151 ], [ 2.228836, 48.77489 ], [ 2.227483, 48.77163 ], [ 2.207269, 48.770318 ], [ 2.200844, 48.77488 ], [ 2.190663, 48.775037 ], [ 2.186958, 48.77264 ], [ 2.191919, 48.76686 ], [ 2.189379, 48.75345 ], [ 2.184595, 48.754929 ], [ 2.17545, 48.75773 ], [ 2.161902, 48.752595 ], [ 2.151397, 48.752818 ], [ 2.138971, 48.7466 ], [ 2.138893, 48.74312 ], [ 2.13498, 48.73714 ], [ 2.130229, 48.737438 ], [ 2.122662, 48.74107 ], [ 2.104654, 48.73798 ], [ 2.10057, 48.73586 ], [ 2.110657, 48.724053 ], [ 2.107738, 48.71747 ], [ 2.110333, 48.714381 ], [ 2.107798, 48.711565 ], [ 2.097183, 48.70052 ], [ 2.097853, 48.69403 ], [ 2.093351, 48.69581 ], [ 2.089331, 48.698041 ], [ 2.082079, 48.68545 ], [ 2.077905, 48.686394 ], [ 2.069888, 48.68879 ], [ 2.066512, 48.6869 ], [ 2.062865, 48.6872 ], [ 2.055659, 48.686787 ], [ 2.050596, 48.68729 ], [ 2.042245, 48.68035 ], [ 2.037155, 48.68013 ], [ 2.033591, 48.6775 ], [ 2.028902, 48.663742 ], [ 2.028553, 48.660618 ], [ 2.022358, 48.65785 ], [ 2.013269, 48.659574 ], [ 2.011658, 48.65358 ], [ 2.01669, 48.64444 ], [ 2.020277, 48.64209 ], [ 2.034908, 48.641464 ], [ 2.036063, 48.631803 ], [ 2.04148, 48.62654 ], [ 2.042083, 48.62618 ], [ 2.045683, 48.62372 ], [ 2.057726, 48.617295 ], [ 2.054815, 48.60796 ], [ 2.04969, 48.60783 ], [ 2.035013, 48.604852 ], [ 2.033047, 48.5982 ], [ 2.032411, 48.59517 ], [ 2.036348, 48.5898 ], [ 2.032866, 48.587446 ], [ 2.016821, 48.567424 ], [ 2.017574, 48.557597 ], [ 2.012795, 48.556595 ], [ 1.98299, 48.55683 ], [ 1.979664, 48.554336 ], [ 1.962685, 48.560487 ], [ 1.957646, 48.55964 ], [ 1.937604, 48.562218 ], [ 1.934125, 48.54865 ], [ 1.962171, 48.53509 ], [ 1.976168, 48.534236 ], [ 1.977246, 48.52759 ], [ 1.967476, 48.52574 ], [ 1.964238, 48.52785 ], [ 1.953016, 48.523454 ], [ 1.951471, 48.520112 ], [ 1.934279, 48.495776 ], [ 1.933108, 48.481424 ], [ 1.928094, 48.48046 ], [ 1.919729, 48.4766 ], [ 1.916248, 48.47023 ], [ 1.916634, 48.4633 ], [ 1.922149, 48.4576 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "80", "CODE_DEPT": "79", "NOM_DEPT": "DEUX-SEVRES", "CODE_CHF": "191", "NOM_CHF": "NIORT", "X_CHF_LIEU": "4337", "Y_CHF_LIEU": "65864", "X_CENTROID": "4459", "Y_CENTROID": "66115", "CODE_REG": "54", "NOM_REGION": "POITOU-CHARENTES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.102937, 45.96966 ], [ -0.107459, 45.97055 ], [ -0.117338, 45.97749 ], [ -0.135611, 45.978538 ], [ -0.132598, 45.987606 ], [ -0.136825, 45.98918 ], [ -0.144795, 46.00467 ], [ -0.158512, 46.00504 ], [ -0.158305, 46.0082 ], [ -0.164194, 46.012763 ], [ -0.162963, 46.01902 ], [ -0.16345, 46.02232 ], [ -0.168185, 46.026801 ], [ -0.164509, 46.03576 ], [ -0.189132, 46.02614 ], [ -0.189839, 46.02964 ], [ -0.190974, 46.04361 ], [ -0.193898, 46.05117 ], [ -0.210661, 46.045432 ], [ -0.229108, 46.04792 ], [ -0.233049, 46.048464 ], [ -0.2686, 46.056439 ], [ -0.273131, 46.05731 ], [ -0.274533, 46.067579 ], [ -0.288816, 46.085118 ], [ -0.293282, 46.086593 ], [ -0.296411, 46.0839 ], [ -0.308001, 46.078279 ], [ -0.327183, 46.0813 ], [ -0.331541, 46.08246 ], [ -0.362733, 46.075551 ], [ -0.364418, 46.07853 ], [ -0.361875, 46.084166 ], [ -0.37348, 46.09406 ], [ -0.38644, 46.096874 ], [ -0.401451, 46.084248 ], [ -0.405371, 46.086257 ], [ -0.421421, 46.09334 ], [ -0.421226, 46.1133 ], [ -0.425235, 46.1117 ], [ -0.439449, 46.1036 ], [ -0.441444, 46.094705 ], [ -0.443727, 46.097637 ], [ -0.450867, 46.101981 ], [ -0.473602, 46.104757 ], [ -0.491715, 46.10798 ], [ -0.505467, 46.10719 ], [ -0.511963, 46.11131 ], [ -0.516389, 46.112417 ], [ -0.509761, 46.116795 ], [ -0.518414, 46.124198 ], [ -0.514345, 46.12583 ], [ -0.511059, 46.12817 ], [ -0.520492, 46.1283 ], [ -0.526724, 46.132269 ], [ -0.526793, 46.135557 ], [ -0.531324, 46.13667 ], [ -0.533284, 46.139718 ], [ -0.538043, 46.14072 ], [ -0.546856, 46.143864 ], [ -0.566285, 46.143301 ], [ -0.57933, 46.14826 ], [ -0.582225, 46.142537 ], [ -0.583081, 46.13956 ], [ -0.602388, 46.14251 ], [ -0.615966, 46.13838 ], [ -0.628183, 46.143701 ], [ -0.626849, 46.15216 ], [ -0.603764, 46.15516 ], [ -0.604641, 46.158432 ], [ -0.613016, 46.16152 ], [ -0.622797, 46.16092 ], [ -0.634622, 46.16572 ], [ -0.643554, 46.16502 ], [ -0.651379, 46.16837 ], [ -0.65539, 46.169953 ], [ -0.664928, 46.18181 ], [ -0.688524, 46.18223 ], [ -0.696475, 46.192738 ], [ -0.695072, 46.195992 ], [ -0.682412, 46.19769 ], [ -0.686375, 46.20719 ], [ -0.686332, 46.213702 ], [ -0.69905, 46.22262 ], [ -0.702818, 46.22456 ], [ -0.74701, 46.24324 ], [ -0.751462, 46.24507 ], [ -0.754364, 46.251582 ], [ -0.736065, 46.267727 ], [ -0.742668, 46.27666 ], [ -0.745248, 46.27959 ], [ -0.754669, 46.302444 ], [ -0.750476, 46.304259 ], [ -0.726249, 46.303206 ], [ -0.718202, 46.30519 ], [ -0.719803, 46.314577 ], [ -0.716357, 46.31689 ], [ -0.707104, 46.318002 ], [ -0.70053, 46.322759 ], [ -0.697338, 46.325189 ], [ -0.676169, 46.31806 ], [ -0.672273, 46.316219 ], [ -0.655579, 46.3158 ], [ -0.652074, 46.317473 ], [ -0.647445, 46.3177 ], [ -0.643541, 46.31945 ], [ -0.636797, 46.324659 ], [ -0.637249, 46.334578 ], [ -0.619408, 46.33971 ], [ -0.608049, 46.34665 ], [ -0.602849, 46.359586 ], [ -0.578438, 46.356019 ], [ -0.559595, 46.36094 ], [ -0.557285, 46.364046 ], [ -0.540585, 46.38381 ], [ -0.5378, 46.38646 ], [ -0.541296, 46.38894 ], [ -0.54963, 46.3927 ], [ -0.569019, 46.39457 ], [ -0.572378, 46.40071 ], [ -0.581989, 46.40223 ], [ -0.601255, 46.41263 ], [ -0.611005, 46.413052 ], [ -0.619035, 46.39361 ], [ -0.620883, 46.39046 ], [ -0.637872, 46.3975 ], [ -0.632655, 46.403305 ], [ -0.640021, 46.415862 ], [ -0.634986, 46.429111 ], [ -0.636841, 46.43231 ], [ -0.620234, 46.439216 ], [ -0.61809, 46.448956 ], [ -0.610978, 46.45144 ], [ -0.608213, 46.454208 ], [ -0.616219, 46.46283 ], [ -0.617997, 46.47311 ], [ -0.628563, 46.479938 ], [ -0.625533, 46.49676 ], [ -0.632839, 46.501418 ], [ -0.634351, 46.504714 ], [ -0.64436, 46.51089 ], [ -0.638679, 46.519278 ], [ -0.642232, 46.52476 ], [ -0.628198, 46.528166 ], [ -0.608657, 46.52813 ], [ -0.602129, 46.53328 ], [ -0.602901, 46.53962 ], [ -0.603098, 46.542805 ], [ -0.608309, 46.56249 ], [ -0.6132, 46.562352 ], [ -0.617953, 46.5615 ], [ -0.622828, 46.57428 ], [ -0.624699, 46.57745 ], [ -0.613427, 46.58761 ], [ -0.618935, 46.592971 ], [ -0.616699, 46.59887 ], [ -0.627151, 46.6056 ], [ -0.617714, 46.61846 ], [ -0.613965, 46.620125 ], [ -0.633062, 46.636331 ], [ -0.643094, 46.637815 ], [ -0.657073, 46.633954 ], [ -0.658671, 46.640402 ], [ -0.650795, 46.644141 ], [ -0.647809, 46.656784 ], [ -0.640573, 46.661124 ], [ -0.636989, 46.663329 ], [ -0.654026, 46.67448 ], [ -0.657737, 46.67669 ], [ -0.678752, 46.686685 ], [ -0.660358, 46.69867 ], [ -0.655832, 46.700335 ], [ -0.673111, 46.720822 ], [ -0.684401, 46.72765 ], [ -0.688669, 46.725848 ], [ -0.698074, 46.735938 ], [ -0.695491, 46.74537 ], [ -0.698238, 46.751617 ], [ -0.707732, 46.74968 ], [ -0.716599, 46.752971 ], [ -0.719752, 46.75573 ], [ -0.726564, 46.76876 ], [ -0.725162, 46.78292 ], [ -0.720612, 46.78928 ], [ -0.718528, 46.79888 ], [ -0.703625, 46.80746 ], [ -0.6991, 46.808855 ], [ -0.701034, 46.8116 ], [ -0.71004, 46.82157 ], [ -0.714991, 46.82157 ], [ -0.729631, 46.821551 ], [ -0.738594, 46.82889 ], [ -0.757951, 46.83132 ], [ -0.761555, 46.833852 ], [ -0.773173, 46.840358 ], [ -0.777826, 46.84097 ], [ -0.786763, 46.851918 ], [ -0.788296, 46.854301 ], [ -0.793735, 46.857854 ], [ -0.795076, 46.86104 ], [ -0.819018, 46.881121 ], [ -0.83246, 46.88474 ], [ -0.818284, 46.902572 ], [ -0.820341, 46.908976 ], [ -0.813814, 46.91398 ], [ -0.809903, 46.91971 ], [ -0.824358, 46.921706 ], [ -0.830606, 46.93114 ], [ -0.85264, 46.93825 ], [ -0.851841, 46.9442 ], [ -0.876134, 46.945243 ], [ -0.881, 46.94647 ], [ -0.882299, 46.94988 ], [ -0.865305, 46.95284 ], [ -0.868023, 46.959361 ], [ -0.87779, 46.959141 ], [ -0.883243, 46.96852 ], [ -0.898223, 46.96807 ], [ -0.902217, 46.970315 ], [ -0.896251, 46.97468 ], [ -0.891961, 46.975827 ], [ -0.882077, 46.976295 ], [ -0.858915, 46.97047 ], [ -0.854241, 46.971586 ], [ -0.855169, 46.977938 ], [ -0.84772, 46.98615 ], [ -0.834302, 46.987512 ], [ -0.821638, 46.992845 ], [ -0.816647, 46.99306 ], [ -0.809678, 46.98819 ], [ -0.805024, 46.98945 ], [ -0.808398, 46.991895 ], [ -0.789958, 47.00245 ], [ -0.78685, 47.005107 ], [ -0.772827, 47.00336 ], [ -0.761383, 46.99305 ], [ -0.751304, 46.99227 ], [ -0.7338, 46.99708 ], [ -0.714462, 46.98599 ], [ -0.702174, 46.992164 ], [ -0.698466, 46.99456 ], [ -0.689724, 46.992716 ], [ -0.684779, 46.987998 ], [ -0.680185, 46.987658 ], [ -0.680368, 46.99324 ], [ -0.673301, 47.001866 ], [ -0.646938, 46.99426 ], [ -0.632918, 46.99693 ], [ -0.625115, 46.99334 ], [ -0.620177, 46.99336 ], [ -0.600671, 46.997541 ], [ -0.595492, 46.99791 ], [ -0.59574, 47.000642 ], [ -0.587252, 47.00613 ], [ -0.580099, 47.014899 ], [ -0.566774, 47.019836 ], [ -0.561548, 47.029506 ], [ -0.547013, 47.02875 ], [ -0.543463, 47.03511 ], [ -0.556072, 47.045618 ], [ -0.556127, 47.05925 ], [ -0.559717, 47.061701 ], [ -0.519492, 47.076037 ], [ -0.51513, 47.077937 ], [ -0.491782, 47.08285 ], [ -0.467753, 47.08341 ], [ -0.463353, 47.08187 ], [ -0.464423, 47.07614 ], [ -0.483854, 47.066538 ], [ -0.480383, 47.053638 ], [ -0.460572, 47.06835 ], [ -0.445454, 47.067681 ], [ -0.426487, 47.07224 ], [ -0.408634, 47.066493 ], [ -0.40078, 47.07077 ], [ -0.391846, 47.09188 ], [ -0.387062, 47.09239 ], [ -0.381939, 47.088554 ], [ -0.363689, 47.09253 ], [ -0.359108, 47.093536 ], [ -0.354651, 47.09465 ], [ -0.342066, 47.090237 ], [ -0.340141, 47.08727 ], [ -0.317233, 47.09127 ], [ -0.312636, 47.09205 ], [ -0.29251, 47.10061 ], [ -0.266009, 47.10295 ], [ -0.262876, 47.10548 ], [ -0.258181, 47.10028 ], [ -0.24043, 47.10508 ], [ -0.209135, 47.09591 ], [ -0.206269, 47.093193 ], [ -0.190185, 47.099648 ], [ -0.186682, 47.10534 ], [ -0.18524, 47.10842 ], [ -0.15615, 47.101591 ], [ -0.146212, 47.1027 ], [ -0.141253, 47.10365 ], [ -0.140891, 47.09676 ], [ -0.166736, 47.08099 ], [ -0.178554, 47.069792 ], [ -0.174754, 47.06752 ], [ -0.17037, 47.066071 ], [ -0.165984, 47.064596 ], [ -0.158811, 47.068883 ], [ -0.149809, 47.06965 ], [ -0.138001, 47.064342 ], [ -0.133284, 47.055549 ], [ -0.128896, 47.054236 ], [ -0.10698, 47.06354 ], [ -0.102121, 47.064806 ], [ -0.092179, 47.04135 ], [ -0.091414, 47.03789 ], [ -0.09026, 47.0327 ], [ -0.088966, 47.02759 ], [ -0.088267, 47.025046 ], [ -0.081256, 47.01302 ], [ -0.082627, 47.01004 ], [ -0.093051, 47.0085 ], [ -0.092379, 47.005294 ], [ -0.084947, 46.98863 ], [ -0.086481, 46.9853 ], [ -0.06031, 46.99443 ], [ -0.055331, 46.99464 ], [ -0.038714, 46.98928 ], [ -0.033901, 46.983537 ], [ -0.033124, 46.980251 ], [ -0.043471, 46.96926 ], [ -0.046251, 46.966516 ], [ -0.04483, 46.95952 ], [ -0.033932, 46.951992 ], [ -0.031346, 46.945284 ], [ -0.030741, 46.941777 ], [ -0.022143, 46.93811 ], [ -0.015046, 46.925268 ], [ -0.01387, 46.92187 ], [ -0.010303, 46.91142 ], [ -0.009123, 46.90792 ], [ -0.023214, 46.894689 ], [ -0.02304, 46.888062 ], [ -0.031594, 46.87675 ], [ -0.035644, 46.87494 ], [ -0.032214, 46.87234 ], [ -0.022418, 46.874095 ], [ -0.008089, 46.870425 ], [ 0.001665, 46.86249 ], [ 0.010103, 46.8586 ], [ 0.023744, 46.85394 ], [ 0.033758, 46.854076 ], [ 0.019124, 46.837669 ], [ 0.016607, 46.83496 ], [ 0.014988, 46.83457 ], [ 0.002082, 46.845 ], [ -0.007806, 46.84665 ], [ -0.025776, 46.840614 ], [ -0.035501, 46.832564 ], [ -0.04569, 46.8321 ], [ -0.045392, 46.824 ], [ -0.049092, 46.82304 ], [ -0.045274, 46.82074 ], [ -0.017515, 46.814665 ], [ -0.006895, 46.82197 ], [ -0.004126, 46.819376 ], [ 0.006922, 46.81351 ], [ 0.00403, 46.80766 ], [ -0.00706, 46.80176 ], [ -0.009554, 46.798934 ], [ -0.022661, 46.78952 ], [ -0.017718, 46.778014 ], [ -0.021874, 46.77635 ], [ -0.015765, 46.75706 ], [ -0.012665, 46.754349 ], [ -0.001918, 46.761281 ], [ 0.028176, 46.738979 ], [ 0.033065, 46.738492 ], [ 0.038065, 46.731179 ], [ 0.03675, 46.728622 ], [ 0.031902, 46.72717 ], [ 0.022859, 46.72768 ], [ 0.0073, 46.71992 ], [ 0.003784, 46.717647 ], [ -0.000478, 46.71582 ], [ 0.002659, 46.705751 ], [ 0.000092, 46.699331 ], [ -0.018356, 46.694297 ], [ -0.009606, 46.68267 ], [ -0.028872, 46.67222 ], [ -0.031657, 46.669347 ], [ -0.032044, 46.669255 ], [ -0.037853, 46.663803 ], [ -0.034129, 46.654314 ], [ -0.064752, 46.63276 ], [ -0.065814, 46.622825 ], [ -0.060919, 46.62276 ], [ -0.028191, 46.628529 ], [ -0.017205, 46.639407 ], [ -0.0049, 46.644704 ], [ 0.000427, 46.6397 ], [ -0.010066, 46.61655 ], [ 0.003187, 46.611459 ], [ 0.022855, 46.61453 ], [ 0.021688, 46.61124 ], [ 0.025803, 46.605092 ], [ 0.023996, 46.59511 ], [ 0.042719, 46.59117 ], [ 0.038232, 46.58956 ], [ 0.030598, 46.58503 ], [ 0.020517, 46.584644 ], [ -0.003315, 46.571731 ], [ -0.01011, 46.555441 ], [ 0.007113, 46.54534 ], [ -0.004934, 46.52722 ], [ -0.006269, 46.52398 ], [ -0.031351, 46.52498 ], [ -0.03118, 46.5083 ], [ -0.038793, 46.49971 ], [ -0.039234, 46.493107 ], [ -0.032175, 46.488644 ], [ -0.042535, 46.48235 ], [ -0.04326, 46.472436 ], [ -0.040101, 46.47006 ], [ -0.013593, 46.47442 ], [ -0.012533, 46.471277 ], [ -0.010466, 46.468331 ], [ -0.017852, 46.456403 ], [ -0.019244, 46.45328 ], [ -0.010582, 46.44989 ], [ -0.012776, 46.425881 ], [ -0.020218, 46.40588 ], [ -0.012697, 46.40202 ], [ -0.007707, 46.39253 ], [ -0.007997, 46.38906 ], [ 0.000448, 46.392249 ], [ 0.014669, 46.39083 ], [ 0.02244, 46.3792 ], [ 0.029944, 46.37503 ], [ 0.03422, 46.373497 ], [ 0.016604, 46.35947 ], [ 0.013848, 46.35701 ], [ 0.031407, 46.34621 ], [ 0.02302, 46.342513 ], [ 0.017389, 46.329345 ], [ 0.015099, 46.326257 ], [ 0.029354, 46.32867 ], [ 0.047162, 46.3224 ], [ 0.078218, 46.304943 ], [ 0.096931, 46.32056 ], [ 0.095524, 46.327444 ], [ 0.101365, 46.33309 ], [ 0.117942, 46.34089 ], [ 0.123317, 46.346792 ], [ 0.137598, 46.349395 ], [ 0.156198, 46.34327 ], [ 0.175249, 46.331376 ], [ 0.177369, 46.32811 ], [ 0.16595, 46.31705 ], [ 0.169492, 46.31068 ], [ 0.165, 46.305514 ], [ 0.152946, 46.304051 ], [ 0.170331, 46.284156 ], [ 0.17232, 46.278601 ], [ 0.162055, 46.26755 ], [ 0.133602, 46.266793 ], [ 0.128837, 46.26723 ], [ 0.130082, 46.264055 ], [ 0.137458, 46.244985 ], [ 0.139473, 46.240215 ], [ 0.142697, 46.23045 ], [ 0.13588, 46.22573 ], [ 0.131318, 46.226836 ], [ 0.11804, 46.213182 ], [ 0.113432, 46.21221 ], [ 0.109509, 46.18913 ], [ 0.107702, 46.18599 ], [ 0.139626, 46.1796 ], [ 0.148112, 46.17257 ], [ 0.153841, 46.160416 ], [ 0.155111, 46.157168 ], [ 0.167667, 46.15608 ], [ 0.171881, 46.15583 ], [ 0.17692, 46.15012 ], [ 0.186802, 46.14931 ], [ 0.198304, 46.159936 ], [ 0.213326, 46.159044 ], [ 0.218932, 46.15537 ], [ 0.21631, 46.14213 ], [ 0.200552, 46.12986 ], [ 0.198477, 46.126835 ], [ 0.20303, 46.12573 ], [ 0.204103, 46.12274 ], [ 0.199993, 46.117439 ], [ 0.188854, 46.11131 ], [ 0.190716, 46.104793 ], [ 0.193879, 46.09689 ], [ 0.197168, 46.09537 ], [ 0.192706, 46.094741 ], [ 0.177537, 46.08321 ], [ 0.173683, 46.0821 ], [ 0.167523, 46.084555 ], [ 0.164726, 46.08731 ], [ 0.135816, 46.104051 ], [ 0.131845, 46.1022 ], [ 0.119132, 46.09761 ], [ 0.11478, 46.09637 ], [ 0.10568, 46.097988 ], [ 0.096715, 46.10537 ], [ 0.093014, 46.10335 ], [ 0.094764, 46.100376 ], [ 0.099559, 46.09151 ], [ 0.096913, 46.088888 ], [ 0.092904, 46.090011 ], [ 0.072972, 46.0939 ], [ 0.068935, 46.09212 ], [ 0.052655, 46.08029 ], [ 0.061213, 46.07258 ], [ 0.052554, 46.069866 ], [ 0.037802, 46.06854 ], [ 0.019144, 46.052844 ], [ 0.015952, 46.0549 ], [ 0.004892, 46.059525 ], [ 0.00147, 46.057235 ], [ -0.030922, 46.05594 ], [ -0.039502, 46.053107 ], [ -0.038172, 46.04988 ], [ -0.036759, 46.04329 ], [ -0.022684, 46.02995 ], [ -0.031191, 46.021862 ], [ -0.04552, 46.020621 ], [ -0.045363, 46.01406 ], [ -0.051674, 46.00192 ], [ -0.04216, 45.99615 ], [ -0.05034, 45.98906 ], [ -0.054852, 45.98789 ], [ -0.062011, 45.979723 ], [ -0.066728, 45.98087 ], [ -0.102937, 45.96966 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "81", "CODE_DEPT": "80", "NOM_DEPT": "SOMME", "CODE_CHF": "021", "NOM_CHF": "AMIENS", "X_CHF_LIEU": "6494", "Y_CHF_LIEU": "69772", "X_CENTROID": "6481", "Y_CENTROID": "69846", "CODE_REG": "22", "NOM_REGION": "PICARDIE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.118652, 49.70583 ], [ 3.113319, 49.70622 ], [ 3.097274, 49.70587 ], [ 3.092566, 49.69962 ], [ 3.090193, 49.696837 ], [ 3.0792, 49.69166 ], [ 3.08332, 49.71249 ], [ 3.07844, 49.71099 ], [ 3.052435, 49.71377 ], [ 3.053997, 49.71048 ], [ 3.057579, 49.70415 ], [ 3.055323, 49.69401 ], [ 3.050281, 49.693643 ], [ 3.040503, 49.694985 ], [ 3.033486, 49.68308 ], [ 3.028305, 49.68006 ], [ 3.023736, 49.68153 ], [ 3.013408, 49.69252 ], [ 3.008325, 49.69272 ], [ 3.005222, 49.69531 ], [ 3.004392, 49.70181 ], [ 2.992366, 49.70765 ], [ 2.989983, 49.705514 ], [ 2.982405, 49.70392 ], [ 2.977431, 49.70466 ], [ 2.969691, 49.69656 ], [ 2.950191, 49.69274 ], [ 2.948747, 49.68282 ], [ 2.956076, 49.678307 ], [ 2.953004, 49.6759 ], [ 2.95329, 49.66654 ], [ 2.946497, 49.67509 ], [ 2.938476, 49.678785 ], [ 2.934781, 49.67663 ], [ 2.913415, 49.70951 ], [ 2.909734, 49.70719 ], [ 2.906863, 49.701264 ], [ 2.892294, 49.69868 ], [ 2.889739, 49.701519 ], [ 2.883796, 49.713833 ], [ 2.881704, 49.71366 ], [ 2.88318, 49.71037 ], [ 2.866199, 49.70249 ], [ 2.869074, 49.69972 ], [ 2.886762, 49.68842 ], [ 2.888424, 49.68202 ], [ 2.888795, 49.67069 ], [ 2.884609, 49.672545 ], [ 2.875527, 49.683769 ], [ 2.860636, 49.684885 ], [ 2.856765, 49.68275 ], [ 2.860329, 49.68078 ], [ 2.847449, 49.67214 ], [ 2.845141, 49.67062 ], [ 2.846658, 49.66783 ], [ 2.850149, 49.66237 ], [ 2.84335, 49.65853 ], [ 2.839634, 49.66077 ], [ 2.800429, 49.661366 ], [ 2.799495, 49.65948 ], [ 2.802349, 49.658754 ], [ 2.797732, 49.65726 ], [ 2.790333, 49.642128 ], [ 2.796333, 49.62964 ], [ 2.797412, 49.62623 ], [ 2.798614, 49.61938 ], [ 2.794973, 49.616831 ], [ 2.7905, 49.61494 ], [ 2.775992, 49.614875 ], [ 2.771722, 49.614184 ], [ 2.759687, 49.617728 ], [ 2.757555, 49.62097 ], [ 2.752944, 49.622109 ], [ 2.744352, 49.6252 ], [ 2.72521, 49.62473 ], [ 2.720402, 49.62106 ], [ 2.717068, 49.62366 ], [ 2.698296, 49.62625 ], [ 2.693622, 49.62586 ], [ 2.688934, 49.625655 ], [ 2.68783, 49.62304 ], [ 2.687363, 49.61783 ], [ 2.687078, 49.61467 ], [ 2.673979, 49.60195 ], [ 2.674102, 49.60002 ], [ 2.669194, 49.59991 ], [ 2.670723, 49.58142 ], [ 2.665993, 49.579826 ], [ 2.649629, 49.571764 ], [ 2.645208, 49.57363 ], [ 2.631943, 49.57912 ], [ 2.627794, 49.5853 ], [ 2.630769, 49.5983 ], [ 2.624482, 49.607213 ], [ 2.627046, 49.61013 ], [ 2.625948, 49.61095 ], [ 2.620704, 49.61133 ], [ 2.606249, 49.608153 ], [ 2.592678, 49.612323 ], [ 2.595904, 49.610105 ], [ 2.587559, 49.607417 ], [ 2.581595, 49.599318 ], [ 2.578709, 49.59728 ], [ 2.571632, 49.59708 ], [ 2.568938, 49.60013 ], [ 2.559162, 49.60822 ], [ 2.561697, 49.6109 ], [ 2.566469, 49.619035 ], [ 2.546494, 49.61614 ], [ 2.526593, 49.62944 ], [ 2.523867, 49.62808 ], [ 2.520903, 49.62694 ], [ 2.517447, 49.629598 ], [ 2.505375, 49.63625 ], [ 2.505507, 49.63973 ], [ 2.501306, 49.63781 ], [ 2.478123, 49.62079 ], [ 2.474051, 49.62264 ], [ 2.466812, 49.62704 ], [ 2.473367, 49.635319 ], [ 2.46896, 49.63603 ], [ 2.465564, 49.63799 ], [ 2.456753, 49.635111 ], [ 2.452897, 49.64114 ], [ 2.449166, 49.64713 ], [ 2.445587, 49.65298 ], [ 2.412372, 49.661234 ], [ 2.402178, 49.66052 ], [ 2.397808, 49.658925 ], [ 2.388916, 49.65592 ], [ 2.37391, 49.656037 ], [ 2.369307, 49.65772 ], [ 2.362066, 49.66674 ], [ 2.358328, 49.66566 ], [ 2.355011, 49.664088 ], [ 2.350234, 49.663092 ], [ 2.335226, 49.67171 ], [ 2.332295, 49.680994 ], [ 2.327508, 49.68275 ], [ 2.315517, 49.68981 ], [ 2.314607, 49.68641 ], [ 2.300514, 49.681894 ], [ 2.290579, 49.68426 ], [ 2.287811, 49.68714 ], [ 2.260268, 49.695404 ], [ 2.255913, 49.69578 ], [ 2.247169, 49.70164 ], [ 2.232463, 49.70208 ], [ 2.228579, 49.702342 ], [ 2.223633, 49.70236 ], [ 2.204975, 49.69855 ], [ 2.192036, 49.7029 ], [ 2.190164, 49.70388 ], [ 2.185361, 49.70271 ], [ 2.155584, 49.7021 ], [ 2.147203, 49.69869 ], [ 2.144646, 49.69586 ], [ 2.138188, 49.69105 ], [ 2.124042, 49.688039 ], [ 2.118952, 49.68925 ], [ 2.110949, 49.693848 ], [ 2.095049, 49.69293 ], [ 2.087716, 49.69012 ], [ 2.083263, 49.692043 ], [ 2.066362, 49.68451 ], [ 2.050939, 49.68644 ], [ 2.048708, 49.688004 ], [ 2.059015, 49.68862 ], [ 2.058855, 49.6951 ], [ 2.037942, 49.70439 ], [ 2.034015, 49.710623 ], [ 2.02882, 49.710536 ], [ 2.02847, 49.710713 ], [ 2.023351, 49.711005 ], [ 2.014066, 49.708198 ], [ 2.001826, 49.71338 ], [ 1.992926, 49.71005 ], [ 1.977685, 49.71135 ], [ 1.97147, 49.719941 ], [ 1.967105, 49.71783 ], [ 1.949092, 49.7008 ], [ 1.947314, 49.70371 ], [ 1.933066, 49.71988 ], [ 1.929088, 49.71792 ], [ 1.915707, 49.71363 ], [ 1.894761, 49.699796 ], [ 1.890205, 49.69906 ], [ 1.881046, 49.69786 ], [ 1.876809, 49.69965 ], [ 1.863471, 49.70385 ], [ 1.848986, 49.70164 ], [ 1.845561, 49.70421 ], [ 1.837961, 49.70878 ], [ 1.839607, 49.71506 ], [ 1.832154, 49.71917 ], [ 1.822305, 49.719551 ], [ 1.820558, 49.72255 ], [ 1.825215, 49.724396 ], [ 1.840662, 49.733926 ], [ 1.836526, 49.740248 ], [ 1.820456, 49.73905 ], [ 1.818059, 49.74194 ], [ 1.809602, 49.75384 ], [ 1.794776, 49.75146 ], [ 1.790529, 49.75335 ], [ 1.792246, 49.755812 ], [ 1.784845, 49.7579 ], [ 1.78333, 49.764467 ], [ 1.780929, 49.767426 ], [ 1.779601, 49.77073 ], [ 1.773681, 49.77636 ], [ 1.759249, 49.7804 ], [ 1.758369, 49.78351 ], [ 1.752718, 49.79215 ], [ 1.749904, 49.79486 ], [ 1.744387, 49.80357 ], [ 1.742319, 49.80639 ], [ 1.733854, 49.8135 ], [ 1.725711, 49.836561 ], [ 1.726224, 49.839945 ], [ 1.72535, 49.84322 ], [ 1.719039, 49.848352 ], [ 1.720039, 49.86167 ], [ 1.718728, 49.86571 ], [ 1.712859, 49.87083 ], [ 1.711815, 49.87417 ], [ 1.713912, 49.87702 ], [ 1.71209, 49.8864 ], [ 1.706178, 49.89144 ], [ 1.69702, 49.89333 ], [ 1.693304, 49.895608 ], [ 1.691652, 49.898735 ], [ 1.690784, 49.901682 ], [ 1.678647, 49.91323 ], [ 1.678451, 49.91813 ], [ 1.652181, 49.927065 ], [ 1.647729, 49.92857 ], [ 1.643494, 49.9303 ], [ 1.624556, 49.93428 ], [ 1.608454, 49.94181 ], [ 1.603803, 49.943395 ], [ 1.577978, 49.96386 ], [ 1.57439, 49.97365 ], [ 1.570107, 49.97536 ], [ 1.561275, 49.97833 ], [ 1.55751, 49.98041 ], [ 1.52695, 49.99658 ], [ 1.525236, 49.99895 ], [ 1.523615, 50.001981 ], [ 1.514481, 50.01265 ], [ 1.497761, 50.019436 ], [ 1.493091, 50.01845 ], [ 1.48632, 50.023 ], [ 1.475827, 50.03069 ], [ 1.473212, 50.033686 ], [ 1.45886, 50.03696 ], [ 1.452288, 50.041617 ], [ 1.459146, 50.062499 ], [ 1.456458, 50.063714 ], [ 1.453325, 50.06438 ], [ 1.450671, 50.06723 ], [ 1.431667, 50.07115 ], [ 1.421862, 50.069131 ], [ 1.419826, 50.06641 ], [ 1.40926, 50.05707 ], [ 1.404428, 50.05723 ], [ 1.379705, 50.065015 ], [ 1.392618, 50.075461 ], [ 1.413951, 50.08517 ], [ 1.417617, 50.087581 ], [ 1.421354, 50.08908 ], [ 1.451257, 50.10708 ], [ 1.453752, 50.109977 ], [ 1.46652, 50.13583 ], [ 1.468043, 50.13908 ], [ 1.483097, 50.17267 ], [ 1.505551, 50.19657 ], [ 1.545748, 50.214139 ], [ 1.556144, 50.216211 ], [ 1.563635, 50.21315 ], [ 1.559372, 50.210977 ], [ 1.572128, 50.199315 ], [ 1.574236, 50.19602 ], [ 1.587442, 50.19003 ], [ 1.591259, 50.187582 ], [ 1.596264, 50.18617 ], [ 1.616781, 50.19044 ], [ 1.631019, 50.18899 ], [ 1.661372, 50.179563 ], [ 1.665954, 50.17765 ], [ 1.674962, 50.17543 ], [ 1.680548, 50.180597 ], [ 1.683249, 50.18323 ], [ 1.675657, 50.19007 ], [ 1.673107, 50.192345 ], [ 1.664845, 50.211232 ], [ 1.66146, 50.21382 ], [ 1.644008, 50.21644 ], [ 1.639635, 50.21719 ], [ 1.624798, 50.21463 ], [ 1.617027, 50.21935 ], [ 1.595119, 50.243155 ], [ 1.592228, 50.256458 ], [ 1.564968, 50.25601 ], [ 1.550048, 50.26047 ], [ 1.538298, 50.28026 ], [ 1.541985, 50.305 ], [ 1.546808, 50.327952 ], [ 1.55446, 50.3586 ], [ 1.567351, 50.36335 ], [ 1.580868, 50.358878 ], [ 1.602444, 50.35982 ], [ 1.625986, 50.364336 ], [ 1.636957, 50.35362 ], [ 1.641544, 50.35215 ], [ 1.646499, 50.340077 ], [ 1.651627, 50.33981 ], [ 1.66431, 50.334533 ], [ 1.662287, 50.331458 ], [ 1.667566, 50.33074 ], [ 1.690565, 50.33969 ], [ 1.69253, 50.34291 ], [ 1.694837, 50.33888 ], [ 1.703836, 50.34304 ], [ 1.725573, 50.34572 ], [ 1.730052, 50.34782 ], [ 1.740339, 50.35452 ], [ 1.755055, 50.35705 ], [ 1.761849, 50.361608 ], [ 1.786838, 50.359656 ], [ 1.791952, 50.35946 ], [ 1.800413, 50.35955 ], [ 1.804679, 50.35961 ], [ 1.81855, 50.35223 ], [ 1.821907, 50.35029 ], [ 1.846308, 50.34361 ], [ 1.851698, 50.34291 ], [ 1.852133, 50.34107 ], [ 1.869131, 50.33447 ], [ 1.875354, 50.32273 ], [ 1.888094, 50.31806 ], [ 1.893294, 50.31817 ], [ 1.898602, 50.31592 ], [ 1.898883, 50.31333 ], [ 1.919498, 50.31259 ], [ 1.941134, 50.330674 ], [ 1.946195, 50.33149 ], [ 1.964332, 50.32122 ], [ 1.963934, 50.31805 ], [ 1.959846, 50.311618 ], [ 1.934163, 50.29938 ], [ 1.945648, 50.287747 ], [ 1.949353, 50.2862 ], [ 1.955702, 50.289557 ], [ 1.959874, 50.29049 ], [ 1.969736, 50.282455 ], [ 1.994128, 50.27572 ], [ 2.000611, 50.27243 ], [ 2.003229, 50.27038 ], [ 2.01185, 50.26797 ], [ 2.026236, 50.26955 ], [ 2.034272, 50.26619 ], [ 2.037773, 50.26406 ], [ 2.048668, 50.256771 ], [ 2.059045, 50.25537 ], [ 2.064405, 50.25562 ], [ 2.075299, 50.25116 ], [ 2.077822, 50.24873 ], [ 2.064081, 50.23752 ], [ 2.063816, 50.234456 ], [ 2.067945, 50.232978 ], [ 2.068487, 50.227091 ], [ 2.080371, 50.219413 ], [ 2.083606, 50.21697 ], [ 2.08483, 50.20422 ], [ 2.085714, 50.20102 ], [ 2.096639, 50.20663 ], [ 2.110291, 50.20449 ], [ 2.114559, 50.202862 ], [ 2.12193, 50.21029 ], [ 2.135692, 50.20745 ], [ 2.141667, 50.20246 ], [ 2.146971, 50.19327 ], [ 2.14976, 50.19043 ], [ 2.173297, 50.20789 ], [ 2.178498, 50.207293 ], [ 2.183477, 50.21002 ], [ 2.187737, 50.20968 ], [ 2.19949, 50.21241 ], [ 2.199908, 50.215175 ], [ 2.204867, 50.21395 ], [ 2.213785, 50.21736 ], [ 2.224421, 50.21736 ], [ 2.227382, 50.20861 ], [ 2.230807, 50.21063 ], [ 2.239739, 50.21317 ], [ 2.253431, 50.21468 ], [ 2.269351, 50.227649 ], [ 2.287735, 50.22135 ], [ 2.290685, 50.21858 ], [ 2.296925, 50.21371 ], [ 2.301693, 50.212957 ], [ 2.318389, 50.21915 ], [ 2.325191, 50.21593 ], [ 2.327132, 50.213098 ], [ 2.331301, 50.22172 ], [ 2.320808, 50.23284 ], [ 2.31625, 50.23139 ], [ 2.314767, 50.23442 ], [ 2.32887, 50.237219 ], [ 2.332878, 50.23908 ], [ 2.334836, 50.23706 ], [ 2.336655, 50.23499 ], [ 2.361731, 50.207078 ], [ 2.364877, 50.20728 ], [ 2.36782, 50.20802 ], [ 2.370989, 50.210888 ], [ 2.373296, 50.217769 ], [ 2.383136, 50.22576 ], [ 2.384861, 50.22541 ], [ 2.389474, 50.22476 ], [ 2.402588, 50.23322 ], [ 2.407013, 50.2343 ], [ 2.4174, 50.228295 ], [ 2.432034, 50.22777 ], [ 2.436855, 50.227263 ], [ 2.446938, 50.229347 ], [ 2.452066, 50.23021 ], [ 2.456774, 50.221929 ], [ 2.459599, 50.219552 ], [ 2.464414, 50.21423 ], [ 2.480374, 50.208121 ], [ 2.485204, 50.2078 ], [ 2.488928, 50.204861 ], [ 2.492589, 50.2025 ], [ 2.495053, 50.19955 ], [ 2.49569, 50.19456 ], [ 2.49209, 50.19369 ], [ 2.485371, 50.19134 ], [ 2.481204, 50.19124 ], [ 2.473887, 50.18865 ], [ 2.469649, 50.18738 ], [ 2.450821, 50.17852 ], [ 2.445443, 50.17925 ], [ 2.435006, 50.17962 ], [ 2.420855, 50.17464 ], [ 2.417858, 50.17386 ], [ 2.414846, 50.17311 ], [ 2.415553, 50.16998 ], [ 2.41453, 50.16417 ], [ 2.410836, 50.1632 ], [ 2.403268, 50.1648 ], [ 2.401777, 50.16201 ], [ 2.398866, 50.15642 ], [ 2.389892, 50.15519 ], [ 2.391722, 50.144852 ], [ 2.385485, 50.13942 ], [ 2.379793, 50.11919 ], [ 2.37546, 50.10926 ], [ 2.394888, 50.110193 ], [ 2.39739, 50.1065 ], [ 2.409489, 50.1012 ], [ 2.414508, 50.10065 ], [ 2.417504, 50.09138 ], [ 2.424694, 50.087668 ], [ 2.429658, 50.088185 ], [ 2.44424, 50.1142 ], [ 2.446132, 50.11744 ], [ 2.44742, 50.11975 ], [ 2.449995, 50.1244 ], [ 2.454672, 50.12855 ], [ 2.455049, 50.13118 ], [ 2.464991, 50.131731 ], [ 2.4694, 50.133645 ], [ 2.472807, 50.13516 ], [ 2.475975, 50.13686 ], [ 2.491086, 50.137662 ], [ 2.510031, 50.140747 ], [ 2.514949, 50.140821 ], [ 2.532332, 50.11508 ], [ 2.545311, 50.12092 ], [ 2.548176, 50.12382 ], [ 2.546349, 50.13609 ], [ 2.551329, 50.141704 ], [ 2.564676, 50.13824 ], [ 2.56837, 50.13596 ], [ 2.577454, 50.139103 ], [ 2.582367, 50.13804 ], [ 2.586635, 50.137365 ], [ 2.583003, 50.13214 ], [ 2.569643, 50.1226 ], [ 2.569355, 50.1204 ], [ 2.573, 50.11546 ], [ 2.575671, 50.11333 ], [ 2.590719, 50.10911 ], [ 2.592904, 50.106555 ], [ 2.611729, 50.1101 ], [ 2.626761, 50.10933 ], [ 2.630728, 50.10728 ], [ 2.630646, 50.10511 ], [ 2.635779, 50.10002 ], [ 2.644387, 50.096988 ], [ 2.647546, 50.09441 ], [ 2.653888, 50.09803 ], [ 2.656525, 50.100283 ], [ 2.669203, 50.0961 ], [ 2.672081, 50.09363 ], [ 2.682389, 50.095045 ], [ 2.691593, 50.09203 ], [ 2.701148, 50.08391 ], [ 2.703859, 50.08099 ], [ 2.715684, 50.08536 ], [ 2.718994, 50.08764 ], [ 2.715239, 50.09011 ], [ 2.697575, 50.102573 ], [ 2.703494, 50.107689 ], [ 2.71352, 50.11019 ], [ 2.707128, 50.12643 ], [ 2.725191, 50.126365 ], [ 2.72993, 50.12586 ], [ 2.74715, 50.11551 ], [ 2.749537, 50.112803 ], [ 2.763849, 50.11051 ], [ 2.77794, 50.11376 ], [ 2.780898, 50.111156 ], [ 2.778492, 50.102405 ], [ 2.778142, 50.09943 ], [ 2.781836, 50.09111 ], [ 2.77886, 50.08847 ], [ 2.774462, 50.079226 ], [ 2.764392, 50.071825 ], [ 2.7609, 50.069384 ], [ 2.763746, 50.060597 ], [ 2.745871, 50.05013 ], [ 2.742339, 50.04801 ], [ 2.748877, 50.042918 ], [ 2.752195, 50.04032 ], [ 2.775739, 50.0428 ], [ 2.780917, 50.04835 ], [ 2.79451, 50.05005 ], [ 2.795705, 50.05127 ], [ 2.804223, 50.05971 ], [ 2.807198, 50.06246 ], [ 2.8105, 50.05987 ], [ 2.82771, 50.06563 ], [ 2.831235, 50.06317 ], [ 2.837806, 50.07201 ], [ 2.85018, 50.07808 ], [ 2.855414, 50.07799 ], [ 2.854922, 50.064277 ], [ 2.856704, 50.060992 ], [ 2.860778, 50.060646 ], [ 2.864729, 50.05992 ], [ 2.876374, 50.04424 ], [ 2.869954, 50.034951 ], [ 2.859918, 50.03366 ], [ 2.853071, 50.02916 ], [ 2.855422, 50.02607 ], [ 2.856377, 50.02358 ], [ 2.871189, 50.021076 ], [ 2.878569, 50.02452 ], [ 2.875747, 50.027 ], [ 2.879144, 50.02915 ], [ 2.882694, 50.0312 ], [ 2.896167, 50.03656 ], [ 2.917016, 50.03554 ], [ 2.919557, 50.042089 ], [ 2.920175, 50.048592 ], [ 2.930726, 50.04403 ], [ 2.934866, 50.04524 ], [ 2.938699, 50.047337 ], [ 2.940021, 50.05047 ], [ 2.944091, 50.0527 ], [ 2.949406, 50.05304 ], [ 2.957679, 50.05113 ], [ 2.961795, 50.05014 ], [ 2.969176, 50.046692 ], [ 2.971536, 50.04137 ], [ 2.988758, 50.0493 ], [ 2.993849, 50.050415 ], [ 3.002692, 50.05298 ], [ 3.006835, 50.054609 ], [ 3.01197, 50.058039 ], [ 3.02193, 50.05684 ], [ 3.024914, 50.054148 ], [ 3.026241, 50.05678 ], [ 3.030412, 50.057479 ], [ 3.057637, 50.05122 ], [ 3.06154, 50.04938 ], [ 3.071427, 50.047906 ], [ 3.074492, 50.0453 ], [ 3.087305, 50.0509 ], [ 3.090254, 50.053741 ], [ 3.095776, 50.04572 ], [ 3.113001, 50.03922 ], [ 3.114299, 50.03354 ], [ 3.121506, 50.02698 ], [ 3.123578, 50.02448 ], [ 3.148926, 50.02527 ], [ 3.147359, 50.01876 ], [ 3.162556, 50.01932 ], [ 3.166994, 50.02098 ], [ 3.171212, 50.01512 ], [ 3.172707, 50.01199 ], [ 3.171404, 50.009985 ], [ 3.159159, 49.99394 ], [ 3.155683, 49.991754 ], [ 3.165045, 49.99164 ], [ 3.177706, 49.98661 ], [ 3.187671, 49.98787 ], [ 3.192523, 49.98888 ], [ 3.198541, 49.98501 ], [ 3.202722, 49.98549 ], [ 3.192717, 49.977536 ], [ 3.170413, 49.968003 ], [ 3.163644, 49.96336 ], [ 3.16214, 49.954361 ], [ 3.161614, 49.95111 ], [ 3.166553, 49.95023 ], [ 3.164916, 49.94754 ], [ 3.160361, 49.94655 ], [ 3.137879, 49.93586 ], [ 3.124664, 49.921393 ], [ 3.123668, 49.918017 ], [ 3.11762, 49.91396 ], [ 3.120118, 49.91122 ], [ 3.122607, 49.89941 ], [ 3.117858, 49.89026 ], [ 3.119134, 49.88302 ], [ 3.087836, 49.86569 ], [ 3.083196, 49.86657 ], [ 3.084962, 49.87576 ], [ 3.082604, 49.87849 ], [ 3.077501, 49.878367 ], [ 3.073939, 49.875988 ], [ 3.070905, 49.8734 ], [ 3.079469, 49.865411 ], [ 3.083057, 49.84937 ], [ 3.084399, 49.84625 ], [ 3.081738, 49.841378 ], [ 3.077623, 49.839683 ], [ 3.073663, 49.83889 ], [ 3.069341, 49.83698 ], [ 3.057068, 49.83078 ], [ 3.059037, 49.827646 ], [ 3.060006, 49.825175 ], [ 3.060722, 49.820099 ], [ 3.079039, 49.82122 ], [ 3.082605, 49.819241 ], [ 3.085004, 49.81765 ], [ 3.082321, 49.815244 ], [ 3.080299, 49.80991 ], [ 3.086135, 49.80449 ], [ 3.084245, 49.794884 ], [ 3.085933, 49.79175 ], [ 3.081379, 49.79053 ], [ 3.061329, 49.78138 ], [ 3.067381, 49.77337 ], [ 3.065338, 49.77048 ], [ 3.073808, 49.7664 ], [ 3.095114, 49.76615 ], [ 3.100454, 49.76593 ], [ 3.094682, 49.75727 ], [ 3.096772, 49.74806 ], [ 3.09936, 49.7384 ], [ 3.100671, 49.735222 ], [ 3.113653, 49.72548 ], [ 3.120398, 49.70573 ], [ 3.118652, 49.70583 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "82", "CODE_DEPT": "81", "NOM_DEPT": "TARN", "CODE_CHF": "004", "NOM_CHF": "ALBI", "X_CHF_LIEU": "6313", "Y_CHF_LIEU": "63147", "X_CENTROID": "6328", "Y_CENTROID": "62988", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.565787, 43.42296 ], [ 2.565541, 43.42291 ], [ 2.561483, 43.42096 ], [ 2.548049, 43.42465 ], [ 2.518988, 43.423716 ], [ 2.497332, 43.434287 ], [ 2.494383, 43.436937 ], [ 2.477992, 43.43643 ], [ 2.473695, 43.43651 ], [ 2.469545, 43.43535 ], [ 2.451105, 43.43223 ], [ 2.42759, 43.43449 ], [ 2.40776, 43.42522 ], [ 2.404826, 43.42244 ], [ 2.406846, 43.419255 ], [ 2.398735, 43.417051 ], [ 2.375171, 43.423 ], [ 2.371245, 43.423076 ], [ 2.367331, 43.42318 ], [ 2.363082, 43.42457 ], [ 2.348387, 43.432774 ], [ 2.313931, 43.441064 ], [ 2.304106, 43.447929 ], [ 2.299698, 43.446812 ], [ 2.284875, 43.4433 ], [ 2.281798, 43.441449 ], [ 2.268692, 43.450611 ], [ 2.265415, 43.452919 ], [ 2.263919, 43.455923 ], [ 2.258295, 43.460113 ], [ 2.256687, 43.45364 ], [ 2.243802, 43.44544 ], [ 2.241344, 43.44268 ], [ 2.239358, 43.439747 ], [ 2.235584, 43.43756 ], [ 2.222523, 43.42831 ], [ 2.223344, 43.417789 ], [ 2.229322, 43.408286 ], [ 2.215024, 43.382615 ], [ 2.211099, 43.384565 ], [ 2.184058, 43.397779 ], [ 2.170349, 43.415876 ], [ 2.156305, 43.414894 ], [ 2.138318, 43.403714 ], [ 2.133557, 43.40356 ], [ 2.130495, 43.40122 ], [ 2.111065, 43.39619 ], [ 2.108785, 43.39446 ], [ 2.104399, 43.395602 ], [ 2.095112, 43.3962 ], [ 2.091681, 43.39389 ], [ 2.085693, 43.398082 ], [ 2.077317, 43.39563 ], [ 2.072801, 43.395696 ], [ 2.068725, 43.408896 ], [ 2.053071, 43.43031 ], [ 2.033296, 43.43604 ], [ 2.029133, 43.436898 ], [ 2.02247, 43.446087 ], [ 2.014953, 43.44947 ], [ 2.019322, 43.469938 ], [ 2.021455, 43.47307 ], [ 2.025048, 43.475397 ], [ 2.039032, 43.477708 ], [ 2.044983, 43.483196 ], [ 2.04829, 43.48573 ], [ 2.045463, 43.48777 ], [ 2.048094, 43.49829 ], [ 2.042285, 43.510929 ], [ 2.03489, 43.500013 ], [ 2.016101, 43.50871 ], [ 2.012012, 43.5071 ], [ 2.012578, 43.484246 ], [ 2.009895, 43.481468 ], [ 1.996014, 43.481736 ], [ 1.987799, 43.478826 ], [ 1.973997, 43.487838 ], [ 1.957257, 43.493698 ], [ 1.952509, 43.490449 ], [ 1.948634, 43.492166 ], [ 1.92057, 43.50514 ], [ 1.917079, 43.501474 ], [ 1.891608, 43.513409 ], [ 1.889391, 43.516184 ], [ 1.887719, 43.516941 ], [ 1.873093, 43.53647 ], [ 1.876463, 43.53868 ], [ 1.880414, 43.540315 ], [ 1.876382, 43.54154 ], [ 1.86424, 43.54506 ], [ 1.859818, 43.54661 ], [ 1.850711, 43.549192 ], [ 1.85195, 43.5522 ], [ 1.849452, 43.56754 ], [ 1.839147, 43.57779 ], [ 1.826037, 43.580296 ], [ 1.821662, 43.581194 ], [ 1.810477, 43.579173 ], [ 1.802575, 43.581147 ], [ 1.798684, 43.582535 ], [ 1.79341, 43.583763 ], [ 1.775825, 43.590468 ], [ 1.772591, 43.592348 ], [ 1.772294, 43.59812 ], [ 1.76653, 43.601881 ], [ 1.762697, 43.602738 ], [ 1.762222, 43.6018 ], [ 1.745048, 43.603462 ], [ 1.744731, 43.60436 ], [ 1.742237, 43.6046 ], [ 1.74056, 43.60596 ], [ 1.723742, 43.613797 ], [ 1.723044, 43.61676 ], [ 1.719106, 43.618386 ], [ 1.706268, 43.62138 ], [ 1.698605, 43.62009 ], [ 1.687765, 43.630421 ], [ 1.690614, 43.63316 ], [ 1.691623, 43.639998 ], [ 1.702541, 43.65089 ], [ 1.724309, 43.656774 ], [ 1.730357, 43.660759 ], [ 1.730492, 43.66414 ], [ 1.720379, 43.67515 ], [ 1.718914, 43.68522 ], [ 1.720704, 43.688346 ], [ 1.716092, 43.689389 ], [ 1.663573, 43.694058 ], [ 1.663572, 43.697279 ], [ 1.664454, 43.70362 ], [ 1.661032, 43.70565 ], [ 1.665722, 43.705072 ], [ 1.678907, 43.701391 ], [ 1.692903, 43.709965 ], [ 1.702349, 43.710276 ], [ 1.706446, 43.71622 ], [ 1.703544, 43.718894 ], [ 1.693023, 43.7297 ], [ 1.688782, 43.728464 ], [ 1.679455, 43.735749 ], [ 1.659743, 43.742186 ], [ 1.657976, 43.745017 ], [ 1.650186, 43.751589 ], [ 1.651455, 43.754629 ], [ 1.655786, 43.766887 ], [ 1.651526, 43.775861 ], [ 1.643045, 43.778375 ], [ 1.642091, 43.785095 ], [ 1.648551, 43.79404 ], [ 1.646404, 43.79706 ], [ 1.644788, 43.800257 ], [ 1.625502, 43.801807 ], [ 1.588589, 43.817176 ], [ 1.59317, 43.843138 ], [ 1.591232, 43.843572 ], [ 1.576138, 43.847463 ], [ 1.572585, 43.8488 ], [ 1.57037, 43.85182 ], [ 1.555086, 43.86849 ], [ 1.555312, 43.870834 ], [ 1.561642, 43.86998 ], [ 1.564008, 43.87188 ], [ 1.556407, 43.87578 ], [ 1.559399, 43.881968 ], [ 1.550723, 43.889881 ], [ 1.547523, 43.899722 ], [ 1.555617, 43.918317 ], [ 1.565019, 43.917307 ], [ 1.56963, 43.918142 ], [ 1.573536, 43.919786 ], [ 1.573867, 43.932481 ], [ 1.572858, 43.93497 ], [ 1.57752, 43.938812 ], [ 1.57311, 43.939834 ], [ 1.565952, 43.944088 ], [ 1.538736, 43.947346 ], [ 1.539563, 43.953973 ], [ 1.535268, 43.95967 ], [ 1.543666, 43.95675 ], [ 1.5502, 43.959984 ], [ 1.552291, 43.96304 ], [ 1.566416, 43.96531 ], [ 1.589318, 43.9604 ], [ 1.618384, 43.959129 ], [ 1.622719, 43.9607 ], [ 1.621945, 43.96386 ], [ 1.618637, 43.97283 ], [ 1.627258, 43.983373 ], [ 1.634649, 43.99173 ], [ 1.637097, 43.994685 ], [ 1.64981, 43.992268 ], [ 1.654319, 43.99299 ], [ 1.657586, 43.99879 ], [ 1.651181, 44.011278 ], [ 1.660102, 44.01271 ], [ 1.664533, 44.01149 ], [ 1.66922, 44.01109 ], [ 1.672877, 44.017385 ], [ 1.689731, 44.02326 ], [ 1.700894, 44.04193 ], [ 1.704208, 44.04436 ], [ 1.693526, 44.060111 ], [ 1.680416, 44.064571 ], [ 1.666838, 44.064929 ], [ 1.66396, 44.07157 ], [ 1.669095, 44.0885 ], [ 1.656676, 44.094033 ], [ 1.653121, 44.096447 ], [ 1.654375, 44.099406 ], [ 1.652824, 44.10848 ], [ 1.658716, 44.116643 ], [ 1.661999, 44.11412 ], [ 1.671048, 44.116127 ], [ 1.689593, 44.11277 ], [ 1.703121, 44.116214 ], [ 1.722151, 44.115097 ], [ 1.722089, 44.1184 ], [ 1.733508, 44.11229 ], [ 1.746638, 44.11464 ], [ 1.765889, 44.105552 ], [ 1.773229, 44.09713 ], [ 1.777958, 44.096767 ], [ 1.781724, 44.09765 ], [ 1.792808, 44.099803 ], [ 1.787708, 44.10874 ], [ 1.80385, 44.12358 ], [ 1.805673, 44.126598 ], [ 1.809295, 44.124351 ], [ 1.825328, 44.10797 ], [ 1.834477, 44.10596 ], [ 1.83743, 44.103256 ], [ 1.836598, 44.1061 ], [ 1.840519, 44.11415 ], [ 1.838957, 44.117207 ], [ 1.830068, 44.132028 ], [ 1.836775, 44.143891 ], [ 1.841019, 44.14417 ], [ 1.846177, 44.135808 ], [ 1.850339, 44.13517 ], [ 1.864961, 44.14342 ], [ 1.882758, 44.138527 ], [ 1.891553, 44.1413 ], [ 1.903269, 44.13076 ], [ 1.914388, 44.136189 ], [ 1.918422, 44.140298 ], [ 1.91477, 44.1424 ], [ 1.894931, 44.15597 ], [ 1.909789, 44.163562 ], [ 1.919064, 44.16308 ], [ 1.922417, 44.16105 ], [ 1.932682, 44.15575 ], [ 1.941394, 44.14786 ], [ 1.955454, 44.148758 ], [ 1.968628, 44.14474 ], [ 1.983368, 44.15232 ], [ 1.990171, 44.149453 ], [ 1.999161, 44.15079 ], [ 2.003793, 44.15116 ], [ 2.008016, 44.15273 ], [ 2.03025, 44.15757 ], [ 2.027089, 44.16693 ], [ 2.03111, 44.16875 ], [ 2.058502, 44.17228 ], [ 2.051179, 44.18686 ], [ 2.063174, 44.18924 ], [ 2.067551, 44.190122 ], [ 2.075514, 44.18204 ], [ 2.093014, 44.185178 ], [ 2.096551, 44.179068 ], [ 2.104725, 44.180242 ], [ 2.107798, 44.18287 ], [ 2.103134, 44.19149 ], [ 2.109785, 44.19499 ], [ 2.114064, 44.1958 ], [ 2.128047, 44.19611 ], [ 2.135213, 44.20041 ], [ 2.144534, 44.20048 ], [ 2.149213, 44.20054 ], [ 2.152652, 44.19145 ], [ 2.158773, 44.186971 ], [ 2.15473, 44.181296 ], [ 2.15815, 44.17923 ], [ 2.17194, 44.18054 ], [ 2.18079, 44.17828 ], [ 2.182014, 44.17151 ], [ 2.191033, 44.16346 ], [ 2.199835, 44.16527 ], [ 2.205638, 44.1706 ], [ 2.223858, 44.167026 ], [ 2.237614, 44.158626 ], [ 2.216793, 44.151557 ], [ 2.211048, 44.146619 ], [ 2.201984, 44.14492 ], [ 2.193505, 44.14781 ], [ 2.182698, 44.14133 ], [ 2.188454, 44.13738 ], [ 2.191958, 44.139739 ], [ 2.224895, 44.138644 ], [ 2.23754, 44.134313 ], [ 2.261838, 44.144678 ], [ 2.28488, 44.145335 ], [ 2.288372, 44.14301 ], [ 2.297572, 44.135894 ], [ 2.290639, 44.123572 ], [ 2.307295, 44.11854 ], [ 2.32333, 44.124453 ], [ 2.332443, 44.123024 ], [ 2.340338, 44.11139 ], [ 2.348244, 44.108232 ], [ 2.351988, 44.106373 ], [ 2.355459, 44.104332 ], [ 2.357739, 44.10155 ], [ 2.384438, 44.09396 ], [ 2.389215, 44.09457 ], [ 2.389214, 44.09111 ], [ 2.399704, 44.084026 ], [ 2.410932, 44.069299 ], [ 2.41021, 44.055858 ], [ 2.456246, 44.05107 ], [ 2.460871, 44.050323 ], [ 2.46679, 44.03254 ], [ 2.46993, 44.03032 ], [ 2.484888, 44.02469 ], [ 2.491987, 44.01325 ], [ 2.495398, 44.01121 ], [ 2.495189, 44.00523 ], [ 2.491762, 44.003525 ], [ 2.494652, 43.99831 ], [ 2.494988, 43.995512 ], [ 2.498413, 43.99306 ], [ 2.501798, 43.986633 ], [ 2.523255, 43.98015 ], [ 2.523088, 43.97323 ], [ 2.52088, 43.963112 ], [ 2.51981, 43.96002 ], [ 2.503845, 43.95485 ], [ 2.499348, 43.95052 ], [ 2.499084, 43.94509 ], [ 2.508499, 43.94527 ], [ 2.537229, 43.933825 ], [ 2.536983, 43.930395 ], [ 2.553842, 43.921087 ], [ 2.552838, 43.907791 ], [ 2.551007, 43.901583 ], [ 2.550498, 43.89822 ], [ 2.552007, 43.89157 ], [ 2.576271, 43.88176 ], [ 2.57997, 43.876184 ], [ 2.578587, 43.87319 ], [ 2.567351, 43.86851 ], [ 2.56361, 43.863215 ], [ 2.564387, 43.85097 ], [ 2.561802, 43.84597 ], [ 2.590488, 43.818278 ], [ 2.593359, 43.818271 ], [ 2.596139, 43.81881 ], [ 2.599743, 43.817089 ], [ 2.598972, 43.813639 ], [ 2.609147, 43.80681 ], [ 2.613699, 43.796972 ], [ 2.624269, 43.789819 ], [ 2.629213, 43.78025 ], [ 2.632803, 43.778159 ], [ 2.656754, 43.76271 ], [ 2.659933, 43.756371 ], [ 2.68173, 43.74351 ], [ 2.695398, 43.743158 ], [ 2.700006, 43.74256 ], [ 2.713823, 43.74197 ], [ 2.740543, 43.72896 ], [ 2.77671, 43.73662 ], [ 2.781499, 43.736958 ], [ 2.789149, 43.752549 ], [ 2.814518, 43.76158 ], [ 2.823856, 43.761205 ], [ 2.835755, 43.751109 ], [ 2.853612, 43.74858 ], [ 2.858278, 43.74923 ], [ 2.858564, 43.74914 ], [ 2.862726, 43.747556 ], [ 2.870453, 43.739161 ], [ 2.902605, 43.742272 ], [ 2.906604, 43.740943 ], [ 2.921903, 43.73515 ], [ 2.919189, 43.732351 ], [ 2.925714, 43.705711 ], [ 2.934967, 43.694712 ], [ 2.919588, 43.68659 ], [ 2.918495, 43.661993 ], [ 2.907798, 43.65475 ], [ 2.90294, 43.654647 ], [ 2.884296, 43.65713 ], [ 2.86877, 43.644965 ], [ 2.844894, 43.644763 ], [ 2.828424, 43.637432 ], [ 2.814703, 43.639479 ], [ 2.804692, 43.63216 ], [ 2.801592, 43.62954 ], [ 2.795131, 43.62463 ], [ 2.781699, 43.625876 ], [ 2.759078, 43.61489 ], [ 2.754524, 43.614139 ], [ 2.746507, 43.617845 ], [ 2.738722, 43.630334 ], [ 2.719328, 43.644412 ], [ 2.687337, 43.65093 ], [ 2.684695, 43.65381 ], [ 2.667283, 43.649448 ], [ 2.653587, 43.649991 ], [ 2.649787, 43.659444 ], [ 2.645491, 43.660672 ], [ 2.627779, 43.611106 ], [ 2.615603, 43.600518 ], [ 2.620069, 43.595423 ], [ 2.62254, 43.592463 ], [ 2.627227, 43.59319 ], [ 2.631005, 43.583242 ], [ 2.617994, 43.56872 ], [ 2.616643, 43.56538 ], [ 2.655687, 43.52725 ], [ 2.667984, 43.522062 ], [ 2.67602, 43.51346 ], [ 2.671518, 43.513697 ], [ 2.658852, 43.516923 ], [ 2.659896, 43.50346 ], [ 2.655033, 43.49418 ], [ 2.657633, 43.480958 ], [ 2.665094, 43.472677 ], [ 2.668, 43.47005 ], [ 2.663624, 43.46417 ], [ 2.641583, 43.46706 ], [ 2.644608, 43.46127 ], [ 2.644567, 43.45792 ], [ 2.641062, 43.45559 ], [ 2.617661, 43.438531 ], [ 2.608845, 43.44041 ], [ 2.606095, 43.43803 ], [ 2.606371, 43.431994 ], [ 2.602191, 43.43133 ], [ 2.597996, 43.43271 ], [ 2.579276, 43.4233 ], [ 2.565787, 43.42296 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "83", "CODE_DEPT": "82", "NOM_DEPT": "TARN-ET-GARONNE", "CODE_CHF": "121", "NOM_CHF": "MONTAUBAN", "X_CHF_LIEU": "5681", "Y_CHF_LIEU": "63256", "X_CENTROID": "5624", "Y_CENTROID": "63333", "CODE_REG": "73", "NOM_REGION": "MIDI-PYRENEES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.555617, 43.918317 ], [ 1.551068, 43.917996 ], [ 1.533792, 43.9211 ], [ 1.531161, 43.911546 ], [ 1.523323, 43.9036 ], [ 1.519355, 43.90495 ], [ 1.515195, 43.905966 ], [ 1.5166, 43.902682 ], [ 1.496655, 43.888583 ], [ 1.491908, 43.888761 ], [ 1.487717, 43.901799 ], [ 1.477, 43.908293 ], [ 1.475043, 43.905574 ], [ 1.469869, 43.89748 ], [ 1.467045, 43.89463 ], [ 1.448923, 43.87032 ], [ 1.447742, 43.873506 ], [ 1.430993, 43.86945 ], [ 1.418123, 43.871875 ], [ 1.408611, 43.882826 ], [ 1.404492, 43.884602 ], [ 1.390999, 43.881577 ], [ 1.365184, 43.889574 ], [ 1.355915, 43.882531 ], [ 1.352803, 43.873951 ], [ 1.34929, 43.87193 ], [ 1.36147, 43.858077 ], [ 1.358857, 43.85248 ], [ 1.335298, 43.851245 ], [ 1.323757, 43.85668 ], [ 1.319412, 43.85807 ], [ 1.296644, 43.848173 ], [ 1.293823, 43.8456 ], [ 1.303039, 43.843916 ], [ 1.314451, 43.83313 ], [ 1.331645, 43.83748 ], [ 1.354419, 43.836432 ], [ 1.361292, 43.820486 ], [ 1.360031, 43.81721 ], [ 1.35152, 43.81709 ], [ 1.345052, 43.81335 ], [ 1.343356, 43.81053 ], [ 1.326313, 43.808515 ], [ 1.314977, 43.803066 ], [ 1.311637, 43.80084 ], [ 1.305066, 43.801166 ], [ 1.301897, 43.80031 ], [ 1.29903, 43.799785 ], [ 1.286109, 43.7972 ], [ 1.281825, 43.79625 ], [ 1.27796, 43.80162 ], [ 1.271046, 43.798075 ], [ 1.266879, 43.79862 ], [ 1.267641, 43.79521 ], [ 1.27741, 43.78895 ], [ 1.212776, 43.768242 ], [ 1.210042, 43.77107 ], [ 1.207038, 43.77735 ], [ 1.217957, 43.783755 ], [ 1.215753, 43.79027 ], [ 1.18319, 43.79407 ], [ 1.17968, 43.79581 ], [ 1.175343, 43.80439 ], [ 1.162996, 43.80882 ], [ 1.157369, 43.818329 ], [ 1.144598, 43.822298 ], [ 1.142279, 43.81561 ], [ 1.125584, 43.80915 ], [ 1.116766, 43.801 ], [ 1.115083, 43.797776 ], [ 1.10768, 43.798782 ], [ 1.105058, 43.8014 ], [ 1.105866, 43.806663 ], [ 1.097104, 43.808139 ], [ 1.083306, 43.816332 ], [ 1.082129, 43.815465 ], [ 1.062046, 43.80136 ], [ 1.059132, 43.798594 ], [ 1.044982, 43.799521 ], [ 1.036771, 43.803028 ], [ 1.000344, 43.79837 ], [ 0.995961, 43.79755 ], [ 0.987578, 43.79559 ], [ 0.982503, 43.790461 ], [ 0.980517, 43.78758 ], [ 0.956063, 43.789329 ], [ 0.953983, 43.787372 ], [ 0.942257, 43.792112 ], [ 0.924358, 43.79153 ], [ 0.918354, 43.786473 ], [ 0.905542, 43.78412 ], [ 0.897026, 43.78662 ], [ 0.897205, 43.793232 ], [ 0.906108, 43.8111 ], [ 0.914785, 43.818577 ], [ 0.924206, 43.828939 ], [ 0.925163, 43.83203 ], [ 0.920762, 43.83302 ], [ 0.895239, 43.839897 ], [ 0.89538, 43.849253 ], [ 0.908473, 43.8494 ], [ 0.912698, 43.84849 ], [ 0.911024, 43.851768 ], [ 0.900972, 43.863621 ], [ 0.886033, 43.872245 ], [ 0.882866, 43.88583 ], [ 0.883251, 43.88887 ], [ 0.900571, 43.89653 ], [ 0.904654, 43.89893 ], [ 0.901197, 43.900841 ], [ 0.889231, 43.90425 ], [ 0.888197, 43.90962 ], [ 0.883738, 43.910326 ], [ 0.875289, 43.91283 ], [ 0.864678, 43.92318 ], [ 0.856065, 43.92102 ], [ 0.85214, 43.9227 ], [ 0.850473, 43.92001 ], [ 0.849347, 43.91718 ], [ 0.845156, 43.91536 ], [ 0.819943, 43.924979 ], [ 0.818672, 43.927583 ], [ 0.809298, 43.932302 ], [ 0.770004, 43.92214 ], [ 0.767958, 43.92478 ], [ 0.760549, 43.938669 ], [ 0.760114, 43.945304 ], [ 0.783778, 43.954916 ], [ 0.785137, 43.95809 ], [ 0.790753, 43.96307 ], [ 0.792216, 43.96615 ], [ 0.797205, 43.97512 ], [ 0.8009, 43.97726 ], [ 0.805555, 43.97941 ], [ 0.808342, 43.981179 ], [ 0.809019, 43.982047 ], [ 0.824219, 43.99446 ], [ 0.825979, 44.00096 ], [ 0.825149, 44.00441 ], [ 0.823675, 44.00673 ], [ 0.817424, 44.009073 ], [ 0.822488, 44.01464 ], [ 0.81585, 44.02604 ], [ 0.819879, 44.027696 ], [ 0.824257, 44.02906 ], [ 0.841769, 44.025329 ], [ 0.848912, 44.034104 ], [ 0.857868, 44.034901 ], [ 0.860854, 44.03746 ], [ 0.86534, 44.038325 ], [ 0.861963, 44.040185 ], [ 0.853937, 44.04218 ], [ 0.850634, 44.047679 ], [ 0.836679, 44.046981 ], [ 0.822057, 44.055596 ], [ 0.813507, 44.05228 ], [ 0.811224, 44.049663 ], [ 0.797375, 44.04396 ], [ 0.764048, 44.029639 ], [ 0.760935, 44.031997 ], [ 0.756565, 44.04124 ], [ 0.757886, 44.044459 ], [ 0.758697, 44.05113 ], [ 0.753347, 44.05637 ], [ 0.752327, 44.05944 ], [ 0.750176, 44.065523 ], [ 0.741635, 44.0652 ], [ 0.737992, 44.071404 ], [ 0.739874, 44.0781 ], [ 0.747761, 44.08648 ], [ 0.748003, 44.093292 ], [ 0.754273, 44.10475 ], [ 0.773071, 44.113883 ], [ 0.775041, 44.11688 ], [ 0.78192, 44.112919 ], [ 0.795242, 44.11227 ], [ 0.798588, 44.110104 ], [ 0.793165, 44.118458 ], [ 0.797565, 44.130387 ], [ 0.795082, 44.133498 ], [ 0.787733, 44.14276 ], [ 0.796556, 44.14512 ], [ 0.820491, 44.14314 ], [ 0.855079, 44.13049 ], [ 0.857814, 44.127575 ], [ 0.869092, 44.126516 ], [ 0.880236, 44.131711 ], [ 0.883987, 44.140094 ], [ 0.892066, 44.13733 ], [ 0.894084, 44.14023 ], [ 0.888351, 44.14881 ], [ 0.888106, 44.163836 ], [ 0.889794, 44.16688 ], [ 0.890008, 44.17022 ], [ 0.882074, 44.17363 ], [ 0.870138, 44.169 ], [ 0.863912, 44.173569 ], [ 0.853632, 44.174782 ], [ 0.853675, 44.18425 ], [ 0.857793, 44.189864 ], [ 0.859687, 44.19274 ], [ 0.860992, 44.192979 ], [ 0.898525, 44.190904 ], [ 0.903111, 44.19005 ], [ 0.929239, 44.23025 ], [ 0.92851, 44.233064 ], [ 0.91909, 44.23827 ], [ 0.932795, 44.251252 ], [ 0.927782, 44.26741 ], [ 0.940855, 44.26422 ], [ 0.948841, 44.27207 ], [ 0.950788, 44.275072 ], [ 0.946024, 44.27511 ], [ 0.923515, 44.29157 ], [ 0.921475, 44.294196 ], [ 0.91643, 44.302204 ], [ 0.912026, 44.300914 ], [ 0.895067, 44.296701 ], [ 0.891142, 44.298742 ], [ 0.8838, 44.30769 ], [ 0.869445, 44.309255 ], [ 0.874884, 44.32072 ], [ 0.873272, 44.323574 ], [ 0.879503, 44.327342 ], [ 0.883328, 44.328379 ], [ 0.894805, 44.343286 ], [ 0.896113, 44.346228 ], [ 0.892011, 44.349914 ], [ 0.893363, 44.35607 ], [ 0.88732, 44.364646 ], [ 0.891334, 44.37046 ], [ 0.893959, 44.37312 ], [ 0.895341, 44.37918 ], [ 0.906666, 44.382224 ], [ 0.910846, 44.38296 ], [ 0.915224, 44.384097 ], [ 0.919845, 44.38442 ], [ 0.923647, 44.37801 ], [ 0.937285, 44.36861 ], [ 0.940563, 44.34785 ], [ 0.941254, 44.344399 ], [ 0.942382, 44.34442 ], [ 0.944146, 44.35426 ], [ 0.950506, 44.359519 ], [ 0.969794, 44.36102 ], [ 0.978586, 44.358049 ], [ 0.993497, 44.36652 ], [ 0.996705, 44.36915 ], [ 1.004384, 44.3657 ], [ 1.022266, 44.36406 ], [ 1.024678, 44.366855 ], [ 1.04722, 44.36257 ], [ 1.060473, 44.36626 ], [ 1.064084, 44.37851 ], [ 1.082963, 44.38159 ], [ 1.098001, 44.3903 ], [ 1.10233, 44.391893 ], [ 1.106685, 44.39235 ], [ 1.132478, 44.393876 ], [ 1.132599, 44.384514 ], [ 1.134424, 44.37446 ], [ 1.130922, 44.372159 ], [ 1.093797, 44.36784 ], [ 1.085842, 44.35546 ], [ 1.081223, 44.35439 ], [ 1.083658, 44.35139 ], [ 1.100694, 44.347087 ], [ 1.114707, 44.33775 ], [ 1.10939, 44.324871 ], [ 1.120364, 44.3181 ], [ 1.122866, 44.31566 ], [ 1.130534, 44.316985 ], [ 1.135027, 44.31689 ], [ 1.151415, 44.30739 ], [ 1.15957, 44.30992 ], [ 1.168975, 44.304108 ], [ 1.175529, 44.3085 ], [ 1.178986, 44.310559 ], [ 1.17746, 44.294831 ], [ 1.180887, 44.28885 ], [ 1.184412, 44.2868 ], [ 1.188983, 44.286918 ], [ 1.195068, 44.282012 ], [ 1.203287, 44.28248 ], [ 1.213001, 44.270934 ], [ 1.225198, 44.27918 ], [ 1.238265, 44.275294 ], [ 1.242612, 44.26925 ], [ 1.24419, 44.26604 ], [ 1.250491, 44.26974 ], [ 1.253224, 44.28274 ], [ 1.255351, 44.285687 ], [ 1.258367, 44.28299 ], [ 1.272716, 44.28264 ], [ 1.282704, 44.29009 ], [ 1.299992, 44.295011 ], [ 1.304016, 44.294191 ], [ 1.294544, 44.271923 ], [ 1.30288, 44.269315 ], [ 1.302983, 44.262511 ], [ 1.288709, 44.253943 ], [ 1.284393, 44.252516 ], [ 1.283518, 44.23793 ], [ 1.281318, 44.23534 ], [ 1.285965, 44.23448 ], [ 1.303104, 44.2283 ], [ 1.316172, 44.23097 ], [ 1.337985, 44.22666 ], [ 1.35715, 44.203023 ], [ 1.370509, 44.217636 ], [ 1.389259, 44.22875 ], [ 1.394161, 44.228986 ], [ 1.419793, 44.240602 ], [ 1.423051, 44.242774 ], [ 1.425752, 44.242029 ], [ 1.430319, 44.24309 ], [ 1.452071, 44.255988 ], [ 1.454513, 44.26613 ], [ 1.463113, 44.26918 ], [ 1.473534, 44.284216 ], [ 1.481934, 44.280839 ], [ 1.489859, 44.27216 ], [ 1.504077, 44.273265 ], [ 1.508952, 44.273709 ], [ 1.511915, 44.271094 ], [ 1.524087, 44.26122 ], [ 1.518156, 44.25233 ], [ 1.526928, 44.237212 ], [ 1.530026, 44.23459 ], [ 1.541735, 44.22871 ], [ 1.546054, 44.23018 ], [ 1.57292, 44.2353 ], [ 1.578933, 44.24369 ], [ 1.582443, 44.24556 ], [ 1.585916, 44.250942 ], [ 1.58079, 44.259581 ], [ 1.576671, 44.26947 ], [ 1.564456, 44.278851 ], [ 1.575434, 44.285305 ], [ 1.570705, 44.298396 ], [ 1.573875, 44.300958 ], [ 1.583253, 44.29988 ], [ 1.587527, 44.301432 ], [ 1.596701, 44.301522 ], [ 1.602525, 44.29617 ], [ 1.612038, 44.296711 ], [ 1.616652, 44.29767 ], [ 1.615631, 44.2784 ], [ 1.636036, 44.2699 ], [ 1.644042, 44.27354 ], [ 1.650018, 44.28304 ], [ 1.634017, 44.294934 ], [ 1.637352, 44.297001 ], [ 1.646736, 44.295064 ], [ 1.651059, 44.296711 ], [ 1.655897, 44.28512 ], [ 1.659487, 44.28326 ], [ 1.665366, 44.291187 ], [ 1.669676, 44.290735 ], [ 1.670328, 44.293399 ], [ 1.671104, 44.29826 ], [ 1.675551, 44.29785 ], [ 1.698485, 44.31283 ], [ 1.702321, 44.314505 ], [ 1.706266, 44.312508 ], [ 1.73309, 44.317897 ], [ 1.740904, 44.326297 ], [ 1.759546, 44.323177 ], [ 1.773271, 44.314203 ], [ 1.78237, 44.316122 ], [ 1.787993, 44.32172 ], [ 1.783485, 44.327847 ], [ 1.79125, 44.327762 ], [ 1.793744, 44.333749 ], [ 1.801818, 44.3357 ], [ 1.805975, 44.336637 ], [ 1.807251, 44.33324 ], [ 1.813143, 44.327982 ], [ 1.826465, 44.32359 ], [ 1.833702, 44.33513 ], [ 1.842695, 44.33697 ], [ 1.847231, 44.337806 ], [ 1.849722, 44.335005 ], [ 1.85629, 44.332742 ], [ 1.882083, 44.340074 ], [ 1.885627, 44.335267 ], [ 1.880816, 44.334993 ], [ 1.872421, 44.33263 ], [ 1.860483, 44.32194 ], [ 1.880166, 44.303109 ], [ 1.868779, 44.29204 ], [ 1.87319, 44.290822 ], [ 1.901391, 44.279116 ], [ 1.909854, 44.281415 ], [ 1.93638, 44.280883 ], [ 1.940271, 44.28255 ], [ 1.943413, 44.280015 ], [ 1.966238, 44.277594 ], [ 1.970633, 44.276348 ], [ 1.960638, 44.24882 ], [ 1.962021, 44.242339 ], [ 1.957699, 44.241767 ], [ 1.943065, 44.247586 ], [ 1.940187, 44.24479 ], [ 1.932163, 44.242647 ], [ 1.90835, 44.21245 ], [ 1.894638, 44.21281 ], [ 1.890347, 44.20757 ], [ 1.902943, 44.204 ], [ 1.905812, 44.19214 ], [ 1.91299, 44.18841 ], [ 1.911095, 44.185458 ], [ 1.915747, 44.18554 ], [ 1.922996, 44.18919 ], [ 1.931422, 44.187513 ], [ 1.934353, 44.17464 ], [ 1.94071, 44.16977 ], [ 1.946484, 44.18282 ], [ 1.96062, 44.184138 ], [ 1.977979, 44.179513 ], [ 1.980073, 44.176427 ], [ 1.973623, 44.171353 ], [ 1.975743, 44.16476 ], [ 1.997054, 44.15822 ], [ 1.990171, 44.149453 ], [ 1.983368, 44.15232 ], [ 1.968628, 44.14474 ], [ 1.955454, 44.148758 ], [ 1.941394, 44.14786 ], [ 1.932682, 44.15575 ], [ 1.922417, 44.16105 ], [ 1.919064, 44.16308 ], [ 1.909789, 44.163562 ], [ 1.894931, 44.15597 ], [ 1.91477, 44.1424 ], [ 1.918422, 44.140298 ], [ 1.914388, 44.136189 ], [ 1.903269, 44.13076 ], [ 1.891553, 44.1413 ], [ 1.882758, 44.138527 ], [ 1.864961, 44.14342 ], [ 1.850339, 44.13517 ], [ 1.846177, 44.135808 ], [ 1.841019, 44.14417 ], [ 1.836775, 44.143891 ], [ 1.830068, 44.132028 ], [ 1.838957, 44.117207 ], [ 1.840519, 44.11415 ], [ 1.836598, 44.1061 ], [ 1.83743, 44.103256 ], [ 1.834477, 44.10596 ], [ 1.825328, 44.10797 ], [ 1.809295, 44.124351 ], [ 1.805673, 44.126598 ], [ 1.80385, 44.12358 ], [ 1.787708, 44.10874 ], [ 1.792808, 44.099803 ], [ 1.781724, 44.09765 ], [ 1.777958, 44.096767 ], [ 1.773229, 44.09713 ], [ 1.765889, 44.105552 ], [ 1.746638, 44.11464 ], [ 1.733508, 44.11229 ], [ 1.722089, 44.1184 ], [ 1.722151, 44.115097 ], [ 1.703121, 44.116214 ], [ 1.689593, 44.11277 ], [ 1.671048, 44.116127 ], [ 1.661999, 44.11412 ], [ 1.658716, 44.116643 ], [ 1.652824, 44.10848 ], [ 1.654375, 44.099406 ], [ 1.653121, 44.096447 ], [ 1.656676, 44.094033 ], [ 1.669095, 44.0885 ], [ 1.66396, 44.07157 ], [ 1.666838, 44.064929 ], [ 1.680416, 44.064571 ], [ 1.693526, 44.060111 ], [ 1.704208, 44.04436 ], [ 1.700894, 44.04193 ], [ 1.689731, 44.02326 ], [ 1.672877, 44.017385 ], [ 1.66922, 44.01109 ], [ 1.664533, 44.01149 ], [ 1.660102, 44.01271 ], [ 1.651181, 44.011278 ], [ 1.657586, 43.99879 ], [ 1.654319, 43.99299 ], [ 1.64981, 43.992268 ], [ 1.637097, 43.994685 ], [ 1.634649, 43.99173 ], [ 1.627258, 43.983373 ], [ 1.618637, 43.97283 ], [ 1.621945, 43.96386 ], [ 1.622719, 43.9607 ], [ 1.618384, 43.959129 ], [ 1.589318, 43.9604 ], [ 1.566416, 43.96531 ], [ 1.552291, 43.96304 ], [ 1.5502, 43.959984 ], [ 1.543666, 43.95675 ], [ 1.535268, 43.95967 ], [ 1.539563, 43.953973 ], [ 1.538736, 43.947346 ], [ 1.565952, 43.944088 ], [ 1.57311, 43.939834 ], [ 1.57752, 43.938812 ], [ 1.572858, 43.93497 ], [ 1.573867, 43.932481 ], [ 1.573536, 43.919786 ], [ 1.56963, 43.918142 ], [ 1.565019, 43.917307 ], [ 1.555617, 43.918317 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "84", "CODE_DEPT": "83", "NOM_DEPT": "VAR", "CODE_CHF": "137", "NOM_CHF": "TOULON", "X_CHF_LIEU": "9386", "Y_CHF_LIEU": "62294", "X_CENTROID": "9626", "Y_CENTROID": "62658", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.933726, 43.48007 ], [ 6.924581, 43.47205 ], [ 6.92131, 43.451306 ], [ 6.894866, 43.436938 ], [ 6.893798, 43.43028 ], [ 6.890097, 43.428012 ], [ 6.874789, 43.42625 ], [ 6.864121, 43.43283 ], [ 6.858407, 43.427795 ], [ 6.8575, 43.41428 ], [ 6.854202, 43.411903 ], [ 6.841518, 43.416227 ], [ 6.836735, 43.416396 ], [ 6.827512, 43.417606 ], [ 6.787761, 43.408952 ], [ 6.766054, 43.42159 ], [ 6.763676, 43.42453 ], [ 6.759109, 43.42366 ], [ 6.746774, 43.418683 ], [ 6.735328, 43.407767 ], [ 6.729116, 43.39484 ], [ 6.730766, 43.388281 ], [ 6.714532, 43.36808 ], [ 6.718038, 43.358341 ], [ 6.713815, 43.345878 ], [ 6.686824, 43.341579 ], [ 6.682171, 43.340981 ], [ 6.668772, 43.331305 ], [ 6.665875, 43.321074 ], [ 6.668219, 43.3143 ], [ 6.632801, 43.305711 ], [ 6.625814, 43.3007 ], [ 6.62073, 43.295922 ], [ 6.585295, 43.27922 ], [ 6.585382, 43.2725 ], [ 6.586694, 43.269224 ], [ 6.584916, 43.266788 ], [ 6.590809, 43.26348 ], [ 6.594155, 43.26219 ], [ 6.619595, 43.2641 ], [ 6.623616, 43.26534 ], [ 6.643543, 43.27397 ], [ 6.663851, 43.26539 ], [ 6.675978, 43.278369 ], [ 6.696529, 43.264601 ], [ 6.688909, 43.252 ], [ 6.681031, 43.24844 ], [ 6.677776, 43.24588 ], [ 6.665308, 43.24237 ], [ 6.662453, 43.22514 ], [ 6.665254, 43.211466 ], [ 6.677862, 43.197962 ], [ 6.659517, 43.195156 ], [ 6.644396, 43.18684 ], [ 6.640826, 43.18038 ], [ 6.644069, 43.170755 ], [ 6.647, 43.16944 ], [ 6.64659, 43.167806 ], [ 6.645069, 43.16749 ], [ 6.633894, 43.171521 ], [ 6.616284, 43.16259 ], [ 6.598473, 43.18292 ], [ 6.556951, 43.188178 ], [ 6.552277, 43.187423 ], [ 6.537324, 43.178938 ], [ 6.535731, 43.165979 ], [ 6.521828, 43.1641 ], [ 6.494056, 43.150898 ], [ 6.490166, 43.15287 ], [ 6.465464, 43.15682 ], [ 6.452186, 43.154417 ], [ 6.448245, 43.15266 ], [ 6.440647, 43.144846 ], [ 6.429318, 43.150555 ], [ 6.405947, 43.14833 ], [ 6.368112, 43.13564 ], [ 6.36391, 43.12575 ], [ 6.360394, 43.11623 ], [ 6.36638, 43.092627 ], [ 6.363991, 43.08956 ], [ 6.354469, 43.08888 ], [ 6.326106, 43.092466 ], [ 6.312936, 43.106798 ], [ 6.294076, 43.108718 ], [ 6.28631, 43.111296 ], [ 6.286518, 43.114521 ], [ 6.276057, 43.12009 ], [ 6.271819, 43.12099 ], [ 6.258864, 43.120069 ], [ 6.238769, 43.113222 ], [ 6.234334, 43.11301 ], [ 6.201047, 43.115429 ], [ 6.180415, 43.106454 ], [ 6.162001, 43.09032 ], [ 6.153594, 43.073748 ], [ 6.149596, 43.052857 ], [ 6.152821, 43.03906 ], [ 6.163394, 43.030895 ], [ 6.149844, 43.027422 ], [ 6.133858, 43.034441 ], [ 6.120455, 43.032536 ], [ 6.116722, 43.034759 ], [ 6.099998, 43.028564 ], [ 6.093452, 43.03716 ], [ 6.101109, 43.04107 ], [ 6.119959, 43.039958 ], [ 6.130489, 43.04679 ], [ 6.132424, 43.057147 ], [ 6.12708, 43.07433 ], [ 6.113569, 43.0836 ], [ 6.108785, 43.083918 ], [ 6.08151, 43.087357 ], [ 6.051102, 43.07918 ], [ 6.037018, 43.0787 ], [ 6.032563, 43.07759 ], [ 6.019387, 43.080368 ], [ 6.021986, 43.09557 ], [ 5.997932, 43.104711 ], [ 5.993279, 43.104994 ], [ 5.97906, 43.10654 ], [ 5.929023, 43.104996 ], [ 5.931487, 43.115082 ], [ 5.920388, 43.12104 ], [ 5.91136, 43.11965 ], [ 5.905189, 43.114687 ], [ 5.891964, 43.117023 ], [ 5.887337, 43.116148 ], [ 5.885618, 43.117148 ], [ 5.88496, 43.104205 ], [ 5.907216, 43.10028 ], [ 5.906443, 43.093682 ], [ 5.895977, 43.082597 ], [ 5.903883, 43.078901 ], [ 5.915412, 43.084026 ], [ 5.92805, 43.080686 ], [ 5.941315, 43.0827 ], [ 5.948441, 43.078203 ], [ 5.950055, 43.07494 ], [ 5.945829, 43.069103 ], [ 5.932012, 43.071146 ], [ 5.913907, 43.067065 ], [ 5.903569, 43.07337 ], [ 5.896593, 43.07774 ], [ 5.887468, 43.07645 ], [ 5.872799, 43.067594 ], [ 5.860028, 43.049367 ], [ 5.847225, 43.04929 ], [ 5.843581, 43.047049 ], [ 5.829989, 43.049883 ], [ 5.814742, 43.06289 ], [ 5.797819, 43.069038 ], [ 5.79584, 43.072275 ], [ 5.804867, 43.08022 ], [ 5.810012, 43.093632 ], [ 5.807881, 43.100338 ], [ 5.812705, 43.106332 ], [ 5.810253, 43.113002 ], [ 5.807265, 43.11572 ], [ 5.793786, 43.113907 ], [ 5.7711, 43.1168 ], [ 5.779776, 43.132189 ], [ 5.770334, 43.13901 ], [ 5.750781, 43.13127 ], [ 5.748323, 43.134093 ], [ 5.730274, 43.13546 ], [ 5.725912, 43.136526 ], [ 5.718975, 43.14553 ], [ 5.695909, 43.145092 ], [ 5.684359, 43.156009 ], [ 5.684189, 43.1595 ], [ 5.693446, 43.16741 ], [ 5.692399, 43.174222 ], [ 5.685827, 43.17913 ], [ 5.676397, 43.178122 ], [ 5.671875, 43.17927 ], [ 5.673562, 43.181963 ], [ 5.675956, 43.190643 ], [ 5.678393, 43.21163 ], [ 5.678421, 43.215161 ], [ 5.682372, 43.235304 ], [ 5.701154, 43.23892 ], [ 5.704584, 43.241447 ], [ 5.70169, 43.246946 ], [ 5.738292, 43.26193 ], [ 5.760763, 43.267225 ], [ 5.760788, 43.27032 ], [ 5.762613, 43.282444 ], [ 5.758411, 43.283964 ], [ 5.737105, 43.302067 ], [ 5.727039, 43.317488 ], [ 5.695071, 43.31374 ], [ 5.690692, 43.312629 ], [ 5.67974, 43.31885 ], [ 5.670125, 43.318864 ], [ 5.683491, 43.32184 ], [ 5.689808, 43.330924 ], [ 5.688016, 43.340887 ], [ 5.703233, 43.35373 ], [ 5.703385, 43.35724 ], [ 5.694293, 43.365413 ], [ 5.684662, 43.39593 ], [ 5.682788, 43.399166 ], [ 5.702862, 43.408127 ], [ 5.72205, 43.40867 ], [ 5.744663, 43.402827 ], [ 5.749077, 43.401409 ], [ 5.778369, 43.41001 ], [ 5.787168, 43.417053 ], [ 5.788349, 43.420263 ], [ 5.787862, 43.42041 ], [ 5.773787, 43.421763 ], [ 5.750885, 43.434851 ], [ 5.72801, 43.46589 ], [ 5.703791, 43.482307 ], [ 5.698933, 43.48206 ], [ 5.703216, 43.49531 ], [ 5.714255, 43.50126 ], [ 5.71766, 43.535326 ], [ 5.725661, 43.55112 ], [ 5.710063, 43.553963 ], [ 5.70698, 43.55605 ], [ 5.691893, 43.56324 ], [ 5.673857, 43.56434 ], [ 5.669315, 43.564641 ], [ 5.657371, 43.575665 ], [ 5.688412, 43.58486 ], [ 5.681586, 43.61212 ], [ 5.703071, 43.64365 ], [ 5.716038, 43.647021 ], [ 5.718973, 43.649838 ], [ 5.770163, 43.66047 ], [ 5.794457, 43.660708 ], [ 5.799206, 43.659929 ], [ 5.801513, 43.673879 ], [ 5.810585, 43.68611 ], [ 5.813248, 43.68905 ], [ 5.808917, 43.690561 ], [ 5.78849, 43.69687 ], [ 5.784025, 43.703032 ], [ 5.78368, 43.716628 ], [ 5.776958, 43.721365 ], [ 5.753393, 43.724431 ], [ 5.755339, 43.72693 ], [ 5.757333, 43.729409 ], [ 5.778678, 43.752709 ], [ 5.781343, 43.75566 ], [ 5.82767, 43.74767 ], [ 5.835113, 43.743484 ], [ 5.848607, 43.72164 ], [ 5.849043, 43.71818 ], [ 5.855749, 43.723189 ], [ 5.874983, 43.72299 ], [ 5.888624, 43.72636 ], [ 5.903144, 43.735513 ], [ 5.905002, 43.75278 ], [ 5.918742, 43.75548 ], [ 5.922661, 43.757539 ], [ 5.925662, 43.755964 ], [ 5.928999, 43.7498 ], [ 5.938029, 43.74907 ], [ 5.943609, 43.725944 ], [ 5.951306, 43.721828 ], [ 5.96521, 43.7225 ], [ 5.97993, 43.71548 ], [ 5.984534, 43.71449 ], [ 5.986794, 43.698564 ], [ 5.987772, 43.69542 ], [ 6.004165, 43.688288 ], [ 6.011191, 43.675352 ], [ 6.018883, 43.67112 ], [ 6.021735, 43.668288 ], [ 6.038784, 43.679592 ], [ 6.034615, 43.692711 ], [ 6.047019, 43.69703 ], [ 6.051561, 43.697712 ], [ 6.056553, 43.700084 ], [ 6.066238, 43.70479 ], [ 6.070405, 43.704944 ], [ 6.085981, 43.71666 ], [ 6.091826, 43.7258 ], [ 6.090296, 43.728974 ], [ 6.095298, 43.72961 ], [ 6.111011, 43.745665 ], [ 6.11575, 43.74556 ], [ 6.124387, 43.738339 ], [ 6.128625, 43.73679 ], [ 6.136721, 43.73675 ], [ 6.140606, 43.737611 ], [ 6.16532, 43.74945 ], [ 6.182737, 43.762171 ], [ 6.184159, 43.76561 ], [ 6.18504, 43.768282 ], [ 6.188387, 43.77614 ], [ 6.207321, 43.79529 ], [ 6.219498, 43.799781 ], [ 6.224189, 43.79984 ], [ 6.233044, 43.798984 ], [ 6.245312, 43.80241 ], [ 6.24963, 43.80158 ], [ 6.257113, 43.7976 ], [ 6.267787, 43.778547 ], [ 6.312809, 43.7588 ], [ 6.329213, 43.746226 ], [ 6.35451, 43.736515 ], [ 6.376266, 43.7423 ], [ 6.378913, 43.739372 ], [ 6.383541, 43.734437 ], [ 6.412788, 43.762256 ], [ 6.415852, 43.79005 ], [ 6.438807, 43.7942 ], [ 6.438808, 43.797745 ], [ 6.44893, 43.793615 ], [ 6.456835, 43.79313 ], [ 6.469959, 43.797523 ], [ 6.487059, 43.79225 ], [ 6.520281, 43.806925 ], [ 6.538469, 43.795518 ], [ 6.545273, 43.782523 ], [ 6.542339, 43.77589 ], [ 6.551026, 43.78125 ], [ 6.554071, 43.783435 ], [ 6.578409, 43.795654 ], [ 6.581177, 43.79815 ], [ 6.58621, 43.802451 ], [ 6.586912, 43.80532 ], [ 6.623513, 43.804451 ], [ 6.624163, 43.797637 ], [ 6.631781, 43.78971 ], [ 6.636396, 43.788951 ], [ 6.636148, 43.78622 ], [ 6.637802, 43.78096 ], [ 6.645036, 43.77722 ], [ 6.64192, 43.771434 ], [ 6.64185, 43.768184 ], [ 6.651067, 43.76575 ], [ 6.656379, 43.752203 ], [ 6.657423, 43.74872 ], [ 6.682462, 43.757585 ], [ 6.700874, 43.75383 ], [ 6.713283, 43.743764 ], [ 6.712452, 43.740342 ], [ 6.754162, 43.737857 ], [ 6.75727, 43.727858 ], [ 6.766196, 43.72003 ], [ 6.773193, 43.69711 ], [ 6.774704, 43.693851 ], [ 6.767122, 43.68957 ], [ 6.763489, 43.683024 ], [ 6.761134, 43.665891 ], [ 6.766017, 43.66051 ], [ 6.775052, 43.6596 ], [ 6.787139, 43.646097 ], [ 6.789749, 43.643367 ], [ 6.799868, 43.628348 ], [ 6.813587, 43.6297 ], [ 6.824612, 43.623192 ], [ 6.838426, 43.61688 ], [ 6.838665, 43.6138 ], [ 6.853158, 43.6064 ], [ 6.856823, 43.60836 ], [ 6.864765, 43.605159 ], [ 6.878763, 43.60666 ], [ 6.883712, 43.6065 ], [ 6.890741, 43.60961 ], [ 6.89447, 43.61102 ], [ 6.907869, 43.59934 ], [ 6.911991, 43.59833 ], [ 6.90031, 43.58315 ], [ 6.907831, 43.570943 ], [ 6.906637, 43.56415 ], [ 6.901986, 43.564253 ], [ 6.88712, 43.551823 ], [ 6.880004, 43.53578 ], [ 6.879135, 43.532454 ], [ 6.881414, 43.529345 ], [ 6.890768, 43.527623 ], [ 6.895211, 43.521932 ], [ 6.88423, 43.502536 ], [ 6.899554, 43.496022 ], [ 6.903919, 43.495072 ], [ 6.912292, 43.492654 ], [ 6.915656, 43.48302 ], [ 6.929232, 43.48092 ], [ 6.933726, 43.48007 ] ] ], [ [ [ 6.198263, 42.982033 ], [ 6.196415, 42.983204 ], [ 6.19528, 42.988395 ], [ 6.191609, 42.99076 ], [ 6.1763, 42.996 ], [ 6.163015, 42.99925 ], [ 6.163453, 43.00077 ], [ 6.172399, 43.00626 ], [ 6.17933, 43.00786 ], [ 6.199031, 43.00172 ], [ 6.21098, 43.002905 ], [ 6.214421, 43.00523 ], [ 6.218038, 43.011839 ], [ 6.229773, 43.01048 ], [ 6.233982, 43.012261 ], [ 6.239612, 43.023883 ], [ 6.242019, 43.023279 ], [ 6.244071, 43.02004 ], [ 6.247721, 43.01775 ], [ 6.251653, 43.0041 ], [ 6.249463, 42.999183 ], [ 6.247704, 42.99799 ], [ 6.238313, 42.997153 ], [ 6.228222, 42.992983 ], [ 6.214866, 42.98984 ], [ 6.207668, 42.98295 ], [ 6.198263, 42.982033 ] ] ], [ [ [ 6.472761, 43.020037 ], [ 6.472229, 43.018326 ], [ 6.459776, 43.013992 ], [ 6.451052, 43.016856 ], [ 6.44352, 43.00779 ], [ 6.437651, 43.004997 ], [ 6.433113, 43.00873 ], [ 6.434805, 43.01555 ], [ 6.433698, 43.01715 ], [ 6.434826, 43.020445 ], [ 6.439714, 43.024457 ], [ 6.458014, 43.02845 ], [ 6.463223, 43.0382 ], [ 6.470504, 43.045209 ], [ 6.472538, 43.04618 ], [ 6.474595, 43.04712 ], [ 6.504976, 43.052608 ], [ 6.508841, 43.04853 ], [ 6.508485, 43.045282 ], [ 6.502137, 43.042806 ], [ 6.490071, 43.04219 ], [ 6.486049, 43.040223 ], [ 6.479925, 43.030635 ], [ 6.473687, 43.02525 ], [ 6.472761, 43.020037 ] ] ], [ [ [ 6.397098, 42.9928 ], [ 6.387298, 42.997801 ], [ 6.372874, 42.996922 ], [ 6.370849, 43.00154 ], [ 6.381625, 43.008403 ], [ 6.382863, 43.01174 ], [ 6.392092, 43.01307 ], [ 6.407759, 43.017903 ], [ 6.411792, 43.016389 ], [ 6.412815, 43.011271 ], [ 6.418952, 43.011751 ], [ 6.417089, 43.006994 ], [ 6.405284, 42.995846 ], [ 6.398567, 42.99422 ], [ 6.397098, 42.9928 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "85", "CODE_DEPT": "84", "NOM_DEPT": "VAUCLUSE", "CODE_CHF": "007", "NOM_CHF": "AVIGNON", "X_CHF_LIEU": "8451", "Y_CHF_LIEU": "63182", "X_CENTROID": "8753", "Y_CENTROID": "63240", "CODE_REG": "93", "NOM_REGION": "PROVENCE-ALPES-COTE-D'AZUR" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.753393, 43.724431 ], [ 5.750437, 43.721561 ], [ 5.737583, 43.71653 ], [ 5.712048, 43.69057 ], [ 5.68289, 43.69271 ], [ 5.67803, 43.69278 ], [ 5.65704, 43.685392 ], [ 5.641181, 43.672138 ], [ 5.623852, 43.66615 ], [ 5.61987, 43.66532 ], [ 5.606437, 43.658725 ], [ 5.601712, 43.65927 ], [ 5.57325, 43.661955 ], [ 5.549617, 43.659802 ], [ 5.530189, 43.6593 ], [ 5.487564, 43.668037 ], [ 5.483312, 43.669205 ], [ 5.445436, 43.67997 ], [ 5.440745, 43.68049 ], [ 5.412543, 43.692971 ], [ 5.408725, 43.69483 ], [ 5.388126, 43.70219 ], [ 5.384307, 43.70314 ], [ 5.370535, 43.709189 ], [ 5.366694, 43.71054 ], [ 5.343699, 43.71877 ], [ 5.33963, 43.72034 ], [ 5.325916, 43.729237 ], [ 5.322493, 43.731786 ], [ 5.3153, 43.736566 ], [ 5.28639, 43.74014 ], [ 5.281813, 43.74057 ], [ 5.264103, 43.744232 ], [ 5.245554, 43.747137 ], [ 5.240966, 43.747322 ], [ 5.236378, 43.74747 ], [ 5.231553, 43.747623 ], [ 5.18623, 43.735651 ], [ 5.138788, 43.752797 ], [ 5.135018, 43.75427 ], [ 5.123784, 43.758753 ], [ 5.119674, 43.76046 ], [ 5.090664, 43.77211 ], [ 5.086392, 43.77385 ], [ 5.048139, 43.789727 ], [ 5.042624, 43.8065 ], [ 5.04187, 43.809388 ], [ 5.035354, 43.820141 ], [ 5.033312, 43.823213 ], [ 4.997651, 43.84485 ], [ 4.995428, 43.84671 ], [ 4.9915, 43.85072 ], [ 4.988513, 43.853538 ], [ 4.969577, 43.869707 ], [ 4.930503, 43.88437 ], [ 4.926581, 43.886165 ], [ 4.922008, 43.886759 ], [ 4.907485, 43.88644 ], [ 4.881295, 43.901502 ], [ 4.876904, 43.903135 ], [ 4.854593, 43.910762 ], [ 4.810454, 43.91401 ], [ 4.805819, 43.91469 ], [ 4.773363, 43.919349 ], [ 4.769047, 43.919914 ], [ 4.738793, 43.923866 ], [ 4.741431, 43.92664 ], [ 4.748232, 43.931132 ], [ 4.778539, 43.93879 ], [ 4.791981, 43.952271 ], [ 4.814369, 43.964676 ], [ 4.810178, 43.977915 ], [ 4.812967, 43.988006 ], [ 4.8363, 43.985033 ], [ 4.840941, 43.98592 ], [ 4.844996, 43.992142 ], [ 4.845344, 43.995593 ], [ 4.843118, 44.00042 ], [ 4.842997, 44.00399 ], [ 4.839417, 44.014022 ], [ 4.82029, 44.01701 ], [ 4.813646, 44.03404 ], [ 4.807764, 44.03977 ], [ 4.799013, 44.04601 ], [ 4.795865, 44.04791 ], [ 4.792418, 44.049848 ], [ 4.78741, 44.054918 ], [ 4.786807, 44.064353 ], [ 4.784113, 44.067215 ], [ 4.762887, 44.07487 ], [ 4.760035, 44.078344 ], [ 4.760117, 44.08179 ], [ 4.757721, 44.087933 ], [ 4.752939, 44.08798 ], [ 4.727819, 44.07845 ], [ 4.71973, 44.085584 ], [ 4.719627, 44.088781 ], [ 4.705082, 44.10817 ], [ 4.705735, 44.1116 ], [ 4.718133, 44.14068 ], [ 4.718725, 44.152381 ], [ 4.71719, 44.159094 ], [ 4.717117, 44.1625 ], [ 4.717296, 44.16593 ], [ 4.717361, 44.169328 ], [ 4.716251, 44.176043 ], [ 4.721891, 44.18467 ], [ 4.717272, 44.18997 ], [ 4.708316, 44.191724 ], [ 4.703839, 44.197663 ], [ 4.70483, 44.201078 ], [ 4.710297, 44.206836 ], [ 4.708595, 44.2135 ], [ 4.699936, 44.216108 ], [ 4.681893, 44.211741 ], [ 4.673657, 44.21471 ], [ 4.672933, 44.2186 ], [ 4.67736, 44.234975 ], [ 4.653075, 44.25591 ], [ 4.651479, 44.259153 ], [ 4.648551, 44.26747 ], [ 4.649224, 44.27036 ], [ 4.652364, 44.29127 ], [ 4.653181, 44.294807 ], [ 4.651542, 44.32632 ], [ 4.650615, 44.329806 ], [ 4.654887, 44.32835 ], [ 4.679884, 44.320692 ], [ 4.713017, 44.320649 ], [ 4.717089, 44.325907 ], [ 4.721663, 44.326592 ], [ 4.758399, 44.32533 ], [ 4.762995, 44.3251 ], [ 4.771902, 44.317537 ], [ 4.780956, 44.31712 ], [ 4.799988, 44.303549 ], [ 4.804563, 44.303897 ], [ 4.802926, 44.280793 ], [ 4.804479, 44.27762 ], [ 4.805857, 44.27484 ], [ 4.803999, 44.26921 ], [ 4.812513, 44.258019 ], [ 4.813118, 44.24521 ], [ 4.812141, 44.242062 ], [ 4.813448, 44.23242 ], [ 4.820886, 44.228889 ], [ 4.825342, 44.22845 ], [ 4.853171, 44.244366 ], [ 4.857094, 44.24599 ], [ 4.876029, 44.260266 ], [ 4.88025, 44.26177 ], [ 4.896965, 44.26441 ], [ 4.901283, 44.26428 ], [ 4.903477, 44.259478 ], [ 4.927221, 44.26211 ], [ 4.932031, 44.26245 ], [ 4.941528, 44.26941 ], [ 4.967555, 44.277726 ], [ 4.971688, 44.279426 ], [ 4.985462, 44.285517 ], [ 4.989594, 44.28577 ], [ 5.002729, 44.28537 ], [ 5.013072, 44.291074 ], [ 5.01715, 44.292242 ], [ 5.024772, 44.296784 ], [ 5.0295, 44.29789 ], [ 5.056515, 44.3054 ], [ 5.060245, 44.307614 ], [ 5.073922, 44.286944 ], [ 5.076512, 44.284086 ], [ 5.086471, 44.283933 ], [ 5.109641, 44.280367 ], [ 5.149503, 44.30066 ], [ 5.153262, 44.31015 ], [ 5.161976, 44.313387 ], [ 5.166434, 44.314857 ], [ 5.168839, 44.314125 ], [ 5.172827, 44.30821 ], [ 5.169743, 44.30201 ], [ 5.170106, 44.298738 ], [ 5.168429, 44.292243 ], [ 5.150647, 44.281877 ], [ 5.147458, 44.26917 ], [ 5.160531, 44.26562 ], [ 5.162089, 44.248948 ], [ 5.161548, 44.245591 ], [ 5.158751, 44.24287 ], [ 5.151814, 44.238308 ], [ 5.150007, 44.235237 ], [ 5.163507, 44.226355 ], [ 5.167913, 44.225304 ], [ 5.175606, 44.22087 ], [ 5.208775, 44.21442 ], [ 5.23815, 44.21323 ], [ 5.240446, 44.23083 ], [ 5.244512, 44.230707 ], [ 5.248536, 44.23112 ], [ 5.252657, 44.23113 ], [ 5.256509, 44.23006 ], [ 5.276283, 44.22099 ], [ 5.280668, 44.219796 ], [ 5.291804, 44.214647 ], [ 5.299429, 44.206924 ], [ 5.303298, 44.20539 ], [ 5.303624, 44.208799 ], [ 5.317996, 44.208794 ], [ 5.335726, 44.20431 ], [ 5.35579, 44.213599 ], [ 5.372391, 44.206686 ], [ 5.37667, 44.20513 ], [ 5.380358, 44.202911 ], [ 5.384529, 44.20119 ], [ 5.383188, 44.19907 ], [ 5.381281, 44.192382 ], [ 5.38665, 44.17927 ], [ 5.383201, 44.158797 ], [ 5.383241, 44.155285 ], [ 5.39695, 44.152338 ], [ 5.415834, 44.154652 ], [ 5.422917, 44.150039 ], [ 5.431059, 44.15151 ], [ 5.435756, 44.152249 ], [ 5.436695, 44.14207 ], [ 5.443033, 44.13795 ], [ 5.447571, 44.136758 ], [ 5.451161, 44.12113 ], [ 5.454716, 44.11923 ], [ 5.493838, 44.115436 ], [ 5.498788, 44.11572 ], [ 5.49816, 44.073267 ], [ 5.501567, 44.06694 ], [ 5.503023, 44.06371 ], [ 5.517337, 44.06347 ], [ 5.540038, 44.068458 ], [ 5.544501, 44.06967 ], [ 5.542776, 44.02435 ], [ 5.519542, 43.993959 ], [ 5.514257, 43.976792 ], [ 5.51317, 43.97336 ], [ 5.507972, 43.9578 ], [ 5.511577, 43.94852 ], [ 5.512674, 43.9454 ], [ 5.525213, 43.946861 ], [ 5.541171, 43.940828 ], [ 5.544992, 43.939055 ], [ 5.562939, 43.94245 ], [ 5.567633, 43.94264 ], [ 5.569475, 43.939544 ], [ 5.583383, 43.915913 ], [ 5.60656, 43.91608 ], [ 5.591367, 43.890674 ], [ 5.59029, 43.887233 ], [ 5.572737, 43.863508 ], [ 5.561328, 43.85746 ], [ 5.557468, 43.855458 ], [ 5.548657, 43.84789 ], [ 5.544566, 43.817233 ], [ 5.547911, 43.816398 ], [ 5.551256, 43.81722 ], [ 5.563903, 43.820867 ], [ 5.571883, 43.82934 ], [ 5.599493, 43.82714 ], [ 5.627694, 43.830792 ], [ 5.631373, 43.82857 ], [ 5.643087, 43.826927 ], [ 5.646917, 43.826104 ], [ 5.650596, 43.82525 ], [ 5.654445, 43.825111 ], [ 5.657024, 43.81851 ], [ 5.670121, 43.80872 ], [ 5.674483, 43.80736 ], [ 5.684298, 43.789453 ], [ 5.690681, 43.785127 ], [ 5.695001, 43.78421 ], [ 5.705321, 43.779587 ], [ 5.713558, 43.78112 ], [ 5.716274, 43.756931 ], [ 5.748017, 43.74148 ], [ 5.757333, 43.729409 ], [ 5.755339, 43.72693 ], [ 5.753393, 43.724431 ] ] ], [ [ [ 4.89291, 44.36483 ], [ 4.893313, 44.367873 ], [ 4.903708, 44.37276 ], [ 4.907085, 44.374631 ], [ 4.911091, 44.384728 ], [ 4.910162, 44.39515 ], [ 4.918515, 44.407785 ], [ 4.948766, 44.41664 ], [ 4.951931, 44.41915 ], [ 4.955663, 44.420251 ], [ 4.959697, 44.42027 ], [ 4.970846, 44.430129 ], [ 4.984073, 44.42318 ], [ 4.98861, 44.4232 ], [ 5.006196, 44.41172 ], [ 5.013923, 44.415627 ], [ 5.01876, 44.415979 ], [ 5.017716, 44.407138 ], [ 5.013498, 44.405441 ], [ 5.018616, 44.392588 ], [ 5.032759, 44.390896 ], [ 5.0476, 44.38212 ], [ 5.070882, 44.383225 ], [ 5.072028, 44.37851 ], [ 5.07032, 44.37645 ], [ 5.066647, 44.37419 ], [ 5.053313, 44.36483 ], [ 5.025072, 44.360998 ], [ 5.021478, 44.344352 ], [ 5.009006, 44.33377 ], [ 5.013335, 44.325655 ], [ 4.997298, 44.31837 ], [ 4.992205, 44.31262 ], [ 4.987018, 44.292719 ], [ 4.983551, 44.29503 ], [ 4.921836, 44.308797 ], [ 4.917099, 44.3085 ], [ 4.889463, 44.304019 ], [ 4.891209, 44.30711 ], [ 4.890664, 44.313723 ], [ 4.882096, 44.32532 ], [ 4.895328, 44.33806 ], [ 4.891418, 44.340065 ], [ 4.87911, 44.34537 ], [ 4.869527, 44.34508 ], [ 4.873588, 44.351022 ], [ 4.892057, 44.36146 ], [ 4.89291, 44.36483 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "86", "CODE_DEPT": "85", "NOM_DEPT": "VENDEE", "CODE_CHF": "191", "NOM_CHF": "LA ROCHE-SUR-YON", "X_CHF_LIEU": "3616", "Y_CHF_LIEU": "66283", "X_CENTROID": "3724", "Y_CENTROID": "66280", "CODE_REG": "52", "NOM_REGION": "PAYS-DE-LA-LOIRE" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.129404, 46.310277 ], [ -1.14485, 46.314576 ], [ -1.14801, 46.316598 ], [ -1.159802, 46.32243 ], [ -1.163774, 46.32434 ], [ -1.169668, 46.31954 ], [ -1.19737, 46.315393 ], [ -1.202044, 46.316086 ], [ -1.195946, 46.300567 ], [ -1.207092, 46.286142 ], [ -1.207608, 46.28287 ], [ -1.211879, 46.280906 ], [ -1.206537, 46.27149 ], [ -1.210155, 46.26983 ], [ -1.223728, 46.27486 ], [ -1.265424, 46.2999 ], [ -1.299067, 46.322537 ], [ -1.303407, 46.320624 ], [ -1.295244, 46.29708 ], [ -1.278243, 46.28881 ], [ -1.283298, 46.28825 ], [ -1.297512, 46.2915 ], [ -1.300917, 46.29427 ], [ -1.324029, 46.328085 ], [ -1.341475, 46.341048 ], [ -1.350964, 46.343779 ], [ -1.355165, 46.345837 ], [ -1.364669, 46.347926 ], [ -1.371781, 46.34599 ], [ -1.355758, 46.34201 ], [ -1.353404, 46.339429 ], [ -1.372921, 46.34315 ], [ -1.398041, 46.34089 ], [ -1.421946, 46.346637 ], [ -1.440193, 46.341039 ], [ -1.465388, 46.34276 ], [ -1.471553, 46.34807 ], [ -1.479711, 46.368461 ], [ -1.481596, 46.37174 ], [ -1.505168, 46.39939 ], [ -1.537968, 46.409242 ], [ -1.543127, 46.408883 ], [ -1.550666, 46.405462 ], [ -1.564277, 46.40685 ], [ -1.619316, 46.413011 ], [ -1.651348, 46.422831 ], [ -1.649013, 46.42588 ], [ -1.648817, 46.429411 ], [ -1.706677, 46.449995 ], [ -1.714284, 46.45903 ], [ -1.724147, 46.459277 ], [ -1.75946, 46.4774 ], [ -1.761022, 46.48064 ], [ -1.769978, 46.48896 ], [ -1.78275, 46.4943 ], [ -1.792481, 46.493406 ], [ -1.799923, 46.48907 ], [ -1.812599, 46.494319 ], [ -1.818351, 46.5146 ], [ -1.818474, 46.518059 ], [ -1.846336, 46.58133 ], [ -1.847696, 46.584699 ], [ -1.856094, 46.6084 ], [ -1.870706, 46.617787 ], [ -1.875722, 46.627587 ], [ -1.898379, 46.64126 ], [ -1.91975, 46.66867 ], [ -1.922682, 46.671525 ], [ -1.941714, 46.6917 ], [ -1.954849, 46.694687 ], [ -1.95974, 46.69397 ], [ -1.968936, 46.69416 ], [ -1.977774, 46.70302 ], [ -1.982924, 46.72026 ], [ -2.054992, 46.772112 ], [ -2.058248, 46.77492 ], [ -2.138629, 46.816391 ], [ -2.141989, 46.81897 ], [ -2.146519, 46.857634 ], [ -2.154597, 46.88816 ], [ -2.12029, 46.892216 ], [ -2.109842, 46.899484 ], [ -2.118898, 46.90212 ], [ -2.116728, 46.90895 ], [ -2.090021, 46.93013 ], [ -2.074534, 46.93785 ], [ -2.071213, 46.93517 ], [ -2.072749, 46.94184 ], [ -2.057905, 46.951572 ], [ -2.045238, 46.96689 ], [ -2.044643, 46.9804 ], [ -2.028141, 47.009568 ], [ -1.983312, 47.025994 ], [ -1.980414, 47.028906 ], [ -1.97631, 47.02875 ], [ -1.972218, 47.028584 ], [ -1.943608, 46.99512 ], [ -1.938925, 46.99351 ], [ -1.9177, 46.992375 ], [ -1.915735, 46.97558 ], [ -1.890506, 46.958676 ], [ -1.871782, 46.9531 ], [ -1.846398, 46.954154 ], [ -1.827145, 46.95098 ], [ -1.825555, 46.94764 ], [ -1.829087, 46.934702 ], [ -1.832106, 46.93209 ], [ -1.797702, 46.92798 ], [ -1.787902, 46.929422 ], [ -1.779732, 46.92533 ], [ -1.755205, 46.92969 ], [ -1.750245, 46.93049 ], [ -1.742287, 46.920974 ], [ -1.745423, 46.918905 ], [ -1.737883, 46.91399 ], [ -1.736259, 46.911526 ], [ -1.738078, 46.90541 ], [ -1.732279, 46.89028 ], [ -1.729528, 46.88771 ], [ -1.715256, 46.884724 ], [ -1.690948, 46.89007 ], [ -1.668471, 46.87659 ], [ -1.664178, 46.874703 ], [ -1.650611, 46.878914 ], [ -1.640486, 46.87849 ], [ -1.613571, 46.87321 ], [ -1.609602, 46.87123 ], [ -1.600872, 46.872968 ], [ -1.57794, 46.86509 ], [ -1.548511, 46.86008 ], [ -1.546259, 46.873021 ], [ -1.536755, 46.875263 ], [ -1.526798, 46.873833 ], [ -1.500595, 46.8834 ], [ -1.504373, 46.89292 ], [ -1.526956, 46.90574 ], [ -1.543341, 46.92252 ], [ -1.545933, 46.925477 ], [ -1.526616, 46.92525 ], [ -1.519976, 46.937781 ], [ -1.544151, 46.95829 ], [ -1.542958, 46.96165 ], [ -1.554272, 46.97865 ], [ -1.551626, 46.98494 ], [ -1.550895, 46.991422 ], [ -1.543644, 47.003775 ], [ -1.554425, 47.014983 ], [ -1.534341, 47.023431 ], [ -1.519996, 47.02567 ], [ -1.504315, 47.03909 ], [ -1.499845, 47.040689 ], [ -1.495824, 47.041505 ], [ -1.48279, 47.03833 ], [ -1.480637, 47.035431 ], [ -1.47313, 47.03112 ], [ -1.474979, 47.02161 ], [ -1.465618, 46.99933 ], [ -1.462869, 46.996532 ], [ -1.462634, 46.99002 ], [ -1.472223, 46.98741 ], [ -1.475681, 46.98113 ], [ -1.472347, 46.97079 ], [ -1.458498, 46.95623 ], [ -1.470196, 46.93622 ], [ -1.471736, 46.933189 ], [ -1.462548, 46.92666 ], [ -1.458268, 46.925838 ], [ -1.415448, 46.94435 ], [ -1.390452, 46.94803 ], [ -1.377802, 46.953769 ], [ -1.373372, 46.95208 ], [ -1.36616, 46.95669 ], [ -1.367089, 46.96623 ], [ -1.360369, 46.971094 ], [ -1.359059, 46.98113 ], [ -1.375472, 46.98889 ], [ -1.364064, 47.003777 ], [ -1.365391, 47.007144 ], [ -1.366917, 47.017366 ], [ -1.375944, 47.02966 ], [ -1.362682, 47.03983 ], [ -1.347471, 47.039471 ], [ -1.345721, 47.04573 ], [ -1.336458, 47.044069 ], [ -1.317961, 47.034303 ], [ -1.303526, 47.03438 ], [ -1.298726, 47.03471 ], [ -1.299588, 47.04404 ], [ -1.287282, 47.058313 ], [ -1.290826, 47.06721 ], [ -1.290343, 47.07042 ], [ -1.286754, 47.0764 ], [ -1.274855, 47.0803 ], [ -1.272681, 47.08317 ], [ -1.267884, 47.084269 ], [ -1.248522, 47.06856 ], [ -1.229934, 47.06376 ], [ -1.21686, 47.05349 ], [ -1.209355, 47.04962 ], [ -1.196769, 47.039766 ], [ -1.148571, 47.029554 ], [ -1.131994, 47.02297 ], [ -1.127501, 47.021456 ], [ -1.095473, 47.014782 ], [ -1.09057, 47.01532 ], [ -1.087586, 47.01316 ], [ -1.083305, 47.01268 ], [ -1.074205, 47.00947 ], [ -1.064663, 47.01069 ], [ -1.05132, 47.005892 ], [ -1.020849, 47.004984 ], [ -1.01611, 47.003644 ], [ -1.005048, 47.01849 ], [ -1.002264, 47.02129 ], [ -0.986265, 47.012964 ], [ -0.977324, 47.014336 ], [ -0.959132, 46.99812 ], [ -0.93682, 47.004376 ], [ -0.934878, 47.00756 ], [ -0.914903, 46.99544 ], [ -0.901294, 46.99144 ], [ -0.893938, 46.97896 ], [ -0.891961, 46.975827 ], [ -0.896251, 46.97468 ], [ -0.902217, 46.970315 ], [ -0.898223, 46.96807 ], [ -0.883243, 46.96852 ], [ -0.87779, 46.959141 ], [ -0.868023, 46.959361 ], [ -0.865305, 46.95284 ], [ -0.882299, 46.94988 ], [ -0.881, 46.94647 ], [ -0.876134, 46.945243 ], [ -0.851841, 46.9442 ], [ -0.85264, 46.93825 ], [ -0.830606, 46.93114 ], [ -0.824358, 46.921706 ], [ -0.809903, 46.91971 ], [ -0.813814, 46.91398 ], [ -0.820341, 46.908976 ], [ -0.818284, 46.902572 ], [ -0.83246, 46.88474 ], [ -0.819018, 46.881121 ], [ -0.795076, 46.86104 ], [ -0.793735, 46.857854 ], [ -0.788296, 46.854301 ], [ -0.786763, 46.851918 ], [ -0.777826, 46.84097 ], [ -0.773173, 46.840358 ], [ -0.761555, 46.833852 ], [ -0.757951, 46.83132 ], [ -0.738594, 46.82889 ], [ -0.729631, 46.821551 ], [ -0.714991, 46.82157 ], [ -0.71004, 46.82157 ], [ -0.701034, 46.8116 ], [ -0.6991, 46.808855 ], [ -0.703625, 46.80746 ], [ -0.718528, 46.79888 ], [ -0.720612, 46.78928 ], [ -0.725162, 46.78292 ], [ -0.726564, 46.76876 ], [ -0.719752, 46.75573 ], [ -0.716599, 46.752971 ], [ -0.707732, 46.74968 ], [ -0.698238, 46.751617 ], [ -0.695491, 46.74537 ], [ -0.698074, 46.735938 ], [ -0.688669, 46.725848 ], [ -0.684401, 46.72765 ], [ -0.673111, 46.720822 ], [ -0.655832, 46.700335 ], [ -0.660358, 46.69867 ], [ -0.678752, 46.686685 ], [ -0.657737, 46.67669 ], [ -0.654026, 46.67448 ], [ -0.636989, 46.663329 ], [ -0.640573, 46.661124 ], [ -0.647809, 46.656784 ], [ -0.650795, 46.644141 ], [ -0.658671, 46.640402 ], [ -0.657073, 46.633954 ], [ -0.643094, 46.637815 ], [ -0.633062, 46.636331 ], [ -0.613965, 46.620125 ], [ -0.617714, 46.61846 ], [ -0.627151, 46.6056 ], [ -0.616699, 46.59887 ], [ -0.618935, 46.592971 ], [ -0.613427, 46.58761 ], [ -0.624699, 46.57745 ], [ -0.622828, 46.57428 ], [ -0.617953, 46.5615 ], [ -0.6132, 46.562352 ], [ -0.608309, 46.56249 ], [ -0.603098, 46.542805 ], [ -0.602901, 46.53962 ], [ -0.602129, 46.53328 ], [ -0.608657, 46.52813 ], [ -0.628198, 46.528166 ], [ -0.642232, 46.52476 ], [ -0.638679, 46.519278 ], [ -0.64436, 46.51089 ], [ -0.634351, 46.504714 ], [ -0.632839, 46.501418 ], [ -0.625533, 46.49676 ], [ -0.628563, 46.479938 ], [ -0.617997, 46.47311 ], [ -0.616219, 46.46283 ], [ -0.608213, 46.454208 ], [ -0.610978, 46.45144 ], [ -0.61809, 46.448956 ], [ -0.620234, 46.439216 ], [ -0.636841, 46.43231 ], [ -0.634986, 46.429111 ], [ -0.640021, 46.415862 ], [ -0.632655, 46.403305 ], [ -0.637872, 46.3975 ], [ -0.620883, 46.39046 ], [ -0.619035, 46.39361 ], [ -0.611005, 46.413052 ], [ -0.601255, 46.41263 ], [ -0.581989, 46.40223 ], [ -0.572378, 46.40071 ], [ -0.569019, 46.39457 ], [ -0.54963, 46.3927 ], [ -0.541296, 46.38894 ], [ -0.5378, 46.38646 ], [ -0.540585, 46.38381 ], [ -0.557285, 46.364046 ], [ -0.559595, 46.36094 ], [ -0.578438, 46.356019 ], [ -0.602849, 46.359586 ], [ -0.608049, 46.34665 ], [ -0.619408, 46.33971 ], [ -0.637249, 46.334578 ], [ -0.636797, 46.324659 ], [ -0.643541, 46.31945 ], [ -0.647445, 46.3177 ], [ -0.652074, 46.317473 ], [ -0.655579, 46.3158 ], [ -0.672273, 46.316219 ], [ -0.676169, 46.31806 ], [ -0.697338, 46.325189 ], [ -0.70053, 46.322759 ], [ -0.707104, 46.318002 ], [ -0.716357, 46.31689 ], [ -0.719803, 46.314577 ], [ -0.718202, 46.30519 ], [ -0.726249, 46.303206 ], [ -0.750476, 46.304259 ], [ -0.753457, 46.306946 ], [ -0.775833, 46.318467 ], [ -0.780848, 46.31836 ], [ -0.792868, 46.32433 ], [ -0.802811, 46.32529 ], [ -0.807126, 46.331371 ], [ -0.797727, 46.33845 ], [ -0.803746, 46.34246 ], [ -0.81117, 46.338043 ], [ -0.82541, 46.336366 ], [ -0.828389, 46.339133 ], [ -0.836394, 46.34136 ], [ -0.846813, 46.33422 ], [ -0.8449, 46.324612 ], [ -0.848986, 46.31833 ], [ -0.863019, 46.31914 ], [ -0.860811, 46.32547 ], [ -0.86853, 46.325489 ], [ -0.870267, 46.322455 ], [ -0.886848, 46.326704 ], [ -0.88904, 46.32386 ], [ -0.895424, 46.31685 ], [ -0.912086, 46.312749 ], [ -0.915043, 46.31553 ], [ -0.933937, 46.31264 ], [ -0.958784, 46.32337 ], [ -0.943732, 46.336965 ], [ -0.93546, 46.356762 ], [ -0.93423, 46.360113 ], [ -0.932977, 46.362969 ], [ -0.927338, 46.370935 ], [ -0.951491, 46.361103 ], [ -0.964513, 46.3654 ], [ -0.966979, 46.362233 ], [ -0.978339, 46.3512 ], [ -1.017639, 46.35301 ], [ -1.05072, 46.34326 ], [ -1.053688, 46.349578 ], [ -1.055237, 46.346413 ], [ -1.073337, 46.326877 ], [ -1.080064, 46.322326 ], [ -1.078144, 46.319257 ], [ -1.095328, 46.31378 ], [ -1.1141, 46.316999 ], [ -1.117434, 46.32324 ], [ -1.121791, 46.3232 ], [ -1.123946, 46.31469 ], [ -1.129404, 46.310277 ] ] ], [ [ [ -2.301813, 46.989743 ], [ -2.301866, 46.99672 ], [ -2.29304, 47.00947 ], [ -2.301975, 47.02494 ], [ -2.276196, 47.027689 ], [ -2.260655, 47.02774 ], [ -2.255562, 47.027071 ], [ -2.23947, 47.01832 ], [ -2.224866, 47.01479 ], [ -2.220012, 47.008663 ], [ -2.219389, 46.99786 ], [ -2.223402, 46.99218 ], [ -2.242135, 46.99565 ], [ -2.246804, 46.994029 ], [ -2.234451, 46.99339 ], [ -2.234263, 46.97813 ], [ -2.232543, 46.975079 ], [ -2.222546, 46.97462 ], [ -2.19175, 46.962822 ], [ -2.187332, 46.96115 ], [ -2.160233, 46.95119 ], [ -2.149786, 46.939054 ], [ -2.150312, 46.90037 ], [ -2.152163, 46.897 ], [ -2.162589, 46.90473 ], [ -2.179251, 46.93434 ], [ -2.194495, 46.948613 ], [ -2.198075, 46.951177 ], [ -2.201718, 46.9537 ], [ -2.221958, 46.964732 ], [ -2.242603, 46.964913 ], [ -2.255007, 46.95869 ], [ -2.267264, 46.963959 ], [ -2.284562, 46.98178 ], [ -2.297644, 46.987579 ], [ -2.301813, 46.989743 ] ] ], [ [ [ -2.304793, 46.709424 ], [ -2.297019, 46.705046 ], [ -2.285959, 46.695341 ], [ -2.283506, 46.69224 ], [ -2.282903, 46.690491 ], [ -2.286363, 46.689664 ], [ -2.290098, 46.692054 ], [ -2.312454, 46.695216 ], [ -2.316916, 46.691093 ], [ -2.330215, 46.686026 ], [ -2.332654, 46.68549 ], [ -2.33331, 46.68723 ], [ -2.343371, 46.6927 ], [ -2.350769, 46.69165 ], [ -2.364988, 46.69538 ], [ -2.371376, 46.700809 ], [ -2.380857, 46.699714 ], [ -2.382384, 46.704796 ], [ -2.392909, 46.70998 ], [ -2.394348, 46.71152 ], [ -2.397488, 46.71617 ], [ -2.3982, 46.71805 ], [ -2.398815, 46.7233 ], [ -2.397846, 46.72491 ], [ -2.395634, 46.725887 ], [ -2.388471, 46.7279 ], [ -2.383211, 46.73163 ], [ -2.3808, 46.732469 ], [ -2.373113, 46.732775 ], [ -2.348115, 46.728321 ], [ -2.339132, 46.720004 ], [ -2.318904, 46.719266 ], [ -2.31084, 46.71236 ], [ -2.306086, 46.71097 ], [ -2.304793, 46.709424 ] ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "87", "CODE_DEPT": "86", "NOM_DEPT": "VIENNE", "CODE_CHF": "194", "NOM_CHF": "POITIERS", "X_CHF_LIEU": "4959", "Y_CHF_LIEU": "66123", "X_CENTROID": "5055", "Y_CENTROID": "66102", "CODE_REG": "54", "NOM_REGION": "POITOU-CHARENTES" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.823433, 46.12859 ], [ 0.820243, 46.131277 ], [ 0.80827, 46.136812 ], [ 0.78519, 46.13106 ], [ 0.747883, 46.13872 ], [ 0.729218, 46.135069 ], [ 0.725123, 46.136321 ], [ 0.712339, 46.13896 ], [ 0.711895, 46.13842 ], [ 0.710923, 46.135026 ], [ 0.707183, 46.129 ], [ 0.685596, 46.12073 ], [ 0.676447, 46.11253 ], [ 0.687453, 46.097255 ], [ 0.682508, 46.097208 ], [ 0.648819, 46.094659 ], [ 0.640102, 46.09169 ], [ 0.620563, 46.093178 ], [ 0.613616, 46.08856 ], [ 0.608968, 46.08974 ], [ 0.607706, 46.08661 ], [ 0.607353, 46.07778 ], [ 0.59568, 46.07266 ], [ 0.594834, 46.075725 ], [ 0.590854, 46.08116 ], [ 0.574107, 46.07813 ], [ 0.563209, 46.08915 ], [ 0.553329, 46.09004 ], [ 0.539973, 46.085558 ], [ 0.538878, 46.088904 ], [ 0.536932, 46.095619 ], [ 0.521014, 46.11261 ], [ 0.504334, 46.11933 ], [ 0.508685, 46.13194 ], [ 0.504155, 46.13298 ], [ 0.495224, 46.135284 ], [ 0.486249, 46.12808 ], [ 0.472303, 46.130136 ], [ 0.47028, 46.12707 ], [ 0.46296, 46.11136 ], [ 0.455705, 46.1069 ], [ 0.451133, 46.108004 ], [ 0.446452, 46.103655 ], [ 0.443259, 46.10157 ], [ 0.448793, 46.09619 ], [ 0.445706, 46.09352 ], [ 0.447431, 46.08704 ], [ 0.466899, 46.087455 ], [ 0.475703, 46.08467 ], [ 0.474218, 46.07445 ], [ 0.478007, 46.06833 ], [ 0.480651, 46.06543 ], [ 0.471089, 46.06677 ], [ 0.466101, 46.06097 ], [ 0.446351, 46.051235 ], [ 0.413287, 46.04909 ], [ 0.41227, 46.05227 ], [ 0.402776, 46.06313 ], [ 0.398446, 46.06466 ], [ 0.389851, 46.06712 ], [ 0.381784, 46.063385 ], [ 0.35306, 46.065061 ], [ 0.349208, 46.06388 ], [ 0.345021, 46.06375 ], [ 0.340403, 46.06448 ], [ 0.322525, 46.06241 ], [ 0.314395, 46.06509 ], [ 0.31087, 46.062545 ], [ 0.291331, 46.05955 ], [ 0.276888, 46.061085 ], [ 0.273541, 46.06724 ], [ 0.256425, 46.0787 ], [ 0.242206, 46.080836 ], [ 0.234946, 46.085381 ], [ 0.232986, 46.08753 ], [ 0.22668, 46.09008 ], [ 0.223643, 46.09252 ], [ 0.197168, 46.09537 ], [ 0.193879, 46.09689 ], [ 0.190716, 46.104793 ], [ 0.188854, 46.11131 ], [ 0.199993, 46.117439 ], [ 0.204103, 46.12274 ], [ 0.20303, 46.12573 ], [ 0.198477, 46.126835 ], [ 0.200552, 46.12986 ], [ 0.21631, 46.14213 ], [ 0.218932, 46.15537 ], [ 0.213326, 46.159044 ], [ 0.198304, 46.159936 ], [ 0.186802, 46.14931 ], [ 0.17692, 46.15012 ], [ 0.171881, 46.15583 ], [ 0.167667, 46.15608 ], [ 0.155111, 46.157168 ], [ 0.153841, 46.160416 ], [ 0.148112, 46.17257 ], [ 0.139626, 46.1796 ], [ 0.107702, 46.18599 ], [ 0.109509, 46.18913 ], [ 0.113432, 46.21221 ], [ 0.11804, 46.213182 ], [ 0.131318, 46.226836 ], [ 0.13588, 46.22573 ], [ 0.142697, 46.23045 ], [ 0.139473, 46.240215 ], [ 0.137458, 46.244985 ], [ 0.130082, 46.264055 ], [ 0.128837, 46.26723 ], [ 0.133602, 46.266793 ], [ 0.162055, 46.26755 ], [ 0.17232, 46.278601 ], [ 0.170331, 46.284156 ], [ 0.152946, 46.304051 ], [ 0.165, 46.305514 ], [ 0.169492, 46.31068 ], [ 0.16595, 46.31705 ], [ 0.177369, 46.32811 ], [ 0.175249, 46.331376 ], [ 0.156198, 46.34327 ], [ 0.137598, 46.349395 ], [ 0.123317, 46.346792 ], [ 0.117942, 46.34089 ], [ 0.101365, 46.33309 ], [ 0.095524, 46.327444 ], [ 0.096931, 46.32056 ], [ 0.078218, 46.304943 ], [ 0.047162, 46.3224 ], [ 0.029354, 46.32867 ], [ 0.015099, 46.326257 ], [ 0.017389, 46.329345 ], [ 0.02302, 46.342513 ], [ 0.031407, 46.34621 ], [ 0.013848, 46.35701 ], [ 0.016604, 46.35947 ], [ 0.03422, 46.373497 ], [ 0.029944, 46.37503 ], [ 0.02244, 46.3792 ], [ 0.014669, 46.39083 ], [ 0.000448, 46.392249 ], [ -0.007997, 46.38906 ], [ -0.007707, 46.39253 ], [ -0.012697, 46.40202 ], [ -0.020218, 46.40588 ], [ -0.012776, 46.425881 ], [ -0.010582, 46.44989 ], [ -0.019244, 46.45328 ], [ -0.017852, 46.456403 ], [ -0.010466, 46.468331 ], [ -0.012533, 46.471277 ], [ -0.013593, 46.47442 ], [ -0.040101, 46.47006 ], [ -0.04326, 46.472436 ], [ -0.042535, 46.48235 ], [ -0.032175, 46.488644 ], [ -0.039234, 46.493107 ], [ -0.038793, 46.49971 ], [ -0.03118, 46.5083 ], [ -0.031351, 46.52498 ], [ -0.006269, 46.52398 ], [ -0.004934, 46.52722 ], [ 0.007113, 46.54534 ], [ -0.01011, 46.555441 ], [ -0.003315, 46.571731 ], [ 0.020517, 46.584644 ], [ 0.030598, 46.58503 ], [ 0.038232, 46.58956 ], [ 0.042719, 46.59117 ], [ 0.023996, 46.59511 ], [ 0.025803, 46.605092 ], [ 0.021688, 46.61124 ], [ 0.022855, 46.61453 ], [ 0.003187, 46.611459 ], [ -0.010066, 46.61655 ], [ 0.000427, 46.6397 ], [ -0.0049, 46.644704 ], [ -0.017205, 46.639407 ], [ -0.028191, 46.628529 ], [ -0.060919, 46.62276 ], [ -0.065814, 46.622825 ], [ -0.064752, 46.63276 ], [ -0.034129, 46.654314 ], [ -0.037853, 46.663803 ], [ -0.032044, 46.669255 ], [ -0.031657, 46.669347 ], [ -0.028872, 46.67222 ], [ -0.009606, 46.68267 ], [ -0.018356, 46.694297 ], [ 0.000092, 46.699331 ], [ 0.002659, 46.705751 ], [ -0.000478, 46.71582 ], [ 0.003784, 46.717647 ], [ 0.0073, 46.71992 ], [ 0.022859, 46.72768 ], [ 0.031902, 46.72717 ], [ 0.03675, 46.728622 ], [ 0.038065, 46.731179 ], [ 0.033065, 46.738492 ], [ 0.028176, 46.738979 ], [ -0.001918, 46.761281 ], [ -0.012665, 46.754349 ], [ -0.015765, 46.75706 ], [ -0.021874, 46.77635 ], [ -0.017718, 46.778014 ], [ -0.022661, 46.78952 ], [ -0.009554, 46.798934 ], [ -0.00706, 46.80176 ], [ 0.00403, 46.80766 ], [ 0.006922, 46.81351 ], [ -0.004126, 46.819376 ], [ -0.006895, 46.82197 ], [ -0.017515, 46.814665 ], [ -0.045274, 46.82074 ], [ -0.049092, 46.82304 ], [ -0.045392, 46.824 ], [ -0.04569, 46.8321 ], [ -0.035501, 46.832564 ], [ -0.025776, 46.840614 ], [ -0.007806, 46.84665 ], [ 0.002082, 46.845 ], [ 0.014988, 46.83457 ], [ 0.016607, 46.83496 ], [ 0.019124, 46.837669 ], [ 0.033758, 46.854076 ], [ 0.023744, 46.85394 ], [ 0.010103, 46.8586 ], [ 0.001665, 46.86249 ], [ -0.008089, 46.870425 ], [ -0.022418, 46.874095 ], [ -0.032214, 46.87234 ], [ -0.035644, 46.87494 ], [ -0.031594, 46.87675 ], [ -0.02304, 46.888062 ], [ -0.023214, 46.894689 ], [ -0.009123, 46.90792 ], [ -0.010303, 46.91142 ], [ -0.01387, 46.92187 ], [ -0.015046, 46.925268 ], [ -0.022143, 46.93811 ], [ -0.030741, 46.941777 ], [ -0.031346, 46.945284 ], [ -0.033932, 46.951992 ], [ -0.04483, 46.95952 ], [ -0.046251, 46.966516 ], [ -0.043471, 46.96926 ], [ -0.033124, 46.980251 ], [ -0.033901, 46.983537 ], [ -0.038714, 46.98928 ], [ -0.055331, 46.99464 ], [ -0.06031, 46.99443 ], [ -0.086481, 46.9853 ], [ -0.084947, 46.98863 ], [ -0.092379, 47.005294 ], [ -0.093051, 47.0085 ], [ -0.082627, 47.01004 ], [ -0.081256, 47.01302 ], [ -0.088267, 47.025046 ], [ -0.088966, 47.02759 ], [ -0.09026, 47.0327 ], [ -0.091414, 47.03789 ], [ -0.092179, 47.04135 ], [ -0.102121, 47.064806 ], [ -0.100648, 47.08459 ], [ -0.099978, 47.088083 ], [ -0.098055, 47.09135 ], [ -0.088887, 47.09827 ], [ -0.085541, 47.100434 ], [ -0.068733, 47.09653 ], [ -0.067762, 47.09338 ], [ -0.044239, 47.093151 ], [ -0.039917, 47.08761 ], [ -0.035315, 47.08672 ], [ -0.02707, 47.102674 ], [ -0.028063, 47.106027 ], [ -0.037498, 47.10814 ], [ -0.039508, 47.11475 ], [ -0.036549, 47.11752 ], [ -0.03444, 47.12063 ], [ -0.033736, 47.12756 ], [ -0.011722, 47.15624 ], [ 0.01534, 47.173168 ], [ 0.019015, 47.175758 ], [ 0.033624, 47.16289 ], [ 0.036642, 47.16036 ], [ 0.051052, 47.16713 ], [ 0.05374, 47.16461 ], [ 0.064921, 47.146084 ], [ 0.068953, 47.14406 ], [ 0.07839, 47.14633 ], [ 0.081435, 47.13328 ], [ 0.077943, 47.127071 ], [ 0.082432, 47.117797 ], [ 0.090198, 47.12186 ], [ 0.10472, 47.120798 ], [ 0.110323, 47.12929 ], [ 0.123966, 47.126936 ], [ 0.127952, 47.120999 ], [ 0.137322, 47.122259 ], [ 0.140683, 47.124594 ], [ 0.134144, 47.11527 ], [ 0.134946, 47.10837 ], [ 0.158612, 47.10274 ], [ 0.161917, 47.10011 ], [ 0.167829, 47.108362 ], [ 0.179245, 47.11336 ], [ 0.183487, 47.11451 ], [ 0.185354, 47.10404 ], [ 0.198043, 47.09294 ], [ 0.194951, 47.08646 ], [ 0.177027, 47.07383 ], [ 0.174011, 47.06722 ], [ 0.176727, 47.064201 ], [ 0.175696, 47.06073 ], [ 0.180337, 47.05946 ], [ 0.194404, 47.063001 ], [ 0.208199, 47.053237 ], [ 0.228056, 47.06133 ], [ 0.232832, 47.06639 ], [ 0.235155, 47.06916 ], [ 0.243872, 47.07095 ], [ 0.26355, 47.068507 ], [ 0.264221, 47.04643 ], [ 0.267677, 47.04405 ], [ 0.294508, 47.051949 ], [ 0.298426, 47.053977 ], [ 0.307895, 47.047271 ], [ 0.309074, 47.03131 ], [ 0.309935, 47.028031 ], [ 0.300585, 47.021102 ], [ 0.306204, 47.00882 ], [ 0.308175, 46.99993 ], [ 0.310728, 46.997312 ], [ 0.296088, 46.990169 ], [ 0.291436, 46.99027 ], [ 0.306589, 46.97893 ], [ 0.298206, 46.97126 ], [ 0.306402, 46.96393 ], [ 0.303022, 46.958359 ], [ 0.302029, 46.95532 ], [ 0.310569, 46.93971 ], [ 0.321021, 46.932626 ], [ 0.325352, 46.930943 ], [ 0.343125, 46.936706 ], [ 0.348074, 46.93637 ], [ 0.36463, 46.948568 ], [ 0.38282, 46.94375 ], [ 0.38782, 46.94371 ], [ 0.401134, 46.93819 ], [ 0.405362, 46.936133 ], [ 0.420738, 46.93639 ], [ 0.434521, 46.931669 ], [ 0.43871, 46.92958 ], [ 0.443882, 46.93811 ], [ 0.444803, 46.941158 ], [ 0.486465, 46.95402 ], [ 0.491285, 46.955322 ], [ 0.502577, 46.95779 ], [ 0.50519, 46.95991 ], [ 0.512902, 46.95586 ], [ 0.549556, 46.95959 ], [ 0.554199, 46.95847 ], [ 0.563306, 46.955777 ], [ 0.598205, 46.95643 ], [ 0.601701, 46.958888 ], [ 0.598804, 46.974924 ], [ 0.576876, 46.98087 ], [ 0.573683, 46.98339 ], [ 0.573146, 46.989475 ], [ 0.574382, 46.99244 ], [ 0.567922, 46.999661 ], [ 0.56695, 47.00254 ], [ 0.567742, 47.006287 ], [ 0.585909, 47.00611 ], [ 0.590556, 47.00673 ], [ 0.61849, 47.00752 ], [ 0.623652, 47.00242 ], [ 0.621888, 46.99942 ], [ 0.623984, 46.993686 ], [ 0.63356, 46.986659 ], [ 0.637794, 46.98525 ], [ 0.651538, 46.986999 ], [ 0.660468, 46.978984 ], [ 0.690172, 46.97498 ], [ 0.695275, 46.969191 ], [ 0.695176, 46.96224 ], [ 0.695983, 46.959369 ], [ 0.706179, 46.936108 ], [ 0.703171, 46.925825 ], [ 0.708918, 46.917725 ], [ 0.704874, 46.91233 ], [ 0.703738, 46.909362 ], [ 0.70467, 46.90289 ], [ 0.727284, 46.88608 ], [ 0.729468, 46.88318 ], [ 0.739267, 46.87285 ], [ 0.743522, 46.871587 ], [ 0.753423, 46.860585 ], [ 0.765645, 46.86512 ], [ 0.771792, 46.86126 ], [ 0.766356, 46.85585 ], [ 0.771389, 46.85095 ], [ 0.795013, 46.85052 ], [ 0.796639, 46.84735 ], [ 0.786885, 46.84123 ], [ 0.794667, 46.832892 ], [ 0.807997, 46.829139 ], [ 0.809041, 46.819215 ], [ 0.809857, 46.8159 ], [ 0.810162, 46.814192 ], [ 0.815597, 46.805 ], [ 0.813354, 46.79168 ], [ 0.826099, 46.78682 ], [ 0.829396, 46.77687 ], [ 0.84484, 46.763019 ], [ 0.858729, 46.759154 ], [ 0.859743, 46.75572 ], [ 0.865602, 46.75104 ], [ 0.867469, 46.74822 ], [ 0.879803, 46.73875 ], [ 0.898325, 46.7358 ], [ 0.90283, 46.730405 ], [ 0.911172, 46.72707 ], [ 0.910404, 46.71741 ], [ 0.921587, 46.70272 ], [ 0.924812, 46.70022 ], [ 0.927133, 46.6936 ], [ 0.918155, 46.690485 ], [ 0.902262, 46.677666 ], [ 0.907243, 46.678136 ], [ 0.91184, 46.67259 ], [ 0.90734, 46.666437 ], [ 0.915638, 46.650672 ], [ 0.907628, 46.64672 ], [ 0.895518, 46.631821 ], [ 0.893993, 46.628658 ], [ 0.904896, 46.618175 ], [ 0.908477, 46.605279 ], [ 0.916278, 46.597125 ], [ 0.933284, 46.594569 ], [ 0.937758, 46.59442 ], [ 0.941367, 46.580879 ], [ 0.955598, 46.57761 ], [ 0.962437, 46.57254 ], [ 0.982015, 46.57327 ], [ 0.990589, 46.56604 ], [ 1.009906, 46.56742 ], [ 1.014764, 46.567764 ], [ 1.024705, 46.5497 ], [ 1.019938, 46.540418 ], [ 1.020409, 46.53715 ], [ 1.065509, 46.539252 ], [ 1.080132, 46.53618 ], [ 1.090094, 46.53758 ], [ 1.104139, 46.53343 ], [ 1.119414, 46.524226 ], [ 1.12372, 46.52232 ], [ 1.146903, 46.50518 ], [ 1.149143, 46.502212 ], [ 1.145329, 46.50007 ], [ 1.136833, 46.49678 ], [ 1.136125, 46.493461 ], [ 1.152956, 46.472838 ], [ 1.135514, 46.470889 ], [ 1.150917, 46.450297 ], [ 1.16378, 46.44677 ], [ 1.168524, 46.44635 ], [ 1.185483, 46.439511 ], [ 1.185835, 46.429303 ], [ 1.195477, 46.42962 ], [ 1.203363, 46.433796 ], [ 1.213066, 46.43308 ], [ 1.211268, 46.42992 ], [ 1.193411, 46.40976 ], [ 1.1954, 46.40002 ], [ 1.17728, 46.38395 ], [ 1.173138, 46.38522 ], [ 1.157006, 46.38923 ], [ 1.155318, 46.38604 ], [ 1.148515, 46.37707 ], [ 1.149083, 46.370275 ], [ 1.128579, 46.362221 ], [ 1.129862, 46.358937 ], [ 1.127761, 46.34886 ], [ 1.109444, 46.35383 ], [ 1.101408, 46.362367 ], [ 1.077291, 46.35855 ], [ 1.072731, 46.35947 ], [ 1.050157, 46.362781 ], [ 1.050965, 46.35948 ], [ 1.027163, 46.34344 ], [ 1.026141, 46.340038 ], [ 1.028543, 46.3333 ], [ 1.021178, 46.3133 ], [ 1.009903, 46.30666 ], [ 1.009553, 46.29661 ], [ 1.003748, 46.29117 ], [ 1.005887, 46.28097 ], [ 1.003381, 46.28023 ], [ 0.999812, 46.28261 ], [ 0.990064, 46.28378 ], [ 0.986247, 46.281592 ], [ 0.97255, 46.28553 ], [ 0.952797, 46.285635 ], [ 0.935318, 46.29125 ], [ 0.934185, 46.28133 ], [ 0.929197, 46.280956 ], [ 0.901248, 46.28751 ], [ 0.8897, 46.268548 ], [ 0.861633, 46.26182 ], [ 0.863365, 46.258715 ], [ 0.857724, 46.249538 ], [ 0.848308, 46.24826 ], [ 0.843549, 46.238884 ], [ 0.851894, 46.23596 ], [ 0.851551, 46.23245 ], [ 0.843527, 46.22921 ], [ 0.808399, 46.228006 ], [ 0.799361, 46.2155 ], [ 0.794748, 46.214049 ], [ 0.796455, 46.21129 ], [ 0.801413, 46.207386 ], [ 0.800223, 46.20148 ], [ 0.803917, 46.199291 ], [ 0.813334, 46.197689 ], [ 0.821161, 46.185507 ], [ 0.833299, 46.18064 ], [ 0.828706, 46.172166 ], [ 0.831415, 46.170218 ], [ 0.838205, 46.16573 ], [ 0.832417, 46.156346 ], [ 0.835748, 46.14618 ], [ 0.845853, 46.138369 ], [ 0.840116, 46.13367 ], [ 0.837012, 46.130886 ], [ 0.823433, 46.12859 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "88", "CODE_DEPT": "87", "NOM_DEPT": "HAUTE-VIENNE", "CODE_CHF": "085", "NOM_CHF": "LIMOGES", "X_CHF_LIEU": "5650", "Y_CHF_LIEU": "65275", "X_CENTROID": "5631", "Y_CENTROID": "65339", "CODE_REG": "74", "NOM_REGION": "LIMOUSIN" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.253152, 45.44422 ], [ 1.250141, 45.44149 ], [ 1.242025, 45.437605 ], [ 1.237444, 45.438848 ], [ 1.233962, 45.45501 ], [ 1.212123, 45.46237 ], [ 1.185123, 45.4551 ], [ 1.177031, 45.45872 ], [ 1.175344, 45.468794 ], [ 1.162444, 45.47835 ], [ 1.158185, 45.476674 ], [ 1.149887, 45.473268 ], [ 1.131013, 45.472253 ], [ 1.119623, 45.47779 ], [ 1.118436, 45.487904 ], [ 1.12289, 45.48947 ], [ 1.134423, 45.50488 ], [ 1.147483, 45.515418 ], [ 1.164273, 45.522954 ], [ 1.165365, 45.526367 ], [ 1.132364, 45.541325 ], [ 1.128288, 45.54322 ], [ 1.119312, 45.545962 ], [ 1.109717, 45.544666 ], [ 1.104331, 45.53909 ], [ 1.086024, 45.53474 ], [ 1.084638, 45.531442 ], [ 1.081118, 45.533561 ], [ 1.074201, 45.545612 ], [ 1.061699, 45.554891 ], [ 1.061386, 45.5543 ], [ 1.056478, 45.5546 ], [ 1.047749, 45.557829 ], [ 1.037977, 45.569468 ], [ 1.034704, 45.579661 ], [ 1.039334, 45.58584 ], [ 1.032964, 45.59906 ], [ 1.02011, 45.60974 ], [ 0.995823, 45.612708 ], [ 0.989587, 45.607355 ], [ 0.97569, 45.604493 ], [ 0.969549, 45.60994 ], [ 0.959802, 45.608692 ], [ 0.946322, 45.61296 ], [ 0.918839, 45.605185 ], [ 0.904489, 45.60593 ], [ 0.898605, 45.600323 ], [ 0.89374, 45.60103 ], [ 0.890345, 45.60325 ], [ 0.881222, 45.61059 ], [ 0.876966, 45.61984 ], [ 0.869353, 45.62353 ], [ 0.866884, 45.62097 ], [ 0.8597, 45.613191 ], [ 0.858099, 45.6098 ], [ 0.849461, 45.593259 ], [ 0.848144, 45.589847 ], [ 0.839996, 45.581304 ], [ 0.8115, 45.57587 ], [ 0.810565, 45.57909 ], [ 0.805857, 45.594966 ], [ 0.801392, 45.59593 ], [ 0.777188, 45.59217 ], [ 0.767445, 45.60439 ], [ 0.750613, 45.616873 ], [ 0.753737, 45.619602 ], [ 0.763951, 45.6315 ], [ 0.775643, 45.667746 ], [ 0.77397, 45.66781 ], [ 0.760468, 45.670949 ], [ 0.744137, 45.68826 ], [ 0.722051, 45.69461 ], [ 0.713127, 45.694042 ], [ 0.702599, 45.687846 ], [ 0.694223, 45.690494 ], [ 0.681304, 45.687445 ], [ 0.676533, 45.68841 ], [ 0.662086, 45.68748 ], [ 0.653606, 45.69103 ], [ 0.650294, 45.697586 ], [ 0.637778, 45.70198 ], [ 0.629742, 45.71457 ], [ 0.633501, 45.7205 ], [ 0.64553, 45.71892 ], [ 0.650416, 45.72802 ], [ 0.647616, 45.730638 ], [ 0.652867, 45.73938 ], [ 0.660713, 45.73941 ], [ 0.665281, 45.739401 ], [ 0.666527, 45.745238 ], [ 0.666235, 45.748196 ], [ 0.691144, 45.76091 ], [ 0.695379, 45.76212 ], [ 0.707649, 45.761712 ], [ 0.711682, 45.76286 ], [ 0.714765, 45.76922 ], [ 0.70749, 45.77825 ], [ 0.710515, 45.8022 ], [ 0.718721, 45.80558 ], [ 0.7426, 45.804378 ], [ 0.752389, 45.797106 ], [ 0.762003, 45.79694 ], [ 0.768055, 45.791552 ], [ 0.770227, 45.788478 ], [ 0.783779, 45.793475 ], [ 0.776974, 45.80224 ], [ 0.783826, 45.810583 ], [ 0.780808, 45.81709 ], [ 0.782118, 45.820404 ], [ 0.795978, 45.82984 ], [ 0.818349, 45.864053 ], [ 0.82098, 45.86696 ], [ 0.818405, 45.869162 ], [ 0.810678, 45.868238 ], [ 0.8075, 45.870023 ], [ 0.823749, 45.88079 ], [ 0.827373, 45.882748 ], [ 0.81354, 45.896886 ], [ 0.815983, 45.917292 ], [ 0.809017, 45.921742 ], [ 0.809969, 45.92832 ], [ 0.812111, 45.93127 ], [ 0.821962, 45.93157 ], [ 0.838047, 45.92336 ], [ 0.847972, 45.92405 ], [ 0.861148, 45.919803 ], [ 0.884652, 45.923831 ], [ 0.906305, 45.93793 ], [ 0.916094, 45.93717 ], [ 0.920972, 45.937917 ], [ 0.92049, 45.94352 ], [ 0.922516, 45.94594 ], [ 0.92468, 45.951209 ], [ 0.940886, 45.95921 ], [ 0.943377, 45.97307 ], [ 0.934634, 45.976415 ], [ 0.934675, 45.99221 ], [ 0.921525, 45.99615 ], [ 0.919886, 46.00223 ], [ 0.923782, 46.008258 ], [ 0.909946, 46.017543 ], [ 0.905615, 46.0182 ], [ 0.894052, 46.022699 ], [ 0.894327, 46.025632 ], [ 0.886192, 46.03173 ], [ 0.866517, 46.01648 ], [ 0.858456, 46.019618 ], [ 0.856265, 46.02972 ], [ 0.849302, 46.03449 ], [ 0.845226, 46.0365 ], [ 0.821993, 46.04636 ], [ 0.817909, 46.04789 ], [ 0.816632, 46.057565 ], [ 0.826105, 46.065061 ], [ 0.819171, 46.0774 ], [ 0.827127, 46.086025 ], [ 0.827141, 46.088278 ], [ 0.832253, 46.09391 ], [ 0.832307, 46.10434 ], [ 0.811893, 46.12297 ], [ 0.818813, 46.12717 ], [ 0.823433, 46.12859 ], [ 0.837012, 46.130886 ], [ 0.840116, 46.13367 ], [ 0.845853, 46.138369 ], [ 0.835748, 46.14618 ], [ 0.832417, 46.156346 ], [ 0.838205, 46.16573 ], [ 0.831415, 46.170218 ], [ 0.828706, 46.172166 ], [ 0.833299, 46.18064 ], [ 0.821161, 46.185507 ], [ 0.813334, 46.197689 ], [ 0.803917, 46.199291 ], [ 0.800223, 46.20148 ], [ 0.801413, 46.207386 ], [ 0.796455, 46.21129 ], [ 0.794748, 46.214049 ], [ 0.799361, 46.2155 ], [ 0.808399, 46.228006 ], [ 0.843527, 46.22921 ], [ 0.851551, 46.23245 ], [ 0.851894, 46.23596 ], [ 0.843549, 46.238884 ], [ 0.848308, 46.24826 ], [ 0.857724, 46.249538 ], [ 0.863365, 46.258715 ], [ 0.861633, 46.26182 ], [ 0.8897, 46.268548 ], [ 0.901248, 46.28751 ], [ 0.929197, 46.280956 ], [ 0.934185, 46.28133 ], [ 0.935318, 46.29125 ], [ 0.952797, 46.285635 ], [ 0.97255, 46.28553 ], [ 0.986247, 46.281592 ], [ 0.990064, 46.28378 ], [ 0.999812, 46.28261 ], [ 1.003381, 46.28023 ], [ 1.005887, 46.28097 ], [ 1.003748, 46.29117 ], [ 1.009553, 46.29661 ], [ 1.009903, 46.30666 ], [ 1.021178, 46.3133 ], [ 1.028543, 46.3333 ], [ 1.026141, 46.340038 ], [ 1.027163, 46.34344 ], [ 1.050965, 46.35948 ], [ 1.050157, 46.362781 ], [ 1.072731, 46.35947 ], [ 1.077291, 46.35855 ], [ 1.101408, 46.362367 ], [ 1.109444, 46.35383 ], [ 1.127761, 46.34886 ], [ 1.129862, 46.358937 ], [ 1.128579, 46.362221 ], [ 1.149083, 46.370275 ], [ 1.148515, 46.37707 ], [ 1.155318, 46.38604 ], [ 1.157006, 46.38923 ], [ 1.173138, 46.38522 ], [ 1.17728, 46.38395 ], [ 1.180777, 46.378594 ], [ 1.18868, 46.37694 ], [ 1.192893, 46.37741 ], [ 1.193499, 46.380733 ], [ 1.208385, 46.38915 ], [ 1.212952, 46.388002 ], [ 1.213319, 46.374407 ], [ 1.21797, 46.368256 ], [ 1.238165, 46.3662 ], [ 1.250656, 46.37675 ], [ 1.26021, 46.37872 ], [ 1.274572, 46.37642 ], [ 1.279554, 46.376488 ], [ 1.28302, 46.37221 ], [ 1.310512, 46.37437 ], [ 1.311035, 46.381038 ], [ 1.321836, 46.386566 ], [ 1.312648, 46.39371 ], [ 1.340492, 46.3997 ], [ 1.344678, 46.401598 ], [ 1.359389, 46.39772 ], [ 1.36255, 46.39563 ], [ 1.373905, 46.38586 ], [ 1.376609, 46.38334 ], [ 1.39195, 46.37107 ], [ 1.396571, 46.371897 ], [ 1.395144, 46.368644 ], [ 1.407003, 46.36264 ], [ 1.411548, 46.3495 ], [ 1.415191, 46.34722 ], [ 1.411944, 46.344805 ], [ 1.409687, 46.341909 ], [ 1.430481, 46.333767 ], [ 1.444558, 46.333933 ], [ 1.445731, 46.330635 ], [ 1.43869, 46.323153 ], [ 1.442205, 46.303783 ], [ 1.429761, 46.29951 ], [ 1.425425, 46.29804 ], [ 1.417187, 46.279616 ], [ 1.430576, 46.27746 ], [ 1.436758, 46.27248 ], [ 1.424521, 46.26715 ], [ 1.415204, 46.269132 ], [ 1.406468, 46.26096 ], [ 1.407643, 46.25446 ], [ 1.419417, 46.248709 ], [ 1.418063, 46.24211 ], [ 1.413869, 46.24034 ], [ 1.40437, 46.2416 ], [ 1.395412, 46.23898 ], [ 1.379201, 46.2192 ], [ 1.374521, 46.21817 ], [ 1.387328, 46.19966 ], [ 1.395054, 46.195814 ], [ 1.401736, 46.183263 ], [ 1.406756, 46.183208 ], [ 1.418726, 46.17777 ], [ 1.428212, 46.179273 ], [ 1.43538, 46.17617 ], [ 1.448556, 46.17925 ], [ 1.452574, 46.18115 ], [ 1.460906, 46.177631 ], [ 1.458851, 46.17141 ], [ 1.465051, 46.16248 ], [ 1.451356, 46.152661 ], [ 1.470206, 46.14961 ], [ 1.481769, 46.138715 ], [ 1.495629, 46.140224 ], [ 1.494325, 46.13345 ], [ 1.502153, 46.12954 ], [ 1.504852, 46.123197 ], [ 1.493488, 46.11767 ], [ 1.488492, 46.10816 ], [ 1.499966, 46.10244 ], [ 1.500707, 46.09568 ], [ 1.507847, 46.089246 ], [ 1.512506, 46.09356 ], [ 1.525675, 46.089578 ], [ 1.527149, 46.079492 ], [ 1.536513, 46.078758 ], [ 1.542086, 46.074074 ], [ 1.532444, 46.058603 ], [ 1.536707, 46.05302 ], [ 1.535513, 46.050717 ], [ 1.548244, 46.03347 ], [ 1.538179, 46.026857 ], [ 1.532917, 46.01036 ], [ 1.536575, 46.000609 ], [ 1.537903, 45.99734 ], [ 1.564237, 45.997433 ], [ 1.568388, 45.996837 ], [ 1.570881, 45.9884 ], [ 1.57369, 45.986204 ], [ 1.577299, 45.97804 ], [ 1.574813, 45.975771 ], [ 1.566241, 45.963684 ], [ 1.556429, 45.96405 ], [ 1.536417, 45.9541 ], [ 1.518656, 45.9505 ], [ 1.516824, 45.947565 ], [ 1.517933, 45.94136 ], [ 1.508951, 45.94031 ], [ 1.513591, 45.931 ], [ 1.532402, 45.929845 ], [ 1.544139, 45.91939 ], [ 1.547265, 45.91683 ], [ 1.555829, 45.91946 ], [ 1.573076, 45.91571 ], [ 1.577143, 45.91762 ], [ 1.581065, 45.930664 ], [ 1.600532, 45.93155 ], [ 1.604934, 45.93306 ], [ 1.617812, 45.93011 ], [ 1.625778, 45.93259 ], [ 1.62801, 45.9264 ], [ 1.637132, 45.92598 ], [ 1.625928, 45.9157 ], [ 1.64157, 45.896219 ], [ 1.640017, 45.894327 ], [ 1.641483, 45.8924 ], [ 1.632501, 45.89001 ], [ 1.622337, 45.896266 ], [ 1.618304, 45.886832 ], [ 1.611897, 45.890302 ], [ 1.602085, 45.88968 ], [ 1.591033, 45.88307 ], [ 1.603689, 45.879294 ], [ 1.606992, 45.86648 ], [ 1.602398, 45.857465 ], [ 1.624643, 45.84984 ], [ 1.628475, 45.8476 ], [ 1.647909, 45.84496 ], [ 1.652828, 45.845631 ], [ 1.658734, 45.83701 ], [ 1.65992, 45.8338 ], [ 1.667341, 45.838616 ], [ 1.676873, 45.83764 ], [ 1.694896, 45.843765 ], [ 1.719883, 45.841511 ], [ 1.729643, 45.843513 ], [ 1.736078, 45.84891 ], [ 1.73972, 45.851389 ], [ 1.75168, 45.85484 ], [ 1.755837, 45.85566 ], [ 1.756992, 45.86617 ], [ 1.765811, 45.868987 ], [ 1.770776, 45.868374 ], [ 1.779369, 45.85233 ], [ 1.773224, 45.84291 ], [ 1.778194, 45.83321 ], [ 1.786571, 45.82954 ], [ 1.796208, 45.829508 ], [ 1.824792, 45.8109 ], [ 1.828963, 45.8128 ], [ 1.830678, 45.82303 ], [ 1.834272, 45.825449 ], [ 1.843092, 45.81398 ], [ 1.855481, 45.81026 ], [ 1.85631, 45.80692 ], [ 1.861212, 45.8071 ], [ 1.883805, 45.79471 ], [ 1.89149, 45.771667 ], [ 1.897805, 45.767955 ], [ 1.902149, 45.769546 ], [ 1.896354, 45.76007 ], [ 1.877298, 45.75822 ], [ 1.874175, 45.75554 ], [ 1.883401, 45.747848 ], [ 1.886413, 45.745194 ], [ 1.874752, 45.727228 ], [ 1.88352, 45.72603 ], [ 1.89247, 45.71827 ], [ 1.888536, 45.71637 ], [ 1.880786, 45.71244 ], [ 1.881175, 45.70909 ], [ 1.896599, 45.701409 ], [ 1.898731, 45.698278 ], [ 1.898709, 45.694864 ], [ 1.907303, 45.69176 ], [ 1.909555, 45.6818 ], [ 1.901422, 45.67858 ], [ 1.882191, 45.679824 ], [ 1.87902, 45.666383 ], [ 1.874816, 45.664666 ], [ 1.854027, 45.67058 ], [ 1.84507, 45.663374 ], [ 1.826437, 45.665046 ], [ 1.823414, 45.67191 ], [ 1.819797, 45.67404 ], [ 1.815294, 45.679771 ], [ 1.802214, 45.676219 ], [ 1.801385, 45.672986 ], [ 1.794815, 45.680913 ], [ 1.785834, 45.68266 ], [ 1.783086, 45.673285 ], [ 1.77472, 45.65831 ], [ 1.765424, 45.657648 ], [ 1.763797, 45.654577 ], [ 1.753465, 45.65546 ], [ 1.752899, 45.65208 ], [ 1.750205, 45.64571 ], [ 1.724169, 45.63886 ], [ 1.710733, 45.64134 ], [ 1.696303, 45.633651 ], [ 1.668273, 45.614149 ], [ 1.664765, 45.61169 ], [ 1.659864, 45.606349 ], [ 1.658937, 45.59694 ], [ 1.651973, 45.59315 ], [ 1.64933, 45.59055 ], [ 1.625187, 45.578705 ], [ 1.600404, 45.57942 ], [ 1.592897, 45.575027 ], [ 1.590755, 45.572037 ], [ 1.584891, 45.55608 ], [ 1.571207, 45.55529 ], [ 1.558783, 45.550945 ], [ 1.54682, 45.55446 ], [ 1.541999, 45.555015 ], [ 1.517394, 45.564276 ], [ 1.516971, 45.55755 ], [ 1.511347, 45.55214 ], [ 1.492475, 45.54939 ], [ 1.491524, 45.5523 ], [ 1.492228, 45.560861 ], [ 1.488061, 45.56226 ], [ 1.480434, 45.56594 ], [ 1.478789, 45.559077 ], [ 1.473136, 45.55342 ], [ 1.453415, 45.55222 ], [ 1.452689, 45.53505 ], [ 1.439542, 45.52041 ], [ 1.435222, 45.521876 ], [ 1.426618, 45.52979 ], [ 1.417346, 45.529588 ], [ 1.408944, 45.526335 ], [ 1.395821, 45.50867 ], [ 1.391455, 45.50729 ], [ 1.3896, 45.49616 ], [ 1.384904, 45.495567 ], [ 1.375566, 45.49433 ], [ 1.368894, 45.48956 ], [ 1.350078, 45.466897 ], [ 1.345901, 45.46874 ], [ 1.285317, 45.490281 ], [ 1.287191, 45.48724 ], [ 1.286405, 45.48075 ], [ 1.27885, 45.47709 ], [ 1.275609, 45.47795 ], [ 1.269155, 45.47636 ], [ 1.263869, 45.467308 ], [ 1.263341, 45.453897 ], [ 1.25548, 45.45036 ], [ 1.253152, 45.44422 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "89", "CODE_DEPT": "88", "NOM_DEPT": "VOSGES", "CODE_CHF": "160", "NOM_CHF": "EPINAL", "X_CHF_LIEU": "9565", "Y_CHF_LIEU": "67915", "X_CENTROID": "9511", "Y_CENTROID": "67938", "CODE_REG": "41", "NOM_REGION": "LORRAINE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.823539, 47.81305 ], [ 6.820459, 47.8158 ], [ 6.791946, 47.83016 ], [ 6.788987, 47.83483 ], [ 6.791102, 47.83783 ], [ 6.790661, 47.844226 ], [ 6.784952, 47.84957 ], [ 6.738164, 47.86205 ], [ 6.737294, 47.86547 ], [ 6.735247, 47.864926 ], [ 6.730734, 47.866448 ], [ 6.710113, 47.87582 ], [ 6.703674, 47.881424 ], [ 6.699113, 47.88228 ], [ 6.691325, 47.88584 ], [ 6.689377, 47.8873 ], [ 6.686832, 47.88826 ], [ 6.683084, 47.89042 ], [ 6.669324, 47.89329 ], [ 6.645203, 47.904085 ], [ 6.639864, 47.91005 ], [ 6.640878, 47.91702 ], [ 6.629286, 47.928183 ], [ 6.612502, 47.93604 ], [ 6.610445, 47.93891 ], [ 6.605983, 47.944468 ], [ 6.601244, 47.944379 ], [ 6.596358, 47.94331 ], [ 6.568708, 47.934499 ], [ 6.558255, 47.92297 ], [ 6.555909, 47.91996 ], [ 6.542014, 47.902534 ], [ 6.537052, 47.90226 ], [ 6.503444, 47.89625 ], [ 6.478262, 47.88544 ], [ 6.475807, 47.888451 ], [ 6.457047, 47.90783 ], [ 6.460947, 47.91751 ], [ 6.448609, 47.922719 ], [ 6.431921, 47.94381 ], [ 6.40842, 47.9432 ], [ 6.407328, 47.94644 ], [ 6.404507, 47.952832 ], [ 6.388353, 47.960018 ], [ 6.378691, 47.95866 ], [ 6.364993, 47.962572 ], [ 6.360997, 47.96025 ], [ 6.322461, 47.95008 ], [ 6.306804, 47.95078 ], [ 6.292827, 47.955646 ], [ 6.277334, 47.95381 ], [ 6.274023, 47.951659 ], [ 6.262957, 47.94614 ], [ 6.259912, 47.94437 ], [ 6.250767, 47.93908 ], [ 6.24611, 47.93943 ], [ 6.237987, 47.93284 ], [ 6.233409, 47.933599 ], [ 6.219609, 47.93566 ], [ 6.214423, 47.930382 ], [ 6.209344, 47.93105 ], [ 6.204514, 47.932292 ], [ 6.208138, 47.942344 ], [ 6.207056, 47.945733 ], [ 6.182056, 47.95693 ], [ 6.179247, 47.95459 ], [ 6.171045, 47.95264 ], [ 6.161247, 47.958296 ], [ 6.16079, 47.9612 ], [ 6.155256, 47.96443 ], [ 6.149584, 47.9685 ], [ 6.161293, 47.97279 ], [ 6.163943, 47.97561 ], [ 6.159124, 47.99129 ], [ 6.152863, 47.996114 ], [ 6.156058, 48.006944 ], [ 6.152409, 48.009447 ], [ 6.131397, 48.02408 ], [ 6.127381, 48.022228 ], [ 6.114302, 48.01807 ], [ 6.109235, 48.01247 ], [ 6.104598, 48.01351 ], [ 6.085549, 48.01345 ], [ 6.080853, 48.0128 ], [ 6.072221, 48.01555 ], [ 6.068036, 48.01351 ], [ 6.036864, 48.00145 ], [ 6.022306, 47.98761 ], [ 6.023004, 47.97797 ], [ 6.009432, 47.96785 ], [ 6.008771, 47.961399 ], [ 6.002262, 47.95609 ], [ 5.970778, 47.957205 ], [ 5.970446, 47.953917 ], [ 5.968902, 47.947409 ], [ 5.964594, 47.946113 ], [ 5.956055, 47.938664 ], [ 5.947635, 47.93618 ], [ 5.942523, 47.93631 ], [ 5.932628, 47.937928 ], [ 5.937566, 47.950629 ], [ 5.941548, 47.95232 ], [ 5.959703, 47.96655 ], [ 5.957968, 47.96959 ], [ 5.950301, 47.97351 ], [ 5.947534, 47.97971 ], [ 5.943047, 47.979813 ], [ 5.92739, 47.9744 ], [ 5.92133, 47.971026 ], [ 5.919171, 47.967864 ], [ 5.918043, 47.94736 ], [ 5.912835, 47.94675 ], [ 5.907548, 47.94665 ], [ 5.902823, 47.94554 ], [ 5.89341, 47.93786 ], [ 5.896863, 47.931638 ], [ 5.884726, 47.92605 ], [ 5.884687, 47.929263 ], [ 5.86448, 47.94588 ], [ 5.856384, 47.948371 ], [ 5.849925, 47.964359 ], [ 5.854239, 47.966037 ], [ 5.853561, 47.96988 ], [ 5.848679, 47.96961 ], [ 5.845841, 47.975696 ], [ 5.839894, 47.968087 ], [ 5.839732, 47.9648 ], [ 5.829489, 47.958036 ], [ 5.815285, 47.95692 ], [ 5.805268, 47.946973 ], [ 5.802464, 47.949714 ], [ 5.788412, 47.952696 ], [ 5.778492, 47.97801 ], [ 5.782448, 47.980041 ], [ 5.793592, 47.99071 ], [ 5.794917, 47.993694 ], [ 5.786418, 48.00402 ], [ 5.787321, 48.007417 ], [ 5.776419, 48.022407 ], [ 5.776273, 48.02525 ], [ 5.77682, 48.03364 ], [ 5.768818, 48.030033 ], [ 5.764225, 48.03154 ], [ 5.740804, 48.049012 ], [ 5.721596, 48.04526 ], [ 5.720627, 48.05202 ], [ 5.721281, 48.052725 ], [ 5.713371, 48.061623 ], [ 5.70029, 48.06744 ], [ 5.696278, 48.077566 ], [ 5.692078, 48.07555 ], [ 5.659139, 48.083668 ], [ 5.655564, 48.081237 ], [ 5.655767, 48.071364 ], [ 5.632878, 48.08437 ], [ 5.639085, 48.09728 ], [ 5.645839, 48.10252 ], [ 5.649393, 48.10505 ], [ 5.658664, 48.106017 ], [ 5.672119, 48.10944 ], [ 5.669706, 48.11224 ], [ 5.656558, 48.12055 ], [ 5.661573, 48.12561 ], [ 5.662513, 48.12879 ], [ 5.666767, 48.130206 ], [ 5.676706, 48.136311 ], [ 5.675079, 48.139247 ], [ 5.685843, 48.150941 ], [ 5.684222, 48.158234 ], [ 5.686525, 48.164079 ], [ 5.682299, 48.17548 ], [ 5.680173, 48.178674 ], [ 5.69977, 48.18967 ], [ 5.730983, 48.1897 ], [ 5.730055, 48.19832 ], [ 5.726909, 48.200508 ], [ 5.72451, 48.203075 ], [ 5.722288, 48.20595 ], [ 5.710844, 48.21994 ], [ 5.706542, 48.22194 ], [ 5.687792, 48.23418 ], [ 5.683443, 48.23294 ], [ 5.676344, 48.229016 ], [ 5.672188, 48.231009 ], [ 5.640901, 48.24235 ], [ 5.642055, 48.245749 ], [ 5.64946, 48.2547 ], [ 5.651579, 48.25797 ], [ 5.653809, 48.268524 ], [ 5.649556, 48.27029 ], [ 5.611652, 48.29181 ], [ 5.608996, 48.288858 ], [ 5.588425, 48.27376 ], [ 5.588128, 48.27732 ], [ 5.533514, 48.3251 ], [ 5.531164, 48.32816 ], [ 5.523022, 48.34051 ], [ 5.526527, 48.346856 ], [ 5.522169, 48.34862 ], [ 5.507063, 48.350159 ], [ 5.499385, 48.35455 ], [ 5.474496, 48.35457 ], [ 5.472422, 48.351535 ], [ 5.459888, 48.34948 ], [ 5.443838, 48.33683 ], [ 5.426048, 48.33106 ], [ 5.424574, 48.334216 ], [ 5.417157, 48.342622 ], [ 5.42237, 48.35175 ], [ 5.418555, 48.36069 ], [ 5.421257, 48.36335 ], [ 5.442884, 48.37939 ], [ 5.438413, 48.380864 ], [ 5.408839, 48.38303 ], [ 5.393838, 48.39157 ], [ 5.397763, 48.39259 ], [ 5.409779, 48.39262 ], [ 5.447148, 48.41499 ], [ 5.465177, 48.419995 ], [ 5.470062, 48.42093 ], [ 5.509008, 48.40991 ], [ 5.513904, 48.4108 ], [ 5.509929, 48.41702 ], [ 5.515417, 48.42998 ], [ 5.534464, 48.432297 ], [ 5.556327, 48.4399 ], [ 5.560827, 48.44147 ], [ 5.567996, 48.4373 ], [ 5.566636, 48.434108 ], [ 5.576649, 48.43197 ], [ 5.580391, 48.43848 ], [ 5.589323, 48.44213 ], [ 5.610061, 48.441568 ], [ 5.615055, 48.44051 ], [ 5.61883, 48.43049 ], [ 5.623837, 48.44596 ], [ 5.626986, 48.44888 ], [ 5.644971, 48.454044 ], [ 5.649849, 48.454962 ], [ 5.651446, 48.45818 ], [ 5.639804, 48.46915 ], [ 5.641988, 48.472203 ], [ 5.644529, 48.47187 ], [ 5.653333, 48.46901 ], [ 5.656871, 48.47126 ], [ 5.676378, 48.47153 ], [ 5.684919, 48.46836 ], [ 5.689593, 48.467381 ], [ 5.695076, 48.463449 ], [ 5.715639, 48.460378 ], [ 5.735324, 48.46516 ], [ 5.740613, 48.46537 ], [ 5.74243, 48.474498 ], [ 5.746109, 48.47625 ], [ 5.760795, 48.49445 ], [ 5.765155, 48.49649 ], [ 5.774739, 48.48846 ], [ 5.778599, 48.486187 ], [ 5.783684, 48.485546 ], [ 5.787024, 48.48291 ], [ 5.792136, 48.48864 ], [ 5.809221, 48.495125 ], [ 5.810772, 48.4983 ], [ 5.824376, 48.49639 ], [ 5.831799, 48.50016 ], [ 5.836407, 48.500708 ], [ 5.83778, 48.50481 ], [ 5.862241, 48.50649 ], [ 5.865923, 48.5042 ], [ 5.876608, 48.49748 ], [ 5.901013, 48.49401 ], [ 5.905902, 48.49498 ], [ 5.901508, 48.4885 ], [ 5.898792, 48.48544 ], [ 5.9043, 48.48293 ], [ 5.888609, 48.46945 ], [ 5.886837, 48.456175 ], [ 5.897314, 48.44861 ], [ 5.885263, 48.437885 ], [ 5.884003, 48.43638 ], [ 5.882079, 48.43337 ], [ 5.85934, 48.4165 ], [ 5.856315, 48.41184 ], [ 5.855383, 48.409377 ], [ 5.865014, 48.40697 ], [ 5.870039, 48.406133 ], [ 5.878184, 48.40301 ], [ 5.896968, 48.40848 ], [ 5.907931, 48.42799 ], [ 5.898036, 48.43595 ], [ 5.926762, 48.4353 ], [ 5.931327, 48.433946 ], [ 5.924594, 48.424552 ], [ 5.91439, 48.424938 ], [ 5.909567, 48.41893 ], [ 5.91004, 48.40476 ], [ 5.918091, 48.404141 ], [ 5.920503, 48.40107 ], [ 5.925022, 48.396039 ], [ 5.92769, 48.393686 ], [ 5.937153, 48.40217 ], [ 5.941116, 48.40074 ], [ 5.94698, 48.39826 ], [ 5.949585, 48.3965 ], [ 5.952035, 48.390066 ], [ 5.954939, 48.387374 ], [ 5.947487, 48.37862 ], [ 5.944654, 48.37582 ], [ 5.952599, 48.37267 ], [ 5.95189, 48.36678 ], [ 5.956472, 48.36729 ], [ 5.954123, 48.359386 ], [ 5.955419, 48.356481 ], [ 5.960272, 48.351021 ], [ 5.96481, 48.35006 ], [ 5.973706, 48.35187 ], [ 5.982558, 48.35004 ], [ 5.988254, 48.35497 ], [ 5.992951, 48.35442 ], [ 6.005127, 48.360416 ], [ 6.01525, 48.360951 ], [ 6.020291, 48.36145 ], [ 6.024946, 48.35689 ], [ 6.032763, 48.361026 ], [ 6.046914, 48.36227 ], [ 6.047337, 48.365613 ], [ 6.058422, 48.362 ], [ 6.061359, 48.35975 ], [ 6.066434, 48.35945 ], [ 6.071492, 48.359767 ], [ 6.075185, 48.362156 ], [ 6.079825, 48.36364 ], [ 6.073746, 48.37752 ], [ 6.076707, 48.37985 ], [ 6.087498, 48.3834 ], [ 6.091215, 48.382258 ], [ 6.098286, 48.36485 ], [ 6.093755, 48.363852 ], [ 6.102617, 48.35628 ], [ 6.112344, 48.3549 ], [ 6.11705, 48.353841 ], [ 6.122831, 48.364754 ], [ 6.125088, 48.367261 ], [ 6.132707, 48.362684 ], [ 6.14879, 48.37923 ], [ 6.152327, 48.381648 ], [ 6.147421, 48.40783 ], [ 6.149421, 48.40827 ], [ 6.163188, 48.40579 ], [ 6.177176, 48.40745 ], [ 6.178927, 48.410461 ], [ 6.18273, 48.408954 ], [ 6.1788, 48.400542 ], [ 6.17842, 48.39761 ], [ 6.200161, 48.39804 ], [ 6.201743, 48.399375 ], [ 6.221955, 48.400664 ], [ 6.232097, 48.40023 ], [ 6.233339, 48.397113 ], [ 6.242664, 48.404052 ], [ 6.255765, 48.40641 ], [ 6.260443, 48.4064 ], [ 6.268672, 48.422805 ], [ 6.270298, 48.426101 ], [ 6.279505, 48.42405 ], [ 6.285143, 48.42942 ], [ 6.297438, 48.43367 ], [ 6.303381, 48.42854 ], [ 6.30818, 48.41195 ], [ 6.331346, 48.40486 ], [ 6.336509, 48.40459 ], [ 6.353963, 48.403881 ], [ 6.358962, 48.404865 ], [ 6.362428, 48.40745 ], [ 6.363617, 48.407867 ], [ 6.376792, 48.411896 ], [ 6.39045, 48.4045 ], [ 6.384043, 48.39952 ], [ 6.384241, 48.39461 ], [ 6.387395, 48.392143 ], [ 6.395929, 48.39469 ], [ 6.400678, 48.39536 ], [ 6.402911, 48.392256 ], [ 6.412688, 48.39332 ], [ 6.424666, 48.40823 ], [ 6.443482, 48.413021 ], [ 6.448213, 48.414405 ], [ 6.456866, 48.41702 ], [ 6.466929, 48.41043 ], [ 6.471325, 48.409201 ], [ 6.482636, 48.414966 ], [ 6.486985, 48.41628 ], [ 6.496649, 48.41494 ], [ 6.501792, 48.41456 ], [ 6.513622, 48.421553 ], [ 6.518029, 48.423511 ], [ 6.530202, 48.4295 ], [ 6.534394, 48.43146 ], [ 6.540543, 48.42794 ], [ 6.544568, 48.42762 ], [ 6.578736, 48.415534 ], [ 6.583871, 48.417225 ], [ 6.568563, 48.438238 ], [ 6.584766, 48.45988 ], [ 6.594471, 48.46241 ], [ 6.596062, 48.46468 ], [ 6.597506, 48.46697 ], [ 6.607558, 48.46723 ], [ 6.620728, 48.47244 ], [ 6.63083, 48.472029 ], [ 6.635397, 48.470502 ], [ 6.638711, 48.46048 ], [ 6.636392, 48.450272 ], [ 6.644486, 48.441666 ], [ 6.647149, 48.43168 ], [ 6.644798, 48.428616 ], [ 6.659226, 48.42613 ], [ 6.66941, 48.426055 ], [ 6.676469, 48.423468 ], [ 6.679525, 48.42171 ], [ 6.682938, 48.424456 ], [ 6.685584, 48.418006 ], [ 6.694155, 48.41443 ], [ 6.698644, 48.41286 ], [ 6.712979, 48.4214 ], [ 6.724907, 48.41616 ], [ 6.734617, 48.417048 ], [ 6.738843, 48.415402 ], [ 6.739562, 48.41201 ], [ 6.760057, 48.41105 ], [ 6.765889, 48.40164 ], [ 6.775474, 48.40138 ], [ 6.780436, 48.402283 ], [ 6.785524, 48.401932 ], [ 6.785782, 48.39613 ], [ 6.797637, 48.402021 ], [ 6.815027, 48.39507 ], [ 6.826331, 48.41248 ], [ 6.827695, 48.4156 ], [ 6.849189, 48.42383 ], [ 6.8532, 48.42999 ], [ 6.855054, 48.433116 ], [ 6.864557, 48.43553 ], [ 6.869862, 48.42248 ], [ 6.88266, 48.41712 ], [ 6.892421, 48.41919 ], [ 6.914972, 48.4329 ], [ 6.918228, 48.43553 ], [ 6.921954, 48.43939 ], [ 6.93055, 48.442644 ], [ 6.965827, 48.47144 ], [ 6.977808, 48.476702 ], [ 6.981908, 48.47843 ], [ 6.986537, 48.48015 ], [ 7.007433, 48.4818 ], [ 7.028723, 48.49209 ], [ 7.050706, 48.49544 ], [ 7.05366, 48.497718 ], [ 7.058079, 48.49912 ], [ 7.078427, 48.50736 ], [ 7.083761, 48.50849 ], [ 7.088409, 48.51003 ], [ 7.123165, 48.51359 ], [ 7.125615, 48.49959 ], [ 7.096288, 48.50312 ], [ 7.094251, 48.5062 ], [ 7.091003, 48.500878 ], [ 7.093726, 48.492352 ], [ 7.093663, 48.48928 ], [ 7.114032, 48.485326 ], [ 7.118811, 48.483719 ], [ 7.116817, 48.47333 ], [ 7.104289, 48.45416 ], [ 7.106218, 48.44402 ], [ 7.108093, 48.44029 ], [ 7.109384, 48.438797 ], [ 7.105324, 48.43709 ], [ 7.095687, 48.426533 ], [ 7.097112, 48.423457 ], [ 7.09342, 48.41118 ], [ 7.095804, 48.404953 ], [ 7.087244, 48.401015 ], [ 7.084985, 48.39788 ], [ 7.088645, 48.39572 ], [ 7.092947, 48.394169 ], [ 7.103692, 48.38799 ], [ 7.108321, 48.37902 ], [ 7.106642, 48.376065 ], [ 7.100822, 48.37374 ], [ 7.088402, 48.36305 ], [ 7.085662, 48.36014 ], [ 7.079827, 48.35481 ], [ 7.075964, 48.352585 ], [ 7.101462, 48.34503 ], [ 7.105971, 48.34411 ], [ 7.117124, 48.334133 ], [ 7.136446, 48.33241 ], [ 7.141319, 48.33202 ], [ 7.144831, 48.332165 ], [ 7.147917, 48.33327 ], [ 7.166545, 48.33934 ], [ 7.169537, 48.342307 ], [ 7.183497, 48.33839 ], [ 7.179213, 48.32869 ], [ 7.180957, 48.32548 ], [ 7.190289, 48.32289 ], [ 7.196704, 48.313722 ], [ 7.198282, 48.310477 ], [ 7.193611, 48.302029 ], [ 7.176243, 48.299121 ], [ 7.172441, 48.29749 ], [ 7.174226, 48.287813 ], [ 7.159414, 48.27463 ], [ 7.158499, 48.26835 ], [ 7.157746, 48.26753 ], [ 7.153763, 48.26527 ], [ 7.143334, 48.258446 ], [ 7.132651, 48.24283 ], [ 7.126811, 48.22509 ], [ 7.116387, 48.20713 ], [ 7.108503, 48.20317 ], [ 7.105556, 48.200462 ], [ 7.108345, 48.19751 ], [ 7.10629, 48.19431 ], [ 7.102708, 48.19191 ], [ 7.086997, 48.183753 ], [ 7.083342, 48.17745 ], [ 7.082138, 48.17477 ], [ 7.077558, 48.170925 ], [ 7.078438, 48.16401 ], [ 7.059047, 48.13918 ], [ 7.068587, 48.130752 ], [ 7.084163, 48.12922 ], [ 7.083691, 48.12207 ], [ 7.076708, 48.108486 ], [ 7.070402, 48.10644 ], [ 7.06841, 48.10328 ], [ 7.05165, 48.08261 ], [ 7.034358, 48.075389 ], [ 7.024436, 48.063384 ], [ 7.023359, 48.05648 ], [ 7.018614, 48.05506 ], [ 7.012283, 48.04583 ], [ 7.009749, 48.04289 ], [ 7.013018, 48.04011 ], [ 7.016021, 48.03719 ], [ 7.011704, 48.035355 ], [ 7.002566, 48.02325 ], [ 6.989372, 48.018211 ], [ 6.981539, 48.00942 ], [ 6.976517, 48.009239 ], [ 6.961425, 48.00046 ], [ 6.951891, 48.00241 ], [ 6.94353, 47.99867 ], [ 6.943033, 47.99199 ], [ 6.943766, 47.980383 ], [ 6.941063, 47.97778 ], [ 6.931043, 47.97115 ], [ 6.925559, 47.95925 ], [ 6.923823, 47.95247 ], [ 6.920791, 47.945939 ], [ 6.924738, 47.92915 ], [ 6.912346, 47.91838 ], [ 6.926308, 47.91541 ], [ 6.927478, 47.90875 ], [ 6.917036, 47.90165 ], [ 6.918458, 47.898414 ], [ 6.898328, 47.88869 ], [ 6.907124, 47.88116 ], [ 6.907135, 47.87129 ], [ 6.90804, 47.864664 ], [ 6.914944, 47.86005 ], [ 6.918906, 47.858039 ], [ 6.918805, 47.85286 ], [ 6.920048, 47.850287 ], [ 6.916958, 47.847597 ], [ 6.907205, 47.84604 ], [ 6.897089, 47.83479 ], [ 6.896086, 47.83297 ], [ 6.891175, 47.83352 ], [ 6.84618, 47.822945 ], [ 6.84183, 47.82478 ], [ 6.823539, 47.81305 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "90", "CODE_DEPT": "89", "NOM_DEPT": "YONNE", "CODE_CHF": "024", "NOM_CHF": "AUXERRE", "X_CHF_LIEU": "7424", "Y_CHF_LIEU": "67442", "X_CENTROID": "7422", "Y_CENTROID": "67489", "CODE_REG": "26", "NOM_REGION": "BOURGOGNE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.106086, 47.33926 ], [ 4.101162, 47.33813 ], [ 4.076938, 47.340736 ], [ 4.067422, 47.33847 ], [ 4.047974, 47.339525 ], [ 4.039859, 47.327435 ], [ 4.030765, 47.32625 ], [ 4.027648, 47.31628 ], [ 4.020165, 47.31261 ], [ 4.000593, 47.31229 ], [ 3.987562, 47.32279 ], [ 3.982474, 47.322595 ], [ 3.972954, 47.335 ], [ 3.963999, 47.36586 ], [ 3.971393, 47.3746 ], [ 3.961353, 47.38232 ], [ 3.960513, 47.38579 ], [ 3.950594, 47.39305 ], [ 3.937927, 47.379826 ], [ 3.908792, 47.38206 ], [ 3.889564, 47.36875 ], [ 3.887463, 47.365881 ], [ 3.87141, 47.36717 ], [ 3.861455, 47.39337 ], [ 3.87946, 47.39991 ], [ 3.893397, 47.41029 ], [ 3.890213, 47.419812 ], [ 3.880587, 47.42654 ], [ 3.879911, 47.429811 ], [ 3.875517, 47.42881 ], [ 3.864383, 47.43433 ], [ 3.855194, 47.43388 ], [ 3.851308, 47.435588 ], [ 3.851737, 47.427572 ], [ 3.842009, 47.40872 ], [ 3.83893, 47.40605 ], [ 3.829087, 47.40576 ], [ 3.822621, 47.40091 ], [ 3.829261, 47.385333 ], [ 3.828057, 47.38205 ], [ 3.813743, 47.38037 ], [ 3.800243, 47.38965 ], [ 3.790461, 47.38973 ], [ 3.785631, 47.39032 ], [ 3.784123, 47.39328 ], [ 3.783303, 47.405169 ], [ 3.774605, 47.4062 ], [ 3.772571, 47.40308 ], [ 3.73389, 47.397065 ], [ 3.720317, 47.4013 ], [ 3.714782, 47.40683 ], [ 3.71491, 47.409463 ], [ 3.712403, 47.41442 ], [ 3.701553, 47.426486 ], [ 3.687996, 47.43166 ], [ 3.683925, 47.43387 ], [ 3.679809, 47.432548 ], [ 3.673439, 47.43561 ], [ 3.679358, 47.447242 ], [ 3.677363, 47.44686 ], [ 3.674397, 47.44953 ], [ 3.655583, 47.44881 ], [ 3.634157, 47.456076 ], [ 3.628686, 47.4547 ], [ 3.623783, 47.455385 ], [ 3.616422, 47.45934 ], [ 3.615236, 47.465828 ], [ 3.60535, 47.4662 ], [ 3.600971, 47.465182 ], [ 3.593202, 47.457714 ], [ 3.587873, 47.461882 ], [ 3.583276, 47.4615 ], [ 3.581675, 47.46445 ], [ 3.57613, 47.48213 ], [ 3.57569, 47.48317 ], [ 3.575259, 47.48629 ], [ 3.580478, 47.49487 ], [ 3.575459, 47.49869 ], [ 3.570725, 47.499523 ], [ 3.552142, 47.50341 ], [ 3.541425, 47.51425 ], [ 3.538233, 47.516592 ], [ 3.526056, 47.52143 ], [ 3.521363, 47.52255 ], [ 3.514192, 47.527224 ], [ 3.510307, 47.5505 ], [ 3.498358, 47.560878 ], [ 3.495344, 47.559972 ], [ 3.492033, 47.55999 ], [ 3.491375, 47.55647 ], [ 3.494746, 47.52129 ], [ 3.488277, 47.49383 ], [ 3.483515, 47.493032 ], [ 3.462467, 47.501183 ], [ 3.457679, 47.500472 ], [ 3.449538, 47.503871 ], [ 3.446589, 47.51028 ], [ 3.43223, 47.50733 ], [ 3.41224, 47.50787 ], [ 3.408787, 47.508027 ], [ 3.405484, 47.50869 ], [ 3.400355, 47.508578 ], [ 3.391332, 47.50656 ], [ 3.391056, 47.499653 ], [ 3.380385, 47.487833 ], [ 3.365715, 47.48653 ], [ 3.345704, 47.476617 ], [ 3.346456, 47.46969 ], [ 3.338044, 47.47252 ], [ 3.33567, 47.481462 ], [ 3.306115, 47.49367 ], [ 3.296228, 47.492596 ], [ 3.287427, 47.500864 ], [ 3.285252, 47.503939 ], [ 3.274682, 47.49196 ], [ 3.259236, 47.49191 ], [ 3.250321, 47.48841 ], [ 3.235027, 47.48964 ], [ 3.233674, 47.49285 ], [ 3.204517, 47.523192 ], [ 3.18614, 47.52359 ], [ 3.178884, 47.51947 ], [ 3.165191, 47.517502 ], [ 3.162247, 47.524005 ], [ 3.149412, 47.529504 ], [ 3.136654, 47.540124 ], [ 3.123027, 47.539428 ], [ 3.122224, 47.542894 ], [ 3.11636, 47.56704 ], [ 3.123524, 47.57615 ], [ 3.120284, 47.578893 ], [ 3.117534, 47.580678 ], [ 3.111581, 47.5839 ], [ 3.107221, 47.58554 ], [ 3.088025, 47.58699 ], [ 3.071969, 47.57956 ], [ 3.068241, 47.57706 ], [ 3.058681, 47.568759 ], [ 3.038488, 47.56506 ], [ 3.030852, 47.56057 ], [ 3.026689, 47.558708 ], [ 3.017047, 47.55783 ], [ 2.991328, 47.568027 ], [ 2.976538, 47.56943 ], [ 2.974821, 47.572714 ], [ 2.96487, 47.57446 ], [ 2.959327, 47.587517 ], [ 2.945698, 47.59225 ], [ 2.940355, 47.59821 ], [ 2.943619, 47.607763 ], [ 2.932321, 47.62705 ], [ 2.934061, 47.630152 ], [ 2.936158, 47.636427 ], [ 2.939684, 47.63836 ], [ 2.954234, 47.64569 ], [ 2.951156, 47.6479 ], [ 2.941581, 47.657537 ], [ 2.937223, 47.659056 ], [ 2.928231, 47.658439 ], [ 2.918155, 47.6698 ], [ 2.92416, 47.682496 ], [ 2.893098, 47.69888 ], [ 2.888655, 47.70057 ], [ 2.884065, 47.702075 ], [ 2.879661, 47.70378 ], [ 2.883507, 47.71345 ], [ 2.877733, 47.71885 ], [ 2.861175, 47.710943 ], [ 2.848969, 47.71685 ], [ 2.851135, 47.71967 ], [ 2.84865, 47.7258 ], [ 2.852539, 47.728151 ], [ 2.858407, 47.748679 ], [ 2.853882, 47.75868 ], [ 2.856477, 47.761736 ], [ 2.899667, 47.76492 ], [ 2.908379, 47.768017 ], [ 2.912915, 47.769388 ], [ 2.93056, 47.76283 ], [ 2.935592, 47.763247 ], [ 2.937484, 47.7663 ], [ 2.947189, 47.76579 ], [ 2.954511, 47.77426 ], [ 2.977353, 47.779958 ], [ 2.98045, 47.782523 ], [ 2.988902, 47.786125 ], [ 3.018803, 47.78647 ], [ 3.023798, 47.786375 ], [ 3.027584, 47.799766 ], [ 3.024263, 47.80966 ], [ 3.024344, 47.81308 ], [ 3.019882, 47.81304 ], [ 3.015473, 47.813539 ], [ 3.019403, 47.81945 ], [ 3.013992, 47.825032 ], [ 3.013874, 47.83184 ], [ 3.030665, 47.83748 ], [ 3.033824, 47.843874 ], [ 3.026906, 47.85892 ], [ 3.023297, 47.861021 ], [ 3.018188, 47.861193 ], [ 2.994904, 47.86735 ], [ 3.011491, 47.875099 ], [ 3.007226, 47.895295 ], [ 3.01543, 47.8985 ], [ 3.011818, 47.904825 ], [ 3.030666, 47.90784 ], [ 3.048244, 47.911331 ], [ 3.053812, 47.92445 ], [ 3.063161, 47.92733 ], [ 3.065214, 47.930519 ], [ 3.078743, 47.93327 ], [ 3.08394, 47.942431 ], [ 3.088683, 47.94318 ], [ 3.10076, 47.94799 ], [ 3.105272, 47.946941 ], [ 3.113425, 47.963348 ], [ 3.128119, 47.97251 ], [ 3.128498, 47.979513 ], [ 3.122989, 47.985198 ], [ 3.126676, 47.991268 ], [ 3.121123, 47.995936 ], [ 3.120845, 48.009363 ], [ 3.10657, 48.013183 ], [ 3.10115, 48.019028 ], [ 3.102176, 48.022456 ], [ 3.120648, 48.028603 ], [ 3.124263, 48.03113 ], [ 3.119731, 48.03247 ], [ 3.09762, 48.039558 ], [ 3.090536, 48.04822 ], [ 3.095365, 48.05398 ], [ 3.090345, 48.053944 ], [ 3.078932, 48.06024 ], [ 3.060278, 48.064699 ], [ 3.050471, 48.07233 ], [ 3.049882, 48.088253 ], [ 3.050194, 48.09124 ], [ 3.042902, 48.093376 ], [ 3.041212, 48.09648 ], [ 3.0351, 48.11563 ], [ 3.015884, 48.11571 ], [ 3.027273, 48.1307 ], [ 3.023122, 48.13567 ], [ 3.019049, 48.13778 ], [ 3.01323, 48.14348 ], [ 3.003886, 48.14486 ], [ 3.002138, 48.14166 ], [ 2.994044, 48.1431 ], [ 2.987615, 48.15228 ], [ 2.978176, 48.15058 ], [ 2.963612, 48.15287 ], [ 2.959952, 48.15538 ], [ 2.951969, 48.16436 ], [ 2.936314, 48.163392 ], [ 2.934241, 48.175727 ], [ 2.934749, 48.17882 ], [ 2.951461, 48.19049 ], [ 2.955416, 48.19252 ], [ 2.970958, 48.194188 ], [ 2.971666, 48.203411 ], [ 2.984587, 48.207453 ], [ 2.988961, 48.20902 ], [ 2.997119, 48.20635 ], [ 3.00599, 48.20942 ], [ 3.012819, 48.2221 ], [ 3.032696, 48.24874 ], [ 3.04757, 48.2497 ], [ 3.043708, 48.27184 ], [ 3.029261, 48.274204 ], [ 3.02476, 48.275645 ], [ 3.026961, 48.28246 ], [ 3.029739, 48.285424 ], [ 3.026761, 48.28802 ], [ 3.020051, 48.29638 ], [ 3.027469, 48.300639 ], [ 3.0171, 48.304537 ], [ 3.015685, 48.307317 ], [ 3.040571, 48.328931 ], [ 3.04226, 48.33219 ], [ 3.036773, 48.33779 ], [ 3.046276, 48.35731 ], [ 3.049451, 48.36003 ], [ 3.062057, 48.357442 ], [ 3.066702, 48.35772 ], [ 3.080611, 48.36083 ], [ 3.101066, 48.354788 ], [ 3.099602, 48.3516 ], [ 3.103418, 48.349514 ], [ 3.118385, 48.36668 ], [ 3.122467, 48.36863 ], [ 3.135759, 48.37088 ], [ 3.139869, 48.372599 ], [ 3.14485, 48.367303 ], [ 3.170015, 48.3747 ], [ 3.171808, 48.37768 ], [ 3.183373, 48.37146 ], [ 3.184941, 48.368129 ], [ 3.193763, 48.369392 ], [ 3.199658, 48.364461 ], [ 3.20445, 48.3642 ], [ 3.211304, 48.366267 ], [ 3.214496, 48.36759 ], [ 3.222216, 48.370008 ], [ 3.226483, 48.37024 ], [ 3.246859, 48.36729 ], [ 3.251021, 48.365101 ], [ 3.259611, 48.36859 ], [ 3.267473, 48.37713 ], [ 3.272179, 48.378325 ], [ 3.281618, 48.37816 ], [ 3.283175, 48.381385 ], [ 3.306018, 48.37289 ], [ 3.31069, 48.37291 ], [ 3.311856, 48.376023 ], [ 3.325478, 48.37309 ], [ 3.330117, 48.372123 ], [ 3.336538, 48.37318 ], [ 3.346315, 48.373246 ], [ 3.351685, 48.378619 ], [ 3.356559, 48.378452 ], [ 3.356091, 48.37516 ], [ 3.361191, 48.37257 ], [ 3.366319, 48.391485 ], [ 3.374142, 48.39549 ], [ 3.375408, 48.39869 ], [ 3.385095, 48.398713 ], [ 3.400207, 48.390881 ], [ 3.409931, 48.39054 ], [ 3.414792, 48.390273 ], [ 3.414008, 48.37654 ], [ 3.426582, 48.36169 ], [ 3.431584, 48.36085 ], [ 3.450115, 48.372852 ], [ 3.465281, 48.37451 ], [ 3.470481, 48.374671 ], [ 3.470803, 48.37444 ], [ 3.472982, 48.371899 ], [ 3.474875, 48.369265 ], [ 3.495725, 48.36935 ], [ 3.50441, 48.36549 ], [ 3.540825, 48.336547 ], [ 3.545109, 48.33455 ], [ 3.543961, 48.32276 ], [ 3.543904, 48.319789 ], [ 3.559032, 48.320358 ], [ 3.564072, 48.321081 ], [ 3.56318, 48.310819 ], [ 3.587536, 48.29848 ], [ 3.582509, 48.28284 ], [ 3.610952, 48.27461 ], [ 3.615187, 48.27254 ], [ 3.622873, 48.261375 ], [ 3.624347, 48.258442 ], [ 3.624443, 48.25517 ], [ 3.599994, 48.23551 ], [ 3.604684, 48.229886 ], [ 3.608006, 48.231831 ], [ 3.619329, 48.22813 ], [ 3.621602, 48.22561 ], [ 3.609202, 48.21066 ], [ 3.579608, 48.190672 ], [ 3.575186, 48.18874 ], [ 3.589992, 48.180588 ], [ 3.593967, 48.1787 ], [ 3.623548, 48.192 ], [ 3.636498, 48.186735 ], [ 3.64051, 48.184617 ], [ 3.648805, 48.17093 ], [ 3.650655, 48.16818 ], [ 3.65964, 48.159577 ], [ 3.666663, 48.142638 ], [ 3.66787, 48.139212 ], [ 3.691075, 48.145413 ], [ 3.693632, 48.15174 ], [ 3.694415, 48.15505 ], [ 3.698164, 48.148692 ], [ 3.705728, 48.1452 ], [ 3.721798, 48.158178 ], [ 3.716542, 48.17418 ], [ 3.741053, 48.16934 ], [ 3.74548, 48.167534 ], [ 3.754541, 48.15209 ], [ 3.742117, 48.1417 ], [ 3.739803, 48.138693 ], [ 3.74065, 48.131983 ], [ 3.752958, 48.125957 ], [ 3.763975, 48.13212 ], [ 3.768933, 48.13285 ], [ 3.776493, 48.12867 ], [ 3.782117, 48.11992 ], [ 3.791315, 48.117598 ], [ 3.798242, 48.10911 ], [ 3.80166, 48.10673 ], [ 3.803843, 48.10367 ], [ 3.80565, 48.10052 ], [ 3.798965, 48.08936 ], [ 3.798608, 48.08617 ], [ 3.806636, 48.08239 ], [ 3.822803, 48.065827 ], [ 3.826352, 48.063516 ], [ 3.828647, 48.04807 ], [ 3.82198, 48.04392 ], [ 3.829137, 48.03902 ], [ 3.832152, 48.036235 ], [ 3.83961, 48.03606 ], [ 3.843397, 48.03537 ], [ 3.847997, 48.02939 ], [ 3.870242, 48.01631 ], [ 3.870626, 48.00623 ], [ 3.870812, 48.002864 ], [ 3.862835, 48.00627 ], [ 3.844554, 48.003613 ], [ 3.839811, 48.00389 ], [ 3.849394, 47.986794 ], [ 3.850027, 47.98366 ], [ 3.859899, 47.98401 ], [ 3.863339, 47.979601 ], [ 3.8618, 47.976444 ], [ 3.880447, 47.98144 ], [ 3.882089, 47.997965 ], [ 3.885815, 48.000277 ], [ 3.895731, 47.999833 ], [ 3.90227, 47.99484 ], [ 3.903717, 47.99164 ], [ 3.913529, 47.97208 ], [ 3.905655, 47.95914 ], [ 3.902393, 47.93829 ], [ 3.896827, 47.932289 ], [ 3.894031, 47.929296 ], [ 3.895693, 47.92855 ], [ 3.905178, 47.926483 ], [ 3.914044, 47.92962 ], [ 3.918489, 47.92802 ], [ 3.923708, 47.932432 ], [ 3.92645, 47.93457 ], [ 3.949414, 47.93206 ], [ 3.963109, 47.935455 ], [ 3.976533, 47.93127 ], [ 3.981186, 47.930166 ], [ 3.985625, 47.930516 ], [ 4.001886, 47.94058 ], [ 4.005536, 47.94237 ], [ 4.019887, 47.92868 ], [ 4.025042, 47.928649 ], [ 4.033216, 47.932339 ], [ 4.045912, 47.9269 ], [ 4.054893, 47.93003 ], [ 4.060938, 47.94571 ], [ 4.089798, 47.94397 ], [ 4.092716, 47.94128 ], [ 4.094619, 47.92834 ], [ 4.113712, 47.92816 ], [ 4.122115, 47.93166 ], [ 4.137273, 47.937786 ], [ 4.141839, 47.937112 ], [ 4.141785, 47.94393 ], [ 4.162736, 47.95857 ], [ 4.167337, 47.96001 ], [ 4.184257, 47.95386 ], [ 4.185452, 47.94016 ], [ 4.200398, 47.94183 ], [ 4.206056, 47.947361 ], [ 4.204572, 47.96108 ], [ 4.195372, 47.96431 ], [ 4.195329, 47.96776 ], [ 4.201952, 47.972577 ], [ 4.221154, 47.97122 ], [ 4.225956, 47.971942 ], [ 4.227548, 47.962007 ], [ 4.2239, 47.948499 ], [ 4.246331, 47.930425 ], [ 4.259501, 47.925577 ], [ 4.274316, 47.92352 ], [ 4.288659, 47.92685 ], [ 4.293424, 47.92568 ], [ 4.29652, 47.92304 ], [ 4.305628, 47.9204 ], [ 4.306787, 47.91038 ], [ 4.312718, 47.90498 ], [ 4.308703, 47.90336 ], [ 4.300067, 47.901094 ], [ 4.28612, 47.90056 ], [ 4.273877, 47.89631 ], [ 4.27068, 47.89359 ], [ 4.266941, 47.88717 ], [ 4.247359, 47.87616 ], [ 4.26444, 47.871501 ], [ 4.262689, 47.84401 ], [ 4.271426, 47.84034 ], [ 4.294777, 47.84667 ], [ 4.324863, 47.847197 ], [ 4.328751, 47.84169 ], [ 4.32163, 47.83384 ], [ 4.324899, 47.82074 ], [ 4.319977, 47.811427 ], [ 4.323647, 47.809639 ], [ 4.340297, 47.79957 ], [ 4.338072, 47.79662 ], [ 4.327231, 47.78566 ], [ 4.33446, 47.77725 ], [ 4.335459, 47.77396 ], [ 4.330507, 47.77296 ], [ 4.32954, 47.769534 ], [ 4.331033, 47.756087 ], [ 4.318003, 47.750635 ], [ 4.309503, 47.75236 ], [ 4.308158, 47.749242 ], [ 4.293038, 47.73285 ], [ 4.288087, 47.733901 ], [ 4.275392, 47.73983 ], [ 4.260371, 47.740621 ], [ 4.256314, 47.727 ], [ 4.241388, 47.72428 ], [ 4.239355, 47.71776 ], [ 4.253546, 47.71426 ], [ 4.257436, 47.70786 ], [ 4.265892, 47.70395 ], [ 4.261835, 47.69424 ], [ 4.280804, 47.6852 ], [ 4.284063, 47.682662 ], [ 4.279384, 47.68157 ], [ 4.255222, 47.6835 ], [ 4.250789, 47.67809 ], [ 4.226613, 47.67821 ], [ 4.22599, 47.67142 ], [ 4.246661, 47.661732 ], [ 4.236943, 47.646604 ], [ 4.231944, 47.645882 ], [ 4.224024, 47.633363 ], [ 4.215349, 47.630798 ], [ 4.213621, 47.604 ], [ 4.215812, 47.60083 ], [ 4.210871, 47.60133 ], [ 4.201036, 47.60197 ], [ 4.197352, 47.599692 ], [ 4.186136, 47.581289 ], [ 4.188284, 47.573174 ], [ 4.187159, 47.57048 ], [ 4.17495, 47.553 ], [ 4.168098, 47.55163 ], [ 4.164177, 47.55357 ], [ 4.159492, 47.55276 ], [ 4.153444, 47.54425 ], [ 4.145917, 47.54045 ], [ 4.149408, 47.53524 ], [ 4.150705, 47.5325 ], [ 4.143225, 47.52832 ], [ 4.140114, 47.525789 ], [ 4.13752, 47.51944 ], [ 4.119533, 47.5147 ], [ 4.114631, 47.51476 ], [ 4.116087, 47.50557 ], [ 4.112404, 47.5035 ], [ 4.116126, 47.49786 ], [ 4.118944, 47.49539 ], [ 4.120923, 47.489696 ], [ 4.115979, 47.48448 ], [ 4.118079, 47.4788 ], [ 4.120568, 47.477816 ], [ 4.125598, 47.47707 ], [ 4.128832, 47.470462 ], [ 4.119427, 47.443553 ], [ 4.115591, 47.44164 ], [ 4.108109, 47.44561 ], [ 4.103834, 47.44419 ], [ 4.106987, 47.43815 ], [ 4.098629, 47.430473 ], [ 4.095401, 47.432898 ], [ 4.085393, 47.4399 ], [ 4.080503, 47.43624 ], [ 4.083221, 47.43353 ], [ 4.082661, 47.42355 ], [ 4.084039, 47.42021 ], [ 4.072978, 47.413652 ], [ 4.070106, 47.407286 ], [ 4.065198, 47.40727 ], [ 4.067769, 47.40051 ], [ 4.085936, 47.394031 ], [ 4.078053, 47.38175 ], [ 4.082395, 47.37555 ], [ 4.097171, 47.373534 ], [ 4.106783, 47.37627 ], [ 4.10567, 47.36602 ], [ 4.098155, 47.35749 ], [ 4.107089, 47.34934 ], [ 4.106086, 47.33926 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "91", "CODE_DEPT": "90", "NOM_DEPT": "TERRITOIRE-DE-BELFORT", "CODE_CHF": "010", "NOM_CHF": "BELFORT", "X_CHF_LIEU": "9889", "Y_CHF_LIEU": "67337", "X_CENTROID": "9948", "Y_CENTROID": "67330", "CODE_REG": "43", "NOM_REGION": "FRANCHE-COMTE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.939179, 47.4337 ], [ 6.936741, 47.43612 ], [ 6.934951, 47.447019 ], [ 6.932251, 47.45276 ], [ 6.932316, 47.455824 ], [ 6.92987, 47.45853 ], [ 6.919363, 47.468203 ], [ 6.907344, 47.472888 ], [ 6.909833, 47.47494 ], [ 6.915711, 47.47824 ], [ 6.913493, 47.48135 ], [ 6.907611, 47.494555 ], [ 6.920045, 47.49782 ], [ 6.922982, 47.50016 ], [ 6.931237, 47.497752 ], [ 6.938548, 47.48651 ], [ 6.942672, 47.48492 ], [ 6.945373, 47.48729 ], [ 6.949125, 47.4857 ], [ 6.944813, 47.49826 ], [ 6.947186, 47.510407 ], [ 6.945008, 47.51334 ], [ 6.940905, 47.51506 ], [ 6.93758, 47.51742 ], [ 6.934612, 47.517764 ], [ 6.925322, 47.51953 ], [ 6.921146, 47.520273 ], [ 6.907885, 47.52706 ], [ 6.915914, 47.5304 ], [ 6.91027, 47.539646 ], [ 6.906982, 47.54219 ], [ 6.906437, 47.54548 ], [ 6.899593, 47.549818 ], [ 6.889827, 47.55007 ], [ 6.887326, 47.55283 ], [ 6.884008, 47.55517 ], [ 6.88001, 47.55365 ], [ 6.85988, 47.54755 ], [ 6.855715, 47.54794 ], [ 6.850617, 47.54813 ], [ 6.830636, 47.54644 ], [ 6.81666, 47.547922 ], [ 6.814554, 47.55086 ], [ 6.807005, 47.5628 ], [ 6.809823, 47.5687 ], [ 6.817753, 47.571786 ], [ 6.821724, 47.573314 ], [ 6.821011, 47.57433 ], [ 6.820109, 47.57549 ], [ 6.816938, 47.578076 ], [ 6.804107, 47.583046 ], [ 6.802327, 47.58966 ], [ 6.791302, 47.59629 ], [ 6.793286, 47.59928 ], [ 6.789341, 47.60469 ], [ 6.788234, 47.60487 ], [ 6.785643, 47.61136 ], [ 6.777868, 47.615412 ], [ 6.778741, 47.622098 ], [ 6.780405, 47.625261 ], [ 6.791077, 47.62688 ], [ 6.792461, 47.63003 ], [ 6.799868, 47.63763 ], [ 6.798335, 47.644 ], [ 6.790704, 47.64789 ], [ 6.787491, 47.65166 ], [ 6.784508, 47.65434 ], [ 6.777237, 47.665986 ], [ 6.778645, 47.67587 ], [ 6.780151, 47.689771 ], [ 6.779242, 47.69294 ], [ 6.770079, 47.7034 ], [ 6.771583, 47.71257 ], [ 6.759074, 47.72281 ], [ 6.760447, 47.735813 ], [ 6.759587, 47.739156 ], [ 6.758938, 47.74206 ], [ 6.757638, 47.74788 ], [ 6.771134, 47.764492 ], [ 6.774581, 47.76673 ], [ 6.786246, 47.78229 ], [ 6.807186, 47.79243 ], [ 6.824672, 47.809647 ], [ 6.823539, 47.81305 ], [ 6.84183, 47.82478 ], [ 6.84618, 47.822945 ], [ 6.842967, 47.81367 ], [ 6.862197, 47.78744 ], [ 6.864959, 47.784607 ], [ 6.88743, 47.779961 ], [ 6.891696, 47.77834 ], [ 6.902092, 47.77645 ], [ 6.907546, 47.777715 ], [ 6.91897, 47.774 ], [ 6.922358, 47.77209 ], [ 6.923452, 47.77006 ], [ 6.938479, 47.77082 ], [ 6.974542, 47.75147 ], [ 6.993444, 47.746743 ], [ 6.998425, 47.745825 ], [ 7.011685, 47.741631 ], [ 7.015778, 47.74346 ], [ 7.018794, 47.7374 ], [ 7.020601, 47.73444 ], [ 7.0294, 47.72838 ], [ 7.032079, 47.72619 ], [ 7.035193, 47.7241 ], [ 7.037418, 47.721558 ], [ 7.029376, 47.70866 ], [ 7.027565, 47.70537 ], [ 7.035736, 47.694967 ], [ 7.038652, 47.692586 ], [ 7.036342, 47.692224 ], [ 7.038634, 47.687945 ], [ 7.045893, 47.68334 ], [ 7.039997, 47.6781 ], [ 7.037637, 47.67515 ], [ 7.04166, 47.67241 ], [ 7.045282, 47.67037 ], [ 7.035237, 47.659655 ], [ 7.037741, 47.653449 ], [ 7.039244, 47.65039 ], [ 7.034478, 47.64946 ], [ 7.019805, 47.65068 ], [ 7.017172, 47.648129 ], [ 7.016567, 47.645049 ], [ 7.010525, 47.630152 ], [ 7.006925, 47.626418 ], [ 7.007601, 47.621573 ], [ 7.006179, 47.61933 ], [ 7.007647, 47.60747 ], [ 7.011233, 47.6057 ], [ 7.006716, 47.60145 ], [ 7.009213, 47.599391 ], [ 7.019479, 47.593982 ], [ 7.019563, 47.588382 ], [ 7.024362, 47.589127 ], [ 7.02538, 47.59238 ], [ 7.041412, 47.599821 ], [ 7.074506, 47.59886 ], [ 7.074772, 47.59885 ], [ 7.078391, 47.59686 ], [ 7.081668, 47.59476 ], [ 7.085388, 47.59305 ], [ 7.086787, 47.58765 ], [ 7.086324, 47.58491 ], [ 7.088724, 47.58354 ], [ 7.09288, 47.57694 ], [ 7.094361, 47.57349 ], [ 7.102383, 47.5706 ], [ 7.108259, 47.5618 ], [ 7.107532, 47.558583 ], [ 7.107618, 47.55364 ], [ 7.106216, 47.551337 ], [ 7.114064, 47.547969 ], [ 7.118633, 47.547311 ], [ 7.128022, 47.54183 ], [ 7.131577, 47.540291 ], [ 7.13281, 47.539202 ], [ 7.136668, 47.533675 ], [ 7.137885, 47.53066 ], [ 7.142173, 47.52502 ], [ 7.130346, 47.503027 ], [ 7.125789, 47.50223 ], [ 7.110619, 47.4949 ], [ 7.096726, 47.49514 ], [ 7.0788, 47.48906 ], [ 7.036238, 47.499 ], [ 7.031552, 47.5 ], [ 7.024394, 47.504213 ], [ 7.019427, 47.50413 ], [ 6.982897, 47.49426 ], [ 6.988581, 47.48559 ], [ 6.987743, 47.479165 ], [ 6.988496, 47.47304 ], [ 6.991513, 47.469112 ], [ 6.991764, 47.46642 ], [ 7.000036, 47.464349 ], [ 7.000311, 47.454695 ], [ 6.989853, 47.448096 ], [ 6.975143, 47.44773 ], [ 6.970283, 47.44705 ], [ 6.962571, 47.43532 ], [ 6.944034, 47.43379 ], [ 6.939179, 47.4337 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "92", "CODE_DEPT": "91", "NOM_DEPT": "ESSONNE", "CODE_CHF": "228", "NOM_CHF": "EVRY", "X_CHF_LIEU": "6590", "Y_CHF_LIEU": "68372", "X_CENTROID": "6441", "Y_CENTROID": "68249", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.402664, 48.32072 ], [ 2.398936, 48.31526 ], [ 2.369945, 48.30867 ], [ 2.355802, 48.310433 ], [ 2.340362, 48.318796 ], [ 2.32931, 48.332833 ], [ 2.326154, 48.33064 ], [ 2.317182, 48.331567 ], [ 2.312424, 48.33012 ], [ 2.300208, 48.311242 ], [ 2.296706, 48.30885 ], [ 2.269118, 48.31505 ], [ 2.265536, 48.31267 ], [ 2.254851, 48.301418 ], [ 2.2501, 48.29975 ], [ 2.245157, 48.2984 ], [ 2.245229, 48.301852 ], [ 2.248218, 48.31542 ], [ 2.238047, 48.31637 ], [ 2.239599, 48.319128 ], [ 2.24631, 48.329968 ], [ 2.231822, 48.32977 ], [ 2.21469, 48.33667 ], [ 2.20709, 48.34494 ], [ 2.182947, 48.32382 ], [ 2.181484, 48.31379 ], [ 2.177842, 48.31293 ], [ 2.170835, 48.31504 ], [ 2.166995, 48.313033 ], [ 2.152668, 48.31482 ], [ 2.153878, 48.30841 ], [ 2.155435, 48.30546 ], [ 2.16239, 48.301511 ], [ 2.161589, 48.29844 ], [ 2.141159, 48.29928 ], [ 2.1106, 48.296949 ], [ 2.111702, 48.300367 ], [ 2.113717, 48.30725 ], [ 2.108709, 48.30746 ], [ 2.099895, 48.304714 ], [ 2.087542, 48.29451 ], [ 2.052708, 48.295474 ], [ 2.051468, 48.29021 ], [ 2.043236, 48.286166 ], [ 2.028994, 48.288632 ], [ 2.009276, 48.28532 ], [ 1.994085, 48.28659 ], [ 1.989021, 48.286984 ], [ 1.978957, 48.28799 ], [ 1.975456, 48.29402 ], [ 1.966219, 48.296774 ], [ 1.961905, 48.302846 ], [ 1.959227, 48.30869 ], [ 1.977212, 48.31401 ], [ 1.975601, 48.32332 ], [ 1.982344, 48.328317 ], [ 1.97062, 48.33999 ], [ 1.975622, 48.35688 ], [ 1.987356, 48.363811 ], [ 1.983903, 48.366445 ], [ 1.977025, 48.379189 ], [ 1.966722, 48.38042 ], [ 1.968537, 48.38362 ], [ 1.977244, 48.39916 ], [ 1.974978, 48.40174 ], [ 1.962226, 48.40432 ], [ 1.957737, 48.40515 ], [ 1.930424, 48.40395 ], [ 1.925893, 48.41275 ], [ 1.939016, 48.42216 ], [ 1.937301, 48.43544 ], [ 1.942895, 48.440998 ], [ 1.93833, 48.441398 ], [ 1.932512, 48.445548 ], [ 1.930628, 48.45372 ], [ 1.928572, 48.455733 ], [ 1.922149, 48.4576 ], [ 1.916634, 48.4633 ], [ 1.916248, 48.47023 ], [ 1.919729, 48.4766 ], [ 1.928094, 48.48046 ], [ 1.933108, 48.481424 ], [ 1.934279, 48.495776 ], [ 1.951471, 48.520112 ], [ 1.953016, 48.523454 ], [ 1.964238, 48.52785 ], [ 1.967476, 48.52574 ], [ 1.977246, 48.52759 ], [ 1.976168, 48.534236 ], [ 1.962171, 48.53509 ], [ 1.934125, 48.54865 ], [ 1.937604, 48.562218 ], [ 1.957646, 48.55964 ], [ 1.962685, 48.560487 ], [ 1.979664, 48.554336 ], [ 1.98299, 48.55683 ], [ 2.012795, 48.556595 ], [ 2.017574, 48.557597 ], [ 2.016821, 48.567424 ], [ 2.032866, 48.587446 ], [ 2.036348, 48.5898 ], [ 2.032411, 48.59517 ], [ 2.033047, 48.5982 ], [ 2.035013, 48.604852 ], [ 2.04969, 48.60783 ], [ 2.054815, 48.60796 ], [ 2.057726, 48.617295 ], [ 2.045683, 48.62372 ], [ 2.042083, 48.62618 ], [ 2.04148, 48.62654 ], [ 2.036063, 48.631803 ], [ 2.034908, 48.641464 ], [ 2.020277, 48.64209 ], [ 2.01669, 48.64444 ], [ 2.011658, 48.65358 ], [ 2.013269, 48.659574 ], [ 2.022358, 48.65785 ], [ 2.028553, 48.660618 ], [ 2.028902, 48.663742 ], [ 2.033591, 48.6775 ], [ 2.037155, 48.68013 ], [ 2.042245, 48.68035 ], [ 2.050596, 48.68729 ], [ 2.055659, 48.686787 ], [ 2.062865, 48.6872 ], [ 2.066512, 48.6869 ], [ 2.069888, 48.68879 ], [ 2.077905, 48.686394 ], [ 2.082079, 48.68545 ], [ 2.089331, 48.698041 ], [ 2.093351, 48.69581 ], [ 2.097853, 48.69403 ], [ 2.097183, 48.70052 ], [ 2.107798, 48.711565 ], [ 2.110333, 48.714381 ], [ 2.107738, 48.71747 ], [ 2.110657, 48.724053 ], [ 2.10057, 48.73586 ], [ 2.104654, 48.73798 ], [ 2.122662, 48.74107 ], [ 2.130229, 48.737438 ], [ 2.13498, 48.73714 ], [ 2.138893, 48.74312 ], [ 2.138971, 48.7466 ], [ 2.151397, 48.752818 ], [ 2.161902, 48.752595 ], [ 2.17545, 48.75773 ], [ 2.184595, 48.754929 ], [ 2.189379, 48.75345 ], [ 2.191919, 48.76686 ], [ 2.186958, 48.77264 ], [ 2.190663, 48.775037 ], [ 2.200844, 48.77488 ], [ 2.207269, 48.770318 ], [ 2.227483, 48.77163 ], [ 2.228836, 48.77489 ], [ 2.232908, 48.769136 ], [ 2.232519, 48.76596 ], [ 2.254936, 48.760659 ], [ 2.264862, 48.761036 ], [ 2.271536, 48.75756 ], [ 2.276283, 48.756581 ], [ 2.283756, 48.74831 ], [ 2.279015, 48.742935 ], [ 2.275813, 48.74044 ], [ 2.278781, 48.734272 ], [ 2.302187, 48.73906 ], [ 2.303062, 48.73255 ], [ 2.304179, 48.72935 ], [ 2.316346, 48.733666 ], [ 2.32047, 48.749007 ], [ 2.328018, 48.750129 ], [ 2.33075, 48.7481 ], [ 2.340757, 48.7409 ], [ 2.350444, 48.740512 ], [ 2.354533, 48.738645 ], [ 2.364891, 48.74569 ], [ 2.369837, 48.746057 ], [ 2.370374, 48.730896 ], [ 2.370437, 48.72786 ], [ 2.370441, 48.725301 ], [ 2.370707, 48.72018 ], [ 2.386585, 48.720097 ], [ 2.411014, 48.72605 ], [ 2.414729, 48.72085 ], [ 2.41426, 48.71782 ], [ 2.430537, 48.72353 ], [ 2.435125, 48.7241 ], [ 2.439831, 48.725171 ], [ 2.442471, 48.72116 ], [ 2.446577, 48.71592 ], [ 2.450946, 48.71536 ], [ 2.450352, 48.7215 ], [ 2.468022, 48.72696 ], [ 2.472979, 48.72757 ], [ 2.475385, 48.727599 ], [ 2.480113, 48.72792 ], [ 2.484547, 48.72908 ], [ 2.505499, 48.734707 ], [ 2.510055, 48.734663 ], [ 2.515478, 48.72908 ], [ 2.517992, 48.715906 ], [ 2.519286, 48.7127 ], [ 2.526118, 48.708617 ], [ 2.529129, 48.70631 ], [ 2.527896, 48.704378 ], [ 2.531077, 48.699786 ], [ 2.540215, 48.698994 ], [ 2.54431, 48.69845 ], [ 2.548329, 48.69244 ], [ 2.549092, 48.6891 ], [ 2.566907, 48.69183 ], [ 2.57166, 48.692023 ], [ 2.580376, 48.68948 ], [ 2.584646, 48.68034 ], [ 2.584074, 48.67715 ], [ 2.579195, 48.677514 ], [ 2.565205, 48.66936 ], [ 2.556959, 48.672883 ], [ 2.547461, 48.67192 ], [ 2.544822, 48.66927 ], [ 2.533752, 48.6573 ], [ 2.544445, 48.65171 ], [ 2.547965, 48.64966 ], [ 2.540056, 48.63365 ], [ 2.520278, 48.63127 ], [ 2.516511, 48.62915 ], [ 2.525227, 48.621201 ], [ 2.526154, 48.614773 ], [ 2.539681, 48.611489 ], [ 2.542513, 48.608801 ], [ 2.543285, 48.605818 ], [ 2.54145, 48.596887 ], [ 2.539227, 48.593685 ], [ 2.518277, 48.58326 ], [ 2.522051, 48.57675 ], [ 2.521772, 48.573224 ], [ 2.526677, 48.573414 ], [ 2.531595, 48.573659 ], [ 2.519648, 48.56834 ], [ 2.518054, 48.561802 ], [ 2.499315, 48.54291 ], [ 2.509452, 48.54262 ], [ 2.49761, 48.51724 ], [ 2.506859, 48.515779 ], [ 2.509083, 48.509626 ], [ 2.513823, 48.50953 ], [ 2.512086, 48.49541 ], [ 2.509908, 48.49085 ], [ 2.510364, 48.488445 ], [ 2.502473, 48.484247 ], [ 2.505938, 48.461159 ], [ 2.502797, 48.4601 ], [ 2.499641, 48.45905 ], [ 2.498523, 48.45719 ], [ 2.501263, 48.45635 ], [ 2.505804, 48.451011 ], [ 2.504411, 48.44808 ], [ 2.505037, 48.44484 ], [ 2.505029, 48.429866 ], [ 2.517311, 48.42768 ], [ 2.543782, 48.403913 ], [ 2.54706, 48.40142 ], [ 2.521784, 48.40404 ], [ 2.50648, 48.394911 ], [ 2.486035, 48.39683 ], [ 2.473832, 48.39039 ], [ 2.482461, 48.38246 ], [ 2.44984, 48.37371 ], [ 2.450638, 48.36716 ], [ 2.440984, 48.36838 ], [ 2.433195, 48.3644 ], [ 2.429832, 48.36202 ], [ 2.433247, 48.35961 ], [ 2.441143, 48.3572 ], [ 2.43034, 48.347506 ], [ 2.433827, 48.33454 ], [ 2.429878, 48.33657 ], [ 2.410141, 48.336079 ], [ 2.401297, 48.33302 ], [ 2.392372, 48.33587 ], [ 2.394016, 48.33253 ], [ 2.395402, 48.325757 ], [ 2.402664, 48.32072 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "93", "CODE_DEPT": "92", "NOM_DEPT": "HAUTS-DE-SEINE", "CODE_CHF": "050", "NOM_CHF": "NANTERRE", "X_CHF_LIEU": "6416", "Y_CHF_LIEU": "68659", "X_CENTROID": "6458", "Y_CENTROID": "68555", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.32047, 48.749007 ], [ 2.316346, 48.733666 ], [ 2.304179, 48.72935 ], [ 2.303062, 48.73255 ], [ 2.302187, 48.73906 ], [ 2.278781, 48.734272 ], [ 2.275813, 48.74044 ], [ 2.279015, 48.742935 ], [ 2.283756, 48.74831 ], [ 2.276283, 48.756581 ], [ 2.271536, 48.75756 ], [ 2.264862, 48.761036 ], [ 2.254936, 48.760659 ], [ 2.232519, 48.76596 ], [ 2.232908, 48.769136 ], [ 2.228836, 48.77489 ], [ 2.22637, 48.78151 ], [ 2.223876, 48.78449 ], [ 2.209114, 48.7868 ], [ 2.205307, 48.79546 ], [ 2.202513, 48.79834 ], [ 2.183049, 48.79724 ], [ 2.185087, 48.800075 ], [ 2.17674, 48.81399 ], [ 2.172757, 48.81522 ], [ 2.161221, 48.81272 ], [ 2.157309, 48.81465 ], [ 2.15043, 48.81895 ], [ 2.150436, 48.819396 ], [ 2.150808, 48.822474 ], [ 2.148626, 48.82848 ], [ 2.147655, 48.83121 ], [ 2.145876, 48.8367 ], [ 2.145874, 48.84017 ], [ 2.149748, 48.84657 ], [ 2.159584, 48.847557 ], [ 2.157847, 48.85049 ], [ 2.150549, 48.85846 ], [ 2.153669, 48.864415 ], [ 2.153155, 48.86915 ], [ 2.150383, 48.87111 ], [ 2.155696, 48.87725 ], [ 2.157976, 48.88047 ], [ 2.166658, 48.892656 ], [ 2.169241, 48.89574 ], [ 2.174289, 48.899067 ], [ 2.196361, 48.906951 ], [ 2.200616, 48.9088 ], [ 2.216673, 48.917959 ], [ 2.220333, 48.920528 ], [ 2.227342, 48.92544 ], [ 2.230896, 48.92786 ], [ 2.243644, 48.934337 ], [ 2.247595, 48.93674 ], [ 2.251839, 48.93873 ], [ 2.268888, 48.94657 ], [ 2.288738, 48.9507 ], [ 2.29341, 48.95056 ], [ 2.311536, 48.94792 ], [ 2.316571, 48.9471 ], [ 2.334896, 48.94154 ], [ 2.335926, 48.93151 ], [ 2.328273, 48.9227 ], [ 2.325545, 48.9205 ], [ 2.322101, 48.91879 ], [ 2.320552, 48.916183 ], [ 2.317183, 48.915057 ], [ 2.313758, 48.914022 ], [ 2.315757, 48.91141 ], [ 2.31983, 48.900414 ], [ 2.315925, 48.89866 ], [ 2.303792, 48.894053 ], [ 2.299983, 48.892268 ], [ 2.284306, 48.885772 ], [ 2.280497, 48.881181 ], [ 2.280002, 48.878534 ], [ 2.260275, 48.880221 ], [ 2.255282, 48.874641 ], [ 2.245659, 48.87635 ], [ 2.236482, 48.87085 ], [ 2.23278, 48.86951 ], [ 2.230058, 48.867314 ], [ 2.225787, 48.85934 ], [ 2.223956, 48.85322 ], [ 2.248056, 48.84632 ], [ 2.257612, 48.834607 ], [ 2.262759, 48.83383 ], [ 2.263029, 48.834011 ], [ 2.271895, 48.828363 ], [ 2.285347, 48.829803 ], [ 2.289538, 48.82818 ], [ 2.297141, 48.825987 ], [ 2.301049, 48.825075 ], [ 2.309534, 48.823082 ], [ 2.313783, 48.82211 ], [ 2.328164, 48.81907 ], [ 2.332032, 48.81694 ], [ 2.328902, 48.81358 ], [ 2.323179, 48.809697 ], [ 2.318954, 48.80993 ], [ 2.324925, 48.80422 ], [ 2.323857, 48.80152 ], [ 2.31856, 48.78803 ], [ 2.322413, 48.78692 ], [ 2.32565, 48.781829 ], [ 2.319929, 48.77072 ], [ 2.316523, 48.766856 ], [ 2.311483, 48.75802 ], [ 2.31192, 48.751728 ], [ 2.32047, 48.749007 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "94", "CODE_DEPT": "93", "NOM_DEPT": "SEINE-SAINT-DENIS", "CODE_CHF": "008", "NOM_CHF": "BOBIGNY", "X_CHF_LIEU": "6588", "Y_CHF_LIEU": "68679", "X_CENTROID": "6617", "Y_CENTROID": "68687", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.59228, 48.807437 ], [ 2.570009, 48.81509 ], [ 2.568499, 48.818281 ], [ 2.567792, 48.82466 ], [ 2.538968, 48.838757 ], [ 2.534248, 48.84406 ], [ 2.518276, 48.84877 ], [ 2.515649, 48.85138 ], [ 2.51367, 48.85017 ], [ 2.51073, 48.8527 ], [ 2.503941, 48.85723 ], [ 2.499718, 48.85568 ], [ 2.496133, 48.857128 ], [ 2.496392, 48.859908 ], [ 2.481534, 48.86141 ], [ 2.476856, 48.86031 ], [ 2.454295, 48.85542 ], [ 2.447103, 48.851156 ], [ 2.442308, 48.85231 ], [ 2.418969, 48.849332 ], [ 2.416367, 48.849247 ], [ 2.415427, 48.855268 ], [ 2.414556, 48.858817 ], [ 2.413277, 48.873119 ], [ 2.410694, 48.87847 ], [ 2.407535, 48.880528 ], [ 2.400339, 48.88375 ], [ 2.398651, 48.889414 ], [ 2.397957, 48.89286 ], [ 2.389444, 48.901193 ], [ 2.370286, 48.90165 ], [ 2.365854, 48.90161 ], [ 2.361188, 48.90161 ], [ 2.351873, 48.90153 ], [ 2.334361, 48.901233 ], [ 2.329983, 48.901163 ], [ 2.324885, 48.90087 ], [ 2.31983, 48.900414 ], [ 2.315757, 48.91141 ], [ 2.313758, 48.914022 ], [ 2.317183, 48.915057 ], [ 2.320552, 48.916183 ], [ 2.322101, 48.91879 ], [ 2.325545, 48.9205 ], [ 2.328273, 48.9227 ], [ 2.335926, 48.93151 ], [ 2.334896, 48.94154 ], [ 2.316571, 48.9471 ], [ 2.311536, 48.94792 ], [ 2.29341, 48.95056 ], [ 2.288738, 48.9507 ], [ 2.292153, 48.9516 ], [ 2.289328, 48.95645 ], [ 2.288461, 48.95898 ], [ 2.29481, 48.96409 ], [ 2.298617, 48.966353 ], [ 2.309233, 48.96303 ], [ 2.313177, 48.96222 ], [ 2.324595, 48.95798 ], [ 2.328342, 48.95966 ], [ 2.333313, 48.95538 ], [ 2.340954, 48.964453 ], [ 2.349237, 48.96719 ], [ 2.354076, 48.96582 ], [ 2.361812, 48.973163 ], [ 2.366156, 48.97423 ], [ 2.370926, 48.97289 ], [ 2.375936, 48.972023 ], [ 2.379178, 48.97159 ], [ 2.382447, 48.971293 ], [ 2.403173, 48.957774 ], [ 2.407384, 48.956131 ], [ 2.410523, 48.95749 ], [ 2.417452, 48.959382 ], [ 2.422241, 48.958524 ], [ 2.435657, 48.95551 ], [ 2.445422, 48.95664 ], [ 2.448577, 48.95527 ], [ 2.456014, 48.95578 ], [ 2.45949, 48.955055 ], [ 2.466738, 48.96335 ], [ 2.491128, 48.973206 ], [ 2.496009, 48.972723 ], [ 2.497219, 48.974805 ], [ 2.50052, 48.975287 ], [ 2.50151, 48.978825 ], [ 2.511464, 48.980817 ], [ 2.532661, 49.00433 ], [ 2.552215, 49.006433 ], [ 2.553061, 49.009817 ], [ 2.561242, 49.012185 ], [ 2.565792, 49.0124 ], [ 2.571528, 49.001531 ], [ 2.575843, 49.00029 ], [ 2.579819, 48.98686 ], [ 2.576511, 48.980354 ], [ 2.566237, 48.97551 ], [ 2.590118, 48.952623 ], [ 2.591905, 48.94935 ], [ 2.593811, 48.946593 ], [ 2.597808, 48.938144 ], [ 2.602682, 48.93276 ], [ 2.602598, 48.929357 ], [ 2.596169, 48.92603 ], [ 2.592342, 48.925024 ], [ 2.58878, 48.90949 ], [ 2.592724, 48.90753 ], [ 2.591024, 48.906953 ], [ 2.587229, 48.89854 ], [ 2.559406, 48.885338 ], [ 2.563216, 48.8831 ], [ 2.570615, 48.87878 ], [ 2.567967, 48.86594 ], [ 2.582285, 48.8654 ], [ 2.587332, 48.865 ], [ 2.586866, 48.86183 ], [ 2.582522, 48.8562 ], [ 2.573836, 48.85338 ], [ 2.584171, 48.837429 ], [ 2.586281, 48.83425 ], [ 2.586672, 48.827887 ], [ 2.591136, 48.826634 ], [ 2.595334, 48.817457 ], [ 2.595795, 48.81427 ], [ 2.59228, 48.807437 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "95", "CODE_DEPT": "94", "NOM_DEPT": "VAL-DE-MARNE", "CODE_CHF": "028", "NOM_CHF": "CRETEIL", "X_CHF_LIEU": "6604", "Y_CHF_LIEU": "68546", "X_CENTROID": "6609", "Y_CENTROID": "68531", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.57166, 48.692023 ], [ 2.566907, 48.69183 ], [ 2.549092, 48.6891 ], [ 2.548329, 48.69244 ], [ 2.54431, 48.69845 ], [ 2.540215, 48.698994 ], [ 2.531077, 48.699786 ], [ 2.527896, 48.704378 ], [ 2.529129, 48.70631 ], [ 2.526118, 48.708617 ], [ 2.519286, 48.7127 ], [ 2.517992, 48.715906 ], [ 2.515478, 48.72908 ], [ 2.510055, 48.734663 ], [ 2.505499, 48.734707 ], [ 2.484547, 48.72908 ], [ 2.480113, 48.72792 ], [ 2.475385, 48.727599 ], [ 2.472979, 48.72757 ], [ 2.468022, 48.72696 ], [ 2.450352, 48.7215 ], [ 2.450946, 48.71536 ], [ 2.446577, 48.71592 ], [ 2.442471, 48.72116 ], [ 2.439831, 48.725171 ], [ 2.435125, 48.7241 ], [ 2.430537, 48.72353 ], [ 2.41426, 48.71782 ], [ 2.414729, 48.72085 ], [ 2.411014, 48.72605 ], [ 2.386585, 48.720097 ], [ 2.370707, 48.72018 ], [ 2.370441, 48.725301 ], [ 2.370437, 48.72786 ], [ 2.370374, 48.730896 ], [ 2.369837, 48.746057 ], [ 2.364891, 48.74569 ], [ 2.354533, 48.738645 ], [ 2.350444, 48.740512 ], [ 2.340757, 48.7409 ], [ 2.33075, 48.7481 ], [ 2.328018, 48.750129 ], [ 2.32047, 48.749007 ], [ 2.31192, 48.751728 ], [ 2.311483, 48.75802 ], [ 2.316523, 48.766856 ], [ 2.319929, 48.77072 ], [ 2.32565, 48.781829 ], [ 2.322413, 48.78692 ], [ 2.31856, 48.78803 ], [ 2.323857, 48.80152 ], [ 2.324925, 48.80422 ], [ 2.318954, 48.80993 ], [ 2.323179, 48.809697 ], [ 2.328902, 48.81358 ], [ 2.332032, 48.81694 ], [ 2.344084, 48.81596 ], [ 2.352648, 48.818314 ], [ 2.355593, 48.81587 ], [ 2.360036, 48.81561 ], [ 2.364442, 48.81608 ], [ 2.368823, 48.81755 ], [ 2.389917, 48.82592 ], [ 2.393998, 48.82757 ], [ 2.403242, 48.82916 ], [ 2.419933, 48.82393 ], [ 2.456645, 48.81701 ], [ 2.461194, 48.818277 ], [ 2.466188, 48.826672 ], [ 2.464996, 48.82999 ], [ 2.46962, 48.836077 ], [ 2.467314, 48.83912 ], [ 2.464673, 48.841532 ], [ 2.447579, 48.8449 ], [ 2.442857, 48.84555 ], [ 2.437059, 48.84117 ], [ 2.427461, 48.84164 ], [ 2.422967, 48.842714 ], [ 2.416502, 48.8347 ], [ 2.415892, 48.84664 ], [ 2.416367, 48.849247 ], [ 2.418969, 48.849332 ], [ 2.442308, 48.85231 ], [ 2.447103, 48.851156 ], [ 2.454295, 48.85542 ], [ 2.476856, 48.86031 ], [ 2.481534, 48.86141 ], [ 2.496392, 48.859908 ], [ 2.496133, 48.857128 ], [ 2.499718, 48.85568 ], [ 2.503941, 48.85723 ], [ 2.51073, 48.8527 ], [ 2.51367, 48.85017 ], [ 2.515649, 48.85138 ], [ 2.518276, 48.84877 ], [ 2.534248, 48.84406 ], [ 2.538968, 48.838757 ], [ 2.567792, 48.82466 ], [ 2.568499, 48.818281 ], [ 2.570009, 48.81509 ], [ 2.59228, 48.807437 ], [ 2.596498, 48.80607 ], [ 2.593058, 48.80031 ], [ 2.591542, 48.79737 ], [ 2.598816, 48.793366 ], [ 2.587516, 48.77805 ], [ 2.591044, 48.77233 ], [ 2.60644, 48.773307 ], [ 2.614817, 48.761121 ], [ 2.597544, 48.760569 ], [ 2.599551, 48.75074 ], [ 2.587757, 48.74408 ], [ 2.594109, 48.73523 ], [ 2.594679, 48.731805 ], [ 2.580406, 48.72299 ], [ 2.570969, 48.71173 ], [ 2.568137, 48.708974 ], [ 2.568804, 48.70722 ], [ 2.571587, 48.70266 ], [ 2.574345, 48.701 ], [ 2.577677, 48.69901 ], [ 2.572261, 48.694966 ], [ 2.57166, 48.692023 ] ] ] } }
+,
+{ "type": "Feature", "properties": { "ID_GEOFLA": "96", "CODE_DEPT": "95", "NOM_DEPT": "VAL-D'OISE", "CODE_CHF": "500", "NOM_CHF": "PONTOISE", "X_CHF_LIEU": "6342", "Y_CHF_LIEU": "68838", "X_CENTROID": "6365", "Y_CENTROID": "68873", "CODE_REG": "11", "NOM_REGION": "ILE-DE-FRANCE" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.200616, 48.9088 ], [ 2.198638, 48.91148 ], [ 2.201798, 48.91362 ], [ 2.199191, 48.91897 ], [ 2.202626, 48.920996 ], [ 2.198927, 48.935252 ], [ 2.201901, 48.93713 ], [ 2.20663, 48.94119 ], [ 2.205858, 48.94974 ], [ 2.201086, 48.950186 ], [ 2.173141, 48.9533 ], [ 2.175501, 48.95519 ], [ 2.178105, 48.95977 ], [ 2.178155, 48.96351 ], [ 2.17802, 48.96685 ], [ 2.166354, 48.981478 ], [ 2.1619, 48.983165 ], [ 2.127453, 48.989052 ], [ 2.122018, 48.99852 ], [ 2.126795, 49.008687 ], [ 2.121257, 49.01849 ], [ 2.105785, 49.00948 ], [ 2.086064, 49.01465 ], [ 2.083654, 49.01178 ], [ 2.071694, 49.001709 ], [ 2.067402, 49.00632 ], [ 2.064429, 49.008208 ], [ 2.046502, 49.00185 ], [ 2.026445, 49.000703 ], [ 2.023614, 48.997901 ], [ 2.010479, 49.00584 ], [ 2.007631, 49.00824 ], [ 2.004889, 49.010076 ], [ 2.001651, 49.01281 ], [ 1.991882, 49.02101 ], [ 1.986761, 49.01998 ], [ 1.976186, 49.01957 ], [ 1.967144, 49.023201 ], [ 1.957081, 49.021801 ], [ 1.954948, 49.024535 ], [ 1.945651, 49.025137 ], [ 1.937802, 49.02178 ], [ 1.935202, 49.02456 ], [ 1.912474, 49.041612 ], [ 1.914082, 49.04583 ], [ 1.911215, 49.046843 ], [ 1.908523, 49.048024 ], [ 1.883463, 49.03262 ], [ 1.881715, 49.026141 ], [ 1.881898, 49.01954 ], [ 1.877382, 49.0191 ], [ 1.861713, 49.01412 ], [ 1.859255, 49.013969 ], [ 1.862414, 49.020159 ], [ 1.859318, 49.02977 ], [ 1.851334, 49.03336 ], [ 1.863854, 49.05437 ], [ 1.865469, 49.057472 ], [ 1.861522, 49.05901 ], [ 1.841442, 49.064787 ], [ 1.840643, 49.069339 ], [ 1.836704, 49.07162 ], [ 1.823601, 49.07667 ], [ 1.815394, 49.07641 ], [ 1.811698, 49.07405 ], [ 1.796547, 49.072232 ], [ 1.797862, 49.06922 ], [ 1.7943, 49.058199 ], [ 1.789382, 49.057862 ], [ 1.784687, 49.05735 ], [ 1.770733, 49.05778 ], [ 1.759422, 49.06328 ], [ 1.755356, 49.061067 ], [ 1.751177, 49.04823 ], [ 1.745981, 49.04812 ], [ 1.735638, 49.04868 ], [ 1.732066, 49.05042 ], [ 1.729224, 49.04859 ], [ 1.723457, 49.04498 ], [ 1.719925, 49.0473 ], [ 1.693668, 49.05668 ], [ 1.696857, 49.06536 ], [ 1.691372, 49.07013 ], [ 1.687592, 49.071847 ], [ 1.683574, 49.0738 ], [ 1.670822, 49.078911 ], [ 1.646598, 49.08132 ], [ 1.641721, 49.08092 ], [ 1.620154, 49.073924 ], [ 1.614301, 49.07118 ], [ 1.612163, 49.0733 ], [ 1.608796, 49.07789 ], [ 1.619512, 49.08418 ], [ 1.623322, 49.08608 ], [ 1.620143, 49.096981 ], [ 1.627035, 49.105127 ], [ 1.646559, 49.12164 ], [ 1.648114, 49.12503 ], [ 1.652877, 49.128943 ], [ 1.655991, 49.13039 ], [ 1.653229, 49.14176 ], [ 1.662683, 49.1525 ], [ 1.664304, 49.153951 ], [ 1.661447, 49.156806 ], [ 1.669326, 49.169239 ], [ 1.666334, 49.17572 ], [ 1.671825, 49.180893 ], [ 1.670339, 49.189608 ], [ 1.671348, 49.19304 ], [ 1.676462, 49.20285 ], [ 1.673207, 49.205626 ], [ 1.676291, 49.21219 ], [ 1.702869, 49.22885 ], [ 1.704364, 49.2322 ], [ 1.710812, 49.23738 ], [ 1.736324, 49.225573 ], [ 1.740453, 49.22344 ], [ 1.735795, 49.22194 ], [ 1.73398, 49.21199 ], [ 1.715608, 49.206238 ], [ 1.715583, 49.20285 ], [ 1.72571, 49.197273 ], [ 1.725913, 49.19401 ], [ 1.73895, 49.19219 ], [ 1.742878, 49.18299 ], [ 1.742695, 49.1798 ], [ 1.756131, 49.174879 ], [ 1.773149, 49.18247 ], [ 1.776379, 49.185094 ], [ 1.776924, 49.185225 ], [ 1.789302, 49.181493 ], [ 1.793582, 49.18028 ], [ 1.794378, 49.183189 ], [ 1.797776, 49.185147 ], [ 1.816999, 49.17587 ], [ 1.831251, 49.17698 ], [ 1.83664, 49.171547 ], [ 1.834069, 49.16512 ], [ 1.838268, 49.16619 ], [ 1.849074, 49.170489 ], [ 1.869788, 49.17265 ], [ 1.874497, 49.17429 ], [ 1.876765, 49.175309 ], [ 1.882617, 49.16594 ], [ 1.882568, 49.1625 ], [ 1.933925, 49.17335 ], [ 1.937433, 49.170761 ], [ 1.958097, 49.17287 ], [ 1.962698, 49.1746 ], [ 1.971263, 49.181107 ], [ 1.974086, 49.183316 ], [ 1.990193, 49.17676 ], [ 1.999445, 49.175573 ], [ 2.018235, 49.186355 ], [ 2.021784, 49.18868 ], [ 2.035163, 49.189908 ], [ 2.038236, 49.19213 ], [ 2.038368, 49.19241 ], [ 2.050488, 49.19878 ], [ 2.069874, 49.203344 ], [ 2.076699, 49.20844 ], [ 2.08089, 49.21045 ], [ 2.080769, 49.207203 ], [ 2.09024, 49.20545 ], [ 2.093329, 49.19285 ], [ 2.095875, 49.19006 ], [ 2.11591, 49.18799 ], [ 2.13028, 49.19075 ], [ 2.139762, 49.18313 ], [ 2.143261, 49.18555 ], [ 2.153026, 49.183925 ], [ 2.157181, 49.182282 ], [ 2.163401, 49.17762 ], [ 2.157738, 49.17251 ], [ 2.161839, 49.16823 ], [ 2.16393, 49.1661 ], [ 2.172135, 49.166607 ], [ 2.178986, 49.17382 ], [ 2.176584, 49.17654 ], [ 2.183442, 49.17382 ], [ 2.187374, 49.173229 ], [ 2.207218, 49.17489 ], [ 2.215478, 49.17823 ], [ 2.220277, 49.179201 ], [ 2.234054, 49.165695 ], [ 2.219639, 49.15692 ], [ 2.21636, 49.154378 ], [ 2.225833, 49.1516 ], [ 2.241583, 49.151573 ], [ 2.259401, 49.15544 ], [ 2.262132, 49.158102 ], [ 2.266531, 49.156295 ], [ 2.281365, 49.15913 ], [ 2.286413, 49.15992 ], [ 2.28887, 49.169681 ], [ 2.299925, 49.180589 ], [ 2.301197, 49.183887 ], [ 2.306913, 49.185179 ], [ 2.310593, 49.184876 ], [ 2.317953, 49.185233 ], [ 2.321777, 49.18444 ], [ 2.354227, 49.150485 ], [ 2.358039, 49.14815 ], [ 2.369839, 49.15718 ], [ 2.3732, 49.15925 ], [ 2.394792, 49.14981 ], [ 2.410447, 49.15208 ], [ 2.440903, 49.145803 ], [ 2.439898, 49.14365 ], [ 2.438907, 49.1415 ], [ 2.436577, 49.13646 ], [ 2.435399, 49.13394 ], [ 2.458813, 49.139483 ], [ 2.461309, 49.13661 ], [ 2.473884, 49.132987 ], [ 2.477603, 49.13107 ], [ 2.477004, 49.12797 ], [ 2.494845, 49.12351 ], [ 2.499227, 49.12227 ], [ 2.501596, 49.11948 ], [ 2.489931, 49.10636 ], [ 2.526067, 49.10089 ], [ 2.531063, 49.0996 ], [ 2.532668, 49.11593 ], [ 2.537924, 49.12103 ], [ 2.542654, 49.122065 ], [ 2.542285, 49.118854 ], [ 2.554091, 49.11754 ], [ 2.559479, 49.09762 ], [ 2.576746, 49.092429 ], [ 2.580161, 49.08326 ], [ 2.582606, 49.08048 ], [ 2.586578, 49.080127 ], [ 2.590524, 49.07965 ], [ 2.573213, 49.059283 ], [ 2.594474, 49.04714 ], [ 2.589495, 49.04717 ], [ 2.579624, 49.046501 ], [ 2.56934, 49.03959 ], [ 2.568943, 49.03635 ], [ 2.563288, 49.02743 ], [ 2.545077, 49.022421 ], [ 2.535425, 49.02379 ], [ 2.535372, 49.02057 ], [ 2.538421, 49.01446 ], [ 2.550672, 49.01263 ], [ 2.553061, 49.009817 ], [ 2.552215, 49.006433 ], [ 2.532661, 49.00433 ], [ 2.511464, 48.980817 ], [ 2.50151, 48.978825 ], [ 2.50052, 48.975287 ], [ 2.497219, 48.974805 ], [ 2.496009, 48.972723 ], [ 2.491128, 48.973206 ], [ 2.466738, 48.96335 ], [ 2.45949, 48.955055 ], [ 2.456014, 48.95578 ], [ 2.448577, 48.95527 ], [ 2.445422, 48.95664 ], [ 2.435657, 48.95551 ], [ 2.422241, 48.958524 ], [ 2.417452, 48.959382 ], [ 2.410523, 48.95749 ], [ 2.407384, 48.956131 ], [ 2.403173, 48.957774 ], [ 2.382447, 48.971293 ], [ 2.379178, 48.97159 ], [ 2.375936, 48.972023 ], [ 2.370926, 48.97289 ], [ 2.366156, 48.97423 ], [ 2.361812, 48.973163 ], [ 2.354076, 48.96582 ], [ 2.349237, 48.96719 ], [ 2.340954, 48.964453 ], [ 2.333313, 48.95538 ], [ 2.328342, 48.95966 ], [ 2.324595, 48.95798 ], [ 2.313177, 48.96222 ], [ 2.309233, 48.96303 ], [ 2.298617, 48.966353 ], [ 2.29481, 48.96409 ], [ 2.288461, 48.95898 ], [ 2.289328, 48.95645 ], [ 2.292153, 48.9516 ], [ 2.288738, 48.9507 ], [ 2.268888, 48.94657 ], [ 2.251839, 48.93873 ], [ 2.247595, 48.93674 ], [ 2.243644, 48.934337 ], [ 2.230896, 48.92786 ], [ 2.227342, 48.92544 ], [ 2.220333, 48.920528 ], [ 2.216673, 48.917959 ], [ 2.200616, 48.9088 ] ] ] } }
+
+]
+}
Added: cartography/trunk/leaflet/src/main/webapp/WEB-INF/dpt.jsp
===================================================================
--- cartography/trunk/leaflet/src/main/webapp/WEB-INF/dpt.jsp (rev 0)
+++ cartography/trunk/leaflet/src/main/webapp/WEB-INF/dpt.jsp 2013-07-03 16:32:13 UTC (rev 682)
@@ -0,0 +1,135 @@
+<%@ page pageEncoding="UTF-8" %>
+<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8"/>
+ <title>Maps</title>
+ <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.2/leaflet.css" />
+ <script src="http://cdn.leafletjs.com/leaflet-0.6.2/leaflet.js"></script>
+ <script src='<c:url value="/DEPARTEMENT.json" />'></script>
+
+ <style>
+ #map {
+ width: 800px;
+ height: 500px;
+ }
+
+ .info {
+ padding: 6px 8px;
+ font: 14px/16px Arial, Helvetica, sans-serif;
+ background: white;
+ background: rgba(255,255,255,0.8);
+ box-shadow: 0 0 15px rgba(0,0,0,0.2);
+ border-radius: 5px;
+ }
+
+ .info h4 {
+ color: #777;
+ }
+
+ .legend {
+ text-align: left;
+ line-height: 18px;
+ color: #555;
+ }
+
+ .legend i {
+ width: 18px;
+ height: 18px;
+ float: left;
+ margin-right: 8px;
+ opacity: 0.7;
+ }
+ </style>
+
+ </head>
+ <body>
+ <div id="map"></div>
+ <script>
+ var departmentNb = '<%= request.getParameter("dpt") %>';
+ var data = null,
+ markers = [];
+
+ for (var k in depts.features) {
+ if (depts.features[k].properties.CODE_DEPT == departmentNb) {
+ data = depts.features[k];
+ break;
+ }
+ }
+
+ var map = L.map('map', {
+ center: [0, 0],
+ zoom: 1,
+ zoomControl: false,
+ dragging: false,
+ touchZoom: false,
+ doubleClickZoom: false,
+ scrollWheelZoom: false,
+ boxZoom: false,
+ keyboard: false,
+ tap: false
+ });
+
+ //control that shows state info on hover
+ var info = L.control();
+
+ info.onAdd = function (map) {
+ this._div = L.DomUtil.create('div', 'info');
+ this.update();
+ return this._div;
+ };
+
+ info.update = function (props) {
+ this._div.innerHTML = '<h4>' + data.properties.NOM_DEPT + '</h4>';
+ };
+
+ info.addTo(map);
+
+ function getColor(d) {
+ return d > 50 ? '#800026' :
+ d > 40 ? '#BD0026' :
+ d > 30 ? '#E31A1C' :
+ d > 20 ? '#FC4E2A' :
+ d > 10 ? '#FD8D3C' :
+ d > 5 ? '#FEB24C' :
+ d > 2 ? '#FED976' :
+ '#FFEDA0';
+ }
+
+ function style(feature) {
+ return {
+ weight: 1,
+ opacity: 1,
+ color: '#666',
+ fillOpacity: 0.7,
+ fillColor: getColor(feature.properties.density)
+ };
+ }
+
+ var geojson = L.geoJson(data, {
+ style: style,
+ }).addTo(map);
+ var bounds = geojson.getBounds();
+ map.fitBounds(bounds);
+
+ var center = bounds.getCenter();
+ var width = new L.LatLng(center.lat, bounds.getEast()).distanceTo(new L.LatLng(center.lat, bounds.getWest()));
+ var height = new L.LatLng(bounds.getNorth(), center.lng).distanceTo(new L.LatLng(bounds.getSouth(), center.lng));
+ var unit = Math.max(width, height) / 300;
+
+ <% java.util.Map cities = (java.util.Map) request.getAttribute("cities"); %>
+ <c:forEach items='${ cities }' var='city'>
+
+ L.circle([${ city.key.latitude }, ${ city.key.longitude }], ${ city.value } * unit + 500, {
+ color: 'red',
+ fillColor: '#f03',
+ fillOpacity: 0.5
+
+ }).addTo(map).bindPopup("${ city.value }");
+
+ </c:forEach>
+
+ </script>
+ </body>
+</html>
\ No newline at end of file
Added: cartography/trunk/leaflet/src/main/webapp/WEB-INF/web.xml
===================================================================
--- cartography/trunk/leaflet/src/main/webapp/WEB-INF/web.xml (rev 0)
+++ cartography/trunk/leaflet/src/main/webapp/WEB-INF/web.xml 2013-07-03 16:32:13 UTC (rev 682)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<web-app
+ xmlns="http://java.sun.com/xml/ns/javaee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
+ version="3.0">
+
+ <listener>
+ <listener-class>org.h2.server.web.DbStarter</listener-class>
+ </listener>
+
+ <servlet>
+ <servlet-name>CityServlet</servlet-name>
+ <servlet-class>org.nuiton.cartography.leaflet.CityServlet</servlet-class>
+ </servlet>
+
+ <servlet-mapping>
+ <servlet-name>CityServlet</servlet-name>
+ <url-pattern>/cities</url-pattern>
+ </servlet-mapping>
+
+</web-app>
\ No newline at end of file
Added: cartography/trunk/leaflet/src/main/webapp/leaflet-dpt.js
===================================================================
--- cartography/trunk/leaflet/src/main/webapp/leaflet-dpt.js (rev 0)
+++ cartography/trunk/leaflet/src/main/webapp/leaflet-dpt.js 2013-07-03 16:32:13 UTC (rev 682)
@@ -0,0 +1,100 @@
+var data = null,
+ markers = [];
+
+if (departmentNb) {
+ for (var k in depts.features) {
+ if (depts.features[k].properties.CODE_DEPT == departmentNb) {
+ data = depts.features[k];
+ break;
+ }
+ }
+ var city = data.properties.NOM_CHF;
+ <c:forEach items="${cities}" var="city">
+ if (${city.key} == city) {
+ markers.push([${city.value.latitude}, ${city.value.longitude}]);
+ }
+ </c:forEach>
+ console.log()
+
+} else {
+ data = depts;
+}
+var map = L.map('map', {
+ center: [0, 0],
+ zoom: 1,
+ zoomControl: false,
+ dragging: false,
+ touchZoom: false,
+ doubleClickZoom: false,
+ scrollWheelZoom: false,
+ boxZoom: false,
+ keyboard: false,
+ tap: false
+});
+
+////control that shows state info on hover
+var info = L.control();
+
+info.onAdd = function (map) {
+ this._div = L.DomUtil.create('div', 'info');
+ this.update();
+ return this._div;
+};
+
+info.update = function (props) {
+ this._div.innerHTML = '<h4>US Population Density</h4>' +
+ (props ? '<b>' + props.name + '</b><br />' + props.density + ' people / mi<sup>2</sup>' : 'Hover over a state');
+};
+
+info.addTo(map);
+
+function getColor(d) {
+ return d > 50 ? '#800026' :
+ d > 40 ? '#BD0026' :
+ d > 30 ? '#E31A1C' :
+ d > 20 ? '#FC4E2A' :
+ d > 10 ? '#FD8D3C' :
+ d > 5 ? '#FEB24C' :
+ d > 2 ? '#FED976' :
+ '#FFEDA0';
+}
+
+function style(feature) {
+ return {
+ weight: 1,
+ opacity: 1,
+ color: '#666',
+ fillOpacity: 0.7,
+ fillColor: getColor(feature.properties.density)
+ };
+}
+
+var geojson;
+
+geojson = L.geoJson(data, {
+ style: style,
+}).addTo(map);
+
+map.fitBounds(geojson.getBounds());
+
+//map.attributionControl.addAttribution('Population data © <a href="http://census.gov/">US Census Bureau</a>');
+
+//var legend = L.control({position: 'bottomright'});
+//
+//legend.onAdd = function (map) {
+//
+// var div = L.DomUtil.create('div', 'info legend'),
+// grades = [0, 2, 5, 10, 20, 30, 40, 50],
+// labels = [],
+// from, to;
+//
+// for (var i = 0; i < grades.length; i++) {
+// from = grades[i];
+// to = grades[i + 1];
+//
+// labels.push('<i style="background:' + getColor(from + 1) + '"></i> ' + from + (to ? '–' + to : '+'));
+// }
+//
+// div.innerHTML = labels.join('<br>');
+// return div;
+//};
Deleted: cartography/trunk/memo
===================================================================
--- cartography/trunk/memo 2013-06-27 14:24:38 UTC (rev 681)
+++ cartography/trunk/memo 2013-07-03 16:32:13 UTC (rev 682)
@@ -1,66 +0,0 @@
-OGC : Open Geospatial Constortium
-
-- GML : Geography Markup Language <http://www.opengis.net/gml/>
-- SDL : Styled Layer Descriptor <http://www.opengeospatial.org/standards/sld>
-- WMS : The OpenGIS® Web Map Service Interface Standard (WMS) provides a simple HTTP interface for requesting geo-registered map images
- from one or more distributed geospatial databases. A WMS request defines the geographic layer(s) and area of interest to be processed.
-The response to the request is one or more geo-registered map images (returned as JPEG, PNG, etc) that can be displayed in a browser application.
-The interface also supports the ability to specify whether the returned images should be transparent so that layers from multiple servers can
-be combined or not. <http://www.opengeospatial.org/standards/wms>
-- KML : Keyhole Markup Language <http://www.opengeospatial.org/standards/kml>
- KML is complementary to most of the key existing OGC standards including GML (Geography Markup Language), WFS (Web Feature Service) and WMS (Web Map Service).
-
-Fusion vers KML
-
-- departments : http://www.gitesdegaule.fr/KaraMeLise/fichierkml.php
-- display KML on Gmap :
-http://display-kml.appspot.com/
-
-- tuto KML :
-http://www.touraineverte.com/aide-documentation-exemple-tutoriel-didacticiel/api-google-maps/kml-kmz/creer-creation-carte-map-mes-cartes/utiliser-fichier-kml-generer-creer-google-earth/importer-carte-via-api-google-maps-new-GGeoXml.htm
- -> bof trop specifique
-
-- KML Creator :
-http://www.birdtheme.org/useful/googletool.html
-
-function collectcirclepoints(){
- var zoom = map.getZoom();
- var normalProj = G_NORMAL_MAP.getProjection();
- var centerPt = normalProj.fromLatLngToPixel(centerMarker.getPoint(),zoom);
- var radiusPt = normalProj.fromLatLngToPixel(radiusMarker,zoom);
- with (Math){
- var radius = floor(sqrt(pow((centerPt.x-radiusPt.x),2) + pow((centerPt.y-radiusPt.y),2)));
- for (var a = 0 ; a < 361 ; a+=10 ){
- var aRad = a*(PI/180);
- y = centerPt.y + radius * sin(aRad)
- x = centerPt.x + radius * cos(aRad)
- var p = new GPoint(x,y);
- if(holemode){
- holePoints.push(normalProj.fromPixelToLatLng(p, zoom));
- }else{
- polyPoints.push(normalProj.fromPixelToLatLng(p, zoom));
- }
- }
- if(holemode){
- var helper = [];
- var k = 0;
- var j = holePoints.length;
- for (var i = j-1; i>-1; i--) {
- helper[k] = holePoints[i];
- k++;
- }
- holePoints = helper;
- }
- }
-}
-
-Learn XQuery : http://www.xquery.com/tutorials/xqj_tutorial/
-Why ; http://developer.marklogic.com/pubs/4.0/apidocs/KML.html#kml:circle
-
-- JAK : JavaAPIforKML
-http://code.google.com/p/javaapiforkml/
-http://labs.micromata.de/display/jak/Home
-
-- KML + OpenLayers
-http://www.forumsig.org/showthread.php?t=17582&page=3
-http://fisheye.codehaus.org/browse/~raw,r=3830/mapbuilder/sandbox/rdewit/mapbuilder.ows5/examples/kml/kml_wmsc_ows5.html
\ No newline at end of file
Modified: cartography/trunk/pom.xml
===================================================================
--- cartography/trunk/pom.xml 2013-06-27 14:24:38 UTC (rev 681)
+++ cartography/trunk/pom.xml 2013-07-03 16:32:13 UTC (rev 682)
@@ -1,120 +1,92 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
+ <modelVersion>4.0.0</modelVersion>
+ <modules>
+ <module>klm</module>
+ <module>leaflet</module>
+ </modules>
- <!-- ************************************************************* -->
- <!-- *** POM Relationships *************************************** -->
- <!-- ************************************************************* -->
+ <!-- ************************************************************* -->
+ <!-- *** POM Relationships *************************************** -->
+ <!-- ************************************************************* -->
- <parent>
- <groupId>org.nuiton</groupId>
- <artifactId>mavenpom</artifactId>
- <version>2.2</version>
- </parent>
+ <parent>
+ <groupId>org.nuiton</groupId>
+ <artifactId>mavenpom4redmineAndCentral</artifactId>
+ <version>3.4.11</version>
+ </parent>
- <artifactId>nuiton-cartography</artifactId>
- <version>0.1-SNAPSHOT</version>
+ <artifactId>nuiton-cartography</artifactId>
+ <version>0.1-SNAPSHOT</version>
+
+ <dependencyManagement>
<dependencies>
- <dependency>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- <version>1.1.1</version>
- </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <version>1.1.2</version>
+ </dependency>
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.16</version>
- <scope>runtime</scope>
- </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.17</version>
+ </dependency>
- <dependency>
- <groupId>org.nuiton</groupId>
- <artifactId>nuiton-utils</artifactId>
- <version>1.3.2-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.6</version>
- <scope>test</scope>
- </dependency>
+ <dependency>
+ <groupId>org.nuiton</groupId>
+ <artifactId>nuiton-utils</artifactId>
+ <version>2.6.12</version>
+ </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.11</version>
+ </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>1.4</version>
- <scope>compile</scope>
- </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>javax.servlet-api</artifactId>
+ <version>3.0.1</version>
+ </dependency>
- <dependency>
- <groupId>de.micromata.jak</groupId>
- <artifactId>JavaAPIforKml</artifactId>
- <version>2.2.0-SNAPSHOT</version>
- </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>2.4</version>
+ </dependency>
- </dependencies>
+ <dependency>
+ <groupId>de.micromata.jak</groupId>
+ <artifactId>JavaAPIforKml</artifactId>
+ <version>2.2.0-SNAPSHOT</version>
+ </dependency>
- <repositories>
- <repository>
- <id>maven2-repository.dev.java.net</id>
- <name>Java.net Maven 2 Repository</name>
- <url>http://download.java.net/maven/2</url>
- <layout>default</layout>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
- </repositories>
+ <dependency>
+ <groupId>com.h2database</groupId>
+ <artifactId>h2</artifactId>
+ <version>1.3.172</version>
+ </dependency>
- <!-- ************************************************************* -->
- <!-- *** Project Information ************************************* -->
- <!-- ************************************************************* -->
+ </dependencies>
+ </dependencyManagement>
- <name>Cartography</name>
- <description>Cartography trials :: OpenLayers with KML</description>
- <inceptionYear>2010</inceptionYear>
- <url>http://maven-site.nuiton.org/${project.artifactId}</url>
-
- <!-- ************************************************************* -->
- <!-- *** Build Settings ****************************************** -->
- <!-- ************************************************************* -->
+ <!-- ************************************************************* -->
+ <!-- *** Build Settings ****************************************** -->
+ <!-- ************************************************************* -->
- <packaging>war</packaging>
+ <packaging>pom</packaging>
- <properties>
- </properties>
-
- <build>
+ <!-- Source control management. -->
+ <scm>
+ <connection>scm:svn:http://svn.nuiton.org/svn/sandbox/cartography/trunk</connection>
+ <developerConnection>scm:svn:http://svn.nuiton.org/svn/sandbox/cartography/trunk</developerConnection>
+ <url>http://www.nuiton.org/repositories/browse/sandbox/cartography/trunk</url>
+ </scm>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <includes>
- <include>**/*</include>
- </includes>
- <filtering>true</filtering>
- </resource>
- </resources>
- </build>
-
- <!-- Source control management. -->
- <scm>
- <connection>scm:svn:http://svn.nuiton.org/svn/sandbox/cartography/trunk</connection>
- <developerConnection>scm:svn:http://svn.nuiton.org/svn/sandbox/cartography/trunk</developerConnection>
- <url>http://www.nuiton.org/repositories/browse/sandbox/cartography/trunk</url>
- </scm>
-
-
</project>
\ No newline at end of file
Deleted: cartography/trunk/src/main/resources/log4j.properties
===================================================================
--- cartography/trunk/src/main/resources/log4j.properties 2013-06-27 14:24:38 UTC (rev 681)
+++ cartography/trunk/src/main/resources/log4j.properties 2013-07-03 16:32:13 UTC (rev 682)
@@ -1,11 +0,0 @@
-# Default to info level output; this is very handy if you eventually use Hibernate as well.
-log4j.rootCategory=warn, A1
-
-# A1 is set to be a ConsoleAppender.
-log4j.appender.A1=org.apache.log4j.ConsoleAppender
-
-# A1 uses PatternLayout.
-log4j.appender.A1.layout=org.apache.log4j.PatternLayout
-log4j.appender.A1.layout.ConversionPattern=%d [%p] %c{2} %m%n
-
-log4j.logger.org.nuiton.cartography=DEBUG
1
0