40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
/**
|
|
* 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;
|