You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -29,9 +30,33 @@ The data can then be processed with geometry nodes to be visualized.
29
30
5. When importing JSON, specify the array name where the data is in your JSON File. It must be in the root JSON object, and it must contain an array.
30
31
6. When importing CSV, check if the delimiter is correct
31
32
7. When importing CSV with lines before the header row, discard these by setting the Discard leading lines value
33
+
8. Press the Import Spreadsheet button in the bottom right. The Importer will create a new Object named after the imported file. The Object wil have Mesh Data attached to it called csv_data or json_data depending on the imported file type.
34
+
9. Check the Spreadsheet viewer in Blender to see if the data has been imported correctly.
To use the imported data in any geometry nodes tree, add an Object Info node and select the object containing the imported data in the object field.
41
+
42
+
If later you want to replace the data, you can do this in the object data properties of the selected object: Link another mesh data block to the object, and the values will update. If used column names still exist in the newly linked data block, everything should update as expected.
A single float value named "field_name" is used to scale some cubes.
51
+
The Domain Size node is used to find the amounts of bars needed (the size of the imported dataset), and a duplicate of the bar geometry is created for each row of data. The duplicates are then ofset along the X axis according to the duplicate index, and scaled along the Z axis according to the data sampled from the "field_name" comumn where the row matches the duplicate index.
0 commit comments