Recently Updated Pages
Read parameters as DataFrame
The following example loads a DataFrame for a provided parameter product in the workflow: # Impo...
Read a Product property
The following example reads the value of a property for a given product: # Import voxel farm cli...
Workflow Definition
# This code runs inside the Voxel Farm platform # Import the workflow lambda api from voxelfa...
Create Version from Blob Upload
This example shows how to create a new version for a product by uploading files to a designated w...
Set exit code for Process Lambda
The following example shows how to set the exit code for a Process Lambda: from voxelfarm import...
Log from Process Lambda
The following example shows how to send a new line to the processing log: from voxelfarm import ...
Getting temp folder in Process Lambda
This example shows how to get the path to the large capacity temp folder used for temporary stora...
Downloading files in Process Lambda
This example shows how to download all files attached to an entity: from voxelfarm import proces...
Read inputs of Process Lambda
The following example shows how to read inputs from a process lambda program: from voxelfarm imp...
Initialize Process Lambda
The following example shows how to obtain the lambda_host interface: from voxelfarm import proce...
Read Process Results
This example shows how to read the results of a Process Lambda execution. # The "project" variab...
Attach file to Process Lambda
The following example shows how to attach a file from the temporary drive to the running process ...
Load and Write Pandas
This example shows how to create a Pandas dataframe from voxels inside a Report Lambda program an...
Volumetric Booleans in Report
This example shows how to create volumetric boolean operations between volumetric datasets. #...
Read inputs of Report Lambda
The following example shows how to read inputs from a report lambda program. mesh_entity = vf.in...
Initialize Report Lambda
This example shows how to initialize the Voxel Farm library in a report Lambda program. import v...
Read Report Results
This example shows how to read the results of a Report Lambda execution. # The "project" variabl...
Run Process Lambda
This example runs a lambda process in the platform: result = vf.create_process_entity( ...
Run Report Program
The following example runs an existing Report Program with a given set of inputs. # We will use ...
Define Report Program
This example creates a new report program. result = vf.create_lambda_python( project=projec...