Struct map_model::Building [−][src]
pub struct Building {}Show fields
pub id: BuildingID, pub polygon: Polygon, pub levels: f64, pub address: String, pub name: Option<NamePerLanguage>, pub orig_id: OsmID, pub label_center: Pt2D, pub amenities: Vec<Amenity>, pub bldg_type: BuildingType, pub parking: OffstreetParking, pub osm_tags: Tags, pub sidewalk_pos: Position, pub driveway_geom: PolyLine,
A building has connections to the road and sidewalk, may contain commercial amenities, and have off-street parking.
Fields
id: BuildingID
polygon: Polygon
levels: f64
address: String
name: Option<NamePerLanguage>
orig_id: OsmID
label_center: Pt2D
Where a text label should be centered to have the best chances of being contained within the polygon.
amenities: Vec<Amenity>
bldg_type: BuildingType
parking: OffstreetParking
Depending on options while importing, these might be empty, to save file space.
sidewalk_pos: Position
The building’s connection for any agent can change based on map edits. Just store the one for pedestrians and lazily calculate the others.
driveway_geom: PolyLine
Goes from building to sidewalk
Implementations
impl Building
[src]
impl Building
[src]pub fn sidewalk(&self) -> LaneID
[src]
pub fn house_number(&self) -> Option<String>
[src]
pub fn driving_connection(&self, map: &Map) -> Option<(Position, PolyLine)>
[src]
The polyline goes from the building to the driving position
pub fn biking_connection(&self, map: &Map) -> Option<(Position, Position)>
[src]
Returns (biking position, sidewalk position). Could fail if the biking graph is disconnected.
pub fn num_parking_spots(&self) -> usize
[src]
pub fn has_amenity(&self, category: AmenityType) -> bool
[src]
Does this building contain any amenity matching the category?
Trait Implementations
impl<'de> Deserialize<'de> for Building
[src]
impl<'de> Deserialize<'de> for Building
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl RefUnwindSafe for Building
impl Send for Building
impl Sync for Building
impl Unpin for Building
impl UnwindSafe for Building
Blanket Implementations
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,