IADS Batch Server User Guide. Version July 2014 SYMVIONICS Document SSD-IADS SYMVIONICS, Inc. All rights reserved.

Size: px
Start display at page:

Download "IADS Batch Server User Guide. Version July 2014 SYMVIONICS Document SSD-IADS SYMVIONICS, Inc. All rights reserved."

Transcription

1 IADS Batch Server User Guide Version July 2014 SYMVIONICS Document SSD-IADS SYMVIONICS, Inc. All rights reserved.

2 Table of Contents 1. IADS Batch Server Batch Server TestInfo Command Search Command DataExport Command Config Command Archive Command Statistic Command (Work in Progress) DataImport Command Data Group Setup and Export Options ii

3 1. IADS Batch Server 1.1. Batch Server The IADS Batch Server is a Post Test application that allows the end user to create various informational output files from an IADS archive data set. These files can be CSV or binary data depending on the command and the selected output type Each functional area has a unique set of commands that are performed by the IADS Batch Server entered using the application command line, which is handy for scripting, from the GUI, or from a run file when multiple commands are desired. In addition, certain commands can be chained together where the output file from one command can be used as input to a follow-on command. Batch Server Command Types: TestInfo - The Test Information command is used to output CSV compatible files of a variety of data collected during a test. Search - The Search command is used to output event times from a single IADS test set or multiple IADS test sets to a CSV file. Any conditional statement that is valid in IADS can also be used as an equation in the Search command. DataExport - The Export command is used to output parameter data within user specified time segments. Config - The Config command can be used to import or export IADS Analysis Windows or Desktops from an IADS configuration file. Archive - The Archive command is used to combine, split or convert IADS data files. Statistic (Work in Progress) DataImport The DataImport command is used to create a data set (IADS data files and config) from a CSV file that defines measurements for usage in the IADS Playback Client. To create a run file with multiple commands: A run file have two halves separated by an equal = sign. The left side is the command name and the right side has the arguments. An entry in the run file preceded by an asterisk * will be commented out. Click on a link above to see all the command options for that type. 1. Open Notepad on your computer. 2. Enter Batch Server commands. 3. Save the file. 1

4 IADS Help To run the IADS Batch Server using a run file: 1. Double-click the IADS Batch Server icon on the Desktop. 2. Click the File menu > Open. 3. Navigate to the run file and click Open. To re-load a run file: Click the File menu > Reload Run File. To run the IADS Batch Server using a single command: 1. Double-click the IADS Batch Server icon on the Desktop. 2. Click the drop down at the bottom of the dialog to select a command type such as TestInfo, Search, DataExport, Config or Archive. 3. Enter a corresponding command for that command type. For example, click the drop down to select TestInfo and in the blank field enter: ExportDataGroups c:\iadsposttestdata\pfconfig c:\datagroups.csv 4. Click the Execute button. Command rules: 1. In a Run file commands are executed serially from top to bottom. 2. Spaces in an argument must be enclosed in quotes " ". 3. Double quotes in text must be preceded with another quote "". To save a Batch Server log file: Click the File menu > Send to Log File. The IadsBatchServer.log is created in the directory that contains the IadsBatchServer.exe. 2

5 IADS Batch Server To execute a run file or command from the Command Prompt Commands on the application command line have a "/" to designate the command, and the arguments separated by spaces; or use /runfile. For example: c:\program Files\IADS\BatchServer\IadsBatchServer /runfile c:\iadsbatchserver\runfile.txt STDOUT (standard output stream) can be used as an argument for the TestInfo, Search and DataExport commands in lieu of an output file. For example: c:\programfiles\iads\batchserver>iadsbatchserver /Hide /TestInfo Export DataGroups c:\iadsposttestdata\pfconfig STDOUT > c:\output.txt Miscellaneous Commands Hide command /Hide entered at the command prompt before the batch server command will prevent the Batch Server GUI from opening. For example: IadsBatchServer /Hide /TestInfo Export TestPoints D:\PostTestData\TestSet\pfconfig D:\test\TestPoints.csv Version command /Version returns the version number of the IADS Batch Server application in the Batch Server window. For example: IadsBatchServer /Version. 3

6 IADS Help 1.2. TestInfo Command The Test Information command is used to output (export) CSV compatible files of a variety of data collected during a test that is contained in the IADS Configuration file. You can then use the TestInfo data file that was exported as an input (import) file. The distinction between export or import is declared in the first argument. TestInfo Type DataGroup DataGroups EventMarkers Description Output (only) a single DataGroup to/from a CSV file. The Parameters and Properties are serialized in the output file. Output/Input the DataGroups table to/from a CSV file. Output/Input the Event Markers table to/from a CSV file. MissionAttributes Output/Input the Mission Attributes table to/from a CSV file. Parameters Output (only) selected columns of the Parameter Defaults table to/from a CSV file. ParameterDefaults Output/Input all columns of the Parameter Defaults table to/from a CSV file. Selections TestInfo TestPoints Thresholds Output/Input the Selections table to/from a CSV file. Output (only) the Flight, Test and Tail Number, the Flight Date and the Archive Start and End times to/from a CSV file. Output/Input the Test Points table to/from a CSV file. Output/Input the Thresholds table to/from a CSV file. TimeSegmentLog Output/Input the TimeSegmentLog table to/from a CSV file. TestInfo command arguments: Arg1 - Export or Import Arg2 - TestInfo Type (see TestInfo Table above) Arg3 - The IADS configuration file name and path Arg4 - The CSV input or output file name and path Arg5 - [Optional for TestInfo = DataGroup] MyGroupName Arg5 - [Required for TestInfo = Parameters] True or False. True adds three columns to the output file: StartTime, EndTime and Valid, otherwise False. TestInfo run file examples: Copy/paste to a Run (Text) file to get started; change name, path, etc as applicable To use a single command in the IADS Batch Server Dialog, enter that part of the command after the = TestInfo = Export DataGroup c:\iadsposttestdata\pfconfig c:\datagroup.csv DG1 Note: There is no Import option for the TestInfo Type = DataGroup command TestInfo = Export DataGroups c:\iadsposttestdata\pfconfig c:\datagroups.csv 4

7 IADS Batch Server TestInfo = Import DataGroups c:\iadsposttestdata\import\pfconfig c:\datagroups.csv TestInfo = Export EventMarkers c:\posttestdata\pfconfig c:\eventmarkers.csv TestInfo = Import EventMarkers c:\posttestdata\import\pfconfig c:\eventmarkers.csv TestInfo = Export MissionAttributes c:\iadsposttestdata\pfconfig c:\missionattributes.csv TestInfo = Import MissionAttributes c:\iadsposttestdata\import\pfconfig c:\missionattributes.csv TestInfo = Export Parameters c:\iadsposttestdata\pfconfig c:\parameters.csv True Note: There is no Import option for the TestInfo Type = Parameters command TestInfo = Export ParameterDefaults c:\iadsposttestdata\pfconfig c:\parameterdefaults.csv TestInfo = Import ParameterDefaults c:\iadsposttestdata\import\pfconfig c:\parameterdefaults.csv TestInfo = Export Selections c:\iadsposttestdata\pfconfig c:\selections.csv TestInfo = Import Selections c:\iadsposttestdata\import\pfconfig c:\selections.csv TestInfo = Export TestInfo c:\iadsposttestdata\pfconfig c:\testinfo.csv Note: There is no Import option for the TestInfo Type = TestInfo command TestInfo = Export TestPoints c:\iadsposttestdata\pfconfig c:\testpoints.csv TestInfo = Import TestPoints c:\iadsposttestdata\import\pfconfig c:\testpoints.csv TestInfo = Export Thresholds c:\iadsposttestdata\pfconfig c:\thresholds.csv TestInfo = Import Thresholds c:\iadsposttestdata\import\pfconfig c:\thresholds.csv TestInfo = Export TimeSegmentLog c:\iadsposttestdata\pfconfig c:\timesegmentlog.csv TestInfo = Import TimeSegmentLog c:\iadsposttestdata\import\pfconfig c:\timesegmentlog.csv TestInfo command line example: TestInfo commands executed on the application command line have a / to designate the command /TestInfo Export EventMarkers c:\iadsposttestdata\pfconfig c:\eventmarkers.csv 5

8 IADS Help 1.3. Search Command The Search command is used to output event times from a single IADS test set or multiple IADS test sets to a CSV file. Any conditional statement that is valid in IADS can also be used as an equation in the Search command. Also, start and stop times can be specified to search a particular subset of data. Search command arguments: Arg1 - The IADS configuration file name and path Arg2 - Equation - The events returned when the equation is True. Multiple equations or those with spaces must be enclosed in quotations. See the Search examples below. Arg3 - Transition Only: True or False. True - One event for each instance the equation is True. False - All events where the equation is True. TrueFalse - The start and end times only of the condition. Arg4 - Output File - the CSV output (results) file name and path; or STDOUT. Arg5 - [Optional] TestInfo File - TestInfo generated CSV file with start and stop times defined. - Or - Arg5 - [Optional] IRIG Start Time. Arg6 - [Optional] IRIG Stop Time. Note: When executing a multi-test search, enter the folder name for the IADS post test data, not the IADS config file name. For example, Search = c:\iadsposttestdata C001_03<0 True c:\test\search4.csv Search run file examples: Copy/paste to a Run (Text) file to get started; change name, path, etc as applicable To use a single command in the IADS Batch Server Dialog, enter that part of the command after the = Search = c:\iadsposttestdata C001_03<0 True c:\test\search.csv Search = c:\iadsposttestdata\pfconfig "C001_03>2305 && IN001_10>0.25 && C001_04!=0" True c:\test\search.csv Search = c:\iadsposttestdata\pfconfig "(C001_03 > 2305) && (IN001_10 > 0.25) && (C001_04!= 0)" True c:\test\search.csv Search = c:\iadsposttestdata\pfconfig C001_02>0 TRUEFALSE c:\test\search.csv Search command line example: Search commands executed on the application command line have a / to designate the command /Search c:\iadsposttestdata\pfconfig "(C001_03 > 2305) && (IN001_10 > 0.25) && (C001_04!= 0)" True STDOUT 6

9 IADS Batch Server Search output file example: 1.4. DataExport Command The Export command can be used to output parameter data within the user specified time segments. Export Type CSV Time Segment(s) IRIG Start Time IRIG Stop Time Description Outputs parameters to a CSV file. One time segment. IRIGStartTime and IRIGStopTime arguments in the command line. CSV TestInfo File Output parameters to individual CSV files; one for each time segment. Processes more than one time segment using IRIG start and stop times from a CSV output file that was created from a TestInfo command. IADS IRIG Start Time IRIG Stop Time Output parameters to individual IADS data files (.iadsdata) within the specified folder. One time segment. IRIGStartTime and IRIGStopTime arguments in the command line. IADS TestInfo File Output parameters to IADS data files (.iadsdata). This option will create a compacted form of IADS data where multiple time segments are appended into a single parameter file. Processes more than one time segment using IRIG start and stop times from a CSV output file that was created from a TestInfo command. Matlab IRIG Start Time IRIG Stop Time Outputs parameters to a Matlab (.mat) file. One time segment. IRIGStartTime and IRIGStopTime arguments in the command line. Matlab TestInfo File Output parameters to individual MAT files; one for each time segment. Processes more than one time segment using IRIG start and stop times from a CSV file that was created from a TestInfo command. DataExport command arguments: Arg1 - IADS Config File - The IADS config file name and path Arg2 - Export Type CSV (.csv) or IADS (.iadsdata) file Arg3 - Parameters Only one of the following options can be specified in the command: Option 1: The Data Group you want to export; and export options [optional]. Option 2: A comma separated list of parameters; and export options [optional]. The format is <Parm1,Parm2,...> <CSV export options> (note the two are pipe-separated). 7

10 IADS Help Option 3: A 'TestInfo' DataGroup generated CSV file (DataGroup.csv) Arg4 - Time - Only one option can be specified in the command: Option 1: IRIG Start Time and IRIG Stop Time of the data you want to export Option 2: The TestInfo CSV file name and path. Processes more than one time segment using IRIG start and stop times from a CSV output file generated from one of the TestInfo commands. Option 3: A Search command generated CSV file, name and path. Arg5 - Output File - The output (results) file name and path; or STDOUT. If you selected IADS as the Export Type in arg2, enter a folder name (not file name) for this argument; IADS data files will be created for each parameter in the data group in the specified folder. DataExport run file examples: Copy/paste to a Run (Text) file to get started; change name, path, etc as applicable To use a single command in the IADS Batch Server Dialog, enter that part of the command after the = DataExport = c:\posttestdata\pfconfig CSV DataGroup 001:00:01: :00:01: c:\dataexport DataExport = c:\posttestdata\pfconfig CSV DataGroup c:\testpoints.csv c:\dataexporttestpoints.csv DataExport = c:\posttestdata\pfconfig CSV Parm1,Parm2,Parm3 \TriggerParam=* 001:01:00: :01:01:00.00 c:\dataexport DataExport = c:\posttestdata\pfconfig IADS DataGroup 001:00:01: :00:01: c:\dataexport DataExport = c:\posttestdata\pfconfig IADS DataGroup c:\testpoints.csv c:\dataexport DataExport = c:\posttestdata\pfconfig Matlab DataGroup 001:00:01: :00:01: c:\dataexport.mat DataExport = c:\posttestdata\pfconfig Matlab DataGroup c:\testpoints.csv c:\dataexporttestpoints.mat Command line examples: DataExport commands executed on the application command line have a / to designate the command /DataExport c:\posttestdata\pfconfig CSV "AB1001X,AB1002X,AB1003X \DataPrecision=4\SampleRate=10\NoDataText=None" 001:00:00: :00:00: c:\dataexport.csv 8

11 IADS Batch Server Example output directory: CSV file output: 9

12 IADS Help 1.5. Config Command The Config command can import or export IADS Analysis Windows or Desktops from and IADS configuration file. Config Import command arguments: Arg1 - Import Arg2 - The IADS config file name and path that you want to import the Analysis Window or Desktop into Arg3 - Type - AW (Analysis Window) or DT (Desktop) Arg4 - The Analysis Window.iadsAw or Desktop.iadsDt file name and path Arg5 - [Only used if Arg3 = AW] The Desktop name that you want to import the Analysis Window into Config Import run file examples: Copy/paste to a Run (Text) file to get started; change name, path, etc as applicable To use a single command in the IADS Batch Server Dialog, enter that part of the command after the = Config = Import c:\posttestdata\pfconfig AW c:\status.iadsaw Desktop1 Config = Import c:\posttestdata\pfconfig DT c:\desktop1.iadsdt Config Export command arguments: Arg1 - Export Arg2 - The IADS config file name and path Arg3 - Type - AW (Analysis Window) or DT (Desktop) Arg4 - The name of the Analysis Window or Desktop. To specify more than one Analysis Window or Desktop separate the names with a pipe (no spaces) Arg5 - Output Directory - The CSV output (results) directory name and path Config Export run file examples: Copy/paste to a Run (Text) file to get started; change name, path, etc as applicable To use a single command in the IADS Batch Server Dialog, enter that part of the command after the = Config = Export c:\posttestdata\pfconfig AW Status c:\test Config = Export c:\posttestdata\pfconfig DT Flutter c:\test Command line examples: Config commands executed on the application command line have a / to designate the command /Config Import c:\posttestdata\pfconfig DT c:\desktop1.iadsdt /Config Export c:\posttestdata\pfconfig AW Status c:\test 10

13 IADS Batch Server 1.6. Archive Command This command only supports IADS data files that have the extension '.iadsdata'. Note: Arguments that contain spaces must be enclosed in quotations "a b c d". Archive Type Combine Split Convert Merge Description Combines multiple data directories into one large data set. The process will combine Param1, Param2, Param3 in InputFolder1, with Param1, Param2, Param3 in InputFolder2, and so on. Any data files that do not match, for example ParamX, will get copied to the output directory as is. Please refer to the rules below. Splits a time slice of data from an existing data archive and copies it to the specified destination folder. Converts an IADS data file to or from an IADS ASCII text file. This may be useful for use in other programs or for visual inspection of data values. Merges any TPP or IAP parameters from multiple data directories into a single periodic data set. The process will combine Param1, Param2 and their PDT information from InputFolder1, Param3, Param4 and their PDT information from InputFolder2, and so on; into a designated output folder. It is recommended to merge data with similar start and end times. Combine Archive Combine command arguments: This command combines multiple data directories into one large data set. The process will combine Param1, Param2, Param3 in InputFolder1, with Param1, Param2, Param3 in InputFolder2, and so on. Any data files that do not match, for example ParamX, will get copied to the output directory as is. Please refer to the rules below. Arg1 - Combine Arg2 - Output folder - The output directory name and path for all the combined data sets Arg3 - InputFolder1 with config - The directory name and path for the 'master' data set, for example, c:\posttestdata\folder1\pfconfig. All files from this folder (config file, auxiliary files, etc.) will get copied to the Output folder Arg4 - InputFolder2 - The directory name and path of Folder2 (should contain the same data files/parameters as Folder1) Arg5 - InputFolderN - The directory name and path of InputFolderN (should contain the same data files/parameters as Folder1, Folder2, etc.) Rules: 1. The first input folder is considered the "master" dataset and all of the files from that folder (config, auxiliary files, etc.) will get copied over to the output directory. The data files in the resulting dataset will be aperiodic or multi-periodic files that reflect the data from each input folder. 2. To get a valid multi-periodic data file for each parameter, the data in each input folder must match ; contain the same list of data files (parameters) in each input folder. 3. The time slices of data in each input folder must increase from input folder to input folder. This means that the end time of the data in InputFolder1 must be less than the 11

14 IADS Help start time of the data in InputFolder2, the end time of InputFolder2 must be less than the start time of the data in InputFolder3, etc. Archive Combine run file example: Copy/paste to a Run (Text) file to get started; change name, path, etc as applicable To use a single command in the IADS Batch Server Dialog, enter that part of the command after the = Archive = Combine c:\posttestdata\combinedata c:\posttestdata\folder1\pfconfig c:\posttestdata\folder2 c:\posttestdata\folder3 Archive Combine command line example: Archive commands executed on the application command line have a / to designate the command /Archive Combine c:\posttestdata\combinedata c:\posttestdata\folder1\pfconfig c:\posttestdata\folder2 c:\posttestdata\folder3 Split Archive Split command arguments: This command splits a time slice of data from an existing data archive and copies it to the specified destination folder. The directory structure of the source archive is preserved; only the length of time is changed. Arg1 - Split Arg2 - Data directory with config. The directory name and path for the data set, for example, c:\posttestdata\pfconfig Arg3 - IRIG start time Arg4 - IRIG stop time Arg5 - Output folder - The output directory name and path for the new data set Archive Split run file example: Copy/paste to a Run (Text) file to get started; change name, path, etc as applicable To use a single command in the IADS Batch Server Dialog, enter that part of the command after the = Archive = Split c:\posttestdata\pfconfig 001:00:01: :00:01: c:\newdataset Archive Split command line example: Archive commands executed on the application command line have a / to designate the command /Archive Split c:\posttestdata\pfconfig 001:00:01: :00:01: c:\newdataset 12

15 IADS Batch Server Convert Archive Convert command arguments: This command converts an IADS data file to or from an IADS ASCII text file. This may be useful for use in other programs or for visual inspection of data values. Arg1 - Convert Arg2 - The folder name and path containing the IADS data files to convert Arg3 - The list of parameter files to convert. Only one option can be specified in the command: Option 1: A comma separated list of parameter names Option 2: A 'DataGroup' file created by the IadsBatchServer Option 3: An asterisk * to denote all files in the specified folder Arg4 - The conversion method. Only one option can be specified in the command: Option 1: ToAscii - Convert an IADS data file to the equivalent IADS ascii file Option 2: FromAscii - Convert an IADS ascii file to the equivalent IADS data file Arg5 - Output folder - The output directory name and path for the converted files Arg6 - True or False - Enter True to verify the ASCII file by converting it back to an IADS binary data file and doing a byte compare with the source IADS data file; otherwise False (default) Archive Convert run file example: Copy/paste to a Run (Text) file to get started; change name, path, etc as applicable -To use a single command in the IADS Batch Server Dialog, enter that part of the command after the = Convert some IADS data files to ASCII, then back to IADS data files (verification active (True)): Archive = Convert c:\sourcedata Parm1,Parm2,Parm3 ToAscii c:\asciidata True Archive = Convert c:\asciidata Parm1,Parm2,Parm3 FromAscii c:\asciidata True Convert a folder of data files to ASCII, then back to IADS data files (no verification (False)): Archive = Convert c:\sourcedata * ToAscii c:\asciidata True Archive = Convert c:\asciidata * FromAscii c:\asciidata True Convert parameters specified in a TestInfo = DataGroup generated csv file to ASCII, then back to IADS data files: Archive = Convert c:\sourcedata c:\datagroup.csv ToAscii c:\asciidata False Archive = Convert c:\asciidata * FromAscii c:\asciidata False Archive Convert command line example: Archive commands executed on the application command line have a / to designate the command /Archive = Convert c:\sourcedata * ToAscii c:\asciidata True /Archive = Convert c:\asciidata * FromAscii c:\asciidata True 13

16 IADS Help Merge Archive Merge command arguments: Merges any TPP or IAP parameters (not available for derived parameters) from multiple data directories into a single periodic data set. The process will combine Param1, Param2 and their PDT information from InputFolder1, Param3, Param4 and their PDT information from InputFolder2, and so on; into a designated output folder. It is recommended to merge data with similar start and end times. Arg1 - Merge Arg2 - Output folder - The output directory name and path. This directory should not contain any config files or data (empty directory). The config files you specify in the following arguments will be merged into a single config file, in this directory. Arg3 - Master config - The file name and path of the 'master' config. The config file and all data in this 'master' directory will be copied to the specified output directory in Arg2. No parameter options are allowed for this argument. Arg4 - InputConfig1 - The file name and path of the first input config. 14 Note: Options can be combined. All options follow the command with a pipe separator (see example below). Option 1: \Parameters - A comma separated list of parameter names, for example, \Parameters=Param1,Param2,Param3 (if no parameters are defined, all parameters (except derived) will be copied to the output folder config) Option 2: \Datagroup - A DataGroup name defined in the Parameter Defaults Table, for example, \DataGroup=ABCD (if a datagroup is not defined, all parameters (except derived) will be copied to the output folder config) Option 3: \Prefix - Prepends a string to the beginning of each parameter that you specify, for example, \Prefix=1_ Option 4: \Suffix - Appends a string to the end of each parameter that you specify, for example, \Suffix=_B Arg5 - InputConfigN - The file name and path of the Nth input config. Parameter options: As defined in Arg4. Archive Merge run file example: Copy/paste to a Run (Text) file to get started; change name, path, etc as applicable To use a single command in the IADS Batch Server Dialog, enter that part of the command after the = Merge = Merge "c:\posttestdata\mergeoutput" "c:\posttestdata\masterset\pfconfig" "c:\posttestdata\config1\pfconfig \Parameters=Param1,Param2,Param3\Suffix=_1" "c:\posttestdata\config2\pfconfig \DataGroup=ABCD\Suffix=_2" Archive Merge command line example: Merge commands executed on the application command line have a / to designate the command /Archive Merge "c:\posttestdata\mergeoutput" "c:\posttestdata\masterset\pfconfig" "c:\posttestdata\config1\pfconfig \Parameters=Param1,Param2,Param3\Suffix=_1" "c:\posttestdata\config2\pfconfig \DataGroup=ABCD\Suffix=_2"

17 IADS Batch Server 1.7. Statistic Command (Work in Progress) 1.8. DataImport Command DataImport command arguments: Arg1 File type: CSV is the only supported format at this time. Arg2 - InputFile - The file name and path of the input file and optional import options (the input file and the export options are separated by a pipe, see the run file examples shown below). Valid options include: \Delimiter - Determines what delimiter (single character) will be used to parse the file. Any single character may be used as a delimiter. You may also specify a tab delimiter by using the keyword TAB, or a space delimiter by using the keyword SPACE. The default delimiter if this property is not specified is a comma (,). \NumHeaderRows - The number of rows in the file header that will be skipped to get to the data. Default is 0 if this property is not specified. \TimeColumn - The 1-based column index where time is present in the file. Default is 1 if this property is not specified. \StartTime - User-specified IRIG start time of the output files. If this property is not specified, the start time will be read from the input file based on the specified TimeColumn. \SampleRate - User-specified sample rate of the output files. If this property is not specified, the sample rate will be calculated based on the times in the specified TimeColumn of the input file. \Custom Custom data import formats supported by the IADS Batch Server. Currently the following formats are supported: DGPS (Differential Global Positioning System). For example, c:\datafileimport \Custom=DGPS Arg3 - Output folder - The output directory name and path. DataImport run file examples: Copy/paste to a Run (Text) file to get started; change name, path, etc as applicable To use a single command in the IADS Batch Server Dialog, enter that part of the command after the = DataImport = CSV c:\myinputfile.csv c:\iadsoutputfolder DataImport = CSV c:\data File Import \TimeColumn=2\NumHeaderRows=10 c:\outputfolder DataImport = CSV c:\data File Import \Custom=DGPS c:\outputfolder Note: Arguments that contain any spaces must be enclosed in quotations to avoid Batch Server processing errors. DataImport command line example: DataImport commands executed on the application command line have a / to designate the command /DataImport CSV c:\myinputfile.csv c:\iadsoutputfolder 15

18 IADS Help /DataImport CSV c:\myinputfile \TimeColumn=2\NumHeaderRows=10 c:\outputfolder /DataImport CSV c:\myinputfile \Custom=DGPS c:\outputfolder 1.9. Data Group Setup and Export Options Defining a data group in advance allows you to export data for multiple parameters easily. To setup a data group in IADS: 1. On the Dashboard, click Configuration. 2. Click the Data folder > DataGroups table. 3. [Optional] Enter a Group name (SubGroup and User are not currently implemented). This Group name must be the same as your Desktop Group name and only those in that group will be able to see the data group. Leaving the Group field empty allows all users to see the data group. 4. Enter a unique identifier in the Name column, for example, DataGroup1. 5. Enter the parameters that you want to export as a group in the Parameters column. The Parameter Selection Tool is useful for this purpose. 6. [Optional] Enter data group export options in the Property Bag (see the table below). 7. Save the table. Note: DataGroup export options apply to all the parameters defined in that data group (export). To add or change an Export Default Option: 1. Click the Data folder > DataGroups table. 2. In the Name column enter ExportDefaults. 3. In the PropertyBag column of this row, enter one or more options (see table below). For example, \\TimeFormat=IrigString\\DataPrecision=2. 4. Save the table. [Example] To add a decimation factor export option to a DataGroup: 1. Click the Data folder > DataGroups table. 2. On the row containing the data group, in the PropertyBag column, enter \\DecimationFactor=2 (substitute 2 with your own factor). The decimation factor value determines how many point will be skipped from the highest sample rate in the Data Group. For example, 1 = every data point, 2 = every second data point, etc... If the largest sample rate of all parameters with the Data Group was 1000 samples per second and the decimation factor was 2, the data export would produce a value every 1/500 of a second (Note: An anti-aliasing Low Pass filter is recommended prior to decimation). 3. Save the table. 16

19 IADS Batch Server Export Options DataGroup export options apply to all the parameters defined in that data group (export). Option Name and Option Value Option Default Option Example Purpose Decimation Factor - Allows decimation of exported data by a given factor. Integer >1 1 \\DecimationFactor=3 DefaultExportDirectory - A valid directory name Current \\DefaultExportDirectory= Specifies initial directory with backslash Directory c:/temp/directory of export methods that output data files. characters converted to forward slashes DisableFilters - Disables True or False False \\DisableFilters=True filtering. HeaderFormat - Specifies the format type of the header. HeaderRows - Specifies multiple header rows. Filter - Specifies a filter that is applied to all the parameters in the data group on export. Note: To correctly enter the \\Filter... in the property bag cell, apply the desired filter settings to a Stripchart with data, hint on the title to view the filter. NameModification - Modifies name. NamingMethod - Uses various naming methods. SampleRate - Specifies a target or parameter sample rate (overrides decimation factor). Note: prior to downsampling, an anti-aliasing low pass filter is recommended. TimeFormat - Specifies format of time. None, ParamNames, QuotedParamNames Any ParameterDefaults table column heading name(s) BW (Butterworth), Pass Type, FC1, FC2 (not for low pass), Order; EL (Elliptic), Pass Type, Stop-Pass, Pass- Stop, Ripple, Order None, AllCharsToUpper, AllCharsToLower ParameterName, ShortName, LongName Floating Point Value >0.0, ParameterName ParamNames None None None Parameter Name Highest sample rate of data group None, IrigString, IrigString SecondsSinceMidnight, (For Matlab, SecondsSince \\HeaderFormat=None \\HeaderRows=Parameter, Units, DataSourceType \\Filter=BW,BP, ,2 \\Filter=BW,LP,30.0,2 \\Filter=EL,BP, , ,0.01,2 \\NameModification= AllCharsToUpper \\Namingmethod= ShortName \\SampleRate= \\SampleRate=AB1001X \\TimeFormat= SecondsSinceNewYear 17

20 IADS Help TimePrecision - Specifies number of digits past decimal point for time output. 18 SecondsSinceNewYear, Midnight) NanosSinceNewYear (automatically calculates the level of precision from 3-9 based on the highest sample rate of the export.) 3 None \\TimePrecision=5 \\TimePrecision=-1 TriggerParam - Sets the Trigger parameter name None \\TriggerParam= export sample rate for the * (Batch Server only - * ParameterName data group based on the trigger parameter Aperiodic data export that triggers on all \\TriggerParam=* specified. If not specified parameters; every time the periodic parameter with the highest sample rate will be used; If no periodic parameters the point is exported for every parameter, at the rate it occurs in the data file - no sampling). SPS is 50. Excel Only: ExcelMaxRows - Specifies maximum number of rows To export to Excel \\ExcelMaxRows=10000 ExcelMaxRowsMethod - LimitToMax, LimitToMax \\ExcelMaxRowsMethod= Specifies an action when AppendNewWorksheet, AppendNewWorksheet maximum rows exported AppendNewWorkbook to Excel is exceeded. ExcelStatementToRun - Any valid Excel macro None \\ExcelStatementToRun= Executes this Excel MacroToRunAfterExport macro after Data Group has been exported. CSV Only: DataPrecision - Specifies \\DataPrecision=3 number of digits past decimal point for floating point values NanText - If active check Nan None \\NanText=Nan for _finite and then output specific text. SeparatorChar - To allow alternative separator characters such as ; Any ascii character, \\Separatorchar=; NoDataText - To replace Any text/string Blank \\NoDataText=String a cell with 'no data' to the specified text/string. (EmptyString) Matlab Only:

21 IADS Batch Server MatlabExportMethod - Specifies that the export to Matlab will create a "Mat" file or be sent directly to the Matlab application. Name - Sets the exported Matlab matrix name when MatlabExportType= Matrix. ExtendedInfo Adds an export string with information such as time, sample rate, and parameter names. MatlabExportType - Produces either a Matrix of all Data Group parameters or separate vectors. MatlabFile, DirectlyToMatlab Any valid Matlab variable name DirectlyToMatlab None \\MatlabExportMethod= MatlabFile \\Name= MatlabMatrixName None, Minimal Minimal \\ExtendedInfo=None Vector, Matrix Matrix \\MatlabExportType= Vector MatlabStatementToRun Any valid Matlab None - Executes this Matlab command command after Data Group has been exported. MatlabExportShape - Columnwise, Rowwise Columnwise Outputs the vectors and matrices in a column wise format. MatlabMaxRows - Integer number of max Specifies Max Number of rows > 0 Rows To Export to Matlab. MatlabMaxRowsMethod LimitToMax - Specifies an action AppendNewFile when max rows export is exceeded. 0 (limited only by memory) LimitToMax \\MatlabStatementToRun= Surf(MatlabMatrixName) \\MatlabExportShape= RowWise \\MatlabMaxRows= \\MatlabMaxRowsMethod= AppendNewFile 19

Release Notes Version 9.2

Release Notes Version 9.2 Release Notes Version 9.2 Release Date: June 2017 1. IADS capability with Windows 10. 2. IADS embedded Acra Vid106 video will require you to install LAV Filters https://github.com/nevcairiel/lavfilters/releases.

More information

Business Online TM. Positive Pay - Adding Issued Items. Quick Reference Guide

Business Online TM. Positive Pay - Adding Issued Items. Quick Reference Guide Business Online TM Positive Pay - Adding Issued Items Quick Reference Guide Positive Pay Adding Issued Items Manually or Using Templates Positive Pay is a risk management solution that provides the ability

More information

Release Notes Version 8.1

Release Notes Version 8.1 Release Notes Version 8.1 Release Date: February 2013 1. The IADS Start Menu has been reorganized for better access to the applications. The IADS Installation package options and shortcuts have also been

More information

IADS UDP Custom Derived Function. February 2014 Version SYMVIONICS Document SSD-IADS SYMVIONICS, Inc. All rights reserved.

IADS UDP Custom Derived Function. February 2014 Version SYMVIONICS Document SSD-IADS SYMVIONICS, Inc. All rights reserved. IADS UDP Custom Derived Function February 2014 Version 8.1.1 SYMVIONICS Document SSD-IADS-050 1996-2018 SYMVIONICS, Inc. All rights reserved. Created: March 4, 2010 Table of Contents 1. Introduction...

More information

IADS Training Syllabus. December 2014 SYMVIONICS Document SSD-IADS SYMVIONICS, Inc. All rights reserved.

IADS Training Syllabus. December 2014 SYMVIONICS Document SSD-IADS SYMVIONICS, Inc. All rights reserved. IADS Training Syllabus December 2014 SYMVIONICS Document SSD-IADS-015 1996-2015 SYMVIONICS, Inc. All rights reserved. 1 Length: 8 Hours Prerequisite: None IADS Basic Module Introduction IADS Real-Time

More information

You can import data from a CSV file into an existing table or to a new table. The steps are almost identical:

You can import data from a CSV file into an existing table or to a new table. The steps are almost identical: Importing Table Data Only in DbVisualizer Pro This feature is only available in the DbVisualizer Pro edition. You can import data using the Import Table Data wizard. Input File Format and Other Options

More information

28 Simply Confirming On-site Status

28 Simply Confirming On-site Status 28 Simply Confirming On-site Status 28.1 This chapter describes available monitoring tools....28-2 28.2 Monitoring Operational Status...28-5 28.3 Monitoring Device Values... 28-11 28.4 Monitoring Symbol

More information

IADS Chapter 10 User Guide - Obsolete refer to new IADS Real Time Station User Guide 1/16 -

IADS Chapter 10 User Guide - Obsolete refer to new IADS Real Time Station User Guide 1/16 - IADS Chapter 10 User Guide - Obsolete refer to new IADS Real Time Station User Guide 1/16 - March 2013 SYMVIONICS Document SSD-IADS-153 1996-2018 SYMVIONICS, Inc. All rights reserved. Created January 20,

More information

Sequencer as a Service: Configuration Set Up the Service Mode for Workstations and Configure Sequences

Sequencer as a Service: Configuration Set Up the Service Mode for Workstations and Configure Sequences SeMSy III is a high-performance and future-proof video management system with optimum user friendliness. It offers a comprehensive range of functions, including the display of live images, various search

More information

Real Time Station Quick Start Guide

Real Time Station Quick Start Guide Real Time Station Quick Start Guide February 2015 IADS Version 8.1.2 SYMVIONICS Document SSD-IADS-016 1996-2015 SYMVIONICS, Inc. All rights reserved. Table of Contents 1. Introduction...4 1.1. Licensing...4

More information

How to use Pivot table macro

How to use Pivot table macro How to use Pivot table macro Managing Pivot Tables Table Filter and Charts for Confluence add-on allows you to summarize your table data and produce its aggregated view in the form of a pivot table. You

More information

2 Spreadsheet Considerations 3 Zip Code and... Tax ID Issues 4 Using The Format... Cells Dialog 5 Creating The Source... File

2 Spreadsheet Considerations 3 Zip Code and... Tax ID Issues 4 Using The Format... Cells Dialog 5 Creating The Source... File Contents I Table of Contents Part 1 Introduction 1 Part 2 Importing from Microsoft Excel 1 1 Overview... 1 2 Spreadsheet Considerations... 1 3 Zip Code and... Tax ID Issues 2 4 Using The Format... Cells

More information

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature There is a custom feature available in Query Viewer that allows files to be created from queries and copied to a user s PC. This feature doesn t have the same size limitations as running a query to HTML

More information

Fraser Stream Desktop Output your text reports directly into Excel, PDF or HTML

Fraser Stream Desktop Output your text reports directly into Excel, PDF or HTML Fraser Stream Desktop Output your text reports directly into Excel, PDF or HTML 1 INTRODUCTION 1 2 CREATING TRANSFORMATION SETTINGS 4 3 CREATING BATCH TRANSFORMATION FILES 4 3.1 Individual Batch Files

More information

Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set

Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set Goal in video # 25: Learn about how to use the Get & Transform

More information

5 Creating a Form Using Excel

5 Creating a Form Using Excel 5 Creating a Form Using Excel 5.1 Writing Measurement Data in a Form...5-3 5.2 Writing Date/Time in a Form...5-50 5.3 Writing Arrows in a Form...5-54 5.4 Writing Trigger Source Node Names in a Form...5-58

More information

Report Commander 2 User Guide

Report Commander 2 User Guide Report Commander 2 User Guide Report Commander 2.5 Generated 6/26/2017 Copyright 2017 Arcana Development, LLC Note: This document is generated based on the online help. Some content may not display fully

More information

.txt - Exporting and Importing. Table of Contents

.txt - Exporting and Importing. Table of Contents .txt - Exporting and Importing Table of Contents Export... 2 Using Add Skip... 3 Delimiter... 3 Other Options... 4 Saving Templates of Options Chosen... 4 Editing Information in the lower Grid... 5 Import...

More information

COMMAND-LINE INTERFACE USER MANUAL. Version Bank of Finland PAYMENT AND SETTLEMENT SYSTEM SIMULATOR

COMMAND-LINE INTERFACE USER MANUAL. Version Bank of Finland PAYMENT AND SETTLEMENT SYSTEM SIMULATOR COMMAND-LINE INTERFACE USER MANUAL Version 3.2.0 6.8.2012 Bank of Finland PAYMENT AND SETTLEMENT SYSTEM SIMULATOR Contents 1. Introduction... 2 2. Giving individual commands... 3 2.1. Notation syntax...

More information

TraceFinder Analysis Quick Reference Guide

TraceFinder Analysis Quick Reference Guide TraceFinder Analysis Quick Reference Guide This quick reference guide describes the Analysis mode tasks assigned to the Technician role in the Thermo TraceFinder 3.0 analytical software. For detailed descriptions

More information

EDAConnect-Dashboard User s Guide Version 3.4.0

EDAConnect-Dashboard User s Guide Version 3.4.0 EDAConnect-Dashboard User s Guide Version 3.4.0 Oracle Part Number: E61758-02 Perception Software Company Confidential Copyright 2015 Perception Software All Rights Reserved This document contains information

More information

Bulk Provisioning Overview

Bulk Provisioning Overview CHAPTER 8 Bulk provisioning functionality in the Cisco Voice Provisioning Tool allows you to add or modify a large number of users or a large number of phones/device profiles (and the corresponding configuration

More information

GiftWorks Import Guide Page 2

GiftWorks Import Guide Page 2 Import Guide Introduction... 2 GiftWorks Import Services... 3 Import Sources... 4 Preparing for Import... 9 Importing and Matching to Existing Donors... 11 Handling Receipting of Imported Donations...

More information

Exploring the Microsoft Access User Interface and Exploring Navicat and Sequel Pro, and refer to chapter 5 of The Data Journalist.

Exploring the Microsoft Access User Interface and Exploring Navicat and Sequel Pro, and refer to chapter 5 of The Data Journalist. Chapter 5 Exporting Data from Access and MySQL Skills you will learn: How to export data in text format from Microsoft Access, and from MySQL using Navicat and Sequel Pro. If you are unsure of the basics

More information

UC Export Folders Version 3.5 for Worksite 8.x, 9.x x86

UC Export Folders Version 3.5 for Worksite 8.x, 9.x x86 UC Export Folders Version 3.5 for Worksite 8.x, 9.x x86 Exports folders and subfolders directly from workspaces, tabs and folders Filter documents and email messages Integrated into Filesite and Desksite

More information

Data Import Guide DBA Software Inc.

Data Import Guide DBA Software Inc. Contents 3 Table of Contents 1 Introduction 4 2 Data Import Instructions 5 3 Data Import - Customers 10 4 Data Import - Customer Contacts 16 5 Data Import - Delivery Addresses 19 6 Data Import - Suppliers

More information

Input File Syntax The parser expects the input file to be divided into objects. Each object must start with the declaration:

Input File Syntax The parser expects the input file to be divided into objects. Each object must start with the declaration: TCC Low Level Parser Purpose The TCC low level parser is designed to convert the low level ASCII based configuration files into a binary format which can then be downloaded to the Alpha processor boards.

More information

II-11Tables. Chapter II-11

II-11Tables. Chapter II-11 Chapter II-11 II-11Tables Overview... 169 Creating Tables... 169 Table Creation with New Experiment... 169 Creating an Empty Table for Entering New Waves... 169 Creating a Table to Edit Existing Waves...

More information

MATLAB Introduction to MATLAB Programming

MATLAB Introduction to MATLAB Programming MATLAB Introduction to MATLAB Programming MATLAB Scripts So far we have typed all the commands in the Command Window which were executed when we hit Enter. Although every MATLAB command can be executed

More information

ZENworks 2017 Update 2 Endpoint Security Utilities Reference. February 2018

ZENworks 2017 Update 2 Endpoint Security Utilities Reference. February 2018 ZENworks 2017 Update 2 Endpoint Security Utilities Reference February 2018 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S.

More information

Ordinary Differential Equation Solver Language (ODESL) Reference Manual

Ordinary Differential Equation Solver Language (ODESL) Reference Manual Ordinary Differential Equation Solver Language (ODESL) Reference Manual Rui Chen 11/03/2010 1. Introduction ODESL is a computer language specifically designed to solve ordinary differential equations (ODE

More information

Work with External Data in SPSS or Excel Format - Open SPSS data

Work with External Data in SPSS or Excel Format - Open SPSS data Work with External Data in SPSS or Excel Format - Open SPSS data Contents WORK WITH EXTERNAL DATA IN SPSS OR EXCEL FORMAT - OPEN SPSS DATA... 1 Open an Excel file... 1 Create new External File... 2 Save

More information

II-9Importing and Exporting Data

II-9Importing and Exporting Data Chapter II-9 II-9Importing and Exporting Data Importing Data... 117 Load Waves Submenu... 119 Line Terminators... 120 LoadWave Text Encodings... 120 Loading Delimited Text Files... 120 Determining Column

More information

L4X v2.0 Reference. (v December 2008) David Fowle

L4X v2.0 Reference. (v December 2008) David Fowle L4X v2.0 Reference (v2.0.0.4-01 December 2008) http://www.pdfing.com/l4x 2 L4X v2.0 Reference Table of Contents Foreword Part I L4X Language Summary. 1 1 Importing... Strings of Text. 1 2 Importing...

More information

Deep Dive: Pronto Transformations Reference

Deep Dive: Pronto Transformations Reference Deep Dive: Pronto Transformations Reference Available Transformations and Their Icons Transform Description Menu Icon Add Column on page 2 Important: Not available in Trial. Upgrade to Pro Edition! Add

More information

Halcyon Spooled File Manager GUI. v8.0 User Guide

Halcyon Spooled File Manager GUI. v8.0 User Guide Halcyon Spooled File Manager GUI v8.0 User Guide Copyright Copyright HelpSystems, LLC. All rights reserved. www.helpsystems.com US: +1 952-933-0609 Outside the U.S.: +44 (0) 870 120 3148 IBM, AS/400, OS/400,

More information

Importing Geochemical Data

Importing Geochemical Data Importing Geochemical Data This Importing Geochemistry Data How-to Guide introduces you to working with Geochemistry data, including how to design a new survey, import data, merge and verify, extract and

More information

12/22/11. Java How to Program, 9/e. Help you get started with Eclipse and NetBeans integrated development environments.

12/22/11. Java How to Program, 9/e. Help you get started with Eclipse and NetBeans integrated development environments. Java How to Program, 9/e Education, Inc. All Rights Reserved. } Java application programming } Use tools from the JDK to compile and run programs. } Videos at www.deitel.com/books/jhtp9/ Help you get started

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

PrintBoss Positive Pay Files 1 August 2016

PrintBoss Positive Pay Files 1 August 2016 Training Notes PrintBoss Positive Pay Files 1 August 2016 Banking institutions often offer a service called Positive Pay. This is a specially formatted file listing all valid checks written on the bank

More information

OpenClinica - Data Import & Export

OpenClinica - Data Import & Export OpenClinica - Data Import & Export Purpose of this document: To provide instruction and best practice guidelines for the import and export of study data into and out of OpenClinica. Version: OpenClinica

More information

SimpleExport 1.4 MANUAL.

SimpleExport 1.4 MANUAL. SimpleExport 1.4 MANUAL www.simpleindex.com Revised January, 2013 - 2 - SimpleExport Documentation Table of Contents - 3 - SimpleExport Documentation 1 Introduction... 5 1.1 Welcome to SimpleExport...

More information

AUTOTEXT MASTER 1 PROGRAM HELP GILLMEISTER SOFTWARE.

AUTOTEXT MASTER 1 PROGRAM HELP GILLMEISTER SOFTWARE. AUTOTEXT MASTER 1 PROGRAM HELP GILLMEISTER SOFTWARE www.gillmeister-software.com 1 TABLE OF CONTENTS 1 Table of contents... 1 1. Start... 3 2 Main menu... 3 2.1 Menu entries of the group Main Menu... 3

More information

The Warhol Language Reference Manual

The Warhol Language Reference Manual The Warhol Language Reference Manual Martina Atabong maa2247 Charvinia Neblett cdn2118 Samuel Nnodim son2105 Catherine Wes ciw2109 Sarina Xie sx2166 Introduction Warhol is a functional and imperative programming

More information

The PEPA Eclipse Plug-in

The PEPA Eclipse Plug-in The PEPA Eclipse Plug-in A modelling, analysis and verification platform for PEPA Adam Duguid, Stephen Gilmore, Michael Smith and Mirco Tribastone Wednesday 01 December 2010 Abstract: This user manual

More information

Chapter 5: Compatibility of Data Files

Chapter 5: Compatibility of Data Files Importing data from other format Files Chapter 5: Compatibility of Data Files Importing Text Files Creating a translation structure Example. Import 'EmployeePayroll.txt' as 'EmployeePayroll.mb' Importing

More information

Introduction to MATLAB

Introduction to MATLAB Introduction to MATLAB The Desktop When you start MATLAB, the desktop appears, containing tools (graphical user interfaces) for managing files, variables, and applications associated with MATLAB. The following

More information

ZENworks 11 Support Pack 4 Endpoint Security Utilities Reference. October 2016

ZENworks 11 Support Pack 4 Endpoint Security Utilities Reference. October 2016 ZENworks 11 Support Pack 4 Endpoint Security Utilities Reference October 2016 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S.

More information

RTL Reference 1. JVM. 2. Lexical Conventions

RTL Reference 1. JVM. 2. Lexical Conventions RTL Reference 1. JVM Record Transformation Language (RTL) runs on the JVM. Runtime support for operations on data types are all implemented in Java. This constrains the data types to be compatible to Java's

More information

Aligned Elements Importer V user manual. Aligned AG Tellstrasse Zürich Phone: +41 (0)

Aligned Elements Importer V user manual. Aligned AG Tellstrasse Zürich Phone: +41 (0) Aligned Elements Importer V2.4.211.14302 user manual Aligned AG Tellstrasse 13 8004 Zürich Phone: +41 (0)44 312 50 20 www.aligned.ch info@aligned.ch Table of Contents 1.1 Introduction...3 1.2 Installation...3

More information

IT 374 C# and Applications/ IT695 C# Data Structures

IT 374 C# and Applications/ IT695 C# Data Structures IT 374 C# and Applications/ IT695 C# Data Structures Module 2.1: Introduction to C# App Programming Xianrong (Shawn) Zheng Spring 2017 1 Outline Introduction Creating a Simple App String Interpolation

More information

Adding and Updating Lines for Phones

Adding and Updating Lines for Phones CHAPTER 10 To update line attributes for a specific group of devices or user device profiles, use the Update Lines option. Lines for a phone and a user device profile get updated at the same time when

More information

COP4020 Programming Assignment 1 - Spring 2011

COP4020 Programming Assignment 1 - Spring 2011 COP4020 Programming Assignment 1 - Spring 2011 In this programming assignment we design and implement a small imperative programming language Micro-PL. To execute Mirco-PL code we translate the code to

More information

c) Comments do not cause any machine language object code to be generated. d) Lengthy comments can cause poor execution-time performance.

c) Comments do not cause any machine language object code to be generated. d) Lengthy comments can cause poor execution-time performance. 2.1 Introduction (No questions.) 2.2 A Simple Program: Printing a Line of Text 2.1 Which of the following must every C program have? (a) main (b) #include (c) /* (d) 2.2 Every statement in C

More information

ES 117. Formatted Input/Output Operations

ES 117. Formatted Input/Output Operations ES 117 Formatted Input/Output Operations fpintf function writes formatted data in a user specified format to a file fid fprintf Function Format effects only the display of variables not their values through

More information

Manage Phone Books. Phone Books and Contacts

Manage Phone Books. Phone Books and Contacts On the Phone Books tab of the Cisco Finesse administration console, you can create and manage global and team phone books and phone book contacts. Global phone books are available to all agents; team phone

More information

PROGRAMMING AND ENGINEERING COMPUTING WITH MATLAB Huei-Huang Lee SDC. Better Textbooks. Lower Prices.

PROGRAMMING AND ENGINEERING COMPUTING WITH MATLAB Huei-Huang Lee SDC. Better Textbooks. Lower Prices. PROGRAMMING AND ENGINEERING COMPUTING WITH MATLAB 2018 Huei-Huang Lee SDC P U B L I C AT I O N S Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit the following

More information

See Types of Data Supported for information about the types of files that you can import into Datameer.

See Types of Data Supported for information about the types of files that you can import into Datameer. Importing Data When you import data, you import it into a connection which is a collection of data from different sources such as various types of files and databases. See Configuring a Connection to learn

More information

2.1. Project Information and Protection Global Settings Working with Tags... 15

2.1. Project Information and Protection Global Settings Working with Tags... 15 2.1. Project Information and Protection... 1 2.2. Global Settings... 3 2.2.1. Languages...4 2.2.2. Font Templates...5 2.2.3. Picture Database...6 2.2.4. Sound Database...10 2.2.5. Text Database...12 2.3.

More information

PATHFINDER3D Help. Updated September 26, Page 1 of 40

PATHFINDER3D Help. Updated September 26, Page 1 of 40 PATHFINDER3D Help Updated September 26, 2012 Page 1 of 40 Contents Introduction... 4 Product Description... 4 How to use this document... 4 Terms... 4 Procedures... 5 Installing... 5 Configuring... 6 Licensing...

More information

Ascent 6.1 Release Script for FileNet Content Manager 3.0. Release Notes

Ascent 6.1 Release Script for FileNet Content Manager 3.0. Release Notes Ascent 6.1 Release Script for FileNet Content Manager 3.0 Release Notes 10001303-000 Revision A November 16, 2004 Copyright Copyright 2004 Kofax Image Products, Inc. All Rights Reserved. Printed in USA.

More information

Tips on Excel. Discover some tips to organize and lay out your Excel file and convert it into a CSV or PDF file.

Tips on Excel. Discover some tips to organize and lay out your Excel file and convert it into a CSV or PDF file. Tips on Excel Your business partners or retailers are listed in an Excel file and you want to put them on an interactive map? It's simple with the Click2map's Editor. A simple import process exists to

More information

Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service

Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service Demo Introduction Keywords: Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service Goal of Demo: Oracle Big Data Preparation Cloud Services can ingest data from various

More information

Mastering phpmyadmiri 3.4 for

Mastering phpmyadmiri 3.4 for Mastering phpmyadmiri 3.4 for Effective MySQL Management A complete guide to getting started with phpmyadmin 3.4 and mastering its features Marc Delisle [ t]open so 1 I community experience c PUBLISHING

More information

1. What type of error produces incorrect results but does not prevent the program from running? a. syntax b. logic c. grammatical d.

1. What type of error produces incorrect results but does not prevent the program from running? a. syntax b. logic c. grammatical d. Gaddis: Starting Out with Python, 2e - Test Bank Chapter Two MULTIPLE CHOICE 1. What type of error produces incorrect results but does not prevent the program from running? a. syntax b. logic c. grammatical

More information

Lab 1: Getting started with R and RStudio Questions? or

Lab 1: Getting started with R and RStudio Questions? or Lab 1: Getting started with R and RStudio Questions? david.montwe@ualberta.ca or isaacren@ualberta.ca 1. Installing R and RStudio To install R, go to https://cran.r-project.org/ and click on the Download

More information

Assoc. Prof. Dr. Marenglen Biba. (C) 2010 Pearson Education, Inc. All rights reserved.

Assoc. Prof. Dr. Marenglen Biba. (C) 2010 Pearson Education, Inc. All rights reserved. Assoc. Prof. Dr. Marenglen Biba (C) 2010 Pearson Education, Inc. All rights reserved. Java application A computer program that executes when you use the java command to launch the Java Virtual Machine

More information

An Introduction to MATLAB

An Introduction to MATLAB An Introduction to MATLAB Day 1 Simon Mitchell Simon.Mitchell@ucla.edu High level language Programing language and development environment Built-in development tools Numerical manipulation Plotting of

More information

Printing Batch Unofficial Transcripts

Printing Batch Unofficial Transcripts Printing Batch Unofficial Transcripts On occasion, you may need to print unofficial transcripts for several students at one time. The Batch Transcripts process allows you to upload a text file containing

More information

Respondus 4.0. Note: Alternatively, click Start, Programs, Respondus, and then select Respondus 4.0 Campus Wide.

Respondus 4.0. Note: Alternatively, click Start, Programs, Respondus, and then select Respondus 4.0 Campus Wide. Respondus 4.0 Respondus is a Windows application that enhances the functions and features of Blackboard s exam and survey tools. Respondus allows instructors to author exams offline, import existing questions

More information

Updating Users. Updating Users CHAPTER

Updating Users. Updating Users CHAPTER CHAPTER 18 Update the existing user information that is in the database by using the following procedure:, page 18-1 Retaining Stored Values, page 18-2 Using the BAT Spreadsheet to Create a CSV Data File

More information

TRAINING AGENDA. Session 1: Installation/Implementation/Setup. Conversion: Existing Specify 5 users New users conversion, wizard, WorkBench

TRAINING AGENDA. Session 1: Installation/Implementation/Setup. Conversion: Existing Specify 5 users New users conversion, wizard, WorkBench SPECIFY 6 Session 1: Installation/Implementation/Setup Pre-installation decision-making process Conversion: Existing Specify 5 users New users conversion, wizard, WorkBench Installation TRAINING AGENDA

More information

User Interface (Windows Edition)

User Interface (Windows Edition) User Interface (Windows Edition) User Interface (Windows Edition) 1 Overview 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 1.10 1.11 Top Level Navigation 4 Navigation Menus 5 Expanding Navigation Category Menus

More information

December Copyright 2018 Open Systems Holdings Corp. All rights reserved.

December Copyright 2018 Open Systems Holdings Corp. All rights reserved. This document describes the intended features and technology for TRAVERSE 11 as of December, 2018. Features and technology are subject to change and there is no guarantee that any particular feature or

More information

OpenBridge User s Guide

OpenBridge User s Guide OpenBridge User s Guide Updated: 5/21/2015 OpenBridge User s Guide Copyright 2002-2014 Tucker-Davis Technologies, Inc. (TDT). All rights reserved. No part of this manual may be reproduced or transmitted

More information

MicroStrategy Desktop

MicroStrategy Desktop MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT. 1 Import data from

More information

File Importing - Text Files

File Importing - Text Files File Importing - Text Files With this tutorial we are going to go through the basic elements of importing a text file that contains several records (lines) each containing several fields. Sample Data -

More information

Index A, B, C. Rank() function, steps, 199 Cloud services, 2 Comma-separated value (CSV), 27

Index A, B, C. Rank() function, steps, 199 Cloud services, 2 Comma-separated value (CSV), 27 Index A, B, C Calculations, Power Query distinct customers code implementations, 205 duplicate date and customer, 204 group by dialog configuration, 204 objective, 202 output, 205 Query Editor toolbar,

More information

TraceFinder Acquisition Quick Reference Guide

TraceFinder Acquisition Quick Reference Guide TraceFinder Acquisition Quick Reference Guide This quick reference guide describes the Thermo TraceFinder acquisition tasks assigned to the Technician role. Contents Acquisition Mode Selecting a Batch

More information

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5)

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Section 4 AGENDA

More information

Group Rooming List Import Quick Reference Guide

Group Rooming List Import Quick Reference Guide Group Rooming List Import Quick Reference Guide Published Date: November 15 Introduction This Quick Reference Guide will introduce you to the Group Rooming List Import feature. Procedure The Group Rooming

More information

DTSAgent User Documentation

DTSAgent User Documentation DTSAgent User Documentation Overview... 1 Installation... 2 Application Installation... 2 Database Installation... 4 DTSAgent Configuration... 5 Initial Configuration... 5 Re-configuring DTSAgent... 6

More information

Using Replicas. RadExPro

Using Replicas. RadExPro Using Replicas RadExPro 2018.1 Replicas are copies of one and the same flow executed with different sets of module parameters. Sets of parameters for each replica are taken from variables defined in a

More information

Python Scripting for Computational Science

Python Scripting for Computational Science Hans Petter Langtangen Python Scripting for Computational Science Third Edition With 62 Figures 43 Springer Table of Contents 1 Introduction... 1 1.1 Scripting versus Traditional Programming... 1 1.1.1

More information

User Guide. Kronodoc Kronodoc Oy. Intelligent methods for process improvement and project execution

User Guide. Kronodoc Kronodoc Oy. Intelligent methods for process improvement and project execution User Guide Kronodoc 3.0 Intelligent methods for process improvement and project execution 2003 Kronodoc Oy 2 Table of Contents 1 User Guide 5 2 Information Structure in Kronodoc 6 3 Entering and Exiting

More information

User Commands sed ( 1 )

User Commands sed ( 1 ) NAME sed stream editor SYNOPSIS /usr/bin/sed [-n] script [file...] /usr/bin/sed [-n] [-e script]... [-f script_file]... [file...] /usr/xpg4/bin/sed [-n] script [file...] /usr/xpg4/bin/sed [-n] [-e script]...

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

P6 Professional Reporting Guide Version 18

P6 Professional Reporting Guide Version 18 P6 Professional Reporting Guide Version 18 August 2018 Contents About the P6 Professional Reporting Guide... 7 Producing Reports and Graphics... 9 Report Basics... 9 Reporting features... 9 Report Wizard...

More information

The Direct Excel Connection plugin PRINTED MANUAL

The Direct Excel Connection plugin PRINTED MANUAL The Direct Excel Connection plugin PRINTED MANUAL Direct Excel Connection plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical,

More information

Chapter 3 Editing and Assigning Data Values

Chapter 3 Editing and Assigning Data Values Chapter 3 Editing and Assigning Data Values Customized data items are powerful tools for forecasting and for creating what if scenarios. With Standard & Poor s Research Insight, you can assign data values

More information

Should you know scanf and printf?

Should you know scanf and printf? C-LANGUAGE INPUT & OUTPUT C-Language Output with printf Input with scanf and gets_s and Defensive Programming Copyright 2016 Dan McElroy Should you know scanf and printf? scanf is only useful in the C-language,

More information

TREENO ELECTRONIC DOCUMENT MANAGEMENT. Administration Guide

TREENO ELECTRONIC DOCUMENT MANAGEMENT. Administration Guide TREENO ELECTRONIC DOCUMENT MANAGEMENT Administration Guide February 2012 Contents Introduction... 8 About This Guide... 9 About Treeno... 9 Managing Security... 10 Treeno Security Overview... 10 Administrator

More information

\n is used in a string to indicate the newline character. An expression produces data. The simplest expression

\n is used in a string to indicate the newline character. An expression produces data. The simplest expression Chapter 1 Summary Comments are indicated by a hash sign # (also known as the pound or number sign). Text to the right of the hash sign is ignored. (But, hash loses its special meaning if it is part of

More information

1 Introduction. 1.1 The LDEP Protocol. 1.2 Program Overview. 1.3 Description of this Document 1 INTRODUCTION 1

1 Introduction. 1.1 The LDEP Protocol. 1.2 Program Overview. 1.3 Description of this Document 1 INTRODUCTION 1 1 INTRODUCTION 1 1 Introduction 1.1 The LDEP Protocol LDEP (Logger Data Export Protocol) is a simple protocol for exporting datalogger records formatted as text over TCP sockets. The original protocol

More information

Snap-Master Data File Formats

Snap-Master Data File Formats Snap-Master Data File Formats Page 1 Snap-Master Data File Formats Data File Overview Snap-Master reads both binary and exponential (also called ASCII or text) data files in a number of formats. There

More information

Working with Variables: Primary Document Families

Working with Variables: Primary Document Families WORKING WITH VARIABLES: PRIMARY DOCUMENT FAMILIES 245 Working with Variables: Primary Document Families PD families as variables can be used in queries and SPSS jobs. Use PD-Family tables to assign PDs

More information

Create CSV for Asset Import

Create CSV for Asset Import Create CSV for Asset Import Assets are tangible items, equipment, or systems that have a physical presence, such as compressors, boilers, refrigeration units, transformers, trucks, cranes, etc. that are

More information

An Introduction to MATLAB See Chapter 1 of Gilat

An Introduction to MATLAB See Chapter 1 of Gilat 1 An Introduction to MATLAB See Chapter 1 of Gilat Kipp Martin University of Chicago Booth School of Business January 25, 2012 Outline The MATLAB IDE MATLAB is an acronym for Matrix Laboratory. It was

More information

Introduction Variables Helper commands Control Flow Constructs Basic Plumbing. Bash Scripting. Alessandro Barenghi

Introduction Variables Helper commands Control Flow Constructs Basic Plumbing. Bash Scripting. Alessandro Barenghi Bash Scripting Alessandro Barenghi Dipartimento di Elettronica, Informazione e Bioingegneria Politecnico di Milano alessandro.barenghi - at - polimi.it April 28, 2015 Introduction The bash command shell

More information

[NALENND WIRELESS BLOCK IDENTIFIER SOFTWARE USER S GUIDE] NALENND data scrubber utility reference manual. Quentin Sager Consulting, Inc.

[NALENND WIRELESS BLOCK IDENTIFIER SOFTWARE USER S GUIDE] NALENND data scrubber utility reference manual. Quentin Sager Consulting, Inc. Quentin Sager Consulting, Inc. [NALENND WIRELESS BLOCK IDENTIFIER SOFTWARE USER S GUIDE] NALENND data scrubber utility reference manual NALENND is a trademark of Quentin Sager Consulting, Inc. NALENND

More information