Mise à jour de la distance théorique

This commit is contained in:
MaelREBOUX 2022-01-08 17:42:17 +01:00
parent c7ea98c6da
commit 389b00796e

View file

@ -181,9 +181,9 @@ try:
#print(" Chargement de la couche phase_5_pk_umap")
sql_trunc_load = """
TRUNCATE TABLE phase_5_pk_umap ;
TRUNCATE TABLE phase_5_pk_umap ;
INSERT INTO phase_5_pk_umap
SELECT pk_id, secteur_id, st_transform(the_geom, 2154)
SELECT pk_id, secteur_id, st_transform(the_geom, 2154)
FROM phase_5_pk_umap_4326
ORDER BY pk_id ;"""
@ -354,6 +354,27 @@ WHERE phase_5_pk.pk_id = pk_recales.pk_id ;"""
#
print(" Mise à jour de la distance théorique")
sql_update_length_theorical = f"""
UPDATE phase_5_pk
SET
length_theorical = sub.length_theorical
FROM (
SELECT
pk.pk_id
,pk.secteur_id
,s.longueur_km_redadeg AS length_theorical
FROM phase_5_pk pk JOIN secteur s ON pk.secteur_id = s.id
ORDER BY pk_id
) sub
WHERE phase_5_pk.pk_id = sub.pk_id ;"""
db_redadeg_cursor.execute(sql_update_length_theorical)
print(" fait")
#
print(" Mise à jour des informations sur les voies")
sql_update_infos_ways = f"""