Abel Vázquez Montoro

Results 94 comments of Abel Vázquez Montoro

this._stmt.getAsObject(coords) = {tile_data: Uint8Array} I've playing with this merging, and as of today I have Leaflet.TileLayer.MBTiles providing pbf data as blob, but I can't find any way to easily feed...

First of all, you may want to set **zoomAnimation** to false to avoid evil users clog your app. Then: ``` javascript map.on('zoomend', function(){ var oldsize = pruneCluster.Cluster.Size; pruneCluster.Cluster.Size = (map.getZoom()>=...

You are right, old value is overwritten this way. My project uses a hardcoded value of 120 (default one), and it works fine this way: ``` javascript map.on('zoomend', function(){ pruneCluster.Cluster.Size...

Hi, any news on this? The [PR](https://github.com/bytesandbrains/h3-pg/pull/7) looks stalled as it's 1 year old, but there's no info on the blockers or the status. **How can we help?** :hammer:

Cool, we will take a look at it. I have some ideas I'd like to test :smiley: But first, I have a question related to [these functions](https://github.com/bytesandbrains/h3-pg/pull/7/files#diff-142e7aae7fea21db52c9cb96eeb06111R29) (`gist_cmp` and `common_ancestor`,...

As you asked for some references about GiST: * [GiST bible](http://www.sai.msu.su/~megera/postgres/gist/) * PostGIS implementation (`gserialized_gist*.*` a bit spread over [here](https://github.com/postgis/postgis/tree/master/libpgcommon) and [here](https://github.com/postgis/postgis/tree/master/postgis)) And, regarding the bitwise version, I just made...

Using my sql function, with the very same logic I ported to c: ```sql WITH a AS(SELECT h3_to_children('831c02fffffffff'::h3index, 8) as h) SELECT count(*) FROM a WHERE h3_contains('831c02fffffffff'::h3index, a.h); ``` Returns...

The logic used in `gist_cmp` is the same within my custom `h3_contains` function :thinking: Maybe something is lost in translation :disappointed: . Does the c function work as expected when...

Updated reference: https://www.postgresql.org/docs/13/gist-extensibility.html

> Per [uber/h3#326 (comment)](https://github.com/uber/h3/pull/326#issuecomment-604544429) flag is `-DCMAKE_BUILD_TYPE=Release`, thanks @isaacbrodsky. Why is this flag not actually used in the latest v3.6.2 release? It looks harmless, and the 2x/3x improvements shown at...