Astrological Chart Aspect Pattern Identifier

Astrological Chart Aspect Pattern Identifier

Input aspects to identify complex geometric patterns (Grand Trine, T-Square, Yod) within a natal chart.

ASTROLOGICAL ASPECT REPORT

Chart: Natal Chart | Focus: Major Life Themes

Total Aspects Logged
0
Harmonious Patterns Found
0
Challenging Patterns Found
0

Identified Geometric Patterns

No patterns identified yet. Input a minimum of 4 aspects in the Configuration tab.

Aspect Log

Planet 1 Planet 2 Aspect Type Orb (°) Action
Input aspects in the Configuration tab.

Aspect Data Entry

List aspects one per line. Focus on major aspects (Trine, Square, Opposition, Conjunction, Sextile, Quincunx).

Format: **Planet 1 | Planet 2 | Aspect Type | Orb (Degrees)**
Example: *Venus | Pluto | Square | 1.8*

Chart Identification

Planets: ${p.planets.join(', ')}

    ${p.aspects.map(a => `
  • ${a}
  • `).join('')}
`; patternsContainer.appendChild(box); }); } // --- Update Stats and Meta --- document.getElementById('stat-total-aspects').innerText = aspects.length; document.getElementById('stat-harmonious').innerText = harmoniousCount; document.getElementById('stat-challenging').innerText = challengingCount; const chartName = document.getElementById('inp-chart-name').value || "Natal Chart"; const focus = document.getElementById('inp-focus').value || "Major Life Themes"; document.getElementById('out-pdf-chart-name').innerText = chartName; document.getElementById('out-pdf-focus').innerText = focus; } function acapiDownloadPDF() { acapiUpdateDashboard(); const element = document.getElementById('acapi-print-area'); // Show PDF header and hide controls const headers = element.querySelectorAll('.pdf-header'); headers.forEach(h => h.style.display = 'block'); const controls = element.querySelectorAll('.pdf-hide'); controls.forEach(c => c.style.display = 'none'); // Ensure code block is readable in PDF const sheet = element.querySelector('.acapi-tab-content'); sheet.style.backgroundColor = '#fff'; sheet.style.color = '#333'; const opt = { margin: 0.5, filename: 'Astrological_Aspect_Report.pdf', image: { type: 'jpeg', quality: 0.98 }, html2canvas: { scale: 2 }, jsPDF: { unit: 'in', format: 'letter', orientation: 'portrait' } }; html2pdf().set(opt).from(element).save().then(function() { // Revert changes after download headers.forEach(h => h.style.display = 'none'); controls.forEach(c => c.style.display = 'flex'); sheet.style.backgroundColor = '#2b2b2b'; sheet.style.color = '#c5c6c7'; // Re-show button container that was hidden by pdf-hide class document.querySelector('.acapi-btn-container').style.display = 'flex'; }); }
Scroll to Top