-
Hi, I am not sure reading the doc, also I did not find any cases for that, so please clarify. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @Azbesciak - You are correct that the The |
Beta Was this translation helpful? Give feedback.
Hi @Azbesciak - You are correct that the
building_part.building_id
field is a foreign key reference to thebuilding
entity. There's a backward relation inbuilding.has_parts
which indicates whether anybuilding_part
s exist that point back to this building.The
building
entities are the defining record of information about the building - containing things like the type of building (inclass
andsubclass
) and the building's name. Thebuilding_part
s are the 3d representation. But if you only want the 2d geometry, you can find it inbuilding.geometry
.