Skip to content

Commit

Permalink
docs(readme and cargo.toml): bumped to v0.1.5 [2024-10-22]
Browse files Browse the repository at this point in the history
  • Loading branch information
CHRISCARLON committed Oct 22, 2024
1 parent 7afaedf commit 97a05bc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "duckdb-postgis"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
authors = ["chris@enmeshed.dev", "serj@enmeshed.dev"]
description = "A library for transforming geospatial data using DuckDB and ingesting it into a PostGIS database."
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# DuckDB Rust lib for writing geospatial data to Postgis
![Crates.io](https://img.shields.io/crates/d/duckdb-postgis)

## Current v0.1.4 release notes
## Current v0.1.5 release notes

### This Rust library does the following things:

Expand All @@ -12,7 +12,7 @@
- Performs CRS transformation on the data if required - ensuring the CRS is ESPG:4326
- Loads the data into a PostGIS table with a correctly defined geometry column

### Improvements for release 0.1.5:
### Improvements for release 0.1.6:

- Handle raster data file formats
- Discard rows where there may be errors in the geometry column / ensure the programme doesn't crash when a geometry error is encountered - skip over it and log it instead
Expand All @@ -26,9 +26,11 @@ use duckdb_load::launch_process_file;
fn main() -> Result<(), Box<dyn std::error::Error>> {
launch_process_file(
"test_files/hotosm_twn_populated_places_points_geojson.geojson",
"my-table",
"test-table",
"postgresql://admin:password@localhost:5432/gridwalk",
"test-schema",
)?;
Ok(())
}

```

0 comments on commit 97a05bc

Please sign in to comment.