| Crates.io | duckdb-postgis |
| lib.rs | duckdb-postgis |
| version | 0.2.6 |
| created_at | 2024-10-08 20:37:55.007444+00 |
| updated_at | 2025-07-23 19:13:34.791911+00 |
| description | A library for transforming geospatial data using DuckDB and ingesting it into a PostGIS database. |
| homepage | https://github.com/enmeshed-analytics/duckdb-gridwalk |
| repository | https://github.com/enmeshed-analytics/duckdb-gridwalk |
| max_upload_size | |
| id | 1401663 |
| size | 99,035 |
A Rust Library for writing geospatial/non-geospatial data to Postgis using DuckDB.
cargo add duckdb-postgis
mod duckdb_load;
use duckdb_load::launch_process_file;
fn main() -> Result<(), Box<dyn std::error::Error>> {
launch_process_file(
"[add_file_path]",
"[add_table]",
"postgresql://admin:password@localhost:5432/[add_db_name]",
"[add_schema]"
)?;
Ok(())
}