Skip to content

Instantly share code, notes, and snippets.

@RichardEllicott
Created September 10, 2019 13:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RichardEllicott/ed537acabfaba62a466463663bb3fd5b to your computer and use it in GitHub Desktop.
Save RichardEllicott/ed537acabfaba62a466463663bb3fd5b to your computer and use it in GitHub Desktop.
func distance_to_string(distance_m):
var suffix = "m"
if distance_m > 1000.0:
distance_m /= 1000.0
suffix = "km"
var txt = "%*.*f m" % [7,1,distance_m]
txt += " %s" % suffix
return txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment