No planets
`; return html`| ${this.t('Body')} | Position | House | Nakshatra, pada | Star lord | Sub lord | Sub-sub lord | KP no. |
|---|---|---|---|---|---|---|---|
| ${b.name}${b.retrograde ? html`R` : nothing} | ${typeof b.longitude === 'number' ? formatSignPosition(b.longitude) : ''} | ${typeof b.house === 'number' ? b.house : ''} | ${nakshatraPada(b.nakshatra, b.pada)} | ${b.starLord ?? ''} | ${b.subLord ?? ''} | ${b.subSubLord ?? ''} | ${typeof b.kpNumber === 'number' ? b.kpNumber : ''} |
No cusps
`; return html`| House | Position | Sign lord | Nakshatra, pada | Star lord | Sub lord | Sub-sub lord | KP no. |
|---|---|---|---|---|---|---|---|
| ${c.house}${this.renderThemes(houseThemeLine(c.house, themes))} | ${typeof c.longitude === 'number' ? formatSignPosition(c.longitude) : (c.sign ?? '')} | ${c.signLord ?? ''} | ${nakshatraPada(c.nakshatra, c.pada)} | ${c.starLord ?? ''} | ${c.subLord ?? ''} | ${c.subSubLord ?? ''} | ${typeof c.kpNumber === 'number' ? c.kpNumber : ''} |
No significators
`; return html` ${this.renderLevelLegend(houseWise)} ${ houseWise.length ? html`Planets that signify each house, strongest level first.
| House | ${LEVELS.map((l) => html`L${l} | `)}Strength order |
|---|---|---|
| ${h.house}${this.renderThemes(houseThemeLine(h.house, themes))} | ${LEVELS.map((l) => this.renderCell(this.planetsAtLevel(h, l).join(', ')))}${chain(h.all ?? [])} |
Houses each planet signifies, strongest level first.
| Planet | ${LEVELS.map((l) => html`L${l} | `)}Strength order |
|---|---|---|
| ${p.planet} | ${LEVELS.map((l) => this.renderCell(this.housesAtLevel(p, l).join(', ')))}${chain(p.allHouses ?? [])}${this.renderThemes(houseWords(dedupe(p.allHouses), themes))} |