I have a simple table with spatial objects (Polygons).
| Point number | Spatial Object |
| 1 | a |
| 2 | b |
| 3 | c |
| 4 | d |
| 5 | e |
| 6 | f |
| 7 | g |
I would like to transpose rows to columns (sth like excel transpose).
1,2,3... should be names of columns, and a,b,c... values of columns
What is the simplest way, to achieve it?
Greetings
Andrzej