- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一项挑战任务要获得非常高的准确度。所以我正在使用 GPS_PROVIDER。但是我的代码变得不正确。有时它会显示 离我当前位置 10 到 50 米。有时它会显示 离我当前位置 5 到 15 米的距离。我已经测试了 XOLO 和 Sony 两种设备。我已经解决了这些问题,但无法解决。这是我的代码:-
@Override
protected void onResume() {
super.onResume();
if(mMap!= null)
mMaprivate LatLng geo;
map.clear();
locationManager = (LocationManager)this.getSystemService(Context.LOCATION_SERVICE);
mFragment = (SupportMapFragment) this.getSupportFragmentManager().findFragmentById(R.id.map);
mMap = mFragment.getMap();
}
setListener();
}
private void setListener() {
System.out.println("setListener() locationListener = "+locationListener);
if(locationListener != null){
clearListener();
}
Toast toast = Toast.makeText(this, this.getResources().getString(R.string.maps_loading), Toast.LENGTH_LONG);
toast.show();
private LatLng geo;
locationListener = new CustomLocationListener();
Criteria criteria = new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_FINE);
//criteria.setAccuracy(Criteria.ACCURACY_HIGH);
criteria.setPowerRequirement(Criteria.NO_REQUIREMENT);
String bestProvider = locationManager.getBestProvider(criteria, true);
Toast.makeText(this, "bestProvider= "+bestProvider, Toast.LENGTH_SHORT).show();
// locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locationListener);
locationManager.requestLocationUpdates(bestProvider, 0, 0, locationListener);
handler=new Handler();
timeoutTask = new TimeoutTask(locationListener);
handler.postDelayed(timeoutTask, 50*1000);
}
private void clearListener(){
if(locationListener != null){
locationManager.removeUpdates(locationListener);
locationListener = null;
}
}
private void gotLocation(Location location){
loc = location;
System.out.println("getLocation = "+location.getLatitude());
// Toast.makeText(getBaseContext(), "new Lat = "+location.getLatitude(), Toast.LENGTH_LONG).show();
}
public class CustomLocationListener implements LocationListener {
private boolean isCompleted = false;
public CustomLocationListener() {}
@Override
public void onLocationChanged(Location location) {
isCompleted=true;
System.out.println("onLocationChanged 1");
// Called when a new location is found by the GPS location provider.
if(isBetterLocation(location, loc)){
// Toast.makeText(getBaseContext(), "yes", Toast.LENGTH_LONG).show();
System.out.println("onLocationChanged 2");
gotLocation(location);
}
System.out.println("onLocationChanged 3");
clearListener();
setUserPoint();
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) { }
@Override
public void onProviderEnabled(String provider) { }
@Override
public void onProviderDisabled(String provider) { }
public boolean isCompleted() {
return isCompleted;
}private LatLng geo;
}
private LatLng geo;
public class TimeoutTask implements Runnable {
private CustomLocationListener listener;
public TimeoutTask(CustomLocationListener listener) {
this.listener=listener;
}
@Override
public void run() {
// TODO Auto-generated method stub
if (listener == null || listener.isCompleted()) {
Log.e("provider", "completed");
}
else {
Toast.makeText(ScorecardMapViewActivity.this, "We were unable to find your position, please try again", Toast.LENGTH_LONG).show();
Log.e("provider", "timeout");
clearListener();
setUserPoint();
if(goToScorecardStep3WithLocation) finish();
}
}
}
protected boolean isBetterLocation(Location location, Location currentBestLocation) {
if (currentBestLocation == null) {
// A new location is always better than no location
return true;
}
// Check whether the new location fix is newer or older
long timeDelta = location.getTime() - currentBestLocation.getTime();
boolean isSignificantlyNewer = timeDelta > TWO_MINUTES;
boolean isSignificantlyOlder = timeDelta < -TWO_MINUTES;
boolean isNewer = timeDelta > 0;
// If it's been more than two minutes since the current location, use the new location
// because the user has likely moved
if (isSignificantlyNewer) {
return true;
// If the new location is more than two minutes older, it must be worse
} else if (isSignificantlyOlder) {
return false;
}
// Check whether the new location fix is more or less accurate
int accuracyDelta = (int) (location.getAccuracy() - currentBestLocation.getAccuracy());
boolean isLessAccurate = accuracyDelta > 0;
boolean isMoreAccurate = accuracyDelta < 0;
boolean isSignificantlyLessAccurate = accuracyDelta > 200;
// Check if the old and new location are from the same provider
boolean isFromSameProvider = isSameProvider(location.getProvider(),
currentBestLocation.getProvider());
// Determine location quality using a combination of timeliness and accuracy
if (isMoreAccurate) {
return true;
} else if (isNewer && !isLessAccurate) {
return true;
} else if (isNewer && !isSignificantlyLessAccurate && isFromSameProvider) {
return true;
}
return false;
}
private LatLng geo;
private void setUserPoint() {
if(!goToScorecardStep3WithLocation) {
if(loc != null) {
if(handler != null) { System.out.println("removed timeout task from handler");
handler.removeCallbacks(timeoutTask); }
geo = HelperUtil.getLatLng(loc);
mMap.animateCamera(CameraUpdateFactory.newLatLngZoom(geo, 18));
mMap.setMapType(GoogleMap.MAP_TYPE_SATELLITE);
System.out.println("loc.getLatitude() = "+loc.getLatitude());
System.out.println("loc.getLongitude() = "+loc.getLongitude());
// your current position show.
mMap.addMarker(new MarkerOptions().title("Player").position(geo)
.icon(BitmapDescriptorFactory.fromResource(R.drawable.map_point)));
}
}
}
请任何一位专家帮助我。你的帮助会很有帮助。谢谢!
更新:-
我注意到我是否在同一个地方。有时我得到长小数点和小数点。由于小数点,计算距离也有什么影响吗?我正在计算 Yard 中的距离。
当前位置 = 纬度 28.65361000000004长 = 77.4122733333333
previous Current Location 点(这是同一个地方,但纬度/经度不同)
纬度 = 28.653685000000003长 = 77.4123083333334
我有 8 码距离。我认为有些问题可能是由于长或小的数字点引起的。有没有办法让我们只能得到长小数点?
最佳答案
在 95% 的情况下,消费类 GPS 接收器的精度为 2.5-6 米,您无法针对移动设备提高精度。
如果您静止不动(通过告知静止开始和静止结束的用户交互),您可以计算平均位置。
尤其是在静止不动时,GPS 芯片的准确性会稍差一些,因为多普勒频移只能在移动时使用。
要计算设备的精度,您应该采取一些措施,计算平均位置,并为每个测量值计算到该平均位置的距离。这应该给出 3-6m 之间的值。
您写道,您希望站立不动时两个位置之间的距离为 0 米。
但这不适用于 GPS。由于对流层的波动情况,信号延迟略有变化,导致站着不动时跳位。
如果您启用了 iOS 默认使用的静态过滤器,您只会得到 0m。Android 中也应该有可能启用这样的过滤器(例如,通过将距离阈值设置为高于 0 的值)。
关于android - 如何通过 GPS_PROVIDER 获得更高的精度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24569897/
关于这个话题已经说了很多,但是我找不到我的问题的确切答案。 JavaScript 无法准确表示 0.1 等小数,这是可以理解的。 例如,由于乘法运算期间发生舍入误差,这是正确的: 0.1 * 3 ==
在 zig 中,可以使用“{d}”以十进制表示法打印浮点值。这将自动以全精度打印该值。有没有办法指定位数?是针对每个值,还是作为某种全局设置? 最佳答案 这将限制小数点后的位数,四舍五入和零填充: f
我正在进行的项目需要高精度。减法时我遇到的问题在这里说明: >> 1-0.9999999999999999 ans = 1.1102e-16 >> 1-0.99999999999999999 ans
是否可以使变量本身的精度成为将在运行时定义的变量? 说,如果我尝试编译: SUBROUTINE FOO( VARIABLE, PRECISION_VALUE ) IMPLICI
我正在查询 SQLite 数据库以获取纬度/经度详细信息。 SELECT * FROM tblMain where latitude > -33.866 and latitude 151.20
我一直使用下划线将整数定义为 Fortran 中的特定类型。 下面是一段代码,用于演示 1_8 的含义,例如: program main implicit none integer(2)
我正在寻找一种方法来告诉 pint 要打印多少个有效数字。例如,当我输入以下内容时: import pint ureg = pint.UnitRegistry() print(3*ureg.m /9)
我正在从事一个项目,目标是从山上追踪动物。在第一个实地考察季中,我们使用了 OpenTags 和经过校准的摄像头,虽然可以正常工作,但需要大量的处理/校准,而且至关重要的是,当系统出现问题时无法提供任
在 JavaScript 中有没有一种方法可以确定一个数除以另一个数是否会得到整数?就像 18.4/0.002 给我们 9200,但是 18.4/0.1 给我们 183.99999999999997。
我正在尝试使用 Big.js 在 javascript 中完成此计算 r = (a * b)/ sqrt( ( a*sin(θ) )^2 + ( b*cos(θ) )^2 ) 我也试过 math.js
我有这个片段着色器代码,它在 iOS 模拟器(非视网膜)和 iPad2(非视网膜)之间显示不同: highp vec2 textCoord; textCoord.x = gl_Fr
这个问题在这里已经有了答案: C++ calculating more precise than double or long double (2 个答案) 关闭 6 年前。 是否有任何浮点类型在小
我似乎一直困惑的三个问题: 为什么代码是 x & ~077比这行代码 x & 0177700 更好。是因为精度损失较小吗? 为什么此代码对于设置数字中的第 5 位不正确? num = num + 0x
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Precision of Floating Point 我正在尝试使用一些 float 来计算概率,但我的最
由于微 Controller 的精度,我定义了一个包含两个 float 比率的符号,而不是直接写结果。 #define INTERVAL (0.01F/0.499F) 代替 #defi
我试图比较这 3 种搜索算法,起初我使用 time.h 库但没有任何反应,输出始终是 0.00000 秒。现在我试图在循环中使用一些计数器。但我在这里也有问题, 任何人都可以帮我处理代码吗? 这是我的
char buf[10]; int counter, x = 0; snprintf (buf, sizeof buf , "%.100d%n", x, &counter); printf("Coun
我注意到在评估向量时对我来说是不可预测的行为。直接执行它与在循环中进行索引似乎是完全不同的。谁能帮我解决这个问题?我知道可能在它如何进行每个操作中都有解释,所以我需要一些关于如何查找它的键 多谢指教提
我想在我的应用程序中使用精确的 gps 定位。所以我遵循了一个简单的教程(LocationManager 的基本用法,明确要求 GPS 提供商,要求更新 0 ms,0 m)并创建了一个应用程序。我对更
float 在 1.0f 和 0.0f 之间有多少位精度,这样每个值都可以唯一表示? 例如,如果第一个小数 float 不能表示 0.13f,答案就是 float 只有一位精度。 最佳答案 std::
我是一名优秀的程序员,十分优秀!