can i get a rule file to generate buildings based on number of floors?

432
2
08-22-2017 12:00 AM
BhargaviChendi1
New Contributor

can i get a rule file to generate buildings based on number of floors?

0 Kudos
2 Replies
DevinLavigne
Occasional Contributor III

Is the number of floors coming from an import SHP file or some other location? Or are you looking to manually (or randomly) assign number of floors?

0 Kudos
CherylLau
Esri Regular Contributor

Yes, you can generate a building based on number of floors.

For example, if you have an attribute for the number of floors and you know the floor height, then you can calculate the building height.

attr nFloors = 5

const floor_height = 3
const height = nFloors*floor_height

Lot -->
     extrude(height)
‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍
0 Kudos