- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何使用纬度/经度坐标查找半径 (X) 英里内的所有值(在本例中为机构)?
代码:
public class GeoGen {
static final GeoPosition USER_POSITION = new GeoPosition(39.410868, -107.102182);
public static void main(String[] args) {
new Establishment("Fries Electronics", randomLocation(USER_POSITION, 40)).print();
new Establishment("Walmart Supercenter", randomLocation(USER_POSITION, 40)).print();
new Establishment("Target", randomLocation(USER_POSITION, 40)).print();
new Establishment("Krogers", randomLocation(USER_POSITION, 40)).print();
new Establishment("McDonalds", randomLocation(USER_POSITION, 40)).print();
}
public static GeoPosition randomLocation(GeoPosition location, double radius) {
Random random = new Random();
// Convert radius from miles to meters
double meters = radius * 1609.34;
// Convert radius from meters to degrees
double radiusInDegrees = meters / 111000f;
double u = random.nextDouble();
double v = random.nextDouble();
double w = radiusInDegrees * Math.sqrt(u);
double t = 2 * Math.PI * v;
double x = w * Math.cos(t);
double y = w * Math.sin(t);
// Adjust the x-coordinate for the shrinking of the east-west distances
double new_x = x / Math.cos(location.latitude());
double foundLongitude = new_x + location.longitude();
double foundLatitude = y + location.latitude();
return new GeoPosition(foundLongitude, foundLatitude);
}
public static double distanceBetween(GeoPosition a, GeoPosition b) {
double longDif = a.longitude() - b.longitude();
double distance =
Math.sin(deg2rad(a.latitude()))
*
Math.sin(deg2rad(b.latitude()))
+
Math.cos(deg2rad(a.latitude()))
*
Math.cos(deg2rad(b.latitude()))
*
Math.cos(deg2rad(longDif));
distance = Math.acos(distance);
distance = rad2deg(distance);
distance = distance * 60 * 1.1515; // Convert to meters
distance = distance * 0.8684; // Convert to miles.
return distance;
}
private static double rad2deg(double rad) {
return (rad * 180.0 / Math.PI);
}
private static double deg2rad(double deg) {
return (deg * Math.PI / 180.0);
}
}
/**
* A class representing an establishment in the world.
*
* @author Christian
*/
class Establishment {
public static Map<GeoPosition, String> establishments = new HashMap<>();
private final String name;
private final GeoPosition geoPosition;
public Establishment(String name, GeoPosition geoPosition) {
this.name = name;
this.geoPosition = geoPosition;
establishments.put(geoPosition, name);
}
public void print() {
System.out.print("Establishment("+name+") was created approx ");
System.out.printf("%.2f", GeoGen.distanceBetween(geoPosition, GeoGen.USER_POSITION));
System.out.print(" miles from specified Lat/Long \n");
}
public final String name() { return name; }
public final GeoPosition position() { return geoPosition; }
}
/**
* A class representing a geographical location using latitude/longitude.
*
* @author Christian
*/
class GeoPosition {
private final double longitude;
private final double latitude;
public GeoPosition(double longitude, double latitude) {
this.longitude = longitude;
this.latitude = latitude;
}
public double longitude() { return longitude; }
public double latitude() { return latitude; }
}
运行此应用程序每次都会产生不同的结果,因为它是随机的,但这里是使用 GeoGen#distanceBetween(GeoPosition, GeoPosition)
方法的示例。
Establishment(Fries Electronics) was created approx 19.26 miles from specified Lat/Long
Establishment(Walmart Supercenter) was created approx 9.79 miles from specified Lat/Long
Establishment(Target) was created approx 28.83 miles from specified Lat/Long
Establishment(Krogers) was created approx 10.61 miles from specified Lat/Long
Establishment(McDonalds) was created approx 3.37 miles from specified Lat/Long
但是,我想要弄清楚的是如何将所有场所都安排在 X 英里范围内。例如这样的事情
GeoGen#FindEstablishmentsWithinRadius(GeoPosition, Double) returns List<Establishment>
这将返回指定地理位置 X 英里范围内的机构列表。
最佳答案
你已经有计算距离的方法了吗?只需循环遍历各个场所并检查它们是否在半径范围内即可。
将所有场所添加到列表中,然后您可以使用流,例如:
public List<Establishment> findEstablishmentsWithinRadius(List<Establishment> list, GeoPosition position, double radius) {
return list.stream().filter(e -> distanceBetween(position, e.position()) <= radius).collect(Collectors.toList());
}
关于java - 使用地理数学查找半径内的所有值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29857340/
我有 2 个表:city 和 city_neighbor。 city 包含所有城市的列表,而 city_neighbor 包含给定城市的邻居:insert into city_neighbor (ci
我需要一点帮助来了解我使用 RADIUS+LDAP 的无线登录是否足够安全。 我有这样的基础设施:PC 客户端 (Linux) + ASUS AP Wireless + FreeRadius 和 OP
我正在为我的应用程序使用 Google Maps iOS sdk。在我的应用程序中,用户可以绘制一个栅栏(一个圆圈),然后可以编辑以更改和调整圆的半径。 它的大小调整正确但是当半径值改变它的瞬间时,不
我想为我的搜索表单使用传单标记(用于 latLng)和 slider (用于半径)。 mongodb 部分将像 location: { $geoWithin: { $centerSpher
我有一个有背景的 ImageView。我需要将 border-radius 设置到我的 ImageView。我在另一个 XML 文件中使用以下代码并将其设置为 android:src 但是当我设置背景
我正在使用 Bing Maps API 构建一个 javascript 应用程序,我想根据中心点和扇形参数构成扇形几何图形。 我在 PostgreSQL 数据库中有一个表“points”,顶部是 Po
我在我的游戏中创建了一个 ATriggerSphere 实例,并将其放置在我角色的位置,如下所示: //Create activate trigger radius activateRadiusTri
我有对图像应用一些变换以检测圆圈的代码 (GaussianBlur->cvtColor(gray)->canny->HoughCircles) 结果我得到了vector circles;数组。 如果我
在我使用 bootsrap 3 的 Rails 应用程序中,我的导航栏上似乎有一个奇怪的 4px 边界半径,我似乎无法摆脱它。 我试过了 .navbar { border-radius: none
你好我想做半圆旋转轮。所以我为此使用了iCarousel。我的问题是如何根据屏幕尺寸改变轮子的半径。 这些是我的约束。 这个红色 View 是 iCarousel View 最佳答案 有一个值 iCa
我正在尝试: 没有角半径。 所有角半径 == 10dp。 是否有可能以及如何指定角:10dp(左上)10dp(右上)0 0(下)? 最佳答案 在 Android 开发者中 http://devel
我正在使用来自 https://developers.google.com/maps/documentation/javascript/examples/drawing-tools 的这个例子使用户能
我对 MySql 相当陌生,我想要创建一个过程,在其中我可以插入任何邮政编码和距离,然后取回该距离内的所有邮政编码。我确实找到了一个公式并尝试根据我的需要 reshape 它,但我无法做到。我所拥有的
我通过 RomainNurik 使用库向用户显示 Undo-Toast(如在 Gmail 应用程序中) 在 KitKat 之前,toast 选项是矩形的,而在 KitKat 中,toast 消息是圆角
默认情况下,iPad 模态表单获得圆角。在一些 Apple 的应用程序中,例如 iTunes,表单具有完美的方角。是否有一种相对简单的方法可以删除不会让我被 App Store 拒绝的圆角半径? 最佳
我的数据库有各种兴趣点。我希望用户根据他们的位置看到他们。还有3个按钮,显示2km/5km/15km半径内的兴趣点。我无法对这些半径实现放大功能。所以我正在寻找缩放系数(从 2 到 21)和物理距离(
使用 CSS,我可以在选项卡导航器中设置选项卡顶 Angular 的圆 Angular 半径: .tabstyle { corner-radius: 10;
我有这个标签,我只想在右上角和左上角做圆 Angular 。但它最终绕过了所有 4 个 Angular 。 我做了什么: 和 我的 pageStyles.css 文件是: .my
有人可以帮助我在我的谷歌地图标记周围添加一个圆/半径吗? function createMarker ( size, i,id,lat,lng,pin,title,counter,image,pr
我的网站布局很奇怪(由我的客户设计),但我开发得很好。 问题是 Chrome(版本 22)不工作,但在 Firefox(版本 16)和 IE 9 中工作。 问题出在 colRight 中,有两个 di
我是一名优秀的程序员,十分优秀!