Create points from a an array of json dictionaries


## Description

The number of points created will be equal to the number of elements in the array.
Each element of the array must be a dictionary. It can look like:
`[{position: [1,2,3]}]`
which will create a single point at the position x=1,y=2,z=3.

In order to create 2 points with attributes `position` and `amp`, you would have:
`[{position: [1,2,3], amp: 1},{position: [7,2,1], amp: 3}]`


## Parameters

<table>
<thead>
	<tr>
		<th>Name</th>
		<th>Type</th>
		<th>Description</th>
	</tr>
</thead>
<tr>
	<td>data</td>
	<td><div class='bg-purple-800 px-2 py-px text-white rounded-sm'>string</div></td>
	<td>json object used to create the geometry</td>
</tr>
</table>