geojson_path: string;// the relative path to the geojson source file to analyse, from the root of this repository
url: string;// URL from where the geojson comes online, on a data platform. This URL should be fetchable to get the most recent data of the concerned dataset to convert.
overpass_query?: string;// query to get objects from OSM
}
exportdefaultinterfaceMappingConfigType{
config_name: string,// descriptive name
config_author: string,// name and email for example
osmose?: boolean,// is the data from Osmose export
boolean_keys?: Array<string>,// what keys should be converted to boolean values
tags_to_ignore_if_value_is?: Array<string>,// list of strings for which we ignore the tags if they equal any of these
add_not_mapped_tags_too: boolean,// by default, we do not add tags from properties that we do not specify, set this to true to change it
default_properties_of_point?: object,// tag to add to every converted point by default
allow_unspecified_conditional_values?: boolean,// by default, we do not add tags from properties that we do not specify in conditional_values, set this to true to change it