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

Crash due to multiple expressions on filters.assign #85

Open
GGuidiRontani opened this issue Mar 20, 2023 · 0 comments
Open

Crash due to multiple expressions on filters.assign #85

GGuidiRontani opened this issue Mar 20, 2023 · 0 comments
Assignees

Comments

@GGuidiRontani
Copy link

With pdal-parallelizer 2.0.3 on Windows, both with single and dir options, multiples requests with filters.assign make pdal-parallelizer crash. For exemple,

    {
        "type":"filters.assign",
        "value":
		[
		"value" : "Dimension = ValueExpression [WHERE ConditionalExpression)]",
		"value" : "Dimension = ValueExpression [WHERE ConditionalExpression)]",
		"value" : "Dimension = ValueExpression [WHERE ConditionalExpression)]"
		]
    },

has to be replaced by,

    {
        "type":"filters.assign",
        "value":
		[
		"value" : "Dimension = ValueExpression [WHERE ConditionalExpression)]"
		]
    },    {
        "type":"filters.assign",
        "value":
		[
		"value" : "Dimension = ValueExpression [WHERE ConditionalExpression)]"
		]
    },    {
        "type":"filters.assign",
        "value":
		[
		"value" : "Dimension = ValueExpression [WHERE ConditionalExpression)]"
		]
    },
@ClementAlba ClementAlba self-assigned this Apr 11, 2023
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