Giter Club home page Giter Club logo

Comments (3)

ash-datasight avatar ash-datasight commented on July 19, 2024 1

Amazing!

Thank you @ClementAlba for the comprehensive response and rapid fix.

from pdal-parallelizer.

ClementAlba avatar ClementAlba commented on July 19, 2024

Hi @ash-datasight,

At the end of a process, pdal-parallelizer looks at your output directory to remove empty files (those with 0 dots), and to do this, it creates deciles based on the size of the output files to speed up the process.

Here you are trying to process a single cloud while not specifying any value for the tile_size option, so the default value of 256 by 256 meters is used here for the size of the tiles. According to the documentation (https://pdal-parallelizer.readthedocs.io/en/latest/cli.html#processing-pipelines-with-pdal-parallelizer-cli):

-ts, -tile_size

Tile size [default=(256,256)] (single file only)

I assume your points cloud's dimensions are smaller than this value, so at the end of the execution, there is only one file in your output directory and that's why the error occurs: it's impossible to build deciles with a single file.

Solution:

Try reducing the size of the tiles by giving a value to the -ts option. For example:

pdal-parallelizer process-pipelines -c /work/test/data_1/pdal-parallelizer.json -it single -ts 10 10

This command will split your point cloud into 10 by 10 meters tiles.

from pdal-parallelizer.

ClementAlba avatar ClementAlba commented on July 19, 2024

I will work on this. See #48

from pdal-parallelizer.

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.