sift:command_line
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
sift:command_line [2024/09/04 16:01] – sgranger | sift:command_line [2025/04/04 19:57] (current) – sgranger | ||
---|---|---|---|
Line 5: | Line 5: | ||
* Creating a bat file it is possible to completely automate processing | * Creating a bat file it is possible to completely automate processing | ||
===== Running Sift From Command Line ====== | ===== Running Sift From Command Line ====== | ||
- | To start sift in command line mode, open a command line console, navigate to sifts install directory and run sift with the argument **--NoGUI** | + | To start sift in command line mode, open a command line console, navigate to sifts install directory and run sift with any argument |
==== Command Line Overview ==== | ==== Command Line Overview ==== | ||
- | * Commands are prefixed with two dashes (--) these are considered a reserved character, so file and parameter names can not contain two consecutive dashes | + | * Commands are prefixed with a dash these are considered a reserved character, |
* Commands and parameters are case insensitive | * Commands and parameters are case insensitive | ||
- | * any parameters containing a space (e.g. a folder path) must be wrapped in double quotes ("" | + | * any parameters containing a space or a dash (e.g. a folder path) must be wrapped in double quotes ("" |
* Command parameters are named not positional, so the order they are passed does not matter | * Command parameters are named not positional, so the order they are passed does not matter | ||
+ | * Some commands have a default parameter, in these cases the parameter name can be omitted, for example with -loadLib the directory parameter name is optional. so either of the following will work: -loadLib directory " | ||
* Commands can be entered all at once in the same command that launches sift, or one at a time | * Commands can be entered all at once in the same command that launches sift, or one at a time | ||
- | * Enter the command **--Help** to get a list of all available commands | + | * Enter the command **-Help** to get a list of all available commands |
- | * Pass the parameter **--Help** to any command to get a list and description of all of its parameters | + | * Pass the parameter **Help** to any command to get a list and description of all of its parameters |
- | * To exit pass the command **--Exit**, or press **Ctrl + C** to quickly exit at any time (Sift will exit once the current command finishes executing) | + | * To exit pass the command **-Exit**, or press **Ctrl + C** to quickly exit at any time (Sift will exit once the current command finishes executing) |
+ | * Most commands have one or more aliases that will be accepted | ||
===== Commands ===== | ===== Commands ===== | ||
All commands and their parameters are listed below | All commands and their parameters are listed below | ||
+ | |||
---- | ---- | ||
- | ==== LoadLib ==== | + | ==== -LoadLib |
---- | ---- | ||
Load in a library of CMZs | Load in a library of CMZs | ||
=== Parameters === | === Parameters === | ||
- | == Directory (Required) == | + | == Directory (Required/Default) == |
Path to the directory containing the CMZs to be loaded, all sub-directories will be searched as well. | Path to the directory containing the CMZs to be loaded, all sub-directories will be searched as well. | ||
=== Example === | === Example === | ||
- | < | + | < |
---- | ---- | ||
- | ==== LoadQuery ==== | + | ==== -LoadQuery |
---- | ---- | ||
Load a saved query from a .q3d file | Load a saved query from a .q3d file | ||
=== Parameters === | === Parameters === | ||
- | == File (Required) == | + | == File (Required/Default) == |
The path to the .q3d file containing the query | The path to the .q3d file containing the query | ||
=== Example === | === Example === | ||
- | < | + | < |
---- | ---- | ||
- | ==== RunLOF ==== | + | ==== -RunLOF |
---- | ---- | ||
Run Local Outlier Factor | Run Local Outlier Factor | ||
Line 47: | Line 52: | ||
* Combined Groups: All data points will be compared | * Combined Groups: All data points will be compared | ||
* Groups: Data will be compared within groups | * Groups: Data will be compared within groups | ||
- | * Workspace: Data will be compared within workspaces | + | * Workspace: Data will be compared within workspaces |
+ | < | ||
== ManualThreshold == | == ManualThreshold == | ||
- | The threshold to consider when searching for outliers | + | The threshold to consider when searching for outliers |
+ | < | ||
== NumNeighbors == | == NumNeighbors == | ||
- | How many neighbors should each point be compared to? | + | How many neighbors should each point be compared to? \\ |
+ | < | ||
== numPasses == | == numPasses == | ||
- | How many iterations of the test should be run | + | How many iterations of the test should be run \\ |
+ | < | ||
== NumPCs == | == NumPCs == | ||
- | How many principal components should the test be run on | + | How many principal components should the test be run on \\ |
+ | < | ||
== PCsVariance == | == PCsVariance == | ||
- | Determine the number of PCs by variance explained (replaces NumPCs if used) | + | Determine the number of PCs by variance explained (replaces NumPCs if used) \\ |
+ | < | ||
== ScaleToVariability == | == ScaleToVariability == | ||
- | Scale all calculated values to the variability explained by the PC | + | If passed scale all calculated values to the variability explained by the PC |
=== Example === | === Example === | ||
- | < | + | < |
---- | ---- | ||
- | ==== RunKMeans ==== | + | ==== -RunKMeans |
---- | ---- | ||
Run K-Means clustering | Run K-Means clustering | ||
=== Parameters === | === Parameters === | ||
== Clusters == | == Clusters == | ||
- | How many clusters to sort the data into | + | How many clusters to sort the data into \\ |
+ | < | ||
== CustomSeed == | == CustomSeed == | ||
- | Provide | + | If provided use as a seed for the random first centroid (produces repeatable results) |
== Grouping == | == Grouping == | ||
How should data be grouped before running: | How should data be grouped before running: | ||
Line 77: | Line 89: | ||
* Groups: Data will be compared within groups | * Groups: Data will be compared within groups | ||
* Workspaces: Data will be compared within workspaces | * Workspaces: Data will be compared within workspaces | ||
+ | < | ||
== Iterations == | == Iterations == | ||
- | How many iterations of the test should be run | + | How many iterations of the test should be run \\ |
+ | < | ||
== NumPCs == | == NumPCs == | ||
- | The number of principal components to run the test on | + | The number of principal components to run the test on \\ |
+ | < | ||
== PCsVariance == | == PCsVariance == | ||
- | Determine the number of principal components by variance explained (replaces NumPCs if used) | + | Determine the number of principal components by variance explained (replaces NumPCs if used) \\ |
+ | < | ||
== ScaleToVariability == | == ScaleToVariability == | ||
- | Scale all calculated values to the variability explained by the PC | + | If passed scale all calculated values to the variability explained by the PC |
=== Example === | === Example === | ||
- | < | + | < |
---- | ---- | ||
- | ==== RunSPE ==== | + | ==== -RunSPE |
---- | ---- | ||
Run squared prediction error | Run squared prediction error | ||
===Parameters=== | ===Parameters=== | ||
== AlphaValue == | == AlphaValue == | ||
- | The alpha threshold used to determine outliers: 0.1, 0.05, 0.025, 0.01, 0.005 | + | The alpha threshold used to determine outliers: 0.1, 0.05, 0.025, 0.01, 0.005 \\ |
+ | < | ||
== AutoExclude == | == AutoExclude == | ||
If passed any outliers will be excluded automatically | If passed any outliers will be excluded automatically | ||
== numPCs == | == numPCs == | ||
- | The number of Principal Components to run the test on | + | The number of Principal Components to run the test on // |
+ | < | ||
== PCsVariance == | == PCsVariance == | ||
- | scale calculated values to variability explained | + | scale calculated values to variability explained |
+ | < | ||
=== Example === | === Example === | ||
- | < | + | < |
---- | ---- | ||
- | ==== RunMah ==== | + | ==== -RunMah |
---- | ---- | ||
Run a Mahalanobis distance test | Run a Mahalanobis distance test | ||
=== Parameters === | === Parameters === | ||
== AlphaValue == | == AlphaValue == | ||
- | The threshold used to determine outliers: 0.1, 0.05, 0.025, 0.01, 0.005 | + | The threshold used to determine outliers: 0.1, 0.05, 0.025, 0.01, 0.005 \\ |
+ | < | ||
== AutoExclude == | == AutoExclude == | ||
If passed any outliers found will be excluded automatically | If passed any outliers found will be excluded automatically | ||
Line 118: | Line 138: | ||
* Groups: Data will be compared within groups | * Groups: Data will be compared within groups | ||
* Workspace: Data will be compared within workspaces | * Workspace: Data will be compared within workspaces | ||
+ | < | ||
== NumPasses == | == NumPasses == | ||
- | How many iterations of the test should be run | + | How many iterations of the test should be run \\ |
+ | < | ||
== NumPCs == | == NumPCs == | ||
- | The number of principal components to run the test on | + | The number of principal components to run the test on \\ |
+ | < | ||
== PCsVariance == | == PCsVariance == | ||
- | Determining the number of PCs by variance explained | + | Determining the number of PCs by variance explained |
+ | < | ||
== ScaleToVariance == | == ScaleToVariance == | ||
- | scale calculated values to variability explained | + | If passed |
=== Example === | === Example === | ||
- | < | + | < |
---- | ---- | ||
- | ==== RegisterCurves ==== | + | ==== -RegisterCurves |
---- | ---- | ||
=== Parameters === | === Parameters === | ||
Line 154: | Line 178: | ||
The name for registered curve group created | The name for registered curve group created | ||
=== Example === | === Example === | ||
- | < | + | < |
---- | ---- | ||
- | ==== CreateGLM ==== | + | ==== -CreateGLM |
---- | ---- | ||
Create a General Linear Model | Create a General Linear Model | ||
=== Parameters === | === Parameters === | ||
== Grouping == | == Grouping == | ||
- | The grouping used for the model: Workspace / Group | + | The grouping used for the model: Workspace / Group \\ |
- | == Name (Required) == | + | < |
+ | == Name (Required/Default) == | ||
The name of the GLM being created | The name of the GLM being created | ||
=== Example === | === Example === | ||
- | < | + | < |
---- | ---- | ||
- | ==== RunSPM ==== | + | ==== -RunSPM |
---- | ---- | ||
Run Statistical Parametric Mapping | Run Statistical Parametric Mapping | ||
=== Parameters === | === Parameters === | ||
- | == GLM == | + | == GLM (Required) |
The name of the GLM used when creating the SPM | The name of the GLM used when creating the SPM | ||
- | == Group1 == | + | == Group1 |
The first grouping to compare | The first grouping to compare | ||
- | == Group2 == | + | == Group2 |
The second grouping to compare | The second grouping to compare | ||
- | == Name == | + | == Name (Required) |
The name of the SPM being created | The name of the SPM being created | ||
=== Example === | === Example === | ||
- | < | + | < |
---- | ---- | ||
- | ==== RunDTW ==== | + | ==== -RunDTW |
---- | ---- | ||
Run Dynamic Time Warping | Run Dynamic Time Warping | ||
=== Parameters === | === Parameters === | ||
- | == Name == | + | == Name (Required) |
The name of the DTW test being run | The name of the DTW test being run | ||
== StandardDeviations == | == StandardDeviations == | ||
- | How many standard deviations to test for: 1-3 | + | How many standard deviations to test for: 1-3 \\ |
+ | < | ||
=== Example === | === Example === | ||
< | < | ||
---- | ---- | ||
- | ==== RunV3D ==== | + | ==== -RunV3D |
---- | ---- | ||
Execute one or more Visual3D pipeline scripts via the V3D Engine, currently this only works if a library has be loaded and a query run | Execute one or more Visual3D pipeline scripts via the V3D Engine, currently this only works if a library has be loaded and a query run | ||
Line 204: | Line 230: | ||
A path to a .v3s script file, this parameter can be used more than once to load multiple scripts, the scripts will be executed in the order the are passed | A path to a .v3s script file, this parameter can be used more than once to load multiple scripts, the scripts will be executed in the order the are passed | ||
=== Example === | === Example === | ||
- | < | + | < |
---- | ---- | ||
- | ==== RunPCA ==== | + | ==== -RunPCA |
---- | ---- | ||
Run Principal Component Analysis on all queries | Run Principal Component Analysis on all queries | ||
=== Parameters === | === Parameters === | ||
- | == Name (Required) == | + | == Name (Required/Default) == |
The name for the PCA to be created | The name for the PCA to be created | ||
== numPCs == | == numPCs == | ||
- | How many principal components should be created | + | How many principal components should be created |
+ | < | ||
== WorkspaceMean == | == WorkspaceMean == | ||
If passed PCA will be run on the mean of each workspace and not the individual traces | If passed PCA will be run on the mean of each workspace and not the individual traces | ||
=== Example === | === Example === | ||
- | < | + | < |
---- | ---- | ||
- | ==== ExportData ==== | + | ==== -ExportPlotSignalTime / -ExportPlotST / -EPST ==== |
+ | ---- | ||
+ | Export the selected traces on a signal time plot | ||
+ | === Parameters === | ||
+ | == FilePath (Required/ | ||
+ | The file path the plot will be saved to, pass the desired image extension. Accepted image formats are .png, .pdf, .bmp, and .jpg | ||
+ | == Height == | ||
+ | The height in pixels of the generated plot \\ | ||
+ | < | ||
+ | == Width == | ||
+ | The width in pixels of the generated plot \\ | ||
+ | < | ||
+ | == Title == | ||
+ | The title displayed at the top of the plot | ||
+ | == XLabel == | ||
+ | The label displayed along the X Axis of the plot | ||
+ | == YLabel == | ||
+ | The label displayed along the Y Axis of the plot | ||
+ | == Legend == | ||
+ | Where the legend will be displayed, options are: Top Right, Top Left, Bottom Right, Bottom Left. If this is not passed no legend will be displayed. | ||
+ | == DataStyle == | ||
+ | Which data style type to use when generating the plot, options are: Workspace, Group, Sub Group, Cluster \\ | ||
+ | < | ||
+ | == GroupDispersion == | ||
+ | If passed the group dispersion will be plotted | ||
+ | == GroupDispersionType == | ||
+ | The method of dispersion to plot, options are: One Standard Deviation, Two Standard Deviations, Interquartile Range \\ | ||
+ | < | ||
+ | == GroupMean == | ||
+ | If passed group mean will be plotted | ||
+ | == WorkspaceDispersion == | ||
+ | If passed the workspace dispersion will be plotted | ||
+ | == WorkspaceDispersionType == | ||
+ | The method of dispersion to plot, options are: One Standard Deviation, Two Standard Deviations, Interquartile Range \\ | ||
+ | < | ||
+ | == WorkspaceMean == | ||
+ | If passed workspace mean will be plotted | ||
+ | == XRange == | ||
+ | The range of values displayed on the X Axis of the plot, format: " | ||
+ | == YRange == | ||
+ | The range of values displayed on the Y Axis of the plot, format: " | ||
+ | == RawTraces == | ||
+ | If passed individual traces will be plotted, if no other items are plotted, raw traces will be plotted by default | ||
+ | === Example === | ||
+ | < | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== -ExportPlotMetric / -ExportPlotM / -EPM ==== | ||
+ | Export the select metrics on a metric plot | ||
+ | === Parameters === | ||
+ | == FilePath (Required/ | ||
+ | The file path the plot will be saved to, pass the desired image extension. Accepted image formats are .png, .pdf, .bmp, and .jpg | ||
+ | == Height == | ||
+ | The height in pixels of the generated plot \\ | ||
+ | < | ||
+ | == Width == | ||
+ | The width in pixels of the generated plot \\ | ||
+ | < | ||
+ | == Title == | ||
+ | The title displayed at the top of the plot | ||
+ | == XLabel == | ||
+ | The label displayed along the X Axis of the plot | ||
+ | == YLabel == | ||
+ | The label displayed along the Y Axis of the plot | ||
+ | == Legend == | ||
+ | Where the legend will be displayed, options are: Top Right, Top Left, Bottom Right, Bottom Left. If this is not passed no legend will be displayed. | ||
+ | == DataStyle == | ||
+ | What data style used when plotting, options are: Workspace, Group, Sub Group, Cluster \\ | ||
+ | < | ||
+ | == RawTraces == | ||
+ | If passed individual traces will be displayed | ||
+ | == GroupMean == | ||
+ | If passed group mean will be plotted | ||
+ | == GroupDispersion == | ||
+ | If passed group dispersion will be plotted | ||
+ | == GroupDispersionType == | ||
+ | The method of dispersion used, options are: One Standard Deviation, Two Standard Deviations, Interquartile Range \\ | ||
+ | < | ||
+ | == WorkspaceMean == | ||
+ | If passed workspace mean will be plotted | ||
+ | == WorkspaceDispersion == | ||
+ | If passed workspace dispersion will be plotted | ||
+ | == WorkspaceDispersionType == | ||
+ | The method of dispersion used, options are: One Standard Deviation, Two Standard Deviations, Interquartile Range \\ | ||
+ | < | ||
+ | == MeanPlotStyle == | ||
+ | Method used for plotting means, options are Bar Chart, Stacked Bar Chart, Box Plot | ||
+ | < | ||
+ | == MetricGrouping == | ||
+ | How should workspace means be grouped, options are No Group, Group, Workspace | ||
+ | < | ||
+ | === Example === | ||
+ | < | ||
+ | |||
+ | ---- | ||
+ | ==== -ExportData | ||
Export queried data results in an ascii text file | Export queried data results in an ascii text file | ||
=== Parameter === | === Parameter === | ||
- | == File == | + | == File (Required) |
The path and name of the .txt file to export | The path and name of the .txt file to export | ||
== Precision == | == Precision == | ||
- | How many decimal places to display in exported values | + | How many decimal places to display in exported values |
+ | < | ||
== ExportFormat == | == ExportFormat == | ||
- | The format of the exported ASCII file: Standard, SPSS, Transposed, P2D | + | The format of the exported ASCII file: Standard, SPSS, Transposed, P2D \\ |
+ | < | ||
== NormalizedTo == | == NormalizedTo == | ||
- | Number of points to normalize the export data to | + | Number of points to normalize the export data to \\ |
+ | < | ||
== GroupMean == | == GroupMean == | ||
If passed the group mean will be exported | If passed the group mean will be exported | ||
Line 241: | Line 367: | ||
If passed all time based sequences will be exported | If passed all time based sequences will be exported | ||
=== Example === | === Example === | ||
- | < | + | < |
---- | ---- | ||
- | ==== ExportPCA ==== | + | ==== -ExportPCA ==== |
---- | ---- | ||
Export PCA results to a .txt file | Export PCA results to a .txt file | ||
=== Parameter === | === Parameter === | ||
- | == File == | + | == File (Required) |
- | The path and name of the .txt file to export | + | The path and name of the .txt file to export |
- | == Precision == | + | == Precision == |
- | How many decimal places to display in exported values | + | How many decimal places to display in exported values |
+ | < | ||
+ | == ExportFormat == | ||
+ | The format of the exported ASCII file: Standard, SPSS, Transposed, P2D \\ | ||
+ | < | ||
== ExportFormat == | == ExportFormat == | ||
The format of the exported ASCII file: Standard, Transposed, SPSS, P2D | The format of the exported ASCII file: Standard, Transposed, SPSS, P2D | ||
Line 269: | Line 399: | ||
If passed the mean +/- 5 and 95% will be exported | If passed the mean +/- 5 and 95% will be exported | ||
=== Example === | === Example === | ||
- | < | + | < |
---- | ---- | ||
- | ==== ExportSummaryStatistics ==== | + | ==== -ExportSummaryStatistics ==== |
---- | ---- | ||
Export summary statistics to a .txt file | Export summary statistics to a .txt file | ||
=== Parameters === | === Parameters === | ||
- | == File == | + | == File (Required) |
- | The path and name of the .txt file to export | + | The path and name of the .txt file to export |
- | == Precision == | + | == Precision == |
- | How many decimal places to display in exported values | + | How many decimal places to display in exported values |
+ | < | ||
+ | == ExportFormat == | ||
+ | The format of the exported ASCII file: Standard, SPSS, Transposed, P2D \\ | ||
+ | < | ||
== ExportFormat == | == ExportFormat == | ||
The format of the exported ASCII file: Standard, Transposed, SPSS, P2D | The format of the exported ASCII file: Standard, Transposed, SPSS, P2D | ||
Line 303: | Line 437: | ||
Export results for: Groups, Workspaces, Instances | Export results for: Groups, Workspaces, Instances | ||
=== Example === | === Example === | ||
- | < | + | < |
---- | ---- | ||
- | ==== ExportRegisteredCurves ==== | + | ==== -ExportRegisteredCurves ==== |
Export any results of curve registration | Export any results of curve registration | ||
=== Parameters === | === Parameters === | ||
- | == File == | + | == File (Required) |
- | The path and name of the .txt file to export | + | The path and name of the .txt file to export |
- | == Precision == | + | == Precision == |
- | How many decimal places to display in exported values | + | How many decimal places to display in exported values |
+ | < | ||
+ | == ExportFormat == | ||
+ | The format of the exported ASCII file: Standard, SPSS, Transposed, P2D \\ | ||
+ | < | ||
== ExportFormat == | == ExportFormat == | ||
The format of the exported ASCII file: Standard, Transposed, SPSS, P2D | The format of the exported ASCII file: Standard, Transposed, SPSS, P2D | ||
Line 324: | Line 462: | ||
If passed warping functions will be exported | If passed warping functions will be exported | ||
=== Example === | === Example === | ||
- | < | + | < |
---- | ---- | ||
- | ==== ExportDTW ==== | + | ==== -ExportDTW ==== |
---- | ---- | ||
Export Dynamic Time Warping results | Export Dynamic Time Warping results | ||
=== Parameters === | === Parameters === | ||
- | == File == | + | == File (Required) |
- | The path and name of the .txt file to export | + | The path and name of the .txt file to export |
- | == Precision == | + | == Precision == |
- | How many decimal places to display in exported values | + | How many decimal places to display in exported values |
+ | < | ||
+ | == ExportFormat == | ||
+ | The format of the exported ASCII file: Standard, SPSS, Transposed, P2D \\ | ||
+ | < | ||
== ExportFormat == | == ExportFormat == | ||
The format of the exported ASCII file: Standard, Transposed, SPSS, P2D | The format of the exported ASCII file: Standard, Transposed, SPSS, P2D | ||
Line 342: | Line 484: | ||
If passed all anomalies will be exported | If passed all anomalies will be exported | ||
=== Example === | === Example === | ||
- | < | + | < |
---- | ---- | ||
- | ==== ExportSPM ==== | + | ==== -ExportSPM ==== |
---- | ---- | ||
Export Statistical Parametric Mapping Results | Export Statistical Parametric Mapping Results | ||
=== Parameters === | === Parameters === | ||
- | == File == | + | == File (Required) |
- | The path and name of the .txt file to export | + | The path and name of the .txt file to export |
- | == Precision == | + | == Precision == |
- | How many decimal places to display in exported values | + | How many decimal places to display in exported values |
+ | < | ||
+ | == ExportFormat == | ||
+ | The format of the exported ASCII file: Standard, SPSS, Transposed, P2D \\ | ||
+ | < | ||
== ExportFormat == | == ExportFormat == | ||
The format of the exported ASCII file: Standard, Transposed, SPSS, P2D | The format of the exported ASCII file: Standard, Transposed, SPSS, P2D | ||
Line 362: | Line 508: | ||
If passed the Statistical Parametric Map will be exported | If passed the Statistical Parametric Map will be exported | ||
=== Example === | === Example === | ||
- | < | + | < |
+ | |||
+ | ---- | ||
+ | ==== -SelectSignals / -sig ==== | ||
+ | ---- | ||
+ | Select all or a selection of Signal groups and workspaces | ||
+ | === Parameters === | ||
+ | == Group == | ||
+ | The name of a group to be selected, this parameter can be passed multiple times to select more than one group, if this parameter is not passed, all groups will be selected | ||
+ | == Workspace == | ||
+ | The name of a workspace to be selected, this parameter can be passed multiple times to select more than one workspace, if this parameter is not passed, all workspaces will be selected | ||
+ | === Example === | ||
+ | < | ||
+ | |||
+ | ---- | ||
+ | ==== -SelectMetrics / -met ==== | ||
+ | ---- | ||
+ | Select all or a selection of Metric groups and workspaces | ||
+ | === Parameters === | ||
+ | == Group == | ||
+ | The name of a group to be selected, this parameter can be passed multiple times to select more than one group, if this parameter is not passed, all groups will be selected | ||
+ | == Workspace == | ||
+ | The name of a workspace to be selected, this parameter can be passed multiple times to select more than one workspace, if this parameter is not passed, all groups will be selected | ||
+ | === Example === | ||
+ | < | ||
+ | |||
+ | ---- | ||
+ | ==== -SaveProject / -sv ==== | ||
+ | ---- | ||
+ | Save the currently open project to an .i3d file | ||
+ | === Parameters === | ||
+ | == file (Required/ | ||
+ | The name and path of the .i3d file being saved | ||
+ | === Example === | ||
+ | < | ||
+ | |||
+ | ---- | ||
+ | ==== -LoadProject / -ld ==== | ||
+ | ---- | ||
+ | Load the passed project file | ||
+ | === Parameters === | ||
+ | == file == | ||
+ | The name and path of the .i3d file being loaded | ||
+ | === Example === | ||
+ | < | ||
+ | |||
+ | ---- | ||
+ | ==== -ClearProject / -clr ==== | ||
+ | ---- | ||
+ | Clear all data from the current project, no parameters | ||
+ | === Example === | ||
+ | < | ||
sift/command_line.1725465708.txt.gz · Last modified: 2024/09/04 16:01 by sgranger