I have a point dataset representing the locations of streetlights. I want to replace each point with a small line drawing that symbolizes a streetlight. This symbol is stored as a set of line geometries and can stay line geometry.
I suspect I may not be using the correct approach, but here’s what I’ve tried so far:
I used a GeometryExtractor
to extract the line geometry of the symbol, and a GeometryReplacer
to apply that geometry to each point. This almost works — however, instead of placing the symbol at the location of each point, the points are being moved to the location of the symbol. As a result, I end up with over 4000 symbols stacked on top of each other at the original symbol location.
I’ve included an image of my workspace to illustrate the issue.
