1/*
2  Sources :
3  https://www.insee.fr/fr/information/4316069
4  http://www.geonames.org/export/codes.html
5  http://download.geonames.org/export/dump/
6*/
7
8var inseeCityNameLatLonDep;
9if (inseeCityNameLatLonDep === undefined)
10    inseeCityNameLatLonDep = new Map ();
11
12inseeCityNameLatLonDep[92] = {
13    92002: ["Antony", 48.7503, 2.2993],
14    92004: ["Asnières-sur-Seine", 48.9153, 2.2880],
15    92007: ["Bagneux", 48.7983, 2.3098],
16    92009: ["Bois-Colombes", 48.9153, 2.2673],
17    92012: ["Boulogne-Billancourt", 48.8365, 2.2391],
18    92014: ["Bourg-la-Reine", 48.7799, 2.3164],
19    92019: ["Châtenay-Malabry", 48.7681, 2.2628],
20    92020: ["Châtillon", 48.8034, 2.2879],
21    92022: ["Chaville", 48.8076, 2.1923],
22    92023: ["Clamart", 48.7964, 2.2547],
23    92024: ["Clichy", 48.9035, 2.3057],
24    92025: ["Colombes", 48.9225, 2.2467],
25    92026: ["Courbevoie", 48.8984, 2.2557],
26    92032: ["Fontenay-aux-Roses", 48.7897, 2.2872],
27    92033: ["Garches", 48.8450, 2.1866],
28    92035: ["La Garenne-Colombes", 48.9067, 2.2446],
29    92036: ["Gennevilliers", 48.9345, 2.2938],
30    92040: ["Issy-les-Moulineaux", 48.8234, 2.2644],
31    92044: ["Levallois-Perret", 48.8950, 2.2868],
32    92046: ["Malakoff", 48.8169, 2.2969],
33    92047: ["Marnes-la-Coquette", 48.8302, 2.1664],
34    92048: ["Meudon", 48.8037, 2.2269],
35    92049: ["Montrouge", 48.8153, 2.3164],
36    92050: ["Nanterre", 48.8960, 2.2067],
37    92051: ["Neuilly-sur-Seine", 48.8853, 2.2664],
38    92060: ["Le Plessis-Robinson", 48.7804, 2.2606],
39    92062: ["Puteaux", 48.8837, 2.2383],
40    92063: ["Rueil-Malmaison", 48.8691, 2.1773],
41    92064: ["Saint-Cloud", 48.8428, 2.2086],
42    92071: ["Sceaux", 48.7768, 2.2952],
43    92072: ["Sèvres", 48.8214, 2.2105],
44    92073: ["Suresnes", 48.8698, 2.2196],
45    92075: ["Vanves", 48.8215, 2.2873],
46    92076: ["Vaucresson", 48.8410, 2.1602],
47    92077: ["Ville-d'Avray", 48.8215, 2.1776],
48    92078: ["Villeneuve-la-Garenne", 48.9364, 2.3244]
49};
50