Import CSV Node

Import CSV node.

The Import CSV node reads data from a CSV (Comma-Separated Values) file and generates a point cloud. The first row (header) must contain unique names for each column. After the first line each row in the file becomes a point, with numeric columns imported as attributes.

Attribute names are taken from the header row, and types are inferred from the first value in each column:

  • Integer values create integer attributes.

  • Float values create float attributes.

注釈

Only integer and float columns are supported. Other types, such as strings, are ignored.

This node is useful for visualizing external datasets in Geometry Nodes, such as for scientific visualization or procedural generation based on tabular data.

入力

Path(パス)

The path to the CSV file. The file must be structured with one row per point and values separated by a delimiter.

Delimiter

The character used to separate values within each row of the CSV file, such as a comma (,), semicolon (;), or tab character.

Tip

Tab characters can be inserted using the Special Characters Node.

出力

Point Cloud(ポイントクラウド)

A point cloud geometry where each row of the CSV file corresponds to a point.