geographic-clustering
Geographic Clustering
Grid-based clustering with medoid finding and risk scoring from event density.
When to Use This Skill
- Clustering thousands of geo-located events for visualization
- Need O(n) performance instead of O(n²) distance-based clustering
- Want actual data points as map markers (medoids, not synthetic centroids)
- Calculating risk scores from cluster characteristics
Core Concepts
Grid-based clustering is much faster than distance-based algorithms:
- O(n) grouping by grid cell vs O(n²) for distance-based
- Medoid finding gives actual data point as center (better for map markers)
- Multi-factor risk scoring combines density, sentiment, and recency
Implementation
More from dadbodgeoff/drift
sse-streaming
Implement Server-Sent Events (SSE) for real-time updates with automatic reconnection and heartbeats. Use when building live dashboards, notifications, progress indicators, or any feature needing server-to-client push.
78oauth-social-login
Implement OAuth 2.0 social login with Google, GitHub, and other providers. Handles token exchange, user creation, and account linking.
48multi-tenancy
Implement multi-tenant architecture with tenant isolation, data separation, and per-tenant configuration. Supports shared database and schema-per-tenant models.
45deduplication
Event deduplication with canonical selection, reputation scoring, and hash-based grouping for multi-source data aggregation. Handles both ID-based and content-based deduplication.
43fuzzy-matching
Multi-stage fuzzy matching pipeline for entity reconciliation. PostgreSQL trigram pre-filter, salient overlap check, and multi-factor similarity scoring.
40webhook-security
Implement secure webhook handling with signature verification, replay protection, and idempotency. Use when receiving webhooks from third-party services like Stripe, GitHub, Twilio, or building your own webhook system.
37