Crates.io | postgis |
lib.rs | postgis |
version | 0.9.0 |
source | src |
created_at | 2015-05-25 09:40:37.121582 |
updated_at | 2021-09-23 19:41:14.737217 |
description | An extension to rust-postgres, adds support for PostGIS. |
homepage | https://github.com/andelf/rust-postgis |
repository | https://github.com/andelf/rust-postgis |
max_upload_size | |
id | 2197 |
size | 156,734 |
An extension to rust-postgres, adds support for PostGIS.
use postgres::{Client, NoTls};
use postgis::{ewkb, LineString};
fn main() {
let mut client = Client::connect("host=localhost user=postgres", NoTls).unwrap();
for row in &client.query("SELECT * FROM busline", &[]).unwrap() {
let route: ewkb::LineString = row.get("route");
let last_stop = route.points().last().unwrap();
let _ = client.execute("INSERT INTO stops (stop) VALUES ($1)", &[&last_stop]);
}
}
Handling NULL values:
let route = row.try_get::<_, Option<ewkb::LineString>>("route");
match route {
Ok(Some(geom)) => { println!("{:?}", geom) }
Ok(None) => { /* Handle NULL value */ }
Err(err) => { println!("Error: {}", err) }
}
rust-postgis supports writing geometry types into PostGIS which implement the following traits:
Point
, LineString
, ...AsEwkbPoint
, AsEwkbLineString
, ...See the TWKB implementation as an example.
An example for reading a TWKB geometry and writing it back as EWKB:
use postgis::twkb;
use postgis::LineString;
for row in &conn.query("SELECT ST_AsTWKB(route) FROM busline", &[]).unwrap() {
let route: twkb::LineString = row.get(0);
let last_stop = route.points().last().unwrap();
let _ = conn.execute("INSERT INTO stops (stop) VALUES ($1)", &[&last_stop.as_ewkb()]);
}
Unit tests which need a PostgreSQL connection are ignored by default.
To run the database tests, declare the connection in an environment variable DBCONN
. Example:
export DBCONN=postgresql://user@localhost/testdb
Run the tests with
cargo test -- --ignored