User Tools

Site Tools


visual3d:documentation:pipeline:pipeline_commands:set_pipeline_parameter_to_list_of_tagged_files

Set Pipeline Parameter To List Of Tagged Files

This command creates a pipeline parameter containing the names of the TAGGED files.

Pipeline Command

The command details are as follows:

Set_Pipeline_Parameter_To_List_Of_Tagged_Files
/PARAMETER_NAME=   Name of the parameter for tagged files
/TAG_NAME=   Tag name of files
! /GET_CURRENT_SELECTED_FILES=false    TRUE or FALSE to get current selected files
! /USE_SHORT_FILENAMES=false     TRUE or FALSE to use short filenames
;

Example: Export to ASCII from a list of tagged files

The following example creates a pipeline parameter LIST containing the names of the files tagged Walk. The example will loop through the LIST files and will export to ASCII the LFT1 target marker.

Set_Pipeline_Parameter_To_List_Of_Tagged_Files
/PARAMETER_NAME=LIST
/TAG_NAME=Walk
! /GET_CURRENT_SELECTED_FILES=false
! /USE_SHORT_FILENAMES=false
;

! Loop over all LIST
For_Each
/ITERATION_PARAMETER_NAME=INDEX
/ITEMS=::LIST
;

! Export the data from each c3d file to an ASCII file
Export_Data_To_Ascii_File
/FILE_NAME=::INDEX&.txt
/SIGNAL_TYPES=TARGET
/SIGNAL_NAMES=LFT1
/SIGNAL_FOLDER=ORIGINAL
! /START_LABEL=
! /END_LABEL=
! /USE_POINT_RATE=FALSE
! /NORMALIZE_DATA=FALSE
! /NORMALIZE_POINTS=101
! /EXPORT_MEAN_AND_STD_DEV=FALSE
! /USE_P2D_FORMAT=FALSE
;

End_For_Each
/ITERATION_PARAMETER_NAME=INDEX
;
visual3d/documentation/pipeline/pipeline_commands/set_pipeline_parameter_to_list_of_tagged_files.txt · Last modified: 2024/07/17 15:46 by sgranger