add config plaques commémoratives

This commit is contained in:
Tykayn 2025-04-17 17:34:39 +02:00 committed by tykayn
parent 2956a3ffee
commit c9ecd31302
14 changed files with 536 additions and 166 deletions

View file

@ -25,8 +25,28 @@ import mappingIssy2Roues from './mappings/converters/configIssy_OpenData_2roues'
import mappingConfigIRVEFromOsmose from './mappings/converters/configIRVE_osmose'
import mappingConfigIRVE_simple from './mappings/converters/mappingConfigIRVE_simple'
import mappingTest from './mappings/converters/configTest'
import MappingPlaquesCommémorativesParis from './mappings/converters/configPlaquesCommémorativesParis'
/**
* clés booléennes
*/
let listOfBooleanKeys = [
"prise_type_ef",
"prise_type_2",
"prise_type_combo_ccs",
"prise_type_chademo",
"gratuit",
"paiement_acte",
"paiement_cb",
"cable_t2_attache"
]
let irve_max_output = 401 // limite de kW de puissance pour une borne de recharge publique
const limitWarningPercentageChangeInPoints = 5; // show a warning when more than N percent of the number of points changed
const allowed_configs: any = {
MappingPlaquesCommémorativesParis,
MappingPanneauxMaxSpeed,
MappingArbresRemarquablesRouen,
MappingRnb,
@ -48,22 +68,6 @@ const allowed_configs: any = {
MappingSurveillanceRouen
};
/**
* clés booléennes
*/
let listOfBooleanKeys = [
"prise_type_ef",
"prise_type_2",
"prise_type_combo_ccs",
"prise_type_chademo",
"gratuit",
"paiement_acte",
"paiement_cb",
"cable_t2_attache"
]
let irve_max_output = 401 // limite de kW de puissance pour une borne de recharge publique
const limitWarningPercentageChangeInPoints = 5; // show a warning when more than N percent of the number of points changed
export default {
listOfBooleanKeys,