Feature Name:
Dynamic Scan-to-BIM Constraint Solver
Description:
An intelligent, semi-automated feature that uses TerraSolid’s point cloud classification and SpATIX’s parametric modeling engine to resolve real-world vs. as-designed discrepancies in real time.
Core Functionality:
Why this fits “terrasolid + spatix”:
Potential Use Case:
Updating an existing factory BIM model from a new laser scan. Pipes have sagged slightly; walls are out of plumb. The tool automatically flags violations of as-designed constraints, proposes realignments that stay within tolerance, and exports the hybrid model for clash detection.
Terrasolid Spatix is a 3D CAD software platform designed specifically to run Terrasolid's industry-leading LiDAR and photogrammetry applications. Launched around 2020, it provides a lightweight, cost-effective alternative to the traditional Bentley MicroStation environment. Core Concept: Why Spatix?
Historically, Terrasolid software required a separate, often expensive, license for Bentley MicroStation or other Bentley CAD products to function. Spatix serves as a standalone graphics engine that is included free of charge with Terrasolid licenses, allowing users to process LiDAR data without the added expense of a third-party CAD platform. Key Features of the Spatix Platform
Lightweight & Fast: It has a small installation footprint and is optimized for 64-bit Windows performance.
Native File Format: Uses the .spx vector file format to store 3D geometry and attributes.
Huge Dataset Support: Capable of handling the massive point clouds typical in professional LiDAR workflows.
3D Visualization: Supports stereo viewing modes and sophisticated 3D depth control.
Extensibility: Includes an API for developers to build custom applications on top of the engine.
Workflow Efficiency: Supports "Spaccels" (Spatix accelerators) and keyboard shortcuts to speed up repetitive tasks like manual point classification. Spatix vs. MicroStation: The Comparison terrasolid spatix
While the Terrasolid applications (TerraScan, TerraModeler, etc.) are functionally nearly identical on both platforms, there are key differences in the host environment: Spatix Platform Bentley MicroStation Platform Cost Included free with Terrasolid Requires separate paid license Tool Richness Lean; focused on LiDAR needs Comprehensive suite of CAD/GIS tools Functionality
May lack specific CAD tools (e.g., cell libraries, custom line styles) Full CAD capabilities for complex design work Complexity Simple and intuitive High learning curve due to feature density Integrated Software Suite
The Terra for Spatix bundle typically includes the following core applications:
TerraScan: For managing and classifying point clouds from airborne, mobile, or UAV sources.
TerraModeler: Used for creating, editing, and analyzing surface models (TINs).
TerraPhoto: For processing images and generating orthophotos alongside laser data.
TerraMatch: For improving the accuracy and quality of raw point cloud data via calibration. System Requirements
For professional LiDAR processing, the Spatix Recommended Config includes: CPU: 3.5 GHz Intel i7 or better. RAM: 24GB. GPU: NVIDIA or ATI with 4GB+ video RAM (OpenGL v3.2). OS: MS Windows 10 x64. Spatix - Advanced technology for processing spatial data
Spatix is a standalone 3D CAD software platform developed by GISware Integro specifically to serve as a native environment for running the industry-leading Terrasolid software suite Terrasolid Before 2020, Terrasolid
applications required a third-party MicroStation (Bentley) CAD license to operate. Spatix was introduced to eliminate this extra expense for LiDAR professionals. 🔑 Key Features of Spatix Cost-Efficient Autonomy:
It removes the need for an expensive external CAD platform to run Terrasolid 64-Bit Architecture:
Built to handle the massive datasets common in modern LiDAR and point cloud projects. Live Deviation Mapping: While viewing a classified point
Uses its own lightweight vector format that stores 3D geometry alongside rich spatial attributes. Stereo Mode Support:
Includes advanced visualization options necessary for precise mapping and geospatial measurements. Developer API:
Features an accessible API allowing users and third-party devs to build custom extensions. 🛠️ How Spatix Integrates with Terrasolid
Spatix operates strictly as a geometric and vector drafting engine. To unlock its full drafting capabilities and process LiDAR data, you must run Terrasolid modules inside it: Host Platform: Spatix acts as the base "window" and cursor environment. "ixApps" Execution: Terrasolid programs are loaded into Spatix as
files (referred to as ixApps) directly from the Spatix top menu. Identical Functionality:
Except for very few platform-specific tools, the tools behave exactly as they do on MicroStation. Terrasolid Supported Terrasolid Modules
The core heavy-lifting apps fully support running on top of Spatix: ResearchGate Spatix/MicroStation Documentation and Terminology
a 3D CAD platform developed by Terrasolid that serves as an alternative to MicroStation for running Terrasolid's LiDAR and point cloud processing applications
. It is designed to be a simpler, more cost-effective option for evaluating and delivering spatial data solutions. group-md.com Key Features and Functions CAD Alternative : Specifically built to allow Terrasolid applications
(like TerraScan or TerraMatch) to run without requiring a separate Bentley MicroStation license. Identical Functionality
: Tools and workflows within Spatix are nearly identical to those on the MicroStation platform, ensuring a seamless transition for existing users. 3D Drafting and Editing
: Includes powerful tools for creating, editing, and managing vector geometry in 3D space. Point Cloud Post-Processing Why this fits “terrasolid + spatix”:
: Widely used for ground surface extraction, point classification, smoothing, and noise filtering in LiDAR workflows. group-md.com Recent Updates Version v26.001 : As of January 2026, the latest Terrasolid Spatix & Microstation Suite has been released. Unified Licensing
: Licenses provided by Terrasolid often allow users to run applications on both Spatix and MicroStation on the same machine. group-md.com Typical Workflows Data Import
: Bringing in raw point cloud data (often from DJI Terra or similar drone software).
: Using Spatix-based algorithms within Terrasolid to classify "bare ground" points. Accuracy Evaluation : Efficiently performing post-processing steps to ensure point cloud data meets project specifications. or specific training tutorials for Spatix-based workflows? Introducing Spatix, a New Platform for Terrasolid
Title: An Overview of Terrasolid Spatix: The Powerhouse for Point Cloud Processing
Introduction
In the realm of LiDAR and point cloud processing, Terrasolid is widely regarded as the industry standard. While their flagship suite of tools (TerraScan, TerraModeler, TerraPhoto) is traditionally associated with Bentley MicroStation, the shift in software platforms led to the development of Terrasolid Spatix.
Spatix is the dedicated CAD platform designed specifically to host Terrasolid applications. It represents a pivotal evolution for the software, moving away from dependency on third-party CAD engines to provide a standalone, optimized environment for geospatial data.
This write-up explores what Terrasolid Spatix is, its key features, and why it matters to surveyors and data processors today.
Terrasolid Spatix represents the independence and maturity of the Terrasolid ecosystem. By creating their own platform, Terrasolid has ensured that their tools are not held back by the development cycles of other companies. For the end-user, this means a cheaper, faster, and more stable environment for processing the complex point cloud datasets that define modern surveying and mapping.
.h), libraries (.lib, .dll), example projects (C++), and a PDF manual.spatix.lib and include spatix.h.A pseudo-code example (C++):
#include <spatix.h>
int main()
SpatixContext ctx = spatix_init();
PointCloudHandle pc = spatix_load_pointcloud("data.las", NULL);
if(pc)
printf("Points: %lld\n", spatix_get_point_count(pc));
spatix_close(pc);
spatix_done(ctx);
return 0;