I would like to write a query that takes the lateral and longitudinal gps coordinates as variables. I have tried it as followed :
Unfortunately it does not work as expected. How could I manage that ? Thanks asked 17 Dec '20, 14:32 Dykay |
Format strings are a nice way to solve this problem: https://docs.python.org/3.4/library/string.html#format-string-syntax I'd suggest using keywords so that you don't have to remember what order to pass in the values, so
answered 17 Dec '20, 17:30 maxerickson Thank you @maxerickson
(17 Dec '20, 17:52)
Dykay
|