<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>GEOHASH on Kinetica Docs</title><link>/7.2/snippet-tags/geohash/</link><description>Recent content in GEOHASH on Kinetica Docs</description><generator>Hugo -- gohugo.io</generator><language>en</language><atom:link href="/7.2/snippet-tags/geohash/index.xml" rel="self" type="application/rss+xml"/><item><title>Geohashing</title><link>/7.2/snippets/geohash/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/7.2/snippets/geohash/</guid><description>Enrich a Point-Based Table with Geohashes Create an Aggregated View with WKT Geometries Enrich a Point-Based Table with Geohashes Create a geohash for pickup locations in the NYC taxi data set.
Lat/Lon-Based Table WKT-Based Table Lat/Lon-Based Table 1 2 3 4 5 6 7 8 CREATE OR REPLACE TABLE example_geospatial.nyctaxi_geohash AS ( SELECT pickup_latitude, pickup_longitude, STXY_GEOHASH(pickup_longitude, pickup_latitude, 6) AS geohash FROM example_geospatial.nyctaxi_xy ) WKT-Based Table 1 2 3 4 5 6 7 CREATE OR REPLACE TABLE example_geospatial.</description></item><item><title>H3 Geohashing</title><link>/7.2/snippets/geohash-h3/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/7.2/snippets/geohash-h3/</guid><description>Enrich a Point-Based Table with H3 Indexes Create an Aggregated View with WKT Geometries Enrich a Point-Based Table with H3 Indexes Create an H3 index for pickup locations in the NYC taxi data set.
Lat/Lon-Based Table WKT-Based Table Lat/Lon-Based Table 1 2 3 4 5 6 7 8 CREATE OR REPLACE TABLE example_geospatial.nyctaxi_h3 AS ( SELECT pickup_latitude, pickup_longitude, H3_XYTOCELL(pickup_longitude, pickup_latitude, 8) AS h3_index FROM example_geospatial.nyctaxi_xy ) WKT-Based Table 1 2 3 4 5 6 7 CREATE OR REPLACE TABLE example_geospatial.</description></item></channel></rss>