I want to find the point which is some X kms from the current point say A,
如果我知道中心点的纬度和长度 我如何能够在环绕下获得四点的纬度。 我正在搜索SO,时间相当长,但无法在 Java本或 Java找到解决办法。 在我的案件中,只有几公里长的地方,才能将地球视为平地表,这样,大鼠就提出这种解决办法。
增 编
I want to find the point which is some X kms from the current point say A,
如果我知道中心点的纬度和长度 我如何能够在环绕下获得四点的纬度。 我正在搜索SO,时间相当长,但无法在 Java本或 Java找到解决办法。 在我的案件中,只有几公里长的地方,才能将地球视为平地表,这样,大鼠就提出这种解决办法。
增 编
参看上,该网页非常详细地解释了用 Java本实例进行远程计算的半球模型:
鉴于起点、初始接合点和距离,这将计算出沿(直观距离)高圈弧行驶的目的地和最终接合点。
Java:
var lat2 = Math.asin( Math.sin(lat1)*Math.cos(d/R) +
Math.cos(lat1)*Math.sin(d/R)*Math.cos(brng) );
var lon2 = lon1 + Math.atan2(Math.sin(brng)*Math.sin(d/R)*Math.cos(lat1),
Math.cos(d/R)-Math.sin(lat1)*Math.sin(lat2));
I was crushing the code above Until I did not realized that both lat and lon are the radian Value! You have to convert them back to the degrees, and you will see real values.
这里是法典
public class cal
{
public static void main(String []args){
double R = 6371.0;
double d = 0.100;
double lat1 = 42.873, lon1 = 74.568;
double Radlat1 = Math.toRadians(42.873);
double Radlon1 = Math.toRadians(74.568);
double brng = Math.toRadians(225);
double lat2,lon2;
System.out.println("Hello World");
//lat2 = Math.sin();
lat2 = Math.asin(Math.sin(Radlat1)*Math.cos(d/R) +
Math.cos(Radlat1)*Math.sin(d/R)*Math.cos(brng));
System.out.println("Lat2degree"+"="+Math.toDegrees(lat2)+"
"+"Lat2="+lat2);
double NewRadLat2 = Math.toRadians(Math.toDegrees(lat2));
lon2 = Radlon1+Math.atan2(Math.sin(brng)*Math.sin(d/R)*Math.cos(Radlat1),
Math.cos(d/R)-Math.sin(Radlat1)*Math.sin(lat2));
System.out.println("Lon2"+"="+Math.toDegrees(lon2));
}
}
Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...
Check this, List<String> list = new ArrayList<String>(); for (int i = 0; i < 10000; i++) { String value = (""+UUID.randomUUID().getLeastSignificantBits()).substring(3, ...
I am in the middle of solving a problem where I think it s best suited for a decorator and a state pattern. The high level setting is something like a sandwich maker and dispenser, where I have a set ...
I have been trying to execute a MS SQL Server stored procedure via JDBC today and have been unsuccessful thus far. The stored procedure has 1 input and 1 output parameter. With every combination I ...
I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...
If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...
I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....
I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...