최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 'Designing Future Society for Our Lives' 매 Yumeshima island, Osaka". 매 2025-04-13 ~ 10-13. 매 BIE 등록 — 매 World Expo. 매 highlight: 매 Grand Ring (largest wooden structure), 매 flying car demo, 매 immersive pavilion, 매 AI / robotics. 매 attendance ~28M.
defpredict_pavilion_wait(historical,weather,time_of_day):"""매 wait time prediction."""features=encode([historical,weather,time_of_day])returnwait_time_model.predict(features)
import{ARSession}from'@react-three/xr';functionPavilionAR(){return(<ARSession><ambientLightintensity={0.5}/><Scenemodel="pavilion-content.glb"/><Hotspotposition={[0,1,-2]}info="Future city design"/></ARSession>);}
Sustainable timber engineering (Grand Ring)
# 매 wood vs concrete CO2defco2_footprint(material,mass_kg):factors={'concrete':0.1,'steel':1.85,'cross_laminated_timber':-1.0}# 매 CLT 의 carbon sinkreturnmass_kg*factors[material]
Visitor flow heatmap
defcrowd_density(camera_feed):"""매 head detection + heatmap."""heads=detect_heads(camera_feed)H,W=camera_feed.shape[:2]density=np.zeros((H,W))forhinheads:density[h.y,h.x]+=1returngaussian_filter(density,sigma=10)