Compare commits
2 Commits
69ea03bc5b
...
40d91b8961
Author | SHA1 | Date | |
---|---|---|---|
40d91b8961 | |||
168bba0e3e |
@ -1,18 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
||||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" lang="en"/>
|
|
||||||
<title>OSM3S Response</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<p>The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.</p>
|
|
||||||
<p><strong style="color:#FF0000">Error</strong>: line 1: parse error: Unknown type ""[out:json][timeout:25];(node["" </p>
|
|
||||||
<p><strong style="color:#FF0000">Error</strong>: line 1: parse error: An empty query is not allowed </p>
|
|
||||||
<p><strong style="color:#FF0000">Error</strong>: line 1: parse error: ';' expected - 'harassment_prevention' found. </p>
|
|
||||||
<p><strong style="color:#FF0000">Error</strong>: line 1: parse error: Unexpected end of input. </p>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -24,11 +24,12 @@ const allowed_configs = [
|
|||||||
'mappingIssy2Roues', 'mappingConfigIRVE', 'mappingConfigIRVEFromOsmose',
|
'mappingIssy2Roues', 'mappingConfigIRVE', 'mappingConfigIRVEFromOsmose',
|
||||||
'mappingConfigIRVE_simple', 'mappingTest', 'ConfigIRVE',
|
'mappingConfigIRVE_simple', 'mappingTest', 'ConfigIRVE',
|
||||||
'mappingRouenParkingVelos', 'mappingFINESS', 'MappingArbresIssy',
|
'mappingRouenParkingVelos', 'mappingFINESS', 'MappingArbresIssy',
|
||||||
'MappingArbres92', 'MappingMuseums', 'MappingRouenPAV', 'MappingAskAngela'
|
'MappingArbres92', 'MappingMuseums', 'MappingRouenPAV', 'MappingAskAngela', 'MappingPlanningFamlial',
|
||||||
];
|
];
|
||||||
|
|
||||||
const minimist = require('minimist');
|
const minimist = require('minimist');
|
||||||
import MappingAskAngela from "./mappings/converters/configAskAngela";
|
import MappingAskAngela from "./mappings/converters/configAskAngela";
|
||||||
|
import MappingPlanningFamlial from "./mappings/converters/configPlanningFamilial";
|
||||||
|
|
||||||
const debugLog = utils.debugLog;
|
const debugLog = utils.debugLog;
|
||||||
|
|
||||||
@ -454,6 +455,8 @@ function setMappingConfigFromName(engine_conf_choice: string) {
|
|||||||
Mapping_engine.setConfig(MappingRouenPAV)
|
Mapping_engine.setConfig(MappingRouenPAV)
|
||||||
} else if (engine_conf_choice == 'MappingAskAngela') {
|
} else if (engine_conf_choice == 'MappingAskAngela') {
|
||||||
Mapping_engine.setConfig(MappingAskAngela)
|
Mapping_engine.setConfig(MappingAskAngela)
|
||||||
|
}else if (engine_conf_choice == 'MappingPlanningFamlial') {
|
||||||
|
Mapping_engine.setConfig(MappingPlanningFamlial)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
Mapping_engine.setConfig(mappingConfigIRVE)
|
Mapping_engine.setConfig(mappingConfigIRVE)
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -34,17 +34,18 @@ for article in articles:
|
|||||||
|
|
||||||
antenne = {
|
antenne = {
|
||||||
"type": "Feature",
|
"type": "Feature",
|
||||||
|
"geometry":geometry,
|
||||||
"properties": {
|
"properties": {
|
||||||
"nom": titre,
|
"nom": titre,
|
||||||
"adresse": adresse,
|
"adresse": adresse,
|
||||||
"telephone": telephone
|
"telephone": telephone
|
||||||
},
|
},
|
||||||
"geometry":{
|
|
||||||
"coordinates": [latitude,longitude],
|
|
||||||
"type":"Point"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
print(antenne)
|
||||||
|
|
||||||
antennes.append(antenne)
|
antennes.append(antenne)
|
||||||
|
|
||||||
# Convertir la liste des antennes en un GeoDataFrame
|
# Convertir la liste des antennes en un GeoDataFrame
|
||||||
|
39
mappings/converters/configPlanningFamilial.ts
Normal file
39
mappings/converters/configPlanningFamilial.ts
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
/**
|
||||||
|
* commerces adhérant à Ask Angela
|
||||||
|
* https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dfamily_planning
|
||||||
|
*/
|
||||||
|
import MappingConfigType from "../mapping-config.type";
|
||||||
|
|
||||||
|
const MappingPlanningFamlial: MappingConfigType = {
|
||||||
|
config_name: "planning familial",
|
||||||
|
config_author: "tykayn <contact@cipherbliss.com>",
|
||||||
|
default_properties_of_point: {
|
||||||
|
'healthcare:speciality': 'family_planning',
|
||||||
|
},
|
||||||
|
source: {
|
||||||
|
// source faite à partir de data scraping du site français
|
||||||
|
geojson_path: '',
|
||||||
|
url: ''
|
||||||
|
},
|
||||||
|
filters: {
|
||||||
|
// exclude_point_if_tag_not_empty: ['id_osm'], // on peut exclure des données converties celles qui sont déjà avec un identifiant openstreetmap afin de favoriser l'intégration san avoir à gérer les doublons
|
||||||
|
// offset: 1
|
||||||
|
},
|
||||||
|
add_not_mapped_tags_too: false,
|
||||||
|
boolean_keys: [],
|
||||||
|
tags_to_ignore_if_value_is: ['Non renseigne'],
|
||||||
|
tags: {
|
||||||
|
// ******* opendata de toulouse START **************
|
||||||
|
nom : {
|
||||||
|
key_converted: 'name',
|
||||||
|
convert_to_name: true,
|
||||||
|
},
|
||||||
|
telephone : {
|
||||||
|
key_converted: 'contact:phone',
|
||||||
|
convert_to_phone: true,
|
||||||
|
},
|
||||||
|
// ******* opendata de toulouse END **************
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default MappingPlanningFamlial;
|
@ -6772,7 +6772,7 @@ amenity;capacity;name;operator;wheelchair;id;latitude;longitude
|
|||||||
;2;;SPBR1;;8975354609.0;4.0728161;46.0363917
|
;2;;SPBR1;;8975354609.0;4.0728161;46.0363917
|
||||||
;4;;E-totem;;8976581809.0;2.6720206;48.0173704
|
;4;;E-totem;;8976581809.0;2.6720206;48.0173704
|
||||||
;;;;;8979135998.0;-3.5393844;48.2758672
|
;;;;;8979135998.0;-3.5393844;48.2758672
|
||||||
;;;;;8979403446.0;7.9452314;49.0345386
|
;2x22;;ES;;8979403446.0;7.9453091;49.0346999
|
||||||
;;;;;8983332708.0;4.7376887;43.9576636
|
;;;;;8983332708.0;4.7376887;43.9576636
|
||||||
;;;;;8983332709.0;4.7376949;43.9576922
|
;;;;;8983332709.0;4.7376949;43.9576922
|
||||||
;;;;;8983332710.0;4.7376999;43.9577154
|
;;;;;8983332710.0;4.7376999;43.9577154
|
||||||
@ -13645,7 +13645,7 @@ amenity;capacity;name;operator;wheelchair;id;latitude;longitude
|
|||||||
;;;;;11771947694.0;3.2991443;49.3798797
|
;;;;;11771947694.0;3.2991443;49.3798797
|
||||||
;;;;;11771952697.0;2.1209341;49.4342379
|
;;;;;11771952697.0;2.1209341;49.4342379
|
||||||
;2;;SPBR1;;11771954964.0;6.270375;45.7561824
|
;2;;SPBR1;;11771954964.0;6.270375;45.7561824
|
||||||
;3;Volvo;DRIVECO;;11771970611.0;6.1649662;49.1302901
|
;3;Volvo;DRIVECO;;11771970611.0;6.1648592;49.1301322
|
||||||
;2;;SPBR1;;11771976585.0;6.1016192;45.8880017
|
;2;;SPBR1;;11771976585.0;6.1016192;45.8880017
|
||||||
;2;;SPBR1;;11771976658.0;6.090827;45.9141079
|
;2;;SPBR1;;11771976658.0;6.090827;45.9141079
|
||||||
;2;;SPBR1;;11771991635.0;6.0832608;45.8625866
|
;2;;SPBR1;;11771991635.0;6.0832608;45.8625866
|
||||||
@ -13732,7 +13732,7 @@ amenity;capacity;name;operator;wheelchair;id;latitude;longitude
|
|||||||
;2;;Freshmile SAS;yes;11777818803.0;0.5268522;43.191694
|
;2;;Freshmile SAS;yes;11777818803.0;0.5268522;43.191694
|
||||||
;2;;Freshmile SAS;yes;11777831512.0;1.3117578;43.4989099
|
;2;;Freshmile SAS;yes;11777831512.0;1.3117578;43.4989099
|
||||||
;2;;Freshmile SAS;yes;11777862719.0;1.5299609;43.7668442
|
;2;;Freshmile SAS;yes;11777862719.0;1.5299609;43.7668442
|
||||||
;2;;UEM;;11778445636.0;6.1708983;49.130452
|
;2;;UEM;;11778445636.0;6.1708345;49.130241
|
||||||
;2;;Freshmile;;11778455288.0;6.1761555;49.1099462
|
;2;;Freshmile;;11778455288.0;6.1761555;49.1099462
|
||||||
;2;;UEM;;11778469845.0;6.1728445;49.1505928
|
;2;;UEM;;11778469845.0;6.1728445;49.1505928
|
||||||
;2;;UEM;;11778469846.0;6.1727674;49.1505914
|
;2;;UEM;;11778469846.0;6.1727674;49.1505914
|
||||||
@ -15114,7 +15114,13 @@ amenity;capacity;name;operator;wheelchair;id;latitude;longitude
|
|||||||
;2;;Communauté d’agglomération de l’Auxerrois;;12256429115.0;3.5496201;47.8502284
|
;2;;Communauté d’agglomération de l’Auxerrois;;12256429115.0;3.5496201;47.8502284
|
||||||
;2;;Communauté d’agglomération de l’Auxerrois;;12256429116.0;3.5496564;47.8501888
|
;2;;Communauté d’agglomération de l’Auxerrois;;12256429116.0;3.5496564;47.8501888
|
||||||
;2;;Communauté d’agglomération de l’Auxerrois;;12256429117.0;3.5497012;47.8500958
|
;2;;Communauté d’agglomération de l’Auxerrois;;12256429117.0;3.5497012;47.8500958
|
||||||
;3;;;;12257933467.0;6.6764072;43.402178
|
;3;;le jas de pebrier;;12257933467.0;6.6764072;43.402178
|
||||||
;2;;la métropole mobilité;;12258060284.0;5.445624;43.5190996
|
;2;;la métropole mobilité;;12258060284.0;5.445624;43.5190996
|
||||||
;;;;;12258346802.0;-0.2348171;49.2494624
|
;;;;;12258346802.0;-0.2348171;49.2494624
|
||||||
;2;;;;12261076795.0;-1.1455784;45.7173746
|
;2;;;;12261076795.0;-1.1455784;45.7173746
|
||||||
|
;2x22;;ES;;12262790493.0;7.9453272;49.0347526
|
||||||
|
;150kW DC;;Bouygues Energies & Services;;12264493261.0;1.3785671;48.7306938
|
||||||
|
;150kW DC;;Bouygues Energies & Services;;12264493262.0;1.3786131;48.7306775
|
||||||
|
;;;;;12264864480.0;-3.1649589;47.3460166
|
||||||
|
;6;;Metropolis;;12265579066.0;2.2678535;48.8249759
|
||||||
|
;;;;;12266032016.0;7.2796837;48.8194553
|
||||||
|
Can't render this file because it is too large.
|
@ -189253,14 +189253,22 @@
|
|||||||
"type": "node",
|
"type": "node",
|
||||||
"id": 8979403446,
|
"id": 8979403446,
|
||||||
"tags": {
|
"tags": {
|
||||||
"amenity": "charging_station"
|
"access": "yes",
|
||||||
|
"amenity": "charging_station",
|
||||||
|
"brand": "Planigy",
|
||||||
|
"capacity": "2x22",
|
||||||
|
"fee": "yes",
|
||||||
|
"operator": "ES",
|
||||||
|
"payment:credit_cards": "yes",
|
||||||
|
"payment:debit_cards": "yes",
|
||||||
|
"ref": "MAT-009303"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"geometry": {
|
"geometry": {
|
||||||
"type": "Point",
|
"type": "Point",
|
||||||
"coordinates": [
|
"coordinates": [
|
||||||
7.9452314,
|
7.9453091,
|
||||||
49.0345386
|
49.0346999
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -241065,8 +241073,8 @@
|
|||||||
"addr:city": "Bo\u00e9",
|
"addr:city": "Bo\u00e9",
|
||||||
"addr:street": "Avenue de Lacapelette",
|
"addr:street": "Avenue de Lacapelette",
|
||||||
"amenity": "charging_station",
|
"amenity": "charging_station",
|
||||||
"brand": "Tesla Supercharger",
|
"brand": "Tesla, Inc.",
|
||||||
"brand:wikidata": "Q17089620",
|
"brand:wikidata": "Q478214",
|
||||||
"capacity": "20",
|
"capacity": "20",
|
||||||
"email": "charging-france@tesla.com",
|
"email": "charging-france@tesla.com",
|
||||||
"fee": "yes",
|
"fee": "yes",
|
||||||
@ -372179,8 +372187,8 @@
|
|||||||
"geometry": {
|
"geometry": {
|
||||||
"type": "Point",
|
"type": "Point",
|
||||||
"coordinates": [
|
"coordinates": [
|
||||||
6.1649662,
|
6.1648592,
|
||||||
49.1302901
|
49.1301322
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -375088,7 +375096,6 @@
|
|||||||
"capacity": "2",
|
"capacity": "2",
|
||||||
"charging_station:output": "22 kW",
|
"charging_station:output": "22 kW",
|
||||||
"fee": "no",
|
"fee": "no",
|
||||||
"fixme": "position",
|
|
||||||
"network": "Freshmile",
|
"network": "Freshmile",
|
||||||
"opening_hours": "24/7",
|
"opening_hours": "24/7",
|
||||||
"operator": "UEM",
|
"operator": "UEM",
|
||||||
@ -375101,8 +375108,8 @@
|
|||||||
"geometry": {
|
"geometry": {
|
||||||
"type": "Point",
|
"type": "Point",
|
||||||
"coordinates": [
|
"coordinates": [
|
||||||
6.1708983,
|
6.1708345,
|
||||||
49.130452
|
49.130241
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -392777,6 +392784,8 @@
|
|||||||
"id": 12041836946,
|
"id": 12041836946,
|
||||||
"tags": {
|
"tags": {
|
||||||
"amenity": "charging_station",
|
"amenity": "charging_station",
|
||||||
|
"brand": "Ionity",
|
||||||
|
"brand:wikidata": "Q42717773",
|
||||||
"capacity": "1",
|
"capacity": "1",
|
||||||
"covered": "no",
|
"covered": "no",
|
||||||
"fee": "yes",
|
"fee": "yes",
|
||||||
@ -412017,7 +412026,8 @@
|
|||||||
"id": 12257933467,
|
"id": 12257933467,
|
||||||
"tags": {
|
"tags": {
|
||||||
"amenity": "charging_station",
|
"amenity": "charging_station",
|
||||||
"capacity": "3"
|
"capacity": "3",
|
||||||
|
"operator": "le jas de pebrier"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"geometry": {
|
"geometry": {
|
||||||
@ -412081,6 +412091,135 @@
|
|||||||
45.7173746
|
45.7173746
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"properties": {
|
||||||
|
"type": "node",
|
||||||
|
"id": 12262790493,
|
||||||
|
"tags": {
|
||||||
|
"access": "yes",
|
||||||
|
"amenity": "charging_station",
|
||||||
|
"brand": "Planigy",
|
||||||
|
"capacity": "2x22",
|
||||||
|
"fee": "yes",
|
||||||
|
"operator": "ES",
|
||||||
|
"payment:credit_cards": "yes",
|
||||||
|
"payment:debit_cards": "yes",
|
||||||
|
"ref": "MAT-033989"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
7.9453272,
|
||||||
|
49.0347526
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"properties": {
|
||||||
|
"type": "node",
|
||||||
|
"id": 12264493261,
|
||||||
|
"tags": {
|
||||||
|
"access": "yes",
|
||||||
|
"amenity": "charging_station",
|
||||||
|
"brand": "aliz\u00e9",
|
||||||
|
"capacity": "150kW DC",
|
||||||
|
"fee": "yes",
|
||||||
|
"operator": "Bouygues Energies & Services",
|
||||||
|
"operator:wikidata": "Q3046208",
|
||||||
|
"payment:app": "yes",
|
||||||
|
"source": "https://dreux.com/le-reseau-de-recharge/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
1.3785671,
|
||||||
|
48.7306938
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"properties": {
|
||||||
|
"type": "node",
|
||||||
|
"id": 12264493262,
|
||||||
|
"tags": {
|
||||||
|
"access": "yes",
|
||||||
|
"amenity": "charging_station",
|
||||||
|
"brand": "aliz\u00e9",
|
||||||
|
"capacity": "150kW DC",
|
||||||
|
"fee": "yes",
|
||||||
|
"operator": "Bouygues Energies & Services",
|
||||||
|
"operator:wikidata": "Q3046208",
|
||||||
|
"payment:app": "yes",
|
||||||
|
"source": "https://dreux.com/le-reseau-de-recharge/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
1.3786131,
|
||||||
|
48.7306775
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"properties": {
|
||||||
|
"type": "node",
|
||||||
|
"id": 12264864480,
|
||||||
|
"tags": {
|
||||||
|
"amenity": "charging_station",
|
||||||
|
"source": "survey 2024;pcrs 2018"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
-3.1649589,
|
||||||
|
47.3460166
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"properties": {
|
||||||
|
"type": "node",
|
||||||
|
"id": 12265579066,
|
||||||
|
"tags": {
|
||||||
|
"amenity": "charging_station",
|
||||||
|
"capacity": "6",
|
||||||
|
"operator": "Metropolis"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.2678535,
|
||||||
|
48.8249759
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"properties": {
|
||||||
|
"type": "node",
|
||||||
|
"id": 12266032016,
|
||||||
|
"tags": {
|
||||||
|
"amenity": "charging_station"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
7.2796837,
|
||||||
|
48.8194553
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
"version": 0.6,
|
"version": 0.6,
|
||||||
"generator": "Overpass API 0.7.62.1 084b4234",
|
"generator": "Overpass API 0.7.62.1 084b4234",
|
||||||
"osm3s": {
|
"osm3s": {
|
||||||
"timestamp_osm_base": "2024-10-18T13:32:59Z",
|
"timestamp_osm_base": "2024-10-19T20:42:41Z",
|
||||||
"timestamp_areas_base": "2024-10-08T10:29:11Z",
|
"timestamp_areas_base": "2024-10-09T00:21:11Z",
|
||||||
"copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL."
|
"copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL."
|
||||||
},
|
},
|
||||||
"elements": [
|
"elements": [
|
||||||
@ -135073,10 +135073,18 @@
|
|||||||
{
|
{
|
||||||
"type": "node",
|
"type": "node",
|
||||||
"id": 8979403446,
|
"id": 8979403446,
|
||||||
"lat": 49.0345386,
|
"lat": 49.0346999,
|
||||||
"lon": 7.9452314,
|
"lon": 7.9453091,
|
||||||
"tags": {
|
"tags": {
|
||||||
"amenity": "charging_station"
|
"access": "yes",
|
||||||
|
"amenity": "charging_station",
|
||||||
|
"brand": "Planigy",
|
||||||
|
"capacity": "2x22",
|
||||||
|
"fee": "yes",
|
||||||
|
"operator": "ES",
|
||||||
|
"payment:credit_cards": "yes",
|
||||||
|
"payment:debit_cards": "yes",
|
||||||
|
"ref": "MAT-009303"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -170896,8 +170904,8 @@
|
|||||||
"addr:city": "Boé",
|
"addr:city": "Boé",
|
||||||
"addr:street": "Avenue de Lacapelette",
|
"addr:street": "Avenue de Lacapelette",
|
||||||
"amenity": "charging_station",
|
"amenity": "charging_station",
|
||||||
"brand": "Tesla Supercharger",
|
"brand": "Tesla, Inc.",
|
||||||
"brand:wikidata": "Q17089620",
|
"brand:wikidata": "Q478214",
|
||||||
"capacity": "20",
|
"capacity": "20",
|
||||||
"email": "charging-france@tesla.com",
|
"email": "charging-france@tesla.com",
|
||||||
"fee": "yes",
|
"fee": "yes",
|
||||||
@ -262990,8 +262998,8 @@
|
|||||||
{
|
{
|
||||||
"type": "node",
|
"type": "node",
|
||||||
"id": 11771970611,
|
"id": 11771970611,
|
||||||
"lat": 49.1302901,
|
"lat": 49.1301322,
|
||||||
"lon": 6.1649662,
|
"lon": 6.1648592,
|
||||||
"tags": {
|
"tags": {
|
||||||
"amenity": "charging_station",
|
"amenity": "charging_station",
|
||||||
"authentication:contactless": "yes",
|
"authentication:contactless": "yes",
|
||||||
@ -265223,15 +265231,14 @@
|
|||||||
{
|
{
|
||||||
"type": "node",
|
"type": "node",
|
||||||
"id": 11778445636,
|
"id": 11778445636,
|
||||||
"lat": 49.1304520,
|
"lat": 49.1302410,
|
||||||
"lon": 6.1708983,
|
"lon": 6.1708345,
|
||||||
"tags": {
|
"tags": {
|
||||||
"amenity": "charging_station",
|
"amenity": "charging_station",
|
||||||
"brand": "Connect&Go",
|
"brand": "Connect&Go",
|
||||||
"capacity": "2",
|
"capacity": "2",
|
||||||
"charging_station:output": "22 kW",
|
"charging_station:output": "22 kW",
|
||||||
"fee": "no",
|
"fee": "no",
|
||||||
"fixme": "position",
|
|
||||||
"network": "Freshmile",
|
"network": "Freshmile",
|
||||||
"opening_hours": "24/7",
|
"opening_hours": "24/7",
|
||||||
"operator": "UEM",
|
"operator": "UEM",
|
||||||
@ -277520,6 +277527,8 @@
|
|||||||
"lon": 3.0532527,
|
"lon": 3.0532527,
|
||||||
"tags": {
|
"tags": {
|
||||||
"amenity": "charging_station",
|
"amenity": "charging_station",
|
||||||
|
"brand": "Ionity",
|
||||||
|
"brand:wikidata": "Q42717773",
|
||||||
"capacity": "1",
|
"capacity": "1",
|
||||||
"covered": "no",
|
"covered": "no",
|
||||||
"fee": "yes",
|
"fee": "yes",
|
||||||
@ -291104,7 +291113,8 @@
|
|||||||
"lon": 6.6764072,
|
"lon": 6.6764072,
|
||||||
"tags": {
|
"tags": {
|
||||||
"amenity": "charging_station",
|
"amenity": "charging_station",
|
||||||
"capacity": "3"
|
"capacity": "3",
|
||||||
|
"operator": "le jas de pebrier"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -291136,6 +291146,87 @@
|
|||||||
"amenity": "charging_station",
|
"amenity": "charging_station",
|
||||||
"capacity": "2"
|
"capacity": "2"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"id": 12262790493,
|
||||||
|
"lat": 49.0347526,
|
||||||
|
"lon": 7.9453272,
|
||||||
|
"tags": {
|
||||||
|
"access": "yes",
|
||||||
|
"amenity": "charging_station",
|
||||||
|
"brand": "Planigy",
|
||||||
|
"capacity": "2x22",
|
||||||
|
"fee": "yes",
|
||||||
|
"operator": "ES",
|
||||||
|
"payment:credit_cards": "yes",
|
||||||
|
"payment:debit_cards": "yes",
|
||||||
|
"ref": "MAT-033989"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"id": 12264493261,
|
||||||
|
"lat": 48.7306938,
|
||||||
|
"lon": 1.3785671,
|
||||||
|
"tags": {
|
||||||
|
"access": "yes",
|
||||||
|
"amenity": "charging_station",
|
||||||
|
"brand": "alizé",
|
||||||
|
"capacity": "150kW DC",
|
||||||
|
"fee": "yes",
|
||||||
|
"operator": "Bouygues Energies & Services",
|
||||||
|
"operator:wikidata": "Q3046208",
|
||||||
|
"payment:app": "yes",
|
||||||
|
"source": "https://dreux.com/le-reseau-de-recharge/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"id": 12264493262,
|
||||||
|
"lat": 48.7306775,
|
||||||
|
"lon": 1.3786131,
|
||||||
|
"tags": {
|
||||||
|
"access": "yes",
|
||||||
|
"amenity": "charging_station",
|
||||||
|
"brand": "alizé",
|
||||||
|
"capacity": "150kW DC",
|
||||||
|
"fee": "yes",
|
||||||
|
"operator": "Bouygues Energies & Services",
|
||||||
|
"operator:wikidata": "Q3046208",
|
||||||
|
"payment:app": "yes",
|
||||||
|
"source": "https://dreux.com/le-reseau-de-recharge/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"id": 12264864480,
|
||||||
|
"lat": 47.3460166,
|
||||||
|
"lon": -3.1649589,
|
||||||
|
"tags": {
|
||||||
|
"amenity": "charging_station",
|
||||||
|
"source": "survey 2024;pcrs 2018"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"id": 12265579066,
|
||||||
|
"lat": 48.8249759,
|
||||||
|
"lon": 2.2678535,
|
||||||
|
"tags": {
|
||||||
|
"amenity": "charging_station",
|
||||||
|
"capacity": "6",
|
||||||
|
"operator": "Metropolis"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"id": 12266032016,
|
||||||
|
"lat": 48.8194553,
|
||||||
|
"lon": 7.2796837,
|
||||||
|
"tags": {
|
||||||
|
"amenity": "charging_station"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
]
|
]
|
||||||
|
980
output/antennes_planning_familial.json
Normal file
980
output/antennes_planning_familial.json
Normal file
@ -0,0 +1,980 @@
|
|||||||
|
{
|
||||||
|
"type": "FeatureCollection",
|
||||||
|
"features": [
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.377043,
|
||||||
|
48.651377
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.440059,
|
||||||
|
48.80415
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.33943,
|
||||||
|
48.867518
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.279638,
|
||||||
|
48.927955
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.359571,
|
||||||
|
48.938082
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.673422,
|
||||||
|
48.544903
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
1.911413,
|
||||||
|
48.980932
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.081501483917,
|
||||||
|
49.037129421067
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
1.915655,
|
||||||
|
47.904868
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.823729,
|
||||||
|
49.411309
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
1.084525,
|
||||||
|
49.428421
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
3.21959,
|
||||||
|
49.616318
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.290788,
|
||||||
|
49.892619
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
0.095267,
|
||||||
|
48.432601
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
4.041593,
|
||||||
|
49.247088
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
0.195597,
|
||||||
|
48.005368
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.401051,
|
||||||
|
47.082782
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
0.697171352887,
|
||||||
|
47.383365216672
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
-0.355365,
|
||||||
|
49.175465
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
1.676914,
|
||||||
|
46.803432
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.831058,
|
||||||
|
50.430061
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
4.966973,
|
||||||
|
48.657104
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
3.108815,
|
||||||
|
46.663307
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
3.066639,
|
||||||
|
50.631619
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
-0.562502,
|
||||||
|
47.448188
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
0.360866,
|
||||||
|
46.592818
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
1.87407,
|
||||||
|
46.16748
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
-1.684183,
|
||||||
|
48.104362
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
4.851173,
|
||||||
|
46.780447
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
1.273831,
|
||||||
|
45.839045
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
-1.57249,
|
||||||
|
47.207531
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
-0.472219,
|
||||||
|
46.313935
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
3.114336,
|
||||||
|
45.786921
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.055387496948,
|
||||||
|
45.7020432177
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
-1.432085,
|
||||||
|
46.670599
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
-2.45048,
|
||||||
|
47.66034
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
-2.762129,
|
||||||
|
48.518952
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
0.158316,
|
||||||
|
45.648814
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
4.866093,
|
||||||
|
45.775731
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
4.38264,
|
||||||
|
45.436097
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
7.33328,
|
||||||
|
47.74832
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.442905,
|
||||||
|
44.924252
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
7.742863700541,
|
||||||
|
48.582913698489
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
3.891039,
|
||||||
|
45.044657
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
6.123208,
|
||||||
|
45.898621
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.029851,
|
||||||
|
44.608906
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
4.90882,
|
||||||
|
44.92661
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
3.498215,
|
||||||
|
44.520235
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
-0.560142,
|
||||||
|
44.826948
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
5.724356,
|
||||||
|
45.186182
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.564692,
|
||||||
|
44.353656
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
-4.32987,
|
||||||
|
48.078952
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
4.134451350118,
|
||||||
|
44.406477271246
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
0.617076,
|
||||||
|
44.203196
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
1.374111,
|
||||||
|
44.020144
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
4.079259,
|
||||||
|
44.129228
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
1.724004,
|
||||||
|
43.822824
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
6.078418,
|
||||||
|
44.557576
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
1.457642,
|
||||||
|
43.610553
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
4.823106,
|
||||||
|
43.929076
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
-0.494248,
|
||||||
|
43.896818
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
0.580964,
|
||||||
|
43.651784
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
3.88366,
|
||||||
|
43.617512
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.755808,
|
||||||
|
43.200409
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
0.075248,
|
||||||
|
43.231364
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
-0.37353,
|
||||||
|
43.299875
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
1.146088,
|
||||||
|
42.982876
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
5.383008,
|
||||||
|
43.306704
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
2.885384,
|
||||||
|
42.692572
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
7.26322,
|
||||||
|
43.708425
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
5.932984,
|
||||||
|
43.126027
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
-61.532923,
|
||||||
|
16.239444
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
-61.070595,
|
||||||
|
14.614149
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
-52.307139,
|
||||||
|
4.929058
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Feature",
|
||||||
|
"geometry": {
|
||||||
|
"type": "Point",
|
||||||
|
"coordinates": [
|
||||||
|
55.432760441496,
|
||||||
|
-21.284301680104
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"healthcare:speciality": "family_planning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
4
update_scripts/convert_planing_familial.sh
Normal file
4
update_scripts/convert_planing_familial.sh
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# convertir la liste de planing familial
|
||||||
|
|
||||||
|
ts-node convert_to_osm_tags.ts --source=etalab_data/planing_familial/antennes_planning_familial.json --output-file=antennes_planning_familial.json --engine-config=MappingPlanningFamlial
|
Loading…
Reference in New Issue
Block a user