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 19
Weather Observation Station 19
Sort by
recency
|
2376 Discussions
|
Please Login in order to post a comment
SELECT CAST(ROUND(SQRT(POWER(min_latn-max_latn,2) + POWER(min_longw-max_longw,2)),4) AS DECIMAL(10,4)) FROM( SELECT MAX(LONG_W) AS max_longw, MAX(LAT_N) AS max_latn, MIN(LONG_W) AS min_longw, MIN(LAT_N) AS min_latn FROM STATION) t ;
SELECT CAST(ROUND(SQRT(POWER(MIN(LAT_N)-MAX(LAT_N),2) + POWER(MIN(LONG_W)-MAX(LONG_W),2)),4) AS DECIMAL(10,4)) FROM STATION
SELECT ROUND( SQRT( POWER(D-B,2)+ POWER(C-A,2) ) ,4) FROM ( SELECT MIN(LAT_N) AS A, MAX(LAT_N) AS C, MIN(LONG_W) AS B, MAX(LONG_W) AS D FROM STATION
) AS COORDINATES;****