Policy Impact Analysis Generator
Impact Dashboard
Your generated analysis will appear here. Start by entering policy details in the 'Generate New Analysis' tab.
Generate New Analysis
Define the policy you want to analyze. Analysis settings are applied from the 'Data Configuration' tab.
Data Configuration
Customize the framework for the analysis. Your selections here will shape the generated report.
Scope: ${settings.scope} | Timeframe: ${settings.timeframe}
`; settings.stakeholders.forEach(stakeholder => { html += `Impact on ${stakeholder}
`; settings.dimensions.forEach(dimension => { const snippets = (impactSnippets[policyArea] && impactSnippets[policyArea][stakeholder]) || (impactSnippets.Economic[stakeholder]) || // Fallback to economic { pros: ["General positive outcomes expected."], cons: ["General negative risks to consider."] }; html += `${dimension} Impact
`; html += `- `;
if (snippets.pros) snippets.pros.forEach(pro => html += `
- ${pro} `); if (snippets.cons) snippets.cons.forEach(con => html += `
- ${con} `); html += `
