algorithmic modeling for Rhino
Because you are changing the value of your variable every time in the loop. You should use a list.
for example for each variable you output, you should create a list before the loop and then append to that list in your loop.
Example:
date = []
lat = []
for line in lines:
date.append(ptInfo[0])
lat.append(ptInfo[1])
Welcome to
Grasshopper
© 2025 Created by Scott Davidson.
Powered by