Kristin Cowalcijk

Results 40 comments of Kristin Cowalcijk

> Any chance these wheels can be made available? Especially now that FMM relies on old versions of libraries, having these accessible would be a huge help. I've uploaded the...

> In terms of some bookkeeping, since Sedona is a new dependency (and may pull in others), Eclipse requires us to check on the IP of dependencies. > > For...

> I got the imcompatible problem of `org.locationtech.jts` when using `BroadcastIndexJoin` from sedona with error: > > ```scala > Caused by: java.lang.NoSuchMethodError: org.locationtech.jts.index.quadtree.Quadtree.getRoot()Lorg/locationtech/jts/index/quadtree/Root; > at org.locationtech.jts.index.quadtree.IndexSerde.write(IndexSerde.java:61) > at org.apache.sedona.core.geometryObjects.SpatialIndexSerde.write(SpatialIndexSerde.java:66) >...

`NAMESPACE_PROPERTY_KEY` [was defined as `VARCHAR(5500)`](https://github.com/apache/iceberg/blob/apache-iceberg-0.14.0/core/src/main/java/org/apache/iceberg/jdbc/JdbcUtil.java#L91), it may not have to be that long. Some value less than 500 is good enough I guess?

I propose a different (more complicated) approach: 1. Make `analyze()` method of `SpatialRDD` take sample of the RDD. We can integrate the logic of poisson sampler into the `StatCalculator` and...

GeoTools uses the GeoTiff reader provided by [imageio-ext](https://github.com/geosolutions-it/imageio-ext/tree/master/plugin/tiff). As far as I know, this is the most comprehensive TIFF reader amongst all the ImageIO readers. I've tried using imageio shipped...

As far as I know, Hive and Impala do not natively support geometry types or the GeoParquet specification, so the best thing they can do is to read the geometry...

> Even though Hive / Impala donot support geometry type , but they should support other types in geoparquet file . > > Actually , we execute "show create table...

Can you provide an example query to reproduce this problem? I've tried queries like this and it was planned as a RangeJoin. ```sql SELECT * FROM df1 JOIN df2 ON...

The `geo` metadata in the parquet footers may not be the same for all written geoparquet files, especially the bbox field, this makes the default parquet footer metadata merging process...