代码5-1

//绑定输出口
IBOutlet BMKMapView* _mapView;
//初始化定位服务
BMKLocationService* _locService;
_locService= [[BMKLocationService alloc] init];
//开启定位服务
[_locService startUserLocationService];
//进入罗盘+跟随状态
_mapView.userTrackingMode;
//POI搜索
 *citySearchOption = [[BMKCitySearchOption alloc]init];
citySearchOption.city=@"武汉";
citySearchOption.keyword =@"轨道交通2号线";
[_poisearch poiSearchInCity:citySearchOption];
//BusLine搜索
 *buslineSearchOption;
buslineSearchOption = [[BMKBusLineSearchOption alloc]init];
 buslineSearchOption.city= @"武汉";
buslineSearchOption.busLineUid= strKey;
[_buslinesearch busLineSearch:buslineSearchOption];
//提取当前和下一站的公交站点
currentStation = [busStations objectAtIndex:currentStationIndex];
nextStation = [busStations objectAtIndex:currentStationIndex+1];
//获得当前位置和下一个公交站点的位置
currentPoint = BMKMapPointForCoordinate(currentLocation.coordinate);
nextPoint = BMKMapPointForCoordinate(CLLocationCoordinate2DMake
    ([nextStation[@"latitude"] floatValue], [nextStation[@"longitude"] floatValue]));
//计算两点之间的距离
distance = BMKMetersBetweenMapPoints(currentPoint,nextPoint);
//判断是否到站
if(distance >=10){
    stateText.text = [NSString stringWithFormat:@"距离%@还有%.2f米",nextStation[@"station"],distance];
}else if(distance<10){
    stateText.text = [NSString stringWithFormat:@"即将到达%@",nextStation[@"station"]];
    currentStationIndex = currentStationIndex+1;
}
//设置传感器获取数据的时间间隔(毫秒)
speed = 100
motionManager.accelerometerUpdateInterval = speed
motionManager.gyroUpdateInterval = speed
motionManager.magnetometerUpdateInterval = speed
motionManager.deviceMotionUpdateInterval = speed
//传感器管理器初始化
let motionManager = CMMotionManager()
if #available(iOS 9.0, *) {
    locationManager.allowsBackgroundLocationUpdates = true
} 
判断是否支持传感器
if motionManager.isAccelerometerAvailable {
    motionManager.accelerometerUpdateInterval = 0.1
    motionManager.startAccelerometerUpdates()
    print("开始加速度检测")
}else {
    UIAlertView(title: "提示", message: "不支持加速度的设备", delegate: nil, cancelButtonTitle: "确定")
    print("不支持加速度的设备")
    return;
}
if motionManager.isGyroAvailable {
    motionManager.gyroUpdateInterval = speed
    motionManager.startGyroUpdates()
    print("开始角速度检测")
}else {
    UIAlertView(title: "提示", message: "不支持陀螺仪的设备", delegate: nil, cancelButtonTitle: "确定")
    print("不支持陀螺仪的设备")
}
     
if let a = motionManager.accelerometerData
{
    accx.value=Float(a.acceleration.x)
    accy.value=Float(a.acceleration.y)
    accz.value=Float(a.acceleration.z)
    cos=sqrt((x*x+z*z)/(x*x+y*y+z*z))
    theta=acos(cos)/3.1415926*180
    write("acc,\(x),\(y),\(z)")
    show+=NSString(format: "加速度\nx=%.2f\ny=%.2f\nz=%.2f\nθ=%.2f", x,y,z,theta) as String
    if theta<1 {
        show+="\t\t水平放置"
    }else if theta>85 {
        show+="\t\t垂直放置"
    }
}
//初始化
var path = NSHomeDirectory()+"/Documents/out.csv"
var file=FileHandle()
var filemanager=FileManager()
//设置文件路径并获取文件大小
let fileSize = try FileManager.default.attributesOfItem(atPath: path)[FileAttributeKey.size]
//写入文件函数
func write(_ s:String){
    if wirteswitch.isOn {
        let s2="\(getTime()),\(s)\n"
        file.seekToEndOfFile()
        file.write(s2.data(using: String.Encoding.utf8, allowLossyConversion: true)!)
        getsize()
        print(s2)
    }
}
    @IBAction func share(_ sender: AnyObject) {
        let url = URL(string: "file://"+path)
        print(url)
        let controler = UIActivityViewController(activityItems: [url!], applicationActivities: nil)
        present(controler, animated: true, completion: nil)
        if controler.responds(to: #selector(getter: UIViewController.popoverPresentationController)) {
            let presentationController = controler.popoverPresentationController
            presentationController?.sourceView = sharebutton
        }
    }
    //判断状态,1为加速,2为减速,0为正常行驶
    func statusJudges() ->NSInteger{
        if(self.isLimitPoint(acc: getyAccelerValue())&&self.getyAccelerValue() < 0.4){
            var countTime = accelerTime/2
            var judge = 0
            var state = 0
            let queue = DispatchQueue(label: "mars.judgeAcceleration", qos: .default, attributes: .concurrent)
            let codeTimer = DispatchSource.makeTimerSource(queue:queue)
            codeTimer.scheduleRepeating(deadline: .now(), interval: .milliseconds(200))
            codeTimer.setEventHandler(handler: {
                countTime = countTime-0.2
                if countTime <= 0{
                    codeTimer.cancel()
                }
                if (self.getyAccelerValue()<=0.4){
                    judge = judge+1
                }
                if (judge>=8){
                    state = 1
                }else{
                    state = 0
                }
            })
            codeTimer.activate()
            sleep(3)
            if (state == 1){
                 print(getTime(),"正在加速")
                return 1
            }else{
                print(getyAccelerValue())
                print(getTime(),"达到加速值,但不在加速")
                return 0
            }
        }else if(self.isLimitPoint(acc: getyAccelerValue())&&getyAccelerValue() >= 0.6){
            var countTime = decelerTime/2
            var judge = 0
            var state = 0
            let queue = DispatchQueue(label: "mars.judgeDeceleration", qos: .default, attributes: .concurrent)
            let codeTimer = DispatchSource.makeTimerSource(queue:queue)
            codeTimer.scheduleRepeating(deadline: .now(), interval: .milliseconds(200))
            codeTimer.setEventHandler(handler: {
                countTime = countTime-0.2
                if countTime <= 0{
                    codeTimer.cancel()
                }
                if (self.getyAccelerValue()>=0.6){
                    judge = judge+1
                }
                if (judge>=8){
                    state = 1
                }else{
                    state = 0
                }
            })
            codeTimer.activate()
            sleep(3)
            if (state == 1){
                print(getTime(),"正在减速")
                return 2
            }else{
                print(getTime(),"达到减速值,但不在减速")
                return 0
            }
        }else{
            print(getTime(),"正常行驶")
            return 0
        }
    }
public func isLimitPoint(acc:Float) -> Bool {
        if(acc >= 0.6 || acc <= 0.4){
            return true
        }
        else{
            return false
        }
    }
            //加速状态检测  
            var countTime = accelerTime/2
            var judge = 0
            var state = 0
            let queue = DispatchQueue(label: "mars.judgeAcceleration", qos: .default, attributes: .concurrent)
            let codeTimer = DispatchSource.makeTimerSource(queue:queue)
            codeTimer.scheduleRepeating(deadline: .now(), interval: .milliseconds(200))
            codeTimer.setEventHandler(handler: {
                countTime = countTime-0.2
                if countTime <= 0{
                    codeTimer.cancel()
                }
                if (self.getyAccelerValue()<=0.4){
                    judge = judge+1
                }
                if (judge>=8){
                    state = 1
                }else{
                    state = 0
                }
                
            })
            codeTimer.activate()
            sleep(3)
            if (state == 1){
                 print(getTime(),"正在加速")
                return 1
            }else{
                print(getyAccelerValue())
                print(getTime(),"达到加速值,但不在加速")
                return 0
            }
    //创建StatusJudgement实例
    StatusJudgement *statusJudgement;
    NSInteger stationCount = [busStations count];
    dispatch_queue_t queue = dispatch_queue_create("mars.refresh", DISPATCH_QUEUE_CONCURRENT);
    dispatch_async(queue, ^{
        state = [statusJudgement statusJudges];
        //主线程刷新UI
        dispatch_async(dispatch_get_main_queue(), ^{
            if(state == 0){
                stateText.text = @"正常行驶";
                NSLog(@"地铁正常行驶");
            }else if (state == 1){
                stateText.text = @"离站加速";
                NSLog(@"地铁离站加速");
            }else if(state == 2){
                stateText.text = @"到站减速";
                NSLog(@"地铁到站减速");
            }
        });
        NSLog(@"总共%ld站",stationCount);
    });
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,711评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,079评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,194评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,089评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,197评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,306评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,338评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,119评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,541评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,846评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,014评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,694评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,322评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,026评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,257评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,863评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,895评论 2 351

推荐阅读更多精彩内容