Hi @Rene_Heath ,
I’m not exactly following you. Do you mean you’re trying to extrapolate your logic to cover the lighter pink shape as well, in other words, give it floor slabs, columns, etc?
I’m referencing building A in this diagram.
Regarding scaling. If you know everything is scaled by .5 then just use the scale component to scale the satellite image and grid lines you’ve established and anything in your grasshopper script that needs to be scaled.
Or you can scale at the very end of your script but I’m not sure why you wouldn’t want to just set the right scale at the very beginning.
Also the polyline you create with your original points is clockwise which, while this seems intuitive, in Rhino/GH means it is actually flipped/upside down.
You can see this when you create your Surface Frames in your “Create Columns” group. The Z axis are pointing downward.
To simplify things later on. I would reorder your polyline points to generate the building profile in a counter-clockwise orientation, ensuring downstream logic will be “pointing up” or Z Positive.
You can also use the Domain box component in your Create Columns group to replace the combination of Rectangle, Boundary Surfaces, and Extrude components.
Do you really have to define the building footprint with point2D coordinates?
This seems like a difficult way to do it. My original script defined the building footprint with a referenced curve from the Rhino model. You would simply draw the building boundary in Rhino, reference it into Grasshopper, and the logic would flow from there.
You also only need 2 of your points to define a rectangle FYI:

These are just observations… feel free to pick n choose as needed of course
Let me know your thoughts/goals,
Thanks!