-
PostGIS supports several types of arc and curve geometries, which the JDBC driver apparently does not support. A simple fallback might be to invoke ST_CurveToLine if any circular string (Arc) or Curve…
-
The insert point/ewkb query works fine with [lib/pq](https://github.com/lib/pq) but not the [pgx](https://github.com/jackc/pgx) which is the go to driver for postgresql nowadays.
The error comes from…
-
I have a dataset of car trips.
The dataset has four columns ( trip_id timestamp, lat, lon) , and each trip_id will have a few hundreds rows with points showing the location every few seco…
-
Hi, I'm trying to write spatial data, sadly don't works D:
This is a local test:
```
Sys.setenv("DOLR_DIR" = "doltdb")
doltr::dolt_init(dir = Sys.getenv("DOLT_DIR", "doltdb"))
nc traceba…
-
### Steps to reproduce
I noticed that a worker of mine was failing after calculating the intersection of a line with a polygon: `line.intersection(polygon)`. The failure would occur with `No method…
-
pry(main)> p = Poi.last
```
Poi Load (0.3ms) SELECT "pois".* FROM "pois" ORDER BY "pois"."id" DESC LIMIT $1 [["LIMIT", 1]]
=> # p.lonlat
=> nil`
for some method, "lonlat" work fine... for o…
-
Has go-pg support for PostgreSQL [geometric data types](https://www.postgresql.org/docs/10/static/datatype-geometric.html)?
ghost updated
5 months ago
-
**Summary**
Now running:
```sql
select * from system.functions
```
only the fields of **name**, **is_builtin**, and **is_aggregate** will return content, while the others will be returned as e…
-
I'm using ``v0.10.2 1601d94f94``.
```sql
select * from st_read('GHUB2018.gpkg') LIMIT 1;
```
```
Not implemented Error: WKB Reader: Geometry type 11 not supported
```
It's the GPKG inside…
-
https://docs.rs/geo
https://www.postgresql.org/docs/current/datatype-geometric.html
* `POINT` -> `geo::Coordinate`
* `LINE` -> `geo::Line`
* `LSEG` -> `geo::Line`
* `BOX` -> `geo::Rect`
*…