We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Weather Observation Station 18
Weather Observation Station 18
Sort by
recency
|
2336 Discussions
|
Please Login in order to post a comment
SELECT ABS(ROUND((MIN(LAT_N) - MAX(LAT_N) ) + ( MIN(LONG_W) - MAX(LONG_W) ),4)) FROM STATION;
select round(abs(min(lat_n)-max(lat_n))+abs(min(long_w)-max(long_w)),4) from station
select round(abs(min(lat_n)-max(lat_n))+abs(min(long_w)-max(long_w)),4) from station
select round(abs(max(lat_n) - min(lat_n)) + abs(max(long_w) - min(long_w)),4) from station;
SELECT ROUND((MAX(LAT_N)-MIN(LAT_N))+(MAX(LONG_W)-MIN(LONG_W)),4) FROM STATION;