Changes between Version 2 and Version 3 of adeiDG
- Timestamp:
- 06/25/08 12:09:57 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
adeiDG
v2 v3 6 6 == Supported Services == 7 7 '''Accessing current configuration''' 8 * ''server.php'' - List of configured data sources9 * ''database.php'' - List of available databases within data source10 * ''loggroup.php'' - List of available loggroups within specified database11 * ''mask.php'' - List of configured masks withing specified loggroup12 * ''item.php'' - List of available data items (channels) within specified loggroup13 * ''experiment.php'' - List of experiments14 * ''timewindow.php'' - List ofstandard window sizes8 * ''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 15 15 '''Access to the export related configuration''' 16 * ''format.php'' - List of supported export formats17 * ''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) 19 19 * Selection 20 20 * Currently opened data window 21 21 * 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) 23 23 * Current group only 24 24 * All groups having the mask with specified name 25 25 * Complete data source 26 26 * 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 modes30 * ''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 32 32 '''Data requests''' 33 * ''getdata.php'' - 34 * ''ge timage.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) 36 36 37 37 == Supported Parameters == 40 40 * ''db_name'' - Database name (within data source) 41 41 * ''db_group'' - Log Group (Identificator) 42 * ''db_mask'' - Item mask 42 * ''db_mask'' - Item mask, possible values are: 43 43 * mask name 44 44 * comma separated list of items (numeric, counted from zero) 52 52 * ''filename'' - desired file name (optional) 53 53 * ''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