美文网首页
基于是spark-sql的农机轨迹再分析

基于是spark-sql的农机轨迹再分析

作者: 至极L | 来源:发表于2018-05-18 15:19 被阅读11次

    一、提取农机的迁移数据

    1.提取每天有多少农机上线

    select  to_date(gps_time) ,count(*), avg(longtitude), avg(latitude)from trajectory group by to_date(gps_time) order by to_date(gps_time);
    

    以天为单位提取每一天农机的平均位置,用于显示每天农机的变化

    select vme_id, to_date(gps_time) , avg(longtitude), avg(latitude)from trajectory group by vme_id , to_date(gps_time) order by vme_id , to_date(gps_time); 
    

    相关文章

      网友评论

          本文标题:基于是spark-sql的农机轨迹再分析

          本文链接:https://www.haomeiwen.com/subject/pwlnhxtx.html