▶ Try it live (no install): https://nash-dir.github.io/dongnae/
-
dongnae is a dependency-free, pure Python library designed for high-performance reverse geocoding, radius search, spatial lookup, and Area-of-Effect lookup. It operates from self-contained native script & pre-rendered CSV dataframe. Designed for high-performance microservices and client-side applications.
- Zero backend
- Zero auth
- Zero dependencies
-
It is optimized for local/regional datasets (e.g., Neighborhoods in a specific country) using latitude-based auto-calibration instead of expensive spherical trigonometry for every calculation.
-
Quasi-Geocoding to
Dongnae-
Traditional Geocoding APIs (Google Maps, VWorld) are powerful but often overkill for many business logic scenarios. They introduce network latency, API costs, and heavy dependencies. Especially when you just want to lookup
roughly which neighborhoodyou are in. -
dongnaetakes a different approach. It trades "pinpoint street-level precision" for "neighborhood-level semantic accuracy", gaining extreme speed and portability in return. Instead of precise street-level addresses, it maps coordinates to the nearestDongnae(Neighborhood/District node), which is not quite precise but still good enough for some applications. -
Key concept of this engine is "dongnae" - an object that has ID(dnid), Name(dnname), 2D coordinates(dnlatitude, dnlongitude), and radius(dnradius).
-
Dictionary of dongnaes should be pre-baked and loaded from CSV / JS prior to using this engine.
-
Recommended for lightweight, suggestion-based frontends(e.g. Web / PWAs); ML & DS preprocessing; serverless or edge computing backend(e.g., AWS Lambda, Cloudflare Workers)
-
-
Name and Location based lookup to pre-baked
Dongnaedictioary- Calculates the ballpark 'Boundary Distance' from a specific coordinate to a target Dongnae.
-
Boundary Distance calculation
-
Calculates the ballpark 'Boundary Distance' from a specific coordinate to a target Dongnae.
-
Great for quickly looking up geopoints within Area-of-Effect from certain
dongnaein kilometer scale. -
Recommended for microsystem backend, AWS Lambda, embedded, push service, etc.
-
-
Zero Dependencies
-
Pure Python: Runs on pure Python & essential libraries (csv, math). No pip install required for dependencies.
-
Ultra lightweight : Does not require heavy GIS libraries (pandas, geopandas, or shapely)
-
-
Lightning Fast & Practical Accuracy
-
Auto-Calibration: Computes the equirectangular (planar) distance coefficients once upon loading, avoiding repeated trigonometric operations (cos, sin) during queries.
-
Bounding-Box Pre-filtering: A dynamic BBox narrows the linear scan to a local candidate set before distance calculation. (It is a pre-filter, not a persistent spatial index; spatial queries are still O(n) over the candidates, while ID lookup is O(1).)
-
$O(1)$ ID Lookup: Instant retrieval by ID using an internal Hash Map. -
Proven Performance: In a
benchmarkwith thedongnae-kr 2025.11.30dataset package (carved from ROK Regional Geometry data) & 10k random points,dongnaewas ~15x faster (in midnight environment) thanVWorld API response.- Top-1 Accuracy: 71.67% (Pinpoint precision)
- Top-3 Accuracy: 97.31% (Practical precision)
- Miss Rate: 2.69% (Not within top 3)
Benchmarkresults are based on random coordinate sampling within South Korea and string-matching against VWorld API address responses. Results may vary depending on dataset and evaluation criteria.- The speed figure compares a local in-process lookup against a remote network API call — meaningful for "offline vs API", but not an algorithm-to-algorithm comparison. A like-for-like local baseline (e.g. geopandas/shapely) is future work.
-
-
Self-contained
-
Zero backend : No networking, GIS server required
-
Zero dependencies : Runs on Python standard libraries (csv, math),
-
Zero authentication : No authentication, API key required
-
No network attack surface : The engine opens no network connections, so there is no remote attack surface. (You still control the local CSV / coordinate input you feed it — you can't remotely hack what doesn't quack.)
-
-
Business-Ready Logic:
-
Boundary Distance: Calculates distance from the edge of a neighborhood, not just the center.
-
Soft Geofencing: Determines if a point is "roughly" within neighborhood with an adjustable threshold.
-
Text Search: Built-in keyword search functionality.
-
Privacy by Design : No Personal Information including Geolocation sent outside.
-
You need a CSV file containing your local spatial nodes. The file must have the following headers:
| Column | Type | Description |
|---|---|---|
| dnid | String | Unique Identifier (e.g., Zipcode, Legal Code) |
| dnname | String | Name of the area (e.g., "Gangnam-gu") |
| dnlatitude | Float | Y Coordinate |
| dnlongitude | Float | X Coordinate |
| dnradius | Float | Effective radius of the area (km) |
dongnae is not just a coordinate calculator; it is a spatial decision engine.
"Where am I roughly?"
- Function: Returns the nearest neighborhood node for a given coordinate.
- Why use it: Perfect for identifying user context (e.g., "You are in Gangnam-gu") without triggering expensive API calls.
"Is this point inside our service area?"
-
Function: Calculates the Boundary Distance from a specific coordinate to a target neighborhood's edge.
- Negative (-): Inside the boundary.
- Positive (+): Outside the boundary.
-
Why use it: Determines immediate service availability (e.g., Delivery, Pickup) with a single line of code.
$O(1)$ complexity via ID lookup.
"Find 'Pangyo' instantly."
- Function: Converts text queries into spatial objects without any network request.
- Why use it: Provides instant "Quasi-Geocoding" for search bars. Delivers a zero-latency UX for users typing in locations, even offline.
"Are they close enough?"
- Function: Determines if a coordinate falls within a neighborhood's effective radius with an adjustable tolerance threshold.
- Why use it: Useful for loose boundary checks (e.g., "Allow users within 20% buffer of the district").
"What's nearby?"
-
Function: Finds
$K$ -nearest neighbors or all nodes within a specific radius. - Why use it: a bounding-box pre-filter over an O(n) scan keeps it fast for datasets of thousands of nodes (it is a pre-filter, not a persistent spatial index).
This project is architected as a monorepo supporting multiple languages, as it may be useful for both backend & frontend applications. Please refer to the specific documentation for installation and API usage.
| Language | Package | Description | Documentation |
|---|---|---|---|
| Python | dongnae |
Pure Python Engine for Backend/Data Ops | 👉 Go to Python Docs |
| JavaScript | @dongnae-js/data-kr |
JS Engine for Frontend/Edge (experimental, not yet on npm) | 👉 Go to JS Docs |
In internal benchmarks against public Government APIs (VWorld), dongnae:
- Speed: ~15x faster (0.0030s vs 0.0447s) — a local lookup vs a network API call; the gap is dominated by network round-trip, not algorithmic superiority.
- Accuracy: 97.3% Top-3 Hit Rate for neighborhood identification (name-substring match against VWorld address text).
dongnaeis designed to be "Good Enough" for ~95% of semantic spatial problems, while being ~15x faster (local lookup vs network API) and far cheaper (no API costs).