Skip to content

Instantly share code, notes, and snippets.

@ThomasG77
Created October 24, 2019 01:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThomasG77/aef047eb7b597127e5e0a6aed67ca58b to your computer and use it in GitHub Desktop.
Save ThomasG77/aef047eb7b597127e5e0a6aed67ca58b to your computer and use it in GitHub Desktop.
Import pour scrapper parcs et jardins de Nantes
node_modules/
package-lock.json
const fs = require('fs');
const puppeteer = require('puppeteer-core');
(async () => {
const browser = await puppeteer.launch({
executablePath: '/snap/bin/chromium'//'/usr/bin/google-chrome'
});
const page = await browser.newPage();
await page.goto('https://jardins.nantes.fr/N/Jardin/Parcs-Jardins/Carte/Carte-Jardin-Tous.asp', {
timeout: 3000000
});
// Récupération des parcs
const geojson = await page.evaluate(() => {
return window.locations.reduce(function(acc, curr) {
acc.features.push({
"type": "Feature",
"properties": {
libellepoint: curr[0],
codepoint: curr[3],
surfacepoint: curr[4]
},
"geometry": {
"type": "Point",
"coordinates": [
curr[2],
curr[1]
]
}
})
return acc;
}, {
"type": "FeatureCollection",
"features": []
})
});
console.log('Geojson:', geojson);
fs.writeFileSync('parcs-jardin-nantes.geojson', JSON.stringify(geojson, null, ' '), {
encoding: 'utf-8'
});
await browser.close();
})();
{
"name": "scrapping-parcs-jardins-nantes",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"puppeteer-core": "^1.20.0"
}
}
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin Confluent",
"codepoint": 29,
"surfacepoint": 28040
},
"geometry": {
"type": "Point",
"coordinates": [
-1.54493,
47.1966
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc des Dervallières",
"codepoint": 34,
"surfacepoint": 82110
},
"geometry": {
"type": "Point",
"coordinates": [
-1.59417,
47.2247
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin d enfants de Procé",
"codepoint": 35
},
"geometry": {
"type": "Point",
"coordinates": [
-1.581507,
47.222132
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc de Procé",
"codepoint": 36,
"surfacepoint": 113000
},
"geometry": {
"type": "Point",
"coordinates": [
-1.5816,
47.2242
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Amiral Halgan",
"codepoint": 115,
"surfacepoint": 1298
},
"geometry": {
"type": "Point",
"coordinates": [
-1.55447,
47.2174
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin des Plantes",
"codepoint": 116,
"surfacepoint": 73280
},
"geometry": {
"type": "Point",
"coordinates": [
-1.54296,
47.2197
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Cours Cambronne",
"codepoint": 117,
"surfacepoint": 8762
},
"geometry": {
"type": "Point",
"coordinates": [
-1.56318,
47.212
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square du Muséum Louis Bureau",
"codepoint": 118,
"surfacepoint": 1947
},
"geometry": {
"type": "Point",
"coordinates": [
-1.56507,
47.213
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Place Mellinet",
"codepoint": 119,
"surfacepoint": 3959
},
"geometry": {
"type": "Point",
"coordinates": [
-1.57637,
47.2114
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin Ile de Versailles",
"codepoint": 120,
"surfacepoint": 15000
},
"geometry": {
"type": "Point",
"coordinates": [
-1.55442,
47.2259
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Maquis de Saffré",
"codepoint": 121,
"surfacepoint": 3000
},
"geometry": {
"type": "Point",
"coordinates": [
-1.55193,
47.222
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Jean-Baptiste Daviais",
"codepoint": 123,
"surfacepoint": 2965
},
"geometry": {
"type": "Point",
"coordinates": [
-1.55779,
47.212
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin des Cinq Sens",
"codepoint": 124,
"surfacepoint": 5585
},
"geometry": {
"type": "Point",
"coordinates": [
-1.53371,
47.2074
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Promenade de l Hermitage",
"codepoint": 125,
"surfacepoint": 731
},
"geometry": {
"type": "Point",
"coordinates": [
-1.57749,
47.2015
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Charles Housset",
"codepoint": 126,
"surfacepoint": 1100
},
"geometry": {
"type": "Point",
"coordinates": [
-1.60839,
47.2026
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Faustin Hélie",
"codepoint": 127,
"surfacepoint": 9441
},
"geometry": {
"type": "Point",
"coordinates": [
-1.56361,
47.2182
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc de La Beaujoire",
"codepoint": 128,
"surfacepoint": 133000
},
"geometry": {
"type": "Point",
"coordinates": [
-1.53245,
47.2627
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc du Plessis Tison",
"codepoint": 130,
"surfacepoint": 13940
},
"geometry": {
"type": "Point",
"coordinates": [
-1.53612,
47.2349
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Maurice Schwob",
"codepoint": 131,
"surfacepoint": 7203
},
"geometry": {
"type": "Point",
"coordinates": [
-1.58074,
47.201
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin de la Cité des Congrès",
"codepoint": 133,
"surfacepoint": 15590
},
"geometry": {
"type": "Point",
"coordinates": [
-1.54308,
47.213
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc Elisa Mercoeur",
"codepoint": 134
},
"geometry": {
"type": "Point",
"coordinates": [
-1.5513,
47.2139
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Marcel Launay",
"codepoint": 135,
"surfacepoint": 10300
},
"geometry": {
"type": "Point",
"coordinates": [
-1.53599,
47.2037
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Jean Le Gigant",
"codepoint": 136,
"surfacepoint": 6430
},
"geometry": {
"type": "Point",
"coordinates": [
-1.59311,
47.2041
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Toussaint Louverture",
"codepoint": 138,
"surfacepoint": 4737
},
"geometry": {
"type": "Point",
"coordinates": [
-1.61563,
47.1949
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc des Capucins",
"codepoint": 140,
"surfacepoint": 8550
},
"geometry": {
"type": "Point",
"coordinates": [
-1.5628,
47.2253
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc de La Noé Mitrie",
"codepoint": 147,
"surfacepoint": 17200
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52679,
47.2276
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Jean-Baptiste Barre",
"codepoint": 148,
"surfacepoint": 1724
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52757,
47.2226
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Jules Bréchoir",
"codepoint": 149,
"surfacepoint": 2720
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52267,
47.2253
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc de La Roche",
"codepoint": 150,
"surfacepoint": 42260
},
"geometry": {
"type": "Point",
"coordinates": [
-1.51805,
47.2181
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Gustave Roch",
"codepoint": 152,
"surfacepoint": 3279
},
"geometry": {
"type": "Point",
"coordinates": [
-1.55002,
47.2052
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Place Basse Mar",
"codepoint": 153,
"surfacepoint": 1124
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52525,
47.208
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Vertais",
"codepoint": 154,
"surfacepoint": 12320
},
"geometry": {
"type": "Point",
"coordinates": [
-1.54664,
47.2024
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square du Prinquiau",
"codepoint": 155,
"surfacepoint": 2650
},
"geometry": {
"type": "Point",
"coordinates": [
-1.58695,
47.2121
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Canclaux",
"codepoint": 157,
"surfacepoint": 1634
},
"geometry": {
"type": "Point",
"coordinates": [
-1.57448,
47.2144
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square des Combattants d Afrique du Nord",
"codepoint": 158,
"surfacepoint": 1811
},
"geometry": {
"type": "Point",
"coordinates": [
-1.57079,
47.2092
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square de l Edit de Nantes",
"codepoint": 159,
"surfacepoint": 737
},
"geometry": {
"type": "Point",
"coordinates": [
-1.5677,
47.2144
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Marcel Moisan",
"codepoint": 162,
"surfacepoint": 691
},
"geometry": {
"type": "Point",
"coordinates": [
-1.57736,
47.2021
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Pascal Lebée",
"codepoint": 163,
"surfacepoint": 539
},
"geometry": {
"type": "Point",
"coordinates": [
-1.56346,
47.2161
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Etienne Destranges",
"codepoint": 165,
"surfacepoint": 701
},
"geometry": {
"type": "Point",
"coordinates": [
-1.56374,
47.2192
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Centre social de la Pilotière",
"codepoint": 167,
"surfacepoint": 10830
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52408,
47.2451
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Augustin Fresnel",
"codepoint": 168,
"surfacepoint": 5600
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52297,
47.243
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc de Broussais",
"codepoint": 169,
"surfacepoint": 12130
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52178,
47.2264
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc du Grand Blottereau",
"codepoint": 170,
"surfacepoint": 192660
},
"geometry": {
"type": "Point",
"coordinates": [
-1.510645,
47.226179
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Benoni Goulin",
"codepoint": 173,
"surfacepoint": 1979
},
"geometry": {
"type": "Point",
"coordinates": [
-1.55142,
47.2022
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Aire de jeux Jules Sebilleau",
"codepoint": 174,
"surfacepoint": 1820
},
"geometry": {
"type": "Point",
"coordinates": [
-1.53163,
47.2053
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc Say",
"codepoint": 176,
"surfacepoint": 5886
},
"geometry": {
"type": "Point",
"coordinates": [
-1.5683,
47.2124
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square de la Marseillaise",
"codepoint": 177,
"surfacepoint": 1896
},
"geometry": {
"type": "Point",
"coordinates": [
-1.59206,
47.2077
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square des Martyrs Irlandais",
"codepoint": 178,
"surfacepoint": 10710
},
"geometry": {
"type": "Point",
"coordinates": [
-1.60989,
47.2078
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square du Bois de la Musse",
"codepoint": 179,
"surfacepoint": 7902
},
"geometry": {
"type": "Point",
"coordinates": [
-1.61032,
47.2049
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc de La Boucardière",
"codepoint": 180,
"surfacepoint": 26010
},
"geometry": {
"type": "Point",
"coordinates": [
-1.598,
47.2011
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Gaston Michel",
"codepoint": 182,
"surfacepoint": 1788
},
"geometry": {
"type": "Point",
"coordinates": [
-1.57143,
47.235
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Proust Bergson",
"codepoint": 183,
"surfacepoint": 1344
},
"geometry": {
"type": "Point",
"coordinates": [
-1.57078,
47.2544
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc du Petit Port",
"codepoint": 187,
"surfacepoint": 493800
},
"geometry": {
"type": "Point",
"coordinates": [
-1.55815,
47.2487
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc de Beaulieu",
"codepoint": 211,
"surfacepoint": 133700
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52102,
47.2115
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Promenade des Renards",
"codepoint": 214,
"surfacepoint": 28030
},
"geometry": {
"type": "Point",
"coordinates": [
-1.55817,
47.2582
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Gabriel Chéreau",
"codepoint": 347,
"surfacepoint": 938
},
"geometry": {
"type": "Point",
"coordinates": [
-1.56286,
47.2111
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square des Courtils",
"codepoint": 382,
"surfacepoint": 4198
},
"geometry": {
"type": "Point",
"coordinates": [
-1.59311,
47.2007
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc Mélies",
"codepoint": 397,
"surfacepoint": 12000
},
"geometry": {
"type": "Point",
"coordinates": [
-1.58193,
47.2319
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Cimetière Parc",
"codepoint": 433,
"surfacepoint": 71937
},
"geometry": {
"type": "Point",
"coordinates": [
-1.583338,
47.270511
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Saint François",
"codepoint": 507,
"surfacepoint": 1747
},
"geometry": {
"type": "Point",
"coordinates": [
-1.54537,
47.2182
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin de l Hôtel de ville",
"codepoint": 516,
"surfacepoint": 7507
},
"geometry": {
"type": "Point",
"coordinates": [
-1.55457,
47.2184
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Château des Ducs",
"codepoint": 518,
"surfacepoint": 8523
},
"geometry": {
"type": "Point",
"coordinates": [
-1.54918,
47.2162
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin de la Psalette",
"codepoint": 519,
"surfacepoint": 2387
},
"geometry": {
"type": "Point",
"coordinates": [
-1.54993,
47.2178
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Promenade du Mémorial de l Esclavage",
"codepoint": 574,
"surfacepoint": 7677
},
"geometry": {
"type": "Point",
"coordinates": [
-1.56542,
47.2093
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin de l Hôtel de région",
"codepoint": 617,
"surfacepoint": 3440
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52425,
47.2117
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square de la Hunaudais",
"codepoint": 847,
"surfacepoint": 455
},
"geometry": {
"type": "Point",
"coordinates": [
-1.585572,
47.210138
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Place Wattignies",
"codepoint": 1060,
"surfacepoint": 2753
},
"geometry": {
"type": "Point",
"coordinates": [
-1.54799,
47.2037
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin des quatre jeudis",
"codepoint": 1074,
"surfacepoint": 13010
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52001,
47.2658
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin du Nadir",
"codepoint": 1075,
"surfacepoint": 2897
},
"geometry": {
"type": "Point",
"coordinates": [
-1.51899,
47.267
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin du Zenith",
"codepoint": 1076,
"surfacepoint": 1595
},
"geometry": {
"type": "Point",
"coordinates": [
-1.51681,
47.2688
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin des Farfadets",
"codepoint": 1077,
"surfacepoint": 3747
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52139,
47.2669
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc de La Chantrerie",
"codepoint": 1078,
"surfacepoint": 176600
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52457,
47.2874
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc potager Fournillère",
"codepoint": 1091,
"surfacepoint": 31570
},
"geometry": {
"type": "Point",
"coordinates": [
-1.59055,
47.2124
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Aire du Stade de la Beaujoire",
"codepoint": 1182,
"surfacepoint": 105400
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52305,
47.2568
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square du Vieux Parc de Sèvre",
"codepoint": 1228,
"surfacepoint": 331
},
"geometry": {
"type": "Point",
"coordinates": [
-1.51969,
47.1828
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc des Chantiers",
"codepoint": 1237,
"surfacepoint": 13000
},
"geometry": {
"type": "Point",
"coordinates": [
-1.56719,
47.2059
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc potager Croissant",
"codepoint": 1297,
"surfacepoint": 22320
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52432,
47.2354
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc de La Gaudinière",
"codepoint": 1324,
"surfacepoint": 125000
},
"geometry": {
"type": "Point",
"coordinates": [
-1.5795,
47.2442
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square de la Halvèque",
"codepoint": 1330,
"surfacepoint": 28170
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52003,
47.2544
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Jean Heurtin",
"codepoint": 1342,
"surfacepoint": 813
},
"geometry": {
"type": "Point",
"coordinates": [
-1.54472,
47.2149
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc urbain du Pin Sec",
"codepoint": 1346,
"surfacepoint": 25040
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52,
47.2442
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc urbain Grande Noue Croissant",
"codepoint": 1351,
"surfacepoint": 95630
},
"geometry": {
"type": "Point",
"coordinates": [
-1.51934,
47.2379
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc urbain Port Boyer",
"codepoint": 1352,
"surfacepoint": 54430
},
"geometry": {
"type": "Point",
"coordinates": [
-1.54306,
47.2415
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc du Clos Toreau",
"codepoint": 1356,
"surfacepoint": 43500
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52784,
47.1949
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc urbain de Pirmil",
"codepoint": 1357,
"surfacepoint": 13410
},
"geometry": {
"type": "Point",
"coordinates": [
-1.54043,
47.195
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc urbain de La Boissière",
"codepoint": 1370,
"surfacepoint": 16680
},
"geometry": {
"type": "Point",
"coordinates": [
-1.56797,
47.2543
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc urbain de La Petite Sensive",
"codepoint": 1371,
"surfacepoint": 25700
},
"geometry": {
"type": "Point",
"coordinates": [
-1.56438,
47.261
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc urbain du Bout des Pavés",
"codepoint": 1372,
"surfacepoint": 29360
},
"geometry": {
"type": "Point",
"coordinates": [
-1.57681,
47.2587
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc urbain Les Landes-Bruyères",
"codepoint": 1373,
"surfacepoint": 71190
},
"geometry": {
"type": "Point",
"coordinates": [
-1.5778,
47.2656
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc urbain Chêne des Anglais",
"codepoint": 1374,
"surfacepoint": 29690
},
"geometry": {
"type": "Point",
"coordinates": [
-1.57294,
47.26
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc potager de La Crapaudine",
"codepoint": 1389,
"surfacepoint": 16580
},
"geometry": {
"type": "Point",
"coordinates": [
-1.53022,
47.1904
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc de la Moutonnerie",
"codepoint": 1391,
"surfacepoint": 15670
},
"geometry": {
"type": "Point",
"coordinates": [
-1.533078,
47.221115
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Place de la Guirouée",
"codepoint": 1471,
"surfacepoint": 1345
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52744,
47.2085
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Barbara",
"codepoint": 1475,
"surfacepoint": 396
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52308,
47.2661
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square du Lait de Mai",
"codepoint": 1479,
"surfacepoint": 1747
},
"geometry": {
"type": "Point",
"coordinates": [
-1.54827,
47.2121
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Saint Pasquier",
"codepoint": 1507,
"surfacepoint": 395
},
"geometry": {
"type": "Point",
"coordinates": [
-1.56607,
47.2287
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square des Maraîches",
"codepoint": 1532,
"surfacepoint": 5672
},
"geometry": {
"type": "Point",
"coordinates": [
-1.51612,
47.2462
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Louis Feuillade",
"codepoint": 1536,
"surfacepoint": 3928
},
"geometry": {
"type": "Point",
"coordinates": [
-1.58544,
47.2305
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin Mabon",
"codepoint": 1580,
"surfacepoint": 2686
},
"geometry": {
"type": "Point",
"coordinates": [
-1.55968,
47.2076
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin des Nectars",
"codepoint": 1588,
"surfacepoint": 2027
},
"geometry": {
"type": "Point",
"coordinates": [
-1.58254,
47.238
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Félix Thomas",
"codepoint": 1599,
"surfacepoint": 1796
},
"geometry": {
"type": "Point",
"coordinates": [
-1.55333,
47.231
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square de la Pilotière",
"codepoint": 1638,
"surfacepoint": 3792
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52475,
47.245
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Zac Pilleux Nord",
"codepoint": 1642,
"surfacepoint": 3803
},
"geometry": {
"type": "Point",
"coordinates": [
-1.58043,
47.2076
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Observatoire de la Petite Amazonie",
"codepoint": 1673,
"surfacepoint": 172000
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52598,
47.2175
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Louis Pergaud",
"codepoint": 1680,
"surfacepoint": 1903
},
"geometry": {
"type": "Point",
"coordinates": [
-1.51875,
47.2686
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square de Chypre",
"codepoint": 1713,
"surfacepoint": 5086
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52262,
47.2165
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Hongrie",
"codepoint": 1725,
"surfacepoint": 2976
},
"geometry": {
"type": "Point",
"coordinates": [
-1.52397,
47.2162
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin des Fonderies",
"codepoint": 1817,
"surfacepoint": 3600
},
"geometry": {
"type": "Point",
"coordinates": [
-1.54487,
47.2057
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Pablo Picasso",
"codepoint": 1846,
"surfacepoint": 1605
},
"geometry": {
"type": "Point",
"coordinates": [
-1.53692,
47.2148
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square René Guy Cadou",
"codepoint": 1889,
"surfacepoint": 2967
},
"geometry": {
"type": "Point",
"coordinates": [
-1.56877,
47.2562
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Promenade de l Amande",
"codepoint": 1921,
"surfacepoint": 62010
},
"geometry": {
"type": "Point",
"coordinates": [
-1.57112,
47.2631
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square de l Embellie",
"codepoint": 1934,
"surfacepoint": 328
},
"geometry": {
"type": "Point",
"coordinates": [
-1.516221,
47.266902
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Robert Desnos",
"codepoint": 1936,
"surfacepoint": 1967
},
"geometry": {
"type": "Point",
"coordinates": [
-1.59614,
47.2174
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc des Oblates",
"codepoint": 1937,
"surfacepoint": 30000
},
"geometry": {
"type": "Point",
"coordinates": [
-1.58544,
47.1999
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Les jardins de Bottière Chênaie",
"codepoint": 1946,
"surfacepoint": 29450
},
"geometry": {
"type": "Point",
"coordinates": [
-1.51478,
47.2422
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin Sainte Croix",
"codepoint": 1947,
"surfacepoint": 607
},
"geometry": {
"type": "Point",
"coordinates": [
-1.55397,
47.2152
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Maurice et Katia Krafft",
"codepoint": 1991,
"surfacepoint": 785
},
"geometry": {
"type": "Point",
"coordinates": [
-1.51484,
47.2396
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Marco Polo",
"codepoint": 1992,
"surfacepoint": 555
},
"geometry": {
"type": "Point",
"coordinates": [
-1.51546,
47.2403
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square du Général de La Bollardière",
"codepoint": 2013,
"surfacepoint": 1869
},
"geometry": {
"type": "Point",
"coordinates": [
-1.5295,
47.2093
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Aire de jeux Angleterre",
"codepoint": 2021,
"surfacepoint": 1274
},
"geometry": {
"type": "Point",
"coordinates": [
-1.527988,
47.214874
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Bassin du Tripode",
"codepoint": 2022,
"surfacepoint": 7266
},
"geometry": {
"type": "Point",
"coordinates": [
-1.53926,
47.2089
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin du Musée Dobrée",
"codepoint": 2023,
"surfacepoint": 8248
},
"geometry": {
"type": "Point",
"coordinates": [
-1.5664,
47.2124
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square du Grand Pâtis",
"codepoint": 2028,
"surfacepoint": 508
},
"geometry": {
"type": "Point",
"coordinates": [
-1.522543,
47.271176
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardins à Quai",
"codepoint": 2031,
"surfacepoint": 7248
},
"geometry": {
"type": "Point",
"coordinates": [
-1.55345,
47.2209
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc du Jamet",
"codepoint": 2032,
"surfacepoint": 6665
},
"geometry": {
"type": "Point",
"coordinates": [
-1.60545,
47.207941
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Parc de Belle Ile",
"codepoint": 2033,
"surfacepoint": 8414
},
"geometry": {
"type": "Point",
"coordinates": [
-1.543085,
47.246494
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square Nina Simone",
"codepoint": 2035,
"surfacepoint": 1881
},
"geometry": {
"type": "Point",
"coordinates": [
-1.533178,
47.217138
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Square du Réservoir",
"codepoint": 2038,
"surfacepoint": 3807
},
"geometry": {
"type": "Point",
"coordinates": [
-1.509737,
47.241267
]
}
},
{
"type": "Feature",
"properties": {
"libellepoint": "Jardin extraordinaire",
"codepoint": 2114,
"surfacepoint": 12000
},
"geometry": {
"type": "Point",
"coordinates": [
-1.579731,
47.200713
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment