visual3d:documentation:pipeline:expressions:example_using_the_amp_operator
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
visual3d:documentation:pipeline:expressions:example_using_the_amp_operator [2024/06/19 12:49] – sgranger | visual3d:documentation:pipeline:expressions:example_using_the_amp_operator [2024/07/17 15:45] (current) – created sgranger | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | {{===== contents | + | ====== Example using the AMP Operator ====== |
+ | ==== Contents ==== | ||
- | * [[# | ||
- | * [[# | ||
- | * [[# | ||
- | * [[# | ||
+ | * [[# | ||
+ | * [[# | ||
+ | * [[# | ||
+ | * [[# | ||
- | ===== the ampersand operator ===== | ||
- | for first time users of visual3d' | + | ==== The Ampersand Operator ==== |
- | * [[https:// | + | For first time users of Visual3D' |
- | * [[https:// | + | |
- | * [[https:// | + | |
- | the ampersand (&) is used in pipeline commands to concatenate strings together, and is a separator for the parser to find pieces that need to be parsed separately. to get the most out of this tutorial, it is recommended that you run the commands | + | * [[https:// |
+ | * [[https:// | ||
+ | * [[https:// | ||
- | ===== example 1: jane elizabeth doe ===== | + | The ampersand (&) is used in pipeline commands to concatenate strings together, and is a separator for the parser to find pieces that need to be parsed separately. To get the most out of this tutorial, it is recommended that you run the commands in Visual3D alongside reading the text descriptions, |
- | let there be a visual3d | + | ==== Example 1: Jane Elizabeth Doe ==== |
+ | |||
+ | Let there be a Visual3D | ||
< | < | ||
- | select_active_file | + | Select_Active_File |
- | !/file_name=*.c3d | + | !/FILE_NAME=*.c3d |
- | ! /query= | + | ! /QUERY= |
- | ! /subject_tags=no_subject | + | ! /SUBJECT_TAGS=NO_SUBJECT |
; | ; | ||
- | set_pipeline_parameter | + | Set_Pipeline_Parameter |
- | /parameter_name=first_name | + | /PARAMETER_NAME=FIRST_NAME |
- | /parameter_value=jane | + | /PARAMETER_VALUE=JANE |
; | ; | ||
- | set_pipeline_parameter | + | Set_Pipeline_Parameter |
- | /parameter_name=middle_name | + | /PARAMETER_NAME=MIDDLE_NAME |
- | /parameter_value=elizabeth | + | /PARAMETER_VALUE=ELIZABETH |
; | ; | ||
- | set_pipeline_parameter | + | Set_Pipeline_Parameter |
- | /parameter_name=last_name | + | /PARAMETER_NAME=LAST_NAME |
- | /parameter_value=doe | + | /PARAMETER_VALUE=DOE |
; | ; | ||
</ | </ | ||
- | say we want to create a new signal with the value jane elizabeth doe. we start by opening the pipeline command | + | Say we want to create a new signal with the value JANE ELIZABETH DOE. We start by opening the pipeline command |
< | < | ||
- | evaluate_expression | + | Evaluate_Expression |
- | /expression=::first_name::middle_name::last_name | + | /EXPRESSION=::FIRST_NAME::MIDDLE_NAME::LAST_NAME |
- | /result_types=derived | + | /RESULT_TYPES=DERIVED |
- | /result_folders=development | + | /RESULT_FOLDERS=DEVELOPMENT |
- | /result_name=result | + | /RESULT_NAME=RESULT |
; | ; | ||
</ | </ | ||
- | the output for running this command is **"error! parameter expression | + | The output for running this command is **"ERROR! Parameter EXPRESSION |
- | let's first clarify what the "::" | + | Let's first clarify what the "::" |
< | < | ||
- | evaluate_expression | + | Evaluate_Expression |
- | /expression=first_name | + | /EXPRESSION=FIRST_NAME |
- | /result_types=derived | + | /RESULT_TYPES=DERIVED |
- | /result_folders=development | + | /RESULT_FOLDERS=DEVELOPMENT |
- | /result_name=result | + | /RESULT_NAME=RESULT |
; | ; | ||
</ | </ | ||
- | the expression evaluates to first_name, when what we wanted was jane. now if we add the "::" | + | The expression evaluates to FIRST_NAME, when what we wanted was JANE. Now if we add the "::" |
< | < | ||
- | evaluate_expression | + | Evaluate_Expression |
- | /expression=::first_name | + | /EXPRESSION=::FIRST_NAME |
- | /result_types=derived | + | /RESULT_TYPES=DERIVED |
- | /result_folders=development | + | /RESULT_FOLDERS=DEVELOPMENT |
- | /result_name=result | + | /RESULT_NAME=RESULT |
; | ; | ||
</ | </ | ||
- | this evaluates to jane. this tells us that the "::" | + | This evaluates to JANE. This tells us that the "::" |
- | recall | + | Recall |
- | the & operator acts as " | + | The & operator acts as " |
< | < | ||
- | evaluate_expression | + | Evaluate_Expression |
- | /expression=::first_name&::middle_name&::last_name | + | /EXPRESSION=::FIRST_NAME&::MIDDLE_NAME&::LAST_NAME |
- | /result_types=derived | + | /RESULT_TYPES=DERIVED |
- | /result_folders=development | + | /RESULT_FOLDERS=DEVELOPMENT |
- | /result_name=result | + | /RESULT_NAME=RESULT |
; | ; | ||
</ | </ | ||
- | gives the result: | + | Gives the result: |
< | < | ||
- | evaluate_expression | + | Evaluate_Expression |
- | /expression=&::first_name& &::middle_name& &::last_name | + | /EXPRESSION=&::FIRST_NAME& &::MIDDLE_NAME& &::LAST_NAME |
- | /result_types=derived | + | /RESULT_TYPES=DERIVED |
- | /result_folders=development | + | /RESULT_FOLDERS=DEVELOPMENT |
- | /result_name=result | + | /RESULT_NAME=RESULT |
; | ; | ||
</ | </ | ||
- | which now evaluates to jane elizabeth doe. | + | Which now evaluates to JANE ELIZABETH DOE. |
- | ===== example | + | ==== Example |
- | say we want to compare two string variables | + | Say we want to compare two string variables |
< | < | ||
- | select_active_file | + | Select_Active_File |
- | /file_name=*.c3d | + | /FILE_NAME=*.c3d |
- | ! /query= | + | ! /QUERY= |
- | ! /subject_tags=no_subject | + | ! /SUBJECT_TAGS=NO_SUBJECT |
; | ; | ||
- | set_pipeline_parameter | + | Set_Pipeline_Parameter |
- | /parameter_name=a | + | /PARAMETER_NAME=A |
- | /parameter_value=" | + | /PARAMETER_VALUE=" |
; | ; | ||
- | set_pipeline_parameter | + | Set_Pipeline_Parameter |
- | /parameter_name=b | + | /PARAMETER_NAME=B |
- | /parameter_value=" | + | /PARAMETER_VALUE=" |
; | ; | ||
- | evaluate_expression | + | Evaluate_Expression |
- | /expression=(::a=::b) | + | /EXPRESSION=(::A=::B) |
- | /result_types=derived | + | /RESULT_TYPES=DERIVED |
- | /result_folders=development | + | /RESULT_FOLDERS=DEVELOPMENT |
- | /result_name=result | + | /RESULT_NAME=RESULT |
; | ; | ||
</ | </ | ||
- | this expression successfully evaluates (meaning it gives no errors), but does not produce the correct result. | + | This expression successfully evaluates (meaning it gives no errors), but does not produce the correct result. |
- | janeandjohn1.png | + | {{:janeandjohn1.png}} |
- | let's add some " | + | Let's add some " |
< | < | ||
- | evaluate_expression | + | Evaluate_Expression |
- | /expression=(::a& | + | /EXPRESSION=(::A& |
- | /result_types=derived | + | /RESULT_TYPES=DERIVED |
- | /result_folders=development | + | /RESULT_FOLDERS=DEVELOPMENT |
- | /result_name=result | + | /RESULT_NAME=RESULT |
; | ; | ||
</ | </ | ||
- | this evaluates the expression jane = john as 1 or true...hmmm. | + | This evaluates the expression jane = john as 1 or True...hmmm. |
< | < | ||
- | evaluate_expression | + | Evaluate_Expression |
- | /expression=("&:: | + | /EXPRESSION=("&:: |
- | /result_types=derived | + | /RESULT_TYPES=DERIVED |
- | /result_folders=development | + | /RESULT_FOLDERS=DEVELOPMENT |
- | /result_name=result | + | /RESULT_NAME=RESULT |
; | ; | ||
</ | </ | ||
- | this evaluates the statement jane = john to 0 or false. let's test to see if jane = jane is true: | + | This evaluates the statement jane = john to 0 or False. Let's test to see if jane = jane is true: |
< | < | ||
- | evaluate_expression | + | Evaluate_Expression |
- | /expression=("&:: | + | /EXPRESSION=("&:: |
- | /result_types=derived | + | /RESULT_TYPES=DERIVED |
- | /result_folders=development | + | /RESULT_FOLDERS=DEVELOPMENT |
- | /result_name=result | + | /RESULT_NAME=RESULT |
; | ; | ||
</ | </ | ||
- | and voila, there you have it. | + | And voila, there you have it. |
- | ===== example | + | ==== Example |
- | let’s say jane and john have gone to a fruit stand at a local farmer’s market. | + | Let’s say Jane and John have gone to a fruit stand at a local farmer’s market. |
- | let’s say you wanted to iterate through the market folder to find the total units of fruit that jane and john purchased. | + | Let’s say you wanted to iterate through the market folder to find the total units of fruit that Jane and John purchased. |
- | we start by setting all files to active and setting our total count to 0: | + | We start by setting all files to active and setting our total count to 0: |
< | < | ||
- | select_active_file | + | Select_Active_File |
- | /file_name=*.c3d | + | /FILE_NAME=*.c3d |
- | ! /query= | + | ! /QUERY= |
- | ! /subject_tags=no_subject | + | ! /SUBJECT_TAGS=NO_SUBJECT |
; | ; | ||
</ | </ | ||
< | < | ||
- | evaluate_expression | + | Evaluate_Expression |
- | /expression=0 | + | /EXPRESSION=0 |
- | /result_types=derived | + | /RESULT_TYPES=DERIVED |
- | /result_folder= market | + | /RESULT_FOLDER= MARKET |
- | /result_name=total | + | /RESULT_NAME=TOTAL |
; | ; | ||
</ | </ | ||
- | because | + | Because |
< | < | ||
- | evaluate_expression | + | Evaluate_Expression |
- | /expression=derived::market::oranges | + | /EXPRESSION=DERIVED::MARKET::ORANGES |
- | /result_types=derived | + | /RESULT_TYPES=DERIVED |
- | /result_folders=market | + | /RESULT_FOLDERS=MARKET |
- | /result_name=oranges | + | /RESULT_NAME=ORANGES |
; | ; | ||
</ | </ | ||
- | however, if we wanted to loop through these files, we again need to use the & operator. | + | However, if we wanted to loop through these files, we again need to use the & operator. |
< | < | ||
- | for_each | + | For_Each |
- | /iteration_parameter_name=fruit | + | /ITERATION_PARAMETER_NAME=FRUIT |
- | ! /iteration_parameter_count_name= | + | ! /ITERATION_PARAMETER_COUNT_NAME= |
- | /items=apples | + | /ITEMS=APPLES |
; | ; | ||
- | evaluate_expression | + | Evaluate_Expression |
- | /expression=derived::market::total + derived::market::fruit | + | /EXPRESSION=DERIVED::MARKET::TOTAL + DERIVED::MARKET::FRUIT |
- | /result_types=derived | + | /RESULT_TYPES=DERIVED |
- | /result_folders=market | + | /RESULT_FOLDERS=MARKET |
- | /result_name=total | + | /RESULT_NAME=TOTAL |
; | ; | ||
- | end_for_each | + | End_For_Each |
- | /iteration_parameter_name=fruit | + | /ITERATION_PARAMETER_NAME=FRUIT |
; | ; | ||
</ | </ | ||
- | executing | + | Executing |
< | < | ||
- | for_each | + | For_Each |
- | /iteration_parameter_name=fruit | + | /ITERATION_PARAMETER_NAME=FRUIT |
- | !/iteration_parameter_count_name= | + | !/ITERATION_PARAMETER_COUNT_NAME= |
- | /items= apples | + | /ITEMS= APPLES |
; | ; | ||
- | evaluate_expression | + | Evaluate_Expression |
- | /expression=derived::market::total + derived::market&:&:&:: | + | /EXPRESSION=DERIVED::MARKET::TOTAL + DERIVED::MARKET&:&:&:: |
- | /result_types=derived | + | /RESULT_TYPES=DERIVED |
- | /result_folders=market | + | /RESULT_FOLDERS=MARKET |
- | /result_name=total | + | /RESULT_NAME=TOTAL |
; | ; | ||
- | end_for_each | + | End_For_Each |
- | /iteration_parameter_name=fruit | + | /ITERATION_PARAMETER_NAME=FRUIT |
; | ; | ||
</ | </ | ||
- | this will correctly evaluate | + | This will correctly evaluate |
- | }} |
visual3d/documentation/pipeline/expressions/example_using_the_amp_operator.1718801394.txt.gz · Last modified: 2024/06/19 12:49 by sgranger