Update phase_2_routing_prepare.sh

arrondi au mètre
This commit is contained in:
MaelREBOUX 2021-10-31 09:33:54 +01:00
parent 04c2d0d221
commit f0156a7548

View file

@ -76,7 +76,7 @@ echo ""
echo " calcul des 2 attributs de coût (= longueur)"
PGPASSWORD=$DB_PASSWD $PSQL -h $DB_HOST -p $DB_PORT -U $DB_USER -d $DB_NAME -c "
UPDATE osm_roads_pgr
SET cost = st_length(the_geom), reverse_cost = st_length(the_geom)
SET cost = round(st_length(the_geom)::numeric), reverse_cost = round(st_length(the_geom)::numeric)
WHERE secteur_id = $secteur_id ;"
echo " recrée des nœuds uniquement sur les zones de patch"