Max Gabrielsson

Results 162 comments of Max Gabrielsson

@szarnyasg Could you transfer this to the extension-template repo?

I think the problem here is that BigQuery uses `GEOGRAPHY`, which is based on a spherical geometry model. It is perfectly possible to create geometries that do not self-intersect in...

Hi! Thanks for reporting this issue! I'm aware that the documentation is very outdated at this point. I have some ideas on how to refactor the way we produce and...

Hi! Thanks for the suggestion. There are some remnants of some old implementations of e.g st_union in the code already, but there's two issues why I hesitated to go further...

Hey @aborruso I thought the nightly build just hadn't finished yet, but I just realized we haven't actually been deploying any development builds for v1.2.2 due to a misconfiguration on...

Is it equally slow if you were to use `ogr2ogr` to perform a similar conversion directly through gdal without duckdb? e.g. any conversion from Geodatabase to any other format, without...

Also, how many columns/rows does the gdb contain? Have you tried setting the `st_read(max_batch_size = )` to something lower than the default, like 1024/512?

Does `DESCRIBE FROM st_read('SF_Professional_AK.gdb/a00000011.gdbtable') LIMIT 1;` take the same amount of time? We use GDAL's arrow api to read datasets column by column, but I don't know how it functions...

So after some digging I think I've found the problem in the arrow api: > The default implementation uses GetNextFeature() internally to retrieve batches of up to 65,536 features (configurable...

Should be alleviated alongside #67 now that #69 is merged.