--- id: aio-geojson-nsw-rfs-incidents version: "2026.6.0" license: Apache-2.0 license_treatment: permissive maintenance: active --- # aio-geojson-nsw-rfs-incidents — An async GeoJSON client library for NSW Rural Fire Service Incidents. License: permissive · Maintenance: active · Downloads: 73.8K/mo ## What it is and what it does This library wraps the NSW Rural Fire Service incidents feed as an async GeoJSON client, letting you fetch and filter fire incident data by geographic proximity and alert category. It's built on aiohttp and pytz, and designed for integration into async Python applications—particularly Home Assistant automations and real-time monitoring systems that need to track nearby fire incidents. The library returns incidents with structured properties: geometry, coordinates, category (Emergency Warning / Watch and Act / Advice), location, council area, fire type, size, and responsible agency. It includes a Feed Manager that tracks new, updated, and removed incidents across successive updates, and reports both the last update timestamp and the last successful update, making it suitable for systems that need to react to incident changes or handle intermittent feed failures gracefully. Use it for: - Home Assistant automation: trigger alerts when fire incidents appear within a set radius of home coordinates. - Emergency response dashboard: display nearby incidents filtered by alert level and incident type. - Fire risk monitoring: track incident status changes and size updates over time using the Feed Manager. - Geographic incident analysis: extract and map incident geometry and coordinates for spatial analysis. - Incident notification system: detect new incidents in specific council areas and notify subscribers. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Async client library for fetching and filtering NSW Rural Fire Service incident data as GeoJSON, with support for geographic radius and category filtering. Yes. The package is actively maintained, has no known vulnerabilities, supports current Python versions, and solves a specific real-world problem (NSW fire incident tracking) with low install friction. The Apache-2.0 license is permissive. Install it if you need async access to NSW RFS incident data with geographic and category filtering. ## Install pip install aio-geojson-nsw-rfs-incidents uv add aio-geojson-nsw-rfs-incidents poetry add aio-geojson-nsw-rfs-incidents ## Installing aio-geojson-nsw-rfs-incidents Before you install: Low install friction with three lightweight runtime dependencies. Actively maintained with recent releases; last commit on 2026-07-21. Supports current Python versions (3.11–3.14). License in practice: Apache-2.0 permissive license allows commercial and private use with minimal restrictions. Quickstart: pip install aio-geojson-nsw-rfs-incidents import asyncio from aiohttp import ClientSession from aio_geojson_nsw_rfs_incidents import NswRuralFireServiceIncidentsFeed async def main(): async with ClientSession() as websession: feed = NswRuralFireServiceIncidentsFeed( websession, (-33.0, 150.0), filter_radius=50 ) status, entries = await feed.update() print(status, entries) Requires aiohttp ClientSession and async/await runtime; Python 3.11 or later. Verify before relying: - Feed update frequency and typical latency from NSW RFS source to library delivery. - Whether the library handles authentication or API keys for the NSW RFS feed. - Performance characteristics when filtering large incident datasets by radius or category. ## Package facts - License: Apache-2.0 (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 73.8K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags nsw rural fire service incidents, async geojson fire data, fire incident feed client, location-based fire alerts, geojson feed parser, aiohttp fire service, incident filtering by radius, geojson, fire-incidents, home-assistant [View on SkillFed](https://skillfed.io/packages/aio-geojson-nsw-rfs-incidents) · [View on PyPI](https://pypi.org/project/aio-geojson-nsw-rfs-incidents/)