29 lines
841 B
TypeScript
29 lines
841 B
TypeScript
|
import MappingConfigType from "../mapping-config.type";
|
||
|
|
||
|
const MappingMuseums: MappingConfigType = {
|
||
|
config_name: 'Mapping des musées en Île de France',
|
||
|
config_author: 'tykayn <contact+geojson2osm@cipherbliss.com>',
|
||
|
default_properties_of_point: {tourism: 'museum'},
|
||
|
tags: {
|
||
|
// ******* booléens
|
||
|
// ******* nombres
|
||
|
"URL": "contact:website",
|
||
|
"Identifiant Muséofile": "ref:FR:museums:museofile",
|
||
|
"REF_Deps": "ref:FR:museums:deps",
|
||
|
// ******* textes
|
||
|
'Téléphone': {
|
||
|
key_converted: "contact:phone",
|
||
|
convert_to_phone: true,
|
||
|
},
|
||
|
},
|
||
|
add_not_mapped_tags_too: false,
|
||
|
source: {
|
||
|
geojson_path: '',
|
||
|
url: ''
|
||
|
},
|
||
|
filters: {
|
||
|
// offset:2 // uncomment to run small tests
|
||
|
},
|
||
|
}
|
||
|
export default MappingMuseums
|