Buyers from East Asia often ask about a home's feng shui before visiting. Store the facing bearing and construction year with each listing and show the Flying Star chart and the Eight Mansions sectors on the detail page — a differentiator competitors rarely offer.
Endpoints: /feng-shui/flying-star, /feng-shui/eight-mansions. Results depend only on the building, so calculate once when the listing is published and store them.
// when a listing is saved (server side)
const [stars, mansions] = await Promise.all([
api('/feng-shui/flying-star', { facing: listing.facingDegrees, constructionYear: listing.builtYear }),
api('/feng-shui/eight-mansions', { facing: listing.facingDegrees }),
]);
await db.listings.update(listing.id, { fengShui: { stars, mansions } });
Demo listing: faces 172° (south), built 2019
Shuang Xing Dao Zuo · Period 8 · Kan house (East group)
NW
394
N
848
NE
126
W
215
CENTRE
483
E
661
SW
759
S
937
SE
572
Best sectors: N (Fu Wei), E (Tian Yi), SE (Sheng Qi), S (Yan Nian).