Weather Observation Station 19

  • + 0 comments
    -- MySQL
    select round(
    pow(
    pow(max(lat_n) - min(lat_n), 2) +
    pow(max(long_w) - min(long_w), 2)
        , 0.5)
        , 4) as distance
    from station;