Loading and saving data¶
DTCC Platform can load (import) data from a number of formats into the native DTCC data model. Data can also be saved (exported) to a number of formats.
Command-line interface¶
The command-line tool dtcc-convert
provides a simple way to convert data files from one format to another:
$ dtcc-convert [--from=<format>] [--to=<format>] input.x output.y
For example, a point cloud may be converted from LAS to LAZ format by the following command:
$ dtcc-convert pointcloud.las pointcloud.laz
Python interface¶
To load data from file, use the load_*
functions, for example:
pointcloud = load_pointcloud("data/helsingborg-residential-2022/pointcloud.las")
the load_city
and load_pointcloud
functions also take an optional bounds
argument
which limits the function to only load geometry within that bounds
from dtcc.model.geometry import Bounds
bounds = Bouds(0,0,100,100)
pointcloud = load_pointcloud("pointcloud.las", bounds=bounds)
To save data to file, use the .save
method, for example:
pointcloud.save("pointcloud.las")
Alternatively, use the save_*
function, for example:
save_pointcloud(pointcloud, "pointcloud.las")
Data formats¶
The following table summarizes the supported input and output formats for the load_*
and save_*
functions.
Data type |
Input formats |
Output formats |
---|---|---|
|
|
|
|
|
|
|
|
|
To print which formats are supported by a given function, use the print_*_io
functions, for example:
print_mesh_io()