Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker mpc-merge-all failed, PotreeConverter: undefined symbol: laszip_create #20

Open
aleksandrmelnyk opened this issue May 16, 2018 · 1 comment

Comments

@aleksandrmelnyk
Copy link

hi all,
tried tocker version of the utility, untill merge all steps ran ok, but tile merging failed with following exception:

READING:  tile_0_2/e2075n70670_1.laz
PotreeConverter: symbol lookup error: PotreeConverter: undefined symbol: laszip_create

Seems like broken (absent laszip dependencies) docker container?

thanks,

Alex.

@nevergreendd
Copy link

Edit the Dockerfile like this:

...
RUN wget https://github.com/LASzip/LASzip/releases/download/3.4.1/laszip-src-3.4.1.tar.gz
RUN tar xvfz laszip-src-3.4.1.tar.gz
WORKDIR /opt/laszip-src-3.4.1
RUN mkdir makefiles
WORKDIR /opt/laszip-src-3.4.1/makefiles/
...

instead of:

...
RUN wget http://download.osgeo.org/laszip/laszip-2.1.0.tar.gz
RUN tar xvfz laszip-2.1.0.tar.gz
WORKDIR /opt/laszip-2.1.0
RUN mkdir makefiles
WORKDIR /opt/laszip-2.1.0/makefiles/
...

It worked for me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants