Skip to content

Commit 4249608

Browse files
authored
fix: remove bande_cyclabe after removal in bd topo
1 parent 3258dd9 commit 4249608

File tree

6 files changed

+0
-28
lines changed

6 files changed

+0
-28
lines changed

docker/config/bdtopo2pgr.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,6 @@
137137
"column": "sens_de_circulation",
138138
"default": "false"
139139
},
140-
{
141-
"key": "bande_cyclable",
142-
"column": "bande_cyclable",
143-
"default": "false"
144-
},
145140
{
146141
"key": "reserve_aux_bus",
147142
"column": "reserve_aux_bus",
@@ -372,7 +367,6 @@
372367
"largeur_de_chaussee",
373368
"itineraire_vert",
374369
"sens_de_circulation",
375-
"bande_cyclable",
376370
"reserve_aux_bus",
377371
"urbain",
378372
"vitesse_moyenne_vl",

docker/config/bduni2pgr_idf.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,6 @@
137137
"column": "sens_de_circulation",
138138
"default": "false"
139139
},
140-
{
141-
"key": "bande_cyclable",
142-
"column": "bande_cyclable",
143-
"default": "false"
144-
},
145140
{
146141
"key": "reserve_aux_bus",
147142
"column": "reserve_aux_bus",
@@ -373,7 +368,6 @@
373368
"largeur_de_chaussee",
374369
"itineraire_vert",
375370
"sens_de_circulation",
376-
"bande_cyclable",
377371
"reserve_aux_bus",
378372
"urbain",
379373
"vitesse_moyenne_vl",

docker/config/bduni2smartpgr_idf.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,6 @@
148148
"column": "sens_de_circulation",
149149
"default": "false"
150150
},
151-
{
152-
"key": "bande_cyclable",
153-
"column": "bande_cyclable",
154-
"default": "false"
155-
},
156151
{
157152
"key": "reserve_aux_bus",
158153
"column": "reserve_aux_bus",
@@ -383,7 +378,6 @@
383378
"largeur_de_chaussee",
384379
"itineraire_vert",
385380
"sens_de_circulation",
386-
"bande_cyclable",
387381
"reserve_aux_bus",
388382
"urbain",
389383
"vitesse_moyenne_vl",

r2gg/_pivot_to_pgr.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ def pivot_to_pgr(source, cost_calculation_file_path, connection_work, connection
6464
nombre_de_voies text,
6565
insee_commune_gauche text,
6666
insee_commune_droite text,
67-
bande_cyclable text,
6867
itineraire_vert boolean,
6968
sens_de_circulation text,
7069
reserve_aux_bus text,
@@ -242,7 +241,6 @@ def pivot_to_pgr(source, cost_calculation_file_path, connection_work, connection
242241
'nombre_de_voies as nombre_de_voies',
243242
'insee_commune_gauche as insee_commune_gauche',
244243
'insee_commune_droite as insee_commune_droite',
245-
'bande_cyclable as bande_cyclable',
246244
'itineraire_vert as itineraire_vert',
247245
'sens_de_circulation as sens_de_circulation',
248246
'reserve_aux_bus as reserve_aux_bus',

sql/bdtopo_v3.3.sql

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ CREATE TABLE IF NOT EXISTS {output_schema}.edges (
6868
nombre_de_voies text,
6969
insee_commune_gauche text,
7070
insee_commune_droite text,
71-
bande_cyclable text,
7271
itineraire_vert boolean,
7372
reserve_aux_bus text,
7473
urbain boolean,
@@ -188,8 +187,6 @@ CREATE TEMP TABLE IF NOT EXISTS bduni_troncon AS
188187
t.nombre_de_voies as nombre_de_voies,
189188
t.insee_commune_gauche as insee_commune_gauche,
190189
t.insee_commune_droite as insee_commune_droite,
191-
-- TODO: remove
192-
t.bande_cyclable as bande_cyclable,
193190
t.reserve_aux_bus as reserve_aux_bus,
194191
(CASE
195192
WHEN t.urbain IS NULL THEN 0::boolean
@@ -276,7 +273,6 @@ INSERT INTO {output_schema}.edges
276273
nombre_de_voies as nombre_de_voies,
277274
insee_commune_gauche as insee_commune_gauche,
278275
insee_commune_droite as insee_commune_droite,
279-
bande_cyclable as bande_cyclable,
280276
itineraire_vert as itineraire_vert,
281277
reserve_aux_bus as reserve_aux_bus,
282278
urbain as urbain,

sql/bduni_convert.sql

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ CREATE TABLE IF NOT EXISTS {output_schema}.edges (
6767
nombre_de_voies text,
6868
insee_commune_gauche text,
6969
insee_commune_droite text,
70-
bande_cyclable text,
7170
itineraire_vert boolean,
7271
reserve_aux_bus text,
7372
urbain boolean,
@@ -186,8 +185,6 @@ CREATE TEMP TABLE IF NOT EXISTS bduni_troncon AS
186185
t.nombre_de_voies as nombre_de_voies,
187186
t.insee_commune_gauche as insee_commune_gauche,
188187
t.insee_commune_droite as insee_commune_droite,
189-
-- TODO: remove
190-
t.bande_cyclable as bande_cyclable,
191188
t.reserve_aux_bus as reserve_aux_bus,
192189
(CASE
193190
WHEN t.urbain IS NULL THEN 0::boolean
@@ -271,7 +268,6 @@ INSERT INTO {output_schema}.edges
271268
nombre_de_voies as nombre_de_voies,
272269
insee_commune_gauche as insee_commune_gauche,
273270
insee_commune_droite as insee_commune_droite,
274-
bande_cyclable as bande_cyclable,
275271
itineraire_vert as itineraire_vert,
276272
reserve_aux_bus as reserve_aux_bus,
277273
urbain as urbain,

0 commit comments

Comments
 (0)