Hornsby Council Rates Calculator

.hornsby-calc-container { background-color: #f8f9fa; border: 1px solid #d1d1d1; border-radius: 8px; padding: 25px; max-width: 600px; margin: 20px auto; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #333; } .hornsby-calc-container h2 { color: #005a32; margin-top: 0; text-align: center; } .hornsby-input-group { margin-bottom: 15px; } .hornsby-input-group label { display: block; margin-bottom: 5px; font-weight: bold; font-size: 14px; } .hornsby-input-group input, .hornsby-input-group select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px; } .hornsby-btn { background-color: #005a32; color: white; padding: 12px 20px; border: none; border-radius: 4px; cursor: pointer; width: 100%; font-size: 16px; font-weight: bold; transition: background 0.3s; } .hornsby-btn:hover { background-color: #004225; } #hornsbyResult { margin-top: 20px; padding: 15px; background-color: #fff; border-left: 5px solid #005a32; display: none; } .result-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid #eee; } .result-total { font-weight: bold; font-size: 1.2em; color: #005a32; border-bottom: none !important; }

Hornsby Council Rates Estimator

Estimate your annual property rates for the Hornsby Shire area.

Residential Business Farmland
Standard 240L Service (~$495) Small 120L Service (~$385) No Waste Service (Vacant Land)
Base Amount: $0.00
Ad Valorem Charge: $0.00
Waste Management: $0.00
Total Estimated Annual Rates: $0.00

*Note: This is an estimate based on average Hornsby Shire Council 2023/24 rate structures. Actual levies may vary based on specific sub-categories or special levies.

function calculateHornsbyRates() { var landValue = parseFloat(document.getElementById('landValue').value); var category = document.getElementById('category').value; var wasteCharge = parseFloat(document.getElementById('wasteService').value); if (isNaN(landValue) || landValue <= 0) { alert("Please enter a valid land value."); return; } // Hornsby Approximate Rates (2023/24 Estimates) // Base amount is approx $580 for Residential // Ad Valorem is approx 0.000788 for Residential var baseAmount = 0; var adValoremRate = 0; if (category === "residential") { baseAmount = 582.00; adValoremRate = 0.0007881; } else if (category === "business") { baseAmount = 615.00; adValoremRate = 0.001654; } else if (category === "farmland") { baseAmount = 582.00; adValoremRate = 0.000542; } var adValoremCharge = landValue * adValoremRate; var totalRates = baseAmount + adValoremCharge + wasteCharge; document.getElementById('resBase').innerText = "$" + baseAmount.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resAdValorem').innerText = "$" + adValoremCharge.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resWaste').innerText = "$" + wasteCharge.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resTotal').innerText = "$" + totalRates.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('hornsbyResult').style.display = 'block'; }

Understanding Hornsby Shire Council Rates

Council rates are a necessary contribution from property owners in the Hornsby Shire to fund local infrastructure, community services, and public facilities. Whether you live in Berowra, Pennant Hills, or Hornsby itself, your rates contribute to the maintenance of parks, libraries, local roads, and environmental programs.

How Your Rates Are Calculated

Hornsby Shire Council uses a "Base plus Ad Valorem" system to ensure a fair distribution of the rating burden. The calculation consists of three primary components:

  • Base Amount: A fixed dollar amount that is the same for all properties within a specific category (e.g., Residential). This ensures that every property contributes a minimum amount to cover basic council operations.
  • Ad Valorem Amount: This is a variable charge based on the unimproved land value of your property. The land value is determined by the NSW Valuer General, not by the Council. The land value is multiplied by a "rate in the dollar" set by the Council.
  • Domestic Waste Management: A separate annual charge for garbage collection, recycling, and green waste services.

Example Calculation

If you own a residential property in Hornsby with a land value of $1,000,000, your estimated rates would be calculated as follows (using approximate 2023/24 figures):

  1. Base Amount: $582.00
  2. Ad Valorem Charge: $1,000,000 Ă— 0.0007881 = $788.10
  3. Waste Service (Standard): $495.00
  4. Total Annual Estimate: $1,865.10

Land Valuations

It is important to note that Council rates do not increase proportionally with land value increases. If land values across the entire Shire rise by 20%, the Council does not receive 20% more revenue. Instead, the "rate in the dollar" (ad valorem) is adjusted downward to comply with "rate pegging" limits set by the Independent Pricing and Regulatory Tribunal (IPART).

Payment Options and Rebates

Hornsby Council offers various payment methods, including BPAY, direct debit, and credit card. Rates can be paid in full or in quarterly installments due in August, November, February, and May. Eligible pensioners may also be entitled to a rebate on their rates and domestic waste charges—contact the Council's revenue department to apply.

Leave a Comment