Skip to content

Commit 8db92b7

Browse files
committed
Removed unused string node in tutorial
1 parent 12cc664 commit 8db92b7

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed
19.8 KB
Loading

node/documentation/using/data-visualization.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -76,18 +76,18 @@ The result so far is all information as text on top of each other. Next procedur
7676
* Create a range node and send count1 to **End**.
7777
* Create a multiply node. Connect range1 to **Value1** and divide1 to **Value2**.
7878

79-
Now we need a few transformation nodes to connect this data to the actual data.
79+
Now we need a few transformation nodes to connect this data to the actual data.
8080

8181
* Create a rotate node. Connect multiply1 to **Angle**. Connect textpath1 to **Shape**.
8282
* Create a translate node. Connect rotate1 to **Shape** and resample1 to **Points**.
8383
* Render translate1.
8484

8585
![earthquakes step 1](data-visualization-earthquakesa.png)
8686

87-
Have a look at the csv file and notice that it has a lot of columns. Let's add the depth and magnitude to it.
87+
Have a look at the csv file and notice that it has a lot of columns. Let's add the depth and magnitude to it.
8888

8989
* Create a lookup node and set **Key** to Depth.
90-
* Create a divide node to enable scaling of the number. Connect lookup2 to **Value1**.
90+
* Create a divide node to enable scaling of the number. Connect lookup2 to **Value1**.
9191
* Create a rect node. Connect divide2 to **Width**. Set **Height** to **5.0**.
9292
* Create an align node and connect rect1 to it. Set **HAlign** to **Right**.
9393
* Finally create a combin node to store all shapes in them before the transformation nodes (rotate and translate). Then send this combined shape to rotate1.
@@ -134,7 +134,7 @@ Now for the pie. We will make a pie by using a [arc node](/node/reference/coreve
134134
* Create a sum node. Connect slice1 to it.
135135
* Create an arc node. Connect sum2 to **Start_angle** and convert range1 to **Degrees**.
136136
* Create a colorize node and send arc1 to **Shape**.
137-
* Select slice1, sum2, arc1 and colorize1. Right-click and **Group into Network**.
137+
* Select slice1, sum2, arc1 and colorize1. Right-click and **Group into Network**.
138138
* Right click it again and rename it 'pie'.
139139
* Right click it once more and **Edit Children**.
140140
* Publish **Size** of slice1, name it 'Slicesize'. Publish **Fill** of colorize1, name it 'Fill'.
@@ -143,7 +143,7 @@ This is how the subnetwork and all its published port looks:
143143

144144
![pie subnet](data-visualization-pie-subnet.png)
145145

146-
Go back to the root network and
146+
Go back to the root network and
147147

148148
* Create a range node. Connect numbers1 to **End**.
149149
* Connect range1 to *Slicesize** of pie.
@@ -184,16 +184,13 @@ In the second section we will create a set of points based on the number of albu
184184

185185
The idea is to generate a number of points. We will do this be using a rect node connected to a scatter node.
186186

187-
* Create a rect node. Set its dimensions to 500 * 500.
187+
* Create a rect node. Set its dimensions to 500 * 500.
188188
* Create a scatter node. Connect rect1 to **Shape**. Connect count2 to **Amount**. We now have 9 points.
189-
* Create a string node. Connect distinct1 to it.
190-
* Create a zipmap node. Connect string1 to **Keys** and scatter1 to **Values**.
189+
* Create a zipmap node. Connect distinct1 to **Keys** and scatter1 to **Values**.
191190
* Create a lookup node. Connect zip_map1 to **List** and lookup2 to **Key**.
192191

193192
The viewer pane will reveal only the same set of points but if you switch to data view you will see that each point has multiple points behind it (at the same location).
194193

195-
![zipmap step2](data-visualization-metallicb.png)
196-
197194
We will glue these two together.
198195

199196
* Create a translate node. Connect rotate1 to **Shape** and lookup3 to **Translate**.

0 commit comments

Comments
 (0)