Install
From pypi
py3dtiles is published on pypi.org.
pip install py3dtiles
Please read the section “File formats support” next.
From sources
To use py3dtiles from sources:
$ apt install git python3 python3-pip virtualenv
$ git clone git@gitlab.com:py3dtiles/py3dtiles.git
$ cd py3dtiles
$ virtualenv -p python3 venv
$ . venv/bin/activate
(venv)$ pip install .
You might need to install specific format dependencies as described in the section “From pypi”.
If you want to run unit tests:
(venv)$ pip install -e .[dev]
(venv)$ pytest
Please read the section “File formats support” next.
File formats support
By default, no specific format dependencies are installed. You should either install them separately, or use our extra_requires sections:
# las support
pip install py3dtiles[las]
# ply
pip install py3dtiles[ply]
# postgres
pip install py3dtiles[postgres]
# everything at once
pip install py3dtiles[postgres,ply,las]
To support laz files you need an external library and a laz backend for laspy, see this link. Short answer, for laszip, you need to follow these steps:
$ # install liblaszip, for instance on ubuntu 22.04
$ apt-get install -y liblaszip8
$ # Install with LAZ support via laszip
$ pip install laspy[laszip]
If you don’t need waveform support, lazrs is also a good option.
From docker
We currently publish docker images on docker hub and gitlab registry.
docker run --rm py3dtiles/py3dtiles:<version> --help
# or
docker run --rm registry.gitlab.com/py3dtiles/py3dtiles:<version> --help
NOTE:
the –mount option is necessary for docker to read your source data and to write the result. For instance, you can add -mount type=bind,source=”$(pwd)”/data,target=/app/data/ to your docker run command. This allows the docker container to read and write files in ./data.
If your uid is different from 1000, you should add –volume /etc/passwd:/etc/passwd:ro –volume /etc/group:/etc/group:ro –user $(id -u):$(id -g) to your docker run command