-
Notifications
You must be signed in to change notification settings - Fork 469
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
More flexible styling for classified point clouds #269
Comments
Are you certain this would be part of a MVP 1.0? If it doesn't affect basically all point cloud styling and can be added in a backwards-compatible way, it should be labeled |
It isn't required for 1.0. Any app can get around this limitation by storing classification as a per-point property, however it's more work to get the same functionality. Probably best to scope for |
See CesiumGS/glTF#1 - per-point and per-group properties can be specified together by using multiple batch tables. |
This is now possible with the |
If a point cloud is classified, in that it uses batch ids and has a
BATCH_LENGTH
, the length of each batch table array is equal toBATCH_LENGTH
rather thanPOINTS_LENGTH
. This means it is not possible to support per-point attributes when the point cloud is classified. Styling based on a point's "intensity" or "height" isn't possible.The change would require marking some batch table properties as per-batch properties and others as per-point properties.
The text was updated successfully, but these errors were encountered: