在Android App中以反向X轴方向(从x = 6000到x = 1000)绘制实时数据(来自传感器)

时间:2015-04-09 13:28:13

标签: android graph plot achartengine android-graphview

我尝试使用Achart引擎,然后使用GraphView在相反的x轴方向上绘制来自传感器的数据(实时,实时更新)。我这样做是因为我想在频率(x)的函数中绘制幅度(y),并且我以降低的频率顺序(从6000Hz到1000Hz)接收这些幅度。我的问题是Achartengine在增加的x轴方向上对传入的数据进行排序,因此当我尝试使用x值进行更新时,应用程序崩溃。而GraphView只是按接收顺序对点进行重新排序,以便再次按递增顺序绘制它们并移除图形轴...因此,两个库都无法实现我想要做的事情。我尝试使用一些值初始化绘图,然后逐点更新绘图,但它不能正常工作(点不会绘制在绘图上的正确位置,显示的值不正确)。

感谢您的帮助! :)

以下是我的代码的一小部分,显示了我在主要活动中对Achartengine的实现:

    public void lineGraphHandler() {

        LinearLayout layout = (LinearLayout) findViewById(R.id.chart);

        gView = line.getView(this);

        if (meas_exec == 1 || stim_end == 1 )
        {
            line.clearPoints();
            stim_end = 0;
        }

        for (int i = 0; i < 22; i++) {


                Point p = MockData.initialize(i); // We got new
                // data!
                Point n = MockData.initialize(i); // We got new
                                    // data!
                line.addNewPoints(p, n); // Add it to our graph

        }

        thread = new Thread() {
            public void run() 
            {
                for (int i = 21; i >= 0; i--) {

                    if(stim_end == 0)
                    {
                        try {
                            Thread.sleep(1800);
                        } catch (InterruptedException e) {
                            // TODO Auto-generated catch block
                            e.printStackTrace();
                        }

                        Point p = MockData.getDataFromReceiver1(i); // We got new
                        // data!
                        Point n = MockData.getDataFromReceiver2(i); // We got new
                                            // data!
                        line.addNewPoints(p, n); // Add it to our graph
                        gView.repaint();

                    }



                }
                meas_exec = 1;
            }
        };

        thread.start();


        layout.addView(gView);

    }

来自我的MockData.java:

public class MockData {

public static Point initialize(int x)
        {
            // Our first data
            double[] xi = { 1,1.091,1.189,  1.297,  1.414,  1.542,  1.682,  1.834,  2,  2.181,  2.378,  2.594,  2.828,  3.084,  3.364,  3.668,  4, 4.362,   4.757,  5.187,  5.657,  6.169};  // x values!
            double[] yi =  { -10, -10, -10, -10, -10, -10, -10, -10, -10, -10, -10, -10, -10, -10, -10, -10, -10, -10, -10, -10, -10, -10 }; // y values!


            return new Point(xi[x], yi[x]);
        }


    public static Point getDataFromReceiver1(int x)
    {

        // Our simulated dataset sensor 1

        double[] x1 ={ 1,1.091,1.189,   1.297,  1.414,  1.542,  1.682,  1.834,  2,  2.181,  2.378,  2.594,  2.828,  3.084,  3.364,  3.668,  4, 4.362,   4.757,  5.187,  5.657,  6.169};  // x values!
        double[] y1 =  { 1.4, 1.1, 1.5, 8.3, 11.4,-1, 2, 8.3, 11.4, 2, 8.3, 13, -10, 8.3, 11.4, 2,  8.3, 13, -10, 2, 0, 3 }; // y values!


        return new Point(x1[x], y1[x]);
    }


        public static Point getDataFromReceiver2(int x)
        {
            // Our simulated dataset sensor 2

            double[] x2 = { 1,1.091,1.189,  1.297,  1.414,  1.542,  1.682,  1.834,  2,  2.181,  2.378,  2.594,  2.828,  3.084,  3.364,  3.668,  4, 4.362,   4.757,  5.187,  5.657,  6.169};// x values!
            double[] y2 =  { 3, 3.4,-2, -10.6, -3, -8, -5, 0, 2 ,-3, -8,  2 ,-3, -15.0, -3, -8, 3, 3.4, 0, 2 , 2 ,-3}; // y values!


            return new Point(x2[x], y2[x]);
        }
}

修改

以下是我想要完成的事情的说明。红色箭头显示我想在哪个方向上绘制值(指示第1,第2,第3 ......点顺序)

http://i61.tinypic.com/164ccz.png

因此,我绘制的第一个点是大约6kHz并且持续大约1kHz,但是当我看到该图时,它应该在1kHz到6kHz之间正确显示。因此,在开始时,图表左侧的点将会丢失,并将逐渐绘制。

3 个答案:

答案 0 :(得分:0)

您是否尝试过将X值乘以 -1 然后绘制它们?

这样可以将您的值从-6000绘制到-1000而无需做更多工作,只需更改X轴标签的显示方式。

我确实有一个如何在GraphView中执行此操作的示例,因此如果此解决方案适合您,请不要犹豫,请求它!

答案 1 :(得分:0)

我在这里找到了这个解决方案:Google Groups Achartengine 但我似乎无法找到引用的java文件(DefaultRenderer.java,Pan.java ......) 我只能在包中看到相应的.class文件......

答案 2 :(得分:0)

我终于找到了一个解决方案,只需初始化一个表,然后使用新样本更新此表并刷新我收集的每个新样本的绘图。

代码示例:

measurement_table[index] = measurement;
noise_table[index] = noise;


//Clear points in lineseries to add a new lineseries after
line.clearPoints();

//Update with a new lineseries
for(int i=0;i<table_size;i++)
{           
    Point p = new Point(x[i], measurement_table[table_size-1-i]);
    Point n = new Point(x[i], noise_table[table_size-1-i]);
    line.addNewPoints(p, n); // Add it to our graph 
}
gView.repaint(); //Replot