///|
fn format_geo(value : Double) -> String {
  let i = value.to_int()
  if i.to_double() == value {
    i.to_string()
  } else {
    value.to_string()
  }
}