A year ago we put a natural-language layer on a 3D map. This time we rebuilt the whole thing on Lakebase and PostGIS, wired Genie to the same tables, and made the map answer back, drawn region and all. Deploy is one notebook.
📹 Draw a region on the network map, ask Genie a question in plain English, and watch the answer land back on the map. (GeoGenie 2 · live demo · synthetic Dallas network)
The original GeoGenie answered a simple question: can you ask a map things in plain English? You drew a polygon on a Cesium globe, and Genie answered questions scoped to whatever sat inside it. No SQL, no dashboards. It was a Streamlit app with Genie doing the talking.
That first version proved the point, but under the hood it was demo code. GeoGenie 2 keeps the promise identical (draw a region, ask in English, get a scoped answer) and rebuilds everything beneath it into something a carrier could put into production. What's new:
Piece by piece, that's the whole stack rebuilt:
If you live in the Databricks or GIS world these are old news. If not:
The demo is a synthetic wireless carrier around Dallas. It shows the same view a telco runs in an ArcGIS Experience Builder app (antennas with coverage sectors, fiber cables, equipment nodes, mount sites, all clickable) but as a single Databricks App. ESRI is reduced to a browser drawing library; every data question is answered by Databricks.
Two capabilities here are worth calling out: one normally takes extra ArcGIS infrastructure, and the other a standard ArcGIS app can't do at all:
This is what the whole app is built around. You lasso a neighborhood, type a question, and Genie answers only about what's inside your shape. Here's a real exchange:
That "plotted on the map" line is new in GeoGenie 2, and it took a small insight to get right. Genie can render a map image itself, but that image is generated server-side and arrives without its basemap tiles, so the points land on a blank grey rectangle. So instead of showing Genie's picture, the app reads the rows Genie returns and draws them on its own ArcGIS basemap: points for coordinates, hexagons for H3 cells, colored by whatever the answer is about (a category like site_type gets distinct colors and a legend; a measure like homes_passed gets a gradient). The map does the drawing; Genie does the thinking.
"Restrict this answer to my polygon" sounds simple, but there are two legitimate ways to do it. Databricks supports both, so GeoGenie 2 shows both the ways. The app turns your drawn shape into a filter hint and hands it to Genie; the badge on each question tells you which path it takes.
Why not just send the geometry? A PostGIS geometry column federates into Unity Catalog as an opaque WKB hex string. Genie can read the text, but ST_* can't operate on it. So the two usable paths are the h3_cell text column and geometry reconstructed from plain lat/lon. The real geom still powers the fast map queries, just inside Lakebase, where it's a first-class type.
Everything hangs off one idea: the network lives in Lakebase Postgres + PostGIS, and every row carries both a real geom and an h3_cell. Two consumers read it, the map and Genie, each the way it's best served.
No ArcGIS Server, no hosted feature service, no ArcGIS Enterprise portal. The only runtime ESRI dependency is the browser fetching basemap tiles. The map is fast because it talks to Postgres directly; Genie is possible because the same rows are one federated catalog away.
Six platform capabilities, each doing one job, all provisioned by the single notebook:
The part customers care about most: you run one notebook. Open it, hit Run All, and it stands up every piece end-to-end, idempotently, so re-running is safe:
The notebook is the single source of truth for the whole deployment, and there's an optional Asset Bundle wrapper if you'd rather run it as a job from CI/CD.
Plenty of tools can draw antennas on a basemap. What a carrier's GIS stack usually can't do is let a planner ask "how many rooftop sites in this corridor have no fiber within 200 meters?" and get an answer, on the map, in seconds, without a ticket to the GIS team.
That's the shift GeoGenie 2 is about. The map becomes a way to point at a question; Databricks answers it. ESRI draws, PostGIS measures, Genie interprets, and it's the same five tables underneath the whole time.
Draw a shape, ask in plain English, and let the warehouse do the geospatial work.
The network, subscribers, and revenue in this demo are 100% synthetic, generated deterministically inside the provisioning notebook. It does not represent any real carrier.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.