Giter VIP home page Giter VIP logo

Comments (6)

tmontaigu avatar tmontaigu commented on June 27, 2024 1

It seems that its a problem with the laszip backend.

I can reproduce with laszip, but with lazrs I can't

from laspy.

tmontaigu avatar tmontaigu commented on June 27, 2024 1

Ok, I found the problem, basically, the file problem comes from the fact that the file is quite big

  • 405MB of LAZ: 81_719_107 points of 34 bytes each so 2_778_449_638 bytes (2.147483647 GB)

The internal buffer used to get the uncompressed bytes given by laszip uses an 32bit signed int to count the
number of bytes however (81_719_107 * 34) >= int32_max, which made the buffer 'stop' and only output 0s.

When using chunking, since after reading each chunk, that buffer gets emptied you don't reach the int32 limit
and the file is read correctly. (unless you try to read 63_161_284 which makes you go over the limit)

I have a fix locally for this, which allows to laspy.read the whole file and
get the expected result.

It will require a new version of the laszip-python backend

from laspy.

tmontaigu avatar tmontaigu commented on June 27, 2024 1

a new release of laszip-python is available which fixes the problem

from laspy.

tmontaigu avatar tmontaigu commented on June 27, 2024

It happens only with this file ?

from laspy.

Stakhan avatar Stakhan commented on June 27, 2024

Hi @tmontaigu !
Thanks a lot for your feedback and glad you could identify the issue.

If I understand well, a quick fix on the user side would be to switch to the lazrs backend.

Let me know if I can help for the new version of laszip-python.

from laspy.

Stakhan avatar Stakhan commented on June 27, 2024

Thank you very much!
I can report that it works on my side with the new release (v0.2.3)

from laspy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.