create_views.sql: wp: Don't truncate waypoint names
[gpstools.git] / postgres / round_coor.sql
blob51b5effe5a8ce9f03fb20e382815713854d747a7
1 -- round_coor.sql
2 -- File ID: 46f9e76a-56db-11df-adc3-ec9b5bd3a10b
4 -- Round the trackpoint log to six decimal digits -- {{{
5 \echo
6 \echo ================ Round trackpoint coordinates to six decimal digits ================
8 UPDATE logg SET coor = point(
9     round(coor[0]::numeric, 6),
10     round(coor[1]::numeric, 6)
12 -- }}}