Josiah Parry, Esri
Robin Lovelace (University of Leeds, ITS)
Pebesma, et al. 2025
rayon
std::ffi
provides FFI utilites for C-like typesextendr
PyO3
jlrs
TL;DR on what it is and why you should care
Approximate Network Integration, Matching, and Enrichment
.
βββ rust/
β βββ Cargo.toml
βββ r/
β βββ src/rust/Cargo.toml
βββ py/
βββ Cargo.toml
from anime import PyAnime
from geoarrow.rust.io import read_flatgeobuf
target = read_flatgeobuf("maine-osm-targets.fgb")
sources = read_flatgeobuf("maine-tigris-sources.fgb")
anime = PyAnime(
source = sources.column("").chunk(0),
target = target.column("").chunk(0),
distance_tolerance = 10,
angle_tolerance = 5
)