Spaces:
Running
Running
File size: 30,276 Bytes
a80532f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 | """
callbacks.py β Phoenix Upzoning Scanner
All Dash callbacks.
"""
import math
import plotly.graph_objects as go
from dash import Input, Output, State, callback, ctx, no_update, html, dash_table, dcc
import dash_bootstrap_components as dbc
from config import (
METRICS, MODE_SHARE_FIELDS,
TEXT_PRIMARY, TEXT_MUTED, CARD_BG,
COLOR_MMH, COLOR_UNDERUTILIZED, COLOR_SEC711, COLOR_TOD, COLOR_NEUTRAL,
CHOROPLETH_MIN_LAT_SPAN, ANALYSIS_LAYERS,
)
from queries import (
get_geography_geojson, get_geography_center_zoom,
geojson_feature_to_wkt_2868,
get_scorecard, get_parcels_in_viewport,
get_village_geojson_with_metrics,
get_all_zone_codes, get_zone_codes_in_polygon,
get_parcel_detail, _con,
load_city_limits, load_dpi_boundary, load_light_rail,
load_arterials, load_parks, load_zoning_polygons,
)
import geopandas as gpd
# ββ Helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _fmt(val, fmt) -> str:
if val is None:
return "β"
try:
if isinstance(val, float) and math.isnan(val):
return "β"
except Exception:
pass
if callable(fmt):
try:
return fmt(val)
except Exception:
return str(val)
try:
return fmt.format(val)
except Exception:
return str(val)
def _metric_card(label: str, value: str, desc: str) -> dbc.Card:
return dbc.Card(
dbc.CardBody([
html.P(label, style={"color": TEXT_MUTED, "fontSize": "0.72rem",
"textTransform": "uppercase",
"letterSpacing": "0.05em", "margin": 0}),
html.H5(value, style={"color": TEXT_PRIMARY, "fontWeight": 700,
"margin": "2px 0 0"}),
html.P(desc, style={"color": TEXT_MUTED, "fontSize": "0.7rem",
"margin": 0}),
]),
style={"background": CARD_BG, "border": "1px solid #2A2A4A",
"borderRadius": "6px"},
className="mb-2",
)
def _metric_cards(data: dict, tab_key: str) -> list:
cards = []
for label, col, fmt, desc in METRICS.get(tab_key, []):
cards.append(_metric_card(label, _fmt(data.get(col), fmt), desc))
return cards
def _build_scorecard_tabs(data: dict) -> dbc.Tabs:
total_parcels = data.get("total_parcels") or 0
total_acreage = data.get("total_acreage") or 0
mmh_pct = (data.get("mmh_feasible_parcels") or 0) / max(total_parcels, 1) * 100
# ββ Tab 1: Overview βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
overview = html.Div([
html.P(
f"{_fmt(total_parcels, '{:,.0f}')} parcels Β· "
f"{_fmt(total_acreage, '{:,.1f}')} acres",
style={"color": TEXT_MUTED, "fontSize": "0.8rem",
"textAlign": "center", "marginBottom": "12px"},
),
*_metric_cards(data, "overview"),
dbc.Progress(
value=mmh_pct,
label=f"{mmh_pct:.1f}% MMH feasible",
color="info",
style={"height": "18px", "fontSize": "0.72rem", "marginTop": "8px"},
),
])
# ββ Tab 2: Housing ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
zone_df = data.get("zone_breakdown")
zone_tbl = html.Div()
if zone_df is not None and not zone_df.empty:
zone_tbl = html.Div([
html.P("Zone Breakdown",
style={"color": TEXT_MUTED, "fontSize": "0.72rem",
"textTransform": "uppercase", "letterSpacing": "0.05em",
"marginTop": "12px", "marginBottom": "6px"}),
dash_table.DataTable(
data=(zone_df[["zone_code", "acreage", "pct_area", "mmh_feasible"]]
.rename(columns={"zone_code": "Zone", "acreage": "Acres",
"pct_area": "% Area", "mmh_feasible": "MMH β"})
.to_dict("records")),
columns=[
{"name": "Zone", "id": "Zone"},
{"name": "Acres", "id": "Acres", "type": "numeric",
"format": {"specifier": ",.1f"}},
{"name": "% Area", "id": "% Area", "type": "numeric",
"format": {"specifier": ".1f"}},
{"name": "MMH β", "id": "MMH β", "type": "numeric",
"format": {"specifier": ",.0f"}},
],
style_table={"overflowX": "auto"},
style_cell={"background": CARD_BG, "color": TEXT_PRIMARY,
"border": "1px solid #2A2A4A",
"fontSize": "11px", "padding": "4px 8px",
"textAlign": "left"},
style_header={"background": "#0F3460", "color": TEXT_PRIMARY,
"fontWeight": 700, "fontSize": "11px",
"border": "1px solid #2A2A4A"},
page_size=10,
),
])
housing = html.Div([*_metric_cards(data, "housing"), zone_tbl])
# ββ Tab 3: Fiscal βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
fiscal = html.Div(_metric_cards(data, "fiscal"))
# ββ Tab 4: Economic + Mode Share ββββββββββββββββββββββββββββββββββββββββββ
mode_data = {label: (data.get(col) or 0)
for label, col, _ in MODE_SHARE_FIELDS}
mode_fig = go.Figure()
for label, col, color in sorted(MODE_SHARE_FIELDS,
key=lambda x: data.get(x[1]) or 0,
reverse=True):
val = (data.get(col) or 0) * 100
mode_fig.add_trace(go.Bar(
x=[val], y=[label],
orientation="h",
marker_color=color,
text=f"{val:.1f}%",
textposition="outside",
cliponaxis=False,
))
max_val = max((data.get(col) or 0) for _, col, _ in MODE_SHARE_FIELDS) * 100
mode_fig.update_layout(
paper_bgcolor="rgba(0,0,0,0)",
plot_bgcolor="rgba(0,0,0,0)",
showlegend=False,
margin={"t": 10, "b": 10, "l": 10, "r": 55},
height=220,
xaxis=dict(range=[0, max(max_val * 1.25, 20)],
ticksuffix="%", color=TEXT_MUTED,
gridcolor="#2A2A4A", showgrid=True),
yaxis=dict(color=TEXT_PRIMARY, tickfont=dict(size=11)),
)
transit_val = (data.get("transit_mode_share") or 0)
economic = html.Div([
*_metric_cards(data, "economic"),
html.P("COMMUTE MODE SHARE",
style={"color": TEXT_MUTED, "fontSize": "0.72rem",
"textTransform": "uppercase", "letterSpacing": "0.05em",
"margin": "12px 0 2px"}),
html.P("ACS 2023 5-year estimates, tract level",
style={"color": TEXT_MUTED, "fontSize": "0.68rem",
"fontStyle": "italic", "margin": "0 0 6px"}),
dcc.Graph(figure=mode_fig, config={"displayModeBar": False},
style={"height": "220px"}),
# Transit progress bar for quick reference
dbc.Card(dbc.CardBody([
html.P("TRANSIT MODE SHARE",
style={"color": TEXT_MUTED, "fontSize": "0.72rem",
"textTransform": "uppercase",
"letterSpacing": "0.05em", "margin": 0}),
html.H3(f"{transit_val*100:.1f}%",
style={"color": COLOR_MMH, "fontWeight": 700,
"margin": "4px 0 2px"}),
html.P("Workers commuting by transit (ACS 2023)",
style={"color": TEXT_MUTED, "fontSize": "0.7rem", "margin": 0}),
dbc.Progress(
value=min(transit_val * 100, 15) / 15 * 100,
color="info",
style={"height": "8px", "marginTop": "10px",
"background": "#2A2A4A"},
),
html.Div(style={"display": "flex", "justifyContent": "space-between",
"marginTop": "3px"},
children=[
html.Span("0%",
style={"color": TEXT_MUTED,
"fontSize": "0.65rem"}),
html.Span("Phoenix avg: 1.9%",
style={"color": TEXT_MUTED,
"fontSize": "0.65rem"}),
html.Span("15%",
style={"color": TEXT_MUTED,
"fontSize": "0.65rem"}),
]),
]),
style={"background": CARD_BG, "border": "1px solid #2A2A4A",
"borderRadius": "6px", "marginTop": "8px"}),
])
return dbc.Tabs([
dbc.Tab(overview, label="Overview", tab_id="tab-overview",
activeTabClassName="fw-bold"),
dbc.Tab(housing, label="Housing", tab_id="tab-housing",
activeTabClassName="fw-bold"),
dbc.Tab(fiscal, label="Fiscal", tab_id="tab-fiscal",
activeTabClassName="fw-bold"),
dbc.Tab(economic, label="Economic", tab_id="tab-economic",
activeTabClassName="fw-bold"),
], id="scorecard-tabs", active_tab="tab-overview",
className="scorecard-tabs mt-1")
def _no_polygon_content() -> html.Div:
"""Citywide summary shown before any polygon is drawn."""
try:
con = _con()
data = con.execute("SELECT * FROM scorecard_summary").fetchdf().iloc[0].to_dict()
con.close()
data["zone_breakdown"] = None
data["street_miles_per_acre"] = None
return html.Div([
html.P("CITYWIDE SUMMARY",
style={"color": "#7B8CDE", "fontSize": "0.65rem",
"fontWeight": 700, "letterSpacing": "0.12em",
"textTransform": "uppercase", "marginBottom": "8px"}),
html.P("Draw a polygon or select a geography to analyze a specific area.",
style={"color": TEXT_MUTED, "fontSize": "0.78rem",
"marginBottom": "12px"}),
_build_scorecard_tabs(data),
])
except Exception:
return html.Div(
"Draw a polygon or select a geography to see the scorecard.",
style={"color": TEXT_MUTED, "fontSize": "0.85rem",
"textAlign": "center", "marginTop": "24px"},
)
# ββ Overlay parsing for parcel modal βββββββββββββββββββββββββββββββββββββββββ
OVERLAY_TOKENS = {
"SP": "Special Permit",
"CUP": "Conditional Use Permit",
"SUP": "Special Use Permit",
"HP": "Historic Preservation",
"HP-L": "Historic Preservation β Landmark",
"TOD-1": "Transit-Oriented Development 1",
"TOD-2": "Transit-Oriented Development 2",
"HRI": "High-Rise Incentive",
"HGT/WVR": "Height Waiver",
"AIO": "Airport Influence Overlay",
"DVAO": "Deer Valley Airport Overlay",
"MH": "Middle Housing Overlay",
"R-I": "Residential Infill Overlay",
"H-R": "High-Rise Overlay",
"FHEM": "Flood Hazard / Environmental Modification",
}
def _build_overlay_section(detail: dict) -> html.Div:
import re
raw = detail.get("zone_code_raw") or ""
pending = raw.endswith("*")
clean = raw.rstrip("* ").strip()
detected = [
f"{token} ({label})"
for token, label in OVERLAY_TOKENS.items()
if re.search(re.escape(token), clean.upper())
]
return html.Div([
html.P("LABEL1 (full zoning designation):",
style={"color": TEXT_MUTED, "fontSize": "0.7rem",
"margin": "0 0 2px"}),
html.Code(raw or "β",
style={"background": "#0A0A1A", "color": "#00E5FF",
"padding": "3px 7px", "borderRadius": "3px",
"fontSize": "0.8rem", "display": "block",
"marginBottom": "6px"}),
html.Div([dbc.Badge("PENDING CASE", color="warning",
className="me-1")]) if pending else html.Div(),
html.Div([
html.P("Detected overlays / permits:",
style={"color": TEXT_MUTED, "fontSize": "0.7rem",
"margin": "6px 0 3px"}),
html.Div([dbc.Badge(o, color="secondary", className="me-1 mb-1")
for o in detected]),
]) if detected else html.P(
"No overlays detected in LABEL1.",
style={"color": TEXT_MUTED, "fontSize": "0.7rem",
"margin": "4px 0 0"},
),
html.P(
"WARNING: Base zoning only. CUPs, SPs, development agreements, and plat "
"conditions are not fully captured. Verify with the City of Phoenix "
"website.",
style={"color": "#FF9800", "fontSize": "0.68rem",
"margin": "8px 0 0", "lineHeight": "1.4"},
),
], style={"background": "#0A0A1A", "border": "1px solid #2A2A4A",
"borderRadius": "4px", "padding": "8px 10px",
"marginBottom": "8px"})
# ββ Register callbacks ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def register_callbacks(app):
# ββ Geography dropdown β polygon store βββββββββββββββββββββββββββββββββββ
@app.callback(
Output("active-polygon-store", "data", allow_duplicate=True),
Input("geography-dropdown", "value"),
prevent_initial_call=True,
)
def geography_to_polygon(geo_value):
if not geo_value:
return no_update
return get_geography_geojson(geo_value)
# ββ EditControl β polygon store βββββββββββββββββββββββββββββββββββββββββββ
@app.callback(
Output("active-polygon-store", "data", allow_duplicate=True),
Input("edit-control", "geojson"),
prevent_initial_call=True,
)
def draw_to_polygon(geojson):
if not geojson or not geojson.get("features"):
return None
return geojson["features"][-1]
# ββ Clear button ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.callback(
Output("active-polygon-store", "data", allow_duplicate=True),
Output("geography-dropdown", "value"),
Input("clear-btn", "n_clicks"),
prevent_initial_call=True,
)
def clear_polygon(n):
return None, ""
# ββ Polygon β highlight layer βββββββββββββββββββββββββββββββββββββββββββββ
@app.callback(
Output("active-polygon-layer", "data"),
Input("active-polygon-store", "data"),
)
def update_polygon_highlight(feature):
if not feature:
return None
return {"type": "FeatureCollection", "features": [feature]}
# ββ Geography β map center + zoom βββββββββββββββββββββββββββββββββββββββββ
@app.callback(
Output("main-map", "center"),
Output("main-map", "zoom"),
Input("geography-dropdown", "value"),
prevent_initial_call=True,
)
def center_map_on_geography(geo_value):
if not geo_value:
return no_update, no_update
center, zoom = get_geography_center_zoom(geo_value)
if center is None:
return no_update, no_update
return center, zoom
# ββ Layer panel toggle ββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.callback(
Output("layer-panel-collapse", "is_open"),
Input("layer-panel-toggle", "n_clicks"),
State("layer-panel-collapse", "is_open"),
prevent_initial_call=True,
)
def toggle_layer_panel(n, is_open):
return not is_open
# ββ Analysis radio β store + choropleth style βββββββββββββββββββββββββββββ
@app.callback(
Output("active-layer-store", "data"),
Output("choropleth-layer", "style"),
Input("analysis-layer-radio", "value"),
)
def update_analysis_layer(layer):
color_map = {
"mmh": COLOR_MMH,
"under": COLOR_UNDERUTILIZED,
"s711": COLOR_SEC711,
"tod": COLOR_TOD,
"none": COLOR_NEUTRAL,
}
color = color_map.get(layer or "mmh", COLOR_MMH)
return layer, dict(weight=0.8, fillOpacity=0.65,
color=color, fillColor=color)
# ββ Context layers checklist β map layers βββββββββββββββββββββββββββββββββ
@app.callback(
Output("ctx-villages", "data"),
Output("ctx-zoning", "data"),
Output("ctx-citylimits", "data"),
Output("ctx-dpi", "data"),
Output("ctx-lightrail", "data"),
Output("ctx-arterials", "data"),
Output("ctx-parks", "data"),
Input("context-layers-checklist", "value"),
)
def update_context_layers(active):
active = active or []
empty = {"type": "FeatureCollection", "features": []}
def get(key, loader):
try:
return loader() if key in active else empty
except Exception:
return empty
return (
get("villages", get_village_geojson_with_metrics),
get("zoning", load_zoning_polygons),
get("citylimits", load_city_limits),
get("dpi", load_dpi_boundary),
get("lightrail", load_light_rail),
get("arterials", load_arterials),
get("parks", load_parks),
)
# ββ Choropleth data (bounds + layer + zone filter) ββββββββββββββββββββββββ
@app.callback(
Output("choropleth-layer", "data"),
Input("main-map", "bounds"),
Input("active-layer-store", "data"),
Input("zone-filter-dropdown", "value"),
prevent_initial_call=True,
)
def update_choropleth_data(bounds, active_layer, zone_codes):
if not bounds or active_layer == "none":
return {"type": "FeatureCollection", "features": []}
south, west = bounds[0]
north, east = bounds[1]
if (north - south) > CHOROPLETH_MIN_LAT_SPAN:
return {"type": "FeatureCollection", "features": []}
return get_parcels_in_viewport(
min_lon=west, min_lat=south,
max_lon=east, max_lat=north,
layer=active_layer or "mmh",
zone_codes=zone_codes or None,
)
# ββ Zone filter: all zones on load, polygon-specific after draw βββββββββββ
@app.callback(
Output("zone-filter-dropdown", "options"),
Output("zone-filter-dropdown", "value"),
Input("main-map", "id"),
Input("active-polygon-store", "data"),
prevent_initial_call=False,
)
def update_zone_filter(_, feature):
if not feature:
return get_all_zone_codes(), None
try:
wkt = geojson_feature_to_wkt_2868(feature)
return get_zone_codes_in_polygon(wkt), None
except Exception:
return get_all_zone_codes(), None
# ββ Zone filter β map zoom ββββββββββββββββββββββββββββββββββββββββββββββββ
@app.callback(
Output("main-map", "center", allow_duplicate=True),
Output("main-map", "zoom", allow_duplicate=True),
Input("zone-filter-dropdown", "value"),
prevent_initial_call=True,
)
def zoom_to_zone(zone_codes):
if not zone_codes:
return no_update, no_update
quoted = ", ".join(f"'{z}'" for z in zone_codes)
con = _con()
try:
result = con.execute(f"""
SELECT ST_AsWKB(ST_Centroid(geom)) AS centroid_wkb
FROM parcels
WHERE zone_code IN ({quoted})
AND NOT COALESCE(is_exempt, FALSE)
LIMIT 500
""").fetchdf()
finally:
con.close()
if result.empty:
return no_update, no_update
from shapely import wkb as shapely_wkb
geoms = [shapely_wkb.loads(bytes(b)) for b in result["centroid_wkb"]]
gdf = gpd.GeoDataFrame(geometry=geoms, crs="EPSG:2868").to_crs("EPSG:4326")
b = gdf.total_bounds # [minx, miny, maxx, maxy]
center = [(b[1] + b[3]) / 2, (b[0] + b[2]) / 2]
span = max(b[3] - b[1], b[2] - b[0])
if span > 0.2: zoom = 11
elif span > 0.1: zoom = 12
elif span > 0.05: zoom = 13
else: zoom = 14
return center, zoom
# ββ Polygon store β scorecard βββββββββββββββββββββββββββββββββββββββββββββ
@app.callback(
Output("scorecard-area", "children"),
Input("active-polygon-store", "data"),
)
def update_scorecard(feature):
if not feature:
return _no_polygon_content()
try:
wkt = geojson_feature_to_wkt_2868(feature)
data = get_scorecard(wkt)
except Exception as e:
return html.Div(f"Error computing scorecard: {e}",
style={"color": "#FF5252", "fontSize": "0.8rem"})
if not data.get("total_parcels"):
return html.Div("No non-exempt parcels found in this area.",
style={"color": TEXT_MUTED, "fontSize": "0.85rem",
"textAlign": "center", "marginTop": "24px"})
return _build_scorecard_tabs(data)
# ββ Parcel click β detail modal βββββββββββββββββββββββββββββββββββββββββββ
@app.callback(
Output("parcel-modal", "is_open"),
Output("parcel-modal-title", "children"),
Output("parcel-modal-body", "children"),
Input("choropleth-layer", "clickData"),
Input("parcel-modal-close", "n_clicks"),
State("parcel-modal", "is_open"),
prevent_initial_call=True,
)
def handle_parcel_click(click_data, close_n, is_open):
triggered = ctx.triggered_id
if triggered == "parcel-modal-close":
return False, no_update, no_update
if not click_data:
return no_update, no_update, no_update
parcel_id = (click_data.get("properties") or {}).get("parcel_id")
if not parcel_id:
return no_update, no_update, no_update
detail = get_parcel_detail(parcel_id)
if not detail:
return True, parcel_id, html.P("No detail found.")
# ββ Helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def row(label, value, fmt=None):
display = _fmt(value, fmt) if fmt else (str(value) if value is not None else "β")
return html.Tr([
html.Td(label, style={"color": TEXT_MUTED, "fontSize": "0.8rem",
"padding": "4px 12px 4px 0",
"whiteSpace": "nowrap"}),
html.Td(display, style={"color": TEXT_PRIMARY, "fontSize": "0.8rem",
"fontWeight": 600}),
])
def section(title):
return html.Tr(html.Td(
title, colSpan=2,
style={"color": "#7B8CDE", "fontSize": "0.68rem",
"fontWeight": 700, "textTransform": "uppercase",
"letterSpacing": "0.1em",
"paddingTop": "14px", "paddingBottom": "4px"},
))
# ββ Flags βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
flags = []
if detail.get("mmh_feasibility_flag"):
flags.append(dbc.Badge("MMH Feasible", color="info", className="me-1"))
if detail.get("is_underutilized"):
flags.append(dbc.Badge("Underutilized", color="warning", className="me-1"))
if detail.get("sec711_candidate_flag"):
flags.append(dbc.Badge("Β§711 Candidate",color="success", className="me-1"))
if detail.get("is_vacant"):
flags.append(dbc.Badge("Vacant", color="secondary", className="me-1"))
if detail.get("hp_flag"):
flags.append(dbc.Badge("Historic HP", color="danger", className="me-1"))
if detail.get("in_tod_district"):
flags.append(dbc.Badge("TOD District", color="primary", className="me-1"))
# ββ Zone display ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
zc = detail.get("zone_code") or ""
zn = detail.get("zo_district_name") or ""
if zn and "placeholder" in zn.lower():
zn = "Walkable Urban Code"
zone_display = f"{zc} β {zn}" if zn else zc
address = detail.get("situs_full_address") or "β"
title = f"{address} Β· {parcel_id}"
body = html.Div([
html.Div(flags, className="mb-3") if flags else html.Div(),
dbc.Alert(
"This parcel is tax-exempt (government or nonprofit ownership). "
"Excluded from upzoning gap and MMH feasibility scoring, "
"but retains its underlying zoning designation.",
color="secondary", className="mb-3",
style={"fontSize": "0.8rem", "padding": "8px 12px"},
) if detail.get("is_exempt") else html.Div(),
dbc.Alert(
"This parcel is within a Walkable Urban Code (WU) district. "
"Development standards are governed by the WU transect table "
"rather than the standard zoning ordinance.",
color="info", className="mb-3",
style={"fontSize": "0.8rem", "padding": "8px 12px"},
) if detail.get("zone_code") == "WU" else html.Div(),
_build_overlay_section(detail),
html.Table([
section("Parcel Identity"),
row("APN", parcel_id),
row("Address", detail.get("situs_full_address")),
row("Base Zone", zone_display),
row("Urban Village", detail.get("urban_village")),
row("TOD District", detail.get("tod_district_name_full")),
row("Acreage", detail.get("parcel_acreage"), "{:.3f} ac"),
section("Building"),
row("Year Built", detail.get("year_built")),
row("Stories", detail.get("stories")),
row("Floor Area", detail.get("total_floor_area_sqft"),
"{:,.0f} sqft"),
row("Units", detail.get("num_units"), "{:.0f}"),
section("Ownership & Value"),
row("Owner", detail.get("owner_name")),
row("Full Cash Value", detail.get("full_cash_value"),
"${:,.0f}"),
row("Land FCV", detail.get("land_fcv"),
"${:,.0f}"),
row("Improvement FCV", detail.get("improvement_fcv"),
"${:,.0f}"),
row("LPV / Acre", detail.get("lpv_per_acre"),
"${:,.0f}"),
row("Impr / Land Ratio", detail.get("improvement_to_land_ratio"),
"{:.2f}"),
section("Development Capacity"),
row("Zoning Capacity", detail.get("zoning_capacity_du"),
"{:,.0f} DUs"),
row("Upzoning Gap", detail.get("upzoning_gap_du"),
"{:,.0f} DUs"),
section("Activity"),
row("Jobs (apportioned)", detail.get("lodes_jobs_apportioned"),
"{:,.1f}"),
row("Jobs / Acre", detail.get("jobs_per_acre"), "{:.2f}"),
row("Transit Mode Share", detail.get("acs_transit_mode_share"),
lambda v: f"{float(v)*100:.1f}%"),
], style={"width": "100%", "borderCollapse": "collapse"}),
])
return True, title, body
|