/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 config.php

  • Committer: Suren A. Chilingaryan
  • Date: 2020-02-06 06:07:51 UTC
  • Revision ID: csa@suren.me-20200206060751-n4lbi25y4wh10f3u
Generalize data filtering/resampling in the VIEWs and provide common tools for secondary time series plots (based on work of Jalal)

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
        ),
77
77
    );
78
78
 
 
79
    $ADEI_RESAMPLERS = array(
 
80
        "skip" => array(
 
81
            'title' => _("Skip incomplete vectors"),
 
82
            'handler' => "SKIPResampler",
 
83
            'opts' => array()
 
84
        ),
 
85
        "last" => array(
 
86
            'title' => _("Take last recorded value"),
 
87
            'handler' => "LASTResampler",
 
88
            'opts' => array(
 
89
                'max_gap' => 0,
 
90
            )
 
91
        ),
 
92
    );
79
93
 
80
94
        /* more specific configs should go after less specific ones */
81
95
    $OPTIONS = array (