Spatial Lambdas
VoxelSpace's spatial lambdas are serverless functions that execute custom computations on your volumetricdata.
Introduction
VoxelSpace's spatial lambdas are serverless functions that execute custom computations on your vo...
What are Spatial Lambdas?
Spatial lambdas are stateless cloud functions written in languages such as Python or .NET. They t...
When to Use a Lambda
Use a spatial lambda when you need to: Compute metrics such as total volume tonnage average de...
Authoring a Lambda
Spatial lambdas are typically composed of three main components: 1. Input Definition Specify th...
Running a Lambda
Follow these steps to execute a spatial lambda: Step 1:Prepare Your Dataset Ensure your data is...
Best Practices
Performance Optimization Limit the region: Restrict the lambda to the smallest area necessary to...
Advanced Lambda Example
Here's a more sophisticated lambda that performs statistical analysis: def statistical_analysis_...
Troubleshooting Common Issues
Performance Problems Large memory usage: Process voxels in batches rather than loading all int...