Skip to main content

Questions tagged [csv]

A comma-separated values (CSV) file is "a delimited text file that uses a comma to separate values" according to Wikipedia. It stores tabular data (numbers and text) in plain text. Blender itself does not have importers or exporters for CSV files, but the format is used by any number of add-ons for importing and exporting data to other programs. Use this tag for Blender-specific questions about the use of CSV Files.

Filter by
Sorted by
Tagged with
2 votes
2 answers
38 views

I am experimenting with the Import CSV node in Blender. I have Blender open alongside a text editor where I edit my CSV file, and I would like an easy way for the new data to update automatically in ...
Alex's user avatar
  • 29
-1 votes
1 answer
25 views

I can't seem to get my graph to read the correct CSV values?
Bedson's user avatar
  • 85
2 votes
1 answer
110 views

So I'm being told this cannot easily be done, and perhaps they're right, but here's what I'm attempting: I've created a grid of 31 by 36 cylinders (rows and cols). I've got a CSV file imported (also ...
Gavin's user avatar
  • 21
0 votes
0 answers
56 views

I am doing a project where I have skeleton data in csv file format, and I need to create human motion/animation based on that file. The file consists of time series, 38 types of bones and xyz axis for ...
Kezia Amanda Kurniadi's user avatar
0 votes
1 answer
96 views

I want to export instances data from spreadsheet, like name, position, rotation, scale to a csv file. Unfortunately I don't know python, so I can't really solve this question on my own. I found this ...
retr0's user avatar
  • 327
-2 votes
1 answer
330 views

I have several vertex groups separated on my 3D model and I would like to export the spreadsheet that reflects the x,y, and z data along with the vertex groups data. I have already been able to export ...
morgansmith27's user avatar
3 votes
1 answer
103 views

How would I make a python script that converts the selected object into a CSV of triangles formatted as such: ...
Avalyn's user avatar
  • 31
1 vote
1 answer
953 views

I need to save the vertex locations of selected objects in Blender to use as offset values in another application. Ideally, I would like to have these as a CSV file (either as x, y, z per column or a ...
helskor's user avatar
  • 13
1 vote
1 answer
733 views

I would like to create a script to import coordinates from a CSV and create a bezier curve along these coordinates. I have developed a script that imports the coordinates, but it creates a curve along ...
blenre231's user avatar
3 votes
1 answer
573 views

I've recently started a project, for which I need some help. What am I doing? I have a .csv containing real world coordinates(in decimal) in order to build a certain shape. As of now, I've managed to ...
Vinctendo's user avatar
1 vote
0 answers
69 views

I have a question about visualizing real data. I have a set of points (hundreds of thousands) stored in a CSV file. Each point is defined by a position (X, Y and Z coordinates) and a fourth parameter -...
Elian Gomez's user avatar
2 votes
1 answer
3k views

I've been working a product configurator based on a CSV file that assembles something like a rack-system with different sized compartments per rack. Somehow I figured out the complicated part for the ...
billyhoiler's user avatar
0 votes
1 answer
147 views

Does anybody know if there is a good way to "record keyframes live?". For example - I want to hit the space bar while the playhead is moving to time a parameter manually instead of tediously ...
TWheeler's user avatar
0 votes
1 answer
54 views

I am working through this very helpful tutorial "Data Visualization in Blender and Python", but have hit a snag. I'm using this dummy CSV file: ...
user3202390's user avatar
0 votes
0 answers
163 views

I am trying to draw meshes in Blender by importing data from several CSV files at the same time. I could import the files one by one, but it would be quite a slow process, since there are so many ...
Ana1811's user avatar
  • 11
3 votes
1 answer
327 views

The cube is composed of 1 million voxels (100x100x100) having the same size (1 unit). Voxel information is saved in this .txt file having the format: (4 columns x 1 million lines). The first 3 columns ...
Mohammed Krameche's user avatar
0 votes
1 answer
303 views

i created a mesh monkey object from blender option. On the screen, you see the spreadsheet which only give xyz values and i trying to figure where are the ijk. The reason i want these values is to ...
user avatar
2 votes
1 answer
218 views

is there a way of being able to export an object's edge length and edge angles to a CSV file? I have created an object with some 200 triangulated faces and I would like to export the information about ...
molmo's user avatar
  • 21
0 votes
0 answers
224 views

I am very new to scripting. My problem is that I want the panel to look like this: My code so far looks like this: ...
sansan's user avatar
  • 1
2 votes
0 answers
371 views

I am trying to import a csv file into blender, using the sverchok addon, and use one of the fields of the csv file to create geometry. Here is my csv file: https://drive.google.com/file/d/...
MarcusR's user avatar
  • 309
0 votes
1 answer
700 views

I have a csv list of values i want to use to change the Bevel modifier amount for a collection of a big number of cubes. I don't really know Python but tried something based on things I found in ...
Santiago Sepúlveda's user avatar
1 vote
2 answers
112 views

Say I have external program-code, or spreadsheet, that gives me the exact locations of vertexes for an aircraft's surfaces, e.g., and I need to create a mesh in Blender that has those vertexes, not ...
Paragone's user avatar
0 votes
0 answers
31 views

I am new to blender and I'm trying to move the cube using XYZ csv file. How can I merge the file with the object and make it moving using that file. Can someone help me. Thank you
NURULNAJWA BINTI KHAMIS's user avatar
0 votes
1 answer
65 views

I try to add the Date from a .csv file as text in Blender 2.91 via Python. It creates for each row a new Text and works fine in Viewport (one date per frame) but when I try to render this code as ...
PhilPhil's user avatar
0 votes
2 answers
114 views

Newby question for the Anination Nodes experts if I may... Trying to visualise time-sequence data for a series of objects that move in X & Y. I have used some of the great answers here to get ...
mindlessfrog's user avatar