ttomasz

Results 35 comments of ttomasz

@tobilg check out osmconf.ini described here https://gdal.org/drivers/vector/osm.html also there is native osm pbf reader if you can live with raw objects (have to build geometries yourself)

I assume there is some standard Geometry type defined by SQL/MM or Simple Features spec and DBeaver knows how to recognize that. I tried with WKB_BLOB but it's not recognized....

Interesting, for reference [this is](https://github.com/dbeaver/dbeaver/blob/devel/plugins/org.jkiss.dbeaver.ext.postgresql/src/org/jkiss/dbeaver/ext/postgresql/model/data/PostgreValueHandlerProvider.java#L92) the switch statement which leads to [the class that conditionally builds](https://github.com/dbeaver/dbeaver/blob/devel/plugins/org.jkiss.dbeaver.ext.postgresql/src/org/jkiss/dbeaver/ext/postgresql/model/data/PostgreGeometryValueHandler.java#L49) the geometry. In DuckDBs case it seems that some types get mapped to struct...

> A 0.14.2 is out -> https://github.com/geopandas/geopandas/releases/tag/v0.14.2 There seems to be some commits that did not go into the release e.g. https://github.com/geopandas/geopandas/commit/b408a0832de1e09744f4023121284d5bb70a946d It's a little confusing that changelog says that...

> @ttomasz hey this is kepler.gl behaviour. It guessing types by first row (from top of my head) 😔. > > Common work-around is to apply sorting. Wow that kind...