Weather Observation Station 18

  • + 0 comments

    with CTE AS ( select MIN(LAT_N) as A ,MIN(LONG_W) as B, MAX(LAT_N) as C,MAX(LONG_W) as D from station ) select round((ABS(A - C) + ABS(B - D)),4) from CTE;