{"id":25793816,"url":"https://github.com/geoarrow/geoarrow-rs","last_synced_at":"2025-05-15T07:07:36.059Z","repository":{"id":180195033,"uuid":"660802589","full_name":"geoarrow/geoarrow-rs","owner":"geoarrow","description":"GeoArrow in Rust, Python, and JavaScript (WebAssembly) with vectorized geometry operations","archived":false,"fork":false,"pushed_at":"2025-05-13T17:49:46.000Z","size":14553,"stargazers_count":326,"open_issues_count":113,"forks_count":27,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-05-13T17:55:54.145Z","etag":null,"topics":["apache-arrow","geoarrow","geoparquet","geospatial","javascript","pyo3","python","rust","typescript","wasm-bindgen","webassembly"],"latest_commit_sha":null,"homepage":"http://geoarrow.org/geoarrow-rs/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/geoarrow.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE_APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-06-30T22:18:22.000Z","updated_at":"2025-05-13T17:49:48.000Z","dependencies_parsed_at":"2024-05-03T02:50:20.813Z","dependency_job_id":"7cbefc3d-50b2-4001-90a9-d5bf45f95e86","html_url":"https://github.com/geoarrow/geoarrow-rs","commit_stats":null,"previous_names":["kylebarron/geoarrow-rs","geoarrow/geoarrow-rs"],"tags_count":23,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geoarrow%2Fgeoarrow-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geoarrow%2Fgeoarrow-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geoarrow%2Fgeoarrow-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geoarrow%2Fgeoarrow-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/geoarrow","download_url":"https://codeload.github.com/geoarrow/geoarrow-rs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254006070,"owners_count":21998373,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["apache-arrow","geoarrow","geoparquet","geospatial","javascript","pyo3","python","rust","typescript","wasm-bindgen","webassembly"],"created_at":"2025-02-27T13:39:06.583Z","updated_at":"2025-05-15T07:07:31.045Z","avatar_url":"https://github.com/geoarrow.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# geoarrow-rs\n\n[![GitHub Workflow Status (CI)](https://img.shields.io/github/actions/workflow/status/geoarrow/geoarrow-rs/ci.yml?branch=main)](https://github.com/geoarrow/geoarrow-rs/actions/workflows/ci.yml)\n[![docs.rs](https://img.shields.io/docsrs/geoarrow?label=docs.rs)](https://docs.rs/geoarrow/latest/geoarrow/)\n[![Crates.io](https://img.shields.io/crates/v/geoarrow)](https://crates.io/crates/geoarrow)\n![Crates.io](https://img.shields.io/crates/l/geoarrow)\n\nA Rust implementation of the [GeoArrow](https://github.com/geoarrow/geoarrow) specification and bindings to [GeoRust algorithms](https://github.com/georust/geo) for efficient spatial operations on GeoArrow memory.\n\nThis repository also includes [Python bindings](https://github.com/geoarrow/geoarrow-rs/blob/main/python/README.md) and [JavaScript (WebAssembly) bindings](https://github.com/geoarrow/geoarrow-rs/blob/main/js/README.md), wrapping the GeoArrow memory layout and offering vectorized geometry operations.\n\n## Documentation\n\n[**Documentation Website**](https://geoarrow.org/geoarrow-rs/)\n\n\u003c!--\n- [Use from Rust](https://docs.rs/geoarrow/latest/geoarrow/)\n- [Use from Python](https://geoarrow.org/geoarrow-rs/python)\n- [Use from JavaScript](https://geoarrow.org/geoarrow-rs/js)\n- [Create your own Rust-JavaScript library with `wasm-bindgen`](https://docs.rs/geoarrow-wasm/latest/geoarrow_wasm/) --\u003e\n\u003c!-- - [Create your own Rust-Python library with `pyo3-geoarrow`](https://docs.rs/geoarrow-wasm/latest/geoarrow_wasm/) --\u003e\n\n## Examples\n\n- [Rust examples](examples/README.md)\n\n## References\n\n- [Prototyping GeoRust + GeoArrow in WebAssembly](https://observablehq.com/@kylebarron/prototyping-georust-geoarrow-in-webassembly) gives an early preview of the JavaScript API.\n- [GeoArrow and GeoParquet in deck.gl](https://observablehq.com/@kylebarron/geoarrow-and-geoparquet-in-deck-gl) gives an overview of what GeoArrow's memory layout looks like under the hood, even though it's focused on how to render the data on a map.\n- [Thoughts on GEOS in WebAssembly](https://kylebarron.dev/blog/geos-wasm) introduces why I think GeoRust + GeoArrow on the web has significant potential.\n- [Zero-copy Apache Arrow with WebAssembly](https://observablehq.com/@kylebarron/zero-copy-apache-arrow-with-webassembly) explains how the JavaScript bindings are able to move memory between JavaScript and WebAssembly so efficiently.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeoarrow%2Fgeoarrow-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeoarrow%2Fgeoarrow-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeoarrow%2Fgeoarrow-rs/lists"}