/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk

« back to all changes in this revision

Viewing changes to classes/views/calcview.php

  • Committer: Suren A. Chilingaryan
  • Date: 2020-02-06 07:03:28 UTC
  • Revision ID: csa@suren.me-20200206070328-ochly0am0oej0ell
Fix SKIPResampler

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
        $total = sizeof($res_full['data']);
75
75
        $res = $this->ResampleData($res_full, $agg);
76
76
        $missing = $res['info']['incomplete'];
 
77
        $displayed = sizeof($res['data']);
77
78
        
78
79
        $data = array();
79
80
        foreach ($res['data'] as $t => $v) {
108
109
        }
109
110
 
110
111
        $info = array(
111
 
            array("title" => _("Data Records"), "value" => "$total (of $this->max_points)"),
112
 
            array("title" => _("Skipped Incomplete"), "value" => "$missing"),
 
112
            array("title" => _("Acquired Data Records"), "value" => "$total (of $this->max_points)"),
 
113
            array("title" => _("Skipped Incomplete Records"), "value" => "$missing"),
 
114
            array("title" => _("Displayed Records"), "value" => "$displayed"),
113
115
            array("title" => _("Operation"), "value" => "$this->math_func"),
114
116
            array("title" => _("x"), "value" => "$el_parent_x - $el_x"),
115
117
            array("title" => _("y"), "value" => "$el_parent_y - $el_y"),