Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Properties that most impact each school district's property taxes #629

Draft
wants to merge 14 commits into
base: master
Choose a base branch
from

Conversation

wrridgeway
Copy link
Member

@wrridgeway wrridgeway commented Oct 24, 2024

See #627

@wrridgeway wrridgeway self-assigned this Oct 24, 2024
@wrridgeway wrridgeway linked an issue Oct 24, 2024 that may be closed by this pull request
13 tasks
@wrridgeway
Copy link
Member Author

@ccao-jardine I defined eav as

(pin.av_board - (
        pin.exe_homeowner
        + pin.exe_senior
        + pin.exe_freeze
        + pin.exe_longtime_homeowner
        + pin.exe_disabled
        + pin.exe_vet_returning
        + pin.exe_vet_dis_lt50
        + pin.exe_vet_dis_50_69
        + pin.exe_vet_dis_ge70
        + pin.exe_abate
    )) * fact.eq_factor_final

is that right? do we want to use av_clerk for things like ranking and eav rather than av_board?

Comment on lines +20 to +33
pin.av_board - (
pin.exe_homeowner
+ pin.exe_senior
+ pin.exe_freeze
+ pin.exe_longtime_homeowner
+ pin.exe_disabled
+ pin.exe_vet_returning
+ pin.exe_vet_dis_lt50
+ pin.exe_vet_dis_50_69
+ pin.exe_vet_dis_ge70
+ pin.exe_abate
)
) * fact.eq_factor_final AS INT
) AS eav,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Almost! To get taxable EAV, you'll want AV * equalizer, then subtract out exemptions and abatements, because those are in units of EAV.

( 
 (pin.av_board * fact.eq_factor_final) 
   - (pin.exe_homeowner
        + pin.exe_senior
        + pin.exe_freeze
        + pin.exe_longtime_homeowner
        + pin.exe_disabled
        + pin.exe_vet_returning
        + pin.exe_vet_dis_lt50
        + pin.exe_vet_dis_50_69
        + pin.exe_vet_dis_ge70
        + pin.exe_abate)
 ) AS eav

It might be helpful to rename eav to taxable_eav to make it clear that this is the FInal EAV, as in the taxable, post-exemption EAV.

I'd QC it by finding a few PINs with/without exemptions and an abatement, multiplying taxable EAV by the cumulative rate, and seeing if it equals the tax bill.

I'm sure my parentheses styling is off, but I ain't ashamed.

Copy link
Member

@ccao-jardine ccao-jardine left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change proposed for EAV calculation, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Assist: properties that most impact each school district's property taxes
2 participants