It has been several years since I graduated and I have even forgotten trigonometric functions
As shown in the figure, given the longitude and latitude of two points AC or BC, find the angle of α or β
How to implement it with php Thank you
It has been several years since I graduated and I have even forgotten trigonometric functions
As shown in the figure, given the longitude and latitude of two points AC or BC, find the angle of α or β
How to implement it with php Thank you
Calculate the length of a, b, cAngle ACB = rad2deg(asin(a/b))
;
asin — arcsine, returns the radian corresponding to the sine value, a==sin(asin(a)).
rad2deg — Convert radians to corresponding degrees
Insufficient conditions to calculate.