Hi @minorsecond,
I took a quick look and my apologies that this is so obscure, but it looks like the PointCloudLASClassifier requires a PointCloudSplitter just before, preceding the custom transformer (green).
In the PointCloudSplitter: In the parameters, set “Split By” to “classification”, “Split Type” to Unique and “Output Attribute” to “_classification”. The Output Attribute must have this name because the PointCloudLASClassifer is set up to read the attribute “_classification”. There's more information on Step 2 in the Splitting By Classification section of this tutorial.
And that should output some features from the transformer, so long as your LAS data has the classification component (you can check this in the Feature Information window when inspecting your data).
I'll make a note about adding that information into the transformer documentation (: Also wanted to mention that we have lots of great tutorials for working with point clouds here in case you might be interested. Hope that works for you!
Thanks, @jovitaatsafe! That fixed it.
Hi @minorsecond,
I took a quick look and my apologies that this is so obscure, but it looks like the PointCloudLASClassifier requires a PointCloudSplitter just before, preceding the custom transformer (green).
In the PointCloudSplitter: In the parameters, set “Split By” to “classification”, “Split Type” to Unique and “Output Attribute” to “_classification”. The Output Attribute must have this name because the PointCloudLASClassifer is set up to read the attribute “_classification”. There's more information on Step 2 in the Splitting By Classification section of this tutorial.
And that should output some features from the transformer, so long as your LAS data has the classification component (you can check this in the Feature Information window when inspecting your data).
I'll make a note about adding that information into the transformer documentation (: Also wanted to mention that we have lots of great tutorials for working with point clouds here in case you might be interested. Hope that works for you!
Why not add the PointCloudSplitter into the the custom transformer ?
Thanks, @jovitaatsafe! That fixed it.
no problem! Glad to hear it (:
Why not add the PointCloudSplitter into the the custom transformer ?
Good point! I will be adding that onto my list (: that's a better idea than just changing the documentation