Assigning baked geometry to new layer everytime I press the Bake button

Hi all.

I am new to grasshopper and elefront plugin. I am not sure if someone has already done this.

How do i create a layer based on the time data? (hh,mm,ss). and assign the baked geometry to it. the issue i was encountering is the clock doesnt refresh itself. i tried data dam, not sure how it works and where do i put it. can anyone help me in this.

Data dam = 0.25 seconds
Trigger = 10 ms

thank you very much in advance.


Test.gh (12.6 KB)

there is a pretty old plugin for sun path simulation called “Heliotrope”

it has a julian day node that can be triggered to update via button.

it works just fine for your situation. you could truncate the text string if the layer name is too detailed.


Test.gh (9.6 KB)

1 Like

Thank you very much!

1 Like
import datetime
now = datetime.datetime.now()
Y = now.year
M = now.month
D = now.day
h = now.hour
m = now.minute
s = now.second