ClickHouse/tests/queries/0_stateless/01678_great_circle_angle.sql

7 lines
256 B
MySQL
Raw Normal View History

2021-01-29 02:05:46 +00:00
SELECT round(greatCircleAngle(0, 45, 0.1, 45.1), 4);
SELECT round(greatCircleAngle(0, 45, 1, 45), 4);
SELECT round(greatCircleAngle(0, 45, 1, 45.1), 4);
SELECT round(greatCircleDistance(0, 0, 0, 90), 4);
SELECT round(greatCircleDistance(0, 0, 90, 0), 4);