java 坐标反算_Java实现坐标反算方位角

import java.util.Scanner; //导入Scanner类

class Test{ //定义计算类

public double x1; //定义坐标变量

public double y1;

public double x2;

public double y2;

public double r;

public double s;

public double d;

public int e;

public double a;

public int b;

public double c;

public int h;

public void calculate(){ //定义计算方法

if(x2 - x1 > 0 && y2-y1 >0){ //判断x,y的坐标增量

getInfo();

s = r;

change(s);

}else if(x2-x1<0 && y2-y1>0){

getInfo();

s = r + 180;

change(s);

}else if(x2-x1 <0 && y2-y1 <0){

getInfo();

s = r+ 180;

change(s);

}else if (x2-x1 >0 && y2-y1 <0){

getInfo();

s = r + 360;

change(s);

}

if(x2-x1 >0 && y2-y1 ==0){ //判断是否位于坐标轴上

s = 0;

change(s);

}else if (x2-x1 == 0 && y2-y1 >0){

s = 90;

change(s);

}else if (x2-x1 <0 && y2-y1 ==0){

s = 180;

change(s);

}else if (x2-x1 == 0 && y2-y1 <0){

s =270;

change(s);

}

System.out.println(“坐标方位角是:” + e + “°” + b + “‘“ + h + “‘’”);

}

public double getInfo(){ //定义计算R的方法

r = Math.atan((y2-y1)/(x2-x1)) 206265/3600;

return this.r;

}

public void change(double d){ //将度数转换为度分秒

e =(int)Math.floor(d);

a = (d - e) 60;

b = (int)Math.floor(a);

c = (a - b) * 60;

h = (int)Math.floor(c);

}

}

public class Postion{

public static void main(String[] args){

Test t1 = new Test(); //实例化Test

Scanner sc = new Scanner(System.in); //调用Scanner类

System.out.print(“请输入坐标A 的X坐标x1:”);

t1.x1 = sc.nextDouble();

System.out.print(“请输入坐标A 的Y坐标y1:”);

t1.y1 = sc.nextDouble();

System.out.print(“请输入坐标B 的x坐标x2:”);

t1.x2 = sc.nextDouble();

System.out.print(“请输入坐标B 的Y坐标y2:”);

t1.y2 = sc.nextDouble();

t1.calculate(); //调用Test 类中的calculate方法

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值