当前位置: 首页>>代码示例>>Java>>正文


Java Utils.computeAccuracy方法代码示例

本文整理汇总了Java中com.estimote.sdk.Utils.computeAccuracy方法的典型用法代码示例。如果您正苦于以下问题:Java Utils.computeAccuracy方法的具体用法?Java Utils.computeAccuracy怎么用?Java Utils.computeAccuracy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.estimote.sdk.Utils的用法示例。


在下文中一共展示了Utils.computeAccuracy方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: calculateNearestBeacon

import com.estimote.sdk.Utils; //导入方法依赖的package包/类
/******** Helper methods ********/

    @Nullable
    private Beacon calculateNearestBeacon(Collection<Beacon> beacons) {
        Beacon nearestBeacon = null;
        Double shortestDistance = null;
        for (Beacon beacon : beacons) {
            double distance = Utils.computeAccuracy(beacon);
            if (nearestBeacon != null) {
                if (distance < shortestDistance) {
                    nearestBeacon = beacon;
                    shortestDistance = distance;
                }
            } else {
                nearestBeacon = beacon;
                shortestDistance = distance;
            }
        }
        return nearestBeacon;
    }
 
开发者ID:ribot,项目名称:ribot-app-android,代码行数:21,代码来源:AutoCheckInService.java

示例2: calculateDistance

import com.estimote.sdk.Utils; //导入方法依赖的package包/类
private double calculateDistance(Beacon beacon)
{
	double calculatedDistance = Math.pow(10d, ((double) beacon.getMeasuredPower() - beacon.getRssi()) / (10 * 4));
	double estimoteDistance = Utils.computeAccuracy(beacon);

	return (calculatedDistance + estimoteDistance) / 2.0;
}
 
开发者ID:hcmlab,项目名称:ssj,代码行数:8,代码来源:BeaconListener.java

示例3: findNearestBeacon

import com.estimote.sdk.Utils; //导入方法依赖的package包/类
private static Beacon findNearestBeacon(List<Beacon> beacons) {
    Beacon nearestBeacon = null;
    double nearestBeaconsDistance = -1;
    for (Beacon beacon : beacons) {
        double distance = Utils.computeAccuracy(beacon);
        if (distance > -1 &&
                (distance < nearestBeaconsDistance || nearestBeacon == null)) {
            nearestBeacon = beacon;
            nearestBeaconsDistance = distance;
        }
    }

    Log.d(TAG, "Nearest beacon: " + nearestBeacon + ", distance: " + nearestBeaconsDistance);
    return nearestBeacon;
}
 
开发者ID:rominirani,项目名称:Estimote-Slack,代码行数:16,代码来源:NearestBeaconManager.java


注:本文中的com.estimote.sdk.Utils.computeAccuracy方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。