Skip to content

Commit

Permalink
include geoflatbush reference in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
msfstef committed Aug 2, 2023
1 parent 2ee7a42 commit 13ca323
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
@@ -1,6 +1,6 @@
# Flatbush Dart

A fast static spatial index for 2D points and rectangles in Dart, ported from the [excellent JavaScript implementation](https://github.com/mourner/flatbush/tree/main) by [Volodymyr Agafonkin](https://github.com/mourner).
A fast static spatial index for 2D points and rectangles in Dart, ported from the [excellent JavaScript implementation](https://github.com/mourner/flatbush/tree/main) by [Volodymyr Agafonkin](https://github.com/mourner), and includes [the extension for geographic queries](https://github.com/mourner/geoflatbush).


## Usage
Expand All @@ -10,7 +10,7 @@ A fast static spatial index for 2D points and rectangles in Dart, ported from th
final index = Flatbush.double64(1000);
// fill it with 1000 rectangles
for (final p of items) {
for (final p in items) {
index.add(
minX: p.minX,
minY: p.minY,
Expand Down

0 comments on commit 13ca323

Please sign in to comment.