I’m wondering if it was possible to create a topo surface based on a Point cloud scan by using Dynamo.
I’ve been searching multiple places for answers but I’m not satisfied with the results. I have no experience with topo what so ever but it would be fun to see the results!
The pointcloud was captured by a Dji drone with pix4D app, i then processed an LAZ. file with RecapPro. after this i Imported it into a revit project
You will need to extract the ground points from your data before proceeding into Dynamo or Revit.To do this, use of external software such as CloudCompare will be necessary. Reduction in point numbers via random sampling or Octree (spaced intervals) will also be required to ensure that any Topographical element doesn’t have an extremely complex series of control points, as this will be detrimental to model performance.
I am not able to demostrate the Octree reduction inside Dynamo at this time (will see when I can do this) but the example of how to sub-sample points in CloudCompare can be found here.
Civil3D will create a surface from a pointcloud
If you know how C3D works with dynamic edits to surfaces- such as reducing triangulation- it can work pretty well
Otherwise- I’d agree with Ewan- Cloudcompare is the best bet
Note that Cloudcompare has both a UI mode and a commandline mode- either way, you use the subsampling function. In addition to the random or octree methods, the spatial method often works best as it makes the point spacing uniform
Dealing with very large numbers of points and complex triangulated surfaces probably isn’t the strength of Revit/Dynamo
thanks for all the support.
the reduction of points was a sucsess, i managed to import the treated xyz file.
but im not able to retrieve multiple coordinates with my Code Block
I looked at your script @Ewan_Opie. what does the “P” stand for?
p is just a variable identified to be taken as the input for the node .
In this case p is a list for input.
[ __ ] is the index within the list at which to extract the data.
If you change the Transpose status of the Data.ImportCSV node you should be good to go.
i applied the method you mentioned above and then i successfully created the topography but I failed to make 3 points in dynamo to form delaunay triangle.
Can you please tell me a little but where is the problem and what i have to do to fix it? pls