Changes between Version 2 and Version 3 of adeiDG

Show
Ignore:
Author:
csa (IP: 141.52.232.84)
Timestamp:
06/25/08 12:09:57 (16 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • adeiDG

    v2 v3  
    66== Supported Services == 
    77'''Accessing current configuration''' 
    8  * ''server.php'' - List of configured data sources 
    9  * ''database.php'' - List of available databases within data source 
    10  * ''loggroup.php'' - List of available loggroups within specified database 
    11  * ''mask.php'' - List of configured masks withing specified loggroup 
    12  * ''item.php'' - List of available data items (channels) within specified loggroup 
    13  * ''experiment.php'' - List of experiments 
    14  * ''timewindow.php'' - List of standard window sizes 
     8 * ''server.php'' - Returns list of configured data sources 
     9 * ''database.php'' - Returns list of available databases within data source 
     10 * ''loggroup.php'' - Returns list of available loggroups within specified database 
     11 * ''mask.php'' - Returns list of configured masks withing specified loggroup 
     12 * ''item.php'' - Returns list of available data items (channels) within specified loggroup 
     13 * ''experiment.php'' - Returns list of experiments 
     14 * ''timewindow.php'' - Returns list standard window sizes 
    1515'''Access to the export related configuration''' 
    16  * ''format.php'' - List of supported export formats 
    17  * ''export_sampling.php'' - List of supported sampling rates (for data export) 
    18  * ''export_window.php'' - List of supported export modes (interval) 
     16 * ''format.php'' - Returns list of supported export formats 
     17 * ''export_sampling.php'' - Returns list of supported sampling rates (optional, for data export) 
     18 * ''export_window.php'' - Returns list of supported export modes (interval) 
    1919   * Selection 
    2020   * Currently opened data window 
    2121   * Whole experiment 
    22  * ''export_mask.php'' - List of supported export modes (item mask) 
     22 * ''export_mask.php'' - Returns list of supported export modes (item mask) 
    2323   * Current group only 
    2424   * All groups having the mask with specified name 
    2525   * Complete data source 
    2626   * Everything 
    27 '''Access to the data aggregation related configuration''' 
    28  * ''aggregation.php'' - List of supported data aggregation modes (MEAN, MMAX, ...) 
    29  * ''interpolate.php'' - List of current interpolation modes 
    30  * ''show_gaps.php'' - 
    31  * ''show_marks.php'' - 
     27'''Access to the data aggregation related configuration (image generation)''' 
     28 * ''aggregation.php'' - Returns list of supported data aggregation modes (MEAN, MMAX, ...) 
     29 * ''interpolate.php'' - Returns list of current interpolation modes 
     30 * ''show_gaps.php'' - Returns list of available modes for reporting missing data 
     31 * ''show_marks.php'' - Returns list of available modes for reporting positions of real data points 
    3232'''Data requests''' 
    33  * ''getdata.php'' -  
    34  * ''getimage.php'' - 
    35  * ''update.php'' - ??? 
     33 * ''getdata.php'' - Returns the requested data in the specified format (only real data is returned, no aggregation is performed) 
     34 * ''genimage.php'' - Generate image and return image identificator (for future use in getimage.php) along with various image properties. 
     35 * ''getimage.php'' - Returns the specified image (which previously generated with ''genimage'' request) 
    3636 
    3737== Supported Parameters == 
    4040 * ''db_name'' - Database name (within data source) 
    4141 * ''db_group'' - Log Group (Identificator) 
    42  * ''db_mask'' - Item mask 
     42 * ''db_mask'' - Item mask, possible values are: 
    4343   * mask name 
    4444   * comma separated list of items (numeric, counted from zero) 
    5252 * ''filename'' - desired file name (optional) 
    5353 * ''mask_mode'' - should be specified if multiple groups are requested 
     54'''Data aggregation parameters''' 
     55 * ''aggregator'' - data aggregation mode 
     56 * ''show_marks'' - real-data-points reporting mode 
     57 * ''show_gaps'' - missing-data reporting mode 
     58 * ''interpolate_gaps'' - data interpolation mode 
     59'''Various''' 
     60 * ''id'' - image id in ''getimage'' request