5 ms·
who is using uber h3 and what for? (besides uber of course)
by websiteapi 11mo ago
who is using uber h3 and what for? (besides uber of course)
- Audiolite 11mo agoAs one example, the U.S. Federal Communications Commission uses it in its Broadband Data Collection program. You can see some of how it's been implemented here: https://broadbandmap.fcc.gov/ https://broadbandmap.fcc.gov/ Edit: It seems some people get a blocked message when visiting the base url. The home path may work better? https://broadbandmap.fcc.gov/home https://broadbandmap.fcc.gov/home
- maxnoe 11mo agoI cannot... Geoblockig European IPs?
- simonw 11mo agoThat's really neat. Here's a screenshot for people who can't access that URL: https://gist.github.com/simonw/eb31ec34af16a1e19ee0d7ca90e8a2e7?permalink_comment_id=5844957#gistcomment-5844957 https://gist.github.com/simonw/eb31ec34af16a1e19ee0d7ca90e8a...
- zX41ZdbW 11mo agoH3 was integrated into ClickHouse in 2019, and since then, I have heard many interesting stories. There are unusual ones, e.g., when it is used not to map data on Earth, but for astronomy (stars, galaxies).
- grim7reaper 11mo agoI'm curious about those interesting stories ^^ Care to share a bit more?
- zX41ZdbW 11mo agoMost likely this one: https://iopscience.iop.org/article/10.1088/1538-3873/acb292/meta https://iopscience.iop.org/article/10.1088/1538-3873/acb292/...
- jandrewrogers 11mo agoH3 is commonly used for creating visualization aggregates e.g. creating visual summaries of data distribution. That was its primary design case.
- justanotherunit 11mo agoI’ve used h3 for a game. Since they align with an unique hex, I can ensure that one cell grid aligns and is placed on the same place in the world, where players could then compete on.
- deleted 11mo ago[deleted]
- grim7reaper 11mo agoamo is using it quite a lot, mainly for the scratch map feature in the Bump Map application, but not only. Use cases are: - data storage - data aggregation/clustering - spatial indexing - geometrical computation (as long as you're OK with approximation, you can speed up a lot of things by working with CellID instead of actual geometries) - data visualization I've seen it used by Databend, Helium, Breakroom (they did an Erlang binding on top of h3o), beaconDB, Greptime, Meilisearch. But I don't exactly know what they are using it for (just that they pulled h3o in their projects).
- killme2008 11mo agoHi. I am from GreptimeDB team. We use h3o library to implement h3 functions: https://docs.greptime.com/reference/sql/functions/geo/#h3 https://docs.greptime.com/reference/sql/functions/geo/#h3 These functions encode and decode latitude/longitude to H3 cells and provide utilities for querying cell properties, neighborhoods, distances, and relationships.
- zigzag312 11mo agoOverture maps docs use it to visualize the coverage of Overture address data. https://docs.overturemaps.org/guides/addresses/ https://docs.overturemaps.org/guides/addresses/ Picture url: https://docs.overturemaps.org/assets/images/address-coverage-h3-oct-eb4d060e5e02c0a3ec427a261f3bda67.png https://docs.overturemaps.org/assets/images/address-coverage...
- seanlane 11mo agoWe use it at Neighbor.com for a lot of data analysis in our marketplace, things like our price recommendations, supply and demand balances, etc.
- misiti3780 11mo agomy company uses it for displays buildings in our geospatial product.
- kj4211cash 11mo agowe have used it at my last 2 companies for most geospatial data analyses. defining and visualizing catchment areas. making maps dividing up service areas. picking out high demand density areas. etc. before h3, both companies were using zipcodes and more ad-hoc data transformations. i'm not saying h3 is perfect. i wouldn't know. but it definitely beats zipcodes.